pax_global_header00006660000000000000000000000064133147275720014525gustar00rootroot0000000000000052 comment=54a3548680291f888b70b9e7c81c6d9b4fe7c86b Turing-0.11-beta/000077500000000000000000000000001331472757200136275ustar00rootroot00000000000000Turing-0.11-beta/.gitignore000066400000000000000000000007261331472757200156240ustar00rootroot00000000000000# C++ objects and libs *.slo *.lo *.o *.a *.la *.lai *.so *.dll *.dylib # Qt-es /.qmake.cache /.qmake.stash *.pro.user *.pro.user.* *.qbs.user *.qbs.user.* *.moc moc_*.cpp moc_*.h qrc_*.cpp ui_*.h *build-* # QtCreator *.autosave # QtCtreator Qml *.qmlproject.user *.qmlproject.user.* # QtCtreator CMake CMakeLists.txt.user* __pycache__ *.pyc .idea .vs dist build src/editor_backend.spec editor_backend turing *.gz *.zip src/turing.spec .DS_Store # emacs *~ Turing-0.11-beta/CONTRIBUTING.md000066400000000000000000000025601331472757200160630ustar00rootroot00000000000000# Contributing to Turing ## Code just make good code follow pep8 and everything will be good ## Translation Translators must use Qt Linguist. It can be obtained by installing the Qt toolkit. ### Editing an existing language Just open the .ts file in Linguist and change what needs to be changed. ### Adding a new language First, create a new .ts file in /src/lang/ using the following template: Replace `LANGUAGE CODE` by the ISO code of the language. If the language is "generic", use the short code (example: French `fr`, German `de`, Spanish `es`), but if it's not, use the full code (example: Simplified Chinese `zh-Hans`, Traditional Chinese `zh-Hant`). Then, download the [FatCow Hosting Icons pack](http://www.fatcow.com/free-icons), find the corresponding flag in the 16x16 folder. Rename it to the language code you used for the .ts file (example: fr.png, de.png, zh-Hans.png) and put that in the /src/media/lang/ folder. Open a command prompt in /src/ and run tools/compile-gui (make sure that the CWD is /src/). Then, open /src/turing.qrc in Qt Creator and add /src/lang/LANGUAGE.qm and /src/media/lang/LANGUAGE.png under the /lang prefix. Save, and use /src/run to test and make sure everything works.Turing-0.11-beta/LICENSE000066400000000000000000000020521331472757200146330ustar00rootroot00000000000000MIT License Copyright (c) 2018 TuringApp 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. Turing-0.11-beta/Makefile000066400000000000000000000002601331472757200152650ustar00rootroot00000000000000DESTDIR = all: make -C src $@ DESTDIR=$(DESTDIR) clean: rm -f *~ make -C src $@ DESTDIR=$(DESTDIR) install: make -C src $@ DESTDIR=$(DESTDIR) .PHONY: all clean install Turing-0.11-beta/README.md000066400000000000000000000075241331472757200151160ustar00rootroot00000000000000[![GitHub issues](https://img.shields.io/github/issues/TuringApp/Turing.svg)](https://github.com/TuringApp/Turing/issues) [![GitHub stars](https://img.shields.io/github/stars/TuringApp/Turing.svg)](https://github.com/TuringApp/Turing/stargazers) [![GitHub license](https://img.shields.io/github/license/TuringApp/Turing.svg)](https://github.com/TuringApp/Turing/blob/master/LICENSE) [![Gitter](https://img.shields.io/gitter/room/TuringDevelopment/Lobby.svg)]( https://gitter.im/TuringDevelopment) # Turing Turing is a free and cross-platform app whose main goal is to assist the learning of algorithms and programming languages by providing easy-to-use development tools to all. It provides a lighter alternative to the well-known Algobox, which is the currently de-facto widely used solution. **Note:** Turing was originally meant to be a school project for the [CS class](https://twitter.com/davR74130). Don't expect enterprise-grade code here. We do our best to keep the whole codebase clean, but some parts are still undocumented and not covered by unit tests. ## Quid, quis, quomodo? Turing is written in Python 3.6 and uses the PyQt5 framework for its GUI. It provides two work modes: - Algorithm mode - Uses a "natural" pseudocode language similar to the one used in Algobox and school books. - Assisted development - Program mode - Uses Python, for the more experienced In both modes, the code can be debugged and executed step-by-step to facilitate the problem-solving side of development. ## Using Turing Turing is cross-platform, but has only been tested on Windows and Linux-based operating systems. macOS should be supported, but no guarantee is made of that. ### Using the package (recommended for Linux) A package is available for Ubuntu and Debian. You can install it like this: `sudo apt-get install turing` If it does not work, use the pre-compiled binaries available below. ### Using pre-compiled binaries (recommended) Click on the [**Releases**](https://github.com/TuringApp/Turing/releases) tab at the top of the page and download the release corresponding to your OS. - `windows32`: Windows 32 bits (7 or later) - tested on 10 x64 - `nix64`: Linux 64 bits (Ubuntu 14.04 / Debian 8 or later) - tested on 18.04 - `osx`: macOS 64 bits (10.13 *High Sierra* or later) - tested on 10.13 ### Using the source code (advanced users) #### Python 3.6 required! **You need to have `python3` point to Python 3.6 in your shell! Either use an alias in your `.bashrc` or a distribution that comes with Python 3.6.** It uses the following libraries: - [PyQt 5](https://riverbankcomputing.com/software/pyqt/) - UI framework - [pyQode](https://github.com/pyQode/pyQode) - PyQt code editor with syntax highlighting - [Pygments](http://pygments.org/) - Syntax highlighter for printing code files - [pep8](https://pypi.python.org/pypi/pep8) - Code quality checker First, install everything using pip: pip install --ignore-installed -r requirements.txt Note: if you have Python 2.x installed on your computer (which is the case on 99% of Linux distributions), the old `pip` may be present in `PATH` and interfere with the above command line. If that happens, try using `pip3` instead of `pip`. Of course, it must be the `pip` paired with the installed Python3 (so you may need to use `pip3.6` instead). Next, open the src/ folder and use `run.bat` or `source run.sh` depending on your operating system. #### Building Turing (using pyInstaller) You need: - Python 3.6 (`python3.6`) - Python 3.6 dev package (`python3.6-dev`) - Qt5 `lrelease` (`qt5-dev-tools`) ## Contributing We're currently looking for translators. For more information, see the [CONTRIBUTING.md](CONTRIBUTING.md) file and [the Gitter](https://gitter.im/TuringDevelopment). If you're a developer and you found a bug somewhere and fixed it, feel free to make a PR, we usually answer in no more than a few hours. Turing-0.11-beta/bin/000077500000000000000000000000001331472757200143775ustar00rootroot00000000000000Turing-0.11-beta/bin/turing000066400000000000000000000000611331472757200156270ustar00rootroot00000000000000#!/bin/sh python3 /usr/share/turing/src/main.py Turing-0.11-beta/build-rel.bat000066400000000000000000000001671331472757200162020ustar00rootroot00000000000000@echo off pushd src && tools\compile-gui && python tools\build.py && popd && xcopy /y src\dist\turing.exe . && gen-arc Turing-0.11-beta/build-rel.sh000066400000000000000000000001711331472757200160410ustar00rootroot00000000000000#!/bin/bash cd src source tools/compile-gui.sh python3 tools/build.py cd .. \cp src/dist/turing . source gen-arc.sh Turing-0.11-beta/docs/000077500000000000000000000000001331472757200145575ustar00rootroot00000000000000Turing-0.11-beta/docs/_config.yml000066400000000000000000000000601331472757200167020ustar00rootroot00000000000000theme: jekyll-theme-cayman show-downloads: trueTuring-0.11-beta/docs/expression.md000066400000000000000000000514701331472757200173070ustar00rootroot00000000000000# Built-in expression parser Turing has a built-in mathematical expression parser, which is used when the program is in pseudocode mode. The language is case-insensitive for keywords, i.e. `FALSE`, `false` and `FaLsE` are the same thing. ## Types ### Number Stored using a Python `float`, automatically converted to `int` when needed. A point (`.`) shall be used to separate the integer part from the fractional part. #### Example - `42` - `3.1415` ### Boolean Stored using a Python `bool`, automatically converted to Number when needed (only if strict mode is disabled). #### Syntax The following keywords are available: - `TRUE` / `VRAI` : True value - `FALSE` / `FAUX` : False value ### String Stored using a Python `str` (Unicode). A string is enclosed between double quotes (`"`). It is not possible yet to escape characters inside a string literal. ### List Stored using a Python `list`, indices start at 0 (like in any real programming language. *Lua*, you should feel ashamed of yourself). #### Operators Certain operators can be applied on operands of type List. ##### `+` (Plus) Concatenates two lists. ###### Examples - `[1, 2, 3] + [3, 4, 5] == [1, 2, 3, 3, 4, 5]` ##### `-` (Binary minus) Returns all items of A that are not in B. ###### Examples - `[1, 2, 3] - [3, 4, 5] == [1, 2]` ##### `-` (Unary minus) Returns a reversed copy of the list. ###### Examples - `-[1, 2, 3] == [3, 2, 1]` ##### `*` (Times) *Must be used on a List and a Number together.* Duplicates the list the specified amount of times. ###### Examples - `[1, 2, 3] * 3 == [1, 2, 3, 1, 2, 3, 1, 2, 3]` ##### `&` / `ET` (Intersection) Returns all items of A that are also in B. ###### Examples - `[1, 2, 3] & [2, 3, 4] == [2, 3]` ##### `|` / `OU` (Union) Returns an ordered list of all items of A and all items of B, without duplicates. ###### Examples - `[1, 2, 3] | [2, 3, 4] == [1, 2, 3, 4]` ##### `XOR` (exclusive Or) Returns an ordered list of all items that are present either in A or B but not both. ###### Examples - `[1, 2, 3] XOR [3, 4, 5] == [1, 2, 4, 5]` ### Function / lambda Standard Python function. #### Calling A function call consists of the function followed by an argument list enclosed in parentheses. The function can be an identifier or any expression returning a function. someFunc(arg1, arg2, arg3) The argument list can be passed as a list object, for example for dynamic calls, using the `*` expanding operator in front of the list object. gcd(*[248, 4584]) == gcd(248, 4584) #### Lambda/inline function syntax Comma-separated list of parameters enclosed in braces, followed by expression enclosed in parentheses. The function can be called immediately. There is no limit to the amount of parameters. A parameter is made of an identifier, no less, no more. Varargs are not available yet. ##### Examples - `{x, y}(2 * x + y)(3, 8) == 14` - `map({a}(2 * a), [2, 3, 4]) == [4, 6, 8]` ## Operators ### Binary operators | Symbol | Operator | Types | |--------|----------|-------| | `+` | Plus, Concatenate | Number, String, List | | `-` | Minus, Reverse | Number, List | | `*` | Times, Repeat | Number, List | | `/` | Divide | Number | | `%` | Modulus | Number | | `^` | Power | Number | | `<=` | Less than or equal | Number | | `<` | Strictly less than | Number | | `>` | Strictly greater than | Number | | `>=` | Greater than or equal | Number | | `==` | Equals | All | | `!=` | Not equals | All | | `&` / `ET` | AND / Intersection | Number, Boolean, List | | | / `OU` | OR / Union | Number, Boolean, List | | `XOR` | Exclusive OR / Exclusive union | Number, Boolean, List | ### Unary operators | Symbol | Operator | Types | |--------|----------|-------| | `-` | Negate | Number, List | | `NON` | Invert | Boolean | The numbers and booleans are treated the same way as in **plain Python**. In other words, booleans can be treated as numbers (`False` becomes 0 and `True` becomes 1), and numbers can be treated as booleans (0 becomes `False` and everything else becomes `True). If **strict mode** is enabled, operators can only be used with operands of **identical type**, and **implicit number-boolean casts** are disabled. The `c_bool` and `c_num` functions can then be used for that purpose. ## Function library The engine provides many functions that can be used with almost all value types. In the following table, a type name followed by a star (*) means that the function accepts a variable argument list of the specified self. #### Example The `average` function accepts either List(Number) or Number*. Thus, it can be used either with a list object: `average(myList)` or with varargs: `average(1, 2, 3)`. | Name | Parameters | Description | |------|------------|-------------| | |**Basic**| | |`abs`||Returns the absolute value of `num`.| |`arg` / `phase`||Returns the argument (or phase) of `x`.| |`ceil`||Returns the smallest integer greater than or equal to `num`.| |`conj`||Returns the complex conjugate of `x`.| |`derivative` / `deriv`||Returns the derivative of `func` (optional precision `h`).| |`exp`||Returns *e* to the power of `num`.| |`floor`||Returns the largest integer less than or equal to `num`.| |`gcd` / `pgcd`||Returns the greatest common divisor of `a` and `b`.| |`gradient`||Returns the gradient of `func` at `x` (optional precision `h`).| |`im`||Returns the imaginary part of `x`.| |`integrate` / `integ`||Returns the integral of `func` from `a` to `b` (optional number of steps: `steps`).| |`lcm` / `ppcm`||Returns the least common multiple of `a` and `b`.| |`ln`||Returns the natural (base-*e*) logarithm of `num`.| |`log`||Returns the base-`b` logarithm of `num`.| |`log10`||Returns the base-10 logarithm of `num`.| |`lower` / `minu`||Returns the lowercase version of `s`.| |`polar` / `polaire`||Returns a list containing the polar coordinates of `x`, respectively the modulus (radius) and argument (angle).| |`pow` / `puiss`||Returns `num` to the `p`-th power.| |`re`||Returns the real part of `x`.| |`rect`||Converts the specified polar coordinates to a complex number.| |`root`||Returns the `n`-th root of `num`.| |`round` / `arrondi`||Rounds `num` to the nearest integer / (if specified) to `prec` decimals.| |`sign`||Returns the sign of `num` (-1 if negative, 1 if positive, 0 otherwise).| |`sqrt` / `rac`||Returns the square root of `num`. If `num` < 0, the result will be Complex.| |`upper` / `maju`||Returns the uppercase version of `s`.| | |**Geometry**| | |`area_circle`||Returns the area of the circle with the specified `radius`.| |`area_cube`||Returns the surface area of the cube with the specified `side` length.| |`area_cylinder`||Returns the surface area of the cylinder with the specified `radius` and `height`.| |`area_ellipse`||Returns the area of the ellipse with radii `r1` and `r2`.| |`area_parallelepiped`||Returns the surface area of the parallelogram with side lengths `a`, `b` and `c`.| |`area_parallelogram`||Returns the area of the parallelogram with the specified `base` and `height`.| |`area_polygon`||Returns the area of the regular polygon with the specified number of `sides` and side `length`.| |`area_rectangle`||Returns the area of the rectangle with side lengths `s1` and `s2`.| |`area_sector`||Returns the area of the circle sector with the specified `radius` and `angle`.| |`area_sphere`||Returns the surface area of the sphere with the specified `radius`.| |`area_square`||Returns the area of the square with the specified `side` length.| |`area_trapezoid`||Returns the area of the trapezoid with sides `a` and `b` and height `height`.| |`area_triangle`||Returns the area of the triangle with the specified base and height.| |`area_triangle_sides`||Returns the area of the triangle with the specified side lengths.| |`peri_circle`||Returns the perimeter of the circle with the specified `radius`.| |`vol_cube`||Returns the volume of the cube with the specified `side` length.| |`vol_cylinder`||Returns the volume of the cylinder with the specified `radius` and `height`.| |`vol_parallelepiped`||Returns the volume of the parallelogram with side lengths `a`, `b` and `c`.| |`vol_pyramid`||Returns the volume of the regular pyramid with the specified number of `sides`, side `length` and `height`.| |`vol_sphere`||Returns the volume of the sphere with the specified `radius`.| | |**Statistics**| | |`arithm_mean` / `moyenne` / `average`||Returns the arithmetic mean of `args`.| |`beta`||Returns the Beta function at `a` and `b`.| |`binomial`||Returns the binomial coefficient for a subset of size `k` and a set of size `n`.| |`choice` / `choix`||Returns a random element from `args`.| |`d_binomial`||Returns the probability for `k` with the binomial distribution of parameters `n` and `p`.| |`d_normal_cdf`||Returns the cumulative probability for `x` with the normal distribution of parameters µ=`mu` and σ=`sigma`.| |`d_normal_cdf_inv`||Returns the number with cumulative probability `p` with the normal distribution of parameters µ=`mu` and σ=`sigma`.| |`d_normal_pdf`||Returns the probability for `x` with the normal distribution of parameters µ=`mu` and σ=`sigma`.| |`d_normal_std_cdf`||Returns the cumulative probability for `x` with the standard normal distribution (µ=0 and σ=1).| |`d_normal_std_cdf_inv`||Returns the number with cumulative probability `p` with the standard normal distribution (µ=0 and σ=1).| |`d_normal_std_pdf`||Returns the probability for `x` with the standard normal distribution (µ=0 and σ=1).| |`erf`||Returns the error function at `x`.| |`erfc`||Returns the complementary error function at `x`.| |`erfcinv`||Returns the inverse of the complementary error function at `y`.| |`erfinv`||Returns the inverse of the error function at `y`.| |`euler`||Returns the `n`-th Euler number.| |`fact`||Returns the factorial of `x`.| |`fib`||Returns the `n`-th Fibonacci number.| |`filter` / `filtre`||Returns a list containing all elements of `lst` for which `func` returns a truthy value.| |`gamma`||Returns the Gamma function at `x`.| |`harmonic_mean` / `moyenne_harmo`||Returns the harmonic mean of `args`.| |`irange`||Generates a list containing all number from `start` (inclusive) to `end` (inclusive) with a step of `step`.| |`len` / `taille`||Returns the number of elements in `T`.| |`log_gamma`||Returns the natural logarithm of the absolute value of the Gamma function at `x`.| |`map` / `appl`||Applies `func` to each element of `lst` and returns the resulting list.| |`max`||Returns the maximum value of `args`.| |`max_index`||Returns the index of maximum value of `args`.| |`median`||Returns the median of `lst`.| |`min`||Returns the minimum value of `args`.| |`min_index`||Returns the index of minimum value of `args`.| |`mode`||Returns the mode of `lst`.| |`randint` / `alea_ent`||Returns a random integer between `a` and `b` (inclusive).| |`random` / `alea`||Returns a random number between 0 (inclusive) and 1 (exclusive).| |`range`||Generates a list containing all number from `start` (inclusive) to `end` (exclusive) with a step of `step`.| |`slice` / `tranche`||Returns a slice of the specified list, from index `start` (inclusive) to either index `end` (exclusive) or the end of the list.| |`stand_dev` / `ecart_type`||Returns the population standard deviation of `lst`.| |`stand_dev_sample` / `ecart_type_echant`||Returns the sample standard deviation of `lst`.| |`sum`||Returns the sum of all the terms of `args`.| |`swap`||Swaps the elements of `t` at indices `a` and `b`.| |`variance`||Returns the population variance of `lst`.| |`variance_sample` / `variance_echant`||Returns the sample variance of `lst`.| | |**Trigonometry**| | |`acos`||Returns the arc cosine of `x`.| |`acosh`||Returns the inverse hyperbolic cosine of `x`.| |`acot`||Returns the inverse cotangent of `x`.| |`acoth`||Returns the inverse hyperbolic cotangent of `x`.| |`acsc`||Returns the inverse cosecant of `x`.| |`acsch`||Returns the inverse hyperbolic cosecant of `x`.| |`asec`||Returns the inverse secant of `x`.| |`asech`||Returns the inverse hyperbolic secant of `x`.| |`asin`||Returns the arc sine of `x`.| |`asinh`||Returns the inverse hyperbolic sine of `x`.| |`atan`||Returns the arc tangent of `x`.| |`atan2`||Returns the arc tangent of `y` / `x`.| |`atanh`||Returns the inverse hyperbolic tangent of `x`.| |`chord` / `crd`||Returns the chord of `x`.| |`cos`||Returns the cosine of `x`.| |`cosh`||Returns the hyperbolic cosine of `x`.| |`cot`||Returns the cotangent of `x`.| |`coth`||Returns the hyperbolic cotangent of `x`.| |`covercos`||Returns the coversed cosine of `x`.| |`coversin`||Returns the coversed sine of `x`.| |`csc`||Returns the cosecant of `x`.| |`csch`||Returns the hyperbolic cosecant of `x`.| |`degrees` / `deg`||Converts angle `x` from radians to degrees.| |`excsc`||Returns the excosecant of `x`.| |`exsec`||Returns the exsecant of `x`.| |`hacovercos`||Returns the hacoversed cosine of `x`.| |`hacoversin`||Returns the hacoversed sine of `x`.| |`havercos`||Returns the haversed cosine of `x`.| |`haversin`||Returns the haversed sine of `x`.| |`hypot`||Returns the hypotenuse / Euclidean norm of the vector (`x`, `y`).| |`radians` / `rad`||Converts angle `x` from degrees to radians.| |`sec`||Returns the secant of `x`.| |`sech`||Returns the hyperbolic secant of `x`.| |`sin`||Returns the sine of `x`.| |`sinc`||Returns the cardinal sine of `x`.| |`sinh`||Returns the hyperbolic sine of `x`.| |`tan`||Returns the tangent of `x`.| |`tanh`||Returns the hyperbolic tangent of `x`.| |`vercos`||Returns the versed cosine of `x`.| |`versin`||Returns the versed sine of `x`.| | |**Type conversion**| | |`c_bool`||Tries to convert `obj` to Boolean.| |`c_list`||Tries to convert `obj` to List.| |`c_num`||Tries to convert `obj` to Number.| |`c_str`||Converts `obj` to String.| Useful (?) constants are also provided, with the maximum supported precision. | Name | Approximated value | Description | |------|-------------------:|-------------| | |**Other constants**| | |`e`|2.718281828459045|*e* - Euler number| |`euler_gamma`|0.577215664901533|*γ* - Euler-Mascheroni constant| |`i`|i|*i* - Imaginary unit| |`inf`|inf|*∞* - Positive infinity| |`khinchin`|2.685452001065306|*K0* - Khinchin's constant| |`phi`|1.618033988749895|*φ* - Golden ratio| | |**Physics**| | |`celerity`|299792458|*c* - Speed of light in vacuum (m·s-1)| |`gravity`|6.6740831·10-11|*G* - Gravitational constant (N·m2·kg-2)| |`planck`|6.62607004081·10-34|*h* - Planck constant (J·s-1)| |`planck_charge`|1.8755459·10-18|*qP* - Planck charge (C)| |`planck_length`|1.61622938·10-35|*lP* - Planck length (m)| |`planck_mass`|2.17647051·10-8|*mP* - Planck mass (kg)| |`planck_temp`|1.41680833·1032|*TP* - Planck temperature (K)| |`planck_time`|5.3911413·10-44|*tP* - Planck time (s)| |`red_planck`|1.054571629·10-34|*ħ* - Reduced Planck constant (J·s-1)| |`vacuum_imped`|376.730313461770663|*Z0* - Impedance of free space (Ω)| |`vacuum_permea`|1.256637061435917·10-6|*μ0* - Vacuum permeability (N·A-2)| |`vacuum_permit`|8.854187817620389·10-12|*ε0* - Vacuum permittivity (F·m-1)| | |**Statistics**| | |`catalan`|0.915965594177219|*G* - Catalan's constant| |`glaisher`|1.282427129100623|*A* - Glaisher-Kinkelin constant| | |**Trigonometry**| | |`pi`|3.141592653589793|*π* - Perimeter of a circle of diameter 1| |`tau`|6.283185307179586|*τ* - Double of π| Turing-0.11-beta/docs/expression_templ.md000066400000000000000000000115711331472757200205060ustar00rootroot00000000000000# Built-in expression parser Turing has a built-in mathematical expression parser, which is used when the program is in pseudocode mode. The language is case-insensitive for keywords, i.e. `FALSE`, `false` and `FaLsE` are the same thing. ## Types ### Number Stored using a Python `float`, automatically converted to `int` when needed. A point (`.`) shall be used to separate the integer part from the fractional part. #### Example - `42` - `3.1415` ### Boolean Stored using a Python `bool`, automatically converted to Number when needed (only if strict mode is disabled). #### Syntax The following keywords are available: - `TRUE` / `VRAI` : True value - `FALSE` / `FAUX` : False value ### String Stored using a Python `str` (Unicode). A string is enclosed between double quotes (`"`). It is not possible yet to escape characters inside a string literal. ### List Stored using a Python `list`, indices start at 0 (like in any real programming language. *Lua*, you should feel ashamed of yourself). #### Operators Certain operators can be applied on operands of type List. ##### `+` (Plus) Concatenates two lists. ###### Examples - `[1, 2, 3] + [3, 4, 5] == [1, 2, 3, 3, 4, 5]` ##### `-` (Binary minus) Returns all items of A that are not in B. ###### Examples - `[1, 2, 3] - [3, 4, 5] == [1, 2]` ##### `-` (Unary minus) Returns a reversed copy of the list. ###### Examples - `-[1, 2, 3] == [3, 2, 1]` ##### `*` (Times) *Must be used on a List and a Number together.* Duplicates the list the specified amount of times. ###### Examples - `[1, 2, 3] * 3 == [1, 2, 3, 1, 2, 3, 1, 2, 3]` ##### `&` / `ET` (Intersection) Returns all items of A that are also in B. ###### Examples - `[1, 2, 3] & [2, 3, 4] == [2, 3]` ##### `|` / `OU` (Union) Returns an ordered list of all items of A and all items of B, without duplicates. ###### Examples - `[1, 2, 3] | [2, 3, 4] == [1, 2, 3, 4]` ##### `XOR` (exclusive Or) Returns an ordered list of all items that are present either in A or B but not both. ###### Examples - `[1, 2, 3] XOR [3, 4, 5] == [1, 2, 4, 5]` ### Function / lambda Standard Python function. #### Calling A function call consists of the function followed by an argument list enclosed in parentheses. The function can be an identifier or any expression returning a function. someFunc(arg1, arg2, arg3) The argument list can be passed as a list object, for example for dynamic calls, using the `*` expanding operator in front of the list object. gcd(*[248, 4584]) == gcd(248, 4584) #### Lambda/inline function syntax Comma-separated list of parameters enclosed in braces, followed by expression enclosed in parentheses. The function can be called immediately. There is no limit to the amount of parameters. A parameter is made of an identifier, no less, no more. Varargs are not available yet. ##### Examples - `{x, y}(2 * x + y)(3, 8) == 14` - `map({a}(2 * a), [2, 3, 4]) == [4, 6, 8]` ## Operators ### Binary operators | Symbol | Operator | Types | |--------|----------|-------| | `+` | Plus, Concatenate | Number, String, List | | `-` | Minus, Reverse | Number, List | | `*` | Times, Repeat | Number, List | | `/` | Divide | Number | | `%` | Modulus | Number | | `^` | Power | Number | | `<=` | Less than or equal | Number | | `<` | Strictly less than | Number | | `>` | Strictly greater than | Number | | `>=` | Greater than or equal | Number | | `==` | Equals | All | | `!=` | Not equals | All | | `&` / `ET` | AND / Intersection | Number, Boolean, List | | | / `OU` | OR / Union | Number, Boolean, List | | `XOR` | Exclusive OR / Exclusive union | Number, Boolean, List | ### Unary operators | Symbol | Operator | Types | |--------|----------|-------| | `-` | Negate | Number, List | | `NON` | Invert | Boolean | The numbers and booleans are treated the same way as in **plain Python**. In other words, booleans can be treated as numbers (`False` becomes 0 and `True` becomes 1), and numbers can be treated as booleans (0 becomes `False` and everything else becomes `True). If **strict mode** is enabled, operators can only be used with operands of **identical type**, and **implicit number-boolean casts** are disabled. The `c_bool` and `c_num` functions can then be used for that purpose. ## Function library The engine provides many functions that can be used with almost all value types. In the following table, a type name followed by a star (*) means that the function accepts a variable argument list of the specified self. #### Example The `average` function accepts either List(Number) or Number*. Thus, it can be used either with a list object: `average(myList)` or with varargs: `average(1, 2, 3)`. | Name | Parameters | Description | |------|------------|-------------| {{{funcdoc}}} Useful (?) constants are also provided, with the maximum supported precision. | Name | Approximated value | Description | |------|-------------------:|-------------| {{{constdoc}}} Turing-0.11-beta/docs/index.md000066400000000000000000000001031331472757200162020ustar00rootroot00000000000000# Turing ## Documentation - [Expression parser](expression.html) Turing-0.11-beta/examples/000077500000000000000000000000001331472757200154455ustar00rootroot00000000000000Turing-0.11-beta/examples/adv_babylonian.tr000066400000000000000000000020131331472757200207600ustar00rootroot00000000000000BlockStmt([CommentStmt('Finds the square root of a number using the Babylonian algorithm'), InputStmt(IdentifierNode('a'), None), AssignStmt(IdentifierNode('x'), NumberNode(1)), AssignStmt(IdentifierNode('y'), IdentifierNode('a')), AssignStmt(IdentifierNode('prec'), NumberNode(1e-08)), WhileStmt(BinOpNode(CallNode(IdentifierNode('abs'), [BinOpNode(IdentifierNode('y'), IdentifierNode('x'), '-')]), IdentifierNode('prec'), '>'), [AssignStmt(IdentifierNode('x'), BinOpNode(BinOpNode(IdentifierNode('x'), IdentifierNode('y'), '+'), NumberNode(2), '/')), AssignStmt(IdentifierNode('y'), BinOpNode(IdentifierNode('a'), IdentifierNode('x'), '/'))]), DisplayStmt(CallNode(IdentifierNode('round'), [CallNode(IdentifierNode('min'), [ListNode([IdentifierNode('x'), IdentifierNode('y')])]), IdentifierNode('prec')]), False), DisplayStmt(StringNode(' ≤ √a ≤ '), False), DisplayStmt(CallNode(IdentifierNode('round'), [CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('x'), IdentifierNode('y')])]), IdentifierNode('prec')]), True)])Turing-0.11-beta/examples/adv_dichotomy.tr000066400000000000000000000021671331472757200206530ustar00rootroot00000000000000BlockStmt([CommentStmt('Solves Func(x)=0 on the interval [a, b]'), AssignStmt(IdentifierNode('Func'), LambdaNode(['x'], BinOpNode(BinOpNode(IdentifierNode('x'), NumberNode(1), '-'), BinOpNode(NumberNode(1), IdentifierNode('x'), '/'), '-'))), AssignStmt(IdentifierNode('prec'), NumberNode(1e-08)), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), WhileStmt(BinOpNode(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-'), IdentifierNode('prec'), '>'), [AssignStmt(IdentifierNode('m'), BinOpNode(BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '+'), NumberNode(2), '/')), IfStmt(BinOpNode(BinOpNode(CallNode(IdentifierNode('Func'), [IdentifierNode('m')]), CallNode(IdentifierNode('Func'), [IdentifierNode('b')]), '*'), NumberNode(0), '>'), [AssignStmt(IdentifierNode('b'), IdentifierNode('m'))]), ElseStmt([AssignStmt(IdentifierNode('a'), IdentifierNode('m'))])]), DisplayStmt(CallNode(IdentifierNode('round'), [IdentifierNode('a'), IdentifierNode('prec')]), False), DisplayStmt(StringNode(' < x < '), False), DisplayStmt(CallNode(IdentifierNode('round'), [IdentifierNode('b'), IdentifierNode('prec')]), True)])Turing-0.11-beta/examples/adv_gradient.py000066400000000000000000000006631331472757200204530ustar00rootroot00000000000000import colorsys import numpy as np g_window(-5, 5, -2, 2) step = 0.2 size = 0.1 func = lambda a: 1.5 * cos(a) * cos(0.5 * a) for x in np.arange(-5, 5, step): (r, g, b) = colorsys.hsv_to_rgb((x + 5) / 10, 1.0, 1.0) r = int(255 * r) g = int(255 * g) b = int(255 * b) clr = ('#%02x%02x%02x') % (r, g, b) for xx in np.arange(x, x + step + size, size): y = func(xx) g_line(xx, y, xx, 0, clr)Turing-0.11-beta/examples/adv_hangman.py000066400000000000000000000012721331472757200202640ustar00rootroot00000000000000words = ["HELLO", "COMPUTER", "KEYBOARD", "INTERNET", "CORRECT", "HORSE", "BATTERY", "STAPLE"] word = choice(words) user = ["_" for _ in word] tries = 10 while True: if tries <= 0: print("You lose!") print("The word was: " + word) break print(" ".join(user)) if user == list(word): print("You win!") break print("%d tries remaining" % tries) current = input("? ")[:1].upper() if not current: continue for i in range(len(user)): if word[i] == current: user[i] = current if current not in word: tries -= 1 print("\n") Turing-0.11-beta/examples/adv_hangman.tr000066400000000000000000000037341331472757200202660ustar00rootroot00000000000000BlockStmt([AssignStmt(IdentifierNode('words'), ListNode([StringNode('HELLO'), StringNode('COMPUTER'), StringNode('KEYBOARD'), StringNode('INTERNET'), StringNode('CORRECT'), StringNode('HORSE'), StringNode('BATTERY'), StringNode('STAPLE')])), AssignStmt(IdentifierNode('word'), CallNode(IdentifierNode('choice'), [IdentifierNode('words')])), AssignStmt(IdentifierNode('user'), BinOpNode(ListNode([StringNode('_')]), CallNode(IdentifierNode('len'), [IdentifierNode('word')]), '*')), AssignStmt(IdentifierNode('tries'), NumberNode(10)), WhileStmt(NumberNode(True), [IfStmt(BinOpNode(IdentifierNode('tries'), NumberNode(0), '<='), [DisplayStmt(StringNode('You lose!'), True), DisplayStmt(BinOpNode(StringNode('The word was: '), IdentifierNode('word'), '+'), True), BreakStmt()]), DisplayStmt(CallNode(IdentifierNode('c_str'), [IdentifierNode('user')]), True), IfStmt(BinOpNode(IdentifierNode('user'), CallNode(IdentifierNode('c_list'), [IdentifierNode('word')]), '=='), [DisplayStmt(StringNode('You win!'), True), BreakStmt()]), DisplayStmt(BinOpNode(IdentifierNode('tries'), StringNode(' tries remaining'), '+'), True), InputStmt(IdentifierNode('current'), StringNode('? '), True), IfStmt(BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('current')]), NumberNode(1), '!='), [ContinueStmt()]), AssignStmt(IdentifierNode('found'), NumberNode(False)), ForStmt('i', NumberNode(0), BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('user')]), NumberNode(1), '-'), [IfStmt(BinOpNode(ArrayAccessNode(IdentifierNode('word'), IdentifierNode('i')), CallNode(IdentifierNode('upper'), [IdentifierNode('current')]), '=='), [AssignStmt(ArrayAccessNode(IdentifierNode('user'), IdentifierNode('i')), ArrayAccessNode(IdentifierNode('word'), IdentifierNode('i'))), AssignStmt(IdentifierNode('found'), NumberNode(True))])], None), IfStmt(UnaryOpNode(IdentifierNode('found'), 'NOT'), [AssignStmt(IdentifierNode('tries'), BinOpNode(IdentifierNode('tries'), NumberNode(1), '-'))]), DisplayStmt(StringNode(' '), True)])])Turing-0.11-beta/examples/adv_hilbert.py000066400000000000000000000014221331472757200203010ustar00rootroot00000000000000# http://www.fundza.com/algorithmic/space_filling/hilbert/basics/index.html last_x, last_y = -1, -1 def add_point(x, y): global last_x, last_y if last_x != -1: g_line(last_x, last_y, x, y) last_x, last_y = x, y def hilbert(x0, y0, xi, xj, yi, yj, n): if n <= 0: X = x0 + (xi + yi)/2 Y = y0 + (xj + yj)/2 add_point(X, Y) else: hilbert(x0, y0, yi/2, yj/2, xi/2, xj/2, n - 1) hilbert(x0 + xi/2, y0 + xj/2, xi/2, xj/2, yi/2, yj/2, n - 1) hilbert(x0 + xi/2 + yi/2, y0 + xj/2 + yj/2, xi/2, xj/2, yi/2, yj/2, n - 1) hilbert(x0 + xi/2 + yi, y0 + xj/2 + yj, -yi/2,-yj/2,-xi/2,-xj/2, n - 1) g_window(0, 1, 0, 1) hilbert(0, 0, 1, 0, 0, 1, 3)Turing-0.11-beta/examples/adv_integ_trapezoidal.tr000066400000000000000000000022661331472757200223600ustar00rootroot00000000000000BlockStmt([CommentStmt('Approximates the integral of f(x) from a to b using the trapezoidal rule.'), AssignStmt(IdentifierNode('f'), LambdaNode(['x'], BinOpNode(CallNode(IdentifierNode('sin'), [IdentifierNode('x')]), NumberNode(2), '^'))), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), AssignStmt(IdentifierNode('count'), NumberNode(10)), AssignStmt(IdentifierNode('result'), NumberNode(0)), AssignStmt(IdentifierNode('step'), BinOpNode(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-'), IdentifierNode('count'), '/')), ForStmt('i', NumberNode(0), BinOpNode(IdentifierNode('count'), NumberNode(1), '-'), [AssignStmt(IdentifierNode('result'), BinOpNode(IdentifierNode('result'), BinOpNode(BinOpNode(IdentifierNode('step'), NumberNode(2), '/'), BinOpNode(CallNode(IdentifierNode('f'), [BinOpNode(IdentifierNode('a'), BinOpNode(IdentifierNode('i'), IdentifierNode('step'), '*'), '+')]), CallNode(IdentifierNode('f'), [BinOpNode(IdentifierNode('a'), BinOpNode(BinOpNode(IdentifierNode('i'), NumberNode(1), '+'), IdentifierNode('step'), '*'), '+')]), '+'), '*'), '+'))], None), DisplayStmt(BinOpNode(StringNode('∫a→b f(x) dx = '), IdentifierNode('result'), '+'), True)])Turing-0.11-beta/examples/adv_montecarlo.tr000066400000000000000000000015601331472757200210130ustar00rootroot00000000000000BlockStmt([CommentStmt('Approximates the value of Pi using the Monte-Carlo algorithm'), AssignStmt(IdentifierNode('sum'), NumberNode(0)), AssignStmt(IdentifierNode('steps'), NumberNode(10000)), ForStmt('i', NumberNode(1), IdentifierNode('steps'), [AssignStmt(IdentifierNode('x'), CallNode(IdentifierNode('random'), [])), AssignStmt(IdentifierNode('y'), CallNode(IdentifierNode('random'), [])), IfStmt(BinOpNode(BinOpNode(BinOpNode(IdentifierNode('x'), IdentifierNode('x'), '*'), BinOpNode(IdentifierNode('y'), IdentifierNode('y'), '*'), '+'), NumberNode(1), '<'), [AssignStmt(IdentifierNode('sum'), BinOpNode(IdentifierNode('sum'), NumberNode(1), '+'))])], None), AssignStmt(IdentifierNode('approx_pi'), BinOpNode(BinOpNode(NumberNode(4), IdentifierNode('sum'), '*'), IdentifierNode('steps'), '/')), DisplayStmt(BinOpNode(StringNode('Pi ~= '), IdentifierNode('approx_pi'), '+'))])Turing-0.11-beta/examples/adv_pendu.py000066400000000000000000000012021331472757200177570ustar00rootroot00000000000000mots = [ "BONJOUR", "ORDINATEUR", "CLAVIER", "SOURIS", "CHEVAL", "OISEAU", "CHIEN" ] mot = choix(mots) saisi = ["_"] * taille(mot) essais = 10 while True: if essais <= 0: print("Vous avez perdu !") print("Le mot était : " + mot) break print(" ".join(saisi)) if saisi == list(mot): print("Vous avez gagné !") break print("%d essais restants" % essais) lettre = maju(input("? ")) for i in range(taille(mot)): if mot[i] == lettre: saisi[i] = lettre if lettre not in mot: essais -= 1 print(" ") Turing-0.11-beta/examples/adv_sierpinsky.py000066400000000000000000000002431331472757200210500ustar00rootroot00000000000000g_window(-10, 100, 100, -10) order = 5 size = 2 ** order for y in range(size): for x in range(size): if x & y == 0: g_point(x * 2, y * 2)Turing-0.11-beta/examples/basic_JustePrix.tr000066400000000000000000000016431331472757200211160ustar00rootroot00000000000000BlockStmt([AssignStmt(IdentifierNode('Prix'), CallNode(IdentifierNode('randint'), [NumberNode(0), NumberNode(1000)])), AssignStmt(IdentifierNode('X'), UnaryOpNode(NumberNode(1), '-')), AssignStmt(IdentifierNode('Essais'), NumberNode(0)), WhileStmt(BinOpNode(IdentifierNode('X'), IdentifierNode('Prix'), '!='), [InputStmt(IdentifierNode('X'), None, False), IfStmt(BinOpNode(IdentifierNode('X'), IdentifierNode('Prix'), '<'), [DisplayStmt(StringNode(' '), True), DisplayStmt(StringNode("C'est trop bas !!"), True), DisplayStmt(StringNode(' '), True)]), ElseStmt([DisplayStmt(StringNode(' '), True), DisplayStmt(StringNode("C'est trop haut !"), True), DisplayStmt(StringNode(' '), True)]), AssignStmt(IdentifierNode('Essais'), BinOpNode(IdentifierNode('Essais'), NumberNode(1), '+'))]), DisplayStmt(BinOpNode(BinOpNode(StringNode("C'est gagné WAY WAY WAY, en "), IdentifierNode('Essais'), '+'), StringNode(' essais !'), '+'), True)])Turing-0.11-beta/examples/basic_bubble_sort.tr000066400000000000000000000034421331472757200214620ustar00rootroot00000000000000BlockStmt([AssignStmt(IdentifierNode('lst'), ListNode([NumberNode(5), NumberNode(1), NumberNode(4), NumberNode(2), NumberNode(8), NumberNode(2), NumberNode(7), NumberNode(1), NumberNode(8), NumberNode(3), NumberNode(6), NumberNode(4), NumberNode(9), NumberNode(5), NumberNode(2), NumberNode(4)])), GWindowStmt(NumberNode(0), CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), CallNode(IdentifierNode('min'), [IdentifierNode('lst')]), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), NumberNode(0), NumberNode(0)), ForStmt('i', BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), NumberNode(1), '-'), NumberNode(1), [ForStmt('j', NumberNode(0), BinOpNode(IdentifierNode('i'), NumberNode(1), '-'), [GClearStmt(), IfStmt(BinOpNode(ArrayAccessNode(IdentifierNode('lst'), BinOpNode(IdentifierNode('j'), NumberNode(1), '+')), ArrayAccessNode(IdentifierNode('lst'), IdentifierNode('j')), '<'), [CallStmt(IdentifierNode('swap'), [IdentifierNode('lst'), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), IdentifierNode('j')]), GLineStmt(IdentifierNode('j'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), StringNode('red'))]), ElseStmt([GLineStmt(IdentifierNode('j'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), BinOpNode(IdentifierNode('j'), NumberNode(1), '+'), CallNode(IdentifierNode('max'), [IdentifierNode('lst')]), StringNode('green'))]), ForStmt('i', NumberNode(0), BinOpNode(CallNode(IdentifierNode('len'), [IdentifierNode('lst')]), NumberNode(1), '-'), [GLineStmt(IdentifierNode('i'), NumberNode(0), IdentifierNode('i'), ArrayAccessNode(IdentifierNode('lst'), IdentifierNode('i')), StringNode('black'))], None), SleepStmt(NumberNode(0.3))], None)], None)])Turing-0.11-beta/examples/basic_fibo.tr000066400000000000000000000010221331472757200200670ustar00rootroot00000000000000BlockStmt([CommentStmt('Calculates the n-th Fibonacci number using a recursive function'), FuncStmt('fibo', ['n'], [IfStmt(BinOpNode(IdentifierNode('n'), NumberNode(1), '<='), [ReturnStmt(IdentifierNode('n'))]), ReturnStmt(BinOpNode(CallNode(IdentifierNode('fibo'), [BinOpNode(IdentifierNode('n'), NumberNode(1), '-')]), CallNode(IdentifierNode('fibo'), [BinOpNode(IdentifierNode('n'), NumberNode(2), '-')]), '+'))]), InputStmt(IdentifierNode('num'), None), DisplayStmt(CallNode(IdentifierNode('fibo'), [IdentifierNode('num')]))])Turing-0.11-beta/examples/basic_gcd.tr000066400000000000000000000017331331472757200177160ustar00rootroot00000000000000BlockStmt([CommentStmt('Recursively calculates the GCD of two numbers'), FuncStmt('gcd', ['a', 'b'], [IfStmt(BinOpNode(IdentifierNode('a'), NumberNode(0), '=='), [ReturnStmt(IdentifierNode('b'))]), IfStmt(BinOpNode(IdentifierNode('b'), NumberNode(0), '=='), [ReturnStmt(IdentifierNode('a'))]), IfStmt(BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '<='), [ReturnStmt(CallNode(IdentifierNode('gcd'), [BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '-'), IdentifierNode('b')]))]), ReturnStmt(CallNode(IdentifierNode('gcd'), [IdentifierNode('a'), BinOpNode(IdentifierNode('b'), IdentifierNode('a'), '-')]))]), InputStmt(IdentifierNode('num1'), None), InputStmt(IdentifierNode('num2'), None), DisplayStmt(BinOpNode(BinOpNode(BinOpNode(BinOpNode(BinOpNode(StringNode('GCD of '), IdentifierNode('num1'), '+'), StringNode(' and '), '+'), IdentifierNode('num2'), '+'), StringNode(' is '), '+'), CallNode(IdentifierNode('gcd'), [IdentifierNode('num1'), IdentifierNode('num2')]), '+'))])Turing-0.11-beta/examples/basic_sum.tr000066400000000000000000000006121331472757200177600ustar00rootroot00000000000000BlockStmt([CommentStmt('Displays the sum of all integers from 1 to user-inputted number'), AssignStmt(IdentifierNode('s'), NumberNode(0)), InputStmt(IdentifierNode('n'), None), ForStmt('i', NumberNode(1), IdentifierNode('n'), [AssignStmt(IdentifierNode('s'), BinOpNode(IdentifierNode('s'), IdentifierNode('i'), '+'))], None), DisplayStmt(StringNode('Sum: ')), DisplayStmt(IdentifierNode('s'))])Turing-0.11-beta/examples/med_quadratic.tr000066400000000000000000000040641331472757200206220ustar00rootroot00000000000000BlockStmt([CommentStmt('Finds the roots of a second-degree polynomial using the quadratic formula.'), DisplayStmt(StringNode('f(x) = ax² + bx + c'), True), InputStmt(IdentifierNode('a'), None), InputStmt(IdentifierNode('b'), None), InputStmt(IdentifierNode('c'), None), AssignStmt(IdentifierNode('D'), BinOpNode(BinOpNode(IdentifierNode('b'), NumberNode(2), '^'), BinOpNode(BinOpNode(NumberNode(4), IdentifierNode('a'), '*'), IdentifierNode('c'), '*'), '-')), DisplayStmt(BinOpNode(StringNode('Δ = '), IdentifierNode('D'), '+'), True), IfStmt(BinOpNode(IdentifierNode('a'), NumberNode(0), '!='), [AssignStmt(IdentifierNode('alpha'), BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), AssignStmt(IdentifierNode('beta'), BinOpNode(BinOpNode(IdentifierNode('D'), NumberNode(4), '/'), IdentifierNode('a'), '*')), DisplayStmt(BinOpNode(StringNode('α = '), IdentifierNode('alpha'), '+'), True), DisplayStmt(BinOpNode(StringNode('β = '), IdentifierNode('beta'), '+'), True)]), IfStmt(BinOpNode(IdentifierNode('D'), NumberNode(0), '<'), [DisplayStmt(StringNode('No real roots'), True)]), ElseStmt([IfStmt(BinOpNode(IdentifierNode('D'), NumberNode(0), '=='), [AssignStmt(IdentifierNode('x0'), BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), DisplayStmt(BinOpNode(StringNode('Unique real root - x0 = '), IdentifierNode('x0'), '+'), True)]), ElseStmt([AssignStmt(IdentifierNode('x1'), BinOpNode(BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), CallNode(IdentifierNode('sqrt'), [IdentifierNode('D')]), '-'), NumberNode(2), '/'), IdentifierNode('a'), '*')), AssignStmt(IdentifierNode('x2'), BinOpNode(BinOpNode(BinOpNode(UnaryOpNode(IdentifierNode('b'), '-'), CallNode(IdentifierNode('sqrt'), [IdentifierNode('D')]), '+'), NumberNode(2), '/'), IdentifierNode('a'), '*')), DisplayStmt(StringNode('Two real roots:'), True), DisplayStmt(BinOpNode(StringNode('x1 = '), IdentifierNode('x1'), '+'), True), DisplayStmt(BinOpNode(StringNode('x2 = '), IdentifierNode('x2'), '+'), True)])])])Turing-0.11-beta/examples/med_wiggle.tr000066400000000000000000000011011331472757200201100ustar00rootroot00000000000000BlockStmt([CommentStmt('Such wiggle wow'), ForStmt('i', NumberNode(1), NumberNode(100), [GClearStmt(), GFuncStmt('x', BinOpNode(BinOpNode(IdentifierNode('i'), CallNode(IdentifierNode('cos'), [BinOpNode(IdentifierNode('x'), BinOpNode(IdentifierNode('i'), NumberNode(3), '/'), '+')]), '*'), NumberNode(25), '/'), UnaryOpNode(NumberNode(7), '-'), NumberNode(7), NumberNode(0.1), StringNode('red')), GWindowStmt(UnaryOpNode(NumberNode(10), '-'), NumberNode(10), UnaryOpNode(NumberNode(10), '-'), NumberNode(10), NumberNode(0), NumberNode(0)), SleepStmt(NumberNode(0.001))], None)])Turing-0.11-beta/examples/toutatice/000077500000000000000000000000001331472757200174465ustar00rootroot00000000000000Turing-0.11-beta/examples/toutatice/deux_contre_un.tr000066400000000000000000000014111331472757200230330ustar00rootroot00000000000000BlockStmt([AssignStmt(IdentifierNode('C'), NumberNode(0)), InputStmt(IdentifierNode('N'), None), ForStmt('i', NumberNode(1), IdentifierNode('N'), [AssignStmt(IdentifierNode('DR1'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), AssignStmt(IdentifierNode('DR2'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), AssignStmt(IdentifierNode('DB'), CallNode(IdentifierNode('alea_ent'), [NumberNode(1), NumberNode(6)])), IfStmt(BinOpNode(CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('DR1'), IdentifierNode('DR2')])]), IdentifierNode('DB'), '>'), [AssignStmt(IdentifierNode('C'), BinOpNode(IdentifierNode('C'), NumberNode(1), '+'))])], None), DisplayStmt(BinOpNode(IdentifierNode('C'), StringNode(' victoires'), '+'), True)])Turing-0.11-beta/examples/toutatice/epargne.tr000066400000000000000000000013541331472757200214410ustar00rootroot00000000000000BlockStmt([AssignStmt(IdentifierNode('debut'), NumberNode(2009)), AssignStmt(IdentifierNode('initiale'), NumberNode(1500)), AssignStmt(IdentifierNode('taux'), NumberNode(2.25)), InputStmt(IdentifierNode('annee'), None), AssignStmt(IdentifierNode('solde'), BinOpNode(IdentifierNode('initiale'), BinOpNode(BinOpNode(NumberNode(1), BinOpNode(IdentifierNode('taux'), NumberNode(100), '/'), '+'), BinOpNode(IdentifierNode('annee'), IdentifierNode('debut'), '-'), '^'), '*')), DisplayStmt(BinOpNode(BinOpNode(BinOpNode(BinOpNode(StringNode('En '), CallNode(IdentifierNode('str'), [IdentifierNode('annee')]), '+'), StringNode(', le solde sera de '), '+'), CallNode(IdentifierNode('str'), [IdentifierNode('solde')]), '+'), StringNode(' €'), '+'), True)])Turing-0.11-beta/examples/toutatice/monte_carlo.tr000066400000000000000000000021631331472757200223210ustar00rootroot00000000000000BlockStmt([GWindowStmt(NumberNode(0), NumberNode(1), NumberNode(0), NumberNode(1), NumberNode(1), NumberNode(1)), InputStmt(IdentifierNode('N'), None), AssignStmt(IdentifierNode('compteur'), NumberNode(0)), ForStmt('i', NumberNode(1), IdentifierNode('N'), [AssignStmt(IdentifierNode('x'), CallNode(IdentifierNode('alea'), [])), AssignStmt(IdentifierNode('y'), CallNode(IdentifierNode('alea'), [])), IfStmt(BinOpNode(CallNode(IdentifierNode('hypot'), [IdentifierNode('x'), IdentifierNode('y')]), NumberNode(1), '<='), [GPointStmt(IdentifierNode('x'), IdentifierNode('y'), StringNode('red')), AssignStmt(IdentifierNode('compteur'), BinOpNode(IdentifierNode('compteur'), NumberNode(1), '+'))]), ElseStmt([GPointStmt(IdentifierNode('x'), IdentifierNode('y'), StringNode('blue'))])], None), AssignStmt(IdentifierNode('F'), BinOpNode(IdentifierNode('compteur'), IdentifierNode('N'), '/')), DisplayStmt(BinOpNode(StringNode('La proportion de points rouges est : '), IdentifierNode('F'), '+'), True), DisplayStmt(BinOpNode(StringNode('Pi vaut donc 4 × F soit approximativement '), BinOpNode(NumberNode(4), IdentifierNode('F'), '*'), '+'), True)])Turing-0.11-beta/examples/toutatice/orthogonalite_1.tr000066400000000000000000000014551331472757200231200ustar00rootroot00000000000000BlockStmt([InputStmt(IdentifierNode('xa'), None), InputStmt(IdentifierNode('ya'), None), InputStmt(IdentifierNode('xb'), None), InputStmt(IdentifierNode('yb'), None), InputStmt(IdentifierNode('xc'), None), InputStmt(IdentifierNode('yc'), None), AssignStmt(IdentifierNode('m1'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('ya'), '-'), BinOpNode(IdentifierNode('xb'), IdentifierNode('xa'), '-'), '/')), AssignStmt(IdentifierNode('m2'), BinOpNode(BinOpNode(IdentifierNode('yc'), IdentifierNode('ya'), '-'), BinOpNode(IdentifierNode('xc'), IdentifierNode('xa'), '-'), '/')), IfStmt(BinOpNode(IdentifierNode('m1'), IdentifierNode('m2'), '=='), [DisplayStmt(StringNode('Les points A, B et C sont alignés.'), True)]), ElseStmt([DisplayStmt(StringNode('Les droites (AB) et (AC) sont sécantes.'), True)])])Turing-0.11-beta/examples/toutatice/orthogonalite_2.tr000066400000000000000000000024131331472757200231140ustar00rootroot00000000000000BlockStmt([InputStmt(IdentifierNode('xa'), None), InputStmt(IdentifierNode('ya'), None), InputStmt(IdentifierNode('xb'), None), InputStmt(IdentifierNode('yb'), None), InputStmt(IdentifierNode('xc'), None), InputStmt(IdentifierNode('yc'), None), AssignStmt(IdentifierNode('c'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xb'), IdentifierNode('xa'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('ya'), '-'), NumberNode(2), '^'), '+')), AssignStmt(IdentifierNode('a'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xb'), IdentifierNode('xc'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yb'), IdentifierNode('yc'), '-'), NumberNode(2), '^'), '+')), AssignStmt(IdentifierNode('b'), BinOpNode(BinOpNode(BinOpNode(IdentifierNode('xc'), IdentifierNode('xa'), '-'), NumberNode(2), '^'), BinOpNode(BinOpNode(IdentifierNode('yc'), IdentifierNode('ya'), '-'), NumberNode(2), '^'), '+')), IfStmt(BinOpNode(BinOpNode(BinOpNode(IdentifierNode('a'), IdentifierNode('b'), '+'), IdentifierNode('c'), '+'), BinOpNode(NumberNode(2), CallNode(IdentifierNode('max'), [ListNode([IdentifierNode('a'), IdentifierNode('b'), IdentifierNode('c')])]), '*'), '=='), [DisplayStmt(StringNode('oui'), False)]), ElseStmt([DisplayStmt(StringNode('non'), False)])])Turing-0.11-beta/examples2/000077500000000000000000000000001331472757200155275ustar00rootroot00000000000000Turing-0.11-beta/examples2/closures.tr000066400000000000000000000006311331472757200177350ustar00rootroot00000000000000BlockStmt([ FuncStmt("sayHello2", ["name"], [ AssignStmt(parse("text"), parse("\"Hello \" + name")), FuncStmt("say", [], [ DisplayStmt(parse("text")) ]), ReturnStmt(parse("say")) ]), AssignStmt(parse("say2"), parse("sayHello2(\"Bob\")")), CallStmt(parse("say2"), []) ])Turing-0.11-beta/examples2/fizzbuzz.tr000066400000000000000000000012701331472757200177730ustar00rootroot00000000000000BlockStmt([ ForStmt("i", parse("1"), parse("16"), [ IfStmt(parse("i % 15 == 0"), [ DisplayStmt(parse("\"FizzBuzz\"")) ]), ElseStmt([ IfStmt(parse("i % 3 == 0"), [ DisplayStmt(parse("\"Fizz\"")) ]), ElseStmt([ IfStmt(parse("i % 5 == 0"), [ DisplayStmt(parse("\"Buzz\"")) ]), ElseStmt([ DisplayStmt(parse("i")) ]) ]) ]), ]) ])Turing-0.11-beta/examples2/functions.tr000066400000000000000000000004261331472757200201100ustar00rootroot00000000000000BlockStmt([ FuncStmt("f1", ["n"], [ FuncStmt("f2", ["n"], [ ReturnStmt(parse("{m}({n}(m*n))(n)")) ]), ReturnStmt(parse("f2(n)")) ]), DisplayStmt(parse("f1(3)(4)")) ])Turing-0.11-beta/examples2/nested.tr000066400000000000000000000003161331472757200173600ustar00rootroot00000000000000BlockStmt([ ForStmt("i", parse("1"), parse("3"), [ ForStmt("i", parse("1"), parse("3"), [ DisplayStmt(parse("i")) ]) ]) ])Turing-0.11-beta/examples2/sum.tr000066400000000000000000000004351331472757200167040ustar00rootroot00000000000000BlockStmt([ AssignStmt(parse("sum"), parse("0")), InputStmt(parse("N")), ForStmt("i", parse("1"), parse("N"), [ AssignStmt(parse("sum"), parse("sum + i")) ]), DisplayStmt(parse("\"Result=\" + sum")) ])Turing-0.11-beta/examples2/what.tr000066400000000000000000000015761331472757200170520ustar00rootroot00000000000000BlockStmt([ AssignStmt(parse("i"), parse("42")), ForStmt("i", parse("1"), parse("10"), [ IfStmt(parse("1"), [ IfStmt(parse("i % 2"), [ ContinueStmt() ]), IfStmt(parse("i > 5"), [ FuncStmt("fibo", ["n"], [ IfStmt(parse("n <= 1"), [ ReturnStmt(parse("n")) ]), ReturnStmt(parse("fibo(n-1)+fibo(n-2)")) ]), DisplayStmt(parse("map(fibo, [5, 7, 9])")), DisplayStmt(parse("i")), BreakStmt() ]), DisplayStmt(parse("i")), ]) ]), DisplayStmt(parse("i")) ])Turing-0.11-beta/gen-arc.bat000066400000000000000000000000111331472757200156230ustar00rootroot00000000000000@echo offTuring-0.11-beta/gen-arc.sh000066400000000000000000000002041331472757200154730ustar00rootroot00000000000000#!/bin/bash version=$(grep -oP '__version__ = "[^\d]*\K[^"]+' src/main.py) tar -cvzf Turing-$version-nix64.tar.gz examples turing Turing-0.11-beta/pyqode/000077500000000000000000000000001331472757200151305ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/000077500000000000000000000000001331472757200160605ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/__init__.py000066400000000000000000000012761331472757200201770ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ The core package contains the core components needed for writing a pyqode based application. It is the "de facto" requirement for any pyqode extension. It contains the base classes for both the backend and the frontend and provides a series of modes and panels that might be useful for any kind of code editor widget, i.e. pyqode.core is a generic code editor widget. """ import logging __version__ = '2.11.0' logging.addLevelName(1, "PYQODEDEBUGCOMM") logging.addLevelName(5, "PYQODEDEBUG") try: # check if application code is using gettext _('') except NameError: # install a null translation import gettext gettext.NullTranslations().install() Turing-0.11-beta/pyqode/core/_designer_plugins/000077500000000000000000000000001331472757200215605ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/_designer_plugins/__init__.py000066400000000000000000000026001331472757200236670ustar00rootroot00000000000000""" This packages contains the various qt designer plugins """ from pyqode.qt import QtDesigner class WidgetPlugin(QtDesigner.QPyDesignerCustomWidgetPlugin): """ Base class for writing a designer plugins. To write a plugin, inherit from this class and define implement at least: - klass() - objectName() """ def __init__(self, parent=None): super(WidgetPlugin, self).__init__(parent=parent) self.initialized = False print(self.name(), self.includeFile(), self.objectName()) def klass(self): """ Returns the classname of the widget """ raise NotImplementedError() def initialize(self, form_editor): self.initialized = True def isInitialized(self): return self.initialized def isContainer(self): return False def icon(self): return None def domXml(self): return ('\n\n' % (self.name(), self.objectName())) def group(self): return 'pyQode' def objectName(self): return self.name() def includeFile(self): return self.klass().__module__ def name(self): return self.klass().__name__ def toolTip(self): return '' def whatsThis(self): return '' def createWidget(self, parent): return self.klass()(parent) Turing-0.11-beta/pyqode/core/_designer_plugins/code_edit_plugin.py000066400000000000000000000005511331472757200254300ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the CodeEdit designer plugin. """ from pyqode.core._designer_plugins import WidgetPlugin from pyqode.core.api import CodeEdit class CodeEditPlugin(WidgetPlugin): """ Designer plugin for CodeEdit. """ def klass(self): return CodeEdit def objectName(self): return 'codeEdit' Turing-0.11-beta/pyqode/core/_designer_plugins/errors_table_plugin.py000066400000000000000000000005711331472757200261760ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the ErrorsTable designer plugin. """ from pyqode.core import widgets from pyqode.core._designer_plugins import WidgetPlugin class ErrorsTablePlugin(WidgetPlugin): """ Designer plugin for TabWidget. """ def klass(self): return widgets.ErrorsTable def objectName(self): return 'errorsTable' Turing-0.11-beta/pyqode/core/_designer_plugins/interactive_console_plugin.py000066400000000000000000000006251331472757200275520ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the InteractiveConsole designer plugin. """ from pyqode.core import widgets from pyqode.core._designer_plugins import WidgetPlugin class InteractiveConsolePlugin(WidgetPlugin): """ Designer plugin for TabWidget. """ def klass(self): return widgets.InteractiveConsole def objectName(self): return 'interactiveConsole' Turing-0.11-beta/pyqode/core/_designer_plugins/tab_widget_plugin.py000066400000000000000000000005611331472757200256230ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the TabWidget designer plugin. """ from pyqode.core import widgets from pyqode.core._designer_plugins import WidgetPlugin class TabWidgetPlugin(WidgetPlugin): """ Designer plugin for TabWidget. """ def klass(self): return widgets.TabWidget def objectName(self): return 'tabWidget' Turing-0.11-beta/pyqode/core/_forms/000077500000000000000000000000001331472757200173455ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/_forms/__init__.py000066400000000000000000000003431331472757200214560ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains the scripts for the froms designed in Qt Designer To update this folder, install ``pyqt_distutils`` and ``pyqode-uic`` (using pip) and run:: python setup.py build_ui """ Turing-0.11-beta/pyqode/core/_forms/dlg_encodings_ui.py000066400000000000000000000056401331472757200232200ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_encodings.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(614, 160) self.verticalLayout = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout.setObjectName("verticalLayout") self.lblDescription = QtWidgets.QLabel(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblDescription.sizePolicy().hasHeightForWidth()) self.lblDescription.setSizePolicy(sizePolicy) self.lblDescription.setWordWrap(True) self.lblDescription.setObjectName("lblDescription") self.verticalLayout.addWidget(self.lblDescription) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.comboBoxEncodings = EncodingsComboBox(Dialog) self.comboBoxEncodings.setMinimumSize(QtCore.QSize(250, 0)) self.comboBoxEncodings.setEditable(False) self.comboBoxEncodings.setObjectName("comboBoxEncodings") self.horizontalLayout.addWidget(self.comboBoxEncodings) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) spacerItem1 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem1) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Retry) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Dialog")) self.lblDescription.setText(_("

%s

Please, choose another character encoding and try again.

")) self.label.setText(_("Character Encoding:")) from pyqode.core.widgets.encodings import EncodingsComboBoxTuring-0.11-beta/pyqode/core/_forms/dlg_goto_line_ui.py000066400000000000000000000053121331472757200232220ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_goto_line.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(277, 126) self.gridLayout = QtWidgets.QGridLayout(Dialog) self.gridLayout.setObjectName("gridLayout") self.formLayout = QtWidgets.QFormLayout() self.formLayout.setFieldGrowthPolicy(QtWidgets.QFormLayout.AllNonFixedFieldsGrow) self.formLayout.setObjectName("formLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label) self.lblCurrentLine = QtWidgets.QLabel(Dialog) self.lblCurrentLine.setObjectName("lblCurrentLine") self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.lblCurrentLine) self.label_3 = QtWidgets.QLabel(Dialog) self.label_3.setObjectName("label_3") self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_3) self.label_4 = QtWidgets.QLabel(Dialog) self.label_4.setObjectName("label_4") self.formLayout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_4) self.lblLineCount = QtWidgets.QLabel(Dialog) self.lblLineCount.setObjectName("lblLineCount") self.formLayout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.lblLineCount) self.spinBox = QtWidgets.QSpinBox(Dialog) self.spinBox.setObjectName("spinBox") self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.spinBox) self.gridLayout.addLayout(self.formLayout, 0, 0, 1, 1) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 1) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Go to line")) self.label.setText(_("You are here:")) self.lblCurrentLine.setText(_("1")) self.label_3.setText(_("You want to go:")) self.label_4.setText(_("You can\'t go further than:")) self.lblLineCount.setText(_("1")) Turing-0.11-beta/pyqode/core/_forms/dlg_preferred_encodings_editor_ui.py000066400000000000000000000137121331472757200266230ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_preferred_encodings_editor.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(827, 600) Dialog.setMinimumSize(QtCore.QSize(700, 600)) self.verticalLayout_2 = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout_2.setObjectName("verticalLayout_2") self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setContentsMargins(0, -1, 0, -1) self.horizontalLayout.setObjectName("horizontalLayout") self.groupBox = QtWidgets.QGroupBox(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.groupBox.sizePolicy().hasHeightForWidth()) self.groupBox.setSizePolicy(sizePolicy) self.groupBox.setObjectName("groupBox") self.gridLayout = QtWidgets.QGridLayout(self.groupBox) self.gridLayout.setObjectName("gridLayout") self.tableWidgetAvailable = QtWidgets.QTableWidget(self.groupBox) self.tableWidgetAvailable.setObjectName("tableWidgetAvailable") self.tableWidgetAvailable.setColumnCount(0) self.tableWidgetAvailable.setRowCount(0) self.tableWidgetAvailable.horizontalHeader().setDefaultSectionSize(150) self.tableWidgetAvailable.horizontalHeader().setSortIndicatorShown(True) self.tableWidgetAvailable.horizontalHeader().setStretchLastSection(True) self.gridLayout.addWidget(self.tableWidgetAvailable, 0, 1, 1, 1) self.horizontalLayout.addWidget(self.groupBox) self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setContentsMargins(0, -1, -1, -1) self.verticalLayout.setObjectName("verticalLayout") spacerItem = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.line = QtWidgets.QFrame(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.line.sizePolicy().hasHeightForWidth()) self.line.setSizePolicy(sizePolicy) self.line.setFrameShape(QtWidgets.QFrame.VLine) self.line.setFrameShadow(QtWidgets.QFrame.Sunken) self.line.setObjectName("line") self.verticalLayout.addWidget(self.line) self.pushButtonAdd = QtWidgets.QPushButton(Dialog) self.pushButtonAdd.setText("") icon = QtGui.QIcon.fromTheme("go-next") self.pushButtonAdd.setIcon(icon) self.pushButtonAdd.setObjectName("pushButtonAdd") self.verticalLayout.addWidget(self.pushButtonAdd) self.pushButtonRemove = QtWidgets.QPushButton(Dialog) self.pushButtonRemove.setText("") icon = QtGui.QIcon.fromTheme("go-previous") self.pushButtonRemove.setIcon(icon) self.pushButtonRemove.setObjectName("pushButtonRemove") self.verticalLayout.addWidget(self.pushButtonRemove) self.line_2 = QtWidgets.QFrame(Dialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.line_2.sizePolicy().hasHeightForWidth()) self.line_2.setSizePolicy(sizePolicy) self.line_2.setFrameShape(QtWidgets.QFrame.VLine) self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken) self.line_2.setObjectName("line_2") self.verticalLayout.addWidget(self.line_2) spacerItem1 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem1) self.horizontalLayout.addLayout(self.verticalLayout) self.groupBox_2 = QtWidgets.QGroupBox(Dialog) self.groupBox_2.setObjectName("groupBox_2") self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox_2) self.gridLayout_2.setObjectName("gridLayout_2") self.tableWidgetPreferred = QtWidgets.QTableWidget(self.groupBox_2) self.tableWidgetPreferred.setObjectName("tableWidgetPreferred") self.tableWidgetPreferred.setColumnCount(0) self.tableWidgetPreferred.setRowCount(0) self.tableWidgetPreferred.horizontalHeader().setDefaultSectionSize(150) self.tableWidgetPreferred.horizontalHeader().setSortIndicatorShown(True) self.tableWidgetPreferred.horizontalHeader().setStretchLastSection(True) self.gridLayout_2.addWidget(self.tableWidgetPreferred, 0, 1, 1, 1) self.horizontalLayout.addWidget(self.groupBox_2) self.verticalLayout_2.addLayout(self.horizontalLayout) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout_2.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.rejected.connect(Dialog.reject) self.buttonBox.accepted.connect(Dialog.accept) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Edit preferred encodings")) self.groupBox.setTitle(_("Available encodings")) self.pushButtonAdd.setToolTip(_("Add selected encoding to the list of preferred encodings")) self.groupBox_2.setTitle(_("Preferred encodings")) from . import pyqode_core_rcTuring-0.11-beta/pyqode/core/_forms/dlg_unsaved_files_ui.py000066400000000000000000000031721331472757200240740ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/dlg_unsaved_files.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(717, 301) self.verticalLayout = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout.setObjectName("verticalLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.listWidget = QtWidgets.QListWidget(Dialog) self.listWidget.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) self.listWidget.setObjectName("listWidget") self.verticalLayout.addWidget(self.listWidget) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Discard|QtWidgets.QDialogButtonBox.SaveAll) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Dialog")) self.label.setText(_("The following files have unsaved changes:")) Turing-0.11-beta/pyqode/core/_forms/pnl_encoding_ui.py000066400000000000000000000066311331472757200230610ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/pnl_encoding.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(964, 169) self.horizontalLayout_2 = QtWidgets.QHBoxLayout(Form) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.lblDescription = QtWidgets.QLabel(Form) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblDescription.sizePolicy().hasHeightForWidth()) self.lblDescription.setSizePolicy(sizePolicy) self.lblDescription.setWordWrap(True) self.lblDescription.setObjectName("lblDescription") self.verticalLayout.addWidget(self.lblDescription) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(Form) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.comboBoxEncodings = EncodingsComboBox(Form) self.comboBoxEncodings.setMinimumSize(QtCore.QSize(250, 0)) self.comboBoxEncodings.setEditable(False) self.comboBoxEncodings.setObjectName("comboBoxEncodings") self.horizontalLayout.addWidget(self.comboBoxEncodings) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) self.verticalLayout.setStretch(0, 1) self.verticalLayout.setStretch(1, 1) self.horizontalLayout_2.addLayout(self.verticalLayout) self.pushButtonRetry = QtWidgets.QPushButton(Form) self.pushButtonRetry.setObjectName("pushButtonRetry") self.horizontalLayout_2.addWidget(self.pushButtonRetry) self.pushButtonEdit = QtWidgets.QPushButton(Form) self.pushButtonEdit.setObjectName("pushButtonEdit") self.horizontalLayout_2.addWidget(self.pushButtonEdit) self.pushButtonCancel = QtWidgets.QPushButton(Form) self.pushButtonCancel.setObjectName("pushButtonCancel") self.horizontalLayout_2.addWidget(self.pushButtonCancel) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): Form.setWindowTitle(_("Form")) self.lblDescription.setText(_("

%s

The file you opened has some invalid characters. If you continue editing this file you could corrupt this document. You can also choose another character encoding and try again.

")) self.label.setText(_("Character Encoding:")) self.pushButtonRetry.setText(_("Retry")) self.pushButtonEdit.setText(_("Edit Anyway")) self.pushButtonCancel.setText(_("Cancel")) from pyqode.core.widgets.encodings import EncodingsComboBoxTuring-0.11-beta/pyqode/core/_forms/pnl_read_only_ui.py000066400000000000000000000026651331472757200232520ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/pnl_read_only.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(964, 67) self.horizontalLayout_2 = QtWidgets.QHBoxLayout(Form) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.lblDescription = QtWidgets.QLabel(Form) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblDescription.sizePolicy().hasHeightForWidth()) self.lblDescription.setSizePolicy(sizePolicy) self.lblDescription.setWordWrap(True) self.lblDescription.setObjectName("lblDescription") self.horizontalLayout_2.addWidget(self.lblDescription) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): Form.setWindowTitle(_("Form")) self.lblDescription.setText(_("

The file you opened is read-only.

Use "save as" or change the file\'s permission to edit the document...

")) Turing-0.11-beta/pyqode/core/_forms/popup_open_files_ui.py000066400000000000000000000053441331472757200237700ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/popup_open_files.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(640, 320) self.gridLayout = QtWidgets.QGridLayout(Dialog) self.gridLayout.setContentsMargins(0, 0, 0, 0) self.gridLayout.setSpacing(0) self.gridLayout.setObjectName("gridLayout") self.groupBox = QtWidgets.QGroupBox(Dialog) self.groupBox.setObjectName("groupBox") self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox) self.gridLayout_2.setObjectName("gridLayout_2") self.checkBox = QtWidgets.QCheckBox(self.groupBox) self.checkBox.setObjectName("checkBox") self.gridLayout_2.addWidget(self.checkBox, 0, 0, 1, 1) self.tableWidget = QtWidgets.QTableWidget(self.groupBox) self.tableWidget.setEditTriggers(QtWidgets.QAbstractItemView.DoubleClicked|QtWidgets.QAbstractItemView.EditKeyPressed) self.tableWidget.setProperty("showDropIndicator", False) self.tableWidget.setDragDropOverwriteMode(False) self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) self.tableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) self.tableWidget.setShowGrid(False) self.tableWidget.setCornerButtonEnabled(False) self.tableWidget.setColumnCount(2) self.tableWidget.setObjectName("tableWidget") self.tableWidget.setRowCount(0) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(0, item) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(1, item) self.tableWidget.horizontalHeader().setVisible(False) self.tableWidget.horizontalHeader().setDefaultSectionSize(250) self.tableWidget.horizontalHeader().setStretchLastSection(False) self.tableWidget.verticalHeader().setVisible(False) self.gridLayout_2.addWidget(self.tableWidget, 1, 0, 1, 1) self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(_("Dialog")) self.groupBox.setTitle(_("Open files")) self.checkBox.setText(_("Sort alphabetically")) item = self.tableWidget.horizontalHeaderItem(0) item.setText(_("Filename")) item = self.tableWidget.horizontalHeaderItem(1) item.setText(_("Path")) Turing-0.11-beta/pyqode/core/_forms/pyqode_core_rc.py000066400000000000000000043303071331472757200227260ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.5.1) # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore qt_resource_data = b"\ \x00\x00\x05\x35\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x04\xa9\x49\x44\x41\x54\x58\xc3\xc5\x97\xdf\ \x6f\x14\x55\x14\xc7\x3f\xe7\xce\xec\xaf\x6e\x4b\x5b\x68\x29\xa2\ \xc5\x58\x6a\x42\xe4\xdd\x17\x13\x9f\xf0\xcd\x7f\x43\x7d\x36\xbc\ \x10\x13\xf1\x49\x21\x41\xff\x1f\x13\x4d\x34\x86\x04\xdf\x30\x82\ \x08\x41\x12\x31\xa9\xd4\x02\xdb\x2e\x6e\xf7\xc7\xcc\xbd\xe7\xf8\ \xb0\x33\xd3\x99\xed\xd2\x96\x07\xe1\x26\xb3\xf7\xde\x9d\x99\x73\ \xbe\xe7\x7b\xbe\xf7\xde\x33\x62\x66\xbc\xca\xe6\xb2\x5e\x5e\x15\ \x80\x38\xeb\xed\xe2\xa7\x17\xbf\x53\x0b\x17\xf2\x1b\xef\xbe\xf7\ \x3e\x6b\xeb\xe7\xa8\x45\x11\x4c\xb0\x24\x22\x20\x82\x73\x82\x20\ \x88\xe4\x17\x90\xf5\x4e\xc6\xcf\xf9\xd4\x73\xfb\xb7\x5f\xf9\xf9\ \xfa\x4f\xc5\xfb\x8b\x8b\xc7\xbf\xbf\xfc\xc5\xe5\x0f\xca\x00\xe8\ \xf7\x77\x2f\xdc\xba\x7d\x8b\x95\x95\x53\x9c\x5c\x5e\xe6\xc4\xf2\ \x49\x56\x57\xdf\xa4\x51\xaf\x4d\x45\x2e\xd9\x8f\x64\x80\x64\x72\ \x2c\xe0\x44\xe8\x8f\x12\xb6\xb6\xfe\x61\x38\x18\x16\xef\x76\xf4\ \x69\x11\x68\x01\x40\x55\x69\xb7\xdb\xd4\xe2\x18\x55\xc5\x61\x38\ \x27\xfc\xb5\xb5\x33\xdd\x79\x85\x91\xea\x44\x4a\x00\xdf\x58\x9a\ \x43\x30\x54\x95\xb2\xaf\xa9\x00\x16\xe6\x17\x68\x34\x1a\xc5\x03\ \x51\x24\xbc\xfd\xfa\xe2\x38\x47\x93\xce\x33\x47\x65\x00\x92\x3b\ \x97\xfc\x12\x06\xc3\x64\x9f\xd3\xa9\x00\xcc\x8c\xb9\xb9\xb9\x62\ \x2c\x22\x44\x4e\xa8\xc7\xd1\x74\xf5\x08\x07\x02\x18\xdb\x01\x35\ \x50\x94\xf2\x6a\x2b\x8f\x2b\x0c\x54\xed\x1b\x91\x83\x38\xce\xad\ \x55\x29\x98\x4c\x83\x65\x86\xd5\xc0\xd4\x30\x1b\xcf\x7d\x08\x98\ \x56\x53\x10\x42\x38\x1c\x80\x9a\xa2\x6a\xfc\xfe\xe7\x93\xa9\x04\ \xd8\xc4\x2c\x0f\xca\xb2\xd0\x2d\x9b\x9c\x3a\xde\x26\xe8\x11\x52\ \xb0\x0f\x80\x42\x1a\x94\xd5\x95\x63\x55\x91\x59\xd5\x79\x4e\xa7\ \x19\x58\x06\x24\x67\xc3\xcc\x18\x25\x81\x10\xc2\xd1\x34\x50\x6e\ \xc1\x2b\xde\x2b\x3e\xaa\x02\xdb\x0f\xa4\x14\x7d\x16\x79\x4e\xbf\ \x01\x3e\x28\x21\x03\xf3\x42\x1a\xf0\x1a\x48\x55\x71\x69\x78\x9e\ \xff\x62\x83\xb2\x62\x38\xc9\x00\xf8\x10\x08\x7a\xc4\x65\x58\xd5\ \x80\x91\xfa\xc0\xe6\x93\x1e\x07\xb5\x0a\x6f\x79\xee\xf7\xb0\xb1\ \x78\xac\x41\xf0\xe1\x70\x11\xda\x04\x80\xa0\x8a\x0f\xca\xc2\x5c\ \x73\x62\xa7\xa9\x3a\x2a\x3b\xb3\x2c\x2f\x39\x03\xd8\x38\x05\xaa\ \x5a\xb1\x6f\x53\x19\xd8\xa7\x01\x23\x0d\xfa\xfc\x53\xca\x2a\x5d\ \x01\x2a\x57\xbf\x15\x2b\xc1\x08\x66\x15\xfb\x7a\x14\x0d\xdc\xb8\ \xfe\x23\x9b\x9b\x9b\x0c\xfa\xfd\xa3\xd1\x9f\x3b\x2e\xdd\x31\x83\ \xd6\xcc\x0c\x0f\xff\xb8\x7b\x84\x55\x30\x01\xe0\xe1\xfd\x7b\x3c\ \xbc\x7f\xaf\x98\x4b\x96\x86\xc9\x7e\x1f\x86\x03\x14\x7f\x70\x0a\ \xf4\x39\xcb\xed\x7f\x68\xd3\x77\xc2\x97\x58\x19\x4d\xd5\x80\xbd\ \x44\x06\x5e\x28\x05\x1f\x7d\xf2\x31\x6f\xad\xad\x71\x50\xed\x38\ \x79\xaf\xd3\xe9\xf0\xd9\xa5\x4b\x38\xe7\x50\x35\x82\x2a\x2b\xcb\ \xcb\x4c\xf3\x55\x00\xf0\xde\xef\x33\xdc\x68\x36\x68\xcd\xcc\xd0\ \xeb\x8d\x37\x23\x11\xd9\x27\xb0\xbd\x72\x4c\x8a\xff\xda\xed\x36\ \xcd\x66\x93\x28\x8a\x30\x83\xd1\x68\x34\xd5\x7e\x05\x40\x59\x18\ \xc5\x7f\xa5\x1d\xec\xca\x97\x5f\xe1\xb3\x67\xfa\xfd\x5d\xae\x5c\ \xbd\x8a\x73\xae\x00\xa5\x3a\x3e\xf3\x8b\x83\x47\x04\x11\x07\xa6\ \x38\x27\x53\xed\x1f\x0e\x40\xf7\x0a\x89\xa7\x4f\xf6\x8e\xe5\xed\ \x9d\x9d\x71\xd9\xe6\x1c\xde\x7b\x54\x95\x10\x42\x71\xd9\xde\x81\ \x50\x9c\x13\x87\x03\x98\x42\x51\x32\x1c\x16\x0c\x94\x0d\x44\x51\ \x84\xaa\x32\x1a\x8d\x50\x55\xd2\x34\x2d\x22\xcf\x59\x20\xeb\xcd\ \x0c\x0b\x81\x20\x42\xab\xd5\xa2\x3d\x3b\xcb\x76\xa7\x33\x45\x03\ \x53\x10\x46\x59\x81\x3a\x09\x20\xf5\x29\x83\xc1\xa0\x70\x10\x42\ \x28\x98\xf0\xde\xe3\xbd\x27\x49\x53\xe2\x0c\xa8\x57\x85\x10\x30\ \x81\xc1\x70\x48\x5a\x0a\xf6\x40\x06\xa8\xd7\x09\x21\x30\x1c\x0e\ \xf1\x3e\x2d\x15\x1f\x56\x08\x2b\x4d\xd3\x22\x05\xb9\x73\x33\x23\ \x4d\x46\x68\x14\x65\x65\x99\x22\x66\xc4\x2e\xe2\x59\xb7\xcb\xdc\ \xb1\x63\xd3\x00\x84\x4d\x84\x53\x15\x0d\x84\xc0\xa0\x3f\xa0\x56\ \xab\xd1\xeb\x0f\xe8\xef\xee\x12\x54\x59\x58\x58\xa0\xdf\xef\x17\ \x4e\x73\xfa\xf3\x3e\x49\x12\xd2\xd4\x13\x82\x16\x02\x75\x8c\x97\ \xe7\xd2\xd2\x12\x5b\x5b\x5b\x88\x88\x98\x99\xc5\xd9\xf2\x92\x73\ \x67\xcf\x7e\xd8\x6c\xb5\xbf\x15\x61\x29\x07\xa0\xaa\x05\xdd\xd7\ \xbe\xbe\x56\x80\x0a\x21\xd0\xeb\xf5\xc6\xd1\x4d\x88\x30\x1f\xa7\ \x49\x92\x2d\xc3\x31\x80\xc8\x39\x42\x08\x6c\x6c\x6c\xe0\x9c\x03\ \x68\x89\xc8\x20\x67\x40\xee\x3e\x78\xf0\xf7\xfc\xfc\xfc\x37\xab\ \xaf\x9d\xfe\xdc\x39\x37\x03\x90\xa4\x09\xbd\x5e\x8f\x38\xd3\x42\ \x39\xe2\x34\x4d\x0b\xfa\xf3\xb4\x00\xb9\xf1\x71\x35\x5c\x4a\x59\ \x59\x43\x66\x96\x00\x27\x80\x8d\xe2\xdb\x10\xf8\xb7\xdb\xed\xfe\ \x90\x0c\x87\x8b\x8d\x46\xe3\x34\xa0\xef\x9c\x3f\x1f\xfd\x72\xf3\ \xe6\x5a\xbd\x5e\x6f\xd4\x6b\xb5\x7a\x14\xc7\xf5\x38\x8e\x1b\xce\ \xb9\x1a\x10\xe7\x9b\x80\x81\xd7\x10\x12\x55\x4d\xd2\x34\x4d\xb7\ \xb7\xb7\xfb\x71\x2d\x7e\xf0\xe8\xd1\xa3\x91\x99\x49\xc9\x07\x88\ \x04\x83\x1b\xc0\x08\x30\xc9\x51\x8a\x88\x03\x5a\xc0\x2c\x50\x03\ \xec\xcc\x99\x33\xba\xbe\xbe\x9e\x34\x9b\xcd\x62\xef\x9c\x9f\x9f\ \xa7\xdb\xed\x12\xc7\xb1\xd5\xeb\x75\xeb\x74\x3a\xcc\xce\xce\x4a\ \xbb\xdd\x16\x11\x61\x67\x67\x87\x3b\x77\xee\xe8\xe3\xc7\x8f\xeb\ \xbb\xbb\xbb\x35\xf6\xbe\xc0\x29\x01\x19\x01\xcf\xcc\x2c\xf9\x0f\ \x37\x73\xc6\x21\x46\xae\x9a\x9a\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x01\x65\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x66\ \x50\x4c\x54\x45\xff\xff\xff\xbb\xb8\xb1\xbb\xb7\xb3\xb8\xb8\xad\ \xc3\xc0\xbc\xbb\xb7\xb2\xbc\xb7\xb3\x80\x80\x80\xbe\xba\xb6\xbb\ \xb8\xb3\xb9\xb4\xaf\xc5\xc2\xbe\xbb\xb7\xb2\xbb\xb7\xb2\xb6\xb6\ \xb6\xc1\xbd\xb9\xbb\xb7\xb3\xb9\xb6\xb1\xbc\xb7\xb2\xbb\xb8\xb3\ \xbf\xaf\xaf\xbf\xbb\xb6\xbb\xb8\xb2\xb9\xb4\xb0\xba\xb6\xb1\xbb\ \xb7\xb1\xcc\xcc\x99\xb9\xb9\xb2\xba\xb6\xb1\xcc\xc9\xc6\xc9\xc6\ \xc3\xcb\xc8\xc5\xc6\xc2\xbf\xff\xff\xff\x9a\xcb\x8f\xa5\x00\x00\ \x00\x1c\x74\x52\x4e\x53\x00\x4b\xb4\x19\xfa\xf3\x6e\x02\xf3\xd6\ \x33\xfe\xf7\x95\x07\xf8\xf0\x5b\xf6\xa1\x10\xf4\xde\x3a\xf8\x7c\ \x05\x21\x55\x17\x14\x86\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\ \x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\ \x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x44\x49\x44\x41\x54\ \x18\xd3\x63\x60\x20\x0f\x30\xa2\x0b\xc8\x30\x31\xa3\x09\xb0\xb0\ \xb2\xb1\xa3\x08\xc8\xca\x71\x70\x72\xa1\x08\xc8\xca\x72\xf3\xf0\ \xf2\x21\x0b\xc8\xf3\x0b\x08\x22\xab\x50\x10\x12\x16\x41\xd6\x22\ \x2a\x26\x8e\x62\x8b\x84\xa4\x14\xaa\xb5\xd2\x64\x7a\x08\x0a\x00\ \xb8\xa1\x03\x67\xfb\x2c\xbb\x2b\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x08\x78\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1b\x16\ \x18\x20\x20\xd9\xdc\xfb\x00\x00\x07\xd9\x49\x44\x41\x54\x58\xc3\ \x9d\x97\x7b\x6c\x14\xd7\x15\xc6\x7f\x33\xb3\x8f\xd9\x97\xbd\x5e\ \x6c\x9e\x35\x60\x0c\xc4\x3c\x4b\x81\x92\x20\x57\xa1\xd4\x09\x98\ \x92\xb4\xa1\x55\x95\xa6\x54\x8d\x12\x68\xd2\x46\x89\x14\x55\x09\ \xb4\x24\x6d\xfa\x20\x44\x8d\x14\x94\x96\xb4\xd0\x82\xf8\x23\x4a\ \x55\x11\x45\x32\x6a\xa0\x85\x14\x42\x1a\x22\xa5\x82\x3a\xa1\x06\ \x3b\x10\x9e\xf1\x1a\x7b\xed\xf5\x6b\xbd\xaf\x79\x4f\xff\xb8\xb3\ \xc6\x26\x0e\xa1\x5c\xe9\x6a\x46\xbb\x33\xf7\xfb\xce\x77\xce\xf9\ \xee\x1d\x89\x5b\x1b\xd2\x75\x57\x00\xd7\x9b\xb7\xb4\xd0\xcd\x0c\ \xf9\xb7\xb0\xcc\x07\xdf\x50\xe0\x0e\x05\xe6\xc8\x50\x09\xc8\x2e\ \x14\x1c\x68\xb7\xe1\xbf\x36\xbc\x65\xc0\x9b\x5b\xa0\xff\x66\x08\ \x7d\x2e\x81\x05\xa0\x7c\x1f\x1e\x90\x60\xb3\x02\xf3\x03\x40\x00\ \xf0\x01\xfe\x50\x08\x45\x55\xd1\x33\x19\x6c\xc7\xc1\x04\x0c\xc0\ \x82\xa2\x0d\x7f\x31\x61\xeb\xb3\xd0\x7e\x23\x22\x37\x22\x20\xfd\ \x1a\xea\x42\xb0\x57\x81\x3b\x54\x20\xaa\xaa\x4c\xbd\xfb\x6e\xc6\ \xd7\xd7\x93\x58\xb8\x10\x5f\x24\x22\xb4\x77\x1c\x0a\xc9\x24\xe9\ \x93\x27\x49\x1e\x3a\x44\xfa\xfc\x79\x34\x40\x17\x44\x9e\xdb\x0f\ \xdb\xff\x0d\xf6\xff\x43\x40\xde\x0a\xf7\x04\xe1\x35\x15\x62\x51\ \x49\xa2\x66\xd5\x2a\x66\xac\x5f\x4f\xa0\xac\x0c\xe9\x33\x5e\x2c\ \x15\x41\x5f\x73\x33\x6d\xbb\x76\xd1\x97\x4e\x53\x00\x4c\x78\xb3\ \x0f\xd6\xbf\x08\xd9\x9b\x21\x20\x6f\x85\x6f\xa9\xf0\xd7\x08\xf8\ \xca\xfd\x7e\xe6\x3d\xfa\x28\xe3\x16\x2f\xfe\x4c\xe0\xb1\x88\x98\ \xc5\x22\x67\x77\xee\xa4\xf3\xcc\x19\x86\x44\x6a\x8e\x77\xc3\xd7\ \x5f\x82\xdc\x8d\x08\x48\xcf\xc2\xb2\x38\x1c\x8b\x40\xa8\x42\x51\ \xa8\xdb\xb0\x81\x78\xdd\x6c\x64\x79\xf4\x0b\x6e\x29\x5c\x77\x04\ \x6a\xe9\x27\xd7\x05\x49\xc2\xb6\x2c\x2e\xec\xdd\x4b\xe7\xc7\x1f\ \x33\x24\x52\xf2\xc6\x26\xb8\x1f\x70\x4a\x80\xca\x48\xf0\xfb\xa1\ \xbc\x06\x0e\x87\x61\x7c\x1c\x98\xb6\x72\x25\x15\x73\xeb\x70\xac\ \x3c\xa6\x9e\xc3\x32\x35\x5c\xb3\x00\xb6\x0e\x96\x8e\x6b\x6a\x38\ \xba\x86\xab\x69\x38\x9a\x86\x59\x28\xa0\x65\xb3\x18\xc5\x22\x76\ \x3e\x8f\x64\x59\xc4\x66\xcc\xa0\x70\xe6\x0c\x96\x61\x60\xc2\xdc\ \x95\x90\x3a\x02\xcd\xc3\x72\x8f\x94\x7e\x21\x6c\x0a\x40\x6d\x14\ \x88\x27\x12\x54\xcc\xbb\x0d\xa3\xd8\x43\xa6\xff\x2a\x65\x77\x7e\ \x8d\x09\xdf\x7e\x80\xc1\x4c\x37\x85\x5c\x37\xb6\xde\x87\x6b\xf4\ \xe3\x1a\xfd\x38\x46\x3f\x46\x2e\xcd\x60\xcf\x55\x9c\xca\x71\xd4\ \x3e\xf5\x14\x05\xc7\x21\xd3\xd9\x89\x5b\x28\x30\x69\xf9\x72\x62\ \x40\x58\x00\x6e\x7b\x1a\xaa\xae\x57\x40\x7a\x10\x26\x4c\x82\xd7\ \x62\x10\x28\x07\x26\x2c\x59\x84\x92\x50\xe8\xcb\xa6\x99\xfc\xcd\ \xef\x31\xe5\xae\x7b\x09\x56\x4e\x20\x30\x69\x0a\x9f\xbc\x7b\x00\ \xd9\x2d\xe2\x97\x0d\x70\x35\x0c\x2d\x47\x5f\x7f\x2f\xca\xf4\x99\ \x2c\x7c\xfa\x67\xf8\x63\x31\x12\x4b\x97\x72\xe1\xf0\x61\xf4\xee\ \x6e\x22\x65\x65\x18\xc9\x24\x96\xae\x63\x40\xc8\x0f\xd6\x51\x38\ \x06\xb8\x25\x05\xe4\x5a\x58\x1f\x80\x68\x08\x50\x15\x99\xd0\xf8\ \x08\x45\xad\x17\xa7\x72\x3c\x53\x57\xaf\x1b\x96\x69\xdc\xfc\xa5\ \xcc\x7e\x64\x0b\x1d\x3d\x29\x06\x33\x29\x8a\x85\x34\x5d\x3d\x49\ \x9c\xea\xe9\x2c\xfe\xe9\xaf\x90\xfd\x01\x00\x82\x89\x04\xb3\x36\ \x6e\x24\x9d\x4a\x61\xf4\xf7\x13\xa9\xaa\x22\x04\xa8\x80\x0f\x36\ \x2c\x81\xe0\x48\x05\x82\x6b\xe0\x85\x08\x54\xc7\x80\x68\x28\x40\ \xb4\x36\x86\x12\xd4\xe9\x49\x5e\x22\xdd\xd5\x49\xf5\xf2\x06\x24\ \x49\x94\x60\x74\x62\x35\xe1\xea\x99\x9c\xfa\xfb\x3e\x06\x06\x07\ \x50\x6a\x16\xb1\xe2\x97\xaf\xa0\x04\x82\xc3\x44\xd3\xe7\xda\x38\ \xfa\xf8\x23\x94\x1b\x3a\xaa\x69\xe3\x64\x32\x98\x43\x43\x98\xa2\ \x2d\x23\x33\xe0\xbd\x63\x70\x51\x01\xa4\x05\x10\x5f\x06\xdb\xc3\ \xa0\x44\x81\x50\xd0\xc6\x1f\x4e\x13\x0c\x3b\x84\x63\x32\x57\x5a\ \x4e\xd2\xdd\xd1\x45\xcd\x57\x56\x0d\x93\x28\x9b\x3c\x9d\xc8\xd4\ \x39\x74\xa7\x7a\x58\xf3\xfc\x9e\x51\xe0\xdd\x67\x5b\xd9\xff\xd0\ \x3a\xaa\xcc\x0c\x09\x2c\xcc\xf6\x0e\x8c\x54\x1a\x17\xb0\x44\x4b\ \xe2\x40\xf2\x9f\xf0\x8e\x0f\x90\x1a\x61\x9e\x0f\xfc\x3e\x4f\x12\ \x5f\x04\x64\xc5\xc2\xc9\x76\x11\x92\x7c\xcc\x1a\x1f\xa0\xf5\xc8\ \x2e\x0e\x1a\x06\x6b\x7f\xb1\x63\x98\x44\xcd\xf2\x06\x6a\x96\x37\ \x8c\xea\xe3\xae\x8f\x4e\xb3\xef\xc1\x35\xd4\x48\x83\x54\xc9\x36\ \x0c\xea\x80\x8b\x1c\x00\x59\x17\x16\xee\x03\x02\xf0\x45\x10\xdd\ \x2d\x07\x61\x92\xe2\x81\xcb\x80\x12\x04\x49\x11\x4f\xca\x8a\x45\ \x99\x5a\x60\xde\xb4\x22\xc9\x23\x7f\xe0\x8d\x67\x1e\x13\x7d\x3e\ \xc6\xe8\x68\x3b\xcd\xde\xf5\x0d\x54\xab\x57\xa9\x4e\xe4\x51\x55\ \x0d\x25\xea\xe2\x8b\x82\x12\x01\x59\xf1\x02\x14\x58\x13\x4a\x04\ \x08\x40\xb4\x14\xbd\x2c\x81\x24\x0b\x43\x91\x3c\xeb\x93\x14\x48\ \x54\xc0\xfc\x59\x70\x62\xdf\x2e\x8e\xee\xd9\xf9\x29\x70\x53\xd7\ \xd8\xfe\x9d\xb5\x54\x04\xd3\xcc\x9c\x06\xe1\x72\x91\xcf\x12\xb8\ \x12\x11\x6b\xcb\x1e\x01\x3f\x44\x4a\x04\x24\x1b\x8c\x12\x01\x00\ \xd7\x11\x49\x72\x9d\x6b\x0e\x97\xd7\xa0\x3d\x05\xb5\xf5\x8d\xac\ \xf8\xc1\xc3\x9f\x22\xe0\x0f\xaa\x3c\xfc\xfb\x3f\x33\x64\xaa\x0c\ \x18\xa2\xdc\x95\xb0\x37\x43\x62\x22\x7b\x0a\x8b\xa9\x23\x62\xc5\ \xcd\x41\x9f\x52\xb2\x59\x17\x9c\x22\x38\x26\xb8\x16\x38\x16\xe4\ \x73\xd0\x76\x11\xdc\x2f\x34\xb2\x71\x77\x13\xfe\xa0\x3a\x66\x0a\ \xe6\x37\x34\xb2\x6e\x7b\x13\x1f\x75\xa9\xa4\x8b\x42\x5a\x59\x05\ \x45\xf5\x52\xea\x5e\x33\x1f\x09\x7a\x87\x7d\xe0\x6d\x38\x2f\x7b\ \xdb\xa5\x03\x18\x45\xb0\x74\xb0\x34\xc8\xe5\xe0\x7c\x07\x48\x35\ \x8d\x7c\x77\x47\x13\xbe\x11\xe0\xbd\x97\x5a\x78\x6f\xf7\xe6\x51\ \x35\x71\xdb\x9d\x8d\xac\x7e\xa1\x89\x4b\x7d\x2a\xfd\x1a\x38\x3e\ \x20\x08\x8e\x03\xb6\xe5\xa5\x56\x74\xc3\x59\xc0\x91\x01\xe7\x43\ \x18\x34\xe1\x1c\x08\x16\x46\x11\xb4\x2c\xe4\xf3\xd0\x9e\x06\x7f\ \x5d\x23\xf7\xbd\x3c\x1a\x7c\xe0\x4a\x0b\xef\x6e\x6b\x20\x75\xfc\ \x45\x4e\xec\xfe\xb1\xb7\x3b\x89\x31\xa3\xbe\x91\x95\xbf\x69\xa2\ \x23\xab\x92\x31\xc0\x92\xc4\x7a\x96\x2b\x02\x94\x81\x41\x38\x01\ \xd8\xa5\xb4\x2b\x2b\xa0\xa6\x02\x6e\x97\x10\x6b\x39\x40\xc1\x07\ \xcc\xfa\x32\xf7\xec\x39\x3c\x0a\x7c\xf0\x4a\x0b\xef\x3f\xdf\xc0\ \xe4\x78\x2f\x53\xa7\xc0\xc0\xa5\x66\x32\xdd\x29\x26\x2e\x5a\xeb\ \x55\x2e\x94\x57\xcf\x24\x56\x3d\x87\xcb\x47\x5e\x27\xa0\x41\xfe\ \xb2\x50\xc0\x0b\x32\xb7\x0b\x36\xa5\x20\x23\x7b\x99\xd1\x0f\xc3\ \xeb\xb2\xf0\x09\x6c\x40\x1b\x02\x3b\x0b\xf9\xd6\x53\x5c\x3d\x7e\ \x68\x18\x3c\x73\xb9\x85\x13\xcf\x35\x30\x4e\xee\x25\xae\x0a\x6b\ \x9d\x9c\x80\xdc\x7f\xfe\x44\xdb\xab\xd7\x94\xb0\xb5\x3c\xc9\x83\ \x3b\x08\xca\x90\x6d\x07\x43\xbb\x26\x7f\x0e\xf6\x7f\x08\x03\x80\ \x3b\xbc\x1d\x5f\x00\xfd\x2e\xa8\x2d\x87\xb9\x00\xb6\x2b\x0a\x30\ \xe0\x77\xe8\x78\xa7\x89\xf2\xba\x05\xe0\x18\x9c\xd8\xdc\x40\xc8\ \xec\x25\x12\x04\xc9\x01\xdb\x04\xd9\x01\xbf\x0c\xd9\x8b\xcd\x14\ \xfb\x52\xc4\xeb\xbe\xca\xa9\x6d\xf7\x52\x6c\xfb\x17\x52\x4a\x44\ \x2f\xd9\xa2\xfd\x64\x30\xfe\x06\x8f\x9d\x86\x0e\xc0\x1e\x79\xbc\ \x0e\xd5\xc3\x97\xb6\xc0\x01\x19\xe2\x86\xf0\x6c\xdc\x10\x28\x95\ \xa0\x54\x04\x50\x2b\xa3\xc8\x4e\x3f\x6a\x04\x02\x61\x61\x58\x4a\ \x00\x24\x9f\x50\xde\xb6\x41\x37\x40\x09\x4f\x44\xef\x49\x51\x6c\ \x87\x6c\x2b\x48\x45\x71\x90\xf5\x03\x49\x78\x65\x23\xfc\x1c\x18\ \x02\x9c\x91\x07\x12\x27\x09\x85\xe9\x30\x30\x1b\x56\xc9\x22\x40\ \x2c\x4b\x74\x03\x8e\x8d\xab\x17\x91\xc4\x2d\xb6\x25\xa2\xb7\x4c\ \xb0\x0c\xf1\x8c\x6d\x80\x6b\x82\xd1\x97\x63\xe8\x2c\x64\xcf\x81\ \xa4\x8b\x6d\x4f\x05\x34\x38\xf5\x24\x3c\x99\x87\x3e\x2f\xd3\xa3\ \x4e\x44\x00\xe6\x71\xe8\x58\x02\xbe\xa9\x70\x7b\x69\xaf\xb6\x6d\ \x30\x0b\x60\x6a\xe2\xde\x32\x05\x01\xcb\x14\xa0\x96\x0e\x66\x11\ \xf4\x41\x18\xba\x02\x03\xad\xa0\x77\x41\xc0\x86\x10\xc2\xf2\x6c\ \x68\x7f\x19\x1e\x6a\x81\x8b\x88\xfd\x68\x58\xfa\x91\x43\xf2\xc8\ \x4e\xf9\x1d\x3c\xb1\x0c\x1e\xd7\x41\x2e\x00\x45\x84\x75\xd9\x32\ \xb8\x7e\x61\x30\xb2\xdf\xb3\x32\xc0\x31\x84\x81\x49\x06\xf8\x5d\ \x01\x1c\x46\x5c\x35\xb8\xb0\x1d\x7e\x78\x10\x3e\x10\x35\x38\xf6\ \x99\x70\x38\x15\x40\xf1\x10\xb4\xc5\xe1\x93\x79\xb0\x24\x02\xe1\ \x40\xc9\x42\x5d\x51\x50\xe8\xe0\x14\xc0\xcd\x8b\xa9\x68\x22\xe2\ \x28\x10\x03\xca\x11\xf7\x9d\x70\xe0\x27\xf0\xc4\xfb\xd0\x0a\xe4\ \x47\x82\x8f\xa5\x40\x69\xc8\x88\xba\x19\x37\x13\x66\x3f\x03\x1b\ \xe6\xc0\x7d\x12\x44\x0c\x4f\x09\x93\x6b\x5f\x1a\x23\x36\x18\x54\ \xef\x3a\x08\xa7\xff\x01\x7f\x7c\x09\xde\x02\x7a\x80\xc2\xf5\xe0\ \x37\x22\x50\xfa\xcf\xe7\xa5\xb0\x72\x2a\x4c\xfb\x11\xac\x9e\x0d\ \xf5\x71\xa8\x0b\x40\xc2\x19\xbd\x88\x99\x87\x2b\x3d\xf0\xc1\xdb\ \x70\xe8\x55\xe1\x74\x69\xaf\xda\xcd\xb1\xc0\x3f\x8f\xc0\x48\x35\ \x7c\x5e\x4a\x63\x40\x19\x10\x9b\x0c\xf1\x05\x50\xe5\x07\x25\x0d\ \xd9\x66\x48\x59\x22\xbf\x43\xde\xcc\x8f\x00\xbe\xa5\x6f\xc3\xb1\ \x9e\x2d\x9d\x27\x4a\xb3\x54\x43\x0e\xc2\x45\x4b\xd3\xe6\x26\x3f\ \xd7\xff\x07\xfc\x1f\x35\xe7\x22\xaa\x29\xc6\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x39\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x28\ \x50\x4c\x54\x45\xff\xff\xff\x71\x71\x71\x54\x54\x54\xbe\x00\x00\ \xbc\x00\x00\x72\x72\x72\xbf\x00\x00\xbe\x00\x00\xbe\x00\x00\xbe\ \x00\x00\xbf\x04\x03\x54\x54\x54\xb9\x00\x00\xbb\x04\x03\xb6\x00\ \x00\xb4\x00\x00\xac\x00\x00\xaf\x03\x02\xa4\x00\x00\xa7\x00\x00\ \x71\x71\x71\xa1\x00\x00\xa2\x03\x02\x60\x60\x60\x9a\x00\x00\x94\ \x00\x00\x95\x01\x00\x53\x53\x53\x89\x00\x00\x8d\x00\x00\x87\x00\ \x00\x88\x01\x00\x80\x00\x00\x82\x00\x00\x7a\x00\x00\x7d\x01\x00\ \x76\x00\x00\x74\x00\x00\x6d\x00\x00\x70\x01\x00\x64\x00\x00\x67\ \x00\x00\x67\x00\x00\x63\x00\x00\x62\x00\x00\x72\x72\x72\x68\x68\ \x68\xfc\xfc\xfc\xf9\xf9\xf9\xf3\xf3\xf3\xed\xed\xed\xe7\xe7\xe7\ \xe2\xe2\xe2\xe0\xe0\xe0\x5e\x5e\x5e\xe8\xe8\xe8\x54\x54\x54\xcb\ \x26\x21\xf6\xf6\xf6\xee\xee\xee\xe6\xe6\xe6\xde\x5a\x51\xf5\xa0\ \x9a\xbe\x00\x00\xf8\xf8\xf8\xf0\xf0\xf0\xe9\xe9\xe9\xe1\xe1\xe1\ \xca\x22\x1d\xec\x83\x7a\xf3\x98\x91\xf2\x96\x8e\xda\x51\x47\xf0\ \x90\x87\xf0\x8f\x86\xef\x8c\x82\xee\x89\x7e\xba\x00\x00\xc2\x1e\ \x19\xe7\x75\x6a\xee\x89\x7f\xed\x85\x7a\xec\x82\x76\xeb\x7f\x72\ \xea\x7b\x6e\xb4\x00\x00\xd2\x49\x3e\xeb\x80\x74\xeb\x7f\x73\xe9\ \x78\x6a\xe8\x74\x66\xe7\x71\x62\xe6\x6e\x5e\xad\x00\x00\xb8\x1b\ \x16\xe1\x67\x5a\xe8\x75\x67\xe6\x6b\x5c\xe6\x67\x57\xe5\x64\x54\ \xe4\x60\x50\xa7\x00\x00\xca\x40\x34\xe6\x70\x61\xe6\x6f\x5f\xe5\ \x6b\x5b\xe4\x68\x57\xe5\x64\x53\xe5\x61\x51\xe5\x5d\x4e\xe6\x5a\ \x4a\xe5\x57\x48\xe4\x53\x43\xa0\x00\x00\xfa\xfa\xfa\xf1\xf1\xf1\ \xc4\x2d\x1d\xd8\x44\x2c\xd8\x42\x2a\xd7\x40\x27\xd8\x3f\x27\xda\ \x3c\x25\xdd\x3b\x26\xdf\x3a\x27\xe1\x37\x25\xe2\x36\x24\xe1\x33\ \x21\x9a\x00\x00\xf5\xf5\xf5\xec\xec\xec\xe3\xe3\xe3\xb1\x10\x00\ \xcc\x1e\x00\xce\x1f\x00\xd3\x1f\x04\xd7\x1f\x07\xdb\x1f\x09\xde\ \x20\x0c\xe1\x20\x0d\xe3\x20\x0f\xe4\x20\x0f\x94\x00\x00\x99\x06\ \x00\xc4\x19\x02\xd6\x1f\x06\xdf\x20\x0c\xe6\x20\x11\xe9\x20\x13\ \xea\x20\x14\xea\x20\x13\x8d\x00\x00\xb0\x10\x04\xdd\x1f\x0b\xe7\ \x20\x12\xeb\x20\x15\xef\x21\x17\xf0\x21\x18\x87\x00\x00\x93\x06\ \x02\xd3\x1a\x0d\xeb\x20\x14\xf4\x21\x1a\xf6\x21\x1c\x81\x00\x00\ \xb3\x10\x0b\xf0\x20\x19\xf7\x21\x1c\xfc\x21\x20\xfa\x21\x1f\x7a\ \x00\x00\x8b\x06\x05\xde\x1b\x17\xfa\x21\x1e\xf8\x21\x1d\x74\x00\ \x00\xf2\xf2\xf2\xeb\xeb\xeb\xe4\xe4\xe4\xb0\x11\x0d\x6d\x00\x00\ \xfb\xfb\xfb\xf4\xf4\xf4\x81\x06\x04\xff\xff\xff\x22\xff\x3e\x7c\ \x00\x00\x00\x2d\x74\x52\x4e\x53\x00\xb4\xb4\x53\x3d\x80\x1c\xb7\ \xf0\x62\xf0\x80\x62\xf0\x1c\xb7\x62\xf0\x1c\xb7\x87\x54\xf0\x08\ \xe1\x58\xf0\x87\x1c\xb7\x62\xf0\x1c\xb7\x62\xf0\x1c\xb7\x62\xf0\ \x1c\xb7\xf7\x4b\x3c\xe2\xd5\xa6\x8b\x00\x00\x00\x01\x62\x4b\x47\ \x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\ \x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x01\x45\x49\ \x44\x41\x54\x38\xcb\x63\x60\xa0\x2f\x60\xd4\x45\x02\x8c\x58\x14\ \xe8\xe9\x83\x80\x81\xa1\x91\xb1\x89\xa9\xa9\x1e\x16\x05\x66\x50\ \x79\x73\xa0\xbc\xa9\x19\x16\x05\x4c\x16\x48\x80\x89\x2e\xbe\x62\ \x66\x01\x53\xac\x70\x9f\xb1\xa2\x48\xb3\xb1\x5b\x72\x20\x3c\x67\ \x65\x6d\x83\xe6\x33\x4e\x2e\x5b\x3b\x7b\xb8\xe7\x1c\x1c\x9d\x9c\ \x51\x7c\xc6\xc6\xee\xe2\xea\xe6\x0e\x51\xc0\x0d\xf7\x19\x37\x5c\ \x9e\x87\xd7\xc3\xd3\xcb\xdb\xc7\x17\x87\xe3\xf8\xf8\xfd\xfc\x03\ \x02\x83\x82\x43\x42\xb1\xcb\x0b\x08\x86\x85\x47\x84\x44\x46\x45\ \xc7\xc4\x62\x93\x16\x12\x8e\x8b\x8f\x4c\x88\x8e\x49\x4c\x4a\x4e\ \x49\x45\xf5\xa6\x08\x88\x27\x2a\x96\x96\x9e\x91\x99\x95\x9d\x93\ \x9b\x97\x5f\x50\x08\xf7\x66\x51\xb1\x13\xd0\x97\xe2\x40\x9e\x44\ \x49\x69\x59\x79\x45\x65\x55\x75\x4d\x6d\x6d\x5d\x3d\xdc\x9b\x0d\ \x8d\x4d\x40\x5f\x82\x14\x48\x4a\x35\xb7\xb4\xb6\xb5\x77\x74\x76\ \x75\xf7\xf4\xf4\xa2\x7a\x53\x1a\xcc\x95\x91\xed\xeb\x9f\xd0\x31\ \xb1\x7b\xd2\xe4\x29\x53\xa7\x61\xf7\x85\x9c\xfc\xf4\x19\xdd\x33\ \x67\xcd\x9e\x33\x67\x2e\x8e\x70\x50\x50\x9c\x37\x7f\xc1\xec\x85\ \x8b\x16\x2d\xc6\x19\x8f\x4a\xca\x4b\x96\x2e\x5b\xbe\x62\x25\x98\ \xc3\x88\x2d\xa1\xaa\xa8\xae\x5a\xbd\x66\xed\x3a\x44\x6c\x1a\xac\ \xdf\xb0\x11\x35\x3a\xd5\xd4\x37\x2d\xdd\x0c\xf7\xe6\x96\xad\x46\ \x36\xe8\x09\x55\x43\x73\x9b\x16\x98\xc1\x84\x33\xa1\x6a\xeb\x30\ \x0c\x0a\x00\x00\xfc\x5d\x64\x2d\xfc\x5e\x50\xe5\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\x11\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x07\x85\x49\x44\x41\x54\x58\xc3\xad\x96\x6b\ \x6c\x54\xc7\x15\xc7\xff\x67\x66\xee\xee\xdd\x5d\x3f\xd6\x8f\xc5\ \x60\x4c\x0c\x08\x67\x21\x24\xd0\x00\x01\x85\x2a\x12\x52\x24\x54\ \xe5\x5b\xd5\x82\x22\xd4\x36\x54\x6a\x9b\xb6\x28\xad\x08\x7d\x24\ \x6a\x25\xe4\xaa\x49\x3f\x24\xa1\x55\xd2\x50\x14\x25\x7d\xa4\x0f\ \xa4\xa2\xa6\x6d\x3e\xa4\x52\xab\xa8\x4d\x42\x42\x1b\x1e\xc1\xa6\ \x3c\x1d\x30\x0f\xdb\xac\xbd\x5e\x7b\x5f\x77\x77\xef\xbd\x33\x73\ \xfa\x01\xe3\x18\x62\x1b\x28\xf9\x4b\x73\xbf\xdc\xb9\xe7\xff\x9b\ \x73\x66\xe6\x1e\x62\x66\xdc\x9e\x88\x80\xff\x3f\x08\xdd\x2c\xc0\ \xbe\x7d\x9b\x65\x57\xaa\xef\x81\xa8\x6a\xd8\xe4\xb8\xf3\xd7\xbb\ \x6e\x47\x7b\x24\xbe\xa0\x45\xa9\x26\x0a\xfc\x91\x42\xe8\x5d\xca\ \x68\xef\xd2\xfb\x7e\xa9\x7f\x6f\xc6\x6d\x78\x73\xc3\x86\x7f\xea\ \x9b\x06\x18\x1a\xfa\xc5\x3d\x7e\xe5\x74\x69\xd1\x92\x9f\x9d\xbf\ \x7e\xc2\xe1\xc3\x6b\xe2\x4e\xc5\x7c\x1b\x4c\x3b\x92\x6e\x47\x4b\ \x22\xee\x20\x96\x8c\x42\xc5\x52\x90\xf1\x66\x10\xa2\x30\x7e\x08\ \x1b\x18\x04\xa5\x2a\xbc\xb1\x11\xe4\x32\xfb\xc7\x11\x9a\x9f\x1a\ \xaf\xb2\x6b\xc5\x17\x33\xde\x0d\x01\xce\xf5\x6d\xef\x8f\x5a\xb1\ \x70\xb4\xb0\x7f\xd7\xca\xb5\xff\xd9\x71\xf5\x65\xef\x3b\xab\x1e\ \x26\xf0\xae\xa6\x68\x6a\x5e\x6b\xe7\xdd\x90\xae\x01\xd8\xbf\xc1\ \x92\x22\xb0\x41\x0b\x0a\x17\xcf\x62\xb4\xff\xed\x61\x62\xfd\xdd\ \x65\x9b\x06\x7e\x3b\x2b\xc0\xd1\x43\xf7\x17\x96\x76\x6c\x6c\x18\ \x1a\x3c\x82\xb2\xce\x3c\xb3\x62\xdd\xa1\x27\x7a\xde\x5b\xfd\xb4\ \x6b\xd5\xf7\xe7\xb5\x2d\x42\xb4\x31\x09\xe0\x56\xcb\x2c\xa0\x2b\ \xf5\x18\x3e\xb5\x1f\x85\xec\xf9\xe7\xef\x75\x87\x1e\xc7\x26\x36\ \xd3\x02\xf4\x1c\x5c\x57\x48\xcf\x5b\xdf\x60\x2d\x70\x39\x73\x1a\ \x5e\x38\x7c\x3a\xe9\x2e\x49\xb7\xb6\xb6\x83\x64\xf5\x16\x8d\xaf\ \x13\x27\x30\x78\xfc\x24\xfa\x4e\x1e\xfa\x7b\xac\x98\x7d\x68\xc3\ \xce\x6b\x21\xd4\x95\x49\x80\xf5\x0d\x98\x7c\xcc\x4d\x2d\x43\x18\ \x2c\x4d\x47\xa2\x00\xdb\x0a\xd8\x4e\x0d\x36\xf1\x60\x00\x20\xc0\ \x38\x20\x47\x82\x6d\x6d\x96\x0c\x95\xd1\x9e\xee\x42\xa1\x58\xdd\ \x78\x32\x77\xf4\x15\x00\x5b\x3f\x0e\x00\xc0\x18\x33\xf9\x81\x14\ \x80\x09\x09\xa0\x6b\xcd\x6d\x18\xa0\x3a\x74\x11\xe1\x58\x06\x3a\ \x97\x85\x2e\x65\x41\x52\x22\xd2\xdc\x01\xd5\x38\x07\x6e\xdb\x42\ \x44\x5a\x9a\x80\xeb\x32\xcd\xa8\xa0\x6b\xf9\x5d\xe8\xef\x1f\x7e\ \xe4\xa5\xc7\x1b\x8e\x7d\x6d\x57\xf1\xb9\x6b\x4b\xf0\xef\xb5\x85\ \x85\xf5\xab\x1a\x18\x06\x24\x26\x5c\x09\xe0\x09\x06\x06\x10\x8c\ \x0d\x22\x7f\xf6\x7d\xd8\x5a\x05\x08\x2d\x28\xb4\xe0\x90\xc1\x96\ \xa1\xf8\xa3\x13\x17\xeb\x58\x8e\xba\xf4\x5a\x90\xc2\xc7\x54\x2e\ \x6a\xbc\xf4\xcb\xbf\x94\xe6\xc6\xc4\x1d\xdf\xd8\x9d\xcf\x4f\x29\ \x01\xc3\x68\x0d\x22\x86\x65\x02\x11\x00\x22\x30\x01\xcc\x1a\xe5\ \xc1\x0f\x50\xcb\x9d\x03\x24\xe0\x2b\x85\x63\x83\x12\xe7\x32\x84\ \x4c\x1e\x95\x6a\xcd\x80\xc2\x30\xde\x9e\x30\xf8\x4c\x3a\x44\xdb\ \xc0\x71\xf8\xd9\xf3\x68\x58\xbe\x11\x4e\x63\xfd\x35\x00\x09\x97\ \x90\xee\x4a\xd7\x1f\x3e\x72\x7c\x0f\x80\x87\xaf\x6c\xd5\x09\x00\ \x6b\x34\x8c\xd1\x60\x13\xc2\xda\x10\x96\x43\x30\x87\x28\x0d\x1f\ \x81\x5f\x3d\x0f\x8a\x0b\x5c\x2e\x08\xbc\x76\xd0\xad\xf5\x8f\x45\ \x77\x91\xe3\xa6\x77\xef\xcd\x25\x7e\xf5\xe7\x7c\xa2\x63\x6e\xe2\ \x53\x45\x11\x7b\x61\xd7\x5b\xae\xff\xaf\xb3\x0a\xa6\xe6\xa1\xd8\ \xfb\x37\x68\xcf\x87\xf5\x83\x6b\xc6\x03\x6b\x97\xe0\x62\x96\x3f\ \xdb\xfd\x65\x72\x27\x33\x40\xcc\xb0\x61\x00\x52\x04\x26\x9a\xdc\ \x4f\x61\xe5\x32\xc2\xe0\x02\x28\x4e\xf0\x3d\x46\xef\x60\x5d\xa1\ \xbd\x43\xae\x7f\xf4\xc9\x0b\x27\xa6\xae\xec\x47\x2f\x8f\xf4\x00\ \xf8\xd6\x8b\x3b\x52\xdd\xe7\xc7\x9c\x37\x9b\x47\xab\xcb\x57\xa4\ \x6a\xa2\xdc\x77\x80\xea\xba\xd6\x31\xd8\x8a\xc9\x12\x49\xe0\xae\ \xc5\x73\x23\x41\x35\xf3\x05\x00\x2f\x0b\x00\xa8\xf9\x16\xc6\x04\ \x13\xc3\x87\xe5\x00\xcc\x01\x20\x09\xaa\xae\x01\xc2\x65\xc4\x52\ \x8c\xa5\x9d\xa6\x31\x19\xb3\xdb\x67\x3a\x71\xdb\x9e\xcb\xe6\x96\ \x2f\x74\x3f\x5d\x70\x12\x17\x3c\x23\x0b\xe1\xf8\xc5\x4b\xb5\xcc\ \xd9\x51\x1b\xf8\x25\x1b\xf8\xa1\x0d\x7c\x6b\x03\xdf\xdc\x9b\x6e\ \xb6\x15\x9f\x3f\x3f\x59\x82\x52\xd9\x90\x37\xd4\x8b\x20\x3f\x00\ \x1b\xd4\x60\x4d\x00\x6b\x03\x88\x68\x1d\x12\xa9\x55\x48\xb4\xdc\ \x0d\xa7\xa1\x0e\x5d\xf7\x55\xb0\xb8\xdd\x7c\xe5\xdd\xdf\x77\xfe\ \x78\x26\x88\x2d\x3b\x33\xde\x92\x8e\xc8\xb6\x92\x8a\x1d\x00\x70\ \x36\xc8\xf6\xf7\xdb\xc0\x1f\xb2\x81\x9f\xb3\x81\x5f\xb4\x81\x5f\ \x5b\x90\x72\xcb\x05\x8f\x17\x4d\x02\x54\x2b\x7a\xc0\x2f\x65\x50\ \x19\x3d\x8e\xd2\xd0\xdb\xa8\x64\x8f\xc0\x2f\x5d\x80\xf1\xc7\x60\ \x82\x3c\x58\x11\x22\xf5\x0b\x11\x6b\x6a\x43\xfb\x9a\x32\x1a\x1b\ \xec\x0f\x3e\x7c\xe7\xc1\xae\x99\x20\xe6\x25\xf1\x9e\x72\x9d\x0c\ \x80\x61\x53\x2d\x64\x8c\x5f\x1b\xb2\x57\xc6\xb0\xf5\x6b\xd9\x98\ \xb4\xe5\xa2\x77\xe5\x2f\xa8\x00\xc0\xaf\xd9\x2d\x87\xbd\xb6\xd7\ \xfc\x31\xd3\x19\xfa\x06\x5a\x33\xac\x19\x05\x21\xcb\x92\x98\x1d\ \x49\x88\x38\xa0\x98\x43\xc2\x8d\x34\x72\xeb\x9c\x54\x21\xd5\xc8\ \xf3\x00\xf4\x4d\x07\xd0\xb5\x25\x53\x1a\x7a\xa1\x75\x58\x33\x25\ \x15\xd9\xaa\xf1\xc6\xb5\x70\xdc\x00\x80\x07\xc0\x4d\x28\x8e\x16\ \x3d\xeb\x77\x77\x93\x50\x00\xf0\xb9\xad\xa7\x8e\x02\x58\x3c\xd3\ \x8a\x5e\xfd\x49\x07\xbe\xf4\xc4\x00\x6e\x5e\x04\x36\xcd\xa5\x89\ \x1b\x25\xa6\xcb\x19\x2d\xa4\x1b\x30\x9b\x2a\x5b\xed\x6a\x6d\x02\ \x6d\x11\xdd\xb9\x93\xad\x9a\x2d\xcc\x0f\xb7\xb5\x91\xd6\x2c\x04\ \x81\x76\x77\x77\xe8\x6f\xee\xbc\x39\x88\x13\xbf\x4b\x25\x14\xeb\ \xaa\x24\xb6\x00\x6a\xc6\x1b\x0d\x0c\x10\x00\x70\x01\x84\x23\x25\ \x11\x8d\x47\xc4\x47\x25\x98\xaa\x3d\xdf\x49\x52\x0c\x1a\xf5\x52\ \xd3\x83\x2d\x86\x92\x71\xd0\xa1\x5c\x93\xc8\x15\x42\x01\xc0\xde\ \x0c\x80\x21\xb9\x20\x1a\x41\x19\x9a\xaa\x60\x76\x71\xc5\x3c\x00\ \x10\x05\x10\xe6\xab\x2a\x12\x8f\x18\x7f\x72\x13\x4e\xd5\xd7\x9f\ \xcd\xf3\x23\xcf\x96\xf9\x9e\x16\x9f\x3b\x92\xcc\x89\x98\xc0\xca\ \x79\x3e\x0d\x17\x64\xf4\xe7\xdd\xed\x37\x34\x3f\xb6\x77\xbe\x63\ \xa5\x58\x52\xaf\x6c\x91\x1d\x55\x81\x10\x79\x00\x05\x00\xe3\x00\ \x06\x00\x8c\xf7\x8d\xaa\x7c\x4b\x3d\x7d\x38\x2d\xc0\x55\x75\x7d\ \x8f\x99\x95\x04\x94\xa4\xc6\xb8\x15\xf7\x2f\x96\x72\x60\x98\xdd\ \x57\x9f\x6e\x9b\xd1\xfc\xe0\xbe\x0e\x11\x38\x72\x59\x04\xd1\x1a\ \xd9\x5a\x19\x4a\x16\x59\xc9\x0a\xa4\x28\x02\xb8\x3c\x01\x52\x38\ \x95\x51\xf9\xa6\x7a\x3a\x38\x6d\x09\xae\xea\xcc\xf3\x51\x62\xa9\ \x00\x25\xc1\x52\xd8\x15\xed\x15\x23\xa2\x49\xee\x19\xa8\xc9\x3d\ \x4f\xb5\xdb\xe6\x06\x87\x37\x3f\x76\x01\x00\xf0\x8f\xdf\xdc\x41\ \xae\x23\x22\x6e\x22\x96\x72\xbc\x32\x44\x50\xf3\xa0\x64\xc8\x80\ \x43\x40\xc0\x00\x13\xc3\x81\xb5\xce\xb8\xef\x3a\x39\x4f\xcb\xd5\ \x9d\xe1\x49\x60\x96\xa6\xf4\xcc\x8b\x71\x62\xa5\x88\x95\x04\xa4\ \x04\x4b\xc9\x90\x02\x15\x8e\xd3\xb1\x81\x0a\x8c\xd3\x2c\x0c\x6a\ \xa2\x2e\x4e\xa2\x35\x19\x93\x09\x14\x55\x73\x34\xe6\xa2\x92\x6f\ \x84\x31\x71\x32\xc6\x21\x6d\x1c\x68\x63\x48\x9b\x08\x69\x1d\x85\ \xd6\xf4\xfa\x99\x39\x2a\x33\x92\xcb\x3c\xf3\x57\xfd\xc1\xac\x19\ \x60\x29\x91\x7e\xb4\x68\x4f\xfd\xba\x95\x96\x6e\x1d\x9d\xa4\x3c\ \xf1\xa7\x4e\xdc\x77\xa7\x0b\x88\x9a\x25\x19\x05\x84\x04\x07\x1e\ \xc0\x04\x36\x95\x10\x4a\xfa\x44\x04\x06\x39\x60\x18\x62\x28\x66\ \x0e\xc1\x22\xcc\xd5\x9a\xd4\xb9\xcb\x1e\xad\x9c\x6f\x7a\xaf\xc6\ \x9b\x36\x03\x3d\xaf\x2c\x24\xd7\x8e\x23\xfd\xd5\xc2\x8c\x8d\xe0\ \x7f\xdf\xb8\x93\x40\x24\xc0\x20\x30\x0b\xb2\x56\xc0\xd8\x08\x19\ \x13\x83\x31\x51\xd2\xda\x42\x1b\x49\xa1\x96\xa4\xb5\x63\xb4\x8c\ \xbc\xd1\x1b\x95\x61\x69\x2c\xf3\xe4\x1f\xc2\xcc\xd5\x38\xd3\x66\ \xe0\x74\x51\x60\xf3\xf6\xc2\xac\x5d\x28\x3b\x0a\x20\xb2\x60\x08\ \x30\x5b\x58\x0b\x08\xa3\x41\x08\x09\x1c\x32\x4b\x49\x96\x05\xa4\ \x90\x60\x47\x9f\x1e\x4d\x6a\x51\x1b\xf0\xa6\x9a\xcf\xba\x07\x6e\ \x46\xbd\x6f\xad\xbc\xd2\xba\x58\x26\x18\x43\xa4\x8d\x84\x36\x82\ \xb4\x96\x14\x6a\x41\xa1\x16\x04\x25\x86\x73\x4a\xf5\x9d\x1c\x34\ \x8d\xa3\x61\x6e\xd3\x1f\xaf\xf5\xbb\x2d\x00\x00\xe8\x7d\x77\x35\ \xc1\x5a\x90\x36\x04\x6d\x68\x8a\x39\x45\x9c\x18\x79\xd9\x8a\x18\ \x3c\x37\xa2\x1f\x7a\xca\xaf\x4d\xd7\xb8\xde\x36\x00\x00\xf4\x1c\ \x58\x43\x14\x1a\x50\x18\x82\x42\x23\x62\x2a\x2a\x82\x8b\x97\x28\ \xa2\xd9\x96\x3d\xcf\xae\xdc\xee\xcf\x78\x83\x7e\x22\x00\x53\x75\ \xfe\xf5\x34\xe9\xec\x28\x69\xdf\x67\x65\x3c\x5e\xf2\xd8\xec\xf1\ \x3f\x71\x80\x5b\x95\xb8\xfd\x10\xb7\xa7\xff\x01\x92\x72\x1f\x2a\ \xec\x93\x37\xf3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x07\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x06\xa5\x49\x44\x41\x54\x58\xc3\xed\x97\x6b\ \x88\x9c\x57\x19\xc7\x7f\xe7\x7d\xdf\x79\xdf\xb9\xed\xcc\xec\x5c\ \x77\xf6\x96\xed\xde\xcb\x6e\x2e\xf6\xa2\x49\x84\x26\x25\x64\x53\ \x48\x4c\x1b\x50\xb4\xda\x82\x49\x5a\x6d\x4d\xd1\x0f\xe2\x57\x05\ \x83\x14\x92\xa8\x20\x08\x6d\x43\x69\xc1\x22\x14\xda\x4a\x44\x62\ \xd5\x28\x21\x69\xb2\x25\xe9\xc6\x12\x92\x6e\xab\xbb\xd9\x9d\xd9\ \x24\xbb\x33\x9b\xb9\xee\xce\x3b\xb3\xfb\x5e\x8e\x1f\x12\x6b\x35\ \x97\x15\xbf\xc4\x0f\x79\xe0\x81\xc3\xe1\xcf\xf9\xff\x38\x9c\xe7\ \x3c\xe7\x08\x29\x25\x77\x33\x94\xbb\xea\x7e\x0f\xe0\x1e\xc0\xff\ \x03\x80\xb6\x92\x40\x08\xa1\x01\x23\xc0\xe3\xc0\x3b\x52\xca\x3f\ \xac\xa0\x7f\x18\x18\x02\x1a\xc0\x9b\x72\xa5\x3a\x97\x52\xde\x31\ \xd3\xe9\xf4\x3b\xaf\xbc\xf4\xb2\xfb\xd3\x83\x87\x64\x67\x7b\xbb\ \x05\x7c\xed\x76\x5a\xe0\x1b\xbd\x3d\x3d\xf6\xcf\x0e\x1e\x92\x07\ \x0f\x1c\x70\x03\x81\xc0\x6b\x2b\xad\x2f\xee\x04\x28\x84\xd8\xf1\ \xdd\x7d\x2f\xfc\xf6\xd2\xf4\x94\xc8\x4c\x67\x68\x2c\x35\x50\x55\ \xed\x8f\xe3\x1f\x8f\x6f\xbb\x95\x7e\xc3\xfa\xf5\xa3\xf9\x7c\x7e\ \xbd\xdf\xef\x67\x78\x68\x88\xa6\x70\x58\x1e\x3e\x7c\x78\xa7\x94\ \xf2\x77\xb7\xf3\x50\x6e\x61\xea\x15\x42\x7c\x49\x08\xb1\x7f\x70\ \x70\xf0\xd5\x9e\x9e\x1e\x61\x9a\x26\x8a\xaa\x10\x0e\x87\x09\x04\ \x02\x9f\xfb\x8c\x36\x26\x84\x88\xdc\x18\xfb\x14\x45\x59\x13\x8f\ \xc5\xd1\x34\x8d\xc5\x5a\x8d\xae\x8e\x4e\xd1\xd9\xd9\xf9\xba\x10\ \xe2\x7b\x42\x88\x47\x84\x10\x9e\x9b\xfc\x3e\xbb\x03\x42\x08\x03\ \x78\xfd\xb1\xad\x23\x4f\x84\x9b\x9b\xbd\x6b\x86\x87\xd1\x3c\x1e\ \x8e\xfe\xfe\x28\x86\xae\x23\x25\x5c\x2b\x14\xb8\x34\x39\x35\x1a\ \x4f\xc6\xdb\x0d\xc3\xdb\xe1\xf3\xf9\xb0\x6d\xeb\x72\x66\x7a\x2a\ \xdf\xdf\xd7\xff\x80\xdf\xef\xc7\xe3\xf1\x20\x81\xad\x5b\xb6\xb0\ \x64\x2d\x93\xc9\x64\xc9\x66\x33\xb5\x3f\x1d\x3b\xf6\x16\xf0\x2d\ \x29\xe5\xf2\xed\x00\x7e\xb1\xef\x3b\xfb\xf6\xad\x59\xbd\x5a\x39\ \x71\xf2\x04\xad\xad\xad\x5c\xb8\x70\x91\x7a\xdd\x24\x11\x4b\x60\ \xd6\x4d\x8a\xc5\x22\xb5\x5a\x8d\x50\xa4\x19\x5d\xd7\xf1\x7a\xbd\ \xc4\xe3\x09\xc6\x2f\x5e\x40\xd7\x3d\x34\x37\x5f\x9f\xcf\xe7\xf3\ \x04\x83\x01\x1e\x78\xf0\x41\x12\xf1\x04\xdd\xdd\xdd\xbc\xf5\xf6\ \x5b\xf2\x57\x6f\xbc\xb1\x5f\x4a\xf9\xa3\x9b\xaa\x40\x08\xd1\xb3\ \xfb\x9b\xbb\x9f\x7b\x7c\xe7\x4e\xa5\x5a\xad\xd2\xd6\xda\xc6\x99\ \x33\x67\x70\x1c\x07\x29\x25\xb3\x73\xb3\x18\x86\x81\xaa\xaa\xf8\ \xfc\x7e\x92\x89\x24\xc3\x43\x83\x58\x96\xcd\x87\xe7\xcf\x63\x3b\ \x0e\x3e\xd5\x4b\xad\x56\xa3\x54\x2e\xa3\x08\x81\x69\xd6\x39\x73\ \xe6\x2c\x5f\x7f\xf2\x49\x74\x5d\x67\xcf\xee\x3d\xc2\xac\xd7\x7f\ \x20\x84\xf8\x8d\x94\xf2\xc3\x7f\x03\x88\x47\xe3\x2f\xee\xd8\xbe\ \xdd\x73\xe2\xe4\x49\x32\x99\x69\xf2\xb9\x3c\x8e\x63\xb3\x58\xab\ \x61\xe8\x06\x1e\x8f\x87\x46\xa3\x81\xeb\xb8\xf8\xfd\x41\x52\x2d\ \x29\xd6\xad\x5b\x87\x61\x78\x29\x14\x4b\x54\xca\x15\x2c\xcb\xc2\ \xb6\x6d\x54\x55\x05\xc0\x75\x5d\x7c\x5e\x2f\x27\xdf\x3b\x49\x22\ \x9e\x20\x1e\x8f\xf3\xec\xde\x67\x7c\x47\x8e\x1c\x39\x70\xa3\xb4\ \xaf\x03\x08\x21\xda\x9e\xd9\xbb\x77\xe7\xc4\xc4\x04\xa1\x50\x88\ \xce\x8e\x0e\x2c\xcb\xa6\x5c\x2e\x93\xcb\xe5\x31\x74\x9d\xe6\x68\ \x94\x80\xdf\x8f\x94\x92\xc5\x85\x2a\xd9\x4c\x86\x53\xa7\x47\xa5\ \xe1\xf5\x8a\xc9\xc9\x09\x6c\xcb\x42\xd3\xd4\x4f\xcd\xab\xd5\x2a\ \xd1\x58\x94\x47\x37\x6f\x26\x16\x8f\x13\x8d\x46\x69\x0a\x06\xc9\ \xce\xcc\xb0\x6b\xd7\xae\xcd\x42\x88\x41\x29\xe5\xc7\x1a\x40\x28\ \x14\xfa\x79\x5f\x5f\x9f\xb1\x76\xcd\x5a\xa6\xa6\xa6\x30\x4d\x93\ \xb6\xb6\x36\x90\x92\xab\xb3\xb3\x94\x2a\x65\x34\x8f\x06\x52\xe2\ \xf7\xfb\xd1\x75\x0f\xf3\xf3\x39\xc6\xc6\x3e\x58\xd0\x0d\x9d\x74\ \xaa\x25\xa4\x6a\x2a\x42\x08\x00\x1c\xd7\xb9\x7e\x10\x5d\xc9\x62\ \xad\x86\xeb\xba\x94\x2b\x65\xe2\xb1\x38\x9d\xab\x56\xb1\x61\xfd\ \x06\xcf\xd1\xa3\x47\x0f\x01\x3b\x04\x90\x7c\xfe\xb9\xe7\x67\xae\ \xce\x5e\xd5\xab\xe5\x12\xb1\x48\x88\x50\x30\x48\x63\x69\x89\xf9\ \xf2\x02\x9f\x7c\xf2\x37\x6c\xdb\x26\x1e\x8f\x51\xad\x2e\xd0\xdb\ \xdb\x83\x65\xd9\xd4\x4d\x93\x62\xb1\x58\x35\x74\x43\x09\x86\x82\ \x41\x9f\xcf\x8f\xa6\x2a\x98\x66\x9d\xfe\xbe\x3e\xfe\x3e\x31\xc1\ \xb5\x42\x81\x54\x2a\x81\xcf\xa3\xd1\x1c\x6e\x62\xd9\x72\x99\xbb\ \x56\x20\xd5\x92\x26\x95\x4c\x5a\x2f\xbd\xf2\xf2\xb0\x1a\x0e\x87\ \x5f\x74\x1c\x7b\xa3\xa1\x0a\x94\xc5\x79\x3a\xe3\x21\x3a\x52\x51\ \xba\x3b\xdb\xe8\xbf\xaf\x93\x50\x53\x80\x89\xe9\x19\x92\xc9\x24\ \xf5\xba\xc9\xc8\xd6\x11\xd2\x2d\x2d\x4c\x67\x32\xd4\x6a\x8b\xf3\ \x8a\xaa\xda\xcd\x91\x48\xf0\xe9\xa7\x9e\x22\x18\x6c\xa2\x54\x2a\ \xd1\xd7\xdf\xcf\xd8\xd8\x18\x2d\xa9\x18\x01\xc7\xa4\xbf\x23\x45\ \x77\x47\x0b\xfd\x5d\xed\xdc\xdf\xbd\x8a\x42\xa9\xc8\x64\x76\x46\ \x2d\x5c\xbb\x16\x51\x37\x6e\xd8\xf0\xe6\x72\xa3\x61\x88\xd2\x65\ \x82\x4e\x0d\xbb\x30\x8b\x5b\x2b\x61\x2d\x96\x91\x8e\x05\xf5\x1a\ \xf3\xa5\x0a\x75\xdb\xc5\x71\x6c\xba\xbb\x7b\x18\x1e\x1e\xe6\xdc\ \xb9\xbf\x32\x31\x39\xf1\x6d\xdb\xb1\xcf\x47\x22\x91\x6d\xdd\x3d\ \x3d\x0c\xf4\xf7\x73\xea\xf4\x29\x66\xb2\x59\x3c\x8a\x20\xb0\x54\ \x44\x5d\x2c\x40\xbd\x8a\x52\xaf\xa2\x2e\xd7\x09\xf8\x74\xc4\x52\ \x8d\x73\xe3\x93\xf4\x0d\xdc\x3f\x20\xd6\x7f\x61\xbd\xa3\xba\xcb\ \x4a\xb0\x7a\x99\x84\x01\x5d\x51\x3f\x9a\x2a\xf0\xfa\xfc\xd8\x52\ \x30\x71\x75\x9e\x59\x19\xe2\xfc\xdc\x02\xbd\x3d\xbd\xb2\x66\xd6\ \x5c\xdb\xb6\xeb\x73\xb9\xdc\x81\x5c\x2e\xb7\x1f\x20\x95\x4a\xfd\ \xb8\x35\x95\xfe\xbe\xa6\x7b\xf4\x64\x32\xa9\x8e\x7f\xf4\x91\x88\ \xf9\x55\x12\x76\x99\xbe\x96\x30\x01\x8f\xc0\xf0\x78\xd0\x35\x85\ \x7c\xa5\x46\x65\xd9\x65\xa2\xe1\xc3\xf6\xc7\x10\x9f\x7f\xe8\x61\ \x57\xb3\xea\xa2\xc3\xce\xd1\x11\xd2\x08\xfb\x0d\xe2\x91\x26\x96\ \x1d\x97\x5c\xa1\x8c\xa2\x2a\x4c\xca\x38\xa3\xd3\x25\xaa\xd5\xca\ \x9e\x42\xb1\xf8\xda\x9d\x9a\x5b\x3a\x9d\xde\x26\x10\xef\xf6\x26\ \x82\xb4\xc9\x12\xf1\x90\x97\x74\x38\x48\xd0\x23\xb0\x2c\x0b\xe9\ \x58\xf8\xd2\xad\x1c\x9b\x76\xc9\x54\x96\xd0\x9a\x42\x4d\x79\xcb\ \x32\x52\x46\xbd\x4a\x6b\xc4\xa0\x2b\x11\x22\x12\xf0\x62\x39\x2e\ \x09\x9f\xc2\xf8\x6c\x99\xe6\xf6\x1e\xa2\x95\x49\x8a\xa5\xe2\x11\ \x56\x88\xb9\xb9\xb9\x63\x83\x03\x03\xc4\x5a\x5b\xd1\x66\xcb\x74\ \x84\xbc\x74\x34\xfb\x88\x06\x74\x70\x2d\x4a\x0b\x26\x53\xf3\x65\ \xdc\xc0\x2a\x42\xd2\xac\x2a\x57\xae\x5c\xf9\x6a\xdd\x6c\xe0\x5f\ \xfd\x08\x32\x92\x44\x2c\xd7\xd0\xa5\x85\xd2\x58\x00\xd7\xa1\x75\ \xd3\x57\x98\xab\xbb\x28\xaa\x72\xa1\x52\xa9\x14\x57\x02\x90\x52\ \x3a\x91\x48\x64\x34\x57\x69\xd0\xf5\xc5\xed\x68\xaa\x8a\x62\x37\ \x30\xa4\xc4\x87\x85\xaf\xa5\x0b\xf5\xa1\x27\xc8\x17\x4a\x64\xb3\ \x33\x4f\x0b\x29\x25\x1b\x37\x6e\x1c\x31\x74\xfd\xdd\x81\xde\x6e\ \xf1\xe8\xda\x3e\x3a\xe2\x61\xa4\xee\x23\x33\x5f\xe1\xcf\xa3\x63\ \x5c\xca\x5e\x9e\x3c\x7e\xfc\xf8\x90\x94\x72\x69\x25\x80\x1b\x17\ \x9b\xb2\x69\xd3\xa6\xf3\x02\x86\x76\x8d\x6c\x66\x20\x1d\x21\x1a\ \x6a\x62\xc9\x85\xd3\x17\x2f\x71\x7c\xf4\x03\x39\x5f\x2c\x3e\x7b\ \xf6\xec\xd9\x57\x3f\x6d\x46\xed\xed\xed\xb1\xfb\xba\xba\x7e\xd2\ \x9a\x4c\x7c\x59\x3a\x76\xd8\xeb\xd1\xe4\xd5\x7c\x3e\x7b\x65\xbe\ \xf8\xc3\xf1\xf1\xf1\x5f\xff\x37\xc6\xff\xc9\xf1\xd8\xb6\x6d\x5b\ \xaa\xd5\xea\x2f\x3d\xba\xbe\x2a\x18\x08\x6a\xc1\x80\xdf\x2c\x15\ \x0a\x7f\x79\xef\xfd\xf7\x5f\x30\x4d\xf3\xf2\x4d\xdd\xf0\x46\xfc\ \xf3\x8d\xe0\xfe\x0f\xa6\xb7\x0a\x15\x08\x70\xfd\xda\xaf\xdf\xc8\ \x7f\x51\xde\xfb\x9a\xdd\x03\xb8\xdb\x00\xff\x00\x07\x41\x1b\xa7\ \x56\xba\x44\x3a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\x91\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x35\ \x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\xdb\xdd\xde\x00\x00\x00\xcf\xd0\xd0\x5f\x62\x62\x00\ \x00\x00\x63\x66\x65\x00\x00\x00\x67\x6c\x6a\x6a\x6e\x6b\x00\x00\ \x00\x5a\x5e\x5c\xc2\xc3\xc3\x4d\x51\x4f\xb8\xbc\xbd\x43\x45\x45\ \x00\x00\x00\xf7\xf7\xf7\xf0\xf1\xf1\xf1\xf1\xf2\xf2\xf3\xf3\xf3\ \xf3\xf3\xf3\xf4\xf4\xf4\xf4\xf4\xf4\xf5\xf5\xf5\xf5\xf5\xf5\xf6\ \xf6\xf6\xf6\xf6\xf6\xf7\xf7\xfb\xfb\xfb\xe7\xe8\xe8\xe8\xe9\xe9\ \xe9\xea\xeb\xeb\xec\xec\xec\xec\xec\xec\xed\xed\xed\xee\xee\xee\ \xef\xef\xef\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\xf1\xf2\ \xf2\xf7\xf8\xf8\xe9\xea\xea\xea\xeb\xeb\xf2\xf2\xf2\xf8\xf8\xf8\ \xf9\xf9\xf9\xed\xed\xed\xee\xee\xee\xfa\xfa\xfa\xad\xad\xad\xa9\ \xa9\xa9\xfc\xfc\xfc\xaa\xab\xab\xab\xab\xab\xfd\xfd\xfd\xaf\xaf\ \xaf\xfe\xfe\xfe\xb0\xb0\xb0\xb2\xb2\xb2\xfa\xfb\xfb\xe9\xe9\xe9\ \xe4\xe4\xe4\xe2\xe2\xe2\xe3\xe3\xe3\xdb\xdd\xde\xb9\xb9\xb9\xeb\ \xeb\xeb\xd6\xd6\xd6\xcb\xcb\xcb\xc8\xc8\xc8\xce\xce\xce\xcf\xd0\ \xd0\xa0\xa1\xa1\xc1\xc1\xc1\xe5\xe5\xe5\x99\x9b\x9b\xb6\xb6\xb6\ \xfa\xfa\xf9\x92\x96\x94\xdb\xdb\xdb\xf9\xf9\xf8\xe1\xe1\xe1\x8d\ \x90\x8d\xd8\xd8\xd8\xbb\xbb\xbb\xdc\xdc\xdb\x8e\x90\x90\xcd\xcd\ \xcd\xc3\xc4\xc3\x99\x9c\x9a\xee\xf0\xf1\xba\xbe\xbf\xa5\xa6\xa6\ \xae\xae\xae\xc2\xc2\xc2\xff\xff\xff\xc1\xa5\xb5\xa9\x00\x00\x00\ \x15\x74\x52\x4e\x53\x00\x25\x4b\x4c\x81\xfa\x45\xfe\x98\x03\xa6\ \x02\xb6\xc4\x01\xae\xfe\x92\xf7\x78\x3b\x70\x83\xd4\xd9\x00\x00\ \x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\ \x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\ \x00\x00\x01\xa8\x49\x44\x41\x54\x38\xcb\x85\x93\x59\x5b\x82\x40\ \x14\x86\x53\x6c\xb5\xbd\x20\x01\x47\xa0\xd2\xca\x5c\x4a\xb0\xa9\ \x29\x50\x2b\xdb\xf7\x7d\xdf\xfb\xff\x7f\xa1\x39\x73\x40\xd0\x2e\ \xfc\x6e\xb8\x78\xbf\x39\xe7\x7d\x80\xe9\xe9\xe9\x9a\x58\x5c\xfa\ \x9f\x78\x2c\x2c\xc4\x65\x65\x26\xa5\x6a\x7a\x3a\x4d\x48\xc6\x30\ \x4d\x19\x62\xc5\x23\x05\x65\x76\x6e\x3e\x9b\x5b\x58\x5c\xca\x2f\ \x17\x94\x62\xb1\x04\x29\x47\x0a\x52\x69\x65\x35\x2b\xb0\x52\x2c\ \x55\x52\x29\x55\x55\x35\xd5\x96\x22\x05\x55\x70\xc0\xb0\x49\xe7\ \x9b\x08\x71\x12\xa1\x8a\xa4\x65\xab\x6b\xf9\x82\xc2\x31\x87\x19\ \xc3\xe0\x1e\x26\x5d\x0f\x55\x24\xbd\x0a\xc7\x2b\x80\x0d\xae\x68\ \x43\xac\x8d\x50\x45\x22\x9c\x97\x52\x9a\x4e\x0c\xa0\x8e\xe3\x50\ \x4a\xd9\x66\xa8\x22\x11\xc1\xd3\x19\x53\xb6\x05\x84\xb0\x2d\x54\ \x11\x05\x03\x38\x3f\xee\x63\x0b\xe2\xae\xa3\x8a\x28\xc8\x45\x9f\ \x07\xd4\x62\xbc\x80\x2a\x58\xa8\x68\x69\xe4\xc0\x30\xae\x87\x2a\ \xa2\x50\x56\xf5\x4c\x84\xbb\x90\x9a\x87\x2a\xa2\x60\xeb\xc4\x44\ \x1e\x60\x28\xa0\x0a\x16\xf8\x02\x9f\x03\xc2\xd4\x51\x45\x14\x1c\ \x02\x0b\x22\x1c\x1e\x0d\x54\xc1\x42\x30\x40\x60\xd7\xa2\x44\x27\ \xdb\x0d\xdc\xe4\x17\x5a\x03\x6a\x35\xe6\xe4\x77\x76\x9b\x7b\xfb\ \x07\xd1\x82\x6c\xb7\x06\x30\xf9\xf0\xe8\xf8\xe4\xf4\xec\xdc\x42\ \x15\x51\xa0\x62\x03\x0e\xa0\xb9\x8b\x9a\x4b\x2f\xaf\x98\xaf\x22\ \x3e\x16\x2d\xfb\x1b\xf8\x80\x4a\xf3\xda\xbd\xd9\xbd\x65\x81\x0a\ \x16\x50\x01\x06\x58\xb9\xbb\xc6\xfd\xc3\xa3\x1b\xa8\xf4\xf6\x75\ \x14\xe8\xce\xd3\xf3\xcb\xab\x1b\xa8\xf4\x0f\x0c\xc2\x4f\xdb\x56\ \x78\x7b\xff\x60\x2d\x95\xa1\xa4\xf8\xab\x59\xf8\x8a\xac\xcf\xaf\ \xef\x50\x65\x38\x19\xbd\x38\x09\xef\xc7\xf3\xea\xf5\xdf\x50\x65\ \x64\xb4\xed\x82\xfd\x53\x19\x6b\xe7\x9d\x2a\xe3\x13\x1d\xbc\x43\ \x65\x72\xaa\xcb\x1d\x9e\xee\x7e\xe9\x83\xfc\x01\x3b\x85\x89\x03\ \x89\xbc\xca\xc4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x04\x28\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\x16\ \x50\x4c\x54\x45\xff\xff\xff\x71\x71\x71\x54\x54\x54\x37\x8c\x37\ \x36\x8b\x36\x38\x8b\x36\x38\x8b\x36\x37\x89\x37\x72\x72\x72\x3c\ \x8d\x38\x39\x8a\x37\x39\x8a\x36\x37\x87\x34\x54\x54\x54\x34\x83\ \x34\x37\x80\x37\x32\x81\x31\x2f\x7d\x2f\x2d\x79\x2e\x2e\x76\x2e\ \x2c\x75\x2c\x29\x74\x2b\x71\x71\x71\x25\x6e\x2a\x60\x60\x60\x24\ \x6b\x26\x21\x6a\x27\x1f\x64\x26\x1b\x64\x24\x53\x53\x53\x1e\x61\ \x22\x1a\x60\x22\x18\x5b\x21\x1b\x5b\x24\x17\x57\x1d\x15\x56\x1f\ \x11\x4f\x1c\x12\x52\x1b\x10\x4c\x19\x0d\x49\x1a\x0a\x45\x18\x0a\ \x46\x18\x09\x49\x1b\x08\x3f\x15\x06\x41\x16\x72\x72\x72\x68\x68\ \x68\xfc\xfc\xfc\xf8\xf8\xf8\xf3\xf3\xf3\xee\xee\xee\xe9\xe9\xe9\ \xe4\xe4\xe4\xe0\xe0\xe0\x5e\x5e\x5e\x54\x54\x54\x5d\xa0\x48\x38\ \x8b\x36\xde\xf2\xb4\x96\xc2\x6b\xf6\xf6\xf6\xe6\xe6\xe6\xdc\xf0\ \xb1\xd7\xee\xab\xbc\xda\x8c\x5a\x9d\x43\xf0\xf0\xf0\xe1\xe1\xe1\ \x36\x88\x35\xcc\xe6\x9d\xca\xe4\x98\xc6\xe1\x93\xc0\xdd\x8b\x83\ \xb4\x55\x33\x83\x33\xc0\xdc\x89\xbc\xdb\x84\xb9\xd8\x80\xb6\xd6\ \x7b\xb3\xd3\x78\x9d\xc5\x62\x4f\x93\x39\x2f\x7e\x30\xb2\xd3\x78\ \xb0\xd2\x75\xad\xd0\x6f\xa9\xcd\x6b\xa8\xcb\x67\xa4\xc9\x62\x9f\ \xc6\x5e\x6e\xa5\x3e\x2c\x79\x2e\xa4\xca\x64\xa2\xc8\x5f\x9f\xc6\ \x5b\x9c\xc4\x57\x9a\xc1\x55\x98\xbf\x51\x94\xbe\x4d\x86\xb4\x41\ \x44\x89\x2f\x29\x73\x2c\x97\xc0\x51\x95\xbe\x4e\x92\xbc\x4a\x90\ \xba\x47\x91\xbb\x43\x92\xbd\x40\x91\xbd\x3d\x8f\xbd\x3b\x65\x9e\ \x2e\x25\x6e\x2a\x79\xa7\x29\x78\xa6\x27\x77\xa5\x25\x75\xa4\x24\ \x76\xa6\x22\x7b\xac\x20\x7f\xaf\x20\x81\xb3\x1f\x85\xb6\x1e\x87\ \xb8\x1d\x86\xb8\x1b\x66\xa0\x1f\xfa\xfa\xfa\xf1\xf1\xf1\x22\x69\ \x27\x5f\x92\x07\x61\x94\x07\x6a\x9d\x07\x71\xa5\x08\x79\xad\x08\ \x7f\xb3\x09\x84\xb8\x09\x86\xba\x0b\x55\x94\x19\xf5\xf5\xf5\xec\ \xec\xec\xe3\xe3\xe3\x1e\x64\x25\x67\x9a\x07\x70\xa4\x08\x79\xac\ \x08\x81\xb5\x09\x88\xbc\x0a\x7a\xb1\x0f\x33\x77\x20\x1b\x5f\x23\ \x62\x95\x07\x6b\x9f\x07\x75\xa9\x08\x7e\xb2\x09\x85\xba\x0b\x56\ \x92\x17\x18\x5a\x21\x64\x98\x07\x6e\xa2\x08\x78\xac\x08\x6e\xa6\ \x0d\x2e\x6d\x1d\x14\x55\x1e\x66\x99\x07\x6f\xa2\x09\x47\x82\x13\ \x11\x4f\x1c\x55\x8b\x0b\x22\x5e\x18\x0e\x4a\x1a\x5d\x90\x08\x36\ \x6e\x10\xf9\xf9\xf9\xf2\xf2\xf2\xeb\xeb\xeb\x1a\x53\x14\xfb\xfb\ \xfb\xf4\xf4\xf4\xed\xed\xed\xff\xff\xff\xc8\x70\x59\x46\x00\x00\ \x00\x2d\x74\x52\x4e\x53\x00\xb4\xb4\x3c\x4b\xf7\xb7\x1c\x80\xf0\ \x62\xf0\x62\x80\xb7\x1c\xf0\x62\xb7\x1c\xf0\x58\x87\xe1\x08\xf0\ \x54\xb7\x1c\x87\xf0\x62\xb7\x1c\xf0\x62\xb7\x1c\xf0\x62\xf0\xb7\ \x1c\x3d\x53\x8e\x0d\xc4\x77\x00\x00\x00\x01\x62\x4b\x47\x44\x00\ \x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\ \x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x01\x46\x49\x44\x41\ \x54\x38\xcb\x63\x60\xa0\x1b\x60\xd4\x45\x01\x8c\x18\x0a\xf4\xf4\ \xc1\xc0\xc0\xd0\xc8\xd8\xc4\xd4\xd4\x54\x0f\x43\x81\x19\x8a\xbc\ \xa9\x19\x86\x02\x26\x73\x14\xc0\x44\x5d\x0f\x30\xb3\x10\x50\xc0\ \x6a\xc1\xc6\x8e\x22\xc0\x01\xf7\x2d\x07\x98\x6f\x69\x65\xcd\xc9\ \x85\xe1\x65\x1b\x23\x5b\x98\x6f\x2d\xed\xec\x1d\x1c\x91\x0d\x01\ \x79\xd9\xc0\xc9\xd8\x19\xe6\x5b\x17\x57\x37\x77\x0f\x4f\x6e\x1e\ \xb8\x02\x5e\xb8\x6f\x79\xc1\x7c\x2f\x6f\x1f\x5f\x3f\xff\x80\x40\ \x3e\x7e\x1c\x8e\x0c\x0a\x0e\x09\x0d\x0b\x8f\x88\x8c\x12\x10\xc4\ \xae\x20\x3a\x3c\x26\x36\x2e\x3e\x21\x31\x29\x39\x45\x48\x18\x9b\ \x82\xd4\xf8\x84\xb4\xf4\x8c\xcc\xac\xec\x9c\xdc\x3c\x11\x51\x64\ \x6f\x8a\x41\x14\xe4\x17\x14\x16\x15\x97\x94\x96\x95\x57\x54\x56\ \x55\x8b\x43\xbd\x59\x53\x6b\x0c\xf4\xa5\x04\x58\x41\x5d\x7d\x7d\ \x7d\x43\x63\x53\x73\x4b\x6b\x5b\xbb\xa4\x14\xd4\x9b\x1d\x9d\x5d\ \x40\x5f\x42\x14\x74\x03\x15\xf4\xf4\xf6\xf5\x4f\x98\x38\x49\x5a\ \x06\xc5\x9b\xb2\x10\x2b\x26\xd7\xd7\x4f\x99\x3a\x6d\xfa\x8c\x99\ \x72\xf2\xd8\x7d\x31\xab\xbe\x7e\xf6\x9c\xb9\xf3\xe6\x2b\x28\xe2\ \x08\x87\x05\xf5\xf5\x0b\x17\x2d\x56\x52\xc6\x19\x9b\x4b\xea\xeb\ \x97\x2e\x53\x51\x45\x08\x30\xa2\x25\xde\xe5\x2b\x56\xaa\xa9\x63\ \xc4\xe6\xaa\xd5\x6b\x4c\xa0\xd1\xa9\xb1\x56\x53\x0b\xc5\x48\x90\ \x37\xd7\xad\xdf\x60\x0b\x4b\xbc\xda\x3a\x68\x76\x32\xd1\x2c\xf1\ \x92\x09\x00\x48\x89\x62\xf3\x3b\x17\xdd\x71\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xeb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\xc5\ \x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\xd1\xd1\xd1\xaa\xaa\xb6\ \x93\x97\x9e\x81\x81\x86\x70\x72\x74\x6c\x6e\x6f\x67\x69\x6d\x64\ \x64\x69\x61\x61\x65\x55\x55\x55\xff\xff\xff\xc3\xc9\xce\xa8\xab\ \xb2\x94\x97\x9c\x80\x82\x84\x6e\x70\x72\x6c\x6e\x6f\x68\x6a\x6c\ \x64\x65\x68\x61\x62\x65\x5d\x5e\x61\x5a\x5a\x5e\xee\xee\xee\xc5\ \xc5\xcf\xa5\xa9\xb0\x94\x94\x9c\x7e\x81\x83\x6f\x6f\x73\x68\x69\ \x6c\x64\x66\x68\x60\x60\x64\x5d\x5e\x61\x55\x57\x58\x66\x66\x66\ \xc2\xc7\xcc\x92\x95\x9b\x7d\x80\x84\x6b\x6b\x6f\x69\x69\x6d\x64\ \x65\x67\x50\x51\x54\x40\x40\x60\xf0\xf0\xf0\xc2\xc2\xcc\xa7\xa7\ \xb1\x94\x94\x9c\x80\x80\x80\x71\x71\x71\x69\x69\x6f\x69\x69\x6b\ \x64\x65\x68\x60\x61\x64\x4b\x4d\x4f\x46\x46\x46\x41\x41\x44\xff\ \xff\xff\xbf\xbf\xbf\x6d\x6d\x6d\x60\x63\x65\x5c\x5d\x60\x49\x49\ \x4a\x44\x45\x47\x3f\x41\x42\x5d\x5d\x60\x58\x59\x5c\x3f\x41\x42\ \x59\x59\x5b\x54\x55\x58\x3e\x40\x42\x57\x5a\x5c\x54\x55\x57\x3f\ \x40\x42\x66\x66\x66\x5c\x5d\x60\x3f\x41\x42\x5e\x5e\x5e\x58\x58\ \x5c\x53\x54\x57\x3f\x3f\x43\x4e\x4e\x4e\x50\x50\x53\x4a\x4c\x4e\ \x3f\x3f\x41\x48\x48\x4c\x43\x44\x46\x3e\x40\x40\x00\x00\x00\x22\ \x22\x21\x45\x45\x42\x66\x66\x66\x21\x22\x21\x66\x66\x62\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x5a\x5c\ \x58\x59\x5c\x54\x55\x58\x5c\x5d\x60\x50\x51\x54\x50\x51\x53\x4c\ \x4d\x4f\x48\x49\x4b\x44\x45\x47\x44\x45\x46\x47\x48\x4b\x43\x44\ \x46\x58\x59\x5b\x54\x55\x57\x4b\x4c\x4f\x47\x48\x4a\x4f\x50\x53\ \x00\x00\x00\x22\x22\x21\xff\xff\xff\xcf\x47\x6e\xe1\x00\x00\x00\ \x83\x74\x52\x4e\x53\x00\x00\x0b\x2a\x47\x65\x82\x8e\x94\x75\x3f\ \x03\x0b\x2f\x49\x5d\x70\x86\x9e\xb5\xcd\xe5\xd4\x4f\x0f\x30\x4a\ \x5d\x71\x87\xb6\xce\xe6\xfe\xa2\x05\x32\x5e\x72\x9f\xb7\xcf\xbc\ \x08\x11\x32\x34\x1f\x20\x22\x27\x64\xc0\xe7\x98\x16\xaa\x0a\x08\ \x07\x58\xf5\x89\xe8\xe5\x4a\xfb\xd5\x5c\xfe\xc4\x69\xf9\xb3\x0a\ \xaf\xa2\x31\x99\xf3\x91\x0d\x69\xd1\x81\x39\xa1\x67\x3c\xc9\xc9\ \x3c\xc9\x3c\x06\x0b\x11\x17\x1c\x21\x26\x2b\x30\x34\x38\x3e\x40\ \x41\x02\x05\x09\x0e\x12\x16\x1b\x20\x31\x36\x3b\x3f\x39\x2e\x29\ \x24\x1f\x1a\x15\x0c\x07\x03\x01\xe5\x9d\xb1\x13\x00\x00\x00\x01\ \x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\ \x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\ \x01\x04\x49\x44\x41\x54\x38\xcb\x63\x60\x18\x32\x80\x89\x99\x85\ \x95\x8d\x9d\x83\x93\x8b\x1b\xbb\x3c\x0f\x2f\x1f\xbf\x80\xa0\x90\ \xb0\x88\xa8\x98\x38\x56\x05\x12\x92\x52\xd2\x32\xb2\x42\x72\xf2\ \x0a\x8a\xcd\x4a\xca\xd8\x14\xa8\x48\xa9\xaa\xc9\xaa\x6b\x68\x2a\ \x28\xb6\xb4\x6a\x69\x63\x2a\xd0\xd1\xd5\xd3\x37\x30\x34\x32\x36\ \x31\x6d\x6b\x69\x6d\x37\x63\x30\xb7\x40\x53\x60\x69\x05\xa1\xad\ \x6d\x6c\x5b\x5a\x3b\x3a\xed\xec\x1d\x70\x7a\xc7\xd1\x09\xa8\xa0\ \xab\xdb\x19\xb7\x87\x5d\x5c\x81\x0a\x7a\xdc\x70\x2b\x70\xf7\xe8\ \xe8\xec\xed\xf3\xc4\x25\xed\xe5\xdd\x3f\xa1\x63\xe2\xa4\x3e\x1f\ \x9c\x06\xf8\xfa\xf9\x4f\x06\x2a\x08\xc0\x13\xea\x81\x41\xc1\x93\ \xfa\x42\x18\xf0\x82\xd0\xb0\x70\x06\xda\x83\x88\xc8\xa8\x68\xbc\ \x0a\x62\xa6\x4c\x8d\xc2\xab\x20\x6a\xea\x94\x48\xbc\x0a\x62\xa3\ \x22\x23\xe8\xe0\x13\x3a\x02\xc6\xb8\xf8\x84\xc4\xa4\xe4\x94\xd4\ \xb4\xf4\x8c\x88\xcc\xac\xec\xac\xcc\x88\x8c\xf4\xb4\xd4\x94\xe4\ \xa4\xc4\x84\xf8\x38\x90\x8a\x9c\xdc\xbc\xfc\x82\xc2\xa2\xe2\x94\ \xd4\x92\xd2\xb2\xf2\xac\x88\x8a\xf4\xca\xaa\xea\x9a\xda\xba\x84\ \xfa\x86\xc6\x26\x06\x00\x5a\x75\x41\xdc\x59\x8e\xbc\xee\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x22\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ \x00\x00\x9a\x49\x44\x41\x54\x28\xcf\x63\xfc\xcf\x80\x1f\x30\x31\ \xd0\x5c\x01\x0b\x03\x03\x03\x43\x18\xf3\xb7\x12\x46\x4e\x64\x61\ \xc6\x07\x9b\x16\x20\x29\x58\xf5\xd7\x9f\x8d\xb1\x46\x84\x19\x22\ \xf4\x8f\xe1\x35\xc3\x5f\x4f\xb8\x52\x88\x2f\x4c\x58\x65\x6e\xcb\ \xca\xf3\x31\x30\x30\x30\x30\x3c\xff\xf5\x6e\xe7\x06\x3f\x34\x37\ \x9c\xf9\xfd\x27\xf6\xf1\xd7\x7f\x0c\x0c\x0c\x3f\x18\xde\xfc\xfe\ \x9d\x86\xc5\x91\x5b\x0e\xff\xdf\xf4\xe2\x07\x03\xc3\xe3\xaf\xff\ \xcb\xb7\xbe\xc0\xea\x0b\xe6\xdc\xb7\xbf\x9e\xfe\xff\x75\xdf\x64\ \x3a\x8a\x37\xfe\x23\x41\xef\x24\xdf\xbf\x7e\x7a\xff\x51\xc4\x18\ \x50\xb9\xbe\xc1\xff\xd1\x44\x18\x07\x41\x5c\x00\x00\xc4\x2f\x4c\ \xd9\xbf\x2b\x57\xf5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x07\xfe\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x07\x72\x49\x44\x41\x54\x58\xc3\xb5\x97\x5b\ \x6c\x5c\x47\x19\xc7\xff\xdf\xcc\x9c\xcb\xda\xbb\x1b\x7b\xed\xf8\ \x92\xf5\x35\xf7\x3b\x34\xcd\x85\x26\x2d\x4d\x41\x22\xdc\x2f\x42\ \x8d\x50\x79\x80\x17\x2e\xea\x0b\x41\x2d\x3c\x20\xa1\x52\xa9\x20\ \x68\x11\xa9\x78\x00\x01\x7d\x40\x85\x42\x95\x48\xf4\x01\x24\x08\ \x52\x05\x28\x54\x01\x91\xba\x6d\x12\x72\x25\x09\x6e\x62\xc7\xb1\ \x77\xbd\xf6\xee\xd9\x3d\x97\x39\x33\x1f\x0f\x76\x5c\xdc\xd8\x4e\ \x4a\xc2\x27\x8d\xce\xc3\xe8\x7c\xff\xdf\xfc\xff\x33\x47\x67\x88\ \x99\x71\x27\x45\x20\x62\xfc\xef\x4d\xe8\x76\x01\xf6\x1f\x26\x59\ \xe9\x5e\xfd\x40\xde\x6b\x7d\xb8\xc7\xeb\xdf\x5d\xcc\xf4\xaf\x58\ \x91\xe9\x6f\x6b\x71\x0a\x34\x95\x94\xa6\x27\xe2\x91\xb1\xeb\xf1\ \xd5\x7f\x94\xe2\x2b\xbf\x96\x1c\xbe\xfc\x93\x7b\x8f\xeb\xbb\x02\ \xb0\xfd\xd5\x62\x93\x1f\xb9\x5f\x71\xc9\x79\x6c\x6b\xcb\xf6\xb6\ \xc1\xdc\x4a\xb4\xfb\x05\x34\x39\x3e\x7c\xe9\xc2\x40\xa3\x92\x54\ \x50\xd2\x25\x04\x51\x84\x28\x6e\xe0\x72\x70\x62\x0a\xd6\xfe\x30\ \x6d\x4e\x9f\x39\xb4\xf1\x54\xf0\xf6\x9e\x07\x2f\x3c\xda\xb3\x26\ \xf7\xee\xae\x8f\x76\x7d\xf1\xf8\x92\x00\x3b\x8e\xf6\x7d\xc6\x83\ \xfc\xc1\xae\xf6\x07\xbb\xb7\x16\x36\x22\xa6\x2a\x34\x27\x4b\x02\ \x2b\x72\x00\xe3\xe2\xc4\xe4\x10\xa6\x1b\x57\xc6\x89\xf0\xb5\x5f\ \x6c\x1f\x7a\xfe\xc6\xfc\x97\x86\x76\x7d\x6b\x5d\xcb\x9e\x27\x9a\ \xa0\x2a\x5f\x5e\xf9\x74\x61\x41\x00\x02\x89\x77\xfd\x6e\xc5\xd3\ \xc5\xb6\x9e\xc7\x1e\x2a\xbe\x0f\x96\x1a\x30\x6c\xde\x59\xb6\x20\ \x4c\xea\x69\x5c\xaf\xfe\x0b\x6c\xe2\x67\xa3\xcb\xab\x1e\xcf\xad\ \xba\xfc\xcd\xac\xd3\xf5\xc4\xa6\xf6\xfb\xf0\xfa\xd8\x6f\xf1\xa3\ \x7b\x8e\x91\x5a\xe0\x45\x5a\xf7\x62\xc7\x4b\x6b\x7b\x36\x7c\x7c\ \x53\xe7\x26\x94\xf5\xf8\x3b\x12\xfe\xef\x92\x70\xb0\x6a\xd9\x76\ \x4c\x47\xa5\x03\xa5\x95\xe7\x3e\xe4\xab\xae\x75\x6d\xcd\x2b\x51\ \x4a\x26\xe6\x20\x6f\x72\x60\xcd\xcf\xdb\x0e\xae\x5f\xb1\xe5\xc0\ \xfa\x81\xd5\x08\x4d\x63\x49\x01\x5f\x66\x60\x98\x91\xda\x18\x8c\ \xb7\xfa\x08\x10\x68\x6e\x45\x84\x66\xd9\x0c\xc9\x0a\x56\x58\xd4\ \x74\x15\x59\x95\xc3\x64\xed\x0d\x74\x6f\xfb\xdb\x7c\x07\x06\x7e\ \x56\xf8\x6c\x4f\x73\xcf\x81\x62\xb1\x88\x89\xb8\x7c\xf3\x8a\x48\ \x62\x3a\x0d\x31\xdc\x18\x45\x29\x2e\xe1\x6a\x38\x06\xc3\x06\xed\ \x6e\x01\xad\x5e\x0e\x3d\x5e\x27\x8a\x99\x0e\x64\x84\x0b\x22\xc2\ \x0d\xa6\xd8\xc4\x60\xc6\x1c\xa4\x22\x0f\x66\x76\x6e\xce\x81\xe2\ \x4f\x8b\x19\x2f\x4c\x2e\xdf\x7f\xdf\xfd\x9d\x0d\x15\x2e\xb0\xb9\ \x3c\x9c\xac\x9d\xc3\xe9\xda\xb9\x99\x55\x12\x21\x2f\xb3\x00\x03\ \x35\x13\x20\x23\x1c\x78\xa4\xd0\xa4\x32\xd8\x92\x5b\x8b\x0e\x7f\ \x39\x08\x73\x0c\xe0\x59\x79\x66\x46\xd6\xc9\x21\x89\x2f\xa1\x7a\ \xb1\xef\x2d\x07\xd2\x72\xed\xa9\x8d\x03\x9b\x3b\x4b\x34\x05\x36\ \xf3\x63\x31\x10\x38\x56\x7e\x05\x81\x09\xb0\xdc\xb4\x80\x4f\x6b\ \x2c\x8f\x5b\xc0\x61\x12\x48\xcf\xb1\x7e\xab\x97\xaf\x35\x03\x4e\ \x9f\x87\x88\x43\x5c\x08\x2e\xa0\x12\x57\x30\xd0\xd4\x0f\x29\xe5\ \x3c\x71\x03\x0b\xcf\x68\x58\x06\x36\x2d\x9f\x80\x00\x00\xda\x4f\ \xd2\x0d\xdc\x2f\x38\x3d\x3e\x02\x1d\xa2\xae\xa3\xb9\x91\xa4\x06\ \xaf\x94\xff\x8e\x84\x63\xe4\xae\x78\xc8\xff\xd5\x89\x5a\x43\xef\ \x19\xe9\xe8\x2d\x67\xbe\x3b\x9e\x3b\xf5\xe4\xc8\x32\x6b\xd4\x60\ \x53\xc5\x7d\x32\xfb\x4f\xb7\xd1\x9b\x76\x22\x4b\x2e\xc2\xb4\x8a\ \x91\x68\x18\x69\xaa\x91\xa6\x1a\x3a\xd5\x48\x8c\x46\x92\xa6\x88\ \x8d\x06\x88\x31\x9a\xab\xcd\x44\xd0\xf1\x54\xf6\x83\xfd\x2d\x7d\ \xbf\xe7\xad\xee\xdb\x33\xe7\x2b\xf1\x28\x5f\x8b\xc7\xec\x86\xb8\ \xd7\xe8\xf3\x8d\x33\xbe\xef\xee\x3b\x79\x60\x74\xc1\xa3\xb1\xeb\ \xb9\x81\x41\x61\xe8\xd8\xb2\xf5\xd9\xce\x1a\xd7\x60\xc1\x28\x38\ \x1d\xc8\xa8\x2c\x2c\x33\xcc\xac\x03\x79\x37\x0b\x8f\xca\x70\xd9\ \xce\x44\x60\x24\x7f\xc2\xef\xf2\x78\xd2\x84\x3c\x1b\x9b\x01\x60\ \x22\x4e\xf4\xb5\x78\x4c\xf7\xa9\x8e\x98\xaf\x27\x53\x99\x2e\xec\ \x3d\xf1\xf9\xd1\xe9\x45\x8f\x5d\xd6\x3e\xda\xde\x5a\xe8\xd4\x22\ \x41\x86\x15\x88\x25\x24\x01\xd6\xa6\x30\x6c\x91\xb2\x85\x81\x85\ \xb1\x09\x92\xd0\xa2\xde\x1e\x41\x01\x00\x6b\xde\x68\xb3\x14\x46\ \x36\x31\x00\x12\x00\x31\x80\xc6\x78\x32\xde\x00\x10\xb5\xc7\x4d\ \x8d\xc6\xb2\xf0\xfb\x27\x3e\x5d\x5a\x54\xfc\x81\x23\x03\x5f\x5f\ \xde\xd7\xf6\xb8\x20\x86\xb0\x12\x39\x6a\x87\x10\x2e\x52\xb6\x48\ \xd9\xc0\xb0\x01\x33\x10\x71\x03\x48\x35\xb2\x3a\x45\x6e\xbc\x3e\ \x03\xe0\x93\xe7\x05\x08\x4a\xa1\x8d\x12\x00\x11\x80\x90\x40\x8d\ \x06\x87\x61\xb3\xf2\xc2\x34\xd2\x21\xf9\x38\xb6\x98\xf8\xe7\x4e\ \x3d\xd4\xbb\xb2\xab\xf8\x3d\x27\x05\x04\x2b\x10\xc9\x99\xef\x03\ \x03\x86\x08\xb1\xb1\x48\x6d\x82\xba\x09\x90\xc0\xa0\x59\xe6\xa0\ \x43\x1e\xaf\x87\x3b\x66\x00\xb2\x8e\x87\x49\x04\x13\xb1\x89\xe3\ \x1b\x00\x96\x6d\x64\xd9\x86\x5d\x5e\x4b\x14\x8c\x46\xd5\x4b\xa7\ \xca\x15\x7c\x64\x61\x80\x26\x81\x8e\xa0\xce\xd5\x2b\xd5\x72\x0e\ \x9a\x40\x29\x59\x68\x30\x19\x00\x4c\x44\x06\x44\x44\xc8\x93\x07\ \x21\x08\x10\xe9\x15\x23\x79\xff\xa1\x87\x0f\x61\xf6\x18\xda\xc9\ \x30\x6d\x88\x9a\x88\x63\x02\x45\x44\x14\x59\x36\x11\x80\x48\x10\ \xc7\x96\x11\x60\x23\x16\xad\x1f\x6f\xfc\xd3\xab\x00\x96\xcd\x8b\ \xe4\x57\xfd\x38\xfa\xc8\x30\x6e\x55\x0a\x00\xaa\x71\x32\x9c\x27\ \x2f\x5f\xe6\xda\x8c\x03\x8c\x78\x76\x1f\x44\xd7\xe2\xe9\x78\x7d\ \xa1\x2b\x5e\xab\x64\x1e\xc0\xf4\x2d\x3b\x02\x78\xcf\x0b\x3d\xb0\ \xd3\x42\xed\x7c\xb6\x97\x2d\xb3\x3d\xfe\xd5\xab\xbc\x24\x40\x90\ \x34\xde\xec\xa5\xee\xae\xcb\x3c\xb7\x01\x6f\x3c\xe3\x40\xc7\x71\ \x7e\x99\x9f\x04\xd5\x7a\x1f\x80\x93\xb7\x03\x60\x42\x12\x83\xab\ \xdb\xe4\xa5\x4c\xc9\xb8\x5a\x89\x3d\x7f\x18\x64\x57\x4b\x76\x53\ \x85\x23\x9f\x3a\xcb\x37\x01\x90\x8b\x33\x99\x48\x79\xf0\x90\xcc\ \x8a\xcf\x81\x28\x12\x49\xe0\x85\x49\xd6\xcb\x0c\xdc\xf3\xe7\x8e\ \xf3\xaf\xed\x1d\x8f\x97\x12\xdf\xfd\xcb\xd5\xc8\xdb\x8c\xf7\xa6\ \x9a\xb4\x17\x1b\x25\xa4\x6c\x59\x5b\xc3\xd1\xc7\xd2\x05\x5d\x10\ \x00\x00\xc9\x43\xb2\x26\x2b\x00\x2a\x00\xa6\x66\x47\x55\x91\xa8\ \xba\x24\x6b\xe7\x6a\xe3\xb5\x62\x47\x4b\x5d\x59\x77\xc3\xce\xbf\ \x74\xcb\x25\x33\xad\x43\x15\x37\xb4\xe0\xaa\x9d\x12\x1e\x29\x72\ \x49\x22\xfa\x70\xba\x68\x04\xc4\xcc\x20\x10\x56\x7e\xbb\xfd\x11\ \x7f\x87\xc2\x69\x3d\xa6\x01\xa4\x12\x94\xb8\x42\x69\x4f\x48\xed\ \x90\xd4\x05\xa7\x49\x0b\x8b\x46\xbf\x5f\x98\xaa\xc6\xd1\xb8\xd5\ \x9c\x1c\xdb\x37\xcc\x00\xb0\xfb\xa5\x41\x70\x68\x29\x9f\x36\x51\ \xef\xea\x56\x3a\x1a\x5d\x10\x29\x5b\xa1\xd9\xb2\x66\x93\x6a\x6b\ \xb8\xb4\xaf\xbe\x20\xc4\xcc\x87\x08\x8c\xe6\xd4\x7b\xfd\xbd\xc1\ \x9a\xc1\xd3\xde\x58\x4a\x40\xea\x08\x99\x3a\x24\xb5\x43\x32\x75\ \x85\x4c\x13\x9b\x6a\x87\x64\x98\x69\x72\xf5\x74\x12\x66\x36\x2f\ \xef\x75\x3e\xf9\xc7\xcd\x46\x24\x64\x36\xb5\x74\xdb\x93\xf1\x55\ \x6e\x5e\xe7\xd8\xa1\x68\x98\x3d\xa1\xac\x64\x2b\x04\x1b\x90\x9d\ \xf3\x79\xc1\x9a\x9b\x6a\x20\x39\x7b\xee\xdc\xf5\xca\x4e\x7f\x20\ \x50\x24\x02\x45\x22\x70\x48\xd4\x1d\x92\x75\x87\x64\xdd\x25\x19\ \xba\x42\xc6\xc3\xd5\x72\x62\x24\xa7\x67\x1b\xa3\xa6\xa9\xd3\x33\ \x5e\x8f\x63\x2f\x7b\xe3\xec\xf5\x28\x9e\xd0\x35\x0c\x3d\x38\xc2\ \x27\xf6\x5e\x63\x57\x48\xeb\x92\xb4\xae\x90\xec\xd0\xe2\xa9\xcd\ \xfb\x23\xca\x7e\xc7\x2b\x6c\xeb\xeb\xeb\x1d\x5b\x51\x4b\x27\xf4\ \xb4\xf1\x84\x32\x1e\xa9\x99\xa7\x90\xa9\x4b\x4a\xbb\x42\x46\x0e\ \x09\xad\x48\x1a\x45\x64\x89\x88\x67\x7e\xac\x98\x8f\xec\x3e\xbf\ \xa0\xcd\xab\x5e\x6e\xa3\x6d\xad\xfd\x38\xbc\x6d\xe8\xa6\xf9\x79\ \xe6\x04\xdf\x88\x27\x8f\x8f\x0c\x8f\x6c\x4a\x3b\x1b\x79\x95\x69\ \x28\x88\x50\x91\x08\x15\x89\xc8\x21\x19\x3b\x42\x24\x2e\x49\xed\ \x0a\x65\x3c\xa1\xac\x27\x1c\xce\x08\xc7\xfa\x42\x2d\x2a\x0e\x00\ \x17\xdf\x5f\xe6\xf0\x6a\x74\x6b\x07\x6e\x54\xee\xa0\xd3\xba\xef\ \xde\xcd\xce\x88\xa8\xd8\x72\x52\xb7\xbe\x50\xd6\x13\xca\xfa\x33\ \x4e\x68\x97\x94\x75\x85\xb4\x0e\x09\x96\x24\xf0\xe2\x8e\x37\xee\ \xfe\xcd\x28\xfb\x5c\xc6\xdb\xb3\x66\xc0\x2d\xb4\x66\xec\xd9\xca\ \x18\x7b\x42\xb1\x2f\x1c\xe3\x0b\x65\x3d\x92\xd6\x13\x8a\x1d\x21\ \xf1\xc2\xf6\xd7\xee\xe8\x6e\xb7\xe4\xc5\xa4\xf5\xb0\x2f\xda\x5a\ \xb3\x32\x81\xc1\x07\x8a\xeb\xf8\xdf\x95\x49\x76\x49\xb0\x2f\x14\ \xff\x66\xd7\xa9\x3b\xbb\x54\xde\x0e\x00\x00\xd0\x61\x42\x21\x9f\ \xa1\x76\x3f\x8b\x5d\x1d\x7d\x78\x7e\xc3\xf1\xbb\x22\x7c\xdb\x00\ \xff\xef\x12\x77\xde\xe2\xce\xea\x3f\x3b\x00\xdf\x09\xe0\xe8\x45\ \x6f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xaf\xc8\x37\x05\x8a\xe9\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x8c\ \x50\x4c\x54\x45\xff\xff\xff\xfc\x85\x6a\xfa\x84\x69\xf9\x82\x67\ \xf7\x80\x65\xf5\x7e\x63\xf3\x7c\x61\xf1\x7a\x5f\xef\x77\x5d\xfa\ \x84\x69\xf9\x82\x68\xeb\x73\x59\xe9\x71\x56\xf9\x83\x68\xf8\x81\ \x66\xe4\x6c\x52\xe2\x69\x4f\xf8\x81\x67\xf6\x7f\x65\xde\x64\x4a\ \xdb\x62\x48\xf5\x7e\x63\xd7\x5d\x43\xf1\x7a\x5f\xd2\x58\x3e\xed\ \x76\x5b\xce\x53\x3a\xe9\x71\x57\xca\x4f\x35\xe5\x6d\x52\xc6\x4a\ \x31\xe1\x68\x4e\xc2\x46\x2d\xdc\x63\x49\xda\x60\x46\xc0\x44\x2b\ \xbe\x42\x29\xd5\x5c\x42\xd3\x59\x3f\xbf\x43\x29\xbd\x41\x27\xcf\ \x54\x3a\xcc\x52\x38\xbd\x41\x28\xbb\x3f\x26\xc8\x4d\x33\xc6\x4b\ \x31\xc4\x48\x2f\xc2\x46\x2c\xc0\x44\x2a\xbe\x42\x28\xbc\x40\x26\ \xba\x3e\x24\xee\x83\x6e\xf4\xa6\x92\xf8\xb4\xa0\xf3\xa6\x91\xe9\ \x7d\x68\xf1\x97\x84\xfb\xbd\xa9\xf8\xa3\x8a\xf6\x89\x6b\xf8\xa2\ \x89\xfa\xbc\xa8\xec\x92\x7f\xf0\x97\x83\xf5\x82\x63\xff\xff\xff\ \xf3\x7e\x61\xf3\x7c\x60\xf9\xb9\xa6\xea\x8d\x7b\xec\x81\x6c\xf5\ \x81\x62\xf4\x80\x62\xf1\x7a\x5f\xf0\x78\x5f\xef\x76\x5d\xf8\xb5\ \xa5\xdd\x70\x5d\xf8\xa1\x88\xee\x73\x5c\xec\x70\x5b\xf1\x93\x82\ \xec\x98\x89\xf8\xb6\xa1\xf4\x84\x67\xeb\x6e\x5a\xea\x6c\x59\xe9\ \x6f\x5f\xf1\xa8\x9b\xf7\xb3\xa0\xf2\x80\x65\xfa\xd9\xd3\xe8\x69\ \x58\xe7\x67\x57\xe7\x6c\x5d\xf1\xa5\x99\xf0\x9f\x8e\xf4\x99\x84\ \xf1\x9d\x90\xf3\xaf\xa6\xe6\x65\x56\xe5\x62\x55\xeb\x89\x7d\xe7\ \x91\x85\xe0\x73\x60\xf7\xb3\xa4\xe3\x61\x54\xe2\x5f\x53\xf2\xa9\ \x9f\xd1\x61\x50\xe6\x88\x78\xf5\xb0\xa3\xed\x92\x89\xec\x92\x88\ \xe1\x5d\x52\xdd\x7d\x6f\xe3\x84\x75\xf4\xac\xa1\xec\x8b\x7f\xe4\ \x67\x5c\xe3\x66\x5b\xea\x87\x7d\xf1\xa8\x9f\xdd\x7c\x6f\xd4\x64\ \x52\xe7\x90\x84\xee\xa0\x95\xed\x9f\x95\xe5\x8e\x83\xce\x5d\x4c\ \x6f\xfc\xdd\x9c\x00\x00\x00\x35\x74\x52\x4e\x53\x00\x23\x7d\xdb\ \xf3\xf3\xdb\x7d\x23\x53\xe6\xe6\x53\x53\xf4\xf4\x53\x22\xe5\xe5\ \x22\x7e\x7e\xdb\xdb\xf6\xf6\xf6\xf6\xdb\xdb\x7e\x7e\x22\xe5\xe5\ \x22\x53\xf4\xf4\x53\x53\xe6\xe6\x53\x23\x7d\xdb\xf3\xf3\xdb\x7d\ \x23\xdb\x37\x2b\x78\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\ \x1d\x48\x00\x00\x00\xd3\x49\x44\x41\x54\x18\xd3\x63\x60\xc0\x06\ \x18\x99\x98\x59\x58\xd9\xd8\x39\x60\x7c\x4e\x2e\x53\x33\x73\x73\ \x0b\x4b\x6e\x1e\x08\x9f\x97\xcf\xca\xda\xc6\xd6\xd6\xce\xde\x81\ \x5f\x00\xc4\x17\x14\x72\xb4\x76\x72\x72\x76\x76\x71\x75\x73\x17\ \x16\x01\x0a\x88\x7a\x58\x3b\x79\x7a\x39\x3b\x7b\xfb\xf8\xfa\xf9\ \x8b\x01\x05\xc4\x2d\x02\xbc\x5c\x5c\x9d\x9d\x7d\x03\x83\x82\x43\ \x24\x80\x02\x92\xa1\x61\xae\xde\x3e\xce\xce\x41\xe1\x11\x91\x51\ \x52\x40\x01\xe9\xe8\x18\x1f\xdf\xc0\x58\xe7\x88\xb8\xf8\x84\x44\ \x19\xa0\x80\x6c\x52\x72\x60\x50\x78\x4a\x6a\x7c\x5a\x7a\x46\xa6\ \x1c\x50\x40\x3e\x2b\x3b\x3c\x22\xce\xd9\x39\x3d\x27\x37\x2f\x5f\ \x01\x28\xa0\xa8\x54\x50\x18\x9f\x56\x54\x9c\x5b\x92\x57\xaa\xac\ \x02\x72\x88\xaa\x5a\x59\x79\x45\x65\x55\x75\x4d\xad\xba\x06\xc4\ \xa9\x9a\x5a\x75\xf5\x0d\x8d\x4d\xcd\xda\x3a\x30\xcf\xe8\xea\xe9\ \x1b\x18\x1a\x19\x9b\x60\xf5\x39\x00\x93\x95\x2e\x08\xa8\x06\x57\ \x78\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\xb6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x08\x2a\x49\x44\x41\x54\x58\xc3\xc5\x97\x7b\ \x70\x5c\x55\x1d\xc7\x3f\xe7\xdc\x7b\xf7\xbd\x9b\xcd\x26\x6d\x42\ \x1f\x69\xa0\x0d\x2d\x4e\x29\x84\xb7\xaf\x2a\x4c\x71\x46\x45\x47\ \x40\x51\xa0\x22\x30\x14\x14\x10\x4c\x15\x81\x0e\xa8\x03\x28\x96\ \xaa\x23\x74\xc4\x82\xd6\xfa\x87\xc3\x30\x80\x0e\xe3\x20\x22\xe2\ \x80\xd2\x4e\x0d\x32\xb4\x5a\x28\x2d\xb4\xa5\xaf\x90\x26\x24\x9b\ \xdd\xec\xeb\xbe\xce\x39\xfe\xb1\xbb\x21\x09\xa9\xd4\x7f\xf4\xcc\ \xfc\xe6\xee\xd9\x7b\xcf\xf9\x7d\x7f\x8f\xef\xef\x77\x8e\x30\xc6\ \xf0\xff\x1c\x72\xda\x5c\xfc\xaf\x01\xd8\xd3\xe6\x66\x75\x5f\xdf\ \x9f\x8d\x36\x2b\x9a\x7f\x9c\xf5\xe1\xe5\x9c\xd0\xb3\x04\xc7\x92\ \x30\xcd\x59\x42\xd4\x31\x4b\x29\x10\x48\x90\x02\xa1\x35\xc2\xb6\ \x10\x08\x84\x00\x29\xea\x66\x85\xa1\xe2\xb5\x57\xff\xc5\xdf\x37\ \xff\x6d\x62\x7d\x2e\x97\x7b\x6e\x3a\x00\x6a\xd5\xda\x8a\x1d\xaf\ \xee\xa0\xa3\xa3\x93\xd9\xb3\x66\xd1\x36\x7b\x36\xf3\xe7\x2f\x20\ \x1a\x71\x66\xb4\xa0\x81\x01\x01\x94\x1e\x7f\x94\xfc\x2f\x37\x10\ \x59\xd4\xc3\xac\xaf\xdd\x48\xfc\xd4\xde\x06\x08\x41\xd5\xf3\x79\ \x67\x78\x08\xd7\x75\x27\xd6\x8e\x8e\x8e\xae\x78\x0f\x00\xad\x35\ \xc9\x64\x12\xc7\xb6\xd1\x5a\x23\x31\x48\x29\x38\x38\x5c\x98\x59\ \x79\x63\x14\x0f\x3e\xc7\x82\xb1\x3f\x60\xb5\xb5\xe1\x1c\xd8\xcf\ \xae\xf3\xcf\x25\xfd\xad\x35\x58\x57\xac\x02\x01\xf3\xda\xd3\x08\ \x0c\x5a\xeb\x29\xba\x66\x04\x90\x6d\xc9\x12\x8d\x46\x27\x3e\xb6\ \x2c\x41\xcf\xdc\xd6\x7a\x8c\xa6\x2b\x17\x82\xc2\x91\xed\xcc\xd7\ \xb7\x90\x3c\x27\xc2\x9b\xfd\x0b\x39\x7e\xe7\x61\x1c\xcb\x62\xec\ \x9e\xef\xf0\x81\xde\xa5\xe4\x2e\xb8\x80\x9a\xeb\x4f\xec\x3f\x59\ \xd7\xf4\x24\xc4\x18\x43\x3a\x9d\xc6\x71\x1c\x8c\x31\x08\x21\xb0\ \xa4\x20\x62\x5b\x44\x6c\x8b\x68\x43\x9a\xf3\xb0\x3c\x40\x6c\xcf\ \x17\xc9\xa4\x12\x6c\x7c\x3a\xc1\xf5\xdb\x0e\xf0\xb8\x10\x84\xa5\ \x12\x15\xdb\xe6\x8d\x6f\xdc\x8c\x25\x04\xda\x80\x46\x63\x8c\x99\ \x22\x72\x26\x0f\x4c\x16\x81\xc1\x92\x60\xdb\xa2\x2e\x56\x43\x6c\ \x81\x0e\xc7\x09\x76\x7c\x8e\x5c\x36\xca\x5f\x5e\xb1\xb9\xff\xf1\ \x80\x42\xa1\xc0\x9a\xbd\x7b\x19\xf8\xec\x02\x8e\x08\x18\xa8\x54\ \x08\x42\x45\xa8\x14\x46\x9b\x29\x7b\x2b\xad\x66\x0e\xc1\x94\xb9\ \xd1\x68\x6d\x78\x7d\xff\xc8\x54\x4f\xe9\x80\xd4\xbe\x4b\xe9\x6a\ \x0d\x78\xf9\xf5\x80\xd5\xeb\x05\xe5\x72\x99\x42\xa1\xc0\x5d\x37\ \x1c\xcf\xc9\x67\x1f\xc2\xfd\x68\x37\xe3\xcb\x36\xb1\xeb\xe0\x28\ \x9d\xb9\x24\x4a\x4f\x0b\x81\xd2\xc7\x00\x40\x43\xa0\x34\xf3\x3b\ \x32\x0d\xda\xd5\xc7\xc0\x96\x55\xcc\xcd\xf9\x1c\x18\x08\xb8\x6e\ \x9d\xa0\x52\xf5\x28\x14\x0a\x5c\x7d\x61\x27\x17\x9d\x7d\x88\x74\ \xb6\x15\xb3\xec\x7e\xba\xda\x16\x91\x4e\xa7\xf0\x7c\x85\x52\xea\ \xfd\x93\x70\x7a\x65\x54\xa1\x26\x0c\x35\xa1\xf5\xee\xc2\xbd\x5b\ \xef\x65\x59\xdb\x7e\xc6\xc6\x03\x2e\xbb\x2b\xa4\x54\x15\x14\x0a\ \x05\x3e\x76\x5a\x92\x1b\x3f\x33\x42\x4b\x4b\x82\xfc\xac\x7b\x21\ \xba\x18\x29\x2d\x42\x65\x08\x95\x46\x35\xe2\x3e\x59\xd7\xfb\x7a\ \x20\xd4\x8a\x40\x6b\x64\xa0\x00\x38\xf4\xea\x23\x2c\xcd\x6d\xc1\ \x0b\x63\x5c\x75\xcf\x3b\x8c\x8e\x5b\x14\x0a\x79\xba\x3b\x0d\xf7\ \xae\xf2\xc8\x65\x24\x43\xa9\x6f\xe2\xda\x67\x92\x96\x36\x48\x1b\ \x3f\xa8\xe7\x80\xd2\xc7\x48\xc3\xa9\x39\x60\x08\x42\xc5\x91\x91\ \x32\xb2\xba\x8b\x93\x12\xbf\xc7\x38\xed\xdc\x7c\xdf\x6e\xde\x3c\ \xa4\x28\x95\x4a\x44\xad\x0a\x1b\x6e\x89\xd3\x96\xf1\x38\xc8\x25\ \xbc\x55\xfa\x08\x29\xe1\xe3\x09\x9f\x92\x5f\x01\xa0\x35\x13\x45\ \x85\xc7\x12\x82\x69\x00\x94\xd6\x84\x4a\x13\x09\xf6\xb3\x50\x3c\ \x4c\x24\xd9\xcd\x0f\x36\x6c\x63\xcb\xf6\x2a\xae\xeb\xe2\xbb\xe3\ \x3c\x7a\x4f\x86\x79\x6d\xe3\x14\x9c\xf3\x38\xcc\x4a\x72\x99\x34\ \xe9\x74\x86\x96\xd6\x6c\x63\x53\x08\x55\x3d\xf3\xcd\x94\x24\x54\ \x33\xd0\xd0\x98\x29\xa2\x42\x43\xa5\x34\xc8\x02\xb5\x91\x44\x6e\ \x09\xbf\x7d\xf6\x20\x2f\xef\x69\x45\x6b\xcd\xf8\x78\x81\x07\xbf\ \x9d\x61\xc9\x9c\x71\xaa\x91\x65\x6c\xab\x5e\x83\x65\x59\x48\xcb\ \x26\x96\x4c\xa0\x94\x26\x0c\x15\x81\x52\x84\x61\x3d\x07\xa6\xef\ \xff\xbe\x21\xe8\xdf\xf2\x2c\x67\xe7\x46\xc8\x9e\x70\x06\xfd\xfd\ \xff\xe0\xfb\x0f\xef\xc5\xf7\x1b\x7c\x5f\x69\xf1\xc1\xc5\x63\x54\ \x74\x07\x3f\x7b\xa6\x17\x63\x6f\x25\x1e\x4f\x90\x4e\x67\x88\x44\ \x63\x34\xeb\xa6\x31\x10\x4f\x24\x38\xb0\x67\xd7\x7f\x17\x02\x81\ \xe1\xf3\xa7\xef\xa0\xeb\xc4\x95\xec\xde\xb9\x8d\xc7\xfe\x9a\xc5\ \xf7\x03\x4a\xa5\x12\x5f\x58\x5e\xe5\x4b\xe7\x69\x14\x49\xd6\x6c\ \xec\x60\xac\xf2\x3a\x8e\x13\x21\x16\x8b\x11\x8b\x46\x27\x2a\xdd\ \xd1\xd8\xd5\xd4\xf5\x1f\x3d\x70\xe9\xc7\x47\x38\xeb\xdc\x9b\x18\ \x2d\xba\x7c\xf5\x7b\x5b\x18\x18\x2c\xe2\xba\x2e\xe7\x9c\x58\xe4\ \xb6\x95\x9a\x68\x34\x46\xdf\x43\x73\x39\x92\xb7\x70\x9c\xba\x02\ \x29\x04\x41\x10\x70\x2c\x63\xe6\x4a\xd8\x40\x7a\xe6\xa2\x21\x2e\ \xfe\xf2\xed\x94\x8a\x83\x5c\x7e\xdd\x43\x0c\x0c\x56\x51\x4a\xd1\ \xdd\x3e\xc6\xba\x1b\x0c\x99\x54\x94\x35\x9b\x8e\x63\xcf\x60\x0c\ \xc7\x11\x48\x29\x89\xc6\xa2\x98\xa3\x58\x3b\xd3\xd0\xda\xcc\x1c\ \x82\x79\xb9\x61\x6e\xbd\xe5\x06\x82\x20\xe0\x9a\xbe\x0d\xec\x3b\ \x5c\x03\x20\xed\xe4\x79\xb0\x2f\x64\x76\xce\xe1\xc7\x4f\xb4\xf3\ \xd2\xae\x38\x8e\x03\x12\x41\x22\x1e\x47\x18\x30\x46\x1f\x93\xf2\ \xa3\x86\x20\x1b\x1f\xe5\xee\x2b\x07\x11\xb1\x6e\x56\xdf\xbc\x9a\ \x7f\xee\xae\x2b\x97\xba\xc8\xc6\xdb\x0d\x5d\x73\x1c\xfa\x0f\x9c\ \x81\xe8\x5c\xce\x65\x2b\xd3\xa4\xd3\x69\x7a\x7a\x7a\xc8\xe5\x72\ \xef\xb1\x3c\x9f\xcf\xb3\xe6\xb6\xdb\x90\x52\xa2\xb5\x41\x69\x4d\ \xc7\xac\x59\x47\x4f\xc2\x5f\xdd\x19\x5b\x7c\xdf\x4d\xcb\x69\x3d\ \xf5\x77\xdc\x75\xc7\xd7\x79\xae\xbf\x54\x8f\x55\x58\xe5\xc1\xbe\ \x80\x9e\x2e\xcd\xce\xc1\x85\x3c\xf3\x5a\x2f\xa9\x54\xbd\xaa\x65\ \xb3\x59\x22\x91\x08\x95\x4a\x05\x21\x04\xa2\xd1\x30\x8c\x31\x24\ \x93\x49\x62\xb1\x18\x96\x65\x61\x0c\x78\x9e\x47\x18\x86\xef\x7a\ \x80\x49\x67\xc2\xa7\xd6\x5f\x11\x5d\x71\x46\xea\x8f\xed\xdd\xe7\ \xf3\xd3\xbb\x2f\x65\xf3\xce\x6e\x20\x8f\xd1\x8a\x3b\x2e\x1b\xe3\ \xac\x93\x2c\x0e\x8f\x75\x72\xdd\x5a\x17\x65\xfe\x84\x63\x3b\x48\ \x29\x78\x60\xfd\x7a\xa4\x94\x08\x21\x30\xa6\x0e\xca\x18\xf3\x6e\ \xe3\x11\x02\x21\x24\x18\x8d\x94\x02\xa5\xd4\x14\x2f\x4d\x00\xc8\ \x76\x2e\xbc\xbc\xdc\xda\xd7\xfd\x9b\x8d\x3f\xe1\x17\x4f\xb5\xa0\ \xd4\x41\x00\xae\xfe\xc4\x10\x17\x7d\x4c\x52\x70\x5b\x78\xe8\xf9\ \x0f\x31\x5e\x7a\x01\xdb\xb2\x31\x11\x8d\x52\x6a\x82\x6e\x61\x18\ \xd6\x7b\xbc\x52\x13\x62\x8c\xa1\x91\x95\xcd\xc7\xd1\x01\x24\xb2\ \x9d\xab\x32\x73\x4e\x15\xb9\xc5\x36\x98\x4d\x00\x7c\xb2\x77\x98\ \xeb\x2f\x14\xb8\x41\x84\xb5\x4f\xf6\x62\x22\x09\x30\xf5\xd3\x70\ \x22\x1e\xa7\xe6\xba\x68\xad\xf1\x3c\x0f\xad\x35\x41\x10\x4c\x58\ \xde\xf4\x02\x8d\xa7\x31\x06\xa3\x14\x4a\x08\xe2\xf1\x38\xc9\x54\ \x8a\xb1\x7c\xbe\x5e\x8a\x9f\x5a\x7f\x85\x95\xc8\xb4\x9f\x5e\x2d\ \xec\xa1\xab\x23\xe0\xd6\x6b\x4f\x66\x69\x57\x89\xef\x5e\xad\xb0\ \x6c\x87\xab\x7e\x18\x65\xac\x9a\xc2\x71\xea\x27\xe3\x44\x3c\x81\ \x31\x86\x20\x0c\xa8\xd5\x6a\x78\x9e\x87\xef\xfb\x84\x61\x48\x10\ \x04\x04\x41\x80\xeb\xba\xd4\x6a\x35\xfc\x06\xa8\x30\x0c\x09\xb5\ \xae\x9f\x8c\x04\xd4\x5c\x97\xb0\xd9\x0b\x12\xd9\x8e\x4f\x21\xab\ \x4e\xa5\xb8\x8f\x4a\x71\x1f\x73\x5b\x47\xb8\xea\xc2\x4e\x86\x0a\ \x51\x56\xad\x15\xec\x3e\x14\xa5\xab\xab\x8b\xa5\x4b\x97\x92\x4a\ \x26\x30\x46\x13\x04\x3e\xc6\x18\x3c\xcf\xc3\x75\x5d\xca\xe5\x32\ \x95\x4a\x85\x6a\xb5\x4a\xb9\x5c\xa6\x5c\x2e\x53\xab\xd5\x08\x7c\ \x0f\xdf\xf7\x08\x82\x3a\x40\x15\x86\xd8\xd2\xa2\x54\x2c\x92\x4a\ \xa5\xea\x21\x78\xf9\xcd\xf1\xb5\xa7\xc5\x77\x91\xb0\x86\xf1\xca\ \x6f\x53\xa9\x6a\x76\xbe\xd5\xc6\x03\x8f\x0a\x46\x8b\x8a\x79\x73\ \xd2\x9c\xb2\xec\x14\x32\x2d\x19\x6a\x9e\x4f\xb5\x52\x41\x35\x18\ \x50\xad\x56\x27\x2c\x6c\xba\xbf\xf9\xf4\x7d\x9f\x20\x08\x51\x4a\ \x4f\x24\xa8\x6c\xd0\xb3\xbd\xbd\x9d\xe1\xe1\xe1\x3a\x80\x17\xfa\ \xdf\x58\xf2\xc4\xd3\x5b\xb9\xf6\xe2\xb9\xa6\x2d\x9d\x7c\xe5\xe7\ \x8f\xe5\x4f\x18\x29\x14\x5a\x27\xf3\xb5\xe9\xee\x75\x3f\x5a\x57\ \xa7\x66\x23\xd1\xca\xe5\xf2\x8c\x49\xd8\xfc\x1d\xf8\x7e\x83\x86\ \x75\x00\x96\x94\x28\xa5\x18\x18\x18\x40\x4a\x89\xbd\xfa\x9a\x4f\ \x5f\xf9\xf6\xe0\x90\x58\x3c\x3f\xb6\xf3\xf9\xcd\x47\x2e\x79\xe4\ \xe9\xed\xf9\x96\x4c\xe6\x2b\xf3\xe6\xcc\xb9\xd3\x92\x56\x02\xc0\ \x0f\x7c\xca\xe5\x32\x76\xe3\xb2\x32\xd9\xe2\x66\xcc\x9b\x3d\xa4\ \x59\x8c\xa4\xac\x77\xfa\xb0\xc9\x86\xc6\xbb\xc9\x2c\xd0\x5a\xfb\ \x76\xb5\x5c\x7e\xab\x77\x61\xba\xe3\xd7\x4f\xbe\x54\x00\x62\x40\ \x4b\x71\x7c\x7c\xbb\xeb\x79\x9b\xa2\x4e\xa4\x13\x81\x59\xb8\x68\ \x91\xdc\xfc\xe2\x8b\x0b\x22\xf5\xe1\x58\xb6\xed\x38\xb6\x13\xb1\ \x2c\xe9\x08\x21\x2c\x21\xa5\x10\x60\x10\x22\xc4\x18\x5f\x6b\xe3\ \x87\x61\x10\x14\x8a\xc5\xaa\x1d\x71\xf6\x0c\xbe\x3d\xe8\x19\x4c\ \xf3\x48\x6b\x00\x84\x10\xca\x18\xb3\x55\x00\x16\x70\x1c\x90\x04\ \x9c\x06\x35\x63\x40\xbc\xf1\x4e\x25\x12\x09\x15\x8f\xc7\x3d\x29\ \xa5\x12\x42\x68\x21\x84\x8a\x44\x22\x5a\x29\xa5\xa5\x94\xca\xb2\ \x2c\x15\x04\x81\x8e\xc5\x62\x26\x91\x48\x68\xdb\xb6\x75\x10\x04\ \x7a\x68\x68\x28\x2c\x97\xcb\x56\xe3\x3e\x38\xfd\xe6\x6d\x00\xef\ \xdf\xb8\xc2\xff\x85\xc1\xaa\xe7\xad\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x04\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\ \x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x02\x3d\ \x50\x4c\x54\x45\xff\xff\xff\x60\x82\xc2\x80\xa5\xe8\x8e\xb2\xef\ \x8e\xb2\xef\x91\xb5\xf0\x98\xbc\xf3\x98\xbb\xf3\x90\xb4\xf0\x8e\ \xb2\xef\x8e\xb2\xef\x90\xb4\xf0\x90\xb4\xf0\x8e\xb2\xef\x8e\xb2\ \xef\x95\xb8\xf1\x92\xb6\xf1\x8e\xb2\xef\x8a\xae\xeb\x8d\xb1\xed\ \x8c\xb0\xec\x89\xad\xea\x89\xad\xea\x86\xa9\xe8\x86\xaa\xe7\x84\ \xa8\xe5\x85\xa7\xe5\x81\xa5\xe2\x82\xa5\xe1\x7f\xa3\xe1\x7b\x9e\ \xdd\x76\x99\xd8\x78\x9b\xda\x77\x9a\xd9\x79\x9c\xda\x7a\x9d\xdb\ \x6f\x91\xd1\x70\x93\xd2\x7c\x9f\xdd\x77\x9a\xd8\x6c\x8f\xce\x6c\ \x8e\xce\x78\x9b\xda\x76\x99\xd8\x6b\x8d\xcc\x6d\x90\xcf\x77\x9a\ \xd8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x18\x22\x65\x84\xbd\ \x69\x8b\xca\x68\x89\xc6\x5b\x76\xa7\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\xbf\xf4\xa6\xc9\ \xf9\xaf\xd1\xfc\xb9\xd7\xfc\xba\xd8\xfb\xa4\xc6\xf8\xad\xcf\xfb\ \xa3\xc7\xf7\x9a\xc0\xf3\x90\xb5\xec\x8d\xb3\xea\x99\xbf\xf2\xab\ \xcd\xfb\xa9\xcb\xf9\x9b\xc0\xf3\x97\xbd\xf2\x8f\xb4\xeb\xd3\xe3\ \xfa\xff\xff\xff\xd1\xe2\xf9\x8e\xb4\xeb\x96\xbb\xf1\x99\xbf\xf3\ \xa6\xc8\xf7\x9b\xbe\xf2\x9e\xc3\xf5\x95\xba\xf1\x94\xba\xf1\x8f\ \xb4\xec\xbd\xd4\xf6\xf7\xfa\xfe\xba\xd2\xf5\x8d\xb3\xec\x92\xb8\ \xf0\x92\xb7\xef\x9d\xc2\xf5\x95\xb9\xf0\xa0\xc3\xf5\x91\xb7\xef\ \x91\xb6\xef\x82\xa5\xe0\x81\xa3\xdc\x85\xa9\xe3\x8f\xb4\xee\x8e\ \xb4\xee\x8e\xb3\xee\x9d\xbf\xf3\x8a\xad\xe7\x9a\xbe\xf2\x8d\xb3\ \xee\x8d\xb2\xed\xc6\xd9\xf6\xbd\xd2\xf5\x8b\xb0\xed\x8b\xb0\xec\ \x8a\xb0\xec\x8a\xaf\xec\x98\xbb\xf1\x86\xaa\xe5\x8f\xb3\xec\x89\ \xaf\xec\x89\xae\xec\xc4\xd6\xf4\xfc\xfc\xfc\xba\xcf\xf2\x88\xad\ \xeb\x87\xac\xeb\x86\xac\xeb\x8c\xb0\xec\x7f\xa3\xe0\x89\xad\xe9\ \x86\xab\xeb\x86\xab\xea\xc0\xd3\xf2\xf9\xf9\xf9\xb7\xcc\xf1\x84\ \xaa\xea\x84\xa9\xea\x83\xa9\xe9\x88\xac\xe9\x86\xaa\xe8\x81\xa6\ \xe7\x83\xa8\xe9\xbd\xd0\xf0\xf6\xf6\xf6\xb4\xc9\xef\x82\xa7\xe9\ \x81\xa7\xe9\x81\xa6\xe9\x7f\xa4\xe5\x84\xa7\xe5\x7d\xa2\xe1\x7c\ \xa1\xe2\x80\xa5\xe7\x81\xa6\xe8\x80\xa6\xe8\xbb\xcd\xee\xf3\xf3\ \xf3\xb2\xc7\xed\x80\xa5\xe8\x7f\xa4\xe7\x7b\xa0\xe2\x79\x9b\xda\ \x7f\xa3\xe4\x78\x9d\xe0\x7d\xa1\xe4\xad\xd0\xf2\xb5\xd8\xf4\xac\ \xcf\xf2\x7c\xa0\xe3\x78\x9c\xdf\x7b\xa0\xe0\x7a\x9f\xe1\x79\x9e\ \xe1\x77\x9b\xde\x79\x9d\xe0\x7a\x9f\xe2\x76\x9b\xde\x7a\x9e\xe1\ \x76\x9a\xdc\x70\x93\xd4\x79\x9e\xe0\x7c\xa1\xe3\x7c\xa1\xe4\x7b\ \xa0\xe3\x78\x9c\xde\x6c\x8e\xcf\x62\x84\xc4\x64\x86\xc6\x63\x85\ \xc5\x9f\x45\x3a\xce\x00\x00\x00\x3d\x74\x52\x4e\x53\x00\x00\x00\ \x03\x69\xbe\xf8\xf1\xb4\x4e\x27\xcc\xb1\x15\x39\xf9\xed\x1e\x0d\ \xef\xd1\x85\x57\xdb\xbf\x13\xef\x2b\xfb\x16\xf1\xf0\xd3\xaa\x87\ \x1e\xf9\xec\x05\x6a\xfe\xfa\x3d\x4e\xf3\xe5\x30\x02\x20\x2c\x4c\ \xc3\xf2\xf0\xb9\x41\x39\x29\x24\x1c\x15\x5b\x94\x69\x27\x00\x00\ \x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\ \x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\x7e\xfc\ \x00\x00\x01\x0e\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\x66\x16\ \x56\x36\x5b\x76\x0e\x4e\x06\x28\xe0\xe2\xb6\xb3\x77\x70\x74\xb0\ \x77\xe2\xe1\x05\xf3\xf9\xf8\x9d\x5d\x5c\xdd\xdc\xdd\x3d\x5c\x3c\ \x05\x04\x19\x18\x18\x85\x84\xbd\xbc\x7d\x7c\xfd\xfc\x03\x02\x83\ \x82\x43\x44\x80\x02\xa2\xa1\x61\xe1\x11\x91\x51\xd1\x31\xb1\x71\ \xf1\x09\x89\x62\x0c\x8c\xe2\x49\xf1\xc9\x29\x29\xa9\x69\xe9\x19\ \x99\x59\x59\xd9\x12\x0c\x92\x39\xb9\x59\x59\x79\xf9\x05\xfe\x85\ \x45\xc5\x25\xa5\x65\x52\x0c\xd2\xe5\x15\x25\xa5\x95\x55\xd5\x35\ \xb5\x75\xf5\xf5\x0d\x8d\x32\x0c\xb2\x4d\xcd\xf5\x0d\x2d\xad\x6d\ \xed\x1d\x9d\x5d\x5d\xdd\x3d\x72\x0c\x8c\xf2\xbd\x7d\xdd\xfd\xfd\ \x13\x26\x4e\x9a\x3c\x65\xea\xb4\xe9\x0a\x0c\x8c\x8a\x33\x66\xce\ \x9a\x3d\x67\xee\xbc\xf9\x0b\x16\x2c\x5c\xb4\x58\x89\x81\x51\x59\ \x65\xc9\xd2\x65\x0b\x96\xaf\x58\xb9\x60\xd5\xea\x35\xaa\x6a\x0c\ \x8c\x4c\xea\x1a\x6b\xd7\xad\xdf\xb0\x71\xc3\xa6\xcd\x5b\x34\xb5\ \x98\x80\x02\x4c\xda\x3a\x5b\xb7\x6d\xdf\xb1\x73\xd7\x6e\x5d\x3d\ \x26\x26\x06\x7d\x26\x03\x43\x23\x63\x93\x3d\x7b\xf7\x99\x9a\x99\ \x5b\x18\x1a\x30\x30\x30\x31\x31\x19\x5a\x5a\x59\x83\xb0\x0d\x90\ \x0d\x00\x42\xb1\x52\x67\xa1\xd4\x59\x8d\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x8f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x04\x00\x00\x00\xd9\x73\xb2\x7f\ \x00\x00\x00\x02\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x03\x33\x49\x44\x41\x54\x48\xc7\x9d\x94\x6b\ \x48\x93\x51\x18\xc7\x9f\xd7\x79\x49\x67\xd3\x9c\x43\x33\x88\xb6\ \x2e\x9a\x30\x67\x68\x68\x0a\x59\x5a\x56\x7e\x88\x4c\x4b\xa8\x88\ \x08\x8a\xea\x43\x52\x48\x60\x61\x7d\xe8\x22\x4a\x7e\xb0\x48\x23\ \xa2\x88\x28\x2d\x43\x82\xec\x4a\xb7\xd9\x94\xec\x22\x5a\x5a\x51\ \xb3\x5c\xcd\xeb\xd8\x98\xee\xbe\xbd\xaf\xff\x3e\x48\xb5\xcb\xbb\ \xa9\x9d\xf3\xe9\xfc\xcf\xff\xf9\xbd\xe7\x39\xcf\xf3\x1e\x02\xb9\ \x4f\x2e\x63\x8b\xc0\x53\xf1\x9c\xc4\xb8\x56\x78\x29\x9e\xcb\x6b\ \x57\x1e\x34\x06\x02\xdc\x3a\xdd\xf2\x34\x20\x60\x51\xe1\x88\xfe\ \xe8\x6a\x7f\xe1\x3b\xa4\xda\xe1\xfc\xb2\x80\x00\x12\x3f\x7a\xd3\ \xfd\x81\x42\x79\x8f\x4f\xaa\xe7\xdd\x6a\x4a\x0c\x08\x00\x6d\x3b\ \xe9\xe0\x1a\xaa\xf8\x00\x97\xf6\x98\x6d\x15\xd7\x89\x99\x02\x40\ \xf2\xaf\xda\x51\x5d\x81\xcc\x5b\x4f\x8b\x52\xf7\xe9\xcc\x73\xd6\ \xf9\xf8\x7d\x84\xe0\xea\x66\x3b\xda\x5b\xbd\xbf\xf4\xb0\xc1\x81\ \x26\x25\x45\x4f\x09\x00\xc9\x8a\xf4\x76\xab\xa3\x6e\x9f\xbb\x56\ \xb9\xc6\x68\xb4\x4c\x6c\x28\xe7\xb9\x19\x1e\x49\xd2\xf2\xda\x06\ \x8d\x26\x46\xf4\x57\x09\xe9\xea\xb2\xa3\xb3\x8f\x96\x4e\x0b\x00\ \xda\x7a\x7a\x1c\x4e\x3c\xb9\xf3\x67\xdd\x54\xed\x60\x4d\x38\x7e\ \x93\x82\xa6\x09\xa0\xa4\xb7\x6a\x0b\x4c\xa6\xe3\x79\x20\xd0\xfe\ \xc4\xe1\x61\x1b\x7e\x18\x62\x72\x79\xbd\xfc\x15\xdf\x75\x6e\x0c\ \x0e\xf4\xf6\x52\x28\x31\xaa\x17\x4e\x8c\xa3\xb2\x99\xc2\xa6\x0d\ \x00\x51\xea\x1b\xb5\x19\x2e\xae\xa9\xe6\xf2\x01\xab\xdd\x82\x3e\ \x43\x74\x81\x1f\xa7\x1f\x39\x68\xe7\x05\x23\xec\xd0\xeb\x9f\x68\ \x1d\x18\xc3\x99\x66\x12\xce\x08\x00\xa2\xcc\x0e\xb5\x09\x2e\xdc\ \xc3\x37\xa8\x0d\xa2\x4d\x7e\x7d\x7e\x37\x42\xb6\x5f\x34\xc0\x0a\ \x33\xea\x71\xaa\xd9\xb7\x81\xa6\x04\x80\x28\xa3\xd3\xdc\x81\x4f\ \x68\xe7\x44\x45\x01\x5c\xfe\x36\x84\x29\x65\xcf\x5e\x4e\x28\xd1\ \x0f\x0e\x97\x94\x09\x25\x33\x04\x50\x68\x86\xf2\x19\x9c\x68\x81\ \x11\x76\xf4\xb2\x79\x03\xfe\x92\x08\x22\xde\x91\xbc\x3c\x39\x2b\ \x92\xfa\x4d\x3d\x55\x57\x4b\xd5\xbf\x44\x02\x79\x82\xa2\x8c\xe1\ \xb7\xf2\x73\x73\xbf\xef\xc5\x15\xc8\xcb\x41\xa0\xa4\xe4\x7a\xae\ \x08\x85\xe6\xc5\xa2\x69\xa7\xa0\x28\x2d\x45\x3e\xe6\x7e\xff\xb3\ \x8e\x7b\xb8\x0a\x87\x90\xf9\x98\xcf\xcb\xc0\xed\x34\x8a\x05\x82\ \x72\x81\x98\xeb\x4c\x3c\xc6\x46\xf4\xb8\xf4\x05\xa3\x4f\x27\xf5\ \x78\x61\xc8\xa0\x5c\x24\xe3\x54\xf5\xc1\x91\x10\x52\xed\xfb\xb6\ \x7f\x31\x6e\x80\xac\x54\xc9\x2b\x79\x24\x47\x2e\xb2\xd0\x17\xea\ \x6d\x1f\xcd\xfe\x67\x93\x54\x49\x8f\x2c\xa2\xf9\x04\x0a\xa3\x7e\ \xb6\xff\x60\x6b\xbd\x0f\x20\x2b\x4d\xac\x0c\x12\x1a\x4c\xe1\x91\ \x62\xc6\x48\x9f\xad\x96\xc5\xba\x41\xf7\xbb\x8a\xd7\xa6\xcc\x8b\ \x26\xd0\x3b\xbb\x34\x4c\xc2\x0d\x1d\x6e\x3d\x3f\xa9\xff\xad\x42\ \x70\xe3\x2c\xe1\x47\x95\x2a\x6a\x50\x6b\x25\x23\x59\x6e\x7b\x86\ \x13\xb1\x07\x07\x38\x2b\xfd\xb4\x39\xc5\x9a\x1a\x3d\x13\x5e\xe9\ \x55\x05\x62\x56\x5a\xd2\x47\x88\x40\xcb\x46\xd6\x22\x4e\xc7\xf7\ \x74\x48\xde\xaf\x42\x36\x9b\x18\x0b\x4a\x69\xdf\x88\xd4\x4c\x8f\ \x3e\x48\x2a\x12\x47\xb8\x7a\x40\xf2\xdd\x22\xc9\x20\xb8\x13\x98\ \xe0\x29\x78\xc9\x0f\x7b\x84\x20\xb8\x8e\x48\x70\x7f\x16\xb1\xfb\ \x3c\x52\x70\xca\xc2\x29\x41\x91\x7b\x37\xe9\x62\x28\x33\xa4\xd2\ \xd5\xf1\x75\x8c\x4e\x6d\x3a\xaf\xe7\xd2\x8b\x73\xda\x66\xef\x8a\ \x27\xeb\x3c\x8f\x14\x12\x22\x96\xd8\x6a\x71\x0e\xc5\x10\xb7\xfa\ \xff\x71\x40\x31\xd5\xd9\xec\x59\xd4\x21\x87\x5d\xb8\xd9\xab\x91\ \x64\xeb\x65\x9a\xb9\xa3\xb1\x37\x02\x85\x83\x40\x92\xf2\x38\xad\ \x6c\x48\x5a\xc1\xdb\x48\xff\x33\x7e\x03\xe5\xf4\x89\xbc\x1c\x29\ \xc7\xbe\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\xf0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x08\x79\x49\x44\x41\x54\x68\xde\xed\x99\x7f\x6c\x54\x55\x16\xc7\ \x3f\xe7\xde\x37\x85\xd6\x62\xa1\x9d\x56\x5c\xda\x82\xb0\xea\x82\ \xb8\xed\x2a\xb4\xc8\x76\x25\x8d\x6e\x8b\x3f\xc0\x88\x4a\x0a\x1b\ \x96\x20\xfb\x23\x46\x36\x10\x95\xb6\x68\xb2\xf5\xc7\x6e\xa8\x6b\ \x40\xc3\xaa\xbb\xcb\xa2\x20\x22\xb8\xb0\x89\x9b\xec\x1f\x92\x10\ \xad\x9d\x36\xa0\x09\x6e\x63\xd6\xe0\x46\x12\x20\x15\x14\xd7\x4a\ \x11\xa4\x33\xf3\xde\x9b\x77\xf7\x8f\x79\xf3\x3a\xc3\xb4\xe5\x47\ \x49\x1a\xb3\x9c\xe4\xcc\x7d\x3f\xee\x3b\xef\xfb\x3d\xe7\xdc\x73\ \xef\xbb\x23\xc6\x18\xbe\xcb\xa2\x46\x1a\xc0\x65\x02\x23\x0d\xe0\ \x32\x81\x91\x06\x70\x99\xc0\x48\x03\xf8\xbf\x27\x60\x5d\x0a\x23\ \x37\xce\x9c\xf5\x53\x85\xd9\x0e\x84\x87\x6b\x4b\x44\x10\x11\x94\ \xdf\x8a\x92\xe0\x9a\xaf\xff\xdc\xd7\xfe\xde\xfc\x4b\x46\xa0\xa2\ \xaa\x6a\x9e\x42\x76\x01\xa3\x86\x03\x5a\xa5\x83\xcc\x06\x9d\xde\ \x67\x5e\xfa\xb3\xc3\x22\x50\x59\x55\xb5\x10\x23\xdb\x80\xd0\xd8\ \x82\x02\xee\x5f\x70\x2f\x63\xc6\x8c\x39\x7f\x4f\x03\x08\x48\xf2\ \x27\xab\x05\x41\xfc\xf3\x53\xa7\x4e\xf1\xf7\xb7\xde\xc2\x71\x9c\ \x0c\x3b\x17\x4d\xa0\x62\x46\xf5\x52\x44\x5e\x01\xf4\xb8\x71\x63\ \x59\xb2\x78\x31\x05\x05\x57\x0e\x0d\x3a\x89\x0a\x91\x14\xd0\x80\ \x41\x1a\xf8\x7e\xe0\xfd\x2d\xe4\xe7\xe7\x53\x58\x58\x48\xcf\xd7\ \x3d\xc3\x27\x50\x31\xa3\xea\x21\x44\x5e\x02\xa4\xa8\xb0\x90\x85\ \xf7\xdf\xc7\xa8\x9c\x1c\x62\xd1\x58\xd0\xa7\xaf\xaf\x8f\x13\x27\ \x4e\x30\xa1\xb4\x14\x25\x02\xd2\x0f\x66\x50\x8f\x1b\x38\x79\xb2\ \x97\x82\x82\x02\xb4\xb6\x92\xfd\x83\x48\x09\x5a\x09\x96\xd6\x19\ \x58\x2e\xb8\x0a\x55\xce\xa8\x7a\x14\x91\x97\x01\x09\x87\xc3\xdc\ \x7b\xcf\x7c\x2c\xcb\x22\x16\x8f\x07\xda\xdb\xdb\xcb\x07\xef\xef\ \xa3\xac\x74\x02\x1d\xed\xed\xc4\xed\x38\xb6\x6d\xfb\xea\x60\x3b\ \x36\x8e\x7f\x9e\x6a\xed\x78\x9c\xb6\x77\xdf\xc5\x89\xc7\x79\xe7\ \x9d\x77\x88\xc5\xa2\xd8\x8e\x93\xbc\xef\xb7\x22\x82\x3e\x8b\xc0\ \x05\x45\xa0\xb2\x6a\xd6\x6f\x8d\xc8\x53\x00\xc5\xe1\x30\x77\xd4\ \xd7\x01\x10\x8d\x46\x83\x81\x16\x8b\x45\xf9\xf7\x47\x1f\xf1\xcc\ \xd3\x4f\x53\x56\x56\x46\x71\x38\xcc\xdf\x76\xee\x62\x66\x75\x15\ \x4a\xd4\xa0\x9e\xff\xe0\x83\xf7\x79\xe0\xbe\xfb\xa8\xab\xab\xa3\ \xb3\xb3\x93\xcd\x5b\xb6\x30\xbb\xa6\x26\xe9\x71\x3f\x0a\x4a\xa9\ \xac\x08\x9c\x37\x81\xca\x99\xd5\xcf\x1a\x68\x04\x28\x29\x2e\xa6\ \x76\xce\xad\x18\x63\x88\xdb\x71\x84\x7e\xf0\xff\x39\x70\x20\x00\ \x0f\x50\x57\x57\x87\x01\xde\xdc\xf1\x26\x3f\x9a\x31\x03\xa5\xa4\ \x3f\xb7\x45\x10\x63\xd8\xbf\x7f\x3f\x0d\x0b\x17\x52\x57\x97\x74\ \x48\x4d\x4d\x0d\x00\xaf\x6e\xde\x4c\xf5\xac\x59\x68\xad\x03\x07\ \x5d\x70\x04\x44\x44\x2a\x66\x54\x6d\x30\xb0\x42\x04\x4a\x4a\x4a\ \xf8\xf1\x2d\xb3\x32\xc0\xa7\xf2\xfb\xe8\x67\x47\x79\x70\xd9\x32\ \x26\x4e\x9c\x98\x61\xa3\xbe\xae\x0e\x63\x0c\xdb\x77\xec\xa0\xa2\ \xb2\x12\xa5\x14\x22\x82\x31\x86\x8f\xba\xba\x58\xd4\xd0\x10\x80\ \x4f\x49\x4d\x4d\x0d\x1f\x7f\xfc\x31\x3d\x3d\x3d\x14\x16\x15\x02\ \x82\xd2\x0a\x6d\x5d\xc0\x18\x10\x11\x55\x51\x55\xb5\x49\x94\xac\ \xd0\x5a\x71\xf5\xf8\xf1\xcc\xbc\xf9\x66\x12\x09\xcf\xcf\x63\x07\ \xc7\x71\x70\xfc\xe3\xc2\xa2\x42\xfe\xba\x69\x13\x47\x8e\x1c\xc9\ \xb2\x35\xb7\xbe\x9e\xc5\x8b\x16\xd1\xf5\xe1\x87\xd8\xb6\x4d\xdc\ \xb6\xf9\xd7\xfe\xfd\x2c\x6a\x68\xa0\xbe\xbe\x3e\xab\x7f\x47\x47\ \x07\x7b\xf7\xed\x23\x2f\xff\x0a\x1c\xc7\xc5\x75\x1d\xb4\x64\x0f\ \x62\x19\xec\x93\xb2\xb6\xb6\xd6\xfa\x26\x1a\x7b\x5d\x44\x1a\x44\ \x84\x92\xe2\x62\x6e\x98\x36\x0d\xa5\x94\x5f\x55\x08\x52\x27\xfd\ \x38\xee\xd8\x1c\x3d\x7c\x98\xb5\x6b\xd7\x66\x45\x02\x60\xf7\xee\ \xdd\x6c\x7d\xfd\x75\x04\x58\xb2\x64\x09\x73\xe7\xce\xcd\xea\x13\ \xe9\xe8\x60\xe3\xc6\x8d\xfc\xb0\xb2\x22\x99\x3e\xfe\x58\x39\xf0\ \xc9\x27\x44\xa3\x51\xde\x78\x6d\xab\x0c\x99\x42\xd3\xa7\x4f\xcf\ \x19\x7d\x65\xc1\x4e\xad\xf5\x3d\x22\x42\x71\x71\x98\x6b\xa7\x4c\ \xc1\x75\xdd\x60\x62\x49\xa5\x4d\xc6\x6c\x09\x28\x11\xae\x2e\x2d\ \xa5\x79\xcd\x1a\x5a\x07\x20\x91\x0e\x78\x40\xf0\x91\x08\x7f\xfa\ \xcb\x9f\x99\x7e\xe3\x8d\x78\x9e\x87\xe7\x99\xe0\x3d\x4a\xd4\xb9\ \x23\x30\x7b\xf6\xec\x5c\x57\xeb\xb7\x04\xa9\x57\x22\x84\x8b\x8a\ \x28\x2d\x2d\x4d\x1b\x7c\xfe\x54\x4f\x36\x78\xd2\xce\x1d\xdb\xe6\ \xf8\x17\x5f\xf0\x87\xd6\xd6\x01\x23\x31\x90\x44\x22\x11\x5e\x7a\ \xf9\x65\xa6\xde\x30\x0d\xa5\x74\x96\x83\xba\x3f\xeb\xc6\xb6\x6d\ \x5e\xdd\xb8\x29\x88\x40\xc6\x18\xa8\xad\xad\xcd\x37\x56\xe8\x6d\ \x4b\xe9\x7a\x4b\x6b\xc2\x45\x45\x5c\x75\x55\x09\x8e\xeb\x24\x6b\ \xb1\xeb\xe0\xba\xc9\x9a\x9c\xcc\xfd\x7e\xb5\xfd\xd6\xf5\x55\x94\ \x22\x5c\x52\x4c\x63\x73\x13\xdd\xdd\xdd\xe7\x04\xdf\x1e\x89\xf0\ \xc7\x17\x5f\x64\xca\x75\xd7\xe2\x25\x3c\x12\xae\x43\x22\xe1\xe2\ \x26\x5c\x5c\x37\xa9\x4a\xa9\xac\x2a\x94\x41\xc0\x31\x6c\xd5\x5a\ \xcf\xd1\x96\xa6\x60\x6c\x01\xe3\x0a\xc7\x05\x0f\xa7\x80\x39\x8e\ \x13\x5c\x73\x5c\x37\x00\x9d\x70\x5d\x12\xae\x8b\x93\x48\x6a\xea\ \x85\x85\x45\x45\x34\x36\x36\x0e\x49\xa2\xbd\xbd\x9d\x0d\x1b\x36\ \x30\xf9\xfb\x93\xc1\x78\xb8\x9e\x8b\xeb\x25\x70\xdd\x04\x09\x37\ \x41\x22\xe1\x92\x48\xb8\xe8\x73\xcd\x03\x2a\x64\xe9\x54\x1e\xbb\ \x8e\xc3\xa9\x53\xa7\xc8\x1d\x3d\x1a\x95\xaa\xc3\x64\xae\x1c\x39\ \x7b\xe5\x88\xa4\xe5\x6b\xea\xbe\xa2\x2f\x1a\xe5\xd3\x83\x07\x29\ \x2f\x2f\x1f\x90\xc0\x99\xbe\x33\x18\x0c\x9e\x67\x30\xc6\x0d\x6c\ \x2b\x7f\xed\x91\x74\xa0\x8b\xe7\x79\x43\xcf\x03\xa3\xe0\xe7\x9e\ \xd6\x6f\x8b\xc8\x2d\xc6\x18\xfa\xfa\xfa\x88\x46\xa3\x84\x42\x21\ \x46\x85\x42\x58\xa1\x50\xb2\x2a\xa8\x6c\xc0\x03\x29\xc0\xf1\x63\ \x9f\xb3\x6a\xd5\x4a\x6e\xbf\xed\xb6\x41\x23\x70\xe7\x1d\x77\x62\ \x3c\xc3\xa6\x57\x5f\x61\xf2\x94\xc9\x18\x63\xf0\x3c\x8f\x44\x22\ \x81\xe7\x79\xc1\xb8\xd3\x96\x0e\x48\x0d\x98\x42\x7b\xf6\xec\xf9\ \xc6\x8b\xc7\xeb\x94\xd6\xef\x69\xad\xb1\x7c\xc5\x18\x6c\xd7\x21\ \x1a\x8b\xd2\x17\x4d\x92\x8a\xc5\x62\xc4\xed\x78\x30\x06\x82\x54\ \xf3\xd5\xb6\x6d\xbe\x38\x7a\x8c\xd5\x8f\x3d\xc6\xed\xb7\xdd\x7e\ \xce\x31\x70\xd7\x5d\x77\xb1\x7c\xd9\x83\x1c\xfc\xf4\x20\xb1\x58\ \x0c\x37\xe1\x82\x80\xb6\x34\x96\xd5\x8f\x45\x9f\x6b\x31\xd7\xd6\ \xd6\xf6\xed\xd8\xbc\xbc\x3b\x2d\xad\x77\x6b\x4b\x13\xa8\xff\xb0\ \xf6\xe7\x01\x01\xf0\x3d\x95\xf2\x56\x4a\x5d\xd7\xe1\xbf\xc7\x8f\ \xb3\xa6\xb9\x99\x39\x73\xe6\x64\x81\xdd\xbb\x77\x2f\x87\x0e\x1d\ \xca\xba\x7e\xf7\xdd\x77\xf3\xab\x5f\xfc\x92\xcf\x8f\x1d\x0b\xf2\ \x3d\x05\x3a\x5d\x87\x24\x00\xb0\x73\xe7\xce\x68\x5e\x4e\xce\x3d\ \xda\xd2\xff\x48\x8f\xc4\x40\xc6\xb4\xf6\x3d\xe4\xab\x52\x42\x6f\ \xcf\x09\x9e\x6a\x79\x32\x58\xd3\xa4\x4b\x67\x67\x27\x6b\x5b\xd7\ \xb2\xba\x71\xf5\xa0\x24\x96\x2f\x5b\xce\xd1\xee\xa3\x41\xd5\x09\ \xde\x93\xca\x88\x73\x11\xf0\x49\xd8\xdf\x7c\xf5\xf5\x03\x96\xa5\ \xdf\xcc\x02\x6d\x65\x82\x4e\xf7\xcc\xd7\x5f\xf5\xf0\xbb\x67\x9e\ \xa1\xba\xba\x3a\xcb\x66\x47\x47\x07\xcf\xad\x7b\x8e\xb2\x49\xe5\ \x84\xaf\x2a\xa6\xb1\xa9\x91\x43\x87\xb3\x49\xcc\x9b\x37\x8f\xa5\ \x4b\x97\xd2\x7d\xa4\x3b\x33\x12\x96\x46\x5b\x99\x90\x87\x5c\x0b\ \xb5\xb5\xb5\xb9\xd3\xaf\x9f\xfa\x33\x4b\xab\xcd\x19\xa0\x07\x89\ \xc4\x99\xd3\xdf\xb2\x6a\xe5\x4a\x6e\xba\xe9\xa6\x01\xc1\xaf\x5b\ \xbf\x8e\xf2\x89\xe5\xe4\x84\x42\xe4\xe5\xe6\x32\xfe\x7b\xe3\x69\ \x6a\x6a\xe2\xf0\xe1\xc3\x59\xfd\xe7\xcf\x9b\xcf\xad\x3f\xb9\x95\ \x58\x2c\x96\x96\xc6\xea\xfc\x52\x28\x5d\x5a\x5a\x5a\xbc\x1d\xdb\ \xb6\x2f\xb7\x94\x7e\x69\xc0\xf4\x49\xd3\x82\xb1\x05\x6c\xd9\xbc\ \x85\x2f\xbf\xfc\x32\xc3\x46\x24\x12\x61\xfd\xfa\xf5\x4c\xbc\x66\ \x22\x21\xbf\x92\x69\xad\xc9\xcd\xcd\x65\x42\xd9\x04\x9a\xd7\x34\ \x67\x91\xe8\xea\xea\xa2\xa3\x33\x42\xfe\x98\x7c\xb4\x56\x58\x5a\ \x5d\x58\x0a\xa5\x8b\x31\xc6\x6c\xdd\xbc\x65\x85\xb2\xac\xe7\x06\ \x1d\x13\x96\x26\x37\x2f\x97\x2b\xae\xbc\x82\x47\x1e\x7d\x24\x20\ \x11\x89\x44\x78\xfe\x85\xe7\x99\x34\x65\x52\x06\xf8\xd4\xf3\x79\ \x79\xb9\x94\x4f\x2a\xe3\xf1\x27\xd6\x04\x24\xba\xba\xba\x68\x6d\ \x5d\xcb\x0f\xa6\x5e\xcf\xa8\x9c\x50\x56\xc4\xd3\x45\x2e\xf4\x0f\ \x8e\x5f\x3f\xfc\xd0\x93\x02\x2d\xe9\xdb\x1f\xea\xac\xfa\x1f\x8f\ \xc7\x39\x7d\xf2\x34\x0b\x16\x2c\x60\xdb\x1b\xdb\xb8\x66\xca\x35\ \x58\x69\x1f\x25\x03\x6d\x9b\x38\xb6\x4d\xf7\x91\xcf\x68\x68\x58\ \xc4\xb6\x37\xb6\x31\x75\xda\x75\x84\x42\xa1\x01\xe7\x96\xa6\xd5\ \x8f\xcb\x45\x13\x00\x78\x78\xe5\x6f\x1a\x95\xf0\xec\x80\x7b\x37\ \x4a\xa1\x94\xc2\xb6\x6d\xfa\xce\x9c\x21\x1c\x0e\x63\x85\xac\x60\ \x35\x39\xe0\x24\xe8\x2f\x97\x63\xb1\x38\x27\x7b\x7b\x29\x2e\x09\ \x63\x59\x56\x00\xf8\x6c\x19\x36\x01\x80\x55\x8f\xac\x5a\x21\x4a\ \x36\x88\x88\x28\xa5\x18\x3d\x7a\x74\x32\x35\x94\x46\x69\x15\x10\ \x51\x2a\x09\x3a\x05\x5e\xa5\x2d\x3b\x32\xf7\x80\x00\x4c\xf0\xa5\ \x66\x8c\xc1\x78\x06\xcf\x18\x8c\xf1\x30\xc6\xe0\xba\x2e\xc6\x98\ \x0c\x02\x17\xbd\x2f\xf4\xc2\xfa\x17\x5e\x5c\xdd\xb4\x3a\x8a\xb0\ \x51\x89\x28\xcf\x4b\x90\x9b\x9b\x4b\x28\x64\xa1\x95\xee\x27\xa0\ \x95\x3f\xf9\x29\xc4\xff\x94\x94\x60\x8b\x25\xb5\x4f\x44\x1a\x68\ \xcf\x07\x9d\x7e\xec\x91\x48\x78\x18\xe3\x64\xe1\xb8\xe8\x08\xa4\ \xa4\xf9\x89\xe6\xc5\x4a\xc9\x6b\x22\x62\x65\xed\x6b\x0e\xa1\xc9\ \xef\x8b\x8b\x93\xf4\x08\x0c\x7b\x77\xba\xf5\xf7\xad\xdb\x95\xd2\ \x0b\x2d\xad\x4f\x9f\xcf\x6c\xad\xb5\x1a\x16\x78\x60\xcf\x25\x8d\ \x40\x4a\x76\xed\x5a\xa8\x0f\x1c\xb8\x21\x74\x49\x8c\x0d\x2d\x76\ \x4b\x4b\x8b\x77\xc9\x09\x8c\x94\x7c\xe7\xff\xe0\xb8\x4c\x60\xa4\ \xe5\x32\x81\x91\x96\xcb\x04\x46\x5a\xfe\x07\x7b\x86\x8e\xdb\xf5\ \xbb\x63\xd4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\x85\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x07\x4c\x49\x44\x41\x54\x78\x5e\xa5\x97\x7b\x4c\x94\xd9\ \x19\xc6\x9f\x19\xbe\xb9\x03\x02\x85\x41\xe4\x52\x56\x2d\x68\x8b\ \xab\x50\x70\x09\x15\xff\x40\x2b\x5b\xa9\xb6\x71\x63\x56\x17\xb7\ \x10\x6c\xd8\x4b\xdb\xdd\x6d\x37\x69\xd3\x06\x89\x36\xd6\x45\x63\ \x4d\xd3\x74\xab\x6b\xd7\x46\xab\xa9\x7f\xac\xa1\x6b\x8d\xed\x7a\ \x09\x6b\xad\x17\x5c\x57\x5c\x8a\xab\x28\x14\x10\x06\x81\x01\x86\ \xb9\x38\x77\x66\x4e\xdf\xf7\xcb\x37\xc9\x64\x32\x30\x26\xfd\xc1\ \x9b\x93\xc0\x7c\xcf\xfb\x9c\xf7\x7c\xe7\xcc\x7b\x54\x42\x08\xcc\ \xc7\xf0\xf0\xb0\xda\xe7\xf3\x95\x59\xad\xd6\xcd\x81\x80\x6f\x23\ \x54\xea\x45\x5a\xad\x7e\x81\xd1\x64\xd2\x25\x25\x25\xa9\x21\x3f\ \x1f\x0e\x01\x08\x1a\xf4\x06\x3b\xe9\x75\xeb\xf5\xfa\x4b\x2a\x95\ \xea\x53\x00\xdd\x05\x05\x05\x61\xcc\xc3\x9c\x06\xc6\xc6\xc6\xbe\ \x36\x35\x35\xf5\xdb\x91\x91\x91\xf5\x93\x93\x93\x86\xc2\xe2\x52\ \xa8\x24\x09\x76\xdb\x14\xfc\x5a\x23\xb4\x5a\x2d\x92\x0d\x5a\x2c\ \x30\xe8\xa1\xd7\x4a\x90\x10\x46\xc8\xef\xc5\xf8\x93\x27\x50\xab\ \x55\x10\x22\x0c\x32\xe1\x35\x9b\xcd\x97\x33\x32\x32\xde\xcd\xc9\ \xc9\xe9\x43\x1c\xd4\x88\x61\x7a\x7a\x5a\xff\xe0\xc1\x83\xa3\xed\ \xed\xed\xbd\xa7\x4e\x9d\xda\x44\x89\x0c\x15\x15\x15\x18\x1d\xb5\ \xc0\x69\x9b\x44\xe9\xf2\xc5\xf0\xa5\x64\x60\x08\x7a\xf4\x05\x34\ \xb0\x42\x07\x87\x90\x10\xd0\x48\x30\xa6\xb8\x50\x5a\x51\x8c\xaa\ \xea\xb5\x58\xb3\xa6\x9a\x27\x61\x38\x7b\xf6\xec\xa6\x73\xe7\xce\ \xf5\x3e\x7a\xf4\xe8\x28\x6b\x23\x16\xae\x40\x74\x38\x9d\xce\x9f\ \xef\xdd\xbb\x57\xd4\xd7\xd7\x8b\x23\x47\x8e\x88\xde\xde\x5e\xf1\ \xb0\xaf\x57\x74\x7e\xd6\x29\xce\x9e\x6f\x17\xa7\x4f\xff\x55\x9c\ \x39\x73\x46\x90\x39\xb1\xaf\x6d\xbf\x68\xfe\xd1\x4f\x44\x63\x53\ \x83\xf8\xe7\xc9\x22\xf1\xf8\x4a\x96\x98\x7c\xb4\x46\xcc\x38\x5d\ \xc2\xe1\x70\xca\x9f\x69\x6b\x6b\x13\x4d\x4d\x4d\xe2\xd0\xa1\x43\ \x82\xb5\x63\xf3\xa9\x11\x83\xd7\xeb\xdd\x35\x38\x38\x08\x97\xcb\ \x85\xab\x57\xaf\x82\x04\xf0\x71\xfb\xc7\x54\x7a\x3b\x0a\xf3\x96\ \xe0\x85\x17\x2a\x41\xef\x03\x68\x79\x20\x42\xb3\x10\x01\x1f\xdc\ \xf4\xd9\x99\x90\x1e\xc6\x15\x95\xd0\x65\x64\xc2\xe7\x6d\xc0\xc8\ \xe3\xdb\xc8\xcf\xcf\x87\xdb\xed\x86\xdf\xef\x07\x4d\x44\xd6\x4e\ \xb8\x04\xb4\xe6\x3a\x9a\x3d\x4c\x26\x93\x9c\x88\xcd\x4c\x4c\x58\ \x11\x0a\x85\x20\x49\x12\x92\x93\x93\xe5\xd1\x6e\xb7\xcb\x63\x30\ \x18\xa4\xb5\x96\x30\xed\xce\x42\xd8\xb3\x19\x9e\x87\xab\x60\x4a\ \xce\x87\x46\x6a\x85\xcb\x69\x45\x79\x79\x39\x8c\x46\x23\x58\xd3\ \x62\xb1\xe8\x10\x43\xd2\xee\xdd\xbb\x11\x4d\x47\x47\xc7\x3b\xf4\ \x90\x61\xe3\xc6\x8d\x98\x9d\x9d\xc5\x13\x7a\xa9\x98\xdc\xdc\x5c\ \xa8\xd5\x6a\x84\xc3\x61\x04\x02\x01\x10\x5c\x25\x5e\x67\xd9\x9c\ \x0a\xc3\xf4\x19\x0b\x42\x69\x0e\xdc\xfb\x72\x10\x3e\xdb\x18\x1c\ \x96\x9b\xf0\x61\x05\x76\xfe\xf0\x35\xa4\xa7\xa7\xa3\xab\xab\xcb\ \x51\x52\x52\x72\x00\x51\x48\x88\x81\x66\xe4\xa1\xad\x97\xc1\x0f\ \x34\x34\x34\xa0\xb9\xb9\x59\xae\x42\x5f\x5f\x1f\x7a\x7a\x7a\x38\ \x21\x97\x5f\x0e\xda\x9e\xb2\x21\x83\xc1\x00\xbb\x55\x87\xff\xde\ \x7f\x8a\xec\x1c\x33\xd2\xd3\x76\x22\x2f\xbf\x12\x95\x35\x79\x5c\ \x7e\xd9\xa4\xc3\xe1\x60\xe3\x1e\x10\xf3\x19\x60\x41\x37\x08\x9e\ \x25\x27\xe1\xa5\xa0\xbd\x8c\x65\xcb\x96\xb1\x39\x39\x21\xc1\x5b\ \x0c\x74\x0e\xf0\xc8\x26\x78\x94\x2b\x24\x84\xe0\xca\xc9\x89\x6d\ \x36\x1b\x3c\x1e\x0f\x6b\x45\x69\x27\x36\xe0\x8d\x63\x0a\x0c\x8b\ \xf2\x4b\xf5\xf4\xe9\x53\x39\x18\x36\x18\x09\x7e\x3f\x78\x39\xd8\ \x00\x8f\xf1\xb4\x13\xbd\x84\x2c\x10\x65\xe0\xff\x25\xb1\xb6\x3a\ \xce\xb9\xe0\xc1\x3c\x04\x43\x41\x7c\x3e\x7e\x0b\xf7\xac\xdd\x38\ \x76\xe3\x77\xf8\xd9\x47\x8d\x68\x3e\xb3\x1d\xef\x5e\xf8\x31\x6e\ \x58\xae\x21\x01\x89\xde\x81\xc4\x15\x38\xf0\xc5\x7b\xe8\x1a\xe8\ \x84\xe4\x16\x78\xa7\xfc\x97\x38\x79\xe7\x30\xec\x7e\x27\x06\x6c\ \xfd\x78\xaf\x73\x1f\x8e\xbe\xf8\x67\x40\x00\xba\xb0\x16\x31\xf0\ \xd2\x24\xac\x00\x33\x83\x39\xb8\x32\xf6\x2f\xdc\x99\xbc\x03\xa8\ \x80\x90\x98\xc5\xb4\x67\x12\x2f\x95\xbd\x8a\x08\x81\x50\x00\xad\ \xb7\x5b\xf1\x37\xcb\xdf\x21\xa9\x25\xc4\xd7\x4e\x6c\x60\x08\x71\ \xf0\x85\xfd\xf8\xb0\xef\x18\x18\x41\xa1\xd7\x18\x50\x6c\x2e\xc1\ \xea\xc2\x6a\x14\x65\x2d\x87\x0c\x04\xdc\x41\x0f\xb6\xe5\x6f\x45\ \x1c\x78\xa7\x0c\x25\x32\xc0\xdf\x72\x03\xf1\xde\xe0\x2f\x6c\xdd\ \xb0\xf9\x6d\x88\x50\xbb\xf8\x7b\x48\xd1\x2f\xc0\x88\x6d\x10\x4c\ \x8a\x2e\x05\x66\x63\x36\xde\x5e\xf9\x16\xfe\x31\xfe\x09\x2c\xfe\ \x51\x44\xa3\x9c\xa4\x03\x09\x0d\x68\x34\x9a\x3e\xde\xb7\x11\xc6\ \x67\xad\x98\x0a\xda\xf0\x7c\xda\x0a\x7c\x50\x75\x18\x2b\xbf\xb2\ \x12\xd9\xa6\x1c\xd4\x14\xd6\x82\xc9\x59\x90\x87\xd6\x0d\x07\xf0\ \x97\x2d\x1f\xe1\xf5\x55\x6f\xe0\x0f\xff\x79\x1f\xc7\x06\x4e\xe0\ \x83\xd1\x13\x88\x86\x35\x75\x3a\x5d\x5f\x42\x03\xd4\x4c\xf4\xf3\ \x09\x17\x41\x40\x60\xf7\x50\x1b\xd6\x5f\xa9\x43\x73\xe7\xeb\xf8\ \xfe\xe2\x2d\xd8\xb5\xfa\xd7\x48\x52\xd6\x58\x4a\xd2\x20\xc2\xe5\ \xa1\xcb\x18\xf7\x8e\x81\xb9\xeb\xea\xc6\x6d\x5f\x37\x22\x90\x26\ \x57\xa0\x3f\xa1\x81\xed\xdb\xb7\x4f\x78\x08\x28\x64\x4b\x59\x70\ \x2b\x1b\x23\x2c\xc2\x38\x7c\xff\x8f\xd0\x49\x3a\xc4\xe3\x8d\x6f\ \xbe\x09\xad\x5a\x8b\x08\xa7\x67\xda\x11\x81\x35\x59\x3b\xa1\x01\ \xa5\x5c\x4f\xa0\xf0\x6f\xcf\x2d\x0c\xf9\x86\x11\x21\x4b\x97\x89\ \x4f\x86\xce\xc7\xed\x2b\xf8\x1d\xd8\xb6\xf4\xe5\x48\xe9\x60\x9d\ \x9d\x06\xa3\x9c\xa2\x8a\x66\x62\x03\x5c\xae\x7e\x28\x58\x43\x24\ \xa2\x82\x4c\xb2\x94\x8c\x5f\x94\xfe\x0a\xdf\x2e\xf8\x0e\x62\x5b\ \xb9\xcf\x2c\x37\xc1\x6c\x5d\xbc\x15\x1b\x16\xae\x83\x59\x6b\x46\ \x63\xfa\xcb\x71\x34\x13\x1b\x60\xba\xa0\x50\x6d\x58\x0d\x15\xfd\ \xf0\x6f\xc3\x92\x1f\x20\x59\x93\x0c\xa3\xc6\xc8\x5b\x0a\x11\x7c\ \x41\x2f\x4e\xf7\x9c\xc4\x95\xe1\x0e\x5c\x1b\xbf\x86\xb2\xf4\x55\ \xd8\x6a\xde\x8c\xa9\xb0\x2d\x8e\x66\x62\x03\xbc\x15\x6f\x72\xa3\ \xc1\x2c\x94\xcc\x78\x29\x73\x13\xf2\x8c\xb9\xf8\x96\xb9\x0a\xad\ \x9f\xb7\x60\xe7\xa5\x7a\xbc\x75\xa1\x11\x6f\xb7\xbf\x8a\x83\x17\ \x5a\x71\xe9\xe1\x79\x3c\x9e\x19\x44\xdb\x8d\xdf\x60\xff\xdd\xfd\ \xd8\x7f\xff\x20\xde\xb7\x7c\x88\x2a\x7d\x39\x18\xd2\xe2\x1d\x70\ \xf3\x59\x0d\x70\xf3\x70\x9d\x5a\x29\x01\x85\xd7\x16\x35\xa0\x2a\ \xb3\x12\x1d\xe3\x9f\xa2\xc7\xd6\x83\xa0\x08\x22\x84\x30\x84\x4a\ \x00\x10\xe8\x7c\x7c\x15\x32\x02\x11\x50\x99\x56\x81\x02\x6d\x2e\ \x18\xd6\x4a\x4d\x4d\xbd\xfe\xcc\x06\xea\xea\xea\x66\xa8\xdb\x19\ \x82\x82\xa4\x92\xd0\xfc\x5c\x13\x96\xa6\x2e\x95\x97\x23\x96\x75\ \x45\x75\x88\x66\x69\xca\x12\xfc\xb4\xe0\x4d\x44\x60\x2d\xd6\x7c\ \x66\x03\xca\x43\xf7\x10\x85\x51\x32\xa0\x94\xd6\xf6\x40\xe5\x41\ \xd4\x17\x37\x60\x4b\xf1\x2b\xd8\xfc\x8d\x6d\x58\x5b\xb4\x01\x6b\ \x97\xac\x43\x49\xf6\xf3\xf8\x53\xdd\x71\x1c\xaf\x39\x8e\xdf\x97\ \x1d\x82\x49\x6d\x84\x02\x77\xda\x5f\x62\x0e\xd4\x71\xce\x6b\x35\ \x45\x2a\xb5\x65\x1d\x7c\x7a\xf1\xfa\x45\xc3\x55\xa8\xfd\x6a\x1d\ \xd6\x15\xbe\x88\xf5\x45\xdf\xc5\xea\xe7\xaa\xe5\x2f\x9e\x57\x56\ \x36\x22\x3f\x35\x1f\x0b\x8d\x0b\xa3\xdb\x3b\xb0\x46\x7f\x7f\xff\ \x75\xd2\x5c\xc4\xba\x2a\x62\x2e\x03\x9c\x5c\x0f\x20\x93\xc2\xdc\ \xd2\xd2\x72\x6d\x74\x74\xf4\x2e\x9f\x60\x13\x13\x13\x3c\x0b\xb9\ \xd3\x99\x8b\xe5\x59\x5f\x8f\x24\x95\xbb\x25\xba\x4d\x81\x9f\xa5\ \x89\xf4\xec\xd9\xb3\xe7\x16\x00\x76\x66\xa6\xc8\xa2\x3c\xda\x58\ \x03\x50\x9c\xf1\x3f\xf4\x1c\x24\xa4\xad\xad\xad\x6d\xb9\x78\xf1\ \xe2\x11\x6a\xab\xed\x20\x66\x66\x66\xb8\xc1\xe4\x91\x4f\x36\xee\ \xf3\xd9\x18\x27\xe3\x76\x9e\x67\xca\x37\x2b\x10\xdc\xa8\x3a\xe9\ \x56\x74\x82\xd6\x7e\x1f\x19\x67\xcd\xe8\x90\xe2\xde\x0d\x15\x67\ \x69\x14\xa9\x4a\xa4\xf0\x48\xcd\x67\xea\x8e\x1d\x3b\x96\xd5\xd4\ \xd4\x94\x51\x83\xba\x84\x9a\xcf\x54\x7a\xce\x44\x18\x09\x90\x86\ \x97\xfa\x3d\x0f\x25\x72\x51\xe7\x3c\x44\x57\xb1\x1e\xba\xda\x3d\ \xa4\xbf\xb9\x00\x70\x38\xa3\x46\x76\x68\x17\x44\xac\x81\xd8\xa5\ \x88\x18\x31\x29\x61\x8c\x9a\x81\x8e\x42\x43\x91\xc4\x1a\xca\x06\ \x94\x6f\xc8\x14\x7e\x0a\x9f\x12\x1e\x0a\x37\x85\x43\x49\xec\xa2\ \x7c\xe1\x44\xb7\xe3\x58\x33\x9c\x44\x17\x95\x5c\x1b\x15\x12\x6b\ \x28\xc9\x67\x29\x02\x1c\x8a\x09\xaf\x62\x22\x28\xe6\x49\xf2\x3f\ \x6f\xbf\xd0\x39\x93\x06\xd0\xcd\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x06\x33\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\ \xd5\x82\xcc\x00\x00\x05\xa7\x49\x44\x41\x54\x58\xc3\xed\x97\x59\ \x6c\x94\x65\x14\x86\x9f\x33\x4b\x67\x68\x67\xe9\x22\x4b\xdb\xe9\ \x74\xda\xb1\x05\x51\xa1\x28\xd4\x4a\x27\xe9\x88\x41\x44\x94\x28\ \xae\x31\x5e\xb8\x6f\xc8\xa2\x5e\x88\x8a\x42\xa3\x21\x78\x51\x53\ \x23\x41\x4d\x34\x8a\x31\x2e\xa9\x89\x44\x89\xa8\x17\x3a\xb5\x22\ \x54\x85\x56\x10\x6c\x69\x0b\xed\x4c\x29\x85\x96\xae\xf3\x4f\xab\ \x9d\x99\xcf\x0b\xda\xda\x4e\xe9\x82\x26\x72\xe3\x97\x9c\xab\xf3\ \x9d\xf3\xbe\x79\xff\xf7\x3b\x27\xbf\x28\xa5\xb8\x90\x47\x77\x41\ \xd1\xff\x27\x00\x18\x26\x4a\x96\x89\x58\x4c\x33\x67\xee\x32\xa7\ \xa6\x3a\x7a\x6b\x6a\xae\xbb\xb5\xaf\xef\xd8\x54\x9a\x7e\x2e\x92\ \x65\xbc\xf8\xe2\xaf\x15\x9c\x0e\xd7\xd7\x2f\x5f\xa9\x54\xef\x79\ \x2b\x50\x26\x62\xd1\xc3\x6e\x91\x68\x91\xd9\x39\xdd\x2d\xfd\xfd\ \xdf\xee\x14\x71\x4d\x06\xbe\x53\xc4\x15\x86\xef\xe2\x1d\x29\x39\ \x98\x0c\x85\x61\xf8\xb2\x4c\xc4\x72\x5e\x04\x06\x0b\x76\x8b\xd9\ \xe8\x29\xd8\xf8\x24\x8b\xee\x7b\x18\xeb\x5c\x57\xe6\x00\x94\x97\ \x89\x64\x4d\x40\x3a\x6b\x00\xca\x6d\x97\x65\x67\x5e\x79\xdf\x43\ \x78\x5e\xda\x88\x98\x8d\x1e\x60\xf7\x78\x24\x74\xe7\x02\x8f\x0c\ \x81\xbf\xb8\x0e\xcb\xe9\x7e\xa8\x3a\xc4\xd5\xc5\x5b\xb0\xce\x71\ \x3a\x23\xe0\xfb\x50\x24\x3b\xb6\x6e\x87\x88\x3b\x0c\x3e\xeb\x25\ \x99\xce\x45\x6b\x9f\x44\x5f\xdf\x44\xdc\xef\x4d\x5c\xb3\xe3\x2d\ \xc4\x6c\xf4\x44\xc6\x21\x31\x86\xc0\x1f\xf0\x89\x98\x8d\x9e\x85\ \x6b\xee\x26\xee\x4c\x14\x2d\x18\x44\x0b\x06\xe9\xdf\xb7\x9f\x82\ \x17\x8a\xb1\xce\xce\x70\x46\xc1\xb7\x43\xc4\x3d\x54\xf3\xa6\x48\ \x4e\x10\xbe\xb7\xcc\x71\x3a\x17\xae\x5d\xcf\x40\xcd\x71\x34\x4d\ \x23\x78\xe6\x0c\xea\x60\x03\x4b\xde\xdd\x8e\x98\x8d\x9e\x3f\xe0\ \x93\x49\x09\x44\x21\x5d\x6f\x33\xa3\x42\x11\xb4\xa0\x46\x48\x1b\ \x8c\x60\x90\x9e\x8a\x4a\xf2\x9f\xd9\x80\xc5\x9d\x9e\xd1\x0d\x15\ \xdb\x44\x72\x4b\x44\x66\x37\xc2\x1e\xa3\x3b\x3d\x6d\xd1\xea\xd5\ \x84\xaa\x6b\xfe\xae\xd1\x34\x82\x9d\x9d\x18\x12\x92\xd0\x59\xe2\ \x88\x42\x7a\x2c\x9e\xc4\x4e\xc2\xf7\x44\x5c\x0a\x7c\x36\x47\x52\ \xe6\x65\x37\x2c\x25\xaa\x19\x63\x28\xeb\xb0\x5f\x3d\x8f\x9d\x25\ \xa5\x1c\x6f\x38\xd1\xd6\x03\xba\x19\x59\xa9\x29\xf7\xaf\x7d\x9c\ \xbe\xfd\xb5\x48\x4c\xbf\x94\xa2\x7c\x7e\x7c\x65\x2b\x9d\x0d\x27\ \x9b\x04\xbc\xf7\x2a\xd5\x38\x21\x81\x41\x49\x5d\x06\x28\xb7\xa5\ \x27\x3a\x2f\x5f\xe6\xe5\xcf\x8e\x18\x95\x44\xb0\x16\xce\xe7\xfd\ \x6d\xdb\x09\x29\xc5\xfd\x8f\x3d\x4c\x5f\xe5\x11\x0c\x31\xbd\xec\ \xf3\x5c\xec\xff\xe0\x63\x3a\x8f\xb5\xfa\xc3\x50\xf4\x68\x0c\xf8\ \xb8\x04\x00\xde\x16\xc9\x8a\x80\xcf\x96\x66\x77\xce\xbb\x76\x31\ \x7d\x27\x07\x86\x73\x0a\x08\xeb\x74\x58\x16\x5f\x4a\x24\x1a\x25\ \xb8\xf7\x08\x26\xa5\x90\xa1\xa6\x7a\x3d\xd6\x9c\x14\xaa\xbe\xf8\ \x86\xae\xa6\x76\xbf\x1e\xbc\x0f\x2a\x75\xfc\x5c\x38\x32\xd1\x32\ \x7a\x43\x24\x5b\x81\xcf\x96\x6a\xcf\xc8\xf3\x2e\x44\x6b\x0c\x8d\ \x22\x31\xa0\xd3\xa1\x00\x43\x34\x8a\x1e\x88\xcf\xcc\xc4\x9c\xed\ \x26\x2e\x35\x81\x1f\x4b\x4a\xe9\x6c\x3c\x1d\x10\xf0\x3e\xa6\xd4\ \xb8\x03\x4c\x26\xdb\x86\xa5\x22\xd9\x7a\x28\xb7\xcf\xb2\x39\xf2\ \x3c\xf3\x09\x1e\xed\x3e\x9b\x30\x18\x98\xe6\x70\x60\x4a\x4d\x43\ \x67\x30\xf0\x67\x34\x42\xc7\x91\x23\xe8\x8d\x2d\x1c\x3b\xd4\x4a\ \xcf\xa9\xde\xe6\x08\x14\xad\x9f\x00\x7c\x4a\x04\x00\x5e\x17\x71\ \x47\xc0\x97\x38\xcb\xe6\xb8\xe2\xba\xc5\xf4\xd6\x75\x83\x4e\x47\ \xc8\xef\x27\xd4\xdc\x0c\x83\x3d\xa6\x5f\x3b\x9b\xda\xdf\x5a\xe8\ \x3e\xd5\xdb\xac\x07\xef\x1a\xa5\x1a\x26\xeb\x6d\x98\x14\x1d\xe8\ \xe7\xec\x7b\x0d\x2b\xe8\x6b\x69\x44\xdb\x5b\x33\x9c\x9b\x36\xe2\ \x9e\x5e\x74\x44\x10\x22\xc0\xc0\x54\x1a\x4f\x45\x81\xad\x22\xd9\ \x3a\x28\x4f\x9c\x65\x77\x2c\x9c\xe7\x40\xfb\xe6\x30\x70\xd6\x03\ \x43\x95\x32\x18\x00\x09\xcb\x2e\xe7\x97\x83\x01\xba\x4e\x76\x35\ \x47\xa1\x68\xc3\xbf\xf9\x04\x5b\x07\x4d\x98\x98\x9a\x98\x51\x38\ \x3f\x93\xf0\x57\xbf\x8e\x02\x0f\x8f\x90\x71\x24\x09\xc3\x0d\x0b\ \xd8\x53\xd5\x48\xd7\xc9\xce\x80\x80\x77\xc3\x3f\x31\xe1\xcb\x67\ \x97\x8e\x2f\x39\x2d\xd9\xe9\xcd\x73\xc1\x97\x07\x86\x73\x0a\x88\ \x00\x6d\xd7\x2f\x40\x10\x2e\xfa\xea\xc0\xd8\x6f\x79\xe3\x55\xf8\ \xaa\xea\xe9\x38\x71\xc6\x0f\x78\x37\x9e\xcf\x33\x2c\x16\x71\x09\ \x94\x27\xa7\xa7\x38\x97\x2d\xc8\xc1\xb0\x6b\xdf\xa8\x7c\x04\x38\ \x7d\x63\x21\x4f\x1c\xa8\x45\x01\xdb\xaf\x9c\xcb\x8c\x2f\xbe\x1f\ \x33\xd7\xc3\xb7\x2c\xe1\xeb\x5f\x0e\xd3\x11\x38\xe5\x57\x50\xb4\ \xe9\x1c\x83\x68\xcc\x2e\x78\xce\x6e\xce\x11\xf0\x25\x67\xcc\x74\ \xae\xc8\x9f\x8f\x75\xd7\x3e\xa6\xc1\x70\x98\x81\xde\x5b\x96\xf2\ \x7c\x75\x03\xf6\x96\xf6\xee\x84\x96\xf6\x9e\x67\xab\x8e\xd2\xbb\ \xea\x7a\xcc\x23\xee\x4d\x03\xac\x9f\x7d\xcb\x8a\x82\x45\x24\x3b\ \xd3\x9d\x26\x8b\xa5\xfc\xcd\xbc\xbc\xdc\x49\x15\xd8\x34\x23\xf1\ \xa8\x2d\xcb\x91\x73\xa7\xdb\x8d\xf5\xa3\xcf\x47\xe5\x14\xd0\x7a\ \xdb\x0a\xd6\x57\x56\xa1\x0b\xb4\x74\xe6\xc2\x62\x80\xc3\xb0\xcf\ \x90\x91\x66\x7f\xed\xaa\x2b\x98\xf1\xe9\xae\x61\x2f\x0c\x1d\xed\ \x9e\xdb\xf9\x39\x2c\x34\x1f\xa8\xfe\x7d\x75\x6d\xed\xdc\x09\x15\ \x00\xd5\x1a\xea\x09\xd2\x9f\x72\x11\x46\x53\x1c\x46\x18\x8e\xae\ \x3b\x56\xb2\xa9\xb2\x1a\x7d\xa0\xa5\x23\x17\x0a\x4a\x95\xaa\x29\ \x55\xaa\xe6\x52\xc8\x57\x81\x96\xce\xcd\x95\xd5\x74\xdd\x79\xf3\ \xa8\x1a\xa3\x29\x8e\x50\x72\x12\xcd\x55\xd5\x84\xda\xda\xfc\x63\ \xe1\x94\x1a\x15\x9b\xc1\x52\x0c\x15\x5b\xe2\xe3\x55\xdd\x9a\x07\ \x95\x66\x8a\x53\x1a\x28\xff\x5d\xab\xd4\xa3\x4e\x87\x5a\x09\xed\ \xeb\x20\x37\xb6\x6e\x1d\xe4\xde\x04\xed\x8f\x3b\x1d\xca\x7f\xd7\ \x2a\xa5\x81\xd2\x4c\x71\xaa\x6e\xcd\x43\x6a\x4b\x42\xbc\x2a\x86\ \x8a\xcd\x60\x89\xad\x1b\xcf\x84\x16\x81\xdd\xc6\x84\x78\xcf\xed\ \x0f\xdc\x43\x7c\x47\x17\xdb\x2a\xf6\xd2\xd0\x14\x68\x4b\x87\xc2\ \x57\x95\xaa\x3b\x97\xa3\x9f\x12\xc9\x39\x01\x7b\xe6\x64\x66\x4c\ \x7f\xc4\x53\x40\x28\x25\x89\xb2\x77\x3e\x60\x40\x0b\xfd\xa0\x60\ \xf9\x26\xa5\x82\x53\x7a\x05\x23\x49\x30\xd7\xe5\x31\xea\x0c\xd4\ \xfd\x56\xdf\x9a\x04\x9e\x92\x49\xc6\xeb\xd3\x22\xee\x6e\xa8\x58\ \x5a\x90\x9f\x4a\xa8\x8f\xda\x83\x87\xc6\x05\x1f\xc7\x03\x83\x66\ \x54\x2a\xa8\x60\xf9\x40\x30\xf4\x53\x77\xa0\xf5\xe8\x4c\x28\x9c\ \x0c\x1c\xa0\x44\xa9\x86\xe9\xe0\x89\x74\xf7\x1e\xd7\x2b\x2a\x27\ \x02\x9f\x50\x81\xff\xea\x5c\xf0\x3f\xa3\xff\x09\xfc\x05\xa1\x1f\ \x94\x07\xa7\x00\xae\xf3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x06\x54\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1d\x0d\ \x0d\x01\x6e\x1d\x39\xfc\x00\x00\x05\xb5\x49\x44\x41\x54\x58\xc3\ \xbd\x97\x5b\x8c\x56\x57\x15\x80\xbf\xb5\xf7\x3e\x97\x7f\xe6\x9f\ \x0b\x03\x43\x61\x6e\x15\x70\xe8\x40\x13\x10\xa7\x08\x96\x8e\x8d\ \x4c\x99\x36\x2d\xad\x50\x9b\xd6\xa4\xa1\x91\x6a\x6a\x7c\xf1\xc5\ \x58\x9f\xb4\x1a\x13\x93\x7a\x49\xf4\xc1\xc6\xb4\x89\x1a\x6b\x28\ \x4d\x4a\xab\x89\x0f\xb4\x95\x78\x09\x31\x26\x88\x11\x8c\xd5\x08\ \xbd\x90\x32\xad\x21\x94\x38\xc0\xfc\xe7\xfc\xe7\xec\x8b\x0f\xff\ \x3f\xc3\xcc\x74\x6a\x87\xe9\xe0\x4e\x56\xce\x3e\x27\x59\x6b\x7d\ \x67\xad\xb5\xd7\xde\x1b\x3e\xc0\x08\x21\x10\x42\xf8\x20\x26\x90\ \xc5\x2a\x5e\xbf\xfb\xfb\xd1\xee\x91\x0d\x87\x4b\xaf\xec\x91\xe3\ \x67\xef\x7a\xf5\xb9\xcf\xdb\xc5\xd8\x51\x8b\xfe\x7b\x67\xbf\x31\ \x30\xb0\x7c\x67\x6f\xef\xb2\x31\xe0\x6b\x8b\xb5\xa3\x17\xa3\xd4\ \x77\xdb\x63\xb7\x6e\xdf\xb2\xe6\xc9\x5d\xb7\x6d\x56\x7d\x3d\x1d\ \x8c\xbf\x35\x71\x8b\x5d\x7d\xc7\xef\x2e\xfc\xfd\x97\x67\xae\x79\ \x04\x56\x7f\xe2\xd1\x65\x5d\xed\xe9\xd3\x7b\xee\x1a\xd6\xb5\x5a\ \xce\xe5\xc9\x8c\x4f\xdf\x7e\x83\x6e\x6f\x8d\x7e\x31\xf8\xc0\xcf\ \xbb\xae\x29\xc0\x75\x37\x7f\x09\x82\x7d\xf2\xfe\x4f\x6d\xeb\x77\ \xde\x91\x67\x19\x79\x96\xe3\xbc\x65\xef\xce\x35\xfd\x81\xf0\xd4\ \xe0\x67\x9e\xbe\x76\x00\xc1\xdb\xcf\x8d\x6c\x1b\xba\xaf\x7b\x65\ \x27\x59\x96\xcf\x92\x55\xdd\x09\x37\x0d\x2d\xbf\x97\x10\x1e\xb9\ \x1a\x9b\x0b\x5e\x05\x2b\x86\x1f\x5e\xdf\xb3\x7a\xe5\x5f\x1e\xde\ \xbf\xbb\x15\x99\xa1\x16\x66\x9b\x7b\xe6\xf0\x99\xda\x85\x8b\x76\ \xeb\xa9\x67\xf7\xbd\xb2\x64\x00\x5d\x9b\x1f\x8c\xa3\x38\xfe\xe3\ \xfe\x87\xee\x19\xee\xe8\xea\x98\xe3\x38\xcc\x7a\xbd\x34\xe9\x39\ \xf4\xdb\xb7\x4f\x06\x64\xdb\xa9\x83\xfb\xf2\xa5\x49\x41\x70\xdf\ \xba\xe5\xe3\x9b\x86\x93\x4a\x72\x25\xec\x79\x46\x96\x65\xd3\xef\ \x79\x53\x22\x55\xf0\xd1\xf5\x6d\x9b\x08\xe1\x3b\x4b\x12\x81\xce\ \x1b\xef\x1b\xed\xef\x5f\xfd\xd2\x9d\xbb\x3f\xa9\xa6\x9b\xde\x8c\ \xb0\x87\x79\x66\x4a\x29\xfe\x70\x32\x0b\xe7\x2f\xba\x7b\x4e\x1d\ \xdc\xf7\xeb\x45\x03\x74\x6c\xd8\xb3\x3c\x49\xd3\x13\x7b\xf6\x8c\ \xf5\x26\x95\x74\x4e\x54\xe6\xa4\x7f\xce\x28\x9d\xe2\xf7\x7f\xab\ \x9f\x77\x5e\x36\x9f\x7a\xf6\xa1\xb7\xae\x1a\xa0\xfd\x86\xbb\x41\ \xe4\xf9\x1d\x3b\x3e\xb6\xb7\x77\xa0\x77\x1e\x45\x99\xd6\x9e\xda\ \x0f\xe6\xee\x0b\xef\x5c\x84\x93\xaf\x17\x47\x50\x32\xf6\xda\xa1\ \x2f\xf8\xf9\xfc\xbc\x67\x0d\x84\xe0\x1f\xe9\xed\x5d\xb5\x77\xf9\ \xca\x15\x8d\x1c\xe7\x75\x8a\x7a\x49\x69\x3d\xce\x81\xf3\x57\xc4\ \x7b\xb0\x2e\x60\xad\xa7\x28\x2c\x79\x5e\x27\xcb\x72\xaa\x49\x41\ \x77\xb5\x18\xf5\x45\xf6\xe8\x7b\xf9\x99\xb7\x15\xb7\xae\xbb\x7d\ \x28\xad\x24\xcf\x6f\x19\xfe\x48\xe4\x3d\x04\x0f\x88\x02\x51\x88\ \x28\x40\x21\x22\x4d\x7e\x21\x20\x84\x20\xf8\x10\xf0\x3e\xe0\x5c\ \xc0\x96\x8e\xa2\x5e\xd0\x59\x55\xbc\xf3\x9f\xfc\xd6\xea\xba\xb1\ \x97\x26\x4e\xbd\x3c\xfe\xbe\x11\x68\x59\x33\x1a\x0b\xfe\xc0\xd0\ \xc6\xa1\x96\xa9\xbf\x72\x01\x7c\x10\x42\x50\x84\xa0\x40\x34\x01\ \x0d\xd2\x14\x34\x01\x45\x40\xe3\x51\xf8\x20\xb8\x20\x58\x17\xa8\ \x4d\x66\xac\xef\x4d\x22\xf1\xc5\x81\xeb\xef\x7c\xbc\xfd\x7d\x01\ \x42\xf0\xdf\xee\x1b\xe8\xdf\x92\x54\xaa\x38\x37\xc3\x31\x8a\x20\ \x1a\xc4\x34\x44\x99\x2b\x73\x31\x88\x32\x33\x60\x34\x21\x08\xa2\ \x0c\x9d\xed\x55\x56\x75\xb5\x30\xd8\xd7\xba\x36\xf8\xf2\x89\xff\ \x99\x82\xb4\x7f\x64\x57\xc7\xb2\xce\x1f\xf5\x7f\x68\x50\x10\x8d\ \xd2\x51\x53\x0c\x4a\x47\xe8\x19\x73\xa5\x1a\xcf\x28\x8a\xa8\x24\ \x09\x91\x89\xd0\x5a\xa3\x45\x1a\xb5\xe9\x03\x79\x96\xf3\xea\x1b\ \xff\xe6\xf8\xc9\xd3\x8c\x9f\x1d\xa7\x7d\x59\xd7\xa6\xea\xba\x3b\ \x5e\x9f\x38\xfd\x9b\x13\xef\x5a\x05\x9d\x83\xa3\xed\x65\x69\xff\ \xd1\xbb\x6e\x43\x4f\x90\x84\xb4\xd2\x42\x9a\x54\x88\xd3\x94\x24\ \xad\x90\x24\x29\x71\x9c\x10\x45\x11\xda\x44\x28\xd5\xa8\x07\xeb\ \x3c\xf5\xa2\xc4\x5a\x8b\x2d\x4b\xca\xa2\xa0\x28\x72\xea\x79\x4e\ \x9e\x67\xe4\x59\x8d\x3c\xab\x91\xd5\x26\xa9\x76\xb4\xd1\x33\xb8\ \xf1\xd2\x75\xab\xba\x3f\xfc\xc2\x37\xef\x3d\x07\x60\xa6\x00\x36\ \x8e\x6c\xdf\x53\xed\xef\xeb\x39\x73\xec\x34\xde\x02\x3a\x82\x28\ \x46\xc5\x09\x3a\x4e\xd1\x49\x8a\x0b\x1a\x21\x42\x24\x42\x94\x41\ \x94\x60\x34\x28\x93\xe0\x5c\x13\x20\x2e\x68\x91\x16\xea\x79\x46\ \x3d\x4f\xc9\xf3\x94\x3c\x4b\x49\x6b\x09\x2d\x1d\x15\xd6\xee\xba\ \xb1\x2d\x9f\x64\x2d\x30\x1b\x60\x52\xc7\xaf\xd9\x37\xde\xbc\x7c\ \xe1\xec\x3f\xab\x65\x9e\xd3\xe8\x34\x01\xf0\xe0\x1d\x69\x25\x61\ \xf4\xfe\x2f\x13\x1c\x98\xc8\x60\xb4\x41\xa9\x46\x00\x7d\x08\x38\ \xeb\x28\xa3\x92\x24\x24\x1c\xfd\xd5\x0f\xc9\x6a\x25\x3a\x6e\x45\ \xc5\xad\xe8\xa4\x8a\x4e\xda\x30\x79\x2b\xe7\xfe\xf4\xaf\xa3\x6b\ \x47\xb6\x1e\x9f\xf2\x3b\x0d\x70\xe2\xa9\xc7\x8e\xee\xfd\xec\x57\ \xdb\x5e\xb9\x54\x13\x5b\x16\xcd\x04\x85\xa9\x1c\x69\xa5\xcb\x32\ \xa9\xa4\x60\x03\x71\x1c\x61\x8c\x41\xa9\x46\x0d\x7b\xef\xb1\xd6\ \xa2\x4b\x8d\xc3\x63\xbd\x84\x10\xaf\x30\xce\x24\x04\x95\x84\x10\ \x52\xbc\x33\x54\x5b\xaa\xbc\xf8\xdd\xfd\x41\x66\xec\xa6\xd3\x00\ \x00\x2f\xfc\xec\x71\x98\xa7\xc3\x56\xfa\x6f\x0e\xe8\x88\x38\x89\ \x51\x06\xe2\x38\x26\x32\x06\xad\x1b\x00\xce\x7b\xca\xd2\xa2\x54\ \x81\xc5\xa3\x92\x16\x2e\x1c\x3b\xf4\xae\xce\xf7\x36\x20\x07\xbf\ \x32\xeb\x9b\x61\x21\x43\x54\x10\x1d\x61\xe2\x18\xe3\x20\x4d\x92\ \x66\x14\x1a\x8b\xc8\x59\x47\xa1\x4b\x04\x10\x1c\x2a\xa9\x2e\xc8\ \xec\xd5\x00\x80\x8e\xd0\x91\x21\x56\x90\x24\x11\x69\x92\x10\x45\ \x06\x10\xca\xb2\x04\x11\x9c\xf7\x38\x2f\xa8\xa4\x75\x89\x01\x50\ \x60\x22\xd0\x1a\x0d\x18\x63\x88\xe3\x06\x04\x02\x22\x82\x73\x8e\ \x52\x6b\x44\x02\x12\x2f\x35\x80\x28\x50\x86\x20\x82\x34\x1d\x8a\ \x28\xb4\xd6\x20\xa0\x94\x30\x5d\x58\x22\x48\xdc\xba\xe0\xeb\xd2\ \x82\x00\x42\x70\xcd\x6b\x98\xc7\x7b\x70\xce\x61\xad\x25\xaf\xd7\ \x11\x84\xd2\x5a\x9c\xf3\x78\x1f\xf0\x04\xc4\x24\x0b\x8e\xc0\x82\ \x8e\x64\xdd\xdd\x5d\xb4\x2d\xef\xc4\xa6\x11\xf5\xd4\x90\xc5\x8a\ \xcb\x06\x2e\x8a\x67\x42\x1c\x97\x35\x64\xb1\xa2\xa8\x18\x6c\x25\ \xa2\x77\xfd\x00\x47\x26\xc2\x82\xce\x9b\x0b\x8a\xc0\x13\x87\x9f\ \x09\xdf\xfb\xc1\x4f\xfe\x7c\xe4\xe0\x8f\x6f\x3a\x3f\x7e\x0e\x51\ \x1a\x51\x06\xa5\x4d\xb3\x23\xea\xe6\xd3\x50\x5d\xd6\xc9\xd0\xce\ \xed\xc7\x8e\xd7\x97\x30\x05\x77\xaf\x48\xc3\x4f\xb3\xfa\xd6\x03\ \x5f\xfc\xba\xbc\xf9\xd7\xf3\x48\xd3\xf1\x15\x80\x68\xfa\x1b\xb5\ \x8c\x07\x76\x8c\x85\x07\x57\x2e\xfa\xde\xfb\xff\x1d\xff\x05\xb8\ \x42\x64\xb8\xde\xd7\x88\x06\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x06\xa1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x02\xd6\ \x50\x4c\x54\x45\x00\x00\x00\x2a\x2a\x2a\x3a\x3a\x3a\x00\x00\x00\ \x00\x00\x00\x39\x39\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x41\x41\x41\x36\x36\x36\xa0\xa0\xa0\x3a\x3a\x3a\x3e\x3e\ \x3e\x3d\x3d\x3d\x80\x80\x80\x81\x81\x81\x38\x38\x38\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x05\x05\x05\xff\xff\xff\x00\x00\x00\x00\ \x00\x00\x96\x96\x96\x00\x00\x00\x47\x48\x46\x00\x00\x00\xfd\xfd\ \xfd\x31\x31\x30\x00\x00\x00\xfc\xfc\xfc\x1e\x20\x1e\x00\x00\x00\ \xc5\xc5\xc4\x11\x11\x11\x04\x04\x04\x1d\x20\x20\x05\x05\x05\x3d\ \x3e\x3e\x1f\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xba\xc0\xc1\ \xbf\xc4\xc5\xbc\xc1\xc2\xf9\xf9\xf9\xfd\xfd\xfd\xc4\xc4\xc4\xba\ \xba\xba\xf3\xf3\xf3\xf1\xf1\xf1\xf4\xf4\xf4\xbc\xbc\xbc\xc6\xc6\ \xc6\x26\x26\x26\x1a\x1a\x1a\x0e\x0e\x0e\x0a\x0a\x0a\x00\x00\x00\ \x97\x96\x96\x6b\x71\x72\x6e\x73\x74\x01\x01\x01\x11\x11\x11\x1d\ \x1d\x1d\x2a\x2a\x2a\xb6\xb6\xb6\xc0\xc0\xc0\x93\x93\x93\xfb\xfb\ \xfb\xfc\xfc\xfc\x59\x59\x59\x5f\x60\x60\x83\x83\x83\x82\x81\x81\ \xfa\xfa\xfa\xa4\xa4\xa4\xbf\xbf\xbf\xb8\xb8\xb8\xb4\xb4\xb4\x39\ \x39\x39\x69\x69\x69\x3d\x3d\x3d\x33\x33\x33\x3b\x3b\x3b\x1f\x1f\ \x1f\xaa\xaa\xaa\xa0\xa0\xa0\xa1\xa1\xa1\xa9\xa9\xa9\xa8\xa8\xa8\ \x29\x29\x29\x37\x37\x37\x30\x30\x30\x67\x67\x67\x35\x35\x35\x3c\ \x3c\x3c\x40\x40\x40\x9f\x9f\x9f\xe5\xe5\xe5\xdc\xdc\xdc\xe1\xe1\ \xe1\xca\xca\xca\x2e\x2e\x2e\x38\x38\x38\x3a\x3a\x3a\x41\x41\x41\ \x2d\x2d\x2d\xee\xee\xee\xa3\xa3\xa3\xc2\xc2\xc2\xbe\xbe\xbe\xbd\ \xbd\xbd\xc7\xc7\xc7\x3f\x3f\x3f\x36\x36\x36\x43\x43\x43\xd4\xd4\ \xd4\x6c\x6c\x6c\x71\x71\x71\x73\x73\x73\x62\x62\x62\x3e\x3e\x3e\ \x9e\x9e\x9e\xae\xae\xae\x1b\x1b\x1b\x12\x12\x12\x32\x32\x32\x45\ \x45\x45\x2f\x2f\x2f\xf0\xf0\xf0\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\ \xf7\xf8\xf8\xf8\x46\x46\x46\xef\xef\xef\xf2\xf2\xf2\x9b\x9b\x9b\ \xe2\xe3\xe4\xe4\xe4\xe5\xe3\xe4\xe5\xe4\xe6\xe6\xe5\xe6\xe7\xe6\ \xe7\xe8\xe8\xe9\xe9\xe9\xe9\xe9\xe9\xea\xea\xea\xea\xea\xea\xeb\ \xeb\xea\xed\xed\xeb\xed\xed\x47\x47\x47\x31\x31\x31\xde\xdf\xe0\ \xe1\xe2\xe4\xe3\xe4\xe4\xe4\xe5\xe6\xeb\xec\xec\xec\xed\xed\xed\ \xee\xee\x27\x27\x27\x48\x48\x48\xdf\xe0\xe1\xe6\xe7\xe7\xe7\xe8\ \xe9\xe8\xe9\xea\xed\xef\xef\xee\xef\xef\xef\xf0\xf0\x25\x25\x25\ \x49\x49\x49\x9c\x9c\x9c\xe2\xe3\xe3\xe5\xe6\xe8\xea\xea\xeb\xf0\ \xf1\xf1\xf1\xf2\xf2\x24\x24\x24\x34\x34\x34\x9d\x9d\x9d\xe4\xe5\ \xe5\xed\xed\xed\xf3\xf4\xf4\x23\x23\x23\xee\xf0\xf0\xf5\xf6\xf6\ \x20\x20\x20\x1c\x1c\x1c\xf6\xf7\xf7\x18\x18\x18\xf6\xf5\xf5\x16\ \x16\x16\xfd\xfd\xfc\x17\x17\x17\xf4\xf5\xf5\xf7\xf6\xf6\xfe\xfe\ \xfe\xa2\xa2\xa2\xf7\xf8\xf8\xe4\xe4\xe4\x44\x44\x44\xb7\xb7\xb7\ \x9f\x9f\x9e\x96\x96\x96\x92\x92\x92\xa6\xa6\xa7\x42\x42\x42\x2c\ \x2c\x2c\x97\x97\x96\xe2\xe2\xe1\x2b\x2b\x2b\x94\x94\x94\xd8\xd8\ \xd7\x28\x28\x28\xad\xad\xad\x8e\x8e\x8e\xce\xcf\xce\x8f\x8f\x8f\ \x5b\x5e\x5e\x42\x43\x43\x4b\x4b\x4b\x53\x53\x53\x5b\x5b\x5b\x68\ \x68\x68\x6b\x6b\x6b\x6f\x6f\x6f\x70\x70\x70\xfe\xfd\xfd\xc3\xc4\ \xc3\x5c\x5f\x5f\xe6\xe6\xe6\x87\x87\x87\xea\xa3\x34\xf2\x00\x00\ \x00\x32\x74\x52\x4e\x53\x00\x00\x04\x2a\x2b\x04\x27\x2c\x1c\x21\ \x40\xf3\xfe\xf3\x40\xf3\xfe\xfe\xf3\x54\x5e\x5d\x2d\xfe\x5b\x5a\ \xfe\x44\x99\x15\xfe\x8c\x16\xfe\x80\x13\xfb\x75\x0f\x75\x0d\xb6\ \xc6\x06\x2f\x48\x49\x3f\x23\x02\x14\x48\x2d\xe8\x00\x00\x00\x01\ \x62\x4b\x47\x44\x17\x0b\xd6\x98\x8f\x00\x00\x00\x09\x70\x48\x59\ \x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\ \x02\xfa\x49\x44\x41\x54\x38\xcb\x75\x93\xf7\x57\xd3\x50\x14\xc7\ \xe3\x5e\xb8\x51\xdc\x7b\x6f\xaf\x9a\x4a\x1a\x15\x28\x28\xa0\x34\ \x80\x38\x01\x19\xd5\x2a\xe2\x28\x60\x15\x2d\xc8\x28\x2a\xd0\xa4\ \xb5\xc5\x05\x62\x85\xaa\x50\x44\x90\x22\x8e\x56\x91\x2a\x0a\xce\ \xe2\x56\x14\xf7\xde\xfa\x1f\xf8\x5e\x4a\xc5\xe3\x39\xdc\x1f\x72\ \x4e\xf2\xf9\xe4\x7d\xdf\xbb\xb9\x21\x08\x47\xb5\x6c\xd5\x9a\xaf\ \x36\x44\x33\xd5\x16\x60\xda\xf4\x19\xa4\xa0\x5d\x73\x42\xfb\x99\ \xae\x94\x90\x9e\x35\xbb\xc3\xff\xa0\x63\xa7\x39\x6e\xee\x1e\x22\ \x91\xc8\xc9\xd3\x6b\xae\x97\xa7\x93\x48\x34\xcf\xc3\xdb\xc7\xb7\ \x73\x17\x87\xd0\xb5\xdb\x7c\xd7\x05\x7e\x62\x8a\xf1\x0f\x08\x5c\ \x18\x18\xe0\xcf\x50\x41\x8b\x16\x2f\x59\xda\xbd\x87\x43\x58\xb6\ \x3c\x38\x24\x74\x45\x58\x78\x44\x58\xa4\x44\x22\x89\x0c\x8b\x08\ \x97\xac\x5c\x25\x0d\x5d\xbd\xc6\x21\x44\xad\x95\x02\x44\xaf\x5b\ \xdf\x54\x1b\x36\x02\xc8\x82\x63\x1c\x42\x6c\xdc\x26\x90\x6f\xde\ \x12\x8f\x6b\x2b\x5f\xf1\xdb\x28\x90\x29\x12\x1c\x42\x4c\xa2\x0c\ \xe4\xdb\x93\x92\x93\x93\x53\x52\x52\x83\x95\x4a\xa5\x42\xe9\x97\ \xb6\xc3\x7d\xe7\xae\x9e\xce\xce\xce\xbd\x7a\x13\x44\x7a\x46\x26\ \xc8\x55\x2c\xc7\xa9\xd5\x9a\x70\x68\x2a\x17\xfe\xda\x87\x20\x64\ \xbb\xa5\x20\xd7\x6a\x55\x2a\xa1\x4e\x97\x05\x7b\xf6\xee\xdb\x7f\ \x20\x3b\xe7\x60\xee\x21\xfd\xe1\xbc\x3c\x3d\x16\x7c\xf3\x0d\xc0\ \x73\xa1\x8e\xce\x82\x23\x47\x8f\x15\x64\xe7\xe4\xea\x0b\x8d\x46\ \x63\x51\x51\x1e\x16\x8e\x17\x23\x81\xe7\x14\x12\x4e\x14\x94\x94\ \x9e\x44\xb8\xa8\xcc\xa4\x2d\x2f\x37\x61\xe1\x54\x45\x08\x20\x8c\ \x02\x28\xf6\x34\x9c\x39\x5b\x7a\x0e\x61\x53\xb9\xd9\x2c\xb4\x58\ \xcc\x58\x38\x5f\x71\x01\x30\xd6\x51\x14\x5b\x09\x17\x73\xf5\x79\ \x55\x08\x5b\xd0\xad\xd5\x4a\x61\xe1\x12\x12\x54\x18\x53\x34\x57\ \x09\x25\x85\x46\xf9\x65\xb4\x5f\x2b\xcd\xb2\xd5\x1c\x8b\x85\x2b\ \xfc\x0a\x08\xd3\x58\xc8\x31\x9a\xb4\x42\x8b\x95\xae\xc6\xa7\xd6\ \x68\xb0\x70\x15\x09\x28\x80\x46\xaf\xa8\xd3\x40\x8f\x96\xd7\xd1\ \x2c\xa7\xd6\x90\x64\x50\x10\x89\x05\x37\xb4\x49\x21\x0e\x60\x39\ \x4d\x34\x54\x69\xcd\x3a\x2b\x57\xa3\x41\x54\x2c\x16\x07\x61\xa1\ \xb6\xc2\x00\xf6\x05\xb0\x50\x86\xe2\xaf\xa9\x49\x9e\x33\x8c\x18\ \x0b\xd7\x51\x1f\x50\x0b\x70\x02\x19\x01\xe5\x16\xba\x5a\x8d\x31\ \x83\x38\x73\x03\x0b\x37\x8b\xa5\x80\x12\xf0\x02\xe2\x70\x30\x53\ \xb7\x6e\x93\xfc\xdb\x02\x81\xc0\x66\xe3\x23\xf2\x33\x41\x87\x8f\ \xa0\xd6\x30\x75\x60\xa1\xb9\x3b\x48\x70\x70\x21\xde\x64\x86\xac\ \x51\x20\x99\x08\xd0\xa1\x20\xcc\x19\xfb\x27\xbd\xdb\x97\x20\x7c\ \xee\xf1\x02\x8b\x85\x3a\xa0\x38\x0d\x89\x02\x04\x70\xff\x41\xd6\ \xc3\x47\xfd\x1e\xf7\x47\x8d\x7a\x52\xff\x8f\x60\xad\xc1\x3b\x10\ \x08\xe0\x29\x1e\x89\x67\x03\x06\xa2\x6f\x11\xd7\x80\xfa\x80\x0c\ \x35\x29\xae\x03\x9a\x4f\x40\xc2\x73\xb0\x0d\x7a\x31\x78\x08\x1a\ \xb9\x97\xca\x86\xbf\x53\xf4\x0a\x0b\x38\xc1\x06\xaf\x61\xe8\x9b\ \x61\xc3\xf1\x4c\x36\x44\x29\x7c\xeb\x0d\x09\x31\xb1\xa1\x51\x8a\ \x5a\x5e\x60\xb0\xf0\xd6\x65\xc4\xc8\x51\xfc\xd0\xbe\x7b\x9f\xf8\ \xe1\xe3\xa7\xd4\xcf\x5f\x92\xbe\x7e\x8b\x02\x1a\x77\x81\xf9\x0e\ \xe0\xf7\x63\xf4\x18\xfb\x54\x8f\xfd\x69\x48\x4f\x37\x18\x0c\x52\ \xa9\xd4\xe0\xed\xc8\xa2\x7f\xfd\x1e\x37\xde\xce\x5b\xfc\xfb\x9f\ \x4e\x98\x38\xa9\xb1\x26\x4f\x99\x6a\x7f\xf4\x07\x1a\xbd\x62\x18\ \x89\x36\x0d\x39\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x01\x74\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x6f\ \x50\x4c\x54\x45\xff\xff\xff\xaa\xaa\xaa\xba\xb6\xb2\xb9\xb5\xb1\ \xba\xb7\xb2\xba\xb6\xb1\xbb\xb7\xb3\xbc\xb5\xb1\xcc\xcc\x99\xbb\ \xb7\xb2\xc3\xc0\xbb\xba\xb7\xb2\xb8\xb8\xb0\xbc\xb8\xb3\xbb\xb7\ \xb2\xbf\xb5\xb5\xba\xb7\xb2\xc2\xbf\xbb\xbe\xba\xb5\xba\xb5\xb0\ \xbc\xbc\xae\xba\xb6\xb2\xc2\xbe\xba\xbb\xb6\xb2\x80\x80\x80\xb9\ \xb6\xb1\xb9\xb5\xb0\xbc\xb7\xb1\xbb\xb5\xb2\xc3\xbf\xbb\xc2\xbf\ \xbb\xba\xb6\xb1\xc6\xc3\xc0\xcc\xc9\xc6\xcb\xc8\xc5\xc9\xc6\xc2\ \xff\xff\xff\x0e\xcb\x1d\xa2\x00\x00\x00\x1d\x74\x52\x4e\x53\x00\ \x03\x77\x80\x60\x7d\xfc\x48\x05\xe0\xf9\xb2\x3d\xf4\xf4\x18\xa6\ \xf7\xf4\x6b\x13\xf1\xfe\xd3\x02\x62\xfd\x2e\x53\x35\x79\xe2\x65\ \x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\ \x9b\x78\x00\x00\x00\x49\x49\x44\x41\x54\x18\xd3\x63\x60\xa0\x0a\ \x60\x64\x62\x86\x00\x16\x98\x08\x2b\x9b\x2c\x10\xc8\xc9\xb3\xc3\ \x04\x38\x38\x15\x14\x15\x15\xb9\xb8\x11\x9a\x78\x78\x95\x14\x95\ \xf9\xf8\x91\x8c\x11\x10\x54\x14\x12\x46\x36\x57\x44\x54\x4c\x5c\ \x02\xc5\x26\x49\x29\x69\x34\xbb\x65\xa8\xe3\x05\x08\x00\x00\xea\ \x47\x03\x64\xf9\x6c\x82\xed\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\x0d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ \x00\x00\x85\x49\x44\x41\x54\x28\xcf\x63\xfc\xcf\x80\x1f\x30\x31\ \x50\x4d\x81\x8f\x37\x01\x05\x8c\x5b\x02\xb6\x78\x48\xe2\xb5\x42\ \xc4\x8d\xfd\x96\x5f\x5e\x23\x13\x4e\x05\xe2\xac\xaa\x3c\x9c\xad\ \xe7\xaf\xf8\x18\xe3\x74\x24\x3b\x83\x0a\x8f\x94\x06\xf3\x11\xbf\ \xa9\x5e\xec\x38\x7c\xf1\x97\xe1\xeb\x2f\x86\x9f\xff\x8f\x6d\xfb\ \x09\x13\x61\x41\x96\xfe\xc0\xf0\xf4\x3b\xc3\x6a\xa6\xfc\x8d\x1f\ \x10\x62\x48\x0a\xee\x7d\xfd\xf6\xea\x6f\xcc\x96\x63\xb8\x1c\xf9\ \xf3\x4b\xc7\x53\x75\x74\x69\x06\x06\x86\xff\x50\xe8\xab\xf8\x9f\ \x01\x1b\x64\xa4\x7d\x64\x01\x00\x9a\x21\x34\x7d\xf9\xdf\x91\x38\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x6d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x23\ \x50\x4c\x54\x45\xbd\x7f\x04\xff\xff\xff\xbd\x7f\x04\xbd\x7f\x04\ \xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\ \x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\ \x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\xbd\x7f\x04\ \xbe\x80\x07\xd4\xaa\x55\xd4\xab\x58\xc0\x85\x0f\xf5\xec\xcc\xf5\ \xeb\xca\xdf\xc1\x7f\xfb\xf6\xd9\xfb\xf5\xd5\xdf\xc0\x7c\xc4\x8c\ \x1d\xfa\xf4\xd9\xf6\xe7\x9e\xf6\xe5\x96\xfb\xf2\xd4\xc6\x90\x24\ \xe6\xce\x98\xfb\xf3\xd1\xbd\x7f\x04\xfa\xf0\xc2\xe8\xd1\x9a\xcc\ \x9c\x39\xfc\xf4\xd6\xf4\xe0\x82\xf3\xdb\x70\xfb\xf2\xcc\xcc\x9b\ \x38\xef\xde\xb2\xf8\xeb\xae\xf3\xdc\x74\xf3\xd8\x65\xf8\xe8\xa2\ \xf0\xdf\xae\xd4\xa9\x52\xfb\xf1\xc6\xf2\xd8\x64\xf2\xd5\x59\xf1\ \xd3\x51\xfa\xef\xbd\xd7\xb0\x5d\xc0\x85\x0e\xf4\xe7\xbb\xf6\xe0\ \x84\xf2\xd4\x56\xf2\xd4\x57\xf2\xd3\x52\xf1\xd2\x4d\xf1\xd0\x47\ \xf4\xda\x6b\xf7\xe9\xbc\xc1\x87\x13\xde\xbc\x73\xf9\xed\xb8\xf1\ \xd0\x46\xf1\xd1\x49\xf1\xd1\x4a\xf1\xcf\x43\xf0\xce\x3e\xf0\xcd\ \x3a\xf9\xec\xb2\xdf\xbf\x77\xc4\x8c\x1b\xf8\xeb\xbb\xf1\xd2\x4c\ \xf0\xce\x40\xf0\xcf\x41\xf0\xcf\x42\xf0\xce\x3d\xf1\xcf\x44\xfa\ \xed\xbf\xc6\x90\x22\xe6\xcb\x8c\xf9\xec\xb1\xf9\xeb\xaf\xf9\xeb\ \xb0\xe9\xd2\x98\xff\xff\xff\x05\xf9\xa6\x9b\x00\x00\x00\x14\x74\ \x52\x4e\x53\x00\x00\x03\x7b\x1e\x8d\x90\x3c\x45\xa5\xae\x63\x66\ \xcc\x84\x1b\x21\x8a\x4b\xb4\x28\xe9\x61\x53\x00\x00\x00\x01\x62\ \x4b\x47\x44\x01\xff\x02\x2d\xde\x00\x00\x00\xac\x49\x44\x41\x54\ \x18\xd3\x55\xcd\xd5\x1a\x82\x50\x10\x85\xd1\x03\xa8\x88\x1d\xd8\ \x5d\x63\x77\x27\x76\x8b\x05\x76\xbc\xff\x5b\xd8\x8a\xff\xcd\xfe\ \x66\xdd\x0c\x42\xaf\x70\xfc\x39\x18\xf6\xb9\x69\x1a\xff\x03\xc2\ \x60\x24\x84\x20\x32\x99\x2d\x26\x91\x00\xc4\x56\x9b\xdd\x21\xf9\ \x01\xe9\x74\xb9\x3d\x5e\x9f\xf4\x0b\x94\x3f\x00\x10\x0c\xc9\x3e\ \x20\x0f\x47\xa2\x00\xb1\x78\x42\xf1\x06\x65\x32\x95\x06\xc8\x64\ \x73\x34\xfe\x04\x22\x5f\x28\x66\x00\x4a\xe5\x4a\x55\xf5\x00\x75\ \xad\xde\x60\x9a\x4c\xab\xdd\xe9\xf6\xfa\x9a\x3b\x68\x07\xc3\xd1\ \x78\x02\x30\x9d\xb1\xf3\x85\x04\x43\xe4\x72\xb5\xe6\xf8\x0d\xcf\ \x6d\x59\x76\xb7\x3f\xe8\x10\x75\x3c\x9d\xbf\x5d\xae\x7a\x44\x52\ \x20\x48\xaf\xbb\x7f\xfe\xef\x06\x13\x98\x1a\xab\xa8\xf5\xcf\xdc\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x78\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdb\x03\x1e\x00\ \x11\x07\x8e\xf6\xaa\x83\x00\x00\x04\xd9\x49\x44\x41\x54\x58\xc3\ \xcd\x96\x5b\x6c\x54\x55\x14\x86\xbf\xbd\xe7\xd2\x43\x3b\xb4\x40\ \x69\x2d\x81\x08\x8a\xf2\x20\x89\x48\x14\x82\x09\x4f\x90\x26\x48\ \x4c\x30\x44\x89\x0f\x6a\x78\xf6\x92\x18\x79\x11\x8d\xcf\x04\x89\ \x6f\xca\x45\x23\x89\xaf\x2a\x6f\x34\x16\x88\x97\x18\x24\x21\x52\ \x84\x48\x05\x83\x24\x74\x5a\xa6\x15\x5a\x4b\x3b\x97\x73\x66\xce\ \x39\x7b\xf9\xb0\xcf\xdc\x60\x4a\x87\x51\xa2\x2b\x59\x39\x67\xf6\ \xec\xec\xf5\xef\xff\xff\xd7\xde\x07\xfe\xe3\x50\xb5\x3f\x1c\xc7\ \x59\xe1\x79\x5e\xef\x83\x2c\xe8\x38\xce\x4d\xcf\xf3\xc6\xe6\xfa\ \x7f\x8b\x3c\xe0\x00\xb6\xd4\x16\x8c\x37\x42\x71\x23\x93\x41\x6b\ \x8d\x52\xaa\x2e\xd1\x1a\x05\xe8\xf2\xef\x32\x85\x4a\x55\x9e\x77\ \xd1\x1a\x85\x00\x5d\x9d\x9d\x77\x8d\x37\x04\xa0\x63\x9a\xce\x64\ \xb5\x90\x52\x76\x55\x05\xb6\x70\xe5\xdd\x96\xab\x7f\x42\xce\xd7\ \x15\x14\x8d\xc0\xcc\x0b\x60\x61\x02\x76\xfe\xd8\xc7\xea\x2e\x18\ \xcd\x5a\xf4\x88\x2d\x68\x04\x62\x0a\xd6\x2c\x86\xe1\xbf\x20\xa9\ \xed\x98\x11\x88\x69\x28\x85\x30\xf8\x5c\x8e\xbc\x3f\x5f\xe9\x7b\ \x31\xa0\x35\x09\x0d\xcf\xaf\x84\xe5\x0b\x61\xd2\x85\x9e\x05\xe0\ \x86\xb0\x32\x05\x5f\x5d\x83\xf5\xdd\xb0\xe3\x11\x3b\xbf\xaf\x03\ \x8a\x21\x5c\x9f\x81\xcf\x2f\x47\x92\x28\x55\x91\xe4\xbe\x01\x80\ \x22\x14\x38\x38\x0c\x62\xec\x8e\x0d\x20\x12\x01\x54\x70\x75\x1a\ \x6e\xb9\x70\xbb\x68\xeb\xe8\x48\x92\x92\x01\x94\xc6\xd6\x6f\x11\ \x80\x6b\x34\xdf\xf4\x4f\x46\x2b\x47\x3b\xa9\x18\x41\x95\x9d\x57\ \xff\x8e\xae\x2e\x60\x14\x5a\xff\x03\x09\x52\x71\xd8\x76\x6a\x29\ \xcb\xda\x6d\x0d\x27\x06\x37\x0b\xe0\x05\x10\x8f\x81\x1f\xc2\xaa\ \x4e\x98\x29\xc2\x94\x07\x71\x0d\x81\xb1\x7e\xe8\x6c\xb3\x73\x4f\ \xec\x28\x51\xf2\xe7\x67\x61\x0e\x0f\x28\x12\x0a\x0e\x6c\x86\xd3\ \x37\xe0\xf1\xc5\x90\x9e\x85\x65\x29\x38\x3a\x0c\xbb\x9f\xb0\x46\ \xfd\xec\x12\x1c\xd9\x0a\x67\x32\xb0\x6e\x29\x7c\x3f\x06\x79\x1f\ \xbe\x1d\x2b\xfb\xa0\x45\x06\x50\x0a\x5f\xe0\xb5\x93\x91\x02\x02\ \x12\xb1\x1d\x57\xf0\xd1\x79\xab\x7d\x42\xc3\x8b\x03\x76\x8e\x00\ \xb1\xc8\x07\xa6\xb2\x8c\x42\xca\xc6\xb9\x1f\x00\xf9\x40\x31\xb8\ \x7d\x26\x92\x35\xd2\x5e\xab\x1a\xad\x55\x4d\x42\xe3\x6e\x57\x11\ \x9b\xd6\x1b\x73\x01\x69\x7c\x0e\x24\x61\xdb\x40\x17\x31\x6d\x9d\ \xbf\x76\x89\xdd\xe1\x95\x69\x4b\x7d\xd6\x87\xee\x36\x98\x28\x40\ \x32\x66\x59\xf1\x42\x58\xdf\x03\x57\x6f\xc3\x62\x07\xae\xcf\xc2\ \xc9\x17\x02\x82\xa0\x05\x06\x34\x8a\xb8\x86\x2f\xfa\xe1\xd7\x29\ \xe8\x76\x6c\x2b\x4e\xba\x80\x40\x2e\x80\x82\x0f\x9b\xfa\xe0\xda\ \x0c\xcc\x94\xa0\xb7\x1d\xa6\x3d\x78\xb2\x1b\x2e\x4c\xc2\x64\xc2\ \xb2\x30\x5f\x37\xcc\xe9\x81\xc0\xc0\xab\x27\xab\x43\xcb\xda\x21\ \x93\xb7\x0c\x14\x02\x3b\x76\xf4\x37\x78\xaa\x07\xd2\x59\xeb\x89\ \x32\xf1\x71\x0d\xf9\x68\x4e\x4b\x1e\xc8\x05\x9a\xc1\xed\xf9\xaa\ \xee\x77\x9e\x03\x77\xe8\x5c\xef\x81\xea\xbb\x18\x8d\xd6\xdc\x33\ \x1a\x4b\xa0\x14\x05\x3f\xba\x88\xb4\xae\xbf\xfd\x6a\x9e\xc6\x08\ \x5a\xab\x8a\xdb\xcb\xb7\x66\x79\xd7\x2d\xb7\xa1\xa0\xe8\x48\x52\ \x3d\xe9\x14\xb6\x17\x51\xd6\x04\xd1\x33\x16\xab\xad\xa0\xa3\xff\ \x40\xd1\xdc\x3d\x30\x27\x80\x54\x12\xfa\x8f\xb7\xb3\x6e\x29\x8c\ \x65\xad\xeb\xcb\xe4\xea\xa8\x23\xbd\xd0\xea\x3f\x9a\xb5\xe6\x8b\ \x47\x2d\x1b\x1a\x18\xd8\x21\x18\x63\x10\x91\x3a\x0f\xc4\xe3\xf1\ \xe6\x00\xa0\x84\x64\x0c\x36\x3d\x04\xab\xd7\x80\x1b\xd8\x56\x73\ \x12\x30\x9e\x87\xe1\x29\xd8\xfa\xb0\x3d\x1d\xbb\x56\xc2\x8a\x14\ \x8c\xe5\xac\x19\x67\x7d\x80\x90\x52\x29\x20\x0c\x43\x8c\x31\x15\ \xc9\x3a\x52\xa9\x26\x01\xa0\xf0\x43\x18\x18\x81\x29\xd7\xee\x38\ \x10\xcb\x40\x5b\xcc\x9e\xfb\xdf\x8d\x55\x6f\xc9\x47\x3b\x85\x6b\ \xb3\x8a\x78\x29\x4b\xf6\x56\x86\x7e\xed\x92\xf7\x15\x22\x06\x63\ \x0c\x6d\x6d\x6d\x38\x8e\x23\xbe\xa0\x80\xc2\xbd\x24\xd9\x22\x22\ \xe2\xba\x05\x11\xdf\x15\x09\x8b\x36\xc5\x17\x31\x25\x11\x09\xa2\ \x0c\x6b\xd2\x44\x19\xca\xef\x97\x2e\x34\xfc\x0e\x34\xc6\x98\xf4\ \xe8\x88\x3c\xb3\xe1\xe9\xb7\xbb\x16\x2d\x4a\xce\xcb\x80\x93\x50\ \x6c\x3b\xee\xb0\xbc\x03\x96\x38\x70\x79\xda\xee\xde\x88\x3d\xff\ \x43\x81\x55\x0b\x6d\xef\x4f\x17\xed\x78\x6f\x87\x62\x62\x24\xc5\ \xe0\xda\x6a\xef\x8b\x08\xc6\x18\xc9\x64\x6e\xa8\x77\xf6\xec\xf9\ \xe0\xdc\xcf\x43\x1f\x03\x41\x13\x12\xd8\xcf\xab\x03\x9b\xe1\x54\ \x1a\x5e\x5e\x63\xa9\x2f\x85\x70\x71\x12\x9e\xed\x03\xdf\xc0\xb1\ \x3f\x60\xe7\x63\xd0\x1e\x87\x4b\x53\x70\x7b\x41\x75\xb9\xa8\x38\ \xe3\xe3\x19\xb5\xff\xc3\xfd\xfb\x8f\x7d\x7d\x6c\x1f\x10\x36\xe9\ \x01\xc1\x37\xf0\xca\x09\xdb\x4d\x82\xbd\x13\x62\x51\x07\x7c\x79\ \xd5\xce\x4a\x6a\xe1\xdc\xcd\xa8\xdd\x34\x74\x79\x49\x76\xd7\x17\ \xe7\xf0\xa7\x87\x8e\x1c\xfc\xe4\xd0\x5e\xca\x3d\x3a\x4f\x44\x1e\ \xf0\x44\x4c\xd1\xa6\x94\xa2\xf4\x1b\x78\x40\xac\xfe\xa1\x2b\x85\ \xe9\x3f\xe5\xec\xe9\x1f\x44\x44\xc4\xf7\x7d\x93\x4e\x8f\xc8\x7b\ \xef\xbf\x7b\xb8\x99\xa2\x77\x03\xf0\x3c\x29\x16\x8b\x52\x2c\x16\ \xc5\xf7\x7d\xf1\x7d\x5f\x82\x20\xa8\x64\x18\x86\x12\x86\x16\x40\ \x18\x86\x52\x28\x14\x64\x7c\x7c\x5c\x7e\x3a\x73\x46\x44\xc4\x8c\ \x8c\x5c\x97\x37\xde\x7c\x7d\x1f\x75\xdf\x69\xff\x12\x80\x72\xf1\ \x5a\x00\xae\xeb\xca\xc4\xc4\x84\x0c\x0d\x0d\x99\xd1\xd1\xb4\xec\ \xda\xf5\xd2\xde\x56\x8a\x57\x00\xb4\x12\x39\xaf\x24\x67\x7f\xb9\ \x28\x1b\x37\x6e\x78\x0b\xfb\x71\xd4\x54\xd4\x99\x30\x91\x48\xa4\ \x95\x52\x5b\x5b\x41\x1e\x45\xae\xa7\xb7\xf7\x3c\x0d\xdc\xfe\xbf\ \x8d\xbf\x01\xa9\xc1\x50\x19\xd4\x42\xcf\xb9\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x13\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1d\x0d\ \x3b\x2b\x3c\xba\x61\x5f\x00\x00\x05\x74\x49\x44\x41\x54\x58\xc3\ \xd5\x96\x4d\x6c\x5d\x47\x19\x86\x9f\x6f\x7e\xce\xcf\xb5\x63\xbb\ \xb1\x63\x12\x13\x93\x16\xd2\x52\x0a\x05\xab\x6a\x23\x95\xb4\x11\ \x54\x61\x57\x76\x48\x15\xa5\x65\x55\x55\x2a\xa2\x20\x8a\x2a\xa4\ \xaa\x74\x83\xc4\x02\x89\xb0\x41\x42\x45\x08\x24\x90\x42\x61\xc1\ \x22\xd0\x26\x0a\xa4\x40\xab\x24\x85\xd8\x75\x63\xe2\x86\xd8\x4d\ \x5c\x35\x8e\x13\x27\xbe\x76\x70\x7c\xff\xce\xcf\x0c\x8b\x7b\xed\ \x34\xe6\xba\x3e\x8e\x90\x10\x9f\x34\x77\x46\x3a\x73\xde\xef\x99\ \xf7\x3b\x33\x77\xe0\xff\x25\xbc\xf7\xe2\xbd\x97\x02\xf3\xf0\xde\ \x17\xd6\x5d\x57\x10\x20\x49\x73\xf9\xdb\x3f\xcb\x27\x7e\x7e\xf0\ \x9d\x7b\xde\x78\x7b\x0e\x68\x25\xf0\x2b\x3f\xf8\x56\x3f\xb8\xa5\ \x83\x67\x1f\xf9\xe4\xf1\x2f\xdc\x3b\xf0\x80\x88\xac\x4b\x52\x08\ \xe0\xe1\xef\xbc\xa2\x8c\x96\xfc\x9b\x5f\x1d\x42\x5a\xaf\xac\xad\ \xec\x39\x70\x78\xd2\xed\x7b\xfa\x41\x53\x04\xc0\x14\x01\x78\xfb\ \x9d\x0b\x08\x30\x73\xe5\xb6\x42\xb6\x1e\xf8\xcb\x38\x3f\xfa\xc6\ \x9e\x42\x75\x28\x04\x90\x37\x96\x10\x81\x6a\xb5\xb6\xf6\xba\x5b\ \xe9\x44\x20\x4f\x2a\x85\x40\x37\x04\x80\x40\xa5\x52\x5d\x77\xae\ \x12\xc1\xfd\xd7\x01\xb2\x3a\x02\x54\x2a\x6d\x1c\x58\x65\xb4\x56\ \x82\x4b\x6b\x45\x64\x8b\x03\x88\x32\xa2\xb5\xa5\x5a\xc0\x01\xa3\ \x15\x3a\x28\x15\xfa\xb8\x37\x02\x80\x89\x7b\xda\x3b\xb0\x2a\xac\ \xd1\xd8\xb8\xe7\xe6\x1c\x58\x3e\x40\x44\x6e\x5c\x80\x88\x60\x3b\ \x7a\x0b\x01\x84\xd6\x10\x74\xf6\xb5\x7d\xd6\x4e\x7f\x65\xb4\xf7\ \xeb\xfb\x1f\x4c\x73\x7d\x70\xe6\xf2\xd5\x8e\xdc\x81\x68\x83\x28\ \x8d\x88\x46\x94\x41\xb4\xe6\xde\xed\x65\x04\x69\x0a\x88\xac\x08\ \x79\x3c\x78\x8f\x73\x1e\xa3\x15\xc3\xd3\x9b\x49\x93\x14\xef\xb2\ \x95\xe6\x5c\x4e\x68\x15\x03\x5b\xba\x8f\x7e\x69\xcf\xe0\xe7\xbf\ \xf6\xc8\x67\xd3\x1b\x1c\x50\x59\x75\xe7\x96\xae\xae\x8e\x1d\x3d\ \xa0\xc4\x03\x69\xab\xb5\x9e\x2b\xcd\x52\xcd\x21\x4a\xa1\x94\xd0\ \x62\x68\xad\xac\xd9\x9c\xf3\x24\x49\xc2\xae\xed\xf3\x78\xef\x58\ \x7d\x22\x97\x4a\x31\xbd\x03\xb7\xef\x9e\x9a\x5d\xb8\x0f\x38\x76\ \x03\xc0\xf8\xa9\x93\xbf\x6b\x34\xea\xdf\xdf\x79\x5b\xff\xd6\x4d\ \x9d\xa5\xf7\x25\x56\x18\x63\x31\xc6\xa0\x8d\x41\x21\x80\x20\x4a\ \x21\xfe\xba\x03\xde\x39\x72\x27\x38\x07\xf3\xff\xaa\x91\x65\x29\ \x59\x96\xe2\x9c\x5b\xd9\x29\x77\xdc\x1a\x70\xf8\xd0\xcb\x4b\x03\ \x1f\xea\x3d\xbb\xac\xaf\x97\x07\xd7\xde\xfb\x7b\x43\x75\x6e\xfb\ \xc7\xd5\xb9\xcb\x8f\x75\x75\xf7\x48\x96\x3b\x9c\xf3\x4d\xfb\x95\ \xbe\xde\x8b\x86\x56\xef\x51\x78\x14\x20\x38\x2f\x78\xd7\x74\x21\ \x77\x9e\x3c\xcf\xc9\x32\x47\x92\x24\x28\x81\x7b\xee\xba\x95\xd7\ \x5e\x3b\xc6\x99\x89\x89\x27\xc7\x5e\xd9\x77\xf4\x3f\x00\x00\x92\ \xf2\xe4\x59\x1f\xf5\x77\xa5\x49\xe3\xfe\xb8\xf3\x16\x44\x19\x94\ \x32\x88\xb6\xad\xde\xa0\x96\xc7\xcb\x50\xa2\x01\xc1\xb7\x20\x72\ \xe7\xf1\x1e\xb6\xf5\xf5\xf0\xb1\xc1\x7e\xfa\x7a\x36\xa1\xbc\xe7\ \xe0\xa1\x3f\x32\x75\x76\x72\x7f\x75\xea\xc8\x0b\x6b\xee\x82\x56\ \x3c\x37\x7f\x79\xf6\xa1\xee\x5b\xfa\x87\x94\xd9\x8a\xf6\x0a\xed\ \x35\x1e\x0d\x62\x41\xec\x8a\x1b\xd6\x6a\x3a\xe3\x80\x4d\xa5\x00\ \x11\x8f\xcf\x1d\x59\x96\x92\x34\x12\xce\xbd\x77\x89\x63\x23\x93\ \xd4\x6a\x55\xb2\x6a\x99\xf2\xc5\xe9\x73\xe0\x9f\x5a\x9d\xac\xed\ \x81\x11\x6d\xdf\xfd\x89\x20\x0a\x87\x3f\xfe\x99\x07\x4a\xa5\xce\ \x6e\x4a\xa5\x12\x51\x1c\x13\x47\x31\x61\x18\x12\x84\x01\xd6\x18\ \x10\xa1\x52\x4b\xb9\x56\xa9\x93\x24\xcd\x9a\xa7\x49\x42\xd2\xa8\ \xd3\xa8\xd7\xa8\xd7\x6b\xa4\xf5\x25\x2e\x9c\x39\x9e\xd6\x6a\xd5\ \x3d\x8d\x99\x13\x6f\xac\xce\xa5\xdb\x01\x64\x8b\xe7\xe7\x28\x6d\ \x2b\x67\x69\xf5\xe1\xae\xbe\x1d\x38\x2c\x5e\x2c\x0e\x43\x8e\x21\ \x75\x8a\x46\x26\x24\x19\x38\x14\x46\x5b\xb4\xb1\x68\x6d\x50\x4a\ \xad\x6c\x53\xa5\x84\xf2\xf9\x93\x5c\x2d\x5f\x79\xa1\x71\x71\xf8\ \xd7\xed\x72\xb5\x05\x00\x30\x5d\x83\x23\xf5\xea\xd2\x50\xcf\xe6\ \xee\x3b\xbb\x7b\x3f\x4c\x14\x97\x88\xe2\x12\x61\x14\x11\x85\x01\ \x61\x10\x10\x04\x01\xd6\x5a\x8c\xd5\x18\xad\x51\x4a\x37\x77\x47\ \x6b\x7f\x56\x16\xde\x65\xea\xf4\x5b\x7f\xf6\x9e\x27\xf3\xa5\x99\ \xb6\x7f\xcf\x6a\x2d\x80\xc6\xf4\x31\xbc\xe7\x89\xc9\x53\xc3\x17\ \x94\xd4\x09\xc3\x88\x28\x0c\x89\xa3\x90\x38\x8a\x28\x95\xe2\xeb\ \x2d\x8e\x89\xe3\x88\x28\x0a\x89\xa2\x90\x30\x8a\x31\x26\x65\xe2\ \xad\xa3\x65\xe7\xfc\xe3\x8d\x8b\xc3\x6e\xad\x3c\x6b\x3a\x00\x90\ \x2f\x9e\xaf\x49\xc7\xc0\xc9\xc5\xf9\x8b\x8f\xdd\x7e\xf7\x7d\x12\ \x06\xad\x24\x61\x48\x18\x86\x84\x81\xc5\x5a\x83\x31\x1a\x51\x72\ \xfd\x93\x12\xc7\x89\x23\xfb\x59\xb8\x3c\xfb\x68\x32\x3b\x7a\xe2\ \x83\x72\x7c\x20\x40\x13\x62\x7a\x2a\xf1\x1d\x9d\xca\x64\xbb\x77\ \xec\xfc\x34\x61\xd0\x74\x21\x8a\x02\xc2\x30\xc4\x5a\xdb\xb4\x5e\ \x04\xbc\xc7\xe3\x39\x3d\x7a\x88\x33\x23\xc7\x7f\x92\x5c\x19\xdf\ \xb7\x9e\xbe\x5a\x6f\x02\x80\xf7\xd9\xf3\xa7\x8e\xbf\xfa\xe6\xec\ \xa5\xd3\x58\x6b\x08\xac\x25\x0a\x43\x4a\x71\x44\x29\x8e\x88\xa2\ \x80\xa0\xe5\xc6\xc2\xd5\x29\xde\x7c\xf5\xc0\xb8\xf7\xf9\xb7\x8b\ \x68\x17\x02\x48\x66\xc7\x92\x3c\x4d\xbe\x72\xe4\xb7\x2f\x56\x1b\ \xf9\x12\x5a\x6b\xac\x35\x2b\x35\xb7\xc6\xa2\xb5\x26\xa3\xc1\x9f\ \x5e\xfa\x71\x3d\xad\xd7\xbe\x9c\x96\x27\x0a\xdd\x4a\xd6\x2d\xc1\ \x72\xb8\x5a\x79\x2e\x73\x76\xae\x3c\x3f\xfd\xc5\xbb\x77\x3d\x84\ \xd5\x16\xa3\x9b\xaf\x67\x59\x46\xe2\x32\x5e\xfe\xcd\x0f\x79\x77\ \x6c\xe4\x5b\xf9\xb5\x0b\x7f\x28\xaa\x5b\x18\x00\x40\x77\x6e\x1d\ \x99\x3f\x3f\x39\x64\xfb\xba\xef\xfc\xc8\xe0\x5d\x38\xe7\xc9\xb2\ \x9c\x34\xcb\x18\x19\x3d\xc4\xeb\x2f\xbd\xf8\x7b\x15\x74\x3d\xe3\ \xea\x0b\x85\x35\x0b\x5f\x9d\xde\x07\xd1\x6b\x03\x33\xf6\xf8\xf7\ \x7e\x36\xb0\x63\xf3\x47\x01\xb8\x54\xb9\xc4\x2f\x9e\x7b\x74\xa6\ \xb6\x58\x19\x72\xf5\x85\x2b\x1b\xd5\xdc\x70\xa8\x78\xf3\xde\xfe\ \x4f\xed\xca\x9f\xf9\xe5\xa8\x7f\xf6\x57\x63\x7e\xfb\xae\xcf\xe5\ \x62\x3b\xf6\xde\x8c\xd6\x86\x4a\xb0\x1c\x3e\xab\x9d\xab\x2d\x56\ \x3b\x1b\x5d\x66\xf7\xc4\xa9\xa3\x9c\xfd\xeb\xe1\x1f\xf8\x64\xe9\ \xa7\x37\xa3\x55\xe8\x52\xda\x2e\xc4\xc4\xcf\x07\x9a\xfb\x67\xc7\ \x47\x33\x31\xa5\xef\xd2\x58\xbc\x59\xa9\xff\x6d\xfc\x1b\xf1\xb5\ \x4c\x52\x5f\x15\x9b\x78\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x06\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1c\x10\ \x28\x08\x53\x70\x06\xf9\x00\x00\x05\x88\x49\x44\x41\x54\x58\xc3\ \xed\x96\x7f\x8c\x1d\x55\x15\xc7\x3f\xe7\xde\x99\xf7\x76\xf7\xbd\ \xdd\xad\x94\x50\x2c\x18\x29\x6d\x13\x4d\x40\x13\xff\x60\xf5\x2f\ \x69\x04\xf1\x0f\x53\x88\x91\x96\x36\x16\x34\xc4\x54\xff\x01\x25\ \xb5\x89\xd6\x1f\x31\x21\xd1\x94\xa8\x31\x16\x42\x24\x4a\xb1\x6a\ \x40\x48\x0a\x69\x48\x5a\x5c\x91\x14\x02\x28\xb4\xb4\xb4\x62\xe9\ \xb6\x6b\x6c\x6b\xb7\xdb\xee\x2e\xdb\xdd\x7d\x6f\xe6\xce\xcc\xbd\ \xc7\x3f\x66\x76\xd9\x5a\x6c\xbb\x04\xfa\x17\x27\x39\x99\x37\xc9\ \xcc\xf9\x7e\xee\x39\xdf\x7b\xdf\xc0\x07\x31\x87\x98\x4a\xb2\x79\ \xfb\x07\x47\xbf\xf8\x9d\xfb\x5f\xbc\xfc\xbd\xaa\x69\x2e\xf4\x41\ \x55\x95\x5f\x3c\xba\x7b\x47\x51\x14\xdb\x76\x1d\x18\x1a\x58\xb2\ \x62\xf3\x57\x97\xae\xd8\x7c\xf1\x00\x00\xdd\xfa\x97\xd7\xaf\xab\ \xf5\x34\xb8\xeb\x8e\xbe\xe6\x55\x0b\xea\x0f\xfb\x3c\xf9\xe3\xd5\ \x5f\x7a\xb0\xf7\xa2\x00\x88\x08\xa7\x4e\x9d\xa4\xed\xa1\xe7\x92\ \x26\x1b\xee\xbe\x89\xe5\xd7\x2f\x5e\x45\xe1\x5e\x5b\x74\xcb\xa6\ \xcf\x5c\x8c\x0e\xe0\xd3\x09\x5a\x49\x4a\xbb\x9d\xd2\x4a\x33\x6e\ \xbc\xe1\x13\xac\x5f\xbb\x6c\xd1\xfc\xee\x68\xe7\xa2\x5b\x36\x6d\ \x58\xfc\xe5\x87\xec\xfb\x0b\xe0\x26\x69\xb7\x1d\x69\xe2\x48\x53\ \x47\xd2\x76\x5c\x7a\x59\x2f\xeb\xbf\x79\x63\xd4\x77\xcd\xe5\xf7\ \xaa\x2f\xfa\x97\xac\xd8\x7c\xe5\xfb\x0b\x90\x38\x9c\xcb\x70\x69\ \x46\xea\x32\xd2\x34\x23\xf3\x9e\xe5\x5f\xf8\x24\x6b\x96\x5f\x73\ \x7d\x57\xdd\xec\x59\x7a\xdb\x96\x9b\xe7\x0c\xa0\xaa\xa2\xaa\x72\ \x4e\x80\xac\x45\x3b\xc9\x70\x2e\xc7\xb9\x9c\xac\xba\x3a\x97\xd3\ \x4e\x1c\x57\x5e\x31\x8f\xb5\xb7\x5e\x3b\xff\xea\x85\xcd\x27\x97\ \xae\xfc\xdd\xfd\x4b\x6f\xdb\xd2\x79\x3e\x00\xa9\xc4\xf9\xe5\x23\ \x3b\x5e\xde\xf9\xea\xc1\xbe\x17\x76\x1f\x46\x8c\x05\x14\xcd\x13\ \x42\x9e\x10\x8a\x04\xcd\x53\x42\x91\xb2\xf1\x57\x3f\x43\x55\xd1\ \x19\xf2\xf2\xfd\xb7\x33\x60\x80\x7d\x07\xc7\x78\x6e\xf7\x89\xfd\ \xde\xb3\x6a\xe0\xb1\x35\xfb\xcf\x0b\xf0\xf1\x9b\xd6\xe9\x0f\xd7\ \xad\x66\xbc\xe5\x40\x4c\x99\x08\x2a\x82\x52\xa5\x56\xaf\xc8\x2c\ \xf1\x92\x00\x55\x25\x84\x12\x20\x84\x40\xf0\x9e\x56\xbb\xe0\xcf\ \x7f\x1f\x4e\x46\xc6\xdd\x3a\x44\x1e\x18\x78\x74\xcd\x3b\x03\x00\ \x5c\xf2\xa9\xaf\xe9\xfa\xbb\x57\x31\x91\xe4\x44\x71\x4c\x14\x45\ \x58\x1b\x61\xac\xc5\x18\x8b\x31\x06\x11\x83\xc8\x99\x53\x9a\xbd\ \xf2\x10\xa6\xc5\x03\x21\x78\xbc\xf7\x10\x02\xfb\x0e\x4f\xf1\xfa\ \xe0\xc4\x53\x82\xdc\x39\xf0\xd8\xed\xa3\xef\x6c\x42\xf5\x4c\xb6\ \x52\xd2\x34\xc7\xb9\x02\xe7\x3c\x59\xe6\xc9\xf3\x50\xa5\x52\x14\ \x81\xbc\x50\x0a\x5f\x66\x5e\x4c\x67\x98\x79\x2e\xcb\x3c\x59\x5e\ \x54\x35\x72\xda\xa9\xe3\xaa\x05\x86\xcf\x5e\xdb\x7d\x73\xa3\xc3\ \xec\x5d\xb2\xf2\x91\x65\xb3\x01\xa2\xb7\x5b\x11\x98\x6a\x25\x14\ \xc1\xa0\x18\x54\xab\x2b\x8a\xb1\x8a\x51\xc5\xa8\x20\xa2\x88\x48\ \xe9\x81\x59\xad\x2f\x33\xe0\x7d\xc0\x17\xe5\xea\x7d\x51\x60\x45\ \x69\xb7\x12\xc6\x47\xc6\xe0\xf4\xf0\x15\x45\xd1\xdb\xbf\xf8\xd6\ \xdf\xfc\x14\xf8\xd1\xe1\xc7\xef\x2c\xfe\x07\x20\x45\x4c\x0c\x12\ \x81\x04\x54\x14\x44\xb1\xd3\x1e\x00\xa4\xb2\x40\x39\x7b\x08\x0a\ \x1a\xc0\x87\xf2\xbe\xc8\x03\xed\x76\xc6\xe4\x64\x8b\x89\x89\x29\ \x86\x86\x47\x69\x4d\xb5\x70\x69\x4a\x9a\x26\xb8\xf4\x84\x89\x9b\ \x97\x7d\xaf\x36\xef\x23\x7d\xc0\x0d\x67\x00\xbc\xf1\xe6\x51\x1a\ \x8d\x6e\x7a\x7a\x7b\x69\x76\x37\xe9\xec\x84\x5a\x5d\x88\x63\xc1\ \x5a\x45\x8c\x20\x95\x19\x43\x50\xbc\x0f\x14\xde\x93\xe7\x1e\x97\ \xe5\xb4\x5a\x29\xce\x39\xb2\xcc\x91\x3b\x87\x73\x29\x21\x80\x18\ \x53\xbe\x6b\x04\x1b\x59\x22\xab\x84\xc2\x9d\x39\x02\x08\x8c\x9f\ \x6e\x91\x38\x70\x85\xa5\xed\x84\xce\x2e\xa8\x77\x28\xb5\x9a\x27\ \xb2\x16\x6b\x2d\xc6\x08\xd3\x3d\x98\xdd\xf6\xc2\x2b\xc6\x58\x6c\ \x14\x61\xbd\xc7\xdb\x02\x63\x2d\x62\xcc\x8c\x81\xbb\xba\xba\xc8\ \x1b\xf3\xbd\x0b\xf1\x4f\xc4\xe7\x3f\x3e\x0b\x00\x11\x44\x0c\xc6\ \x96\x85\xa2\xb8\x46\x1c\x47\xc4\x71\x4c\x1c\x95\x00\x22\x52\x7a\ \x60\x66\xf6\x1e\x11\x5f\xed\x08\xb0\x21\x60\x2b\xf1\x69\x61\x1b\ \x59\x1a\xdd\x0d\x46\xc7\xd3\x23\xb9\x2f\xd6\x1c\xeb\xff\xfe\xce\ \xb3\x4c\x08\xa1\x9c\x2b\x8a\x11\xc1\xda\x88\x28\x8a\x88\xa3\x88\ \x5a\x5c\xfe\x8e\xac\x45\xaa\x0e\x94\x00\x01\xef\xab\x7b\x20\x68\ \xa8\xba\x64\x31\xd5\x96\xed\xe8\xaa\x93\xbc\x35\xc5\xc9\xe1\xf1\ \xc7\x15\xb3\x76\x68\xe7\xc6\xb7\xce\xda\x05\x7b\x47\xda\xf6\x5b\ \xf7\xdc\xcb\x84\x36\xe9\xea\xec\xa6\xf1\xa1\x1e\x9a\x3d\xdd\x34\ \x9a\x4d\x3a\xea\x75\xea\xf5\x1a\x51\xd5\x81\x90\x16\x68\x28\xdd\ \xef\x7d\x98\x39\x17\x82\x06\xbc\xaf\xda\x6d\x04\x63\x0d\xb5\x4e\ \xcb\xa1\x7f\x0e\x4c\x4d\x4c\xb4\xee\x12\x31\x0f\x0f\xbf\xb4\xe9\ \xac\x83\x28\x02\x70\xb9\xd1\x85\x0b\x2e\xfd\xdb\x3f\x9e\x79\xae\ \x2f\x49\x33\x44\xaa\xe3\x21\xe4\xe0\x33\xd4\xe7\x68\xc8\x68\xce\ \xeb\xe6\x1b\xdf\x7d\x10\x9f\x15\xa8\x2a\x62\xaa\xd6\x87\x80\x35\ \xa6\x5a\x35\xd4\x3a\x6b\x8c\x8c\x1d\xe1\xcd\xbd\xfb\x5e\xf5\x85\ \xae\x1e\xd9\xf5\xdb\x81\xff\x77\x14\x47\x00\xd7\x7d\xb8\x23\xfc\ \x49\xf5\xd3\x7f\xb8\xef\x1e\xce\x15\x1d\x3d\xcb\x34\xaa\x45\x58\ \x15\x7c\x08\x95\xb8\xe2\x83\x47\x8a\x72\xe5\x5a\x0f\xec\x79\xe1\ \xaf\xe1\xe4\xd1\xe3\xf7\x21\xf6\x07\x63\x7b\x7e\x9f\x9f\xab\xe6\ \x8c\x07\x56\xc8\x39\xff\x08\xcb\xb0\x11\x51\x2d\x86\x20\x18\xef\ \x61\xd6\x18\x4c\x3d\xe2\xc4\xf0\x41\x5e\xd9\xf1\xf4\x7f\x9c\xf3\ \xb7\x9f\x7e\x63\xeb\xb3\xe7\x2f\x78\x86\x09\x2f\x20\x6c\x4c\x14\ \xc7\x54\xa6\x2f\xc5\x0d\xb8\xba\xf2\xfc\xf6\x27\x18\xdc\xb5\x7b\ \xab\x48\xfc\xf5\xc9\x43\xdb\x47\x2f\xb4\xe4\xdc\x00\xaa\x7d\x2e\ \x36\x50\xf8\x40\x88\x0c\x83\xa7\x8e\xf0\xec\x96\x87\xda\xad\x91\ \xb1\x6f\x4b\xd4\xf1\xeb\xc9\x43\xdb\xe7\x54\x72\x4e\x00\x6a\xca\ \x3d\xad\x22\x4c\xc5\x81\x67\xfa\x9f\x60\xdf\xd3\xdb\x5e\xd3\xa0\ \xab\x93\x63\x2f\x1d\x98\x93\xf2\x5c\x01\x54\x95\x8f\x7e\xee\x2b\ \x8c\x99\x9c\x7f\x9f\x18\x60\xc7\xe6\x07\xc2\xe8\xe0\xbf\x7e\x2e\ \xc6\x6c\x48\x8f\xbd\x9c\xbd\x1b\x71\x98\xf5\x3d\x70\xbe\x38\xde\ \x52\x59\xb9\x61\xe3\xe9\x50\xe4\xdd\xbb\x9e\xdc\x76\x5c\x7d\xb8\ \xc3\x0d\xbd\xd2\xff\x6e\x85\xa7\xe3\x82\x3f\x4a\x17\x36\x44\x87\ \x8e\x1e\xff\xfc\xf0\xfe\x03\xab\x45\xec\xc7\xde\x0b\xf1\x0f\x02\ \xe0\xbf\xbf\x46\x34\x5d\xfd\x94\x94\xb2\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\ \x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x06\x05\x01\ \x20\x15\xb8\xe0\x48\xab\x00\x00\x08\x6f\x49\x44\x41\x54\x58\xc3\ \xcd\x97\x6b\x70\x54\xe5\x19\xc7\x7f\xef\xee\xd9\xdd\x6c\x76\x37\ \xe4\xb2\xd9\xb0\x21\x97\x4d\xb2\x41\x01\xb9\x88\x0e\x97\xa9\x94\ \x16\x6c\x2d\x9d\x06\x5b\x14\x53\xbc\xe1\xa8\xb4\x8a\xb1\x53\x2b\ \x15\xd1\x4a\x5b\xab\x53\x40\x6a\x69\x6b\x45\x8d\x9f\x3a\xd3\xe2\ \x50\x82\x8c\x15\xa6\x45\x2e\xf6\x16\x2c\x10\x03\x8a\x95\x4b\x28\ \x04\xcc\x86\x5c\x76\x37\xc9\x9e\xbd\x9d\xdb\xdb\x0f\x10\x9a\x84\ \x70\x19\x3f\xf5\x3f\xf3\xcc\x99\xf3\x9e\x77\xce\xff\xff\x5c\xde\ \xe7\x39\x07\xae\x0e\x3f\x20\xae\xb2\xc7\x77\x0d\xef\x19\x15\xf6\ \x91\x0b\x6e\xb7\xbb\xcc\x30\x8c\x30\x10\xa8\xa9\xa9\x79\xb9\xe1\ \xb1\xc7\x7e\x77\xae\xb3\xb3\x21\x1a\x8b\xb5\x00\x05\x40\x70\x88\ \x5d\x37\x65\xf2\x94\xe6\xfb\xef\xbb\xf7\x67\xc7\x4f\x9c\xa8\x48\ \xa5\x52\xed\xc0\xb8\x11\x7b\x2e\x31\xb7\xdb\x6d\x37\x0c\x63\xe0\ \x72\xa2\xbe\x2c\xa5\x94\xbb\x77\xef\x91\x8f\x3f\xd6\x20\x27\xdf\ \x30\xd9\x2a\x2f\x2b\xb7\x36\x6f\xde\x2c\x47\xe2\x9d\x77\xde\x91\ \x63\x4b\xc6\x5a\xb3\x66\xce\xb2\xbe\xd7\xd0\x20\x77\xee\xdc\x29\ \xaf\x05\xc0\xbc\x41\x32\x65\x14\x01\x73\x16\x2d\x5a\x84\xcb\xe9\ \xa2\xb6\x36\x8c\x65\x9a\xa2\x3a\x54\x45\x53\x53\x13\x13\x27\x4d\ \x62\xd7\x7b\xef\xe1\x70\x3a\xf9\xfa\x82\x05\x6c\xf8\xe5\x06\xae\ \xbf\xfe\x3a\xd1\xd3\xd3\x4b\x71\x71\x80\x37\x1b\x1b\x69\x6c\x6c\ \x64\xd1\x1d\x77\xb0\xb0\xae\x0e\xdd\x30\x86\xbd\x58\x00\x79\x79\ \x79\x97\xac\x0d\xc5\x92\x95\x4f\xad\xfc\x43\x3c\x16\x93\xa1\x50\ \x48\x1c\x38\x78\x00\x2d\xab\x21\x84\x20\x12\x89\xa0\x1b\x26\xc2\ \xae\x30\xae\x34\x88\xae\xeb\xf4\xc5\xa2\x94\x95\x95\x91\xc9\x64\ \xf0\x7a\xbd\xcc\x9a\x39\x13\xaf\xd7\xcb\xb1\x13\xc7\xa9\x1d\x3f\ \x9e\xa5\x4b\x97\x62\x9a\xe6\xf0\x62\xf1\xf9\x10\x42\xcc\x07\xf6\ \x00\xd8\x86\x3c\xb3\x3d\xfc\xd0\xc3\xaf\xdf\x5e\x57\x27\x6b\x6a\ \xaa\xc5\xb6\x6d\xdb\xe8\xe9\xee\xa1\xbf\xbf\x9f\x54\x3a\x85\xcb\ \xe5\x22\x10\x08\xf0\xcd\x85\xdf\xe0\xa6\x1b\xa7\x93\x4c\xa9\x38\ \x9d\x4e\xfa\xfa\xfa\x50\x55\x95\xae\xae\x2e\x9a\xb6\x6e\xa5\x74\ \x5c\x19\x8b\xef\x5c\xcc\xa1\xd6\x56\x12\xaa\x8a\x10\x02\x61\xb3\ \x5d\xb4\x91\x18\xba\xf2\x9d\x59\x33\x67\xfa\x36\x6f\xd9\x22\xb6\ \xef\xd8\x81\xae\x1b\xc4\x62\x31\x74\x5d\x47\xcb\x6a\xe8\x86\x81\ \xc7\xeb\x61\xda\xb4\x29\xcc\x9b\xf7\x25\xdc\x39\xb9\x68\x9a\x86\ \x61\x18\x08\x21\xb0\xa4\xc5\xf4\x1b\xa7\x73\xe8\x50\x2b\xa7\x4e\ \x9d\x62\xf1\x9d\x8b\x59\xbb\x66\x0d\x0e\x87\x03\x9b\x10\x17\x6d\ \x24\x06\x6b\x40\x59\xf4\xad\x45\x2f\x04\x02\x01\xf9\xb5\xf2\x32\ \x51\x1b\x0e\xb3\x7b\xf7\x6e\xf6\xbe\xbf\x17\x35\xa9\x12\x1c\x1b\ \xc4\x9d\x93\xc3\xb9\x48\x84\xe7\x9f\x7f\x01\xb7\xdb\x8d\xa1\xeb\ \xb8\xdd\x6e\x00\x0c\xc3\x40\x4a\x49\x28\x54\x49\x38\x1c\xc6\xef\ \xf7\xa3\xe9\x3a\x6d\x27\x4e\x90\x48\x24\xf0\x78\x3c\x23\x13\x2e\ \x87\xd5\x80\xdf\x5f\xf4\xc8\x92\x6f\xdf\xbd\xf1\xd8\xb1\xa3\x68\ \x89\x3e\x72\xbd\x1e\xd4\xac\xc9\x91\x23\x9f\x90\x97\xe7\xc3\xa1\ \x28\x54\x56\x86\x48\xa7\xd3\xb8\x73\x73\x51\xec\x76\x54\x55\x25\ \xc7\xed\x46\x4d\x24\xa8\xae\xae\xa6\x79\xdf\x3e\x2a\xca\xcb\x70\ \x0a\x13\x45\x71\x60\xda\x1c\x4c\x98\x38\x91\xb1\xa5\xa5\xfc\x70\ \xc5\x0a\x0c\xc3\x44\xff\xec\x1c\x9f\xad\x7d\x91\xc3\xd1\xde\x8d\ \x4b\xde\x7e\x7b\xf9\x81\x1b\x6e\x38\x2f\xa0\x36\x1c\x3e\x1d\x2c\ \xcc\xab\xa8\xf2\x09\x51\x3e\xae\x94\xc2\x40\x10\x4f\x51\x09\xff\ \x3c\x7c\x94\x7d\x2d\x87\x28\xf6\x17\xf3\x95\x5b\x6f\xa5\xb7\xb7\ \x17\x35\xa9\x62\xb7\x2b\x04\x02\x01\x0a\x0b\x0a\x68\x69\x69\x21\ \x1a\x8b\xa1\x98\x19\x0a\x48\x13\xae\xaa\xc0\x1f\x28\xc1\xe7\x1f\ \xcb\xdb\xbb\x9b\xe9\xe8\xee\xe5\xe0\xc1\x83\xa8\x6a\x94\xd4\x9f\ \x6e\x21\xf9\xfb\x0a\x7a\x5a\x8f\x60\xf3\x78\x76\xce\x68\x6b\xbb\ \x4d\x01\x4a\x1d\x0e\x67\xe5\x18\x3d\x8e\x2b\x9e\x24\x9d\xea\x24\ \xde\x9d\x4f\xdc\xe5\x23\x27\xde\x47\xa2\x2f\x4e\x41\x7e\x3e\x89\ \x44\x82\xfd\xfb\xf7\xb3\x76\xfd\x3a\x6c\xc2\xc6\xaa\x95\x4f\x33\ \x7b\xf6\x6c\xe2\xf1\x38\x67\xdb\xdb\x99\xe8\xcd\x92\x6b\xcf\x92\ \x39\xd5\x47\x4a\x0d\x90\x3a\x7b\x14\x77\x5f\x27\xed\xed\x31\x5a\ \x5b\x0f\x13\xea\xab\x27\xee\x1c\xe0\xd1\x93\xa7\x59\xdb\x1b\x23\ \xaa\xaa\x5f\xfd\xbb\xdd\x7e\x8f\x02\xe4\xd8\x15\x85\x7c\x2b\xc9\ \x18\x8f\x8d\xf1\xc1\x42\x1c\xb9\x5e\x4e\x77\x74\x51\x55\x94\x47\ \x59\x89\x9f\x59\xb3\x67\xb3\xec\x91\xef\xb2\xfa\x27\x3f\xc6\xe5\ \x72\x01\xb0\xe7\xfd\xbd\x74\x75\x77\xf3\x66\x63\x23\xb1\xee\x08\ \xf6\x6c\x0f\x25\x25\x05\xd4\x8c\xf3\x23\x33\x03\x44\x3a\xfa\x98\ \x58\x98\x4f\xb3\xdb\x47\x74\xff\x1d\x94\x57\xa5\x58\xf4\x23\x0f\ \xd1\xbe\x24\xeb\xa7\x66\xcd\xba\x93\x9a\xbd\xc3\x92\x52\x01\xfe\ \x13\x8f\xc7\xd3\xa5\xb7\xdc\x94\x33\x21\x73\x52\x84\x4b\x0b\x10\ \x76\x07\x4a\xd6\x43\x4b\x4f\x0a\x47\x5e\x80\x85\x0b\x17\x52\x5e\ \x5e\x0e\x80\x25\x25\x02\x10\x42\x30\xb6\xa4\x84\xfa\xfa\x7a\xde\ \x7d\x77\x3b\xfe\xe2\x00\xd5\x45\x0a\x35\x45\xb9\xb8\x84\x0b\x9f\ \xcd\xe0\x88\x52\x8a\x10\x27\xf8\xe2\x14\xc9\xbc\xef\x7b\xc8\x68\ \x16\x41\x5f\x17\x2f\xad\x14\xf6\xbe\xb4\xf3\x17\xd3\xee\xcf\xbe\ \x65\x07\xf0\x7a\x3c\xfb\x92\xce\x31\x4b\x67\xce\x99\x2b\x83\x5e\ \x45\x98\x42\x41\x54\x4e\xa6\xbb\x78\x2a\xb9\x5e\x2f\xcb\x97\x2f\ \xc7\xb4\xac\xf3\x67\x7a\x84\x05\x83\x41\x4e\x9e\x6c\x23\xe3\x2d\ \x61\xfa\xc4\xf1\xe4\x48\x8d\xdc\x02\x3f\xe9\xca\x19\x6c\xfd\x77\ \x3f\x1b\x96\x0f\xb0\xaa\xd1\xc5\xc9\xcf\x4c\x8c\x54\x84\x1d\xeb\ \xa0\xa7\x5f\xd9\x7d\xf3\x83\xd9\x06\x40\xbb\x78\x30\xc6\xe4\x8d\ \x09\x97\x96\x06\xd7\x8f\x0f\x87\xe7\x55\x86\x42\xbe\x9c\x9c\x1c\ \xc6\x4f\x98\xc8\x7d\xf7\xde\x83\xae\xeb\xe7\x1b\x89\x10\x17\xbd\ \x1f\x34\x00\x87\xc3\xc1\xa6\x4d\x9b\xd8\xb5\x6b\x17\x9e\x1c\x27\ \x42\xd8\x91\xe9\xe3\x3c\xb8\x20\xce\x1f\xf7\x0a\xde\xfa\x73\x9c\ \x44\xa2\x97\x9d\xeb\x92\x94\x85\xe7\x50\x3c\x67\xcf\xfd\xc0\x36\ \x20\x31\xda\x30\xba\x45\x4a\x29\xb3\xd9\xac\x54\x93\x49\xa9\xaa\ \xaa\x4c\x26\x93\x32\x95\x4a\xc9\x74\x3a\x2d\x33\x99\x8c\xcc\x66\ \xb3\x52\xd3\x34\xa9\x69\x9a\xd4\x75\x5d\x6a\x9a\x26\x0d\xc3\xb8\ \x38\x6c\x32\xd1\x0f\xa5\xfc\x68\xbe\x7c\x73\xcd\x02\x59\x5e\x51\ \x2d\x8b\x4b\x4a\xe5\x9e\x5f\x29\x32\xb2\xa3\x52\x1e\xf9\xe4\x53\ \x09\xdc\x35\x38\x89\x6d\xa3\x08\x70\x02\x64\x35\x0d\xa4\x1c\x35\ \xec\x83\x9e\x0b\x21\x90\x17\xf6\x0c\x36\xa4\x4c\xe2\x0c\x56\xfb\ \x4f\x69\x3e\x56\xcc\x4f\x37\xb6\xa1\x19\x92\xdf\x3c\xda\xc3\xa4\ \xb0\x97\xe3\x39\xaf\xe3\xc9\xcd\x01\x48\x02\xe6\xe5\x04\xfc\xaf\ \x43\x09\x01\xd7\x40\x7e\x7e\x4d\x62\x1a\x29\x8c\x93\xcf\x72\x3a\ \x5a\xcc\x7d\xcf\x7c\x8c\x25\xe1\xe9\xc5\x5d\xdc\x36\xdb\xce\x47\ \x72\x03\xee\xdc\x7c\xf2\xf3\xf3\x01\xd2\xa3\xcd\x82\xe1\x02\x06\ \xf3\x3d\xf4\x7e\x08\xe9\x70\x72\x01\xc2\x86\x76\xfc\x29\xd2\x56\ \x01\x8b\x9f\xd8\x8f\x34\x34\xea\xe7\xf4\xb0\xac\x4e\xe7\x80\xba\ \x1a\x5c\x65\xf8\xf2\xf2\x06\x05\x70\x55\x01\x17\x58\x87\x79\x3d\ \x34\xdc\xc3\xa2\x61\xb3\xa1\x1e\x79\x12\xe1\xf4\x53\xf7\x68\x33\ \x99\x74\x9a\x59\xd7\xab\xbc\xf8\x50\x92\x7f\x45\x1f\x62\x80\x09\ \xe4\xe6\xba\x09\x85\x42\x97\x50\x5c\x35\x02\x43\xc9\x46\x4b\x81\ \xcd\x6e\x27\xf1\xe9\x6a\xc6\x14\x14\x73\xe7\xf2\xed\xf4\x46\xfb\ \xa9\x1a\x9b\xe5\x8d\x1f\xc4\x38\xdc\x7b\x1b\x6d\x89\xd9\x38\x1d\ \x76\x42\xa1\x10\x96\x65\x61\x8d\xe0\x51\xb8\x02\x46\xf3\x7e\xe8\ \xd5\x66\x57\xe8\x3f\xf6\x32\xf9\x3e\xc9\x92\xc7\xb7\xd2\x76\x46\ \x25\xdf\x6b\xb1\xe9\x99\x1e\x8e\x76\x57\xb3\xf5\xe3\x9b\x09\xf8\ \x7b\xa8\xaa\x08\x32\x30\x30\x40\x26\x93\x91\x19\xdd\x14\x40\xea\ \xaa\x02\xc4\x90\xd9\x3d\xb2\xda\x07\xaf\xd9\x74\x92\x4c\xf4\x20\ \x0d\xcf\x1f\xe0\x83\x8f\xc1\xa9\xc0\xe6\xe7\xba\xc8\x88\x52\xfe\ \x72\x66\x19\x93\x26\x14\x31\x6d\xda\x34\xa6\x4c\x99\x82\x65\x99\ \xf2\xec\xd9\xb3\xe2\x81\x25\xf5\x4f\xe4\x17\x14\x7c\xd8\x17\x8f\ \x5f\x3d\x02\x8c\x08\xf9\x20\xce\x8b\xb1\xa1\x46\xdb\xc9\x8e\x59\ \x42\xbf\xd1\x8d\xae\xb7\xb3\x65\x75\x0f\x3e\xaf\x9b\x5f\xff\xe3\ \x6e\x8a\x8b\x15\x82\xc1\x20\x93\x27\x4f\xc6\x30\x74\xd9\xd1\xd1\ \x21\x9e\x5c\xb1\xe2\xb9\x03\xfb\x0f\xbe\x02\x5c\xfc\x58\xbc\x72\ \x0a\x46\xdc\x4b\x29\xb1\xd9\x6c\x48\x29\xb1\xdb\x6d\xc4\xbb\x3e\ \xa2\xbf\xa7\x95\x65\xb7\x3b\xb8\xeb\x0b\x36\xa6\x56\x1b\x2c\x6b\ \xbc\x95\xa9\xd3\x8b\xa8\xad\x0d\x33\x77\xee\x5c\x4c\xc3\x20\xd2\ \x19\x11\xeb\x5e\x5a\xb7\xb6\x69\x4b\xd3\xcf\xb9\x70\xfe\xaf\x49\ \xc0\x68\xc4\x83\xd1\x50\x13\x09\x5a\x3e\x78\x8f\xd2\xa2\x18\x29\ \x35\x4d\x6e\xc5\x03\xfc\x35\x73\x23\xf7\x2e\x75\x30\x7f\xfe\x7c\ \x00\x0c\x5d\x27\xd2\x19\xe1\xb5\x37\x5e\x7b\xfd\xd5\xdf\x6e\x5c\ \xc5\x90\x2f\xa1\x2b\x61\x9e\x94\x52\xa6\x2e\xb4\x5d\x4d\xd3\x64\ \x36\x9b\x1d\xd6\x72\x0d\xc3\x94\x5b\x9b\x36\xcb\xc2\xc2\x22\xf9\ \xb7\xed\x1b\x64\x3a\x99\x90\xba\x69\xc9\x68\x34\x26\x9b\x9b\x9b\ \xa5\x94\x52\x6a\x5a\xd6\x6a\x6f\x3f\x2d\x9f\x79\xf6\xe9\xd7\xae\ \x44\x76\xf9\x22\xbc\x4c\x61\x4a\x29\x51\x14\x3b\x2e\xa7\xc2\xb9\ \xce\x0e\x1c\x4e\x17\x96\x65\xa1\xeb\x1a\xa6\x69\x60\xb3\xd9\x91\ \xd2\x92\x91\x48\x44\xac\x5b\xff\xd2\x9a\x57\x5f\x79\xf5\xd9\x6b\ \xf1\xfa\x92\x08\xa4\x47\x89\xc0\xa0\x19\x86\x21\x4d\xd3\x94\xa6\ \x69\x4a\xcb\xb2\xa4\x69\x9a\x32\x93\xc9\xc8\xee\xee\x6e\xd9\xda\ \xda\x6a\x9d\x6e\x3f\x2d\xeb\xeb\xef\x5a\xc5\xd5\x1a\xdd\x95\x04\ \x7c\x1e\xa8\xe9\xac\xdc\xdf\x7a\x58\xce\x98\x39\xe3\x71\x46\xf9\ \xef\xbc\xa6\x14\x38\x1c\x8e\x33\x17\xfe\x5c\x3e\x2f\xd4\xe2\x40\ \xe0\x43\x46\x54\xfb\xff\x2d\xfe\x0b\xd8\x1e\x7a\xb6\x27\x17\x6f\ \x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x40\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x06\ \x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\x5e\ \x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x1c\x11\ \x27\x1e\x21\xfe\xc5\x50\x00\x00\x05\xa1\x49\x44\x41\x54\x58\xc3\ \xed\x96\x6f\x68\x9d\x57\x1d\xc7\x3f\xe7\xcf\xf3\xdc\xe7\xde\xdc\ \xe4\xa6\x09\x5d\x4c\xd3\xad\x4d\x93\xac\xb6\x04\x22\x6d\x5f\xcc\ \xce\xa1\xfb\x23\x93\x31\x89\x56\xb7\x16\xf4\x45\x1d\x88\x30\x10\ \x45\x10\x36\x41\xd6\xe1\x1b\x91\xa2\xe0\xe6\x0b\x5f\x64\x73\x8d\ \x56\x41\x18\x22\x45\x2a\x1d\xa2\x5d\xb0\xab\x5b\x60\xa2\x6e\x1d\ \x65\x6d\x59\x5b\xb3\xa4\x5d\xf3\xef\xfe\x7b\xee\x73\xce\xf9\xf9\ \xe2\xde\x94\xa4\x71\x9a\xb8\xd6\x37\xfa\x85\xc3\x73\x5e\x3c\xe7\ \xfc\x3e\xe7\xf7\xef\x1c\xf8\xbf\x6e\x92\xbe\xfe\xc3\x89\x9e\x5f\ \x9d\x3c\xb7\xf7\x37\xa7\x2e\x44\xeb\x59\x67\x3f\xa8\xe1\xa1\x47\ \x7f\x82\xc0\xc1\x8b\xef\xce\x3d\xd3\xdf\x7b\x67\x71\xec\xd8\xdf\ \x26\x44\xe4\x1e\xa5\xd4\x9a\xd6\xeb\x0f\x62\x7c\xdb\xbe\x1f\x97\ \x7c\x56\x3b\xda\xdf\x93\x7b\xfe\xe0\xe7\x77\x15\x7d\x3e\xcf\xc4\ \xe4\xd9\x8f\xfd\x57\x3c\xb0\xed\x33\x3f\xfa\x28\x3e\xfd\xd9\xe8\ \x7d\x3b\xfa\x47\x1f\xde\x4d\x40\x33\x97\x7a\xae\xcc\x4c\xb3\xd6\ \xd3\xff\x47\x00\x03\x8f\x8c\x69\xc9\xd2\x27\xbb\xda\xcd\xa1\x2f\ \x1f\xb8\xdb\x6e\xde\xd2\xc3\x62\xb5\x8e\x08\x28\xc0\xa7\x0b\xeb\ \xda\x6f\x5d\x00\x83\xfb\x8f\xf4\x49\x56\xfb\xe9\x9e\x9d\x1b\x3f\ \xb1\xef\xa1\x11\x94\x35\x94\xcb\x55\x44\x04\x68\x01\xd4\x17\x6f\ \x0d\xc0\xd0\x81\xf1\xd1\xc4\xca\xd8\xe8\x27\xb7\x77\x6f\x1f\xba\ \x8d\x7a\x96\xa1\xb2\xac\x65\x16\x04\x41\x29\x85\x6f\x94\x6f\x2e\ \xc0\xd0\x81\xf1\x3c\x22\x87\xb7\xf4\x14\x1e\x7f\xf8\xe3\xb7\x93\ \x4b\x0c\x95\x6a\x1d\xa5\x14\x0a\x05\xad\x78\x8b\x34\xa7\x3e\xfd\ \xd7\x00\x22\xa2\x00\x94\x52\xf2\x6f\x01\x86\xf6\x8f\x0f\x6b\xe4\ \xe7\x7b\x47\xba\x87\x47\xb6\x6f\x40\xc4\x91\xa6\x01\xad\x34\x4a\ \xeb\x15\x00\x4b\x14\x21\xab\xb2\x61\xc7\xa7\x45\xd9\x04\x1d\xe5\ \xd1\x36\x8f\x8a\xf2\xa0\x34\x04\xcf\xe7\xbe\xfa\x2c\xf7\xec\x1e\ \x3c\x2d\x22\x77\x35\x0f\xf1\xcf\x4f\x0d\x22\x8f\x97\xda\xcc\xe1\ \x7b\x77\x75\xe5\x4b\x1d\x11\x5a\x1b\x8c\x31\x68\x6d\xd0\xba\x05\ \xa0\xf4\x0d\x19\x2f\x14\x72\x11\x12\x02\x41\x02\xc1\x07\x42\xf0\ \x04\xef\xf1\xde\xe1\xbd\x47\x24\xf0\xdc\x91\xe3\xbc\xf9\xdb\xc3\ \x4a\x29\xb5\xda\x03\x43\xfb\x8f\x74\x4b\x08\x63\x03\xbd\xd1\xe8\ \xc8\x60\x01\x6b\x1c\x69\xaa\x30\x06\x8c\x05\x63\x14\xda\x28\xb4\ \x08\x5a\xcb\x0a\x00\x11\x98\xaf\x34\x08\x21\x5c\x37\xea\x9c\xc7\ \xbb\x0c\xe7\x32\x5c\x96\xa1\x95\x30\x73\xf5\xda\xf5\x75\x2b\x00\ \x06\xf7\xbf\x70\x6f\x64\xc2\xf8\xf0\x1d\xa6\x6f\x63\xa7\x90\xa6\ \x0d\xbc\x8f\xb0\x41\x61\xad\x22\xa0\x11\x11\x0c\x20\xa2\x10\x14\ \x5a\x2d\xcf\x03\x41\x42\xc0\x07\x85\xf7\xe0\x1d\x38\x17\x70\x2e\ \x90\x35\x02\x59\xe6\x49\x22\x0d\xe2\x57\x26\xe1\xc0\x23\x63\x16\ \x78\xba\x94\x6b\x3c\x71\xe7\x26\x74\x6c\x33\x6a\x75\x4b\x1c\x81\ \x97\x96\x61\x0c\xa2\xa4\x69\x2b\x28\xd0\x1a\x25\x06\x51\x9a\x95\ \x41\x50\x88\x40\x10\x8d\x97\x26\x88\x73\x42\xe6\x02\x8d\xcc\x53\ \x88\xcd\x6a\x00\x15\xfc\xf1\xde\xce\xec\xfe\x0f\x75\x78\x5c\x0a\ \xbe\xa1\x88\xe2\x1c\x22\x4d\xc3\x28\x41\x69\x41\x19\xd0\x41\xa1\ \x45\x23\xa2\x5b\x25\xb8\x34\x96\x8a\x51\x23\xad\x6f\x08\x0a\x1f\ \x14\xce\x43\xe6\x02\x1a\x45\xa9\x2d\xbf\x1a\x20\xf8\x06\xe2\x1d\ \xb3\x73\x65\xe2\x38\xc2\x18\x4b\x10\x8d\x28\x0b\x2a\x80\x0e\x68\ \x0d\xda\x80\xb1\x9a\x20\x0a\x23\x0a\xd0\x28\x65\x50\xba\x75\xa5\ \x84\x80\x22\x80\x04\x44\x14\x71\x14\x53\x4c\x2c\x95\x32\xf8\xb4\ \xc1\xd4\xcc\x3c\xaf\x4c\xbe\x05\x12\x6e\x00\x70\x8d\x4f\x5d\xbc\ \xe2\x9e\x8a\xc4\x3d\x59\x9d\x7d\xc7\xb4\x15\xf2\x6c\xe8\xda\x40\ \x67\x67\x27\x1d\x25\x28\x62\xb1\x11\x28\x65\xb0\xc6\x10\x5b\x4b\ \x92\x8b\x88\xa2\x08\x6b\x4d\xb3\x2c\x01\x1f\x02\x99\xf3\xa4\x28\ \x82\x13\xde\x9b\xab\x30\x75\x65\x8e\x4a\x79\x91\x6a\xa5\x4c\xb5\ \x52\xc6\xda\x08\xb8\xc1\x03\x17\x8e\x7d\xc3\x01\xdf\xde\xfc\xc0\ \xa1\x13\x49\xe7\xa6\x71\xa3\xd2\x3b\xae\xcd\x96\xa9\xa5\x30\x5f\ \xf1\xb4\x15\x1d\x85\x36\xdf\x1c\x05\x47\x3e\x49\xc8\x27\x39\x92\ \x44\x88\xe3\x98\xc8\x02\x4a\xe1\x7d\xa0\xd1\x70\xd4\xd3\x06\xf5\ \x7a\x4a\xad\xe6\x30\xc6\x62\x6d\x84\xb5\x4d\xcf\x62\x59\x11\x82\ \x15\xd7\xf1\xa5\x97\x0e\x9d\xac\x55\xaa\x1f\x29\xd7\xdc\x2f\x0b\ \x1d\xed\x24\x85\x04\xa3\xcd\xf5\x1e\xb0\x34\xac\x35\x44\x91\x25\ \x8e\x23\x92\x24\x26\x9f\xcf\x53\xc8\xe7\x49\x92\x1c\x71\xbc\xe4\ \x19\xbb\x6c\x8d\x45\xb7\xe6\xda\xd8\x15\x21\x58\xf5\x1e\x98\x3a\ \xf9\xbd\xd9\xac\x5e\x7b\x74\xfa\xef\xd3\x8f\x2d\x2c\xcc\x96\x73\ \xc5\xb8\xd9\x78\x94\x46\xeb\x66\xd9\x69\xad\xd1\x5a\x63\x8c\x21\ \xb2\x4b\x10\x4d\xe3\xb9\x42\x8e\xb8\x10\x13\x17\x62\x72\xc5\x1c\ \x49\x31\x21\xdf\x91\xa7\xd0\x51\xa0\x50\x2a\x52\xe8\x2c\xb2\xb5\ \x7f\x33\xe7\xe5\xfc\xea\x3e\xb0\xa4\xe9\x53\xcf\x02\x3c\xef\x77\ \x3f\x36\x51\x9e\x9f\x3b\x3a\x38\xbc\x73\x4f\x7b\x54\x02\xb9\xb1\ \xb1\x37\xf3\xbe\x59\xff\x02\x56\xf3\xfd\x27\x0e\x92\xd6\xea\xa0\ \x63\x94\x89\x50\x3a\x02\x13\x01\x1a\x91\x40\xcf\x6d\xdd\x0c\x6c\ \xdb\x32\xb1\x95\xad\xef\x0f\xb0\xa4\xab\x93\xcf\x9d\xed\x1a\xf9\ \xe2\xde\xbf\x9e\x3e\xfd\x9d\x4d\x03\xd3\xdf\x1c\xde\xb5\x57\x87\ \x10\xf0\xde\xe3\xbd\xc7\x79\x47\xd6\xc8\x40\x68\xde\x84\x16\xd2\ \x7a\xca\xdc\xdb\xaf\xbc\xef\x8b\xe4\x6b\x22\x3c\x05\xd7\x3b\xe1\ \x9a\x9f\x2e\xa5\x9d\x9f\xbd\xaf\xad\xd4\x76\x64\xcf\xfd\x0f\xf6\ \xf5\x6d\xdc\x46\x62\x23\x72\xb9\x1c\xb9\xb8\x59\x09\x28\x45\x88\ \x35\x3f\xf8\xd6\x97\x98\x7b\xeb\xe5\x35\xef\x6b\xd6\xfa\x63\x7a\ \xe5\xcc\x79\x95\xdf\xf4\xc2\x85\x37\xfe\x3c\x94\x9a\xc6\x8e\x8d\ \xb7\xf7\xa3\x9c\x10\x24\xe0\x7c\xc0\x65\x8e\x86\x82\xc9\x97\x8f\ \x53\xbf\x7a\xe1\xe9\xb5\xee\xbb\xae\x47\xe9\xc2\xd9\xe3\xef\x85\ \x20\xfb\xde\xfc\xc3\xef\xbe\x72\xec\xe8\x33\xd5\xcb\xb5\x69\x6a\ \x69\x83\x6a\xb5\xd6\x1c\x69\xda\xec\x56\xeb\xd0\xfa\xfe\x06\x1a\ \xd7\xce\x91\xcd\xbf\x33\xe9\xa4\xfd\xc5\x73\xaf\x9f\xbe\xdb\x75\ \xb5\xf5\x96\xba\x7b\x71\xb5\x94\xcc\x28\xde\x78\xed\xf7\xa4\x33\ \x6f\xdf\x1a\x0f\x2c\x57\xed\xe2\xa9\x33\x59\x3d\xbd\xeb\xf5\x17\ \x7f\x71\xf8\xc4\xaf\xc7\xc2\x8c\x2c\x52\x8f\x15\xb1\x8d\x6f\xad\ \x07\x96\xcb\x2d\x5c\xf2\x6e\xf1\xf2\x89\xb4\x16\xfd\xf1\xd2\x5f\ \x5e\x7b\xa0\xfb\xc3\x7d\xed\xa1\x5c\x59\x98\x39\xf3\xea\x77\x6f\ \xb9\x07\x96\x2b\x9d\x7a\xf5\x25\x2d\x7a\xc7\xd4\x9f\x26\xbf\xf0\ \xee\xe5\xe9\x07\x6f\xc6\x9e\xff\x3b\xfa\x07\x84\xc6\x8b\x43\xd1\ \x28\xff\xe7\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x01\xd6\xb8\ \x00\ \x01\x00\x00\x00\x13\x01\x00\x00\x04\x00\x30\x42\x41\x53\x45\x8b\ \x19\x94\xb1\x00\x01\xb6\x24\x00\x00\x00\x3a\x44\x53\x49\x47\x07\ \xf1\x96\x36\x00\x01\xb6\x60\x00\x00\x20\x58\x47\x44\x45\x46\x2f\ \x6c\x30\x10\x00\x01\xa1\x04\x00\x00\x00\xd4\x47\x50\x4f\x53\x25\ \x6f\x1b\x55\x00\x01\xa1\xd8\x00\x00\x09\x18\x47\x53\x55\x42\xe0\ \x48\xf4\xcb\x00\x01\xaa\xf0\x00\x00\x0b\x32\x4f\x53\x2f\x32\x73\ \xe0\xd2\xd4\x00\x00\x01\xb8\x00\x00\x00\x60\x63\x6d\x61\x70\xec\ \xf6\xc9\x12\x00\x00\x11\x2c\x00\x00\x0a\x20\x63\x76\x74\x20\x00\ \xff\x0b\xb1\x00\x00\x1d\x04\x00\x00\x00\x22\x66\x70\x67\x6d\x06\ \x59\x9c\x37\x00\x00\x1b\x4c\x00\x00\x01\x73\x67\x61\x73\x70\xff\ \xff\x00\x03\x00\x01\xa0\xfc\x00\x00\x00\x08\x67\x6c\x79\x66\xb9\ \xc0\x62\x98\x00\x00\x24\xb4\x00\x01\x1f\x0c\x68\x65\x61\x64\xfb\ \xc5\xf9\x07\x00\x00\x01\x3c\x00\x00\x00\x36\x68\x68\x65\x61\x06\ \x57\x04\xa4\x00\x00\x01\x74\x00\x00\x00\x24\x68\x6d\x74\x78\xd3\ \xb9\x11\x81\x00\x00\x02\x18\x00\x00\x0f\x14\x6c\x6f\x63\x61\x39\ \xbf\x81\x42\x00\x00\x1d\x28\x00\x00\x07\x8c\x6d\x61\x78\x70\x05\ \xe9\x02\x33\x00\x00\x01\x98\x00\x00\x00\x20\x6e\x61\x6d\x65\x96\ \x68\xea\xc9\x00\x01\x43\xc0\x00\x00\x3c\xdf\x70\x6f\x73\x74\x84\ \x48\x04\xa9\x00\x01\x80\xa0\x00\x00\x20\x5c\x70\x72\x65\x70\x08\ \x7e\xe6\x86\x00\x00\x1c\xc0\x00\x00\x00\x41\x00\x01\x00\x00\x00\ \x01\x04\x5a\x61\xad\x38\x4a\x5f\x0f\x3c\xf5\x00\x09\x03\xe8\x00\ \x00\x00\x00\xcd\x15\xa0\x77\x00\x00\x00\x00\xcd\x16\x10\xf8\xff\ \xbb\xfe\x70\x02\xc1\x03\xe8\x00\x01\x00\x09\x00\x02\x00\x00\x00\ \x00\x00\x00\x00\x01\x00\x00\x03\xd8\xfe\xef\x00\x00\x02\x58\xff\ \xbb\xff\x97\x02\xc1\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x03\xc5\x00\x01\x00\x00\x03\xc5\x00\x54\x00\ \x10\x00\x6a\x00\x06\x00\x01\x00\x00\x00\x00\x00\x0a\x00\x00\x02\ \x00\x01\x73\x00\x03\x00\x01\x00\x03\x02\x57\x02\xbc\x00\x05\x00\ \x00\x02\x8a\x02\x58\x00\x00\x00\x4b\x02\x8a\x02\x58\x00\x00\x01\ \x5e\x00\x32\x01\x20\x00\x00\x02\x0b\x07\x09\x03\x04\x03\x02\x02\ \x04\x20\x00\x00\x07\x00\x00\x18\x01\x00\x00\x00\x00\x00\x00\x00\ \x00\x41\x44\x42\x45\x00\x20\x00\x00\xfb\x02\x02\xee\xff\x06\x00\ \x00\x03\xd8\x01\x11\x60\x00\x01\x93\x00\x00\x00\x00\x01\xe0\x02\ \x94\x00\x00\x00\x20\x00\x03\x02\x58\x00\x23\x00\x00\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x09\x02\x58\x00\x54\x02\ \x58\x00\x37\x02\x58\x00\x41\x02\x58\x00\x5e\x02\x58\x00\x6c\x02\ \x58\x00\x2c\x02\x58\x00\x40\x02\x58\x00\x4a\x02\x58\x00\x3b\x02\ \x58\x00\x44\x02\x58\x00\x6b\x02\x58\x00\x41\x02\x58\x00\x42\x02\ \x58\x00\x26\x02\x58\x00\x4a\x02\x58\x00\x24\x02\x58\x00\x46\x02\ \x58\x00\x32\x02\x58\x00\x1f\x02\x58\x00\x40\x02\x58\x00\x0f\x02\ \x58\x00\x04\x02\x58\x00\x12\x02\x58\x00\x10\x02\x58\x00\x38\x02\ \x58\x00\x3d\x02\x58\x00\x48\x02\x58\x00\x43\x02\x58\x00\x2f\x02\ \x58\x00\x37\x02\x58\x00\x52\x02\x58\x00\x34\x02\x58\x00\x48\x02\ \x58\x00\x4f\x02\x58\x00\x2a\x02\x58\x00\x4c\x02\x58\x00\x3e\x02\ \x58\x00\x24\x02\x58\x00\x48\x02\x58\x00\x2f\x02\x58\x00\x48\x02\ \x58\x00\x2f\x02\x58\x00\x74\x02\x58\x00\x35\x02\x58\x00\x31\x02\ \x58\x00\x3e\x02\x58\x00\x1f\x02\x58\x00\x04\x02\x58\x00\x25\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\x58\x00\x09\x02\ \x58\xff\xfd\x02\x58\x00\x09\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x41\x02\ \x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x02\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\ \x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x2c\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x03\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\ \x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x4a\x02\x58\x00\x3b\x02\ \x58\x00\x44\x02\x58\x00\x6b\x02\x58\x00\x6b\x02\x58\x00\x6b\x02\ \x58\x00\x6b\x02\x58\x00\x6b\x02\x58\x00\x37\x02\x58\x00\x6b\x02\ \x58\x00\x21\x02\x58\x00\x41\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x1e\x02\x58\x00\x13\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\ \x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x32\x02\x58\x00\x40\x02\ \x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\x58\x00\x40\x02\ \x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\ \x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\ \x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\x58\x00\x10\x02\ \x58\x00\x38\x02\x58\x00\x38\x02\x58\x00\x38\x02\x58\x00\x38\x02\ \x58\x00\x02\x02\x58\x00\x49\x02\x58\x00\x3a\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\x58\x00\x3d\x02\ \x58\x00\x3d\x02\x58\x00\x10\x02\x58\x00\x06\x02\x58\x00\x43\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\ \x58\x00\x1a\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\x58\x00\x37\x02\ \x58\x00\x37\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\ \x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x34\x02\ \x58\xff\xee\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x06\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x2a\x02\x58\x00\x4c\x02\x58\x00\x4c\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x0d\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x24\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\xff\xd2\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x0c\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x74\x02\x58\x00\x65\x02\ \x58\x00\x74\x02\x58\x00\x6a\x02\x58\x00\x6a\x02\x58\x00\x42\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x3d\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\x58\x00\x3e\x02\ \x58\x00\x3e\x02\x58\x00\x04\x02\x58\x00\x04\x02\x58\x00\x04\x02\ \x58\x00\x04\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x46\x02\x58\x00\x2f\x02\x58\x00\x48\x02\x58\x00\x2a\x02\ \x58\x00\x48\x02\x58\x00\x2f\x02\x58\x00\x48\x02\x58\x00\x34\x02\ \x58\x00\x36\x02\x58\x00\x37\x02\x58\x00\x2f\x02\x58\x00\x3c\x02\ \x58\x00\x20\x02\x58\x00\x34\x02\x58\x00\x32\x02\x58\x00\x1f\x02\ \x58\x00\x04\x02\x58\x00\x1d\x02\x58\x00\x0f\x02\x58\x00\x07\x02\ \x58\x00\x0b\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\x58\x00\x2f\x02\ \x58\x00\x17\x02\x58\x00\x38\x02\x58\x00\x52\x02\x58\x00\x33\x02\ \x58\x00\x2a\x02\x58\x00\x23\x02\x58\x00\x2e\x02\x58\x00\x3c\x02\ \x58\x00\x3e\x02\x58\x00\x3d\x02\x58\x00\x35\x02\x58\x00\x38\x02\ \x58\x00\x52\x02\x58\x00\x33\x02\x58\x00\x2a\x02\x58\x00\x23\x02\ \x58\x00\x2e\x02\x58\x00\x3c\x02\x58\x00\x3e\x02\x58\x00\x3d\x02\ \x58\x00\x35\x02\x58\x00\xb8\x02\x58\x00\xb6\x02\x58\x00\xb8\x02\ \x58\x00\xb6\x02\x58\xff\xff\x02\x58\x00\xc8\x02\x58\x00\xc8\x02\ \x58\x00\x62\x02\x58\x00\x67\x02\x58\x00\xd7\x02\x58\x00\x53\x02\ \x58\x00\xb8\x02\x58\x00\xca\x02\x58\x00\x34\x02\x58\x00\x46\x02\ \x58\x00\xca\x02\x58\x00\x46\x02\x58\x00\xaf\x02\x58\x00\xc0\x02\ \x58\x00\x2b\x02\x58\x00\x3c\x02\x58\x00\x46\x02\x58\x00\x46\x02\ \x58\x00\x50\x02\x58\x00\x14\x02\x58\x00\x50\x02\x58\x00\x14\x02\ \x58\x00\xb8\x02\x58\x00\x88\x02\x58\x00\x3c\x02\x58\x00\xb5\x02\ \x58\x00\x7e\x02\x58\x00\xc9\x02\x58\x00\x69\x02\x58\x00\x6a\x02\ \x58\x00\x69\x02\x58\x00\x4a\x02\x58\x00\xeb\x02\x58\x00\x4a\x02\ \x58\x00\xeb\x02\x58\x00\x40\x02\x58\x00\x59\x02\x58\x00\x59\x02\ \x58\x00\x47\x02\x58\x00\x30\x02\x58\x00\x13\x02\x58\x00\x13\x02\ \x58\x00\x65\x02\x58\xff\xf3\x02\x58\xff\xf7\x02\x58\x00\x1f\x02\ \x58\x00\x1f\x02\x58\x00\x46\x02\x58\x00\x54\x02\x58\x00\x7c\x02\ \x58\x00\x7c\x02\x58\x00\x40\x02\x58\x00\x98\x02\x58\x00\xc4\x02\ \x58\x00\x9e\x02\x58\x00\xa5\x02\x58\x00\xa1\x02\x58\x00\xa5\x02\ \x58\x00\xa2\x02\x58\x00\xb1\x02\x58\x00\xa6\x02\x58\x00\xa4\x02\ \x58\x00\xd6\x02\x58\x00\xc7\x02\x58\x00\xed\x02\x58\x00\xe3\x02\ \x58\x00\x98\x02\x58\x00\xc4\x02\x58\x00\x9e\x02\x58\x00\xa5\x02\ \x58\x00\xa1\x02\x58\x00\xa5\x02\x58\x00\xa2\x02\x58\x00\xb1\x02\ \x58\x00\xa6\x02\x58\x00\xa4\x02\x58\x00\xd6\x02\x58\x00\xc7\x02\ \x58\x00\xed\x02\x58\x00\xe3\x02\x58\x00\x98\x02\x58\x00\xc4\x02\ \x58\x00\x9c\x02\x58\x00\xa5\x02\x58\x00\xa1\x02\x58\x00\xa5\x02\ \x58\x00\xa2\x02\x58\x00\xb1\x02\x58\x00\xa6\x02\x58\x00\xa4\x02\ \x58\x00\xd6\x02\x58\x00\xc7\x02\x58\x00\xed\x02\x58\x00\xe3\x02\ \x58\x00\x98\x02\x58\x00\xc4\x02\x58\x00\x9e\x02\x58\x00\xa5\x02\ \x58\x00\xa1\x02\x58\x00\xa5\x02\x58\x00\xa2\x02\x58\x00\xb1\x02\ \x58\x00\xa6\x02\x58\x00\xa4\x02\x58\x00\xd6\x02\x58\x00\xc7\x02\ \x58\x00\xed\x02\x58\x00\xe3\x02\x58\x00\x9a\x02\x58\x00\x80\x02\ \x58\x00\x85\x02\x58\x00\x9a\x02\x58\x00\x9a\x02\x58\x00\xaa\x02\ \x58\x00\x80\x02\x58\x00\x94\x02\x58\x00\xb7\x02\x58\x00\x85\x02\ \x58\x00\x9c\x02\x58\x00\xa9\x02\x58\x00\x85\x02\x58\x00\xa0\x02\ \x58\x00\xb6\x02\x58\x00\x73\x02\x58\x00\x9c\x02\x58\x00\x85\x02\ \x58\x00\x9a\x02\x58\x00\x80\x02\x58\x00\xd6\x02\x58\x00\x91\x02\ \x58\x00\x96\x02\x58\x00\x90\x02\x58\x00\x76\x02\x58\x00\x53\x02\ \x58\x00\x7c\x02\x58\x00\x81\x02\x58\x00\x97\x02\x58\x00\x94\x02\ \x58\x00\x94\x02\x58\x00\x94\x02\x58\x00\x80\x02\x58\x00\x80\x02\ \x58\x00\x9c\x02\x58\x00\x24\x02\x58\x00\x40\x02\x58\x00\x43\x02\ \x58\x00\x1f\x02\x58\x00\x2d\x02\x58\x00\x60\x02\x58\x00\x2e\x02\ \x58\x00\x4f\x02\x58\x00\x43\x02\x58\x00\x1b\x02\x58\x00\x15\x02\ \x58\x00\x5b\x02\x58\x00\x16\x02\x58\x00\x43\x02\x58\x00\x4f\x02\ \x58\x00\x58\x02\x58\x00\x24\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x12\x02\x58\x00\x1f\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x18\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x11\x02\x58\x00\x11\x02\x58\x00\x11\x02\x58\x00\x11\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x54\x02\x58\x00\x46\x02\ \x58\x00\xb8\x02\x58\x00\x46\x02\x58\x00\x74\x02\x58\x00\x62\x02\ \x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x46\x02\x58\x00\x56\x02\ \x58\x00\x46\x02\x58\x00\x34\x02\x58\x00\x34\x02\x58\x00\x46\x02\ \x58\x00\x0e\x02\x58\xff\xf3\x02\x58\x00\x3e\x02\x58\x00\x3c\x02\ \x58\x00\x93\x02\x58\x00\x21\x02\x58\x00\x0e\x02\x58\x00\x0c\x02\ \x58\x00\x3b\x02\x58\x00\x19\x02\x58\x00\x4b\x02\x58\x00\x1a\x02\ \x58\x00\x0d\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\x58\x00\x1f\x02\ \x58\x00\xb6\x02\x58\x00\x87\x02\x58\x00\x62\x02\x58\x00\x93\x02\ \x58\x00\x17\x02\x58\x00\x17\x02\x58\x00\x39\x02\x58\x00\x39\x02\ \x58\x00\x17\x02\x58\x00\x17\x02\x58\x00\x12\x02\x58\x00\x12\x02\ \x58\xff\xe3\x02\x58\xff\xe3\x02\x58\xff\xf0\x02\x58\x00\x35\x02\ \x58\x00\x4e\x02\x58\x00\xe5\x02\x58\x00\x70\x02\x58\x00\xb8\x02\ \x58\x00\xca\x02\x58\x00\xea\x02\x58\x00\xd1\x02\x58\x00\x8f\x02\ \x58\x00\xda\x02\x58\x00\x8a\x02\x58\x00\x8a\x02\x58\x00\xe0\x02\ \x58\x00\xa2\x02\x58\x00\xda\x02\x58\x00\x8f\x02\x58\x00\xe0\x02\ \x58\x00\x81\x02\x58\x00\x70\x02\x58\x00\xa2\x02\x58\x00\x99\x02\ \x58\x00\xbb\x02\x58\x00\xaf\x02\x58\x00\xca\x02\x58\x00\xc7\x02\ \x58\x00\xd6\x02\x58\x00\x8f\x02\x58\x00\x8a\x02\x58\x00\xda\x02\ \x58\x00\xe1\x02\x58\x00\x8a\x02\x58\x00\x84\x02\x58\x00\x81\x02\ \x58\x00\x82\x02\x58\x00\xa2\x02\x58\x00\x9f\x02\x58\x00\x99\x02\ \x58\x00\xa3\x02\x58\x00\xca\x02\x58\x00\xd7\x02\x58\x00\x70\x02\ \x58\x00\x83\x02\x58\x00\xdb\x02\x58\x00\xdb\x02\x58\x00\xbb\x02\ \x58\x00\xbb\x02\x58\x00\xaf\x02\x58\x00\xa3\x02\x58\x00\x8a\x02\ \x58\x00\x84\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\xe8\x02\ \x58\x00\xf4\x02\x58\x01\x22\x02\x58\x00\xca\x02\x58\x00\x83\x02\ \x58\x00\xc5\x02\x58\x00\xc5\x02\x58\x00\xc4\x02\x58\x00\xd6\x02\ \x58\x00\xd3\x02\x58\x00\xa1\x02\x58\x00\xa2\x02\x58\x00\x8b\x02\ \x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\ \x58\x00\x84\x02\x58\x00\x8b\x02\x58\x00\x8b\x02\x58\x00\xa1\x02\ \x58\x00\x8e\x02\x58\x00\xa1\x02\x58\x00\x8e\x02\x58\x00\xa1\x02\ \x58\x00\x8e\x02\x58\x00\x99\x02\x58\x00\x8e\x02\x58\x00\xa1\x02\ \x58\x00\xa4\x02\x58\x00\xa1\x02\x58\x00\xa4\x02\x58\x00\xa1\x02\ \x58\x00\xa4\x02\x58\x00\x9a\x02\x58\x00\x93\x02\x58\x00\x99\x02\ \x58\x00\x8e\x02\x58\x00\xfd\x02\x58\x00\xd6\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\x21\x02\ \x58\x00\x21\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\x12\x02\ \x58\x00\x12\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\xe7\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\ \x58\x00\xa3\x02\x58\x00\xa3\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\x4b\x02\ \x58\x00\x4b\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\x00\x5e\x02\x58\x00\xe7\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\x00\x5e\x02\x58\x00\x5e\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\x00\xe7\x02\x58\x00\x5e\x02\x58\x00\x5e\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\x00\xe7\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\x00\xe7\x02\ \x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\x58\xff\xbb\x02\ \x58\x00\xe7\x02\x58\x00\xe7\x02\x58\x00\xe7\x02\x58\xff\xbb\x02\ \x58\x00\xa3\x02\x58\x00\xe7\x02\x58\x00\xa3\x02\x58\xff\xbb\x02\ \x58\x00\xa3\x02\x58\xff\xbb\x02\x58\x00\xa3\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x01\x2c\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x02\x0d\x02\x58\x00\x00\x02\x58\x01\x2c\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x01\x2c\x02\x58\x00\x00\x02\x58\x00\x00\x00\x00\x00\x03\x00\ \x00\x00\x03\x00\x00\x02\x14\x00\x01\x00\x00\x00\x00\x00\x1c\x00\ \x03\x00\x01\x00\x00\x02\x14\x00\x06\x01\xf8\x00\x00\x00\x09\x00\ \xf7\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x03\x01\xe8\x01\xed\x02\x17\x02\x78\x02\x8b\x01\xce\x01\xec\x02\ \x01\x02\x02\x02\x0b\x02\x96\x01\xe4\x01\xf8\x01\xe3\x02\x07\x01\ \xcf\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x01\xd5\x01\xd6\x01\ \xd7\x01\xd8\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\x9d\x01\xea\x02\ \x15\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\ \x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x00\x1d\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x02\x05\x02\x08\x02\x06\x02\xa3\x00\x00\x00\ \x3c\x00\x3f\x00\x50\x00\x5a\x00\x8e\x00\x97\x00\xc3\x00\xea\x00\ \xe9\x00\xeb\x00\xed\x00\xec\x00\xf0\x01\x01\x01\x0b\x01\x0a\x01\ \x0c\x01\x0e\x01\x27\x01\x26\x01\x28\x01\x2a\x01\x41\x01\x48\x01\ \x47\x01\x49\x01\x4b\x01\x4a\x01\x75\x01\x74\x01\x76\x01\x78\x02\ \x0c\x02\x76\x02\x7c\x02\x79\x02\x0e\x01\xff\x02\x0f\x01\x6d\x02\ \x12\x02\x10\x02\x13\x02\xce\x02\xd7\x02\xa2\x00\x4e\x00\xa3\x02\ \xa7\x02\xa0\x02\x9e\x02\x9f\x02\x7a\x02\xa8\x02\xa9\x02\xae\x02\ \xaf\x02\xa6\x02\xaa\x02\x54\x02\x56\x00\x00\x00\xff\x01\x57\x01\ \xeb\x01\xe9\x02\xa5\x02\xab\x02\x7d\x02\xa4\x02\xac\x01\xf6\x01\ \xf7\x01\xe7\x03\x21\x00\x38\x00\x3b\x00\x96\x00\xa4\x01\x58\x01\ \xfa\x01\xfb\x01\xf0\x01\xf1\x01\xee\x01\xef\x02\x99\x02\xc6\x01\ \x92\x00\xdd\x02\x88\x02\x7b\x01\xf4\x01\xf5\x01\xad\x01\xae\x02\ \x0d\x01\xfe\x01\xf2\x01\xf3\x02\x8c\x00\x3a\x00\x5b\x00\x39\x00\ \x5d\x00\x59\x00\x76\x00\x77\x00\x79\x00\x75\x00\x94\x00\x95\x00\ \x00\x00\x93\x00\xc0\x00\xc1\x00\xbf\x01\x32\x02\xcf\x02\xd6\x02\ \xd8\x02\xd9\x02\xdc\x02\xda\x02\xdd\x02\xdb\x02\xde\x02\xd0\x00\ \x04\x08\x0c\x00\x00\x01\x1a\x01\x00\x00\x07\x00\x1a\x00\x00\x00\ \x0d\x00\x2f\x00\x39\x00\x40\x00\x5a\x00\x60\x00\x7a\x00\x7e\x00\ \xbf\x00\xc4\x00\xd1\x00\xd6\x00\xdf\x00\xe4\x00\xf1\x00\xf6\x01\ \x31\x01\x49\x01\x65\x01\x7e\x01\x80\x01\x8f\x01\x92\x01\xa1\x01\ \xb0\x01\xdc\x01\xe7\x01\xeb\x02\x1b\x02\x37\x02\x43\x02\x52\x02\ \x54\x02\x59\x02\x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8e\x02\ \x9e\x02\xb0\x02\xb3\x02\xb8\x02\xbc\x02\xbf\x02\xcc\x02\xdd\x02\ \xe3\x03\x04\x03\x0c\x03\x0f\x03\x13\x03\x1b\x03\x24\x03\x28\x03\ \x2e\x03\x31\x03\xc0\x1d\x43\x1d\x49\x1d\x4d\x1d\x50\x1d\x52\x1d\ \x58\x1d\x5b\x1d\x9c\x1d\xa0\x1d\xbb\x1e\x0f\x1e\x21\x1e\x25\x1e\ \x2b\x1e\x3b\x1e\x49\x1e\x63\x1e\x6f\x1e\x85\x1e\x8f\x1e\x93\x1e\ \x97\x1e\x9e\x1e\xf9\x20\x07\x20\x15\x20\x1a\x20\x1e\x20\x22\x20\ \x26\x20\x30\x20\x33\x20\x3a\x20\x44\x20\x71\x20\x79\x20\x7f\x20\ \x89\x20\x8e\x20\x94\x20\xa1\x20\xa4\x20\xa7\x20\xac\x20\xb2\x20\ \xb5\x20\xba\x21\x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\ \x54\x21\x5e\x21\x93\x22\x02\x22\x06\x22\x0f\x22\x12\x22\x15\x22\ \x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\x65\x25\x9f\x25\xa0\x25\ \xb3\x25\xb7\x25\xbd\x25\xc1\x25\xc6\x25\xca\x26\x11\x26\x6a\x27\ \x13\x27\x52\xfb\x02\xff\xff\x00\x00\x00\x00\x00\x0d\x00\x20\x00\ \x30\x00\x3a\x00\x41\x00\x5b\x00\x61\x00\x7b\x00\xa0\x00\xc0\x00\ \xc5\x00\xd2\x00\xd7\x00\xe0\x00\xe5\x00\xf2\x00\xf7\x01\x34\x01\ \x4c\x01\x68\x01\x80\x01\x8f\x01\x92\x01\xa0\x01\xaf\x01\xcd\x01\ \xe6\x01\xea\x02\x18\x02\x37\x02\x43\x02\x50\x02\x54\x02\x58\x02\ \x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8c\x02\x9e\x02\xb0\x02\ \xb2\x02\xb7\x02\xbb\x02\xbe\x02\xc6\x02\xd8\x02\xe1\x03\x00\x03\ \x06\x03\x0f\x03\x12\x03\x1b\x03\x23\x03\x26\x03\x2e\x03\x31\x03\ \xc0\x1d\x43\x1d\x47\x1d\x4d\x1d\x4f\x1d\x52\x1d\x56\x1d\x5b\x1d\ \x9c\x1d\xa0\x1d\xbb\x1e\x0c\x1e\x20\x1e\x24\x1e\x2a\x1e\x36\x1e\ \x42\x1e\x5a\x1e\x6c\x1e\x80\x1e\x8e\x1e\x92\x1e\x97\x1e\x9e\x1e\ \xa0\x20\x07\x20\x12\x20\x18\x20\x1c\x20\x20\x20\x26\x20\x30\x20\ \x32\x20\x39\x20\x44\x20\x70\x20\x74\x20\x7d\x20\x80\x20\x8d\x20\ \x94\x20\xa1\x20\xa4\x20\xa6\x20\xab\x20\xb1\x20\xb5\x20\xb9\x21\ \x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\x53\x21\x5b\x21\ \x90\x22\x02\x22\x06\x22\x0f\x22\x11\x22\x15\x22\x19\x22\x1e\x22\ \x2b\x22\x48\x22\x60\x22\x64\x25\x00\x25\xa0\x25\xb2\x25\xb6\x25\ \xbc\x25\xc0\x25\xc6\x25\xc9\x26\x10\x26\x6a\x27\x13\x27\x52\xfb\ \x01\xff\xff\x00\x01\xff\xf5\x00\x00\x01\x9f\x00\x00\xff\xc3\x00\ \x00\xff\xbd\x00\x00\x00\x00\xff\x78\x00\x00\xff\xc1\x00\x00\x00\ \x09\x00\x00\x00\x55\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\xff\ \x59\x00\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\ \x66\xfe\x0c\xff\x4e\xff\x4d\xff\x4a\xff\x43\xff\x40\xff\x37\xff\ \x2e\xff\x21\xff\x1d\xff\x0e\xff\xae\x00\x00\x00\x00\x00\x0e\x00\ \x0d\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe8\xff\xe7\xff\ \xe0\xff\xd9\x00\x00\xff\xd5\xff\xd3\xfe\xe6\xe5\x14\x00\x00\xe5\ \x10\x00\x00\xe5\x13\x00\x00\xe5\x11\xe4\xbd\xe4\xbc\xe4\xb5\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xe2\xdc\xe2\x1b\x00\x00\xe3\x1b\x00\x00\x00\ \x00\x00\x00\x00\x00\xe1\xc1\xe2\x5c\xe2\x95\xe1\xbb\xe2\x44\x00\ \x00\xe1\xac\x00\x00\xe1\xaa\xe1\xa7\xe1\xdf\xe1\xdd\xe1\xdb\xe1\ \xda\x00\x00\xe1\xd2\xe1\xd0\xe1\xcd\xe1\x9d\xe0\xfa\xe0\xf4\xe0\ \xf1\xe1\x87\xe1\x83\xe1\x3d\xe1\x37\xe1\x22\xe0\xa7\xe0\xa6\xe0\ \xa0\x00\x00\xe0\x74\x00\x00\xe0\x89\xe0\x7f\xe0\x5c\xe0\x42\xe0\ \x3a\xde\x25\xdd\x16\xdd\x08\xdd\x06\xdd\x02\xdd\x00\xdc\xf1\x00\ \x00\xdc\xb2\xdc\x5b\xdb\xb1\xdb\x67\x06\xac\x00\x01\x00\x00\x00\ \x00\x01\x16\x00\x00\x01\x32\x00\x00\x01\x3c\x00\x00\x01\x44\x01\ \x4a\x00\x00\x01\x86\x00\x00\x01\x9c\x00\x00\x01\xaa\x00\x00\x01\ \xc0\x02\x34\x02\x5e\x02\x90\x00\x00\x00\x00\x00\x00\x02\xb6\x02\ \xb8\x02\xba\x02\xd8\x02\xda\x02\xdc\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x02\xc8\x02\xca\x00\x00\x00\x00\x00\x00\x02\xc6\x02\ \xd0\x02\xd4\x02\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x02\xe0\x00\ \x00\x00\x00\x00\x00\x00\x00\x02\xdc\x00\x00\x02\xde\x00\x00\x02\ \xde\x00\x00\x00\x00\x00\x00\x00\x00\x02\xda\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xf0\x02\xfe\x03\x10\x03\x16\x03\x20\x03\x22\x00\ \x00\x00\x00\x03\x20\x00\x00\x03\xd0\x03\xd6\x03\xda\x03\xde\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd8\x00\x00\x03\xd8\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd0\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xb4\x00\x00\x03\ \xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x9e\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x03\x01\xe8\x01\xed\x02\x17\x02\ \x78\x02\x8b\x01\xce\x01\xec\x02\x01\x02\x02\x02\x0b\x02\x96\x01\ \xe4\x01\xf8\x01\xe3\x02\x07\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\ \x9d\x01\xea\x02\x15\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x02\x05\x02\x08\x02\x06\x02\xa3\x03\x21\x01\xe9\x02\x7c\x02\ \x79\x02\x77\x02\x7a\x02\x0a\x02\x0e\x02\xd7\x02\x10\x02\x54\x01\ \xf6\x02\xa5\x01\xf9\x02\x12\x02\xd8\x02\x76\x02\xa0\x02\x1e\x02\ \x1f\x02\xce\x02\xa8\x02\x0f\x01\xfe\x02\xdd\x02\x1d\x02\x56\x01\ \xf7\x02\x8d\x02\x8e\x02\x8f\x01\xeb\x00\x3f\x00\x4e\x00\x50\x00\ \x59\x00\x5a\x00\x5b\x00\x5d\x00\x75\x00\x76\x00\x77\x00\x79\x00\ \xe6\x00\x8e\x02\x98\x00\xa3\x00\xbf\x00\xc0\x00\xc1\x00\xc3\x00\ \xdb\x00\xe7\x01\x6d\x00\xf0\x00\xff\x01\x01\x01\x0a\x01\x0b\x01\ \x0c\x01\x0e\x01\x26\x01\x27\x01\x28\x01\x2a\x01\x9b\x01\x41\x02\ \x99\x01\x57\x01\x74\x01\x75\x01\x76\x01\x78\x01\x90\x01\x9c\x01\ \x92\x00\x3d\x00\xee\x00\x3e\x00\xef\x00\x4d\x00\xfe\x00\x51\x01\ \x02\x00\x52\x01\x03\x00\x54\x01\x05\x00\x53\x01\x04\x00\x55\x01\ \x06\x00\x58\x01\x09\x00\x5e\x01\x0f\x00\x5f\x01\x10\x00\x60\x01\ \x11\x00\x69\x01\x1a\x00\x5c\x01\x0d\x00\x6a\x01\x1b\x00\x6b\x01\ \x1c\x00\x6c\x01\x1d\x00\x6d\x01\x1e\x00\x71\x01\x22\x00\x74\x01\ \x25\x00\x78\x01\x29\x00\x7a\x01\x2b\x00\x7b\x01\x2c\x00\x80\x01\ \x30\x00\x7c\x01\x32\x00\x81\x01\x33\x00\x82\x01\x34\x01\x35\x00\ \x83\x01\x36\x00\x85\x01\x39\x00\x84\x01\x37\x00\x86\x01\x38\x00\ \x8a\x01\x3d\x00\x8c\x01\x3f\x00\x8f\x01\x42\x00\x8d\x01\x40\x01\ \x46\x00\x98\x01\x4c\x00\x99\x01\x4d\x00\x9a\x01\x4e\x00\xa4\x01\ \x58\x00\xac\x01\x60\x00\xae\x01\x61\x00\xad\x01\x62\x00\xb2\x01\ \x66\x00\xb3\x01\x67\x00\xb5\x01\x69\x00\xb4\x01\x68\x00\xbb\x01\ \x6f\x00\xba\x01\x6e\x00\xc2\x01\x77\x00\xc4\x01\x79\x00\xc5\x01\ \x7a\x00\xc6\x01\x7b\x00\xc7\x01\x7c\x00\xcf\x01\x84\x00\xd8\x01\ \x8d\x00\xdc\x01\x91\x00\xdd\x00\xe2\x01\x97\x00\xe4\x01\x99\x00\ \xe3\x01\x98\x00\xa5\x01\x59\x00\xd0\x01\x85\x00\x40\x00\xf1\x00\ \x7d\x01\x2d\x00\x9b\x01\x4f\x00\xc8\x01\x7d\x00\xc9\x01\x7e\x00\ \xca\x01\x7f\x00\xcb\x01\x80\x00\xcc\x01\x81\x00\x6e\x01\x1f\x00\ \xab\x01\x5f\x00\xb6\x01\x6a\x00\xbc\x01\x70\x02\x60\x02\x68\x02\ \x6d\x02\x6f\x02\xd9\x02\xdc\x02\xda\x02\xde\x02\xd6\x02\xdb\x02\ \x62\x02\x69\x02\x6e\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xfe\x02\ \xff\x03\x01\x02\x58\x02\x5a\x02\x5b\x02\x61\x02\x63\x02\x66\x02\ \x6a\x02\x6b\x00\x56\x01\x07\x00\x57\x01\x08\x00\x6f\x01\x20\x00\ \x72\x01\x23\x00\x73\x01\x24\x00\x87\x01\x3a\x00\x88\x01\x3b\x00\ \x89\x01\x3c\x00\x8b\x01\x3e\x00\x90\x01\x43\x00\x91\x01\x44\x00\ \x92\x01\x45\x00\xaf\x01\x63\x00\xb0\x01\x64\x00\xb1\x01\x65\x00\ \xb7\x01\x6b\x00\xb8\x01\x6c\x00\xbd\x01\x71\x00\xbe\x01\x72\x00\ \xd6\x01\x8b\x00\xd7\x01\x8c\x00\xd9\x01\x8e\x00\xde\x01\x93\x00\ \xe5\x01\x9a\x00\x41\x00\xf2\x00\x42\x00\xf3\x00\x43\x00\xf4\x00\ \x44\x00\xf5\x00\x45\x00\xf6\x00\x46\x00\xf7\x00\x47\x00\xf8\x00\ \x48\x00\xf9\x00\x49\x00\xfa\x00\x4a\x00\xfb\x00\x4b\x00\xfc\x00\ \x4c\x00\xfd\x00\x61\x01\x12\x00\x62\x01\x13\x00\x63\x01\x14\x00\ \x64\x01\x15\x00\x65\x01\x16\x00\x66\x01\x17\x00\x67\x01\x18\x00\ \x68\x01\x19\x00\x7e\x01\x2e\x00\x7f\x01\x2f\x00\x9c\x01\x50\x00\ \x9d\x01\x51\x00\x9e\x01\x52\x00\x9f\x01\x53\x00\xa0\x01\x54\x00\ \xa1\x01\x55\x00\xa2\x01\x56\x00\xa6\x01\x5a\x00\xa7\x01\x5b\x00\ \xa8\x01\x5c\x00\xa9\x01\x5d\x00\xaa\x01\x5e\x00\xcd\x01\x82\x00\ \xce\x01\x83\x00\xd1\x01\x86\x00\xd2\x01\x87\x00\xd3\x01\x88\x00\ \xd4\x01\x89\x00\xd5\x01\x8a\x00\xda\x01\x8f\x00\xdf\x01\x94\x00\ \xe0\x01\x95\x00\xe1\x01\x96\x01\xfc\x01\xfa\x01\xfb\x01\xfd\x01\ \xee\x01\xef\x01\xf2\x01\xf0\x01\xf1\x01\xf3\x02\x0c\x02\x0d\x01\ \xff\x02\x1c\x02\x5f\x02\x26\x02\x27\x02\x64\x02\x82\x02\x7b\x02\ \xae\x02\x97\x02\x9a\x02\xab\x02\xb8\x02\xc6\xb8\x00\x00\x2c\x4b\ \xb8\x00\x09\x50\x58\xb1\x01\x01\x8e\x59\xb8\x01\xff\x85\xb8\x00\ \x44\x1d\xb9\x00\x09\x00\x03\x5f\x5e\x2d\xb8\x00\x01\x2c\x20\x20\ \x45\x69\x44\xb0\x01\x60\x2d\xb8\x00\x02\x2c\xb8\x00\x01\x2a\x21\ \x2d\xb8\x00\x03\x2c\x20\x46\xb0\x03\x25\x46\x52\x58\x23\x59\x20\ \x8a\x20\x8a\x49\x64\x8a\x20\x46\x20\x68\x61\x64\xb0\x04\x25\x46\ \x20\x68\x61\x64\x52\x58\x23\x65\x8a\x59\x2f\x20\xb0\x00\x53\x58\ \x69\x20\xb0\x00\x54\x58\x21\xb0\x40\x59\x1b\x69\x20\xb0\x00\x54\ \x58\x21\xb0\x40\x65\x59\x59\x3a\x2d\xb8\x00\x04\x2c\x20\x46\xb0\ \x04\x25\x46\x52\x58\x23\x8a\x59\x20\x46\x20\x6a\x61\x64\xb0\x04\ \x25\x46\x20\x6a\x61\x64\x52\x58\x23\x8a\x59\x2f\xfd\x2d\xb8\x00\ \x05\x2c\x4b\x20\xb0\x03\x26\x50\x58\x51\x58\xb0\x80\x44\x1b\xb0\ \x40\x44\x59\x1b\x21\x21\x20\x45\xb0\xc0\x50\x58\xb0\xc0\x44\x1b\ \x21\x59\x59\x2d\xb8\x00\x06\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\ \x20\x20\x45\x7d\x69\x18\x44\xb0\x01\x60\x2d\xb8\x00\x07\x2c\xb8\ \x00\x06\x2a\x2d\xb8\x00\x08\x2c\x4b\x20\xb0\x03\x26\x53\x58\xb0\ \x40\x1b\xb0\x00\x59\x8a\x8a\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\ \x80\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\ \x00\xc0\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\ \xb8\x01\x00\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\ \x21\xb8\x01\x40\x8a\x8a\x1b\x8a\x23\x59\x20\xb8\x00\x03\x26\x53\ \x58\xb0\x03\x25\x45\xb8\x01\x80\x50\x58\x23\x21\xb8\x01\x80\x23\ \x21\x1b\xb0\x03\x25\x45\x23\x21\x23\x21\x59\x1b\x21\x59\x44\x2d\ \xb8\x00\x09\x2c\x4b\x53\x58\x45\x44\x1b\x21\x21\x59\x2d\x00\xb0\ \x00\x2b\x00\xb2\x01\x01\x02\x2b\x01\xb2\x02\x01\x02\x2b\x01\xb7\ \x02\x25\x1e\x18\x13\x0c\x00\x08\x2b\x00\xb7\x01\x2e\x26\x20\x18\ \x10\x00\x08\x2b\x00\xb2\x03\x07\x07\x2b\xb0\x00\x20\x45\x7d\x69\ \x18\x44\x4b\xb0\x60\x52\x58\xb0\x01\x1b\xb0\x00\x59\xb0\x01\x8e\ \x00\x00\x00\x00\x14\x00\x73\x00\x96\x00\x00\x00\x0c\xff\x48\x00\ \x0c\x01\xf0\x00\x0c\x02\x42\x00\x0c\x02\x7b\x00\x0c\x02\x8c\x00\ \x0c\x02\xbd\x00\x0c\x00\x00\x00\x00\x00\x4c\x00\x4c\x00\x4c\x00\ \x4c\x00\x90\x00\xf6\x01\x42\x01\x88\x01\xc6\x01\xfc\x02\x58\x02\ \x92\x02\xc8\x03\x04\x03\x54\x03\x7a\x03\xce\x04\x1c\x04\x66\x04\ \xae\x05\x14\x05\x64\x05\xce\x05\xfa\x06\x32\x06\x68\x06\xc8\x07\ \x24\x07\x62\x07\x98\x08\x16\x08\x8a\x08\xd4\x09\x4c\x09\xa6\x09\ \xf8\x0a\xbe\x0b\x16\x0b\x54\x0b\xa6\x0b\xf6\x0c\x34\x0c\xb8\x0d\ \x0e\x0d\x58\x0d\xca\x0e\x42\x0e\x8e\x0e\xf6\x0f\x44\x0f\x98\x0f\ \xd2\x10\x44\x10\xa2\x11\x00\x11\x36\x11\x42\x11\x4e\x11\x5a\x11\ \x66\x11\x72\x11\x7e\x11\x8a\x11\x96\x11\xa2\x11\xae\x11\xba\x11\ \xc6\x11\xd2\x11\xde\x11\xea\x11\xf8\x12\x04\x12\x10\x12\x1c\x12\ \x28\x12\x36\x12\xaa\x13\x04\x13\x74\x13\x80\x13\x8c\x13\x98\x13\ \xa4\x13\xb0\x13\xbc\x13\xc8\x13\xd4\x13\xdc\x13\xe8\x13\xf4\x14\ \x00\x14\x0c\x14\x18\x14\x24\x14\x30\x14\x3c\x14\x48\x14\x54\x14\ \x60\x14\x6c\x14\x78\x14\x84\x14\x90\x14\x9e\x15\x02\x15\x0e\x15\ \x1a\x15\x26\x15\x32\x15\x3e\x15\x4a\x15\x56\x15\x62\x15\x6e\x15\ \x7a\x15\xe0\x15\xec\x15\xf8\x16\x04\x16\x10\x16\x1c\x16\x28\x16\ \x34\x16\x40\x16\x4c\x16\x58\x16\x64\x16\xc8\x16\xd4\x16\xe0\x16\ \xec\x16\xf8\x17\x04\x17\x10\x17\x1c\x17\x2a\x17\x36\x17\x74\x17\ \x80\x17\x8c\x17\x98\x17\xa4\x17\xb0\x17\xbc\x17\xc8\x17\xd4\x17\ \xe0\x17\xec\x17\xf8\x18\x04\x18\x10\x18\x1c\x18\x28\x18\x34\x18\ \x40\x18\x4c\x18\x58\x18\x64\x18\x70\x18\x7c\x18\x88\x18\x96\x19\ \x16\x19\x70\x19\xd6\x19\xe2\x19\xee\x19\xfa\x1a\x06\x1a\x12\x1a\ \x80\x1a\x8c\x1a\x98\x1a\xa4\x1a\xb0\x1a\xbe\x1a\xca\x1a\xd6\x1a\ \xe2\x1a\xee\x1a\xfa\x1b\x06\x1b\x12\x1b\x1e\x1b\x92\x1b\x9e\x1b\ \xaa\x1b\xb6\x1b\xc2\x1b\xce\x1b\xda\x1b\xe6\x1b\xf2\x1b\xfe\x1c\ \x0a\x1c\x16\x1c\x22\x1c\x2e\x1c\x3a\x1c\x46\x1c\x52\x1c\x5e\x1c\ \x6a\x1c\x76\x1c\x82\x1c\x8e\x1c\xf4\x1d\x4e\x1d\x5a\x1d\x66\x1d\ \x72\x1d\x7e\x1d\x8a\x1d\x96\x1d\xa2\x1d\xae\x1d\xba\x1d\xc6\x1d\ \xd2\x1d\xde\x1d\xea\x1d\xf6\x1e\x02\x1e\x0e\x1e\x1a\x1e\x26\x1e\ \x32\x1e\x3e\x1e\x4a\x1e\xa4\x1e\xe6\x1f\x3e\x1f\x4a\x1f\x56\x1f\ \x62\x1f\x6e\x1f\x7a\x1f\x86\x1f\x92\x1f\x9e\x1f\xaa\x1f\xb6\x1f\ \xc2\x1f\xce\x1f\xda\x1f\xe6\x1f\xf2\x20\x00\x20\x0c\x20\x18\x20\ \x24\x20\x30\x20\x3e\x20\xda\x21\x94\x22\x22\x22\x2e\x22\x3a\x22\ \x46\x22\x52\x22\x5e\x22\x6a\x22\x76\x22\x82\x23\x14\x23\x20\x23\ \x2c\x23\x38\x23\x44\x23\x50\x23\x5c\x23\x68\x23\x74\x23\x80\x23\ \x8c\x23\x98\x23\xa4\x23\xb0\x23\xbc\x23\xc8\x23\xd6\x24\x56\x24\ \x62\x24\x6e\x24\x7a\x24\x86\x24\x92\x24\x9e\x24\xaa\x24\xb6\x24\ \xc2\x24\xce\x25\x3e\x25\x4a\x25\x56\x25\x62\x25\x6e\x25\x7a\x25\ \x86\x25\x92\x25\x9e\x25\xaa\x25\xb6\x26\x24\x26\x74\x26\x9c\x26\ \xa8\x26\xb4\x27\x04\x27\x10\x27\x1c\x27\x28\x27\x34\x27\x40\x27\ \x50\x27\x5c\x27\xb4\x27\xc0\x27\xcc\x27\xd8\x27\xe4\x27\xf0\x27\ \xfc\x28\x08\x28\x14\x28\x86\x28\x92\x28\x9e\x28\xaa\x28\xb6\x28\ \xc2\x28\xce\x28\xda\x28\xe6\x28\xf2\x28\xfe\x29\x0a\x29\x16\x29\ \x22\x29\x2e\x29\x3a\x29\x48\x29\xc8\x2a\x68\x2a\xd0\x2a\xdc\x2a\ \xe8\x2a\xf4\x2b\x00\x2b\x0c\x2b\x84\x2b\x90\x2b\x9c\x2b\xa8\x2b\ \xb4\x2b\xc2\x2b\xce\x2b\xda\x2b\xe6\x2b\xf2\x2b\xfe\x2c\x0a\x2c\ \x16\x2c\x22\x2c\x9e\x2c\xaa\x2c\xb6\x2c\xc2\x2c\xce\x2c\xda\x2c\ \xe6\x2c\xf2\x2c\xfe\x2d\x0a\x2d\x16\x2d\x22\x2d\x2e\x2d\x3a\x2d\ \x46\x2d\x52\x2d\x5e\x2d\x6a\x2d\x76\x2d\x82\x2d\x8e\x2d\x9a\x2d\ \xa6\x2e\x26\x2e\x8e\x2e\x9a\x2e\xa6\x2e\xb2\x2e\xbe\x2e\xca\x2e\ \xd6\x2e\xe2\x2e\xee\x2e\xfa\x2f\x06\x2f\x12\x2f\x1e\x2f\x2a\x2f\ \x36\x2f\x42\x2f\x4e\x2f\x5a\x2f\x66\x2f\x72\x2f\x7e\x2f\x8a\x30\ \x0e\x30\x86\x30\xc2\x31\x3c\x31\xb2\x32\x28\x32\x72\x32\xcc\x33\ \x24\x33\xb0\x34\x04\x34\x88\x34\xd2\x35\x1a\x35\x56\x35\xc2\x36\ \x1c\x36\x66\x36\xe6\x37\x68\x37\x70\x37\x7c\x37\x88\x37\x94\x37\ \xa0\x37\xac\x37\xb8\x37\xc4\x37\xd0\x37\xdc\x37\xe8\x37\xf4\x38\ \x00\x38\x0c\x38\x18\x38\x24\x38\x32\x38\x3e\x38\x4a\x38\x56\x38\ \x62\x38\x70\x39\x14\x39\x1c\x39\x28\x39\x34\x39\x40\x39\x4c\x39\ \x58\x39\x64\x39\x70\x3a\x1a\x3a\x8a\x3a\xc2\x3b\x16\x3b\x80\x3b\ \xd2\x3c\x34\x3c\xaa\x3c\xe0\x3d\x64\x3d\xda\x3e\x4a\x3e\x82\x3e\ \xd4\x3f\x36\x3f\x7a\x3f\xd4\x3f\xdc\x40\x08\x40\x10\x40\x7c\x40\ \xa4\x40\xc8\x40\xd4\x40\xe0\x41\x3a\x41\x70\x41\x9e\x41\xf0\x42\ \x42\x42\x58\x42\x66\x42\x8c\x42\xb0\x42\xbe\x42\xcc\x42\xd6\x42\ \xe4\x42\xfc\x43\x14\x43\x22\x43\x30\x43\x38\x43\x40\x43\x54\x43\ \x68\x43\x7c\x43\x84\x43\x8e\x43\xb4\x43\xc8\x43\xec\x44\x0e\x44\ \x2c\x44\x4a\x44\xaa\x45\x0a\x45\x24\x45\x36\x45\x50\x45\x6e\x45\ \xa4\x45\xd4\x46\x26\x46\xaa\x46\xdc\x47\x64\x47\xe6\x48\x5c\x48\ \xb0\x49\x36\x49\xb0\x4a\x3a\x4a\xb0\x4a\xd8\x4a\xec\x4a\xf4\x4b\ \x56\x4b\x60\x4b\x6a\x4b\x74\x4b\x7e\x4b\x88\x4b\x92\x4b\x9c\x4b\ \xa6\x4b\xb0\x4b\xba\x4b\xc4\x4b\xce\x4b\xd8\x4b\xe2\x4b\xec\x4b\ \xf6\x4c\x00\x4c\x0a\x4c\x14\x4c\x1e\x4c\x28\x4c\x32\x4c\x3c\x4c\ \x46\x4c\x50\x4c\x5a\x4c\x64\x4c\x6e\x4c\xb2\x4c\xd6\x4d\x12\x4d\ \x6c\x4d\xa6\x4d\xfa\x4e\x58\x4e\x86\x4e\xf2\x4f\x50\x4f\x70\x4f\ \x92\x4f\xb6\x4f\xe0\x4f\xea\x4f\xf4\x4f\xfe\x50\x08\x50\x12\x50\ \x1c\x50\x26\x50\x30\x50\x3a\x50\x44\x50\x4e\x50\x58\x50\x62\x50\ \x6c\x50\x74\x50\x7c\x50\x84\x50\xd6\x51\x30\x51\x68\x51\xc6\x52\ \x0c\x52\x4e\x52\xea\x53\x28\x53\x5c\x53\xa6\x53\xe8\x54\x1a\x54\ \x70\x54\xae\x54\xea\x55\x44\x55\xa2\x55\xde\x56\x30\x56\x7a\x56\ \xbc\x56\xf2\x57\x56\x57\xa6\x57\xf8\x58\x26\x58\x80\x58\xd8\x59\ \x1e\x59\x7a\x59\xec\x5a\x28\x5a\x76\x5a\xda\x5b\x44\x5b\xa6\x5c\ \x24\x5c\x8c\x5c\xee\x5d\x9c\x5e\x22\x5e\xd2\x5f\x38\x5f\xa8\x60\ \x3a\x60\x9c\x61\x14\x61\x78\x61\xdc\x61\xf8\x62\x00\x62\x08\x62\ \x18\x62\xcc\x62\xdc\x62\xec\x62\xfc\x63\x0c\x63\x1c\x63\x2c\x63\ \x3c\x63\x4c\x63\x5c\x63\x80\x63\x94\x63\xc2\x64\x02\x64\x0c\x64\ \x18\x64\x4a\x64\x7c\x64\xc0\x65\x04\x65\x42\x65\x6a\x65\xae\x65\ \xe8\x65\xf4\x66\x0a\x66\x6c\x66\xe8\x67\x5c\x67\xce\x68\x14\x68\ \x3e\x68\x7c\x68\xea\x69\x2a\x69\x4e\x69\xbe\x6a\x28\x6a\x46\x6a\ \x6a\x6a\x8a\x6a\xae\x6a\xc0\x6a\xd4\x6b\x32\x6b\x52\x6b\x6a\x6b\ \x88\x6b\xa0\x6b\xcc\x6b\xe2\x6c\x06\x6c\x1e\x6c\x50\x6c\x7c\x6c\ \xe2\x6d\x12\x6d\x5a\x6d\x8e\x6d\xa2\x6d\xae\x6d\xb6\x6d\xbe\x6d\ \xe2\x6e\x06\x6e\x0e\x6e\x16\x6e\x1e\x6e\x26\x6e\x3a\x6e\x42\x6e\ \x4a\x6e\x52\x6e\x66\x6e\x6e\x6e\x76\x6e\x7e\x6e\x86\x6e\x8e\x6e\ \x96\x6e\x9e\x6e\xa6\x6e\xae\x6e\xc0\x6e\xd2\x6e\xe6\x6e\xfa\x6f\ \x18\x6f\x38\x6f\x74\x6f\xb0\x6f\xc4\x6f\xd8\x70\x04\x70\x2c\x70\ \x4a\x70\x68\x70\x9c\x70\xd0\x70\xfc\x71\x26\x71\x58\x71\x8a\x71\ \xac\x71\xce\x71\xec\x72\x0c\x72\x2e\x72\x50\x72\x78\x72\x9e\x72\ \xc6\x72\xe4\x73\x18\x73\x44\x73\x72\x73\xa0\x73\xd2\x74\x08\x74\ \x2e\x74\x42\x74\x84\x74\xc6\x75\x04\x75\x44\x75\x8a\x75\xd2\x76\ \x14\x76\x56\x76\x7c\x76\xa2\x76\xc8\x76\xee\x77\x2a\x77\x64\x77\ \xb0\x77\xfc\x78\x2e\x78\x5c\x78\x8e\x78\xbc\x79\x04\x79\x48\x79\ \xa0\x79\xf8\x7a\x34\x7a\x6c\x7a\x82\x7a\xae\x7a\xae\x7a\xae\x7a\ \xae\x7a\xae\x7a\xc2\x7a\xd6\x7a\xe8\x7a\xfc\x7b\x2a\x7b\x5a\x7b\ \x82\x7b\xac\x7b\xe8\x7c\x26\x7c\x58\x7c\x8e\x7c\xa4\x7c\xba\x7c\ \xd0\x7c\xe6\x7c\xfe\x7d\x14\x7d\x2c\x7d\x42\x7d\x58\x7d\x6e\x7d\ \x84\x7d\x9a\x7d\xb2\x7d\xc8\x7d\xe0\x7d\xf6\x7e\x10\x7e\x28\x7e\ \x48\x7e\x68\x7e\x82\x7e\xa2\x7e\xc2\x7e\xda\x7e\xf4\x7f\x0c\x7f\ \x2c\x7f\x4c\x7f\x66\x7f\x86\x7f\xa6\x7f\xbe\x7f\xdc\x7f\xf8\x80\ \x14\x80\x32\x80\x50\x80\x6c\x80\x88\x80\xa4\x80\xc2\x80\xde\x80\ \xfa\x81\x18\x81\x36\x81\x52\x81\x6e\x81\x8a\x81\xb2\x81\xd6\x81\ \xfa\x82\x20\x82\x46\x82\x6c\x82\x92\x82\xba\x82\xe2\x83\x0a\x83\ \x32\x83\x58\x83\x7e\x83\xa0\x83\xc2\x83\xe8\x84\x0a\x84\x2c\x84\ \x48\x84\x66\x84\x86\x84\xa8\x84\xd2\x84\xf6\x85\x24\x85\x4e\x85\ \x6e\x85\x9c\x85\xc6\x85\xe6\x86\x14\x86\x3e\x86\x5e\x86\x8c\x86\ \xb8\x86\xd8\x87\x0a\x87\x36\x87\x56\x87\x8a\x87\xbc\x87\xe2\x88\ \x1e\x88\x56\x88\x7c\x88\xc0\x89\x0e\x89\x46\x89\x9a\x89\xba\x89\ \xdc\x89\xfe\x8a\x20\x8a\x36\x8a\x4c\x8a\x86\x8a\x9a\x8a\xac\x8a\ \xc0\x8a\xd2\x8a\xe6\x8a\xfa\x8b\x0e\x8b\x22\x8b\x3c\x8b\x54\x8b\ \x6e\x8b\x86\x8b\x9a\x8b\xac\x8b\xbe\x8b\xd0\x8b\xe4\x8b\xf8\x8c\ \x0c\x8c\x20\x8c\x34\x8c\x48\x8c\x5c\x8c\x70\x8c\x84\x8c\x96\x8c\ \xa8\x8c\xba\x8c\xce\x8d\x08\x8d\x82\x8e\x7e\x8e\x92\x8e\xa6\x8e\ \xba\x8e\xce\x8e\xe2\x8e\xf8\x8f\x14\x8f\x2a\x8f\x40\x8f\x54\x8f\ \x70\x8f\x86\x00\x05\x00\x23\x00\x00\x02\x35\x02\x94\x00\x03\x00\ \x06\x00\x09\x00\x0f\x00\x15\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x0a\x00\ \x01\xf4\xb8\x00\x0c\xdc\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \xb8\x00\x10\xdc\x30\x31\x13\x21\x11\x21\x13\x27\x11\x21\x11\x07\ \x17\x2f\x01\x23\x0f\x01\x13\x3f\x01\x23\x1f\x01\x23\x02\x12\xfd\ \xee\xc1\x5e\x01\x4c\x5e\x0a\x27\x29\x04\x29\x27\x54\x2a\x20\x98\ \x1f\x2b\x02\x94\xfd\x6c\x01\x54\xba\xfe\x8d\x01\x73\xba\xf9\x4d\ \x62\x62\x4d\x01\x43\x5f\x3b\x3b\x5f\x00\x00\x00\x02\x00\x09\x00\ \x00\x02\x4f\x02\x8c\x00\x09\x00\x11\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xbb\x00\ \x0a\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x11\xd0\x30\x31\x01\x27\x2e\x01\ \x27\x23\x0e\x01\x0f\x01\x17\x23\x07\x23\x13\x33\x13\x23\x01\x6e\ \x0f\x0d\x1a\x0d\x04\x0c\x1a\x0d\x0f\xa7\xc5\x28\x96\xcb\xb0\xcb\ \x9c\x01\x0e\x3c\x31\x6e\x33\x34\x6d\x31\x3c\x73\x9b\x02\x8c\xfd\ \x74\x00\x00\x00\x03\x00\x54\x00\x00\x02\x2d\x02\x8c\x00\x15\x00\ \x1e\x00\x26\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\ \x1b\xb9\x00\x15\x00\x03\x3e\x59\xba\x00\x25\x00\x15\x00\x00\x11\ \x12\x39\xb8\x00\x25\x2f\xb9\x00\x1e\x00\x01\xf4\xba\x00\x0c\x00\ \x25\x00\x1e\x11\x12\x39\xb8\x00\x00\x10\xb9\x00\x1d\x00\x01\xf4\ \xb8\x00\x15\x10\xb9\x00\x26\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\ \x02\x15\x14\x0e\x02\x07\x15\x1e\x01\x15\x14\x0e\x02\x2b\x01\x13\ \x32\x36\x35\x34\x26\x2b\x01\x15\x13\x32\x35\x34\x26\x2b\x01\x15\ \x54\xcc\x33\x57\x40\x25\x0d\x1c\x2a\x1d\x46\x48\x26\x44\x5b\x35\ \xdf\xc5\x36\x30\x31\x34\x33\x40\x76\x39\x3d\x40\x02\x8c\x0f\x26\ \x3e\x2f\x16\x2c\x26\x1e\x07\x04\x0d\x4a\x42\x32\x48\x2f\x17\x01\ \x85\x2b\x25\x25\x20\x95\xfe\xed\x59\x2b\x27\xab\x00\x00\x00\x00\ \x01\x00\x37\xff\xf4\x02\x39\x02\x98\x00\x1e\x00\x39\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\ \xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\ \x14\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x37\x17\x06\x23\x22\ \x2e\x02\x37\x30\x54\x72\x41\x3f\x61\x21\x51\x17\x36\x23\x23\x3a\ \x2b\x18\x5c\x4a\x23\x39\x18\x51\x52\x7c\x3f\x70\x54\x31\x01\x42\ \x51\x7f\x58\x2e\x33\x20\x5b\x15\x1a\x1d\x36\x4e\x31\x65\x6f\x20\ \x1a\x59\x60\x2b\x54\x7d\x00\x00\x02\x00\x41\x00\x00\x02\x2c\x02\ \x8c\x00\x0c\x00\x19\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\ \x18\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x37\x32\x3e\x02\x35\ \x34\x2e\x02\x2b\x01\x11\x41\xb1\x47\x74\x52\x2d\x2d\x51\x70\x44\ \xb9\xa9\x26\x3f\x2d\x19\x19\x2d\x3f\x26\x15\x02\x8c\x26\x4f\x7a\ \x54\x54\x7c\x51\x28\x77\x16\x31\x50\x3b\x3a\x4f\x2f\x14\xfe\x62\ \x00\x00\x00\x00\x01\x00\x5e\x00\x00\x02\x16\x02\x8c\x00\x0b\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\ \x07\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\ \x01\xf4\xb8\x00\x0b\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\ \x15\x21\x15\x33\x15\x23\x15\x21\x15\x21\x5e\x01\xae\xfe\xe5\xf0\ \xf0\x01\x25\xfe\x48\x02\x8c\x7c\x83\x7b\x96\x7c\x00\x00\x00\x00\ \x01\x00\x6c\x00\x00\x02\x1a\x02\x8c\x00\x09\x00\x43\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\ \xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x07\x00\x09\x00\ \x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\x01\xf4\x30\x31\ \x13\x21\x15\x21\x15\x33\x15\x23\x15\x23\x6c\x01\xae\xfe\xe5\xf1\ \xf1\x93\x02\x8c\x7c\x97\x7c\xfd\x00\x00\x00\x00\x01\x00\x2c\xff\ \xf4\x02\x23\x02\x98\x00\x23\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xb8\x00\x05\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1f\x10\xb9\x00\x14\x00\x01\xf4\ \xba\x00\x19\x00\x1f\x00\x05\x11\x12\x39\xb8\x00\x19\x2f\xb9\x00\ \x1a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x37\x35\x23\x35\x33\ \x11\x0e\x01\x23\x22\x2e\x02\x2c\x2f\x51\x6e\x3f\x42\x5d\x20\x51\ \x15\x32\x27\x20\x36\x28\x17\x4d\x4e\x13\x22\x0b\x5f\xe3\x21\x6c\ \x3f\x3f\x6d\x51\x2e\x01\x42\x52\x7f\x57\x2e\x33\x20\x5b\x15\x1a\ \x1d\x36\x4e\x31\x65\x6f\x0a\x0a\x70\x78\xfe\xd4\x1f\x30\x2b\x54\ \x7d\x00\x00\x00\x01\x00\x40\x00\x00\x02\x18\x02\x8c\x00\x0b\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xba\x00\x09\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\ \x09\x2f\xb9\x00\x02\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x04\xd0\ \xb8\x00\x0b\x10\xb8\x00\x07\xd0\x30\x31\x13\x33\x15\x33\x35\x33\ \x11\x23\x11\x23\x11\x23\x40\x93\xb2\x93\x93\xb2\x93\x02\x8c\xfb\ \xfb\xfd\x74\x01\x10\xfe\xf0\x00\x01\x00\x4a\x00\x00\x02\x0e\x02\ \x8c\x00\x0b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x00\x10\ \xb8\x00\x09\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\x23\x11\x33\ \x15\x21\x4a\x98\x98\x01\xc4\x98\x98\xfe\x3c\x7c\x01\x94\x7c\x7c\ \xfe\x6c\x7c\x00\x01\x00\x3b\xff\xf4\x02\x04\x02\x8c\x00\x14\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\ \x00\x03\x3e\x59\xb9\x00\x02\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\ \x06\x00\x01\xf4\x30\x31\x37\x16\x33\x32\x36\x35\x11\x23\x35\x21\ \x11\x14\x0e\x02\x23\x22\x2e\x02\x27\x90\x3a\x42\x33\x32\xff\x01\ \x92\x19\x3a\x5d\x43\x1b\x3a\x38\x34\x15\xbb\x48\x33\x44\x01\x27\ \x7b\xfe\x52\x30\x55\x40\x25\x0b\x1a\x29\x1e\x00\x01\x00\x44\x00\ \x00\x02\x52\x02\x8c\x00\x0c\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\ \x03\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x33\x13\x33\x03\x13\x23\x03\x07\x15\ \x23\x44\x95\x03\xc1\xa2\xc3\xd6\xa3\x8a\x4c\x95\x02\x8c\xfe\xf5\ \x01\x0b\xfe\xfc\xfe\x78\x01\x13\x64\xaf\x00\x00\x01\x00\x6b\x00\ \x00\x02\x20\x02\x8c\x00\x05\x00\x2b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x02\x00\ \x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x6b\x93\x01\x22\xfe\x4b\ \x02\x8c\xfd\xf0\x7c\x00\x00\x00\x01\x00\x41\x00\x00\x02\x17\x02\ \x8c\x00\x1d\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x12\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xd0\xb8\x00\x1d\x10\xb8\x00\ \x09\xd0\xb8\x00\x00\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x10\xd0\ \x30\x31\x13\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\x35\x34\x3e\x02\ \x37\x23\x0f\x01\x23\x2f\x01\x23\x1e\x03\x1d\x01\x23\x41\x93\x42\ \x16\x03\x16\x3f\x93\x77\x04\x06\x06\x03\x03\x33\x32\x41\x32\x31\ \x04\x03\x06\x06\x04\x75\x02\x8c\xe7\x5a\x5a\xe7\xfd\x74\xd5\x1b\ \x4f\x54\x4f\x1a\xb3\x9b\x9b\xb3\x1a\x4f\x54\x4f\x1b\xd5\x00\x00\ \x01\x00\x42\x00\x00\x02\x16\x02\x8c\x00\x13\x00\x59\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\ \xba\x00\x02\x00\x01\x00\x0b\x11\x12\x39\xb9\x00\x04\x00\x01\xf4\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xba\x00\x0c\x00\x0b\x00\x01\x11\ \x12\x39\xb8\x00\x01\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0b\x10\ \xb8\x00\x12\xd0\x30\x31\x13\x33\x13\x17\x33\x2e\x01\x3d\x01\x33\ \x11\x23\x03\x27\x23\x1e\x01\x1d\x01\x23\x42\x96\x8a\x38\x04\x05\ \x10\x8d\x96\x8a\x38\x04\x05\x10\x8d\x02\x8c\xfe\xbb\x8f\x34\x80\ \x39\xe7\xfd\x74\x01\x45\x8e\x36\x7c\x3a\xe7\x00\x02\x00\x26\xff\ \xf4\x02\x32\x02\x98\x00\x13\x00\x1f\x00\x35\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb9\x00\ \x14\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x1a\x00\x01\xf4\x30\x31\ \x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x3a\x61\ \x45\x26\x26\x45\x61\x3a\x3a\x61\x45\x26\x26\x45\x61\x3a\x33\x3c\ \x3c\x33\x33\x3c\x3c\x0c\x2f\x58\x7e\x50\x50\x7d\x55\x2d\x2d\x56\ \x7d\x4f\x50\x7e\x58\x2f\x7f\x73\x63\x62\x6e\x6e\x62\x63\x73\x00\ \x02\x00\x4a\x00\x00\x02\x37\x02\x8c\x00\x0e\x00\x16\x00\x47\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\ \x3e\x59\xba\x00\x0c\x00\x0e\x00\x00\x11\x12\x39\xb8\x00\x0c\x2f\ \xb8\x00\x00\x10\xb9\x00\x15\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\ \x16\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\ \x01\x15\x23\x13\x32\x35\x34\x26\x2b\x01\x15\x4a\xee\x35\x5d\x45\ \x28\x29\x46\x5c\x34\x5b\x93\xe5\x77\x3c\x3b\x52\x02\x8c\x15\x31\ \x51\x3b\x39\x54\x36\x1a\xdd\x01\x52\x68\x33\x2a\xc5\x00\x00\x00\ \x02\x00\x24\xff\x4e\x02\x44\x02\x98\x00\x0b\x00\x2a\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\ \x3e\x59\xbb\x00\x27\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x1c\x10\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x14\x10\xb8\x00\x24\xd0\x30\x31\x01\x22\x06\x15\x14\x16\ \x33\x32\x36\x35\x34\x26\x13\x0e\x01\x23\x22\x2e\x02\x27\x2e\x01\ \x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x1e\x01\x33\x32\ \x36\x37\x01\x29\x34\x3a\x3a\x34\x33\x3b\x3b\xe8\x11\x30\x1f\x30\ \x50\x41\x30\x0f\x58\x68\x26\x44\x60\x3b\x3a\x60\x44\x26\x5e\x51\ \x11\x43\x23\x0f\x1b\x0b\x02\x19\x6e\x62\x63\x73\x73\x63\x62\x6e\ \xfd\x4a\x09\x0c\x1a\x2e\x41\x26\x19\xab\x88\x50\x7d\x55\x2d\x2d\ \x56\x7d\x4f\x81\xa9\x1d\x23\x1b\x08\x05\x00\x00\x02\x00\x46\x00\ \x00\x02\x48\x02\x8c\x00\x07\x00\x17\x00\x53\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xba\x00\ \x0a\x00\x0c\x00\x0d\x11\x12\x39\xb8\x00\x0a\x2f\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x0d\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x0c\x10\ \xb8\x00\x08\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x13\x33\ \x32\x35\x34\x26\x2b\x01\x13\x27\x23\x15\x23\x11\x33\x32\x1e\x02\ \x15\x14\x06\x07\x13\xd9\x48\x77\x3c\x3b\x48\xca\x7d\x4d\x93\xe7\ \x34\x5b\x45\x28\x40\x34\x93\x01\x60\x61\x30\x26\xfd\xe9\xeb\xeb\ \x02\x8c\x14\x2f\x4e\x3a\x48\x5d\x17\xfe\xfb\x00\x01\x00\x32\xff\ \xf4\x02\x27\x02\x98\x00\x2f\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x06\x00\x2c\x00\x16\x11\x12\x39\xb8\x00\x16\x10\ \xb9\x00\x1d\x00\x01\xf4\xba\x00\x20\x00\x16\x00\x2c\x11\x12\x39\ \x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x2e\x03\ \x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\ \x16\x1f\x01\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x87\x25\x57\ \x2b\x33\x2f\x0e\x1a\x25\x18\x54\x1b\x33\x26\x17\x23\x3f\x58\x35\ \x3c\x70\x2d\x4b\x22\x42\x2a\x2b\x2f\x3c\x2f\x4f\x41\x4b\x22\x40\ \x5e\x3d\x42\x81\x35\xb7\x1e\x26\x22\x1d\x0f\x16\x11\x0f\x09\x24\ \x0a\x20\x2b\x39\x24\x28\x47\x35\x1e\x2c\x2a\x5d\x19\x1b\x1f\x1c\ \x1e\x1e\x11\x22\x18\x54\x45\x29\x49\x37\x21\x2f\x2f\x00\x00\x00\ \x01\x00\x1f\x00\x00\x02\x39\x02\x8c\x00\x07\x00\x33\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\ \xb8\x00\x02\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\ \x13\x23\x35\x21\x15\x23\x11\x23\xe2\xc3\x02\x1a\xc3\x94\x02\x10\ \x7c\x7c\xfd\xf0\x00\x00\x00\x00\x01\x00\x40\xff\xf4\x02\x18\x02\ \x8c\x00\x11\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\ \x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x33\x11\x14\x16\x33\x32\x36\ \x35\x11\x33\x11\x14\x06\x23\x22\x26\x35\x40\x93\x2c\x2f\x2f\x2d\ \x8e\x73\x77\x78\x76\x02\x8c\xfe\x60\x3b\x3e\x3e\x3b\x01\xa0\xfe\ \x6f\x80\x87\x87\x80\x00\x00\x00\x01\x00\x0f\x00\x00\x02\x49\x02\ \x8c\x00\x0d\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\ \x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x13\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x0f\x9c\x4e\x0f\x17\x0e\x04\x0f\x18\x0e\ \x4d\x96\xc4\xb1\x02\x8c\xfe\xd0\x36\x65\x36\x36\x65\x36\x01\x30\ \xfd\x74\x00\x00\x01\x00\x04\x00\x00\x02\x54\x02\x8c\x00\x21\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x03\x3e\x59\xbb\x00\x1c\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x20\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x01\x10\ \xb8\x00\x14\xd0\xb8\x00\x20\x10\xb8\x00\x17\xd0\x30\x31\x13\x33\ \x13\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\ \x04\x96\x15\x01\x02\x01\x03\x08\x13\x08\x2d\x59\x2b\x08\x12\x08\ \x04\x02\x01\x02\x13\x8c\x51\x9a\x29\x06\x0a\x02\x03\x03\x09\x06\ \x27\x97\x02\x8c\xfe\xa5\x2a\x52\x2a\x2a\x52\x2a\xb5\xb5\x28\x54\ \x2a\x2a\x53\x29\x01\x5b\xfd\x74\xcd\x1f\x41\x1d\x1d\x41\x1f\xcd\ \x00\x00\x00\x00\x01\x00\x12\x00\x00\x02\x46\x02\x8c\x00\x19\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\ \x00\x03\x3e\x59\xba\x00\x00\x00\x18\x00\x02\x11\x12\x39\xba\x00\ \x06\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x0b\xd0\ \xba\x00\x0d\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x18\x10\xb8\x00\ \x0f\xd0\xba\x00\x14\x00\x18\x00\x02\x11\x12\x39\x30\x31\x13\x03\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x13\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xd0\xb3\xa5\x3f\x0b\x18\x0f\x04\ \x0c\x15\x0b\x3a\x9e\xb3\xbe\xa4\x47\x0e\x18\x0e\x04\x0c\x18\x0c\ \x44\x9d\x01\x4f\x01\x3d\x7b\x17\x33\x1f\x1f\x33\x17\x7b\xfe\xbc\ \xfe\xb8\x85\x1a\x33\x1e\x1e\x33\x1a\x85\x00\x00\x01\x00\x10\x00\ \x00\x02\x48\x02\x8c\x00\x0f\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\x07\ \x00\x0e\x00\x01\x11\x12\x39\x30\x31\x37\x03\x33\x17\x1e\x01\x17\ \x33\x3e\x01\x3f\x01\x33\x03\x15\x23\xe2\xd2\x9e\x42\x0e\x1e\x0f\ \x04\x10\x1e\x0f\x42\x9a\xd2\x94\xdc\x01\xb0\x9d\x26\x48\x27\x27\ \x48\x26\x9d\xfe\x50\xdc\x00\x00\x01\x00\x38\x00\x00\x02\x23\x02\ \x8c\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x38\x01\x32\xfe\ \xeb\x01\xca\xfe\xcf\x01\x35\xfe\x15\x59\x01\xb8\x7b\x59\xfe\x49\ \x7c\x00\x00\x00\x02\x00\x3d\xff\xf4\x02\x17\x01\xfc\x00\x1d\x00\ \x29\x00\x80\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\ \x0f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\ \x00\x19\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x0f\x00\x13\x11\x12\ \x39\xb8\x00\x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\xb8\ \x00\x19\x10\xb9\x00\x21\x00\x01\xf4\xba\x00\x0b\x00\x08\x00\x21\ \x11\x12\x39\xba\x00\x15\x00\x13\x00\x0f\x11\x12\x39\xb8\x00\x15\ \x10\xb9\x00\x24\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\ \xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x01\x23\x22\x06\x07\x27\x3e\ \x01\x33\x32\x16\x15\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x36\x37\x35\x0e\x03\x3d\x24\x4f\x7c\x58\x04\x33\ \x33\x24\x49\x2a\x34\x33\x75\x40\x68\x78\x78\x0b\x04\x26\x5a\x30\ \x26\x3c\x2a\x17\x8d\x25\x20\x21\x3a\x1a\x37\x48\x2a\x11\x8a\x2a\ \x3f\x2c\x1b\x05\x22\x26\x19\x15\x60\x1d\x26\x6e\x72\xfe\xe4\x38\ \x1d\x27\x17\x29\x36\x2b\x18\x17\x1b\x14\x52\x03\x0e\x15\x1c\x00\ \x02\x00\x48\xff\xf4\x02\x29\x02\xbd\x00\x16\x00\x21\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x10\x11\x12\x39\xba\x00\ \x14\x00\x10\x00\x06\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x10\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x06\x10\ \xb9\x00\x1f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x21\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x36\x35\x34\x23\ \x22\x07\x48\x93\x04\x1d\x49\x24\x2e\x4b\x33\x1c\x24\x3c\x4d\x2a\ \x23\x45\x1f\x04\x0c\x73\x93\x15\x2d\x14\x29\x38\x5b\x2f\x2d\x02\ \xbd\xac\x4e\x1b\x1e\x24\x41\x5d\x39\x40\x64\x45\x24\x22\x20\x36\ \x8d\x12\x0f\x45\x4d\x86\x2e\x00\x01\x00\x43\xff\xf4\x02\x24\x01\ \xfc\x00\x1c\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\ \x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x07\x26\x23\x22\x06\x15\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x43\x2f\x4f\x68\x39\x3b\x5f\ \x20\x44\x37\x37\x40\x50\x4d\x3e\x27\x42\x1a\x3c\x2d\x6d\x33\x3b\ \x64\x4b\x2a\xf8\x3e\x61\x42\x23\x26\x1d\x5b\x27\x4c\x41\x41\x4c\ \x1c\x13\x5d\x26\x23\x23\x42\x61\x00\x00\x00\x00\x02\x00\x2f\xff\ \xf4\x02\x10\x02\xbd\x00\x16\x00\x23\x00\x83\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\ \xba\x00\x08\x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\ \x05\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\ \x0e\x10\xb9\x00\x1d\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1e\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x27\x35\x33\x11\x23\x27\x23\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x2f\x24\x3b\x4c\x29\x2b\x3a\x1a\x05\x93\x78\x0b\x03\x1c\x48\x26\ \x2f\x4d\x37\x1e\x97\x32\x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\xf8\ \x3d\x60\x43\x24\x1d\x18\x4d\xa9\xfd\x43\x33\x1b\x24\x24\x43\x60\ \x3f\x4a\x44\x15\x19\xc9\x12\x0f\x44\x00\x00\x00\x02\x00\x37\xff\ \xf4\x02\x22\x01\xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\ \x23\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x18\x10\xb9\x00\x11\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x21\x1e\x01\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x2e\x02\x25\x34\x26\x23\x22\x06\x07\x37\ \x2b\x48\x5d\x32\x39\x58\x3a\x1e\x04\x02\xfe\xb2\x08\x51\x37\x22\ \x3d\x21\x30\x2a\x68\x32\x3a\x64\x4a\x2b\x01\x66\x2e\x33\x28\x3e\ \x0a\xf8\x3d\x60\x43\x24\x24\x40\x57\x33\x14\x24\x09\x38\x31\x11\ \x11\x58\x1b\x1f\x23\x43\x60\x74\x2a\x34\x2e\x30\x00\x00\x00\x00\ \x01\x00\x52\x00\x00\x02\x49\x02\xc9\x00\x18\x00\x56\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\ \x59\xb8\x00\x15\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x0f\x10\xb8\ \x00\x06\xd0\xb8\x00\x0f\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x09\ \xd0\x30\x31\x01\x26\x23\x22\x06\x1d\x01\x33\x15\x23\x11\x23\x11\ \x23\x35\x37\x35\x34\x3e\x02\x33\x32\x16\x17\x02\x2d\x31\x37\x30\ \x2d\xab\xab\x93\x83\x83\x1a\x36\x54\x3a\x2b\x4b\x20\x02\x42\x13\ \x2a\x2d\x0e\x73\xfe\x83\x01\x7d\x6d\x06\x0d\x2b\x4a\x37\x20\x10\ \x0b\x00\x00\x00\x03\x00\x34\xff\x2d\x02\x3c\x01\xfc\x00\x0f\x00\ \x44\x00\x50\x00\xb2\x00\xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\ \xb9\x00\x22\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\ \x1b\xb9\x00\x25\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x24\ \x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x40\x2f\x1b\xb9\x00\x40\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x40\x10\xb9\ \x00\x03\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\xb8\x00\x12\ \xd0\xb8\x00\x0a\x10\xb9\x00\x37\x00\x01\xf4\xb8\x00\x2f\xdc\xb9\ \x00\x45\x00\x01\xf4\xba\x00\x31\x00\x45\x00\x2f\x11\x12\x39\xb8\ \x00\x31\x10\xb8\x00\x19\xd0\xb8\x00\x25\x10\xb9\x00\x26\x00\x01\ \xf4\xb8\x00\x24\x10\xb9\x00\x27\x00\x01\xf4\xb8\x00\x22\x10\xb9\ \x00\x4b\x00\x01\xf4\x30\x31\x17\x14\x16\x33\x32\x36\x35\x34\x26\ \x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x37\x35\x2e\x01\x35\x34\x36\ \x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\x1e\x01\ \x15\x14\x0e\x02\x23\x22\x27\x0e\x01\x15\x14\x16\x3b\x01\x32\x16\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x13\x32\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\xac\x43\x3b\x3c\x4a\x2c\x2b\x3e\x1b\x23\x0e\x13\ \x10\x78\x4d\x14\x1e\x21\x1a\x1b\x26\x23\x3a\x4d\x2a\x2e\x24\xc9\ \x65\x09\x0e\x20\x37\x4b\x2b\x20\x24\x0b\x0b\x28\x2c\x5c\x62\x67\ \x2a\x4c\x6e\x43\x30\x53\x3c\x22\xe9\x1f\x2d\x2d\x1f\x1f\x2b\x2b\ \x3e\x1c\x1d\x23\x1a\x18\x0f\x03\x03\x0c\x17\x24\x3d\x26\x04\x0d\ \x28\x20\x19\x32\x12\x04\x12\x41\x2c\x2d\x43\x2d\x17\x0c\x6b\x0b\ \x23\x14\x2b\x3e\x29\x14\x0a\x08\x10\x0c\x14\x12\x3a\x43\x27\x42\ \x2f\x1b\x0f\x1f\x30\x01\x6b\x29\x29\x28\x29\x29\x28\x29\x29\x00\ \x01\x00\x48\x00\x00\x02\x1c\x02\xbd\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x03\x00\x08\x00\x0d\x11\x12\x39\xb8\x00\x08\x10\ \xb9\x00\x11\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x03\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x06\x07\x11\x23\x48\x93\x08\x0f\x23\x29\x31\x1c\x54\ \x4d\x93\x20\x29\x1e\x2d\x1a\x93\x02\xbd\xac\x5f\x0e\x1b\x15\x0c\ \x6c\x5e\xfe\xce\x01\x1f\x32\x2e\x1a\x1a\xfe\xb5\x00\x00\x00\x00\ \x02\x00\x4f\x00\x00\x01\xbb\x02\xee\x00\x05\x00\x11\x00\x3b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\ \x3e\x59\xb8\x00\x00\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x21\x11\x23\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x4f\x01\x5a\x93\ \xc7\x01\x0a\x2b\x37\x37\x2b\x2b\x37\x37\x01\xf0\xfe\x10\x01\x7d\ \xbc\x30\x29\x29\x33\x33\x29\x29\x30\x00\x00\x00\x02\x00\x2a\xff\ \x3c\x01\xbb\x02\xee\x00\x13\x00\x1f\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x14\xdc\xb8\x00\x1a\xdc\x30\x31\x13\x21\x11\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x11\x23\x25\ \x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x4f\x01\x5a\x15\x35\ \x59\x43\x2e\x4b\x20\x2b\x1e\x31\x16\x35\x27\xc7\x01\x0a\x2b\x37\ \x37\x2b\x2b\x37\x37\x01\xf0\xfe\x2e\x2d\x52\x3e\x25\x13\x0f\x69\ \x0e\x0a\x33\x36\x01\x65\xbc\x30\x29\x29\x33\x33\x29\x29\x30\x00\ \x01\x00\x4c\x00\x00\x02\x49\x02\xbd\x00\x0c\x00\x6d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\ \x3e\x59\xba\x00\x02\x00\x00\x00\x0c\x11\x12\x39\xba\x00\x09\x00\ \x00\x00\x08\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\ \x02\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x33\x37\x33\ \x07\x13\x23\x27\x07\x15\x23\x4c\x93\x04\xb6\xa1\xbc\xcb\x9f\x82\ \x49\x93\x02\xbd\xfe\x6b\xc8\xcc\xfe\xdc\xca\x4d\x7d\x00\x00\x00\ \x01\x00\x3e\xff\xf4\x02\x20\x02\xbd\x00\x15\x00\x35\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x15\x00\x01\xf4\ \x30\x31\x13\x21\x11\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x03\x23\ \x22\x26\x35\x11\x23\x3e\x01\x23\x0d\x17\x1d\x0f\x11\x26\x17\x21\ \x14\x22\x22\x26\x17\x5e\x5f\x90\x02\xbd\xfd\xff\x17\x1f\x13\x08\ \x07\x09\x6c\x06\x0a\x07\x04\x6f\x5f\x01\x87\x00\x01\x00\x24\x00\ \x00\x02\x3d\x01\xfc\x00\x20\x00\xa3\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\ \xba\x00\x02\x00\x20\x00\x00\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\ \x09\xd0\xb8\x00\x0c\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\x09\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\ \xb8\x00\x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x33\x17\x33\ \x3e\x01\x33\x32\x16\x17\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x23\x22\x07\x11\x23\x11\x34\x23\x22\x06\x07\x11\x23\x24\x6e\x0b\ \x04\x0e\x31\x2b\x21\x2d\x09\x0e\x35\x2a\x34\x3a\x8a\x1c\x1b\x13\ \x71\x1d\x0e\x14\x0b\x8a\x01\xf0\x3e\x1f\x2b\x29\x28\x22\x2f\x55\ \x4b\xfe\xa4\x01\x51\x2e\x30\xfe\xb1\x01\x51\x2e\x18\x18\xfe\xb1\ \x00\x00\x00\x00\x01\x00\x48\x00\x00\x02\x1c\x01\xfc\x00\x14\x00\ \x65\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\ \x14\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\ \x00\x0b\x00\x03\x3e\x59\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\ \xb8\x00\x06\x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\ \x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x16\x15\ \x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\x48\x78\x0b\x04\x20\ \x53\x38\x54\x4e\x93\x20\x29\x1e\x2d\x1a\x93\x01\xf0\x42\x20\x2e\ \x6c\x5e\xfe\xce\x01\x1f\x32\x2e\x1a\x1a\xfe\xb5\x00\x00\x00\x00\ \x02\x00\x2f\xff\xf4\x02\x29\x01\xfc\x00\x13\x00\x1f\x00\x35\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xb9\x00\x17\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x1d\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\ \x2f\x2a\x47\x5b\x31\x31\x5b\x47\x2a\x2a\x47\x5b\x31\x31\x5b\x47\ \x2a\x97\x33\x33\x33\x33\x33\x33\x33\x33\xf8\x3e\x61\x42\x23\x23\ \x42\x61\x3e\x3e\x61\x42\x23\x23\x42\x61\x3e\x41\x4c\x4c\x41\x41\ \x4c\x4c\x00\x00\x02\x00\x48\xff\x48\x02\x29\x01\xfc\x00\x15\x00\ \x20\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\ \x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\ \x1b\xb9\x00\x02\x00\x05\x3e\x59\xba\x00\x05\x00\x09\x00\x13\x11\ \x12\x39\xba\x00\x15\x00\x13\x00\x09\x11\x12\x39\xb8\x00\x15\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x19\x00\x01\xf4\ \xb8\x00\x09\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\ \x20\x00\x01\xf4\x30\x31\x17\x15\x23\x11\x33\x17\x33\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x27\x37\x1e\x01\x33\x32\x36\ \x35\x34\x23\x22\x07\xdb\x93\x78\x0b\x03\x1e\x4e\x28\x2e\x4a\x34\ \x1b\x24\x3c\x4d\x2a\x44\x38\x05\x15\x2d\x13\x2a\x38\x5b\x2f\x2d\ \x27\x91\x02\xa8\x32\x1b\x23\x24\x42\x5d\x39\x40\x63\x45\x24\x36\ \x63\x12\x0f\x45\x4d\x86\x2e\x00\x02\x00\x2f\xff\x48\x02\x10\x01\ \xfc\x00\x16\x00\x23\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\x3e\x59\xba\x00\x08\x00\ \x05\x00\x12\x11\x12\x39\xba\x00\x0f\x00\x12\x00\x05\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0f\x10\xb9\x00\ \x1d\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x2f\x24\x3b\x4c\ \x29\x2a\x41\x1f\x04\x0c\x73\x93\x06\x1a\x46\x23\x2f\x4d\x37\x1e\ \x97\x32\x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\xf8\x3d\x60\x43\x24\ \x1e\x21\x33\xfd\x58\x99\x4c\x19\x20\x24\x43\x60\x3f\x4a\x44\x15\ \x19\xc9\x12\x0f\x44\x00\x00\x00\x01\x00\x74\x00\x00\x02\x24\x01\ \xfc\x00\x12\x00\x54\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\ \x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\ \x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xba\x00\x02\x00\x11\x00\x00\ \x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x02\ \x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\ \x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x11\x23\x74\x78\x0c\x03\ \x25\x68\x3c\x21\x29\x16\x1e\x17\x25\x1c\x2e\x59\x20\x93\x01\xf0\ \x6c\x3d\x3b\x0a\x0a\x7b\x07\x07\x36\x43\xfe\xfe\x00\x00\x00\x00\ \x01\x00\x35\xff\xf4\x02\x1c\x01\xfc\x00\x2f\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x2c\x00\x13\x11\x12\x39\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xba\x00\x1d\x00\x13\x00\ \x2c\x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x27\ \x2e\x03\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\ \x15\x14\x1e\x02\x17\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x77\ \x2b\x57\x32\x33\x2c\x49\x3c\x21\x3f\x32\x1f\x20\x3b\x55\x35\x42\ \x6d\x27\x42\x22\x48\x27\x2f\x27\x14\x22\x2f\x1a\x25\x42\x32\x1e\ \x20\x3d\x5b\x3c\x43\x80\x30\x9c\x1b\x20\x16\x14\x17\x1d\x11\x09\ \x19\x23\x2e\x1e\x22\x3a\x28\x17\x2b\x19\x58\x14\x1b\x14\x13\x0b\ \x12\x0e\x0d\x07\x0a\x19\x22\x30\x20\x22\x3a\x2b\x19\x2c\x20\x00\ \x01\x00\x31\xff\xf4\x02\x26\x02\x74\x00\x19\x00\x4d\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\ \x03\x10\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x14\x10\xb9\x00\x0d\x00\x01\xf4\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\ \x2e\x02\x35\xae\x7d\x84\x13\x79\xd2\xd2\x32\x36\x1d\x30\x16\x1a\ \x21\x51\x30\x3b\x52\x33\x16\x01\x7d\x6d\x06\x84\x84\x73\xae\x39\ \x2f\x0a\x08\x6a\x0a\x11\x20\x39\x50\x31\x00\x00\x01\x00\x3e\xff\ \xf4\x02\x0d\x01\xf0\x00\x14\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xba\x00\ \x02\x00\x06\x00\x13\x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0f\x00\ \x01\xf4\xb8\x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x21\x23\ \x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\ \x37\x11\x33\x02\x0d\x78\x0b\x04\x21\x50\x36\x55\x4c\x93\x1e\x2a\ \x1c\x2b\x1a\x93\x47\x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\x18\ \x21\x01\x46\x00\x01\x00\x1f\x00\x00\x02\x39\x01\xf0\x00\x0d\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\ \x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\x30\x31\x13\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x1f\x94\x4e\x0c\x16\ \x0b\x04\x0b\x15\x0c\x4e\x8d\xb6\xa9\x01\xf0\xea\x26\x4c\x27\x27\ \x4c\x26\xea\xfe\x10\x00\x00\x00\x01\x00\x04\x00\x00\x02\x54\x01\ \xf0\x00\x21\x00\x74\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\ \x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xba\x00\x06\x00\x00\ \x00\x21\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x0f\xd0\xba\x00\x1c\ \x00\x00\x00\x17\x11\x12\x39\x30\x31\x13\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\ \x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x04\x90\x1e\x05\x07\ \x05\x03\x05\x0a\x08\x1f\x67\x21\x07\x0c\x05\x04\x05\x06\x05\x1e\ \x86\x4d\xaa\x1c\x05\x09\x05\x04\x03\x07\x08\x1b\xa7\x01\xf0\xe6\ \x25\x48\x26\x26\x4a\x23\xa4\xa4\x25\x48\x26\x26\x48\x25\xe6\xfe\ \x10\xa5\x23\x47\x28\x1b\x44\x33\xa5\x00\x00\x00\x01\x00\x25\x00\ \x00\x02\x32\x01\xf0\x00\x19\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xba\x00\ \x13\x00\x01\x00\x19\x11\x12\x39\xb8\x00\x13\x10\xb8\x00\x00\xd0\ \xb8\x00\x13\x10\xb8\x00\x0d\xd0\xb8\x00\x07\xd0\x30\x31\x13\x27\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xd1\xa1\x9e\x33\x0b\x1c\x0d\x04\ \x0a\x15\x0a\x2c\x9a\xa2\xac\x9e\x39\x0e\x1d\x0e\x04\x0b\x18\x0b\ \x31\x9a\x01\x02\xee\x50\x15\x2b\x15\x15\x2c\x14\x50\xff\xf1\x52\ \x15\x2c\x15\x15\x2b\x16\x52\x00\x01\x00\x1f\xff\x3e\x02\x3b\x01\ \xf0\x00\x1c\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\ \x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xb8\x00\x18\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x0d\x00\x07\x00\x06\x11\x12\x39\x30\x31\ \x17\x16\x33\x32\x36\x3f\x01\x03\x33\x17\x1e\x01\x17\x33\x3e\x01\ \x3f\x01\x33\x03\x0e\x03\x23\x22\x26\x27\x37\x5d\x13\x14\x2b\x31\ \x0c\x0a\xd7\x92\x53\x0e\x18\x0c\x04\x0a\x18\x0b\x49\x8b\xc4\x12\ \x2a\x36\x47\x2f\x16\x26\x10\x1a\x48\x06\x24\x1d\x1a\x01\xe3\xd5\ \x23\x4b\x27\x25\x4b\x25\xd5\xfe\x0b\x2f\x47\x2f\x18\x05\x05\x70\ \x00\x00\x00\x00\x01\x00\x46\x00\x00\x02\x1d\x01\xf0\x00\x09\x00\ \x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\ \x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\x37\x01\ \x23\x35\x21\x15\x01\x21\x15\x21\x46\x01\x04\xe4\x01\xaf\xfe\xfc\ \x01\x0c\xfe\x29\x4f\x01\x2e\x73\x4e\xfe\xd1\x73\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x36\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x47\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x48\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x2d\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x7d\x02\x26\x00\x04\x00\x00\x00\x06\x02\xf2\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x36\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x02\ \x8c\x02\x26\x00\x04\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x76\x02\x26\x00\x04\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x53\x03\ \x7a\x02\x26\x00\x04\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\x7a\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\ \x95\x02\x26\x00\x04\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\ \xff\x00\x09\x00\x00\x02\x4f\x03\xc5\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x03\ \x36\x02\x26\x00\x04\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\ \xfc\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\x9f\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x16\x00\x00\x00\x00\xff\xff\x00\x09\x00\ \x00\x02\x4f\x03\x9f\x02\x26\x00\x04\x00\x00\x00\x06\x03\x18\x00\ \x00\x00\x00\xff\xff\x00\x09\x00\x00\x02\x4f\x03\xce\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x1a\x00\x00\x00\x00\xff\xff\x00\x09\x00\ \x00\x02\x4f\x03\xc6\x02\x26\x00\x04\x00\x00\x00\x06\x03\x1c\x00\ \x00\x00\x00\xff\xff\x00\x09\xff\x03\x02\x4f\x03\x36\x02\x26\x00\ \x04\x00\x00\x00\x26\x02\xea\x00\x00\x00\x06\x02\xfc\x00\x00\x00\ \x02\x00\x09\xff\x21\x02\x65\x02\x8c\x00\x09\x00\x28\x00\x65\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\ \x00\x03\x3e\x59\xbb\x00\x25\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\ \x00\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x04\x00\ \x01\xf4\x30\x31\x01\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x01\x0e\ \x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x27\x23\x07\x23\x13\x33\ \x13\x0e\x03\x15\x14\x16\x33\x32\x36\x37\x01\x6e\x0f\x0d\x1a\x0d\ \x04\x0c\x19\x0e\x0f\x01\x80\x14\x3b\x1a\x30\x42\x10\x18\x1d\x0c\ \x28\x27\xc5\x28\x96\xcb\xb0\xcb\x15\x21\x17\x0d\x17\x10\x0b\x14\ \x08\x01\x0e\x3c\x31\x6e\x33\x34\x6d\x31\x3c\xfe\x36\x0f\x14\x31\ \x2d\x17\x29\x21\x19\x07\x9b\x9b\x02\x8c\xfd\x74\x02\x11\x1a\x1e\ \x0f\x13\x13\x09\x05\x00\x00\x00\x02\xff\xfd\x00\x00\x02\x53\x02\ \x8c\x00\x06\x00\x16\x00\x66\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\ \x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\ \x00\x0a\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x14\x00\x04\x2b\xb8\ \x00\x0e\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x07\ \x00\x01\xf4\xb8\x00\x01\x10\xb8\x00\x11\xd0\x30\x31\x01\x11\x23\ \x0e\x01\x0f\x01\x05\x15\x21\x35\x23\x07\x23\x13\x21\x15\x23\x15\ \x33\x15\x23\x15\x01\x37\x03\x0d\x1c\x0c\x1c\x01\x70\xfe\xe4\x76\ \x2d\x97\xd1\x01\x7c\x91\x76\x76\x01\x07\x01\x16\x31\x5d\x2b\x5d\ \x8b\x7c\x95\x95\x02\x8c\x7c\x81\x7c\x97\x00\x00\x03\x00\x09\x00\ \x00\x02\x30\x02\x8c\x00\x0c\x00\x14\x00\x2c\x00\x63\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x08\xd0\xb8\x00\ \x07\xd0\xb8\x00\x0d\xd0\xb8\x00\x24\x10\xb9\x00\x13\x00\x01\xf4\ \xba\x00\x15\x00\x0d\x00\x07\x11\x12\x39\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x22\xd0\xb8\x00\x21\xd0\x30\x31\ \x25\x32\x36\x35\x34\x26\x2b\x01\x15\x33\x15\x23\x15\x11\x33\x32\ \x35\x34\x26\x2b\x01\x17\x1e\x01\x15\x14\x0e\x02\x2b\x01\x35\x23\ \x35\x37\x11\x33\x32\x1e\x02\x15\x14\x06\x07\x01\x29\x3c\x3e\x3d\ \x3d\x42\x6a\x6a\x35\x67\x33\x33\x36\xbb\x46\x48\x27\x43\x5c\x35\ \xe1\x4b\x4b\xce\x33\x57\x3f\x24\x34\x39\x69\x36\x34\x34\x2f\x40\ \x47\x46\x01\x24\x51\x24\x20\xb8\x0e\x4f\x45\x34\x4b\x31\x18\xaf\ \x41\x06\x01\x96\x10\x25\x3c\x2c\x29\x4a\x0e\xff\xff\x00\x37\xff\ \x23\x02\x39\x02\x98\x02\x26\x00\x06\x00\x00\x00\x06\x03\x00\x30\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x39\x03\x36\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xe2\x36\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x39\x03\x36\x02\x26\x00\x06\x00\x00\x00\x06\x02\xe4\x36\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x39\x03\x36\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xf6\x36\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x39\x03\x57\x02\x26\x00\x06\x00\x00\x00\x06\x02\xec\x36\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x2c\x03\x36\x02\x26\x00\ \x07\x00\x00\x00\x06\x02\xf6\xfe\x00\x00\x00\xff\xff\x00\x41\xff\ \x03\x02\x2c\x02\x8c\x02\x26\x00\x07\x00\x00\x00\x06\x02\xfc\xf7\ \x00\x00\x00\xff\xff\x00\x41\xff\x43\x02\x2c\x02\x8c\x02\x26\x00\ \x07\x00\x00\x00\x06\x03\x04\xf7\x00\x00\x00\xff\xff\x00\x02\x00\ \x00\x02\x32\x02\x8c\x02\x06\x00\xe6\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe0\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe2\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe4\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf6\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x48\x02\x26\x00\x08\x00\x00\x00\x06\x02\xee\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x2d\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe8\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x08\x00\x00\x00\x06\x02\xea\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x57\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xec\x16\x00\x00\x00\xff\xff\x00\x5e\xff\ \x03\x02\x16\x02\x8c\x02\x26\x00\x08\x00\x00\x00\x06\x02\xfc\x15\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x16\x03\x76\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf0\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\x47\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe6\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x69\x03\x7a\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x0e\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x30\x03\x7a\x02\x26\x00\x08\x00\x00\x00\x06\x03\x10\x16\ \x00\x00\x00\xff\xff\x00\x5e\x00\x00\x02\x3f\x03\x95\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x12\x16\x00\x00\x00\xff\xff\x00\x5e\x00\ \x00\x02\x16\x03\xc5\x02\x26\x00\x08\x00\x00\x00\x06\x03\x14\x16\ \x00\x00\x00\xff\xff\x00\x5e\xff\x03\x02\x16\x03\x36\x02\x26\x00\ \x08\x00\x00\x00\x26\x02\xe4\x16\x00\x00\x06\x02\xfc\x15\x00\x00\ \x01\x00\x5e\xff\x21\x02\x2a\x02\x8c\x00\x23\x00\x5e\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\ \x59\xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x05\x00\x01\ \x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x02\x00\x01\xf4\xb8\ \x00\x22\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\ \x33\x15\x23\x15\x21\x15\x23\x0e\x03\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x21\x5e\x01\xae\xfe\ \xe5\xf0\xf0\x01\x25\x05\x11\x1f\x18\x0e\x1a\x10\x0a\x12\x08\x21\ \x13\x3b\x1a\x30\x43\x0f\x17\x1c\x0d\xfe\xc0\x02\x8c\x7c\x83\x7b\ \x96\x7c\x01\x10\x19\x20\x10\x14\x12\x09\x05\x4a\x0f\x14\x31\x2d\ \x17\x28\x21\x19\x08\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x36\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe4\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\xf4\x02\x23\x03\x36\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xea\x1e\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x57\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xec\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\x1b\x02\x23\x02\x98\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xfe\x22\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x36\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xf6\x1e\x00\x00\x00\xff\ \xff\x00\x2c\xff\xf4\x02\x23\x03\x2d\x02\x26\x00\x0a\x00\x00\x00\ \x06\x02\xe8\x1e\x00\x00\x00\xff\xff\x00\x2c\xff\xf4\x02\x23\x03\ \x47\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe6\x1e\x00\x00\x00\xff\ \xff\x00\x40\x00\x00\x02\x18\x03\x36\x02\x26\x00\x0b\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x40\xff\x03\x02\x18\x02\ \x8c\x02\x26\x00\x0b\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x2e\x02\x18\x02\x8c\x02\x26\x00\x0b\x00\x00\x00\ \x06\x03\x03\x00\x00\x00\x00\x00\x02\x00\x03\x00\x00\x02\x55\x02\ \x8c\x00\x03\x00\x17\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\ \x2f\x1b\xb9\x00\x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x14\x2f\x1b\xb9\x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x14\x10\ \xb8\x00\x13\xdc\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xdc\xb8\x00\ \x00\x10\xb8\x00\x05\xd0\xb8\x00\x03\x10\xb9\x00\x08\x00\x01\xf4\ \xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x13\x10\xb8\x00\x0f\xd0\ \xb8\x00\x13\x10\xb8\x00\x16\xd0\x30\x31\x01\x23\x15\x33\x37\x23\ \x11\x23\x11\x23\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x35\x33\ \x15\x33\x01\x85\xb2\xb2\xd0\x3d\x93\xb2\x93\x3d\x3d\x93\xb2\x93\ \x3d\x01\xe6\x55\x55\xfe\x1a\x01\x10\xfe\xf0\x01\xe6\x41\x05\x60\ \x5f\x5f\x5f\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x36\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x47\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x48\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x2d\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x57\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xec\x00\ \x00\x00\x00\xff\xff\x00\x4a\x00\x00\x02\x0e\x03\x36\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x4a\x00\ \x00\x02\x0e\x03\x76\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x4a\xff\x03\x02\x0e\x02\x8c\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\x00\x01\x00\x4a\xff\ \x21\x02\x0e\x02\x8c\x00\x23\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xbb\x00\x11\ \x00\x01\x00\x18\x00\x04\x2b\xb8\x00\x22\x10\xb9\x00\x00\x00\x01\ \xf4\xb8\x00\x04\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x00\x10\xb8\x00\x08\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\ \x23\x11\x33\x15\x23\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\ \x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x23\x4a\x98\x98\x01\xc4\ \x98\x98\x98\x29\x22\x1a\x0f\x0b\x13\x07\x22\x14\x3b\x1a\x18\x29\ \x1f\x12\x0f\x16\x1a\x0b\xc0\x7c\x01\x94\x7c\x7c\xfe\x6c\x7c\x11\ \x2f\x1a\x14\x12\x09\x05\x4a\x0f\x14\x0c\x18\x23\x17\x18\x28\x21\ \x18\x08\x00\xff\xff\x00\x3b\xff\xf4\x02\x04\x03\x36\x02\x26\x00\ \x0d\x00\x00\x00\x06\x02\xe4\x16\x00\x00\x00\xff\xff\x00\x44\xff\ \x1b\x02\x52\x02\x8c\x02\x26\x00\x0e\x00\x00\x00\x06\x02\xfe\x17\ \x00\x00\x00\xff\xff\x00\x6b\x00\x00\x02\x20\x03\x36\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xe2\x98\x00\x00\x00\xff\xff\x00\x6b\x00\ \x00\x02\x20\x02\xdd\x02\x26\x00\x0f\x00\x00\x00\x07\x03\x1f\x00\ \x80\xff\xdb\xff\xff\x00\x6b\xff\x1b\x02\x20\x02\x8c\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xfe\x20\x00\x00\x00\xff\xff\x00\x6b\x00\ \x00\x02\x27\x02\x8c\x02\x26\x00\x0f\x00\x00\x00\x07\x02\xeb\x00\ \x99\xfe\xd0\xff\xff\x00\x6b\xff\x03\x02\x20\x02\x8c\x02\x26\x00\ \x0f\x00\x00\x00\x06\x02\xfc\x20\x00\x00\x00\xff\xff\x00\x37\xff\ \x03\x02\x20\x03\x2d\x02\x26\x00\x0f\x00\x00\x00\x26\x02\xe8\x98\ \x00\x00\x06\x02\xfc\x20\x00\xff\xff\x00\x6b\xff\x43\x02\x20\x02\ \x8c\x02\x26\x00\x0f\x00\x00\x00\x06\x03\x04\x20\x00\x00\x00\x00\ \x01\x00\x21\x00\x00\x02\x20\x02\x8c\x00\x0d\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xba\x00\x03\x00\x01\x00\x07\x11\x12\x39\ \xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\x0c\xd0\ \xb8\x00\x09\xd0\x30\x31\x25\x15\x21\x35\x07\x35\x37\x11\x33\x11\ \x37\x15\x07\x15\x02\x20\xfe\x4b\x4a\x4a\x93\xce\xce\x7c\x7c\xc6\ \x29\x72\x29\x01\x54\xfe\xf4\x71\x72\x71\x92\xff\xff\x00\x41\xff\ \x03\x02\x17\x02\x8c\x02\x26\x00\x10\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x36\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xe2\x06\x00\x00\x00\xff\xff\x00\x42\x00\ \x00\x02\x16\x03\x36\x02\x26\x00\x11\x00\x00\x00\x06\x02\xf6\x06\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x47\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xe6\x06\x00\x00\x00\xff\xff\x00\x42\xff\ \x1b\x02\x16\x02\x8c\x02\x26\x00\x11\x00\x00\x00\x06\x02\xfe\x00\ \x00\x00\x00\xff\xff\x00\x42\x00\x00\x02\x16\x03\x57\x02\x26\x00\ \x11\x00\x00\x00\x06\x02\xec\x06\x00\x00\x00\xff\xff\x00\x42\xff\ \x03\x02\x16\x02\x8c\x02\x26\x00\x11\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x42\xff\x43\x02\x16\x02\x8c\x02\x26\x00\ \x11\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe0\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe4\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x47\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x48\x02\x26\x00\x12\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x2d\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xea\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x36\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf6\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\x03\x02\x32\x02\x98\x02\x26\x00\ \x12\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x76\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\x7a\x02\x26\x00\ \x12\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\x7a\x02\x26\x00\x12\x00\x00\x00\x06\x03\x10\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x32\x03\x95\x02\x26\x00\ \x12\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \xf4\x02\x32\x03\xc5\x02\x26\x00\x12\x00\x00\x00\x06\x03\x14\x00\ \x00\x00\x00\xff\xff\x00\x26\xff\x03\x02\x32\x03\x36\x02\x26\x00\ \x12\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\xfc\x00\x00\x00\ \x03\x00\x1e\xff\xd7\x02\x43\x02\xb5\x00\x08\x00\x10\x00\x2a\x00\ \x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\ \x00\x03\x3e\x59\xba\x00\x10\x00\x19\x00\x26\x11\x12\x39\xb8\x00\ \x10\x10\xb8\x00\x00\xd0\xb8\x00\x19\x10\xb9\x00\x02\x00\x01\xf4\ \xba\x00\x08\x00\x19\x00\x26\x11\x12\x39\xb8\x00\x08\x10\xb8\x00\ \x09\xd0\xb8\x00\x26\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x08\x10\ \xb8\x00\x11\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\xb8\x00\x10\x10\ \xb8\x00\x1e\xd0\xb8\x00\x09\x10\xb8\x00\x28\xd0\x30\x31\x37\x16\ \x33\x32\x36\x35\x34\x26\x2f\x01\x26\x23\x22\x06\x15\x14\x17\x01\ \x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x07\x27\x37\x2e\x01\x35\x34\ \x3e\x02\x33\x32\x17\x37\x17\xed\x1a\x25\x33\x3c\x02\x02\x26\x1c\ \x29\x33\x3c\x06\x01\x3c\x19\x1a\x26\x45\x61\x3a\x52\x3b\x33\x4e\ \x40\x1b\x1d\x26\x45\x61\x3a\x55\x3f\x35\x4e\x92\x1f\x73\x63\x11\ \x21\x0e\x6c\x24\x6e\x62\x2c\x24\x01\x27\x2a\x6b\x42\x50\x7e\x58\ \x2f\x2c\x49\x32\x5d\x2b\x72\x46\x50\x7d\x55\x2d\x30\x4d\x32\x00\ \x02\x00\x13\x00\x00\x02\x53\x02\x8c\x00\x14\x00\x21\x00\x4f\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x05\x10\ \xb9\x00\x08\x00\x01\xf4\xb8\x00\x0f\x10\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x1a\xd0\xb8\x00\x08\x10\xb8\x00\x1c\xd0\x30\x31\x13\x34\ \x3e\x02\x33\x21\x15\x23\x15\x33\x15\x23\x15\x33\x15\x21\x22\x2e\ \x02\x37\x14\x1e\x02\x3b\x01\x11\x23\x22\x0e\x02\x13\x2a\x4a\x65\ \x3b\x01\x22\xa0\x79\x79\xaa\xfe\xcc\x3a\x62\x48\x28\x97\x0f\x1c\ \x28\x19\x10\x10\x19\x28\x1c\x0f\x01\x49\x54\x7a\x4f\x26\x7b\x84\ \x7b\x96\x7c\x28\x51\x7c\x54\x3b\x51\x31\x15\x01\x9e\x14\x2f\x4e\ \x00\x00\x00\x00\x02\x00\x26\xff\xf4\x02\x53\x03\x10\x00\x0b\x00\ \x2c\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\ \x24\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\ \x00\x1a\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\x24\x10\ \xb9\x00\x06\x00\x01\xf4\xba\x00\x12\x00\x1a\x00\x24\x11\x12\x39\ \xb8\x00\x12\x10\xb8\x00\x26\xd0\x30\x31\x25\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x1e\x01\x15\x14\x06\x07\x1e\x01\x15\ \x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x17\x3e\x01\ \x35\x34\x26\x27\x01\x2c\x33\x3c\x3c\x33\x33\x3c\x3c\x01\x3d\x0b\ \x12\x3e\x30\x24\x29\x26\x45\x61\x3a\x3a\x61\x45\x26\x26\x45\x61\ \x3a\x42\x38\x1b\x20\x0a\x05\x73\x73\x63\x62\x6e\x6e\x62\x63\x73\ \x02\x9d\x0e\x29\x19\x33\x3c\x0c\x2b\x7f\x52\x50\x7e\x58\x2f\x2f\ \x58\x7e\x50\x50\x7d\x55\x2d\x1f\x06\x1a\x1d\x0e\x17\x09\x00\xff\ \xff\x00\x26\xff\xf4\x02\x53\x03\x36\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\ \x36\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x26\xff\xf4\x02\x53\x03\x76\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x26\xff\xf4\x02\x53\x03\ \x47\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x26\xff\x03\x02\x53\x03\x10\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\x00\x02\x00\x26\xff\x21\x02\x32\x02\ \x98\x00\x26\x00\x32\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\ \x2f\x1b\xb9\x00\x13\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\ \x03\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x1d\xd0\xb8\x00\x09\x10\ \xb9\x00\x27\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x2d\x00\x01\xf4\ \x30\x31\x05\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x2e\x03\x35\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\ \x01\xae\x13\x3b\x1a\x30\x43\x28\x17\x3c\x59\x3b\x1c\x26\x45\x61\ \x3a\x3a\x61\x45\x26\x19\x2e\x40\x27\x26\x20\x1a\x11\x0a\x11\x08\ \x60\x33\x3c\x3c\x33\x33\x3c\x3c\xbc\x0f\x14\x31\x2d\x27\x3c\x14\ \x06\x3b\x5c\x75\x41\x50\x7d\x55\x2d\x2d\x56\x7d\x4f\x43\x69\x51\ \x38\x11\x11\x35\x17\x14\x12\x09\x05\xe5\x73\x63\x62\x6e\x6e\x62\ \x63\x73\x00\xff\xff\x00\x46\x00\x00\x02\x48\x03\x36\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xe2\x03\x00\x00\x00\xff\xff\x00\x46\x00\ \x00\x02\x48\x03\x36\x02\x26\x00\x15\x00\x00\x00\x06\x02\xf6\x03\ \x00\x00\x00\xff\xff\x00\x46\xff\x1b\x02\x48\x02\x8c\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xfe\x14\x00\x00\x00\xff\xff\x00\x46\xff\ \x03\x02\x48\x02\x8c\x02\x26\x00\x15\x00\x00\x00\x06\x02\xfc\x14\ \x00\x00\x00\xff\xff\x00\x46\xff\x03\x02\x48\x03\x2d\x02\x26\x00\ \x15\x00\x00\x00\x26\x02\xe8\x03\x00\x00\x06\x02\xfc\x14\x00\xff\ \xff\x00\x46\xff\x43\x02\x48\x02\x8c\x02\x26\x00\x15\x00\x00\x00\ \x06\x03\x04\x14\x00\x00\x00\xff\xff\x00\x32\xff\xf4\x02\x27\x03\ \x36\x02\x26\x00\x16\x00\x00\x00\x06\x02\xe2\x07\x00\x00\x00\xff\ \xff\x00\x32\xff\xf4\x02\x27\x03\x36\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xe4\x07\x00\x00\x00\xff\xff\x00\x32\xff\xf4\x02\x27\x03\ \x36\x02\x26\x00\x16\x00\x00\x00\x06\x02\xf6\x07\x00\x00\x00\xff\ \xff\x00\x32\xff\x23\x02\x27\x02\x98\x02\x26\x00\x16\x00\x00\x00\ \x06\x03\x00\x04\x00\x00\x00\xff\xff\x00\x32\xff\x1b\x02\x27\x02\ \x98\x02\x26\x00\x16\x00\x00\x00\x06\x02\xfe\x0a\x00\x00\x00\xff\ \xff\x00\x32\xff\xf4\x02\x27\x03\x57\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xec\x07\x00\x00\x00\xff\xff\x00\x32\xff\x03\x02\x27\x02\ \x98\x02\x26\x00\x16\x00\x00\x00\x06\x02\xfc\x0a\x00\x00\x00\x00\ \x01\x00\x40\xff\xf4\x02\x35\x02\x98\x00\x2a\x00\x68\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x29\x2f\x1b\xb9\x00\x29\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\ \x59\xbb\x00\x21\x00\x01\x00\x20\x00\x04\x2b\xba\x00\x09\x00\x21\ \x00\x20\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x25\x00\x01\xf4\xba\x00\x1d\x00\x25\x00\x13\ \x11\x12\x39\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x1e\x03\ \x15\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\ \x26\x2f\x01\x37\x2e\x01\x23\x22\x06\x15\x11\x23\x40\x1b\x3a\x5b\ \x40\x57\x71\x10\x48\x16\x2a\x21\x14\x15\x2b\x40\x2b\x38\x4c\x15\ \x4c\x11\x1d\x0b\x10\x15\x33\x33\x0a\x4b\x08\x25\x1d\x2d\x28\x97\ \x01\xba\x2e\x51\x3c\x23\x65\x52\x7a\x0c\x20\x2b\x39\x25\x28\x46\ \x33\x1d\x26\x1a\x59\x13\x0f\x28\x20\x1e\x33\x0f\x56\x7d\x17\x24\ \x3d\x3e\xfe\x5a\x00\x00\x00\xff\xff\x00\x1f\x00\x00\x02\x39\x03\ \x36\x02\x26\x00\x17\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\ \xff\x00\x1f\xff\x23\x02\x39\x02\x8c\x02\x26\x00\x17\x00\x00\x00\ \x06\x03\x00\x00\x00\x00\x00\xff\xff\x00\x1f\xff\x1b\x02\x39\x02\ \x8c\x02\x26\x00\x17\x00\x00\x00\x06\x02\xfe\x00\x00\x00\x00\xff\ \xff\x00\x1f\xff\x03\x02\x39\x02\x8c\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x1f\xff\x43\x02\x39\x02\ \x8c\x02\x26\x00\x17\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x36\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x47\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x48\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x2d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x7d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf2\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\x36\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf4\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x36\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\xad\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x06\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \xce\x02\x26\x00\x18\x00\x00\x00\x06\x03\x08\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x18\x03\xce\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x0a\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \xce\x02\x26\x00\x18\x00\x00\x00\x06\x03\x0c\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x03\x02\x18\x02\x8c\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x18\x03\ \x76\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\x00\ \x01\x00\x40\xff\x21\x02\x18\x02\x8c\x00\x28\x00\x52\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x0d\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\x3e\ \x59\xbb\x00\x16\x00\x01\x00\x1d\x00\x04\x2b\xb8\x00\x25\x10\xb9\ \x00\x05\x00\x01\xf4\xb8\x00\x25\x10\xb8\x00\x0e\xd0\x30\x31\x13\ \x33\x11\x14\x16\x33\x32\x36\x35\x11\x33\x11\x14\x06\x07\x0e\x03\ \x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\ \x02\x37\x2e\x01\x35\x40\x93\x2c\x2e\x2f\x2e\x8e\x3e\x3e\x1d\x24\ \x15\x08\x1a\x10\x0a\x12\x07\x22\x13\x3b\x1a\x30\x43\x0f\x15\x16\ \x06\x6a\x68\x02\x8c\xfe\x60\x3b\x3e\x3e\x3b\x01\xa0\xfe\x6f\x5e\ \x77\x1d\x0e\x1a\x19\x18\x0a\x14\x12\x09\x05\x4a\x0f\x14\x31\x2d\ \x17\x26\x1e\x16\x06\x07\x88\x76\x00\x00\x00\x00\x01\x00\x40\xff\ \xf4\x02\x94\x03\x24\x00\x22\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x10\x2f\x1b\xb9\x00\x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x19\ \x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x15\x00\x01\ \xf4\x30\x31\x01\x1e\x01\x15\x14\x0e\x02\x07\x11\x14\x06\x23\x22\ \x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x35\x11\x33\x3e\x03\x35\ \x34\x26\x27\x02\x77\x0b\x12\x13\x21\x2e\x1a\x73\x77\x78\x76\x93\ \x2c\x2f\x2f\x2d\x46\x0f\x1d\x18\x0e\x0a\x05\x03\x24\x0e\x29\x19\ \x1c\x2b\x1f\x13\x05\xfe\xa5\x80\x87\x87\x80\x01\x91\xfe\x60\x3b\ \x3e\x3e\x3b\x01\xa0\x01\x05\x0d\x17\x14\x0e\x17\x09\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x94\x03\x36\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x94\x03\ \x36\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\xf4\x02\x94\x03\x76\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x40\xff\xf4\x02\x94\x03\ \x47\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x40\xff\x03\x02\x94\x03\x24\x02\x26\x00\xd0\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x03\ \x36\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x03\x36\x02\x26\x00\x1a\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x03\ \x36\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x03\x48\x02\x26\x00\x1a\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x36\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x36\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x36\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x48\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x57\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xec\x00\x00\x00\x00\xff\ \xff\x00\x10\xff\x03\x02\x48\x02\x8c\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x02\x48\x03\ \x76\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\ \xff\x00\x10\x00\x00\x02\x48\x03\x47\x02\x26\x00\x1c\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x38\x00\x00\x02\x23\x03\ \x36\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xe2\x0e\x00\x00\x00\xff\ \xff\x00\x38\x00\x00\x02\x23\x03\x36\x02\x26\x00\x1d\x00\x00\x00\ \x06\x02\xf6\x0e\x00\x00\x00\xff\xff\x00\x38\x00\x00\x02\x23\x03\ \x57\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xec\x0e\x00\x00\x00\xff\ \xff\x00\x38\xff\x03\x02\x23\x02\x8c\x02\x26\x00\x1d\x00\x00\x00\ \x06\x02\xfc\x0a\x00\x00\x00\x00\x02\x00\x02\x00\x00\x02\x32\x02\ \x8c\x00\x10\x00\x21\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\ \x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x0f\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x03\x10\xb8\x00\x1d\xd0\ \xb8\x00\x00\x10\xb8\x00\x1f\xd0\x30\x31\x13\x23\x35\x37\x11\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x37\x32\x3e\x02\x35\x34\x2e\ \x02\x2b\x01\x15\x33\x15\x23\x15\x47\x45\x45\xb2\x46\x74\x52\x2d\ \x2d\x50\x71\x43\xba\xa9\x26\x3f\x2d\x19\x19\x2d\x3f\x26\x15\x6b\ \x6b\x01\x2d\x42\x05\x01\x18\x26\x4f\x7a\x54\x54\x7c\x51\x28\x77\ \x16\x31\x50\x3b\x3a\x4f\x2f\x14\xa1\x47\xb6\x00\x02\x00\x49\x00\ \x00\x02\x36\x02\x8c\x00\x10\x00\x18\x00\x39\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xbb\x00\ \x11\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x16\x00\ \x04\x2b\x30\x31\x13\x33\x15\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\ \x01\x15\x23\x37\x32\x35\x34\x26\x2b\x01\x15\x49\x93\x5b\x35\x5d\ \x45\x28\x29\x46\x5c\x34\x5b\x93\xe5\x77\x3c\x3b\x52\x02\x8c\x63\ \x15\x31\x50\x3b\x3a\x53\x36\x1a\x7b\xf0\x68\x33\x29\xc4\x00\x00\ \x02\x00\x3a\xff\xf4\x02\x30\x02\x98\x00\x06\x00\x22\x00\x43\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\ \x3e\x59\xbb\x00\x1c\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x14\x10\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x1f\x00\x01\xf4\ \x30\x31\x13\x1e\x01\x33\x32\x36\x37\x01\x3e\x01\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x37\x21\x2e\x01\x23\x22\ \x06\x07\xd0\x05\x35\x2a\x27\x37\x09\xfe\xe1\x22\x5b\x3f\x37\x5b\ \x42\x24\x25\x42\x5d\x38\x38\x5c\x42\x24\x03\x01\x60\x06\x3b\x36\ \x23\x32\x14\x01\x07\x4b\x4b\x4c\x4b\x01\x47\x20\x29\x2d\x57\x7d\ \x50\x50\x7e\x57\x2e\x2d\x56\x7d\x4f\x16\x1a\x53\x55\x1d\x14\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xdf\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xe5\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe1\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe3\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xce\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe5\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xd8\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xed\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xad\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe7\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xda\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe9\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x02\ \xf0\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xf1\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xe5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xf5\x08\x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x01\ \xfc\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xfc\x0a\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x02\xf0\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xef\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x50\x02\ \xfc\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x0d\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x2d\x02\xfc\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x0f\x08\x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x32\x03\ \x21\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x11\x08\x00\x00\x00\xff\ \xff\x00\x3d\xff\xf4\x02\x17\x03\x42\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x13\x08\x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x02\ \xe5\x02\x26\x00\x1e\x00\x00\x00\x26\x02\xe3\x08\x00\x00\x06\x02\ \xfc\x0a\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x03\x2a\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x15\x08\x00\x00\x00\xff\xff\x00\x3d\xff\ \xf4\x02\x17\x03\x2a\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x17\x08\ \x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x17\x03\x67\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x19\x08\x00\x00\x00\xff\xff\x00\x3d\xff\ \xf4\x02\x17\x03\x42\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x1b\x08\ \x00\x00\x00\xff\xff\x00\x3d\xff\x03\x02\x17\x02\xda\x02\x26\x00\ \x1e\x00\x00\x00\x26\x02\xe9\x08\x00\x00\x06\x02\xfc\x0a\x00\x00\ \x02\x00\x3d\xff\x2e\x02\x2b\x01\xfc\x00\x31\x00\x3d\x00\x85\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\x00\x2d\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x05\x3e\x59\xba\x00\x05\x00\x0f\x00\x2d\x11\x12\x39\xb8\x00\ \x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x20\x10\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x13\x10\xb8\x00\x28\xd0\xb8\x00\ \x2d\x10\xb9\x00\x35\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x39\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x01\x23\x22\x06\x07\x27\ \x3e\x01\x33\x32\x16\x15\x11\x0e\x01\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x35\x0e\x03\x3d\x24\x4f\ \x7c\x58\x04\x33\x33\x24\x49\x2a\x34\x33\x75\x40\x68\x78\x31\x27\ \x1a\x10\x0a\x12\x07\x1f\x14\x3a\x17\x2d\x3d\x0e\x15\x18\x09\x0c\ \x04\x26\x5a\x30\x26\x3c\x2a\x17\x8d\x25\x20\x21\x3a\x1a\x37\x48\ \x2a\x11\x8a\x2a\x3f\x2c\x1b\x05\x22\x26\x19\x15\x60\x1d\x26\x6e\ \x72\xfe\xe4\x0e\x30\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\ \x25\x1e\x16\x06\x3a\x1d\x27\x17\x29\x36\x2b\x18\x17\x1b\x14\x52\ \x03\x0e\x15\x1c\x00\x00\x00\x00\x03\x00\x10\xff\xf4\x02\x51\x01\ \xfc\x00\x30\x00\x39\x00\x45\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xbb\x00\ \x31\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x03\x00\x0d\x00\x2c\x11\ \x12\x39\xb8\x00\x03\x2f\xb8\x00\x0d\x10\xb9\x00\x06\x00\x01\xf4\ \xba\x00\x10\x00\x26\x00\x0d\x11\x12\x39\xb8\x00\x26\x10\xb9\x00\ \x1f\x00\x01\xf4\xba\x00\x29\x00\x26\x00\x0d\x11\x12\x39\xb8\x00\ \x13\x10\xb9\x00\x36\x00\x01\xf4\xb8\x00\x2c\x10\xb9\x00\x3c\x00\ \x01\xf4\xb8\x00\x03\x10\xb9\x00\x43\x00\x01\xf4\x30\x31\x37\x34\ \x36\x37\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x17\x3e\ \x01\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x27\x0e\x01\x23\x22\x2e\x02\x25\x34\x2e\ \x02\x23\x22\x06\x0f\x01\x14\x33\x32\x36\x37\x2e\x01\x2f\x01\x0e\ \x01\x10\x6f\x72\x03\x19\x1d\x14\x39\x1a\x34\x2a\x50\x2b\x2c\x37\ \x11\x1a\x3a\x2c\x26\x3a\x27\x14\x05\x02\xe3\x08\x30\x23\x15\x25\ \x14\x32\x1d\x48\x20\x36\x47\x1a\x27\x43\x22\x22\x33\x23\x12\x01\ \xcc\x05\x0c\x14\x0f\x19\x25\x05\xd1\x2e\x0e\x21\x0e\x06\x06\x02\ \x01\x31\x2b\x8a\x4d\x53\x16\x23\x24\x12\x10\x60\x19\x1e\x28\x21\ \x25\x24\x26\x41\x57\x31\x14\x22\x0a\x33\x33\x0c\x0e\x5e\x17\x18\ \x2a\x23\x29\x24\x18\x28\x37\xbc\x15\x24\x1c\x10\x31\x34\x91\x30\ \x11\x11\x10\x27\x13\x15\x0b\x29\x00\x00\x00\x00\x02\x00\x06\xff\ \xf4\x02\x29\x02\xbd\x00\x0a\x00\x29\x00\xa5\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0f\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\ \xbb\x00\x1f\x00\x01\x00\x22\x00\x04\x2b\xba\x00\x1b\x00\x18\x00\ \x0e\x11\x12\x39\xb8\x00\x1b\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\x08\x00\ \x01\xf4\xba\x00\x0b\x00\x0e\x00\x18\x11\x12\x39\xb8\x00\x0b\x10\ \xb9\x00\x0a\x00\x01\xf4\xb8\x00\x22\x10\xb8\x00\x21\xd0\xb8\x00\ \x22\x10\xb8\x00\x26\xd0\xb8\x00\x1f\x10\xb8\x00\x27\xd0\x30\x31\ \x37\x1e\x01\x33\x32\x36\x35\x34\x23\x22\x07\x27\x3e\x01\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x23\x07\x23\x11\x23\x35\ \x37\x35\x33\x15\x33\x15\x23\x15\xdb\x15\x2d\x14\x29\x38\x5b\x2f\ \x2d\x04\x1d\x49\x24\x2e\x4b\x33\x1c\x24\x3c\x4d\x2a\x23\x45\x1f\ \x04\x0c\x73\x42\x42\x93\xb6\xb6\x8d\x12\x0f\x40\x48\x7c\x2e\x6d\ \x1b\x1e\x22\x3f\x59\x37\x3e\x60\x42\x23\x22\x20\x36\x02\x2c\x41\ \x05\x4b\x4a\x47\x2f\x00\x00\xff\xff\x00\x43\xff\x23\x02\x24\x01\ \xfc\x02\x26\x00\x20\x00\x00\x00\x06\x02\xff\x29\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x24\x02\xe5\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xe1\x29\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x24\x02\ \xe5\x02\x26\x00\x20\x00\x00\x00\x06\x02\xe3\x29\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x24\x02\xe5\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xf5\x29\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x24\x02\ \xee\x02\x26\x00\x20\x00\x00\x00\x06\x02\xeb\x29\x00\x00\x00\xff\ \xff\x00\x1a\xff\xf4\x02\x78\x03\x02\x02\x26\x00\x21\xeb\x00\x00\ \x07\x03\x1f\x01\x1d\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x10\x02\ \xbd\x02\x26\x00\x21\x00\x00\x00\x06\x02\xfc\x09\x00\x00\x00\xff\ \xff\x00\x2f\xff\x43\x02\x10\x02\xbd\x02\x26\x00\x21\x00\x00\x00\ \x06\x03\x04\x09\x00\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x52\x02\ \xbd\x00\x0b\x00\x2a\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x1e\ \x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x27\x2f\x1b\xb9\x00\x27\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\x0d\x00\ \x01\x00\x29\x00\x04\x2b\xba\x00\x21\x00\x1e\x00\x14\x11\x12\x39\ \xb8\x00\x21\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x1e\x10\xb9\x00\ \x02\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x08\x00\x01\xf4\xba\x00\ \x10\x00\x14\x00\x1e\x11\x12\x39\xb8\x00\x10\x10\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xd0\xb8\x00\x0d\x10\xb8\x00\ \x24\xd0\xb8\x00\x29\x10\xb8\x00\x25\xd0\x30\x31\x01\x26\x23\x22\ \x06\x15\x14\x16\x33\x32\x36\x37\x13\x07\x11\x23\x27\x23\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x27\x35\x23\x35\ \x33\x35\x33\x15\x33\x01\x7d\x27\x2a\x2a\x3c\x32\x2e\x19\x2a\x14\ \xd5\x42\x78\x0b\x03\x1c\x48\x26\x2f\x4d\x37\x1e\x24\x3b\x4c\x29\ \x2b\x3a\x1a\x05\x9b\x9b\x93\x42\x01\x4f\x21\x3e\x42\x45\x3f\x15\ \x19\x01\x98\x05\xfd\xd3\x33\x1b\x24\x22\x41\x5c\x3b\x3a\x5d\x41\ \x22\x1d\x18\x4d\x2c\x47\x4a\x4a\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xe5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xdf\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xe1\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xe5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe3\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xf5\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xd8\x02\x26\x00\x22\x00\x00\x00\x06\x02\xed\x0c\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xad\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xe7\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xda\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe9\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xee\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xeb\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \x03\x02\x22\x01\xfc\x02\x26\x00\x22\x00\x00\x00\x06\x02\xfc\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x22\x02\xf0\x02\x26\x00\ \x22\x00\x00\x00\x06\x02\xef\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x02\xce\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe5\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x55\x02\xfc\x02\x26\x00\ \x22\x00\x00\x00\x06\x03\x0d\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x32\x02\xfc\x02\x26\x00\x22\x00\x00\x00\x06\x03\x0f\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\xf4\x02\x37\x03\x21\x02\x26\x00\ \x22\x00\x00\x00\x06\x03\x11\x0d\x00\x00\x00\xff\xff\x00\x37\xff\ \xf4\x02\x22\x03\x42\x02\x26\x00\x22\x00\x00\x00\x06\x03\x13\x0d\ \x00\x00\x00\xff\xff\x00\x37\xff\x03\x02\x22\x02\xe5\x02\x26\x00\ \x22\x00\x00\x00\x26\x02\xe3\x0d\x00\x00\x06\x02\xfc\x0d\x00\x00\ \x02\x00\x37\xff\x2e\x02\x22\x01\xfc\x00\x31\x00\x38\x00\x5e\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\x1b\xb9\x00\x22\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\ \x05\x3e\x59\xbb\x00\x38\x00\x01\x00\x2a\x00\x04\x2b\xb8\x00\x0f\ \x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x2e\x00\x01\ \xf4\xb8\x00\x22\x10\xb9\x00\x35\x00\x01\xf4\x30\x31\x25\x0e\x03\ \x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x36\ \x37\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\ \x14\x06\x07\x21\x1e\x01\x33\x32\x36\x37\x27\x34\x26\x23\x22\x06\ \x07\x02\x0e\x21\x2b\x18\x09\x19\x12\x0a\x11\x08\x1e\x13\x3a\x18\ \x2d\x3b\x25\x14\x11\x13\x0b\x3a\x64\x4a\x2b\x2b\x48\x5d\x32\x39\ \x58\x3a\x1e\x04\x02\xfe\xb2\x08\x51\x37\x22\x3d\x21\x41\x2e\x33\ \x28\x3e\x0a\x2e\x17\x24\x1e\x1b\x0f\x14\x12\x07\x05\x42\x0f\x12\ \x2e\x2d\x25\x3a\x11\x04\x01\x23\x43\x60\x3e\x3d\x60\x43\x24\x24\ \x40\x57\x33\x14\x24\x09\x38\x31\x11\x11\xa8\x2a\x34\x2e\x30\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xe5\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xe3\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xda\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe9\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xee\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xeb\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xdc\x02\x26\x00\x24\x00\x00\x00\x06\x03\x20\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xe5\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xf5\x04\x00\x00\x00\xff\xff\x00\x34\xff\x2d\x02\x3c\x02\ \xad\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe7\x04\x00\x00\x00\xff\ \xff\x00\x34\xff\x2d\x02\x3c\x02\xce\x02\x26\x00\x24\x00\x00\x00\ \x06\x02\xe5\x04\x00\x00\x00\xff\xff\xff\xee\x00\x00\x02\x1c\x03\ \x66\x02\x26\x00\x25\x00\x00\x00\x07\x02\xe4\xff\x6a\x00\x30\xff\ \xff\x00\x48\xff\x03\x02\x1c\x02\xbd\x02\x26\x00\x25\x00\x00\x00\ \x06\x02\xfc\x07\x00\x00\x00\xff\xff\x00\x48\xff\x2e\x02\x1c\x02\ \xbd\x02\x26\x00\x25\x00\x00\x00\x06\x03\x03\x07\x00\x00\x00\x00\ \x01\x00\x06\x00\x00\x02\x1c\x02\xbd\x00\x1e\x00\x87\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0f\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\ \x3e\x59\xbb\x00\x14\x00\x01\x00\x17\x00\x04\x2b\xba\x00\x00\x00\ \x05\x00\x13\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x0e\x00\x01\xf4\ \xb8\x00\x00\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\ \x16\xd0\xb8\x00\x17\x10\xb8\x00\x1b\xd0\xb8\x00\x14\x10\xb8\x00\ \x1c\xd0\x30\x31\x13\x3e\x03\x33\x32\x16\x15\x11\x23\x11\x34\x26\ \x23\x22\x06\x07\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\ \x15\xd3\x0f\x23\x29\x31\x1c\x54\x4d\x93\x20\x29\x1e\x2d\x1a\x93\ \x42\x42\x93\xb6\xb6\x01\x9e\x0e\x1b\x15\x0c\x6c\x5e\xfe\xe2\x01\ \x0b\x32\x2e\x1a\x1a\xfe\xc9\x02\x2c\x41\x05\x4b\x4a\x47\x2f\xff\ \xff\x00\x4f\x00\x00\x01\xab\x02\xe5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xdf\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xf6\x02\ \xe5\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe1\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xfb\x02\xe5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe3\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x02\x04\x02\ \xce\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe5\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x02\x15\x02\xd8\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xed\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xe3\x02\ \xad\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe7\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xec\x02\xda\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe9\x2d\x00\x00\x00\xff\xff\x00\x4f\x00\x00\x01\xfb\x02\ \xe5\x02\x26\x01\x32\x00\x00\x00\x06\x02\xf5\x2d\x00\x00\x00\xff\ \xff\x00\x4f\x00\x00\x01\xc1\x02\xf0\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xef\x2d\x00\x00\x00\xff\xff\x00\x4f\xff\x03\x01\xbb\x02\ \xee\x02\x26\x00\x26\x00\x00\x00\x06\x02\xfc\x2d\x00\x00\x00\x00\ \x02\x00\x4f\xff\x2e\x01\xce\x02\xee\x00\x1a\x00\x26\x00\x67\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x05\x3e\x59\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x02\x10\xb8\x00\x1b\xdc\ \xb8\x00\x21\xdc\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x16\xc7\x01\ \x5a\x28\x1f\x19\x11\x0a\x11\x08\x1f\x14\x3a\x17\x2d\x3d\x0d\x14\ \x17\x09\x2a\x43\x2b\x37\x37\x2b\x2b\x37\x37\x01\x7d\x73\xfe\x10\ \x0f\x2f\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\x16\ \x08\x02\x39\x30\x29\x29\x33\x33\x29\x29\x30\x00\x01\x00\x4f\xff\ \x2e\x01\xce\x01\xf0\x00\x1a\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xbb\x00\x0a\ \x00\x01\x00\x11\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x01\x16\xc7\ \x01\x5a\x28\x1f\x19\x11\x0a\x11\x08\x1f\x14\x3a\x17\x2d\x3d\x0d\ \x14\x17\x09\x2a\x01\x7d\x73\xfe\x10\x0f\x2f\x17\x14\x12\x07\x05\ \x42\x0f\x12\x2e\x2d\x16\x25\x1e\x16\x08\x00\x00\x01\x00\x4f\x00\ \x00\x01\xa9\x01\xf0\x00\x05\x00\x2f\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb8\x00\x00\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x23\x4f\x01\ \x5a\x93\xc7\x01\xf0\xfe\x10\x01\x7d\x00\x00\xff\xff\x00\x2a\xff\ \x3c\x01\xfb\x02\xe5\x02\x26\x01\x9d\x00\x00\x00\x06\x02\xe3\x2d\ \x00\x00\x00\xff\xff\x00\x4c\xff\x1b\x02\x49\x02\xbd\x02\x26\x00\ \x28\x00\x00\x00\x06\x02\xfe\x18\x00\x00\x00\x00\x01\x00\x4c\x00\ \x00\x02\x49\x01\xf0\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xba\x00\ \x02\x00\x0b\x00\x00\x11\x12\x39\xba\x00\x09\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x13\x33\x15\x3f\x01\x33\x07\x13\x23\x27\ \x07\x15\x23\x4c\x93\x03\xb7\xa1\xbc\xcb\x9f\x81\x4a\x93\x01\xf0\ \xc5\x01\xc4\xcc\xfe\xdc\xc3\x48\x7b\x00\x00\xff\xff\x00\x3e\xff\ \xf4\x02\x20\x03\x6d\x02\x26\x00\x29\x00\x00\x00\x06\x02\xe2\xde\ \x37\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x20\x03\x02\x02\x26\x00\ \x29\x00\x00\x00\x07\x03\x1f\x00\x9c\x00\x00\xff\xff\x00\x0d\xff\ \xf4\x02\x39\x02\xbd\x02\x26\x00\x29\xcf\x00\x00\x07\x02\xeb\x00\ \xab\xfe\xce\xff\xff\x00\x3e\xff\x1b\x02\x20\x02\xbd\x02\x26\x00\ \x29\x00\x00\x00\x06\x02\xfe\x3e\x00\x00\x00\xff\xff\x00\x3e\xff\ \x03\x02\x20\x02\xbd\x02\x26\x00\x29\x00\x00\x00\x06\x02\xfc\x3e\ \x00\x00\x00\xff\xff\x00\x3e\xff\x03\x02\x20\x03\x81\x02\x26\x00\ \x29\x00\x00\x00\x27\x02\xe7\xff\xe4\x00\xd4\x00\x06\x02\xfc\x3e\ \x00\x00\x00\xff\xff\x00\x3e\xff\x43\x02\x20\x02\xbd\x02\x26\x00\ \x29\x00\x00\x00\x06\x03\x04\x3e\x00\x00\x00\x00\x01\x00\x3e\xff\ \xf4\x02\x20\x02\xbd\x00\x1d\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xba\x00\x09\x00\ \x05\x00\x0f\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x0c\xd0\xb8\x00\ \x0f\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x14\xd0\ \xb8\x00\x11\xd0\xb8\x00\x05\x10\xb9\x00\x1a\x00\x01\xf4\x30\x31\ \x25\x0e\x03\x23\x22\x26\x3d\x01\x07\x35\x37\x35\x23\x35\x21\x15\ \x37\x15\x07\x15\x14\x1e\x02\x33\x32\x36\x37\x02\x20\x14\x22\x22\ \x26\x17\x5e\x5f\x71\x71\x90\x01\x23\x94\x94\x0d\x17\x1d\x0f\x11\ \x26\x17\x0f\x06\x0a\x07\x04\x6f\x5f\x52\x3f\x75\x40\xbf\x74\xea\ \x50\x75\x51\xa1\x17\x1f\x13\x08\x07\x09\x00\xff\xff\x00\x24\xff\ \x03\x02\x3d\x01\xfc\x02\x26\x00\x2a\x00\x00\x00\x06\x02\xfc\x03\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xe5\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xe1\x0f\x00\x00\x00\xff\xff\x00\x48\x00\ \x00\x02\x1c\x02\xe5\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xf5\x0f\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xce\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xe5\x0f\x00\x00\x00\xff\xff\x00\x48\xff\ \x1b\x02\x1c\x01\xfc\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xfe\x06\ \x00\x00\x00\xff\xff\x00\x48\x00\x00\x02\x1c\x02\xee\x02\x26\x00\ \x2b\x00\x00\x00\x06\x02\xeb\x0f\x00\x00\x00\xff\xff\x00\x48\xff\ \x03\x02\x1c\x01\xfc\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xfc\x06\ \x00\x00\x00\xff\xff\x00\x48\xff\x43\x02\x1c\x01\xfc\x02\x26\x00\ \x2b\x00\x00\x00\x06\x03\x04\x06\x00\x00\x00\x00\x02\xff\xd2\x00\ \x00\x02\x84\x02\xb9\x00\x11\x00\x26\x00\x6d\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\ \xba\x00\x0b\x00\x05\x00\x03\x2b\xb8\x00\x15\x10\xb9\x00\x1e\x00\ \x01\xf4\xba\x00\x26\x00\x15\x00\x23\x11\x12\x39\xb8\x00\x26\x10\ \xb9\x00\x21\x00\x01\xf4\x30\x31\x03\x36\x37\x0e\x01\x23\x22\x26\ \x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\x25\x3e\x01\x33\x32\x16\ \x15\x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\x11\x33\x17\x2e\ \x69\x07\x05\x0a\x05\x29\x32\x35\x2a\x39\x3d\x57\x58\x01\x66\x1d\ \x47\x32\x4a\x45\x93\x19\x1e\x18\x21\x16\x93\x78\x0b\x01\x70\x2f\ \x5b\x01\x01\x32\x2a\x2e\x37\x55\x4b\x52\x7d\x28\x8e\x1f\x2d\x6b\ \x5d\xfe\xcc\x01\x21\x31\x2d\x1a\x18\xfe\xb3\x01\xf0\x40\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xe5\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xe3\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xce\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe5\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xd8\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xad\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe7\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xda\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xe9\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x29\x02\ \xd4\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xf3\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xe5\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xf5\x00\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x29\x01\ \xfc\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xf0\x02\x26\x00\x2c\x00\x00\x00\ \x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x48\x02\ \xfc\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x0d\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x02\xfc\x02\x26\x00\x2c\x00\x00\x00\ \x06\x03\x0f\x00\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x2a\x03\ \x21\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x11\x00\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x29\x03\x42\x02\x26\x00\x2c\x00\x00\x00\ \x06\x03\x13\x00\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x29\x02\ \xe5\x02\x26\x00\x2c\x00\x00\x00\x26\x02\xe3\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x03\x00\x2f\xff\xe7\x02\x29\x02\x0b\x00\x08\x00\ \x10\x00\x2a\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\ \xb9\x00\x26\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\ \x1b\xb9\x00\x19\x00\x03\x3e\x59\xba\x00\x10\x00\x19\x00\x26\x11\ \x12\x39\xb8\x00\x10\x10\xb8\x00\x00\xd0\xb8\x00\x19\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x08\x00\x26\x00\x19\x11\x12\x39\xb8\x00\ \x08\x10\xb8\x00\x09\xd0\xb8\x00\x26\x10\xb9\x00\x0b\x00\x01\xf4\ \xb8\x00\x08\x10\xb8\x00\x11\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\ \xb8\x00\x10\x10\xb8\x00\x1e\xd0\xb8\x00\x09\x10\xb8\x00\x28\xd0\ \x30\x31\x37\x16\x33\x32\x36\x35\x34\x26\x2f\x01\x26\x23\x22\x06\ \x15\x14\x17\x25\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x07\x27\x37\ \x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x37\x17\xf0\x1a\x22\x33\x33\ \x03\x04\x24\x19\x22\x33\x33\x07\x01\x1e\x1d\x21\x2a\x47\x5b\x31\ \x4c\x3f\x2c\x37\x2e\x1c\x21\x2a\x47\x5b\x31\x4c\x3e\x2d\x37\x7b\ \x15\x51\x41\x11\x1e\x0e\x41\x14\x51\x41\x23\x19\xec\x21\x58\x37\ \x3e\x61\x42\x23\x28\x35\x2a\x38\x20\x58\x37\x3e\x61\x42\x23\x27\ \x36\x2b\x00\x00\x03\x00\x0c\xff\xf4\x02\x50\x01\xfc\x00\x0b\x00\ \x34\x00\x3d\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2a\ \x2f\x1b\xb9\x00\x2a\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\xbb\x00\x35\x00\x01\x00\ \x1f\x00\x04\x2b\xb8\x00\x30\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x09\x00\x01\xf4\xba\x00\x14\x00\x2a\x00\x11\x11\ \x12\x39\xb8\x00\x2a\x10\xb9\x00\x23\x00\x01\xf4\xba\x00\x2d\x00\ \x2a\x00\x11\x11\x12\x39\xb8\x00\x17\x10\xb9\x00\x3a\x00\x01\xf4\ \x30\x31\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x34\ \x3e\x02\x33\x32\x16\x17\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\ \x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x27\x0e\x01\ \x23\x22\x2e\x02\x25\x34\x2e\x02\x23\x22\x06\x07\x90\x1e\x20\x1b\ \x1d\x1d\x1b\x20\x1e\x84\x1d\x33\x44\x26\x2b\x3c\x12\x14\x3e\x25\ \x25\x3a\x27\x14\x03\x03\xde\x08\x2f\x23\x14\x22\x14\x32\x1d\x46\ \x1f\x27\x43\x16\x16\x3a\x2d\x26\x43\x32\x1c\x01\xd0\x05\x0b\x13\ \x0e\x1a\x22\x05\xf8\x41\x4d\x4d\x41\x41\x4d\x4d\x41\x3e\x61\x42\ \x23\x2f\x27\x2a\x2c\x26\x41\x57\x31\x14\x1b\x11\x33\x33\x0c\x0e\ \x5e\x17\x18\x28\x25\x26\x27\x23\x42\x61\x6d\x15\x24\x1c\x10\x31\ \x34\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x49\x02\x7e\x00\x0b\x00\ \x2d\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\ \x24\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\ \x00\x1a\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\x24\x10\ \xb9\x00\x06\x00\x01\xf4\xba\x00\x12\x00\x1a\x00\x24\x11\x12\x39\ \xb8\x00\x12\x10\xb8\x00\x27\xd0\x30\x31\x25\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x1e\x01\x15\x14\x06\x07\x1e\x01\x15\ \x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x3e\ \x01\x35\x34\x26\x27\x01\x2c\x33\x33\x33\x33\x33\x33\x33\x01\x32\ \x0b\x13\x3c\x2e\x22\x28\x2a\x47\x5b\x31\x31\x5b\x47\x2a\x2a\x47\ \x5b\x31\x1b\x35\x19\x1e\x24\x0a\x06\x6b\x4c\x41\x41\x4c\x4c\x41\ \x41\x4c\x02\x13\x0e\x29\x19\x33\x3a\x0c\x21\x5f\x3d\x3e\x61\x42\ \x23\x23\x42\x61\x3e\x3e\x61\x42\x23\x0b\x0b\x06\x19\x1f\x0e\x18\ \x08\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x49\x02\xe5\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x49\x02\xe5\x02\x26\x01\x59\x00\x00\x00\x06\x02\xdf\x00\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x49\x02\xf0\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x49\x02\xce\x02\x26\x01\x59\x00\x00\x00\x06\x02\xe5\x00\ \x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x49\x02\x7e\x02\x26\x01\ \x59\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\x02\x00\x2f\xff\ \x2e\x02\x29\x01\xfc\x00\x26\x00\x32\x00\x5c\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x05\x3e\x59\xb8\ \x00\x03\x10\xb8\x00\x17\xd0\xb8\x00\x24\x10\xb9\x00\x1d\x00\x01\ \xf4\xb8\x00\x03\x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x0d\x10\xb9\ \x00\x30\x00\x01\xf4\x30\x31\x17\x34\x36\x37\x2e\x03\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\x01\x15\x14\x16\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x26\x03\x14\x16\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\xd6\x25\x12\x2d\x51\x3c\x24\x2a\x46\x5b\x32\ \x31\x5c\x46\x2a\x19\x2e\x40\x27\x24\x1e\x1a\x10\x0a\x12\x07\x1f\ \x14\x3a\x17\x2d\x3d\x10\x33\x33\x33\x33\x33\x33\x33\x33\x77\x26\ \x38\x0f\x05\x28\x42\x5a\x39\x3e\x61\x42\x23\x23\x42\x61\x3e\x32\ \x4c\x3c\x2d\x11\x11\x2e\x16\x14\x12\x07\x05\x42\x0f\x12\x2e\x01\ \x9c\x41\x4c\x4c\x41\x41\x4c\x4c\x00\x00\x00\xff\xff\x00\x74\x00\ \x00\x02\x24\x02\xe5\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xe1\x27\ \x00\x00\x00\xff\xff\x00\x65\xff\x1b\x02\x24\x01\xfc\x02\x26\x00\ \x2f\x00\x00\x00\x06\x02\xfe\xa0\x00\x00\x00\xff\xff\x00\x74\x00\ \x00\x02\x24\x02\xe5\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xf5\x27\ \x00\x00\x00\xff\xff\x00\x6a\xff\x03\x02\x24\x01\xfc\x02\x26\x00\ \x2f\x00\x00\x00\x06\x02\xfc\xa0\x00\x00\x00\xff\xff\x00\x6a\xff\ \x03\x02\x24\x02\xad\x02\x26\x00\x2f\x00\x00\x00\x26\x02\xe7\x27\ \x00\x00\x06\x02\xfc\xa0\x00\xff\xff\x00\x42\xff\x43\x02\x24\x01\ \xfc\x02\x26\x00\x2f\x00\x00\x00\x06\x03\x04\xa0\x00\x00\x00\xff\ \xff\x00\x35\xff\xf4\x02\x1c\x02\xe5\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xe1\x0c\x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x1c\x02\ \xe5\x02\x26\x00\x30\x00\x00\x00\x06\x02\xe3\x0c\x00\x00\x00\xff\ \xff\x00\x35\xff\xf4\x02\x1c\x02\xe5\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xf5\x0c\x00\x00\x00\xff\xff\x00\x35\xff\x23\x02\x1c\x01\ \xfc\x02\x26\x00\x30\x00\x00\x00\x06\x02\xff\x0b\x00\x00\x00\xff\ \xff\x00\x35\xff\x1b\x02\x1c\x01\xfc\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xfe\x07\x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x1c\x02\ \xee\x02\x26\x00\x30\x00\x00\x00\x06\x02\xeb\x0c\x00\x00\x00\xff\ \xff\x00\x35\xff\x03\x02\x1c\x01\xfc\x02\x26\x00\x30\x00\x00\x00\ \x06\x02\xfc\x07\x00\x00\x00\x00\x01\x00\x3d\xff\xf4\x02\x3b\x02\ \xc9\x00\x39\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x39\x2f\ \x1b\xb9\x00\x39\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xb9\x00\x22\x00\x01\xf4\xba\ \x00\x0f\x00\x05\x00\x22\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x34\ \x00\x01\xf4\xba\x00\x25\x00\x1b\x00\x34\x11\x12\x39\x30\x31\x13\ \x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x15\x14\x1e\x04\x15\ \x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\ \x04\x35\x34\x3e\x02\x35\x34\x26\x23\x22\x06\x15\x11\x23\x3d\x1c\ \x38\x56\x39\x30\x48\x2e\x17\x13\x17\x13\x17\x22\x29\x22\x17\x16\ \x2c\x41\x2b\x2a\x3f\x22\x31\x17\x2a\x14\x14\x17\x17\x22\x29\x22\ \x17\x13\x16\x13\x1c\x19\x29\x26\x93\x01\xef\x2e\x50\x3b\x21\x1d\ \x2f\x3d\x20\x24\x31\x27\x21\x13\x11\x18\x18\x1b\x25\x33\x24\x22\ \x3c\x2c\x1a\x13\x12\x64\x0f\x0d\x17\x14\x13\x1c\x18\x1a\x22\x2e\ \x21\x1e\x2c\x28\x2b\x1d\x1a\x23\x3c\x33\xfe\x1a\x00\x00\x00\xff\ \xff\x00\x31\xff\xf4\x02\x26\x03\x02\x02\x26\x00\x31\x00\x00\x00\ \x07\x03\x1f\x00\x84\x00\x00\xff\xff\x00\x31\xff\x23\x02\x26\x02\ \x74\x02\x26\x00\x31\x00\x00\x00\x06\x02\xff\x49\x00\x00\x00\xff\ \xff\x00\x31\xff\x1b\x02\x26\x02\x74\x02\x26\x00\x31\x00\x00\x00\ \x06\x02\xfe\x44\x00\x00\x00\xff\xff\x00\x31\xff\x03\x02\x26\x02\ \x74\x02\x26\x00\x31\x00\x00\x00\x06\x02\xfc\x44\x00\x00\x00\xff\ \xff\x00\x31\xff\x43\x02\x26\x02\x74\x02\x26\x00\x31\x00\x00\x00\ \x06\x03\x04\x44\x00\x00\x00\xff\xff\x00\x31\xff\xf4\x02\x26\x03\ \x64\x02\x26\x00\x31\x00\x00\x00\x07\x02\xed\xff\xde\x00\x8c\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xe5\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xdf\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xe5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe1\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xe5\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xe3\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xce\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe5\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xd8\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xed\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xad\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe7\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x02\xda\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xe9\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xf0\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf1\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x10\x02\xd4\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xf3\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xe5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf5\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x03\x39\x02\x26\x00\x32\x00\x00\x00\ \x06\x03\x05\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x03\ \x50\x02\x26\x00\x32\x00\x00\x00\x06\x03\x07\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x0d\x03\x50\x02\x26\x00\x32\x00\x00\x00\ \x06\x03\x09\xfd\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x03\ \x50\x02\x26\x00\x32\x00\x00\x00\x06\x03\x0b\xfd\x00\x00\x00\xff\ \xff\x00\x3e\xff\x03\x02\x0d\x01\xf0\x02\x26\x00\x32\x00\x00\x00\ \x06\x02\xfc\x13\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x0d\x02\ \xf0\x02\x26\x00\x32\x00\x00\x00\x06\x02\xef\xfd\x00\x00\x00\x00\ \x01\x00\x3e\xff\x2e\x02\x21\x01\xf0\x00\x28\x00\x88\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xb8\x00\x0d\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\ \x10\xb8\x00\x15\xd0\xba\x00\x17\x00\x1e\x00\x1a\x11\x12\x39\xb8\ \x00\x1a\x10\xb9\x00\x23\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x26\ \x00\x01\xf4\x30\x31\x21\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\ \x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x02\x0d\x32\ \x26\x1a\x10\x0a\x12\x07\x1f\x14\x3a\x17\x2d\x3d\x0e\x15\x17\x0a\ \x0c\x04\x21\x50\x36\x55\x4c\x93\x1e\x2a\x1c\x2b\x1a\x93\x0f\x2f\ \x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\x15\x07\x49\ \x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\x18\x21\x01\x46\x00\x00\ \x01\x00\x3e\xff\xf4\x02\x6e\x02\x88\x00\x23\x00\x61\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x09\x00\x0d\x00\x1a\x11\x12\x39\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x09\x10\xb9\x00\x19\x00\x01\xf4\x30\x31\x01\x1e\ \x01\x15\x14\x06\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x11\ \x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x3e\x03\x35\x34\x26\x27\ \x02\x51\x0b\x12\x38\x29\x78\x0b\x04\x21\x50\x36\x55\x4c\x93\x1e\ \x2a\x1c\x2b\x1a\x31\x0e\x1d\x17\x0f\x0a\x05\x02\x88\x0e\x29\x19\ \x31\x39\x0c\xfe\x3e\x47\x26\x2d\x6c\x5e\x01\x32\xfe\xe1\x32\x2e\ \x18\x21\x01\x46\x01\x05\x0d\x17\x14\x0e\x18\x08\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x6e\x02\xe5\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xe1\xfb\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x6e\x02\ \xe5\x02\x26\x01\x85\x00\x00\x00\x06\x02\xdf\xfb\x00\x00\x00\xff\ \xff\x00\x3e\xff\xf4\x02\x6e\x02\xf0\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xef\xfb\x00\x00\x00\xff\xff\x00\x3e\xff\xf4\x02\x6e\x02\ \xce\x02\x26\x01\x85\x00\x00\x00\x06\x02\xe5\xfb\x00\x00\x00\xff\ \xff\x00\x3e\xff\x03\x02\x6e\x02\x88\x02\x26\x01\x85\x00\x00\x00\ \x06\x02\xfc\x08\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x02\ \xe5\x02\x26\x00\x34\x00\x00\x00\x06\x02\xdf\x01\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x02\xe5\x02\x26\x00\x34\x00\x00\x00\ \x06\x02\xe1\x01\x00\x00\x00\xff\xff\x00\x04\x00\x00\x02\x54\x02\ \xe5\x02\x26\x00\x34\x00\x00\x00\x06\x02\xe3\x01\x00\x00\x00\xff\ \xff\x00\x04\x00\x00\x02\x54\x02\xd8\x02\x26\x00\x34\x00\x00\x00\ \x06\x02\xed\x01\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xe5\x02\x26\x00\x36\x00\x00\x00\x06\x02\xdf\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xe5\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xe1\x07\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xe5\x02\x26\x00\x36\x00\x00\x00\x06\x02\xe3\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xd8\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xed\x07\x00\x00\x00\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xee\x02\x26\x00\x36\x00\x00\x00\x06\x02\xeb\x07\x00\x00\x00\xff\ \xff\x00\x1f\xff\x0b\x02\x48\x01\xf0\x02\x26\x00\x36\x00\x00\x00\ \x07\x02\xfc\x00\xba\x00\x08\xff\xff\x00\x1f\xff\x3e\x02\x3b\x02\ \xf0\x02\x26\x00\x36\x00\x00\x00\x06\x02\xef\x06\x00\x00\x00\xff\ \xff\x00\x1f\xff\x3e\x02\x3b\x02\xce\x02\x26\x00\x36\x00\x00\x00\ \x06\x02\xe5\x07\x00\x00\x00\xff\xff\x00\x46\x00\x00\x02\x1d\x02\ \xe5\x02\x26\x00\x37\x00\x00\x00\x06\x02\xe1\x17\x00\x00\x00\xff\ \xff\x00\x46\x00\x00\x02\x1d\x02\xe5\x02\x26\x00\x37\x00\x00\x00\ \x06\x02\xf5\x17\x00\x00\x00\xff\xff\x00\x46\x00\x00\x02\x1d\x02\ \xee\x02\x26\x00\x37\x00\x00\x00\x06\x02\xeb\x17\x00\x00\x00\xff\ \xff\x00\x46\xff\x03\x02\x1d\x01\xf0\x02\x26\x00\x37\x00\x00\x00\ \x06\x02\xfc\x12\x00\x00\x00\x00\x02\x00\x2f\xff\xf4\x02\x26\x02\ \xe4\x00\x10\x00\x34\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\x00\x2f\ \x2f\x1b\xb9\x00\x2f\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\ \x09\x00\x04\x2b\xb8\x00\x19\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\ \x26\x00\x2f\x00\x19\x11\x12\x39\xb8\x00\x26\x10\xb9\x00\x06\x00\ \x01\xf4\xba\x00\x11\x00\x2f\x00\x19\x11\x12\x39\xb8\x00\x11\x10\ \xb8\x00\x29\xd0\xb8\x00\x11\x10\xb8\x00\x32\xd0\xb8\x00\x2c\xd0\ \x30\x31\x25\x32\x36\x35\x3c\x01\x27\x2e\x01\x23\x22\x06\x15\x14\ \x1e\x02\x13\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x2e\x01\x27\x07\x27\x37\x26\x27\x37\x1e\x01\ \x17\x37\x17\x01\x2c\x34\x3d\x01\x1a\x38\x20\x36\x3f\x13\x20\x2c\ \x83\x40\x4f\x23\x41\x5f\x3c\x33\x5a\x43\x28\x24\x3e\x4f\x2c\x24\ \x42\x18\x0e\x31\x23\x95\x26\x78\x2b\x33\x40\x26\x49\x22\x88\x26\ \x6b\x4c\x4b\x09\x11\x08\x1d\x19\x3a\x3c\x1e\x2d\x1e\x10\x01\xf3\ \x3c\xa6\x72\x3c\x66\x4a\x2a\x22\x3e\x59\x37\x36\x54\x3a\x1f\x1a\ \x1d\x2d\x49\x20\x4b\x41\x3c\x1c\x17\x59\x11\x29\x18\x45\x41\x00\ \x02\x00\x48\xff\x48\x02\x29\x02\xbd\x00\x16\x00\x24\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\ \x00\x03\x3e\x59\xba\x00\x05\x00\x08\x00\x12\x11\x12\x39\xba\x00\ \x15\x00\x12\x00\x08\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x08\x10\ \xb9\x00\x22\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x24\x00\x01\xf4\ \x30\x31\x17\x23\x11\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x26\x27\x17\x35\x1e\x01\x33\x32\x3e\x02\x35\x34\ \x26\x23\x22\x07\xdb\x93\x93\x04\x1e\x47\x26\x2e\x4a\x33\x1c\x25\ \x3c\x4d\x28\x25\x3c\x1a\x03\x14\x2e\x13\x14\x23\x1b\x10\x2c\x30\ \x2e\x2d\xb8\x03\x75\xae\x4c\x1b\x1e\x24\x42\x5d\x39\x40\x63\x45\ \x24\x1f\x17\x51\xb4\x12\x0f\x11\x24\x37\x26\x43\x43\x2e\x00\x00\ \x01\x00\x2a\xff\x3c\x01\xa9\x01\xf0\x00\x13\x00\x35\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\ \xb9\x00\x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x13\x21\x11\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\ \x32\x36\x35\x11\x23\x4f\x01\x5a\x15\x35\x59\x43\x2e\x4b\x20\x2b\ \x1e\x31\x16\x35\x27\xc7\x01\xf0\xfe\x2e\x2d\x52\x3e\x25\x13\x0f\ \x69\x0e\x0a\x33\x36\x01\x65\x00\x02\x00\x48\xff\xf4\x02\x22\x01\ \xfc\x00\x1d\x00\x29\x00\x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xba\x00\x05\x00\x19\ \x00\x0f\x11\x12\x39\xb8\x00\x05\x2f\xb8\x00\x0f\x10\xb9\x00\x08\ \x00\x01\xf4\xba\x00\x15\x00\x19\x00\x0f\x11\x12\x39\xb8\x00\x19\ \x10\xb9\x00\x21\x00\x01\xf4\xb8\x00\x15\x10\xb9\x00\x24\x00\x01\ \xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x01\x14\x0e\ \x02\x07\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x11\ \x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x07\x34\x26\x23\x22\x06\x07\ \x15\x3e\x03\x02\x22\x24\x4f\x7c\x58\x04\x33\x33\x24\x49\x2a\x34\ \x33\x75\x40\x68\x78\x78\x0b\x04\x26\x5a\x30\x25\x3d\x2a\x17\x8d\ \x25\x20\x21\x3a\x1a\x37\x48\x2a\x11\x01\x67\x2a\x3f\x2d\x1b\x05\ \x22\x26\x1a\x15\x61\x1d\x26\x6e\x72\x01\x1c\x38\x1d\x27\x17\x29\ \x36\x2b\x18\x17\x1b\x14\x52\x03\x0e\x15\x1c\x00\x02\x00\x2f\xff\ \xf4\x02\x10\x01\xfc\x00\x0c\x00\x23\x00\x7f\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1b\x00\x1f\x00\x12\x11\x12\x39\ \xb8\x00\x1b\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x16\x00\x1f\x00\ \x12\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\ \x12\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\ \x37\x35\x2e\x01\x23\x22\x06\x07\x34\x3e\x02\x33\x32\x16\x17\x33\ \x37\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\xc6\x32\x2e\x19\ \x2a\x14\x14\x29\x16\x29\x3b\x97\x24\x3b\x4e\x2a\x26\x43\x1e\x04\ \x0c\x73\x78\x0b\x03\x1b\x4b\x24\x2f\x4d\x37\x1e\xfa\x4a\x44\x15\ \x19\xc9\x12\x0f\x44\x48\x3d\x60\x43\x24\x1e\x21\x33\xfe\x10\x33\ \x1b\x24\x24\x43\x60\x00\x00\x00\x02\x00\x48\xff\xf4\x02\x29\x01\ \xfc\x00\x0b\x00\x22\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1e\x2f\x1b\xb9\x00\x1e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xb8\x00\x1e\x10\ \xb9\x00\x02\x00\x01\xf4\xba\x00\x1a\x00\x1e\x00\x11\x11\x12\x39\ \xb8\x00\x1a\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x15\x00\x11\x00\ \x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x25\x34\x23\x22\x06\x07\ \x15\x1e\x01\x33\x32\x36\x37\x14\x0e\x02\x23\x22\x26\x27\x23\x07\ \x23\x11\x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x01\x92\x5e\x1a\x2b\ \x14\x14\x2c\x14\x29\x3a\x97\x24\x3c\x4e\x2a\x22\x46\x1e\x04\x0c\ \x73\x78\x0b\x03\x1b\x4e\x2b\x2e\x4a\x33\x1c\xf8\x8c\x15\x19\xc9\ \x12\x0f\x44\x52\x41\x64\x45\x24\x22\x20\x36\x01\xf0\x33\x1b\x24\ \x24\x41\x5c\x00\x01\x00\x34\xff\xf4\x02\x15\x01\xfc\x00\x1d\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\ \x00\x03\x3e\x59\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\ \x12\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\ \x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\ \x1e\x02\x02\x15\x2c\x4b\x67\x3a\x35\x69\x2b\x3c\x1a\x3d\x25\x41\ \x51\x49\x3c\x20\x3a\x1f\x44\x20\x68\x3f\x39\x63\x4b\x2b\xf8\x3e\ \x61\x42\x23\x23\x26\x5d\x13\x1c\x4c\x41\x41\x4c\x13\x14\x5b\x1d\ \x26\x23\x42\x61\x00\x00\x00\x00\x02\x00\x36\xff\xf4\x02\x21\x01\ \xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xbb\x00\x1d\x00\x01\x00\ \x10\x00\x04\x2b\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x18\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\ \x26\x27\x37\x1e\x01\x33\x32\x36\x37\x21\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x07\x2e\x01\x23\x22\x06\x15\x02\x21\x2b\x4a\x64\ \x3a\x32\x68\x2a\x30\x21\x3d\x22\x37\x4e\x0b\xfe\xb2\x02\x04\x20\ \x3e\x5b\x3b\x30\x5a\x44\x29\x95\x09\x37\x2a\x32\x35\xf8\x3e\x60\ \x43\x23\x1f\x1b\x58\x11\x11\x31\x38\x09\x24\x14\x33\x57\x40\x24\ \x24\x43\x60\x07\x30\x2e\x34\x2a\x00\x00\x00\x00\x02\x00\x37\xff\ \xf4\x02\x22\x01\xfc\x00\x1c\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\ \x23\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x07\x00\ \x01\xf4\xb8\x00\x18\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x36\x37\x21\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x37\x37\ \x04\x02\x01\x4f\x0a\x41\x36\x22\x42\x1f\x31\x2b\x67\x32\x3b\x61\ \x45\x26\x29\x46\x5d\x33\x3a\x58\x3c\x1e\x86\x31\x32\x2b\x3b\x07\ \xe4\x14\x24\x09\x36\x31\x12\x11\x5c\x1b\x1c\x24\x43\x60\x3d\x3c\ \x61\x43\x24\x24\x41\x58\x13\x2b\x35\x2d\x33\x00\x02\x00\x2f\xff\ \x3c\x02\x10\x01\xfc\x00\x20\x00\x2f\x00\x8d\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x05\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x1d\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x07\x00\x1d\x00\ \x14\x11\x12\x39\xba\x00\x17\x00\x1d\x00\x14\x11\x12\x39\xb8\x00\ \x0a\x10\xb9\x00\x21\x00\x01\xf4\xb8\x00\x07\x10\xb9\x00\x24\x00\ \x01\xf4\xb8\x00\x17\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x14\x10\ \xb9\x00\x28\x00\x01\xf4\x30\x31\x17\x1e\x01\x33\x32\x36\x3f\x01\ \x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x17\x33\x37\x33\ \x11\x14\x06\x23\x22\x26\x27\x13\x32\x36\x37\x35\x2e\x01\x23\x22\ \x0e\x02\x15\x14\x16\x7f\x23\x4d\x1f\x37\x39\x04\x03\x19\x49\x23\ \x2f\x4d\x37\x1e\x23\x3b\x4e\x2b\x4e\x39\x04\x0c\x73\x82\x80\x2a\ \x6a\x2c\xd8\x18\x2b\x14\x14\x2a\x17\x13\x24\x1c\x11\x36\x2c\x14\ \x11\x2f\x23\x40\x18\x1c\x24\x41\x59\x36\x39\x5d\x41\x24\x3f\x33\ \xfe\x20\x65\x6f\x18\x1c\x01\x13\x16\x1a\xb0\x12\x0f\x11\x21\x30\ \x1f\x3e\x42\x00\x01\x00\x3c\xff\x48\x02\x10\x01\xf0\x00\x14\x00\ \x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\ \x00\x06\x00\x03\x3e\x59\xba\x00\x03\x00\x0a\x00\x06\x11\x12\x39\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x05\x23\x35\x37\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x02\x10\x93\x08\x1d\x53\x38\x54\x4d\ \x93\x20\x29\x1e\x2d\x1a\x93\xb8\x97\x5f\x1d\x2d\x6c\x5e\x01\x32\ \xfe\xe1\x32\x2e\x1a\x1a\x01\x4b\x00\x00\x00\x00\x01\x00\x20\xff\ \xf4\x02\x39\x01\xf0\x00\x20\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x10\x2f\x1b\xb9\x00\x10\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\ \xba\x00\x02\x00\x17\x00\x00\x11\x12\x39\xba\x00\x09\x00\x10\x00\ \x0c\x11\x12\x39\xb8\x00\x0c\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x09\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\ \x01\xf4\xb8\x00\x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x21\x23\ \x27\x23\x0e\x01\x23\x22\x26\x27\x0e\x01\x23\x22\x26\x35\x11\x33\ \x11\x14\x33\x32\x37\x11\x33\x11\x14\x33\x32\x36\x37\x11\x33\x02\ \x39\x6e\x0b\x04\x0e\x31\x2c\x20\x2d\x09\x0e\x35\x2a\x34\x3a\x8a\ \x1c\x1a\x14\x71\x1d\x0e\x14\x0b\x8a\x3e\x1f\x2b\x29\x28\x21\x30\ \x55\x4b\x01\x5c\xfe\xaf\x2e\x30\x01\x4f\xfe\xaf\x2e\x18\x18\x01\ \x4f\x00\x00\x00\x01\x00\x34\xff\xf4\x01\xe4\x01\xf0\x00\x12\x00\ \x54\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x11\x11\x12\x39\xb8\ \x00\x06\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x10\ \x00\x01\xf4\x30\x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x37\x11\x33\x01\xe4\x78\x0c\x03\x25\x68\x3c\ \x21\x29\x16\x1e\x17\x25\x1c\x2e\x59\x20\x93\x6c\x3c\x3c\x0a\x0a\ \x7c\x08\x07\x36\x43\x01\x02\x00\x01\x00\x32\xff\x7c\x02\x27\x01\ \xfc\x00\x19\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\ \xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x03\x3e\x59\xb9\x00\x08\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x07\x10\xb8\x00\x03\xd0\xb8\x00\x14\x10\xb9\x00\ \x0d\x00\x01\xf4\x30\x31\x25\x33\x15\x23\x07\x23\x35\x23\x35\x33\ \x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x01\ \xaa\x7d\x84\x13\x79\xd2\xd2\x32\x36\x1d\x30\x16\x1a\x21\x51\x30\ \x3b\x52\x33\x16\x73\x73\x84\x84\x73\xae\x39\x2f\x0a\x08\x6a\x0a\ \x11\x1f\x39\x51\x31\x00\x00\x00\x01\x00\x1f\x00\x00\x02\x39\x01\ \xf0\x00\x0d\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xba\x00\x06\x00\x0c\x00\x00\ \x11\x12\x39\x30\x31\x21\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\ \x23\x13\x33\x02\x39\x94\x4e\x0c\x16\x0b\x04\x0b\x15\x0c\x4e\x8d\ \xb6\xa9\xea\x26\x4c\x27\x27\x4c\x26\xea\x01\xf0\x00\x00\x00\x00\ \x01\x00\x04\x00\x00\x02\x54\x01\xf0\x00\x21\x00\x69\x00\xb8\x00\ \x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\ \x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\ \x00\x01\x00\x03\x3e\x59\xba\x00\x06\x00\x20\x00\x01\x11\x12\x39\ \xba\x00\x10\x00\x16\x00\x15\x11\x12\x39\xba\x00\x1b\x00\x16\x00\ \x01\x11\x12\x39\x30\x31\x21\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\ \x01\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x13\x33\x17\x1e\ \x01\x17\x33\x3e\x01\x3f\x01\x33\x02\x54\x90\x1e\x05\x07\x05\x03\ \x05\x0a\x08\x1f\x67\x21\x07\x0c\x05\x04\x05\x06\x05\x1e\x86\x4d\ \xaa\x1c\x05\x09\x05\x04\x03\x07\x08\x1b\xa7\xe6\x25\x48\x26\x26\ \x4a\x23\xa4\xa4\x25\x48\x26\x26\x48\x25\xe6\x01\xf0\xa5\x23\x47\ \x28\x1b\x44\x33\xa5\x00\x00\x00\x01\x00\x1d\x00\x00\x02\x39\x02\ \xc9\x00\x1c\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\ \xb9\x00\x18\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\ \x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\ \x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x18\x10\xb9\x00\x02\ \x00\x01\xf4\xba\x00\x0d\x00\x07\x00\x18\x11\x12\x39\xb8\x00\x0d\ \x10\xb8\x00\x06\xd0\x30\x31\x01\x26\x23\x22\x06\x0f\x01\x13\x23\ \x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x13\x3e\x03\x33\x32\x16\ \x17\x07\x01\xfc\x14\x11\x29\x2e\x0c\x12\xd7\x92\x53\x0e\x18\x0c\ \x04\x0a\x18\x0b\x49\x8b\xcc\x12\x29\x35\x45\x2e\x16\x24\x11\x1b\ \x02\x4f\x06\x28\x1d\x2d\xfe\x1d\xd5\x23\x4b\x27\x25\x4b\x25\xd5\ \x02\x09\x2e\x48\x31\x19\x05\x05\x70\x00\x00\x00\x01\x00\x0f\xff\ \x48\x02\x0c\x01\xf0\x00\x0c\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xba\x00\ \x02\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\x05\x23\x11\x23\ \x07\x23\x37\x03\x33\x17\x37\x35\x33\x02\x0c\x93\x04\xb6\xa1\xbc\ \xcb\x9f\x81\x4a\x93\xb8\x01\x7d\xc5\xcc\x01\x24\xc3\x48\x7b\x00\ \x03\x00\x07\x00\x00\x02\x45\x02\xf1\x00\x19\x00\x1d\x00\x29\x00\ \x84\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\ \x1a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\ \xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\ \xf4\xb8\x00\x10\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x16\xd0\xb8\ \x00\x10\x10\xb8\x00\x19\xd0\xb8\x00\x1a\x10\xb8\x00\x24\xdc\xb8\ \x00\x1e\xdc\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\ \x23\x22\x06\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x25\x33\ \x11\x23\x13\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x49\x13\ \x2c\x46\x32\x1f\x33\x11\x1b\x0c\x1b\x0c\x1b\x1e\x5a\x5a\x93\x42\ \x42\x01\x4e\x93\x93\x48\x2d\x39\x39\x2d\x2c\x39\x39\x02\x0a\x27\ \x46\x34\x1e\x0c\x06\x6c\x05\x05\x21\x26\x1e\x73\xfe\x83\x01\x7d\ \x6d\x05\x01\xfe\x10\x02\xf1\x33\x29\x29\x33\x33\x29\x29\x33\x00\ \x02\x00\x0b\xff\xf4\x02\x5a\x02\xc9\x00\x19\x00\x2b\x00\x82\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\ \x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\ \x00\x10\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x16\xd0\xb8\x00\x10\ \x10\xb8\x00\x19\xd0\xb8\x00\x1d\x10\xb9\x00\x28\x00\x01\xf4\x30\ \x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x1d\ \x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x01\x0e\x01\x23\x22\x2e\ \x02\x35\x11\x33\x11\x14\x16\x33\x3a\x01\x37\x4d\x13\x2c\x46\x32\ \x1f\x33\x11\x1b\x0c\x1b\x0c\x1b\x1e\x5a\x5a\x93\x42\x42\x02\x0d\ \x0c\x24\x1a\x26\x34\x1f\x0e\x93\x12\x09\x04\x07\x07\x02\x0a\x27\ \x46\x34\x1e\x0c\x06\x6c\x05\x05\x21\x26\x1e\x73\xfe\x83\x01\x7d\ \x6d\x05\xfe\x11\x05\x07\x18\x2b\x3d\x26\x02\x23\xfd\xd7\x17\x12\ \x02\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x01\xfc\x02\x06\x01\ \x9f\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xdf\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xe5\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe1\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe3\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xce\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe5\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xd8\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xed\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xad\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe7\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xda\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe9\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x10\x02\xf0\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xf1\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xe5\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xf5\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \x03\x02\x10\x01\xfc\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xfc\x10\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x02\xf0\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xef\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x56\x02\xfc\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x0d\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x33\x02\xfc\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x0f\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \xf4\x02\x38\x03\x21\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x11\x0e\ \x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\x42\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x13\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\ \x03\x02\x10\x02\xe5\x02\x26\x01\x9f\x00\x00\x00\x26\x02\xe3\x0e\ \x00\x00\x06\x02\xfc\x0f\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\ \x2a\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x15\x0e\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x10\x03\x2a\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x17\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\xf4\x02\x10\x03\ \x67\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x19\x0e\x00\x00\x00\xff\ \xff\x00\x2f\xff\xf4\x02\x10\x03\x42\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x1b\x0e\x00\x00\x00\xff\xff\x00\x2f\xff\x03\x02\x10\x02\ \xda\x02\x26\x01\x9f\x00\x00\x00\x26\x02\xe9\x0e\x00\x00\x06\x02\ \xfc\x0f\x00\x00\x02\x00\x2f\xff\x2e\x02\x24\x01\xfc\x00\x0c\x00\ \x37\x00\xa6\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\ \x12\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\ \x00\x18\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\ \x1b\xb9\x00\x26\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x33\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x30\x00\x33\x00\x12\x11\x12\x39\xb8\x00\x30\ \x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x15\x00\x12\x00\x33\x11\x12\ \x39\xb8\x00\x15\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x12\x10\xb9\ \x00\x0a\x00\x01\xf4\xb8\x00\x26\x10\xb9\x00\x1f\x00\x01\xf4\xb8\ \x00\x19\x10\xb8\x00\x2e\xd0\x30\x31\x37\x14\x16\x33\x32\x36\x37\ \x35\x2e\x01\x23\x22\x06\x07\x34\x3e\x02\x33\x32\x16\x17\x33\x37\ \x33\x11\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\ \x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\x2e\x02\xc6\x32\ \x2e\x19\x2a\x14\x14\x29\x16\x29\x3b\x97\x24\x3b\x4e\x2a\x26\x43\ \x1e\x04\x0c\x73\x32\x26\x19\x11\x0a\x13\x07\x1e\x13\x3a\x18\x2d\ \x3d\x0e\x15\x18\x0a\x0d\x03\x1b\x4b\x24\x2f\x4d\x37\x1e\xfa\x4a\ \x44\x15\x19\xc9\x12\x0f\x44\x48\x3d\x60\x43\x24\x1e\x21\x33\xfe\ \x10\x0f\x2f\x17\x14\x12\x07\x05\x42\x0f\x12\x2e\x2d\x16\x25\x1e\ \x15\x07\x35\x1b\x24\x24\x43\x60\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x01\xfc\x02\x06\x01\xa4\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xe5\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe3\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xda\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe9\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xee\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xeb\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xdc\x02\x26\x01\ \xa4\x00\x00\x00\x06\x03\x20\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xe5\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xf5\x09\ \x00\x00\x00\xff\xff\x00\x2f\xff\x3c\x02\x10\x02\xad\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe7\x09\x00\x00\x00\xff\xff\x00\x2f\xff\ \x3c\x02\x10\x02\xce\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe5\x09\ \x00\x00\x00\x00\x03\x00\x17\xff\xf4\x02\x4a\x02\x98\x00\x0a\x00\ \x15\x00\x41\x00\x90\x00\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\ \x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x05\x00\x33\x00\x21\x11\x12\x39\xba\x00\x0d\ \x00\x21\x00\x33\x11\x12\x39\xb8\x00\x0d\x10\xb8\x00\x2b\xd0\xb8\ \x00\x08\xd0\xb8\x00\x33\x10\xb8\x00\x13\xdc\xb8\x00\x05\x10\xb8\ \x00\x1e\xd0\xb8\x00\x19\xd0\xb8\x00\x1c\x10\xb9\x00\x1b\x00\x01\ \xf4\xb8\x00\x0d\x10\xb9\x00\x3b\x00\x01\xf4\xb8\x00\x19\x10\xb8\ \x00\x3e\xd0\x30\x31\x37\x14\x16\x33\x32\x37\x2e\x01\x27\x0e\x01\ \x13\x14\x17\x3e\x01\x35\x34\x26\x23\x22\x06\x05\x0e\x01\x07\x16\ \x17\x07\x26\x27\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x1e\x01\x17\ \x3e\x01\x37\xa2\x31\x28\x20\x20\x23\x3f\x1a\x0e\x0f\x2d\x13\x1c\ \x25\x12\x17\x13\x18\x01\x7b\x0f\x2c\x20\x33\x28\x23\x44\x46\x25\ \x59\x37\x33\x4e\x35\x1b\x11\x1d\x26\x15\x14\x16\x16\x2a\x3c\x25\ \x4a\x53\x16\x23\x2c\x17\x18\x3d\x20\x12\x1c\x09\xb7\x25\x2e\x17\ \x1e\x43\x24\x11\x24\x01\x23\x22\x29\x14\x2e\x1f\x17\x1c\x27\xa0\ \x3c\x6d\x33\x20\x09\x77\x10\x2f\x1d\x22\x1e\x33\x43\x26\x20\x35\ \x2b\x24\x0f\x26\x47\x1f\x23\x3e\x2f\x1b\x50\x44\x1f\x33\x2c\x26\ \x12\x1f\x3b\x1a\x20\x4a\x2c\x00\x03\x00\x38\xff\xf4\x02\x20\x02\ \x87\x00\x13\x00\x27\x00\x33\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x0a\x10\ \xb9\x00\x14\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x1e\x00\x01\xf4\ \xba\x00\x28\x00\x1e\x00\x14\x11\x12\x39\xb8\x00\x28\x2f\xb8\x00\ \x2e\xdc\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x03\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x3e\x02\ \x35\x34\x2e\x02\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x01\x2c\x37\x5a\x40\x23\x23\x40\x5a\x37\x37\x5a\x40\x23\x23\x40\ \x5a\x37\x18\x29\x1e\x12\x12\x1e\x29\x18\x18\x29\x1e\x12\x12\x1e\ \x29\x18\x20\x2b\x2b\x20\x20\x2b\x2b\x0c\x2b\x54\x7c\x51\x51\x7a\ \x53\x29\x29\x53\x7a\x51\x51\x7c\x54\x2b\x02\x21\x14\x31\x52\x3e\ \x3e\x53\x33\x16\x16\x33\x53\x3e\x3e\x52\x31\x14\xfe\xe1\x29\x23\ \x23\x29\x29\x23\x23\x29\x00\x00\x01\x00\x52\x00\x00\x02\x19\x02\ \x7b\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\ \x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\x37\x33\x11\x02\ \x19\xfe\x39\xa4\x83\x38\x4f\x23\x6c\x77\x77\x77\x01\x6f\x5b\x0a\ \x1c\x14\xfd\xfc\x00\x00\x00\x00\x01\x00\x33\x00\x00\x02\x17\x02\ \x87\x00\x21\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\ \x1b\xb9\x00\x20\x00\x03\x3e\x59\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x00\xd0\xba\x00\x05\x00\x11\x00\x20\x11\x12\x39\xb8\x00\x11\x10\ \xb9\x00\x08\x00\x01\xf4\x30\x31\x37\x3e\x03\x35\x34\x26\x23\x22\ \x06\x07\x27\x3e\x03\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x3e\x01\ \x3b\x01\x15\x21\x3a\x44\x70\x50\x2c\x36\x32\x26\x3f\x1b\x4f\x19\ \x31\x37\x3d\x25\x32\x52\x3b\x21\x26\x41\x54\x2e\x1b\x3f\x19\x97\ \xfe\x23\x54\x39\x63\x56\x4c\x22\x2f\x31\x27\x1a\x4f\x19\x26\x19\ \x0d\x1d\x35\x4a\x2e\x28\x53\x53\x53\x28\x03\x05\x7c\x00\x00\x00\ \x01\x00\x2a\xff\xf4\x02\x13\x02\x87\x00\x2d\x00\x53\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2a\x2f\x1b\xb9\x00\x2a\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x0b\x00\x19\x00\x2a\x11\x12\x39\ \xb8\x00\x0b\x2f\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\ \x12\x00\x01\xf4\xba\x00\x22\x00\x0b\x00\x0c\x11\x12\x39\x30\x31\ \x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\x35\x32\x36\x35\x34\ \x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\ \x15\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x6e\x20\x4f\x2c\x34\ \x43\x12\x2c\x4a\x38\x5e\x4d\x32\x2c\x26\x40\x21\x4a\x2f\x6b\x3e\ \x34\x56\x3e\x22\x40\x39\x3c\x52\x29\x45\x5c\x32\x52\x76\x25\xab\ \x1c\x24\x27\x24\x15\x22\x17\x0d\x68\x2f\x26\x21\x25\x1e\x1a\x5a\ \x26\x2b\x17\x2d\x40\x2a\x32\x45\x16\x04\x10\x4d\x3e\x2c\x45\x2f\ \x19\x31\x29\x00\x02\x00\x23\x00\x00\x02\x2e\x02\x7b\x00\x09\x00\ \x14\x00\x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x11\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x09\xd0\xb8\x00\x0e\x10\xb8\x00\x0b\xd0\xb8\x00\x09\x10\xb8\x00\ \x10\xd0\xb8\x00\x00\x10\xb8\x00\x13\xd0\x30\x31\x01\x35\x34\x36\ \x37\x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\ \x33\x01\x55\x03\x02\x04\x10\x24\x11\x60\x01\x7d\x50\x89\xfe\xce\ \x01\x09\xb2\x50\x01\x08\x6b\x1e\x4f\x1e\x1b\x36\x1b\x8a\x70\x98\ \x98\x65\x01\x7e\xfe\x8d\x00\x00\x01\x00\x2e\xff\xf4\x02\x14\x02\ \x7b\x00\x24\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xbb\x00\x17\x00\x01\x00\x09\x00\ \x04\x2b\xb8\x00\x21\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x14\x00\ \x21\x00\x10\x11\x12\x39\xb8\x00\x14\x10\xb8\x00\x0f\xd0\xb8\x00\ \x10\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x23\x22\x0e\x02\x07\x27\x13\x21\x15\x21\x07\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x70\x20\x49\x2d\ \x36\x45\x41\x33\x10\x19\x18\x1a\x10\x41\x11\x01\x85\xfe\xfa\x0b\ \x16\x26\x18\x2c\x4f\x3c\x23\x29\x45\x5a\x31\x53\x73\x27\xaa\x1a\ \x25\x32\x31\x30\x32\x03\x08\x0c\x09\x2a\x01\x41\x7c\x77\x08\x07\ \x18\x30\x4a\x33\x35\x52\x39\x1e\x33\x26\x00\x00\x02\x00\x3c\xff\ \xf4\x02\x21\x02\x87\x00\x0f\x00\x32\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\x3e\x59\xbb\x00\ \x08\x00\x01\x00\x1b\x00\x04\x2b\xb8\x00\x25\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x18\x00\x25\x00\x2f\x11\x12\x39\xb8\x00\x18\x10\ \xb9\x00\x0b\x00\x01\xf4\xb8\x00\x2f\x10\xb9\x00\x13\x00\x01\xf4\ \x30\x31\x25\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x1e\x03\x13\ \x2e\x01\x23\x22\x0e\x02\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x01\x3a\x13\ \x23\x1b\x10\x34\x2a\x1c\x3c\x1d\x06\x17\x1e\x24\xa4\x14\x3c\x20\ \x1d\x35\x29\x1a\x02\x22\x53\x24\x2a\x47\x35\x1e\x25\x3f\x52\x2e\ \x31\x5c\x48\x2c\x2e\x4d\x62\x35\x44\x66\x20\x62\x0c\x19\x27\x1b\ \x31\x2b\x1c\x22\x26\x33\x1f\x0d\x01\x81\x12\x1b\x15\x2f\x4c\x38\ \x21\x24\x18\x30\x4a\x32\x32\x4e\x38\x1d\x24\x4c\x77\x54\x59\x82\ \x54\x29\x2d\x1f\x00\x00\x00\x00\x01\x00\x3e\x00\x00\x02\x1b\x02\ \x7b\x00\x0f\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x07\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x21\x35\x21\x15\ \x0e\x03\x07\x23\xc1\x04\x17\x2b\x44\x32\xfe\xc1\x01\xdd\x3c\x4a\ \x2a\x12\x04\x94\x4f\x85\x79\x73\x3f\x7c\x5a\x43\x75\x7d\x8f\x5d\ \x00\x00\x00\x00\x03\x00\x3d\xff\xf4\x02\x1c\x02\x87\x00\x0d\x00\ \x18\x00\x3e\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\ \xb9\x00\x27\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x3a\x2f\ \x1b\xb9\x00\x3a\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x27\x10\xb9\x00\x13\x00\x01\xf4\xba\x00\x0b\x00\x03\x00\x13\x11\ \x12\x39\xb8\x00\x0b\x2f\xb8\x00\x2f\xd0\xb8\x00\x2f\x2f\xb8\x00\ \x0e\xdc\xb8\x00\x0b\x10\xb8\x00\x1e\xdc\x30\x31\x37\x14\x16\x33\ \x32\x36\x35\x34\x2e\x02\x27\x0e\x01\x37\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\x07\x34\x3e\x02\x37\x35\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\ \x22\x2e\x02\xbc\x42\x31\x2d\x37\x16\x29\x38\x22\x1b\x23\x9b\x30\ \x2e\x2c\x23\x31\x46\xe2\x13\x21\x2b\x19\x28\x35\x20\x39\x50\x2f\ \x30\x4d\x36\x1d\x35\x26\x19\x2c\x20\x12\x20\x3d\x5a\x3a\x37\x58\ \x3e\x21\xb3\x2a\x2f\x27\x28\x16\x1e\x19\x15\x0d\x14\x32\xa0\x2b\ \x32\x25\x2d\x24\x25\x27\x2c\xe3\x1d\x2f\x26\x1e\x0c\x04\x1c\x47\ \x33\x28\x41\x2e\x18\x19\x2d\x41\x27\x2d\x46\x18\x04\x0c\x1f\x28\ \x33\x20\x26\x40\x2f\x1b\x19\x2e\x40\x00\x00\x00\x02\x00\x35\xff\ \xf4\x02\x1a\x02\x87\x00\x0f\x00\x32\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x03\x3e\x59\xbb\x00\ \x00\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x18\x00\x2f\x00\x25\x11\ \x12\x39\xb8\x00\x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x25\x10\ \xb9\x00\x08\x00\x01\xf4\xb8\x00\x2f\x10\xb9\x00\x13\x00\x01\xf4\ \x30\x31\x01\x32\x36\x37\x2e\x03\x23\x22\x0e\x02\x15\x14\x16\x07\ \x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x01\x1a\x1c\ \x3c\x1d\x06\x17\x1f\x24\x13\x13\x23\x1b\x10\x34\x63\x14\x3c\x20\ \x1d\x35\x29\x1a\x02\x23\x53\x23\x2a\x48\x35\x1e\x25\x3f\x52\x2e\ \x31\x5d\x48\x2b\x2e\x4c\x63\x34\x44\x66\x21\x01\x56\x1c\x23\x25\ \x33\x1f\x0d\x0c\x19\x27\x1b\x31\x2b\xbe\x12\x1b\x15\x2f\x4d\x38\ \x21\x25\x18\x30\x4a\x32\x31\x4f\x38\x1d\x24\x4c\x77\x54\x59\x82\ \x54\x29\x2e\x1e\x00\x00\x00\x00\x03\x00\x38\xff\xf4\x02\x20\x02\ \x4e\x00\x13\x00\x27\x00\x33\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x0a\x10\ \xb9\x00\x14\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x1e\x00\x01\xf4\ \xba\x00\x28\x00\x1e\x00\x14\x11\x12\x39\xb8\x00\x28\x2f\xb8\x00\ \x2e\xdc\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x03\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x3e\x02\ \x35\x34\x2e\x02\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x01\x2c\x37\x5a\x40\x23\x23\x40\x5a\x37\x37\x5a\x40\x23\x23\x40\ \x5a\x37\x18\x29\x1e\x12\x12\x1e\x29\x18\x18\x29\x1e\x12\x12\x1e\ \x29\x18\x20\x2b\x2b\x20\x20\x2b\x2b\x0c\x28\x4e\x72\x49\x49\x6f\ \x4b\x26\x26\x4b\x6f\x49\x49\x72\x4e\x28\x01\xe9\x12\x2a\x47\x35\ \x35\x49\x2d\x14\x14\x2d\x49\x35\x35\x47\x2a\x12\xfe\xfe\x29\x23\ \x22\x2a\x2a\x22\x23\x29\x00\x00\x01\x00\x52\x00\x00\x02\x19\x02\ \x42\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x03\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\x37\x33\x11\x02\ \x19\xfe\x39\xa4\x83\x38\x4f\x23\x6c\x77\x77\x77\x01\x36\x5b\x0a\ \x1c\x14\xfe\x35\x00\x00\x00\x00\x01\x00\x33\x00\x00\x02\x17\x02\ \x4e\x00\x21\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\ \xb9\x00\x11\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\ \x1b\xb9\x00\x20\x00\x03\x3e\x59\xb9\x00\x1b\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x11\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x1b\x10\ \xb8\x00\x1e\xd0\x30\x31\x37\x3e\x03\x35\x34\x26\x23\x22\x06\x07\ \x27\x3e\x03\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x3e\x01\x3b\x01\ \x15\x21\x3a\x46\x70\x4f\x2b\x36\x32\x26\x3f\x1b\x4f\x19\x31\x37\ \x3d\x25\x32\x52\x3b\x21\x20\x37\x4c\x2c\x1b\x3f\x19\x7d\xfe\x23\ \x54\x2d\x52\x49\x42\x1c\x30\x31\x27\x1a\x50\x19\x25\x19\x0d\x1d\ \x35\x4c\x2e\x24\x46\x43\x41\x20\x03\x05\x7c\x00\x01\x00\x2a\xff\ \xa6\x02\x13\x02\x4e\x00\x2f\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x2c\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\x0b\x00\x04\x2b\xb8\ \x00\x19\x10\xb9\x00\x12\x00\x01\xf4\xba\x00\x22\x00\x0b\x00\x0c\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\ \x35\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\ \x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\ \x6e\x20\x4f\x2c\x34\x43\x12\x2c\x4a\x38\x5e\x4d\x32\x2c\x26\x40\ \x21\x4a\x2f\x6b\x3e\x34\x56\x3e\x22\x40\x39\x1e\x34\x26\x16\x29\ \x45\x5c\x32\x52\x76\x25\x5d\x1c\x25\x2b\x29\x16\x23\x18\x0d\x68\ \x32\x2a\x21\x28\x1e\x1a\x5a\x26\x2b\x18\x2e\x41\x2a\x34\x49\x17\ \x04\x08\x1c\x27\x33\x20\x2e\x48\x31\x1a\x31\x29\x00\x00\x00\x00\ \x02\x00\x23\xff\xb2\x02\x2e\x02\x42\x00\x09\x00\x14\x00\x3c\x00\ \xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x09\x3e\x59\xbb\x00\x14\x00\x01\x00\x0a\x00\x04\x2b\xb8\ \x00\x14\x10\xb8\x00\x00\xd0\xba\x00\x04\x00\x11\x00\x0d\x11\x12\ \x39\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\x30\x31\x25\x35\x34\x36\x37\ \x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\x33\ \x01\x55\x03\x02\x04\x10\x23\x11\x61\x01\x7d\x50\x89\xfe\xce\x01\ \x09\xb2\x50\xc3\x77\x1f\x4e\x1f\x1c\x37\x1b\x95\x70\xa1\xa1\x65\ \x01\x8a\xfe\x81\x00\x00\x00\x00\x01\x00\x2e\xff\xa6\x02\x14\x02\ \x42\x00\x24\x00\x44\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x21\x00\x04\ \x2b\xbb\x00\x17\x00\x01\x00\x09\x00\x04\x2b\xba\x00\x14\x00\x21\ \x00\x10\x11\x12\x39\xb8\x00\x14\x10\xb8\x00\x0f\xd0\xb8\x00\x10\ \x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x35\ \x34\x26\x23\x22\x0e\x02\x07\x27\x13\x21\x15\x21\x07\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x70\x20\x49\x2d\x36\ \x45\x41\x33\x10\x19\x18\x1a\x10\x41\x11\x01\x85\xfe\xfa\x0b\x16\ \x26\x18\x2c\x4f\x3c\x23\x29\x45\x5a\x31\x53\x73\x27\x5c\x1a\x26\ \x36\x36\x35\x32\x03\x08\x0c\x09\x2a\x01\x49\x7b\x80\x09\x06\x17\ \x32\x4c\x35\x37\x55\x3b\x1f\x33\x26\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x21\x02\x87\x02\x06\x01\xd5\x00\x00\x00\x01\x00\x3e\xff\ \xb2\x02\x1b\x02\x42\x00\x0f\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x09\x3e\x59\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x09\xd0\x30\x31\x17\x3e\x03\x37\x21\x35\x21\x15\x0e\ \x03\x07\x23\xc1\x04\x17\x2b\x44\x32\xfe\xc1\x01\xdd\x3c\x4a\x2a\ \x12\x04\x94\x4e\x52\x8a\x7f\x79\x41\x7b\x5a\x44\x7a\x82\x96\x60\ \x00\x00\x00\xff\xff\x00\x3d\xff\xf4\x02\x1c\x02\x87\x02\x06\x01\ \xd7\x00\x00\x00\x02\x00\x35\xff\xa6\x02\x1a\x02\x4e\x00\x0f\x00\ \x32\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\ \x25\x00\x09\x3e\x59\xbb\x00\x13\x00\x01\x00\x2f\x00\x04\x2b\xbb\ \x00\x00\x00\x01\x00\x1b\x00\x04\x2b\xba\x00\x18\x00\x2f\x00\x25\ \x11\x12\x39\xb8\x00\x18\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x25\ \x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x01\x32\x36\x37\x2e\x03\x23\ \x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x01\x1a\x1c\x3e\x1d\x05\x17\x1f\x26\x14\x13\x23\ \x1b\x10\x34\x63\x14\x3c\x20\x1c\x33\x28\x1c\x04\x23\x53\x23\x2a\ \x48\x35\x1e\x25\x3f\x52\x2e\x31\x5d\x48\x2b\x2e\x4c\x63\x34\x44\ \x66\x21\x01\x09\x1e\x25\x2a\x39\x23\x0e\x0c\x1a\x2a\x1d\x36\x34\ \xbf\x12\x1c\x14\x2f\x4e\x3a\x22\x24\x1a\x34\x4f\x35\x33\x52\x38\ \x1e\x24\x4c\x77\x54\x5f\x8a\x59\x2b\x2d\x1f\x00\x01\x00\xb8\xff\ \xf4\x01\xa0\x00\xdf\x00\x0f\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb8\x00\x05\xdc\x30\ \x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x23\x22\x26\xb8\ \x11\x1e\x2b\x1a\x1a\x2b\x1e\x11\x40\x34\x34\x40\x69\x19\x2b\x20\ \x12\x12\x20\x2b\x19\x32\x43\x43\x00\x00\x00\x00\x01\x00\xb6\xff\ \x27\x01\xad\x00\xd7\x00\x12\x00\x0b\x00\xba\x00\x0c\x00\x04\x00\ \x03\x2b\x30\x31\x17\x36\x35\x06\x23\x22\x2e\x02\x35\x34\x36\x33\ \x32\x16\x15\x14\x06\x07\xb6\x82\x04\x07\x15\x27\x1e\x12\x41\x2f\ \x3e\x3e\x6a\x68\x83\x2d\x61\x01\x0d\x1a\x26\x19\x2f\x38\x5b\x51\ \x60\x84\x20\xff\xff\x00\xb8\xff\xf4\x01\xa0\x02\x22\x02\x27\x01\ \xe3\x00\x00\x01\x43\x00\x06\x01\xe3\x00\x00\xff\xff\x00\xb6\xff\ \x27\x01\xad\x02\x22\x02\x27\x01\xe3\x00\x00\x01\x43\x00\x06\x01\ \xe4\x00\x00\x00\x03\xff\xff\xff\xf4\x02\x59\x00\xb4\x00\x0b\x00\ \x17\x00\x23\x00\x48\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\ \x1b\xb9\x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\ \x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x09\x10\xb9\x00\x03\ \x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x1b\xd0\x30\x31\x27\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\ \x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\ \x26\x01\x32\x2a\x2a\x32\x32\x2a\x2a\x32\xd1\x32\x2a\x2a\x32\x32\ \x2a\x2a\x32\xd1\x32\x2a\x2a\x32\x32\x2a\x2a\x32\x54\x29\x37\x37\ \x29\x29\x37\x37\x29\x29\x37\x37\x29\x29\x37\x37\x29\x29\x37\x37\ \x29\x29\x37\x37\x00\x00\x00\x00\x02\x00\xc8\xff\xf4\x01\x90\x02\ \x9e\x00\x05\x00\x11\x00\x2d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xb8\x00\x09\xdc\xb8\x00\ \x05\xdc\x30\x31\x13\x27\x33\x07\x03\x23\x07\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\xe8\x05\x92\x05\x14\x60\x34\x39\x2b\x2b\ \x39\x39\x2b\x2b\x39\x02\x19\x85\x85\xfe\xe6\xa5\x2d\x37\x37\x2d\ \x2d\x39\x39\x00\x02\x00\xc8\xff\x52\x01\x90\x01\xfc\x00\x05\x00\ \x11\x00\x1c\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\ \x0f\x00\x07\x3e\x59\xb8\x00\x09\xdc\xb8\x00\x04\xdc\x30\x31\x05\ \x17\x23\x37\x13\x33\x37\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\ \x16\x01\x70\x05\x92\x05\x14\x60\x34\x39\x2b\x2b\x39\x39\x2b\x2b\ \x39\x29\x85\x85\x01\x1a\xa5\x2d\x37\x37\x2d\x2d\x39\x39\x00\x00\ \x02\x00\x62\xff\xf4\x01\xf1\x02\xaa\x00\x1d\x00\x29\x00\x2a\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x03\x3e\ \x59\xbb\x00\x11\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x27\x10\xb8\ \x00\x21\xdc\xb8\x00\x00\xdc\x30\x31\x37\x26\x3e\x04\x35\x34\x26\ \x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x04\x17\ \x07\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xda\x06\x11\x1e\ \x27\x22\x18\x2a\x20\x1f\x30\x17\x52\x24\x62\x3c\x2b\x4b\x37\x20\ \x18\x24\x28\x22\x14\x03\xa0\x39\x2b\x2b\x39\x39\x2b\x2b\x39\xff\ \x21\x35\x2a\x22\x20\x20\x13\x20\x1f\x1a\x14\x4b\x28\x32\x14\x29\ \x3d\x29\x21\x30\x28\x22\x25\x2b\x1d\xa5\x2d\x37\x37\x2d\x2d\x39\ \x39\x00\x00\x00\x02\x00\x67\xff\x46\x01\xf6\x01\xfc\x00\x1d\x00\ \x29\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\ \x27\x00\x07\x3e\x59\xbb\x00\x0a\x00\x01\x00\x11\x00\x04\x2b\xb8\ \x00\x27\x10\xb8\x00\x21\xdc\xb8\x00\x1d\xdc\x30\x31\x25\x16\x0e\ \x04\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\ \x34\x3e\x04\x27\x37\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\ \x01\x7f\x05\x10\x1f\x27\x22\x18\x2a\x20\x20\x30\x17\x51\x24\x62\ \x3c\x2b\x4b\x37\x20\x18\x24\x28\x22\x14\x03\xa0\x38\x2c\x2b\x38\ \x38\x2b\x2c\x38\xf1\x22\x34\x2a\x22\x20\x21\x12\x1f\x20\x1a\x14\ \x4a\x29\x32\x14\x28\x3e\x29\x21\x30\x28\x22\x25\x2b\x1d\xa5\x2d\ \x37\x37\x2d\x2d\x39\x39\x00\x00\x01\x00\xd7\x01\x2f\x01\x81\x02\ \xad\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x27\x33\x0f\x01\x23\xdc\x05\xaa\x05\x23\x5a\x02\x1c\x91\x91\ \xed\x00\x00\xff\xff\x00\x53\x01\x2f\x02\x06\x02\xad\x02\x27\x01\ \xec\xff\x7c\x00\x00\x00\x07\x01\xec\x00\x85\x00\x00\x00\x00\x00\ \x01\x00\xb8\x01\x22\x01\x8d\x02\xb9\x00\x11\x00\x0b\x00\xba\x00\ \x05\x00\x0b\x00\x03\x2b\x30\x31\x01\x0e\x01\x07\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x35\x34\x36\x37\x01\x8d\x35\x37\x04\x0a\ \x0b\x28\x33\x36\x2a\x38\x3d\x57\x58\x02\x6b\x18\x44\x30\x03\x31\ \x2a\x2e\x37\x54\x4c\x52\x7d\x28\x00\x00\x00\x00\x01\x00\xca\x01\ \x22\x01\x9f\x02\xb9\x00\x10\x00\x0b\x00\xba\x00\x04\x00\x0a\x00\ \x03\x2b\x30\x31\x13\x36\x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x07\xca\x69\x07\x0b\x09\x29\x33\x36\x2a\x39\x3c\ \x56\x58\x01\x70\x2f\x5c\x03\x32\x2a\x2e\x37\x55\x4b\x52\x7d\x28\ \x00\x00\x00\xff\xff\x00\x34\x01\x22\x02\x12\x02\xb9\x02\x27\x01\ \xee\xff\x7c\x00\x00\x00\x07\x01\xee\x00\x85\x00\x00\x00\x00\xff\ \xff\x00\x46\x01\x22\x02\x24\x02\xb9\x02\x27\x01\xef\xff\x7c\x00\ \x00\x00\x07\x01\xef\x00\x85\x00\x00\x00\x00\xff\xff\x00\xca\xff\ \x1a\x01\x9f\x00\xb1\x02\x07\x01\xef\x00\x00\xfd\xf8\x00\x00\xff\ \xff\x00\x46\xff\x1a\x02\x24\x00\xb1\x02\x27\x01\xef\xff\x7c\xfd\ \xf8\x00\x07\x01\xef\x00\x85\xfd\xf8\x00\x00\x00\x01\x00\xaf\x00\ \x19\x01\x98\x01\xdf\x00\x06\x00\x0b\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\x30\x31\x37\x35\x37\x17\x07\x17\x07\xaf\xab\x3e\x7f\x7f\ \x3e\xb3\x92\x9a\x37\xac\xac\x37\x00\x00\x00\x00\x01\x00\xc0\x00\ \x19\x01\xa9\x01\xdf\x00\x06\x00\x0b\x00\xba\x00\x02\x00\x05\x00\ \x03\x2b\x30\x31\x25\x27\x37\x17\x15\x07\x27\x01\x3f\x7f\x3e\xab\ \xab\x3e\xfc\xac\x37\x9a\x92\x9a\x37\x00\x00\xff\xff\x00\x2b\x00\ \x19\x02\x1d\x01\xdf\x02\x27\x01\xf4\xff\x7c\x00\x00\x00\x07\x01\ \xf4\x00\x85\x00\x00\x00\x00\xff\xff\x00\x3c\x00\x19\x02\x2e\x01\ \xdf\x02\x27\x01\xf5\xff\x7c\x00\x00\x00\x07\x01\xf5\x00\x85\x00\ \x00\x00\x00\xff\xff\x00\x46\x01\x16\x02\x12\x01\x7e\x02\x06\x02\ \x97\x00\x00\xff\xff\x00\x46\x01\x16\x02\x12\x01\x7e\x02\x06\x02\ \x97\x00\x00\x00\x01\x00\x50\x00\xc7\x02\x08\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x50\x01\xb8\xfe\x48\x01\x36\x6f\x00\x00\x01\x00\x14\x00\ \xc7\x02\x44\x01\x36\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x14\x02\x30\xfd\xd0\x01\ \x36\x6f\x00\x00\x01\x00\x50\x00\xc7\x02\x08\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x50\x01\xb8\xfe\x48\x01\x36\x6f\x00\xff\xff\x00\x14\x00\ \xc7\x02\x44\x01\x36\x02\x06\x01\xfb\x00\x00\xff\xff\x00\xb8\x00\ \xec\x01\xa0\x01\xd7\x02\x07\x01\xe3\x00\x00\x00\xf8\x00\x00\x00\ \x01\x00\x88\x00\x65\x01\xd0\x01\xa7\x00\x13\x00\x0b\x00\xba\x00\ \x0a\x00\x00\x00\x03\x2b\x30\x31\x25\x22\x2e\x02\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x01\x2c\x23\x3c\x2c\x19\x19\x2c\ \x3c\x23\x23\x3c\x2c\x19\x19\x2c\x3c\x65\x18\x2c\x3a\x23\x22\x3b\ \x2c\x18\x18\x2c\x3b\x22\x23\x3a\x2c\x18\x00\x00\x01\x00\x3c\xff\ \x5c\x02\x1c\xff\xca\x00\x03\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\ \x01\x00\x04\x2b\x30\x31\x05\x15\x21\x35\x02\x1c\xfe\x20\x36\x6e\ \x6e\x00\x00\x00\x01\x00\xb5\xff\x4d\x01\xda\x02\xdf\x00\x10\x00\ \x0b\x00\xba\x00\x06\x00\x00\x00\x03\x2b\x30\x31\x05\x2e\x01\x35\ \x34\x36\x37\x17\x0e\x01\x15\x14\x1e\x02\x17\x07\x01\x88\x62\x71\ \x71\x62\x52\x59\x51\x14\x29\x40\x2d\x52\xb3\x57\xe4\x8e\x8e\xe4\ \x57\x41\x57\xbb\x76\x3b\x69\x60\x59\x2b\x41\x00\x01\x00\x7e\xff\ \x4d\x01\xa3\x02\xdf\x00\x0f\x00\x0b\x00\xba\x00\x09\x00\x0f\x00\ \x03\x2b\x30\x31\x17\x3e\x03\x35\x34\x26\x27\x37\x1e\x01\x15\x14\ \x06\x07\x7e\x2d\x40\x29\x14\x51\x59\x52\x62\x71\x71\x62\x72\x2b\ \x59\x60\x69\x3b\x76\xbb\x57\x41\x57\xe4\x8e\x8e\xe4\x57\x00\x00\ \x01\x00\xc9\xff\x68\x01\xf0\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x02\x00\ \x04\x2b\x30\x31\x13\x21\x15\x23\x11\x33\x15\x21\xc9\x01\x27\xb7\ \xb7\xfe\xd9\x02\xc4\x4e\xfd\x40\x4e\x00\x00\x00\x01\x00\x69\xff\ \x68\x01\x90\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\x00\x00\x01\x00\ \x05\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\x01\x00\x04\x2b\x30\x31\ \x05\x11\x23\x35\x21\x11\x21\x35\x01\x1f\xb6\x01\x27\xfe\xd9\x4a\ \x02\xc0\x4e\xfc\xa4\x4e\x00\x00\x01\x00\x6a\xff\x68\x01\xf0\x02\ \xc4\x00\x37\x00\x2b\x00\xbb\x00\x33\x00\x01\x00\x34\x00\x04\x2b\ \xbb\x00\x19\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x0b\x00\x01\x00\ \x0a\x00\x04\x2b\xba\x00\x27\x00\x0a\x00\x0b\x11\x12\x39\x30\x31\ \x17\x34\x3e\x02\x35\x34\x2e\x02\x27\x35\x3e\x03\x35\x34\x2e\x02\ \x35\x34\x36\x3b\x01\x15\x23\x22\x0e\x02\x15\x14\x16\x15\x14\x06\ \x07\x15\x1e\x01\x15\x14\x06\x15\x14\x1e\x02\x3b\x01\x15\x23\x22\ \x26\xe9\x03\x04\x03\x0c\x20\x35\x28\x28\x35\x20\x0c\x03\x04\x03\ \x5a\x60\x4d\x29\x1f\x28\x16\x09\x05\x2e\x36\x36\x2e\x05\x09\x16\ \x28\x1f\x29\x4d\x60\x5a\x0a\x1b\x2a\x27\x27\x18\x0d\x1a\x15\x0d\ \x01\x56\x01\x0d\x15\x1a\x0d\x17\x28\x27\x2b\x1a\x51\x3d\x4e\x06\ \x10\x1b\x15\x28\x4e\x2d\x39\x33\x09\x04\x09\x33\x39\x2e\x4c\x29\ \x15\x1b\x10\x06\x4e\x3d\x00\x00\x01\x00\x69\xff\x68\x01\xef\x02\ \xc4\x00\x37\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\x35\x00\x04\x2b\ \xbb\x00\x1a\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x27\x00\x01\x00\ \x28\x00\x04\x2b\xba\x00\x0c\x00\x28\x00\x27\x11\x12\x39\x30\x31\ \x17\x32\x3e\x02\x35\x34\x26\x35\x34\x36\x37\x35\x2e\x01\x35\x34\ \x36\x35\x34\x2e\x02\x2b\x01\x35\x33\x32\x16\x15\x14\x0e\x02\x15\ \x14\x1e\x02\x17\x15\x0e\x03\x15\x14\x1e\x02\x15\x14\x06\x2b\x01\ \x35\x92\x1f\x27\x16\x09\x04\x2e\x36\x36\x2e\x04\x09\x16\x27\x1f\ \x29\x4d\x60\x5a\x03\x05\x03\x0c\x20\x35\x29\x29\x35\x20\x0c\x03\ \x05\x03\x5a\x60\x4d\x4a\x06\x10\x1b\x15\x29\x4c\x2e\x39\x33\x09\ \x04\x09\x33\x39\x2d\x4e\x28\x15\x1b\x10\x06\x4e\x3d\x51\x1a\x2b\ \x27\x28\x17\x0d\x1a\x15\x0d\x01\x56\x01\x0d\x15\x1a\x0d\x18\x27\ \x27\x2a\x1b\x51\x3d\x4e\x00\x00\x01\x00\x4a\xff\x60\x02\x0e\x02\ \xc6\x00\x03\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0f\x3e\x59\xb8\x00\x00\xdc\x30\x31\x17\x23\x01\ \x33\xc5\x7b\x01\x49\x7b\xa0\x03\x66\x00\x00\x00\x01\x00\xeb\xff\ \x06\x01\x6d\x02\xee\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xeb\x82\x82\x02\xee\xfc\x18\x00\ \x01\x00\x4a\xff\x60\x02\x0e\x02\xc6\x00\x03\x00\x18\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x02\xdc\x30\x31\x13\x33\x01\x23\x4a\x7b\x01\x49\x7b\x02\xc6\ \xfc\x9a\x00\x00\x02\x00\xeb\xff\x06\x01\x6d\x02\xee\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x05\x00\x03\x2b\xba\x00\x03\x00\ \x07\x00\x03\x2b\x30\x31\x13\x33\x11\x23\x17\x11\x23\x11\xeb\x82\ \x82\x82\x82\x02\xee\xfe\x4a\x6c\xfe\x3a\x01\xc6\x00\x00\x00\x00\ \x01\x00\x40\x00\x5b\x02\x18\x02\x36\x00\x0e\x00\x2f\x00\xb8\x00\ \x0e\x2f\xba\x00\x01\x00\x0e\x00\x05\x11\x12\x39\xb8\x00\x01\x10\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\ \x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x0c\xd0\x30\x31\x3f\x01\x27\x37\ \x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\x78\x61\x99\x17\xa2\ \x0c\x4e\x0c\xa2\x17\x99\x61\x40\x74\x74\x87\x9d\x44\x47\x2b\xb2\ \xb2\x2b\x47\x44\x9d\x2c\x8e\x8e\x00\x00\x00\x00\x01\x00\x59\xff\ \xb0\x01\xff\x02\xc8\x00\x0b\x00\x2d\x00\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x09\xd0\xb8\x00\x08\xd0\ \xb8\x00\x01\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x07\xd0\ \xb8\x00\x02\xd0\x30\x31\x13\x07\x35\x17\x27\x33\x07\x37\x15\x27\ \x13\x23\xfa\xa1\xa1\x09\x76\x09\xa1\xa1\x09\x76\x01\xb6\x08\x76\ \x09\xad\xad\x09\x76\x08\xfd\xfa\x00\x00\x00\x00\x01\x00\x59\xff\ \xb0\x01\xff\x02\xc8\x00\x15\x00\x57\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x0e\xd0\xb8\x00\x0f\xd0\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb8\x00\x0c\xd0\xb8\x00\x0b\xd0\xb8\x00\x04\xd0\xb8\x00\ \x06\x10\xb8\x00\x09\xd0\xb8\x00\x0a\xd0\xb8\x00\x05\xd0\xb8\x00\ \x14\x10\xb8\x00\x11\xd0\xb8\x00\x10\xd0\xb8\x00\x15\xd0\x30\x31\ \x37\x17\x27\x37\x07\x35\x17\x27\x33\x07\x37\x15\x27\x17\x07\x37\ \x15\x27\x17\x23\x37\x07\x59\xa1\x09\x09\xa1\xa1\x09\x76\x09\xa1\ \xa1\x09\x09\xa1\xa1\x09\x76\x09\xa1\xca\x0c\x7e\x7e\x0c\x76\x09\ \xad\xad\x09\x76\x0c\x7e\x7e\x0c\x76\x09\xad\xad\x09\x00\x00\x00\ \x02\x00\x47\xff\xac\x02\x11\x02\xb2\x00\x0d\x00\x41\x00\x4f\x00\ \xbb\x00\x2b\x00\x01\x00\x25\x00\x04\x2b\xbb\x00\x3e\x00\x01\x00\ \x11\x00\x04\x2b\xba\x00\x2e\x00\x25\x00\x11\x11\x12\x39\xba\x00\ \x13\x00\x3e\x00\x2b\x11\x12\x39\xba\x00\x1d\x00\x2e\x00\x13\x11\ \x12\x39\xb8\x00\x1d\x10\xb8\x00\x00\xd0\xba\x00\x38\x00\x13\x00\ \x2e\x11\x12\x39\xb8\x00\x38\x10\xb8\x00\x07\xd0\x30\x31\x13\x14\ \x1e\x02\x17\x36\x35\x34\x2e\x02\x27\x06\x37\x2e\x01\x23\x22\x15\ \x14\x1e\x04\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\ \x27\x37\x16\x33\x32\x36\x35\x34\x2e\x04\x35\x34\x36\x37\x2e\x01\ \x35\x34\x36\x33\x32\x16\x17\xc3\x20\x33\x3e\x1d\x24\x20\x32\x3d\ \x1e\x25\xdd\x17\x38\x1b\x36\x28\x3d\x47\x3d\x28\x2b\x29\x0b\x0c\ \x19\x30\x48\x2f\x37\x6a\x22\x54\x33\x3c\x1f\x1d\x27\x3b\x45\x3b\ \x27\x2c\x26\x0e\x0f\x5d\x55\x3a\x5c\x20\x01\x51\x18\x21\x1b\x19\ \x10\x16\x26\x18\x21\x1b\x18\x0f\x16\xa0\x14\x1c\x27\x12\x1b\x1b\ \x20\x2d\x40\x2d\x2c\x41\x18\x10\x26\x17\x22\x3a\x2a\x18\x29\x2b\ \x4b\x33\x18\x13\x13\x1c\x1a\x1e\x2d\x40\x2f\x26\x43\x17\x11\x28\ \x1a\x44\x55\x29\x18\x00\x00\x00\x02\x00\x30\xff\xb0\x02\x0e\x02\ \x8c\x00\x03\x00\x10\x00\x25\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x0d\x3e\x59\x30\x31\x01\x33\x11\x23\ \x03\x23\x22\x2e\x02\x35\x34\x3e\x02\x3b\x01\x01\x7c\x92\x92\x34\ \x28\x31\x57\x42\x26\x26\x41\x56\x31\x2a\x02\x8c\xfd\x24\x01\x15\ \x1d\x3b\x57\x39\x3f\x55\x35\x16\x00\x00\x00\x00\x03\x00\x13\xff\ \xf7\x02\x45\x02\x8f\x00\x13\x00\x27\x00\x45\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \xb8\x00\x2d\xd0\xb9\x00\x34\x00\x01\xf4\xb8\x00\x19\x10\xb8\x00\ \x41\xd0\xb9\x00\x3a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x17\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x13\x2d\x4d\x66\x39\x39\x66\x4d\x2d\x2d\ \x4d\x66\x39\x39\x66\x4d\x2d\x40\x1f\x39\x50\x31\x31\x50\x39\x1f\ \x1f\x39\x50\x31\x31\x50\x39\x1f\x38\x1c\x30\x3f\x22\x27\x35\x14\ \x37\x0b\x17\x0e\x25\x27\x26\x21\x13\x1b\x0e\x2f\x17\x37\x21\x26\ \x3f\x2e\x1a\x01\x45\x4e\x7a\x55\x2d\x2d\x55\x7a\x4e\x4e\x7b\x57\ \x2e\x2e\x57\x7b\x4e\x3e\x64\x48\x27\x27\x48\x64\x3e\x3d\x64\x47\ \x26\x26\x47\x64\x3e\x2c\x47\x32\x1b\x1d\x14\x3d\x0b\x0d\x3d\x2d\ \x33\x3c\x0d\x0b\x44\x13\x17\x1c\x33\x49\x00\x00\x04\x00\x13\xff\ \xf7\x02\x45\x02\x8f\x00\x0e\x00\x16\x00\x2a\x00\x3e\x00\x55\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x03\ \x3e\x59\xbb\x00\x0f\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1c\x10\ \xb9\x00\x3a\x00\x01\xf4\xb8\x00\x01\xd0\xb8\x00\x26\x10\xb9\x00\ \x30\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\x00\x01\x10\xb9\x00\x14\x00\ \x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\ \x23\x37\x32\x35\x34\x26\x2b\x01\x15\x25\x34\x3e\x02\x33\x32\x1e\ \x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\x3e\ \x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xb1\x80\x20\x38\x2a\x18\x19\ \x2a\x38\x1f\x18\x68\x79\x3c\x1f\x1d\x11\xfe\xfa\x2d\x4d\x66\x39\ \x39\x66\x4d\x2d\x2d\x4d\x66\x39\x39\x66\x4d\x2d\x40\x1f\x39\x50\ \x31\x31\x50\x39\x1f\x1f\x39\x50\x31\x31\x50\x39\x1f\x01\xf8\x0e\ \x1e\x32\x24\x25\x36\x24\x11\x5b\xa7\x40\x1d\x1a\x77\x13\x4e\x7a\ \x55\x2d\x2d\x55\x7a\x4e\x4e\x7b\x57\x2e\x2e\x57\x7b\x4e\x3e\x64\ \x48\x27\x27\x48\x64\x3e\x3d\x64\x47\x26\x26\x47\x64\x00\x00\x00\ \x04\x00\x65\x01\x37\x01\xf1\x02\xcb\x00\x13\x00\x27\x00\x35\x00\ \x3e\x00\x3d\x00\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\xbb\x00\ \x0a\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x32\x00\ \x04\x2b\xb8\x00\x1e\x10\xb8\x00\x29\xd0\xb8\x00\x32\x10\xb8\x00\ \x2f\xd0\xb8\x00\x14\x10\xb8\x00\x34\xd0\xb8\x00\x31\xd0\x30\x31\ \x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x27\x33\x32\x16\x15\x14\x06\x07\x17\x23\x27\x23\x15\x23\x37\x32\ \x36\x35\x34\x26\x2b\x01\x15\x01\x2b\x29\x48\x36\x1f\x1f\x36\x48\ \x29\x29\x48\x36\x1f\x1f\x36\x48\x29\x1f\x35\x27\x15\x15\x27\x35\ \x1f\x20\x34\x27\x15\x15\x27\x34\x31\x59\x23\x2e\x11\x12\x2a\x3c\ \x1e\x1d\x3a\x4e\x10\x0f\x0f\x0f\x15\x01\x37\x1e\x36\x4a\x2c\x2c\ \x4a\x36\x1e\x1e\x36\x4a\x2c\x2c\x4a\x36\x1e\x31\x16\x28\x38\x23\ \x23\x38\x28\x16\x16\x28\x38\x23\x23\x38\x28\x16\xfd\x20\x22\x11\ \x1d\x08\x4d\x3c\x3c\x64\x11\x0b\x0b\x0f\x36\x00\x02\xff\xf3\x01\ \x6a\x02\x52\x02\xa4\x00\x13\x00\x1b\x00\x51\x00\xb8\x00\x1a\x2f\ \xbb\x00\x16\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x16\x10\xb8\x00\x00\xd0\xb8\x00\x16\x10\ \xb8\x00\x06\xd0\xb8\x00\x01\xd0\xb8\x00\x1a\x10\xb8\x00\x13\xd0\ \xb8\x00\x09\xd0\xb8\x00\x06\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x0f\xd0\xb8\x00\x15\x10\xb8\x00\x18\xd0\x30\x31\x01\x33\x1f\x01\ \x33\x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\ \x27\x23\x35\x33\x15\x23\x15\x23\x01\x13\x67\x22\x15\x04\x14\x22\ \x67\x54\x0b\x04\x35\x3a\x36\x04\x0b\x54\xd1\x4f\xfd\x4e\x60\x02\ \xa4\x5e\x47\x47\x5e\xfe\xc6\x60\x73\x94\x94\x73\x60\xe3\x57\x57\ \xe3\x00\x00\x00\x02\xff\xf7\x01\x5e\x02\x52\x02\xaf\x00\x28\x00\ \x3c\x00\x5b\x00\xb8\x00\x00\x2f\xbb\x00\x13\x00\x01\x00\x1a\x00\ \x04\x2b\xbb\x00\x2d\x00\x01\x00\x36\x00\x04\x2b\xb8\x00\x00\x10\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x13\x10\xb8\x00\x29\xd0\xb8\x00\ \x29\x2f\xb8\x00\x13\x10\xb8\x00\x2f\xd0\xb8\x00\x2f\x2f\xb8\x00\ \x2a\xd0\xb8\x00\x00\x10\xb8\x00\x3c\xd0\xb8\x00\x32\xd0\xb8\x00\ \x2f\x10\xb9\x00\x35\x00\x01\xf4\xb8\x00\x38\xd0\x30\x31\x13\x22\ \x26\x27\x37\x1e\x01\x33\x32\x35\x34\x26\x2f\x01\x2e\x01\x35\x34\ \x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x1f\x01\ \x1e\x01\x15\x14\x0e\x02\x13\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\ \x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\x6b\x21\x37\x1c\x32\x11\ \x23\x15\x1d\x10\x12\x2a\x17\x25\x3d\x38\x20\x38\x15\x2c\x11\x21\ \x11\x0f\x0e\x11\x12\x29\x1e\x20\x11\x20\x2e\x8b\x67\x22\x15\x04\ \x14\x22\x67\x54\x0b\x04\x35\x3a\x36\x04\x0b\x54\x01\x5e\x18\x19\ \x3c\x10\x15\x15\x0c\x0b\x09\x15\x0b\x2a\x26\x29\x3b\x17\x11\x3d\ \x0b\x11\x0d\x09\x0a\x0b\x08\x14\x0e\x27\x25\x14\x25\x1d\x11\x01\ \x46\x5e\x47\x47\x5e\xfe\xc6\x60\x73\x94\x94\x73\x60\x00\x00\x00\ \x02\x00\x1f\xff\x6d\x02\x26\x02\x84\x00\x36\x00\x40\x00\x3f\x00\ \xbb\x00\x20\x00\x01\x00\x27\x00\x04\x2b\xbb\x00\x31\x00\x01\x00\ \x16\x00\x04\x2b\xbb\x00\x3a\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\ \x3e\x00\x01\x00\x10\x00\x04\x2b\xba\x00\x02\x00\x06\x00\x31\x11\ \x12\x39\xb8\x00\x02\x10\xb9\x00\x3d\x00\x01\xf4\x30\x31\x25\x23\ \x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x35\x34\x2e\ \x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x07\x14\x16\ \x33\x32\x36\x37\x35\x0e\x01\x02\x26\x4e\x0b\x04\x13\x3c\x29\x1b\ \x2f\x22\x13\x23\x41\x5c\x39\x10\x20\x32\x21\x23\x46\x38\x23\x24\ \x3b\x4c\x29\x2d\x3b\x1d\x2a\x2a\x54\x36\x3c\x6f\x56\x33\x30\x52\ \x6d\x3d\x39\x53\x35\x1a\xe9\x1c\x19\x16\x23\x11\x46\x39\x64\x33\ \x1c\x23\x16\x26\x33\x1d\x28\x3b\x29\x19\x07\x10\x1c\x32\x27\x17\ \x22\x4a\x75\x52\x4e\x73\x4d\x25\x15\x11\x49\x19\x1d\x30\x63\x97\ \x66\x66\x93\x60\x2e\x26\x42\x59\x34\xa7\x17\x19\x13\x11\x5c\x0b\ \x24\x00\x00\x00\x02\x00\x1f\xff\xe7\x02\x26\x02\x98\x00\x36\x00\ \x40\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x31\x2f\x1b\xb9\x00\ \x31\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\ \x00\x27\x00\x03\x3e\x59\xbb\x00\x3a\x00\x01\x00\x06\x00\x04\x2b\ \xbb\x00\x10\x00\x01\x00\x3e\x00\x04\x2b\xba\x00\x02\x00\x06\x00\ \x31\x11\x12\x39\xb8\x00\x31\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\ \x27\x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x3d\x00\ \x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x07\x14\x16\x33\x32\x36\x37\x35\x0e\x01\x02\x26\x4e\ \x0b\x04\x13\x3c\x29\x1b\x2f\x22\x13\x23\x41\x5c\x39\x10\x1f\x2f\ \x1f\x23\x48\x3a\x25\x24\x3b\x4c\x29\x2d\x3b\x1d\x2a\x2a\x54\x36\ \x3c\x6f\x56\x33\x32\x54\x6f\x3e\x37\x50\x34\x19\xe9\x1c\x19\x16\ \x23\x11\x46\x39\xa4\x32\x1b\x23\x16\x26\x33\x1d\x28\x3b\x28\x19\ \x08\x07\x15\x25\x1d\x11\x1c\x3e\x64\x48\x3f\x5e\x3e\x1e\x14\x12\ \x49\x19\x1d\x2a\x54\x80\x57\x5c\x84\x54\x28\x22\x3c\x4f\x2d\x97\ \x16\x1a\x14\x11\x5b\x0b\x23\x00\x02\x00\x46\x00\x00\x02\x16\x02\ \x8a\x00\x1b\x00\x1f\x00\x8b\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\ \x2f\x1b\xb9\x00\x08\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0c\x2f\x1b\xb9\x00\x0c\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\x00\x02\x00\ \x01\x00\x01\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x05\x00\x04\x2b\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\xb8\x00\x0e\xd0\xb8\x00\x05\x10\ \xb8\x00\x1e\xd0\xb8\x00\x11\xd0\xb8\x00\x02\x10\xb8\x00\x1f\xd0\ \xb8\x00\x12\xd0\xb8\x00\x01\x10\xb8\x00\x19\xd0\xb8\x00\x15\xd0\ \x30\x31\x37\x23\x35\x33\x37\x23\x35\x33\x37\x33\x07\x33\x37\x33\ \x07\x33\x15\x23\x07\x33\x15\x23\x07\x23\x37\x23\x07\x23\x13\x37\ \x23\x07\x90\x4a\x55\x0e\x4f\x5b\x15\x54\x14\x68\x15\x54\x14\x4f\ \x5b\x0d\x54\x5f\x17\x55\x16\x67\x17\x55\xde\x0e\x68\x0d\xbb\x5e\ \x6e\x5e\xa5\xa5\xa5\xa5\x5e\x6e\x5e\xbb\xbb\xbb\x01\x19\x6e\x6e\ \x00\x00\x00\x00\x01\x00\x54\x01\x17\x02\x04\x02\xc8\x00\x0e\x00\ \x14\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\x30\x31\x13\x37\x27\x37\x17\x37\x33\x17\x37\x17\x07\ \x17\x07\x27\x07\x87\x52\x85\x17\x8e\x0c\x4e\x0c\x8e\x17\x85\x52\ \x40\x65\x65\x01\x43\x8c\x38\x48\x20\x99\x99\x20\x48\x38\x8c\x2c\ \x7e\x7e\x00\x00\x01\x00\x7c\x00\xc7\x01\xdc\x01\x36\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x7c\x01\x60\xfe\xa0\x01\x36\x6f\x00\xff\xff\x00\x7c\x00\ \xc7\x01\xdc\x01\x36\x02\x06\x02\x19\x00\x00\x00\x03\x00\x40\xff\ \x8d\x02\x14\x02\xee\x00\x06\x00\x0d\x00\x38\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x18\x00\x04\x2b\xbb\x00\x2d\x00\x01\x00\x07\x00\ \x04\x2b\x30\x31\x25\x32\x36\x35\x34\x26\x2f\x01\x22\x06\x15\x14\ \x16\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x07\x27\x37\x2e\x01\x27\ \x37\x1e\x01\x17\x37\x2e\x03\x35\x34\x3e\x02\x3b\x01\x37\x17\x07\ \x1e\x01\x17\x07\x2e\x01\x27\x01\x3d\x24\x26\x1f\x19\x2b\x21\x24\ \x1d\x18\x53\x1f\x3e\x31\x1f\x1f\x3c\x59\x39\x1c\x57\x1c\x27\x4c\ \x1d\x40\x1b\x32\x1a\x15\x1f\x3c\x30\x1e\x1f\x39\x51\x32\x0c\x19\ \x58\x1a\x22\x37\x17\x49\x11\x1d\x0f\x99\x18\x15\x11\x18\x0b\xf9\ \x17\x17\x0e\x15\x09\x1e\x0b\x1c\x28\x36\x25\x25\x40\x2f\x1b\x95\ \x0a\x97\x0a\x23\x18\x64\x10\x18\x08\x72\x0c\x1c\x28\x35\x25\x26\ \x3e\x2b\x18\x84\x0a\x89\x0b\x24\x17\x54\x0b\x11\x06\x00\x00\xff\ \xff\x00\x98\x01\xac\x01\xc0\x02\xfc\x02\x07\x02\x38\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xc4\x01\xb8\x01\x80\x02\xf0\x02\x07\x02\ \x39\x00\x00\x01\xb8\x00\x00\xff\xff\x00\x9e\x01\xb8\x01\xb1\x02\ \xfc\x02\x07\x02\x3a\x00\x02\x01\xb8\x00\x00\xff\xff\x00\xa5\x01\ \xac\x01\xb2\x02\xfc\x02\x07\x02\x3b\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa1\x01\xb8\x01\xd2\x02\xf0\x02\x07\x02\x3c\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xa5\x01\xac\x01\xb4\x02\xf0\x02\x07\x02\ \x3d\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xa2\x01\xac\x01\xb5\x02\ \xfc\x02\x07\x02\x3e\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xb1\x01\ \xb8\x01\xb9\x02\xf0\x02\x07\x02\x3f\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa6\x01\xac\x01\xb2\x02\xfc\x02\x07\x02\x40\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xa4\x01\xac\x01\xb7\x02\xfc\x02\x07\x02\ \x41\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xd6\x01\x5f\x01\x91\x03\ \x5c\x02\x07\x02\x42\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xc7\x01\ \x5f\x01\x82\x03\x5c\x02\x07\x02\x43\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xed\x01\xb0\x01\x6b\x02\x31\x02\x07\x02\x44\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xe3\x01\x36\x01\x75\x02\x31\x02\x07\x02\ \x45\x00\x00\x01\xb8\x00\x00\xff\xff\x00\x98\xff\x4b\x01\xc0\x00\ \x9b\x02\x07\x02\x38\x00\x00\xff\x57\x00\x00\xff\xff\x00\xc4\xff\ \x57\x01\x80\x00\x8f\x02\x07\x02\x39\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\x9e\xff\x57\x01\xb1\x00\x9b\x02\x07\x02\x3a\x00\x02\xff\ \x57\x00\x00\xff\xff\x00\xa5\xff\x4b\x01\xb2\x00\x9b\x02\x07\x02\ \x3b\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa1\xff\x57\x01\xd2\x00\ \x8f\x02\x07\x02\x3c\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa5\xff\ \x4b\x01\xb4\x00\x8f\x02\x07\x02\x3d\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xa2\xff\x4b\x01\xb5\x00\x9b\x02\x07\x02\x3e\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xb1\xff\x57\x01\xb9\x00\x8f\x02\x07\x02\ \x3f\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa6\xff\x4b\x01\xb2\x00\ \x9b\x02\x07\x02\x40\x00\x00\xff\x57\x00\x00\xff\xff\x00\xa4\xff\ \x4b\x01\xb7\x00\x9b\x02\x07\x02\x41\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xd6\xfe\xfe\x01\x91\x00\xfb\x02\x07\x02\x42\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xc7\xfe\xfe\x01\x82\x00\xfb\x02\x07\x02\ \x43\x00\x00\xff\x57\x00\x00\xff\xff\x00\xed\xff\x4f\x01\x6b\xff\ \xd0\x02\x07\x02\x44\x00\x00\xff\x57\x00\x00\xff\xff\x00\xe3\xfe\ \xd5\x01\x75\xff\xd0\x02\x07\x02\x45\x00\x00\xff\x57\x00\x00\x00\ \x02\x00\x98\xff\xf4\x01\xc0\x01\x44\x00\x13\x00\x1f\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\ \x59\xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x14\x00\x01\xf4\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\x01\x2c\x20\x36\x28\x16\x16\x28\x36\x20\x20\x36\x28\ \x16\x16\x28\x36\x20\x13\x1d\x1d\x13\x13\x1d\x1d\x0c\x18\x2c\x3f\ \x27\x27\x3d\x2b\x17\x17\x2b\x3d\x27\x27\x3f\x2c\x18\x4f\x28\x33\ \x33\x24\x24\x33\x33\x28\x00\x00\x01\x00\xc4\x00\x00\x01\x80\x01\ \x38\x00\x0a\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\ \xb9\x00\x0a\x00\x03\x3e\x59\xbb\x00\x07\x00\x01\x00\x00\x00\x04\ \x2b\x30\x31\x25\x23\x35\x3e\x03\x37\x33\x11\x23\x01\x15\x51\x13\ \x1c\x18\x16\x0c\x53\x6b\xd4\x40\x03\x06\x08\x0b\x08\xfe\xc8\x00\ \x01\x00\x9c\x00\x00\x01\xaf\x01\x44\x00\x17\x00\x2c\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\x59\xbb\ \x00\x0e\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x14\ \x00\x01\xf4\xb8\x00\x00\xd0\x30\x31\x37\x3e\x03\x35\x34\x26\x23\ \x22\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x06\x07\x33\x15\x21\xab\ \x1f\x35\x27\x17\x16\x16\x1d\x1a\x3e\x1d\x40\x29\x3c\x46\x32\x1f\ \x5c\xfe\xfc\x37\x14\x28\x25\x20\x0d\x13\x16\x23\x38\x1d\x24\x3a\ \x33\x23\x40\x1d\x57\x00\x00\x00\x01\x00\xa5\xff\xf4\x01\xb2\x01\ \x44\x00\x2a\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\ \xb9\x00\x27\x00\x03\x3e\x59\xbb\x00\x17\x00\x01\x00\x10\x00\x04\ \x2b\xba\x00\x0a\x00\x09\x00\x03\x2b\xb8\x00\x27\x10\xb9\x00\x03\ \x00\x01\xf4\xba\x00\x1f\x00\x09\x00\x0a\x11\x12\x39\x30\x31\x37\ \x1e\x01\x33\x32\x36\x35\x34\x26\x23\x35\x32\x36\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\x07\x1e\x01\ \x15\x14\x0e\x02\x23\x22\x26\x27\xce\x10\x2d\x15\x11\x19\x23\x26\ \x1d\x20\x14\x13\x11\x22\x0f\x2a\x17\x44\x29\x19\x2b\x20\x13\x18\ \x1e\x23\x1f\x15\x24\x31\x1b\x1f\x46\x23\x60\x0b\x12\x0e\x0f\x11\ \x12\x37\x0e\x12\x0c\x0f\x10\x09\x3e\x12\x18\x0d\x17\x21\x14\x1b\ \x21\x0b\x0a\x26\x1c\x16\x25\x1a\x0f\x10\x1a\x00\x02\x00\xa1\x00\ \x00\x01\xd2\x01\x38\x00\x05\x00\x10\x00\x38\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xbb\x00\x10\ \x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x02\x00\x01\x00\x0d\x00\x04\ \x2b\xb8\x00\x10\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\ \xd0\x30\x31\x25\x35\x37\x23\x0f\x01\x17\x23\x15\x23\x35\x23\x35\ \x37\x33\x15\x33\x01\x41\x06\x04\x22\x21\xd2\x33\x5e\xa0\x78\x86\ \x33\x7f\x16\x63\x3e\x3b\x42\x3d\x3d\x33\xc8\xb9\x00\x00\x00\x00\ \x01\x00\xa5\xff\xf4\x01\xb4\x01\x38\x00\x20\x00\x44\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\ \x00\x0f\x00\x01\x00\x10\x00\x04\x2b\xbb\x00\x15\x00\x01\x00\x09\ \x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x12\ \x00\x09\x00\x15\x11\x12\x39\xb8\x00\x12\x10\xb8\x00\x0d\xd0\x30\ \x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\x07\x27\x37\ \x33\x15\x23\x07\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\ \x27\xce\x11\x2b\x16\x12\x1a\x19\x13\x0f\x16\x0e\x2b\x0e\xd5\x85\ \x04\x08\x18\x0b\x32\x3b\x14\x24\x31\x1d\x22\x44\x23\x60\x0b\x12\ \x12\x11\x12\x12\x08\x08\x1d\xa1\x58\x23\x03\x03\x33\x2e\x17\x28\ \x1e\x11\x10\x1a\x00\x00\x00\x00\x02\x00\xa2\xff\xf4\x01\xb5\x01\ \x44\x00\x09\x00\x26\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0d\ \x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x1b\ \x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x10\x00\x1b\x00\x23\x11\x12\ \x39\xb8\x00\x10\x10\xb9\x00\x07\x00\x01\xf4\x30\x31\x25\x32\x36\ \x35\x34\x23\x22\x07\x1e\x01\x37\x2e\x01\x23\x22\x06\x07\x3e\x01\ \x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x35\x34\x3e\x02\x33\x32\ \x16\x17\x01\x33\x11\x13\x26\x19\x14\x05\x1c\x64\x0d\x1c\x12\x26\ \x22\x04\x10\x27\x18\x2e\x36\x13\x21\x2e\x1b\x48\x4e\x15\x29\x3d\ \x29\x20\x36\x17\x43\x11\x0f\x1f\x13\x1a\x12\x9b\x0b\x0c\x2e\x22\ \x0e\x0f\x30\x2e\x17\x29\x1e\x12\x5d\x4a\x22\x3d\x2e\x1c\x17\x12\ \x00\x00\x00\x00\x01\x00\xb1\x00\x00\x01\xb9\x01\x38\x00\x0f\x00\ \x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\ \x10\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x23\x35\x21\x15\x0e\ \x03\x07\x23\xe9\x02\x0d\x16\x20\x15\x92\x01\x08\x1d\x23\x15\x09\ \x02\x70\x22\x38\x35\x34\x1e\x57\x38\x20\x3b\x3c\x42\x27\x00\x00\ \x03\x00\xa6\xff\xf4\x01\xb2\x01\x44\x00\x0b\x00\x16\x00\x36\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\ \x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x11\x00\x04\x2b\xb8\x00\x34\ \x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x34\x00\x11\x11\x12\ \x39\xba\x00\x14\x00\x23\x00\x03\x11\x12\x39\x30\x31\x25\x14\x16\ \x33\x32\x36\x35\x34\x26\x27\x0e\x01\x37\x36\x35\x34\x26\x23\x22\ \x06\x15\x14\x16\x07\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\ \x32\x16\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\ \x01\x04\x17\x11\x11\x17\x1f\x17\x0c\x0e\x35\x13\x12\x0f\x0d\x11\ \x18\x7f\x26\x17\x17\x1d\x14\x22\x2d\x1a\x36\x48\x1e\x17\x0d\x16\ \x11\x09\x14\x23\x31\x1e\x3c\x4a\x57\x0e\x11\x10\x0d\x10\x12\x07\ \x06\x16\x60\x0c\x14\x0c\x10\x0d\x0b\x0e\x0f\x7a\x1f\x22\x0c\x04\ \x0f\x1c\x1e\x15\x21\x18\x0d\x31\x2a\x1a\x1c\x0b\x04\x07\x0f\x13\ \x1a\x12\x12\x21\x19\x0f\x35\x00\x02\x00\xa4\xff\xf4\x01\xb7\x01\ \x44\x00\x09\x00\x27\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\ \x2f\x1b\xb9\x00\x24\x00\x03\x3e\x59\xbb\x00\x1a\x00\x01\x00\x08\ \x00\x04\x2b\xbb\x00\x02\x00\x01\x00\x12\x00\x04\x2b\xba\x00\x10\ \x00\x1a\x00\x24\x11\x12\x39\xb8\x00\x10\x10\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x24\x10\xb9\x00\x0d\x00\x01\xf4\x30\x31\x25\x14\x33\ \x32\x36\x37\x2e\x01\x23\x22\x07\x1e\x01\x33\x32\x36\x37\x06\x23\ \x22\x26\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\ \x26\x27\x01\x02\x25\x0b\x18\x0b\x06\x1c\x0e\x23\x33\x0d\x1d\x12\ \x26\x21\x04\x21\x2e\x2d\x36\x13\x21\x2e\x1b\x23\x38\x27\x14\x15\ \x2a\x3d\x28\x21\x36\x16\xd4\x1f\x0a\x08\x1b\x13\x9c\x0b\x0b\x2d\ \x21\x1b\x2f\x2f\x17\x29\x1e\x12\x19\x2c\x3e\x25\x21\x3d\x2f\x1b\ \x16\x13\x00\x00\x01\x00\xd6\xff\xa7\x01\x91\x01\xa4\x00\x0d\x00\ \x0b\x00\xba\x00\x03\x00\x0b\x00\x03\x2b\x30\x31\x37\x34\x36\x37\ \x17\x0e\x01\x15\x14\x16\x17\x07\x2e\x01\xd6\x39\x33\x4f\x29\x2a\ \x2a\x29\x4f\x33\x39\xa6\x4f\x77\x38\x30\x30\x67\x37\x38\x67\x30\ \x30\x38\x77\x00\x01\x00\xc7\xff\xa7\x01\x82\x01\xa4\x00\x0d\x00\ \x0b\x00\xba\x00\x0b\x00\x03\x00\x03\x2b\x30\x31\x25\x14\x06\x07\ \x27\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x01\x82\x39\x33\x4f\x29\ \x2a\x2a\x29\x4f\x33\x39\xa6\x50\x77\x38\x30\x30\x67\x38\x37\x67\ \x30\x30\x38\x77\x00\x00\x00\x00\x01\x00\xed\xff\xf8\x01\x6b\x00\ \x79\x00\x0b\x00\x1a\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xed\x24\x1b\x1b\x24\ \x24\x1b\x1b\x24\x38\x1b\x26\x26\x1b\x1c\x24\x24\x00\x00\x00\x00\ \x01\x00\xe3\xff\x7e\x01\x75\x00\x79\x00\x10\x00\x1a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x17\x3e\x01\x35\x23\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\x07\xe3\x26\x27\x04\x19\x26\x26\x1b\ \x22\x25\x40\x3c\x4b\x0c\x23\x1d\x1f\x1d\x1a\x22\x32\x2f\x39\x50\ \x11\x00\x00\xff\xff\x00\x98\x01\x38\x01\xc0\x02\x88\x02\x07\x02\ \x38\x00\x00\x01\x44\x00\x00\xff\xff\x00\xc4\x01\x44\x01\x80\x02\ \x7c\x02\x07\x02\x39\x00\x00\x01\x44\x00\x00\xff\xff\x00\x9e\x01\ \x44\x01\xb1\x02\x88\x02\x07\x02\x3a\x00\x02\x01\x44\x00\x00\xff\ \xff\x00\xa5\x01\x38\x01\xb2\x02\x88\x02\x07\x02\x3b\x00\x00\x01\ \x44\x00\x00\xff\xff\x00\xa1\x01\x44\x01\xd2\x02\x7c\x02\x07\x02\ \x3c\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa5\x01\x38\x01\xb4\x02\ \x7c\x02\x07\x02\x3d\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa2\x01\ \x38\x01\xb5\x02\x88\x02\x07\x02\x3e\x00\x00\x01\x44\x00\x00\xff\ \xff\x00\xb1\x01\x44\x01\xb9\x02\x7c\x02\x07\x02\x3f\x00\x00\x01\ \x44\x00\x00\xff\xff\x00\xa6\x01\x38\x01\xb2\x02\x88\x02\x07\x02\ \x40\x00\x00\x01\x44\x00\x00\xff\xff\x00\xa4\x01\x38\x01\xb7\x02\ \x88\x02\x07\x02\x41\x00\x00\x01\x44\x00\x00\xff\xff\x00\xd6\x00\ \xad\x01\x91\x02\xaa\x02\x07\x02\x42\x00\x00\x01\x06\x00\x00\xff\ \xff\x00\xc7\x00\xad\x01\x82\x02\xaa\x02\x07\x02\x43\x00\x00\x01\ \x06\x00\x00\xff\xff\x00\xed\x00\xfe\x01\x6b\x01\x7f\x02\x07\x02\ \x44\x00\x00\x01\x06\x00\x00\xff\xff\x00\xe3\x00\x84\x01\x75\x01\ \x7f\x02\x07\x02\x45\x00\x00\x01\x06\x00\x00\xff\xff\x00\x9a\x00\ \xfc\x01\xc5\x02\x55\x02\x06\x02\x57\x00\x00\xff\xff\x00\x80\x00\ \xfc\x01\xc4\x02\x55\x02\x06\x02\x74\x00\x00\xff\xff\x00\x85\x00\ \xfc\x01\xd3\x02\x55\x02\x06\x02\x65\x00\x00\x00\x02\x00\x9a\x00\ \xfc\x01\xc5\x02\x55\x00\x18\x00\x22\x00\x39\x00\xb8\x00\x11\x2f\ \xbb\x00\x1c\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\ \x05\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x20\x00\x04\x2b\xba\x00\ \x12\x00\x0c\x00\x16\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1f\x00\ \x01\xf4\x30\x31\x13\x34\x36\x37\x26\x23\x22\x06\x07\x27\x3e\x01\ \x33\x32\x16\x1d\x01\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\ \x33\x32\x36\x37\x35\x0e\x01\x9a\x5c\x67\x03\x35\x14\x2e\x19\x25\ \x21\x4c\x28\x41\x4a\x55\x07\x02\x16\x33\x1b\x30\x39\x64\x15\x11\ \x10\x1d\x0c\x36\x29\x01\x5f\x35\x3a\x0a\x2b\x0f\x0e\x43\x14\x18\ \x49\x4e\xba\x21\x12\x17\x3a\x32\x0e\x0f\x0e\x0c\x35\x07\x1a\x00\ \x02\x00\x9a\x00\xfc\x01\xde\x02\xd2\x00\x13\x00\x1e\x00\x54\x00\ \xb8\x00\x12\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\ \x01\x00\x0f\x3e\x59\xbb\x00\x17\x00\x01\x00\x0e\x00\x04\x2b\xbb\ \x00\x06\x00\x01\x00\x1c\x00\x04\x2b\xba\x00\x03\x00\x06\x00\x0e\ \x11\x12\x39\xba\x00\x10\x00\x0e\x00\x06\x11\x12\x39\xb8\x00\x10\ \x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x1e\x00\x01\ \xf4\x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\ \x23\x22\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x36\x35\x34\x23\x22\ \x07\x9a\x68\x02\x12\x2f\x17\x3f\x47\x18\x28\x33\x1c\x30\x29\x02\ \x09\x51\x68\x0d\x1a\x0d\x1a\x23\x38\x1d\x1c\x02\xd2\x70\x31\x11\ \x13\x5c\x4b\x2a\x43\x2d\x18\x2b\x23\x5f\x0b\x08\x2a\x32\x55\x1c\ \x00\x00\x00\x00\x01\x00\xaa\x00\xfc\x01\xd2\x02\x55\x00\x1c\x00\ \x17\x00\xbb\x00\x11\x00\x01\x00\x18\x00\x04\x2b\xbb\x00\x05\x00\ \x01\x00\x0b\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\ \x07\x26\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\xaa\x1f\x33\x43\x25\x22\x35\x12\x30\x19\x1a\x27\x2f\ \x2f\x24\x14\x20\x0e\x29\x1a\x40\x1d\x26\x40\x30\x1b\x01\xa8\x29\ \x40\x2d\x17\x15\x11\x40\x13\x30\x2a\x29\x31\x0f\x09\x41\x15\x14\ \x17\x2c\x40\x00\x02\x00\x80\x00\xfc\x01\xc4\x02\xd2\x00\x14\x00\ \x21\x00\x54\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xbb\x00\x18\x00\x01\x00\x12\ \x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xba\x00\x08\ \x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\ \x39\xb8\x00\x0e\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x08\x10\xb9\ \x00\x1c\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x27\ \x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\x33\x32\ \x36\x37\x35\x2e\x01\x23\x22\x06\x80\x18\x28\x33\x1b\x1c\x25\x11\ \x03\x67\x54\x08\x02\x12\x30\x18\x40\x4c\x6b\x1f\x1d\x10\x1a\x0c\ \x0d\x1c\x0e\x17\x24\x01\xa8\x28\x41\x2c\x18\x13\x10\x31\x6f\xfe\ \x32\x20\x11\x17\x5b\x52\x2f\x2a\x0b\x10\x82\x0b\x09\x2a\x00\x00\ \x02\x00\x94\x00\xfc\x01\xd1\x02\x55\x00\x1b\x00\x22\x00\x21\x00\ \xbb\x00\x11\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x1c\x00\x04\x2b\x30\x31\ \x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\ \x32\x37\x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\ \x94\x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\x32\x22\x26\ \x27\x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\x27\x05\x01\ \xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\x0e\x16\x06\x23\x1f\x15\x3d\ \x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\x20\x00\x00\x01\x00\xb7\x01\ \x04\x01\xfc\x02\xda\x00\x18\x00\x38\x00\xb8\x00\x0a\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x09\x3e\x59\xbb\ \x00\x15\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x0f\xd0\x30\ \x31\x01\x2e\x01\x23\x22\x1d\x01\x33\x15\x23\x15\x23\x35\x23\x35\ \x37\x35\x34\x3e\x02\x33\x32\x16\x17\x01\xe8\x0e\x23\x13\x3c\x6f\ \x6f\x67\x4a\x4a\x11\x25\x39\x27\x1d\x33\x15\x02\x7d\x05\x07\x33\ \x09\x51\xf8\xf8\x4d\x04\x09\x1c\x30\x24\x14\x0b\x07\x00\x00\x00\ \x03\x00\x85\x00\x7a\x01\xe4\x02\x55\x00\x0e\x00\x42\x00\x4e\x00\ \x64\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x3e\x00\x04\x2b\xbb\x00\x21\ \x00\x01\x00\x49\x00\x04\x2b\xbb\x00\x38\x00\x01\x00\x09\x00\x04\ \x2b\xbb\x00\x43\x00\x01\x00\x2e\x00\x04\x2b\xba\x00\x12\x00\x09\ \x00\x38\x11\x12\x39\xb8\x00\x12\x10\xb8\x00\x0d\xd0\xb8\x00\x2e\ \x10\xb8\x00\x31\xd0\xb8\x00\x19\xd0\xb8\x00\x23\x10\xb9\x00\x26\ \x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\x35\x34\x26\x2b\x01\ \x22\x26\x27\x06\x07\x34\x37\x35\x2e\x01\x35\x34\x36\x37\x35\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\x1e\x01\x15\x14\x0e\ \x02\x23\x22\x26\x27\x0e\x01\x15\x14\x16\x3b\x01\x32\x16\x15\x14\ \x06\x23\x22\x2e\x02\x37\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\ \x16\xda\x2c\x25\x26\x31\x1e\x1b\x28\x12\x17\x09\x15\x55\x34\x0e\ \x14\x16\x13\x14\x19\x18\x27\x34\x1c\x1e\x1a\x87\x41\x05\x08\x15\ \x26\x32\x1e\x0a\x15\x0d\x07\x06\x19\x1d\x3c\x42\x47\x6c\x5c\x20\ \x38\x28\x17\x9d\x14\x1c\x1c\x14\x13\x1b\x1b\xdd\x12\x11\x15\x10\ \x0e\x09\x02\x02\x0d\x20\x27\x1a\x03\x08\x1b\x15\x10\x21\x0c\x02\ \x0d\x2b\x1d\x1e\x2d\x1e\x0f\x08\x4b\x07\x16\x0b\x1d\x2a\x1b\x0d\ \x04\x03\x05\x09\x08\x0d\x0b\x26\x2d\x35\x42\x09\x14\x20\xf3\x19\ \x1a\x19\x1a\x1a\x19\x1a\x19\x00\x01\x00\x9c\x01\x04\x01\xd5\x02\ \xd2\x00\x14\x00\x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xbb\ \x00\x06\x00\x01\x00\x0f\x00\x04\x2b\xba\x00\x03\x00\x06\x00\x14\ \x11\x12\x39\xb8\x00\x03\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\ \x33\x15\x07\x3e\x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\ \x06\x07\x15\x23\x9c\x68\x05\x12\x35\x24\x39\x32\x68\x14\x19\x12\ \x1a\x10\x68\x02\xd2\x70\x3c\x11\x1e\x48\x3e\xcb\xbe\x1f\x1c\x10\ \x0e\xdb\x00\x00\x02\x00\xa9\x01\x04\x01\x9d\x02\xf6\x00\x05\x00\ \x11\x00\x2a\x00\xb8\x00\x03\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb9\x00\x04\x00\x01\xf4\xb8\ \x00\x00\x10\xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x33\x11\ \x23\x35\x23\x37\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\xa9\ \xe5\x68\x7d\xb0\x1e\x26\x26\x1e\x1d\x27\x27\x02\x4d\xfe\xb7\xf8\ \x7e\x21\x1d\x1b\x23\x23\x1b\x1d\x21\x00\x00\x00\x02\x00\x85\x00\ \x84\x01\x91\x02\xf6\x00\x13\x00\x1f\x00\x34\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xbb\x00\x0e\ \x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\ \xf4\xb8\x00\x00\x10\xb8\x00\x14\xdc\xb8\x00\x1a\xdc\x30\x31\x13\ \x33\x11\x14\x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x3d\ \x01\x23\x37\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x9d\xe5\ \x0e\x24\x3c\x2e\x1d\x30\x14\x1e\x13\x1d\x0c\x22\x1a\x7e\xb0\x1e\ \x26\x26\x1e\x1d\x27\x27\x02\x4d\xfe\xce\x1e\x37\x29\x19\x0d\x0a\ \x49\x09\x06\x1f\x23\xe5\x7e\x21\x1d\x1b\x23\x23\x1b\x1d\x21\x00\ \x01\x00\xa0\x01\x04\x01\xf6\x02\xd2\x00\x0c\x00\x53\x00\xb8\x00\ \x08\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\ \x1b\xb9\x00\x04\x00\x09\x3e\x59\xba\x00\x0a\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x0a\x10\xb9\x00\x02\x00\x01\xf4\xba\x00\x09\x00\ \x08\x00\x04\x11\x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x33\x11\x33\x37\x33\x07\x17\x23\x27\x07\x15\x23\xa0\x68\x02\ \x72\x71\x7c\x85\x70\x51\x2d\x68\x02\xd2\xfe\xfe\x7d\x88\xc1\x7d\ \x2c\x51\x00\x00\x01\x00\xb6\x00\xfc\x01\xd2\x02\xd2\x00\x11\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0f\x3e\x59\xbb\x00\x05\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x00\ \x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x26\x3d\x01\x23\xb6\xac\x1c\x17\x0a\ \x14\x0e\x11\x17\x25\x1c\x44\x3c\x44\x02\xd2\xfe\xb0\x1e\x16\x06\ \x05\x50\x06\x07\x4b\x3f\xfb\x00\x01\x00\x73\x01\x04\x01\xdf\x02\ \x55\x00\x1e\x00\x54\x00\xb8\x00\x1e\x2f\xb8\x00\x17\x2f\xb8\x00\ \x10\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x09\x3e\x59\xbb\x00\x0b\x00\x01\x00\x13\x00\x04\x2b\xbb\x00\x1a\ \x00\x01\x00\x06\x00\x04\x2b\xba\x00\x02\x00\x1e\x00\x01\x11\x12\ \x39\xb8\x00\x02\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb9\x00\x1c\ \x00\x01\xf4\xb8\x00\x15\xd0\x30\x31\x13\x33\x17\x33\x3e\x01\x33\ \x32\x17\x3e\x01\x33\x32\x16\x1d\x01\x23\x35\x34\x23\x22\x07\x15\ \x23\x35\x34\x23\x22\x07\x15\x23\x73\x4e\x08\x02\x0a\x20\x1d\x2e\ \x0c\x08\x24\x1d\x23\x27\x63\x0f\x10\x0c\x50\x11\x0f\x0c\x62\x02\ \x4d\x29\x14\x1d\x36\x16\x20\x3a\x31\xe6\xdf\x1a\x1e\xdb\xdf\x1a\ \x1e\xdb\x00\x00\x01\x00\x9c\x01\x04\x01\xd5\x02\x55\x00\x14\x00\ \x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0f\x00\x04\x2b\xba\x00\x02\x00\x14\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\ \x9c\x55\x07\x03\x15\x35\x25\x38\x33\x68\x14\x19\x12\x1a\x10\x68\ \x02\x4d\x2a\x14\x1e\x48\x3e\xcb\xbe\x1f\x1c\x10\x0e\xdb\x00\x00\ \x02\x00\x85\x00\xfc\x01\xd3\x02\x55\x00\x13\x00\x1f\x00\x17\x00\ \xbb\x00\x17\x00\x01\x00\x0f\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1d\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\ \x22\x06\x85\x1b\x2f\x3c\x21\x21\x3c\x2f\x1b\x1b\x2f\x3c\x21\x21\ \x3c\x2f\x1b\x6a\x1d\x20\x20\x1d\x1d\x20\x20\x1d\x01\xa8\x29\x40\ \x2d\x17\x17\x2d\x40\x29\x29\x40\x2c\x17\x17\x2c\x40\x29\x29\x31\ \x31\x29\x2a\x30\x30\x00\x00\x00\x02\x00\x9a\x00\x8c\x01\xde\x02\ \x55\x00\x14\x00\x1f\x00\x54\x00\xb8\x00\x01\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\xbb\x00\x09\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x18\x00\x01\x00\x11\x00\x04\ \x2b\xba\x00\x05\x00\x09\x00\x11\x11\x12\x39\xba\x00\x14\x00\x11\ \x00\x09\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x15\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x1f\x00\x01\xf4\x30\x31\x25\x15\x23\x11\x33\ \x17\x33\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x35\x34\x23\x22\x07\x01\x02\x68\x55\x07\x02\ \x14\x33\x1a\x3f\x46\x18\x28\x33\x1c\x17\x27\x13\x04\x0d\x1a\x0d\ \x1a\x23\x38\x1d\x1c\xeb\x5f\x01\xc1\x20\x11\x17\x5c\x4b\x2a\x43\ \x2d\x18\x11\x11\x45\x0b\x08\x2a\x32\x55\x1c\x00\x02\x00\x80\x00\ \x8c\x01\xc4\x02\x55\x00\x14\x00\x21\x00\x54\x00\xb8\x00\x0d\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\ \x59\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x18\x00\x01\ \x00\x12\x00\x04\x2b\xba\x00\x09\x00\x05\x00\x12\x11\x12\x39\xba\ \x00\x0f\x00\x12\x00\x1f\x11\x12\x39\xb8\x00\x0f\x10\xb9\x00\x1b\ \x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x1c\x00\x01\xf4\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\ \x23\x22\x26\x37\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x80\x18\x28\x33\x1b\x1c\x2a\x14\x03\x08\x51\x67\x04\x11\x2d\x17\ \x40\x4c\x6b\x1f\x1d\x10\x1a\x0c\x0d\x1c\x0e\x17\x24\x01\xa8\x28\ \x41\x2c\x18\x14\x16\x22\xfe\x3f\x62\x31\x0f\x14\x5b\x52\x2f\x2a\ \x0b\x10\x82\x0b\x09\x2a\x00\x00\x01\x00\xd6\x01\x04\x01\xef\x02\ \x55\x00\x12\x00\x36\x00\xb8\x00\x11\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0d\x00\x04\x2b\xba\x00\x02\x00\x11\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x15\x23\xd6\x56\ \x08\x03\x16\x40\x23\x16\x1b\x0e\x14\x10\x18\x13\x1a\x35\x13\x68\ \x02\x4d\x48\x29\x27\x08\x06\x56\x05\x04\x22\x2c\xa8\x00\x00\x00\ \x01\x00\x91\x00\xfc\x01\xcc\x02\x55\x00\x29\x00\x2b\x00\xbb\x00\ \x03\x00\x01\x00\x26\x00\x04\x2b\xbb\x00\x11\x00\x01\x00\x18\x00\ \x04\x2b\xba\x00\x06\x00\x26\x00\x18\x11\x12\x39\xba\x00\x1b\x00\ \x11\x00\x03\x11\x12\x39\x30\x31\x13\x1e\x01\x33\x32\x36\x35\x34\ \x26\x27\x2e\x03\x35\x34\x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\ \x06\x15\x14\x16\x17\x1e\x03\x15\x14\x06\x23\x22\x26\x27\xc0\x1b\ \x35\x1e\x1d\x1a\x30\x1f\x14\x27\x21\x14\x50\x46\x2b\x44\x1a\x2f\ \x15\x2c\x18\x1a\x16\x2d\x1f\x14\x29\x21\x15\x52\x4e\x2a\x53\x1e\ \x01\x6b\x11\x12\x0d\x0c\x0f\x12\x09\x06\x11\x17\x1f\x15\x2e\x3a\ \x1b\x10\x3d\x0d\x0e\x0c\x0b\x0e\x11\x08\x06\x10\x16\x21\x16\x2d\ \x3e\x1b\x14\x00\x01\x00\x96\x00\xfc\x01\xd3\x02\xa3\x00\x18\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\ \x00\x0d\x3e\x59\xbb\x00\x0d\x00\x01\x00\x13\x00\x04\x2b\xb8\x00\ \x06\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\x10\xb8\x00\x03\xd0\ \xb8\x00\x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x16\x33\x32\x37\x17\x0e\x01\x23\x22\x2e\ \x02\x35\xdb\x45\x4a\x0d\x57\x81\x81\x20\x23\x1f\x1b\x12\x14\x33\ \x1f\x28\x38\x22\x10\x01\xfc\x4d\x04\x56\x56\x51\x6e\x24\x1d\x0b\ \x4a\x07\x0b\x15\x26\x35\x21\x00\x01\x00\x90\x00\xfc\x01\xc8\x02\ \x4d\x00\x14\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\ \xb9\x00\x0b\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\ \x1b\xb9\x00\x14\x00\x09\x3e\x59\xbb\x00\x0f\x00\x01\x00\x06\x00\ \x04\x2b\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\xb8\x00\x02\x10\ \xb8\x00\x12\xd0\x30\x31\x01\x23\x27\x23\x0e\x01\x23\x22\x26\x3d\ \x01\x33\x15\x14\x16\x33\x32\x36\x37\x35\x33\x01\xc8\x55\x08\x02\ \x16\x35\x23\x39\x32\x68\x13\x19\x12\x1a\x10\x68\x01\x04\x2d\x18\ \x1d\x48\x3d\xcc\xbf\x1f\x1b\x0d\x14\xd8\x00\x00\x01\x00\x76\x01\ \x04\x01\xdc\x02\x4d\x00\x0d\x00\x33\x00\xb8\x00\x0c\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\ \xb8\x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x33\x17\x1e\ \x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x76\x68\x30\x08\x0d\x08\ \x02\x08\x0c\x08\x30\x63\x75\x78\x02\x4d\x97\x1a\x32\x1a\x1a\x32\ \x1a\x97\xfe\xb7\x00\x00\x00\x00\x01\x00\x53\x01\x04\x01\xe2\x02\ \x4d\x00\x21\x00\x5a\x00\xb8\x00\x17\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\x59\xb8\x00\x17\ \x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x0a\x10\xb9\ \x00\x1c\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x20\xd0\x30\x31\x13\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\ \x23\x53\x66\x13\x03\x03\x04\x02\x03\x07\x05\x13\x47\x15\x05\x06\ \x04\x03\x03\x03\x04\x12\x5e\x31\x78\x11\x03\x07\x02\x03\x02\x04\ \x05\x0f\x77\x02\x4d\x94\x19\x30\x19\x19\x32\x17\x64\x64\x19\x30\ \x19\x19\x30\x19\x94\xfe\xb7\x66\x17\x2f\x1a\x11\x2c\x23\x66\x00\ \x01\x00\x7c\x01\x04\x01\xda\x02\x4d\x00\x18\x00\x4b\x00\xb8\x00\ \x0f\x2f\xb8\x00\x17\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x09\x3e\x59\xba\x00\x12\x00\x0f\x00\x0b\x11\ \x12\x39\xb8\x00\x12\x10\xb8\x00\x00\xd0\xb8\x00\x12\x10\xb8\x00\ \x0d\xd0\xb8\x00\x06\xd0\x30\x31\x13\x27\x33\x17\x1e\x01\x17\x33\ \x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x26\x27\x23\x0e\x01\x0f\x01\ \x23\xeb\x68\x6f\x1f\x07\x12\x08\x03\x05\x0e\x06\x1a\x6c\x69\x6f\ \x6f\x22\x12\x13\x02\x08\x0e\x07\x1d\x6c\x01\xaf\x9e\x33\x0e\x1d\ \x0e\x0e\x1d\x0e\x33\xaa\x9f\x33\x1c\x1d\x0e\x1d\x0e\x33\x00\x00\ \x01\x00\x81\x00\x85\x01\xd6\x02\x4d\x00\x1d\x00\x41\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x09\x3e\x59\ \xbb\x00\x03\x00\x01\x00\x19\x00\x04\x2b\xba\x00\x0e\x00\x19\x00\ \x12\x11\x12\x39\xb8\x00\x0e\x10\xb8\x00\x07\xd0\x30\x31\x37\x1e\ \x01\x33\x32\x36\x3f\x01\x03\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\ \x01\x33\x03\x0e\x03\x23\x22\x26\x27\x37\xae\x05\x0c\x05\x19\x1a\ \x07\x05\x82\x68\x2f\x08\x0b\x07\x02\x06\x0b\x06\x28\x63\x74\x0c\ \x1c\x22\x2e\x1e\x10\x15\x0b\x12\xda\x02\x03\x17\x11\x11\x01\x3f\ \x88\x17\x2e\x19\x17\x2f\x18\x88\xfe\xb7\x20\x30\x1f\x10\x04\x03\ \x4e\x00\x00\x00\x01\x00\x97\x01\x04\x01\xd4\x02\x4d\x00\x09\x00\ \x34\x00\xb8\x00\x09\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x09\x3e\x59\xb8\x00\x09\x10\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\ \x00\x05\xd0\x30\x31\x13\x37\x23\x35\x21\x15\x07\x33\x15\x21\x97\ \xa7\x93\x01\x23\xa7\xad\xfe\xc3\x01\x3b\xc1\x51\x37\xc1\x51\x00\ \x03\x00\x94\x00\xfc\x01\xd1\x02\xee\x00\x1b\x00\x22\x00\x26\x00\ \x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x0f\x3e\x59\xbb\x00\x11\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\x05\ \x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x1c\x00\x04\ \x2b\xb8\x00\x23\x10\xb8\x00\x25\xdc\x30\x31\x13\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x03\x33\x17\x23\x94\ \x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\x32\x22\x26\x27\ \x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\x27\x05\x2b\x6a\ \x3b\x4b\x01\xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\x0e\x16\x06\x23\ \x1f\x15\x3d\x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\x20\x01\x23\x6f\ \x00\x00\x00\x00\x03\x00\x94\x00\xfc\x01\xd1\x02\xee\x00\x1b\x00\ \x22\x00\x26\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\ \xb9\x00\x25\x00\x0f\x3e\x59\xbb\x00\x11\x00\x01\x00\x17\x00\x04\ \x2b\xbb\x00\x05\x00\x01\x00\x1f\x00\x04\x2b\xbb\x00\x0d\x00\x01\ \x00\x1c\x00\x04\x2b\xb8\x00\x25\x10\xb8\x00\x23\xdc\x30\x31\x13\ \x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\ \x37\x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x37\ \x23\x37\x33\x94\x1c\x2f\x3b\x20\x26\x39\x25\x13\x03\x01\xd5\x08\ \x32\x22\x26\x27\x23\x1c\x44\x1f\x26\x40\x30\x1b\xe5\x1c\x20\x1a\ \x27\x05\x56\x4c\x3b\x6b\x01\xa8\x28\x40\x2d\x18\x19\x2b\x3a\x21\ \x0e\x16\x06\x23\x1f\x15\x3d\x12\x14\x17\x2c\x40\x4c\x1a\x21\x1b\ \x20\xb4\x6f\x00\x02\x00\x94\x00\xfc\x01\xce\x02\x55\x00\x1a\x00\ \x21\x00\x21\x00\xbb\x00\x1e\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\ \x0e\x00\x01\x00\x07\x00\x04\x2b\xbb\x00\x1b\x00\x01\x00\x03\x00\ \x04\x2b\x30\x31\x13\x34\x36\x37\x33\x2e\x01\x23\x22\x06\x07\x27\ \x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x16\ \x33\x32\x36\x37\x94\x02\x02\xd2\x07\x29\x21\x14\x26\x14\x23\x1d\ \x40\x20\x4c\x5d\x1b\x2d\x3b\x20\x26\x39\x26\x12\x58\x1c\x20\x1a\ \x25\x05\x01\x9b\x0e\x16\x06\x23\x1e\x0b\x0b\x3f\x13\x13\x5c\x51\ \x28\x3f\x2d\x18\x18\x2b\x3a\x0d\x1b\x21\x1c\x20\x00\x00\x00\x00\ \x02\x00\x80\x00\xfc\x01\xc4\x02\x55\x00\x0c\x00\x20\x00\x54\x00\ \xb8\x00\x19\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\ \x16\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\x00\x04\x2b\xbb\ \x00\x12\x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x1a\x00\x1e\x00\x12\ \x11\x12\x39\xb8\x00\x1a\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x15\ \x00\x12\x00\x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x07\x00\x01\ \xf4\x30\x31\x13\x14\x16\x33\x32\x36\x37\x35\x2e\x01\x23\x22\x06\ \x07\x34\x3e\x02\x33\x32\x17\x33\x37\x33\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\xeb\x21\x1b\x0f\x1b\x0c\x0d\x1d\x0e\x16\x24\x6b\x18\ \x28\x34\x1c\x32\x26\x03\x09\x50\x54\x08\x02\x11\x32\x18\x3f\x4c\ \x01\xa9\x2f\x2a\x0b\x10\x82\x0b\x09\x2a\x2f\x28\x41\x2c\x18\x29\ \x21\xfe\xb7\x20\x11\x17\x5b\x00\x02\x00\x80\x00\x86\x01\xc4\x02\ \x55\x00\x21\x00\x2e\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\ \x2f\x1b\xb9\x00\x19\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\ \x00\x04\x2b\xbb\x00\x14\x00\x01\x00\x29\x00\x04\x2b\xbb\x00\x22\ \x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x07\x00\x0a\x00\x14\x11\x12\ \x39\xba\x00\x18\x00\x14\x00\x0a\x11\x12\x39\xb8\x00\x07\x10\xb9\ \x00\x25\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x26\x00\x01\xf4\x30\ \x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\ \x27\x37\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x15\x14\x16\xb8\x17\ \x32\x14\x24\x22\x02\x02\x11\x2c\x17\x1f\x33\x25\x14\x19\x29\x34\ \x1a\x18\x2c\x13\x02\x08\x53\x5b\x54\x1b\x48\x1d\x92\x0f\x1b\x0c\ \x0d\x1d\x0e\x17\x24\x22\xed\x0c\x0c\x1c\x16\x26\x0f\x11\x18\x2b\ \x3b\x23\x25\x3e\x2c\x18\x13\x14\x1f\xfe\xbc\x40\x43\x11\x13\xb5\ \x0d\x10\x71\x0b\x09\x29\x29\x26\x2a\x00\x00\x00\x02\x00\x9c\x01\ \x8e\x01\xbd\x02\xae\x00\x13\x00\x1f\x00\x17\x00\xbb\x00\x0a\x00\ \x01\x00\x1a\x00\x04\x2b\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2d\ \x1e\x35\x27\x17\x17\x27\x35\x1e\x1e\x35\x27\x16\x16\x27\x35\x1e\ \x1e\x25\x25\x1e\x1e\x25\x25\x01\x8e\x15\x27\x34\x20\x1f\x35\x27\ \x15\x15\x27\x35\x1f\x20\x34\x27\x15\x46\x29\x21\x20\x29\x29\x20\ \x21\x29\x00\x00\x02\x00\x24\x00\x3f\x02\x34\x02\x53\x00\x1e\x00\ \x2a\x00\x17\x00\xbb\x00\x22\x00\x01\x00\x1b\x00\x04\x2b\xbb\x00\ \x0b\x00\x01\x00\x28\x00\x04\x2b\x30\x31\x3f\x01\x26\x35\x34\x36\ \x37\x27\x37\x17\x36\x33\x32\x17\x37\x17\x07\x16\x15\x14\x06\x07\ \x17\x07\x27\x0e\x01\x23\x22\x27\x07\x13\x14\x16\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\x24\x51\x22\x11\x10\x50\x49\x59\x30\x36\x34\ \x32\x59\x49\x51\x22\x12\x11\x52\x49\x5a\x17\x34\x1a\x37\x2e\x5a\ \x69\x32\x24\x24\x32\x32\x24\x24\x32\x89\x52\x2e\x41\x20\x37\x16\ \x52\x4a\x5a\x19\x19\x5a\x4a\x52\x2d\x40\x21\x37\x17\x52\x4a\x5b\ \x0c\x0c\x18\x5b\x01\x0b\x2d\x35\x35\x2d\x2d\x35\x35\x00\x00\x00\ \x01\x00\x40\xff\x92\x02\x0b\x02\xe9\x00\x2c\x00\x47\x00\xb8\x00\ \x11\x2f\xb8\x00\x27\x2f\xb8\x00\x26\xdc\xb9\x00\x03\x00\x01\xf4\ \xb8\x00\x11\x10\xb8\x00\x12\xdc\xba\x00\x05\x00\x12\x00\x26\x11\ \x12\x39\xb8\x00\x0f\xd0\xb8\x00\x12\x10\xb9\x00\x19\x00\x01\xf4\ \xba\x00\x1c\x00\x26\x00\x12\x11\x12\x39\xb8\x00\x26\x10\xb8\x00\ \x29\xd0\x30\x31\x01\x2e\x01\x23\x22\x15\x14\x1e\x04\x15\x14\x06\ \x07\x15\x23\x35\x2e\x01\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\ \x04\x35\x34\x36\x37\x35\x33\x15\x1e\x01\x17\x01\xb8\x23\x3f\x29\ \x45\x2b\x41\x4b\x41\x2b\x56\x54\x62\x31\x68\x26\x40\x30\x55\x30\ \x24\x26\x2b\x41\x4c\x41\x2b\x58\x4c\x62\x34\x4d\x1f\x01\xc1\x19\ \x19\x2e\x12\x18\x18\x1c\x2b\x3e\x2d\x3f\x5d\x0e\x95\x92\x05\x29\ \x21\x64\x1d\x21\x18\x15\x15\x1c\x1a\x1c\x2a\x3e\x2e\x41\x56\x0c\ \x83\x82\x07\x2b\x20\x00\x00\x00\x01\x00\x43\x00\x00\x02\x26\x02\ \x87\x00\x2a\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x0b\x00\ \x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x23\xd0\x30\x31\x25\x15\x21\x35\ \x3e\x01\x35\x34\x27\x23\x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x17\x33\x15\x23\x1e\ \x01\x15\x14\x06\x07\x15\x02\x26\xfe\x1d\x34\x42\x03\x70\x54\x08\ \x0b\x22\x3c\x54\x32\x3e\x59\x23\x4f\x14\x2c\x1d\x30\x37\x08\x05\ \xa9\x92\x01\x01\x19\x1d\x7c\x7c\x5b\x14\x4f\x36\x0d\x0e\x56\x05\ \x14\x28\x14\x2f\x4c\x35\x1d\x2a\x27\x50\x15\x15\x2e\x30\x12\x24\ \x12\x5b\x07\x0e\x07\x24\x34\x1b\x04\x00\x00\x00\x01\x00\x1f\x00\ \x00\x02\x39\x02\x7b\x00\x1d\x00\x6c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x0b\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\ \x00\x13\x00\x09\x11\x12\x39\xb8\x00\x05\x10\xb8\x00\x0b\xd0\xb9\ \x00\x0e\x00\x01\xf4\xb8\x00\x19\xd0\xb8\x00\x18\xdc\xb8\x00\x0f\ \xd0\xb9\x00\x12\x00\x01\xf4\xb8\x00\x15\xd0\xb8\x00\x0b\x10\xb8\ \x00\x1c\xd0\x30\x31\x13\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\ \x03\x33\x15\x23\x15\x33\x15\x23\x15\x23\x35\x23\x35\x33\x35\x23\ \x35\x33\x03\xb6\x3d\x0e\x1c\x0f\x04\x0e\x1d\x0e\x3d\x93\xa3\x89\ \xaa\xaa\xaa\x93\xa9\xa9\xa9\x89\xa3\x02\x7b\x85\x21\x42\x20\x21\ \x42\x20\x85\xfe\xdb\x46\x37\x46\x93\x93\x46\x37\x46\x01\x25\x00\ \x01\x00\x2d\xff\xf4\x02\x47\x02\x87\x00\x31\x00\x6d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\ \xba\x00\x28\x00\x24\x00\x03\x2b\xb8\x00\x28\x10\xb9\x00\x2b\x00\ \x01\xf4\xb8\x00\x08\xd0\xb8\x00\x28\x10\xb8\x00\x0b\xd0\xb8\x00\ \x24\x10\xb8\x00\x11\xd0\xb8\x00\x24\x10\xb9\x00\x21\x00\x01\xf4\ \xb8\x00\x14\xd0\xb8\x00\x17\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\ \x03\x10\xb9\x00\x2e\x00\x01\xf4\x30\x31\x25\x0e\x01\x23\x22\x2e\ \x02\x27\x23\x35\x37\x26\x34\x35\x3c\x01\x37\x23\x35\x37\x3e\x01\ \x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x33\x15\x21\x15\x1c\ \x01\x17\x33\x15\x23\x1e\x01\x33\x32\x36\x37\x02\x47\x29\x64\x3d\ \x33\x58\x47\x32\x0c\x40\x37\x01\x01\x37\x40\x19\x96\x6c\x33\x5f\ \x25\x51\x17\x34\x20\x33\x42\x0e\xfd\xfe\xf9\x01\xde\xd2\x10\x42\ \x31\x23\x36\x17\x50\x2d\x2f\x1d\x39\x55\x38\x45\x04\x07\x0c\x07\ \x07\x0c\x07\x44\x05\x70\x7a\x28\x26\x4f\x13\x18\x3e\x39\x4a\x15\ \x08\x0e\x07\x4b\x37\x3a\x1c\x1a\x00\x00\x00\x00\x02\x00\x60\xff\ \xd7\x02\x0b\x02\x8f\x00\x06\x00\x24\x00\x5c\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0b\x3e\x59\xbb\x00\x21\ \x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x20\x00\x04\ \x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\x00\x2f\xb8\x00\x21\ \x10\xb8\x00\x06\xd0\xb8\x00\x06\x2f\xb8\x00\x0a\x10\xb8\x00\x0d\ \xd0\xb8\x00\x0d\x2f\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\xb8\x00\x17\ \xd0\xb8\x00\x17\x2f\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\ \x01\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\ \x01\x17\x07\x26\x27\x11\x3e\x01\x37\x01\x37\x24\x24\x25\x23\xd4\ \x1d\x44\x22\x51\x31\x4f\x38\x1f\x20\x3a\x4e\x2f\x51\x27\x3f\x16\ \x43\x1e\x1b\x15\x24\x0f\x01\xb0\x10\x40\x2d\x2d\x41\x0f\x45\x19\ \x1d\x05\x5f\x5f\x06\x28\x41\x58\x36\x35\x56\x3f\x29\x08\x61\x5d\ \x04\x1d\x17\x5a\x18\x03\xfe\xf0\x04\x13\x0c\x00\x01\x00\x2e\xff\ \xa0\x02\x26\x02\x98\x00\x2b\x00\x42\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x26\x2f\x1b\xb9\x00\x26\x00\x0d\x3e\x59\xbb\x00\x16\x00\x01\ \x00\x10\x00\x04\x2b\xbb\x00\x08\x00\x01\x00\x09\x00\x04\x2b\xb8\ \x00\x26\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x1c\ \xd0\xb8\x00\x08\x10\xb8\x00\x20\xd0\x30\x31\x01\x2e\x01\x23\x22\ \x06\x0f\x01\x33\x15\x23\x07\x0e\x03\x23\x22\x26\x27\x37\x16\x17\ \x3e\x03\x3f\x01\x23\x35\x37\x33\x37\x3e\x03\x33\x32\x1e\x02\x17\ \x02\x0a\x0b\x1c\x11\x26\x27\x06\x07\x73\x7f\x17\x06\x17\x2d\x47\ \x36\x21\x32\x0d\x14\x19\x1d\x14\x1c\x13\x0e\x06\x11\x57\x4b\x18\ \x05\x08\x1e\x32\x49\x34\x0a\x1b\x1b\x18\x08\x02\x17\x05\x07\x2b\ \x23\x37\x6b\xbd\x2d\x4e\x3a\x21\x09\x07\x6c\x07\x02\x01\x0c\x20\ \x36\x2b\x92\x65\x06\x2b\x37\x4e\x32\x18\x03\x05\x07\x04\x00\x00\ \x03\x00\x4f\xff\x92\x02\x33\x02\xe9\x00\x07\x00\x0d\x00\x34\x00\ \xb1\x00\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\ \x00\x03\x3e\x59\xb8\x00\x16\xd0\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x14\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x24\x10\xb9\x00\x07\x00\ \x01\xf4\xb8\x00\x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xd0\xb8\x00\ \x00\x10\xb8\x00\x0d\xd0\xb8\x00\x14\x10\xb8\x00\x11\xd0\xb8\x00\ \x14\x10\xb8\x00\x13\xdc\xb8\x00\x17\xd0\xb8\x00\x16\x10\xb8\x00\ \x19\xd0\xb8\x00\x24\x10\xb8\x00\x21\xd0\xb8\x00\x24\x10\xb8\x00\ \x23\xdc\xb8\x00\x04\x10\xb9\x00\x28\x00\x01\xf4\xb8\x00\x23\x10\ \xb8\x00\x29\xd0\xb8\x00\x28\x10\xb8\x00\x2b\xd0\xb8\x00\x04\x10\ \xb8\x00\x31\xd0\xb8\x00\x03\x10\xb8\x00\x32\xd0\xb8\x00\x32\x2f\ \x30\x31\x25\x1e\x01\x17\x13\x26\x2b\x01\x07\x0e\x01\x15\x14\x17\ \x05\x0e\x01\x0f\x01\x23\x37\x26\x27\x07\x23\x37\x2e\x01\x35\x34\ \x3e\x02\x3f\x01\x33\x07\x33\x32\x16\x17\x37\x33\x07\x1e\x01\x17\ \x07\x26\x27\x03\x36\x37\x01\x32\x09\x13\x0b\x32\x0e\x0e\x0b\x34\ \x26\x28\x24\x01\x2d\x26\x5a\x36\x0c\x32\x0c\x15\x12\x0d\x32\x0e\ \x4b\x59\x22\x3f\x58\x37\x0c\x32\x0c\x08\x08\x10\x08\x0c\x32\x0d\ \x1a\x32\x15\x51\x0e\x11\x30\x32\x25\x76\x05\x07\x02\x01\xaa\x03\ \x10\x16\x65\x4b\x66\x37\x52\x29\x2e\x04\x63\x63\x03\x03\x69\x79\ \x20\x99\x76\x46\x71\x54\x34\x09\x67\x62\x01\x01\x64\x71\x0a\x1f\ \x16\x4f\x0b\x0b\xfe\x68\x09\x2b\x00\x00\x00\x00\x01\x00\x43\x00\ \x00\x02\x26\x02\x87\x00\x31\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x0a\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x24\x00\x01\x00\x27\x00\x04\x2b\ \xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\ \x08\xd0\xb8\x00\x08\x2f\xb8\x00\x27\x10\xb8\x00\x0d\xd0\xb8\x00\ \x24\x10\xb8\x00\x0f\xd0\xb8\x00\x0f\x2f\xb8\x00\x17\x10\xb9\x00\ \x1e\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x2a\xd0\xb8\x00\x06\x10\ \xb8\x00\x2c\xd0\x30\x31\x25\x15\x21\x35\x3e\x01\x37\x23\x35\x37\ \x33\x2e\x01\x27\x23\x35\x37\x26\x35\x34\x3e\x02\x33\x32\x16\x17\ \x07\x2e\x01\x23\x22\x06\x15\x1c\x01\x17\x33\x15\x23\x1e\x01\x17\ \x33\x15\x23\x0e\x01\x07\x15\x02\x26\xfe\x1d\x2d\x3f\x08\x70\x4f\ \x1c\x03\x08\x05\x5b\x43\x03\x22\x3c\x54\x32\x3e\x59\x23\x4f\x14\ \x2c\x1d\x30\x37\x01\xb5\xa2\x03\x07\x03\x95\x92\x04\x19\x17\x7c\ \x7c\x5b\x11\x41\x2c\x45\x05\x0c\x18\x0c\x45\x05\x0f\x0e\x2f\x4c\ \x35\x1d\x2a\x27\x50\x15\x15\x2e\x30\x05\x0a\x05\x4b\x0c\x18\x0c\ \x4a\x1a\x29\x16\x04\x00\x00\x00\x05\x00\x1b\x00\x00\x02\x3c\x02\ \x7b\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x2b\x00\xe1\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\ \x3e\x59\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\x26\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x03\x10\xb8\x00\x08\xd0\xba\x00\x09\x00\x15\x00\x23\x11\ \x12\x39\xb8\x00\x00\x10\xb8\x00\x0a\xd0\xb8\x00\x26\x10\xb8\x00\ \x0c\xd0\xb8\x00\x23\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x10\xd0\xb8\x00\x03\x10\xb8\x00\x11\xd0\xb8\x00\x04\x10\ \xb8\x00\x13\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\x04\x10\ \xb8\x00\x1b\xd0\xb8\x00\x03\x10\xb8\x00\x1d\xd0\xb8\x00\x1d\x2f\ \xb8\x00\x00\x10\xb8\x00\x1f\xd0\xb8\x00\x26\x10\xb8\x00\x21\xd0\ \xb8\x00\x21\x2f\xb8\x00\x26\x10\xb8\x00\x29\xd0\x30\x31\x01\x23\ \x17\x33\x17\x23\x17\x33\x27\x33\x27\x23\x27\x33\x27\x23\x05\x15\ \x33\x15\x23\x15\x23\x27\x23\x15\x23\x35\x23\x35\x37\x35\x23\x35\ \x37\x35\x33\x17\x33\x35\x33\x15\x33\x15\x01\x91\x3b\x10\x2f\x06\ \x21\x2a\x04\xe1\x3b\x10\x2f\x06\x21\x2a\x04\x01\x47\x45\x45\x88\ \x59\x4b\x6a\x46\x46\x46\x46\x88\x59\x4b\x6a\x45\x01\x56\x30\x3a\ \x7f\xb9\x30\x3a\x7e\xb8\x30\x3a\xec\xec\xec\xec\x34\x06\x30\x34\ \x06\xeb\xeb\xeb\xeb\x3a\x00\x00\x03\x00\x15\x00\x00\x02\x3b\x02\ \x7b\x00\x05\x00\x0b\x00\x21\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\x04\x00\ \x01\x00\x07\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\x05\x00\x04\x2b\ \xb8\x00\x1b\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x04\x10\xb8\x00\ \x0d\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\x07\x10\xb8\x00\ \x18\xd0\xb8\x00\x07\x10\xb8\x00\x20\xd0\x30\x31\x01\x32\x36\x37\ \x23\x15\x35\x15\x33\x2e\x01\x23\x05\x23\x0e\x03\x2b\x01\x15\x23\ \x11\x23\x35\x37\x35\x33\x32\x1e\x02\x17\x33\x01\x06\x2c\x36\x0b\ \x8f\x8e\x0a\x36\x2c\x01\x35\x3d\x08\x2b\x3f\x50\x2c\x2c\x8b\x44\ \x44\xb7\x2c\x50\x3f\x2a\x08\x3e\x01\x33\x26\x23\x49\xec\x48\x26\ \x22\xa3\x2b\x3e\x29\x13\xd7\x01\x7c\x55\x05\xa5\x11\x27\x3f\x2d\ \x00\x00\x00\x00\x03\x00\x5b\x00\x00\x02\x32\x02\x8b\x00\x03\x00\ \x10\x00\x2d\x00\x56\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x22\x00\x01\x00\x07\x00\x04\ \x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb9\x00\x1a\x00\x01\ \xf4\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x22\x10\xb8\x00\x13\xdc\xb8\ \x00\x27\xd0\xb8\x00\x13\x10\xb9\x00\x2d\x00\x01\xf4\xb8\x00\x29\ \xd0\xb8\x00\x2d\x10\xb8\x00\x2c\xdc\x30\x31\x37\x21\x15\x21\x01\ \x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x13\x15\x07\x11\ \x23\x27\x23\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x33\x32\x16\x17\ \x27\x35\x23\x35\x33\x35\x33\x15\x68\x01\xa3\xfe\x5d\x01\x09\x12\ \x22\x15\x1f\x32\x2a\x23\x17\x23\x13\xc1\x48\x64\x09\x03\x16\x3b\ \x23\x4e\x5d\x1e\x32\x3f\x20\x25\x2f\x17\x04\x9a\x9a\x79\x4a\x4a\ \x01\x68\x0e\x0c\x2b\x26\x30\x2c\x10\x14\x01\x61\x44\x06\xfe\x6e\ \x24\x15\x19\x62\x5c\x2a\x42\x2f\x18\x13\x14\x43\x0f\x4a\x31\x31\ \x00\x00\x00\x00\x04\x00\x16\x00\x00\x02\x3b\x02\x7b\x00\x08\x00\ \x0d\x00\x12\x00\x35\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x2e\ \x2f\x1b\xb9\x00\x2e\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x24\x2f\x1b\xb9\x00\x24\x00\x03\x3e\x59\xbb\x00\x09\x00\x01\x00\ \x22\x00\x04\x2b\xb8\x00\x2e\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\ \x10\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\xdc\xb9\x00\x0b\x00\ \x01\xf4\xb8\x00\x06\x10\xb8\x00\x14\xd0\xb8\x00\x00\x10\xb8\x00\ \x1a\xd0\xb8\x00\x0b\x10\xb8\x00\x1c\xd0\xb8\x00\x0b\x10\xb8\x00\ \x26\xd0\xb8\x00\x00\x10\xb8\x00\x29\xd0\xb8\x00\x06\x10\xb8\x00\ \x2a\xd0\xb8\x00\x10\x10\xb8\x00\x2d\xd0\xb8\x00\x10\x10\xb8\x00\ \x34\xd0\x30\x31\x01\x36\x34\x35\x34\x26\x27\x23\x15\x17\x32\x37\ \x23\x15\x35\x15\x33\x26\x23\x05\x23\x16\x14\x15\x1c\x01\x07\x33\ \x15\x23\x0e\x03\x2b\x01\x15\x23\x11\x23\x35\x37\x35\x23\x35\x37\ \x35\x33\x32\x1e\x02\x17\x33\x01\x77\x01\x01\x01\x92\x22\x3e\x1e\ \x7e\x7d\x1b\x40\x01\x35\x3b\x01\x01\x3b\x46\x0c\x2e\x3c\x48\x27\ \x2c\x8b\x43\x43\x43\x43\xb7\x28\x48\x3b\x2d\x0c\x47\x01\x94\x05\ \x08\x05\x08\x0d\x06\x2d\x61\x27\x27\xec\x24\x24\x5e\x07\x0d\x07\ \x05\x08\x05\x3a\x22\x31\x20\x10\xd7\x01\x5a\x34\x05\x2e\x34\x05\ \x81\x0e\x1e\x31\x23\x00\x00\x00\x01\x00\x43\xff\x92\x02\x1a\x02\ \xe9\x00\x26\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x26\x00\ \x04\x2b\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb8\x00\x12\x10\xb8\x00\ \x15\xd0\xb8\x00\x12\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x08\x10\ \xb9\x00\x22\x00\x01\xf4\x30\x31\x01\x33\x11\x0e\x01\x07\x15\x23\ \x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\x17\x07\x2e\ \x01\x23\x22\x06\x15\x14\x16\x33\x32\x37\x35\x23\x01\x4b\xce\x1f\ \x49\x29\x62\x32\x53\x3c\x22\x21\x3c\x53\x33\x62\x2a\x4b\x1d\x51\ \x17\x34\x20\x42\x46\x4a\x41\x22\x14\x4c\x01\x6a\xfe\xd4\x1b\x24\ \x07\x66\x66\x08\x31\x51\x71\x47\x45\x6f\x54\x35\x0a\x68\x65\x07\ \x28\x1f\x50\x16\x19\x71\x65\x68\x6c\x0d\x7a\x00\x02\x00\x4f\xff\ \x92\x02\x33\x02\xe0\x00\x06\x00\x24\x00\x7b\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x0b\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\ \xb8\x00\x17\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0d\x10\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\ \xb8\x00\x19\xdc\xb8\x00\x00\x10\xb8\x00\x21\xd0\xb8\x00\x06\x10\ \xb8\x00\x22\xd0\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\x01\ \x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\ \x17\x07\x2e\x01\x27\x11\x36\x37\x01\x43\x30\x31\x32\x2f\xf0\x21\ \x4f\x2f\x51\x35\x5a\x41\x24\x23\x40\x5a\x37\x51\x2a\x4e\x1f\x51\ \x10\x22\x14\x2b\x23\x02\x0e\x11\x6a\x54\x55\x6a\x12\x1e\x24\x2d\ \x08\x65\x64\x06\x30\x52\x72\x4a\x47\x72\x54\x34\x08\x5d\x5b\x05\ \x27\x20\x4f\x0d\x14\x05\xfe\x5a\x0a\x28\x00\x00\x01\x00\x58\x00\ \x00\x02\x0b\x02\x7b\x00\x1c\x00\x70\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x0b\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x1c\ \x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x19\xd0\xb8\x00\x16\xd0\xb8\ \x00\x04\xd0\xb8\x00\x16\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\x07\ \xd0\xb8\x00\x12\x10\xb8\x00\x10\xd0\xb9\x00\x0d\x00\x01\xf4\xb8\ \x00\x0a\xd0\xb8\x00\x0a\x2f\x30\x31\x01\x23\x1e\x01\x17\x33\x15\ \x23\x0e\x01\x07\x17\x23\x27\x23\x35\x33\x32\x37\x23\x35\x37\x33\ \x2e\x01\x2b\x01\x35\x21\x02\x0b\x95\x1c\x25\x08\x4c\x4a\x08\x49\ \x36\xbb\xa3\xa4\x56\x4a\x74\x18\xd6\x51\x83\x0d\x45\x38\x4a\x01\ \xb3\x02\x31\x11\x32\x1f\x4a\x40\x51\x14\xe0\xc9\x75\x47\x44\x06\ \x1f\x18\x75\x00\x01\x00\x24\xff\xf1\x02\x27\x02\x7b\x00\x23\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x1f\x00\x10\x00\ \x19\x11\x12\x39\xb8\x00\x1f\x10\xb8\x00\x22\xd0\xb8\x00\x11\xd0\ \xb8\x00\x1f\x10\xb8\x00\x14\xd0\xb8\x00\x1e\xd0\xb8\x00\x15\xd0\ \xb8\x00\x1e\x10\xb8\x00\x1b\xd0\xb8\x00\x18\xd0\x30\x31\x25\x3e\ \x03\x35\x34\x26\x27\x37\x16\x15\x14\x0e\x02\x27\x35\x07\x35\x37\ \x35\x07\x35\x37\x35\x33\x15\x37\x15\x07\x15\x37\x15\x07\x15\x01\ \x0c\x1f\x39\x2c\x1a\x01\x03\x79\x08\x3b\x6f\xa0\x64\x55\x55\x55\ \x55\x93\xa0\xa0\xa0\xa0\x7d\x03\x15\x22\x2c\x1b\x05\x0e\x0b\x1c\ \x20\x13\x44\x69\x45\x22\x03\xe8\x29\x51\x29\x37\x29\x51\x29\xc6\ \x7e\x4d\x51\x4d\x37\x4d\x51\x4d\xa7\x00\x00\x00\x02\x00\x11\x00\ \x1c\x02\x47\x02\x70\x00\x03\x00\x07\x00\x0b\x00\xba\x00\x07\x00\ \x03\x00\x03\x2b\x30\x31\x3f\x01\x17\x07\x01\x07\x27\x37\x11\xba\ \x33\xa2\x01\xeb\xba\x33\xa2\x65\xad\x2f\xc7\x02\x0b\xae\x30\xc7\ \x00\x00\x00\xff\xff\x00\x11\x00\x1c\x02\x47\x02\x70\x02\x06\x02\ \x88\x00\x00\xff\xff\x00\x11\x00\x1c\x02\x47\x02\x70\x02\x06\x02\ \x88\x00\x00\xff\xff\x00\x12\xff\xf4\x02\x48\x02\x88\x02\x27\x02\ \x38\xff\x81\x01\x44\x00\x26\x02\x88\x01\x00\x00\x07\x02\x38\x00\ \x80\x00\x00\x00\x07\x00\x1f\xff\xf4\x02\x46\x02\x87\x00\x0d\x00\ \x19\x00\x1d\x00\x2b\x00\x37\x00\x47\x00\x53\x00\x76\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x38\x2f\x1b\xb9\x00\x38\x00\x03\x3e\ \x59\xbb\x00\x24\x00\x01\x00\x32\x00\x04\x2b\xbb\x00\x0e\x00\x01\ \x00\x00\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x14\x00\x01\xf4\xb8\ \x00\x1e\x10\xb9\x00\x2c\x00\x01\xf4\xb8\x00\x24\x10\xb8\x00\x40\ \xd0\xb8\x00\x2c\x10\xb8\x00\x48\xd0\xb8\x00\x32\x10\xb8\x00\x4e\ \xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x0e\x02\ \x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x0d\x01\x27\x25\ \x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x0e\x02\x27\x32\x36\ \x35\x34\x26\x23\x22\x06\x15\x14\x16\x05\x22\x2e\x02\x35\x34\x36\ \x33\x32\x16\x15\x14\x0e\x02\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\x9e\x36\x49\x49\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\ \x1b\x11\x11\x1a\x1a\x01\xb9\xfe\x2a\x13\x01\xc3\xfe\x7e\x36\x49\ \x49\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\x1b\x11\x11\x1a\x1a\x01\ \x2e\x1b\x2f\x22\x14\x4a\x36\x37\x49\x13\x23\x2f\x1b\x11\x1b\x1b\ \x11\x11\x1a\x1a\x01\x84\x48\x3c\x3c\x43\x43\x3c\x1e\x31\x22\x13\ \x3f\x1e\x27\x27\x1a\x1a\x27\x27\x1e\x20\x94\x2c\xc6\xfd\xf3\x48\ \x3c\x3c\x43\x43\x3c\x1e\x31\x22\x13\x3e\x1f\x27\x27\x19\x1a\x26\ \x27\x1f\x3e\x13\x22\x31\x1e\x3c\x43\x43\x3c\x1e\x31\x22\x13\x3e\ \x1f\x27\x27\x19\x1a\x26\x27\x1f\x00\x00\x00\xff\xff\x00\x11\x00\ \x00\x02\x51\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x06\x02\x3c\x7f\x00\x00\x00\xff\xff\x00\x11\x00\ \x00\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3a\x00\x80\x00\x00\xff\xff\x00\x18\x00\ \x00\x02\x52\x02\x88\x02\x27\x02\x3b\xff\x81\x01\x44\x00\x26\x02\ \x88\x07\x00\x00\x07\x02\x3c\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x88\x02\x27\x02\x3a\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x39\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x88\x02\x27\x02\x3b\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x3d\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\xff\xff\x00\x11\xff\ \xf4\x02\x47\x02\x7c\x02\x27\x02\x3f\xff\x82\x01\x44\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x80\x00\x00\x00\x01\x00\x46\x00\ \x5e\x02\x12\x02\x36\x00\x0b\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\x30\x31\x13\x23\x35\x33\x35\x33\x15\x33\x15\x23\ \x15\x23\xf6\xb0\xb0\x6c\xb0\xb0\x6c\x01\x16\x68\xb8\xb8\x68\xb8\ \x00\x00\x00\x00\x01\x00\x46\x01\x16\x02\x12\x01\x7e\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x46\x01\xcc\xfe\x34\x01\x7e\x68\x00\x00\x01\x00\x54\x00\ \x70\x02\x04\x02\x23\x00\x0b\x00\x29\x00\xba\x00\x05\x00\x09\x00\ \x03\x2b\xba\x00\x0a\x00\x09\x00\x05\x11\x12\x39\xb8\x00\x0a\x10\ \xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x07\xd0\xb8\x00\x04\xd0\ \x30\x31\x3f\x01\x27\x37\x17\x37\x17\x07\x17\x07\x27\x07\x54\x8e\ \x8e\x49\x8f\x8f\x49\x8e\x8e\x49\x8f\x8f\xba\x8f\x90\x4a\x90\x90\ \x4a\x90\x8f\x4a\x90\x90\x00\x00\x03\x00\x46\x00\x49\x02\x12\x02\ \x4b\x00\x0b\x00\x17\x00\x1b\x00\x25\x00\xbb\x00\x19\x00\x01\x00\ \x1a\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x00\xdc\xb8\x00\x06\xdc\ \xb8\x00\x1a\x10\xb8\x00\x0f\xdc\xb8\x00\x15\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x03\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x03\x21\x15\x21\x01\x2c\x23\x2e\x2e\x23\ \x23\x2e\x2e\x74\x2e\x23\x23\x2e\x2e\x23\x23\x2e\x95\x01\xcc\xfe\ \x34\x01\xb1\x2b\x22\x22\x2b\x2b\x22\x22\x2b\xfe\xe5\x22\x2b\x2b\ \x22\x22\x2b\x2b\x01\x0a\x68\xff\xff\x00\xb8\x00\xec\x01\xa0\x01\ \xd7\x02\x07\x01\xe3\x00\x00\x00\xf8\x00\x00\xff\xff\x00\x46\x00\ \xa3\x02\x12\x01\xf2\x02\x26\x02\x97\x00\x74\x00\x06\x02\x97\x00\ \x8d\x00\x00\x00\x01\x00\x74\x00\x1f\x01\xf6\x02\x79\x00\x07\x00\ \x3b\x00\xbb\x00\x00\x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\xba\x00\ \x04\x00\x00\x00\x07\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x05\xd0\ \xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x25\x15\x05\ \x15\x05\x15\x25\x74\x01\x82\xfe\xf7\x01\x09\xfe\x7e\x01\x7f\xfa\ \x85\xa6\x04\xa6\x85\xfa\x00\x00\x01\x00\x62\x00\x1f\x01\xe4\x02\ \x79\x00\x07\x00\x3b\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\ \x01\xf4\xba\x00\x04\x00\x07\x00\x00\x11\x12\x39\xb8\x00\x07\x10\ \xb8\x00\x05\xd0\xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x01\x05\x35\x25\x35\x25\x35\x05\x01\xe4\xfe\x7e\x01\x09\xfe\xf7\ \x01\x82\x01\x19\xfa\x85\xa6\x04\xa6\x85\xfa\x00\x02\x00\x46\x00\ \x00\x02\x12\x02\x30\x00\x03\x00\x0d\x00\x4e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x04\ \x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\xba\x00\x09\x00\x04\x00\x0d\x11\x12\x39\xb8\x00\x09\x10\xb8\ \x00\x05\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x0c\ \xd0\xb9\x00\x0b\x00\x01\xf4\x30\x31\x37\x21\x15\x21\x11\x25\x15\ \x0f\x01\x15\x1f\x01\x15\x25\x46\x01\xcc\xfe\x34\x01\xcc\xac\x8b\ \x8b\xac\xfe\x34\x68\x68\x01\xa2\x8e\x79\x2e\x22\x04\x22\x2e\x79\ \x8e\x00\x00\x00\x02\x00\x46\x00\x00\x02\x12\x02\x30\x00\x03\x00\ \x0d\x00\x4e\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x03\x3e\x59\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\ \x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x08\x00\x0d\x00\x04\ \x11\x12\x39\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x08\x10\xb8\x00\x0c\xd0\xb9\x00\x0b\x00\x01\xf4\x30\ \x31\x37\x21\x15\x21\x01\x05\x35\x3f\x01\x35\x2f\x01\x35\x05\x46\ \x01\xcc\xfe\x34\x01\xcc\xfe\x34\xac\x8b\x8b\xac\x01\xcc\x68\x68\ \x01\x28\x8e\x79\x2e\x22\x04\x22\x2e\x79\x8e\x00\x02\x00\x46\x00\ \x00\x02\x12\x02\x36\x00\x0b\x00\x0f\x00\x44\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xbb\x00\x03\ \x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\ \x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x00\x10\xb8\x00\x08\xd0\xb8\ \x00\x0e\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x0b\xdc\x30\x31\x13\ \x23\x35\x33\x35\x33\x15\x33\x15\x23\x15\x23\x07\x21\x15\x21\xf6\ \xb0\xb0\x6c\xb0\xb0\x6c\xb0\x01\xcc\xfe\x34\x01\x26\x68\xa8\xa8\ \x68\x88\x36\x68\x00\x00\x00\x00\x01\x00\x56\x01\x12\x02\x02\x02\ \x9e\x00\x09\x00\x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x02\xdc\xba\x00\x05\x00\x00\ \x00\x02\x11\x12\x39\xb8\x00\x09\xd0\x30\x31\x13\x33\x13\x23\x2f\ \x01\x23\x0f\x01\x23\xf1\x76\x9b\x79\x2e\x2d\x04\x2d\x2e\x79\x02\ \x9e\xfe\x74\x80\x87\x87\x80\x00\x01\x00\x46\x00\x28\x02\x12\x02\ \x6c\x00\x13\x00\x47\x00\xbb\x00\x07\x00\x01\x00\x0d\x00\x04\x2b\ \xb8\x00\x0d\x10\xb8\x00\x0e\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x0e\x10\xb8\x00\x03\xd0\xb8\x00\x0d\x10\xb8\x00\ \x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xdc\xb8\x00\x07\x10\xb8\x00\ \x0a\xd0\xb8\x00\x00\x10\xb8\x00\x13\xdc\x30\x31\x37\x23\x35\x33\ \x37\x23\x35\x21\x37\x33\x07\x33\x15\x23\x07\x33\x15\x21\x07\x23\ \x9f\x59\x93\x49\xdc\x01\x15\x48\x5d\x47\x59\x93\x49\xdc\xfe\xeb\ \x48\x5d\xa2\x67\x82\x67\x7a\x7a\x67\x82\x67\x7a\x00\x00\x00\x00\ \x01\x00\x34\x00\xea\x02\x24\x01\xaa\x00\x17\x00\x27\x00\xbb\x00\ \x03\x00\x01\x00\x14\x00\x04\x2b\xbb\x00\x0f\x00\x01\x00\x08\x00\ \x04\x2b\xb8\x00\x03\x10\xb8\x00\x0b\xd0\xb8\x00\x0f\x10\xb8\x00\ \x17\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x34\x20\x54\x2f\x1f\x2e\ \x27\x23\x15\x15\x26\x0e\x58\x20\x54\x2f\x1f\x2e\x27\x23\x15\x14\ \x27\x0e\x01\x13\x4e\x43\x18\x1c\x18\x28\x2a\x29\x4e\x43\x18\x1c\ \x18\x28\x2a\xff\xff\x00\x34\x00\x77\x02\x24\x02\x1e\x02\x26\x02\ \xa3\x00\x74\x00\x06\x02\xa3\x00\x8d\x00\x00\x00\x01\x00\x46\x00\ \x5e\x02\x12\x01\x7e\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x13\x21\x11\x23\x35\x21\x46\x01\xcc\x6c\ \xfe\xa0\x01\x7e\xfe\xe0\xb8\x00\x01\x00\x0e\xff\xf4\x02\x4a\x01\ \xf0\x00\x26\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\ \xb9\x00\x10\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x22\x2f\ \x1b\xb9\x00\x22\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x10\x10\xb9\x00\x0d\ \x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\x12\xd0\xb8\x00\x22\x10\xb9\ \x00\x1b\x00\x01\xf4\x30\x31\x25\x34\x3e\x02\x35\x23\x14\x06\x07\ \x27\x3e\x01\x35\x23\x35\x37\x21\x15\x23\x0e\x02\x14\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x01\x69\x01\x02\x02\ \x77\x08\x07\x93\x0e\x0b\x60\x4a\x01\xf2\x50\x02\x03\x01\x16\x16\ \x05\x0a\x08\x12\x0d\x25\x1a\x2a\x38\x23\x0f\x9e\x0b\x31\x3e\x45\ \x1f\x59\xc8\x64\x09\x66\xc3\x53\x6e\x06\x74\x21\x49\x40\x31\x09\ \x1a\x13\x02\x02\x6c\x06\x09\x18\x2d\x3e\x00\x00\x03\xff\xf3\x00\ \x79\x02\x65\x02\x13\x00\x1f\x00\x2a\x00\x36\x00\x5a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\xbb\ \x00\x23\x00\x01\x00\x19\x00\x04\x2b\xbb\x00\x2b\x00\x01\x00\x00\ \x00\x04\x2b\xbb\x00\x08\x00\x01\x00\x31\x00\x04\x2b\xba\x00\x1c\ \x00\x19\x00\x0f\x11\x12\x39\xb8\x00\x1c\x10\xb8\x00\x20\xd0\xb8\ \x00\x0b\xd0\xb8\x00\x0f\x10\xb9\x00\x29\x00\x01\xf4\xb8\x00\x1c\ \x10\xb8\x00\x2e\xd0\x30\x31\x37\x22\x2e\x02\x35\x34\x36\x33\x32\ \x16\x17\x33\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\ \x27\x23\x0e\x01\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\ \x32\x36\x37\x2e\x01\x23\x22\x06\x15\x14\x16\x82\x1e\x34\x27\x16\ \x5a\x49\x2f\x40\x17\x04\x23\x4c\x33\x22\x3b\x2c\x1a\x1a\x2f\x3e\ \x24\x35\x51\x28\x04\x17\x41\x99\x17\x30\x22\x22\x26\x2b\x24\x36\ \xde\x17\x24\x0e\x11\x27\x16\x1a\x1a\x1f\x93\x1c\x2f\x3d\x22\x5e\ \x68\x2c\x28\x35\x2f\x1d\x33\x46\x29\x35\x51\x38\x1d\x2e\x40\x26\ \x2e\xcb\x2f\x2e\x30\x20\x29\x2e\xaa\x1b\x1f\x25\x1e\x21\x1a\x1a\ \x28\x00\x00\x00\x01\x00\x3e\xff\x3c\x02\x4b\x01\xf0\x00\x27\x00\ \x73\x00\xb8\x00\x27\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\ \x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x20\x10\xb9\x00\ \x05\x00\x01\xf4\xba\x00\x1d\x00\x09\x00\x20\x11\x12\x39\xb8\x00\ \x1d\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\x12\x00\ \x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x0e\ \x03\x15\x14\x16\x33\x3a\x01\x37\x17\x0e\x01\x23\x22\x26\x27\x23\ \x0e\x01\x23\x22\x26\x27\x1e\x01\x17\x23\x3e\x93\x23\x22\x1d\x30\ \x17\x94\x02\x03\x03\x02\x14\x0f\x05\x07\x06\x12\x0d\x25\x18\x31\ \x39\x0d\x04\x14\x3e\x25\x14\x25\x0e\x01\x04\x06\x95\x01\xf0\xfe\ \xe1\x36\x2a\x22\x2b\x01\x32\x2c\x60\x5d\x54\x1f\x17\x12\x02\x6d\ \x05\x07\x30\x2e\x2c\x2d\x09\x10\x3c\x63\x37\x00\x02\x00\x3c\xff\ \xf4\x02\x1d\x02\xa0\x00\x0d\x00\x2f\x00\x57\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\x3e\x59\xbb\x00\ \x25\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x28\x00\x1b\x00\x25\x11\x12\x39\xb8\x00\x28\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x11\x10\xb9\x00\x2c\x00\x01\xf4\ \x30\x31\x25\x32\x3e\x02\x37\x2e\x01\x23\x22\x06\x15\x14\x16\x03\ \x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x35\x34\x26\x23\x22\x06\x07\x01\x10\x13\ \x24\x1f\x19\x08\x15\x33\x1b\x2a\x37\x2e\x73\x29\x58\x35\x3a\x57\ \x3b\x1d\x2a\x4c\x68\x3f\x28\x47\x36\x1f\x20\x39\x4e\x2f\x23\x44\ \x19\x33\x3b\x1d\x32\x17\x6b\x0e\x21\x35\x26\x21\x1b\x36\x39\x2c\ \x2b\x01\xeb\x23\x27\x2c\x4f\x70\x44\x56\x8c\x64\x37\x1c\x33\x49\ \x2d\x33\x56\x3d\x22\x20\x1d\x11\x54\x60\x17\x16\x00\x00\x00\x00\ \x01\x00\x93\xff\x62\x01\xd4\x03\x17\x00\x27\x00\x17\x00\xbb\x00\ \x03\x00\x01\x00\x23\x00\x04\x2b\xbb\x00\x10\x00\x01\x00\x16\x00\ \x04\x2b\x30\x31\x17\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x07\x26\x23\x22\x06\x15\x14\x1e\x02\x15\ \x14\x0e\x02\x23\x22\x26\x27\x37\xa1\x08\x11\x0b\x27\x18\x0c\x0e\ \x0c\x0f\x29\x4a\x3b\x11\x20\x08\x0f\x0c\x17\x27\x18\x0c\x0d\x0c\ \x0f\x29\x49\x3b\x12\x1f\x08\x0e\x2c\x02\x02\x3e\x47\x39\x70\x70\ \x74\x3e\x35\x5a\x42\x26\x05\x02\x6b\x04\x3e\x47\x39\x70\x70\x74\ \x3e\x35\x5a\x42\x26\x05\x03\x6a\x00\x00\x00\x00\x01\x00\x21\xff\ \xb0\x02\x59\x03\x34\x00\x0e\x00\x15\x00\xba\x00\x07\x00\x09\x00\ \x03\x2b\xb8\x00\x09\x10\xb9\x00\x04\x00\x01\xf4\x30\x31\x25\x1e\ \x01\x17\x33\x36\x37\x13\x33\x03\x23\x03\x07\x27\x37\x01\x32\x06\ \x0a\x05\x04\x06\x09\x9d\x62\xd8\x66\x96\x4a\x1a\xae\x92\x14\x2a\ \x14\x2b\x27\x02\xa2\xfc\x7c\x01\x9b\x1f\x45\x47\x00\x00\x00\x00\ \x02\x00\x0e\x00\x00\x02\x4a\x02\x8c\x00\x05\x00\x0b\x00\x45\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x03\xd0\xb8\x00\x01\x10\xb9\x00\x08\x00\ \x01\xf4\x30\x31\x37\x13\x33\x13\x15\x21\x25\x2f\x01\x23\x0f\x01\ \x0e\xc6\xb1\xc5\xfd\xc4\x01\x9b\x45\x39\x04\x37\x44\x59\x02\x33\ \xfd\xcd\x59\x7c\xdc\xc3\xc3\xdc\x00\x00\x00\x00\x01\x00\x0c\x00\ \x00\x02\x4c\x02\x98\x00\x2d\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x2c\ \x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x17\x00\x01\ \xf4\xb8\x00\x1b\xd0\xb8\x00\x0c\x10\xb9\x00\x23\x00\x01\xf4\xb8\ \x00\x01\x10\xb8\x00\x2b\xd0\x30\x31\x37\x33\x35\x2e\x03\x35\x34\ \x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x15\x33\x15\x23\x35\ \x3e\x01\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x16\x17\x15\x23\ \x0c\x6c\x10\x20\x1b\x11\x27\x47\x64\x3e\x3e\x64\x47\x27\x11\x1b\ \x20\x10\x6c\xf4\x29\x24\x10\x1f\x2d\x1d\x1d\x2d\x1f\x10\x24\x29\ \xf4\x77\x04\x10\x30\x3b\x47\x29\x44\x70\x51\x2d\x2d\x51\x70\x44\ \x29\x47\x3b\x30\x10\x04\x77\x6a\x30\x70\x4d\x2a\x48\x33\x1d\x1d\ \x33\x48\x2a\x4d\x70\x30\x6a\x00\x01\x00\x3b\xff\x88\x02\x2e\x02\ \x7b\x00\x0d\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0b\x3e\x59\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\ \x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\xba\x00\x07\x00\x0a\ \x00\x04\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x00\xd0\xb8\x00\x04\ \x10\xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\x30\x31\x01\ \x03\x35\x21\x15\x21\x15\x17\x07\x15\x21\x15\x21\x35\x01\x09\xc4\ \x01\xd1\xfe\xe2\xa7\xae\x01\x3d\xfe\x0d\x01\x01\x01\x23\x57\x7c\ \x04\xfa\xf9\x04\x7c\x57\x00\x00\x01\x00\x19\xff\x88\x02\x3f\x02\ \x7b\x00\x07\x00\x22\x00\xb8\x00\x06\x2f\xb8\x00\x03\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb9\ \x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x21\x11\x23\x19\ \x02\x26\x93\xff\x00\x93\x02\x7b\xfd\x0d\x02\x73\xfd\x8d\x00\x00\ \x02\x00\x4b\xff\xf4\x02\x1c\x02\xd0\x00\x09\x00\x2c\x00\x59\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0f\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\ \x3e\x59\xba\x00\x00\x00\x0d\x00\x1d\x11\x12\x39\xb8\x00\x1d\x10\ \xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x25\x00\x01\xf4\ \xb8\x00\x10\xd0\xb8\x00\x00\x10\xb8\x00\x17\xd0\xb8\x00\x0d\x10\ \xb9\x00\x29\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x23\x22\ \x06\x15\x13\x0e\x01\x23\x22\x26\x27\x0e\x01\x07\x27\x3e\x01\x37\ \x35\x34\x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x15\x14\x16\x33\ \x32\x36\x37\x01\x3c\x2c\x2b\x15\x11\x14\x1d\xe0\x21\x54\x35\x45\ \x6b\x11\x0b\x18\x0c\x37\x1a\x30\x17\x1c\x33\x44\x29\x49\x58\x18\ \x31\x4e\x36\x2d\x20\x1d\x2e\x12\x01\x6e\x2a\x58\x36\x20\x1f\x34\ \x40\xfe\x50\x1d\x30\x49\x4a\x08\x0d\x08\x5a\x10\x1e\x0f\xdc\x3f\ \x5c\x3b\x1d\x5a\x50\x2f\x52\x4e\x4c\x28\x19\x32\x2a\x1c\x10\x00\ \x02\x00\x1a\xff\xf4\x02\x3e\x02\x94\x00\x20\x00\x32\x00\x43\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\ \x3e\x59\xbb\x00\x32\x00\x01\x00\x1b\x00\x04\x2b\xb8\x00\x0a\x10\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x29\x00\x01\xf4\ \x30\x31\x37\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\ \x35\x34\x3e\x02\x33\x32\x1e\x02\x1d\x01\x21\x22\x1d\x01\x14\x16\ \x01\x32\x3d\x01\x34\x27\x2e\x01\x23\x22\x06\x07\x0e\x01\x1d\x01\ \x14\x33\xa4\x1a\x47\x29\x35\x5e\x23\x26\x29\x71\x44\x39\x63\x4b\ \x2b\x2b\x4b\x63\x39\x39\x63\x4b\x2b\xfe\x62\x04\x05\x01\x17\x06\ \x0a\x1a\x46\x26\x29\x47\x1a\x03\x05\x04\x44\x1d\x1f\x3d\x33\x3c\ \x48\x35\x5b\x7a\x46\x46\x7a\x5b\x35\x35\x5b\x7a\x46\x08\x04\xe0\ \x06\x09\x01\x05\x06\xe0\x0c\x0a\x1a\x1c\x1f\x1b\x05\x0c\x05\xdc\ \x06\x00\x00\x00\x01\x00\x0d\xff\xef\x02\x38\x02\x09\x00\x09\x00\ \x0d\x00\xbb\x00\x04\x00\x01\x00\x05\x00\x04\x2b\x30\x31\x37\x01\ \x17\x07\x21\x15\x21\x17\x07\x01\x0d\x01\x16\x46\x96\x01\x65\xfe\ \x9b\x96\x46\xfe\xea\xfe\x01\x0b\x4f\x84\x74\x84\x4f\x01\x0b\x00\ \x01\x00\x1f\xff\xe6\x02\x39\x02\x11\x00\x09\x00\x15\x00\xba\x00\ \x00\x00\x04\x00\x03\x2b\xba\x00\x06\x00\x04\x00\x00\x11\x12\x39\ \x30\x31\x09\x01\x07\x27\x11\x23\x11\x07\x27\x01\x01\x2e\x01\x0b\ \x4f\x84\x74\x84\x4f\x01\x0b\x02\x11\xfe\xea\x45\x96\xfe\x9a\x01\ \x66\x96\x45\x01\x16\x00\x00\x00\x01\x00\x1f\xff\xef\x02\x4a\x02\ \x09\x00\x09\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x03\x00\x04\x2b\ \x30\x31\x25\x01\x27\x37\x21\x35\x21\x27\x37\x01\x02\x4a\xfe\xea\ \x45\x96\xfe\x9a\x01\x66\x96\x45\x01\x16\xfa\xfe\xf5\x4f\x84\x74\ \x84\x4f\xfe\xf5\x00\x00\x00\x00\x01\x00\x1f\xff\xe6\x02\x39\x02\ \x11\x00\x09\x00\x15\x00\xba\x00\x04\x00\x00\x00\x03\x2b\xba\x00\ \x06\x00\x00\x00\x04\x11\x12\x39\x30\x31\x05\x01\x37\x17\x11\x33\ \x11\x37\x17\x01\x01\x2a\xfe\xf5\x4f\x84\x74\x84\x4f\xfe\xf5\x1a\ \x01\x16\x46\x96\x01\x65\xfe\x9b\x96\x46\xfe\xea\x00\x00\x00\x00\ \x01\x00\xb6\x00\x8e\x01\xa2\x01\x7f\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x15\x23\xb6\xec\xec\x01\ \x7f\xf1\x00\x00\x01\x00\x87\x00\x62\x01\xd1\x01\xab\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x37\x17\x07\ \x87\xa5\xa5\xa5\x01\x06\xa5\xa5\xa4\x00\x00\x00\x03\x00\x62\x00\ \x3a\x01\xf6\x01\xd3\x00\x0b\x00\x1f\x00\x33\x00\x27\x00\xbb\x00\ \x20\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x16\x00\x01\x00\x2a\x00\ \x04\x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\x2a\x10\xb8\x00\ \x06\xd0\x30\x31\x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x07\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x01\x2c\x1d\x25\x25\x1d\x1d\x25\x25\x1d\x2b\x4a\x36\x1f\x1f\x36\ \x4a\x2b\x2b\x4a\x36\x1f\x1f\x36\x4a\x2b\x1a\x2d\x22\x13\x13\x22\ \x2d\x1a\x1a\x2d\x22\x13\x13\x22\x2d\xc1\x28\x1d\x1e\x28\x28\x1e\ \x1d\x28\x87\x1e\x36\x4b\x2d\x2d\x4b\x37\x1e\x1e\x37\x4b\x2d\x2d\ \x4b\x36\x1e\x4a\x13\x22\x30\x1d\x1d\x30\x22\x13\x13\x22\x30\x1d\ \x1d\x30\x22\x13\x00\x00\x00\x00\x02\x00\x93\x00\x66\x01\xc5\x01\ \x9d\x00\x03\x00\x09\x00\x15\x00\xba\x00\x00\x00\x08\x00\x03\x2b\ \xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\x30\x31\x25\x35\x23\x15\ \x27\x37\x33\x15\x07\x23\x01\x75\xb1\x31\x42\xf0\x38\xfa\x97\xb5\ \xb5\xcd\x39\xf4\x43\x00\x00\x00\x01\x00\x17\x00\x15\x02\x41\x02\ \x21\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x37\x01\x33\x01\x15\x21\x17\x01\x13\x04\x01\x13\xfd\xd6\x17\x02\ \x0a\xfd\xf6\x02\x00\x00\x00\x00\x02\x00\x17\x00\x15\x02\x41\x02\ \x21\x00\x02\x00\x08\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\x07\x00\ \x04\x2b\x30\x31\x25\x27\x0f\x01\x01\x33\x01\x15\x21\x01\x9c\x70\ \x6f\xa6\x01\x13\x04\x01\x13\xfd\xd6\x74\xdf\xdf\x5d\x02\x0a\xfd\ \xf6\x02\x00\x00\x01\x00\x39\x00\x05\x02\x46\x02\x2e\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x01\x15\ \x01\x23\x39\x02\x02\x0b\xfd\xf5\x02\x02\x2e\xfe\xee\x04\xfe\xed\ \x00\x00\x00\x00\x02\x00\x39\x00\x05\x02\x46\x02\x2e\x00\x02\x00\ \x08\x00\x29\x00\xba\x00\x04\x00\x07\x00\x03\x2b\xba\x00\x00\x00\ \x07\x00\x04\x11\x12\x39\xba\x00\x01\x00\x07\x00\x04\x11\x12\x39\ \xba\x00\x02\x00\x07\x00\x04\x11\x12\x39\x30\x31\x01\x27\x15\x03\ \x33\x01\x15\x01\x23\x01\x77\xde\x60\x02\x02\x0b\xfd\xf5\x02\x01\ \x1a\x6f\xdf\x01\x84\xfe\xee\x04\xfe\xed\x00\x00\x01\x00\x17\x00\ \x13\x02\x41\x02\x1f\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\ \x03\x2b\x30\x31\x13\x35\x21\x15\x01\x23\x17\x02\x2a\xfe\xed\x04\ \x02\x1d\x02\x02\xfd\xf6\x00\x00\x02\x00\x17\x00\x12\x02\x41\x02\ \x1f\x00\x02\x00\x08\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x00\x00\ \x04\x2b\xba\x00\x05\x00\x00\x00\x03\x11\x12\x39\x30\x31\x13\x17\ \x37\x25\x21\x15\x01\x23\x01\xbd\x6f\x70\xfe\x7b\x02\x2a\xfe\xed\ \x04\xfe\xed\x01\xbf\xde\xde\x60\x02\xfd\xf5\x02\x0b\x00\x00\x00\ \x01\x00\x12\x00\x05\x02\x1f\x02\x2e\x00\x05\x00\x0b\x00\xba\x00\ \x02\x00\x03\x00\x03\x2b\x30\x31\x13\x01\x33\x11\x23\x01\x12\x02\ \x0b\x02\x02\xfd\xf5\x01\x1c\x01\x12\xfd\xd7\x01\x13\x00\x00\x00\ \x02\x00\x12\x00\x05\x02\x1f\x02\x2e\x00\x02\x00\x08\x00\x33\x00\ \xba\x00\x08\x00\x03\x00\x03\x2b\xba\x00\x00\x00\x03\x00\x08\x11\ \x12\x39\xba\x00\x01\x00\x03\x00\x08\x11\x12\x39\xba\x00\x02\x00\ \x03\x00\x08\x11\x12\x39\xba\x00\x06\x00\x03\x00\x08\x11\x12\x39\ \x30\x31\x25\x35\x07\x01\x23\x01\x35\x01\x33\x01\xbf\xde\x01\x3e\ \x02\xfd\xf5\x02\x0b\x02\xaa\xdf\x6f\xfe\xeb\x01\x13\x04\x01\x12\ \x00\x00\x00\x00\x02\xff\xe3\xff\xf6\x02\x75\x02\xa3\x00\x03\x00\ \x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\ \x00\x08\x10\xb9\x00\x00\x00\x01\xf4\x30\x31\x25\x11\x21\x11\x03\ \x37\x21\x11\x07\x21\x02\x1d\xfe\x00\x3a\x4a\x02\x48\x41\xfd\xaf\ \x30\x02\x1a\xfd\xe6\x02\x32\x41\xfd\x9e\x4b\x00\x02\xff\xe3\xff\ \xf6\x02\xc1\x03\x2d\x00\x12\x00\x1f\x00\x58\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\ \x00\x0c\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x0f\ \x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\ \xf4\x30\x31\x01\x0e\x01\x0f\x01\x2e\x01\x27\x37\x1e\x01\x17\x33\ \x3e\x01\x37\x21\x11\x21\x13\x0e\x01\x07\x11\x07\x21\x11\x37\x21\ \x3e\x01\x37\x02\x1d\x35\x5b\x22\x8a\x1c\x42\x2e\x5d\x23\x31\x14\ \x04\x1d\x52\x31\xfe\x5f\x02\x00\xa4\x13\x26\x13\x41\xfd\xaf\x4a\ \x01\xca\x1b\x38\x1d\x02\x15\x52\xcb\x7c\x10\x4c\x80\x44\x3d\x37\ \x6f\x39\x64\xb9\x53\xfd\xe6\x02\xae\x12\x28\x17\xfd\xb4\x4b\x02\ \x6c\x41\x27\x45\x1e\x00\x00\x00\x01\xff\xf0\xff\xec\x02\x70\x02\ \xb0\x00\x15\x00\x15\x00\xba\x00\x0f\x00\x00\x00\x03\x2b\xba\x00\ \x0a\x00\x00\x00\x0f\x11\x12\x39\x30\x31\x17\x2e\x03\x27\x37\x1e\ \x01\x17\x33\x3e\x03\x37\x17\x0e\x03\x07\x8d\x10\x21\x26\x2c\x1a\ \x5d\x28\x3d\x18\x04\x1b\x47\x54\x5f\x33\x5a\x32\x62\x59\x4e\x1e\ \x14\x2a\x4d\x48\x47\x25\x3d\x3e\x7d\x3f\x5a\xaa\x9a\x84\x34\x4e\ \x30\x7a\x99\xb7\x6c\x00\x00\x00\x01\x00\x35\xff\xe4\x02\x2d\x02\ \xb6\x00\x28\x00\x17\x00\xb8\x00\x09\x2f\xba\x00\x05\x00\x24\x00\ \x03\x2b\xb8\x00\x09\x10\xb8\x00\x20\xd0\x30\x31\x37\x34\x3e\x02\ \x33\x32\x16\x17\x11\x33\x1e\x03\x17\x1e\x03\x15\x14\x06\x07\x27\ \x3e\x01\x35\x34\x2e\x02\x27\x11\x14\x06\x23\x22\x2e\x02\x35\x1a\ \x2e\x3e\x24\x14\x20\x06\x4f\x04\x0a\x0f\x18\x13\x23\x30\x1d\x0d\ \x1f\x12\x31\x08\x06\x0f\x1c\x29\x1a\x6b\x5b\x15\x28\x1f\x14\x3a\ \x1b\x30\x24\x15\x07\x05\x02\x04\x09\x0d\x0e\x11\x0d\x18\x2f\x30\ \x35\x1e\x2a\x50\x1a\x14\x17\x2a\x1b\x16\x2c\x25\x1e\x09\xfe\x97\ \x62\x65\x0a\x15\x20\x00\x00\x00\x02\x00\x4e\xff\xf6\x02\x0a\x02\ \x9e\x00\x05\x00\x0f\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\ \x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xbb\x00\x02\x00\x01\x00\x0a\ \x00\x04\x2b\xb8\x00\x04\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x1b\ \x01\x33\x13\x03\x23\x3f\x02\x2f\x01\x23\x0f\x01\x1f\x01\x4e\xa2\ \x78\xa2\xa2\x78\x3e\x36\x2d\x2d\x36\x04\x36\x2d\x2d\x36\x01\x4a\ \x01\x54\xfe\xac\xfe\xac\x7b\x79\x60\x60\x79\x79\x60\x60\x79\x00\ \x01\x00\xe5\x01\x63\x01\x8e\x02\xae\x00\x04\x00\x0b\x00\xba\x00\ \x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x0f\x01\x23\xfb\x93\x1a\ \x2f\x60\x02\xae\x91\xba\x00\xff\xff\x00\x70\x01\x63\x02\x04\x02\ \xae\x02\x26\x02\xc7\x8b\x00\x00\x06\x02\xc7\x76\x00\x00\x00\xff\ \xff\x00\xb8\x01\x22\x01\x8d\x02\xb9\x02\x06\x01\xee\x00\x00\xff\ \xff\x00\xca\x01\x22\x01\x9f\x02\xb9\x02\x06\x01\xef\x00\x00\x00\ \x01\x00\xea\x01\xf9\x01\x89\x02\xf3\x00\x0d\x00\x13\x00\xba\x00\ \x00\x00\x0d\x00\x03\x2b\xba\x00\x07\x00\x06\x00\x03\x2b\x30\x31\ \x13\x32\x36\x35\x34\x26\x23\x35\x36\x16\x15\x14\x06\x27\xea\x32\ \x24\x24\x32\x51\x4e\x4e\x51\x02\x32\x26\x1e\x1e\x26\x36\x03\x45\ \x38\x38\x45\x03\x00\x00\x00\x00\x01\x00\xd1\x01\xf9\x01\x70\x02\ \xf3\x00\x0d\x00\x13\x00\xba\x00\x06\x00\x07\x00\x03\x2b\xba\x00\ \x0d\x00\x00\x00\x03\x2b\x30\x31\x01\x22\x06\x15\x14\x16\x33\x15\ \x06\x26\x35\x34\x36\x17\x01\x70\x32\x25\x25\x32\x51\x4e\x4e\x51\ \x02\xba\x26\x1e\x1e\x26\x36\x03\x45\x38\x38\x45\x03\x00\x00\xff\ \xff\x00\x8f\x02\x3e\x01\x7e\x02\xe5\x02\x06\x02\xdf\x00\x00\xff\ \xff\x00\xda\x02\x3e\x01\xc9\x02\xe5\x02\x06\x02\xe1\x00\x00\xff\ \xff\x00\x8a\x02\x3e\x01\xce\x02\xe5\x02\x06\x02\xe3\x00\x00\xff\ \xff\x00\x8a\x02\x3e\x01\xce\x02\xe5\x02\x06\x02\xf5\x00\x00\x00\ \x01\x00\xe0\x01\x79\x01\x78\x02\xe4\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x03\x23\xe0\x98\x1f\x5a\ \x02\xe4\xfe\x95\x00\x00\x00\xff\xff\x00\xa2\x02\x50\x01\xb6\x02\ \xad\x02\x06\x02\xe7\x00\x00\xff\xff\x00\xda\x02\x3e\x01\xc9\x02\ \xe5\x02\x06\x02\xe1\x00\x00\xff\xff\x00\x8f\x02\x3e\x01\x7e\x02\ \xe5\x02\x06\x02\xdf\x00\x00\x00\x01\x00\xe0\xfe\xf7\x01\x78\x00\ \x62\x00\x03\x00\x0b\x00\xba\x00\x03\x00\x00\x00\x03\x2b\x30\x31\ \x01\x23\x13\x33\x01\x78\x98\x1f\x5a\xfe\xf7\x01\x6b\x00\x00\xff\ \xff\x00\x81\x02\x3f\x01\xd7\x02\xce\x02\x06\x02\xe5\x00\x00\xff\ \xff\x00\x70\x02\x3b\x01\xe8\x02\xd8\x02\x06\x02\xed\x00\x00\xff\ \xff\x00\xa2\x02\x50\x01\xb6\x02\xad\x02\x06\x02\xe7\x00\x00\xff\ \xff\x00\x99\x02\x3e\x01\xbf\x02\xda\x02\x06\x02\xe9\x00\x00\xff\ \xff\x00\xbb\x02\x24\x01\x9d\x02\xf0\x02\x06\x02\xf1\x00\x00\xff\ \xff\x00\xaf\x02\x3d\x02\x13\x02\xd4\x02\x06\x02\xf3\x00\x00\xff\ \xff\x00\xca\x02\x39\x01\x8e\x02\xee\x02\x06\x02\xeb\x00\x00\xff\ \xff\x00\xc7\xff\x23\x01\x83\x00\x04\x02\x06\x02\xff\x02\x00\xff\ \xff\x00\xd6\xff\x2e\x01\xa5\x00\x02\x02\x06\x03\x01\x00\x00\x00\ \x01\x00\x8f\x02\x3e\x01\x7e\x02\xe5\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\x8f\x96\x59\x6b\ \x02\xe5\xa7\x00\x01\x00\x8a\x02\xbe\x01\x77\x03\x36\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\ \x8a\x9c\x51\x75\x03\x36\x78\x00\x01\x00\xda\x02\x3e\x01\xc9\x02\ \xe5\x00\x03\x00\x0b\x00\xba\x00\x02\x00\x00\x00\x03\x2b\x30\x31\ \x01\x23\x37\x33\x01\x45\x6b\x59\x96\x02\x3e\xa7\x00\x00\x00\x00\ \x01\x00\xe1\x02\xbe\x01\xce\x03\x36\x00\x03\x00\x0b\x00\xba\x00\ \x02\x00\x00\x00\x03\x2b\x30\x31\x01\x23\x37\x33\x01\x56\x75\x51\ \x9c\x02\xbe\x78\x00\x00\x00\x00\x01\x00\x8a\x02\x3e\x01\xce\x02\ \xe5\x00\x07\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x04\x10\xb8\x00\x03\xdc\xb8\x00\x06\xd0\x30\x31\x13\x33\ \x17\x23\x27\x23\x07\x23\xee\x7c\x64\x6b\x35\x04\x35\x6b\x02\xe5\ \xa7\x5f\x5f\x00\x01\x00\x84\x02\xbe\x01\xd4\x03\x36\x00\x07\x00\ \x19\x00\xbb\x00\x02\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x04\xdc\xb8\x00\x07\xd0\x30\x31\x13\x37\x33\x17\x23\x27\ \x23\x07\x84\x60\x90\x60\x71\x35\x04\x35\x02\xbe\x78\x78\x3d\x3d\ \x00\x00\x00\x00\x01\x00\x81\x02\x3f\x01\xd7\x02\xce\x00\x18\x00\ \x27\x00\xbb\x00\x08\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x0f\x10\ \xb8\x00\x14\xdc\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\ \x0f\x10\xb8\x00\x17\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x23\x81\ \x09\x3e\x2e\x12\x1f\x19\x16\x0b\x10\x14\x07\x4b\x09\x3e\x2e\x13\ \x1e\x1a\x16\x0a\x10\x14\x07\x4b\x02\x3f\x49\x46\x10\x14\x10\x17\ \x1d\x48\x47\x11\x13\x11\x17\x1e\x00\x00\x00\x00\x01\x00\x82\x02\ \xbf\x01\xd6\x03\x47\x00\x17\x00\x2b\x00\xbb\x00\x11\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\xb8\x00\x00\x10\ \xb8\x00\x08\xd0\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x14\xd0\x30\x31\x01\x22\x2e\x02\x23\x22\x06\x07\x23\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x01\x6b\x14\x22\x1d\x19\ \x0c\x0d\x14\x05\x4b\x08\x3c\x27\x14\x22\x1d\x19\x0c\x0d\x14\x05\ \x4b\x08\x3c\x02\xbf\x0e\x11\x0e\x14\x19\x45\x43\x0e\x11\x0e\x14\ \x19\x45\x43\x00\x01\x00\xa2\x02\x50\x01\xb6\x02\xad\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\xa2\x01\x14\xfe\xec\x02\xad\x5d\x00\x00\x01\x00\x9f\x02\ \xd0\x01\xb9\x03\x2d\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x9f\x01\x1a\xfe\xe6\x03\ \x2d\x5d\x00\x00\x01\x00\x99\x02\x3e\x01\xbf\x02\xda\x00\x11\x00\ \x19\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x0c\xdc\xb8\x00\x06\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\ \x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x25\x37\x24\x12\x01\ \x52\x04\x1f\x1e\x1e\x1f\x04\x52\x01\x12\x24\x37\x02\x3e\x1a\x2b\ \x39\x1e\x20\x2b\x2b\x20\x1e\x39\x2b\x1a\x00\x00\x01\x00\xa3\x02\ \xbe\x01\xb5\x03\x36\x00\x0d\x00\x19\x00\xbb\x00\x07\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x04\xdc\xb8\x00\x0a\xd0\ \x30\x31\x01\x22\x26\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\ \x01\x2c\x42\x41\x06\x51\x05\x19\x1a\x1a\x19\x05\x51\x06\x41\x02\ \xbe\x42\x36\x14\x1a\x1a\x14\x36\x42\x00\x00\x00\x01\x00\xca\x02\ \x39\x01\x8e\x02\xee\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\ \x00\x00\x04\x2b\x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x2c\x2b\x37\x37\x2b\x2b\x37\x37\x02\x39\x30\x29\x29\ \x33\x33\x29\x29\x30\x00\x00\x00\x01\x00\xd7\x02\xbd\x01\x81\x03\ \x57\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x25\x30\x30\x25\x25\x30\x30\x02\xbd\x2b\x22\x22\x2b\x2b\x22\x22\ \x2b\x00\x00\x00\x02\x00\x70\x02\x3b\x01\xe8\x02\xd8\x00\x0b\x00\ \x17\x00\x1d\x00\xbb\x00\x00\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\ \x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\xbf\x23\x2c\x2c\x23\x23\x2b\x2b\ \xb7\x23\x2b\x2b\x23\x23\x2c\x2c\x02\x3b\x2d\x22\x21\x2d\x2d\x21\ \x22\x2d\x2d\x22\x21\x2d\x2d\x21\x22\x2d\x00\x00\x02\x00\x83\x02\ \xbc\x01\xd5\x03\x48\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\ \x06\x10\xb8\x00\x12\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xc9\x1f\x27\x27\x1f\x1f\x27\x27\xa7\x1f\x27\x27\x1f\x1f\x27\x27\ \x02\xbc\x28\x1e\x1e\x28\x28\x1e\x1e\x28\x28\x1e\x1e\x28\x28\x1e\ \x1e\x28\x00\x00\x01\x00\xdb\x02\x2d\x01\x94\x02\xf0\x00\x0f\x00\ \x1b\x00\xbb\x00\x00\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\x13\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\xfe\x12\x1a\x24\x2b\ \x11\x5c\x4c\x16\x26\x33\x1c\x02\x67\x03\x0d\x0e\x0e\x11\x02\x4a\ \x03\x31\x28\x1a\x25\x19\x0d\x02\x00\x00\x00\x00\x01\x00\xdb\x02\ \xb3\x01\x94\x03\x76\x00\x0f\x00\x19\x00\xba\x00\x00\x00\x0f\x00\ \x03\x2b\xb8\x00\x00\x10\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\ \x30\x31\x13\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\ \x07\xfe\x12\x1a\x24\x2b\x11\x5c\x4c\x16\x26\x33\x1c\x02\xed\x04\ \x0c\x0e\x0e\x11\x03\x49\x02\x31\x28\x1a\x25\x19\x0e\x02\x00\x00\ \x02\x00\xbb\x02\x24\x01\x9d\x02\xf0\x00\x0b\x00\x17\x00\x17\x00\ \xba\x00\x0c\x00\x00\x00\x03\x2b\xb8\x00\x0c\x10\xb8\x00\x12\xdc\ \xb8\x00\x06\xdc\x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\ \x33\x3e\x3e\x33\x33\x3e\x3e\x33\x11\x18\x18\x11\x11\x18\x18\x02\ \x24\x37\x2f\x2f\x37\x37\x2f\x2f\x37\x37\x1a\x15\x15\x1a\x1a\x15\ \x15\x1a\x00\x00\x02\x00\xbb\x02\xb9\x01\x9d\x03\x7d\x00\x0b\x00\ \x17\x00\x17\x00\xba\x00\x0c\x00\x00\x00\x03\x2b\xb8\x00\x0c\x10\ \xb8\x00\x12\xdc\xb8\x00\x06\xdc\x30\x31\x01\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\ \x14\x16\x01\x2c\x33\x3e\x3e\x33\x33\x3e\x3e\x33\x11\x17\x17\x11\ \x11\x18\x18\x02\xb9\x35\x2d\x2d\x35\x35\x2d\x2d\x35\x37\x17\x14\ \x14\x17\x17\x14\x14\x17\x00\x00\x02\x00\xaf\x02\x3d\x02\x13\x02\ \xd4\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x00\x00\x01\x00\x02\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x13\x33\x07\x23\x37\x33\x07\x23\xf3\x75\x5f\x5a\ \xef\x75\x5f\x5b\x02\xd4\x97\x97\x97\x00\x00\x00\x02\x00\xa3\x02\ \xbe\x02\x13\x03\x36\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x01\x00\ \x01\x00\x03\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x03\x10\xb8\x00\x06\xd0\x30\x31\x13\x37\x33\x07\x37\x33\x07\x23\ \xa3\x3f\x7d\x59\x90\x7d\x5a\x63\x02\xbe\x78\x78\x78\x78\x00\x00\ \x01\x00\x8a\x02\x3e\x01\xce\x02\xe5\x00\x07\x00\x19\x00\xbb\x00\ \x03\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\ \xb8\x00\x01\xd0\x30\x31\x13\x33\x17\x33\x37\x33\x07\x23\x8a\x6b\ \x35\x04\x35\x6b\x64\x7c\x02\xe5\x60\x60\xa7\x00\x01\x00\x84\x02\ \xbe\x01\xd4\x03\x36\x00\x07\x00\x19\x00\xbb\x00\x06\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x06\x10\xb8\x00\x07\xdc\xb8\x00\x04\xd0\ \x30\x31\x01\x07\x23\x27\x33\x17\x33\x37\x01\xd4\x60\x90\x60\x71\ \x35\x04\x35\x03\x36\x78\x78\x3d\x3d\x00\x00\x00\x02\x00\x45\x02\ \x3d\x01\xa9\x02\xd4\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x03\x00\ \x01\x00\x01\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x03\x10\xb8\x00\x06\xd0\x30\x31\x01\x23\x27\x33\x07\x23\x27\x33\ \x01\xa9\x5a\x5f\x75\x66\x5b\x5f\x75\x02\x3d\x97\x97\x97\x00\x00\ \x02\x00\x45\x02\xbe\x01\xb5\x03\x36\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x02\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x01\x27\x33\x17\ \x2b\x01\x27\x33\x01\x52\x59\x7d\x3f\xb3\x63\x5a\x7d\x02\xbe\x78\ \x78\x78\x00\x00\x01\x00\xe8\x02\x20\x01\x61\x02\xf4\x00\x0f\x00\ \x15\x00\xbb\x00\x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x0f\xdc\x30\x31\x01\x06\x07\x36\x33\x32\x16\x15\x14\x06\ \x23\x22\x35\x34\x36\x37\x01\x61\x38\x06\x02\x05\x15\x20\x1f\x16\ \x42\x30\x33\x02\xc7\x14\x27\x01\x1c\x18\x1a\x1f\x53\x2a\x43\x14\ \x00\x00\x00\x00\x01\x00\xf4\x02\x1d\x01\x6d\x02\xf1\x00\x0f\x00\ \x15\x00\xbb\x00\x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x0f\xdc\x30\x31\x13\x36\x37\x06\x23\x22\x26\x35\x34\x36\ \x33\x32\x15\x14\x06\x07\xf4\x38\x06\x02\x06\x15\x1f\x1f\x16\x42\ \x30\x33\x02\x4a\x15\x27\x01\x1b\x18\x1b\x1e\x53\x2a\x43\x14\x00\ \x01\x01\x22\x01\xab\x01\xd7\x02\x7e\x00\x0f\x00\x15\x00\xbb\x00\ \x00\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xdc\ \x30\x31\x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\ \x07\x01\x22\x1e\x25\x0a\x06\x65\x0b\x12\x1b\x2e\x3e\x23\x01\xe6\ \x05\x19\x20\x0e\x18\x08\x2c\x0e\x29\x19\x21\x30\x1f\x11\x02\x00\ \x01\x00\xca\xff\x03\x01\x8e\xff\xb8\x00\x0b\x00\x0d\x00\xbb\x00\ \x06\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x01\x2c\x2b\x37\x37\x2b\x2b\x37\x37\xfd\ \x30\x29\x29\x33\x33\x29\x29\x30\x00\x00\x00\x00\x02\x00\x83\xff\ \x28\x01\xd5\xff\xb4\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\ \x06\x10\xb8\x00\x12\xd0\x30\x31\x17\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xc9\x1f\x27\x27\x1f\x1f\x27\x27\xa7\x1f\x27\x27\x1f\x1f\x27\x27\ \xd8\x28\x1e\x1d\x29\x29\x1d\x1e\x28\x28\x1e\x1d\x29\x29\x1d\x1e\ \x28\x00\x00\x00\x01\x00\xc5\xff\x1b\x01\x81\xff\xd6\x00\x10\x00\ \x1b\x00\xbb\x00\x0f\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x0f\x10\ \xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\x05\x1e\x01\x15\ \x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x37\x01\x08\x44\x35\ \x1d\x30\x40\x24\x0b\x24\x2f\x15\x17\x1c\x2a\x07\x27\x26\x1a\x25\ \x19\x0d\x02\x3b\x04\x10\x11\x0e\x11\x06\x36\x00\x01\x00\xc5\xff\ \x23\x01\x81\x00\x04\x00\x11\x00\x1d\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x11\xd0\xb8\x00\x0b\xdc\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x25\x33\x07\x1e\x01\x15\x14\x0e\x02\x07\ \x27\x3e\x01\x35\x34\x26\x27\x01\x05\x56\x14\x1a\x20\x1d\x30\x40\ \x24\x0b\x24\x2f\x19\x22\x04\x2f\x08\x23\x1f\x1a\x25\x1a\x0d\x02\ \x3b\x04\x14\x14\x0d\x15\x08\x00\x01\x00\xc4\xff\x23\x01\x80\x00\ \x04\x00\x11\x00\x1d\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\ \x02\x10\xb8\x00\x11\xd0\xb8\x00\x0b\xdc\xb9\x00\x0a\x00\x01\xf4\ \x30\x31\x25\x33\x07\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\ \x34\x26\x27\x01\x04\x56\x14\x19\x21\x1d\x31\x40\x23\x0b\x23\x2f\ \x18\x22\x04\x2f\x08\x23\x1f\x1a\x25\x1a\x0d\x02\x3b\x04\x14\x14\ \x0d\x15\x08\x00\x01\x00\xd6\xff\x2e\x01\xa5\x00\x02\x00\x14\x00\ \x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x03\x3e\x59\xbb\x00\x0b\x00\x01\x00\x12\x00\x04\x2b\x30\x31\x17\ \x34\x3e\x02\x37\x33\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x26\xd6\x0f\x15\x18\x0a\x53\x36\x1a\x10\x0a\x12\x07\x1f\ \x14\x3a\x17\x2d\x3d\x77\x16\x26\x1f\x17\x07\x2a\x2d\x14\x12\x07\ \x05\x42\x0f\x12\x2e\x00\x00\x00\x01\x00\xd3\xff\x21\x01\xae\x00\ \x02\x00\x17\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x0d\x00\x04\ \x2b\x30\x31\x25\x0e\x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x01\x78\x1b\x1f\x1a\x10\x0a\ \x12\x08\x22\x14\x3b\x1a\x18\x29\x1f\x12\x10\x16\x1a\x0b\x02\x16\ \x2f\x17\x14\x12\x09\x05\x4a\x0f\x14\x0c\x18\x23\x17\x18\x29\x22\ \x19\x07\x00\x00\x01\x00\xa1\xff\x2e\x01\xb7\xff\xb9\x00\x11\x00\ \x0d\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x23\ \x33\x22\x12\x01\x52\x03\x1c\x1a\x1a\x1c\x03\x52\x01\x12\x22\x33\ \xd2\x17\x26\x33\x1b\x19\x22\x22\x19\x1b\x33\x26\x17\x00\x00\x00\ \x01\x00\xa2\xff\x43\x01\xb6\xff\xa1\x00\x03\x00\x0d\x00\xbb\x00\ \x00\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x05\x21\x35\x21\x01\xb6\ \xfe\xec\x01\x14\xbd\x5e\x00\x00\x03\x00\x8b\x02\x3b\x01\xcd\x03\ \x39\x00\x0b\x00\x17\x00\x1b\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x1a\xdc\xb9\x00\x19\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x25\x21\x15\x21\ \xc9\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\ \xfe\xf8\x01\x14\xfe\xec\x02\x3b\x23\x1a\x1a\x24\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\xfe\x45\x00\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xad\x00\x03\x00\x0f\x00\x1b\x00\x2b\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\ \xb9\x00\x01\x00\x01\xf4\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\ \x0a\x10\xb8\x00\x16\xd0\x30\x31\x13\x21\x15\x21\x17\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x9f\x01\x1a\xfe\xe6\x2a\x1b\x23\x23\x1b\x1b\x23\ \x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\x03\xad\x45\xac\x24\x1a\x1a\ \x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x00\x00\ \x03\x00\x8b\x02\x3b\x01\xcd\x03\x50\x00\x03\x00\x0f\x00\x1b\x00\ \x25\x00\xba\x00\x00\x00\x02\x00\x03\x2b\xbb\x00\x04\x00\x01\x00\ \x0a\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x33\x07\x23\x07\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x3b\x7e\x73\x5e\x1f\x1b\x23\x23\x1b\x1b\x23\x23\xab\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\x50\x6f\xa6\x23\x1a\x1a\x24\x24\ \x1a\x1a\x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xce\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\ \xb8\x00\x00\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x33\x07\x23\x07\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x32\x9a\x76\x75\x18\x1b\x23\x23\x1b\x1b\x23\x23\xab\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\xce\x78\x9a\x24\x1a\x1a\x23\x23\ \x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x03\x00\x8b\x02\ \x3b\x01\xcd\x03\x50\x00\x07\x00\x13\x00\x1f\x00\x2b\x00\xbb\x00\ \x08\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x0e\x10\xb8\x00\x06\xdc\ \xb9\x00\x03\x00\x01\xf4\xb8\x00\x08\x10\xb8\x00\x14\xd0\xb8\x00\ \x0e\x10\xb8\x00\x1a\xd0\x30\x31\x13\x33\x17\x33\x37\x33\x07\x23\ \x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x98\x64\x2e\x04\x2e\x64\x56\x7c\ \x25\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\x1b\x1b\x23\x23\ \x03\x50\x3a\x3a\x6f\xa6\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\ \x1a\x24\x24\x1a\x1a\x23\x00\x00\x03\x00\x84\x02\xbc\x01\xd4\x03\ \xce\x00\x0b\x00\x17\x00\x1f\x00\x2b\x00\xbb\x00\x06\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x19\xdc\xb9\x00\x1e\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x13\x07\x23\x27\ \x33\x17\x33\x37\xc9\x1b\x23\x23\x1b\x1b\x23\x23\xab\x1b\x23\x23\ \x1b\x1b\x23\x23\x2a\x60\x90\x60\x71\x35\x04\x35\x02\xbc\x24\x1a\ \x1a\x23\x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x01\x12\ \x78\x78\x3c\x3c\x00\x00\x00\x00\x03\x00\x8b\x02\x3b\x01\xcd\x03\ \x50\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\x04\x00\x01\x00\ \x0a\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x01\xdc\xb8\x00\x03\xdc\ \xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\ \x30\x31\x01\x23\x27\x33\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x70\ \x5e\x73\x7e\x72\x1b\x23\x23\x1b\x1b\x23\x23\xe1\x1b\x23\x23\x1b\ \x1b\x23\x23\x02\xe1\x6f\xfe\xeb\x23\x1a\x1a\x24\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\x00\x00\x00\x00\x03\x00\x8b\x02\ \xbc\x01\xcd\x03\xce\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x00\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x13\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x77\x75\x76\x9a\x69\x1b\x23\x23\x1b\x1b\x23\x23\xe1\ \x1b\x23\x23\x1b\x1b\x23\x23\x03\x56\x78\xfe\xee\x24\x1a\x1a\x23\ \x23\x1a\x1a\x24\x24\x1a\x1a\x23\x23\x1a\x1a\x24\x00\x00\x00\x00\ \x02\x00\xa1\x02\x3e\x02\x48\x02\xfc\x00\x07\x00\x0b\x00\x19\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\ \x0b\xd0\xb8\x00\x08\xdc\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\ \x25\x33\x07\x23\xf2\x74\x51\x5a\x2f\x04\x2f\x5a\x01\x3a\x6d\x5f\ \x52\x02\xbe\x80\x41\x41\xbe\x76\x00\x00\x00\x00\x02\x00\x8e\x02\ \xbe\x02\x53\x03\x7a\x00\x03\x00\x0b\x00\x19\x00\xbb\x00\x08\x00\ \x01\x00\x05\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x03\xd0\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x27\x33\x17\x23\x27\x23\x07\x23\ \x01\xe1\x72\x63\x53\xb0\x7e\x5f\x68\x34\x04\x34\x68\x03\x7a\x78\ \x2e\x72\x37\x37\x00\x00\x00\x00\x02\x00\xa1\x02\x3e\x02\x25\x02\ \xfc\x00\x07\x00\x0b\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x04\x10\xb8\x00\x09\xd0\xb8\x00\x0b\xdc\x30\x31\ \x13\x33\x17\x23\x27\x23\x07\x23\x25\x23\x27\x33\xf2\x74\x51\x5a\ \x2f\x04\x2f\x5a\x01\x84\x52\x5f\x6d\x02\xbe\x80\x41\x41\x48\x76\ \x00\x00\x00\x00\x02\x00\x8e\x02\xbe\x02\x1a\x03\x7a\x00\x03\x00\ \x0b\x00\x19\x00\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\ \x08\x10\xb8\x00\x01\xd0\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\ \x07\x33\x17\x23\x27\x23\x07\x23\x02\x1a\x54\x62\x71\xe8\x7e\x5f\ \x68\x34\x04\x34\x68\x03\x02\x78\x4a\x72\x37\x37\x00\x00\x00\x00\ \x02\x00\xa1\x02\x3e\x02\x2a\x03\x21\x00\x07\x00\x17\x00\x25\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\ \x17\xd0\xb9\x00\x08\x00\x01\xf4\xb8\x00\x0e\xdc\xb9\x00\x0f\x00\ \x01\xf4\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x25\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\xf2\x74\x51\x5a\x2f\ \x04\x2f\x5a\x01\x0b\x0e\x10\x1b\x26\x0e\x52\x41\x13\x1f\x2a\x18\ \x02\xbe\x80\x41\x41\x68\x03\x0c\x0d\x0e\x11\x02\x3e\x02\x2a\x23\ \x19\x21\x15\x0c\x03\x00\x00\x00\x02\x00\x8e\x02\xbe\x02\x29\x03\ \x95\x00\x0d\x00\x15\x00\x25\x00\xbb\x00\x12\x00\x01\x00\x0f\x00\ \x04\x2b\xb8\x00\x12\x10\xb8\x00\x0d\xd0\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x06\x07\x27\x33\x17\x23\x27\x23\ \x07\x23\x01\xaa\x0e\x12\x1b\x26\x0d\x52\x41\x43\x31\xc8\x7e\x5f\ \x68\x34\x04\x34\x68\x03\x1d\x03\x0b\x0d\x0e\x10\x03\x3c\x02\x2d\ \x21\x2c\x27\x04\x42\x72\x37\x37\x00\x00\x00\x00\x02\x00\x99\x02\ \x3d\x01\xbf\x03\x42\x00\x07\x00\x1d\x00\x39\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x16\xdc\xb8\x00\ \x1b\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\ \x01\xf4\xb8\x00\x0b\x10\xb8\x00\x12\xd0\xb8\x00\x16\x10\xb8\x00\ \x1d\xd0\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x37\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\ \xe9\x86\x50\x5f\x32\x04\x32\x5f\x01\x07\x33\x21\x14\x1d\x17\x13\ \x0b\x1c\x07\x40\x07\x33\x21\x14\x1d\x17\x14\x0a\x1c\x07\x02\xac\ \x6f\x3b\x3b\x93\x3c\x36\x0c\x0e\x0c\x26\x3b\x37\x0c\x0e\x0c\x26\ \x00\x00\x00\x00\x02\x00\x8e\x02\xbe\x01\xca\x03\xc5\x00\x07\x00\ \x1d\x00\x39\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x16\xdc\xb8\x00\x08\xd0\xb8\x00\x16\x10\xb8\x00\ \x1b\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\ \x01\xf4\xb8\x00\x0b\x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x17\x23\ \x27\x23\x07\x23\x37\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\ \x01\x23\x22\x2e\x02\x23\x22\x07\xed\x7e\x5f\x68\x34\x04\x34\x68\ \x09\x06\x33\x22\x14\x1f\x19\x16\x0a\x1b\x09\x3f\x06\x33\x22\x14\ \x1f\x1a\x15\x0a\x1c\x08\x03\x30\x72\x37\x37\x96\x3b\x36\x0c\x0d\ \x0c\x25\x3b\x36\x0c\x0e\x0c\x26\x00\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x2a\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x02\xdc\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x37\x6a\x59\x4a\x2e\x23\x33\x22\ \x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\x33\x03\x2a\ \x76\x76\x17\x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\x00\x00\ \x02\x00\xa4\x02\xbe\x01\xb4\x03\x9f\x00\x03\x00\x11\x00\x19\x00\ \xbb\x00\x0b\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0b\x10\xb8\x00\ \x02\xdc\xb8\x00\x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x3f\x6f\x65\x4a\x2d\ \x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x9f\x77\ \x6a\x42\x36\x18\x1e\x1e\x18\x36\x42\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x2a\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x00\xdc\xb8\x00\ \x03\xdc\x30\x31\x01\x23\x27\x33\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x5a\x4a\x59\x6a\x0b\x23\x33\x22\ \x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\x33\x02\xb4\ \x76\xec\x17\x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\x00\x00\ \x02\x00\xa4\x02\xbe\x01\xb4\x03\x9f\x00\x03\x00\x11\x00\x19\x00\ \xbb\x00\x0b\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0b\x10\xb8\x00\ \x00\xdc\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\x17\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x59\x4a\x65\x6f\x13\ \x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x28\x77\ \xe1\x42\x36\x18\x1e\x1e\x18\x36\x42\x00\x00\x00\x02\x00\xa1\x02\ \x3e\x01\xb7\x03\x67\x00\x11\x00\x21\x00\x25\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb9\x00\ \x12\x00\x01\xf4\xb8\x00\x18\xdc\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\ \x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x2c\ \x23\x33\x22\x12\x01\x41\x05\x23\x22\x22\x23\x05\x41\x01\x12\x22\ \x33\x4f\x0e\x10\x1b\x26\x0d\x52\x42\x13\x1f\x2b\x18\x02\x3e\x17\ \x27\x32\x1b\x1c\x27\x27\x1c\x1b\x32\x27\x17\xae\x03\x0b\x0e\x0e\ \x10\x03\x3e\x03\x2a\x23\x18\x21\x15\x0c\x03\x00\x02\x00\xa4\x02\ \xbe\x01\xb4\x03\xce\x00\x0f\x00\x1d\x00\x25\x00\xbb\x00\x17\x00\ \x01\x00\x10\x00\x04\x2b\xb8\x00\x17\x10\xb8\x00\x0f\xdc\xb9\x00\ \x00\x00\x01\xf4\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\ \x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x17\ \x22\x26\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x01\x00\x0e\ \x13\x1c\x26\x0e\x52\x40\x12\x1f\x2a\x18\x20\x41\x42\x05\x43\x06\ \x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x55\x03\x0b\x0d\x0e\x10\x03\ \x3d\x03\x2d\x21\x16\x1f\x15\x0b\x02\x68\x42\x36\x18\x1e\x1e\x18\ \x36\x42\x00\x00\x02\x00\x9a\x02\x3e\x01\xbe\x03\x42\x00\x11\x00\ \x27\x00\x39\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x09\x10\xb8\x00\x20\xdc\xb8\x00\x25\xdc\xb9\x00\x15\x00\x01\xf4\ \xb8\x00\x20\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x15\x10\xb8\x00\ \x1c\xd0\xb8\x00\x20\x10\xb8\x00\x27\xd0\x30\x31\x01\x22\x2e\x02\ \x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\x3e\x01\x33\x32\ \x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\x01\ \x2c\x23\x33\x22\x12\x01\x45\x05\x1f\x22\x22\x1f\x05\x45\x01\x12\ \x22\x33\xb5\x07\x33\x21\x14\x1d\x17\x13\x0b\x1c\x07\x40\x07\x33\ \x21\x14\x1d\x17\x14\x0a\x1c\x07\x02\x3e\x13\x21\x2b\x18\x14\x1e\ \x1e\x14\x18\x2b\x21\x13\x92\x3c\x36\x0c\x0e\x0c\x26\x3b\x37\x0c\ \x0e\x0c\x26\x00\x02\x00\x93\x02\xbe\x01\xc0\x03\xc6\x00\x0d\x00\ \x25\x00\x39\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x07\x10\xb8\x00\x1d\xdc\xb8\x00\x0e\xd0\xb8\x00\x1d\x10\xb8\x00\ \x22\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x11\x10\xb8\x00\x19\xd0\x30\x31\x01\x22\x26\x27\ \x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\x27\x3e\x01\x33\x32\x1e\ \x02\x33\x32\x36\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\ \x01\x2c\x41\x42\x05\x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\xda\ \x07\x35\x21\x11\x1d\x1a\x17\x0a\x0d\x14\x04\x42\x07\x35\x21\x11\ \x1e\x19\x17\x0a\x0d\x15\x03\x02\xbe\x42\x36\x18\x1e\x1e\x18\x36\ \x42\x96\x3b\x37\x0c\x0f\x0c\x13\x14\x3b\x37\x0c\x0e\x0c\x13\x13\ \x00\x00\x00\x00\x02\x00\x99\x02\x3d\x01\xbf\x03\x42\x00\x07\x00\ \x19\x00\x23\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x08\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x14\xdc\ \xb8\x00\x0e\xd0\x30\x31\x13\x33\x17\x23\x27\x23\x07\x23\x37\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\xe9\x86\x50\ \x5f\x32\x04\x32\x5f\x93\x20\x2f\x20\x11\x01\x45\x04\x1b\x1d\x1d\ \x1b\x04\x45\x01\x11\x20\x2f\x02\xac\x6f\x3b\x3b\x92\x12\x20\x29\ \x18\x14\x1a\x1a\x14\x18\x29\x20\x12\x00\x00\x00\x02\x00\x8e\x02\ \xbe\x01\xca\x03\xc5\x00\x07\x00\x15\x00\x23\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x08\xdc\xb9\x00\ \x0f\x00\x01\xf4\xb8\x00\x12\xdc\xb8\x00\x0c\xd0\x30\x31\x13\x33\ \x17\x23\x27\x23\x07\x23\x37\x22\x26\x27\x33\x1e\x01\x33\x32\x36\ \x37\x33\x0e\x01\xed\x7e\x5f\x68\x34\x04\x34\x68\x9e\x41\x42\x05\ \x43\x06\x1e\x21\x21\x1e\x06\x43\x05\x42\x03\x30\x72\x37\x37\x94\ \x3d\x36\x17\x1a\x1a\x17\x36\x3d\x00\x00\x00\x00\x01\x00\xfd\x02\ \x24\x01\x5b\x03\x02\x00\x04\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x00\x00\x04\x2b\x30\x31\x01\x27\x33\x0f\x01\x01\x02\x05\x5e\x02\ \x18\x02\x24\xde\x45\x99\x00\x00\x01\x00\xd6\x02\x21\x01\x93\x02\ \xdc\x00\x0f\x00\x1b\x00\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0e\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x01\x2e\x01\x35\x34\x3e\x02\x37\x17\x0e\x01\x15\x14\x17\x07\x01\ \x4f\x43\x36\x1d\x31\x40\x24\x0b\x24\x2f\x2b\x1c\x02\x21\x06\x27\ \x26\x19\x26\x19\x0e\x02\x3b\x04\x11\x11\x1a\x0a\x36\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x02\x9d\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x45\x02\ \xe2\xfd\x1e\x01\x71\x8a\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x03\x21\x11\x21\x45\x02\xe2\xfd\x1e\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xe7\xfe\x70\x01\x71\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x11\x23\xe7\x8a\x8a\x03\ \xe8\xfa\x88\x00\x01\x00\xa3\xfe\x70\x01\xb5\x03\xe8\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\ \xa3\x01\x12\xfe\xee\x03\xe8\xfa\x88\x00\x00\x00\x03\x00\x21\x00\ \xe7\x02\x37\x01\x71\x00\x03\x00\x07\x00\x0b\x00\x2d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\ \xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x15\x23\x37\x33\ \x15\x23\x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\ \x71\x8a\x8a\x8a\x8a\x8a\x00\x00\x03\x00\x21\x00\xa3\x02\x37\x01\ \xb5\x00\x03\x00\x07\x00\x0b\x00\x2b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\x11\x23\ \x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\xb5\xfe\xee\x01\x12\xfe\ \xee\x01\x12\xfe\xee\x00\x00\x00\x03\x00\xe7\xff\x6f\x01\x71\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x21\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x37\x33\x15\x23\x11\x33\ \x15\x23\x11\x33\x15\x23\xe7\x8a\x8a\x8a\x8a\x8a\x8a\x4d\xde\x02\ \x2b\xde\x02\x2b\xde\x00\x00\x00\x03\x00\xa3\xff\x6f\x01\xb5\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x21\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x37\x21\x15\x21\x11\x21\ \x15\x21\x11\x21\x15\x21\xa3\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\ \x12\xfe\xee\x4d\xde\x02\x2b\xde\x02\x2b\xde\x00\x04\x00\x12\x00\ \xe7\x02\x45\x01\x71\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x3d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\xb8\x00\x01\x10\xb8\x00\ \x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\x30\x31\x13\x33\x15\x23\ \x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x12\x71\x71\x96\ \x71\x71\x96\x71\x71\x96\x71\x71\x01\x71\x8a\x8a\x8a\x8a\x8a\x8a\ \x8a\x00\x00\x00\x04\x00\x12\x00\xa3\x02\x45\x01\xb5\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x3b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\ \xb8\x00\x01\x10\xb8\x00\x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\ \x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\x11\x23\x13\x33\ \x11\x23\x12\x71\x71\x96\x71\x71\x96\x71\x71\x96\x71\x71\x01\xb5\ \xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x00\x00\ \x04\x00\xe7\xff\x57\x01\x71\x03\x01\x00\x03\x00\x07\x00\x0b\x00\ \x0f\x00\x2b\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xbb\x00\ \x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\ \x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x37\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xe7\x8a\ \x8a\x8a\x8a\x8a\x8a\x8a\x8a\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\ \xb6\xbc\x00\x00\x04\x00\xa3\xff\x57\x01\xb5\x03\x01\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x2b\x00\xbb\x00\x01\x00\x01\x00\x02\x00\ \x04\x2b\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x05\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \x30\x31\x37\x21\x15\x21\x11\x21\x15\x21\x11\x21\x15\x21\x11\x21\ \x15\x21\xa3\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\x12\xfe\xee\x01\ \x12\xfe\xee\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\xb6\xbc\x00\x00\ \x01\x00\xe7\xfe\x70\x02\x9d\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x11\x23\ \xe7\x01\xb6\xfe\xd4\x8a\x01\x71\x8a\xfd\x89\x00\x01\x00\xe7\xfe\ \x70\x02\x9d\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x21\x11\x21\x11\x23\xe7\x01\xb6\xfe\xd4\x8a\ \x01\xb5\xfe\xee\xfd\xcd\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x01\ \x71\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x13\x21\x15\x23\x11\x21\xa3\x01\xfa\xe8\xfe\xee\x01\x71\ \x8a\xfd\x89\x00\x01\x00\xa3\xfe\x70\x02\x9d\x01\xb5\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x23\ \x11\x21\xa3\x01\xfa\xe8\xfe\xee\x01\xb5\xfe\xee\xfd\xcd\x00\x00\ \x01\xff\xbb\xfe\x70\x01\x71\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\ \x45\x01\xb6\x8a\xfe\xd4\x01\x71\xfc\xff\x02\x77\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\x71\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x45\x01\ \xb6\x8a\xfe\xd4\x01\xb5\xfc\xbb\x02\x33\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x01\x71\x00\x05\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x03\x21\x11\x21\x11\x23\x45\x01\xfa\xfe\ \xee\xe8\x01\x71\xfc\xff\x02\x77\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x01\xb5\x00\x05\x00\x0b\x00\xba\x00\x00\x00\x05\x00\ \x03\x2b\x30\x31\x03\x21\x11\x21\x11\x23\x45\x01\xfa\xfe\xee\xe8\ \x01\xb5\xfc\xbb\x02\x33\x00\x00\x01\x00\xe7\x00\xe7\x02\x9d\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x33\x11\x21\x15\x21\xe7\x8a\x01\x2c\xfe\x4a\x03\xe8\ \xfd\x89\x8a\x00\x01\x00\xe7\x00\xa3\x02\x9d\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x11\x21\xe7\x8a\x01\x2c\xfe\x4a\x03\xe8\xfd\xcd\xfe\xee\x00\x00\ \x01\x00\xa3\x00\xe7\x02\x9d\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x21\x11\x33\x15\x21\ \xa3\x01\x12\xe8\xfe\x06\x03\xe8\xfd\x89\x8a\x00\x01\x00\xa3\x00\ \xa3\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x13\x21\x11\x33\x11\x21\xa3\x01\x12\xe8\xfe\x06\ \x03\xe8\xfd\xcd\xfe\xee\x00\x00\x01\xff\xbb\x00\xe7\x01\x71\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x45\x01\x2c\x8a\xfe\x4a\x01\x71\ \x02\x77\xfc\xff\x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x01\x71\x03\ \xe8\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\ \x03\x21\x11\x33\x11\x21\x45\x01\x2c\x8a\xfe\x4a\x01\xb5\x02\x33\ \xfc\xbb\x00\x00\x01\xff\xbb\x00\xe7\x01\xb5\x03\xe8\x00\x05\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x05\x00\x04\x2b\x30\x31\x03\x33\ \x11\x21\x11\x21\x45\xe8\x01\x12\xfe\x06\x01\x71\x02\x77\xfc\xff\ \x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x01\xb5\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x05\x00\x03\x2b\x30\x31\x03\x33\x11\x21\ \x11\x21\x45\xe8\x01\x12\xfe\x06\x01\xb5\x02\x33\xfc\xbb\x00\x00\ \x01\x00\xe7\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\ \x11\x23\xe7\x8a\x01\x2c\xfe\xd4\x8a\x03\xe8\xfd\x89\x8a\xfd\x89\ \x00\x00\x00\x00\x01\x00\xe7\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x11\x21\x11\x23\xe7\x8a\x01\x2c\xfe\xd4\x8a\x03\xe8\xfd\xcd\xfe\ \xee\xfd\xcd\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x08\xd0\x30\x31\x13\x21\x11\x33\x15\x21\x11\x23\x11\x23\ \xa3\x01\x12\xe8\xfe\xd4\x8a\x44\x03\xe8\xfd\x89\x8a\xfd\x89\x02\ \x77\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\x11\x21\x15\x23\x11\x21\ \xa3\x44\x8a\x01\x2c\xe8\xfe\xee\x01\x71\x02\x77\xfd\x89\x8a\xfd\ \x89\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x13\x21\ \x11\x33\x15\x23\x11\x21\xa3\x01\x12\xe8\xe8\xfe\xee\x03\xe8\xfd\ \x89\x8a\xfd\x89\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x09\x00\x13\x00\xba\x00\x03\x00\x04\x00\x03\x2b\xb8\x00\ \x04\x10\xb8\x00\x08\xd0\x30\x31\x13\x21\x11\x33\x11\x21\x11\x23\ \x11\x23\xa3\x01\x12\xe8\xfe\xd4\x8a\x44\x03\xe8\xfd\xcd\xfe\xee\ \xfd\xcd\x02\x33\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x09\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\x11\x21\x11\x23\ \x11\x21\xa3\x44\x8a\x01\x2c\xe8\xfe\xee\x01\xb5\x02\x33\xfd\xcd\ \xfe\xee\xfd\xcd\x00\x00\x00\x00\x01\x00\xa3\xfe\x70\x02\x9d\x03\ \xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\ \x13\x21\x11\x33\x11\x23\x11\x21\xa3\x01\x12\xe8\xe8\xfe\xee\x03\ \xe8\xfd\xcd\xfe\xee\xfd\xcd\x00\x01\xff\xbb\xfe\x70\x01\x71\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x45\x01\x2c\x8a\x8a\xfe\ \xd4\x01\x71\x02\x77\xfa\x88\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\x71\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x01\x00\x06\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x45\x01\x2c\x8a\ \x8a\xfe\xd4\x01\xb5\x02\x33\xfa\x88\x02\x33\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\x03\x33\ \x11\x21\x11\x23\x11\x23\x11\x21\x45\xe8\x01\x12\x44\x8a\xfe\xd4\ \x01\x71\x02\x77\xfc\xff\xfd\x89\x02\x77\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x11\x21\x11\x23\x45\x01\x2c\x8a\x44\xfe\xee\xe8\ \x01\x71\x02\x77\xfd\x89\xfc\xff\x02\x77\x00\x00\x01\xff\xbb\xfe\ \x70\x01\xb5\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x21\x11\x23\x45\xe8\ \x01\x12\xfe\xee\xe8\x01\x71\x02\x77\xfa\x88\x02\x77\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x33\x11\x21\x11\x23\x11\x23\x11\x21\x45\xe8\x01\x12\x44\x8a\ \xfe\xd4\x01\xb5\x02\x33\xfc\xbb\xfd\xcd\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x33\x11\x21\x11\x23\x45\x01\x2c\x8a\x44\xfe\ \xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfc\xbb\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x06\x00\x03\x2b\x30\x31\x03\x33\x11\x21\x11\x21\x11\x23\ \x45\xe8\x01\x12\xfe\xee\xe8\x01\xb5\x02\x33\xfa\x88\x02\x33\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x01\x71\x00\x07\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x45\x02\xe2\xfe\xd4\x8a\ \xfe\xd4\x01\x71\x8a\xfd\x89\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x09\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x11\x23\x11\x21\ \x45\x01\xb6\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\xb5\x44\x8a\xfd\x89\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x09\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\ \x35\x21\x11\x21\x11\x23\x11\x21\x45\x01\x2c\x01\xb6\xfe\xd4\x8a\ \xfe\xd4\x01\x71\x44\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x11\x21\ \x11\x23\x11\x21\x45\x02\xe2\xfe\xd4\x8a\xfe\xd4\x01\xb5\xfe\xee\ \xfd\xcd\x02\x33\x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\ \x71\x00\x07\x00\x15\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x23\x11\x21\ \x11\x23\x45\x02\xe2\xe8\xfe\xee\xe8\x01\x71\x8a\xfd\x89\x02\x77\ \x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x09\x00\ \x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\ \x15\x33\x15\x23\x11\x21\x11\x23\x45\x01\xfa\xe8\xe8\xfe\xee\xe8\ \x01\xb5\x44\x8a\xfd\x89\x02\x33\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\xb5\x00\x09\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\x30\x31\x03\x33\x35\x21\x11\x23\x11\x21\x11\x23\ \x45\xe8\x01\xfa\xe8\xfe\xee\xe8\x01\x71\x44\xfe\xee\xfd\xcd\x02\ \x77\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x01\xb5\x00\x07\x00\ \x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x03\x21\x11\x23\x11\x21\x11\x23\x45\x02\xe2\xe8\ \xfe\xee\xe8\x01\xb5\xfe\xee\xfd\xcd\x02\x33\x00\x01\xff\xbb\x00\ \xe7\x02\x9d\x03\xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x45\x01\x2c\x8a\x01\x2c\xfd\x1e\x01\x71\ \x02\x77\xfd\x89\x8a\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x09\x00\x0d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\x45\x01\x2c\x8a\ \x01\x2c\xfe\xd4\xfe\x4a\x01\xb5\x02\x33\xfd\x89\x8a\x44\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x09\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x11\x21\x35\x21\x45\x01\x2c\x8a\x01\x2c\xfe\x4a\xfe\xd4\x01\x71\ \x02\x77\xfd\xcd\xfe\xee\x44\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x07\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x11\x21\ \x45\x01\x2c\x8a\x01\x2c\xfd\x1e\x01\xb5\x02\x33\xfd\xcd\xfe\xee\ \x00\x00\x00\x00\x01\xff\xbb\x00\xe7\x02\x9d\x03\xe8\x00\x07\x00\ \x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x03\x33\x11\x21\x11\x33\x15\x21\x45\xe8\ \x01\x12\xe8\xfd\x1e\x01\x71\x02\x77\xfd\x89\x8a\x00\x00\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x09\x00\x0d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x33\ \x15\x23\x15\x21\x45\xe8\x01\x12\xe8\xe8\xfe\x06\x01\xb5\x02\x33\ \xfd\x89\x8a\x44\x00\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x03\ \xe8\x00\x09\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\ \x30\x31\x03\x33\x11\x21\x11\x33\x11\x21\x35\x23\x45\xe8\x01\x12\ \xe8\xfe\x06\xe8\x01\x71\x02\x77\xfd\xcd\xfe\xee\x44\x00\x00\x00\ \x01\xff\xbb\x00\xa3\x02\x9d\x03\xe8\x00\x07\x00\x13\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x21\x45\xe8\x01\x12\xe8\xfd\x1e\x01\ \xb5\x02\x33\xfd\xcd\xfe\xee\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x45\x01\ \x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\x89\x8a\ \xfd\x89\x02\x77\x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x15\x00\xba\x00\x01\x00\x0a\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x45\x01\x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\ \xd4\x01\xb5\x02\x33\xfd\x89\x8a\xfd\x89\x02\x33\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\x0a\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x11\x21\x11\x23\x11\x21\x45\x01\ \x2c\x8a\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\xcd\xfe\ \xee\xfd\xcd\x02\x77\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x11\x21\x11\x23\x11\x21\x45\x01\x2c\x8a\ \x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\ \xcd\x02\x33\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x1d\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x33\ \x11\x21\x11\x33\x15\x21\x11\x23\x11\x21\x45\xe8\x01\x12\xe8\xfe\ \xd4\x8a\xfe\xd4\x01\x71\x02\x77\xfd\x89\x8a\xfd\x89\x02\x77\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x23\x11\x21\x11\x23\x45\x01\x2c\x8a\x01\x2c\xe8\xfe\xee\xe8\ \x01\x71\x02\x77\xfd\x89\x8a\xfd\x89\x02\x77\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x11\x21\ \x11\x23\x45\xe8\x01\x12\xe8\xe8\xfe\xee\xe8\x01\x71\x02\x77\xfd\ \x89\x8a\xfd\x89\x02\x77\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x0c\x10\xb8\x00\x08\xd0\ \x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x15\x23\x11\x23\x11\x21\ \x45\xe8\x01\x12\xe8\xe8\x44\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\x89\ \x8a\x44\xfd\xcd\x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x06\x10\xb8\x00\x0a\xd0\ \x30\x31\x03\x33\x11\x21\x11\x33\x11\x21\x11\x23\x11\x23\x35\x23\ \x45\xe8\x01\x12\xe8\xfe\xd4\x8a\x44\xe8\x01\x71\x02\x77\xfd\xcd\ \xfe\xee\xfd\xcd\x02\x33\x44\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \x30\x31\x03\x21\x11\x33\x11\x33\x15\x33\x15\x23\x11\x21\x11\x23\ \x45\x01\x2c\x8a\x44\xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\xcd\ \x44\x8a\xfd\x89\x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x07\x00\x08\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x03\x33\x35\x33\x11\x33\x11\x21\x11\x23\x11\x21\x11\x23\ \x45\xe8\x44\x8a\x01\x2c\xe8\xfe\xee\xe8\x01\x71\x44\x02\x33\xfd\ \xcd\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x21\x11\x23\x11\x21\x45\xe8\x01\x12\ \xe8\xfe\xd4\x8a\xfe\xd4\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x11\x23\x11\x21\x11\x23\x45\x01\x2c\x8a\x01\x2c\xe8\xfe\ \xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\x02\x33\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x33\x11\x21\x11\x33\x15\x23\x11\x21\x11\x23\x45\xe8\ \x01\x12\xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\x89\x8a\xfd\x89\ \x02\x33\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x0b\x00\ \x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\ \x0a\x00\x04\x2b\x30\x31\x03\x33\x11\x21\x11\x33\x11\x23\x11\x21\ \x11\x23\x45\xe8\x01\x12\xe8\xe8\xfe\xee\xe8\x01\x71\x02\x77\xfd\ \xcd\xfe\xee\xfd\xcd\x02\x77\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x33\x11\x21\x11\x33\x11\x23\x11\x21\x11\x23\x45\xe8\x01\x12\ \xe8\xe8\xfe\xee\xe8\x01\xb5\x02\x33\xfd\xcd\xfe\xee\xfd\xcd\x02\ \x33\x00\x00\x00\x02\x00\x4b\x00\xe7\x02\x0d\x01\x71\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x33\x15\x23\x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\ \x71\x8a\x8a\x8a\x00\x00\x00\x00\x02\x00\x4b\x00\xa3\x02\x0d\x01\ \xb5\x00\x03\x00\x07\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x13\x33\x11\x23\x01\x33\x11\x23\x4b\x96\x96\x01\x2c\x96\ \x96\x01\xb5\xfe\xee\x01\x12\xfe\xee\x00\x00\x00\x02\x00\xe7\xff\ \xb5\x01\x71\x02\xa3\x00\x03\x00\x07\x00\x13\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\x30\x31\x37\x33\ \x15\x23\x11\x33\x15\x23\xe7\x8a\x8a\x8a\x8a\xaf\xfa\x02\xee\xfa\ \x00\x00\x00\x00\x02\x00\xa3\xff\xb5\x01\xb5\x02\xa3\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\x30\x31\x37\x21\x15\x21\x11\x21\x15\x21\xa3\x01\ \x12\xfe\xee\x01\x12\xfe\xee\xaf\xfa\x02\xee\xfa\x00\x00\x00\x00\ \x02\xff\xbb\x00\x5e\x02\x9d\x01\xfa\x00\x03\x00\x07\x00\x17\x00\ \xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x45\x02\ \xe2\xfd\x1e\x02\xe2\xfd\x1e\x01\xfa\x89\x8a\x89\x00\x00\x00\x00\ \x02\x00\x5e\xfe\x70\x01\xfa\x03\xe8\x00\x03\x00\x07\x00\x1b\x00\ \xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\ \xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x23\x01\x33\ \x11\x23\x5e\x89\x89\x01\x13\x89\x89\x03\xe8\xfa\x88\x05\x78\xfa\ \x88\x00\x00\x00\x01\x00\xe7\xfe\x70\x02\x9d\x01\xfa\x00\x09\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x00\ \x10\xb9\x00\x02\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\x21\x15\ \x21\x11\x23\xe7\x01\xb6\xfe\xd4\x01\x2c\xfe\xd4\x8a\x01\xfa\x89\ \x8a\x89\xfe\x12\x00\x00\x00\x00\x01\x00\x5e\xfe\x70\x02\x9d\x01\ \x71\x00\x0a\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\x03\x00\x04\x2b\ \xb8\x00\x02\x10\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb8\x00\x07\xd0\ \x30\x31\x13\x33\x21\x15\x23\x11\x23\x11\x23\x11\x23\x5e\x89\x01\ \xb6\xa3\x89\x8a\x89\x01\x71\x8a\xfd\x89\x02\x77\xfd\x89\x00\x00\ \x02\x00\x5e\xfe\x70\x02\x9d\x01\xfa\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x02\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x11\x23\x01\x21\x15\ \x23\x11\x23\x5e\x02\x3f\xfe\x4a\x89\x01\x13\x01\x2c\xa3\x89\x01\ \xfa\x89\xfc\xff\x02\x77\x89\xfe\x12\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x01\x71\x01\xfa\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x08\x00\x01\xf4\x30\ \x31\x03\x21\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\xb6\x8a\xfe\ \xd4\x01\x2c\xfe\xd4\x01\xfa\xfc\x76\x01\xee\x89\x8a\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x01\xfa\x01\x71\x00\x09\x00\x15\x00\xbb\x00\ \x07\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\ \x30\x31\x25\x23\x11\x23\x11\x23\x35\x21\x11\x23\x01\x71\x8a\x89\ \xa3\x02\x3f\x89\xe7\xfd\x89\x02\x77\x8a\xfc\xff\x00\x00\x00\x00\ \x02\xff\xbb\xfe\x70\x01\xfa\x01\xfa\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x00\x10\xb9\ \x00\x04\x00\x01\xf4\x30\x31\x03\x21\x11\x23\x11\x21\x15\x21\x11\ \x23\x11\x23\x45\x02\x3f\x89\xfe\x4a\x01\x2c\x89\xa3\x01\xfa\xfc\ \x76\x03\x01\x8a\xfd\x89\x01\xee\x00\x00\x00\x00\x01\x00\xe7\x00\ \x5e\x02\x9d\x03\xe8\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x08\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\x30\ \x31\x13\x33\x11\x21\x15\x21\x15\x21\x15\x21\xe7\x8a\x01\x2c\xfe\ \xd4\x01\x2c\xfe\x4a\x03\xe8\xfe\x12\x89\x8a\x89\x00\x00\x00\x00\ \x01\x00\x5e\x00\xe7\x02\x9d\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x13\x33\x11\x33\x11\x33\x11\x33\x15\x21\x5e\x89\x8a\x89\ \xa3\xfd\xc1\x03\xe8\xfd\x89\x02\x77\xfd\x89\x8a\x00\x00\x00\x00\ \x02\x00\x5e\x00\x5e\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\ \x59\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x08\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x01\x33\x11\ \x33\x15\x21\x5e\x89\x01\xb6\xfd\xc1\x01\x13\x89\xa3\xfe\xd4\x03\ \xe8\xfc\xff\x89\x03\x8a\xfe\x12\x89\x00\x00\x00\x01\xff\xbb\x00\ \x5e\x01\x71\x03\xe8\x00\x09\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x08\x00\x01\xf4\x30\ \x31\x03\x21\x11\x33\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\xfe\ \x4a\x01\x2c\xfe\xd4\x01\xfa\x01\xee\xfc\x76\x89\x8a\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x01\xfa\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x21\x45\xa3\x89\x8a\ \x89\xfd\xc1\x01\x71\x02\x77\xfd\x89\x02\x77\xfc\xff\x00\x00\x00\ \x02\xff\xbb\x00\x5e\x01\xfa\x03\xe8\x00\x05\x00\x0b\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x06\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x27\x21\x11\x33\x11\x21\x11\x33\x11\ \x33\x11\x21\x45\x01\xb6\x89\xfd\xc1\xa3\x89\xfe\xd4\xe7\x03\x01\ \xfc\x76\x01\x9c\x01\xee\xfd\x89\x00\x00\x00\x00\x01\x00\xe7\xfe\ \x70\x02\x9d\x03\xe8\x00\x0b\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\ \x00\x08\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\x00\x01\xf4\x30\ \x31\x13\x33\x11\x21\x15\x21\x15\x21\x15\x21\x11\x23\xe7\x8a\x01\ \x2c\xfe\xd4\x01\x2c\xfe\xd4\x8a\x03\xe8\xfe\x12\x89\x8a\x89\xfe\ \x12\x00\x00\x00\x02\x00\x5e\xfe\x70\x02\x9d\x03\xe8\x00\x07\x00\ \x0b\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\ \x01\x33\x11\x33\x15\x23\x11\x23\x01\x33\x11\x23\x01\x71\x89\xa3\ \xa3\x89\xfe\xed\x89\x89\x03\xe8\xfd\x89\x8a\xfd\x89\x05\x78\xfa\ \x88\x00\x00\x00\x03\x00\x5e\xfe\x70\x02\x9d\x03\xe8\x00\x03\x00\ \x09\x00\x0f\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x07\x3e\x59\xbb\x00\x0b\x00\x01\x00\x0c\x00\x04\ \x2b\xb8\x00\x06\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x33\x11\ \x23\x01\x33\x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\x5e\x89\x89\ \x01\x13\x89\xa3\xfe\xd4\x01\x2c\xa3\x89\x03\xe8\xfa\x88\x05\x78\ \xfe\x12\x89\x8a\x89\xfe\x12\x00\x01\xff\xbb\xfe\x70\x01\x71\x03\ \xe8\x00\x0b\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xbb\x00\x09\x00\x01\x00\x06\x00\x04\ \x2b\xb8\x00\x00\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x03\x21\x11\ \x33\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\x8a\xfe\xd4\ \x01\x2c\xfe\xd4\x01\xfa\x01\xee\xfa\x88\x01\xee\x89\x8a\x00\x00\ \x02\xff\xbb\xfe\x70\x01\xfa\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\ \xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x33\ \x11\x23\x11\x23\x01\x33\x11\x23\x45\xa3\x89\x89\xa3\x01\xb6\x89\ \x89\x01\x71\x02\x77\xfa\x88\x02\x77\x03\x01\xfa\x88\x00\x00\x00\ \x03\xff\xbb\xfe\x70\x01\xfa\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\ \x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x07\x3e\x59\xbb\x00\x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x0a\ \x10\xb9\x00\x0e\x00\x01\xf4\x30\x31\x01\x33\x11\x23\x01\x21\x11\ \x23\x11\x23\x11\x33\x11\x33\x11\x21\x01\x71\x89\x89\xfe\x4a\x01\ \x2c\x89\xa3\xa3\x89\xfe\xd4\x03\xe8\xfa\x88\x02\x77\xfd\x89\x01\ \xee\x01\x9c\x01\xee\xfd\x89\x00\x02\xff\xbb\xfe\x70\x02\x9d\x01\ \xfa\x00\x07\x00\x0b\x00\x30\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\ \x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\xbb\x00\x01\x00\x01\x00\x02\ \x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x08\x10\xb9\ \x00\x0a\x00\x01\xf4\x30\x31\x27\x21\x15\x21\x11\x23\x11\x21\x11\ \x21\x15\x21\x45\x02\xe2\xfe\xd4\x8a\xfe\xd4\x02\xe2\xfd\x1e\xe7\ \x89\xfe\x12\x01\xee\x01\x9c\x89\x00\x00\x00\x00\x01\xff\xbb\xfe\ \x70\x02\x9d\x01\x71\x00\x0b\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x15\x23\x11\x23\x11\x23\x11\x23\ \x11\x23\x45\x02\xe2\xa3\x89\x8a\x89\xa3\x01\x71\x8a\xfd\x89\x02\ \x77\xfd\x89\x02\x77\x00\x00\x00\x03\xff\xbb\xfe\x70\x02\x9d\x01\ \xfa\x00\x05\x00\x0b\x00\x0f\x00\x38\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xbb\x00\x01\x00\x01\ \x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x06\xd0\xb8\x00\x04\ \x10\xb8\x00\x08\xd0\xb8\x00\x0c\x10\xb9\x00\x0e\x00\x01\xf4\x30\ \x31\x27\x21\x11\x23\x11\x23\x25\x21\x15\x23\x11\x23\x01\x21\x15\ \x21\x45\x01\x2c\x89\xa3\x01\xb6\x01\x2c\xa3\x89\xfe\x4a\x02\xe2\ \xfd\x1e\xe7\xfd\x89\x01\xee\x89\x89\xfe\x12\x03\x8a\x89\x00\x00\ \x02\xff\xbb\x00\x5e\x02\x9d\x03\xe8\x00\x07\x00\x0b\x00\x3d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\ \x3e\x59\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb9\x00\x06\x00\x01\xf4\xb8\x00\x07\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x15\x21\x15\x21\x15\x21\x45\x01\x2c\x8a\x01\x2c\xfd\x1e\ \x02\xe2\xfd\x1e\x01\xfa\x01\xee\xfe\x12\x89\x8a\x89\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x02\x9d\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x00\xd0\ \xb8\x00\x09\x10\xb8\x00\x04\xd0\x30\x31\x03\x33\x11\x33\x11\x33\ \x11\x33\x11\x33\x15\x21\x45\xa3\x89\x8a\x89\xa3\xfd\x1e\x01\x71\ \x02\x77\xfd\x89\x02\x77\xfd\x89\x8a\x00\x00\x00\x03\xff\xbb\x00\ \x5e\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x0f\x00\x45\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\ \xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x08\x10\xb9\x00\ \x04\x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\x0a\xd0\xb8\x00\x0b\xd0\ \x30\x31\x03\x33\x11\x33\x11\x21\x01\x33\x11\x33\x15\x21\x05\x21\ \x15\x21\x45\xa3\x89\xfe\xd4\x01\xb6\x89\xa3\xfe\xd4\xfe\x4a\x02\ \xe2\xfd\x1e\x01\xfa\x01\xee\xfd\x89\x02\x77\xfe\x12\x89\x8a\x89\ \x00\x00\x00\x00\x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x13\x00\ \x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\ \x00\x07\x3e\x59\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x04\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\ \xb8\x00\x09\x10\xb8\x00\x10\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\ \xb8\x00\x13\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x15\x21\x11\x23\x11\x21\x35\x21\x35\x21\x45\x01\x2c\x8a\x01\x2c\ \xfe\xd4\x01\x2c\xfe\xd4\x8a\xfe\xd4\x01\x2c\xfe\xd4\x01\xfa\x01\ \xee\xfe\x12\x89\x8a\x89\xfe\x12\x01\xee\x89\x8a\x00\x00\x00\x00\ \x01\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x13\x00\x2d\x00\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x00\xd0\ \xb8\x00\x09\x10\xb8\x00\x04\xd0\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\ \xb8\x00\x0a\x10\xb8\x00\x12\xd0\x30\x31\x03\x33\x11\x33\x11\x33\ \x11\x33\x11\x33\x15\x23\x11\x23\x11\x23\x11\x23\x11\x23\x45\xa3\ \x89\x8a\x89\xa3\xa3\x89\x8a\x89\xa3\x01\x71\x02\x77\xfd\x89\x02\ \x77\xfd\x89\x8a\xfd\x89\x02\x77\xfd\x89\x02\x77\x00\x00\x00\x00\ \x04\xff\xbb\xfe\x70\x02\x9d\x03\xe8\x00\x05\x00\x0b\x00\x11\x00\ \x17\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\ \x00\x0e\x00\x07\x3e\x59\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x0e\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x05\xd0\xb8\x00\ \x10\xd0\xb8\x00\x11\xd0\xb8\x00\x07\x10\xb8\x00\x12\xd0\xb8\x00\ \x0a\x10\xb8\x00\x14\xd0\x30\x31\x03\x33\x11\x33\x11\x21\x15\x21\ \x11\x23\x11\x23\x01\x33\x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\ \x45\xa3\x89\xfe\xd4\x01\x2c\x89\xa3\x01\xb6\x89\xa3\xfe\xd4\x01\ \x2c\xa3\x89\x01\xfa\x01\xee\xfd\x89\x8a\xfd\x89\x01\xee\x03\x8a\ \xfe\x12\x89\x8a\x89\xfe\x12\x00\x01\x00\xe7\xfe\x70\x02\x9d\x01\ \x71\x00\x0f\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x33\x34\x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\x11\x23\ \xe7\x3a\x64\x86\x4d\x45\x45\x30\x54\x3f\x24\x8a\x4c\x87\x64\x3a\ \x8a\x24\x3f\x54\x30\xfe\x70\x00\x01\xff\xbb\xfe\x70\x01\x71\x01\ \x71\x00\x0f\x00\x0d\x00\xbb\x00\x0a\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x01\x23\x11\x34\x2e\x02\x2b\x01\x35\x33\x32\x1e\x02\x15\ \x01\x71\x8a\x24\x3f\x54\x30\x45\x45\x4c\x87\x64\x3a\xfe\x70\x01\ \x90\x30\x54\x3f\x24\x8a\x3a\x64\x87\x4c\x00\x00\x01\xff\xbb\x00\ \xe7\x01\x71\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\x08\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x01\x14\x0e\x02\x2b\x01\x35\x33\x32\x3e\ \x02\x35\x11\x33\x01\x71\x3a\x64\x87\x4c\x45\x45\x30\x54\x3f\x24\ \x8a\x02\x58\x4d\x86\x64\x3a\x8a\x24\x3f\x54\x30\x01\x90\x00\x00\ \x01\x00\xe7\x00\xe7\x02\x9d\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\ \x08\x00\x01\x00\x09\x00\x04\x2b\x30\x31\x13\x33\x11\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x35\xe7\x8a\x24\x3f\x54\x30\x45\x45\ \x4d\x86\x64\x3a\x03\xe8\xfe\x70\x30\x54\x3f\x24\x8a\x3a\x64\x86\ \x4d\x00\x00\x00\x01\xff\xbb\xfe\xf3\x02\x9d\x03\x65\x00\x05\x00\ \x0b\x00\xba\x00\x00\x00\x03\x00\x03\x2b\x30\x31\x01\x33\x15\x01\ \x23\x35\x02\x13\x8a\xfd\xa8\x8a\x03\x65\x8a\xfc\x18\x8a\x00\x00\ \x01\xff\xbb\xfe\xf3\x02\x9d\x03\x65\x00\x05\x00\x0b\x00\xba\x00\ \x05\x00\x02\x00\x03\x2b\x30\x31\x05\x15\x23\x01\x35\x33\x02\x9d\ \x8a\xfd\xa8\x8a\x83\x8a\x03\xe8\x8a\x00\x00\x00\x01\xff\xbb\xfe\ \xf3\x02\x9d\x03\x65\x00\x0f\x00\x2f\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\xba\x00\x00\x00\x06\x00\x02\x11\x12\x39\xba\x00\x08\x00\ \x06\x00\x02\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x09\xd0\xb8\x00\ \x02\x10\xb8\x00\x0e\xd0\x30\x31\x01\x13\x33\x15\x09\x01\x15\x23\ \x0b\x01\x23\x35\x09\x01\x35\x33\x01\x2c\xe7\x8a\xfe\xfd\x01\x03\ \x8a\xe7\xe7\x8a\x01\x03\xfe\xfd\x8a\x01\xe3\x01\x82\x8a\xfe\x51\ \xfe\x51\x8a\x01\x82\xfe\x7e\x8a\x01\xaf\x01\xaf\x8a\x00\x00\x00\ \x01\xff\xbb\x00\xe7\x01\x71\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x45\x01\ \xb6\xfe\x4a\x01\x71\x8a\x00\x00\x01\x00\xe7\x00\xe7\x01\x71\x03\ \xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x33\x11\x23\xe7\x8a\x8a\x03\xe8\xfc\xff\x00\x01\x00\xe7\x00\ \xe7\x02\x9d\x01\x71\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\xe7\x01\xb6\xfe\x4a\x01\ \x71\x8a\x00\x00\x01\x00\xe7\xfe\x70\x01\x71\x01\x71\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x11\x23\ \xe7\x8a\x8a\x01\x71\xfc\xff\x00\x01\xff\xbb\x00\xa3\x01\x71\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x03\x21\x11\x21\x45\x01\xb6\xfe\x4a\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xa3\x00\xe7\x01\xb5\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\xa3\x01\x12\xfe\ \xee\x03\xe8\xfc\xff\x00\x00\x00\x01\x00\xe7\x00\xa3\x02\x9d\x01\ \xb5\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x21\x11\x21\xe7\x01\xb6\xfe\x4a\x01\xb5\xfe\xee\x00\x00\x00\ \x01\x00\xa3\xfe\x70\x01\xb5\x01\x71\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x13\x21\x11\x21\xa3\x01\x12\xfe\ \xee\x01\x71\xfc\xff\x00\x00\x00\x01\xff\xbb\x00\xa3\x02\x9d\x01\ \xb5\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x35\x21\x11\x21\x35\x21\x45\x01\x2c\x01\xb6\xfe\ \x4a\xfe\xd4\x01\x71\x44\xfe\xee\x44\x00\x00\x00\x01\x00\xa3\xfe\ \x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x06\x00\ \x03\x2b\x30\x31\x13\x33\x11\x33\x11\x33\x11\x21\xa3\x44\x8a\x44\ \xfe\xee\x01\x71\x02\x77\xfd\x89\xfc\xff\x00\x00\x01\xff\xbb\x00\ \xa3\x02\x9d\x01\xb5\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x45\x01\ \xb6\x01\x2c\xfe\xd4\xfe\x4a\x01\xb5\x44\x8a\x44\x00\x00\x00\x00\ \x01\x00\xa3\xfe\x70\x01\xb5\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x13\x21\x11\x23\x11\x23\x11\x23\ \xa3\x01\x12\x44\x8a\x44\x03\xe8\xfc\xff\xfd\x89\x02\x77\x00\x00\ \x01\x00\x00\x01\x2c\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\xff\ \xb5\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x15\x21\x15\x21\x02\x58\xfd\xa8\x4b\x7d\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x00\x32\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x35\x21\x15\x21\x02\x58\xfd\xa8\x32\xfa\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x00\xaf\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x11\x21\x02\x58\xfd\xa8\ \xaf\xfe\x89\x00\x01\x00\x00\xff\x38\x02\x58\x01\x2c\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x01\xa9\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\x01\xa9\xfd\x8f\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x02\x26\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x02\x26\xfd\x12\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x02\xa3\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\x02\xa3\xfc\x95\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x0d\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x02\x0d\xfd\xf3\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\xc2\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\xc2\xfe\x3e\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x01\x77\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x01\x77\xfe\x89\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x00\xe1\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x33\x11\x23\xe1\xe1\x03\x20\xfc\x18\x00\x00\ \x01\x00\x00\xff\x38\x00\x96\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\x96\x96\x03\x20\ \xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x4b\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\ \x4b\x4b\x03\x20\xfc\x18\x00\x00\x01\x01\x2c\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\ \x04\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\x06\x00\x0a\x00\ \x0e\x00\x2f\x00\xba\x00\x08\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x08\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xb8\x00\ \x08\x10\xb8\x00\x0b\xd0\xba\x00\x0e\x00\x01\x00\x08\x11\x12\x39\ \x30\x31\x15\x17\x23\x11\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x1e\x1e\x01\x4a\x1e\xfe\xd4\x1e\x02\x3a\xfe\xd4\x1e\x01\x0e\ \x96\x32\x01\xf4\x32\xfd\xda\x03\xe8\xfc\x4a\x32\x03\xe8\xfe\x3e\ \x32\x00\x00\x00\x08\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\ \x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\x1e\x00\x77\x00\ \xba\x00\x10\x00\x01\x00\x03\x2b\xba\x00\x04\x00\x01\x00\x10\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\x08\x00\x01\x00\ \x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\xba\x00\x0c\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x0d\xd0\xb8\x00\ \x10\x10\xb8\x00\x13\xd0\xba\x00\x16\x00\x01\x00\x10\x11\x12\x39\ \xb8\x00\x10\x10\xb8\x00\x17\xd0\xba\x00\x1a\x00\x01\x00\x10\x11\ \x12\x39\xb8\x00\x10\x10\xb8\x00\x1b\xd0\xba\x00\x1e\x00\x01\x00\ \x10\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x13\x23\x03\x35\x01\ \x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\ \x15\x03\x33\x17\x15\x1e\x1e\xb4\x1e\x96\x01\x4a\x1e\xfe\xd4\x01\ \xe0\x1e\xfe\x3e\x1e\x02\x3a\xfe\x3e\x1e\x01\xa4\xfe\xd4\x1e\x01\ \x0e\x96\x1e\x78\x96\x32\xfa\x32\xfe\xd4\x01\xf4\x32\xfd\xda\x02\ \xee\x32\xfc\xe0\x03\xe8\xfc\x4a\x32\x03\xe8\xfd\x44\x32\x02\xee\ \xfe\x3e\x32\x01\xf4\xc8\x32\x00\x10\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\ \x1e\x00\x22\x00\x26\x00\x2a\x00\x2e\x00\x32\x00\x36\x00\x3a\x00\ \x3e\x01\x07\x00\xba\x00\x20\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\ \x08\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\ \xba\x00\x0c\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x0d\xd0\xba\x00\x10\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\ \xb8\x00\x11\xd0\xba\x00\x14\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x01\x10\xb8\x00\x15\xd0\xba\x00\x18\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x01\x10\xb8\x00\x19\xd0\xba\x00\x1c\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x1d\xd0\xb8\x00\x20\x10\xb8\x00\ \x23\xd0\xba\x00\x26\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\ \xb8\x00\x27\xd0\xba\x00\x2a\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x20\x10\xb8\x00\x2b\xd0\xba\x00\x2e\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x20\x10\xb8\x00\x2f\xd0\xba\x00\x32\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x33\xd0\xba\x00\x36\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x37\xd0\xba\x00\x3a\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x3b\xd0\xba\x00\ \x3e\x00\x01\x00\x20\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x17\ \x23\x27\x35\x13\x23\x03\x35\x13\x23\x03\x35\x01\x23\x01\x35\x01\ \x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\x15\x03\x33\x13\ \x15\x03\x33\x17\x15\x27\x33\x17\x15\x1e\x1e\x69\x1e\x4b\xb4\x1e\ \x96\xff\x1e\xe1\x01\x4a\x1e\xfe\xd4\x01\x95\x1e\xfe\x89\x01\xe0\ \x1e\xfe\x3e\x02\x2b\x1e\xfd\xf3\x1e\x02\x3a\xfd\xf3\x1e\x01\xef\ \xfe\x3e\x1e\x01\xa4\xfe\x89\x1e\x01\x59\xfe\xd4\x1e\x01\x0e\xe1\ \x1e\xc3\x96\x1e\x78\x4b\x1e\x2d\x96\x32\x7d\x32\xaf\xfa\x32\xfe\ \xd4\x01\x77\x32\xfe\x57\x01\xf4\x32\xfd\xda\x02\x71\x32\xfd\x5d\ \x02\xee\x32\xfc\xe0\x03\x6b\x32\xfc\x63\x03\xe8\xfc\x4a\x32\x03\ \xe8\xfc\xc7\x32\x03\x6b\xfd\x44\x32\x02\xee\xfd\xc1\x32\x02\x71\ \xfe\x3e\x32\x01\xf4\xfe\xbb\x32\x01\x77\xc8\x32\xfa\x4b\x32\x00\ \x01\x00\x00\x02\xa3\x02\x58\x03\x20\x00\x03\x00\x0d\x00\xb8\x00\ \x02\x2f\xb9\x00\x01\x00\x01\xf4\x30\x31\x11\x21\x15\x21\x02\x58\ \xfd\xa8\x03\x20\x7d\x00\x00\x00\x01\x02\x0d\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x33\x11\x23\x02\x0d\x4b\x4b\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x01\x2c\x01\x2c\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x2c\xfe\xd4\ \x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x01\x2c\xff\x38\x02\x58\x01\ \x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x00\x00\ \x01\x00\x00\x01\x2c\x01\x2c\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x2c\xfe\xd4\ \x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\x00\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\x03\x20\xfe\x0c\ \xfe\x0c\x00\x00\x02\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\ \x07\x00\x0b\x00\xb8\x00\x06\x2f\xb8\x00\x00\xdc\x30\x31\x01\x11\ \x21\x11\x01\x11\x21\x11\x01\x2c\xfe\xd4\x02\x58\xfe\xd4\x03\x20\ \xfe\x0c\x01\xf4\xfe\x0c\xfe\x0c\x01\xf4\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\ \x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\ \x03\x20\xfe\x0c\xfe\x0c\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\x03\x20\xfc\x18\ \x01\xf4\x00\x00\x01\x01\x2c\x01\x2c\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x01\x21\x11\x21\ \x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\x02\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x07\x00\x0b\x00\xb8\x00\x02\x2f\ \xb8\x00\x04\xdc\x30\x31\x11\x21\x11\x21\x01\x21\x11\x21\x01\x2c\ \xfe\xd4\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x03\xe8\xfe\x0c\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x05\x00\ \x0b\x00\xb8\x00\x04\x2f\xb8\x00\x03\xdc\x30\x31\x11\x21\x11\x21\ \x11\x21\x01\x2c\x01\x2c\xfd\xa8\x01\x2c\x01\xf4\xfc\x18\x00\x00\ \x00\x00\x22\x01\x9e\x00\x01\x00\x00\x00\x00\x00\x00\x00\x45\x00\ \x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x0f\x00\x45\x00\x01\x00\ \x00\x00\x00\x00\x02\x00\x04\x00\x54\x00\x01\x00\x00\x00\x00\x00\ \x03\x00\x23\x00\x58\x00\x01\x00\x00\x00\x00\x00\x04\x00\x14\x00\ \x7b\x00\x01\x00\x00\x00\x00\x00\x05\x00\x41\x00\x8f\x00\x01\x00\ \x00\x00\x00\x00\x06\x00\x12\x00\xd0\x00\x01\x00\x00\x00\x00\x00\ \x07\x00\x60\x00\xe2\x00\x01\x00\x00\x00\x00\x00\x08\x00\x1a\x01\ \x42\x00\x01\x00\x00\x00\x00\x00\x09\x00\x0c\x01\x5c\x00\x01\x00\ \x00\x00\x00\x00\x0b\x00\x19\x01\x68\x00\x01\x00\x00\x00\x00\x00\ \x0d\x11\xd9\x01\x81\x00\x01\x00\x00\x00\x00\x00\x0e\x00\x24\x13\ \x5a\x00\x01\x00\x00\x00\x00\x01\x00\x00\x16\x13\x7e\x00\x01\x00\ \x00\x00\x00\x01\x01\x00\x0b\x13\x94\x00\x01\x00\x00\x00\x00\x01\ \x02\x00\x0b\x13\x9f\x00\x01\x00\x00\x00\x00\x01\x03\x00\x15\x13\ \xaa\x00\x03\x00\x01\x04\x09\x00\x00\x00\x8a\x13\xbf\x00\x03\x00\ \x01\x04\x09\x00\x01\x00\x1e\x14\x49\x00\x03\x00\x01\x04\x09\x00\ \x02\x00\x08\x14\x67\x00\x03\x00\x01\x04\x09\x00\x03\x00\x46\x14\ \x6f\x00\x03\x00\x01\x04\x09\x00\x04\x00\x28\x14\xb5\x00\x03\x00\ \x01\x04\x09\x00\x05\x00\x82\x14\xdd\x00\x03\x00\x01\x04\x09\x00\ \x06\x00\x24\x15\x5f\x00\x03\x00\x01\x04\x09\x00\x07\x00\xc0\x15\ \x83\x00\x03\x00\x01\x04\x09\x00\x08\x00\x34\x16\x43\x00\x03\x00\ \x01\x04\x09\x00\x09\x00\x18\x16\x77\x00\x03\x00\x01\x04\x09\x00\ \x0b\x00\x32\x16\x8f\x00\x03\x00\x01\x04\x09\x00\x0d\x23\xb6\x16\ \xc1\x00\x03\x00\x01\x04\x09\x00\x0e\x00\x48\x3a\x77\x00\x03\x00\ \x01\x04\x09\x01\x00\x00\x2c\x3a\xbf\x00\x03\x00\x01\x04\x09\x01\ \x01\x00\x16\x3a\xeb\x00\x03\x00\x01\x04\x09\x01\x02\x00\x16\x3b\ \x01\x00\x03\x00\x01\x04\x09\x01\x03\x00\x2a\x3b\x17\x43\x6f\x70\ \x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\x20\x32\x30\x31\ \x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\ \x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x2e\x20\x41\x6c\ \x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\ \x64\x2e\x53\x6f\x75\x72\x63\x65\x20\x43\x6f\x64\x65\x20\x50\x72\ \x6f\x42\x6f\x6c\x64\x31\x2e\x30\x31\x37\x3b\x41\x44\x42\x45\x3b\ \x53\x6f\x75\x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\x2d\x42\x6f\ \x6c\x64\x3b\x41\x44\x4f\x42\x45\x53\x6f\x75\x72\x63\x65\x20\x43\ \x6f\x64\x65\x20\x50\x72\x6f\x20\x42\x6f\x6c\x64\x56\x65\x72\x73\ \x69\x6f\x6e\x20\x31\x2e\x30\x31\x37\x3b\x50\x53\x20\x56\x65\x72\ \x73\x69\x6f\x6e\x20\x31\x2e\x30\x30\x30\x3b\x68\x6f\x74\x63\x6f\ \x6e\x76\x20\x31\x2e\x30\x2e\x37\x30\x3b\x6d\x61\x6b\x65\x6f\x74\ \x66\x2e\x6c\x69\x62\x32\x2e\x35\x2e\x35\x39\x30\x30\x53\x6f\x75\ \x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\x2d\x42\x6f\x6c\x64\x53\ \x6f\x75\x72\x63\x65\x20\x69\x73\x20\x61\x20\x74\x72\x61\x64\x65\ \x6d\x61\x72\x6b\x20\x6f\x66\x20\x41\x64\x6f\x62\x65\x20\x53\x79\ \x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\ \x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\ \x20\x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\ \x74\x68\x65\x72\x20\x63\x6f\x75\x6e\x74\x72\x69\x65\x73\x2e\x41\ \x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\ \x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x50\x61\x75\x6c\x20\x44\x2e\ \x20\x48\x75\x6e\x74\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ \x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\x20\x32\x30\ \x31\x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\ \x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x28\x68\ \x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\ \x63\x6f\x6d\x2f\x29\x2c\x20\x77\x69\x74\x68\x20\x52\x65\x73\x65\ \x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\x20\x27\ \x53\x6f\x75\x72\x63\x65\x27\x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\ \x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\x64\x2e\x20\x53\x6f\ \x75\x72\x63\x65\x20\x69\x73\x20\x61\x20\x74\x72\x61\x64\x65\x6d\ \x61\x72\x6b\x20\x6f\x66\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\ \x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\ \x64\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\ \x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\ \x68\x65\x72\x20\x63\x6f\x75\x6e\x74\x72\x69\x65\x73\x2e\x0d\x0a\ \x0d\x0a\x54\x68\x69\x73\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x20\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x64\ \x20\x75\x6e\x64\x65\x72\x20\x74\x68\x65\x20\x53\x49\x4c\x20\x4f\ \x70\x65\x6e\x20\x46\x6f\x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\x65\ \x2c\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x31\x2e\x0d\x0a\ \x0d\x0a\x54\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x69\ \x73\x20\x63\x6f\x70\x69\x65\x64\x20\x62\x65\x6c\x6f\x77\x2c\x20\ \x61\x6e\x64\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x61\x76\x61\x69\ \x6c\x61\x62\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x20\x46\x41\x51\ \x20\x61\x74\x3a\x20\x68\x74\x74\x70\x3a\x2f\x2f\x73\x63\x72\x69\ \x70\x74\x73\x2e\x73\x69\x6c\x2e\x6f\x72\x67\x2f\x4f\x46\x4c\x0d\ \x0a\x0d\x0a\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\ \x53\x49\x4c\x20\x4f\x50\x45\x4e\x20\x46\x4f\x4e\x54\x20\x4c\x49\ \x43\x45\x4e\x53\x45\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\ \x31\x20\x2d\x20\x32\x36\x20\x46\x65\x62\x72\x75\x61\x72\x79\x20\ \x32\x30\x30\x37\x0d\x0a\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x0d\x0a\x0d\x0a\x50\x52\x45\x41\x4d\x42\x4c\x45\x0d\x0a\x54\ \x68\x65\x20\x67\x6f\x61\x6c\x73\x20\x6f\x66\x20\x74\x68\x65\x20\ \x4f\x70\x65\x6e\x20\x46\x6f\x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\ \x65\x20\x28\x4f\x46\x4c\x29\x20\x61\x72\x65\x20\x74\x6f\x20\x73\ \x74\x69\x6d\x75\x6c\x61\x74\x65\x20\x77\x6f\x72\x6c\x64\x77\x69\ \x64\x65\x20\x64\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x20\x6f\ \x66\x20\x63\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x76\x65\x20\ \x66\x6f\x6e\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x73\x2c\x20\x74\ \x6f\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x66\x6f\ \x6e\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x65\x66\x66\x6f\ \x72\x74\x73\x20\x6f\x66\x20\x61\x63\x61\x64\x65\x6d\x69\x63\x20\ \x61\x6e\x64\x20\x6c\x69\x6e\x67\x75\x69\x73\x74\x69\x63\x20\x63\ \x6f\x6d\x6d\x75\x6e\x69\x74\x69\x65\x73\x2c\x20\x61\x6e\x64\x20\ \x74\x6f\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x20\x66\x72\x65\ \x65\x20\x61\x6e\x64\x20\x6f\x70\x65\x6e\x20\x66\x72\x61\x6d\x65\ \x77\x6f\x72\x6b\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x66\x6f\ \x6e\x74\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x73\x68\x61\x72\x65\ \x64\x20\x61\x6e\x64\x20\x69\x6d\x70\x72\x6f\x76\x65\x64\x20\x69\ \x6e\x20\x70\x61\x72\x74\x6e\x65\x72\x73\x68\x69\x70\x20\x77\x69\ \x74\x68\x20\x6f\x74\x68\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\ \x65\x20\x4f\x46\x4c\x20\x61\x6c\x6c\x6f\x77\x73\x20\x74\x68\x65\ \x20\x6c\x69\x63\x65\x6e\x73\x65\x64\x20\x66\x6f\x6e\x74\x73\x20\ \x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x73\x74\x75\x64\ \x69\x65\x64\x2c\x20\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x61\x6e\ \x64\x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\ \x66\x72\x65\x65\x6c\x79\x20\x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\ \x73\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x73\ \x6f\x6c\x64\x20\x62\x79\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\ \x73\x2e\x20\x54\x68\x65\x20\x66\x6f\x6e\x74\x73\x2c\x20\x69\x6e\ \x63\x6c\x75\x64\x69\x6e\x67\x20\x61\x6e\x79\x20\x64\x65\x72\x69\ \x76\x61\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x2c\x20\x63\x61\ \x6e\x20\x62\x65\x20\x62\x75\x6e\x64\x6c\x65\x64\x2c\x20\x65\x6d\ \x62\x65\x64\x64\x65\x64\x2c\x20\x72\x65\x64\x69\x73\x74\x72\x69\ \x62\x75\x74\x65\x64\x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\ \x64\x20\x77\x69\x74\x68\x20\x61\x6e\x79\x20\x73\x6f\x66\x74\x77\ \x61\x72\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x68\x61\ \x74\x20\x61\x6e\x79\x20\x72\x65\x73\x65\x72\x76\x65\x64\x20\x6e\ \x61\x6d\x65\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x75\x73\x65\ \x64\x20\x62\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\ \x77\x6f\x72\x6b\x73\x2e\x20\x54\x68\x65\x20\x66\x6f\x6e\x74\x73\ \x20\x61\x6e\x64\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x73\ \x2c\x20\x68\x6f\x77\x65\x76\x65\x72\x2c\x20\x63\x61\x6e\x6e\x6f\ \x74\x20\x62\x65\x20\x72\x65\x6c\x65\x61\x73\x65\x64\x20\x75\x6e\ \x64\x65\x72\x20\x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x74\x79\ \x70\x65\x20\x6f\x66\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\ \x68\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65\x6e\x74\x20\x66\ \x6f\x72\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x6d\x61\ \x69\x6e\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\ \x63\x65\x6e\x73\x65\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\ \x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x6f\x63\x75\ \x6d\x65\x6e\x74\x20\x63\x72\x65\x61\x74\x65\x64\x20\x75\x73\x69\ \x6e\x67\x20\x74\x68\x65\x20\x66\x6f\x6e\x74\x73\x20\x6f\x72\x20\ \x74\x68\x65\x69\x72\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\ \x73\x2e\x0d\x0a\x0d\x0a\x44\x45\x46\x49\x4e\x49\x54\x49\x4f\x4e\ \x53\x0d\x0a\x22\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x74\x68\x65\ \x20\x73\x65\x74\x20\x6f\x66\x20\x66\x69\x6c\x65\x73\x20\x72\x65\ \x6c\x65\x61\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\ \x29\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\ \x65\x6e\x73\x65\x20\x61\x6e\x64\x20\x63\x6c\x65\x61\x72\x6c\x79\ \x20\x6d\x61\x72\x6b\x65\x64\x20\x61\x73\x20\x73\x75\x63\x68\x2e\ \x20\x54\x68\x69\x73\x20\x6d\x61\x79\x20\x69\x6e\x63\x6c\x75\x64\ \x65\x20\x73\x6f\x75\x72\x63\x65\x20\x66\x69\x6c\x65\x73\x2c\x20\ \x62\x75\x69\x6c\x64\x20\x73\x63\x72\x69\x70\x74\x73\x20\x61\x6e\ \x64\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\ \x0d\x0a\x0d\x0a\x22\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x22\x20\x72\x65\x66\x65\x72\x73\x20\ \x74\x6f\x20\x61\x6e\x79\x20\x6e\x61\x6d\x65\x73\x20\x73\x70\x65\ \x63\x69\x66\x69\x65\x64\x20\x61\x73\x20\x73\x75\x63\x68\x20\x61\ \x66\x74\x65\x72\x20\x74\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\ \x68\x74\x20\x73\x74\x61\x74\x65\x6d\x65\x6e\x74\x28\x73\x29\x2e\ \x0d\x0a\x0d\x0a\x22\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x56\x65\ \x72\x73\x69\x6f\x6e\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\ \x20\x74\x68\x65\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\ \x6f\x66\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\ \x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x61\x73\x20\x64\ \x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x62\x79\x20\x74\x68\ \x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\ \x65\x72\x28\x73\x29\x2e\x0d\x0a\x0d\x0a\x22\x4d\x6f\x64\x69\x66\ \x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x22\x20\x72\x65\x66\ \x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x65\x72\x69\x76\ \x61\x74\x69\x76\x65\x20\x6d\x61\x64\x65\x20\x62\x79\x20\x61\x64\ \x64\x69\x6e\x67\x20\x74\x6f\x2c\x20\x64\x65\x6c\x65\x74\x69\x6e\ \x67\x2c\x20\x6f\x72\x20\x73\x75\x62\x73\x74\x69\x74\x75\x74\x69\ \x6e\x67\x20\x2d\x2d\x20\x69\x6e\x20\x70\x61\x72\x74\x20\x6f\x72\ \x20\x69\x6e\x20\x77\x68\x6f\x6c\x65\x20\x2d\x2d\x20\x61\x6e\x79\ \x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ \x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x4f\x72\x69\x67\x69\x6e\ \x61\x6c\x20\x56\x65\x72\x73\x69\x6f\x6e\x2c\x20\x62\x79\x20\x63\ \x68\x61\x6e\x67\x69\x6e\x67\x20\x66\x6f\x72\x6d\x61\x74\x73\x20\ \x6f\x72\x20\x62\x79\x20\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\ \x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\ \x74\x6f\x20\x61\x20\x6e\x65\x77\x20\x65\x6e\x76\x69\x72\x6f\x6e\ \x6d\x65\x6e\x74\x2e\x0d\x0a\x0d\x0a\x22\x41\x75\x74\x68\x6f\x72\ \x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x64\x65\x73\x69\x67\x6e\x65\x72\x2c\x20\x65\x6e\x67\x69\x6e\x65\ \x65\x72\x2c\x20\x70\x72\x6f\x67\x72\x61\x6d\x6d\x65\x72\x2c\x20\ \x74\x65\x63\x68\x6e\x69\x63\x61\x6c\x20\x77\x72\x69\x74\x65\x72\ \x20\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x70\x65\x72\x73\x6f\x6e\ \x20\x77\x68\x6f\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x74\x6f\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\ \x74\x77\x61\x72\x65\x2e\x0d\x0a\x0d\x0a\x50\x45\x52\x4d\x49\x53\ \x53\x49\x4f\x4e\x20\x26\x20\x43\x4f\x4e\x44\x49\x54\x49\x4f\x4e\ \x53\x0d\x0a\x50\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x69\x73\ \x20\x68\x65\x72\x65\x62\x79\x20\x67\x72\x61\x6e\x74\x65\x64\x2c\ \x20\x66\x72\x65\x65\x20\x6f\x66\x20\x63\x68\x61\x72\x67\x65\x2c\ \x20\x74\x6f\x20\x61\x6e\x79\x20\x70\x65\x72\x73\x6f\x6e\x20\x6f\ \x62\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x63\x6f\x70\x79\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x2c\x20\x74\x6f\x20\x75\x73\x65\x2c\x20\x73\x74\ \x75\x64\x79\x2c\x20\x63\x6f\x70\x79\x2c\x20\x6d\x65\x72\x67\x65\ \x2c\x20\x65\x6d\x62\x65\x64\x2c\x20\x6d\x6f\x64\x69\x66\x79\x2c\ \x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x2c\x20\x61\ \x6e\x64\x20\x73\x65\x6c\x6c\x20\x6d\x6f\x64\x69\x66\x69\x65\x64\ \x20\x61\x6e\x64\x20\x75\x6e\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\ \x63\x6f\x70\x69\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\ \x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x73\x75\x62\ \x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\ \x6f\x77\x69\x6e\x67\x20\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\ \x3a\x0d\x0a\x0d\x0a\x31\x29\x20\x4e\x65\x69\x74\x68\x65\x72\x20\ \x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x20\x6e\x6f\x72\x20\x61\x6e\x79\x20\x6f\x66\x20\x69\x74\x73\ \x20\x69\x6e\x64\x69\x76\x69\x64\x75\x61\x6c\x20\x63\x6f\x6d\x70\ \x6f\x6e\x65\x6e\x74\x73\x2c\x20\x69\x6e\x20\x4f\x72\x69\x67\x69\ \x6e\x61\x6c\x20\x6f\x72\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\ \x56\x65\x72\x73\x69\x6f\x6e\x73\x2c\x20\x6d\x61\x79\x20\x62\x65\ \x20\x73\x6f\x6c\x64\x20\x62\x79\x20\x69\x74\x73\x65\x6c\x66\x2e\ \x0d\x0a\x0d\x0a\x32\x29\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\ \x6f\x72\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\ \x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6d\x61\x79\x20\x62\x65\ \x20\x62\x75\x6e\x64\x6c\x65\x64\x2c\x20\x72\x65\x64\x69\x73\x74\ \x72\x69\x62\x75\x74\x65\x64\x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\ \x6f\x6c\x64\x20\x77\x69\x74\x68\x20\x61\x6e\x79\x20\x73\x6f\x66\ \x74\x77\x61\x72\x65\x2c\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\ \x74\x68\x61\x74\x20\x65\x61\x63\x68\x20\x63\x6f\x70\x79\x20\x63\ \x6f\x6e\x74\x61\x69\x6e\x73\x20\x74\x68\x65\x20\x61\x62\x6f\x76\ \x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6e\x6f\x74\x69\ \x63\x65\x20\x61\x6e\x64\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\ \x6e\x73\x65\x2e\x20\x54\x68\x65\x73\x65\x20\x63\x61\x6e\x20\x62\ \x65\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x20\x65\x69\x74\x68\x65\ \x72\x20\x61\x73\x20\x73\x74\x61\x6e\x64\x2d\x61\x6c\x6f\x6e\x65\ \x20\x74\x65\x78\x74\x20\x66\x69\x6c\x65\x73\x2c\x20\x68\x75\x6d\ \x61\x6e\x2d\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x68\x65\x61\x64\ \x65\x72\x73\x20\x6f\x72\x20\x69\x6e\x20\x74\x68\x65\x20\x61\x70\ \x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x6d\x61\x63\x68\x69\x6e\ \x65\x2d\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x6d\x65\x74\x61\x64\ \x61\x74\x61\x20\x66\x69\x65\x6c\x64\x73\x20\x77\x69\x74\x68\x69\ \x6e\x20\x74\x65\x78\x74\x20\x6f\x72\x20\x62\x69\x6e\x61\x72\x79\ \x20\x66\x69\x6c\x65\x73\x20\x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\ \x73\x20\x74\x68\x6f\x73\x65\x20\x66\x69\x65\x6c\x64\x73\x20\x63\ \x61\x6e\x20\x62\x65\x20\x65\x61\x73\x69\x6c\x79\x20\x76\x69\x65\ \x77\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x75\x73\x65\x72\x2e\ \x0d\x0a\x0d\x0a\x33\x29\x20\x4e\x6f\x20\x4d\x6f\x64\x69\x66\x69\ \x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\ \x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\ \x6d\x61\x79\x20\x75\x73\x65\x20\x74\x68\x65\x20\x52\x65\x73\x65\ \x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\x28\x73\ \x29\x20\x75\x6e\x6c\x65\x73\x73\x20\x65\x78\x70\x6c\x69\x63\x69\ \x74\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x70\x65\x72\x6d\x69\x73\ \x73\x69\x6f\x6e\x20\x69\x73\x20\x67\x72\x61\x6e\x74\x65\x64\x20\ \x62\x79\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\ \x64\x69\x6e\x67\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\ \x6f\x6c\x64\x65\x72\x2e\x20\x54\x68\x69\x73\x20\x72\x65\x73\x74\ \x72\x69\x63\x74\x69\x6f\x6e\x20\x6f\x6e\x6c\x79\x20\x61\x70\x70\ \x6c\x69\x65\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x70\x72\x69\x6d\ \x61\x72\x79\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x61\x73\ \x20\x70\x72\x65\x73\x65\x6e\x74\x65\x64\x20\x74\x6f\x20\x74\x68\ \x65\x20\x75\x73\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x34\x29\x20\x54\ \x68\x65\x20\x6e\x61\x6d\x65\x28\x73\x29\x20\x6f\x66\x20\x74\x68\ \x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\ \x65\x72\x28\x73\x29\x20\x6f\x72\x20\x74\x68\x65\x20\x41\x75\x74\ \x68\x6f\x72\x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\ \x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x73\x68\x61\x6c\ \x6c\x20\x6e\x6f\x74\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\ \x20\x70\x72\x6f\x6d\x6f\x74\x65\x2c\x20\x65\x6e\x64\x6f\x72\x73\ \x65\x20\x6f\x72\x20\x61\x64\x76\x65\x72\x74\x69\x73\x65\x20\x61\ \x6e\x79\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x6f\x20\x61\ \x63\x6b\x6e\x6f\x77\x6c\x65\x64\x67\x65\x20\x74\x68\x65\x20\x63\ \x6f\x6e\x74\x72\x69\x62\x75\x74\x69\x6f\x6e\x28\x73\x29\x20\x6f\ \x66\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\ \x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x61\x6e\x64\x20\x74\x68\ \x65\x20\x41\x75\x74\x68\x6f\x72\x28\x73\x29\x20\x6f\x72\x20\x77\ \x69\x74\x68\x20\x74\x68\x65\x69\x72\x20\x65\x78\x70\x6c\x69\x63\ \x69\x74\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x70\x65\x72\x6d\x69\ \x73\x73\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x35\x29\x20\x54\x68\x65\ \x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\ \x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x6f\x72\x20\x75\x6e\x6d\x6f\ \x64\x69\x66\x69\x65\x64\x2c\x20\x69\x6e\x20\x70\x61\x72\x74\x20\ \x6f\x72\x20\x69\x6e\x20\x77\x68\x6f\x6c\x65\x2c\x20\x6d\x75\x73\ \x74\x20\x62\x65\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x65\x6e\x74\x69\x72\x65\x6c\x79\x20\x75\x6e\x64\x65\x72\x20\ \x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x2c\x20\x61\x6e\ \x64\x20\x6d\x75\x73\x74\x20\x6e\x6f\x74\x20\x62\x65\x20\x64\x69\ \x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x75\x6e\x64\x65\x72\x20\ \x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x6c\x69\x63\x65\x6e\x73\ \x65\x2e\x20\x54\x68\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65\ \x6e\x74\x20\x66\x6f\x72\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\ \x72\x65\x6d\x61\x69\x6e\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\ \x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x64\x6f\x65\x73\x20\x6e\ \x6f\x74\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x63\x72\x65\x61\x74\x65\x64\ \x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x2e\x0d\x0a\x0d\x0a\x54\x45\x52\ \x4d\x49\x4e\x41\x54\x49\x4f\x4e\x0d\x0a\x54\x68\x69\x73\x20\x6c\ \x69\x63\x65\x6e\x73\x65\x20\x62\x65\x63\x6f\x6d\x65\x73\x20\x6e\ \x75\x6c\x6c\x20\x61\x6e\x64\x20\x76\x6f\x69\x64\x20\x69\x66\x20\ \x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x62\x6f\x76\x65\ \x20\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\ \x6e\x6f\x74\x20\x6d\x65\x74\x2e\x0d\x0a\x0d\x0a\x44\x49\x53\x43\ \x4c\x41\x49\x4d\x45\x52\x0d\x0a\x54\x48\x45\x20\x46\x4f\x4e\x54\ \x20\x53\x4f\x46\x54\x57\x41\x52\x45\x20\x49\x53\x20\x50\x52\x4f\ \x56\x49\x44\x45\x44\x20\x22\x41\x53\x20\x49\x53\x22\x2c\x20\x57\ \x49\x54\x48\x4f\x55\x54\x20\x57\x41\x52\x52\x41\x4e\x54\x59\x20\ \x4f\x46\x20\x41\x4e\x59\x20\x4b\x49\x4e\x44\x2c\x20\x45\x58\x50\ \x52\x45\x53\x53\x20\x4f\x52\x20\x49\x4d\x50\x4c\x49\x45\x44\x2c\ \x20\x49\x4e\x43\x4c\x55\x44\x49\x4e\x47\x20\x42\x55\x54\x20\x4e\ \x4f\x54\x20\x4c\x49\x4d\x49\x54\x45\x44\x20\x54\x4f\x20\x41\x4e\ \x59\x20\x57\x41\x52\x52\x41\x4e\x54\x49\x45\x53\x20\x4f\x46\x20\ \x4d\x45\x52\x43\x48\x41\x4e\x54\x41\x42\x49\x4c\x49\x54\x59\x2c\ \x20\x46\x49\x54\x4e\x45\x53\x53\x20\x46\x4f\x52\x20\x41\x20\x50\ \x41\x52\x54\x49\x43\x55\x4c\x41\x52\x20\x50\x55\x52\x50\x4f\x53\ \x45\x20\x41\x4e\x44\x20\x4e\x4f\x4e\x49\x4e\x46\x52\x49\x4e\x47\ \x45\x4d\x45\x4e\x54\x20\x4f\x46\x20\x43\x4f\x50\x59\x52\x49\x47\ \x48\x54\x2c\x20\x50\x41\x54\x45\x4e\x54\x2c\x20\x54\x52\x41\x44\ \x45\x4d\x41\x52\x4b\x2c\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\x20\ \x52\x49\x47\x48\x54\x2e\x20\x49\x4e\x20\x4e\x4f\x20\x45\x56\x45\ \x4e\x54\x20\x53\x48\x41\x4c\x4c\x20\x54\x48\x45\x20\x43\x4f\x50\ \x59\x52\x49\x47\x48\x54\x20\x48\x4f\x4c\x44\x45\x52\x20\x42\x45\ \x20\x4c\x49\x41\x42\x4c\x45\x20\x46\x4f\x52\x20\x41\x4e\x59\x20\ \x43\x4c\x41\x49\x4d\x2c\x20\x44\x41\x4d\x41\x47\x45\x53\x20\x4f\ \x52\x20\x4f\x54\x48\x45\x52\x20\x4c\x49\x41\x42\x49\x4c\x49\x54\ \x59\x2c\x20\x49\x4e\x43\x4c\x55\x44\x49\x4e\x47\x20\x41\x4e\x59\ \x20\x47\x45\x4e\x45\x52\x41\x4c\x2c\x20\x53\x50\x45\x43\x49\x41\ \x4c\x2c\x20\x49\x4e\x44\x49\x52\x45\x43\x54\x2c\x20\x49\x4e\x43\ \x49\x44\x45\x4e\x54\x41\x4c\x2c\x20\x4f\x52\x20\x43\x4f\x4e\x53\ \x45\x51\x55\x45\x4e\x54\x49\x41\x4c\x20\x44\x41\x4d\x41\x47\x45\ \x53\x2c\x20\x57\x48\x45\x54\x48\x45\x52\x20\x49\x4e\x20\x41\x4e\ \x20\x41\x43\x54\x49\x4f\x4e\x20\x4f\x46\x20\x43\x4f\x4e\x54\x52\ \x41\x43\x54\x2c\x20\x54\x4f\x52\x54\x20\x4f\x52\x20\x4f\x54\x48\ \x45\x52\x57\x49\x53\x45\x2c\x20\x41\x52\x49\x53\x49\x4e\x47\x20\ \x46\x52\x4f\x4d\x2c\x20\x4f\x55\x54\x20\x4f\x46\x20\x54\x48\x45\ \x20\x55\x53\x45\x20\x4f\x52\x20\x49\x4e\x41\x42\x49\x4c\x49\x54\ \x59\x20\x54\x4f\x20\x55\x53\x45\x20\x54\x48\x45\x20\x46\x4f\x4e\ \x54\x20\x53\x4f\x46\x54\x57\x41\x52\x45\x20\x4f\x52\x20\x46\x52\ \x4f\x4d\x20\x4f\x54\x48\x45\x52\x20\x44\x45\x41\x4c\x49\x4e\x47\ \x53\x20\x49\x4e\x20\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\ \x46\x54\x57\x41\x52\x45\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ \x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\ \x2f\x6c\x65\x67\x61\x6c\x2e\x68\x74\x6d\x6c\x54\x79\x70\x6f\x67\ \x72\x61\x70\x68\x69\x63\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\ \x73\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x61\x41\x6c\x74\x65\ \x72\x6e\x61\x74\x65\x20\x67\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\ \x20\x64\x6f\x6c\x6c\x61\x72\x20\x73\x69\x67\x6e\x00\x43\x00\x6f\ \x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ \x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\x20\x00\x32\x00\x30\ \x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\ \x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\ \x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\ \x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x41\ \x00\x6c\x00\x6c\x00\x20\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x73\x00\x20\x00\x52\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\ \x00\x65\x00\x64\x00\x2e\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\ \x00\x65\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x50\ \x00\x72\x00\x6f\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x31\x00\x2e\ \x00\x30\x00\x31\x00\x37\x00\x3b\x00\x41\x00\x44\x00\x42\x00\x45\ \x00\x3b\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\ \x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\ \x00\x6f\x00\x6c\x00\x64\x00\x3b\x00\x41\x00\x44\x00\x4f\x00\x42\ \x00\x45\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\ \x00\x43\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x50\x00\x72\x00\x6f\ \x00\x20\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\ \x00\x31\x00\x37\x00\x3b\x00\x50\x00\x53\x00\x20\x00\x56\x00\x65\ \x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\ \x00\x30\x00\x30\x00\x30\x00\x3b\x00\x68\x00\x6f\x00\x74\x00\x63\ \x00\x6f\x00\x6e\x00\x76\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x2e\ \x00\x37\x00\x30\x00\x3b\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6f\ \x00\x74\x00\x66\x00\x2e\x00\x6c\x00\x69\x00\x62\x00\x32\x00\x2e\ \x00\x35\x00\x2e\x00\x35\x00\x39\x00\x30\x00\x30\x00\x53\x00\x6f\ \x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\ \x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\x00\x6f\x00\x6c\x00\x64\ \x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x69\ \x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\ \x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\ \x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\x73\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\ \x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\ \x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x2e\ \x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\ \x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\ \x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\ \x00\x65\x00\x64\x00\x50\x00\x61\x00\x75\x00\x6c\x00\x20\x00\x44\ \x00\x2e\x00\x20\x00\x48\x00\x75\x00\x6e\x00\x74\x00\x68\x00\x74\ \x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\x00\x77\x00\x77\ \x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x2e\x00\x63\ \x00\x6f\x00\x6d\x00\x2f\x00\x74\x00\x79\x00\x70\x00\x65\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\x20\x00\x32\ \x00\x30\x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\ \x00\x65\x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ \x00\x73\x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\ \x00\x6f\x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x28\ \x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\ \x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\ \x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x29\x00\x2c\x00\x20\ \x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x20\ \x00\x27\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x27\ \x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x52\x00\x69\ \x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\x65\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\ \x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\ \x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\ \x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\x6f\ \x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x75\ \x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\ \x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\ \x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x49\x00\x4c\x00\x20\ \x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x00\x2c\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\ \x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x31\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\ \x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x6f\x00\x77\x00\x2c\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\ \x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x61\ \x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\x46\x00\x41\ \x00\x51\x00\x20\x00\x61\x00\x74\x00\x3a\x00\x20\x00\x68\x00\x74\ \x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x73\x00\x63\x00\x72\ \x00\x69\x00\x70\x00\x74\x00\x73\x00\x2e\x00\x73\x00\x69\x00\x6c\ \x00\x2e\x00\x6f\x00\x72\x00\x67\x00\x2f\x00\x4f\x00\x46\x00\x4c\ \x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x0d\ \x00\x0a\x00\x53\x00\x49\x00\x4c\x00\x20\x00\x4f\x00\x50\x00\x45\ \x00\x4e\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x4c\ \x00\x49\x00\x43\x00\x45\x00\x4e\x00\x53\x00\x45\x00\x20\x00\x56\ \x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\ \x00\x2e\x00\x31\x00\x20\x00\x2d\x00\x20\x00\x32\x00\x36\x00\x20\ \x00\x46\x00\x65\x00\x62\x00\x72\x00\x75\x00\x61\x00\x72\x00\x79\ \x00\x20\x00\x32\x00\x30\x00\x30\x00\x37\x00\x0d\x00\x0a\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\ \x00\x2d\x00\x2d\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x52\ \x00\x45\x00\x41\x00\x4d\x00\x42\x00\x4c\x00\x45\x00\x0d\x00\x0a\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x67\x00\x6f\x00\x61\x00\x6c\ \x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x20\x00\x28\x00\x4f\x00\x46\x00\x4c\x00\x29\ \x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x73\x00\x74\x00\x69\x00\x6d\x00\x75\x00\x6c\x00\x61\x00\x74\ \x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6c\x00\x64\x00\x77\ \x00\x69\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x76\x00\x65\ \x00\x6c\x00\x6f\x00\x70\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\ \x00\x62\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x72\ \x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\x20\ \x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\ \x00\x72\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x66\x00\x66\ \x00\x6f\x00\x72\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x61\x00\x63\x00\x61\x00\x64\x00\x65\x00\x6d\x00\x69\x00\x63\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\ \x00\x67\x00\x75\x00\x69\x00\x73\x00\x74\x00\x69\x00\x63\x00\x20\ \x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x75\x00\x6e\x00\x69\x00\x74\ \x00\x69\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x76\ \x00\x69\x00\x64\x00\x65\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\ \x00\x65\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x72\x00\x61\x00\x6d\ \x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x69\x00\x6e\ \x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x79\ \x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\x61\x00\x72\ \x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\ \x00\x6d\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x65\x00\x64\x00\x20\ \x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x6e\ \x00\x65\x00\x72\x00\x73\x00\x68\x00\x69\x00\x70\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\ \x00\x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\ \x00\x68\x00\x65\x00\x20\x00\x4f\x00\x46\x00\x4c\x00\x20\x00\x61\ \x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\ \x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\x74\x00\x75\ \x00\x64\x00\x69\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6d\x00\x6f\ \x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x6c\x00\x79\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\ \x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ \x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x6d\x00\x73\x00\x65\x00\x6c\x00\x76\ \x00\x65\x00\x73\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x69\ \x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x72\ \x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ \x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x63\ \x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x62\x00\x75\ \x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x65\ \x00\x6d\x00\x62\x00\x65\x00\x64\x00\x64\x00\x65\x00\x64\x00\x2c\ \x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\ \x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\ \x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\ \x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\x74\x00\x68\ \x00\x61\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x72\ \x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\ \x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x61\x00\x72\ \x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ \x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x64\x00\x65\ \x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\ \x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x65\ \x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x73\x00\x2c\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x65\x00\x76\ \x00\x65\x00\x72\x00\x2c\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x6e\ \x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\ \x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x75\ \x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x6c\ \x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x65\x00\x71\x00\x75\ \x00\x69\x00\x72\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ \x00\x66\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\ \x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x6d\ \x00\x61\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\ \x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\ \x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x64\ \x00\x6f\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ \x00\x61\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x63\ \x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\ \x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x73\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x64\ \x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\ \x00\x65\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\ \x00\x45\x00\x46\x00\x49\x00\x4e\x00\x49\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x22\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\ \x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x73\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x72\ \x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ \x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\ \x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x61\x00\x6e\ \x00\x64\x00\x20\x00\x63\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x6c\ \x00\x79\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\ \x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\ \x00\x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\ \x00\x61\x00\x79\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ \x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x75\x00\x72\x00\x63\ \x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\ \x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x73\ \x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ \x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x52\x00\x65\ \x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\ \x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\ \x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x73\x00\x70\ \x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\x00\x20\ \x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\ \x00\x67\x00\x68\x00\x74\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\ \x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x28\x00\x73\x00\x29\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4f\x00\x72\ \x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\ \x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\ \x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\ \x00\x6c\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\ \x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ \x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\ \x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\ \x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\x00\x72\x00\x65\ \x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x72\x00\x69\ \x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x6d\ \x00\x61\x00\x64\x00\x65\x00\x20\x00\x62\x00\x79\x00\x20\x00\x61\ \x00\x64\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\ \x00\x2c\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x69\ \x00\x6e\x00\x67\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\ \x00\x75\x00\x62\x00\x73\x00\x74\x00\x69\x00\x74\x00\x75\x00\x74\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\x69\ \x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\ \x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\ \x00\x6c\x00\x65\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\x61\x00\x6e\ \x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ \x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\ \x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x63\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x73\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x79\x00\x20\x00\x70\ \x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\ \x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x65\ \x00\x77\x00\x20\x00\x65\x00\x6e\x00\x76\x00\x69\x00\x72\x00\x6f\ \x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x0d\x00\x0a\ \x00\x0d\x00\x0a\x00\x22\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\ \x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x65\ \x00\x72\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x67\x00\x69\x00\x6e\ \x00\x65\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x6f\ \x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x2c\ \x00\x20\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x63\ \x00\x61\x00\x6c\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x65\ \x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\ \x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\x00\x20\x00\x63\x00\x6f\ \x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\ \x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x45\x00\x52\x00\x4d\x00\x49\ \x00\x53\x00\x53\x00\x49\x00\x4f\x00\x4e\x00\x20\x00\x26\x00\x20\ \x00\x43\x00\x4f\x00\x4e\x00\x44\x00\x49\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x50\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\ \x00\x73\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\x62\x00\x79\ \x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x64\ \x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x20\x00\x6f\ \x00\x66\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x67\x00\x65\ \x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x6e\x00\x20\ \x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\ \x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x73\ \x00\x74\x00\x75\x00\x64\x00\x79\x00\x2c\x00\x20\x00\x63\x00\x6f\ \x00\x70\x00\x79\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x67\ \x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x64\ \x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x79\ \x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\x74\ \x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x2c\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x6c\ \x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x75\x00\x6e\ \x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\ \x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x73\x00\x75\ \x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6c\ \x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\ \x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x73\x00\x3a\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x31\x00\x29\ \x00\x20\x00\x4e\x00\x65\x00\x69\x00\x74\x00\x68\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x20\x00\x61\ \x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x69\x00\x74\ \x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x76\x00\x69\ \x00\x64\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\ \x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\ \x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\ \x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\ \x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ \x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\ \x00\x79\x00\x20\x00\x69\x00\x74\x00\x73\x00\x65\x00\x6c\x00\x66\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x32\x00\x29\x00\x20\ \x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x6f\x00\x66\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\ \x00\x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x6c\x00\x65\ \x00\x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\ \x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\ \x00\x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\ \x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\ \x00\x70\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\ \x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x65\x00\x61\ \x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x20\ \x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\x6f\ \x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x74\ \x00\x69\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ \x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\ \x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\ \x00\x65\x00\x73\x00\x65\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ \x00\x62\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ \x00\x64\x00\x65\x00\x64\x00\x20\x00\x65\x00\x69\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x74\ \x00\x61\x00\x6e\x00\x64\x00\x2d\x00\x61\x00\x6c\x00\x6f\x00\x6e\ \x00\x65\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x66\ \x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x68\x00\x75\ \x00\x6d\x00\x61\x00\x6e\x00\x2d\x00\x72\x00\x65\x00\x61\x00\x64\ \x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x68\x00\x65\x00\x61\ \x00\x64\x00\x65\x00\x72\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\ \x00\x70\x00\x70\x00\x72\x00\x6f\x00\x70\x00\x72\x00\x69\x00\x61\ \x00\x74\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x63\x00\x68\x00\x69\ \x00\x6e\x00\x65\x00\x2d\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\ \x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x61\ \x00\x64\x00\x61\x00\x74\x00\x61\x00\x20\x00\x66\x00\x69\x00\x65\ \x00\x6c\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\ \x00\x69\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ \x00\x6f\x00\x72\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\ \x00\x79\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x20\ \x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\ \x00\x20\x00\x66\x00\x69\x00\x65\x00\x6c\x00\x64\x00\x73\x00\x20\ \x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\ \x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x76\x00\x69\ \x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x33\x00\x29\x00\x20\ \x00\x4e\x00\x6f\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\ \x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\ \x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x75\x00\x73\x00\x65\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x52\x00\x65\x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\x46\x00\x6f\ \x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x6c\x00\x65\x00\x73\ \x00\x73\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\x69\x00\x63\ \x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x74\ \x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\x69\ \x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\ \x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x64\ \x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x73\x00\x70\x00\x6f\ \x00\x6e\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x43\x00\x6f\ \x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ \x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x20\ \x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x65\x00\x73\ \x00\x74\x00\x72\x00\x69\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x61\x00\x70\ \x00\x70\x00\x6c\x00\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x72\x00\x69\ \x00\x6d\x00\x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\x6f\x00\x6e\ \x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x61\ \x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x65\x00\x6e\ \x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\x00\x73\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x34\x00\x29\x00\x20\ \x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\ \x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\ \x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\ \x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\ \x00\x74\x00\x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ \x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\ \x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x73\x00\x68\x00\x61\ \x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\ \x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\x6f\x00\x74\ \x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x72\ \x00\x73\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x64\ \x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x73\x00\x65\x00\x20\ \x00\x61\x00\x6e\x00\x79\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\ \x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x65\x00\x78\ \x00\x63\x00\x65\x00\x70\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\ \x00\x61\x00\x63\x00\x6b\x00\x6e\x00\x6f\x00\x77\x00\x6c\x00\x65\ \x00\x64\x00\x67\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x28\x00\x73\x00\x29\x00\x20\ \x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\ \x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\ \x00\x73\x00\x29\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x72\x00\x20\ \x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\ \x00\x69\x00\x72\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\x69\ \x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ \x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x0d\ \x00\x0a\x00\x0d\x00\x0a\x00\x35\x00\x29\x00\x20\x00\x54\x00\x68\ \x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\ \x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\ \x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ \x00\x64\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x6d\ \x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x2c\ \x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ \x00\x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\ \x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x6d\x00\x75\ \x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x69\ \x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x72\x00\x65\ \x00\x6c\x00\x79\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\ \x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x61\ \x00\x6e\x00\x64\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\ \x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\ \x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\ \x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x74\x00\x68\ \x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\ \x00\x72\x00\x65\x00\x71\x00\x75\x00\x69\x00\x72\x00\x65\x00\x6d\ \x00\x65\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x72\x00\x65\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x20\ \x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\ \x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\ \x00\x73\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x20\ \x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\ \x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\ \x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\ \x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ \x00\x64\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\ \x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\ \x00\x65\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x45\ \x00\x52\x00\x4d\x00\x49\x00\x4e\x00\x41\x00\x54\x00\x49\x00\x4f\ \x00\x4e\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ \x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\ \x00\x62\x00\x65\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x73\x00\x20\ \x00\x6e\x00\x75\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x64\ \x00\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x69\x00\x66\ \x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\x6f\x00\x76\ \x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\ \x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x74\ \x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\x00\x49\x00\x53\ \x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x45\x00\x52\x00\x0d\ \x00\x0a\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\ \x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\ \x00\x52\x00\x45\x00\x20\x00\x49\x00\x53\x00\x20\x00\x50\x00\x52\ \x00\x4f\x00\x56\x00\x49\x00\x44\x00\x45\x00\x44\x00\x20\x00\x22\ \x00\x41\x00\x53\x00\x20\x00\x49\x00\x53\x00\x22\x00\x2c\x00\x20\ \x00\x57\x00\x49\x00\x54\x00\x48\x00\x4f\x00\x55\x00\x54\x00\x20\ \x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\x00\x4e\x00\x54\x00\x59\ \x00\x20\x00\x4f\x00\x46\x00\x20\x00\x41\x00\x4e\x00\x59\x00\x20\ \x00\x4b\x00\x49\x00\x4e\x00\x44\x00\x2c\x00\x20\x00\x45\x00\x58\ \x00\x50\x00\x52\x00\x45\x00\x53\x00\x53\x00\x20\x00\x4f\x00\x52\ \x00\x20\x00\x49\x00\x4d\x00\x50\x00\x4c\x00\x49\x00\x45\x00\x44\ \x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\x00\x55\x00\x44\ \x00\x49\x00\x4e\x00\x47\x00\x20\x00\x42\x00\x55\x00\x54\x00\x20\ \x00\x4e\x00\x4f\x00\x54\x00\x20\x00\x4c\x00\x49\x00\x4d\x00\x49\ \x00\x54\x00\x45\x00\x44\x00\x20\x00\x54\x00\x4f\x00\x20\x00\x41\ \x00\x4e\x00\x59\x00\x20\x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\ \x00\x4e\x00\x54\x00\x49\x00\x45\x00\x53\x00\x20\x00\x4f\x00\x46\ \x00\x20\x00\x4d\x00\x45\x00\x52\x00\x43\x00\x48\x00\x41\x00\x4e\ \x00\x54\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\x00\x54\x00\x59\ \x00\x2c\x00\x20\x00\x46\x00\x49\x00\x54\x00\x4e\x00\x45\x00\x53\ \x00\x53\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\x20\ \x00\x50\x00\x41\x00\x52\x00\x54\x00\x49\x00\x43\x00\x55\x00\x4c\ \x00\x41\x00\x52\x00\x20\x00\x50\x00\x55\x00\x52\x00\x50\x00\x4f\ \x00\x53\x00\x45\x00\x20\x00\x41\x00\x4e\x00\x44\x00\x20\x00\x4e\ \x00\x4f\x00\x4e\x00\x49\x00\x4e\x00\x46\x00\x52\x00\x49\x00\x4e\ \x00\x47\x00\x45\x00\x4d\x00\x45\x00\x4e\x00\x54\x00\x20\x00\x4f\ \x00\x46\x00\x20\x00\x43\x00\x4f\x00\x50\x00\x59\x00\x52\x00\x49\ \x00\x47\x00\x48\x00\x54\x00\x2c\x00\x20\x00\x50\x00\x41\x00\x54\ \x00\x45\x00\x4e\x00\x54\x00\x2c\x00\x20\x00\x54\x00\x52\x00\x41\ \x00\x44\x00\x45\x00\x4d\x00\x41\x00\x52\x00\x4b\x00\x2c\x00\x20\ \x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\x00\x52\ \x00\x20\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x2e\x00\x20\ \x00\x49\x00\x4e\x00\x20\x00\x4e\x00\x4f\x00\x20\x00\x45\x00\x56\ \x00\x45\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x48\x00\x41\x00\x4c\ \x00\x4c\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\x43\x00\x4f\ \x00\x50\x00\x59\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x20\ \x00\x48\x00\x4f\x00\x4c\x00\x44\x00\x45\x00\x52\x00\x20\x00\x42\ \x00\x45\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x4c\x00\x45\ \x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\x4e\x00\x59\ \x00\x20\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x2c\x00\x20\ \x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\x00\x45\x00\x53\x00\x20\ \x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\x00\x52\ \x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\ \x00\x54\x00\x59\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\ \x00\x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\x41\x00\x4e\ \x00\x59\x00\x20\x00\x47\x00\x45\x00\x4e\x00\x45\x00\x52\x00\x41\ \x00\x4c\x00\x2c\x00\x20\x00\x53\x00\x50\x00\x45\x00\x43\x00\x49\ \x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x44\x00\x49\ \x00\x52\x00\x45\x00\x43\x00\x54\x00\x2c\x00\x20\x00\x49\x00\x4e\ \x00\x43\x00\x49\x00\x44\x00\x45\x00\x4e\x00\x54\x00\x41\x00\x4c\ \x00\x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x43\x00\x4f\x00\x4e\ \x00\x53\x00\x45\x00\x51\x00\x55\x00\x45\x00\x4e\x00\x54\x00\x49\ \x00\x41\x00\x4c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\ \x00\x45\x00\x53\x00\x2c\x00\x20\x00\x57\x00\x48\x00\x45\x00\x54\ \x00\x48\x00\x45\x00\x52\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x41\ \x00\x4e\x00\x20\x00\x41\x00\x43\x00\x54\x00\x49\x00\x4f\x00\x4e\ \x00\x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\x4e\x00\x54\ \x00\x52\x00\x41\x00\x43\x00\x54\x00\x2c\x00\x20\x00\x54\x00\x4f\ \x00\x52\x00\x54\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\ \x00\x48\x00\x45\x00\x52\x00\x57\x00\x49\x00\x53\x00\x45\x00\x2c\ \x00\x20\x00\x41\x00\x52\x00\x49\x00\x53\x00\x49\x00\x4e\x00\x47\ \x00\x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x2c\x00\x20\x00\x4f\ \x00\x55\x00\x54\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x54\x00\x48\ \x00\x45\x00\x20\x00\x55\x00\x53\x00\x45\x00\x20\x00\x4f\x00\x52\ \x00\x20\x00\x49\x00\x4e\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\ \x00\x54\x00\x59\x00\x20\x00\x54\x00\x4f\x00\x20\x00\x55\x00\x53\ \x00\x45\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\ \x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\ \x00\x41\x00\x52\x00\x45\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x46\ \x00\x52\x00\x4f\x00\x4d\x00\x20\x00\x4f\x00\x54\x00\x48\x00\x45\ \x00\x52\x00\x20\x00\x44\x00\x45\x00\x41\x00\x4c\x00\x49\x00\x4e\ \x00\x47\x00\x53\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x54\x00\x48\ \x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x53\ \x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\x00\x52\x00\x45\x00\x2e\ \x00\x0d\x00\x0a\x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\ \x00\x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\ \x00\x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x2f\x00\x6c\x00\x65\x00\x67\x00\x61\ \x00\x6c\x00\x2e\x00\x68\x00\x74\x00\x6d\x00\x6c\x00\x54\x00\x79\ \x00\x70\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x70\x00\x68\x00\x69\ \x00\x63\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\ \x00\x61\x00\x74\x00\x65\x00\x73\x00\x41\x00\x6c\x00\x74\x00\x65\ \x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x41\ \x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\ \x00\x20\x00\x67\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\ \x00\x61\x00\x74\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x6c\x00\x6c\ \x00\x61\x00\x72\x00\x20\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x00\ \x02\x00\x00\x00\x00\x00\x00\xff\xb5\x00\x32\x00\x00\x00\x01\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\ \xc5\x00\x00\x01\x02\x01\x03\x00\x03\x00\x24\x00\x25\x00\x26\x00\ \x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\ \x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\ \x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x44\x00\ \x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\ \x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\ \x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\ \x5d\x00\xad\x00\xc9\x00\xc7\x00\xae\x00\x62\x01\x04\x01\x05\x00\ \x63\x01\x06\x01\x07\x01\x08\x01\x09\x01\x0a\x01\x0b\x01\x0c\x01\ \x0d\x01\x0e\x01\x0f\x01\x10\x01\x11\x01\x12\x01\x13\x00\x90\x01\ \x14\x00\x64\x00\xfd\x01\x15\x00\xff\x01\x16\x01\x17\x01\x18\x01\ \x19\x01\x1a\x00\xcb\x00\x65\x00\xc8\x01\x1b\x00\xca\x01\x1c\x01\ \x1d\x01\x1e\x01\x1f\x01\x20\x01\x21\x01\x22\x01\x23\x01\x24\x01\ \x25\x01\x26\x01\x27\x01\x28\x00\xf8\x01\x29\x01\x2a\x01\x2b\x01\ \x2c\x01\x2d\x01\x2e\x01\x2f\x01\x30\x01\x31\x00\xcf\x00\xcc\x00\ \xcd\x01\x32\x00\xce\x01\x33\x01\x34\x00\xfa\x01\x35\x01\x36\x01\ \x37\x01\x38\x01\x39\x01\x3a\x01\x3b\x01\x3c\x01\x3d\x01\x3e\x01\ \x3f\x01\x40\x01\x41\x00\xe2\x01\x42\x01\x43\x01\x44\x00\x66\x01\ \x45\x01\x46\x01\x47\x01\x48\x00\xd3\x00\xd0\x00\xd1\x00\xaf\x00\ \x67\x01\x49\x01\x4a\x01\x4b\x01\x4c\x01\x4d\x01\x4e\x01\x4f\x01\ \x50\x01\x51\x01\x52\x01\x53\x00\x91\x00\xb0\x01\x54\x01\x55\x01\ \x56\x01\x57\x01\x58\x01\x59\x01\x5a\x01\x5b\x01\x5c\x01\x5d\x01\ \x5e\x01\x5f\x01\x60\x01\x61\x01\x62\x00\xe4\x01\x63\x01\x64\x01\ \x65\x01\x66\x01\x67\x01\x68\x01\x69\x01\x6a\x01\x6b\x01\x6c\x00\ \xd6\x00\xd4\x00\xd5\x01\x6d\x00\x68\x01\x6e\x01\x6f\x01\x70\x01\ \x71\x01\x72\x01\x73\x01\x74\x01\x75\x01\x76\x01\x77\x01\x78\x01\ \x79\x01\x7a\x01\x7b\x01\x7c\x01\x7d\x01\x7e\x01\x7f\x01\x80\x01\ \x81\x01\x82\x01\x83\x01\x84\x00\xeb\x01\x85\x00\xbb\x01\x86\x01\ \x87\x01\x88\x01\x89\x01\x8a\x00\xe6\x01\x8b\x01\x8c\x00\xe9\x00\ \xed\x01\x8d\x00\x6a\x00\x69\x00\x6b\x00\x6d\x00\x6c\x01\x8e\x01\ \x8f\x00\x6e\x01\x90\x01\x91\x01\x92\x01\x93\x01\x94\x01\x95\x01\ \x96\x01\x97\x01\x98\x01\x99\x01\x9a\x01\x9b\x01\x9c\x01\x9d\x00\ \xa0\x01\x9e\x00\x6f\x00\xfe\x01\x9f\x01\x00\x01\xa0\x01\xa1\x01\ \xa2\x01\xa3\x01\x01\x00\x71\x00\x70\x00\x72\x01\xa4\x00\x73\x01\ \xa5\x01\xa6\x01\xa7\x01\xa8\x01\xa9\x01\xaa\x01\xab\x01\xac\x01\ \xad\x01\xae\x01\xaf\x01\xb0\x01\xb1\x00\xf9\x01\xb2\x01\xb3\x01\ \xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x00\x75\x00\ \x74\x00\x76\x01\xbb\x00\x77\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\ \xc0\x01\xc1\x01\xc2\x00\xd7\x01\xc3\x01\xc4\x01\xc5\x01\xc6\x01\ \xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\xcc\x00\xe3\x01\xcd\x01\ \xce\x01\xcf\x00\x78\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x00\ \x7a\x00\x79\x00\x7b\x00\x7d\x00\x7c\x01\xd5\x01\xd6\x01\xd7\x01\ \xd8\x01\xd9\x01\xda\x01\xdb\x01\xdc\x01\xdd\x01\xde\x01\xdf\x00\ \xa1\x00\xb1\x01\xe0\x01\xe1\x01\xe2\x01\xe3\x01\xe4\x01\xe5\x01\ \xe6\x01\xe7\x01\xe8\x01\xe9\x01\xea\x01\xeb\x01\xec\x01\xed\x01\ \xee\x00\xe5\x01\xef\x01\xf0\x01\xf1\x01\xf2\x00\x89\x01\xf3\x01\ \xf4\x01\xf5\x01\xf6\x01\xf7\x01\xf8\x00\x7f\x00\x7e\x00\x80\x01\ \xf9\x00\x81\x01\xfa\x01\xfb\x01\xfc\x01\xfd\x01\xfe\x01\xff\x02\ \x00\x02\x01\x02\x02\x02\x03\x02\x04\x02\x05\x02\x06\x02\x07\x02\ \x08\x02\x09\x02\x0a\x02\x0b\x02\x0c\x02\x0d\x02\x0e\x02\x0f\x02\ \x10\x00\xec\x02\x11\x00\xba\x02\x12\x02\x13\x02\x14\x02\x15\x02\ \x16\x00\xe7\x02\x17\x02\x18\x00\xea\x00\xee\x02\x19\x02\x1a\x02\ \x1b\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\x21\x02\x22\x02\ \x23\x02\x24\x02\x25\x02\x26\x02\x27\x02\x28\x00\xc0\x00\xc1\x02\ \x29\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\x2f\x02\x30\x02\ \x31\x02\x32\x02\x33\x02\x34\x02\x35\x02\x36\x02\x37\x02\x38\x02\ \x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\ \x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\x46\x02\x47\x00\x09\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\x4d\x02\ \x4e\x02\x4f\x02\x50\x02\x51\x00\x11\x00\x0f\x00\x1d\x00\x1e\x00\ \xab\x00\x04\x00\xa3\x00\x22\x00\xa2\x00\x0a\x00\x05\x00\xb6\x00\ \xb7\x00\xb4\x00\xb5\x00\xc4\x00\xc5\x00\xbe\x00\xbf\x00\xa9\x00\ \xaa\x00\x10\x02\x52\x00\xb2\x00\xb3\x02\x53\x02\x54\x00\xc3\x00\ \x87\x00\x42\x00\x0b\x00\x0c\x00\x3e\x00\x40\x00\x5e\x00\x60\x00\ \x12\x00\x5f\x00\x3f\x00\xe8\x00\x0d\x00\x82\x00\xc2\x00\x86\x00\ \x88\x00\x8b\x02\x55\x00\x8a\x00\x8c\x02\x56\x00\x23\x02\x57\x00\ \x06\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\x5d\x02\x5e\x02\ \x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\x65\x02\x66\x02\ \x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\x6d\x02\x6e\x02\ \x6f\x02\x70\x02\x71\x02\x72\x02\x73\x02\x74\x02\x75\x02\x76\x02\ \x77\x02\x78\x02\x79\x02\x7a\x02\x7b\x02\x7c\x02\x7d\x02\x7e\x02\ \x7f\x02\x80\x02\x81\x02\x82\x02\x83\x02\x84\x02\x85\x02\x86\x02\ \x87\x02\x88\x02\x89\x02\x8a\x02\x8b\x02\x8c\x02\x8d\x02\x8e\x02\ \x8f\x02\x90\x02\x91\x02\x92\x02\x93\x00\x9d\x02\x94\x00\x9e\x02\ \x95\x02\x96\x02\x97\x02\x98\x02\x99\x02\x9a\x02\x9b\x02\x9c\x02\ \x9d\x02\x9e\x02\x9f\x02\xa0\x02\xa1\x02\xa2\x02\xa3\x02\xa4\x02\ \xa5\x02\xa6\x02\xa7\x02\xa8\x02\xa9\x02\xaa\x02\xab\x02\xac\x02\ \xad\x02\xae\x02\xaf\x02\xb0\x02\xb1\x02\xb2\x02\xb3\x00\x83\x00\ \xbd\x00\x07\x00\x85\x00\x96\x02\xb4\x00\x84\x02\xb5\x02\xb6\x02\ \xb7\x02\xb8\x02\xb9\x02\xba\x02\xbb\x02\xbc\x02\xbd\x02\xbe\x02\ \xbf\x00\xbc\x02\xc0\x02\xc1\x00\x08\x00\xc6\x00\xf5\x00\xf4\x00\ \xf6\x02\xc2\x02\xc3\x02\xc4\x02\xc5\x02\xc6\x02\xc7\x00\x0e\x00\ \xef\x00\xf0\x00\xb8\x02\xc8\x00\x20\x00\x1f\x00\x21\x00\x94\x00\ \x95\x00\x93\x00\x41\x00\x8f\x00\x61\x00\xa7\x00\xa4\x00\x9b\x00\ \x92\x02\xc9\x00\x98\x00\x9c\x00\xa5\x02\xca\x02\xcb\x00\x99\x00\ \x9a\x02\xcc\x02\xcd\x02\xce\x02\xcf\x02\xd0\x02\xd1\x02\xd2\x02\ \xd3\x02\xd4\x02\xd5\x02\xd6\x02\xd7\x02\xd8\x02\xd9\x02\xda\x02\ \xdb\x02\xdc\x02\xdd\x02\xde\x02\xdf\x02\xe0\x02\xe1\x00\xb9\x02\ \xe2\x02\xe3\x02\xe4\x02\xe5\x02\xe6\x02\xe7\x00\x43\x00\x8d\x00\ \xd8\x00\xe1\x02\xe8\x02\xe9\x02\xea\x02\xeb\x02\xec\x00\xd9\x00\ \x8e\x00\xda\x00\xdb\x00\xdd\x00\xdf\x00\xdc\x00\xde\x00\xe0\x02\ \xed\x02\xee\x02\xef\x02\xf0\x02\xf1\x02\xf2\x02\xf3\x02\xf4\x02\ \xf5\x02\xf6\x02\xf7\x02\xf8\x02\xf9\x02\xfa\x02\xfb\x02\xfc\x02\ \xfd\x02\xfe\x02\xff\x03\x00\x03\x01\x03\x02\x03\x03\x03\x04\x03\ \x05\x03\x06\x03\x07\x03\x08\x03\x09\x03\x0a\x03\x0b\x03\x0c\x03\ \x0d\x03\x0e\x03\x0f\x03\x10\x03\x11\x03\x12\x03\x13\x03\x14\x03\ \x15\x03\x16\x03\x17\x03\x18\x03\x19\x03\x1a\x03\x1b\x03\x1c\x03\ \x1d\x03\x1e\x03\x1f\x03\x20\x03\x21\x03\x22\x03\x23\x03\x24\x03\ \x25\x03\x26\x03\x27\x03\x28\x03\x29\x03\x2a\x03\x2b\x03\x2c\x03\ \x2d\x03\x2e\x03\x2f\x03\x30\x03\x31\x03\x32\x03\x33\x03\x34\x03\ \x35\x03\x36\x03\x37\x03\x38\x03\x39\x03\x3a\x03\x3b\x03\x3c\x03\ \x3d\x03\x3e\x03\x3f\x03\x40\x03\x41\x03\x42\x03\x43\x03\x44\x03\ \x45\x03\x46\x03\x47\x03\x48\x03\x49\x03\x4a\x03\x4b\x03\x4c\x03\ \x4d\x03\x4e\x03\x4f\x03\x50\x03\x51\x03\x52\x03\x53\x03\x54\x03\ \x55\x03\x56\x03\x57\x03\x58\x03\x59\x03\x5a\x03\x5b\x03\x5c\x03\ \x5d\x03\x5e\x03\x5f\x03\x60\x03\x61\x03\x62\x03\x63\x03\x64\x03\ \x65\x03\x66\x03\x67\x03\x68\x03\x69\x03\x6a\x03\x6b\x03\x6c\x03\ \x6d\x03\x6e\x03\x6f\x03\x70\x03\x71\x03\x72\x03\x73\x03\x74\x03\ \x75\x03\x76\x03\x77\x03\x78\x03\x79\x03\x7a\x03\x7b\x03\x7c\x03\ \x7d\x03\x7e\x03\x7f\x03\x80\x03\x81\x03\x82\x03\x83\x03\x84\x03\ \x85\x03\x86\x03\x87\x03\x88\x03\x89\x03\x8a\x03\x8b\x03\x8c\x03\ \x8d\x03\x8e\x03\x8f\x03\x90\x03\x91\x03\x92\x03\x93\x03\x94\x03\ \x95\x03\x96\x03\x97\x03\x98\x03\x99\x03\x9a\x03\x9b\x03\x9c\x03\ \x9d\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa2\x03\xa3\x03\xa4\x03\ \xa5\x03\xa6\x03\xa7\x03\xa8\x03\xa9\x03\xaa\x03\xab\x03\xac\x03\ \xad\x03\xae\x03\xaf\x03\xb0\x03\xb1\x03\xb2\x03\xb3\x03\xb4\x03\ \xb5\x03\xb6\x03\xb7\x03\xb8\x03\xb9\x03\xba\x03\xbb\x03\xbc\x03\ \xbd\x03\xbe\x03\xbf\x03\xc0\x03\xc1\x03\xc2\x03\xc3\x03\xc4\x03\ \xc5\x03\xc6\x03\xc7\x03\xc8\x03\xc9\x03\xca\x03\xcb\x03\xcc\x03\ \xcd\x03\xce\x03\xcf\x03\xd0\x03\xd1\x03\xd2\x04\x4e\x55\x4c\x4c\ \x02\x43\x52\x07\x41\x6d\x61\x63\x72\x6f\x6e\x06\x41\x62\x72\x65\ \x76\x65\x07\x75\x6e\x69\x30\x31\x43\x44\x07\x75\x6e\x69\x31\x45\ \x41\x30\x07\x75\x6e\x69\x31\x45\x41\x32\x07\x75\x6e\x69\x31\x45\ \x41\x34\x07\x75\x6e\x69\x31\x45\x41\x36\x07\x75\x6e\x69\x31\x45\ \x41\x38\x07\x75\x6e\x69\x31\x45\x41\x41\x07\x75\x6e\x69\x31\x45\ \x41\x43\x07\x75\x6e\x69\x31\x45\x41\x45\x07\x75\x6e\x69\x31\x45\ \x42\x30\x07\x75\x6e\x69\x31\x45\x42\x32\x07\x75\x6e\x69\x31\x45\ \x42\x34\x07\x75\x6e\x69\x31\x45\x42\x36\x07\x41\x6f\x67\x6f\x6e\ \x65\x6b\x07\x75\x6e\x69\x30\x32\x34\x33\x0b\x43\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x0a\x43\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x06\x44\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x30\x43\ \x07\x75\x6e\x69\x31\x45\x30\x45\x06\x44\x63\x72\x6f\x61\x74\x06\ \x45\x63\x61\x72\x6f\x6e\x07\x45\x6d\x61\x63\x72\x6f\x6e\x06\x45\ \x62\x72\x65\x76\x65\x0a\x45\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\ \x07\x75\x6e\x69\x31\x45\x42\x38\x07\x75\x6e\x69\x31\x45\x42\x41\ \x07\x75\x6e\x69\x31\x45\x42\x43\x07\x75\x6e\x69\x31\x45\x42\x45\ \x07\x75\x6e\x69\x31\x45\x43\x30\x07\x75\x6e\x69\x31\x45\x43\x32\ \x07\x75\x6e\x69\x31\x45\x43\x34\x07\x75\x6e\x69\x31\x45\x43\x36\ \x07\x45\x6f\x67\x6f\x6e\x65\x6b\x0b\x47\x63\x69\x72\x63\x75\x6d\ \x66\x6c\x65\x78\x0a\x47\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x07\ \x75\x6e\x69\x30\x31\x32\x32\x06\x47\x63\x61\x72\x6f\x6e\x07\x75\ \x6e\x69\x31\x45\x32\x30\x0b\x75\x6e\x69\x30\x30\x34\x37\x30\x33\ \x30\x33\x0b\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\ \x6e\x69\x31\x45\x32\x34\x07\x75\x6e\x69\x31\x45\x32\x41\x04\x48\ \x62\x61\x72\x06\x49\x74\x69\x6c\x64\x65\x07\x49\x6d\x61\x63\x72\ \x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x43\x07\x75\x6e\x69\x30\x31\ \x43\x46\x07\x75\x6e\x69\x31\x45\x43\x38\x07\x75\x6e\x69\x31\x45\ \x43\x41\x07\x49\x6f\x67\x6f\x6e\x65\x6b\x0b\x4a\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x33\x36\x06\x4c\ \x61\x63\x75\x74\x65\x06\x4c\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x30\x31\x33\x42\x04\x4c\x64\x6f\x74\x07\x75\x6e\x69\x31\x45\x33\ \x36\x07\x75\x6e\x69\x31\x45\x33\x38\x07\x75\x6e\x69\x31\x45\x33\ \x41\x07\x75\x6e\x69\x31\x45\x34\x32\x06\x4e\x61\x63\x75\x74\x65\ \x06\x4e\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x35\x07\ \x75\x6e\x69\x31\x45\x34\x34\x07\x75\x6e\x69\x31\x45\x34\x36\x07\ \x75\x6e\x69\x31\x45\x34\x38\x07\x4f\x6d\x61\x63\x72\x6f\x6e\x07\ \x75\x6e\x69\x30\x31\x34\x45\x0d\x4f\x68\x75\x6e\x67\x61\x72\x75\ \x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\x31\x07\x75\x6e\ \x69\x31\x45\x43\x43\x07\x75\x6e\x69\x31\x45\x43\x45\x07\x75\x6e\ \x69\x31\x45\x44\x30\x07\x75\x6e\x69\x31\x45\x44\x32\x07\x75\x6e\ \x69\x31\x45\x44\x34\x07\x75\x6e\x69\x31\x45\x44\x36\x07\x75\x6e\ \x69\x31\x45\x44\x38\x05\x4f\x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\ \x45\x44\x41\x07\x75\x6e\x69\x31\x45\x44\x43\x07\x75\x6e\x69\x31\ \x45\x44\x45\x07\x75\x6e\x69\x31\x45\x45\x30\x07\x75\x6e\x69\x31\ \x45\x45\x32\x07\x75\x6e\x69\x30\x31\x45\x41\x06\x52\x61\x63\x75\ \x74\x65\x06\x52\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x35\ \x36\x07\x75\x6e\x69\x31\x45\x35\x41\x07\x75\x6e\x69\x31\x45\x35\ \x43\x07\x75\x6e\x69\x31\x45\x35\x45\x06\x53\x61\x63\x75\x74\x65\ \x0b\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\ \x30\x31\x35\x45\x07\x75\x6e\x69\x30\x32\x31\x38\x07\x75\x6e\x69\ \x31\x45\x36\x30\x07\x75\x6e\x69\x31\x45\x36\x32\x07\x75\x6e\x69\ \x31\x45\x39\x45\x06\x54\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\ \x31\x36\x32\x07\x75\x6e\x69\x30\x32\x31\x41\x07\x75\x6e\x69\x31\ \x45\x36\x43\x07\x75\x6e\x69\x31\x45\x36\x45\x06\x55\x74\x69\x6c\ \x64\x65\x07\x55\x6d\x61\x63\x72\x6f\x6e\x06\x55\x62\x72\x65\x76\ \x65\x05\x55\x72\x69\x6e\x67\x0d\x55\x68\x75\x6e\x67\x61\x72\x75\ \x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\x33\x07\x75\x6e\ \x69\x30\x31\x44\x35\x07\x75\x6e\x69\x30\x31\x44\x37\x07\x75\x6e\ \x69\x30\x31\x44\x39\x07\x75\x6e\x69\x30\x31\x44\x42\x07\x75\x6e\ \x69\x31\x45\x45\x34\x07\x75\x6e\x69\x31\x45\x45\x36\x07\x55\x6f\ \x67\x6f\x6e\x65\x6b\x05\x55\x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\ \x45\x45\x38\x07\x75\x6e\x69\x31\x45\x45\x41\x07\x75\x6e\x69\x31\ \x45\x45\x43\x07\x75\x6e\x69\x31\x45\x45\x45\x07\x75\x6e\x69\x31\ \x45\x46\x30\x06\x57\x67\x72\x61\x76\x65\x06\x57\x61\x63\x75\x74\ \x65\x0b\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x09\x57\x64\ \x69\x65\x72\x65\x73\x69\x73\x06\x59\x67\x72\x61\x76\x65\x0b\x59\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x31\x45\ \x38\x45\x07\x75\x6e\x69\x31\x45\x46\x34\x07\x75\x6e\x69\x31\x45\ \x46\x36\x07\x75\x6e\x69\x31\x45\x46\x38\x06\x5a\x61\x63\x75\x74\ \x65\x0a\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x07\x75\x6e\x69\ \x31\x45\x39\x32\x07\x75\x6e\x69\x30\x31\x38\x46\x07\x61\x6d\x61\ \x63\x72\x6f\x6e\x06\x61\x62\x72\x65\x76\x65\x07\x75\x6e\x69\x30\ \x31\x43\x45\x07\x75\x6e\x69\x31\x45\x41\x31\x07\x75\x6e\x69\x31\ \x45\x41\x33\x07\x75\x6e\x69\x31\x45\x41\x35\x07\x75\x6e\x69\x31\ \x45\x41\x37\x07\x75\x6e\x69\x31\x45\x41\x39\x07\x75\x6e\x69\x31\ \x45\x41\x42\x07\x75\x6e\x69\x31\x45\x41\x44\x07\x75\x6e\x69\x31\ \x45\x41\x46\x07\x75\x6e\x69\x31\x45\x42\x31\x07\x75\x6e\x69\x31\ \x45\x42\x33\x07\x75\x6e\x69\x31\x45\x42\x35\x07\x75\x6e\x69\x31\ \x45\x42\x37\x07\x61\x6f\x67\x6f\x6e\x65\x6b\x07\x75\x6e\x69\x30\ \x31\x38\x30\x0b\x63\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\ \x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x06\x64\x63\x61\x72\x6f\ \x6e\x07\x75\x6e\x69\x31\x45\x30\x44\x07\x75\x6e\x69\x31\x45\x30\ \x46\x06\x65\x63\x61\x72\x6f\x6e\x07\x65\x6d\x61\x63\x72\x6f\x6e\ \x06\x65\x62\x72\x65\x76\x65\x0a\x65\x64\x6f\x74\x61\x63\x63\x65\ \x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x39\x07\x75\x6e\x69\x31\x45\ \x42\x42\x07\x75\x6e\x69\x31\x45\x42\x44\x07\x75\x6e\x69\x31\x45\ \x42\x46\x07\x75\x6e\x69\x31\x45\x43\x31\x07\x75\x6e\x69\x31\x45\ \x43\x33\x07\x75\x6e\x69\x31\x45\x43\x35\x07\x75\x6e\x69\x31\x45\ \x43\x37\x07\x65\x6f\x67\x6f\x6e\x65\x6b\x0b\x67\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x0a\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x07\x75\x6e\x69\x30\x31\x32\x33\x06\x67\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x31\x45\x32\x31\x0b\x75\x6e\x69\x30\x30\x36\x37\ \x30\x33\x30\x33\x0b\x68\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\ \x07\x75\x6e\x69\x31\x45\x32\x35\x07\x75\x6e\x69\x31\x45\x32\x42\ \x04\x68\x62\x61\x72\x06\x69\x74\x69\x6c\x64\x65\x07\x69\x6d\x61\ \x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x44\x07\x75\x6e\x69\ \x30\x31\x44\x30\x07\x75\x6e\x69\x31\x45\x43\x39\x07\x75\x6e\x69\ \x31\x45\x43\x42\x07\x69\x6f\x67\x6f\x6e\x65\x6b\x09\x69\x6f\x67\ \x6f\x6e\x65\x6b\x2e\x64\x0b\x6a\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x07\x75\x6e\x69\x30\x31\x33\x37\x0c\x6b\x67\x72\x65\x65\ \x6e\x6c\x61\x6e\x64\x69\x63\x06\x6c\x61\x63\x75\x74\x65\x06\x6c\ \x63\x61\x72\x6f\x6e\x04\x6c\x64\x6f\x74\x07\x75\x6e\x69\x30\x31\ \x33\x43\x07\x75\x6e\x69\x31\x45\x33\x37\x07\x75\x6e\x69\x31\x45\ \x33\x39\x07\x75\x6e\x69\x31\x45\x33\x42\x07\x75\x6e\x69\x31\x45\ \x34\x33\x06\x6e\x61\x63\x75\x74\x65\x06\x6e\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x30\x31\x34\x36\x07\x75\x6e\x69\x31\x45\x34\x35\ \x07\x75\x6e\x69\x31\x45\x34\x37\x07\x75\x6e\x69\x31\x45\x34\x39\ \x0b\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\x07\x6f\x6d\x61\ \x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x46\x0d\x6f\x68\x75\ \x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\ \x44\x32\x07\x75\x6e\x69\x31\x45\x43\x44\x07\x75\x6e\x69\x31\x45\ \x43\x46\x07\x75\x6e\x69\x31\x45\x44\x31\x07\x75\x6e\x69\x31\x45\ \x44\x33\x07\x75\x6e\x69\x31\x45\x44\x35\x07\x75\x6e\x69\x31\x45\ \x44\x37\x07\x75\x6e\x69\x31\x45\x44\x39\x05\x6f\x68\x6f\x72\x6e\ \x07\x75\x6e\x69\x31\x45\x44\x42\x07\x75\x6e\x69\x31\x45\x44\x44\ \x07\x75\x6e\x69\x31\x45\x44\x46\x07\x75\x6e\x69\x31\x45\x45\x31\ \x07\x75\x6e\x69\x31\x45\x45\x33\x07\x75\x6e\x69\x30\x31\x45\x42\ \x06\x72\x61\x63\x75\x74\x65\x07\x75\x6e\x69\x30\x31\x35\x37\x06\ \x72\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x35\x42\x07\x75\ \x6e\x69\x31\x45\x35\x44\x07\x75\x6e\x69\x31\x45\x35\x46\x06\x73\ \x61\x63\x75\x74\x65\x0b\x73\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\ \x78\x07\x75\x6e\x69\x30\x31\x35\x46\x07\x75\x6e\x69\x30\x32\x31\ \x39\x07\x75\x6e\x69\x31\x45\x36\x31\x07\x75\x6e\x69\x31\x45\x36\ \x33\x06\x74\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x36\x33\ \x07\x75\x6e\x69\x30\x32\x31\x42\x07\x75\x6e\x69\x31\x45\x36\x44\ \x07\x75\x6e\x69\x31\x45\x36\x46\x07\x75\x6e\x69\x31\x45\x39\x37\ \x06\x75\x74\x69\x6c\x64\x65\x07\x75\x6d\x61\x63\x72\x6f\x6e\x06\ \x75\x62\x72\x65\x76\x65\x05\x75\x72\x69\x6e\x67\x0d\x75\x68\x75\ \x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\ \x44\x34\x07\x75\x6e\x69\x30\x31\x44\x36\x07\x75\x6e\x69\x30\x31\ \x44\x38\x07\x75\x6e\x69\x30\x31\x44\x41\x07\x75\x6e\x69\x30\x31\ \x44\x43\x07\x75\x6e\x69\x31\x45\x45\x35\x07\x75\x6e\x69\x31\x45\ \x45\x37\x07\x75\x6f\x67\x6f\x6e\x65\x6b\x05\x75\x68\x6f\x72\x6e\ \x07\x75\x6e\x69\x31\x45\x45\x39\x07\x75\x6e\x69\x31\x45\x45\x42\ \x07\x75\x6e\x69\x31\x45\x45\x44\x07\x75\x6e\x69\x31\x45\x45\x46\ \x07\x75\x6e\x69\x31\x45\x46\x31\x06\x77\x67\x72\x61\x76\x65\x06\ \x77\x61\x63\x75\x74\x65\x0b\x77\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x09\x77\x64\x69\x65\x72\x65\x73\x69\x73\x06\x79\x67\x72\ \x61\x76\x65\x0b\x79\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\ \x75\x6e\x69\x31\x45\x38\x46\x07\x75\x6e\x69\x31\x45\x46\x35\x07\ \x75\x6e\x69\x31\x45\x46\x37\x07\x75\x6e\x69\x31\x45\x46\x39\x06\ \x7a\x61\x63\x75\x74\x65\x0a\x7a\x64\x6f\x74\x61\x63\x63\x65\x6e\ \x74\x07\x75\x6e\x69\x31\x45\x39\x33\x07\x75\x6e\x69\x30\x32\x33\ \x37\x07\x75\x6e\x69\x30\x32\x35\x30\x07\x75\x6e\x69\x30\x32\x35\ \x31\x07\x75\x6e\x69\x30\x32\x35\x32\x07\x75\x6e\x69\x30\x32\x35\ \x34\x07\x75\x6e\x69\x30\x32\x35\x38\x07\x75\x6e\x69\x30\x32\x35\ \x39\x07\x75\x6e\x69\x30\x32\x36\x31\x07\x75\x6e\x69\x30\x32\x36\ \x35\x07\x75\x6e\x69\x30\x32\x36\x46\x07\x75\x6e\x69\x30\x32\x37\ \x39\x07\x75\x6e\x69\x30\x32\x38\x37\x07\x75\x6e\x69\x30\x32\x38\ \x43\x07\x75\x6e\x69\x30\x32\x38\x44\x07\x75\x6e\x69\x30\x32\x38\ \x45\x07\x75\x6e\x69\x30\x32\x39\x45\x03\x61\x2e\x61\x08\x61\x67\ \x72\x61\x76\x65\x2e\x61\x08\x61\x61\x63\x75\x74\x65\x2e\x61\x0d\ \x61\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\x61\x74\ \x69\x6c\x64\x65\x2e\x61\x0b\x61\x64\x69\x65\x72\x65\x73\x69\x73\ \x2e\x61\x09\x61\x6d\x61\x63\x72\x6f\x6e\x2e\x61\x08\x61\x62\x72\ \x65\x76\x65\x2e\x61\x07\x61\x72\x69\x6e\x67\x2e\x61\x09\x75\x6e\ \x69\x30\x31\x43\x45\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x31\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x41\x33\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x41\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x37\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x41\x39\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\ \x42\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x44\x2e\x61\x09\x75\x6e\ \x69\x31\x45\x41\x46\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x31\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x42\x33\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x42\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x37\x2e\x61\x09\ \x61\x6f\x67\x6f\x6e\x65\x6b\x2e\x61\x03\x67\x2e\x61\x0d\x67\x63\ \x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\x67\x62\x72\x65\ \x76\x65\x2e\x61\x0c\x67\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x2e\ \x61\x09\x75\x6e\x69\x30\x31\x32\x33\x2e\x61\x08\x67\x63\x61\x72\ \x6f\x6e\x2e\x61\x09\x75\x6e\x69\x31\x45\x32\x31\x2e\x61\x0d\x75\ \x6e\x69\x30\x30\x36\x37\x30\x33\x30\x33\x2e\x61\x09\x7a\x65\x72\ \x6f\x2e\x6f\x6e\x75\x6d\x08\x6f\x6e\x65\x2e\x6f\x6e\x75\x6d\x08\ \x74\x77\x6f\x2e\x6f\x6e\x75\x6d\x0a\x74\x68\x72\x65\x65\x2e\x6f\ \x6e\x75\x6d\x09\x66\x6f\x75\x72\x2e\x6f\x6e\x75\x6d\x09\x66\x69\ \x76\x65\x2e\x6f\x6e\x75\x6d\x08\x73\x69\x78\x2e\x6f\x6e\x75\x6d\ \x0a\x73\x65\x76\x65\x6e\x2e\x6f\x6e\x75\x6d\x0a\x65\x69\x67\x68\ \x74\x2e\x6f\x6e\x75\x6d\x09\x6e\x69\x6e\x65\x2e\x6f\x6e\x75\x6d\ \x07\x75\x6e\x69\x30\x30\x41\x44\x0a\x66\x69\x67\x75\x72\x65\x64\ \x61\x73\x68\x07\x75\x6e\x69\x32\x30\x31\x35\x07\x75\x6e\x69\x32\ \x31\x31\x37\x07\x75\x6e\x69\x32\x31\x32\x30\x07\x61\x74\x2e\x63\ \x61\x73\x65\x0a\x61\x73\x74\x65\x72\x69\x73\x6b\x2e\x61\x08\x68\ \x79\x70\x68\x65\x6e\x2e\x61\x09\x75\x6e\x69\x30\x30\x41\x44\x2e\ \x61\x08\x64\x6f\x6c\x6c\x61\x72\x2e\x61\x09\x7a\x65\x72\x6f\x2e\ \x73\x75\x70\x73\x08\x6f\x6e\x65\x2e\x73\x75\x70\x73\x08\x74\x77\ \x6f\x2e\x73\x75\x70\x73\x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x70\ \x73\x09\x66\x6f\x75\x72\x2e\x73\x75\x70\x73\x09\x66\x69\x76\x65\ \x2e\x73\x75\x70\x73\x08\x73\x69\x78\x2e\x73\x75\x70\x73\x0a\x73\ \x65\x76\x65\x6e\x2e\x73\x75\x70\x73\x0a\x65\x69\x67\x68\x74\x2e\ \x73\x75\x70\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\x70\x73\x0e\x70\ \x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x70\x73\x0f\x70\x61\ \x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x70\x73\x0b\x70\x65\ \x72\x69\x6f\x64\x2e\x73\x75\x70\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\ \x73\x75\x70\x73\x09\x7a\x65\x72\x6f\x2e\x73\x75\x62\x73\x08\x6f\ \x6e\x65\x2e\x73\x75\x62\x73\x08\x74\x77\x6f\x2e\x73\x75\x62\x73\ \x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x62\x73\x09\x66\x6f\x75\x72\ \x2e\x73\x75\x62\x73\x09\x66\x69\x76\x65\x2e\x73\x75\x62\x73\x08\ \x73\x69\x78\x2e\x73\x75\x62\x73\x0a\x73\x65\x76\x65\x6e\x2e\x73\ \x75\x62\x73\x0a\x65\x69\x67\x68\x74\x2e\x73\x75\x62\x73\x09\x6e\ \x69\x6e\x65\x2e\x73\x75\x62\x73\x0e\x70\x61\x72\x65\x6e\x6c\x65\ \x66\x74\x2e\x73\x75\x62\x73\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\ \x68\x74\x2e\x73\x75\x62\x73\x0b\x70\x65\x72\x69\x6f\x64\x2e\x73\ \x75\x62\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\x73\x75\x62\x73\x09\x7a\ \x65\x72\x6f\x2e\x64\x6e\x6f\x6d\x08\x6f\x6e\x65\x2e\x64\x6e\x6f\ \x6d\x08\x74\x77\x6f\x2e\x64\x6e\x6f\x6d\x0a\x74\x68\x72\x65\x65\ \x2e\x64\x6e\x6f\x6d\x09\x66\x6f\x75\x72\x2e\x64\x6e\x6f\x6d\x09\ \x66\x69\x76\x65\x2e\x64\x6e\x6f\x6d\x08\x73\x69\x78\x2e\x64\x6e\ \x6f\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x64\x6e\x6f\x6d\x0a\x65\x69\ \x67\x68\x74\x2e\x64\x6e\x6f\x6d\x09\x6e\x69\x6e\x65\x2e\x64\x6e\ \x6f\x6d\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x64\x6e\x6f\ \x6d\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x64\x6e\x6f\ \x6d\x0b\x70\x65\x72\x69\x6f\x64\x2e\x64\x6e\x6f\x6d\x0a\x63\x6f\ \x6d\x6d\x61\x2e\x64\x6e\x6f\x6d\x09\x7a\x65\x72\x6f\x2e\x6e\x75\ \x6d\x72\x08\x6f\x6e\x65\x2e\x6e\x75\x6d\x72\x08\x74\x77\x6f\x2e\ \x6e\x75\x6d\x72\x0a\x74\x68\x72\x65\x65\x2e\x6e\x75\x6d\x72\x09\ \x66\x6f\x75\x72\x2e\x6e\x75\x6d\x72\x09\x66\x69\x76\x65\x2e\x6e\ \x75\x6d\x72\x08\x73\x69\x78\x2e\x6e\x75\x6d\x72\x0a\x73\x65\x76\ \x65\x6e\x2e\x6e\x75\x6d\x72\x0a\x65\x69\x67\x68\x74\x2e\x6e\x75\ \x6d\x72\x09\x6e\x69\x6e\x65\x2e\x6e\x75\x6d\x72\x0e\x70\x61\x72\ \x65\x6e\x6c\x65\x66\x74\x2e\x6e\x75\x6d\x72\x0f\x70\x61\x72\x65\ \x6e\x72\x69\x67\x68\x74\x2e\x6e\x75\x6d\x72\x0b\x70\x65\x72\x69\ \x6f\x64\x2e\x6e\x75\x6d\x72\x0a\x63\x6f\x6d\x6d\x61\x2e\x6e\x75\ \x6d\x72\x0d\x6f\x72\x64\x66\x65\x6d\x69\x6e\x69\x6e\x65\x2e\x61\ \x06\x61\x2e\x73\x75\x70\x73\x06\x62\x2e\x73\x75\x70\x73\x06\x63\ \x2e\x73\x75\x70\x73\x06\x64\x2e\x73\x75\x70\x73\x06\x65\x2e\x73\ \x75\x70\x73\x06\x66\x2e\x73\x75\x70\x73\x06\x67\x2e\x73\x75\x70\ \x73\x06\x68\x2e\x73\x75\x70\x73\x06\x69\x2e\x73\x75\x70\x73\x06\ \x6a\x2e\x73\x75\x70\x73\x06\x6b\x2e\x73\x75\x70\x73\x06\x6c\x2e\ \x73\x75\x70\x73\x06\x6d\x2e\x73\x75\x70\x73\x06\x6e\x2e\x73\x75\ \x70\x73\x06\x6f\x2e\x73\x75\x70\x73\x06\x70\x2e\x73\x75\x70\x73\ \x06\x71\x2e\x73\x75\x70\x73\x06\x72\x2e\x73\x75\x70\x73\x06\x73\ \x2e\x73\x75\x70\x73\x06\x74\x2e\x73\x75\x70\x73\x06\x75\x2e\x73\ \x75\x70\x73\x06\x76\x2e\x73\x75\x70\x73\x06\x77\x2e\x73\x75\x70\ \x73\x06\x78\x2e\x73\x75\x70\x73\x06\x79\x2e\x73\x75\x70\x73\x06\ \x7a\x2e\x73\x75\x70\x73\x0b\x65\x67\x72\x61\x76\x65\x2e\x73\x75\ \x70\x73\x0b\x65\x61\x63\x75\x74\x65\x2e\x73\x75\x70\x73\x0c\x75\ \x6e\x69\x30\x32\x35\x39\x2e\x73\x75\x70\x73\x06\x61\x2e\x73\x75\ \x70\x61\x06\x67\x2e\x73\x75\x70\x61\x04\x45\x75\x72\x6f\x07\x75\ \x6e\x69\x30\x31\x39\x32\x0d\x63\x6f\x6c\x6f\x6e\x6d\x6f\x6e\x65\ \x74\x61\x72\x79\x04\x6c\x69\x72\x61\x07\x75\x6e\x69\x32\x30\x41\ \x36\x06\x70\x65\x73\x65\x74\x61\x04\x64\x6f\x6e\x67\x07\x75\x6e\ \x69\x32\x30\x42\x31\x07\x75\x6e\x69\x32\x30\x42\x32\x07\x75\x6e\ \x69\x32\x30\x42\x35\x07\x75\x6e\x69\x32\x30\x42\x39\x07\x75\x6e\ \x69\x32\x30\x42\x41\x07\x75\x6e\x69\x32\x32\x31\x35\x0a\x73\x6c\ \x61\x73\x68\x2e\x66\x72\x61\x63\x08\x6f\x6e\x65\x74\x68\x69\x72\ \x64\x09\x74\x77\x6f\x74\x68\x69\x72\x64\x73\x09\x6f\x6e\x65\x65\ \x69\x67\x68\x74\x68\x0c\x74\x68\x72\x65\x65\x65\x69\x67\x68\x74\ \x68\x73\x0b\x66\x69\x76\x65\x65\x69\x67\x68\x74\x68\x73\x0c\x73\ \x65\x76\x65\x6e\x65\x69\x67\x68\x74\x68\x73\x07\x75\x6e\x69\x32\ \x32\x31\x39\x07\x75\x6e\x69\x30\x30\x42\x35\x07\x75\x6e\x69\x32\ \x32\x30\x36\x07\x75\x6e\x69\x32\x31\x32\x36\x07\x75\x6e\x69\x32\ \x31\x31\x33\x09\x65\x73\x74\x69\x6d\x61\x74\x65\x64\x07\x75\x6e\ \x69\x32\x31\x39\x30\x07\x61\x72\x72\x6f\x77\x75\x70\x07\x75\x6e\ \x69\x32\x31\x39\x32\x09\x61\x72\x72\x6f\x77\x64\x6f\x77\x6e\x07\ \x75\x6e\x69\x32\x35\x41\x30\x07\x75\x6e\x69\x32\x35\x43\x36\x07\ \x75\x6e\x69\x32\x35\x43\x39\x07\x75\x6e\x69\x32\x37\x35\x32\x07\ \x74\x72\x69\x61\x67\x75\x70\x07\x75\x6e\x69\x32\x35\x42\x33\x07\ \x75\x6e\x69\x32\x35\x42\x36\x07\x75\x6e\x69\x32\x35\x42\x37\x07\ \x74\x72\x69\x61\x67\x64\x6e\x07\x75\x6e\x69\x32\x35\x42\x44\x07\ \x75\x6e\x69\x32\x35\x43\x30\x07\x75\x6e\x69\x32\x35\x43\x31\x07\ \x75\x6e\x69\x32\x36\x31\x30\x07\x75\x6e\x69\x32\x36\x31\x31\x07\ \x75\x6e\x69\x32\x37\x31\x33\x07\x75\x6e\x69\x32\x36\x36\x41\x07\ \x75\x6e\x69\x32\x30\x33\x32\x07\x75\x6e\x69\x32\x30\x33\x33\x07\ \x75\x6e\x69\x30\x32\x42\x42\x07\x75\x6e\x69\x30\x32\x42\x43\x07\ \x75\x6e\x69\x30\x32\x42\x45\x07\x75\x6e\x69\x30\x32\x42\x46\x07\ \x75\x6e\x69\x30\x32\x43\x38\x07\x75\x6e\x69\x30\x32\x43\x39\x07\ \x75\x6e\x69\x30\x32\x43\x41\x07\x75\x6e\x69\x30\x32\x43\x42\x07\ \x75\x6e\x69\x30\x32\x43\x43\x07\x75\x6e\x69\x30\x33\x30\x30\x0b\ \x75\x6e\x69\x30\x33\x30\x30\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x31\x0b\x75\x6e\x69\x30\x33\x30\x31\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x32\x0b\x75\x6e\x69\x30\x33\x30\x32\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x33\x0b\x75\x6e\x69\x30\ \x33\x30\x33\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x34\x0b\ \x75\x6e\x69\x30\x33\x30\x34\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x36\x0b\x75\x6e\x69\x30\x33\x30\x36\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x37\x0b\x75\x6e\x69\x30\x33\x30\x37\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x38\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x39\x0b\ \x75\x6e\x69\x30\x33\x30\x39\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x41\x0b\x75\x6e\x69\x30\x33\x30\x41\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x42\x0b\x75\x6e\x69\x30\x33\x30\x42\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x43\x0b\x75\x6e\x69\x30\ \x33\x30\x43\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x46\x0b\ \x75\x6e\x69\x30\x33\x30\x46\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x31\x32\x07\x75\x6e\x69\x30\x33\x31\x33\x07\x75\x6e\x69\x30\ \x33\x31\x42\x07\x75\x6e\x69\x30\x33\x32\x33\x07\x75\x6e\x69\x30\ \x33\x32\x34\x07\x75\x6e\x69\x30\x33\x32\x36\x07\x75\x6e\x69\x30\ \x33\x32\x37\x0b\x75\x6e\x69\x30\x33\x32\x37\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x32\x38\x0b\x75\x6e\x69\x30\x33\x32\x38\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x45\x07\x75\x6e\x69\x30\ \x33\x33\x31\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x0f\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x0f\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x43\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x43\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x30\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x30\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x33\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x33\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x2e\x63\x61\x70\x09\ \x75\x6e\x69\x30\x33\x30\x43\x2e\x61\x09\x75\x6e\x69\x30\x33\x32\ \x36\x2e\x61\x07\x75\x6e\x69\x30\x30\x41\x30\x07\x75\x6e\x69\x32\ \x30\x30\x37\x0a\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x0c\x6e\ \x62\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x07\x75\x6e\x69\x32\ \x35\x30\x30\x07\x75\x6e\x69\x32\x35\x30\x31\x07\x75\x6e\x69\x32\ \x35\x30\x32\x07\x75\x6e\x69\x32\x35\x30\x33\x07\x75\x6e\x69\x32\ \x35\x30\x34\x07\x75\x6e\x69\x32\x35\x30\x35\x07\x75\x6e\x69\x32\ \x35\x30\x36\x07\x75\x6e\x69\x32\x35\x30\x37\x07\x75\x6e\x69\x32\ \x35\x30\x38\x07\x75\x6e\x69\x32\x35\x30\x39\x07\x75\x6e\x69\x32\ \x35\x30\x41\x07\x75\x6e\x69\x32\x35\x30\x42\x07\x75\x6e\x69\x32\ \x35\x30\x43\x07\x75\x6e\x69\x32\x35\x30\x44\x07\x75\x6e\x69\x32\ \x35\x30\x45\x07\x75\x6e\x69\x32\x35\x30\x46\x07\x75\x6e\x69\x32\ \x35\x31\x30\x07\x75\x6e\x69\x32\x35\x31\x31\x07\x75\x6e\x69\x32\ \x35\x31\x32\x07\x75\x6e\x69\x32\x35\x31\x33\x07\x75\x6e\x69\x32\ \x35\x31\x34\x07\x75\x6e\x69\x32\x35\x31\x35\x07\x75\x6e\x69\x32\ \x35\x31\x36\x07\x75\x6e\x69\x32\x35\x31\x37\x07\x75\x6e\x69\x32\ \x35\x31\x38\x07\x75\x6e\x69\x32\x35\x31\x39\x07\x75\x6e\x69\x32\ \x35\x31\x41\x07\x75\x6e\x69\x32\x35\x31\x42\x07\x75\x6e\x69\x32\ \x35\x31\x43\x07\x75\x6e\x69\x32\x35\x31\x44\x07\x75\x6e\x69\x32\ \x35\x31\x45\x07\x75\x6e\x69\x32\x35\x31\x46\x07\x75\x6e\x69\x32\ \x35\x32\x30\x07\x75\x6e\x69\x32\x35\x32\x31\x07\x75\x6e\x69\x32\ \x35\x32\x32\x07\x75\x6e\x69\x32\x35\x32\x33\x07\x75\x6e\x69\x32\ \x35\x32\x34\x07\x75\x6e\x69\x32\x35\x32\x35\x07\x75\x6e\x69\x32\ \x35\x32\x36\x07\x75\x6e\x69\x32\x35\x32\x37\x07\x75\x6e\x69\x32\ \x35\x32\x38\x07\x75\x6e\x69\x32\x35\x32\x39\x07\x75\x6e\x69\x32\ \x35\x32\x41\x07\x75\x6e\x69\x32\x35\x32\x42\x07\x75\x6e\x69\x32\ \x35\x32\x43\x07\x75\x6e\x69\x32\x35\x32\x44\x07\x75\x6e\x69\x32\ \x35\x32\x45\x07\x75\x6e\x69\x32\x35\x32\x46\x07\x75\x6e\x69\x32\ \x35\x33\x30\x07\x75\x6e\x69\x32\x35\x33\x31\x07\x75\x6e\x69\x32\ \x35\x33\x32\x07\x75\x6e\x69\x32\x35\x33\x33\x07\x75\x6e\x69\x32\ \x35\x33\x34\x07\x75\x6e\x69\x32\x35\x33\x35\x07\x75\x6e\x69\x32\ \x35\x33\x36\x07\x75\x6e\x69\x32\x35\x33\x37\x07\x75\x6e\x69\x32\ \x35\x33\x38\x07\x75\x6e\x69\x32\x35\x33\x39\x07\x75\x6e\x69\x32\ \x35\x33\x41\x07\x75\x6e\x69\x32\x35\x33\x42\x07\x75\x6e\x69\x32\ \x35\x33\x43\x07\x75\x6e\x69\x32\x35\x33\x44\x07\x75\x6e\x69\x32\ \x35\x33\x45\x07\x75\x6e\x69\x32\x35\x33\x46\x07\x75\x6e\x69\x32\ \x35\x34\x30\x07\x75\x6e\x69\x32\x35\x34\x31\x07\x75\x6e\x69\x32\ \x35\x34\x32\x07\x75\x6e\x69\x32\x35\x34\x33\x07\x75\x6e\x69\x32\ \x35\x34\x34\x07\x75\x6e\x69\x32\x35\x34\x35\x07\x75\x6e\x69\x32\ \x35\x34\x36\x07\x75\x6e\x69\x32\x35\x34\x37\x07\x75\x6e\x69\x32\ \x35\x34\x38\x07\x75\x6e\x69\x32\x35\x34\x39\x07\x75\x6e\x69\x32\ \x35\x34\x41\x07\x75\x6e\x69\x32\x35\x34\x42\x07\x75\x6e\x69\x32\ \x35\x34\x43\x07\x75\x6e\x69\x32\x35\x34\x44\x07\x75\x6e\x69\x32\ \x35\x34\x45\x07\x75\x6e\x69\x32\x35\x34\x46\x07\x75\x6e\x69\x32\ \x35\x35\x30\x07\x75\x6e\x69\x32\x35\x35\x31\x07\x75\x6e\x69\x32\ \x35\x35\x32\x07\x75\x6e\x69\x32\x35\x35\x33\x07\x75\x6e\x69\x32\ \x35\x35\x34\x07\x75\x6e\x69\x32\x35\x35\x35\x07\x75\x6e\x69\x32\ \x35\x35\x36\x07\x75\x6e\x69\x32\x35\x35\x37\x07\x75\x6e\x69\x32\ \x35\x35\x38\x07\x75\x6e\x69\x32\x35\x35\x39\x07\x75\x6e\x69\x32\ \x35\x35\x41\x07\x75\x6e\x69\x32\x35\x35\x42\x07\x75\x6e\x69\x32\ \x35\x35\x43\x07\x75\x6e\x69\x32\x35\x35\x44\x07\x75\x6e\x69\x32\ \x35\x35\x45\x07\x75\x6e\x69\x32\x35\x35\x46\x07\x75\x6e\x69\x32\ \x35\x36\x30\x07\x75\x6e\x69\x32\x35\x36\x31\x07\x75\x6e\x69\x32\ \x35\x36\x32\x07\x75\x6e\x69\x32\x35\x36\x33\x07\x75\x6e\x69\x32\ \x35\x36\x34\x07\x75\x6e\x69\x32\x35\x36\x35\x07\x75\x6e\x69\x32\ \x35\x36\x36\x07\x75\x6e\x69\x32\x35\x36\x37\x07\x75\x6e\x69\x32\ \x35\x36\x38\x07\x75\x6e\x69\x32\x35\x36\x39\x07\x75\x6e\x69\x32\ \x35\x36\x41\x07\x75\x6e\x69\x32\x35\x36\x42\x07\x75\x6e\x69\x32\ \x35\x36\x43\x07\x75\x6e\x69\x32\x35\x36\x44\x07\x75\x6e\x69\x32\ \x35\x36\x45\x07\x75\x6e\x69\x32\x35\x36\x46\x07\x75\x6e\x69\x32\ \x35\x37\x30\x07\x75\x6e\x69\x32\x35\x37\x31\x07\x75\x6e\x69\x32\ \x35\x37\x32\x07\x75\x6e\x69\x32\x35\x37\x33\x07\x75\x6e\x69\x32\ \x35\x37\x34\x07\x75\x6e\x69\x32\x35\x37\x35\x07\x75\x6e\x69\x32\ \x35\x37\x36\x07\x75\x6e\x69\x32\x35\x37\x37\x07\x75\x6e\x69\x32\ \x35\x37\x38\x07\x75\x6e\x69\x32\x35\x37\x39\x07\x75\x6e\x69\x32\ \x35\x37\x41\x07\x75\x6e\x69\x32\x35\x37\x42\x07\x75\x6e\x69\x32\ \x35\x37\x43\x07\x75\x6e\x69\x32\x35\x37\x44\x07\x75\x6e\x69\x32\ \x35\x37\x45\x07\x75\x6e\x69\x32\x35\x37\x46\x07\x75\x6e\x69\x32\ \x35\x38\x30\x07\x75\x6e\x69\x32\x35\x38\x31\x07\x75\x6e\x69\x32\ \x35\x38\x32\x07\x75\x6e\x69\x32\x35\x38\x33\x07\x75\x6e\x69\x32\ \x35\x38\x34\x07\x75\x6e\x69\x32\x35\x38\x35\x07\x75\x6e\x69\x32\ \x35\x38\x36\x07\x75\x6e\x69\x32\x35\x38\x37\x07\x75\x6e\x69\x32\ \x35\x38\x38\x07\x75\x6e\x69\x32\x35\x38\x39\x07\x75\x6e\x69\x32\ \x35\x38\x41\x07\x75\x6e\x69\x32\x35\x38\x42\x07\x75\x6e\x69\x32\ \x35\x38\x43\x07\x75\x6e\x69\x32\x35\x38\x44\x07\x75\x6e\x69\x32\ \x35\x38\x45\x07\x75\x6e\x69\x32\x35\x38\x46\x07\x75\x6e\x69\x32\ \x35\x39\x30\x07\x75\x6e\x69\x32\x35\x39\x31\x07\x75\x6e\x69\x32\ \x35\x39\x32\x07\x75\x6e\x69\x32\x35\x39\x33\x07\x75\x6e\x69\x32\ \x35\x39\x34\x07\x75\x6e\x69\x32\x35\x39\x35\x07\x75\x6e\x69\x32\ \x35\x39\x36\x07\x75\x6e\x69\x32\x35\x39\x37\x07\x75\x6e\x69\x32\ \x35\x39\x38\x07\x75\x6e\x69\x32\x35\x39\x39\x07\x75\x6e\x69\x32\ \x35\x39\x41\x07\x75\x6e\x69\x32\x35\x39\x42\x07\x75\x6e\x69\x32\ \x35\x39\x43\x07\x75\x6e\x69\x32\x35\x39\x44\x07\x75\x6e\x69\x32\ \x35\x39\x45\x07\x75\x6e\x69\x32\x35\x39\x46\x00\x00\x00\x01\xff\ \xff\x00\x02\x00\x01\x00\x00\x00\x0c\x00\x00\x00\x00\x00\xbe\x00\ \x02\x00\x1d\x00\x04\x00\x37\x00\x01\x00\x4d\x00\x4e\x00\x01\x00\ \x69\x00\x69\x00\x01\x00\x70\x00\x70\x00\x02\x00\x80\x00\x80\x00\ \x01\x00\xa3\x00\xa5\x00\x01\x00\xab\x00\xab\x00\x01\x00\xcf\x00\ \xd0\x00\x01\x00\xe8\x00\xe8\x00\x01\x00\xfe\x00\xfe\x00\x01\x01\ \x06\x01\x06\x00\x02\x01\x1a\x01\x1a\x00\x01\x01\x1e\x01\x1e\x00\ \x02\x01\x21\x01\x21\x00\x02\x01\x30\x01\x30\x00\x02\x01\x31\x01\ \x32\x00\x01\x01\x37\x01\x37\x00\x02\x01\x57\x01\x59\x00\x01\x01\ \x5f\x01\x5f\x00\x01\x01\x6e\x01\x6e\x00\x02\x01\x84\x01\x85\x00\ \x01\x01\x9c\x01\xac\x00\x01\x01\xaf\x01\xaf\x00\x01\x01\xc5\x01\ \xc6\x00\x01\x01\xca\x01\xca\x00\x02\x02\xcf\x02\xcf\x00\x01\x02\ \xd9\x02\xd9\x00\x01\x02\xdf\x03\x1e\x00\x03\x03\x20\x03\x20\x00\ \x03\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x01\x03\x05\x03\x1e\x00\ \x01\x03\x20\x03\x20\x00\x01\x00\x01\x00\x00\x00\x0a\x00\x38\x00\ \x92\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\x6e\x00\x1e\x00\ \x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x00\x00\x02\x00\x04\x00\ \x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x01\x00\x03\x00\x05\x00\ \x06\x6d\x61\x72\x6b\x00\x26\x6d\x61\x72\x6b\x00\x36\x6d\x6b\x6d\ \x6b\x00\x46\x6d\x6b\x6d\x6b\x00\x4c\x73\x69\x7a\x65\x00\x52\x73\ \x69\x7a\x65\x00\x56\x00\x00\x00\x06\x00\x00\x00\x01\x00\x02\x00\ \x03\x00\x04\x00\x05\x00\x00\x00\x06\x00\x00\x00\x01\x00\x02\x00\ \x03\x00\x04\x00\x05\x00\x00\x00\x01\x00\x06\x00\x00\x00\x01\x00\ \x06\x00\x52\x00\x00\x00\x4e\x00\x00\x00\x07\x00\x10\x00\x1a\x00\ \x22\x00\x2a\x00\x32\x00\x3a\x00\x42\x00\x01\x00\x00\x00\x02\x00\ \x44\x00\x4e\x00\x04\x00\x00\x00\x01\x00\x4c\x00\x04\x00\x00\x00\ \x01\x03\x3e\x00\x04\x00\x00\x00\x01\x03\x7e\x00\x04\x00\x00\x00\ \x01\x05\x5c\x00\x04\x00\x00\x00\x01\x05\x86\x00\x06\x01\x00\x00\ \x01\x05\xea\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x06\ \xe2\x00\x05\xfe\xd4\xfd\xa8\x00\x01\x06\xe2\x00\x04\xfd\xa8\x00\ \x01\x06\xe4\x06\xfa\x00\x01\x00\x0c\x00\xea\x00\x37\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\x9e\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\ \x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x5f\x00\xc6\x00\xcc\x00\ \xd2\x00\xd8\x00\xde\x00\xe4\x00\xea\x00\xf0\x00\xc6\x00\xde\x00\ \xf6\x00\xfc\x00\xc6\x01\x02\x00\xc6\x01\x08\x01\x0e\x01\x14\x01\ \x1a\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x00\xc6\x01\x20\x01\ \x26\x01\x2c\x01\x32\x01\x38\x01\x3e\x01\x44\x01\x4a\x01\x2c\x01\ \x50\x01\x50\x01\x56\x01\x5c\x01\x62\x01\x68\x00\xc0\x01\x6e\x01\ \x74\x01\x7a\x01\x80\x01\x86\x01\x8c\x01\x92\x01\x98\x00\xc0\x01\ \x74\x01\x9e\x00\xc6\x01\xa4\x00\xde\x00\xc6\x01\xaa\x01\xb0\x00\ \xc6\x00\xc6\x00\xc6\x00\xc6\x01\xb6\x01\x26\x01\x80\x01\xbc\x01\ \xbc\x00\xc0\x01\x68\x00\xc0\x00\xc0\x01\x8c\x01\x8c\x01\x2c\x01\ \xbc\x01\x80\x01\xc2\x01\xc8\x01\xce\x01\xd4\x01\x4a\x01\xda\x01\ \xe0\x01\xe6\x01\xec\x01\xf2\x01\x92\x01\x98\x01\xf8\x01\xfe\x01\ \xc2\x01\xc2\x01\xda\x02\x04\x02\x0a\x00\x01\x01\x2c\x02\x06\x00\ \x01\x01\x2c\x02\xa2\x00\x01\x01\x1d\x02\xa2\x00\x01\x01\x62\x02\ \xa2\x00\x01\x01\x29\x02\xa2\x00\x01\x01\x42\x02\xa2\x00\x01\x01\ \x47\x02\xa2\x00\x01\x01\x4a\x02\xa2\x00\x01\x01\x2b\x02\xa2\x00\ \x01\x01\x38\x02\xa2\x00\x01\x00\xc3\x02\xa2\x00\x01\x01\x32\x02\ \xa2\x00\x01\x01\x39\x02\xa2\x00\x01\x01\x31\x02\xa4\x00\x01\x01\ \x2f\x02\xa2\x00\x01\x01\x33\x02\xa2\x00\x01\x01\x3a\x02\xa2\x00\ \x01\x01\x34\x02\x06\x00\x01\x00\x97\x02\xda\x00\x01\x01\x55\x02\ \x06\x00\x01\x01\xb9\x02\xda\x00\x01\x01\x39\x02\x06\x00\x01\x01\ \x9d\x02\xe5\x00\x01\x01\x30\x02\x06\x00\x01\x01\x59\x02\xd2\x00\ \x01\x00\xa7\x02\xda\x00\x01\x01\x0f\x02\xda\x00\x01\x01\x42\x02\ \x07\x00\x01\x01\x3b\x02\x06\x00\x01\x01\x41\x02\x06\x00\x01\x01\ \x33\x02\x06\x00\x01\x01\x53\x02\x06\x00\x01\x01\x38\x02\x06\x00\ \x01\x01\x09\x02\x92\x00\x01\x01\x28\x02\x06\x00\x01\x01\x2e\x02\ \x06\x00\x01\x01\x2d\x02\x06\x00\x01\x01\x43\x02\x06\x00\x01\x01\ \x9b\x02\xb6\x00\x01\x01\x31\x02\xa2\x00\x01\x01\x8a\x02\xa2\x00\ \x01\x01\x3f\x02\xa2\x00\x01\x01\x59\x02\x06\x00\x01\x01\x3a\x02\ \x06\x00\x01\x01\x3d\x02\x06\x00\x01\x01\x1d\x02\x06\x00\x01\x01\ \x23\x02\x06\x00\x01\x01\x35\x02\x06\x00\x01\x01\x26\x02\x06\x00\ \x01\x01\x2e\x02\x07\x00\x01\x01\x8f\x02\x06\x00\x01\x00\xf9\x02\ \x06\x00\x01\x01\x31\x02\x06\x00\x01\x01\x1e\x02\x06\x00\x01\x01\ \x2c\x02\xde\x00\x01\x01\x2c\x02\xcc\x00\x01\x04\x76\x04\x7e\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x18\x00\x00\x00\x18\x00\ \x06\x00\x14\x00\x1a\x00\x0e\x00\x20\x00\x26\x00\x2c\x00\x01\x01\ \x2c\x00\x00\x00\x01\x01\x5c\x00\x00\x00\x01\x01\x30\x00\x00\x00\ \x01\x01\x55\x00\x00\x00\x01\x01\x37\x00\x00\x00\x01\x01\x75\x00\ \x00\x00\x01\x04\x46\x04\x54\x00\x01\x00\x0c\x00\x22\x00\x05\x00\ \x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\ \x00\x00\xae\x00\x4b\x00\x98\x00\x9e\x00\xa4\x00\xaa\x00\xb0\x00\ \xb6\x00\xbc\x00\xc2\x00\x98\x00\xc8\x00\xce\x00\xd4\x00\x98\x00\ \x98\x00\x98\x00\xda\x00\xe0\x00\xe6\x00\x98\x00\x98\x00\xec\x00\ \xf2\x00\xaa\x00\x98\x00\xe6\x00\xe6\x00\xf8\x00\xfe\x01\x04\x01\ \x0a\x01\x10\x01\x16\x01\x1c\x01\x22\x01\x28\x01\x2e\x01\x34\x01\ \x3a\x01\x40\x00\x98\x01\x46\x01\x4c\x01\x52\x01\x1c\x01\x58\x01\ \x5e\x00\xf2\x01\x64\x00\x98\x01\x6a\x01\x70\x00\x98\x00\x98\x01\ \x76\x01\x22\x00\x98\x01\x5e\x01\x1c\x01\x7c\x01\x82\x00\xc2\x01\ \x88\x01\x8e\x01\x94\x01\x9a\x01\xa0\x01\x1c\x01\xa6\x01\xac\x00\ \xf2\x01\x64\x01\xb2\x01\xb8\x01\x82\x01\xbe\x00\x01\x01\x2c\xff\ \xea\x00\x01\x01\x38\xff\xea\x00\x01\x01\x5c\xff\xea\x00\x01\x01\ \x22\xff\xea\x00\x01\x01\x41\xff\xea\x00\x01\x00\xc5\xff\xea\x00\ \x01\x01\x4e\xff\xea\x00\x01\x01\x2b\xff\xea\x00\x01\x01\x2f\xff\ \xea\x00\x01\x01\x43\xff\xea\x00\x01\x01\x4c\xff\xea\x00\x01\x00\ \x9e\xff\xea\x00\x01\x01\x40\xff\xea\x00\x01\x01\x36\xff\xea\x00\ \x01\x01\x29\xff\xea\x00\x01\x01\x2e\xff\xea\x00\x01\x01\x31\xff\ \xea\x00\x01\x01\x55\xff\xea\x00\x01\x01\x35\xff\xea\x00\x01\x01\ \x39\xff\xea\x00\x01\x01\x25\xff\xea\x00\x01\x01\x1a\xff\x1b\x00\ \x01\x01\x33\xff\xea\x00\x01\x01\x59\xff\xea\x00\x01\x00\xf0\xff\ \x15\x00\x01\x01\x44\xff\xea\x00\x01\x01\x6a\xff\xea\x00\x01\x01\ \x30\xff\xea\x00\x01\x01\x32\xff\xea\x00\x01\x00\x8e\xff\x26\x00\ \x01\x01\xbd\xff\x26\x00\x01\x00\xcb\xff\xea\x00\x01\x01\x70\xff\ \xea\x00\x01\x01\x3f\xff\xea\x00\x01\x01\x2d\xff\xea\x00\x01\x01\ \x0b\xff\x0f\x00\x01\x01\x3e\xff\xea\x00\x01\x01\x49\xff\xea\x00\ \x01\x01\x42\xff\xea\x00\x01\x01\x3b\xff\xea\x00\x01\x01\x46\xff\ \xea\x00\x01\x01\x37\xff\xea\x00\x01\x01\x24\xff\xea\x00\x01\x01\ \xc7\xff\x26\x00\x01\x01\x28\xff\xea\x00\x01\x00\x8c\xff\xea\x00\ \x01\x01\x71\xff\xea\x00\x01\x01\x09\xff\x0f\x00\x01\x01\x02\xff\ \xea\x00\x01\x01\xc8\xff\x26\x00\x01\x02\xba\x02\xc0\x00\x01\x00\ \x0c\x00\x12\x00\x01\x00\x00\x00\x0e\x00\x03\x00\x0e\x00\x14\x00\ \x1a\x00\x01\x01\x2c\x01\xf0\x00\x01\x01\xa8\x02\x82\x00\x01\x02\ \x00\x02\x96\x00\x01\x01\x9e\x01\xf0\x00\x01\x02\x98\x02\xa0\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x24\x00\x00\x00\x24\x00\ \x0c\x00\x20\x00\x26\x00\x2c\x00\x1a\x00\x1a\x00\x32\x00\x38\x00\ \x3e\x00\x38\x00\x44\x00\x4a\x00\x50\x00\x01\x01\x2c\x00\x00\x00\ \x01\x01\xed\x00\x00\x00\x01\x01\xa4\x00\x00\x00\x01\x01\x19\x00\ \x00\x00\x01\x01\x94\x00\x00\x00\x01\x01\x89\x00\x00\x00\x01\x01\ \x61\x00\x00\x00\x01\x01\x93\x00\x00\x00\x01\x01\x24\x00\x00\x00\ \x01\x01\xa6\x00\x00\x00\x01\x01\x1e\x02\x50\x00\x01\x00\x0c\x00\ \xea\x00\x37\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xe6\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\ \x03\x00\x14\x00\x1a\x00\x1a\x00\x01\x01\x2c\x02\x06\x00\x01\x01\ \x2c\x02\xa2\x00\x01\x01\x2c\x02\xe2\x00\x01\x01\x2c\x02\xd0\x00\ \x02\x00\x01\x02\x88\x02\x8a\x00\x00\x00\x02\x00\x01\x02\xdf\x03\ \x20\x00\x00\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x00\x03\x05\x03\ \x1e\x00\x1c\x03\x20\x03\x20\x00\x36\x00\x02\x00\x13\x00\x04\x00\ \x37\x00\x00\x00\x4d\x00\x4e\x00\x34\x00\x69\x00\x69\x00\x36\x00\ \x80\x00\x80\x00\x37\x00\xa3\x00\xa5\x00\x38\x00\xab\x00\xab\x00\ \x3b\x00\xcf\x00\xd0\x00\x3c\x00\xe8\x00\xe8\x00\x3e\x00\xfe\x00\ \xfe\x00\x3f\x01\x1a\x01\x1a\x00\x40\x01\x31\x01\x32\x00\x41\x01\ \x57\x01\x59\x00\x43\x01\x5f\x01\x5f\x00\x46\x01\x84\x01\x85\x00\ \x47\x01\x9c\x01\xac\x00\x49\x01\xaf\x01\xaf\x00\x5a\x01\xc5\x01\ \xc6\x00\x5b\x02\xcf\x02\xcf\x00\x5d\x02\xd9\x02\xd9\x00\x5e\x00\ \x01\x00\x02\x02\xff\x03\x00\x00\x01\x00\x06\x00\x06\x00\x16\x00\ \x17\x00\x20\x00\x30\x00\x31\x00\x01\x00\x05\x02\xfc\x02\xfd\x02\ \xfe\x03\x03\x03\x04\x00\x02\x00\x0c\x00\x04\x00\x13\x00\x00\x00\ \x15\x00\x37\x00\x10\x00\xa5\x00\xa5\x00\x33\x00\xd0\x00\xd0\x00\ \x34\x00\xe8\x00\xe8\x00\x35\x01\x32\x01\x32\x00\x36\x01\x59\x01\ \x59\x00\x37\x01\x85\x01\x85\x00\x38\x01\x9c\x01\x9c\x00\x39\x01\ \x9e\x01\xac\x00\x3a\x01\xaf\x01\xaf\x00\x49\x01\xc6\x01\xc6\x00\ \x4a\x00\x01\x00\x01\x02\xfb\x00\x01\x00\x03\x00\x12\x00\x18\x00\ \x2c\x00\x01\x00\x02\x03\x01\x03\x02\x00\x01\x00\x0c\x00\x04\x00\ \x08\x00\x0c\x00\x12\x00\x18\x00\x22\x00\x26\x00\x2c\x01\x32\x01\ \xa2\x01\xa3\x01\xaf\x00\x01\x00\x03\x02\xe3\x02\xeb\x02\xed\x00\ \x01\x00\x00\x00\x0a\x00\x6c\x02\x1a\x00\x02\x44\x46\x4c\x54\x00\ \x0e\x6c\x61\x74\x6e\x00\x38\x00\x04\x00\x00\x00\x00\xff\xff\x00\ \x10\x00\x00\x00\x02\x00\x04\x00\x06\x00\x08\x00\x0a\x00\x0c\x00\ \x0e\x00\x10\x00\x12\x00\x14\x00\x16\x00\x18\x00\x1a\x00\x1c\x00\ \x1e\x00\x04\x00\x00\x00\x00\xff\xff\x00\x10\x00\x01\x00\x03\x00\ \x05\x00\x07\x00\x09\x00\x0b\x00\x0d\x00\x0f\x00\x11\x00\x13\x00\ \x15\x00\x17\x00\x19\x00\x1b\x00\x1d\x00\x1f\x00\x20\x61\x61\x6c\ \x74\x00\xc2\x61\x61\x6c\x74\x00\xca\x63\x61\x73\x65\x00\xd2\x63\ \x61\x73\x65\x00\xd8\x63\x63\x6d\x70\x00\xde\x63\x63\x6d\x70\x00\ \xec\x64\x6e\x6f\x6d\x00\xfa\x64\x6e\x6f\x6d\x01\x00\x66\x72\x61\ \x63\x01\x06\x66\x72\x61\x63\x01\x10\x6e\x75\x6d\x72\x01\x1a\x6e\ \x75\x6d\x72\x01\x20\x6f\x6e\x75\x6d\x01\x26\x6f\x6e\x75\x6d\x01\ \x2c\x6f\x72\x64\x6e\x01\x32\x6f\x72\x64\x6e\x01\x38\x73\x61\x6c\ \x74\x01\x3e\x73\x61\x6c\x74\x01\x4a\x73\x69\x6e\x66\x01\x56\x73\ \x69\x6e\x66\x01\x5c\x73\x73\x30\x31\x01\x62\x73\x73\x30\x31\x01\ \x68\x73\x73\x30\x32\x01\x6e\x73\x73\x30\x32\x01\x74\x73\x73\x30\ \x33\x01\x7a\x73\x73\x30\x33\x01\x80\x73\x73\x30\x34\x01\x86\x73\ \x73\x30\x34\x01\x8c\x73\x75\x62\x73\x01\x92\x73\x75\x62\x73\x01\ \x98\x73\x75\x70\x73\x01\x9e\x73\x75\x70\x73\x01\xa6\x00\x00\x00\ \x02\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\ \x01\x00\x10\x00\x00\x00\x01\x00\x10\x00\x00\x00\x05\x00\x03\x00\ \x04\x00\x05\x00\x06\x00\x07\x00\x00\x00\x05\x00\x03\x00\x04\x00\ \x05\x00\x06\x00\x07\x00\x00\x00\x01\x00\x09\x00\x00\x00\x01\x00\ \x09\x00\x00\x00\x03\x00\x08\x00\x0a\x00\x0b\x00\x00\x00\x03\x00\ \x08\x00\x0a\x00\x0b\x00\x00\x00\x01\x00\x08\x00\x00\x00\x01\x00\ \x08\x00\x00\x00\x01\x00\x0f\x00\x00\x00\x01\x00\x0f\x00\x00\x00\ \x01\x00\x0c\x00\x00\x00\x01\x00\x0c\x00\x00\x00\x04\x00\x11\x00\ \x12\x00\x13\x00\x14\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\ \x14\x00\x00\x00\x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x04\x04\x00\ \x01\x00\x11\x03\xfe\x00\x01\x00\x11\x04\x08\x00\x01\x00\x12\x04\ \x02\x00\x01\x00\x12\x04\x38\x00\x01\x00\x13\x04\x32\x00\x01\x00\ \x13\x04\x48\x00\x01\x00\x14\x04\x42\x00\x01\x00\x14\x00\x00\x00\ \x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x00\x00\x00\x02\x00\x0c\x00\ \x0d\x00\x00\x00\x02\x00\x0c\x00\x0d\x00\x17\x00\x30\x00\x38\x00\ \x40\x00\x48\x00\x50\x00\x5a\x00\x62\x00\x6a\x00\x72\x00\x7a\x00\ \x82\x00\x8a\x00\x96\x00\x9e\x00\xa6\x00\xae\x00\xb6\x00\xbe\x00\ \xc6\x00\xce\x00\xd6\x00\xde\x00\xe6\x00\x01\x00\x00\x00\x01\x03\ \xfa\x00\x03\x00\x00\x00\x01\x04\xb0\x00\x02\x00\x00\x00\x01\x00\ \xae\x00\x06\x00\x00\x00\x01\x00\xcc\x00\x06\x00\x00\x00\x02\x00\ \xd6\x00\xea\x00\x04\x00\x00\x00\x01\x00\xf2\x00\x04\x00\x00\x00\ \x01\x01\x64\x00\x06\x00\x00\x00\x01\x02\x2a\x00\x01\x00\x00\x00\ \x01\x02\x34\x00\x01\x00\x00\x00\x01\x02\x4e\x00\x01\x00\x00\x00\ \x01\x02\x68\x00\x06\x00\x00\x00\x03\x02\x66\x02\x78\x02\x8a\x00\ \x01\x00\x00\x00\x01\x02\x92\x00\x01\x00\x00\x00\x01\x02\xca\x00\ \x01\x00\x00\x00\x01\x02\xe4\x00\x01\x00\x00\x00\x01\x02\xfe\x00\ \x01\x00\x00\x00\x01\x02\xfc\x00\x01\x00\x00\x00\x01\x02\xfe\x00\ \x01\x00\x00\x00\x01\x03\x06\x00\x01\x00\x00\x00\x01\x03\x3a\x00\ \x01\x00\x00\x00\x01\x03\x4e\x00\x04\x00\x00\x00\x01\x04\xdc\x00\ \x01\x00\x00\x00\x01\x04\xe6\x00\x01\x05\x3e\x00\x04\x00\x0e\x00\ \x14\x00\x1a\x00\x20\x00\x02\x00\x08\x02\xe3\x00\x02\x00\x12\x02\ \xe3\x00\x02\x00\x22\x02\xe3\x00\x02\x00\x2c\x02\xe3\x00\x03\x00\ \x00\x00\x01\x05\x18\x00\x01\x05\x24\x00\x01\x00\x00\x00\x02\x00\ \x03\x00\x00\x00\x02\x05\x18\x05\x1e\x00\x01\x05\x24\x00\x01\x00\ \x00\x00\x15\x00\x03\x00\x00\x00\x01\x05\x16\x00\x01\x05\x10\x00\ \x01\x00\x00\x00\x16\x00\x01\x05\x0a\x00\x03\x00\x0c\x00\x36\x00\ \x58\x00\x05\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x03\x0f\x00\ \x02\x02\xdf\x03\x0d\x00\x02\x02\xe1\x03\x13\x00\x02\x02\xe5\x03\ \x1d\x00\x02\x02\xe9\x03\x11\x00\x02\x02\xef\x00\x04\x00\x0a\x00\ \x10\x00\x16\x00\x1c\x03\x17\x00\x02\x02\xdf\x03\x15\x00\x02\x02\ \xe1\x03\x1b\x00\x02\x02\xe5\x03\x19\x00\x02\x02\xef\x00\x04\x00\ \x0a\x00\x10\x00\x16\x00\x1c\x03\x0b\x00\x02\x02\xdf\x03\x07\x00\ \x02\x02\xe1\x03\x05\x00\x02\x02\xe7\x03\x09\x00\x02\x02\xf5\x00\ \x01\x04\x9a\x00\x10\x00\x26\x00\x30\x00\x3a\x00\x44\x00\x4e\x00\ \x58\x00\x62\x00\x6c\x00\x76\x00\x80\x00\x92\x00\x9c\x00\xa6\x00\ \xb0\x00\xba\x00\xc4\x00\x01\x00\x04\x00\x4d\x00\x02\x03\x01\x00\ \x01\x00\x04\x00\x69\x00\x02\x03\x01\x00\x01\x00\x04\x00\x70\x00\ \x02\x02\xe5\x00\x01\x00\x04\x00\x80\x00\x02\x03\x01\x00\x01\x00\ \x04\x00\xab\x00\x02\x03\x01\x00\x01\x00\x04\x00\xcf\x00\x02\x03\ \x01\x00\x01\x00\x04\x00\xfe\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x06\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x1a\x00\x02\x03\x01\x00\ \x02\x00\x06\x00\x0c\x01\x21\x00\x02\x02\xe5\x01\x1e\x00\x02\x02\ \xff\x00\x01\x00\x04\x01\x30\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x37\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x5f\x00\x02\x03\x01\x00\ \x01\x00\x04\x01\x6e\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x84\x00\ \x02\x03\x01\x00\x01\x00\x04\x01\xca\x00\x02\x02\xff\x00\x03\x00\ \x01\x03\xf0\x00\x01\x04\x12\x00\x00\x00\x01\x00\x00\x00\x16\x00\ \x02\x04\x3c\x00\x0e\x02\x46\x02\x47\x02\x48\x02\x49\x02\x4a\x02\ \x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\x52\x02\x53\x02\x50\x02\ \x51\x00\x02\x04\x1a\x00\x0e\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\ \x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\x41\x02\x44\x02\x45\x02\ \x42\x02\x43\x00\x01\x04\x0e\x00\x83\x00\x03\x00\x01\x04\x0e\x00\ \x01\x04\x18\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x01\x04\ \x0e\x00\x01\x04\x1e\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\ \x02\x04\x20\x04\x16\x00\x01\x04\x0c\x00\x00\x00\x01\x00\x00\x00\ \x16\x00\x02\x04\x14\x00\x1d\x02\x57\x02\x58\x02\x59\x02\x5a\x02\ \x5b\x02\x5c\x02\x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\ \x63\x02\x64\x02\x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\ \x6b\x02\x6c\x02\x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\ \x73\x00\x02\x03\x7a\x00\x0e\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\ \x20\x02\x21\x02\x22\x02\x23\x02\x24\x02\x25\x02\x28\x02\x29\x02\ \x26\x02\x27\x00\x02\x03\x58\x00\x0e\x02\x2a\x02\x2b\x02\x2c\x02\ \x2d\x02\x2e\x02\x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x36\x02\ \x37\x02\x34\x02\x35\x00\x01\x03\xa6\x00\x0a\x00\x01\x03\xaa\x00\ \x01\x00\x00\x01\x00\x00\x02\x03\xde\x00\x03\x02\x19\x02\x1a\x02\ \x18\x00\x00\x01\x01\x00\x02\x03\xd8\x00\x19\x01\xaf\x01\xb0\x01\ \xb1\x01\xb2\x01\xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\ \xb9\x01\xba\x01\xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\ \xc1\x01\xc2\x01\xc3\x01\xc4\x01\xc5\x02\x55\x02\x74\x00\x00\x01\ \x02\x00\x02\x03\xb8\x00\x09\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\ \xca\x01\xcb\x01\xcc\x01\xcd\x02\x75\x00\x00\x01\x03\x00\x01\x03\ \xb2\xff\xa3\x00\x02\x03\xb2\x00\x5c\x02\x58\x02\x59\x02\x5a\x02\ \x5b\x02\x5c\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\ \x64\x02\x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\ \x6c\x02\x6d\x02\x6e\x02\x6f\x02\x70\x01\xb0\x01\xb1\x01\xb2\x01\ \xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\ \xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\ \xc3\x01\xc4\x01\xc5\x02\x71\x02\x72\x01\xc7\x01\xc8\x01\xc9\x01\ \xca\x01\xcb\x01\xcc\x01\xcd\x02\x73\x02\x19\x02\x1a\x02\x18\x02\ \x16\x02\x55\x02\x74\x02\x75\x02\x1b\x02\xe0\x02\xe2\x02\xe4\x02\ \xe6\x02\xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\ \xf6\x02\xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\ \x0e\x03\x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\ \x1e\x00\x01\x03\xb0\x00\x10\x00\x26\x00\x2c\x00\x32\x00\x3e\x00\ \x4a\x00\x56\x00\x62\x00\x6e\x00\x7a\x00\x86\x00\x92\x00\x9e\x00\ \xaa\x00\xb4\x00\xbe\x00\xc8\x00\x02\x02\x57\x01\xaf\x00\x02\x02\ \x5d\x01\xc6\x00\x05\x02\x46\x02\x38\x02\x1c\x02\x2a\x01\xd9\x00\ \x05\x02\x47\x02\x39\x02\x1d\x02\x2b\x01\xda\x00\x05\x02\x48\x02\ \x3a\x02\x1e\x02\x2c\x01\xdb\x00\x05\x02\x49\x02\x3b\x02\x1f\x02\ \x2d\x01\xdc\x00\x05\x02\x4a\x02\x3c\x02\x20\x02\x2e\x01\xdd\x00\ \x05\x02\x4b\x02\x3d\x02\x21\x02\x2f\x01\xde\x00\x05\x02\x4c\x02\ \x3e\x02\x22\x02\x30\x01\xdf\x00\x05\x02\x4d\x02\x3f\x02\x23\x02\ \x31\x01\xe0\x00\x05\x02\x4e\x02\x40\x02\x24\x02\x32\x01\xe1\x00\ \x05\x02\x4f\x02\x41\x02\x25\x02\x33\x01\xe2\x00\x04\x02\x52\x02\ \x44\x02\x28\x02\x36\x00\x04\x02\x53\x02\x45\x02\x29\x02\x37\x00\ \x04\x02\x50\x02\x42\x02\x26\x02\x34\x00\x04\x02\x51\x02\x43\x02\ \x27\x02\x35\x00\x01\x00\x84\x00\x01\x00\x08\x00\x01\x00\x04\x01\ \x31\x00\x02\x03\x01\x00\x02\x02\xee\x00\x2d\x03\x23\x01\x31\x02\ \x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\ \x40\x02\x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\ \xf4\x02\xf6\x02\xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\ \x0c\x03\x0e\x03\x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\ \x1c\x03\x1e\x03\x24\x00\x01\x00\x04\x00\x5b\x00\x95\x01\x0c\x01\ \x49\x00\x01\x00\x01\x02\xe9\x00\x01\x00\x01\x00\x26\x00\x01\x00\ \x01\x03\x01\x00\x01\x00\x01\x02\xe1\x00\x01\x00\x01\x01\x30\x00\ \x01\x00\x03\x02\xe3\x02\xe9\x02\xed\x00\x01\x00\x10\x00\x04\x00\ \x08\x00\x0a\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\x21\x00\x22\x00\ \x24\x00\x26\x00\x29\x00\x2c\x00\x31\x00\x32\x01\xc6\x00\x02\x00\ \x05\x00\x04\x00\x1d\x00\x00\x00\x38\x00\x4e\x00\x1a\x00\x50\x00\ \x7a\x00\x31\x00\x7c\x00\x98\x00\x5c\x00\x9a\x00\xe8\x00\x79\x00\ \x01\x00\x1c\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\ \xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\ \x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\ \x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\x03\x01\ \xcf\x01\xd8\x00\x00\x01\xe3\x01\xe4\x00\x0a\x02\x01\x02\x02\x00\ \x0c\x00\x01\x00\x01\x02\x07\x00\x02\x00\x01\x02\x46\x02\x4f\x00\ \x00\x00\x01\x00\x02\x00\x03\x03\x21\x00\x02\x00\x02\x02\x38\x02\ \x45\x00\x00\x02\x88\x02\x8a\x00\x0e\x00\x02\x00\x01\x02\x46\x02\ \x53\x00\x00\x00\x02\x00\x01\x02\x38\x02\x41\x00\x00\x00\x01\x00\ \x02\x03\x23\x03\x24\x00\x02\x00\x03\x00\x1e\x00\x37\x00\x00\x01\ \x0a\x01\x0b\x00\x1a\x01\xa3\x01\xa3\x00\x1c\x00\x02\x00\x01\x01\ \xcf\x01\xd8\x00\x00\x00\x01\x00\x1d\x02\x15\x02\xdf\x02\xe1\x02\ \xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\ \xf3\x02\xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\ \x0b\x03\x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\ \x1b\x03\x1d\x00\x01\x00\x03\x01\xf8\x01\xf9\x02\x0b\x00\x02\x00\ \x04\x00\x1e\x00\x1e\x00\x00\x00\xe9\x00\xfe\x00\x01\x02\x54\x02\ \x54\x00\x17\x02\x57\x02\x57\x00\x18\x00\x02\x00\x03\x00\x24\x00\ \x24\x00\x00\x01\x1b\x01\x21\x00\x01\x02\x5d\x02\x5d\x00\x08\x00\ \x01\x00\x01\x02\x78\x00\x01\x00\x5c\x00\x1f\x00\x20\x00\x21\x00\ \x22\x00\x23\x00\x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\ \x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\ \x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\xe9\x00\xea\x00\xeb\x00\ \xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\ \xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\ \xfc\x00\xfd\x00\xfe\x01\x0a\x01\x0b\x01\x1b\x01\x1c\x01\x1d\x01\ \x1e\x01\x1f\x01\x20\x01\x21\x01\xa3\x01\xf8\x01\xf9\x02\x0b\x02\ \x15\x02\x54\x02\x57\x02\x5d\x02\x78\x02\xdf\x02\xe1\x02\xe3\x02\ \xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\ \xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\ \x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\ \x1d\x00\x02\x00\x05\x00\x1e\x00\x1e\x00\x00\x00\x24\x00\x24\x00\ \x01\x01\xcf\x01\xd8\x00\x02\x01\xe3\x01\xe4\x00\x0c\x02\x01\x02\ \x02\x00\x0e\x00\x01\x00\x2d\x00\x03\x01\x30\x02\x46\x02\x47\x02\ \x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\ \x50\x02\x51\x02\x52\x02\x53\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\ \xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\ \xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\ \x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x03\ \x21\x00\x00\x00\x01\x00\x00\x00\x08\x00\x00\x00\x04\x00\x0e\x00\ \x02\x69\x64\x65\x6f\x72\x6f\x6d\x6e\x00\x02\x44\x46\x4c\x54\x00\ \x0e\x6c\x61\x74\x6e\x00\x0e\x00\x06\x00\x00\x00\x00\x00\x01\x00\ \x02\x00\x08\x00\x0c\x00\x01\xff\x56\x00\x01\x00\x00\x00\x00\x00\ \x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x01\x00\x00\x20\x44\x00\ \x00\x00\x14\x00\x00\x00\x00\x00\x00\x20\x3c\x30\x82\x20\x38\x06\ \x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\x02\xa0\x82\x20\x29\x30\x82\ \x20\x25\x02\x01\x01\x31\x0b\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\ \x05\x00\x30\x61\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\ \xa0\x53\x30\x51\x30\x2c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\ \x01\x1c\xa2\x1e\x80\x1c\x00\x3c\x00\x3c\x00\x3c\x00\x4f\x00\x62\ \x00\x73\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x3e\x00\x3e\ \x00\x3e\x30\x21\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\ \x14\x61\x31\x8d\x26\x44\xe7\xfd\x8b\x6c\xf9\x77\x44\xa3\x14\xf0\ \x80\x59\x70\x14\x35\xa0\x82\x1b\x0f\x30\x82\x02\x3c\x30\x82\x01\ \xa5\x02\x10\x70\xba\xe4\x1d\x10\xd9\x29\x34\xb6\x38\xca\x7b\x03\ \xcc\xba\xbf\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\ \x05\x00\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\ \x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\ \x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\ \x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\ \x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\ \x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\ \x69\x74\x79\x30\x1e\x17\x0d\x39\x36\x30\x31\x32\x39\x30\x30\x30\ \x30\x30\x30\x5a\x17\x0d\x32\x38\x30\x38\x30\x31\x32\x33\x35\x39\ \x35\x39\x5a\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\ \x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\ \x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\ \x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\ \x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\ \x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\ \x72\x69\x74\x79\x30\x81\x9f\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x01\x01\x05\x00\x03\x81\x8d\x00\x30\x81\x89\x02\x81\x81\ \x00\xc9\x5c\x59\x9e\xf2\x1b\x8a\x01\x14\xb4\x10\xdf\x04\x40\xdb\ \xe3\x57\xaf\x6a\x45\x40\x8f\x84\x0c\x0b\xd1\x33\xd9\xd9\x11\xcf\ \xee\x02\x58\x1f\x25\xf7\x2a\xa8\x44\x05\xaa\xec\x03\x1f\x78\x7f\ \x9e\x93\xb9\x9a\x00\xaa\x23\x7d\xd6\xac\x85\xa2\x63\x45\xc7\x72\ \x27\xcc\xf4\x4c\xc6\x75\x71\xd2\x39\xef\x4f\x42\xf0\x75\xdf\x0a\ \x90\xc6\x8e\x20\x6f\x98\x0f\xf8\xac\x23\x5f\x70\x29\x36\xa4\xc9\ \x86\xe7\xb1\x9a\x20\xcb\x53\xa5\x85\xe7\x3d\xbe\x7d\x9a\xfe\x24\ \x45\x33\xdc\x76\x15\xed\x0f\xa2\x71\x64\x4c\x65\x2e\x81\x68\x45\ \xa7\x02\x03\x01\x00\x01\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x02\x05\x00\x03\x81\x81\x00\xbb\x4c\x12\x2b\xcf\x2c\x26\ \x00\x4f\x14\x13\xdd\xa6\xfb\xfc\x0a\x11\x84\x8c\xf3\x28\x1c\x67\ \x92\x2f\x7c\xb6\xc5\xfa\xdf\xf0\xe8\x95\xbc\x1d\x8f\x6c\x2c\xa8\ \x51\xcc\x73\xd8\xa4\xc0\x53\xf0\x4e\xd6\x26\xc0\x76\x01\x57\x81\ \x92\x5e\x21\xf1\xd1\xb1\xff\xe7\xd0\x21\x58\xcd\x69\x17\xe3\x44\ \x1c\x9c\x19\x44\x39\x89\x5c\xdc\x9c\x00\x0f\x56\x8d\x02\x99\xed\ \xa2\x90\x45\x4c\xe4\xbb\x10\xa4\x3d\xf0\x32\x03\x0e\xf1\xce\xf8\ \xe8\xc9\x51\x8c\xe6\x62\x9f\xe6\x9f\xc0\x7d\xb7\x72\x9c\xc9\x36\ \x3a\x6b\x9f\x4e\xa8\xff\x64\x0d\x64\x30\x82\x03\xee\x30\x82\x03\ \x57\xa0\x03\x02\x01\x02\x02\x10\x7e\x93\xeb\xfb\x7c\xc6\x4e\x59\ \xea\x4b\x9a\x77\xd4\x06\xfc\x3b\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x30\x81\x8b\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x5a\x41\x31\x15\x30\x13\x06\x03\x55\x04\x08\ \x13\x0c\x57\x65\x73\x74\x65\x72\x6e\x20\x43\x61\x70\x65\x31\x14\ \x30\x12\x06\x03\x55\x04\x07\x13\x0b\x44\x75\x72\x62\x61\x6e\x76\ \x69\x6c\x6c\x65\x31\x0f\x30\x0d\x06\x03\x55\x04\x0a\x13\x06\x54\ \x68\x61\x77\x74\x65\x31\x1d\x30\x1b\x06\x03\x55\x04\x0b\x13\x14\ \x54\x68\x61\x77\x74\x65\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\ \x74\x69\x6f\x6e\x31\x1f\x30\x1d\x06\x03\x55\x04\x03\x13\x16\x54\ \x68\x61\x77\x74\x65\x20\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\ \x6e\x67\x20\x43\x41\x30\x1e\x17\x0d\x31\x32\x31\x32\x32\x31\x30\ \x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x31\x32\x33\x30\x32\x33\ \x35\x39\x35\x39\x5a\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\ \x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\ \x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\ \x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\ \x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\ \x20\x2d\x20\x47\x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\ \x0a\x02\x82\x01\x01\x00\xb1\xac\xb3\x49\x54\x4b\x97\x1c\x12\x0a\ \xd8\x25\x79\x91\x22\x57\x2a\x6f\xdc\xb8\x26\xc4\x43\x73\x6b\xc2\ \xbf\x2e\x50\x5a\xfb\x14\xc2\x76\x8e\x43\x01\x25\x43\xb4\xa1\xe2\ \x45\xf4\xe8\xb7\x7b\xc3\x74\xcc\x22\xd7\xb4\x94\x00\x02\xf7\x4d\ \xed\xbf\xb4\xb7\x44\x24\x6b\xcd\x5f\x45\x3b\xd1\x44\xce\x43\x12\ \x73\x17\x82\x8b\x69\xb4\x2b\xcb\x99\x1e\xac\x72\x1b\x26\x4d\x71\ \x1f\xb1\x31\xdd\xfb\x51\x61\x02\x53\xa6\xaa\xf5\x49\x2c\x05\x78\ \x45\xa5\x2f\x89\xce\xe7\x99\xe7\xfe\x8c\xe2\x57\x3f\x3d\xc6\x92\ \xdc\x4a\xf8\x7b\x33\xe4\x79\x0a\xfb\xf0\x75\x88\x41\x9c\xff\xc5\ \x03\x51\x99\xaa\xd7\x6c\x9f\x93\x69\x87\x65\x29\x83\x85\xc2\x60\ \x14\xc4\xc8\xc9\x3b\x14\xda\xc0\x81\xf0\x1f\x0d\x74\xde\x92\x22\ \xab\xca\xf7\xfb\x74\x7c\x27\xe6\xf7\x4a\x1b\x7f\xa7\xc3\x9e\x2d\ \xae\x8a\xea\xa6\xe6\xaa\x27\x16\x7d\x61\xf7\x98\x71\x11\xbc\xe2\ \x50\xa1\x4b\xe5\x5d\xfa\xe5\x0e\xa7\x2c\x9f\xaa\x65\x20\xd3\xd8\ \x96\xe8\xc8\x7c\xa5\x4e\x48\x44\xff\x19\xe2\x44\x07\x92\x0b\xd7\ \x68\x84\x80\x5d\x6a\x78\x64\x45\xcd\x60\x46\x7e\x54\xc1\x13\x7c\ \xc5\x79\xf1\xc9\xc1\x71\x02\x03\x01\x00\x01\xa3\x81\xfa\x30\x81\ \xf7\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x5f\x9a\xf5\x6e\ \x5c\xcc\xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\ \x30\x32\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x26\x30\x24\ \x30\x22\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x16\x68\x74\ \x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x74\x68\x61\x77\x74\x65\ \x2e\x63\x6f\x6d\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\ \x30\x06\x01\x01\xff\x02\x01\x00\x30\x3f\x06\x03\x55\x1d\x1f\x04\ \x38\x30\x36\x30\x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\ \x2f\x2f\x63\x72\x6c\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\ \x2f\x54\x68\x61\x77\x74\x65\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\ \x69\x6e\x67\x43\x41\x2e\x63\x72\x6c\x30\x13\x06\x03\x55\x1d\x25\ \x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x08\x30\x0e\ \x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x28\ \x06\x03\x55\x1d\x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\ \x17\x06\x03\x55\x04\x03\x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\ \x70\x2d\x32\x30\x34\x38\x2d\x31\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\x03\x09\x9b\x8f\x79\ \xef\x7f\x59\x30\xaa\xef\x68\xb5\xfa\xe3\x09\x1d\xbb\x4f\x82\x06\ \x5d\x37\x5f\xa6\x52\x9f\x16\x8d\xea\x1c\x92\x09\x44\x6e\xf5\x6d\ \xeb\x58\x7c\x30\xe8\xf9\x69\x8d\x23\x73\x0b\x12\x6f\x47\xa9\xae\ \x39\x11\xf8\x2a\xb1\x9b\xb0\x1a\xc3\x8e\xeb\x59\x96\x00\xad\xce\ \x0c\x4d\xb2\xd0\x31\xa6\x08\x5c\x2a\x7a\xfc\xe2\x7a\x1d\x57\x4c\ \xa8\x65\x18\xe9\x79\x40\x62\x25\x96\x6e\xc7\xc7\x37\x6a\x83\x21\ \x08\x8e\x41\xea\xdd\xd9\x57\x3f\x1d\x77\x49\x87\x2a\x16\x06\x5e\ \xa6\x38\x6a\x22\x12\xa3\x51\x19\x83\x7e\xb6\x30\x82\x04\x90\x30\ \x82\x03\xf9\xa0\x03\x02\x01\x02\x02\x10\x1b\x09\x3b\x78\x60\x96\ \xda\x37\xbb\xa4\x51\x94\x46\xc8\x96\x78\x30\x0d\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5f\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\ \x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\ \x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\ \x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\ \x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ \x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\x1e\x17\x0d\x30\x36\ \x31\x31\x30\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x31\x31\ \x31\x30\x37\x32\x33\x35\x39\x35\x39\x5a\x30\x81\xca\x31\x0b\x30\ \x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\ \x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\ \x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\ \x72\x69\x53\x69\x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\ \x77\x6f\x72\x6b\x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\ \x63\x29\x20\x32\x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\ \x2c\x20\x49\x6e\x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\ \x68\x6f\x72\x69\x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\ \x31\x45\x30\x43\x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\ \x69\x67\x6e\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\ \x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\ \x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\ \x74\x79\x20\x2d\x20\x47\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\ \x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\ \x82\x01\x0a\x02\x82\x01\x01\x00\xaf\x24\x08\x08\x29\x7a\x35\x9e\ \x60\x0c\xaa\xe7\x4b\x3b\x4e\xdc\x7c\xbc\x3c\x45\x1c\xbb\x2b\xe0\ \xfe\x29\x02\xf9\x57\x08\xa3\x64\x85\x15\x27\xf5\xf1\xad\xc8\x31\ \x89\x5d\x22\xe8\x2a\xaa\xa6\x42\xb3\x8f\xf8\xb9\x55\xb7\xb1\xb7\ \x4b\xb3\xfe\x8f\x7e\x07\x57\xec\xef\x43\xdb\x66\x62\x15\x61\xcf\ \x60\x0d\xa4\xd8\xde\xf8\xe0\xc3\x62\x08\x3d\x54\x13\xeb\x49\xca\ \x59\x54\x85\x26\xe5\x2b\x8f\x1b\x9f\xeb\xf5\xa1\x91\xc2\x33\x49\ \xd8\x43\x63\x6a\x52\x4b\xd2\x8f\xe8\x70\x51\x4d\xd1\x89\x69\x7b\ \xc7\x70\xf6\xb3\xdc\x12\x74\xdb\x7b\x5d\x4b\x56\xd3\x96\xbf\x15\ \x77\xa1\xb0\xf4\xa2\x25\xf2\xaf\x1c\x92\x67\x18\xe5\xf4\x06\x04\ \xef\x90\xb9\xe4\x00\xe4\xdd\x3a\xb5\x19\xff\x02\xba\xf4\x3c\xee\ \xe0\x8b\xeb\x37\x8b\xec\xf4\xd7\xac\xf2\xf6\xf0\x3d\xaf\xdd\x75\ \x91\x33\x19\x1d\x1c\x40\xcb\x74\x24\x19\x21\x93\xd9\x14\xfe\xac\ \x2a\x52\xc7\x8f\xd5\x04\x49\xe4\x8d\x63\x47\x88\x3c\x69\x83\xcb\ \xfe\x47\xbd\x2b\x7e\x4f\xc5\x95\xae\x0e\x9d\xd4\xd1\x43\xc0\x67\ \x73\xe3\x14\x08\x7e\xe5\x3f\x9f\x73\xb8\x33\x0a\xcf\x5d\x3f\x34\ \x87\x96\x8a\xee\x53\xe8\x25\x15\x02\x03\x01\x00\x01\xa3\x82\x01\ \x5b\x30\x82\x01\x57\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\ \x05\x30\x03\x01\x01\xff\x30\x31\x06\x03\x55\x1d\x1f\x04\x2a\x30\ \x28\x30\x26\xa0\x24\xa0\x22\x86\x20\x68\x74\x74\x70\x3a\x2f\x2f\ \x63\x72\x6c\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x70\x63\x61\x33\x2e\x63\x72\x6c\x30\x0e\x06\x03\x55\x1d\x0f\ \x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x3d\x06\x03\x55\x1d\x20\ \x04\x36\x30\x34\x30\x32\x06\x04\x55\x1d\x20\x00\x30\x2a\x30\x28\ \x06\x08\x2b\x06\x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\ \x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\ \x2e\x63\x6f\x6d\x2f\x63\x70\x73\x30\x1d\x06\x03\x55\x1d\x0e\x04\ \x16\x04\x14\x7f\xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\ \x39\xfa\x02\xaf\x33\x31\x33\x30\x6d\x06\x08\x2b\x06\x01\x05\x05\ \x07\x01\x0c\x04\x61\x30\x5f\xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\ \x55\x16\x09\x69\x6d\x61\x67\x65\x2f\x67\x69\x66\x30\x21\x30\x1f\ \x30\x07\x06\x05\x2b\x0e\x03\x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\ \xac\x8d\x8e\x6b\xc3\xcf\x80\x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\ \x25\x16\x23\x68\x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\ \x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\ \x67\x6f\x2e\x67\x69\x66\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\ \x01\x01\x04\x28\x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\ \x30\x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x0d\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\xa3\ \xcd\x7d\x1e\xf7\xc7\x75\x8d\x48\xe7\x56\x34\x4c\x00\x90\x75\xa9\ \x51\xa5\x56\xc1\x6d\xbc\xfe\xf5\x53\x22\xe9\x98\xa2\xac\x9a\x7e\ \x70\x1e\xb3\x8e\x3b\x45\xe3\x86\x95\x31\xda\x6d\x4c\xfb\x34\x50\ \x80\x96\xcd\x24\xf2\x40\xdf\x04\x3f\xe2\x65\xce\x34\x22\x61\x15\ \xea\x66\x70\x64\xd2\xf1\x6e\xf3\xca\x18\x59\x6a\x41\x46\x7e\x82\ \xde\x19\xb0\x70\x31\x56\x69\x0d\x0c\xe6\x1d\x9d\x71\x58\xdc\xcc\ \xde\x62\xf5\xe1\x7a\x10\x02\xd8\x7a\xdc\x3b\xfa\x57\xbd\xc9\xe9\ \x8f\x46\x21\x39\x9f\x51\x65\x4c\x8e\x3a\xbe\x28\x41\x70\x1d\x30\ \x82\x04\xa3\x30\x82\x03\x8b\xa0\x03\x02\x01\x02\x02\x10\x0e\xcf\ \xf4\x38\xc8\xfe\xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x0d\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5e\x31\ \x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\ \x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\ \x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\ \x03\x55\x04\x03\x13\x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\ \x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\ \x76\x69\x63\x65\x73\x20\x43\x41\x20\x2d\x20\x47\x32\x30\x1e\x17\ \x0d\x31\x32\x31\x30\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\ \x32\x30\x31\x32\x32\x39\x32\x33\x35\x39\x35\x39\x5a\x30\x62\x31\ \x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\ \x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\ \x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\x34\x30\x32\x06\ \x03\x55\x04\x03\x13\x2b\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\ \x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\ \x76\x69\x63\x65\x73\x20\x53\x69\x67\x6e\x65\x72\x20\x2d\x20\x47\ \x34\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xa2\x63\x0b\x39\x44\xb8\xbb\x23\xa7\x44\x49\xbb\x0e\xff\ \xa1\xf0\x61\x0a\x53\x93\xb0\x98\xdb\xad\x2c\x0f\x4a\xc5\x6e\xff\ \x86\x3c\x53\x55\x0f\x15\xce\x04\x3f\x2b\xfd\xa9\x96\x96\xd9\xbe\ \x61\x79\x0b\x5b\xc9\x4c\x86\x76\xe5\xe0\x43\x4b\x22\x95\xee\xc2\ \x2b\x43\xc1\x9f\xd8\x68\xb4\x8e\x40\x4f\xee\x85\x38\xb9\x11\xc5\ \x23\xf2\x64\x58\xf0\x15\x32\x6f\x4e\x57\xa1\xae\x88\xa4\x02\xd7\ \x2a\x1e\xcd\x4b\xe1\xdd\x63\xd5\x17\x89\x32\x5b\xb0\x5e\x99\x5a\ \xa8\x9d\x28\x50\x0e\x17\xee\x96\xdb\x61\x3b\x45\x51\x1d\xcf\x12\ \x56\x0b\x92\x47\xfc\xab\xae\xf6\x66\x3d\x47\xac\x70\x72\xe7\x92\ \xe7\x5f\xcd\x10\xb9\xc4\x83\x64\x94\x19\xbd\x25\x80\xe1\xe8\xd2\ \x22\xa5\xd0\xba\x02\x7a\xa1\x77\x93\x5b\x65\xc3\xee\x17\x74\xbc\ \x41\x86\x2a\xdc\x08\x4c\x8c\x92\x8c\x91\x2d\x9e\x77\x44\x1f\x68\ \xd6\xa8\x74\x77\xdb\x0e\x5b\x32\x8b\x56\x8b\x33\xbd\xd9\x63\xc8\ \x49\x9d\x3a\xc5\xc5\xea\x33\x0b\xd2\xf1\xa3\x1b\xf4\x8b\xbe\xd9\ \xb3\x57\x8b\x3b\xde\x04\xa7\x7a\x22\xb2\x24\xae\x2e\xc7\x70\xc5\ \xbe\x4e\x83\x26\x08\xfb\x0b\xbd\xa9\x4f\x99\x08\xe1\x10\x28\x72\ \xaa\xcd\x02\x03\x01\x00\x01\xa3\x82\x01\x57\x30\x82\x01\x53\x30\ \x0c\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x02\x30\x00\x30\x16\x06\ \x03\x55\x1d\x25\x01\x01\xff\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\ \x05\x05\x07\x03\x08\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\ \x04\x03\x02\x07\x80\x30\x73\x06\x08\x2b\x06\x01\x05\x05\x07\x01\ \x01\x04\x67\x30\x65\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\ \x01\x86\x1e\x68\x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x6f\x63\x73\ \x70\x2e\x77\x73\x2e\x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\ \x6d\x30\x37\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2b\x68\ \x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x61\x69\x61\x2e\x77\x73\x2e\ \x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\ \x2d\x63\x61\x2d\x67\x32\x2e\x63\x65\x72\x30\x3c\x06\x03\x55\x1d\ \x1f\x04\x35\x30\x33\x30\x31\xa0\x2f\xa0\x2d\x86\x2b\x68\x74\x74\ \x70\x3a\x2f\x2f\x74\x73\x2d\x63\x72\x6c\x2e\x77\x73\x2e\x73\x79\ \x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\ \x61\x2d\x67\x32\x2e\x63\x72\x6c\x30\x28\x06\x03\x55\x1d\x11\x04\ \x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\ \x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\x34\x38\ \x2d\x32\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x46\xc6\x69\ \xa3\x0e\x4a\x14\x1e\xd5\x4c\xda\x52\x63\x17\x3f\x5e\x36\xbc\x0d\ \xe6\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x5f\x9a\ \xf5\x6e\x5c\xcc\xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\ \x2e\xdd\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\ \x00\x03\x82\x01\x01\x00\x78\x3b\xb4\x91\x2a\x00\x4c\xf0\x8f\x62\ \x30\x37\x78\xa3\x84\x27\x07\x6f\x18\xb2\xde\x25\xdc\xa0\xd4\x94\ \x03\xaa\x86\x4e\x25\x9f\x9a\x40\x03\x1c\xdd\xce\xe3\x79\xcb\x21\ \x68\x06\xda\xb6\x32\xb4\x6d\xbf\xf4\x2c\x26\x63\x33\xe4\x49\x64\ \x6d\x0d\xe6\xc3\x67\x0e\xf7\x05\xa4\x35\x6c\x7c\x89\x16\xc6\xe9\ \xb2\xdf\xb2\xe9\xdd\x20\xc6\x71\x0f\xcd\x95\x74\xdc\xb6\x5c\xde\ \xbd\x37\x1f\x43\x78\xe6\x78\xb5\xcd\x28\x04\x20\xa3\xaa\xf1\x4b\ \xc4\x88\x29\x91\x0e\x80\xd1\x11\xfc\xdd\x5c\x76\x6e\x4f\x5e\x0e\ \x45\x46\x41\x6e\x0d\xb0\xea\x38\x9a\xb1\x3a\xda\x09\x71\x10\xfc\ \x1c\x79\xb4\x80\x7b\xac\x69\xf4\xfd\x9c\xb6\x0c\x16\x2b\xf1\x7f\ \x5b\x09\x3d\x9b\x5b\xe2\x16\xca\x13\x81\x6d\x00\x2e\x38\x0d\xa8\ \x29\x8f\x2c\xe1\xb2\xf4\x5a\xa9\x01\xaf\x15\x9c\x2c\x2f\x49\x1b\ \xdb\x22\xbb\xc3\xfe\x78\x94\x51\xc3\x86\xb1\x82\x88\x5d\xf0\x3d\ \xb4\x51\xa1\x79\x33\x2b\x2e\x7b\xb9\xdc\x20\x09\x13\x71\xeb\x6a\ \x19\x5b\xcf\xe8\xa5\x30\x57\x2c\x89\x49\x3f\xb9\xcf\x7f\xc9\xbf\ \x3e\x22\x68\x63\x53\x9a\xbd\x69\x74\xac\xc5\x1d\x3c\x7f\x92\xe0\ \xc3\xbc\x1c\xd8\x04\x75\x30\x82\x05\x90\x30\x82\x04\x78\xa0\x03\ \x02\x01\x02\x02\x10\x74\x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\ \x98\x4d\x49\xed\x68\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x05\x05\x00\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\ \x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\ \x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\ \x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\ \x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\ \x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\ \x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\ \x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\ \x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x30\x1e\x17\x0d\x31\ \x32\x30\x39\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x31\x33\ \x30\x39\x31\x38\x32\x33\x35\x39\x35\x39\x5a\x30\x81\xd3\x31\x0b\ \x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x13\x30\x11\x06\ \x03\x55\x04\x08\x13\x0a\x43\x61\x6c\x69\x66\x6f\x72\x6e\x69\x61\ \x31\x11\x30\x0f\x06\x03\x55\x04\x07\x13\x08\x53\x61\x6e\x20\x4a\ \x6f\x73\x65\x31\x23\x30\x21\x06\x03\x55\x04\x0a\x14\x1a\x41\x64\ \x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\ \x72\x70\x6f\x72\x61\x74\x65\x64\x31\x12\x30\x10\x06\x03\x55\x04\ \x0b\x14\x09\x54\x79\x70\x65\x20\x46\x6f\x6e\x74\x31\x3e\x30\x3c\ \x06\x03\x55\x04\x0b\x13\x35\x44\x69\x67\x69\x74\x61\x6c\x20\x49\ \x44\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x2d\x20\x4d\x69\x63\x72\ \x6f\x73\x6f\x66\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x56\ \x61\x6c\x69\x64\x61\x74\x69\x6f\x6e\x20\x76\x32\x31\x23\x30\x21\ \x06\x03\x55\x04\x03\x14\x1a\x41\x64\x6f\x62\x65\x20\x53\x79\x73\ \x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\ \x64\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xb7\xc2\x11\x53\x5d\x28\xa2\x61\xd3\x04\xd4\x71\xbe\x3c\ \x39\x3e\x5a\xc0\x1e\x1c\xba\xed\xe2\x94\xc3\xc7\x38\x83\xc1\xeb\ \x2d\x6b\x0f\x4a\xb8\x8a\x27\xff\x17\x15\x05\xca\xde\xea\x4b\xa1\ \x77\x92\x64\x0e\x4f\xf6\xf2\xd3\xf6\x06\xbe\x99\x95\xb3\x63\x1a\ \xc6\xb2\xad\xe1\xa6\x0b\x70\xe7\xd6\x35\x52\xc2\x21\x8a\x96\x32\ \x2c\x0d\x62\x8a\xd6\x1f\xd7\x93\xe7\x12\x71\xf5\x0c\xd1\xae\x71\ \x60\x55\x74\x52\xd0\xae\xe2\x55\x95\x0f\xe0\x0f\x5c\xe9\x37\xa6\ \x08\x4b\x5c\x91\xff\xd4\x92\xba\x15\xe4\x62\x8c\x6a\x73\xdd\x50\ \xab\xa8\x56\x9e\x4a\x5e\x72\xbf\x13\xcd\xe9\xc0\xd3\x92\x9b\x8c\ \xb9\x6b\x0a\xb9\x27\x4f\xb8\x51\x9b\x5e\x16\x69\x1d\xd3\xee\x67\ \xd5\x28\xf7\xe4\x0c\x8f\xeb\x7c\xd8\x5a\xc8\x78\x6b\xf5\x76\xea\ \x32\x43\xdf\x72\x3f\x9a\x72\x69\x8d\x00\x54\xd2\x09\xfb\x9e\xda\ \xe9\xc2\xe0\xa9\x43\xd4\x92\x74\x4a\xb7\xc4\x01\x8f\xe3\x30\x4b\ \xad\xb1\x40\x58\x57\x60\xd6\x8f\x83\xf3\x8b\xeb\xc0\xbd\xd5\x43\ \x4f\x65\x11\x3f\x72\x15\x17\x5e\xad\xda\xff\x71\x05\xb2\x29\x9e\ \x9c\x0d\x78\x88\xe7\xed\x4b\x9c\x92\xa4\xcd\xa1\x1a\xfd\x8f\x08\ \x9e\xad\x02\x03\x01\x00\x01\xa3\x82\x01\x7b\x30\x82\x01\x77\x30\ \x09\x06\x03\x55\x1d\x13\x04\x02\x30\x00\x30\x0e\x06\x03\x55\x1d\ \x0f\x01\x01\xff\x04\x04\x03\x02\x07\x80\x30\x40\x06\x03\x55\x1d\ \x1f\x04\x39\x30\x37\x30\x35\xa0\x33\xa0\x31\x86\x2f\x68\x74\x74\ \x70\x3a\x2f\x2f\x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x63\x72\ \x6c\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\ \x53\x43\x33\x2d\x32\x30\x31\x30\x2e\x63\x72\x6c\x30\x44\x06\x03\ \x55\x1d\x20\x04\x3d\x30\x3b\x30\x39\x06\x0b\x60\x86\x48\x01\x86\ \xf8\x45\x01\x07\x17\x03\x30\x2a\x30\x28\x06\x08\x2b\x06\x01\x05\ \x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\ \x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\ \x70\x73\x30\x13\x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\x06\x08\x2b\ \x06\x01\x05\x05\x07\x03\x03\x30\x71\x06\x08\x2b\x06\x01\x05\x05\ \x07\x01\x01\x04\x65\x30\x63\x30\x24\x06\x08\x2b\x06\x01\x05\x05\ \x07\x30\x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\ \x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x3b\x06\ \x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2f\x68\x74\x74\x70\x3a\ \x2f\x2f\x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x61\x69\x61\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\ \x33\x2d\x32\x30\x31\x30\x2e\x63\x65\x72\x30\x1f\x06\x03\x55\x1d\ \x23\x04\x18\x30\x16\x80\x14\xcf\x99\xa9\xea\x7b\x26\xf4\x4b\xc9\ \x8e\x8f\xd7\xf0\x05\x26\xef\xe3\xd2\xa7\x9d\x30\x11\x06\x09\x60\ \x86\x48\x01\x86\xf8\x42\x01\x01\x04\x04\x03\x02\x04\x10\x30\x16\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x1b\x04\x08\x30\x06\ \x01\x01\x00\x01\x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x05\x05\x00\x03\x82\x01\x01\x00\xaa\x68\x61\xbd\xaf\xdd\ \x52\x02\xc4\x8e\x41\xa5\x7d\x6f\x88\x9e\xbe\xfe\xb9\xcb\xb7\x6b\ \xed\xc2\x38\x65\x1b\x62\x31\x44\xdb\x9b\xad\x39\x33\xbf\x85\x94\ \xff\x6c\x00\xf9\xba\x94\x94\xa0\x9b\x5b\xe7\x4f\x1f\x2d\x03\x59\ \xe0\xe3\xa2\xdd\x63\xd6\xbc\xe5\x2b\x74\x01\x7b\x2d\xa4\x00\x74\ \x36\xdb\x5e\x92\x99\x9b\xf8\x7b\x17\xb9\xbf\xdd\x38\x4c\xe6\x2c\ \x84\xfa\x4e\x2a\xda\x10\x99\xd5\xf4\x8d\x95\x81\x33\xed\x64\x0f\ \x9b\x48\x44\x22\x34\x5f\x07\x63\x71\xdb\x68\xcc\xd1\x51\xff\x38\ \xdf\xda\xe8\x0e\xb3\xc1\xea\x25\xaf\x08\xb3\x0c\x9d\xca\x30\x93\ \xca\x0c\x7e\xdd\x3b\x80\xd8\x23\xa2\x0a\xd5\x16\x25\xdc\x0c\xda\ \xdb\xdd\x32\x03\xb5\x9b\x1f\xfa\xd1\x52\xf9\xd9\x9a\x2a\x10\x3e\ \x8c\xb1\x97\x1b\x41\x2e\xa9\x1f\x01\x2f\x6f\x49\x09\xdc\x6c\xb7\ \x2b\xce\x7f\xd8\x2f\xdc\xcc\x7d\xf6\x69\x1e\xdf\x94\x1d\xc9\xc5\ \x76\xa5\xe2\xf7\x34\x2b\x76\xd3\xf4\x2e\x3e\x14\xe2\xea\x6a\x41\ \xf2\xdf\xed\x7f\x0e\x2f\xdc\xee\xae\xf6\x05\x6c\x0a\x40\x40\xf1\ \x4f\x21\x8a\x83\x83\xa4\xb6\x8e\x07\x67\x15\x73\xd4\x06\x60\xdc\ \xc4\xda\x19\x8b\x4b\x28\x35\xb6\xc1\xe1\x30\x82\x06\x0a\x30\x82\ \x04\xf2\xa0\x03\x02\x01\x02\x02\x10\x52\x00\xe5\xaa\x25\x56\xfc\ \x1a\x86\xed\x96\xc9\xd4\x4b\x33\xc7\x30\x0d\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x81\xca\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\ \x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\ \x2e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\ \x53\x69\x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\ \x72\x6b\x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\ \x20\x32\x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\ \x49\x6e\x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\ \x72\x69\x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\ \x30\x43\x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\ \x6e\x20\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\ \x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\ \x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\ \x20\x2d\x20\x47\x35\x30\x1e\x17\x0d\x31\x30\x30\x32\x30\x38\x30\ \x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x30\x32\x30\x37\x32\x33\ \x35\x39\x35\x39\x5a\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\ \x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\ \x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\ \x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\ \x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\ \x3b\x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\ \x6f\x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\ \x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\ \x6f\x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\ \x06\x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\ \x43\x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\ \x6e\x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x30\x82\x01\x22\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\ \x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xf5\x23\x4b\ \x5e\xa5\xd7\x8a\xbb\x32\xe9\xd4\x57\xf7\xef\xe4\xc7\x26\x7e\xad\ \x19\x98\xfe\xa8\x9d\x7d\x94\xf6\x36\x6b\x10\xd7\x75\x81\x30\x7f\ \x04\x68\x7f\xcb\x2b\x75\x1e\xcd\x1d\x08\x8c\xdf\x69\x94\xa7\x37\ \xa3\x9c\x7b\x80\xe0\x99\xe1\xee\x37\x4d\x5f\xce\x3b\x14\xee\x86\ \xd4\xd0\xf5\x27\x35\xbc\x25\x0b\x38\xa7\x8c\x63\x9d\x17\xa3\x08\ \xa5\xab\xb0\xfb\xcd\x6a\x62\x82\x4c\xd5\x21\xda\x1b\xd9\xf1\xe3\ \x84\x3b\x8a\x2a\x4f\x85\x5b\x90\x01\x4f\xc9\xa7\x76\x10\x7f\x27\ \x03\x7c\xbe\xae\x7e\x7d\xc1\xdd\xf9\x05\xbc\x1b\x48\x9c\x69\xe7\ \xc0\xa4\x3c\x3c\x41\x00\x3e\xdf\x96\xe5\xc5\xe4\x94\x71\xd6\x55\ \x01\xc7\x00\x26\x4a\x40\x3c\xb5\xa1\x26\xa9\x0c\xa7\x6d\x80\x8e\ \x90\x25\x7b\xcf\xbf\x3f\x1c\xeb\x2f\x96\xfa\xe5\x87\x77\xc6\xb5\ \x56\xb2\x7a\x3b\x54\x30\x53\x1b\xdf\x62\x34\xff\x1e\xd1\xf4\x5a\ \x93\x28\x85\xe5\x4c\x17\x4e\x7e\x5b\xfd\xa4\x93\x99\x7f\xdf\xcd\ \xef\xa4\x75\xef\xef\x15\xf6\x47\xe7\xf8\x19\x72\xd8\x2e\x34\x1a\ \xa6\xb4\xa7\x4c\x7e\xbd\xbb\x4f\x0c\x3d\x57\xf1\x30\xd6\xa6\x36\ \x8e\xd6\x80\x76\xd7\x19\x2e\xa5\xcd\x7e\x34\x2d\x89\x02\x03\x01\ \x00\x01\xa3\x82\x01\xfe\x30\x82\x01\xfa\x30\x12\x06\x03\x55\x1d\ \x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x70\ \x06\x03\x55\x1d\x20\x04\x69\x30\x67\x30\x65\x06\x0b\x60\x86\x48\ \x01\x86\xf8\x45\x01\x07\x17\x03\x30\x56\x30\x28\x06\x08\x2b\x06\ \x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\ \x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x63\x70\x73\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x02\ \x30\x1e\x1a\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\x61\ \x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\ \x30\x6d\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0c\x04\x61\x30\x5f\ \xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\x55\x16\x09\x69\x6d\x61\x67\ \x65\x2f\x67\x69\x66\x30\x21\x30\x1f\x30\x07\x06\x05\x2b\x0e\x03\ \x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\xc3\xcf\x80\ \x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\x74\x74\x70\ \x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\ \x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\x69\x66\x30\ \x34\x06\x03\x55\x1d\x1f\x04\x2d\x30\x2b\x30\x29\xa0\x27\xa0\x25\ \x86\x23\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x76\x65\x72\ \x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\x33\x2d\x67\ \x35\x2e\x63\x72\x6c\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\ \x01\x04\x28\x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\ \x01\x86\x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\ \x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x1d\x06\x03\x55\ \x1d\x25\x04\x16\x30\x14\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x02\ \x06\x08\x2b\x06\x01\x05\x05\x07\x03\x03\x30\x28\x06\x03\x55\x1d\ \x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\ \x04\x03\x13\x10\x56\x65\x72\x69\x53\x69\x67\x6e\x4d\x50\x4b\x49\ \x2d\x32\x2d\x38\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xcf\ \x99\xa9\xea\x7b\x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\x05\x26\xef\xe3\ \xd2\xa7\x9d\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\ \x7f\xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\ \xaf\x33\x31\x33\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x03\x82\x01\x01\x00\x56\x22\xe6\x34\xa4\xc4\x61\xcb\ \x48\xb9\x01\xad\x56\xa8\x64\x0f\xd9\x8c\x91\xc4\xbb\xcc\x0c\xe5\ \xad\x7a\xa0\x22\x7f\xdf\x47\x38\x4a\x2d\x6c\xd1\x7f\x71\x1a\x7c\ \xec\x70\xa9\xb1\xf0\x4f\xe4\x0f\x0c\x53\xfa\x15\x5e\xfe\x74\x98\ \x49\x24\x85\x81\x26\x1c\x91\x14\x47\xb0\x4c\x63\x8c\xbb\xa1\x34\ \xd4\xc6\x45\xe8\x0d\x85\x26\x73\x03\xd0\xa9\x8c\x64\x6d\xdc\x71\ \x92\xe6\x45\x05\x60\x15\x59\x51\x39\xfc\x58\x14\x6b\xfe\xd4\xa4\ \xed\x79\x6b\x08\x0c\x41\x72\xe7\x37\x22\x06\x09\xbe\x23\xe9\x3f\ \x44\x9a\x1e\xe9\x61\x9d\xcc\xb1\x90\x5c\xfc\x3d\xd2\x8d\xac\x42\ \x3d\x65\x36\xd4\xb4\x3d\x40\x28\x8f\x9b\x10\xcf\x23\x26\xcc\x4b\ \x20\xcb\x90\x1f\x5d\x8c\x4c\x34\xca\x3c\xd8\xe5\x37\xd6\x6f\xa5\ \x20\xbd\x34\xeb\x26\xd9\xae\x0d\xe7\xc5\x9a\xf7\xa1\xb4\x21\x91\ \x33\x6f\x86\xe8\x58\xbb\x25\x7c\x74\x0e\x58\xfe\x75\x1b\x63\x3f\ \xce\x31\x7c\x9b\x8f\x1b\x96\x9e\xc5\x53\x76\x84\x5b\x9c\xad\x91\ \xfa\xac\xed\x93\xba\x5d\xc8\x21\x53\xc2\x82\x53\x63\xaf\x12\x0d\ \x50\x87\x11\x1b\x3d\x54\x52\x96\x8a\x2c\x9c\x3d\x92\x1a\x08\x9a\ \x05\x2e\xc7\x93\xa5\x48\x91\xd3\x31\x82\x04\x9b\x30\x82\x04\x97\ \x02\x01\x01\x30\x81\xc9\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\ \x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\ \x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\ \x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\ \x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\ \x31\x3b\x30\x39\x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\ \x20\x6f\x66\x20\x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\ \x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\ \x63\x6f\x6d\x2f\x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\ \x2c\x06\x03\x55\x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x43\x6c\x61\x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\ \x67\x6e\x69\x6e\x67\x20\x32\x30\x31\x30\x20\x43\x41\x02\x10\x74\ \x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\x68\x30\ \x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\xa0\x81\x98\x30\x14\x06\ \x09\x2b\x06\x01\x04\x01\x82\x37\x28\x01\x31\x07\x03\x05\x00\x03\ \x00\x00\x00\x30\x19\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\ \x31\x0c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\x30\x1c\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x0b\x31\x0e\x30\x0c\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x15\x30\x22\x06\x0a\ \x2b\x06\x01\x04\x01\x82\x37\x02\x01\x0c\x31\x14\x30\x12\xa1\x10\ \x80\x0e\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x20\ \x30\x23\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\ \x14\x5f\xbf\x46\xbf\xaf\xb5\x55\x54\x14\x4b\xea\x2f\x99\x40\x71\ \xce\xb5\x58\xb7\x63\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x04\x82\x01\x00\xa5\x73\xeb\x90\xbc\xfb\x90\x8f\ \x2f\xad\x7a\x12\xad\x9b\x58\x9f\xc9\x6d\xa1\x5b\xda\x95\x1d\xa9\ \xab\x36\xc5\xa9\xed\x3d\x06\x19\xd1\xea\x5e\xac\x52\xf0\xbc\x5a\ \xd4\x9c\x9a\x21\x2f\x18\x26\x3c\x0a\x31\x39\x3c\xa6\x3f\x8e\x02\ \x70\xc5\x55\xc2\x56\xd9\x45\x2d\x2b\x86\x39\x2c\x63\x11\xa0\x7c\ \x87\xf8\xc7\x6a\x80\x00\x5d\x27\x1d\xea\x5b\xae\x82\x0a\x45\xb1\ \x03\xdb\x48\x27\x50\x45\xe1\xbc\x1f\xbf\xeb\x93\xbc\x72\x46\xcf\ \x7e\xa2\xf7\x0b\x12\xc6\xcc\xc3\x36\x73\xc0\xca\xe0\x5f\x37\x2e\ \x80\xea\x78\x5b\x80\xc1\x8e\x80\x43\x9e\x89\xb1\x78\x4a\x0f\xb4\ \x09\xb3\x8e\x49\xfc\x7d\x0a\xca\x26\xde\xd6\x1c\x7f\x09\xc1\x95\ \xda\x62\x52\x62\x36\x7e\x49\xb4\x62\xd2\x29\xba\x19\xe1\xba\xce\ \x05\x24\x96\x5b\xa7\xeb\x0d\x8c\x17\x5c\x4a\x3f\xfd\x12\xac\x4a\ \xcd\x93\xbb\x31\xbd\x8f\xd9\x4c\xdb\x3f\xdb\x03\x27\xb7\x37\xee\ \x50\xb1\x66\x0a\x23\xc5\xb9\x5a\x91\x6e\xf4\x00\xd0\xe0\x68\x29\ \xe5\x58\x2f\xda\xf8\x56\xf1\x9a\x5f\xe1\x92\xf8\xc5\x1d\xf2\x19\ \x16\x39\x2d\xef\xb1\xd0\x8d\x75\x9a\x80\xd2\x36\xde\x30\x98\x9b\ \x39\x88\x27\x86\xf1\xb3\x43\x97\xa1\x82\x02\x0b\x30\x82\x02\x07\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x06\x31\x82\x01\xf8\x30\ \x82\x01\xf4\x02\x01\x01\x30\x72\x30\x5e\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\ \x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\ \x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\ \x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\ \x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\ \x20\x43\x41\x20\x2d\x20\x47\x32\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\ \xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x09\x06\x05\x2b\x0e\ \x03\x02\x1a\x05\x00\xa0\x5d\x30\x18\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x09\x03\x31\x0b\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\ \x01\x30\x1c\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x05\x31\x0f\ \x17\x0d\x31\x33\x30\x31\x31\x31\x31\x39\x32\x35\x33\x39\x5a\x30\ \x23\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\ \xaf\xbb\xc3\x6a\xe3\x8e\x68\x75\x8f\x1b\x91\x4c\x1d\x87\x0f\xa6\ \xe9\x8c\xf1\xea\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x01\x05\x00\x04\x82\x01\x00\x09\x88\x47\x00\x61\xb6\x29\xfd\xbd\ \x70\x37\x29\x7c\xee\x7c\x36\xfb\xf3\xa1\x74\xdd\x69\x6e\x5a\x26\ \x14\x0a\x1d\x1b\x6c\xb4\x13\x2c\xcb\x86\xae\xdd\xad\x18\xff\x08\ \x8b\x44\xbd\x9a\x43\xe7\xb8\xf8\x2d\x89\xfb\x8c\xa6\x55\x0b\x86\ \x59\x7e\x9a\x04\xc3\xdb\x11\x35\x94\xac\xd3\xcc\x71\xf5\xfe\x6e\ \x4d\xd6\xbc\x4d\x1d\x11\xd2\x0d\x51\xc4\x41\x02\x08\xdb\x00\xdc\ \x04\x69\xe5\x06\xbe\x2b\x7d\x76\x3e\x00\xf7\x81\x02\x3a\x82\x56\ \x0c\xa3\xf6\x5d\x0d\x21\xd6\x0f\xc7\x00\x1a\xbf\x79\xd9\xc8\x0a\ \x30\x4c\x2e\x6b\x44\x3b\xb4\xd7\xe9\xee\x0d\xd3\x31\xa3\x08\x71\ \xb1\xdf\xd6\x7f\xf3\x2f\x6d\xa7\x38\x1c\xb3\x50\x1e\xbc\x77\xd2\ \x21\xb4\x55\x56\xcd\x86\x43\xc0\x93\x4b\x12\x5b\x3b\x40\xb3\x1b\ \xe6\xf4\xa0\xc1\xa6\xc0\xe4\x0c\x41\xb2\x87\x69\xbe\x2d\x94\x77\ \xc7\x5e\x86\x89\xf7\x2c\xa2\x07\xe3\x8f\x63\x8f\xfe\xa9\x20\x3c\ \x02\xca\xa1\x97\x90\x72\xbc\x3a\x74\x8c\x8b\xaf\xd6\xf8\x01\x49\ \x1e\x41\xa7\xf5\xb8\xf0\x52\xdb\x1a\x13\x4c\x00\x4d\xba\x39\x7f\ \x27\xe7\xc3\xd6\x74\x6d\x0a\xb2\x92\x13\xee\xcc\xcf\xc3\x0a\x02\ \x1f\xfb\x08\xfc\x10\x8a\x08\ \x00\x01\xd6\xe4\ \x00\ \x01\x00\x00\x00\x13\x01\x00\x00\x04\x00\x30\x42\x41\x53\x45\x8b\ \x19\x94\xb1\x00\x01\xb6\x50\x00\x00\x00\x3a\x44\x53\x49\x47\xb3\ \x1a\x6a\x7e\x00\x01\xb6\x8c\x00\x00\x20\x58\x47\x44\x45\x46\x2f\ \x6c\x30\x10\x00\x01\xa1\x78\x00\x00\x00\xd4\x47\x50\x4f\x53\x0b\ \x64\x07\x36\x00\x01\xa2\x4c\x00\x00\x08\xd0\x47\x53\x55\x42\xe0\ \x48\xf4\xcb\x00\x01\xab\x1c\x00\x00\x0b\x32\x4f\x53\x2f\x32\x72\ \xb4\xd0\xf4\x00\x00\x01\xb8\x00\x00\x00\x60\x63\x6d\x61\x70\xec\ \xf6\xc9\x12\x00\x00\x11\x2c\x00\x00\x0a\x20\x63\x76\x74\x20\x00\ \xbf\x0b\x71\x00\x00\x1d\x04\x00\x00\x00\x22\x66\x70\x67\x6d\x06\ \x59\x9c\x37\x00\x00\x1b\x4c\x00\x00\x01\x73\x67\x61\x73\x70\xff\ \xff\x00\x03\x00\x01\xa1\x70\x00\x00\x00\x08\x67\x6c\x79\x66\xdb\ \x65\x7b\x45\x00\x00\x24\xb4\x00\x01\x1f\xa0\x68\x65\x61\x64\xfb\ \xe3\xf9\x17\x00\x00\x01\x3c\x00\x00\x00\x36\x68\x68\x65\x61\x06\ \x76\x04\xa3\x00\x00\x01\x74\x00\x00\x00\x24\x68\x6d\x74\x78\xd3\ \xb6\x58\x75\x00\x00\x02\x18\x00\x00\x0f\x14\x6c\x6f\x63\x61\x5e\ \x14\xa5\xe8\x00\x00\x1d\x28\x00\x00\x07\x8c\x6d\x61\x78\x70\x05\ \xe9\x02\x38\x00\x00\x01\x98\x00\x00\x00\x20\x6e\x61\x6d\x65\xc8\ \x5f\xeb\xf3\x00\x01\x44\x54\x00\x00\x3c\xbe\x70\x6f\x73\x74\x84\ \x48\x04\xa9\x00\x01\x81\x14\x00\x00\x20\x5c\x70\x72\x65\x70\x26\ \xb3\x23\xb0\x00\x00\x1c\xc0\x00\x00\x00\x41\x00\x01\x00\x00\x00\ \x01\x04\x5a\x15\x8a\x33\xc7\x5f\x0f\x3c\xf5\x00\x09\x03\xe8\x00\ \x00\x00\x00\xcd\x15\xa0\x7f\x00\x00\x00\x00\xcd\x16\x11\x00\xff\ \xd9\xfe\x70\x02\xc2\x03\xe8\x00\x00\x00\x09\x00\x02\x00\x00\x00\ \x00\x00\x00\x00\x01\x00\x00\x03\xd8\xfe\xef\x00\x00\x02\x58\xff\ \xd9\xff\x96\x02\xc2\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x03\xc5\x00\x01\x00\x00\x03\xc5\x00\x56\x00\ \x10\x00\x6d\x00\x06\x00\x01\x00\x00\x00\x00\x00\x0a\x00\x00\x02\ \x00\x01\x73\x00\x03\x00\x01\x00\x03\x02\x57\x01\x90\x00\x05\x00\ \x00\x02\x8a\x02\x58\x00\x00\x00\x4b\x02\x8a\x02\x58\x00\x00\x01\ \x5e\x00\x32\x01\x20\x00\x00\x02\x0b\x05\x09\x03\x04\x03\x02\x02\ \x04\x20\x00\x00\x07\x00\x00\x18\x01\x00\x00\x00\x00\x00\x00\x00\ \x00\x41\x44\x42\x45\x00\x40\x00\x00\xfb\x02\x02\xee\xff\x06\x00\ \x00\x03\xd8\x01\x11\x60\x00\x01\x93\x00\x00\x00\x00\x01\xe0\x02\ \x94\x00\x00\x00\x20\x00\x03\x02\x58\x00\x3e\x00\x00\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x20\x02\x58\x00\x67\x02\ \x58\x00\x42\x02\x58\x00\x55\x02\x58\x00\x73\x02\x58\x00\x87\x02\ \x58\x00\x35\x02\x58\x00\x4f\x02\x58\x00\x5f\x02\x58\x00\x51\x02\ \x58\x00\x62\x02\x58\x00\x86\x02\x58\x00\x51\x02\x58\x00\x53\x02\ \x58\x00\x30\x02\x58\x00\x66\x02\x58\x00\x31\x02\x58\x00\x64\x02\ \x58\x00\x43\x02\x58\x00\x2a\x02\x58\x00\x4f\x02\x58\x00\x2b\x02\ \x58\x00\x0a\x02\x58\x00\x36\x02\x58\x00\x26\x02\x58\x00\x41\x02\ \x58\x00\x51\x02\x58\x00\x5d\x02\x58\x00\x50\x02\x58\x00\x3c\x02\ \x58\x00\x45\x02\x58\x00\x67\x02\x58\x00\x48\x02\x58\x00\x5d\x02\ \x58\x00\x5a\x02\x58\x00\x37\x02\x58\x00\x6a\x02\x58\x00\x51\x02\ \x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\ \x58\x00\x3c\x02\x58\x00\x92\x02\x58\x00\x48\x02\x58\x00\x45\x02\ \x58\x00\x4d\x02\x58\x00\x33\x02\x58\x00\x08\x02\x58\x00\x40\x02\ \x58\x00\x31\x02\x58\x00\x47\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\x58\x00\x20\x02\ \x58\xff\xff\x02\x58\x00\x1b\x02\x58\x00\x42\x02\x58\x00\x42\x02\ \x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x42\x02\x58\x00\x55\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x10\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\x58\x00\x73\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\ \x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x35\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x0a\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\ \x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x5f\x02\x58\x00\x51\x02\ \x58\x00\x62\x02\x58\x00\x86\x02\x58\x00\x86\x02\x58\x00\x86\x02\ \x58\x00\x86\x02\x58\x00\x86\x02\x58\x00\x43\x02\x58\x00\x86\x02\ \x58\x00\x35\x02\x58\x00\x51\x02\x58\x00\x53\x02\x58\x00\x53\x02\ \x58\x00\x53\x02\x58\x00\x53\x02\x58\x00\x53\x02\x58\x00\x53\x02\ \x58\x00\x53\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x2d\x02\x58\x00\x21\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x30\x02\ \x58\x00\x30\x02\x58\x00\x30\x02\x58\x00\x64\x02\x58\x00\x64\x02\ \x58\x00\x64\x02\x58\x00\x64\x02\x58\x00\x64\x02\x58\x00\x64\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\ \x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x43\x02\x58\x00\x4f\x02\ \x58\x00\x2a\x02\x58\x00\x2a\x02\x58\x00\x2a\x02\x58\x00\x2a\x02\ \x58\x00\x2a\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\x58\x00\x4f\x02\ \x58\x00\x0a\x02\x58\x00\x0a\x02\x58\x00\x0a\x02\x58\x00\x0a\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x26\x02\ \x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x41\x02\x58\x00\x41\x02\ \x58\x00\x10\x02\x58\x00\x65\x02\x58\x00\x3e\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x11\x02\x58\x00\x14\x02\x58\x00\x50\x02\ \x58\x00\x50\x02\x58\x00\x50\x02\x58\x00\x50\x02\x58\x00\x50\x02\ \x58\x00\x33\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x0a\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x14\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\x58\x00\x5a\x02\ \x58\x00\x5a\x02\x58\x00\x37\x02\x58\x00\x6a\x02\x58\x00\x6a\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x2b\x02\x58\x00\x51\x02\ \x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\x58\x00\x51\x02\ \x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\ \x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\x58\x00\x5d\x02\ \x58\xff\xea\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x0b\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x92\x02\x58\x00\x74\x02\ \x58\x00\x92\x02\x58\x00\x87\x02\x58\x00\x87\x02\x58\x00\x4d\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x48\x02\x58\x00\x58\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x45\x02\ \x58\x00\x45\x02\x58\x00\x45\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\x58\x00\x4d\x02\ \x58\x00\x4d\x02\x58\x00\x08\x02\x58\x00\x08\x02\x58\x00\x08\x02\ \x58\x00\x08\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x47\x02\x58\x00\x47\x02\x58\x00\x47\x02\ \x58\x00\x47\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x37\x02\ \x58\x00\x5e\x02\x58\x00\x3c\x02\x58\x00\x5d\x02\x58\x00\x3d\x02\ \x58\x00\x3f\x02\x58\x00\x45\x02\x58\x00\x3c\x02\x58\x00\x4d\x02\ \x58\x00\x2e\x02\x58\x00\x3f\x02\x58\x00\x36\x02\x58\x00\x33\x02\ \x58\x00\x08\x02\x58\x00\x31\x02\x58\x00\x1a\x02\x58\x00\x34\x02\ \x58\x00\x39\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\x58\x00\x3c\x02\ \x58\x00\x2a\x02\x58\x00\x47\x02\x58\x00\x62\x02\x58\x00\x45\x02\ \x58\x00\x39\x02\x58\x00\x27\x02\x58\x00\x38\x02\x58\x00\x4d\x02\ \x58\x00\x46\x02\x58\x00\x44\x02\x58\x00\x43\x02\x58\x00\x47\x02\ \x58\x00\x62\x02\x58\x00\x45\x02\x58\x00\x39\x02\x58\x00\x27\x02\ \x58\x00\x38\x02\x58\x00\x4e\x02\x58\x00\x46\x02\x58\x00\x44\x02\ \x58\x00\x43\x02\x58\x00\xdb\x02\x58\x00\xc5\x02\x58\x00\xdb\x02\ \x58\x00\xc5\x02\x58\x00\x20\x02\x58\x00\xe3\x02\x58\x00\xe3\x02\ \x58\x00\x6d\x02\x58\x00\x7b\x02\x58\x00\xf5\x02\x58\x00\x83\x02\ \x58\x00\xd1\x02\x58\x00\xd9\x02\x58\x00\x5f\x02\x58\x00\x67\x02\ \x58\x00\xd9\x02\x58\x00\x67\x02\x58\x00\xc5\x02\x58\x00\xd3\x02\ \x58\x00\x53\x02\x58\x00\x61\x02\x58\x00\x55\x02\x58\x00\x55\x02\ \x58\x00\x50\x02\x58\x00\x14\x02\x58\x00\x50\x02\x58\x00\x14\x02\ \x58\x00\xdb\x02\x58\x00\x97\x02\x58\x00\x3c\x02\x58\x00\xd0\x02\ \x58\x00\x7a\x02\x58\x00\xe2\x02\x58\x00\x63\x02\x58\x00\x78\x02\ \x58\x00\x63\x02\x58\x00\x63\x02\x58\x01\x07\x02\x58\x00\x63\x02\ \x58\x01\x07\x02\x58\x00\x54\x02\x58\x00\x7f\x02\x58\x00\x7f\x02\ \x58\x00\x5b\x02\x58\x00\x48\x02\x58\x00\x1e\x02\x58\x00\x1e\x02\ \x58\x00\x70\x02\x58\xff\xfb\x02\x58\x00\x0f\x02\x58\x00\x31\x02\ \x58\x00\x31\x02\x58\x00\x57\x02\x58\x00\x68\x02\x58\x00\x86\x02\ \x58\x00\x86\x02\x58\x00\x55\x02\x58\x00\xa1\x02\x58\x00\xd0\x02\ \x58\x00\xae\x02\x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xac\x02\ \x58\x00\xb0\x02\x58\x00\xb7\x02\x58\x00\xaf\x02\x58\x00\xad\x02\ \x58\x00\xec\x02\x58\x00\xd5\x02\x58\x00\xfe\x02\x58\x00\xf4\x02\ \x58\x00\xa1\x02\x58\x00\xd0\x02\x58\x00\xae\x02\x58\x00\xac\x02\ \x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xb0\x02\x58\x00\xb7\x02\ \x58\x00\xaf\x02\x58\x00\xad\x02\x58\x00\xec\x02\x58\x00\xd5\x02\ \x58\x00\xfe\x02\x58\x00\xf4\x02\x58\x00\xa1\x02\x58\x00\xd0\x02\ \x58\x00\xad\x02\x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xac\x02\ \x58\x00\xb0\x02\x58\x00\xb7\x02\x58\x00\xaf\x02\x58\x00\xad\x02\ \x58\x00\xec\x02\x58\x00\xd5\x02\x58\x00\xfe\x02\x58\x00\xf4\x02\ \x58\x00\xa1\x02\x58\x00\xd0\x02\x58\x00\xae\x02\x58\x00\xac\x02\ \x58\x00\xac\x02\x58\x00\xac\x02\x58\x00\xb0\x02\x58\x00\xb7\x02\ \x58\x00\xaf\x02\x58\x00\xad\x02\x58\x00\xec\x02\x58\x00\xd5\x02\ \x58\x00\xfe\x02\x58\x00\xf4\x02\x58\x00\xa7\x02\x58\x00\x89\x02\ \x58\x00\x8e\x02\x58\x00\xa7\x02\x58\x00\xac\x02\x58\x00\xb5\x02\ \x58\x00\x89\x02\x58\x00\xa0\x02\x58\x00\xc6\x02\x58\x00\x95\x02\ \x58\x00\xaf\x02\x58\x00\xaf\x02\x58\x00\x8c\x02\x58\x00\xbd\x02\ \x58\x00\xc4\x02\x58\x00\x82\x02\x58\x00\xaf\x02\x58\x00\x8e\x02\ \x58\x00\xac\x02\x58\x00\x89\x02\x58\x00\xf3\x02\x58\x00\xa2\x02\ \x58\x00\xa4\x02\x58\x00\x9f\x02\x58\x00\x93\x02\x58\x00\x52\x02\ \x58\x00\x9f\x02\x58\x00\x8c\x02\x58\x00\x92\x02\x58\x00\xa0\x02\ \x58\x00\xa0\x02\x58\x00\x9a\x02\x58\x00\x89\x02\x58\x00\x89\x02\ \x58\x00\xaf\x02\x58\x00\x3a\x02\x58\x00\x55\x02\x58\x00\x4d\x02\ \x58\x00\x35\x02\x58\x00\x3a\x02\x58\x00\x71\x02\x58\x00\x31\x02\ \x58\x00\x60\x02\x58\x00\x4e\x02\x58\x00\x2f\x02\x58\x00\x2b\x02\ \x58\x00\x6d\x02\x58\x00\x2b\x02\x58\x00\x54\x02\x58\x00\x60\x02\ \x58\x00\x6c\x02\x58\x00\x38\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x30\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x27\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\x58\x00\x1c\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x66\x02\x58\x00\x55\x02\ \x58\x00\xd8\x02\x58\x00\x55\x02\x58\x00\x78\x02\x58\x00\x6b\x02\ \x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x55\x02\x58\x00\x6f\x02\ \x58\x00\x55\x02\x58\x00\x4c\x02\x58\x00\x4c\x02\x58\x00\x55\x02\ \x58\x00\x27\x02\x58\xff\xfc\x02\x58\x00\x4d\x02\x58\x00\x4c\x02\ \x58\x00\xba\x02\x58\x00\x3e\x02\x58\x00\x24\x02\x58\x00\x1d\x02\ \x58\x00\x46\x02\x58\x00\x34\x02\x58\x00\x75\x02\x58\x00\x1a\x02\ \x58\x00\x11\x02\x58\x00\x21\x02\x58\x00\x1d\x02\x58\x00\x21\x02\ \x58\x00\xc9\x02\x58\x00\x9f\x02\x58\x00\x77\x02\x58\x00\xa6\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x48\x02\x58\x00\x48\x02\ \x58\x00\x26\x02\x58\x00\x26\x02\x58\x00\x21\x02\x58\x00\x21\x02\ \x58\xff\xe7\x02\x58\xff\xe7\x02\x58\xff\xfa\x02\x58\x00\x4d\x02\ \x58\x00\x62\x02\x58\x01\x00\x02\x58\x00\xa9\x02\x58\x00\xd1\x02\ \x58\x00\xd9\x02\x58\x00\xf5\x02\x58\x00\xdb\x02\x58\x00\xb9\x02\ \x58\x00\xeb\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xf9\x02\ \x58\x00\xb1\x02\x58\x00\xeb\x02\x58\x00\xb9\x02\x58\x00\xf9\x02\ \x58\x00\x9e\x02\x58\x00\x96\x02\x58\x00\xb1\x02\x58\x00\xaa\x02\ \x58\x00\xcf\x02\x58\x00\xca\x02\x58\x00\xea\x02\x58\x00\xdd\x02\ \x58\x00\xea\x02\x58\x00\xb9\x02\x58\x00\xa9\x02\x58\x00\xeb\x02\ \x58\x00\xf9\x02\x58\x00\xa8\x02\x58\x00\xa4\x02\x58\x00\x9e\x02\ \x58\x00\x9b\x02\x58\x00\xb1\x02\x58\x00\xb0\x02\x58\x00\xaa\x02\ \x58\x00\xb1\x02\x58\x00\xea\x02\x58\x00\xf3\x02\x58\x00\x96\x02\ \x58\x00\xa5\x02\x58\x00\xec\x02\x58\x00\xec\x02\x58\x00\xcf\x02\ \x58\x00\xcf\x02\x58\x00\xca\x02\x58\x00\xbf\x02\x58\x00\xa8\x02\ \x58\x00\xa4\x02\x58\x00\x6c\x02\x58\x00\x6c\x02\x58\x00\xf7\x02\ \x58\x00\xfd\x02\x58\x01\x23\x02\x58\x00\xea\x02\x58\x00\xa5\x02\ \x58\x00\xd7\x02\x58\x00\xd7\x02\x58\x00\xd2\x02\x58\x00\xea\x02\ \x58\x00\xea\x02\x58\x00\xae\x02\x58\x00\xb0\x02\x58\x00\xa8\x02\ \x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\ \x58\x00\xa4\x02\x58\x00\xa8\x02\x58\x00\xa8\x02\x58\x00\xb8\x02\ \x58\x00\xac\x02\x58\x00\xb8\x02\x58\x00\xac\x02\x58\x00\xb8\x02\ \x58\x00\xac\x02\x58\x00\xa9\x02\x58\x00\xa8\x02\x58\x00\xae\x02\ \x58\x00\xb2\x02\x58\x00\xae\x02\x58\x00\xb2\x02\x58\x00\xae\x02\ \x58\x00\xb2\x02\x58\x00\xa9\x02\x58\x00\xa7\x02\x58\x00\xb0\x02\ \x58\x00\xac\x02\x58\x01\x06\x02\x58\x00\xe7\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\x21\x02\ \x58\x00\x21\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\x12\x02\ \x58\x00\x12\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x01\x05\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\x00\xde\x02\ \x58\x00\xde\x02\x58\x00\xde\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x00\x4b\x02\ \x58\x00\x4b\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\x00\xb7\x02\x58\x01\x05\x02\x58\x00\xb7\x02\x58\x00\xb7\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\x00\xb7\x02\x58\x00\xb7\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\x01\x05\x02\x58\x00\xb7\x02\x58\x00\xb7\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\x01\x05\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\x01\x05\x02\ \x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\x58\xff\xd9\x02\ \x58\x01\x05\x02\x58\x01\x05\x02\x58\x01\x05\x02\x58\xff\xd9\x02\ \x58\x00\xde\x02\x58\x01\x05\x02\x58\x00\xde\x02\x58\xff\xd9\x02\ \x58\x00\xde\x02\x58\xff\xd9\x02\x58\x00\xde\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x01\x2c\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x02\x0d\x02\x58\x00\x00\x02\x58\x01\x2c\x02\x58\x00\x00\x02\ \x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\x58\x00\x00\x02\ \x58\x01\x2c\x02\x58\x00\x00\x02\x58\x00\x00\x00\x00\x00\x03\x00\ \x00\x00\x03\x00\x00\x02\x14\x00\x01\x00\x00\x00\x00\x00\x1c\x00\ \x03\x00\x01\x00\x00\x02\x14\x00\x06\x01\xf8\x00\x00\x00\x09\x00\ \xf7\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x03\x01\xe8\x01\xed\x02\x17\x02\x78\x02\x8b\x01\xce\x01\xec\x02\ \x01\x02\x02\x02\x0b\x02\x96\x01\xe4\x01\xf8\x01\xe3\x02\x07\x01\ \xcf\x01\xd0\x01\xd1\x01\xd2\x01\xd3\x01\xd4\x01\xd5\x01\xd6\x01\ \xd7\x01\xd8\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\x9d\x01\xea\x02\ \x15\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\ \x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\ \x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\ \x1b\x00\x1c\x00\x1d\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x02\x05\x02\x08\x02\x06\x02\xa3\x00\x00\x00\ \x3c\x00\x3f\x00\x50\x00\x5a\x00\x8e\x00\x97\x00\xc3\x00\xea\x00\ \xe9\x00\xeb\x00\xed\x00\xec\x00\xf0\x01\x01\x01\x0b\x01\x0a\x01\ \x0c\x01\x0e\x01\x27\x01\x26\x01\x28\x01\x2a\x01\x41\x01\x48\x01\ \x47\x01\x49\x01\x4b\x01\x4a\x01\x75\x01\x74\x01\x76\x01\x78\x02\ \x0c\x02\x76\x02\x7c\x02\x79\x02\x0e\x01\xff\x02\x0f\x01\x6d\x02\ \x12\x02\x10\x02\x13\x02\xce\x02\xd7\x02\xa2\x00\x4e\x00\xa3\x02\ \xa7\x02\xa0\x02\x9e\x02\x9f\x02\x7a\x02\xa8\x02\xa9\x02\xae\x02\ \xaf\x02\xa6\x02\xaa\x02\x54\x02\x56\x00\x00\x00\xff\x01\x57\x01\ \xeb\x01\xe9\x02\xa5\x02\xab\x02\x7d\x02\xa4\x02\xac\x01\xf6\x01\ \xf7\x01\xe7\x03\x21\x00\x38\x00\x3b\x00\x96\x00\xa4\x01\x58\x01\ \xfa\x01\xfb\x01\xf0\x01\xf1\x01\xee\x01\xef\x02\x99\x02\xc6\x01\ \x92\x00\xdd\x02\x88\x02\x7b\x01\xf4\x01\xf5\x01\xad\x01\xae\x02\ \x0d\x01\xfe\x01\xf2\x01\xf3\x02\x8c\x00\x3a\x00\x5b\x00\x39\x00\ \x5d\x00\x59\x00\x76\x00\x77\x00\x79\x00\x75\x00\x94\x00\x95\x00\ \x00\x00\x93\x00\xc0\x00\xc1\x00\xbf\x01\x32\x02\xcf\x02\xd6\x02\ \xd8\x02\xd9\x02\xdc\x02\xda\x02\xdd\x02\xdb\x02\xde\x02\xd0\x00\ \x04\x08\x0c\x00\x00\x01\x1a\x01\x00\x00\x07\x00\x1a\x00\x00\x00\ \x0d\x00\x2f\x00\x39\x00\x40\x00\x5a\x00\x60\x00\x7a\x00\x7e\x00\ \xbf\x00\xc4\x00\xd1\x00\xd6\x00\xdf\x00\xe4\x00\xf1\x00\xf6\x01\ \x31\x01\x49\x01\x65\x01\x7e\x01\x80\x01\x8f\x01\x92\x01\xa1\x01\ \xb0\x01\xdc\x01\xe7\x01\xeb\x02\x1b\x02\x37\x02\x43\x02\x52\x02\ \x54\x02\x59\x02\x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8e\x02\ \x9e\x02\xb0\x02\xb3\x02\xb8\x02\xbc\x02\xbf\x02\xcc\x02\xdd\x02\ \xe3\x03\x04\x03\x0c\x03\x0f\x03\x13\x03\x1b\x03\x24\x03\x28\x03\ \x2e\x03\x31\x03\xc0\x1d\x43\x1d\x49\x1d\x4d\x1d\x50\x1d\x52\x1d\ \x58\x1d\x5b\x1d\x9c\x1d\xa0\x1d\xbb\x1e\x0f\x1e\x21\x1e\x25\x1e\ \x2b\x1e\x3b\x1e\x49\x1e\x63\x1e\x6f\x1e\x85\x1e\x8f\x1e\x93\x1e\ \x97\x1e\x9e\x1e\xf9\x20\x07\x20\x15\x20\x1a\x20\x1e\x20\x22\x20\ \x26\x20\x30\x20\x33\x20\x3a\x20\x44\x20\x71\x20\x79\x20\x7f\x20\ \x89\x20\x8e\x20\x94\x20\xa1\x20\xa4\x20\xa7\x20\xac\x20\xb2\x20\ \xb5\x20\xba\x21\x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\ \x54\x21\x5e\x21\x93\x22\x02\x22\x06\x22\x0f\x22\x12\x22\x15\x22\ \x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\x65\x25\x9f\x25\xa0\x25\ \xb3\x25\xb7\x25\xbd\x25\xc1\x25\xc6\x25\xca\x26\x11\x26\x6a\x27\ \x13\x27\x52\xfb\x02\xff\xff\x00\x00\x00\x00\x00\x0d\x00\x20\x00\ \x30\x00\x3a\x00\x41\x00\x5b\x00\x61\x00\x7b\x00\xa0\x00\xc0\x00\ \xc5\x00\xd2\x00\xd7\x00\xe0\x00\xe5\x00\xf2\x00\xf7\x01\x34\x01\ \x4c\x01\x68\x01\x80\x01\x8f\x01\x92\x01\xa0\x01\xaf\x01\xcd\x01\ \xe6\x01\xea\x02\x18\x02\x37\x02\x43\x02\x50\x02\x54\x02\x58\x02\ \x61\x02\x65\x02\x6f\x02\x79\x02\x87\x02\x8c\x02\x9e\x02\xb0\x02\ \xb2\x02\xb7\x02\xbb\x02\xbe\x02\xc6\x02\xd8\x02\xe1\x03\x00\x03\ \x06\x03\x0f\x03\x12\x03\x1b\x03\x23\x03\x26\x03\x2e\x03\x31\x03\ \xc0\x1d\x43\x1d\x47\x1d\x4d\x1d\x4f\x1d\x52\x1d\x56\x1d\x5b\x1d\ \x9c\x1d\xa0\x1d\xbb\x1e\x0c\x1e\x20\x1e\x24\x1e\x2a\x1e\x36\x1e\ \x42\x1e\x5a\x1e\x6c\x1e\x80\x1e\x8e\x1e\x92\x1e\x97\x1e\x9e\x1e\ \xa0\x20\x07\x20\x12\x20\x18\x20\x1c\x20\x20\x20\x26\x20\x30\x20\ \x32\x20\x39\x20\x44\x20\x70\x20\x74\x20\x7d\x20\x80\x20\x8d\x20\ \x94\x20\xa1\x20\xa4\x20\xa6\x20\xab\x20\xb1\x20\xb5\x20\xb9\x21\ \x13\x21\x17\x21\x20\x21\x22\x21\x26\x21\x2e\x21\x53\x21\x5b\x21\ \x90\x22\x02\x22\x06\x22\x0f\x22\x11\x22\x15\x22\x19\x22\x1e\x22\ \x2b\x22\x48\x22\x60\x22\x64\x25\x00\x25\xa0\x25\xb2\x25\xb6\x25\ \xbc\x25\xc0\x25\xc6\x25\xc9\x26\x10\x26\x6a\x27\x13\x27\x52\xfb\ \x01\xff\xff\x00\x01\xff\xf5\x00\x00\x01\x9f\x00\x00\xff\xc3\x00\ \x00\xff\xbd\x00\x00\x00\x00\xff\x78\x00\x00\xff\xc1\x00\x00\x00\ \x09\x00\x00\x00\x55\x00\x00\x00\x00\x00\x00\x00\x00\xff\x80\xff\ \x59\x00\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\ \x66\xfe\x0c\xff\x4e\xff\x4d\xff\x4a\xff\x43\xff\x40\xff\x37\xff\ \x2e\xff\x21\xff\x1d\xff\x0e\xff\xae\x00\x00\x00\x00\x00\x0e\x00\ \x0d\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe8\xff\xe7\xff\ \xe0\xff\xd9\x00\x00\xff\xd5\xff\xd3\xfe\xe6\xe5\x14\x00\x00\xe5\ \x10\x00\x00\xe5\x13\x00\x00\xe5\x11\xe4\xbd\xe4\xbc\xe4\xb5\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xe2\xdc\xe2\x1b\x00\x00\xe3\x1b\x00\x00\x00\ \x00\x00\x00\x00\x00\xe1\xc1\xe2\x5c\xe2\x95\xe1\xbb\xe2\x44\x00\ \x00\xe1\xac\x00\x00\xe1\xaa\xe1\xa7\xe1\xdf\xe1\xdd\xe1\xdb\xe1\ \xda\x00\x00\xe1\xd2\xe1\xd0\xe1\xcd\xe1\x9d\xe0\xfa\xe0\xf4\xe0\ \xf1\xe1\x87\xe1\x83\xe1\x3d\xe1\x37\xe1\x22\xe0\xa7\xe0\xa6\xe0\ \xa0\x00\x00\xe0\x74\x00\x00\xe0\x89\xe0\x7f\xe0\x5c\xe0\x42\xe0\ \x3a\xde\x25\xdd\x16\xdd\x08\xdd\x06\xdd\x02\xdd\x00\xdc\xf1\x00\ \x00\xdc\xb2\xdc\x5b\xdb\xb1\xdb\x67\x06\xac\x00\x01\x00\x00\x00\ \x00\x01\x16\x00\x00\x01\x32\x00\x00\x01\x3c\x00\x00\x01\x44\x01\ \x4a\x00\x00\x01\x86\x00\x00\x01\x9c\x00\x00\x01\xaa\x00\x00\x01\ \xc0\x02\x34\x02\x5e\x02\x90\x00\x00\x00\x00\x00\x00\x02\xb6\x02\ \xb8\x02\xba\x02\xd8\x02\xda\x02\xdc\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x02\xc8\x02\xca\x00\x00\x00\x00\x00\x00\x02\xc6\x02\ \xd0\x02\xd4\x02\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x02\xe0\x00\ \x00\x00\x00\x00\x00\x00\x00\x02\xdc\x00\x00\x02\xde\x00\x00\x02\ \xde\x00\x00\x00\x00\x00\x00\x00\x00\x02\xda\x02\xe0\x02\xe2\x02\ \xe4\x02\xe6\x02\xf0\x02\xfe\x03\x10\x03\x16\x03\x20\x03\x22\x00\ \x00\x00\x00\x03\x20\x00\x00\x03\xd0\x03\xd6\x03\xda\x03\xde\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd8\x00\x00\x03\xd8\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xd0\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xb4\x00\x00\x03\ \xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x9e\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x03\x01\xe8\x01\xed\x02\x17\x02\ \x78\x02\x8b\x01\xce\x01\xec\x02\x01\x02\x02\x02\x0b\x02\x96\x01\ \xe4\x01\xf8\x01\xe3\x02\x07\x01\xe5\x01\xe6\x02\x9c\x02\x9b\x02\ \x9d\x01\xea\x02\x15\x02\x03\x02\x09\x02\x04\x02\xa1\x02\x00\x02\ \xcd\x02\x05\x02\x08\x02\x06\x02\xa3\x03\x21\x01\xe9\x02\x7c\x02\ \x79\x02\x77\x02\x7a\x02\x0a\x02\x0e\x02\xd7\x02\x10\x02\x54\x01\ \xf6\x02\xa5\x01\xf9\x02\x12\x02\xd8\x02\x76\x02\xa0\x02\x1e\x02\ \x1f\x02\xce\x02\xa8\x02\x0f\x01\xfe\x02\xdd\x02\x1d\x02\x56\x01\ \xf7\x02\x8d\x02\x8e\x02\x8f\x01\xeb\x00\x3f\x00\x4e\x00\x50\x00\ \x59\x00\x5a\x00\x5b\x00\x5d\x00\x75\x00\x76\x00\x77\x00\x79\x00\ \xe6\x00\x8e\x02\x98\x00\xa3\x00\xbf\x00\xc0\x00\xc1\x00\xc3\x00\ \xdb\x00\xe7\x01\x6d\x00\xf0\x00\xff\x01\x01\x01\x0a\x01\x0b\x01\ \x0c\x01\x0e\x01\x26\x01\x27\x01\x28\x01\x2a\x01\x9b\x01\x41\x02\ \x99\x01\x57\x01\x74\x01\x75\x01\x76\x01\x78\x01\x90\x01\x9c\x01\ \x92\x00\x3d\x00\xee\x00\x3e\x00\xef\x00\x4d\x00\xfe\x00\x51\x01\ \x02\x00\x52\x01\x03\x00\x54\x01\x05\x00\x53\x01\x04\x00\x55\x01\ \x06\x00\x58\x01\x09\x00\x5e\x01\x0f\x00\x5f\x01\x10\x00\x60\x01\ \x11\x00\x69\x01\x1a\x00\x5c\x01\x0d\x00\x6a\x01\x1b\x00\x6b\x01\ \x1c\x00\x6c\x01\x1d\x00\x6d\x01\x1e\x00\x71\x01\x22\x00\x74\x01\ \x25\x00\x78\x01\x29\x00\x7a\x01\x2b\x00\x7b\x01\x2c\x00\x80\x01\ \x30\x00\x7c\x01\x32\x00\x81\x01\x33\x00\x82\x01\x34\x01\x35\x00\ \x83\x01\x36\x00\x85\x01\x39\x00\x84\x01\x37\x00\x86\x01\x38\x00\ \x8a\x01\x3d\x00\x8c\x01\x3f\x00\x8f\x01\x42\x00\x8d\x01\x40\x01\ \x46\x00\x98\x01\x4c\x00\x99\x01\x4d\x00\x9a\x01\x4e\x00\xa4\x01\ \x58\x00\xac\x01\x60\x00\xae\x01\x61\x00\xad\x01\x62\x00\xb2\x01\ \x66\x00\xb3\x01\x67\x00\xb5\x01\x69\x00\xb4\x01\x68\x00\xbb\x01\ \x6f\x00\xba\x01\x6e\x00\xc2\x01\x77\x00\xc4\x01\x79\x00\xc5\x01\ \x7a\x00\xc6\x01\x7b\x00\xc7\x01\x7c\x00\xcf\x01\x84\x00\xd8\x01\ \x8d\x00\xdc\x01\x91\x00\xdd\x00\xe2\x01\x97\x00\xe4\x01\x99\x00\ \xe3\x01\x98\x00\xa5\x01\x59\x00\xd0\x01\x85\x00\x40\x00\xf1\x00\ \x7d\x01\x2d\x00\x9b\x01\x4f\x00\xc8\x01\x7d\x00\xc9\x01\x7e\x00\ \xca\x01\x7f\x00\xcb\x01\x80\x00\xcc\x01\x81\x00\x6e\x01\x1f\x00\ \xab\x01\x5f\x00\xb6\x01\x6a\x00\xbc\x01\x70\x02\x60\x02\x68\x02\ \x6d\x02\x6f\x02\xd9\x02\xdc\x02\xda\x02\xde\x02\xd6\x02\xdb\x02\ \x62\x02\x69\x02\x6e\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xfe\x02\ \xff\x03\x01\x02\x58\x02\x5a\x02\x5b\x02\x61\x02\x63\x02\x66\x02\ \x6a\x02\x6b\x00\x56\x01\x07\x00\x57\x01\x08\x00\x6f\x01\x20\x00\ \x72\x01\x23\x00\x73\x01\x24\x00\x87\x01\x3a\x00\x88\x01\x3b\x00\ \x89\x01\x3c\x00\x8b\x01\x3e\x00\x90\x01\x43\x00\x91\x01\x44\x00\ \x92\x01\x45\x00\xaf\x01\x63\x00\xb0\x01\x64\x00\xb1\x01\x65\x00\ \xb7\x01\x6b\x00\xb8\x01\x6c\x00\xbd\x01\x71\x00\xbe\x01\x72\x00\ \xd6\x01\x8b\x00\xd7\x01\x8c\x00\xd9\x01\x8e\x00\xde\x01\x93\x00\ \xe5\x01\x9a\x00\x41\x00\xf2\x00\x42\x00\xf3\x00\x43\x00\xf4\x00\ \x44\x00\xf5\x00\x45\x00\xf6\x00\x46\x00\xf7\x00\x47\x00\xf8\x00\ \x48\x00\xf9\x00\x49\x00\xfa\x00\x4a\x00\xfb\x00\x4b\x00\xfc\x00\ \x4c\x00\xfd\x00\x61\x01\x12\x00\x62\x01\x13\x00\x63\x01\x14\x00\ \x64\x01\x15\x00\x65\x01\x16\x00\x66\x01\x17\x00\x67\x01\x18\x00\ \x68\x01\x19\x00\x7e\x01\x2e\x00\x7f\x01\x2f\x00\x9c\x01\x50\x00\ \x9d\x01\x51\x00\x9e\x01\x52\x00\x9f\x01\x53\x00\xa0\x01\x54\x00\ \xa1\x01\x55\x00\xa2\x01\x56\x00\xa6\x01\x5a\x00\xa7\x01\x5b\x00\ \xa8\x01\x5c\x00\xa9\x01\x5d\x00\xaa\x01\x5e\x00\xcd\x01\x82\x00\ \xce\x01\x83\x00\xd1\x01\x86\x00\xd2\x01\x87\x00\xd3\x01\x88\x00\ \xd4\x01\x89\x00\xd5\x01\x8a\x00\xda\x01\x8f\x00\xdf\x01\x94\x00\ \xe0\x01\x95\x00\xe1\x01\x96\x01\xfc\x01\xfa\x01\xfb\x01\xfd\x01\ \xee\x01\xef\x01\xf2\x01\xf0\x01\xf1\x01\xf3\x02\x0c\x02\x0d\x01\ \xff\x02\x1c\x02\x5f\x02\x26\x02\x27\x02\x64\x02\x82\x02\x7b\x02\ \xae\x02\x97\x02\x9a\x02\xab\x02\xb8\x02\xc6\xb8\x00\x00\x2c\x4b\ \xb8\x00\x09\x50\x58\xb1\x01\x01\x8e\x59\xb8\x01\xff\x85\xb8\x00\ \x44\x1d\xb9\x00\x09\x00\x03\x5f\x5e\x2d\xb8\x00\x01\x2c\x20\x20\ \x45\x69\x44\xb0\x01\x60\x2d\xb8\x00\x02\x2c\xb8\x00\x01\x2a\x21\ \x2d\xb8\x00\x03\x2c\x20\x46\xb0\x03\x25\x46\x52\x58\x23\x59\x20\ \x8a\x20\x8a\x49\x64\x8a\x20\x46\x20\x68\x61\x64\xb0\x04\x25\x46\ \x20\x68\x61\x64\x52\x58\x23\x65\x8a\x59\x2f\x20\xb0\x00\x53\x58\ \x69\x20\xb0\x00\x54\x58\x21\xb0\x40\x59\x1b\x69\x20\xb0\x00\x54\ \x58\x21\xb0\x40\x65\x59\x59\x3a\x2d\xb8\x00\x04\x2c\x20\x46\xb0\ \x04\x25\x46\x52\x58\x23\x8a\x59\x20\x46\x20\x6a\x61\x64\xb0\x04\ \x25\x46\x20\x6a\x61\x64\x52\x58\x23\x8a\x59\x2f\xfd\x2d\xb8\x00\ \x05\x2c\x4b\x20\xb0\x03\x26\x50\x58\x51\x58\xb0\x80\x44\x1b\xb0\ \x40\x44\x59\x1b\x21\x21\x20\x45\xb0\xc0\x50\x58\xb0\xc0\x44\x1b\ \x21\x59\x59\x2d\xb8\x00\x06\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\ \x20\x20\x45\x7d\x69\x18\x44\xb0\x01\x60\x2d\xb8\x00\x07\x2c\xb8\ \x00\x06\x2a\x2d\xb8\x00\x08\x2c\x4b\x20\xb0\x03\x26\x53\x58\xb0\ \x40\x1b\xb0\x00\x59\x8a\x8a\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\ \x80\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\ \x00\xc0\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\ \xb8\x01\x00\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\ \x21\xb8\x01\x40\x8a\x8a\x1b\x8a\x23\x59\x20\xb8\x00\x03\x26\x53\ \x58\xb0\x03\x25\x45\xb8\x01\x80\x50\x58\x23\x21\xb8\x01\x80\x23\ \x21\x1b\xb0\x03\x25\x45\x23\x21\x23\x21\x59\x1b\x21\x59\x44\x2d\ \xb8\x00\x09\x2c\x4b\x53\x58\x45\x44\x1b\x21\x21\x59\x2d\x00\xb0\ \x00\x2b\x00\xb2\x01\x01\x02\x2b\x01\xb2\x02\x01\x02\x2b\x01\xb7\ \x02\x40\x36\x2a\x21\x14\x00\x08\x2b\x00\xb7\x01\x4d\x40\x32\x24\ \x17\x00\x08\x2b\x00\xb2\x03\x07\x07\x2b\xb0\x00\x20\x45\x7d\x69\ \x18\x44\x4b\xb0\x60\x52\x58\xb0\x01\x1b\xb0\x00\x59\xb0\x01\x8e\ \x00\x00\x00\x00\x14\x00\x44\x00\x56\x00\x00\x00\x0c\xff\x33\x00\ \x0c\x01\xe6\x00\x0c\x02\x3e\x00\x0c\x02\x7e\x00\x0c\x02\x90\x00\ \x0c\x02\xc8\x00\x0c\x00\x00\x00\x00\x00\x4c\x00\x4c\x00\x4c\x00\ \x4c\x00\x90\x00\xf4\x01\x44\x01\x82\x01\xc0\x01\xf6\x02\x56\x02\ \x92\x02\xc8\x03\x04\x03\x54\x03\x7a\x03\xd0\x04\x20\x04\x74\x04\ \xbe\x05\x30\x05\x84\x05\xf2\x06\x1e\x06\x60\x06\x98\x06\xf8\x07\ \x54\x07\x92\x07\xc8\x08\x4e\x08\xca\x09\x1a\x09\x92\x09\xf0\x0a\ \x40\x0b\x0e\x0b\x66\x0b\xa4\x0b\xfa\x0c\x4a\x0c\x82\x0d\x06\x0d\ \x5e\x0d\xb2\x0e\x2c\x0e\xa4\x0e\xf0\x0f\x56\x0f\xa6\x0f\xfa\x10\ \x34\x10\xa6\x11\x04\x11\x62\x11\x98\x11\xa4\x11\xb0\x11\xbc\x11\ \xc8\x11\xd4\x11\xe0\x11\xec\x11\xf8\x12\x04\x12\x10\x12\x1c\x12\ \x28\x12\x34\x12\x40\x12\x4c\x12\x5a\x12\x66\x12\x72\x12\x7e\x12\ \x8a\x12\x98\x13\x08\x13\x62\x13\xd4\x13\xe0\x13\xec\x13\xf8\x14\ \x04\x14\x10\x14\x1c\x14\x28\x14\x34\x14\x3c\x14\x48\x14\x54\x14\ \x60\x14\x6c\x14\x78\x14\x84\x14\x90\x14\x9c\x14\xa8\x14\xb4\x14\ \xc0\x14\xcc\x14\xd8\x14\xe4\x14\xf0\x14\xfe\x15\x60\x15\x6c\x15\ \x78\x15\x84\x15\x90\x15\x9c\x15\xa8\x15\xb4\x15\xc0\x15\xcc\x15\ \xd8\x16\x40\x16\x4c\x16\x58\x16\x64\x16\x70\x16\x7c\x16\x88\x16\ \x94\x16\xa0\x16\xac\x16\xb8\x16\xc4\x17\x22\x17\x2e\x17\x3a\x17\ \x46\x17\x52\x17\x5e\x17\x6a\x17\x76\x17\x84\x17\x90\x17\xce\x17\ \xda\x17\xe6\x17\xf2\x17\xfe\x18\x0a\x18\x16\x18\x22\x18\x2e\x18\ \x3a\x18\x46\x18\x52\x18\x5e\x18\x6a\x18\x76\x18\x82\x18\x8e\x18\ \x9a\x18\xa6\x18\xb2\x18\xbe\x18\xca\x18\xd6\x18\xe2\x18\xf0\x19\ \x78\x19\xca\x1a\x3a\x1a\x46\x1a\x52\x1a\x5e\x1a\x6a\x1a\x76\x1a\ \xec\x1a\xf8\x1b\x04\x1b\x10\x1b\x1c\x1b\x2a\x1b\x36\x1b\x42\x1b\ \x4e\x1b\x5a\x1b\x66\x1b\x72\x1b\x7e\x1b\x8a\x1b\xfe\x1c\x0a\x1c\ \x16\x1c\x22\x1c\x2e\x1c\x3a\x1c\x46\x1c\x52\x1c\x5e\x1c\x6a\x1c\ \x76\x1c\x82\x1c\x8e\x1c\x9a\x1c\xa6\x1c\xb2\x1c\xbe\x1c\xca\x1c\ \xd6\x1c\xe2\x1c\xee\x1c\xfa\x1d\x62\x1d\xc4\x1d\xd0\x1d\xdc\x1d\ \xe8\x1d\xf4\x1e\x00\x1e\x0c\x1e\x18\x1e\x24\x1e\x30\x1e\x3c\x1e\ \x48\x1e\x54\x1e\x60\x1e\x6c\x1e\x78\x1e\x84\x1e\x90\x1e\x9c\x1e\ \xa8\x1e\xb4\x1e\xc0\x1f\x10\x1f\x54\x1f\xae\x1f\xba\x1f\xc6\x1f\ \xd2\x1f\xde\x1f\xea\x1f\xf6\x20\x02\x20\x0e\x20\x1a\x20\x26\x20\ \x32\x20\x3e\x20\x4a\x20\x56\x20\x62\x20\x70\x20\x7c\x20\x88\x20\ \x94\x20\xa0\x20\xae\x21\x4e\x22\x06\x22\x96\x22\xa2\x22\xae\x22\ \xba\x22\xc6\x22\xd2\x22\xde\x22\xea\x22\xf6\x23\x8a\x23\x96\x23\ \xa2\x23\xae\x23\xba\x23\xc6\x23\xd2\x23\xde\x23\xea\x23\xf6\x24\ \x02\x24\x0e\x24\x1a\x24\x26\x24\x32\x24\x3e\x24\x4c\x24\xd4\x24\ \xe0\x24\xec\x24\xf8\x25\x04\x25\x10\x25\x1c\x25\x28\x25\x34\x25\ \x40\x25\x4c\x25\xbe\x25\xca\x25\xd6\x25\xe2\x25\xee\x25\xfa\x26\ \x06\x26\x12\x26\x1e\x26\x2a\x26\x36\x26\xa4\x26\xfc\x27\x24\x27\ \x30\x27\x3c\x27\x8c\x27\x98\x27\xa4\x27\xb0\x27\xbc\x27\xc8\x27\ \xd8\x27\xe4\x28\x36\x28\x42\x28\x4e\x28\x5a\x28\x66\x28\x72\x28\ \x7e\x28\x8a\x28\x96\x29\x08\x29\x14\x29\x20\x29\x2c\x29\x38\x29\ \x44\x29\x50\x29\x5c\x29\x68\x29\x74\x29\x80\x29\x8c\x29\x98\x29\ \xa4\x29\xb0\x29\xbc\x29\xca\x2a\x52\x2a\xfa\x2b\x6a\x2b\x76\x2b\ \x82\x2b\x8e\x2b\x9a\x2b\xa6\x2c\x2a\x2c\x36\x2c\x42\x2c\x4e\x2c\ \x5a\x2c\x68\x2c\x74\x2c\x80\x2c\x8c\x2c\x98\x2c\xa4\x2c\xb0\x2c\ \xbc\x2c\xc8\x2d\x44\x2d\x50\x2d\x5c\x2d\x68\x2d\x74\x2d\x80\x2d\ \x8c\x2d\x98\x2d\xa4\x2d\xb0\x2d\xbc\x2d\xc8\x2d\xd4\x2d\xe0\x2d\ \xec\x2d\xf8\x2e\x04\x2e\x10\x2e\x1c\x2e\x28\x2e\x34\x2e\x40\x2e\ \x4c\x2e\xc8\x2f\x30\x2f\x3c\x2f\x48\x2f\x54\x2f\x60\x2f\x6c\x2f\ \x78\x2f\x84\x2f\x90\x2f\x9c\x2f\xa8\x2f\xb4\x2f\xc0\x2f\xcc\x2f\ \xd8\x2f\xe4\x2f\xf0\x2f\xfc\x30\x08\x30\x14\x30\x20\x30\x2c\x30\ \xb8\x31\x32\x31\x72\x31\xf4\x32\x6a\x32\xe4\x33\x32\x33\x90\x33\ \xe8\x34\x74\x34\xca\x35\x4e\x35\x98\x35\xe0\x36\x1c\x36\x88\x36\ \xe4\x37\x30\x37\xaa\x38\x24\x38\x2c\x38\x38\x38\x44\x38\x50\x38\ \x5c\x38\x68\x38\x74\x38\x80\x38\x8c\x38\x98\x38\xa4\x38\xb0\x38\ \xbc\x38\xc8\x38\xd4\x38\xe0\x38\xee\x38\xfa\x39\x06\x39\x12\x39\ \x1e\x39\x2c\x39\xcc\x39\xd4\x39\xe0\x39\xec\x39\xf8\x3a\x04\x3a\ \x10\x3a\x1c\x3a\x28\x3a\xda\x3b\x3c\x3b\x74\x3b\xc6\x3c\x38\x3c\ \x8a\x3c\xf0\x3d\x64\x3d\x9a\x3e\x20\x3e\x94\x3e\xf6\x3f\x2e\x3f\ \x7c\x3f\xe2\x40\x26\x40\x84\x40\x8c\x40\xb8\x40\xc0\x41\x2a\x41\ \x4c\x41\x72\x41\x7e\x41\x8a\x41\xe2\x42\x1a\x42\x48\x42\x9a\x42\ \xea\x43\x00\x43\x0c\x43\x32\x43\x56\x43\x62\x43\x6e\x43\x78\x43\ \x86\x43\x9e\x43\xb6\x43\xc2\x43\xce\x43\xd6\x43\xde\x43\xf2\x44\ \x06\x44\x1a\x44\x22\x44\x2c\x44\x52\x44\x66\x44\x88\x44\xa8\x44\ \xc6\x44\xe4\x45\x46\x45\xa8\x45\xc2\x45\xd6\x45\xf0\x46\x0e\x46\ \x44\x46\x74\x46\xc6\x47\x52\x47\x84\x48\x0c\x48\x8e\x49\x06\x49\ \x5a\x49\xe2\x4a\x58\x4a\xe0\x4b\x56\x4b\x7e\x4b\x92\x4b\x9a\x4c\ \x0a\x4c\x14\x4c\x1e\x4c\x28\x4c\x32\x4c\x3c\x4c\x46\x4c\x50\x4c\ \x5a\x4c\x64\x4c\x6e\x4c\x78\x4c\x82\x4c\x8c\x4c\x96\x4c\xa0\x4c\ \xaa\x4c\xb4\x4c\xbe\x4c\xc8\x4c\xd2\x4c\xdc\x4c\xe6\x4c\xf0\x4c\ \xfa\x4d\x04\x4d\x0e\x4d\x18\x4d\x22\x4d\x5c\x4d\x7e\x4d\xbc\x4e\ \x10\x4e\x4a\x4e\x9a\x4e\xf8\x4f\x26\x4f\x96\x4f\xf0\x50\x10\x50\ \x32\x50\x56\x50\x8a\x50\x94\x50\x9e\x50\xa8\x50\xb2\x50\xbc\x50\ \xc6\x50\xd0\x50\xda\x50\xe4\x50\xee\x50\xf8\x51\x02\x51\x0c\x51\ \x16\x51\x1e\x51\x26\x51\x2e\x51\x82\x51\xde\x52\x18\x52\x74\x52\ \xb8\x52\xfa\x53\x96\x53\xd4\x54\x08\x54\x52\x54\x94\x54\xc8\x55\ \x20\x55\x5e\x55\x9a\x55\xf4\x56\x50\x56\x8a\x56\xe2\x57\x2c\x57\ \x6e\x57\xa4\x58\x08\x58\x5a\x58\xaa\x58\xd8\x59\x2e\x59\x84\x59\ \xc6\x5a\x22\x5a\x92\x5a\xce\x5b\x28\x5b\x92\x5b\xfa\x5c\x5c\x5c\ \xda\x5d\x44\x5d\xa2\x5e\x54\x5e\xe2\x5f\x8c\x5f\xf2\x60\x64\x60\ \xf6\x61\x6e\x61\xe8\x62\x50\x62\xb6\x62\xd2\x62\xda\x62\xe2\x62\ \xf2\x63\x9c\x63\xac\x63\xbc\x63\xcc\x63\xdc\x63\xec\x63\xfc\x64\ \x0c\x64\x1c\x64\x2c\x64\x50\x64\x64\x64\x92\x64\xd2\x64\xdc\x64\ \xe8\x65\x1a\x65\x4c\x65\x90\x65\xd4\x66\x12\x66\x3c\x66\x80\x66\ \xbe\x66\xca\x66\xe0\x67\x3e\x67\xc0\x68\x36\x68\xaa\x68\xee\x69\ \x14\x69\x52\x69\xc6\x6a\x08\x6a\x2c\x6a\xa0\x6b\x0a\x6b\x28\x6b\ \x4c\x6b\x6c\x6b\x90\x6b\xa2\x6b\xb6\x6c\x14\x6c\x34\x6c\x4c\x6c\ \x6c\x6c\x84\x6c\xb2\x6c\xc8\x6c\xec\x6d\x04\x6d\x36\x6d\x62\x6d\ \xc6\x6d\xea\x6e\x32\x6e\x6e\x6e\x82\x6e\x8e\x6e\x96\x6e\x9e\x6e\ \xc4\x6e\xea\x6e\xf2\x6e\xfa\x6f\x02\x6f\x0a\x6f\x24\x6f\x2c\x6f\ \x34\x6f\x3c\x6f\x50\x6f\x58\x6f\x60\x6f\x68\x6f\x70\x6f\x78\x6f\ \x80\x6f\x88\x6f\x90\x6f\x98\x6f\xaa\x6f\xbc\x6f\xd0\x6f\xe4\x70\ \x04\x70\x24\x70\x5c\x70\x98\x70\xac\x70\xc0\x70\xee\x71\x1a\x71\ \x38\x71\x56\x71\x8a\x71\xbe\x71\xe8\x72\x12\x72\x44\x72\x76\x72\ \x98\x72\xba\x72\xd8\x72\xf8\x73\x1a\x73\x3c\x73\x64\x73\x8a\x73\ \xb2\x73\xd0\x74\x04\x74\x30\x74\x5e\x74\x8c\x74\xbc\x74\xf0\x75\ \x16\x75\x2a\x75\x6a\x75\xaa\x75\xe8\x76\x28\x76\x6e\x76\xb4\x76\ \xf4\x77\x34\x77\x5a\x77\x80\x77\xa6\x77\xcc\x78\x08\x78\x42\x78\ \x8e\x78\xdc\x79\x0e\x79\x40\x79\x72\x79\xa4\x79\xec\x7a\x34\x7a\ \x8c\x7a\xe8\x7b\x24\x7b\x5c\x7b\x72\x7b\xa0\x7b\xa0\x7b\xa0\x7b\ \xa0\x7b\xa0\x7b\xb4\x7b\xc8\x7b\xdc\x7b\xee\x7c\x1c\x7c\x4a\x7c\ \x70\x7c\x94\x7c\xd0\x7d\x0a\x7d\x38\x7d\x66\x7d\x7e\x7d\x94\x7d\ \xaa\x7d\xc0\x7d\xd8\x7d\xee\x7e\x06\x7e\x1c\x7e\x34\x7e\x4a\x7e\ \x60\x7e\x76\x7e\x8e\x7e\xa4\x7e\xbc\x7e\xd2\x7e\xec\x7f\x04\x7f\ \x24\x7f\x44\x7f\x5e\x7f\x7c\x7f\x9a\x7f\xb2\x7f\xcc\x7f\xe4\x80\ \x04\x80\x24\x80\x3e\x80\x5e\x80\x7e\x80\x96\x80\xb4\x80\xd4\x80\ \xf4\x81\x10\x81\x2e\x81\x4e\x81\x6e\x81\x8a\x81\xa8\x81\xc8\x81\ \xe8\x82\x04\x82\x22\x82\x42\x82\x62\x82\x7e\x82\xa6\x82\xca\x82\ \xee\x83\x14\x83\x3c\x83\x64\x83\x8c\x83\xb6\x83\xe0\x84\x0a\x84\ \x34\x84\x5a\x84\x80\x84\xa4\x84\xc8\x84\xee\x85\x10\x85\x30\x85\ \x48\x85\x64\x85\x84\x85\xa6\x85\xc8\x85\xec\x86\x10\x86\x32\x86\ \x52\x86\x76\x86\x98\x86\xb8\x86\xdc\x86\xfe\x87\x1e\x87\x42\x87\ \x66\x87\x86\x87\xb0\x87\xd4\x87\xf4\x88\x20\x88\x48\x88\x6e\x88\ \xa2\x88\xca\x88\xf0\x89\x24\x89\x62\x89\x9a\x89\xe0\x8a\x02\x8a\ \x24\x8a\x46\x8a\x68\x8a\x7e\x8a\x94\x8a\xd0\x8a\xe4\x8a\xf8\x8b\ \x0c\x8b\x20\x8b\x34\x8b\x46\x8b\x5a\x8b\x6c\x8b\x86\x8b\x9e\x8b\ \xb8\x8b\xd0\x8b\xe4\x8b\xf6\x8c\x08\x8c\x1a\x8c\x2e\x8c\x42\x8c\ \x56\x8c\x6a\x8c\x7e\x8c\x92\x8c\xa6\x8c\xba\x8c\xce\x8c\xe0\x8c\ \xf2\x8d\x04\x8d\x18\x8d\x52\x8d\xcc\x8e\xc8\x8e\xdc\x8e\xf0\x8f\ \x04\x8f\x18\x8f\x2c\x8f\x42\x8f\x5e\x8f\x74\x8f\x8a\x8f\x9e\x8f\ \xba\x8f\xd0\x00\x05\x00\x3e\x00\x00\x02\x1a\x02\x94\x00\x03\x00\ \x06\x00\x09\x00\x0f\x00\x15\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x0a\x00\ \x01\xf4\xb8\x00\x0c\xdc\xb8\x00\x00\x10\xb9\x00\x12\x00\x01\xf4\ \xb8\x00\x10\xdc\x30\x31\x13\x21\x11\x21\x13\x27\x11\x21\x11\x07\ \x13\x2f\x01\x23\x0f\x01\x13\x3f\x01\x23\x1f\x01\x3e\x01\xdc\xfe\ \x24\xc1\x80\x01\x59\x7f\x52\x49\x34\x04\x36\x4a\x84\x31\x42\xeb\ \x42\x32\x02\x94\xfd\x6c\x01\x54\xe8\xfe\x32\x01\xce\xe8\xfe\xe6\ \x84\x67\x67\x84\x01\x49\x5e\x77\x77\x5e\x00\x00\x02\x00\x20\x00\ \x00\x02\x38\x02\x90\x00\x09\x00\x11\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xbb\x00\ \x0a\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x0e\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x0d\x10\xb8\x00\x11\xd0\x30\x31\x01\x27\x2e\x01\ \x27\x23\x0e\x01\x0f\x01\x17\x23\x07\x23\x13\x33\x13\x23\x01\x8d\ \x1f\x11\x20\x10\x04\x10\x20\x11\x1f\xd9\xee\x3f\x55\xdd\x5e\xdd\ \x58\x01\x0b\x64\x37\x6d\x39\x39\x6d\x37\x64\x43\xc8\x02\x90\xfd\ \x70\x00\x00\x00\x03\x00\x67\x00\x00\x02\x21\x02\x90\x00\x13\x00\ \x1c\x00\x25\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\ \x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x24\x00\x13\x00\x00\x11\ \x12\x39\xb8\x00\x24\x2f\xb9\x00\x1c\x00\x01\xf4\xba\x00\x0a\x00\ \x24\x00\x1c\x11\x12\x39\xb8\x00\x00\x10\xb9\x00\x1b\x00\x01\xf4\ \xb8\x00\x13\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x13\x33\x32\x1e\ \x02\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x0e\x02\x2b\x01\x13\x32\ \x36\x35\x34\x26\x2b\x01\x15\x13\x32\x36\x35\x34\x26\x2b\x01\x15\ \x67\xb4\x32\x53\x3b\x21\x39\x3a\x48\x50\x24\x41\x5b\x37\xc3\xa6\ \x54\x49\x4d\x4c\x56\x63\x55\x5c\x5a\x57\x63\x02\x90\x12\x26\x3d\ \x2b\x31\x4f\x0f\x04\x0b\x4e\x44\x30\x48\x30\x18\x01\x78\x3a\x37\ \x36\x2f\xd6\xfe\xca\x3f\x43\x3d\x39\xf8\x00\x00\x01\x00\x42\xff\ \xf4\x02\x2a\x02\x9c\x00\x21\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\ \x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x0e\ \x02\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\ \x42\x2b\x4e\x6c\x40\x3c\x5a\x1d\x2f\x1a\x40\x2a\x2f\x4d\x36\x1d\ \x1d\x36\x4d\x2f\x2d\x46\x20\x30\x27\x62\x3f\x3e\x69\x4d\x2c\x01\ \x48\x4f\x7e\x58\x2f\x30\x20\x35\x1b\x21\x25\x45\x62\x3d\x3e\x63\ \x46\x26\x26\x23\x33\x2d\x32\x2e\x57\x7f\x00\x00\x02\x00\x55\x00\ \x00\x02\x25\x02\x90\x00\x0a\x00\x13\x00\x39\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\ \x00\x10\xb9\x00\x12\x00\x01\xf4\xb8\x00\x0a\x10\xb9\x00\x13\x00\ \x01\xf4\x30\x31\x13\x33\x32\x16\x15\x14\x0e\x02\x2b\x01\x37\x32\ \x36\x35\x34\x26\x2b\x01\x11\x55\xa0\x95\x9b\x27\x4c\x70\x49\xa4\ \x9b\x70\x6f\x6f\x70\x48\x02\x90\xa8\x9d\x4e\x7b\x55\x2d\x44\x8a\ \x7d\x7d\x84\xfd\xf8\x00\x00\x00\x01\x00\x73\x00\x00\x02\x12\x02\ \x90\x00\x0b\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x07\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x0b\x10\xb9\x00\x08\x00\x01\xf4\ \x30\x31\x13\x21\x15\x21\x15\x21\x15\x21\x15\x21\x15\x21\x73\x01\ \x95\xfe\xbf\x01\x0f\xfe\xf1\x01\x4b\xfe\x61\x02\x90\x46\xce\x47\ \xee\x47\x00\x00\x01\x00\x87\x00\x00\x02\x18\x02\x90\x00\x09\x00\ \x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\ \x00\x03\x3e\x59\xb8\x00\x00\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\ \x07\x00\x09\x00\x00\x11\x12\x39\xb8\x00\x07\x2f\xb9\x00\x04\x00\ \x01\xf4\x30\x31\x13\x21\x15\x21\x15\x21\x15\x21\x11\x23\x87\x01\ \x91\xfe\xc2\x01\x0d\xfe\xf3\x53\x02\x90\x46\xde\x46\xfe\xda\x00\ \x01\x00\x35\xff\xf4\x02\x15\x02\x9c\x00\x27\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\x03\x3e\x59\ \xb8\x00\x05\x10\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x23\x10\xb9\x00\ \x18\x00\x01\xf4\xba\x00\x1d\x00\x23\x00\x05\x11\x12\x39\xb8\x00\ \x1d\x2f\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\ \x36\x37\x35\x23\x35\x33\x11\x0e\x01\x23\x22\x2e\x02\x35\x2b\x4d\ \x6b\x40\x21\x36\x2d\x23\x0e\x2f\x18\x3e\x30\x2e\x4b\x36\x1d\x1b\ \x33\x4c\x30\x23\x3c\x13\x83\xd0\x20\x64\x40\x3e\x68\x4c\x2a\x01\ \x48\x4f\x7f\x57\x2f\x0e\x17\x1c\x0f\x35\x1a\x22\x25\x45\x62\x3d\ \x3e\x63\x46\x26\x15\x12\xab\x45\xfe\xec\x20\x2c\x2e\x57\x7f\x00\ \x01\x00\x4f\x00\x00\x02\x09\x02\x90\x00\x0b\x00\x49\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\ \xba\x00\x09\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x09\x2f\xb9\x00\ \x02\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x0b\x10\ \xb8\x00\x07\xd0\x30\x31\x13\x33\x11\x21\x11\x33\x11\x23\x11\x21\ \x11\x23\x4f\x54\x01\x12\x54\x54\xfe\xee\x54\x02\x90\xfe\xed\x01\ \x13\xfd\x70\x01\x35\xfe\xcb\x00\x01\x00\x5f\x00\x00\x01\xf9\x02\ \x90\x00\x0b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x04\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x06\xd0\xb8\x00\x00\x10\ \xb8\x00\x09\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\x23\x11\x33\ \x15\x21\x5f\xa3\xa3\x01\x9a\xa3\xa3\xfe\x66\x47\x02\x03\x46\x46\ \xfd\xfd\x47\x00\x01\x00\x51\xff\xf4\x01\xed\x02\x91\x00\x13\x00\ \x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\ \x07\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x11\x21\x35\ \x21\x11\x14\x0e\x02\x23\x22\x26\x27\x87\x1d\x48\x26\x47\x41\xfe\ \xed\x01\x66\x16\x33\x53\x3d\x38\x69\x22\x93\x2c\x2a\x4b\x51\x01\ \x72\x46\xfe\x41\x2e\x51\x3c\x23\x34\x39\x00\x00\x01\x00\x62\x00\ \x00\x02\x43\x02\x90\x00\x0c\x00\x6b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\ \x03\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\xb8\x00\ \x0a\xd0\x30\x31\x13\x33\x11\x33\x01\x33\x07\x13\x23\x03\x07\x15\ \x23\x62\x54\x03\x01\x14\x5e\xcf\xe7\x5d\xbe\x72\x54\x02\x90\xfe\ \xb7\x01\x49\xfa\xfe\x6a\x01\x55\x85\xd0\x00\x00\x01\x00\x86\x00\ \x00\x02\x1d\x02\x90\x00\x05\x00\x2b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x02\x00\ \x01\xf4\x30\x31\x13\x33\x11\x21\x15\x21\x86\x52\x01\x45\xfe\x69\ \x02\x90\xfd\xb7\x47\x00\x00\x00\x01\x00\x51\x00\x00\x02\x07\x02\ \x90\x00\x1d\x00\x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x12\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x06\xd0\xb8\x00\x1d\x10\xb8\x00\ \x09\xd0\xb8\x00\x00\x10\xb9\x00\x16\x00\x01\xf4\xb8\x00\x10\xd0\ \x30\x31\x13\x33\x13\x17\x33\x37\x13\x33\x11\x23\x11\x34\x3e\x02\ \x37\x23\x0f\x01\x23\x2f\x01\x23\x1e\x03\x15\x11\x23\x51\x5c\x5d\ \x21\x04\x20\x5c\x5c\x47\x02\x03\x03\x02\x03\x2b\x5a\x2d\x5a\x2c\ \x03\x01\x04\x04\x02\x46\x02\x90\xfe\xe9\x6a\x6a\x01\x17\xfd\x70\ \x01\x71\x14\x36\x37\x35\x14\x8c\xfd\xfd\x8c\x14\x35\x37\x36\x14\ \xfe\x8f\x00\x00\x01\x00\x53\x00\x00\x02\x05\x02\x90\x00\x13\x00\ \x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\ \x00\x03\x3e\x59\xba\x00\x02\x00\x01\x00\x0b\x11\x12\x39\xb9\x00\ \x04\x00\x01\xf4\xb8\x00\x01\x10\xb8\x00\x08\xd0\xba\x00\x0c\x00\ \x0b\x00\x01\x11\x12\x39\xb8\x00\x01\x10\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x0b\x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x13\x17\x33\x2e\ \x01\x35\x11\x33\x11\x23\x03\x27\x23\x1e\x01\x15\x11\x23\x53\x55\ \xd5\x42\x02\x02\x09\x4f\x55\xd5\x42\x02\x02\x09\x4f\x02\x90\xfe\ \x62\x86\x31\x6b\x34\x01\x54\xfd\x70\x01\x9e\x86\x33\x67\x33\xfe\ \xa9\x00\x00\x00\x02\x00\x30\xff\xf4\x02\x28\x02\x9c\x00\x13\x00\ \x27\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\ \x00\x00\x00\x03\x3e\x59\xb9\x00\x14\x00\x01\xf4\xb8\x00\x0a\x10\ \xb9\x00\x1e\x00\x01\xf4\x30\x31\x05\x22\x2e\x02\x35\x34\x3e\x02\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x27\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x2c\x38\x5c\x43\x25\x25\x43\ \x5c\x38\x37\x5d\x43\x25\x25\x43\x5d\x37\x25\x3e\x2b\x18\x18\x2b\ \x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\x0c\x30\x59\x7f\x4f\x4f\x7d\ \x57\x2e\x2f\x57\x7d\x4e\x4f\x7f\x59\x30\x49\x26\x47\x63\x3e\x3d\ \x62\x44\x25\x25\x44\x62\x3d\x3e\x63\x47\x26\x00\x02\x00\x66\x00\ \x00\x02\x21\x02\x90\x00\x0e\x00\x17\x00\x47\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\ \x0c\x00\x0e\x00\x00\x11\x12\x39\xb8\x00\x0c\x2f\xb8\x00\x00\x10\ \xb9\x00\x16\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x17\x00\x01\xf4\ \x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x11\x23\x13\ \x32\x36\x35\x34\x26\x2b\x01\x11\x66\xc9\x36\x5a\x3f\x23\x23\x40\ \x59\x36\x76\x53\xbe\x57\x53\x55\x55\x6b\x02\x90\x14\x2d\x4a\x36\ \x34\x4c\x32\x19\xfe\xfc\x01\x48\x41\x46\x47\x37\xfe\xfb\x00\x00\ \x02\x00\x31\xff\x5d\x02\x29\x02\x9d\x00\x13\x00\x34\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\ \x3e\x59\xbb\x00\x31\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1a\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x24\x10\xb9\x00\x0f\x00\x01\xf4\ \xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x13\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x01\x0e\x01\x23\x22\x26\ \x27\x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\ \x1e\x01\x33\x32\x36\x37\x86\x17\x2b\x3d\x26\x25\x3d\x2b\x17\x17\ \x2b\x3d\x25\x26\x3d\x2b\x17\x01\xa3\x10\x24\x16\x57\x6d\x19\x2f\ \x4d\x37\x1e\x24\x42\x5c\x38\x37\x5c\x42\x24\x1d\x34\x4b\x2d\x11\ \x4a\x33\x0f\x19\x09\x01\x4b\x3d\x64\x47\x27\x27\x47\x64\x3d\x3d\ \x63\x45\x25\x25\x45\x63\xfd\xe3\x06\x08\x58\x43\x08\x37\x57\x76\ \x47\x4f\x7d\x57\x2f\x2f\x57\x7e\x4e\x46\x74\x57\x38\x09\x2a\x2b\ \x06\x04\x00\x00\x02\x00\x64\x00\x00\x02\x29\x02\x90\x00\x08\x00\ \x18\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xba\x00\x0b\x00\x0d\x00\x0e\x11\x12\x39\ \xb8\x00\x0b\x2f\xb9\x00\x00\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\ \x08\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x09\xd0\xb8\x00\x0b\x10\ \xb8\x00\x17\xd0\x30\x31\x13\x33\x32\x36\x35\x34\x26\x2b\x01\x01\ \x03\x23\x11\x23\x11\x33\x32\x1e\x02\x15\x14\x06\x07\x13\xb7\x6d\ \x4d\x51\x51\x4d\x6d\x01\x13\x9e\x75\x53\xcc\x32\x54\x3d\x22\x50\ \x43\xa7\x01\x59\x3f\x40\x41\x34\xfd\xb3\x01\x15\xfe\xeb\x02\x90\ \x13\x2c\x46\x33\x4d\x5c\x11\xfe\xe2\x00\x00\x00\x01\x00\x43\xff\ \xf4\x02\x19\x02\x9c\x00\x33\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x16\x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x06\x00\x30\x00\x16\x11\x12\x39\xb8\x00\x16\x10\ \xb9\x00\x1d\x00\x01\xf4\xba\x00\x20\x00\x16\x00\x30\x11\x12\x39\ \x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x2e\x03\ \x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\ \x1e\x02\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x75\x25\ \x62\x36\x46\x4c\x12\x20\x2b\x19\x5e\x19\x32\x29\x1a\x20\x39\x4f\ \x2f\x3e\x68\x24\x2c\x20\x4d\x31\x3c\x46\x15\x21\x2a\x15\x5c\x1e\ \x35\x27\x17\x20\x3c\x56\x36\x48\x79\x2d\x8f\x25\x2d\x3b\x30\x19\ \x23\x19\x14\x0b\x29\x0a\x1c\x28\x37\x24\x25\x40\x2f\x1a\x2d\x24\ \x36\x1d\x21\x33\x2d\x18\x21\x19\x12\x09\x28\x0c\x1f\x29\x37\x24\ \x27\x44\x33\x1d\x34\x2d\x00\x00\x01\x00\x2a\x00\x00\x02\x2e\x02\ \x90\x00\x07\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\ \xb9\x00\x02\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x02\x10\xb9\x00\x01\x00\ \x01\xf4\xb8\x00\x05\xd0\x30\x31\x01\x23\x35\x21\x15\x23\x11\x23\ \x01\x02\xd8\x02\x04\xd8\x54\x02\x4a\x46\x46\xfd\xb6\x00\x00\x00\ \x01\x00\x4f\xff\xf4\x02\x09\x02\x90\x00\x19\x00\x33\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\ \xb9\x00\x07\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x0d\xd0\x30\x31\ \x13\x33\x11\x14\x1e\x02\x33\x32\x3e\x02\x35\x11\x33\x11\x14\x0e\ \x02\x23\x22\x2e\x02\x35\x4f\x54\x15\x25\x32\x1e\x1e\x32\x26\x15\ \x51\x21\x3a\x51\x30\x30\x52\x3b\x21\x02\x90\xfe\x66\x33\x47\x2b\ \x14\x14\x2b\x47\x33\x01\x9a\xfe\x68\x47\x62\x3f\x1c\x1c\x3f\x62\ \x47\x00\x00\x00\x01\x00\x2b\x00\x00\x02\x2d\x02\x90\x00\x0f\x00\ \x33\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\ \x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x0c\xd0\x30\x31\x13\x33\x13\x1e\x01\x17\x33\x3e\x03\x37\x13\x33\ \x03\x23\x2b\x58\x6a\x11\x1c\x12\x04\x09\x10\x0f\x0f\x08\x69\x55\ \xd0\x61\x02\x90\xfe\x9e\x3b\x64\x3a\x1d\x35\x34\x36\x1d\x01\x62\ \xfd\x70\x00\x00\x01\x00\x0a\x00\x00\x02\x4e\x02\x91\x00\x21\x00\ \x4d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\ \x00\x03\x3e\x59\xbb\x00\x1c\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\ \x20\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x01\x10\ \xb8\x00\x14\xd0\xb8\x00\x20\x10\xb8\x00\x17\xd0\x30\x31\x13\x33\ \x13\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x03\x2e\x01\x27\x23\x0e\x01\x07\x03\x23\ \x0a\x53\x35\x02\x09\x03\x03\x0b\x15\x0a\x45\x3b\x45\x09\x15\x0b\ \x04\x03\x08\x03\x32\x4f\x61\x5c\x4b\x07\x0c\x05\x03\x06\x0c\x08\ \x48\x5a\x02\x91\xfe\x64\x2a\x4f\x29\x29\x50\x29\xf2\xf2\x28\x51\ \x29\x29\x50\x29\x01\x9c\xfd\x6f\x01\x13\x1d\x3c\x1d\x1d\x3c\x1d\ \xfe\xed\x00\x00\x01\x00\x36\x00\x00\x02\x22\x02\x90\x00\x19\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\ \x00\x03\x3e\x59\xba\x00\x00\x00\x18\x00\x02\x11\x12\x39\xba\x00\ \x06\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x0b\xd0\ \xba\x00\x0d\x00\x18\x00\x02\x11\x12\x39\xb8\x00\x18\x10\xb8\x00\ \x0f\xd0\xba\x00\x14\x00\x18\x00\x02\x11\x12\x39\x30\x31\x13\x03\ \x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x13\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x0f\x01\x23\xfa\xb7\x5c\x5c\x0d\x18\x10\x04\ \x0e\x15\x0c\x5a\x58\xb7\xc4\x5c\x63\x0e\x1b\x11\x04\x0e\x1a\x0d\ \x62\x58\x01\x53\x01\x3d\xa8\x17\x2b\x1d\x1d\x2b\x17\xa8\xfe\xbf\ \xfe\xb1\xb1\x18\x33\x1e\x1e\x33\x18\xb1\x00\x00\x01\x00\x26\x00\ \x00\x02\x32\x02\x90\x00\x0f\x00\x40\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x0d\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xba\x00\x07\ \x00\x0e\x00\x01\x11\x12\x39\x30\x31\x25\x03\x33\x17\x1e\x01\x17\ \x33\x3e\x01\x3f\x01\x33\x03\x15\x23\x01\x02\xdc\x58\x63\x13\x24\ \x14\x04\x14\x26\x13\x5f\x56\xdc\x54\xea\x01\xa6\xc3\x26\x4b\x28\ \x28\x4c\x26\xc2\xfe\x5a\xea\x00\x01\x00\x41\x00\x00\x02\x1b\x02\ \x91\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x41\x01\x6f\xfe\ \xb1\x01\xb5\xfe\x90\x01\x75\xfe\x26\x32\x02\x19\x46\x32\xfd\xe8\ \x47\x00\x00\x00\x02\x00\x51\xff\xf4\x02\x03\x01\xf2\x00\x21\x00\ \x2f\x00\x80\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\ \x13\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\ \x00\x1d\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\ \xb9\x00\x17\x00\x03\x3e\x59\xba\x00\x05\x00\x13\x00\x17\x11\x12\ \x39\xb8\x00\x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\x00\x01\xf4\xb8\ \x00\x1d\x10\xb9\x00\x27\x00\x01\xf4\xba\x00\x0d\x00\x0a\x00\x27\ \x11\x12\x39\xba\x00\x19\x00\x17\x00\x13\x11\x12\x39\xb8\x00\x19\ \x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x2b\x00\x01\ \xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x03\x23\x22\x06\x07\x27\x3e\ \x03\x33\x32\x16\x15\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x1e\x02\x33\x32\x36\x37\x35\x0e\x03\x51\x27\x55\x86\x5e\x01\ \x0e\x1e\x31\x23\x30\x58\x22\x20\x12\x31\x37\x3e\x20\x64\x61\x43\ \x07\x03\x29\x63\x34\x22\x3c\x2d\x1a\x50\x12\x1d\x27\x15\x2a\x51\ \x2a\x4e\x69\x3f\x1a\x7e\x29\x3d\x2c\x1c\x08\x19\x2c\x21\x14\x25\ \x15\x38\x0c\x19\x14\x0d\x6d\x5b\xfe\xd6\x42\x20\x2e\x13\x23\x33\ \x27\x15\x1d\x13\x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\x00\x00\ \x02\x00\x5d\xff\xf4\x02\x1c\x02\xc8\x00\x16\x00\x27\x00\x83\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xba\x00\x03\x00\x06\x00\x10\x11\x12\x39\xba\x00\ \x14\x00\x10\x00\x06\x11\x12\x39\xb8\x00\x14\x10\xb9\x00\x17\x00\ \x01\xf4\xb8\x00\x10\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x06\x10\ \xb9\x00\x24\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x27\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x23\x07\x23\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x06\x07\x5d\x52\x02\x23\x57\x2b\x31\x4c\x33\x1a\ \x24\x3d\x50\x2b\x23\x51\x23\x03\x07\x42\x52\x23\x47\x1a\x20\x36\ \x28\x16\x10\x21\x34\x24\x20\x49\x26\x02\xc8\xc2\x5e\x22\x28\x23\ \x41\x5b\x38\x3e\x62\x44\x23\x23\x1f\x36\x72\x1f\x1a\x1b\x31\x48\ \x2d\x28\x42\x2f\x1a\x23\x26\x00\x01\x00\x50\xff\xf4\x02\x1b\x01\ \xf2\x00\x21\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xb8\x00\x05\x10\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\ \x02\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x50\x2b\x4a\x63\ \x37\x3c\x57\x1e\x29\x1e\x41\x26\x2a\x46\x31\x1c\x1b\x31\x45\x2a\ \x2d\x4b\x1f\x24\x28\x63\x36\x39\x61\x48\x28\xf2\x3d\x5f\x42\x22\ \x2a\x1d\x35\x1a\x1e\x1b\x32\x45\x2a\x2a\x44\x31\x1b\x23\x1a\x35\ \x24\x28\x22\x41\x5f\x00\x00\x00\x02\x00\x3c\xff\xf4\x01\xfb\x02\ \xc8\x00\x16\x00\x24\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0a\x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xba\x00\x08\x00\ \x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\ \x1c\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1d\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x16\x17\x27\x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x37\ \x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x3c\x25\x3d\x50\ \x2b\x2d\x44\x22\x03\x52\x44\x07\x03\x1e\x53\x2d\x30\x4d\x38\x1e\ \x55\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\xf2\x3b\x5f\x42\ \x24\x22\x1d\x5a\xbb\xfd\x38\x40\x1f\x2d\x22\x41\x5e\x3e\x58\x62\ \x49\xf2\x1f\x1a\x1b\x31\x44\x00\x02\x00\x45\xff\xf4\x02\x19\x01\ \xf2\x00\x1e\x00\x27\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\ \x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xbb\x00\x27\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x1a\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x06\x07\x21\x1e\x03\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x25\x34\x26\x23\x22\x0e\x02\x07\x45\x2a\x45\x59\ \x2f\x34\x52\x39\x1e\x01\x02\xfe\x84\x01\x1d\x31\x43\x28\x2b\x47\ \x22\x1d\x24\x5c\x3b\x36\x5f\x47\x29\x01\x88\x4c\x44\x1e\x37\x2c\ \x1e\x05\xf2\x3c\x5f\x42\x23\x21\x3c\x54\x33\x0d\x19\x09\x27\x3e\ \x2c\x18\x18\x15\x36\x17\x22\x23\x41\x5e\x64\x49\x4e\x14\x27\x38\ \x24\x00\x00\x00\x01\x00\x67\x00\x00\x02\x42\x02\xd4\x00\x16\x00\ \x56\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\ \x0c\x00\x03\x3e\x59\xb8\x00\x14\x10\xb9\x00\x03\x00\x01\xf4\xb8\ \x00\x10\x10\xb8\x00\x07\xd0\xb8\x00\x10\x10\xb9\x00\x0d\x00\x01\ \xf4\xb8\x00\x0a\xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x1d\x01\x33\ \x15\x23\x11\x23\x11\x23\x35\x37\x35\x34\x36\x33\x32\x17\x02\x2f\ \x1e\x33\x20\x42\x39\xcc\xcc\x51\x8b\x8b\x5f\x65\x48\x44\x02\x7a\ \x0e\x09\x43\x3c\x2c\x43\xfe\x5d\x01\xa3\x3e\x05\x29\x59\x6c\x1c\ \x00\x00\x00\x00\x03\x00\x48\xff\x20\x02\x36\x01\xf2\x00\x11\x00\ \x45\x00\x55\x00\xb2\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\ \xb9\x00\x25\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x28\x2f\ \x1b\xb9\x00\x28\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\ \x2f\x1b\xb9\x00\x27\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x43\x2f\x1b\xb9\x00\x43\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x43\x10\xb9\ \x00\x03\x00\x01\xf4\xb8\x00\x0c\x10\xb8\x00\x0f\xd0\xb8\x00\x15\ \xd0\xb8\x00\x0c\x10\xb9\x00\x3a\x00\x01\xf4\xb8\x00\x32\xdc\xb9\ \x00\x46\x00\x01\xf4\xba\x00\x35\x00\x46\x00\x32\x11\x12\x39\xb8\ \x00\x35\x10\xb8\x00\x1c\xd0\xb8\x00\x28\x10\xb9\x00\x29\x00\x01\ \xf4\xb8\x00\x27\x10\xb9\x00\x2a\x00\x01\xf4\xb8\x00\x25\x10\xb9\ \x00\x4e\x00\x01\xf4\x30\x31\x17\x14\x16\x33\x32\x3e\x02\x35\x34\ \x26\x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x36\x37\x35\x2e\x01\x35\ \x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x33\x15\x23\ \x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\x06\x15\x14\x16\x3b\x01\ \x32\x16\x15\x14\x0e\x02\x23\x22\x26\x13\x32\x36\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x15\x14\x16\x8f\x51\x4e\x2a\x44\x30\x19\x37\x38\ \x5f\x15\x25\x10\x23\x1b\x47\x29\x27\x14\x1e\x1e\x1c\x19\x23\x1f\ \x34\x45\x27\x28\x20\xc9\x82\x11\x1c\x1d\x33\x45\x27\x13\x2b\x14\ \x26\x35\x30\x6d\x5e\x5b\x26\x46\x64\x3e\x6b\x75\xdb\x2f\x41\x12\ \x1e\x29\x17\x17\x29\x1e\x12\x42\x51\x26\x30\x11\x1c\x24\x13\x23\ \x18\x03\x05\x13\x29\x1d\x1d\x38\x17\x04\x0b\x26\x1f\x17\x31\x13\ \x04\x13\x3f\x2c\x28\x40\x2d\x19\x0c\x3f\x12\x34\x20\x27\x3e\x2b\ \x17\x09\x09\x18\x20\x1d\x1b\x34\x3e\x22\x3e\x2e\x1c\x46\x01\x6b\ \x3e\x35\x19\x2a\x1e\x11\x11\x1e\x2a\x19\x35\x3e\x00\x00\x00\x00\ \x01\x00\x5d\x00\x00\x02\x0b\x02\xc8\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\ \x3e\x59\xba\x00\x03\x00\x06\x00\x0b\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x0e\x02\x07\x11\x23\x5d\x52\x04\x27\x58\x39\x57\x51\ \x52\x34\x3c\x16\x25\x24\x26\x15\x52\x02\xc8\xc2\x73\x29\x36\x63\ \x61\xfe\xd2\x01\x23\x45\x43\x0b\x16\x21\x16\xfe\xad\x00\x00\x00\ \x02\x00\x5a\x00\x00\x01\x9e\x02\xc9\x00\x05\x00\x11\x00\x3b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\ \x3e\x59\xb8\x00\x00\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x06\xdc\xb8\x00\x0c\xdc\x30\x31\x13\x21\x11\x23\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x5a\x01\x34\x52\ \xe2\x01\x02\x1d\x25\x25\x1d\x1c\x26\x26\x01\xe6\xfe\x1a\x01\xa3\ \xa7\x22\x1d\x1d\x23\x23\x1d\x1d\x22\x00\x00\x00\x02\x00\x37\xff\ \x27\x01\x9e\x02\xc9\x00\x15\x00\x21\x00\x41\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x00\x10\xb8\x00\x16\xdc\xb8\x00\x1c\xdc\x30\x31\x13\x21\x11\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x11\x23\ \x25\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x5a\x01\x34\x14\ \x2f\x4e\x3b\x26\x48\x1d\x1b\x1a\x39\x1c\x24\x30\x1c\x0b\xe2\x01\ \x02\x1d\x25\x25\x1d\x1c\x26\x26\x01\xe6\xfe\x0e\x2d\x4b\x37\x1e\ \x13\x0e\x3d\x0d\x0e\x12\x22\x31\x1f\x01\xb5\xa7\x22\x1d\x1d\x23\ \x23\x1d\x1d\x22\x00\x00\x00\x00\x01\x00\x6a\x00\x00\x02\x3e\x02\ \xc8\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\ \xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\ \x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\ \x2f\x1b\xb9\x00\x0c\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xba\x00\x02\x00\x00\x00\ \x0c\x11\x12\x39\xba\x00\x09\x00\x00\x00\x08\x11\x12\x39\xb8\x00\ \x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\x0a\x00\x01\xf4\ \x30\x31\x13\x33\x11\x33\x01\x33\x07\x13\x23\x27\x07\x15\x23\x6a\ \x52\x04\x01\x06\x5e\xc2\xdc\x5c\xb3\x73\x52\x02\xc8\xfe\x1e\x01\ \x00\xc1\xfe\xdb\xf3\x6f\x84\x00\x01\x00\x51\xff\xf4\x02\x19\x02\ \xc8\x00\x10\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\xb8\x00\ \x00\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\ \x32\x37\x17\x0e\x01\x23\x22\x26\x35\x11\x23\x51\xf8\x33\x2c\x28\ \x34\x15\x21\x3a\x28\x4e\x51\xa6\x02\xc8\xfd\xd5\x36\x2f\x17\x3e\ \x0c\x11\x58\x57\x01\xe2\x00\x00\x01\x00\x3c\x00\x00\x02\x2c\x01\ \xf2\x00\x20\x00\xa3\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xba\x00\x02\x00\ \x20\x00\x00\x11\x12\x39\xb8\x00\x02\x10\xb8\x00\x08\xd0\xb8\x00\ \x0b\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x16\x00\ \x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\x02\x10\ \xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\ \x17\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\x23\x22\x06\x07\x11\ \x23\x11\x34\x23\x22\x06\x07\x11\x23\x3c\x40\x07\x03\x12\x31\x2a\ \x4a\x12\x16\x34\x29\x33\x37\x4f\x35\x1a\x26\x13\x42\x37\x1a\x24\ \x13\x4f\x01\xe6\x40\x22\x2a\x54\x26\x2e\x4d\x49\xfe\xa4\x01\x55\ \x56\x25\x26\xfe\xa0\x01\x55\x56\x25\x26\xfe\xa0\x00\x00\x00\x00\ \x01\x00\x5d\x00\x00\x02\x0b\x01\xf2\x00\x16\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\ \x3e\x59\xba\x00\x02\x00\x06\x00\x16\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x14\x00\x01\xf4\ \x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\ \x26\x23\x22\x0e\x02\x07\x11\x23\x5d\x44\x07\x04\x26\x58\x39\x57\ \x51\x52\x34\x3c\x16\x25\x24\x26\x15\x52\x01\xe6\x53\x29\x36\x63\ \x61\xfe\xd2\x01\x23\x45\x43\x0b\x16\x21\x16\xfe\xad\x00\x00\x00\ \x02\x00\x3c\xff\xf4\x02\x1c\x01\xf2\x00\x13\x00\x27\x00\x35\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x22\x0e\x02\x3c\x27\x42\x57\x30\x30\x57\x42\x27\x27\x42\x57\ \x30\x30\x57\x42\x27\x55\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\ \x39\x23\x23\x39\x29\x16\xf2\x3d\x5f\x42\x22\x22\x42\x5f\x3d\x3c\ \x5f\x41\x22\x22\x41\x5f\x3c\x2a\x44\x31\x1b\x1b\x31\x44\x2a\x2a\ \x45\x32\x1b\x1b\x32\x45\x00\x00\x02\x00\x5d\xff\x33\x02\x1c\x01\ \xf2\x00\x16\x00\x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\ \x2f\x1b\xb9\x00\x09\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x03\x2f\x1b\xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x05\x3e\x59\xba\x00\x05\x00\ \x09\x00\x13\x11\x12\x39\xba\x00\x16\x00\x13\x00\x09\x11\x12\x39\ \xb8\x00\x16\x10\xb9\x00\x17\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\ \x1a\x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x22\x00\x01\xf4\xb8\x00\ \x05\x10\xb9\x00\x25\x00\x01\xf4\x30\x31\x17\x15\x23\x11\x33\x17\ \x33\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x37\ \x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x23\x22\x06\x07\xaf\x52\x44\ \x07\x03\x22\x59\x2d\x31\x4b\x33\x1a\x24\x3d\x50\x2c\x22\x4f\x21\ \x02\x23\x46\x19\x42\x54\x10\x21\x34\x24\x20\x49\x26\x29\xa4\x02\ \xb3\x3e\x20\x2a\x23\x41\x5b\x39\x3e\x61\x44\x23\x21\x1e\x3f\x1f\ \x1a\x66\x5b\x28\x42\x2f\x1a\x23\x26\x00\x00\x00\x02\x00\x3c\xff\ \x33\x01\xfb\x01\xf2\x00\x16\x00\x24\x00\x83\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x05\x3e\x59\ \xba\x00\x08\x00\x05\x00\x12\x11\x12\x39\xba\x00\x0f\x00\x12\x00\ \x05\x11\x12\x39\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\ \x0f\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x1d\x00\ \x01\xf4\xb8\x00\x05\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x37\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\x23\ \x22\x2e\x02\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\ \x3c\x25\x3d\x50\x2b\x2d\x46\x23\x03\x07\x42\x52\x04\x20\x51\x2d\ \x30\x4d\x38\x1e\x55\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\ \xf2\x3b\x5f\x42\x24\x22\x20\x36\xfd\x4d\xb3\x58\x1f\x2b\x22\x41\ \x5e\x3e\x58\x62\x49\xf2\x1f\x1a\x1b\x31\x44\x00\x01\x00\x92\x00\ \x00\x02\x19\x01\xf2\x00\x12\x00\x54\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xba\x00\x02\ \x00\x11\x00\x00\x11\x12\x39\xb8\x00\x06\x10\xb9\x00\x0d\x00\x01\ \xf4\xb8\x00\x02\x10\xb9\x00\x10\x00\x01\xf4\x30\x31\x13\x33\x17\ \x33\x3e\x01\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x07\x11\x23\ \x92\x44\x07\x03\x26\x6f\x44\x1b\x2e\x17\x13\x1a\x23\x1d\x37\x65\ \x2c\x52\x01\xe6\x73\x3b\x44\x09\x0b\x47\x09\x08\x3f\x4c\xfe\xe3\ \x00\x00\x00\x00\x01\x00\x48\xff\xf4\x02\x0e\x01\xf2\x00\x2d\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2a\x2f\x1b\xb9\x00\x2a\ \x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x2a\x00\ \x13\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xba\x00\ \x1f\x00\x13\x00\x2a\x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x27\x2e\x03\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\ \x01\x23\x22\x0e\x02\x15\x14\x16\x17\x1e\x01\x15\x14\x0e\x02\x23\ \x22\x26\x27\x70\x29\x5e\x42\x42\x40\x45\x59\x26\x43\x32\x1e\x1a\ \x33\x4d\x32\x37\x68\x24\x28\x20\x4e\x2d\x22\x2e\x1c\x0c\x52\x42\ \x63\x5f\x1c\x37\x51\x34\x48\x79\x2d\x76\x1e\x24\x2c\x20\x1c\x2c\ \x16\x09\x1a\x23\x2a\x1a\x1d\x33\x25\x15\x25\x19\x35\x17\x1c\x0b\ \x13\x1a\x0e\x1e\x27\x11\x19\x40\x38\x1e\x34\x28\x17\x2d\x1f\x00\ \x01\x00\x45\xff\xf4\x02\x22\x02\x6e\x00\x1b\x00\x4d\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\ \x03\x10\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x16\x10\xb9\x00\x0f\x00\x01\xf4\x30\x31\x13\x23\x35\x3f\x01\x33\ \x15\x33\x15\x23\x15\x14\x1e\x02\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\x35\xce\x89\x8c\x0b\x44\xef\xef\x0c\x1c\x30\x23\x23\ \x38\x1a\x12\x21\x50\x28\x35\x48\x2b\x13\x01\xa3\x3e\x05\x88\x88\ \x43\xe7\x21\x31\x22\x11\x0c\x0a\x3c\x0c\x11\x1d\x35\x4a\x2d\x00\ \x01\x00\x4d\xff\xf4\x01\xf9\x01\xe6\x00\x14\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\ \x3e\x59\xba\x00\x02\x00\x06\x00\x13\x11\x12\x39\xb8\x00\x06\x10\ \xb9\x00\x0f\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x12\x00\x01\xf4\ \x30\x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x01\xf9\x43\x07\x04\x25\x57\x39\x58\ \x51\x53\x33\x3d\x2a\x44\x29\x52\x55\x2b\x36\x63\x61\x01\x2e\xfe\ \xdd\x45\x43\x2b\x2f\x01\x51\x00\x01\x00\x33\x00\x00\x02\x25\x01\ \xe6\x00\x0d\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\ \x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xb9\x00\x05\x00\x01\xf4\x30\ \x31\x13\x33\x13\x1e\x01\x17\x33\x3e\x01\x37\x13\x33\x03\x23\x33\ \x53\x70\x0f\x1b\x0d\x04\x0d\x19\x0f\x70\x4f\xc9\x5c\x01\xe6\xfe\ \xec\x25\x47\x23\x23\x47\x25\x01\x14\xfe\x1a\x00\x01\x00\x08\x00\ \x00\x02\x50\x01\xe6\x00\x21\x00\x74\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xba\ \x00\x06\x00\x00\x00\x21\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x0f\ \xd0\xba\x00\x1c\x00\x00\x00\x17\x11\x12\x39\x30\x31\x13\x33\x13\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\x1e\x01\x17\x33\x3e\x01\ \x37\x13\x33\x03\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x08\ \x54\x3b\x07\x0c\x05\x04\x07\x0e\x08\x3b\x46\x3c\x08\x0e\x08\x04\ \x07\x0b\x06\x3b\x4e\x6a\x63\x3a\x07\x0c\x08\x04\x06\x0c\x09\x38\ \x62\x01\xe6\xfe\xe7\x23\x42\x22\x22\x43\x22\xfc\xfc\x23\x42\x22\ \x22\x42\x23\x01\x19\xfe\x1a\xf6\x23\x45\x25\x20\x44\x2a\xf5\x00\ \x01\x00\x40\x00\x00\x02\x17\x01\xe6\x00\x19\x00\x65\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\ \x3e\x59\xba\x00\x13\x00\x01\x00\x19\x11\x12\x39\xb8\x00\x13\x10\ \xb8\x00\x00\xd0\xb8\x00\x13\x10\xb8\x00\x0d\xd0\xb8\x00\x07\xd0\ \x30\x31\x37\x27\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\ \x17\x23\x27\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\xf9\xab\x5b\x4d\ \x0d\x1d\x0f\x04\x0e\x1c\x0d\x49\x57\xad\xba\x5a\x55\x0f\x21\x10\ \x04\x0f\x1e\x0f\x50\x58\xfc\xea\x6b\x14\x2a\x14\x14\x2c\x14\x69\ \xf1\xf5\x70\x15\x2e\x15\x16\x2b\x17\x70\x00\x00\x01\x00\x31\xff\ \x2f\x02\x27\x01\xe6\x00\x1c\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x08\x2f\x1b\xb9\x00\x08\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\ \x19\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x0e\x00\x08\x00\x07\x11\ \x12\x39\x30\x31\x17\x1e\x01\x33\x32\x36\x3f\x01\x03\x33\x13\x1e\ \x01\x17\x33\x3e\x01\x37\x13\x33\x03\x0e\x03\x23\x22\x27\x37\x54\ \x0a\x17\x0b\x33\x40\x12\x0f\xe3\x53\x77\x0e\x1f\x0f\x04\x0d\x1b\ \x0c\x6a\x4e\xd6\x0e\x24\x32\x41\x29\x24\x1c\x11\x86\x03\x04\x3b\ \x2d\x24\x01\xe7\xfe\xf3\x20\x4a\x23\x23\x49\x21\x01\x0d\xfd\xf2\ \x24\x3e\x2d\x1a\x0a\x41\x00\x00\x01\x00\x47\x00\x00\x02\x14\x01\ \xe6\x00\x09\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\ \x1b\xb9\x00\x08\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\x00\x01\xf4\xb8\x00\x05\xd0\ \x30\x31\x37\x01\x21\x35\x21\x15\x01\x21\x15\x21\x47\x01\x4d\xfe\ \xd8\x01\x9e\xfe\xb2\x01\x58\xfe\x33\x2c\x01\x77\x43\x2c\xfe\x89\ \x43\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x32\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x33\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x2d\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x12\x02\x26\x00\x04\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x6b\x02\x26\x00\x04\x00\x00\x00\x06\x02\xf2\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x32\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x20\xff\ \x1e\x02\x38\x02\x90\x02\x26\x00\x04\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x68\x02\x26\x00\ \x04\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x71\x02\x26\x00\x04\x00\x00\x00\x06\x03\x0e\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\x71\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x20\x00\ \x00\x02\x38\x03\x8a\x02\x26\x00\x04\x00\x00\x00\x06\x03\x12\x00\ \x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\xaa\x02\x26\x00\ \x04\x00\x00\x00\x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x20\xff\ \x1e\x02\x38\x03\x32\x02\x26\x00\x04\x00\x00\x00\x26\x02\xe4\x00\ \x00\x00\x06\x02\xfc\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\ \x8b\x02\x26\x00\x04\x00\x00\x00\x06\x03\x16\x00\x00\x00\x00\xff\ \xff\x00\x20\x00\x00\x02\x38\x03\x8b\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x18\x00\x00\x00\x00\xff\xff\x00\x20\x00\x00\x02\x38\x03\ \xb8\x02\x26\x00\x04\x00\x00\x00\x06\x03\x1a\x00\x00\x00\x00\xff\ \xff\x00\x20\x00\x00\x02\x38\x03\xab\x02\x26\x00\x04\x00\x00\x00\ \x06\x03\x1c\x00\x00\x00\x00\xff\xff\x00\x20\xff\x1e\x02\x38\x03\ \x32\x02\x26\x00\x04\x00\x00\x00\x26\x02\xea\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x02\x00\x20\xff\x2c\x02\x57\x02\x90\x00\x09\x00\ \x25\x00\x65\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\ \x1b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\ \x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\ \xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\ \x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0d\x00\ \x04\x2b\xbb\x00\x00\x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1b\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x01\x27\x2e\x01\x27\x23\x0e\x01\ \x0f\x01\x01\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x27\x23\ \x07\x23\x13\x33\x13\x0e\x01\x15\x14\x16\x33\x32\x37\x01\x8d\x1f\ \x11\x20\x10\x04\x10\x20\x11\x1f\x01\x8e\x0e\x2e\x14\x28\x37\x0e\ \x15\x1b\x0d\x13\x3e\xee\x3f\x55\xdd\x5e\xdd\x23\x2d\x1d\x11\x17\ \x13\x01\x0b\x64\x37\x6d\x39\x39\x6d\x37\x64\xfe\x3d\x0b\x11\x2c\ \x2b\x14\x26\x20\x1a\x09\xc8\xc8\x02\x90\xfd\x70\x0e\x3d\x20\x17\ \x17\x0e\x00\x00\x02\xff\xff\x00\x00\x02\x4f\x02\x90\x00\x06\x00\ \x16\x00\x66\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\ \x00\x08\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x0a\x00\x04\ \x2b\xbb\x00\x13\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\x0e\x10\xb9\ \x00\x01\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\x07\x00\x01\xf4\xb8\ \x00\x01\x10\xb8\x00\x11\xd0\x30\x31\x01\x11\x23\x0e\x01\x0f\x01\ \x05\x15\x21\x35\x23\x07\x23\x01\x21\x15\x23\x15\x33\x15\x23\x15\ \x01\x3d\x03\x14\x2b\x14\x2e\x01\x96\xfe\xee\x9e\x49\x57\x01\x04\ \x01\x43\xbd\x93\x93\x01\x02\x01\x4c\x36\x69\x36\x77\xbb\x47\xbf\ \xbf\x02\x90\x46\xcd\x47\xef\x00\x03\x00\x1b\x00\x00\x02\x29\x02\ \x90\x00\x0c\x00\x15\x00\x2d\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x08\xd0\xb8\x00\x07\xd0\xb8\x00\ \x0d\xd0\xb8\x00\x25\x10\xb9\x00\x14\x00\x01\xf4\xba\x00\x16\x00\ \x0d\x00\x07\x11\x12\x39\xb8\x00\x0b\x10\xb8\x00\x21\xd0\xb8\x00\ \x08\x10\xb8\x00\x23\xd0\xb8\x00\x22\xd0\x30\x31\x25\x32\x36\x35\ \x34\x26\x2b\x01\x15\x33\x15\x23\x15\x11\x33\x32\x36\x35\x34\x26\ \x2b\x01\x17\x1e\x01\x15\x14\x0e\x02\x2b\x01\x35\x23\x35\x37\x11\ \x33\x32\x1e\x02\x15\x14\x06\x07\x01\x26\x55\x5e\x5c\x57\x6b\x8f\ \x8f\x5a\x54\x4a\x4e\x4c\x5e\xd6\x48\x50\x24\x41\x5b\x37\xca\x4d\ \x4d\xbb\x32\x53\x3b\x21\x38\x3b\x3f\x43\x46\x41\x3c\x65\x2f\x72\ \x01\x3d\x38\x38\x36\x30\xee\x0b\x50\x45\x32\x49\x31\x18\xb1\x2a\ \x05\x01\xb0\x12\x26\x3c\x2a\x30\x4b\x0f\x00\xff\xff\x00\x42\xff\ \x2b\x02\x2a\x02\x9c\x02\x26\x00\x06\x00\x00\x00\x06\x03\x00\x2f\ \x00\x00\x00\xff\xff\x00\x42\xff\xf4\x02\x2a\x03\x32\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xe2\x2f\x00\x00\x00\xff\xff\x00\x42\xff\ \xf4\x02\x2a\x03\x32\x02\x26\x00\x06\x00\x00\x00\x06\x02\xe4\x2f\ \x00\x00\x00\xff\xff\x00\x42\xff\xf4\x02\x2a\x03\x32\x02\x26\x00\ \x06\x00\x00\x00\x06\x02\xf6\x2f\x00\x00\x00\xff\xff\x00\x42\xff\ \xf4\x02\x2a\x03\x35\x02\x26\x00\x06\x00\x00\x00\x06\x02\xec\x2f\ \x00\x00\x00\xff\xff\x00\x55\x00\x00\x02\x25\x03\x32\x02\x26\x00\ \x07\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x55\xff\ \x1e\x02\x25\x02\x90\x02\x26\x00\x07\x00\x00\x00\x06\x02\xfc\xf7\ \x00\x00\x00\xff\xff\x00\x55\xff\x55\x02\x25\x02\x90\x02\x26\x00\ \x07\x00\x00\x00\x06\x03\x04\xf7\x00\x00\x00\xff\xff\x00\x10\x00\ \x00\x02\x2b\x02\x90\x02\x06\x00\xe6\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe0\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe2\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe4\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf6\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x2d\x02\x26\x00\x08\x00\x00\x00\x06\x02\xee\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x12\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xe8\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x32\x02\x26\x00\x08\x00\x00\x00\x06\x02\xea\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x35\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xec\x1f\x00\x00\x00\xff\xff\x00\x73\xff\ \x1e\x02\x12\x02\x90\x02\x26\x00\x08\x00\x00\x00\x06\x02\xfc\x20\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x12\x03\x68\x02\x26\x00\ \x08\x00\x00\x00\x06\x02\xf0\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x33\x02\x26\x00\x08\x00\x00\x00\x06\x02\xe6\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x35\x03\x71\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x0e\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\x71\x02\x26\x00\x08\x00\x00\x00\x06\x03\x10\x1f\ \x00\x00\x00\xff\xff\x00\x73\x00\x00\x02\x1a\x03\x8a\x02\x26\x00\ \x08\x00\x00\x00\x06\x03\x12\x1f\x00\x00\x00\xff\xff\x00\x73\x00\ \x00\x02\x12\x03\xaa\x02\x26\x00\x08\x00\x00\x00\x06\x03\x14\x1f\ \x00\x00\x00\xff\xff\x00\x73\xff\x1e\x02\x12\x03\x32\x02\x26\x00\ \x08\x00\x00\x00\x26\x02\xe4\x1f\x00\x00\x06\x02\xfc\x20\x00\x00\ \x01\x00\x73\xff\x2c\x02\x21\x02\x90\x00\x21\x00\x5e\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\ \x59\xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\x05\x00\x01\ \x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x02\x00\x01\xf4\xb8\ \x00\x20\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x13\x21\x15\x21\x15\ \x21\x15\x21\x15\x21\x15\x23\x0e\x03\x15\x14\x16\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x21\x73\x01\x95\xfe\xbf\ \x01\x0f\xfe\xf1\x01\x4b\x04\x11\x21\x19\x10\x1d\x12\x0c\x13\x0a\ \x16\x0e\x2e\x14\x27\x38\x2f\x1c\xfe\xb6\x02\x90\x46\xce\x47\xee\ \x47\x02\x13\x1d\x25\x14\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x2a\ \x41\x12\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x32\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xe4\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \xf4\x02\x15\x03\x32\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xea\x1f\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x35\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xec\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \x28\x02\x15\x02\x9c\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xfe\x23\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x32\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xf6\x1f\x00\x00\x00\xff\xff\x00\x35\xff\ \xf4\x02\x15\x03\x12\x02\x26\x00\x0a\x00\x00\x00\x06\x02\xe8\x1f\ \x00\x00\x00\xff\xff\x00\x35\xff\xf4\x02\x15\x03\x33\x02\x26\x00\ \x0a\x00\x00\x00\x06\x02\xe6\x1f\x00\x00\x00\xff\xff\x00\x4f\x00\ \x00\x02\x09\x03\x32\x02\x26\x00\x0b\x00\x00\x00\x06\x02\xe4\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\x1e\x02\x09\x02\x90\x02\x26\x00\ \x0b\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \x32\x02\x09\x02\x90\x02\x26\x00\x0b\x00\x00\x00\x06\x03\x03\x00\ \x00\x00\x00\x00\x02\x00\x0a\x00\x00\x02\x4e\x02\x90\x00\x03\x00\ \x17\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\ \x10\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x14\x10\xb8\x00\x13\xdc\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xdc\xb8\x00\x00\x10\xb8\x00\ \x05\xd0\xb8\x00\x03\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x00\x10\ \xb8\x00\x0c\xd0\xb8\x00\x13\x10\xb8\x00\x0f\xd0\xb8\x00\x13\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x21\x15\x21\x37\x23\x11\x23\x11\x21\ \x11\x23\x11\x23\x35\x37\x35\x33\x15\x21\x35\x33\x15\x33\x01\xb5\ \xfe\xee\x01\x12\x99\x45\x54\xfe\xee\x54\x45\x45\x54\x01\x12\x54\ \x45\x01\xec\x6f\x6f\xfe\x14\x01\x35\xfe\xcb\x01\xec\x2a\x05\x75\ \x75\x75\x75\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x32\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x33\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x2d\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x12\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xe8\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x35\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xec\x00\ \x00\x00\x00\xff\xff\x00\x5f\x00\x00\x01\xf9\x03\x32\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x5f\x00\ \x00\x01\xf9\x03\x68\x02\x26\x00\x0c\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x5f\xff\x1e\x01\xf9\x02\x90\x02\x26\x00\ \x0c\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\x01\x00\x5f\xff\ \x2c\x01\xf9\x02\x90\x00\x1e\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x11\ \x00\x01\x00\x17\x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x00\x00\x01\ \xf4\xb8\x00\x04\x10\xb9\x00\x02\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x00\x10\xb8\x00\x08\xd0\x30\x31\x37\x33\x11\x23\x35\x21\x15\ \x23\x11\x33\x15\x23\x0e\x01\x15\x14\x16\x33\x32\x37\x17\x0e\x01\ \x23\x22\x26\x35\x34\x36\x37\x23\x5f\xa3\xa3\x01\x9a\xa3\xa3\xa3\ \x20\x22\x1e\x12\x17\x11\x17\x0e\x2e\x14\x28\x37\x2a\x18\xb7\x47\ \x02\x03\x46\x46\xfd\xfd\x47\x18\x34\x1f\x17\x17\x0e\x2d\x0b\x11\ \x2c\x2b\x2b\x3c\x16\x00\x00\xff\xff\x00\x51\xff\xf4\x01\xed\x03\ \x32\x02\x26\x00\x0d\x00\x00\x00\x06\x02\xe4\x15\x00\x00\x00\xff\ \xff\x00\x62\xff\x28\x02\x43\x02\x90\x02\x26\x00\x0e\x00\x00\x00\ \x06\x02\xfe\x26\x00\x00\x00\xff\xff\x00\x86\x00\x00\x02\x1d\x03\ \x32\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xe2\x93\x00\x00\x00\xff\ \xff\x00\x86\x00\x00\x02\x1d\x02\xd7\x02\x26\x00\x0f\x00\x00\x00\ \x06\x03\x1f\x7c\xdf\x00\x00\xff\xff\x00\x86\xff\x28\x02\x1d\x02\ \x90\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xfe\x2e\x00\x00\x00\xff\ \xff\x00\x86\x00\x00\x02\x1d\x02\x90\x02\x26\x00\x0f\x00\x00\x00\ \x07\x02\xeb\x00\x82\xfe\xd3\xff\xff\x00\x86\xff\x1e\x02\x1d\x02\ \x90\x02\x26\x00\x0f\x00\x00\x00\x06\x02\xfc\x2e\x00\x00\x00\xff\ \xff\x00\x43\xff\x1e\x02\x1d\x03\x12\x02\x26\x00\x0f\x00\x00\x00\ \x26\x02\xe8\x93\x00\x00\x06\x02\xfc\x2e\x00\xff\xff\x00\x86\xff\ \x55\x02\x1d\x02\x90\x02\x26\x00\x0f\x00\x00\x00\x06\x03\x04\x2e\ \x00\x00\x00\x00\x01\x00\x35\x00\x00\x02\x1d\x02\x90\x00\x0d\x00\ \x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\ \x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x03\x00\x01\x00\ \x07\x11\x12\x39\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x03\x10\ \xb8\x00\x0c\xd0\xb8\x00\x09\xd0\x30\x31\x25\x15\x21\x35\x07\x35\ \x37\x11\x33\x11\x37\x15\x07\x15\x02\x1d\xfe\x69\x51\x51\x52\xe2\ \xe2\x47\x47\xe3\x2b\x43\x2c\x01\x69\xfe\xbf\x78\x44\x78\xc4\xff\ \xff\x00\x51\xff\x1e\x02\x07\x02\x90\x02\x26\x00\x10\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x32\x02\x26\x00\x11\x00\x00\x00\x06\x02\xe2\x06\x00\x00\x00\xff\ \xff\x00\x53\x00\x00\x02\x05\x03\x32\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xf6\x06\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x33\x02\x26\x00\x11\x00\x00\x00\x06\x02\xe6\x06\x00\x00\x00\xff\ \xff\x00\x53\xff\x28\x02\x05\x02\x90\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xfe\x00\x00\x00\x00\xff\xff\x00\x53\x00\x00\x02\x05\x03\ \x35\x02\x26\x00\x11\x00\x00\x00\x06\x02\xec\x06\x00\x00\x00\xff\ \xff\x00\x53\xff\x1e\x02\x05\x02\x90\x02\x26\x00\x11\x00\x00\x00\ \x06\x02\xfc\x00\x00\x00\x00\xff\xff\x00\x53\xff\x55\x02\x05\x02\ \x90\x02\x26\x00\x11\x00\x00\x00\x06\x03\x04\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x33\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x2d\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xee\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x12\x02\x26\x00\x12\x00\x00\x00\x06\x02\xe8\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xea\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x32\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x28\x02\ \x9c\x02\x26\x00\x12\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x68\x02\x26\x00\x12\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x71\x02\x26\x00\x12\x00\x00\x00\x06\x03\x0e\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\x71\x02\x26\x00\x12\x00\x00\x00\ \x06\x03\x10\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x28\x03\ \x8a\x02\x26\x00\x12\x00\x00\x00\x06\x03\x12\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x28\x03\xaa\x02\x26\x00\x12\x00\x00\x00\ \x06\x03\x14\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x28\x03\ \x32\x02\x26\x00\x12\x00\x00\x00\x26\x02\xe4\x00\x00\x00\x06\x02\ \xfc\x00\x00\x00\x03\x00\x2d\xff\xe2\x02\x2c\x02\xae\x00\x0a\x00\ \x15\x00\x2f\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\x00\x2b\x2f\x1b\ \xb9\x00\x2b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1e\x2f\ \x1b\xb9\x00\x1e\x00\x03\x3e\x59\xba\x00\x15\x00\x1e\x00\x2b\x11\ \x12\x39\xb8\x00\x15\x10\xb8\x00\x00\xd0\xb8\x00\x1e\x10\xb9\x00\ \x03\x00\x01\xf4\xba\x00\x0a\x00\x1e\x00\x2b\x11\x12\x39\xb8\x00\ \x0a\x10\xb8\x00\x0b\xd0\xb8\x00\x2b\x10\xb9\x00\x0e\x00\x01\xf4\ \xb8\x00\x0a\x10\xb8\x00\x16\xd0\xb8\x00\x00\x10\xb8\x00\x20\xd0\ \xb8\x00\x15\x10\xb8\x00\x23\xd0\xb8\x00\x0b\x10\xb8\x00\x2d\xd0\ \x30\x31\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2f\x01\x2e\x01\x23\ \x22\x0e\x02\x15\x14\x17\x01\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\ \x07\x27\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x17\x37\x17\xc0\x15\ \x37\x20\x25\x3e\x2b\x18\x19\x1f\x15\x38\x21\x26\x3d\x2b\x18\x1b\ \x01\x4c\x1d\x1e\x25\x43\x5d\x37\x5a\x40\x35\x30\x3f\x1d\x1f\x25\ \x43\x5c\x38\x5c\x3f\x36\x2f\x74\x1a\x1d\x26\x47\x63\x3e\x59\x40\ \x38\x1a\x1d\x25\x44\x62\x3d\x5f\x40\x01\x85\x2b\x73\x48\x4f\x7f\ \x59\x30\x3d\x4f\x20\x5d\x2d\x76\x49\x4f\x7d\x57\x2e\x3d\x4f\x20\ \x00\x00\x00\x00\x02\x00\x21\x00\x00\x02\x4f\x02\x91\x00\x12\x00\ \x1b\x00\x4f\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\ \x03\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x09\x00\x04\x2b\ \xb8\x00\x03\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0d\x10\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x16\xd0\xb8\x00\x06\x10\xb8\x00\x18\xd0\ \x30\x31\x13\x34\x36\x33\x21\x15\x23\x15\x33\x15\x23\x15\x33\x15\ \x21\x22\x2e\x02\x37\x14\x16\x3b\x01\x11\x23\x22\x06\x21\x8d\x7d\ \x01\x1a\xc2\x94\x94\xcc\xfe\xd9\x3e\x61\x44\x24\x56\x54\x56\x15\ \x15\x56\x54\x01\x4b\x9e\xa8\x46\xcf\x47\xee\x47\x2d\x55\x7b\x4e\ \x7e\x89\x02\x08\x83\x00\x00\x00\x02\x00\x30\xff\xf4\x02\x32\x03\ \x05\x00\x13\x00\x34\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x2c\ \x2f\x1b\xb9\x00\x2c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x0a\x00\x01\xf4\xba\x00\x1a\x00\x22\x00\ \x2c\x11\x12\x39\xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x25\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x1e\ \x01\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x17\x3e\x01\x35\x34\x26\x27\x01\x2c\x25\x3e\ \x2b\x18\x18\x2b\x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\x01\x15\x0b\ \x0c\x39\x2d\x2c\x30\x25\x43\x5d\x37\x38\x5c\x43\x25\x25\x43\x5c\ \x38\x3f\x35\x27\x28\x08\x07\x3d\x26\x47\x63\x3e\x3d\x62\x44\x25\ \x25\x44\x62\x3d\x3e\x63\x47\x26\x02\xc8\x0e\x20\x13\x2d\x32\x0b\ \x2b\x89\x5b\x4f\x7f\x59\x30\x30\x59\x7f\x4f\x4f\x7d\x57\x2e\x1f\ \x06\x1e\x1e\x0b\x14\x0a\x00\xff\xff\x00\x30\xff\xf4\x02\x32\x03\ \x32\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xe2\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x32\x03\x32\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x30\xff\xf4\x02\x32\x03\ \x68\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\ \xff\x00\x30\xff\xf4\x02\x32\x03\x33\x02\x26\x00\xa5\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x30\xff\x1e\x02\x32\x03\ \x05\x02\x26\x00\xa5\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\x00\ \x02\x00\x30\xff\x2c\x02\x28\x02\x9c\x00\x25\x00\x39\x00\x4b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\ \x3e\x59\xbb\x00\x23\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x1b\xd0\xb8\x00\x09\x10\xb9\x00\x26\x00\x01\xf4\xb8\x00\ \x13\x10\xb9\x00\x30\x00\x01\xf4\x30\x31\x05\x0e\x01\x23\x22\x26\ \x35\x34\x36\x37\x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x06\x07\x0e\x03\x15\x14\x16\x33\x32\x37\x27\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x9a\x0f\x2d\x14\x28\ \x38\x24\x1a\x41\x5d\x3d\x1d\x25\x43\x5c\x38\x37\x5d\x43\x25\x60\ \x4f\x14\x1e\x13\x09\x1e\x11\x16\x13\x57\x25\x3e\x2b\x18\x18\x2b\ \x3e\x25\x26\x3d\x2b\x18\x18\x2b\x3d\xb8\x0b\x11\x2c\x2b\x21\x3b\ \x16\x02\x3a\x5f\x7a\x41\x4f\x7d\x57\x2e\x2f\x57\x7d\x4e\x85\xa4\ \x22\x09\x19\x1d\x1f\x0d\x17\x17\x0e\xc8\x26\x47\x63\x3e\x3d\x62\ \x44\x25\x25\x44\x62\x3d\x3e\x63\x47\x26\x00\xff\xff\x00\x64\x00\ \x00\x02\x29\x03\x32\x02\x26\x00\x15\x00\x00\x00\x06\x02\xe2\x05\ \x00\x00\x00\xff\xff\x00\x64\x00\x00\x02\x29\x03\x32\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xf6\x05\x00\x00\x00\xff\xff\x00\x64\xff\ \x28\x02\x29\x02\x90\x02\x26\x00\x15\x00\x00\x00\x06\x02\xfe\x14\ \x00\x00\x00\xff\xff\x00\x64\xff\x1e\x02\x29\x02\x90\x02\x26\x00\ \x15\x00\x00\x00\x06\x02\xfc\x14\x00\x00\x00\xff\xff\x00\x64\xff\ \x1e\x02\x29\x03\x12\x02\x26\x00\x15\x00\x00\x00\x26\x02\xe8\x05\ \x00\x00\x06\x02\xfc\x14\x00\xff\xff\x00\x64\xff\x55\x02\x29\x02\ \x90\x02\x26\x00\x15\x00\x00\x00\x06\x03\x04\x14\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x19\x03\x32\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xe2\x0b\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x19\x03\ \x32\x02\x26\x00\x16\x00\x00\x00\x06\x02\xe4\x0b\x00\x00\x00\xff\ \xff\x00\x43\xff\xf4\x02\x19\x03\x32\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xf6\x0b\x00\x00\x00\xff\xff\x00\x43\xff\x2b\x02\x19\x02\ \x9c\x02\x26\x00\x16\x00\x00\x00\x06\x03\x00\x0d\x00\x00\x00\xff\ \xff\x00\x43\xff\x28\x02\x19\x02\x9c\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xfe\x0a\x00\x00\x00\xff\xff\x00\x43\xff\xf4\x02\x19\x03\ \x35\x02\x26\x00\x16\x00\x00\x00\x06\x02\xec\x0b\x00\x00\x00\xff\ \xff\x00\x43\xff\x1e\x02\x19\x02\x9c\x02\x26\x00\x16\x00\x00\x00\ \x06\x02\xfc\x0a\x00\x00\x00\x00\x01\x00\x4f\xff\xf4\x02\x33\x02\ \x9c\x00\x2a\x00\x68\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\ \xb9\x00\x05\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x29\x2f\ \x1b\xb9\x00\x29\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\ \x2f\x1b\xb9\x00\x11\x00\x03\x3e\x59\xbb\x00\x21\x00\x01\x00\x20\ \x00\x04\x2b\xba\x00\x09\x00\x21\x00\x20\x11\x12\x39\xb8\x00\x11\ \x10\xb9\x00\x18\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x25\x00\x01\ \xf4\xba\x00\x1b\x00\x25\x00\x11\x11\x12\x39\x30\x31\x13\x34\x3e\ \x02\x33\x32\x16\x17\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x26\x27\ \x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x2f\x01\x37\x2e\x01\x23\ \x22\x06\x15\x11\x23\x4f\x1c\x39\x58\x3b\x4e\x62\x17\x75\x58\x52\ \x18\x2d\x3f\x28\x34\x53\x1b\x30\x19\x33\x1e\x2c\x30\x0f\x26\x3f\ \x31\x05\x76\x0e\x39\x2c\x44\x4c\x55\x01\xb0\x32\x57\x3f\x24\x54\ \x46\x98\x15\x62\x48\x27\x43\x31\x1c\x28\x21\x35\x1d\x1b\x3f\x32\ \x17\x2a\x24\x1c\x0a\x36\x99\x22\x30\x59\x5e\xfe\x60\x00\x00\xff\ \xff\x00\x2a\x00\x00\x02\x2e\x03\x32\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x2a\xff\x2b\x02\x2e\x02\ \x90\x02\x26\x00\x17\x00\x00\x00\x06\x03\x00\x00\x00\x00\x00\xff\ \xff\x00\x2a\xff\x28\x02\x2e\x02\x90\x02\x26\x00\x17\x00\x00\x00\ \x06\x02\xfe\x01\x00\x00\x00\xff\xff\x00\x2a\xff\x1e\x02\x2e\x02\ \x90\x02\x26\x00\x17\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\xff\ \xff\x00\x2a\xff\x55\x02\x2e\x02\x90\x02\x26\x00\x17\x00\x00\x00\ \x06\x03\x04\x01\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x32\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe2\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x33\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x2d\x02\x26\x00\x18\x00\x00\x00\x06\x02\xee\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x12\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xe8\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xea\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x6b\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf2\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x32\x02\x26\x00\x18\x00\x00\x00\x06\x02\xf4\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x32\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \x8b\x02\x26\x00\x18\x00\x00\x00\x06\x03\x06\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\xb6\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x08\x00\x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x09\x03\ \xb6\x02\x26\x00\x18\x00\x00\x00\x06\x03\x0a\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\xb6\x02\x26\x00\x18\x00\x00\x00\ \x06\x03\x0c\x00\x00\x00\x00\xff\xff\x00\x4f\xff\x1e\x02\x09\x02\ \x90\x02\x26\x00\x18\x00\x00\x00\x06\x02\xfc\x00\x00\x00\x00\xff\ \xff\x00\x4f\xff\xf4\x02\x09\x03\x68\x02\x26\x00\x18\x00\x00\x00\ \x06\x02\xf0\x00\x00\x00\x00\x00\x01\x00\x4f\xff\x2c\x02\x09\x02\ \x90\x00\x2a\x00\x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\ \x1b\xb9\x00\x0d\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x27\ \x2f\x1b\xb9\x00\x27\x00\x03\x3e\x59\xbb\x00\x18\x00\x01\x00\x1f\ \x00\x04\x2b\xb8\x00\x27\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x27\ \x10\xb8\x00\x12\xd0\x30\x31\x13\x33\x11\x14\x1e\x02\x33\x32\x3e\ \x02\x35\x11\x33\x11\x14\x06\x07\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x2e\x01\x35\x4f\ \x54\x15\x24\x32\x1e\x1e\x33\x25\x16\x51\x45\x37\x35\x30\x1d\x12\ \x0c\x13\x0a\x16\x0e\x2d\x14\x28\x38\x0d\x14\x17\x09\x6e\x6b\x02\ \x90\xfe\x66\x33\x47\x2b\x14\x14\x2b\x47\x33\x01\x9a\xfe\x68\x66\ \x74\x19\x18\x3d\x1b\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x15\x21\ \x1c\x17\x09\x02\x84\x7d\x00\x00\x01\x00\x4f\xff\xf4\x02\x76\x03\ \x19\x00\x28\x00\x4a\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\ \xb9\x00\x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0e\ \x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x0e\x10\xb9\x00\x1b\x00\x01\xf4\x30\x31\x01\ \x1e\x01\x15\x14\x0e\x02\x07\x11\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x11\x33\x11\x14\x1e\x02\x33\x32\x3e\x02\x35\x11\x33\x3e\x01\x35\ \x34\x26\x27\x02\x5f\x0b\x0c\x12\x1e\x27\x16\x21\x3a\x51\x30\x30\ \x52\x3b\x21\x54\x15\x25\x32\x1e\x1e\x32\x26\x15\x23\x28\x30\x08\ \x07\x03\x19\x0e\x20\x13\x19\x24\x1a\x10\x05\xfe\x8c\x47\x62\x3f\ \x1c\x1c\x3f\x62\x47\x01\x98\xfe\x66\x33\x47\x2b\x14\x14\x2b\x47\ \x33\x01\x9a\x05\x1b\x23\x0b\x14\x0a\x00\x00\xff\xff\x00\x4f\xff\ \xf4\x02\x76\x03\x32\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x76\x03\x32\x02\x26\x00\ \xd0\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \xf4\x02\x76\x03\x68\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xf0\x00\ \x00\x00\x00\xff\xff\x00\x4f\xff\xf4\x02\x76\x03\x33\x02\x26\x00\ \xd0\x00\x00\x00\x06\x02\xe6\x00\x00\x00\x00\xff\xff\x00\x4f\xff\ \x1e\x02\x76\x03\x19\x02\x26\x00\xd0\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x4e\x03\x32\x02\x26\x00\ \x1a\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x0a\x00\ \x00\x02\x4e\x03\x32\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x4e\x03\x32\x02\x26\x00\ \x1a\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x0a\x00\ \x00\x02\x4e\x03\x2d\x02\x26\x00\x1a\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x32\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xe0\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x32\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe2\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x32\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xe4\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x2d\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xee\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x35\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xec\x00\x00\x00\x00\xff\xff\x00\x26\xff\ \x1e\x02\x32\x02\x90\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xfc\x00\ \x00\x00\x00\xff\xff\x00\x26\x00\x00\x02\x32\x03\x68\x02\x26\x00\ \x1c\x00\x00\x00\x06\x02\xf0\x00\x00\x00\x00\xff\xff\x00\x26\x00\ \x00\x02\x32\x03\x33\x02\x26\x00\x1c\x00\x00\x00\x06\x02\xe6\x00\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x1b\x03\x32\x02\x26\x00\ \x1d\x00\x00\x00\x06\x02\xe2\x0f\x00\x00\x00\xff\xff\x00\x41\x00\ \x00\x02\x1b\x03\x32\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xf6\x0f\ \x00\x00\x00\xff\xff\x00\x41\x00\x00\x02\x1b\x03\x35\x02\x26\x00\ \x1d\x00\x00\x00\x06\x02\xec\x0f\x00\x00\x00\xff\xff\x00\x41\xff\ \x1e\x02\x1b\x02\x91\x02\x26\x00\x1d\x00\x00\x00\x06\x02\xfc\x0b\ \x00\x00\x00\x00\x02\x00\x10\x00\x00\x02\x2b\x02\x90\x00\x0c\x00\ \x19\x00\x53\x00\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\ \x04\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\ \x00\x0b\x00\x03\x3e\x59\xbb\x00\x03\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0b\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x04\x10\xb9\x00\ \x13\x00\x01\xf4\xb8\x00\x03\x10\xb8\x00\x15\xd0\xb8\x00\x00\x10\ \xb8\x00\x17\xd0\x30\x31\x13\x23\x35\x37\x11\x33\x32\x16\x15\x14\ \x06\x2b\x01\x37\x32\x36\x35\x34\x26\x2b\x01\x15\x33\x15\x23\x15\ \x5b\x4b\x4b\xa1\x94\x9b\x9b\x91\xa4\x9b\x70\x6f\x6f\x70\x48\x8f\ \x8f\x01\x41\x2a\x05\x01\x20\xa8\x9d\x9d\xae\x44\x8a\x7d\x7d\x84\ \xdc\x2f\xfd\x00\x02\x00\x65\x00\x00\x02\x21\x02\x90\x00\x10\x00\ \x19\x00\x39\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\ \x00\x0f\x00\x03\x3e\x59\xbb\x00\x11\x00\x01\x00\x0d\x00\x04\x2b\ \xbb\x00\x03\x00\x01\x00\x17\x00\x04\x2b\x30\x31\x13\x33\x15\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\x23\x37\x32\x36\x35\x34\ \x26\x2b\x01\x11\x65\x54\x76\x36\x5a\x3f\x23\x23\x40\x59\x36\x76\ \x54\xbf\x57\x53\x55\x55\x6b\x02\x90\x6e\x14\x2e\x49\x36\x34\x4d\ \x32\x18\x96\xda\x40\x47\x47\x36\xfe\xfc\x00\x00\x02\x00\x3e\xff\ \xf4\x02\x26\x02\x9c\x00\x06\x00\x23\x00\x43\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xbb\x00\ \x1d\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x14\x10\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x0a\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x1e\ \x01\x33\x32\x36\x37\x01\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x2e\x02\x35\x34\x36\x37\x21\x2e\x01\x23\x22\x06\x07\x93\ \x07\x52\x42\x44\x57\x08\xfe\xb2\x1f\x56\x3a\x39\x5a\x3f\x22\x24\ \x41\x5c\x37\x37\x59\x3e\x22\x01\x01\x01\x93\x03\x54\x50\x29\x41\ \x19\x01\x1b\x6a\x76\x78\x69\x01\x37\x20\x29\x2f\x57\x7d\x4f\x4f\ \x7e\x59\x30\x30\x59\x7c\x4c\x05\x0c\x05\x76\x84\x21\x1a\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xdf\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xd1\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe1\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe3\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xb0\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe5\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xba\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xed\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \x92\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xe7\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xc5\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xe9\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x02\ \xd7\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xf1\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd1\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xf5\x0e\x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x01\ \xf2\x02\x26\x00\x1e\x00\x00\x00\x06\x02\xfc\x03\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xd7\x02\x26\x00\x1e\x00\x00\x00\ \x06\x02\xef\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x22\x02\ \xf2\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x0d\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x02\xf2\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x0f\x0e\x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x0b\x03\ \x10\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x11\x0e\x00\x00\x00\xff\ \xff\x00\x51\xff\xf4\x02\x03\x03\x22\x02\x26\x00\x1e\x00\x00\x00\ \x06\x03\x13\x0e\x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x02\ \xd1\x02\x26\x00\x1e\x00\x00\x00\x26\x02\xe3\x0e\x00\x00\x06\x02\ \xfc\x03\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x03\x15\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x15\x0e\x00\x00\x00\xff\xff\x00\x51\xff\ \xf4\x02\x03\x03\x15\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x17\x0e\ \x00\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x03\x03\x47\x02\x26\x00\ \x1e\x00\x00\x00\x06\x03\x19\x0e\x00\x00\x00\xff\xff\x00\x51\xff\ \xf4\x02\x03\x03\x22\x02\x26\x00\x1e\x00\x00\x00\x06\x03\x1b\x0e\ \x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x03\x02\xc5\x02\x26\x00\ \x1e\x00\x00\x00\x26\x02\xe9\x0e\x00\x00\x06\x02\xfc\x03\x00\x00\ \x02\x00\x51\xff\x32\x02\x19\x01\xf2\x00\x34\x00\x42\x00\x85\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\ \x00\x05\x3e\x59\xba\x00\x05\x00\x13\x00\x30\x11\x12\x39\xb8\x00\ \x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x23\x10\ \xb9\x00\x1d\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x2b\xd0\xb8\x00\ \x30\x10\xb9\x00\x3a\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x3e\x00\ \x01\xf4\x30\x31\x37\x34\x3e\x02\x37\x2e\x03\x23\x22\x06\x07\x27\ \x3e\x03\x33\x32\x16\x15\x11\x0e\x01\x15\x14\x16\x33\x32\x37\x17\ \x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x27\x23\x0e\x01\x23\x22\ \x2e\x02\x37\x14\x1e\x02\x33\x32\x36\x37\x35\x0e\x03\x51\x27\x55\ \x86\x5e\x01\x0e\x1e\x31\x23\x30\x58\x22\x20\x12\x31\x37\x3e\x20\ \x64\x61\x2a\x2c\x1c\x12\x16\x12\x16\x0e\x2e\x13\x26\x34\x0e\x17\ \x1c\x0f\x07\x03\x29\x63\x34\x22\x3c\x2d\x1a\x50\x12\x1d\x27\x15\ \x2a\x51\x2a\x4e\x69\x3f\x1a\x7e\x29\x3d\x2c\x1c\x08\x19\x2c\x21\ \x14\x25\x15\x38\x0c\x19\x14\x0d\x6d\x5b\xfe\xd6\x11\x3b\x1d\x17\ \x17\x0d\x29\x0b\x10\x2b\x2a\x14\x25\x20\x1b\x09\x3e\x20\x2e\x13\ \x23\x33\x27\x15\x1d\x13\x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\ \x03\x00\x11\xff\xf4\x02\x55\x01\xf2\x00\x2e\x00\x37\x00\x44\x00\ \xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\ \x26\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2c\x2f\x1b\xb9\ \x00\x2c\x00\x03\x3e\x59\xbb\x00\x2f\x00\x01\x00\x1b\x00\x04\x2b\ \xba\x00\x03\x00\x0d\x00\x2c\x11\x12\x39\xb8\x00\x03\x2f\xb8\x00\ \x0d\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x10\x00\x26\x00\x0d\x11\ \x12\x39\xb8\x00\x26\x10\xb9\x00\x1f\x00\x01\xf4\xba\x00\x29\x00\ \x26\x00\x0d\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x34\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x3b\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\ \x42\x00\x01\xf4\x30\x31\x37\x34\x36\x37\x2e\x01\x23\x22\x06\x07\ \x27\x3e\x01\x33\x32\x16\x17\x3e\x01\x33\x32\x1e\x02\x15\x14\x06\ \x07\x21\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x27\x0e\ \x01\x23\x22\x26\x25\x34\x2e\x02\x23\x22\x06\x0f\x01\x14\x16\x33\ \x32\x36\x37\x2e\x01\x2f\x01\x0e\x01\x11\x7c\x7c\x01\x27\x2f\x1a\ \x41\x17\x1f\x1e\x50\x2d\x30\x3b\x0e\x18\x45\x30\x25\x37\x25\x12\ \x02\x02\xfe\xfe\x03\x3c\x3b\x1c\x2f\x15\x1d\x19\x41\x26\x35\x48\ \x18\x29\x4f\x26\x3c\x46\x01\xff\x08\x14\x21\x18\x2f\x39\x05\xf1\ \x28\x22\x1a\x3e\x1a\x08\x07\x01\x01\x5c\x4f\x81\x49\x57\x13\x36\ \x45\x19\x10\x38\x14\x20\x38\x2a\x2f\x33\x24\x3d\x50\x2d\x0e\x1a\ \x0d\x4c\x5d\x12\x0d\x36\x11\x1a\x30\x2b\x2d\x2e\x4b\xd7\x1f\x38\ \x2b\x19\x52\x49\x91\x27\x28\x24\x23\x16\x35\x1d\x19\x10\x3a\x00\ \x02\x00\x14\xff\xf4\x02\x1c\x02\xc8\x00\x0c\x00\x2b\x00\xa5\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\ \x00\x03\x3e\x59\xbb\x00\x21\x00\x01\x00\x24\x00\x04\x2b\xba\x00\ \x1d\x00\x1a\x00\x10\x11\x12\x39\xb8\x00\x1d\x10\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x1a\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x10\x10\ \xb9\x00\x09\x00\x01\xf4\xba\x00\x0d\x00\x10\x00\x1a\x11\x12\x39\ \xb8\x00\x0d\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x24\x10\xb8\x00\ \x23\xd0\xb8\x00\x24\x10\xb8\x00\x28\xd0\xb8\x00\x21\x10\xb8\x00\ \x29\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x06\ \x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\ \x23\x07\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\x15\xaf\x23\ \x47\x1a\x40\x54\x40\x49\x20\x49\x26\x02\x23\x57\x2b\x31\x4c\x33\ \x1a\x24\x3d\x50\x2b\x23\x51\x23\x03\x07\x42\x49\x49\x52\xd4\xd4\ \x72\x1f\x1a\x61\x56\x4c\x5d\x23\x26\x44\x22\x28\x22\x3d\x58\x36\ \x3c\x5e\x41\x22\x23\x1f\x36\x02\x3b\x2b\x05\x5d\x5d\x30\x49\xff\ \xff\x00\x50\xff\x2b\x02\x1b\x01\xf2\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xff\x2a\x00\x00\x00\xff\xff\x00\x50\xff\xf4\x02\x1b\x02\ \xd1\x02\x26\x00\x20\x00\x00\x00\x06\x02\xe1\x2b\x00\x00\x00\xff\ \xff\x00\x50\xff\xf4\x02\x1b\x02\xd1\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xe3\x2b\x00\x00\x00\xff\xff\x00\x50\xff\xf4\x02\x1b\x02\ \xd1\x02\x26\x00\x20\x00\x00\x00\x06\x02\xf5\x2b\x00\x00\x00\xff\ \xff\x00\x50\xff\xf4\x02\x1b\x02\xc9\x02\x26\x00\x20\x00\x00\x00\ \x06\x02\xeb\x2b\x00\x00\x00\xff\xff\x00\x33\xff\xf4\x02\x54\x02\ \xf8\x02\x26\x00\x21\xf7\x00\x00\x07\x03\x1f\x01\x13\x00\x00\xff\ \xff\x00\x3c\xff\x1e\x01\xfb\x02\xc8\x02\x26\x00\x21\x00\x00\x00\ \x06\x02\xfc\x06\x00\x00\x00\xff\xff\x00\x3c\xff\x55\x01\xfb\x02\ \xc8\x02\x26\x00\x21\x00\x00\x00\x06\x03\x04\x06\x00\x00\x00\x00\ \x02\x00\x3c\xff\xf4\x02\x43\x02\xc8\x00\x0d\x00\x2c\x00\xa5\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x29\x2f\x1b\xb9\x00\x29\x00\x0f\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\ \x00\x03\x3e\x59\xbb\x00\x0f\x00\x01\x00\x2b\x00\x04\x2b\xba\x00\ \x23\x00\x20\x00\x16\x11\x12\x39\xb8\x00\x23\x10\xb9\x00\x00\x00\ \x01\xf4\xb8\x00\x20\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x16\x10\ \xb9\x00\x0b\x00\x01\xf4\xba\x00\x12\x00\x16\x00\x20\x11\x12\x39\ \xb8\x00\x12\x10\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0f\x10\xb8\x00\ \x0e\xd0\xb8\x00\x0f\x10\xb8\x00\x26\xd0\xb8\x00\x2b\x10\xb8\x00\ \x27\xd0\x30\x31\x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\ \x37\x13\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x27\x35\x23\x35\x33\x35\x33\x15\x33\x01\xa9\ \x21\x3f\x1f\x20\x38\x29\x18\x4b\x44\x48\x41\x9a\x48\x44\x07\x03\ \x1e\x53\x2d\x30\x4d\x38\x1e\x25\x3d\x50\x2b\x2d\x44\x22\x03\xae\ \xae\x52\x48\x01\x60\x1f\x1a\x1a\x2e\x41\x27\x53\x5d\x49\x01\xbe\ \x05\xfd\xc5\x40\x1f\x2d\x20\x3f\x5a\x3b\x39\x5b\x40\x22\x22\x1d\ \x5a\x42\x30\x5d\x5d\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xd1\x02\x26\x00\x22\x00\x00\x00\x06\x02\xdf\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xe1\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xd1\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe3\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xf5\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xba\x02\x26\x00\x22\x00\x00\x00\x06\x02\xed\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\x92\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xe7\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xc5\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe9\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xc9\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xeb\x0f\x00\x00\x00\xff\xff\x00\x45\xff\x1e\x02\x19\x01\ \xf2\x02\x26\x00\x22\x00\x00\x00\x06\x02\xfc\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x02\xd7\x02\x26\x00\x22\x00\x00\x00\ \x06\x02\xef\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xb0\x02\x26\x00\x22\x00\x00\x00\x06\x02\xe5\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x23\x02\xf2\x02\x26\x00\x22\x00\x00\x00\ \x06\x03\x0d\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x02\ \xf2\x02\x26\x00\x22\x00\x00\x00\x06\x03\x0f\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\xf4\x02\x19\x03\x10\x02\x26\x00\x22\x00\x00\x00\ \x06\x03\x11\x0f\x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x19\x03\ \x22\x02\x26\x00\x22\x00\x00\x00\x06\x03\x13\x0f\x00\x00\x00\xff\ \xff\x00\x45\xff\x1e\x02\x19\x02\xd1\x02\x26\x00\x22\x00\x00\x00\ \x26\x02\xe3\x0f\x00\x00\x06\x02\xfc\x0f\x00\x00\x02\x00\x45\xff\ \x32\x02\x19\x01\xf2\x00\x35\x00\x3e\x00\x5e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x05\x3e\x59\xbb\ \x00\x3e\x00\x01\x00\x2c\x00\x04\x2b\xb8\x00\x0f\x10\xb9\x00\x08\ \x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x32\x00\x01\xf4\xb8\x00\x24\ \x10\xb9\x00\x39\x00\x01\xf4\x30\x31\x25\x0e\x03\x15\x14\x16\x33\ \x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\ \x21\x1e\x03\x33\x32\x36\x37\x27\x34\x26\x23\x22\x0e\x02\x07\x02\ \x05\x22\x2d\x1b\x0b\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x34\ \x0c\x14\x17\x0b\x16\x22\x14\x36\x5f\x47\x29\x2a\x45\x59\x2f\x34\ \x52\x39\x1e\x01\x02\xfe\x84\x01\x1d\x31\x43\x28\x2b\x47\x22\x1b\ \x4c\x44\x1e\x37\x2c\x1e\x05\x2d\x18\x29\x24\x21\x10\x17\x17\x07\ \x06\x29\x0b\x10\x2b\x2a\x13\x24\x20\x19\x09\x08\x04\x23\x41\x5e\ \x3c\x3c\x5f\x42\x23\x21\x3c\x54\x33\x0d\x19\x09\x27\x3e\x2c\x18\ \x18\x15\xb7\x49\x4e\x14\x27\x38\x24\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xd1\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\xc5\x02\x26\x00\ \x24\x00\x00\x00\x06\x02\xe9\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xc9\x02\x26\x00\x24\x00\x00\x00\x06\x02\xeb\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\xc6\x02\x26\x00\ \x24\x00\x00\x00\x06\x03\x20\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xd1\x02\x26\x00\x24\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x48\xff\x20\x02\x36\x02\x92\x02\x26\x00\ \x24\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x48\xff\ \x20\x02\x36\x02\xb0\x02\x26\x00\x24\x00\x00\x00\x06\x02\xe5\x07\ \x00\x00\x00\xff\xff\x00\x0a\x00\x00\x02\x0b\x03\x5c\x02\x26\x00\ \x25\x00\x00\x00\x07\x02\xe4\xff\x66\x00\x2a\xff\xff\x00\x5d\xff\ \x1e\x02\x0b\x02\xc8\x02\x26\x00\x25\x00\x00\x00\x06\x02\xfc\x0e\ \x00\x00\x00\xff\xff\x00\x5d\xff\x32\x02\x0b\x02\xc8\x02\x26\x00\ \x25\x00\x00\x00\x06\x03\x03\x0d\x00\x00\x00\x00\x01\x00\x14\x00\ \x00\x02\x0b\x02\xc8\x00\x1e\x00\x87\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x03\x2f\x1b\xb9\x00\x03\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x0f\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\ \x14\x00\x01\x00\x17\x00\x04\x2b\xba\x00\x00\x00\x03\x00\x13\x11\ \x12\x39\xb8\x00\x03\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\ \xb9\x00\x11\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x16\xd0\xb8\x00\ \x17\x10\xb8\x00\x1b\xd0\xb8\x00\x14\x10\xb8\x00\x1c\xd0\x30\x31\ \x13\x3e\x01\x33\x32\x16\x15\x11\x23\x11\x34\x26\x23\x22\x0e\x02\ \x07\x11\x23\x11\x23\x35\x37\x35\x33\x15\x33\x15\x23\x15\xab\x27\ \x58\x39\x57\x51\x52\x34\x3c\x16\x25\x24\x26\x15\x52\x49\x49\x52\ \xd4\xd4\x01\x7f\x29\x36\x63\x61\xfe\xe6\x01\x0f\x45\x43\x0b\x16\ \x21\x16\xfe\xc1\x02\x3b\x2b\x05\x5d\x5d\x30\x49\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\x9d\x02\xd1\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xdf\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xcf\x02\ \xd1\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe1\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xe0\x02\xd1\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe3\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xea\x02\ \xb0\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe5\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xf2\x02\xba\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xed\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xd7\x02\ \x92\x02\x26\x01\x32\x00\x00\x00\x06\x02\xe7\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xde\x02\xc5\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xe9\x30\x00\x00\x00\xff\xff\x00\x5a\x00\x00\x01\xe0\x02\ \xd1\x02\x26\x01\x32\x00\x00\x00\x06\x02\xf5\x30\x00\x00\x00\xff\ \xff\x00\x5a\x00\x00\x01\xaf\x02\xd7\x02\x26\x01\x32\x00\x00\x00\ \x06\x02\xef\x30\x00\x00\x00\xff\xff\x00\x5a\xff\x1e\x01\x9e\x02\ \xc9\x02\x26\x00\x26\x00\x00\x00\x06\x02\xfc\x30\x00\x00\x00\x00\ \x02\x00\x5a\xff\x32\x01\xb9\x02\xc9\x00\x1a\x00\x26\x00\x67\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x05\x3e\x59\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x11\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x02\x10\xb8\x00\x1b\xdc\ \xb8\x00\x21\xdc\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\ \x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x3c\xe2\x01\ \x34\x1e\x23\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x35\x0c\x13\ \x16\x0a\x13\x20\x1d\x25\x25\x1d\x1c\x26\x26\x01\xa3\x43\xfe\x1a\ \x16\x36\x1d\x17\x17\x07\x06\x29\x0b\x10\x2b\x2a\x14\x23\x1e\x19\ \x0b\x02\x4a\x22\x1d\x1d\x23\x23\x1d\x1d\x22\x00\x01\x00\x5a\xff\ \x32\x01\xb9\x01\xe6\x00\x1a\x00\x5b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x05\x3e\x59\xb8\x00\ \x02\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x11\x10\xb9\x00\x0a\x00\ \x01\xf4\x30\x31\x01\x23\x35\x21\x11\x0e\x01\x15\x14\x16\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x23\x01\x3c\ \xe2\x01\x34\x1e\x23\x1c\x13\x0b\x13\x0a\x15\x0e\x2d\x13\x26\x35\ \x0c\x13\x16\x0a\x13\x01\xa3\x43\xfe\x1a\x16\x36\x1d\x17\x17\x07\ \x06\x29\x0b\x10\x2b\x2a\x14\x23\x1e\x19\x0b\x00\x01\x00\x5a\x00\ \x00\x01\x8e\x01\xe6\x00\x05\x00\x2f\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb8\x00\x00\x10\ \xb9\x00\x04\x00\x01\xf4\x30\x31\x13\x21\x11\x23\x11\x23\x5a\x01\ \x34\x52\xe2\x01\xe6\xfe\x1a\x01\xa3\x00\x00\xff\xff\x00\x37\xff\ \x27\x01\xe0\x02\xd1\x02\x26\x01\x9d\x00\x00\x00\x06\x02\xe3\x30\ \x00\x00\x00\xff\xff\x00\x6a\xff\x28\x02\x3e\x02\xc8\x02\x26\x00\ \x28\x00\x00\x00\x06\x02\xfe\x23\x00\x00\x00\x00\x01\x00\x6a\x00\ \x00\x02\x3e\x01\xe6\x00\x0c\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xba\x00\ \x02\x00\x0b\x00\x00\x11\x12\x39\xba\x00\x09\x00\x0b\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\xb8\x00\x02\x10\xb9\x00\ \x0a\x00\x01\xf4\x30\x31\x13\x33\x11\x37\x25\x33\x07\x13\x23\x27\ \x07\x15\x23\x6a\x52\x03\x01\x07\x5e\xc2\xdc\x5c\xb3\x73\x52\x01\ \xe6\xff\x00\x01\xff\xc1\xfe\xdb\xf0\x6e\x82\xff\xff\x00\x51\xff\ \xf4\x02\x19\x03\x66\x02\x26\x00\x29\x00\x00\x00\x06\x02\xe2\xe9\ \x34\x00\x00\xff\xff\x00\x51\xff\xf4\x02\x19\x02\xf8\x02\x26\x00\ \x29\x00\x00\x00\x07\x03\x1f\x00\x88\x00\x00\xff\xff\x00\x2b\xff\ \xf4\x01\xf7\x02\xc8\x02\x26\x00\x29\xda\x00\x00\x07\x02\xeb\x00\ \x89\xfe\xd2\xff\xff\x00\x51\xff\x28\x02\x19\x02\xc8\x02\x26\x00\ \x29\x00\x00\x00\x06\x02\xfe\x47\x00\x00\x00\xff\xff\x00\x51\xff\ \x1e\x02\x19\x02\xc8\x02\x26\x00\x29\x00\x00\x00\x06\x02\xfc\x47\ \x00\x00\x00\xff\xff\x00\x51\xff\x1e\x02\x19\x03\x70\x02\x26\x00\ \x29\x00\x00\x00\x27\x02\xe7\xff\xf1\x00\xde\x00\x06\x02\xfc\x47\ \x00\x00\x00\xff\xff\x00\x51\xff\x55\x02\x19\x02\xc8\x02\x26\x00\ \x29\x00\x00\x00\x06\x03\x04\x47\x00\x00\x00\x00\x01\x00\x51\xff\ \xf4\x02\x19\x02\xc8\x00\x18\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xba\x00\x07\x00\ \x03\x00\x0d\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x0a\xd0\xb8\x00\ \x0d\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x07\x10\xb8\x00\x12\xd0\ \xb8\x00\x0f\xd0\xb8\x00\x03\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\ \x25\x0e\x01\x23\x22\x26\x3d\x01\x07\x35\x37\x35\x23\x35\x33\x11\ \x37\x15\x07\x15\x14\x16\x33\x32\x37\x02\x19\x21\x3a\x28\x4e\x51\ \x7c\x7c\xa6\xf8\xa3\xa3\x33\x2c\x28\x34\x11\x0c\x11\x58\x57\xa9\ \x47\x46\x47\xf3\x43\xfe\xf5\x5b\x47\x5b\xd9\x36\x2f\x17\x00\xff\ \xff\x00\x3c\xff\x1e\x02\x2c\x01\xf2\x02\x26\x00\x2a\x00\x00\x00\ \x06\x02\xfc\x05\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xd1\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xe1\x12\x00\x00\x00\xff\ \xff\x00\x5d\x00\x00\x02\x0b\x02\xd1\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xf5\x12\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xb0\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xe5\x12\x00\x00\x00\xff\ \xff\x00\x5d\xff\x28\x02\x0b\x01\xf2\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xfe\x0d\x00\x00\x00\xff\xff\x00\x5d\x00\x00\x02\x0b\x02\ \xc9\x02\x26\x00\x2b\x00\x00\x00\x06\x02\xeb\x12\x00\x00\x00\xff\ \xff\x00\x5d\xff\x1e\x02\x0b\x01\xf2\x02\x26\x00\x2b\x00\x00\x00\ \x06\x02\xfc\x0d\x00\x00\x00\xff\xff\x00\x5d\xff\x55\x02\x0b\x01\ \xf2\x02\x26\x00\x2b\x00\x00\x00\x06\x03\x04\x0d\x00\x00\x00\x00\ \x02\xff\xea\x00\x00\x02\x56\x02\xbb\x00\x11\x00\x26\x00\x6d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\ \x00\x03\x3e\x59\xba\x00\x0b\x00\x05\x00\x03\x2b\xb8\x00\x15\x10\ \xb9\x00\x1e\x00\x01\xf4\xba\x00\x26\x00\x15\x00\x23\x11\x12\x39\ \xb8\x00\x26\x10\xb9\x00\x21\x00\x01\xf4\x30\x31\x03\x3e\x01\x37\ \x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\x25\x3e\ \x01\x33\x32\x16\x15\x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\ \x11\x33\x17\x16\x30\x35\x03\x0c\x0e\x20\x27\x2a\x20\x28\x32\x4c\ \x43\x01\x0d\x23\x50\x35\x4f\x4c\x53\x2e\x34\x27\x3d\x27\x52\x44\ \x07\x01\x8e\x1a\x4f\x35\x06\x27\x20\x23\x2b\x40\x39\x4b\x76\x23\ \x3c\x25\x33\x60\x5e\xfe\xcc\x01\x29\x42\x40\x29\x28\xfe\xa6\x01\ \xe6\x4c\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xd1\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe1\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xe3\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xb0\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe5\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xba\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\x92\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xe7\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xc5\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xe9\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xca\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xf3\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd1\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xf5\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \x1e\x02\x1c\x01\xf2\x02\x26\x00\x2c\x00\x00\x00\x06\x02\xfc\x01\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xd7\x02\x26\x00\ \x2c\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x02\xf2\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x0d\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x02\xf2\x02\x26\x00\ \x2c\x00\x00\x00\x06\x03\x0f\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x02\x1c\x03\x10\x02\x26\x00\x2c\x00\x00\x00\x06\x03\x11\x00\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1c\x03\x22\x02\x26\x00\ \x2c\x00\x00\x00\x06\x03\x13\x00\x00\x00\x00\xff\xff\x00\x3c\xff\ \x1e\x02\x1c\x02\xd1\x02\x26\x00\x2c\x00\x00\x00\x26\x02\xe3\x00\ \x00\x00\x06\x02\xfc\x00\x00\x00\x03\x00\x3c\xff\xe9\x02\x1c\x01\ \xfd\x00\x0a\x00\x16\x00\x30\x00\x7d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x2c\x2f\x1b\xb9\x00\x2c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xba\x00\x16\x00\ \x1f\x00\x2c\x11\x12\x39\xb8\x00\x16\x10\xb8\x00\x00\xd0\xb8\x00\ \x1f\x10\xb9\x00\x02\x00\x01\xf4\xba\x00\x0a\x00\x2c\x00\x1f\x11\ \x12\x39\xb8\x00\x0a\x10\xb8\x00\x0b\xd0\xb8\x00\x2c\x10\xb9\x00\ \x0e\x00\x01\xf4\xb8\x00\x0a\x10\xb8\x00\x17\xd0\xb8\x00\x00\x10\ \xb8\x00\x21\xd0\xb8\x00\x16\x10\xb8\x00\x24\xd0\xb8\x00\x0b\x10\ \xb8\x00\x2e\xd0\x30\x31\x37\x16\x33\x32\x3e\x02\x35\x34\x26\x2f\ \x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x17\x01\x1e\x01\x15\x14\ \x0e\x02\x23\x22\x27\x07\x27\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x17\x37\x17\xc9\x29\x3a\x23\x39\x29\x16\x0e\x0d\x1e\x13\x32\x1d\ \x23\x39\x29\x16\x0e\x0d\x01\x35\x1b\x20\x27\x42\x57\x30\x53\x3f\ \x33\x25\x35\x1b\x20\x27\x42\x57\x30\x53\x3f\x33\x25\x5c\x26\x1c\ \x31\x45\x2a\x21\x3a\x17\x26\x12\x14\x1c\x32\x46\x2a\x21\x38\x17\ \x01\x20\x20\x59\x37\x3c\x5f\x41\x22\x30\x3b\x1d\x3e\x20\x58\x36\ \x3d\x5f\x42\x22\x30\x3b\x1d\x00\x03\x00\x0b\xff\xf4\x02\x54\x01\ \xf2\x00\x13\x00\x3b\x00\x44\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x32\x2f\x1b\xb9\x00\x32\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x37\x2f\x1b\xb9\x00\x37\x00\x03\x3e\x59\xbb\x00\ \x3c\x00\x01\x00\x27\x00\x04\x2b\xb8\x00\x37\x10\xb9\x00\x05\x00\ \x01\xf4\xb8\x00\x19\x10\xb9\x00\x0f\x00\x01\xf4\xba\x00\x1c\x00\ \x32\x00\x19\x11\x12\x39\xb8\x00\x32\x10\xb9\x00\x2b\x00\x01\xf4\ \xba\x00\x35\x00\x32\x00\x19\x11\x12\x39\xb8\x00\x1f\x10\xb9\x00\ \x41\x00\x01\xf4\x30\x31\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x07\x34\x3e\x02\x33\x32\x16\x17\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x06\x07\x23\x1e\x01\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x27\x06\x23\x22\x2e\x02\x25\x34\x2e\x02\x23\ \x22\x06\x07\x58\x0d\x1a\x26\x1a\x16\x25\x1a\x0e\x0e\x1a\x25\x16\ \x1a\x26\x1a\x0d\x4d\x1b\x30\x40\x25\x2f\x45\x14\x14\x41\x30\x22\ \x35\x23\x12\x01\x02\xf1\x04\x3a\x36\x1a\x27\x14\x1d\x17\x3b\x23\ \x30\x48\x16\x2b\x5d\x26\x40\x2f\x1b\x02\x05\x08\x12\x1e\x16\x2d\ \x30\x06\xf3\x2a\x45\x31\x1c\x1c\x31\x45\x2a\x2a\x44\x32\x1b\x1b\ \x32\x44\x2a\x3d\x5f\x41\x22\x3d\x38\x37\x3e\x24\x3c\x51\x2d\x0e\ \x17\x10\x4c\x5d\x11\x0e\x36\x11\x1a\x39\x37\x70\x22\x41\x5f\x60\ \x1f\x38\x2b\x19\x53\x48\x00\x00\x02\x00\x3c\xff\xf4\x02\x2c\x02\ \x65\x00\x13\x00\x34\x00\x47\x00\xb8\x00\x00\x45\x58\xb8\x00\x2c\ \x2f\x1b\xb9\x00\x2c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x22\x2f\x1b\xb9\x00\x22\x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x2c\x10\xb9\x00\x0a\x00\x01\xf4\xba\x00\x1a\x00\x22\x00\ \x2c\x11\x12\x39\xb8\x00\x1a\x10\xb8\x00\x2e\xd0\x30\x31\x25\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x01\x1e\ \x01\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x17\x3e\x01\x35\x34\x26\x27\x01\x2c\x23\x39\ \x29\x16\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\x39\x01\x0b\x0b\ \x0d\x38\x2c\x26\x2e\x27\x42\x57\x30\x30\x57\x42\x27\x27\x42\x57\ \x30\x36\x31\x2c\x29\x08\x07\x38\x1b\x31\x44\x2a\x2a\x45\x32\x1b\ \x1b\x32\x45\x2a\x2a\x44\x31\x1b\x02\x2d\x0e\x20\x13\x2c\x32\x0b\ \x21\x65\x43\x3c\x5f\x41\x22\x22\x41\x5f\x3c\x3d\x5f\x42\x22\x16\ \x06\x1f\x1d\x0b\x15\x0a\x00\xff\xff\x00\x3c\xff\xf4\x02\x2c\x02\ \xd1\x02\x26\x01\x59\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x02\x2c\x02\xd1\x02\x26\x01\x59\x00\x00\x00\ \x06\x02\xdf\x00\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x2c\x02\ \xd7\x02\x26\x01\x59\x00\x00\x00\x06\x02\xef\x00\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x02\x2c\x02\xb0\x02\x26\x01\x59\x00\x00\x00\ \x06\x02\xe5\x00\x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x02\x2c\x02\ \x65\x02\x26\x01\x59\x00\x00\x00\x06\x02\xfc\x01\x00\x00\x00\x00\ \x02\x00\x3c\xff\x32\x02\x1c\x01\xf2\x00\x28\x00\x3c\x00\x5c\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x07\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\ \x05\x3e\x59\xb8\x00\x05\x10\xb8\x00\x19\xd0\xb8\x00\x26\x10\xb9\ \x00\x1f\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x2e\x00\x01\xf4\xb8\ \x00\x0f\x10\xb9\x00\x38\x00\x01\xf4\x30\x31\x17\x34\x3e\x02\x37\ \x2e\x03\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x07\x0e\ \x01\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\x03\x14\ \x1e\x02\x33\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xea\x0b\ \x10\x14\x08\x2f\x54\x3e\x24\x27\x42\x57\x30\x30\x57\x42\x27\x19\ \x2d\x40\x28\x23\x24\x1c\x12\x0c\x13\x09\x16\x0e\x2e\x13\x26\x34\ \x59\x16\x29\x39\x23\x23\x39\x29\x16\x16\x29\x39\x23\x23\x39\x29\ \x16\x79\x13\x21\x1d\x16\x07\x02\x24\x41\x5c\x3a\x3d\x5f\x42\x22\ \x22\x42\x5f\x3d\x33\x4d\x3b\x2b\x10\x10\x38\x1d\x17\x17\x07\x06\ \x29\x0b\x10\x2b\x01\x95\x2a\x44\x31\x1b\x1b\x31\x44\x2a\x2a\x45\ \x32\x1b\x1b\x32\x45\x00\x00\xff\xff\x00\x92\x00\x00\x02\x19\x02\ \xd1\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xe1\x2a\x00\x00\x00\xff\ \xff\x00\x74\xff\x28\x02\x19\x01\xf2\x02\x26\x00\x2f\x00\x00\x00\ \x06\x02\xfe\x9d\x00\x00\x00\xff\xff\x00\x92\x00\x00\x02\x19\x02\ \xd1\x02\x26\x00\x2f\x00\x00\x00\x06\x02\xf5\x2a\x00\x00\x00\xff\ \xff\x00\x87\xff\x1e\x02\x19\x01\xf2\x02\x26\x00\x2f\x00\x00\x00\ \x06\x02\xfc\x9d\x00\x00\x00\xff\xff\x00\x87\xff\x1e\x02\x19\x02\ \x92\x02\x26\x00\x2f\x00\x00\x00\x26\x02\xe7\x2a\x00\x00\x06\x02\ \xfc\x9d\x00\xff\xff\x00\x4d\xff\x55\x02\x19\x01\xf2\x02\x26\x00\ \x2f\x00\x00\x00\x06\x03\x04\x9d\x00\x00\x00\xff\xff\x00\x48\xff\ \xf4\x02\x0e\x02\xd1\x02\x26\x00\x30\x00\x00\x00\x06\x02\xe1\x03\ \x00\x00\x00\xff\xff\x00\x48\xff\xf4\x02\x0e\x02\xd1\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xe3\x03\x00\x00\x00\xff\xff\x00\x48\xff\ \xf4\x02\x0e\x02\xd1\x02\x26\x00\x30\x00\x00\x00\x06\x02\xf5\x03\ \x00\x00\x00\xff\xff\x00\x48\xff\x2b\x02\x0e\x01\xf2\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xff\x0e\x00\x00\x00\xff\xff\x00\x48\xff\ \x28\x02\x0e\x01\xf2\x02\x26\x00\x30\x00\x00\x00\x06\x02\xfe\x0a\ \x00\x00\x00\xff\xff\x00\x48\xff\xf4\x02\x0e\x02\xc9\x02\x26\x00\ \x30\x00\x00\x00\x06\x02\xeb\x03\x00\x00\x00\xff\xff\x00\x48\xff\ \x1e\x02\x0e\x01\xf2\x02\x26\x00\x30\x00\x00\x00\x06\x02\xfc\x0a\ \x00\x00\x00\x00\x01\x00\x58\xff\xf4\x02\x34\x02\xd4\x00\x39\x00\ \x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x39\x2f\x1b\xb9\x00\x39\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\ \x1b\x00\x03\x3e\x59\xb9\x00\x22\x00\x01\xf4\xba\x00\x0f\x00\x05\ \x00\x22\x11\x12\x39\xb8\x00\x05\x10\xb9\x00\x34\x00\x01\xf4\xba\ \x00\x25\x00\x1b\x00\x34\x11\x12\x39\x30\x31\x13\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x14\x0e\x02\x15\x14\x1e\x04\x15\x14\x0e\x02\x23\ \x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x04\x35\x34\x3e\ \x02\x35\x34\x26\x23\x22\x06\x15\x11\x23\x58\x1c\x34\x4a\x2f\x28\ \x3d\x2a\x15\x1c\x22\x1c\x1e\x2c\x35\x2c\x1e\x17\x2b\x3c\x25\x2a\ \x46\x20\x21\x1c\x34\x1d\x2a\x2d\x1e\x2d\x34\x2d\x1e\x1c\x22\x1c\ \x2c\x2a\x37\x3f\x52\x02\x07\x2e\x4c\x36\x1d\x18\x29\x35\x1e\x26\ \x35\x2c\x29\x1a\x18\x20\x1b\x1a\x24\x35\x27\x20\x36\x28\x17\x18\ \x15\x3a\x14\x13\x2f\x1f\x1d\x26\x1d\x19\x21\x2d\x23\x22\x31\x2d\ \x2f\x20\x25\x31\x4b\x4b\xfe\x05\x00\x00\x00\xff\xff\x00\x45\xff\ \xf4\x02\x22\x02\xf8\x02\x26\x00\x31\x00\x00\x00\x07\x03\x1f\x00\ \x82\x00\x00\xff\xff\x00\x45\xff\x2b\x02\x22\x02\x6e\x02\x26\x00\ \x31\x00\x00\x00\x06\x02\xff\x4c\x00\x00\x00\xff\xff\x00\x45\xff\ \x28\x02\x22\x02\x6e\x02\x26\x00\x31\x00\x00\x00\x06\x02\xfe\x4f\ \x00\x00\x00\xff\xff\x00\x45\xff\x1e\x02\x22\x02\x6e\x02\x26\x00\ \x31\x00\x00\x00\x06\x02\xfc\x4f\x00\x00\x00\xff\xff\x00\x45\xff\ \x55\x02\x22\x02\x6e\x02\x26\x00\x31\x00\x00\x00\x06\x03\x04\x4f\ \x00\x00\x00\xff\xff\x00\x45\xff\xf4\x02\x22\x03\x40\x02\x26\x00\ \x31\x00\x00\x00\x07\x02\xed\xff\xdc\x00\x86\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xd1\x02\x26\x00\x32\x00\x00\x00\x06\x02\xdf\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd1\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe1\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xd1\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe3\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xb0\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe5\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xba\x02\x26\x00\x32\x00\x00\x00\x06\x02\xed\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\x92\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xe7\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xc5\x02\x26\x00\x32\x00\x00\x00\x06\x02\xe9\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd7\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xf1\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x02\xca\x02\x26\x00\x32\x00\x00\x00\x06\x02\xf3\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd1\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xf5\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x03\x1d\x02\x26\x00\x32\x00\x00\x00\x06\x03\x05\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x03\x37\x02\x26\x00\ \x32\x00\x00\x00\x06\x03\x07\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x01\xf9\x03\x37\x02\x26\x00\x32\x00\x00\x00\x06\x03\x09\xfc\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x03\x37\x02\x26\x00\ \x32\x00\x00\x00\x06\x03\x0b\xfc\x00\x00\x00\xff\xff\x00\x4d\xff\ \x1e\x01\xf9\x01\xe6\x02\x26\x00\x32\x00\x00\x00\x06\x02\xfc\x15\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x01\xf9\x02\xd7\x02\x26\x00\ \x32\x00\x00\x00\x06\x02\xef\xfc\x00\x00\x00\x00\x01\x00\x4d\xff\ \x32\x02\x0f\x01\xe6\x00\x25\x00\x88\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x24\x2f\x1b\xb9\x00\x24\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x05\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\ \x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x12\ \xd0\xba\x00\x14\x00\x1b\x00\x17\x11\x12\x39\xb8\x00\x17\x10\xb9\ \x00\x20\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x23\x00\x01\xf4\x30\ \x31\x21\x0e\x01\x15\x14\x16\x33\x32\x37\x17\x0e\x01\x23\x22\x26\ \x35\x34\x36\x37\x27\x23\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\ \x16\x33\x32\x36\x37\x11\x33\x01\xf9\x2d\x29\x1c\x12\x16\x12\x16\ \x0e\x2e\x13\x26\x34\x30\x20\x07\x04\x25\x57\x39\x58\x51\x53\x33\ \x3d\x2a\x44\x29\x52\x16\x36\x1d\x17\x17\x0d\x29\x0b\x10\x2b\x2a\ \x29\x3d\x17\x51\x2b\x36\x63\x61\x01\x2e\xfe\xdd\x45\x43\x2b\x2f\ \x01\x51\x00\x00\x01\x00\x4d\xff\xf4\x02\x56\x02\x6f\x00\x23\x00\ \x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\ \x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\ \x00\x0f\x00\x03\x3e\x59\xba\x00\x0b\x00\x0f\x00\x1c\x11\x12\x39\ \xb9\x00\x18\x00\x01\xf4\xb8\x00\x0b\x10\xb9\x00\x1b\x00\x01\xf4\ \x30\x31\x01\x1e\x01\x15\x14\x0e\x02\x07\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x36\x37\x11\x33\x3e\ \x01\x35\x34\x26\x27\x02\x3f\x0a\x0d\x10\x1a\x22\x11\x43\x07\x04\ \x25\x57\x39\x58\x51\x53\x33\x3d\x2a\x44\x29\x18\x23\x30\x08\x06\ \x02\x6f\x0e\x20\x13\x17\x23\x19\x10\x05\xfe\x3a\x55\x2b\x36\x63\ \x61\x01\x2e\xfe\xdd\x45\x43\x2b\x2f\x01\x51\x04\x1c\x22\x0b\x15\ \x0a\x00\x00\xff\xff\x00\x4d\xff\xf4\x02\x56\x02\xd1\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xe1\xfb\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x02\x56\x02\xd1\x02\x26\x01\x85\x00\x00\x00\x06\x02\xdf\xfb\ \x00\x00\x00\xff\xff\x00\x4d\xff\xf4\x02\x56\x02\xd7\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xef\xfb\x00\x00\x00\xff\xff\x00\x4d\xff\ \xf4\x02\x56\x02\xb0\x02\x26\x01\x85\x00\x00\x00\x06\x02\xe5\xfb\ \x00\x00\x00\xff\xff\x00\x4d\xff\x1e\x02\x56\x02\x6f\x02\x26\x01\ \x85\x00\x00\x00\x06\x02\xfc\x08\x00\x00\x00\xff\xff\x00\x08\x00\ \x00\x02\x50\x02\xd1\x02\x26\x00\x34\x00\x00\x00\x06\x02\xdf\x00\ \x00\x00\x00\xff\xff\x00\x08\x00\x00\x02\x50\x02\xd1\x02\x26\x00\ \x34\x00\x00\x00\x06\x02\xe1\x00\x00\x00\x00\xff\xff\x00\x08\x00\ \x00\x02\x50\x02\xd1\x02\x26\x00\x34\x00\x00\x00\x06\x02\xe3\x00\ \x00\x00\x00\xff\xff\x00\x08\x00\x00\x02\x50\x02\xba\x02\x26\x00\ \x34\x00\x00\x00\x06\x02\xed\x00\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd1\x02\x26\x00\x36\x00\x00\x00\x06\x02\xdf\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xd1\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xe1\x04\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd1\x02\x26\x00\x36\x00\x00\x00\x06\x02\xe3\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xba\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xed\x04\x00\x00\x00\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xc9\x02\x26\x00\x36\x00\x00\x00\x06\x02\xeb\x04\ \x00\x00\x00\xff\xff\x00\x31\xff\x22\x02\x27\x01\xe6\x02\x26\x00\ \x36\x00\x00\x00\x07\x02\xfc\x00\x9e\x00\x04\xff\xff\x00\x31\xff\ \x2f\x02\x27\x02\xd7\x02\x26\x00\x36\x00\x00\x00\x06\x02\xef\x09\ \x00\x00\x00\xff\xff\x00\x31\xff\x2f\x02\x27\x02\xb0\x02\x26\x00\ \x36\x00\x00\x00\x06\x02\xe5\x04\x00\x00\x00\xff\xff\x00\x47\x00\ \x00\x02\x14\x02\xd1\x02\x26\x00\x37\x00\x00\x00\x06\x02\xe1\x14\ \x00\x00\x00\xff\xff\x00\x47\x00\x00\x02\x14\x02\xd1\x02\x26\x00\ \x37\x00\x00\x00\x06\x02\xf5\x14\x00\x00\x00\xff\xff\x00\x47\x00\ \x00\x02\x14\x02\xc9\x02\x26\x00\x37\x00\x00\x00\x06\x02\xeb\x14\ \x00\x00\x00\xff\xff\x00\x47\xff\x1e\x02\x14\x01\xe6\x02\x26\x00\ \x37\x00\x00\x00\x06\x02\xfc\x11\x00\x00\x00\x00\x02\x00\x3c\xff\ \xf4\x02\x18\x02\xda\x00\x14\x00\x39\x00\x6b\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\x0f\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\ \x27\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1d\x10\xb9\x00\x00\x00\ \x01\xf4\xba\x00\x2a\x00\x34\x00\x1d\x11\x12\x39\xb8\x00\x2a\x10\ \xb9\x00\x08\x00\x01\xf4\xba\x00\x15\x00\x34\x00\x1d\x11\x12\x39\ \xb8\x00\x15\x10\xb8\x00\x2d\xd0\xb8\x00\x15\x10\xb8\x00\x37\xd0\ \xb8\x00\x30\xd0\x30\x31\x25\x32\x3e\x02\x35\x3c\x01\x27\x2e\x01\ \x23\x22\x0e\x02\x15\x14\x1e\x02\x13\x1e\x01\x15\x14\x0e\x02\x23\ \x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x2e\x01\x27\x07\x27\ \x37\x2e\x01\x27\x37\x1e\x01\x17\x37\x17\x01\x2c\x28\x3b\x27\x13\ \x01\x23\x52\x27\x28\x3d\x29\x15\x1a\x2c\x3c\x7b\x42\x50\x21\x3e\ \x58\x37\x2f\x56\x42\x27\x22\x3d\x53\x32\x2f\x54\x1c\x0e\x3d\x2e\ \x96\x17\x84\x1a\x3c\x22\x26\x28\x4a\x22\x87\x17\x38\x1d\x35\x48\ \x2c\x0b\x16\x0b\x2f\x26\x18\x2c\x3b\x22\x26\x3d\x2b\x18\x02\x2a\ \x3d\xab\x79\x3c\x63\x47\x27\x20\x3d\x57\x36\x33\x53\x3b\x20\x2a\ \x26\x45\x65\x28\x4d\x29\x44\x13\x21\x11\x34\x13\x2a\x1a\x45\x29\ \x00\x00\x00\x00\x02\x00\x5d\xff\x33\x02\x1c\x02\xc8\x00\x16\x00\ \x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\ \x00\x08\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\ \x1b\xb9\x00\x12\x00\x03\x3e\x59\xba\x00\x05\x00\x08\x00\x12\x11\ \x12\x39\xba\x00\x15\x00\x12\x00\x08\x11\x12\x39\xb8\x00\x15\x10\ \xb9\x00\x17\x00\x01\xf4\xb8\x00\x12\x10\xb9\x00\x1a\x00\x01\xf4\ \xb8\x00\x08\x10\xb9\x00\x22\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\ \x25\x00\x01\xf4\x30\x31\x17\x23\x11\x33\x15\x07\x3e\x01\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x26\x27\x17\x35\x1e\x01\x33\x32\ \x3e\x02\x35\x34\x26\x23\x22\x06\x07\xaf\x52\x52\x02\x23\x56\x2b\ \x31\x4c\x33\x1b\x25\x3d\x50\x2b\x24\x4c\x21\x01\x23\x45\x1a\x20\ \x37\x28\x17\x41\x49\x20\x48\x26\xcd\x03\x95\xc9\x57\x22\x28\x23\ \x41\x5b\x39\x3e\x61\x44\x23\x22\x1d\x5c\x9b\x1f\x1a\x1b\x31\x48\ \x2d\x50\x63\x23\x26\x00\x00\x00\x01\x00\x37\xff\x27\x01\x8e\x01\ \xe6\x00\x15\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\ \x1b\xb9\x00\x07\x00\x05\x3e\x59\xb9\x00\x0e\x00\x01\xf4\xb8\x00\ \x00\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x13\x21\x11\x14\x0e\x02\ \x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x11\x23\x5a\x01\ \x34\x14\x2f\x4e\x3b\x26\x48\x1d\x1b\x1a\x39\x1c\x24\x30\x1c\x0b\ \xe2\x01\xe6\xfe\x0e\x2d\x4b\x37\x1e\x13\x0e\x3d\x0d\x0e\x12\x22\ \x31\x1f\x01\xb5\x00\x00\x00\x00\x02\x00\x5e\xff\xf4\x02\x11\x01\ \xf2\x00\x21\x00\x2f\x00\x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x17\x2f\x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x13\x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x1d\ \x00\x13\x11\x12\x39\xb8\x00\x05\x2f\xb8\x00\x13\x10\xb9\x00\x0a\ \x00\x01\xf4\xba\x00\x19\x00\x1d\x00\x13\x11\x12\x39\xb8\x00\x1d\ \x10\xb9\x00\x27\x00\x01\xf4\xb8\x00\x19\x10\xb9\x00\x2a\x00\x01\ \xf4\xb8\x00\x05\x10\xb9\x00\x2b\x00\x01\xf4\x30\x31\x01\x14\x0e\ \x02\x07\x1e\x03\x33\x32\x36\x37\x17\x0e\x03\x23\x22\x26\x35\x11\ \x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x07\x34\x2e\x02\x23\x22\x06\ \x07\x15\x3e\x03\x02\x11\x28\x55\x85\x5e\x01\x0e\x1e\x30\x23\x30\ \x59\x22\x20\x12\x31\x37\x3e\x20\x64\x62\x44\x07\x03\x28\x64\x33\ \x22\x3d\x2d\x1a\x50\x12\x1d\x27\x15\x2a\x51\x2a\x4e\x68\x3f\x1b\ \x01\x68\x29\x3d\x2c\x1c\x07\x19\x2d\x21\x14\x25\x15\x38\x0c\x19\ \x14\x0d\x6d\x5b\x01\x2a\x42\x20\x2e\x12\x24\x33\x27\x15\x1d\x13\ \x09\x25\x23\x80\x06\x16\x1f\x27\x00\x00\x00\x00\x02\x00\x3c\xff\ \xf4\x01\xfb\x01\xf2\x00\x0d\x00\x24\x00\x7f\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x18\x2f\x1b\xb9\x00\x18\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1c\x00\x20\x00\x13\x11\x12\x39\ \xb8\x00\x1c\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x17\x00\x20\x00\ \x13\x11\x12\x39\xb8\x00\x17\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x13\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x37\ \x35\x2e\x01\x23\x22\x0e\x02\x07\x34\x3e\x02\x33\x32\x16\x17\x33\ \x37\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x91\x4b\x44\x48\ \x41\x21\x3f\x20\x20\x37\x29\x18\x55\x24\x3e\x50\x2c\x2b\x48\x22\ \x03\x07\x42\x44\x07\x03\x1d\x54\x2e\x2f\x4d\x38\x1e\xf3\x58\x62\ \x49\xf2\x1f\x1a\x1b\x31\x44\x2b\x3b\x5f\x42\x24\x22\x20\x36\xfe\ \x1a\x40\x1f\x2d\x22\x41\x5e\x00\x02\x00\x5d\xff\xf4\x02\x1c\x01\ \xf2\x00\x0e\x00\x25\x00\x83\x00\xb8\x00\x00\x45\x58\xb8\x00\x1b\ \x2f\x1b\xb9\x00\x1b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x21\x2f\x1b\xb9\x00\x21\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\xb8\x00\x21\x10\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x1d\x00\x21\x00\x14\x11\x12\x39\ \xb8\x00\x1d\x10\xb9\x00\x06\x00\x01\xf4\xba\x00\x18\x00\x14\x00\ \x21\x11\x12\x39\xb8\x00\x18\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\ \x14\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x34\x26\x23\x22\x06\ \x07\x15\x1e\x01\x33\x32\x3e\x02\x37\x14\x0e\x02\x23\x22\x26\x27\ \x23\x07\x23\x11\x33\x17\x33\x3e\x01\x33\x32\x1e\x02\x01\xc7\x41\ \x49\x24\x4a\x20\x23\x45\x1b\x20\x36\x28\x17\x55\x24\x3d\x50\x2b\ \x24\x50\x23\x03\x07\x42\x44\x07\x03\x1d\x5a\x31\x31\x4b\x33\x1a\ \xf7\x53\x63\x25\x24\xf2\x20\x19\x1a\x32\x46\x30\x3e\x62\x44\x23\ \x23\x1f\x36\x01\xe6\x40\x1f\x2d\x23\x41\x5b\x00\x01\x00\x3d\xff\ \xf4\x02\x08\x01\xf2\x00\x21\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\x30\x31\x25\x14\ \x0e\x02\x23\x22\x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\ \x02\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x02\x08\x29\x46\ \x61\x37\x39\x64\x27\x25\x1d\x4d\x2d\x29\x45\x31\x1b\x1a\x2e\x42\ \x27\x2c\x46\x1f\x2a\x1f\x5f\x42\x35\x5d\x46\x29\xf2\x3c\x5f\x41\ \x22\x28\x24\x35\x1a\x23\x1b\x31\x44\x2a\x2a\x45\x32\x1b\x1e\x1a\ \x35\x1d\x2a\x22\x42\x5f\x00\x00\x02\x00\x3f\xff\xf4\x02\x13\x01\ \xf2\x00\x1e\x00\x27\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\ \x2f\x1b\xb9\x00\x1a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\xbb\x00\x1f\x00\x01\x00\ \x12\x00\x04\x2b\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x1a\x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x25\x14\x0e\x02\x23\x22\ \x26\x27\x37\x1e\x01\x33\x32\x3e\x02\x37\x21\x2e\x01\x35\x34\x3e\ \x02\x33\x32\x1e\x02\x07\x2e\x01\x23\x22\x0e\x02\x15\x02\x13\x29\ \x47\x5f\x36\x3b\x5c\x24\x1d\x22\x47\x2b\x28\x42\x30\x1d\x03\xfe\ \x84\x02\x01\x22\x3e\x55\x33\x31\x56\x40\x25\x54\x0a\x50\x42\x1f\ \x37\x2a\x18\xf2\x3c\x5e\x41\x23\x22\x17\x36\x15\x18\x18\x2b\x3f\ \x27\x09\x19\x0d\x33\x54\x3c\x21\x23\x42\x5f\x14\x48\x4f\x14\x26\ \x39\x24\x00\x00\x02\x00\x45\xff\xf4\x02\x19\x01\xf2\x00\x1c\x00\ \x23\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x0e\x2f\x1b\xb9\x00\ \x0e\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x18\x2f\x1b\xb9\ \x00\x18\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x03\x00\x04\x2b\ \xb8\x00\x0e\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\ \x20\x00\x01\xf4\x30\x31\x37\x34\x36\x37\x21\x2e\x01\x23\x22\x06\ \x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\ \x37\x14\x16\x33\x32\x36\x37\x45\x02\x02\x01\x7b\x05\x55\x54\x2a\ \x4a\x21\x1d\x24\x5e\x39\x39\x5c\x41\x24\x24\x41\x59\x35\x33\x53\ \x3b\x20\x4c\x51\x42\x48\x52\x07\xde\x0e\x19\x09\x4a\x59\x17\x14\ \x38\x17\x1d\x22\x42\x5e\x3c\x3c\x5f\x42\x23\x20\x3d\x57\x2b\x4f\ \x4e\x52\x4b\x00\x02\x00\x3c\xff\x27\x01\xfb\x01\xf2\x00\x21\x00\ \x2f\x00\x8d\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\ \x19\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\ \x00\x14\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1e\x2f\x1b\ \xb9\x00\x1e\x00\x05\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\ \x1b\xb9\x00\x0a\x00\x03\x3e\x59\xb8\x00\x1e\x10\xb9\x00\x03\x00\ \x01\xf4\xba\x00\x07\x00\x1e\x00\x14\x11\x12\x39\xba\x00\x18\x00\ \x1e\x00\x14\x11\x12\x39\xb8\x00\x0a\x10\xb9\x00\x22\x00\x01\xf4\ \xb8\x00\x07\x10\xb9\x00\x24\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\ \x25\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\x28\x00\x01\xf4\x30\x31\ \x17\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\x27\ \x37\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x7d\x26\x50\ \x25\x46\x4b\x02\x01\x1d\x54\x2d\x2f\x4d\x38\x1e\x24\x3d\x51\x2c\ \x2b\x4a\x20\x03\x07\x42\x76\x6d\x30\x61\x28\xc1\x46\x43\x21\x40\ \x20\x1f\x37\x2a\x18\x4d\x6a\x18\x15\x46\x3b\x62\x1d\x2a\x22\x3f\ \x5b\x39\x39\x5c\x40\x23\x23\x1f\x36\xfe\x07\x5c\x6a\x1a\x1a\xee\ \x49\xe2\x1f\x1a\x1a\x30\x41\x27\x52\x60\x00\x00\x01\x00\x4d\xff\ \x33\x01\xfb\x01\xe6\x00\x16\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xba\x00\ \x03\x00\x0a\x00\x06\x11\x12\x39\xb9\x00\x0f\x00\x01\xf4\xb8\x00\ \x03\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x05\x23\x35\x37\x0e\x01\ \x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x32\x3e\x02\x37\x11\x33\ \x01\xfb\x52\x04\x27\x58\x39\x57\x51\x52\x34\x3c\x16\x25\x24\x26\ \x15\x52\xcd\xae\x72\x28\x37\x63\x61\x01\x2e\xfe\xdd\x45\x43\x0b\ \x16\x21\x16\x01\x53\x00\x00\x00\x01\x00\x2e\xff\xf4\x02\x1e\x01\ \xe6\x00\x20\x00\xa5\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\ \xb9\x00\x0f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1f\ \x2f\x1b\xb9\x00\x1f\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\xba\x00\x02\x00\ \x17\x00\x00\x11\x12\x39\xba\x00\x08\x00\x0f\x00\x0b\x11\x12\x39\ \xb8\x00\x0b\x10\xb9\x00\x13\x00\x01\xf4\xb8\x00\x08\x10\xb9\x00\ \x16\x00\x01\xf4\xb8\x00\x06\x10\xb9\x00\x1b\x00\x01\xf4\xb8\x00\ \x02\x10\xb9\x00\x1e\x00\x01\xf4\x30\x31\x21\x23\x27\x23\x0e\x01\ \x23\x22\x27\x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x33\x32\x36\ \x37\x11\x33\x11\x14\x33\x32\x36\x37\x11\x33\x02\x1e\x40\x07\x03\ \x12\x31\x2a\x4a\x12\x15\x34\x29\x33\x38\x4f\x35\x1a\x26\x13\x43\ \x36\x1a\x25\x13\x4e\x40\x22\x2a\x54\x26\x2e\x4d\x49\x01\x5c\xfe\ \xab\x56\x25\x26\x01\x60\xfe\xab\x56\x25\x26\x01\x60\x00\x00\x00\ \x01\x00\x3f\xff\xf4\x01\xc6\x01\xe6\x00\x12\x00\x54\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x03\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\ \x59\xba\x00\x03\x00\x06\x00\x11\x11\x12\x39\xb8\x00\x06\x10\xb9\ \x00\x0d\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\x10\x00\x01\xf4\x30\ \x31\x21\x23\x27\x23\x0e\x01\x23\x22\x26\x27\x37\x1e\x01\x33\x32\ \x36\x37\x11\x33\x01\xc6\x44\x07\x03\x26\x6f\x44\x1b\x2e\x17\x13\ \x1a\x23\x1d\x37\x65\x2c\x52\x73\x3b\x44\x09\x0b\x47\x09\x08\x3f\ \x4c\x01\x1d\x00\x01\x00\x36\xff\x78\x02\x13\x01\xf2\x00\x19\x00\ \x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\xb9\x00\x07\ \x00\x03\x3e\x59\xb9\x00\x08\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\ \x07\x10\xb8\x00\x03\xd0\xb8\x00\x14\x10\xb9\x00\x0d\x00\x01\xf4\ \x30\x31\x25\x33\x15\x23\x07\x23\x35\x23\x35\x33\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x01\x8a\x89\x8c\x0b\ \x44\xef\xef\x35\x46\x23\x38\x1a\x12\x21\x50\x28\x35\x48\x2b\x13\ \x43\x43\x88\x88\x43\xe7\x41\x44\x0c\x0a\x3d\x0b\x11\x1d\x35\x4a\ \x2d\x00\x00\x00\x01\x00\x33\x00\x00\x02\x25\x01\xe6\x00\x0d\x00\ \x40\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\x00\x0c\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x03\x3e\x59\xba\x00\x06\x00\x0c\x00\x00\x11\x12\x39\x30\ \x31\x21\x23\x03\x2e\x01\x27\x23\x0e\x01\x07\x03\x23\x13\x33\x02\ \x25\x53\x70\x0f\x1b\x0d\x04\x0d\x19\x0f\x70\x4f\xc9\x5c\x01\x14\ \x25\x48\x23\x23\x48\x25\xfe\xec\x01\xe6\x00\x00\x01\x00\x08\x00\ \x00\x02\x50\x01\xe6\x00\x21\x00\x69\x00\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\x16\x00\x07\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x20\x2f\x1b\xb9\x00\x20\x00\x07\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\ \x3e\x59\xba\x00\x06\x00\x20\x00\x01\x11\x12\x39\xba\x00\x10\x00\ \x16\x00\x15\x11\x12\x39\xba\x00\x1b\x00\x16\x00\x01\x11\x12\x39\ \x30\x31\x21\x23\x03\x2e\x01\x27\x23\x0e\x01\x0f\x01\x23\x27\x2e\ \x01\x27\x23\x0e\x01\x07\x03\x23\x13\x33\x17\x1e\x01\x17\x33\x3e\ \x01\x3f\x01\x33\x02\x50\x54\x3b\x07\x0c\x05\x04\x07\x0e\x08\x3b\ \x46\x3c\x08\x0e\x08\x04\x07\x0b\x06\x3b\x4e\x6a\x63\x3a\x07\x0c\ \x08\x04\x06\x0c\x09\x38\x62\x01\x19\x23\x42\x22\x22\x43\x22\xfc\ \xfc\x23\x42\x22\x22\x42\x23\xfe\xe7\x01\xe6\xf6\x23\x45\x25\x20\ \x44\x2a\xf5\x00\x01\x00\x31\x00\x00\x02\x27\x02\xd4\x00\x1d\x00\ \x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\ \x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x03\x3e\x59\xb8\x00\x19\x10\xb9\x00\x03\x00\x01\xf4\xba\ \x00\x0e\x00\x08\x00\x19\x11\x12\x39\xb8\x00\x0e\x10\xb8\x00\x07\ \xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x0f\x01\x13\x23\x03\x2e\x01\ \x27\x23\x0e\x01\x07\x03\x23\x13\x3e\x03\x33\x32\x16\x17\x07\x02\ \x07\x09\x15\x0c\x30\x3d\x11\x1b\xe3\x53\x77\x0e\x1f\x0f\x04\x0d\ \x1b\x0c\x6a\x4e\xe2\x0d\x24\x30\x3e\x27\x11\x21\x0e\x12\x02\x89\ \x03\x04\x3c\x2e\x3f\xfe\x19\x01\x0d\x20\x4a\x23\x23\x49\x21\xfe\ \xf3\x02\x2a\x24\x3e\x2e\x1a\x05\x05\x41\x00\x00\x01\x00\x1a\xff\ \x33\x01\xee\x01\xe6\x00\x0c\x00\x63\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x05\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xba\x00\ \x02\x00\x07\x00\x00\x11\x12\x39\xba\x00\x09\x00\x07\x00\x00\x11\ \x12\x39\xb8\x00\x09\x10\xb8\x00\x06\xd0\x30\x31\x05\x23\x11\x23\ \x05\x23\x37\x03\x33\x17\x37\x35\x33\x01\xee\x52\x04\xfe\xfa\x5e\ \xc2\xdc\x5c\xb3\x73\x52\xcd\x01\xcc\xff\xc1\x01\x25\xf0\x6e\x82\ \x00\x00\x00\x00\x03\x00\x34\x00\x00\x02\x0a\x02\xd4\x00\x15\x00\ \x19\x00\x25\x00\x84\x00\xb8\x00\x00\x45\x58\xb8\x00\x03\x2f\x1b\ \xb9\x00\x03\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\ \x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x16\ \x2f\x1b\xb9\x00\x16\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x03\x10\xb9\ \x00\x09\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x0f\x00\x01\xf4\xb8\ \x00\x12\xd0\xb8\x00\x0c\x10\xb8\x00\x15\xd0\xb8\x00\x16\x10\xb8\ \x00\x20\xdc\xb8\x00\x1a\xdc\x30\x31\x13\x34\x36\x33\x32\x16\x17\ \x07\x26\x23\x22\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x21\ \x33\x11\x23\x13\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x76\ \x45\x49\x17\x29\x11\x11\x1d\x1a\x45\x67\x67\x52\x42\x42\x01\x28\ \x52\x52\x29\x1d\x26\x26\x1d\x1d\x27\x27\x02\x33\x4b\x56\x09\x07\ \x3f\x0c\x5e\x4d\x43\xfe\x5d\x01\xa3\x3e\x05\xfe\x1a\x02\xca\x23\ \x1d\x1d\x23\x23\x1d\x1d\x23\x00\x02\x00\x39\xff\xf4\x02\x17\x02\ \xd4\x00\x15\x00\x25\x00\x82\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x03\x2f\x1b\xb9\x00\x03\x00\x0f\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x0c\x2f\x1b\xb9\x00\x0c\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x03\x3e\x59\xb8\x00\x03\ \x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x0c\x10\xb9\x00\x0f\x00\x01\ \xf4\xb8\x00\x12\xd0\xb8\x00\x0c\x10\xb8\x00\x15\xd0\xb8\x00\x19\ \x10\xb9\x00\x22\x00\x01\xf4\x30\x31\x13\x34\x36\x33\x32\x16\x17\ \x07\x26\x23\x22\x1d\x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x01\ \x0e\x01\x23\x22\x26\x35\x11\x33\x11\x14\x16\x33\x3a\x01\x37\x7b\ \x45\x49\x17\x29\x11\x12\x1b\x1c\x44\x67\x67\x52\x42\x42\x01\x9c\ \x09\x16\x10\x2f\x28\x52\x0e\x09\x04\x07\x07\x02\x33\x4b\x56\x09\ \x07\x3f\x0c\x5e\x4d\x43\xfe\x5d\x01\xa3\x3e\x05\xfe\x16\x04\x04\ \x38\x36\x02\x66\xfd\x94\x14\x10\x02\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x01\xf2\x02\x06\x01\x9f\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xdf\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xd1\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe1\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xb0\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe5\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xba\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xed\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\x92\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xc5\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xe9\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x02\xd7\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xf1\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd1\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x01\xfb\x01\xf2\x02\x26\x01\ \x9f\x00\x00\x00\x06\x02\xfc\x09\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x02\xd7\x02\x26\x01\x9f\x00\x00\x00\x06\x02\xef\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x1b\x02\xf2\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x0d\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfc\x02\xf2\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x0f\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x02\x04\x03\x10\x02\x26\x01\ \x9f\x00\x00\x00\x06\x03\x11\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \xf4\x01\xfb\x03\x22\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x13\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x1e\x01\xfb\x02\xd1\x02\x26\x01\ \x9f\x00\x00\x00\x26\x02\xe3\x07\x00\x00\x06\x02\xfc\x08\x00\xff\ \xff\x00\x3c\xff\xf4\x01\xfb\x03\x15\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x15\x07\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x03\ \x15\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x17\x07\x00\x00\x00\xff\ \xff\x00\x3c\xff\xf4\x01\xfb\x03\x47\x02\x26\x01\x9f\x00\x00\x00\ \x06\x03\x19\x07\x00\x00\x00\xff\xff\x00\x3c\xff\xf4\x01\xfb\x03\ \x22\x02\x26\x01\x9f\x00\x00\x00\x06\x03\x1b\x07\x00\x00\x00\xff\ \xff\x00\x3c\xff\x1e\x01\xfb\x02\xc5\x02\x26\x01\x9f\x00\x00\x00\ \x26\x02\xe9\x07\x00\x00\x06\x02\xfc\x08\x00\x00\x02\x00\x3c\xff\ \x32\x02\x10\x01\xf2\x00\x0d\x00\x35\x00\xa6\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x07\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x19\x2f\x1b\xb9\x00\x19\x00\x07\x3e\x59\xb8\x00\ \x00\x45\x58\xb8\x00\x31\x2f\x1b\xb9\x00\x31\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x26\x2f\x1b\xb9\x00\x26\x00\x05\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\x3e\ \x59\xb8\x00\x31\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x2e\x00\x31\ \x00\x13\x11\x12\x39\xb8\x00\x2e\x10\xb9\x00\x05\x00\x01\xf4\xba\ \x00\x16\x00\x13\x00\x31\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x06\ \x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x26\ \x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\x1a\x10\xb8\x00\x2c\xd0\x30\ \x31\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x0e\x02\x07\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x0e\x01\x15\x14\x16\x33\ \x32\x37\x17\x0e\x01\x23\x22\x26\x35\x34\x36\x37\x27\x23\x0e\x01\ \x23\x22\x2e\x02\x91\x4b\x44\x48\x41\x21\x3f\x20\x20\x37\x29\x18\ \x55\x24\x3e\x50\x2c\x2b\x48\x22\x03\x07\x42\x2d\x2a\x1c\x13\x14\ \x14\x15\x0e\x2d\x13\x26\x35\x31\x20\x08\x03\x1d\x54\x2e\x2f\x4d\ \x38\x1e\xf3\x58\x62\x49\xf2\x1f\x1a\x1b\x31\x44\x2b\x3b\x5f\x42\ \x24\x22\x20\x36\xfe\x1a\x16\x36\x1d\x17\x17\x0d\x29\x0b\x10\x2b\ \x2a\x29\x3d\x17\x3c\x1f\x2d\x22\x41\x5e\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x01\xf2\x02\x06\x01\xa4\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xd1\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe3\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\xc5\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe9\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xc9\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xeb\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\xc6\x02\x26\x01\ \xa4\x00\x00\x00\x06\x03\x20\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xd1\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xf5\x07\ \x00\x00\x00\xff\xff\x00\x3c\xff\x27\x01\xfb\x02\x92\x02\x26\x01\ \xa4\x00\x00\x00\x06\x02\xe7\x07\x00\x00\x00\xff\xff\x00\x3c\xff\ \x27\x01\xfb\x02\xb0\x02\x26\x01\xa4\x00\x00\x00\x06\x02\xe5\x07\ \x00\x00\x00\x00\x03\x00\x2a\xff\xf4\x02\x41\x02\x9c\x00\x0d\x00\ \x1b\x00\x47\x00\x90\x00\xb8\x00\x00\x45\x58\xb8\x00\x33\x2f\x1b\ \xb9\x00\x33\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\ \x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\ \x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\xb8\x00\x21\x10\xb9\x00\x05\ \x00\x01\xf4\xba\x00\x08\x00\x21\x00\x33\x11\x12\x39\xba\x00\x11\ \x00\x33\x00\x21\x11\x12\x39\xb8\x00\x11\x10\xb8\x00\x2b\xd0\xb8\ \x00\x0b\xd0\xb8\x00\x33\x10\xb9\x00\x19\x00\x01\xf4\xb8\x00\x08\ \x10\xb8\x00\x1e\xd0\xb8\x00\x11\x10\xb9\x00\x3b\x00\x01\xf4\xb8\ \x00\x1e\x10\xb8\x00\x45\xd0\xb8\x00\x3e\xd0\xb8\x00\x1c\x10\xb8\ \x00\x47\xd0\x30\x31\x37\x14\x1e\x02\x33\x32\x36\x37\x2e\x01\x27\ \x0e\x01\x13\x14\x16\x17\x3e\x03\x35\x34\x26\x23\x22\x06\x01\x26\ \x27\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x37\x2e\x01\x35\x34\ \x3e\x02\x33\x32\x16\x15\x14\x0e\x02\x07\x1e\x01\x17\x3e\x01\x37\ \x33\x0e\x01\x07\x16\x17\x7a\x14\x22\x2e\x1a\x1f\x3a\x1a\x30\x55\ \x22\x20\x2a\x46\x10\x0e\x15\x25\x1d\x10\x1b\x21\x23\x26\x01\x6a\ \x41\x48\x24\x57\x38\x2c\x48\x33\x1d\x14\x23\x2c\x18\x15\x17\x15\ \x25\x35\x21\x3d\x42\x19\x28\x32\x1a\x20\x53\x2d\x1c\x29\x0e\x4c\ \x12\x34\x24\x3c\x35\xaf\x1b\x2d\x20\x11\x1c\x18\x2a\x64\x36\x1c\ \x3d\x01\x2d\x1b\x3a\x1e\x0f\x1f\x21\x25\x16\x1d\x2b\x36\xfd\xc9\ \x14\x37\x23\x28\x1b\x30\x43\x28\x20\x36\x2d\x27\x12\x29\x4f\x23\ \x21\x38\x2a\x18\x48\x3a\x20\x34\x2f\x29\x14\x33\x5e\x27\x28\x5f\ \x39\x41\x76\x34\x2e\x11\x00\x00\x03\x00\x47\xff\xf4\x02\x11\x02\ \x8a\x00\x0b\x00\x1b\x00\x27\x00\x4b\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x06\x2f\x1b\xb9\x00\x06\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x06\x10\ \xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\x14\x00\x01\xf4\ \xba\x00\x1c\x00\x14\x00\x0c\x11\x12\x39\xb8\x00\x1c\x2f\xb8\x00\ \x22\xdc\x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x03\x22\x0e\x02\x15\x14\x16\x33\x32\x36\x35\x34\x2e\x02\x03\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\x6b\x7a\x7a\x6b\ \x6b\x7a\x7a\x6b\x21\x38\x29\x16\x55\x43\x43\x55\x16\x29\x38\x21\ \x19\x25\x25\x19\x19\x25\x25\x0c\xad\xa0\xa1\xa8\xa8\xa1\xa0\xad\ \x02\x54\x1e\x41\x63\x45\x89\x82\x82\x89\x45\x63\x41\x1e\xfe\xbd\ \x23\x20\x1f\x23\x23\x1f\x20\x23\x00\x00\x00\x00\x01\x00\x62\x00\ \x00\x02\x10\x02\x7e\x00\x0c\x00\x3d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0a\x10\xb8\x00\x05\xd0\xb9\x00\ \x07\x00\x01\xf4\x30\x31\x25\x15\x21\x35\x33\x11\x23\x35\x3e\x01\ \x37\x33\x11\x02\x10\xfe\x52\xb5\x88\x33\x4c\x1e\x3d\x44\x44\x44\ \x01\xd6\x35\x08\x17\x10\xfd\xc6\x00\x00\x00\x00\x01\x00\x45\x00\ \x00\x02\x0a\x02\x8a\x00\x1f\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x1e\x2f\x1b\xb9\x00\x1e\x00\x03\x3e\x59\xb9\x00\x1c\x00\ \x01\xf4\xb8\x00\x00\xd0\xba\x00\x05\x00\x0f\x00\x1e\x11\x12\x39\ \xb8\x00\x0f\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\x37\x3e\x03\x35\ \x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x07\x3e\x01\x3b\x01\x15\x21\x49\x51\x7d\x55\x2c\x44\x47\x2d\ \x4d\x1f\x2f\x2b\x63\x44\x30\x4d\x36\x1d\x2b\x4e\x6c\x41\x1d\x3d\ \x1d\xd2\xfe\x3f\x31\x48\x74\x61\x54\x28\x37\x46\x2d\x20\x2f\x2c\ \x35\x1b\x31\x46\x2a\x2d\x5b\x61\x69\x3b\x02\x04\x47\x00\x00\x00\ \x01\x00\x39\xff\xf4\x02\x06\x02\x8a\x00\x33\x00\x53\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x30\x2f\x1b\xb9\x00\x30\x00\x03\x3e\x59\ \xb9\x00\x03\x00\x01\xf4\xba\x00\x0d\x00\x1d\x00\x30\x11\x12\x39\ \xb8\x00\x0d\x2f\xb9\x00\x0e\x00\x01\xf4\xb8\x00\x1d\x10\xb9\x00\ \x16\x00\x01\xf4\xba\x00\x26\x00\x0d\x00\x0e\x11\x12\x39\x30\x31\ \x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\x02\x23\x35\x32\x3e\x02\ \x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\x14\ \x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\x26\x27\x63\x20\x59\ \x3e\x21\x38\x29\x17\x19\x38\x58\x3f\x39\x4f\x32\x17\x47\x3b\x2d\ \x50\x20\x2c\x28\x66\x3e\x2d\x4d\x39\x20\x4c\x3c\x20\x39\x2c\x19\ \x24\x3f\x54\x30\x53\x70\x23\x84\x1e\x2e\x11\x1e\x2b\x1b\x1c\x2f\ \x22\x12\x3f\x12\x20\x2c\x19\x2f\x36\x24\x1d\x34\x23\x2d\x16\x29\ \x3c\x27\x3a\x4a\x14\x04\x07\x1b\x29\x36\x21\x2a\x44\x2f\x19\x37\ \x23\x00\x00\x00\x02\x00\x27\x00\x00\x02\x21\x02\x7e\x00\x09\x00\ \x14\x00\x59\x00\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\ \x11\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\ \x00\x0d\x00\x03\x3e\x59\xbb\x00\x0e\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x11\x10\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\ \x09\xd0\xb8\x00\x0e\x10\xb8\x00\x0b\xd0\xb8\x00\x09\x10\xb8\x00\ \x10\xd0\xb8\x00\x00\x10\xb8\x00\x13\xd0\x30\x31\x25\x35\x3e\x01\ \x37\x23\x0e\x01\x0f\x01\x05\x23\x15\x23\x35\x21\x35\x01\x33\x11\ \x33\x01\x70\x01\x02\x02\x05\x0f\x22\x10\xad\x01\x9f\x63\x4e\xfe\ \xb7\x01\x3f\x58\x63\xf2\xc6\x1a\x3d\x1a\x17\x2f\x17\xda\x42\xb0\ \xb0\x37\x01\x97\xfe\x74\x00\x00\x01\x00\x38\xff\xf4\x02\x0a\x02\ \x7e\x00\x28\x00\x55\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\ \x1b\xb9\x00\x23\x00\x03\x3e\x59\xbb\x00\x19\x00\x01\x00\x0d\x00\ \x04\x2b\xb8\x00\x23\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x16\x00\ \x23\x00\x12\x11\x12\x39\xb8\x00\x16\x10\xb8\x00\x11\xd0\xb8\x00\ \x12\x10\xb9\x00\x14\x00\x01\xf4\x30\x31\x37\x1e\x03\x33\x32\x3e\ \x02\x35\x34\x26\x23\x22\x06\x07\x27\x13\x21\x15\x21\x07\x3e\x01\ \x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x27\x61\x10\x24\ \x2b\x35\x20\x22\x3b\x2c\x19\x55\x48\x28\x38\x22\x2c\x15\x01\x69\ \xfe\xe0\x11\x1c\x35\x25\x2e\x50\x3b\x22\x27\x42\x55\x2e\x2b\x45\ \x37\x2d\x12\x81\x0e\x1b\x14\x0c\x15\x26\x36\x21\x42\x4a\x14\x13\ \x1c\x01\x33\x47\xbd\x0c\x0e\x18\x31\x4b\x34\x34\x50\x37\x1d\x0f\ \x18\x1f\x11\x00\x02\x00\x4d\xff\xf4\x02\x16\x02\x8a\x00\x0d\x00\ \x30\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\x00\ \x2d\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\ \x00\x23\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x19\x00\x04\x2b\ \xb8\x00\x23\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x16\x00\x23\x00\ \x2d\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\ \x2d\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x25\x32\x3e\x02\x35\x34\ \x26\x23\x22\x06\x07\x1e\x01\x13\x2e\x01\x23\x22\x0e\x02\x07\x3e\ \x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x35\x34\x3e\ \x02\x33\x32\x16\x17\x01\x41\x1c\x32\x24\x15\x46\x42\x26\x54\x29\ \x09\x55\xe1\x19\x42\x24\x26\x46\x35\x21\x01\x26\x5f\x30\x2c\x49\ \x35\x1d\x23\x3a\x4d\x2b\x34\x59\x42\x25\x2c\x4a\x61\x34\x3b\x57\ \x20\x35\x14\x25\x33\x20\x42\x45\x27\x2f\x5d\x60\x01\xde\x17\x1b\ \x1c\x40\x69\x4d\x26\x2d\x19\x31\x4a\x31\x2e\x4b\x36\x1e\x26\x4d\ \x73\x4d\x60\x87\x55\x27\x27\x1d\x00\x00\x00\x00\x01\x00\x46\x00\ \x00\x02\x14\x02\x7e\x00\x0f\x00\x33\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xb8\x00\x07\x10\ \xb9\x00\x05\x00\x01\xf4\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\ \x21\x35\x21\x15\x0e\x03\x07\x23\xe2\x04\x1a\x32\x4d\x37\xfe\x90\ \x01\xce\x3f\x52\x32\x16\x03\x56\x5b\x95\x86\x7e\x43\x47\x33\x48\ \x84\x89\x98\x5e\x00\x00\x00\x00\x03\x00\x44\xff\xf4\x02\x13\x02\ \x8a\x00\x0d\x00\x1a\x00\x40\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x29\x2f\x1b\xb9\x00\x29\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x3c\x2f\x1b\xb9\x00\x3c\x00\x03\x3e\x59\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x29\x10\xb9\x00\x13\x00\x01\xf4\xba\x00\x0b\x00\ \x03\x00\x13\x11\x12\x39\xb8\x00\x0b\x2f\xb8\x00\x31\xd0\xb8\x00\ \x31\x2f\xb8\x00\x0e\xdc\xb8\x00\x0b\x10\xb8\x00\x20\xdc\x30\x31\ \x37\x14\x16\x33\x32\x36\x35\x34\x2e\x02\x27\x0e\x01\x37\x36\x35\ \x34\x26\x23\x22\x06\x15\x14\x1e\x02\x07\x34\x3e\x02\x37\x35\x2e\ \x01\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\ \x15\x14\x0e\x02\x23\x22\x2e\x02\x8f\x57\x4a\x48\x4c\x1f\x36\x49\ \x2a\x2f\x3e\xd1\x50\x42\x3f\x36\x42\x1a\x2e\x3d\xf8\x18\x26\x31\ \x1a\x28\x39\x1d\x35\x48\x2b\x2f\x49\x33\x1b\x39\x28\x1a\x2e\x22\ \x13\x1f\x3a\x55\x37\x36\x57\x3c\x21\xab\x36\x44\x3e\x32\x21\x2d\ \x20\x19\x0e\x1a\x41\x81\x3a\x46\x30\x41\x38\x2f\x1d\x29\x20\x19\ \xc4\x21\x34\x2a\x1f\x0c\x04\x19\x49\x33\x25\x3c\x2b\x18\x19\x2d\ \x3f\x25\x2d\x4f\x1c\x04\x0d\x1e\x26\x33\x22\x24\x3e\x2e\x1a\x1a\ \x2f\x40\x00\x00\x02\x00\x43\xff\xf4\x02\x0c\x02\x8a\x00\x0d\x00\ \x30\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\ \x23\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x2d\x2f\x1b\xb9\ \x00\x2d\x00\x03\x3e\x59\xbb\x00\x00\x00\x01\x00\x19\x00\x04\x2b\ \xba\x00\x16\x00\x2d\x00\x23\x11\x12\x39\xb8\x00\x16\x10\xb9\x00\ \x03\x00\x01\xf4\xb8\x00\x23\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\ \x2d\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x01\x32\x36\x37\x2e\x01\ \x23\x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\ \x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\ \x02\x23\x22\x26\x27\x01\x19\x25\x54\x2a\x0a\x53\x47\x1d\x31\x24\ \x15\x45\x59\x18\x42\x25\x26\x45\x35\x20\x02\x27\x5d\x31\x2c\x49\ \x34\x1d\x22\x3b\x4d\x2a\x34\x5a\x42\x25\x2d\x4a\x60\x34\x3b\x57\ \x20\x01\x36\x27\x2e\x5e\x60\x14\x25\x34\x1f\x42\x45\xcb\x17\x1c\ \x1c\x41\x68\x4d\x26\x2c\x19\x31\x4a\x31\x2e\x4b\x36\x1e\x26\x4d\ \x73\x4d\x60\x87\x55\x27\x26\x1d\x00\x00\x00\x00\x03\x00\x47\xff\ \xf4\x02\x11\x02\x4a\x00\x0b\x00\x1b\x00\x27\x00\x4b\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\ \xb8\x00\x06\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x00\x10\xb9\x00\ \x14\x00\x01\xf4\xba\x00\x1c\x00\x14\x00\x0c\x11\x12\x39\xb8\x00\ \x1c\x2f\xb8\x00\x22\xdc\x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x03\x22\x06\x15\x14\x1e\x02\x33\x32\x3e\x02\x35\ \x34\x26\x03\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x6b\x7a\x7a\x6b\x6b\x7a\x7a\x6b\x43\x55\x16\x29\x38\x21\x21\x38\ \x29\x16\x55\x43\x19\x25\x25\x19\x19\x25\x25\x0c\x9c\x92\x90\x98\ \x98\x90\x92\x9c\x02\x13\x6f\x76\x3d\x59\x3a\x1c\x1c\x3a\x59\x3d\ \x76\x6f\xfe\xdf\x23\x20\x1f\x23\x23\x1f\x20\x23\x00\x00\x00\x00\ \x01\x00\x62\x00\x00\x02\x10\x02\x3e\x00\x0c\x00\x3d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\xb8\x00\x0a\x10\xb8\x00\ \x05\xd0\xb9\x00\x07\x00\x01\xf4\x30\x31\x25\x15\x21\x35\x33\x11\ \x23\x35\x3e\x01\x37\x33\x11\x02\x10\xfe\x52\xb5\x88\x33\x4c\x1e\ \x3d\x44\x44\x44\x01\x96\x35\x08\x17\x10\xfe\x06\x00\x00\x00\x00\ \x01\x00\x45\x00\x00\x02\x0a\x02\x4a\x00\x1d\x00\x41\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\x03\x3e\x59\ \xb9\x00\x17\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0d\x10\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x1a\xd0\x30\x31\x37\x3e\ \x01\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x02\x07\x3e\x01\x3b\x01\x15\x21\x49\xa5\xaa\x44\x47\x2d\ \x4d\x1f\x2f\x2b\x63\x44\x30\x4d\x36\x1d\x27\x48\x67\x40\x1d\x3d\ \x1d\xc2\xfe\x3f\x31\x6e\xa6\x40\x3a\x48\x2d\x20\x2f\x2c\x35\x1b\ \x33\x47\x2c\x26\x4e\x51\x55\x2e\x02\x04\x47\x00\x01\x00\x39\xff\ \xaa\x02\x06\x02\x4a\x00\x33\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x30\x00\x04\x2b\xbb\x00\x0e\x00\x01\x00\x0d\x00\x04\x2b\xb8\ \x00\x1d\x10\xb9\x00\x16\x00\x01\xf4\xba\x00\x26\x00\x0d\x00\x0e\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x3e\x02\x35\x34\x2e\x02\ \x23\x35\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\ \x32\x1e\x02\x15\x14\x06\x07\x15\x1e\x03\x15\x14\x0e\x02\x23\x22\ \x26\x27\x63\x20\x59\x3e\x21\x38\x29\x17\x19\x38\x58\x3f\x39\x4f\ \x32\x17\x47\x3b\x2d\x50\x20\x2c\x28\x66\x3e\x2d\x4d\x39\x20\x4c\ \x3c\x20\x39\x2c\x19\x24\x3f\x54\x30\x53\x70\x23\x3a\x1e\x2d\x11\ \x1f\x2c\x1c\x1d\x30\x21\x12\x40\x12\x21\x2c\x1a\x2f\x38\x24\x1d\ \x34\x23\x2d\x16\x2a\x3d\x27\x3b\x4b\x14\x04\x07\x1c\x29\x36\x22\ \x2c\x45\x30\x19\x37\x23\x00\x00\x02\x00\x27\xff\xb6\x02\x21\x02\ \x3e\x00\x09\x00\x14\x00\x3c\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\x00\x09\x3e\x59\xbb\x00\x14\ \x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x14\x10\xb8\x00\x00\xd0\xba\ \x00\x04\x00\x11\x00\x0d\x11\x12\x39\xb8\x00\x0a\x10\xb8\x00\x0e\ \xd0\x30\x31\x25\x35\x3e\x01\x37\x23\x0e\x01\x0f\x01\x05\x23\x15\ \x23\x35\x21\x35\x01\x33\x11\x33\x01\x70\x01\x02\x02\x05\x0f\x21\ \x10\xaf\x01\xa0\x63\x4e\xfe\xb7\x01\x3f\x58\x63\xa1\xd7\x1a\x3d\ \x1a\x19\x31\x17\xe7\x43\xa8\xa8\x37\x01\xa9\xfe\x63\x00\x00\x00\ \x01\x00\x38\xff\xaa\x02\x0a\x02\x3e\x00\x28\x00\x44\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x09\x3e\x59\xbb\ \x00\x05\x00\x01\x00\x23\x00\x04\x2b\xbb\x00\x19\x00\x01\x00\x0d\ \x00\x04\x2b\xba\x00\x16\x00\x23\x00\x12\x11\x12\x39\xb8\x00\x16\ \x10\xb8\x00\x11\xd0\xb8\x00\x12\x10\xb9\x00\x14\x00\x01\xf4\x30\ \x31\x37\x1e\x03\x33\x32\x3e\x02\x35\x34\x26\x23\x22\x06\x07\x27\ \x13\x21\x15\x21\x07\x3e\x01\x33\x32\x1e\x02\x15\x14\x0e\x02\x23\ \x22\x2e\x02\x27\x61\x10\x24\x2b\x35\x20\x22\x3b\x2c\x19\x55\x48\ \x28\x38\x22\x2c\x15\x01\x69\xfe\xe0\x11\x1c\x35\x25\x2e\x50\x3b\ \x22\x27\x42\x55\x2e\x2b\x45\x37\x2d\x12\x37\x0e\x1a\x14\x0c\x15\ \x26\x37\x23\x44\x4a\x14\x13\x1c\x01\x37\x47\xc1\x0d\x0d\x17\x32\ \x4c\x35\x35\x51\x39\x1d\x0f\x18\x20\x11\x00\xff\xff\x00\x4e\xff\ \xf4\x02\x17\x02\x8a\x02\x06\x01\xd5\x01\x00\x00\x01\x00\x46\xff\ \xb6\x02\x14\x02\x3e\x00\x0f\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x07\x2f\x1b\xb9\x00\x07\x00\x09\x3e\x59\xb9\x00\x05\x00\x01\ \xf4\xb8\x00\x09\xd0\x30\x31\x17\x3e\x03\x37\x21\x35\x21\x15\x0e\ \x03\x07\x23\xe2\x04\x1a\x32\x4d\x37\xfe\x90\x01\xce\x3f\x52\x31\ \x16\x04\x56\x4a\x5c\x98\x89\x80\x44\x47\x33\x49\x85\x8c\x9b\x60\ \x00\x00\x00\xff\xff\x00\x44\xff\xf4\x02\x13\x02\x8a\x02\x06\x01\ \xd7\x00\x00\x00\x02\x00\x43\xff\xaa\x02\x0c\x02\x4a\x00\x0d\x00\ \x30\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\ \x23\x00\x09\x3e\x59\xbb\x00\x11\x00\x01\x00\x2d\x00\x04\x2b\xbb\ \x00\x00\x00\x01\x00\x19\x00\x04\x2b\xba\x00\x16\x00\x2d\x00\x23\ \x11\x12\x39\xb8\x00\x16\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x23\ \x10\xb9\x00\x06\x00\x01\xf4\x30\x31\x25\x32\x36\x37\x2e\x01\x23\ \x22\x0e\x02\x15\x14\x16\x07\x1e\x01\x33\x32\x3e\x02\x37\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x23\x22\x26\x27\x01\x19\x25\x54\x2a\x08\x54\x48\x1d\x31\x24\x15\ \x45\x59\x18\x42\x25\x25\x45\x35\x21\x02\x27\x5d\x31\x2c\x49\x34\ \x1d\x22\x3b\x4d\x2a\x34\x5a\x42\x25\x2d\x4a\x60\x34\x3b\x57\x20\ \xed\x27\x2f\x61\x65\x14\x26\x34\x21\x44\x49\xcc\x17\x1b\x1c\x40\ \x69\x4d\x26\x2c\x1a\x33\x4c\x32\x2e\x4d\x37\x1e\x26\x4d\x73\x4d\ \x63\x8b\x57\x28\x27\x1d\x00\x00\x01\x00\xdb\xff\xf4\x01\x7d\x00\ \x9d\x00\x0b\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x03\xdc\x30\x31\x37\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\xdb\x2f\x22\x22\x2f\x2f\x22\ \x22\x2f\x48\x26\x2f\x2f\x26\x26\x2e\x2e\x00\x00\x01\x00\xc5\xff\ \x2b\x01\x8c\x00\x9b\x00\x12\x00\x0b\x00\xba\x00\x0c\x00\x06\x00\ \x03\x2b\x30\x31\x17\x3e\x01\x37\x0e\x01\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x07\xc5\x3e\x3e\x02\x05\x09\x05\x20\x2e\ \x30\x20\x2d\x2d\x5d\x53\xa1\x1c\x4f\x3c\x01\x01\x25\x26\x25\x27\ \x45\x3b\x58\x79\x1f\x00\x00\xff\xff\x00\xdb\xff\xf4\x01\x7d\x02\ \x03\x02\x27\x01\xe3\x00\x00\x01\x66\x00\x06\x01\xe3\x00\x00\xff\ \xff\x00\xc5\xff\x2b\x01\x8c\x02\x03\x02\x27\x01\xe3\x00\x00\x01\ \x66\x00\x06\x01\xe4\x00\x00\x00\x03\x00\x20\xff\xf4\x02\x38\x00\ \x8a\x00\x0b\x00\x17\x00\x23\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x09\x2f\x1b\xb9\x00\x09\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x15\x2f\x1b\xb9\x00\x15\x00\x03\x3e\x59\xb8\x00\x00\x45\ \x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xb8\x00\x09\ \x10\xb8\x00\x03\xdc\xb8\x00\x0f\xd0\xb8\x00\x1b\xd0\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\ \x16\x15\x14\x06\x23\x22\x26\x37\x34\x36\x33\x32\x16\x15\x14\x06\ \x23\x22\x26\x20\x29\x1d\x1d\x28\x28\x1d\x1d\x29\xc6\x29\x1d\x1d\ \x29\x29\x1d\x1d\x29\xc7\x28\x1d\x1d\x29\x29\x1d\x1d\x28\x3f\x22\ \x29\x29\x22\x21\x2a\x2a\x21\x22\x29\x29\x22\x21\x2a\x2a\x21\x22\ \x29\x29\x22\x21\x2a\x2a\x00\x00\x02\x00\xe3\xff\xf4\x01\x75\x02\ \x9e\x00\x05\x00\x11\x00\x2d\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\xb8\x00\x09\xdc\xb8\x00\ \x05\xdc\x30\x31\x01\x27\x33\x07\x03\x23\x07\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x01\x06\x02\x50\x02\x0a\x38\x2d\x2b\x1e\ \x1e\x2b\x2b\x1e\x1e\x2b\x02\x40\x5e\x5e\xfe\xa8\xa6\x23\x29\x29\ \x23\x24\x2a\x2a\x00\x00\x00\x00\x02\x00\xe3\xff\x48\x01\x75\x01\ \xf2\x00\x05\x00\x11\x00\x1c\x00\xb8\x00\x00\x45\x58\xb8\x00\x0f\ \x2f\x1b\xb9\x00\x0f\x00\x07\x3e\x59\xb8\x00\x09\xdc\xb8\x00\x04\ \xdc\x30\x31\x05\x17\x23\x37\x13\x33\x37\x14\x06\x23\x22\x26\x35\ \x34\x36\x33\x32\x16\x01\x52\x02\x50\x02\x0a\x38\x2d\x2b\x1e\x1e\ \x2b\x2b\x1e\x1e\x2b\x5a\x5e\x5e\x01\x58\xa7\x24\x29\x29\x24\x23\ \x2a\x2a\x00\x00\x02\x00\x6d\xff\xf4\x01\xdf\x02\xaa\x00\x1d\x00\ \x29\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\ \x27\x00\x03\x3e\x59\xbb\x00\x11\x00\x01\x00\x0a\x00\x04\x2b\xb8\ \x00\x27\x10\xb8\x00\x21\xdc\xb8\x00\x00\xdc\x30\x31\x37\x26\x3e\ \x04\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x04\x17\x07\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\ \xf2\x06\x12\x23\x2c\x27\x1a\x37\x37\x26\x41\x1b\x31\x22\x5c\x3a\ \x2a\x44\x31\x1b\x1b\x27\x2d\x25\x15\x05\x66\x2b\x1e\x1e\x2b\x2b\ \x1e\x1e\x2b\xe8\x24\x38\x2e\x28\x27\x2a\x1a\x2a\x37\x1f\x1b\x2d\ \x23\x2e\x16\x29\x39\x24\x21\x33\x2b\x28\x2c\x33\x20\xa6\x23\x29\ \x29\x23\x24\x2a\x2a\x00\x00\x00\x02\x00\x7b\xff\x3c\x01\xec\x01\ \xf2\x00\x1b\x00\x27\x00\x2a\x00\xb8\x00\x00\x45\x58\xb8\x00\x25\ \x2f\x1b\xb9\x00\x25\x00\x07\x3e\x59\xbb\x00\x0a\x00\x01\x00\x11\ \x00\x04\x2b\xb8\x00\x25\x10\xb8\x00\x1f\xdc\xb8\x00\x1b\xdc\x30\ \x31\x25\x16\x0e\x04\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x26\x35\x34\x3e\x04\x27\x37\x14\x06\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x01\x67\x06\x12\x23\x2c\x27\x1a\x38\x37\x26\x41\x1b\ \x30\x21\x5d\x3a\x54\x65\x1b\x27\x2d\x24\x14\x04\x67\x2c\x1e\x1e\ \x2b\x2b\x1e\x1e\x2c\xfe\x24\x38\x2e\x28\x27\x2b\x19\x2a\x36\x1e\ \x1b\x2d\x23\x2e\x54\x48\x21\x33\x2b\x28\x2c\x32\x21\xa7\x24\x29\ \x29\x24\x23\x2a\x2a\x00\x00\x00\x01\x00\xf5\x01\x60\x01\x63\x02\ \xaf\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x27\x33\x0f\x01\x23\xf7\x02\x6e\x02\x19\x38\x02\x41\x6e\x6e\ \xe1\x00\x00\xff\xff\x00\x83\x01\x60\x01\xd6\x02\xaf\x02\x26\x01\ \xec\x8e\x00\x00\x06\x01\xec\x73\x00\x00\x00\x00\x01\x00\xd1\x01\ \x5e\x01\x7c\x02\xbb\x00\x11\x00\x0b\x00\xba\x00\x05\x00\x0b\x00\ \x03\x2b\x30\x31\x01\x0e\x01\x07\x36\x33\x32\x16\x15\x14\x06\x23\ \x22\x26\x35\x34\x36\x37\x01\x7c\x2f\x35\x03\x0c\x0e\x1f\x27\x2a\ \x20\x27\x33\x4c\x44\x02\x8b\x1b\x4f\x34\x06\x28\x20\x23\x2a\x3f\ \x39\x4b\x77\x23\x00\x00\x00\x00\x01\x00\xd9\x01\x5e\x01\x84\x02\ \xbb\x00\x11\x00\x0b\x00\xba\x00\x05\x00\x0b\x00\x03\x2b\x30\x31\ \x13\x3e\x01\x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\ \x06\x07\xd9\x30\x35\x03\x0c\x0e\x20\x27\x2a\x20\x28\x32\x4c\x43\ \x01\x8e\x1a\x4f\x35\x06\x27\x20\x23\x2b\x40\x39\x4b\x76\x23\xff\ \xff\x00\x5f\x01\x5e\x01\xef\x02\xbb\x02\x26\x01\xee\x8e\x00\x00\ \x06\x01\xee\x73\x00\x00\x00\xff\xff\x00\x67\x01\x5e\x01\xf7\x02\ \xbb\x02\x26\x01\xef\x8e\x00\x00\x06\x01\xef\x73\x00\x00\x00\xff\ \xff\x00\xd9\xff\x1f\x01\x84\x00\x7c\x02\x07\x01\xef\x00\x00\xfd\ \xc1\x00\x00\xff\xff\x00\x67\xff\x1f\x01\xf7\x00\x7c\x02\x27\x01\ \xef\xff\x8e\xfd\xc1\x00\x07\x01\xef\x00\x73\xfd\xc1\x00\x00\x00\ \x01\x00\xc5\x00\x34\x01\x85\x01\xc4\x00\x06\x00\x0b\x00\xba\x00\ \x02\x00\x06\x00\x03\x2b\x30\x31\x37\x35\x37\x17\x07\x17\x07\xc5\ \x99\x27\x7f\x7f\x27\xd4\x50\xa0\x23\xa5\xa6\x22\x00\x00\x00\x00\ \x01\x00\xd3\x00\x34\x01\x93\x01\xc4\x00\x06\x00\x0b\x00\xba\x00\ \x02\x00\x05\x00\x03\x2b\x30\x31\x25\x27\x37\x17\x15\x07\x27\x01\ \x52\x7f\x27\x99\x99\x27\xfc\xa5\x23\xa0\x50\xa0\x22\x00\x00\xff\ \xff\x00\x53\x00\x34\x01\xf8\x01\xc4\x02\x26\x01\xf4\x8e\x00\x00\ \x06\x01\xf4\x73\x00\x00\x00\xff\xff\x00\x61\x00\x34\x02\x06\x01\ \xc4\x02\x26\x01\xf5\x8e\x00\x00\x06\x01\xf5\x73\x00\x00\x00\xff\ \xff\x00\x55\x01\x2b\x02\x03\x01\x69\x02\x06\x02\x97\x00\x00\xff\ \xff\x00\x55\x01\x2b\x02\x03\x01\x69\x02\x06\x02\x97\x00\x00\x00\ \x01\x00\x50\x00\xd8\x02\x08\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x50\x01\ \xb8\xfe\x48\x01\x20\x48\x00\x00\x01\x00\x14\x00\xd8\x02\x44\x01\ \x20\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x13\x21\x15\x21\x14\x02\x30\xfd\xd0\x01\x20\x48\x00\x00\ \x01\x00\x50\x00\xd8\x02\x08\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x50\x01\ \xb8\xfe\x48\x01\x20\x48\x00\xff\xff\x00\x14\x00\xd8\x02\x44\x01\ \x20\x02\x06\x01\xfb\x00\x00\xff\xff\x00\xdb\x01\x07\x01\x7d\x01\ \xb0\x02\x07\x01\xe3\x00\x00\x01\x13\x00\x00\x00\x01\x00\x97\x00\ \x73\x01\xc1\x01\x99\x00\x13\x00\x0b\x00\xba\x00\x0a\x00\x00\x00\ \x03\x2b\x30\x31\x25\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x01\x2c\x1e\x36\x29\x18\x18\x29\x36\x1e\x1e\x36\ \x29\x18\x18\x29\x36\x73\x15\x27\x36\x21\x21\x36\x27\x15\x15\x27\ \x36\x21\x21\x36\x27\x15\x00\x00\x01\x00\x3c\xff\x74\x02\x1c\xff\ \xbb\x00\x03\x00\x0d\x00\xbb\x00\x00\x00\x01\x00\x01\x00\x04\x2b\ \x30\x31\x05\x15\x21\x35\x02\x1c\xfe\x20\x45\x47\x47\x00\x00\x00\ \x01\x00\xd0\xff\x50\x01\xde\x02\xdc\x00\x0e\x00\x0b\x00\xba\x00\ \x06\x00\x00\x00\x03\x2b\x30\x31\x05\x2e\x01\x35\x34\x36\x37\x17\ \x0e\x01\x15\x14\x16\x17\x07\x01\xb1\x68\x79\x79\x68\x2d\x65\x5f\ \x5f\x65\x2d\xb0\x51\xe4\x91\x91\xe4\x51\x2a\x55\xc8\x7f\x7f\xc8\ \x55\x2a\x00\x00\x01\x00\x7a\xff\x50\x01\x88\x02\xdc\x00\x0d\x00\ \x0b\x00\xba\x00\x07\x00\x0d\x00\x03\x2b\x30\x31\x17\x3e\x01\x35\ \x34\x26\x27\x37\x1e\x01\x15\x14\x06\x07\x7a\x65\x5f\x5f\x65\x2d\ \x68\x79\x79\x68\x86\x55\xc8\x7f\x7f\xc8\x55\x2a\x51\xe4\x91\x91\ \xe4\x51\x00\x00\x01\x00\xe2\xff\x68\x01\xf6\x02\xc4\x00\x07\x00\ \x17\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x23\x11\x33\x15\x21\ \xe2\x01\x14\xd3\xd3\xfe\xec\x02\xc4\x30\xfd\x04\x30\x00\x00\x00\ \x01\x00\x63\xff\x68\x01\x77\x02\xc4\x00\x07\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x05\x00\x04\x2b\xbb\x00\x04\x00\x01\x00\x01\x00\ \x04\x2b\x30\x31\x05\x11\x23\x35\x21\x11\x21\x35\x01\x35\xd2\x01\ \x14\xfe\xec\x68\x02\xfc\x30\xfc\xa4\x30\x00\x00\x01\x00\x78\xff\ \x68\x01\xf6\x02\xc4\x00\x39\x00\x2b\x00\xbb\x00\x33\x00\x01\x00\ \x34\x00\x04\x2b\xbb\x00\x19\x00\x01\x00\x1a\x00\x04\x2b\xbb\x00\ \x0b\x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x27\x00\x0a\x00\x0b\x11\ \x12\x39\x30\x31\x05\x34\x3e\x02\x35\x34\x2e\x02\x23\x35\x32\x3e\ \x02\x35\x34\x26\x35\x34\x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\ \x14\x16\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x06\x15\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x01\x00\x03\x03\x03\x0c\x20\x39\x2c\ \x2c\x39\x20\x0c\x09\x16\x2e\x46\x2f\x3d\x34\x26\x31\x1b\x0a\x06\ \x27\x34\x34\x27\x06\x0a\x1b\x31\x26\x34\x3d\x2f\x46\x2e\x16\x13\ \x1b\x31\x2e\x2e\x19\x0f\x1b\x16\x0e\x34\x0e\x16\x1b\x0f\x30\x5d\ \x34\x27\x33\x1e\x0d\x30\x0a\x15\x23\x18\x2b\x5b\x2f\x31\x33\x09\ \x04\x09\x33\x31\x33\x54\x2e\x18\x23\x15\x0a\x30\x0d\x1e\x33\x00\ \x01\x00\x63\xff\x68\x01\xe0\x02\xc4\x00\x39\x00\x2b\x00\xbb\x00\ \x00\x00\x01\x00\x37\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x17\x00\ \x04\x2b\xbb\x00\x27\x00\x01\x00\x28\x00\x04\x2b\xba\x00\x0c\x00\ \x28\x00\x27\x11\x12\x39\x30\x31\x17\x32\x3e\x02\x35\x34\x26\x35\ \x34\x36\x37\x35\x2e\x01\x35\x34\x36\x35\x34\x2e\x02\x2b\x01\x35\ \x33\x32\x1e\x02\x15\x14\x06\x15\x14\x1e\x02\x33\x15\x22\x0e\x02\ \x15\x14\x1e\x02\x15\x14\x0e\x02\x2b\x01\x35\x96\x26\x31\x1c\x0a\ \x06\x26\x34\x34\x26\x06\x0a\x1c\x31\x26\x33\x3d\x2f\x45\x2e\x16\ \x09\x0c\x20\x39\x2c\x2c\x39\x20\x0c\x03\x03\x03\x16\x2e\x45\x2f\ \x3d\x68\x0a\x15\x23\x18\x2e\x54\x33\x31\x33\x09\x04\x09\x33\x31\ \x2f\x5b\x2b\x18\x23\x15\x0a\x30\x0d\x1e\x33\x27\x34\x5d\x30\x0f\ \x1b\x16\x0e\x34\x0e\x16\x1b\x0f\x19\x2e\x2e\x31\x1b\x27\x33\x1e\ \x0d\x30\x00\x00\x01\x00\x63\xff\x60\x01\xf5\x02\xc6\x00\x03\x00\ \x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\ \x0f\x3e\x59\xb8\x00\x00\xdc\x30\x31\x17\x23\x01\x33\xad\x4a\x01\ \x48\x4a\xa0\x03\x66\x00\x00\x00\x01\x01\x07\xff\x06\x01\x51\x02\ \xee\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x01\x33\x11\x23\x01\x07\x4a\x4a\x02\xee\xfc\x18\x00\x00\x00\x00\ \x01\x00\x63\xff\x60\x01\xf5\x02\xc6\x00\x03\x00\x18\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x02\xdc\x30\x31\x13\x33\x01\x23\x63\x4a\x01\x48\x4a\x02\xc6\ \xfc\x9a\x00\x00\x02\x01\x07\xff\x06\x01\x51\x02\xee\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x05\x00\x03\x2b\xba\x00\x03\x00\ \x07\x00\x03\x2b\x30\x31\x01\x33\x11\x23\x17\x11\x23\x11\x01\x07\ \x4a\x4a\x4a\x4a\x02\xee\xfe\x35\x4d\xfe\x30\x01\xd0\x00\x00\x00\ \x01\x00\x54\x00\x6f\x02\x04\x02\x2c\x00\x0e\x00\x2f\x00\xb8\x00\ \x0e\x2f\xba\x00\x01\x00\x0e\x00\x05\x11\x12\x39\xb8\x00\x01\x10\ \xb9\x00\x04\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x01\x10\xb8\x00\ \x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x0c\xd0\x30\x31\x3f\x01\x27\x37\ \x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\x8a\x6c\xa2\x10\xa7\ \x09\x30\x09\xa7\x10\xa2\x6c\x2a\x78\x78\x8d\xa5\x46\x2e\x37\xbd\ \xbd\x37\x2e\x46\xa5\x1e\x9f\x9f\x00\x00\x00\x00\x01\x00\x7f\xff\ \xb0\x01\xd9\x02\xc8\x00\x0b\x00\x2d\x00\xbb\x00\x03\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x09\xd0\xb8\x00\x08\xd0\ \xb8\x00\x01\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x07\xd0\ \xb8\x00\x02\xd0\x30\x31\x01\x07\x35\x17\x27\x33\x07\x37\x15\x27\ \x13\x23\x01\x0e\x8f\x8f\x05\x46\x05\x8f\x8f\x05\x46\x01\xeb\x05\ \x47\x05\xa0\xa0\x05\x47\x05\xfd\xc5\x00\x00\x00\x01\x00\x7f\xff\ \xb0\x01\xd9\x02\xc8\x00\x15\x00\x57\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x14\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x0e\xd0\xb8\x00\x0f\xd0\xb8\x00\x00\xd0\xb8\x00\ \x03\x10\xb8\x00\x0c\xd0\xb8\x00\x0b\xd0\xb8\x00\x04\xd0\xb8\x00\ \x06\x10\xb8\x00\x09\xd0\xb8\x00\x0a\xd0\xb8\x00\x05\xd0\xb8\x00\ \x14\x10\xb8\x00\x11\xd0\xb8\x00\x10\xd0\xb8\x00\x15\xd0\x30\x31\ \x37\x17\x27\x37\x07\x35\x17\x27\x33\x07\x37\x15\x27\x17\x07\x37\ \x15\x27\x17\x23\x37\x07\x7f\x8f\x05\x05\x8f\x8f\x05\x46\x05\x8f\ \x8f\x05\x05\x8f\x8f\x05\x46\x05\x8f\x92\x07\xb1\xb1\x07\x47\x05\ \xa0\xa0\x05\x47\x07\xb1\xb1\x07\x47\x05\xa0\xa0\x05\x00\x00\x00\ \x02\x00\x5b\xff\xc0\x01\xfd\x02\xac\x00\x0f\x00\x47\x00\x4f\x00\ \xbb\x00\x2f\x00\x01\x00\x28\x00\x04\x2b\xbb\x00\x44\x00\x01\x00\ \x13\x00\x04\x2b\xba\x00\x32\x00\x28\x00\x13\x11\x12\x39\xba\x00\ \x16\x00\x44\x00\x2f\x11\x12\x39\xba\x00\x20\x00\x32\x00\x16\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x00\xd0\xba\x00\x3c\x00\x16\x00\ \x32\x11\x12\x39\xb8\x00\x3c\x10\xb8\x00\x08\xd0\x30\x31\x25\x3e\ \x01\x35\x34\x2e\x02\x27\x0e\x01\x15\x14\x1e\x02\x13\x2e\x01\x23\ \x22\x06\x15\x14\x1e\x04\x15\x14\x06\x07\x1e\x01\x15\x14\x0e\x02\ \x23\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x2e\x04\x35\x34\ \x36\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x16\x17\x01\x73\x20\x23\ \x29\x3e\x49\x20\x1f\x25\x29\x3f\x49\x54\x1a\x38\x23\x2a\x26\x2a\ \x3f\x49\x3f\x2a\x31\x29\x0e\x0f\x18\x2a\x3b\x24\x37\x5c\x20\x32\ \x1a\x3d\x2a\x29\x2d\x2a\x3e\x4a\x3e\x2a\x33\x28\x0e\x11\x13\x26\ \x38\x26\x32\x51\x1e\xc0\x0e\x26\x22\x22\x2c\x21\x1d\x12\x10\x29\ \x1f\x21\x2b\x21\x1c\x01\x6b\x14\x1a\x25\x1a\x1b\x24\x1e\x1e\x2b\ \x3d\x2e\x30\x3c\x16\x10\x27\x1a\x1e\x32\x24\x15\x26\x21\x2d\x18\ \x1c\x28\x1d\x1c\x26\x1e\x1d\x2a\x3d\x2e\x2d\x40\x15\x10\x27\x1a\ \x1a\x2f\x24\x15\x22\x17\x00\x00\x02\x00\x48\xff\xb0\x01\xe5\x02\ \x90\x00\x03\x00\x10\x00\x25\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x0f\x2f\x1b\xb9\x00\x0f\x00\x0d\x3e\x59\x30\x31\x01\x33\x11\x23\ \x03\x23\x22\x2e\x02\x35\x34\x3e\x02\x3b\x01\x01\x94\x51\x51\x36\ \x20\x35\x5a\x42\x25\x24\x3f\x56\x32\x2b\x02\x90\xfd\x20\x01\x32\ \x19\x35\x52\x39\x3b\x51\x33\x16\x00\x00\x00\x00\x03\x00\x1e\xff\ \xf5\x02\x3a\x02\x8d\x00\x13\x00\x27\x00\x45\x00\x4d\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x03\x3e\x59\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \xb8\x00\x2d\xd0\xb9\x00\x34\x00\x01\xf4\xb8\x00\x19\x10\xb8\x00\ \x41\xd0\xb9\x00\x3a\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x17\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x2e\x02\x1e\x29\x49\x63\x39\x39\x63\x49\x29\x29\ \x49\x63\x39\x39\x63\x49\x29\x2e\x20\x3b\x53\x32\x32\x53\x3b\x20\ \x20\x3b\x53\x32\x32\x53\x3b\x20\x46\x1b\x2e\x3b\x21\x23\x31\x14\ \x22\x10\x1f\x14\x2e\x38\x35\x2d\x1a\x26\x11\x1e\x17\x34\x26\x22\ \x3b\x2c\x19\x01\x43\x4c\x7b\x55\x2e\x2e\x55\x7b\x4c\x4d\x7b\x57\ \x2f\x2f\x57\x7b\x4d\x42\x6b\x4d\x2a\x2a\x4d\x6b\x42\x42\x6a\x4c\ \x29\x29\x4c\x6a\x42\x2b\x46\x32\x1a\x1b\x14\x27\x0e\x11\x4b\x3b\ \x42\x4d\x14\x0e\x2a\x14\x1b\x1b\x33\x49\x00\x00\x04\x00\x1e\xff\ \xf5\x02\x3a\x02\x8d\x00\x0e\x00\x17\x00\x2b\x00\x3f\x00\x55\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x03\ \x3e\x59\xbb\x00\x0f\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x1d\x10\ \xb9\x00\x3b\x00\x01\xf4\xb8\x00\x01\xd0\xb8\x00\x27\x10\xb9\x00\ \x31\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\x00\x01\x10\xb9\x00\x15\x00\ \x01\xf4\x30\x31\x13\x33\x32\x1e\x02\x15\x14\x0e\x02\x2b\x01\x15\ \x23\x37\x32\x36\x35\x34\x26\x2b\x01\x15\x27\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x23\x22\x2e\x02\x37\x14\x1e\x02\x33\x32\ \x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\xc1\x72\x1c\x32\x25\x15\ \x15\x25\x32\x1c\x31\x41\x68\x27\x2a\x2b\x26\x27\xe4\x29\x49\x63\ \x39\x39\x63\x49\x29\x29\x49\x63\x39\x39\x63\x49\x29\x2e\x20\x3b\ \x53\x32\x32\x53\x3b\x20\x20\x3b\x53\x32\x32\x53\x3b\x20\x01\xf4\ \x0e\x1c\x2d\x1e\x21\x31\x21\x10\x73\xa5\x25\x2a\x24\x20\x93\x15\ \x4c\x7b\x55\x2e\x2e\x55\x7b\x4c\x4d\x7b\x57\x2f\x2f\x57\x7b\x4d\ \x42\x6b\x4d\x2a\x2a\x4d\x6b\x42\x42\x6a\x4c\x29\x29\x4c\x6a\x00\ \x04\x00\x70\x01\x3f\x01\xe8\x02\xc9\x00\x13\x00\x27\x00\x35\x00\ \x3e\x00\x3d\x00\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\xbb\x00\ \x0a\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x32\x00\ \x04\x2b\xb8\x00\x1e\x10\xb8\x00\x29\xd0\xb8\x00\x32\x10\xb8\x00\ \x2f\xd0\xb8\x00\x14\x10\xb8\x00\x34\xd0\xb8\x00\x31\xd0\x30\x31\ \x01\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\ \x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x03\x33\x32\x16\x15\x14\x06\x07\x17\x23\x27\x23\x15\x23\x37\x32\ \x36\x35\x34\x26\x2b\x01\x15\x01\x2c\x27\x45\x33\x1d\x1d\x33\x45\ \x27\x27\x44\x33\x1e\x1e\x33\x44\x27\x1f\x37\x27\x17\x17\x27\x37\ \x1f\x20\x36\x28\x17\x17\x28\x36\x29\x4c\x20\x2f\x15\x11\x2e\x2e\ \x23\x29\x29\x43\x14\x18\x13\x17\x1c\x01\x3f\x1d\x34\x48\x2c\x2c\ \x48\x34\x1d\x1d\x34\x48\x2c\x2c\x48\x34\x1d\x25\x17\x2a\x3b\x24\ \x23\x3b\x2b\x18\x18\x2b\x3b\x23\x24\x3b\x2a\x17\x01\x08\x1d\x24\ \x12\x1f\x06\x53\x46\x46\x66\x11\x11\x0f\x12\x43\x00\x00\x00\x00\ \x02\xff\xfb\x01\x6e\x02\x44\x02\xa4\x00\x13\x00\x1b\x00\x51\x00\ \xb8\x00\x1a\x2f\xbb\x00\x16\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\ \x04\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x16\x10\xb8\x00\x00\xd0\ \xb8\x00\x16\x10\xb8\x00\x06\xd0\xb8\x00\x01\xd0\xb8\x00\x1a\x10\ \xb8\x00\x13\xd0\xb8\x00\x09\xd0\xb8\x00\x06\x10\xb9\x00\x0c\x00\ \x01\xf4\xb8\x00\x0f\xd0\xb8\x00\x15\x10\xb8\x00\x18\xd0\x30\x31\ \x01\x33\x1f\x01\x33\x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\ \x23\x17\x15\x23\x03\x23\x35\x33\x15\x23\x11\x23\x01\x24\x47\x2d\ \x1b\x04\x1a\x2c\x47\x37\x07\x04\x47\x2a\x48\x04\x07\x36\xc9\x60\ \xfc\x60\x3c\x02\xa4\x72\x50\x50\x72\xfe\xca\x89\x69\xbb\xbb\x69\ \x89\x01\x00\x36\x36\xff\x00\x00\x02\x00\x0f\x01\x62\x02\x44\x02\ \xab\x00\x29\x00\x3d\x00\x5b\x00\xb8\x00\x00\x2f\xbb\x00\x14\x00\ \x01\x00\x1b\x00\x04\x2b\xbb\x00\x2e\x00\x01\x00\x37\x00\x04\x2b\ \xb8\x00\x00\x10\xb9\x00\x07\x00\x01\xf4\xb8\x00\x14\x10\xb8\x00\ \x2a\xd0\xb8\x00\x2a\x2f\xb8\x00\x14\x10\xb8\x00\x30\xd0\xb8\x00\ \x30\x2f\xb8\x00\x2b\xd0\xb8\x00\x00\x10\xb8\x00\x3d\xd0\xb8\x00\ \x33\xd0\xb8\x00\x30\x10\xb9\x00\x36\x00\x01\xf4\xb8\x00\x39\xd0\ \x30\x31\x13\x22\x26\x27\x37\x1e\x01\x33\x32\x36\x35\x34\x26\x2f\ \x01\x2e\x01\x35\x34\x36\x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\ \x15\x14\x16\x1f\x01\x1e\x01\x15\x14\x0e\x02\x13\x33\x1f\x01\x33\ \x3f\x01\x33\x11\x23\x35\x37\x23\x07\x23\x27\x23\x17\x15\x23\x7d\ \x21\x36\x17\x21\x13\x25\x19\x17\x1a\x13\x17\x2e\x16\x25\x38\x30\ \x1c\x32\x11\x1e\x0f\x23\x11\x17\x18\x15\x14\x2e\x1d\x20\x0f\x1c\ \x29\x8e\x47\x2d\x1b\x04\x1a\x2c\x47\x37\x07\x04\x47\x2a\x48\x04\ \x07\x36\x01\x62\x19\x17\x25\x11\x15\x15\x12\x14\x0f\x0b\x18\x0b\ \x27\x23\x27\x31\x16\x10\x27\x0c\x12\x17\x0f\x0f\x13\x09\x17\x0e\ \x26\x23\x12\x20\x1a\x0f\x01\x42\x72\x50\x50\x72\xfe\xca\x89\x69\ \xbb\xbb\x69\x89\x00\x00\x00\x00\x02\x00\x31\xff\x70\x02\x22\x02\ \x7b\x00\x34\x00\x3d\x00\x3f\x00\xbb\x00\x1e\x00\x01\x00\x25\x00\ \x04\x2b\xbb\x00\x2f\x00\x01\x00\x14\x00\x04\x2b\xbb\x00\x38\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x3b\x00\x01\x00\x0e\x00\x04\x2b\ \xba\x00\x02\x00\x06\x00\x2f\x11\x12\x39\xb8\x00\x02\x10\xb9\x00\ \x3a\x00\x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\ \x35\x34\x36\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\ \x32\x1e\x02\x15\x05\x14\x16\x33\x32\x37\x35\x0e\x01\x02\x22\x32\ \x07\x04\x16\x47\x27\x1b\x2f\x23\x14\x88\x80\x11\x24\x39\x27\x2d\ \x52\x3f\x25\x24\x3e\x54\x31\x2d\x43\x1d\x1c\x27\x52\x32\x3b\x6a\ \x50\x2f\x2d\x50\x6b\x3e\x34\x4c\x32\x19\xff\x00\x2b\x25\x38\x38\ \x68\x58\x64\x3a\x1c\x2a\x12\x22\x31\x1e\x4d\x4e\x10\x0e\x24\x40\ \x30\x1c\x2a\x53\x7d\x53\x50\x7d\x56\x2d\x17\x16\x2d\x1b\x1c\x33\ \x63\x94\x60\x60\x90\x60\x31\x24\x40\x57\x33\xb0\x23\x28\x40\x7e\ \x0e\x37\x00\x00\x02\x00\x31\xff\xee\x02\x22\x02\x9c\x00\x34\x00\ \x3d\x00\x61\x00\xb8\x00\x00\x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\ \x2f\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\ \x00\x25\x00\x03\x3e\x59\xbb\x00\x38\x00\x01\x00\x06\x00\x04\x2b\ \xbb\x00\x0e\x00\x01\x00\x3b\x00\x04\x2b\xba\x00\x02\x00\x06\x00\ \x2f\x11\x12\x39\xb8\x00\x2f\x10\xb9\x00\x14\x00\x01\xf4\xb8\x00\ \x25\x10\xb9\x00\x1e\x00\x01\xf4\xb8\x00\x02\x10\xb9\x00\x3a\x00\ \x01\xf4\x30\x31\x25\x23\x27\x23\x0e\x01\x23\x22\x2e\x02\x35\x34\ \x36\x37\x35\x34\x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x33\x32\ \x36\x37\x17\x0e\x01\x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\ \x02\x15\x05\x14\x16\x33\x32\x37\x35\x0e\x01\x02\x22\x32\x07\x04\ \x16\x47\x27\x1b\x2f\x23\x14\x88\x80\x11\x24\x37\x26\x2d\x54\x3f\ \x26\x24\x3e\x54\x31\x2d\x43\x1d\x1c\x27\x52\x32\x3b\x6a\x50\x2f\ \x2e\x50\x6d\x3e\x33\x4b\x32\x18\xff\x00\x2b\x25\x38\x38\x68\x58\ \xad\x3a\x1d\x29\x12\x22\x31\x1e\x4c\x4f\x10\x0a\x1c\x33\x26\x17\ \x25\x49\x6e\x49\x44\x69\x48\x26\x17\x16\x2d\x1a\x1d\x2c\x56\x7f\ \x54\x56\x81\x57\x2b\x20\x38\x4b\x2a\xaa\x23\x27\x40\x7e\x0f\x36\ \x00\x00\x00\x00\x02\x00\x57\x00\x00\x02\x07\x02\x8a\x00\x1b\x00\ \x1f\x00\x8b\x00\xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\ \x08\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\xb9\ \x00\x0c\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\ \xb9\x00\x1b\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\ \x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\x00\x02\x00\x01\x00\x01\x00\ \x04\x2b\xbb\x00\x06\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\xb8\x00\x0e\xd0\xb8\x00\x05\x10\xb8\x00\x1e\xd0\ \xb8\x00\x11\xd0\xb8\x00\x02\x10\xb8\x00\x1f\xd0\xb8\x00\x12\xd0\ \xb8\x00\x01\x10\xb8\x00\x19\xd0\xb8\x00\x15\xd0\x30\x31\x37\x23\ \x35\x33\x37\x23\x35\x33\x37\x33\x07\x33\x37\x33\x07\x33\x15\x23\ \x07\x33\x15\x23\x07\x23\x37\x23\x07\x23\x13\x37\x23\x07\xa6\x4f\ \x56\x13\x55\x5b\x18\x35\x17\x84\x18\x35\x17\x51\x57\x13\x56\x5d\ \x18\x36\x19\x85\x18\x36\xd9\x13\x85\x12\xcc\x39\x94\x3a\xb7\xb7\ \xb7\xb7\x3a\x94\x39\xcc\xcc\xcc\x01\x05\x94\x94\x00\x00\x00\x00\ \x01\x00\x68\x01\x3c\x01\xf0\x02\xc8\x00\x0e\x00\x14\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x0f\x3e\x59\x30\ \x31\x13\x37\x27\x37\x17\x37\x33\x17\x37\x17\x07\x17\x07\x27\x07\ \x9b\x5c\x8f\x10\x93\x09\x30\x09\x93\x10\x8f\x5c\x2a\x67\x67\x01\ \x59\x93\x39\x2e\x2c\xa1\x9f\x2a\x2e\x39\x93\x1d\x8c\x8c\x00\x00\ \x01\x00\x86\x00\xd8\x01\xd2\x01\x20\x00\x03\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x86\x01\ \x4c\xfe\xb4\x01\x20\x48\x00\xff\xff\x00\x86\x00\xd8\x01\xd2\x01\ \x20\x02\x06\x02\x19\x00\x00\x00\x03\x00\x55\xff\x8f\x02\x03\x02\ \xef\x00\x09\x00\x13\x00\x43\x00\x17\x00\xbb\x00\x03\x00\x01\x00\ \x1e\x00\x04\x2b\xbb\x00\x36\x00\x01\x00\x0d\x00\x04\x2b\x30\x31\ \x25\x16\x32\x33\x32\x36\x35\x34\x26\x27\x03\x26\x22\x23\x22\x06\ \x15\x14\x16\x1f\x01\x1e\x03\x15\x14\x0e\x02\x23\x2a\x01\x27\x07\ \x27\x37\x2e\x01\x27\x37\x1e\x01\x17\x37\x2e\x03\x35\x34\x3e\x02\ \x33\x3a\x01\x17\x37\x17\x07\x1e\x01\x17\x07\x2e\x01\x27\x01\x25\ \x05\x0b\x05\x3b\x3e\x3f\x2d\x08\x05\x09\x05\x33\x3b\x38\x2a\x35\ \x20\x3e\x32\x1e\x1f\x37\x4e\x2f\x06\x0c\x06\x1b\x38\x1c\x2a\x48\ \x1a\x27\x19\x39\x20\x24\x1f\x3b\x2e\x1c\x1d\x34\x48\x2b\x07\x0c\ \x06\x19\x38\x19\x21\x34\x17\x2c\x14\x25\x14\x67\x01\x31\x26\x24\ \x2c\x12\x01\x06\x01\x2d\x26\x1e\x26\x10\x14\x0c\x1d\x27\x34\x24\ \x24\x3b\x2b\x17\x01\x94\x06\x97\x0b\x24\x16\x39\x11\x1f\x09\xc3\ \x0c\x1c\x24\x30\x21\x23\x39\x28\x15\x01\x86\x07\x89\x0a\x22\x16\ \x30\x0f\x17\x07\x00\x00\x00\xff\xff\x00\xa1\x01\xac\x01\xb7\x02\ \xf5\x02\x07\x02\x38\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xd0\x01\ \xb8\x01\x61\x02\xe9\x02\x07\x02\x39\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xae\x01\xb8\x01\xa7\x02\xf5\x02\x07\x02\x3a\x00\x01\x01\ \xb8\x00\x00\xff\xff\x00\xac\x01\xac\x01\xa4\x02\xf5\x02\x07\x02\ \x3b\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xac\x01\xb8\x01\xb9\x02\ \xe9\x02\x07\x02\x3c\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xac\x01\ \xac\x01\xa9\x02\xe9\x02\x07\x02\x3d\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xb0\x01\xac\x01\xad\x02\xf5\x02\x07\x02\x3e\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xb7\x01\xb8\x01\xaa\x02\xe9\x02\x07\x02\ \x3f\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xaf\x01\xac\x01\xa9\x02\ \xf5\x02\x07\x02\x40\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xad\x01\ \xac\x01\xa9\x02\xf5\x02\x07\x02\x41\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xec\x01\x6c\x01\x83\x03\x43\x02\x07\x02\x42\x00\x00\x01\ \xb8\x00\x00\xff\xff\x00\xd5\x01\x6c\x01\x6c\x03\x43\x02\x07\x02\ \x43\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xfe\x01\xb0\x01\x5a\x02\ \x0f\x02\x07\x02\x44\x00\x00\x01\xb8\x00\x00\xff\xff\x00\xf4\x01\ \x44\x01\x64\x02\x0f\x02\x07\x02\x45\x00\x00\x01\xb8\x00\x00\xff\ \xff\x00\xa1\xff\x4b\x01\xb7\x00\x94\x02\x07\x02\x38\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xd0\xff\x57\x01\x61\x00\x88\x02\x07\x02\ \x39\x00\x00\xff\x57\x00\x00\xff\xff\x00\xae\xff\x57\x01\xa7\x00\ \x94\x02\x07\x02\x3a\x00\x01\xff\x57\x00\x00\xff\xff\x00\xac\xff\ \x4b\x01\xa4\x00\x94\x02\x07\x02\x3b\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xac\xff\x57\x01\xb9\x00\x88\x02\x07\x02\x3c\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xac\xff\x4b\x01\xa9\x00\x88\x02\x07\x02\ \x3d\x00\x00\xff\x57\x00\x00\xff\xff\x00\xb0\xff\x4b\x01\xad\x00\ \x94\x02\x07\x02\x3e\x00\x00\xff\x57\x00\x00\xff\xff\x00\xb7\xff\ \x57\x01\xaa\x00\x88\x02\x07\x02\x3f\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xaf\xff\x4b\x01\xa9\x00\x94\x02\x07\x02\x40\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xad\xff\x4b\x01\xa9\x00\x94\x02\x07\x02\ \x41\x00\x00\xff\x57\x00\x00\xff\xff\x00\xec\xff\x0b\x01\x83\x00\ \xe2\x02\x07\x02\x42\x00\x00\xff\x57\x00\x00\xff\xff\x00\xd5\xff\ \x0b\x01\x6c\x00\xe2\x02\x07\x02\x43\x00\x00\xff\x57\x00\x00\xff\ \xff\x00\xfe\xff\x4f\x01\x5a\xff\xae\x02\x07\x02\x44\x00\x00\xff\ \x57\x00\x00\xff\xff\x00\xf4\xfe\xe3\x01\x64\xff\xae\x02\x07\x02\ \x45\x00\x00\xff\x57\x00\x00\x00\x02\x00\xa1\xff\xf4\x01\xb7\x01\ \x3d\x00\x0b\x00\x17\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\ \x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\x00\x12\ \x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x0c\x00\x01\xf4\x30\x31\x05\ \x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\ \x26\x23\x22\x06\x15\x14\x16\x01\x2c\x3d\x4e\x4e\x3d\x3d\x4e\x4e\ \x3d\x20\x2e\x2e\x20\x20\x2e\x2e\x0c\x58\x4f\x4e\x54\x54\x4e\x4f\ \x58\x32\x39\x3c\x3c\x35\x35\x3c\x3c\x39\x00\x00\x01\x00\xd0\x00\ \x00\x01\x61\x01\x31\x00\x08\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\x59\xbb\x00\x05\x00\x01\ \x00\x00\x00\x04\x2b\x30\x31\x25\x23\x35\x3e\x01\x37\x33\x11\x23\ \x01\x22\x52\x21\x29\x15\x32\x3f\xe6\x2a\x05\x10\x0c\xfe\xcf\x00\ \x01\x00\xad\x00\x00\x01\xa6\x01\x3d\x00\x18\x00\x2c\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xbb\ \x00\x0d\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x17\x10\xb9\x00\x15\ \x00\x01\xf4\xb8\x00\x00\xd0\x30\x31\x37\x3e\x01\x35\x34\x26\x23\ \x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x07\x33\x15\ \x23\xb7\x4e\x53\x1f\x1d\x14\x26\x0e\x27\x17\x3b\x24\x36\x3e\x13\ \x21\x2c\x19\x88\xef\x24\x3b\x4e\x21\x1b\x20\x17\x13\x21\x1a\x23\ \x35\x32\x14\x27\x27\x29\x16\x35\x00\x00\x00\x00\x01\x00\xac\xff\ \xf4\x01\xa4\x01\x3d\x00\x24\x00\x3c\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\x59\xbb\x00\x16\x00\x01\ \x00\x0f\x00\x04\x2b\xbb\x00\x09\x00\x01\x00\x08\x00\x04\x2b\xb8\ \x00\x21\x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x1b\x00\x08\x00\x09\ \x11\x12\x39\x30\x31\x37\x1e\x01\x33\x32\x36\x35\x34\x23\x35\x32\ \x36\x35\x34\x26\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\ \x07\x1e\x01\x15\x14\x06\x23\x22\x26\x27\xcc\x0f\x31\x1b\x1b\x23\ \x60\x2a\x27\x1a\x1d\x12\x28\x0f\x1e\x13\x3d\x23\x2f\x3b\x38\x20\ \x27\x46\x33\x23\x43\x19\x51\x12\x19\x16\x19\x33\x26\x1c\x17\x14\ \x17\x13\x0f\x26\x14\x19\x2c\x28\x37\x14\x08\x26\x1f\x2d\x30\x1c\ \x1a\x00\x00\x00\x02\x00\xac\x00\x00\x01\xb9\x01\x31\x00\x05\x00\ \x10\x00\x38\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\xb9\x00\ \x09\x00\x03\x3e\x59\xbb\x00\x10\x00\x01\x00\x06\x00\x04\x2b\xbb\ \x00\x02\x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x10\x10\xb8\x00\x00\ \xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x25\x35\x37\x23\x0f\ \x01\x17\x23\x15\x23\x35\x23\x35\x37\x33\x15\x33\x01\x4e\x04\x03\ \x2d\x36\xcd\x32\x39\xa2\x94\x47\x32\x74\x38\x52\x41\x49\x2b\x49\ \x49\x1f\xc9\xbd\x00\x00\x00\x00\x01\x00\xac\xff\xf4\x01\xa9\x01\ \x31\x00\x1d\x00\x44\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\ \xb9\x00\x1a\x00\x03\x3e\x59\xbb\x00\x0f\x00\x01\x00\x10\x00\x04\ \x2b\xbb\x00\x14\x00\x01\x00\x09\x00\x04\x2b\xb8\x00\x1a\x10\xb9\ \x00\x03\x00\x01\xf4\xba\x00\x12\x00\x09\x00\x14\x11\x12\x39\xb8\ \x00\x12\x10\xb8\x00\x0d\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x35\ \x34\x26\x23\x22\x06\x07\x27\x37\x33\x15\x23\x07\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x27\xcc\x11\x2d\x1e\x1d\x25\x24\x1f\x14\ \x1d\x0f\x1f\x11\xbd\x8b\x0a\x18\x20\x32\x3e\x46\x36\x2a\x3c\x1b\ \x51\x12\x19\x1e\x1b\x1d\x1d\x0c\x0b\x14\x9b\x36\x46\x0c\x33\x30\ \x30\x3a\x1c\x1a\x00\x00\x00\x00\x02\x00\xb0\xff\xf4\x01\xad\x01\ \x3d\x00\x0b\x00\x26\x00\x46\x00\xb8\x00\x00\x45\x58\xb8\x00\x1d\ \x2f\x1b\xb9\x00\x1d\x00\x03\x3e\x59\xbb\x00\x23\x00\x01\x00\x0f\ \x00\x04\x2b\xbb\x00\x15\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x1d\ \x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x12\x00\x1d\x00\x23\x11\x12\ \x39\xb8\x00\x12\x10\xb9\x00\x09\x00\x01\xf4\x30\x31\x25\x32\x36\ \x35\x34\x26\x23\x22\x06\x07\x1e\x01\x37\x2e\x01\x23\x22\x06\x07\ \x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x35\x34\x36\x33\ \x32\x16\x17\x01\x38\x1c\x1e\x1c\x1f\x14\x23\x14\x06\x2c\x6f\x0e\ \x1e\x14\x2b\x34\x03\x13\x2d\x1b\x33\x34\x11\x1f\x2b\x19\x3b\x4e\ \x55\x45\x1e\x2c\x13\x26\x1d\x19\x17\x1e\x10\x13\x26\x22\xce\x0b\ \x0d\x3b\x39\x11\x12\x35\x2a\x15\x26\x1d\x10\x51\x47\x56\x5b\x12\ \x0e\x00\x00\x00\x01\x00\xb7\x00\x00\x01\xaa\x01\x31\x00\x0f\x00\ \x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\ \x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x05\ \x10\xb8\x00\x09\xd0\x30\x31\x33\x3e\x03\x37\x23\x35\x33\x15\x0e\ \x03\x07\x23\xfd\x02\x0d\x18\x24\x18\xa9\xf3\x20\x28\x18\x0a\x02\ \x41\x27\x41\x3b\x3a\x1f\x35\x24\x23\x3f\x3f\x44\x28\x00\x00\x00\ \x03\x00\xaf\xff\xf4\x01\xa9\x01\x3d\x00\x0c\x00\x18\x00\x38\x00\ \x3c\x00\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\x34\x00\ \x03\x3e\x59\xbb\x00\x25\x00\x01\x00\x13\x00\x04\x2b\xb8\x00\x34\ \x10\xb9\x00\x03\x00\x01\xf4\xba\x00\x06\x00\x34\x00\x13\x11\x12\ \x39\xba\x00\x16\x00\x25\x00\x03\x11\x12\x39\x30\x31\x37\x14\x16\ \x33\x32\x36\x35\x34\x2e\x02\x27\x06\x37\x3e\x01\x35\x34\x26\x23\ \x22\x06\x15\x14\x16\x07\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\ \x33\x32\x16\x15\x14\x06\x07\x15\x1e\x01\x15\x14\x0e\x02\x23\x22\ \x2e\x02\xe9\x27\x1c\x1a\x29\x0f\x18\x1f\x11\x2f\x57\x14\x10\x1d\ \x1b\x19\x1e\x2c\x72\x27\x1a\x17\x1f\x12\x1f\x2a\x17\x32\x41\x21\ \x14\x1a\x25\x13\x22\x2d\x1b\x1c\x2e\x21\x12\x50\x14\x1b\x19\x14\ \x0e\x13\x0d\x0a\x05\x16\x3c\x0c\x1a\x0f\x12\x18\x17\x11\x16\x18\ \x6e\x20\x25\x0c\x04\x0e\x1f\x1b\x12\x1f\x17\x0c\x2f\x25\x1c\x21\ \x0b\x04\x0b\x25\x21\x12\x20\x18\x0e\x0e\x18\x20\x00\x00\x00\x00\ \x02\x00\xad\xff\xf4\x01\xa9\x01\x3d\x00\x0b\x00\x24\x00\x46\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\x00\x03\x3e\ \x59\xbb\x00\x1b\x00\x01\x00\x09\x00\x04\x2b\xbb\x00\x03\x00\x01\ \x00\x15\x00\x04\x2b\xba\x00\x12\x00\x1b\x00\x21\x11\x12\x39\xb8\ \x00\x12\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x21\x10\xb9\x00\x0f\ \x00\x01\xf4\x30\x31\x37\x14\x16\x33\x32\x36\x37\x2e\x01\x23\x22\ \x06\x07\x1e\x01\x33\x32\x36\x37\x0e\x01\x23\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x27\xe7\x1c\x1f\x14\x23\x13\ \x05\x2c\x1a\x1b\x1f\x1b\x0e\x1f\x14\x2a\x32\x04\x13\x2d\x1a\x33\ \x33\x40\x33\x3b\x4e\x55\x45\x1d\x2d\x13\xd5\x17\x1d\x0f\x12\x26\ \x24\x1e\xb1\x0b\x0c\x39\x39\x10\x12\x35\x2a\x2c\x3c\x51\x47\x56\ \x5b\x13\x0e\x00\x01\x00\xec\xff\xb4\x01\x83\x01\x8b\x00\x0d\x00\ \x0b\x00\xba\x00\x03\x00\x0b\x00\x03\x2b\x30\x31\x37\x34\x36\x37\ \x17\x0e\x01\x15\x14\x16\x17\x07\x2e\x01\xec\x37\x32\x2e\x2d\x28\ \x28\x2d\x2e\x32\x37\x9f\x4b\x6f\x32\x21\x2d\x63\x3b\x3b\x63\x2d\ \x20\x31\x6f\x00\x01\x00\xd5\xff\xb4\x01\x6c\x01\x8b\x00\x0d\x00\ \x0b\x00\xba\x00\x0b\x00\x03\x00\x03\x2b\x30\x31\x25\x14\x06\x07\ \x27\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x01\x6c\x37\x32\x2e\x2d\ \x28\x28\x2d\x2e\x32\x37\x9f\x4b\x6f\x31\x20\x2d\x63\x3b\x3b\x63\ \x2d\x21\x32\x6f\x00\x00\x00\x00\x01\x00\xfe\xff\xf8\x01\x5a\x00\ \x57\x00\x0b\x00\x1a\x00\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\x1b\ \xb9\x00\x09\x00\x03\x3e\x59\xb9\x00\x03\x00\x01\xf4\x30\x31\x37\ \x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\xfe\x1a\x14\x14\x1a\ \x1a\x14\x14\x1a\x27\x16\x1a\x1a\x16\x15\x1a\x1a\x00\x00\x00\x00\ \x01\x00\xf4\xff\x8c\x01\x64\x00\x57\x00\x11\x00\x2b\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\x3e\x59\ \xb9\x00\x0b\x00\x01\xf4\x30\x31\x17\x3e\x01\x35\x06\x23\x22\x26\ \x35\x34\x36\x33\x32\x16\x15\x14\x06\x07\xf4\x1d\x23\x02\x05\x11\ \x1d\x1c\x13\x1a\x1c\x33\x2d\x4f\x0b\x27\x1d\x01\x15\x15\x15\x19\ \x25\x24\x2d\x44\x11\x00\x00\xff\xff\x00\xa1\x01\x40\x01\xb7\x02\ \x89\x02\x07\x02\x38\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xd0\x01\ \x4c\x01\x61\x02\x7d\x02\x07\x02\x39\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xae\x01\x4c\x01\xa7\x02\x89\x02\x07\x02\x3a\x00\x01\x01\ \x4c\x00\x00\xff\xff\x00\xac\x01\x40\x01\xa4\x02\x89\x02\x07\x02\ \x3b\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xac\x01\x4c\x01\xb9\x02\ \x7d\x02\x07\x02\x3c\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xac\x01\ \x40\x01\xa9\x02\x7d\x02\x07\x02\x3d\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xb0\x01\x40\x01\xad\x02\x89\x02\x07\x02\x3e\x00\x00\x01\ \x4c\x00\x00\xff\xff\x00\xb7\x01\x4c\x01\xaa\x02\x7d\x02\x07\x02\ \x3f\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xaf\x01\x40\x01\xa9\x02\ \x89\x02\x07\x02\x40\x00\x00\x01\x4c\x00\x00\xff\xff\x00\xad\x01\ \x40\x01\xa9\x02\x89\x02\x07\x02\x41\x00\x00\x01\x4c\x00\x00\xff\ \xff\x00\xec\x00\xbe\x01\x83\x02\x95\x02\x07\x02\x42\x00\x00\x01\ \x0a\x00\x00\xff\xff\x00\xd5\x00\xbe\x01\x6c\x02\x95\x02\x07\x02\ \x43\x00\x00\x01\x0a\x00\x00\xff\xff\x00\xfe\x01\x02\x01\x5a\x01\ \x61\x02\x07\x02\x44\x00\x00\x01\x0a\x00\x00\xff\xff\x00\xf4\x00\ \x96\x01\x64\x01\x61\x02\x07\x02\x45\x00\x00\x01\x0a\x00\x00\xff\ \xff\x00\xa7\x00\xfc\x01\xba\x02\x4e\x02\x06\x02\x57\x00\x00\xff\ \xff\x00\x89\x00\xfc\x01\xb6\x02\x4e\x02\x06\x02\x74\x00\x00\xff\ \xff\x00\x8e\x00\xfc\x01\xca\x02\x4e\x02\x06\x02\x65\x00\x00\x00\ \x02\x00\xa7\x00\xfc\x01\xba\x02\x4e\x00\x19\x00\x23\x00\x39\x00\ \xb8\x00\x12\x2f\xbb\x00\x1d\x00\x01\x00\x17\x00\x04\x2b\xbb\x00\ \x0d\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x21\x00\ \x04\x2b\xba\x00\x13\x00\x0d\x00\x17\x11\x12\x39\xb8\x00\x13\x10\ \xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x34\x36\x37\x2e\x01\x23\x22\ \x06\x07\x27\x3e\x01\x33\x32\x16\x1d\x01\x23\x27\x23\x0e\x01\x23\ \x22\x26\x37\x14\x16\x33\x32\x36\x37\x35\x0e\x01\xa7\x66\x6d\x01\ \x1e\x27\x1d\x34\x16\x19\x1a\x48\x28\x3f\x3d\x34\x05\x02\x18\x39\ \x20\x2b\x3c\x3f\x22\x19\x17\x2b\x17\x51\x43\x01\x59\x35\x38\x0b\ \x1e\x2c\x15\x0d\x2b\x0f\x1b\x48\x3f\xc3\x25\x13\x1a\x32\x2f\x18\ \x17\x15\x13\x52\x09\x25\x00\x00\x02\x00\xac\x00\xfc\x01\xd8\x02\ \xd8\x00\x14\x00\x20\x00\x54\x00\xb8\x00\x13\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0f\x3e\x59\xbb\x00\x18\ \x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x1e\x00\x04\ \x2b\xba\x00\x03\x00\x06\x00\x0e\x11\x12\x39\xba\x00\x11\x00\x0e\ \x00\x06\x11\x12\x39\xb8\x00\x11\x10\xb9\x00\x15\x00\x01\xf4\xb8\ \x00\x03\x10\xb9\x00\x20\x00\x01\xf4\x30\x31\x13\x33\x15\x07\x3e\ \x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x27\x23\x07\x23\x37\ \x1e\x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\xac\x40\x02\x17\x35\ \x1c\x42\x44\x18\x28\x35\x1c\x18\x32\x17\x01\x07\x32\x40\x15\x28\ \x11\x28\x34\x27\x2e\x29\x2c\x02\xd8\x7d\x38\x13\x18\x59\x4b\x29\ \x41\x2d\x17\x15\x13\x20\x4b\x11\x0d\x3f\x39\x33\x3d\x28\x00\x00\ \x01\x00\xb5\x00\xfc\x01\xcd\x02\x4e\x00\x1d\x00\x17\x00\xbb\x00\ \x12\x00\x01\x00\x19\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x0c\x00\ \x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\ \x22\x06\x15\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x2e\x02\ \xb5\x1c\x2f\x3d\x22\x23\x32\x12\x20\x0f\x21\x14\x30\x3c\x3a\x30\ \x19\x28\x11\x1b\x18\x3b\x20\x23\x3d\x2c\x19\x01\xa5\x28\x3f\x2b\ \x17\x16\x10\x29\x0d\x0e\x41\x34\x35\x40\x12\x0d\x29\x14\x16\x17\ \x2b\x3f\x00\x00\x02\x00\x89\x00\xfc\x01\xb6\x02\xd8\x00\x14\x00\ \x20\x00\x54\x00\xb8\x00\x0d\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\ \x2f\x1b\xb9\x00\x0a\x00\x0f\x3e\x59\xbb\x00\x18\x00\x01\x00\x12\ \x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1e\x00\x04\x2b\xba\x00\x08\ \x00\x05\x00\x12\x11\x12\x39\xba\x00\x0e\x00\x12\x00\x05\x11\x12\ \x39\xb8\x00\x0e\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x08\x10\xb9\ \x00\x1b\x00\x01\xf4\x30\x31\x13\x34\x3e\x02\x33\x32\x16\x17\x27\ \x35\x33\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x37\x14\x16\x33\x32\ \x37\x35\x2e\x01\x23\x22\x06\x89\x18\x28\x35\x1d\x1d\x2b\x15\x02\ \x40\x35\x05\x02\x14\x35\x1d\x3f\x4c\x42\x2e\x2a\x2b\x28\x15\x26\ \x14\x27\x35\x01\xa5\x27\x3f\x2c\x17\x14\x11\x36\x79\xfe\x2c\x25\ \x13\x1a\x58\x51\x37\x3d\x28\xa1\x11\x0e\x3e\x00\x02\x00\xa0\x00\ \xfc\x01\xc9\x02\x4e\x00\x19\x00\x20\x00\x21\x00\xbb\x00\x0e\x00\ \x01\x00\x15\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x1d\x00\x04\x2b\ \xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\ \x33\x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\ \x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\xa0\x1b\x2b\x39\x1e\ \x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\x14\x17\x18\x3b\x23\x23\x3c\ \x2d\x1a\xf1\x2b\x28\x23\x37\x06\x01\xa5\x27\x3f\x2c\x17\x53\x45\ \x14\x0c\x31\x37\x0d\x0c\x29\x0e\x14\x17\x2b\x3f\x42\x2d\x30\x30\ \x2d\x00\x00\x00\x01\x00\xc6\x01\x04\x01\xf7\x02\xe0\x00\x17\x00\ \x38\x00\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x07\x2f\x1b\ \xb9\x00\x07\x00\x09\x3e\x59\xbb\x00\x14\x00\x01\x00\x03\x00\x04\ \x2b\xb8\x00\x07\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x0d\xd0\xb8\ \x00\x07\x10\xb8\x00\x10\xd0\x30\x31\x01\x2e\x01\x23\x22\x06\x1d\ \x01\x33\x15\x23\x11\x23\x11\x23\x35\x37\x35\x34\x36\x33\x32\x16\ \x17\x01\xe9\x11\x22\x14\x2a\x24\x80\x80\x3f\x4f\x4f\x41\x45\x19\ \x2d\x16\x02\xa0\x07\x07\x2a\x23\x1b\x33\xfe\xf1\x01\x0f\x30\x03\ \x19\x3a\x47\x08\x08\x00\x00\x00\x03\x00\x95\x00\x72\x01\xe2\x02\ \x4e\x00\x0f\x00\x41\x00\x4d\x00\x64\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\ \x00\x3f\x00\x04\x2b\xbb\x00\x22\x00\x01\x00\x48\x00\x04\x2b\xbb\ \x00\x37\x00\x01\x00\x09\x00\x04\x2b\xbb\x00\x42\x00\x01\x00\x30\ \x00\x04\x2b\xba\x00\x13\x00\x09\x00\x37\x11\x12\x39\xb8\x00\x13\ \x10\xb8\x00\x0d\xd0\xb8\x00\x30\x10\xb8\x00\x32\xd0\xb8\x00\x1a\ \xd0\xb8\x00\x25\x10\xb9\x00\x28\x00\x01\xf4\x30\x31\x37\x14\x16\ \x33\x32\x36\x35\x34\x26\x2b\x01\x22\x26\x27\x0e\x01\x07\x34\x37\ \x35\x2e\x01\x35\x34\x36\x37\x35\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x33\x15\x23\x1e\x01\x15\x14\x0e\x02\x23\x22\x27\x06\x15\ \x14\x3b\x01\x32\x16\x15\x14\x0e\x02\x23\x22\x26\x37\x32\x36\x35\ \x34\x26\x23\x22\x06\x15\x14\x16\xcb\x33\x32\x36\x3f\x25\x23\x3b\ \x0f\x17\x0b\x15\x11\x36\x35\x0d\x14\x15\x12\x11\x18\x15\x23\x2f\ \x1b\x0e\x18\x0b\x86\x52\x0b\x0e\x13\x22\x2e\x1b\x17\x1e\x16\x3f\ \x47\x40\x3e\x1a\x30\x44\x2a\x46\x4f\x94\x1d\x28\x28\x1d\x1d\x28\ \x28\xd2\x18\x1d\x25\x17\x15\x0f\x02\x03\x0b\x19\x14\x28\x1e\x03\ \x07\x1a\x14\x10\x20\x0c\x03\x0d\x29\x1d\x1b\x2b\x1e\x10\x03\x05\ \x30\x0b\x1f\x13\x1b\x29\x1c\x0f\x0b\x0e\x14\x22\x24\x29\x18\x29\ \x1f\x12\x2d\xf5\x26\x20\x20\x28\x28\x20\x20\x26\x00\x00\x00\x00\ \x01\x00\xaf\x01\x04\x01\xcc\x02\xd8\x00\x14\x00\x3a\x00\xb8\x00\ \x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xbb\x00\x06\x00\x01\x00\x0f\x00\x04\ \x2b\xba\x00\x03\x00\x06\x00\x14\x11\x12\x39\xb8\x00\x03\x10\xb9\ \x00\x12\x00\x01\xf4\x30\x31\x13\x33\x15\x07\x3e\x01\x33\x32\x16\ \x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\xaf\x40\x04\x18\ \x38\x24\x39\x34\x40\x1f\x24\x1a\x27\x19\x40\x02\xd8\x7d\x45\x17\ \x21\x41\x3e\xcb\xc3\x2a\x27\x19\x18\xe3\x00\x00\x02\x00\xaf\x01\ \x04\x01\x8b\x02\xe0\x00\x05\x00\x11\x00\x2a\x00\xb8\x00\x03\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\ \x59\xb9\x00\x04\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x06\xdc\xb8\ \x00\x0c\xdc\x30\x31\x13\x33\x11\x23\x11\x23\x37\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\xaf\xcd\x40\x8d\xac\x15\x1b\x1b\x15\ \x15\x1b\x1b\x02\x46\xfe\xbe\x01\x0f\x72\x18\x15\x14\x1a\x1a\x14\ \x15\x18\x00\x00\x02\x00\x8c\x00\x77\x01\x80\x02\xe0\x00\x12\x00\ \x1e\x00\x34\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\ \x00\x00\x09\x3e\x59\xbb\x00\x0d\x00\x01\x00\x07\x00\x04\x2b\xb8\ \x00\x00\x10\xb9\x00\x11\x00\x01\xf4\xb8\x00\x00\x10\xb8\x00\x13\ \xdc\xb8\x00\x19\xdc\x30\x31\x13\x33\x11\x14\x0e\x02\x23\x22\x26\ \x27\x37\x16\x33\x32\x36\x35\x11\x23\x37\x22\x26\x35\x34\x36\x33\ \x32\x16\x15\x14\x06\xa4\xcc\x0d\x20\x36\x28\x1a\x2d\x12\x14\x22\ \x20\x2f\x20\x8d\xac\x15\x1c\x1c\x15\x14\x1c\x1c\x02\x46\xfe\xbc\ \x1e\x32\x26\x15\x0d\x0a\x2e\x11\x2b\x28\x01\x15\x72\x18\x15\x14\ \x1a\x1a\x14\x15\x18\x00\x00\x00\x01\x00\xbd\x01\x04\x01\xf5\x02\ \xd8\x00\x0c\x00\x53\x00\xb8\x00\x08\x2f\xb8\x00\x0b\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\ \xba\x00\x0a\x00\x0b\x00\x00\x11\x12\x39\xb8\x00\x0a\x10\xb9\x00\ \x02\x00\x01\xf4\xba\x00\x09\x00\x08\x00\x04\x11\x12\x39\xb8\x00\ \x09\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x33\x37\x33\x07\x17\ \x23\x27\x07\x15\x23\xbd\x40\x02\x9f\x47\x7c\x8c\x47\x6b\x46\x40\ \x02\xd8\xfe\xce\xa0\x80\xc2\x98\x43\x55\x00\x00\x01\x00\xc4\x00\ \xfc\x01\xca\x02\xd8\x00\x11\x00\x28\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0f\x3e\x59\xbb\x00\x05\x00\x01\ \x00\x0c\x00\x04\x2b\xb8\x00\x00\x10\xb9\x00\x11\x00\x01\xf4\x30\ \x31\x13\x33\x11\x14\x16\x33\x32\x36\x37\x17\x0e\x01\x23\x22\x26\ \x35\x11\x23\xc4\x91\x1d\x1a\x0b\x17\x10\x0c\x14\x22\x17\x36\x32\ \x51\x02\xd8\xfe\x94\x20\x1c\x06\x05\x32\x05\x08\x3c\x38\x01\x36\ \x00\x00\x00\x00\x01\x00\x82\x01\x04\x01\xd4\x02\x4e\x00\x1f\x00\ \x54\x00\xb8\x00\x1f\x2f\xb8\x00\x17\x2f\xb8\x00\x10\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\ \x00\x0b\x00\x01\x00\x13\x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x06\ \x00\x04\x2b\xba\x00\x02\x00\x1f\x00\x01\x11\x12\x39\xb8\x00\x02\ \x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb9\x00\x1d\x00\x01\xf4\xb8\ \x00\x15\xd0\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x17\x3e\x01\ \x33\x32\x16\x1d\x01\x23\x35\x34\x23\x22\x07\x15\x23\x35\x34\x23\ \x22\x06\x07\x15\x23\x82\x32\x05\x02\x0c\x21\x1c\x31\x0c\x0d\x24\ \x1b\x22\x25\x3d\x1f\x1d\x15\x35\x20\x0f\x17\x0c\x3d\x02\x46\x2a\ \x16\x1c\x37\x19\x1e\x34\x30\xe6\xe1\x33\x2e\xe6\xe1\x33\x17\x17\ \xe6\x00\x00\x00\x01\x00\xaf\x01\x04\x01\xcc\x02\x4e\x00\x14\x00\ \x3a\x00\xb8\x00\x14\x2f\xb8\x00\x0b\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0f\x00\x04\x2b\xba\x00\x02\x00\x14\x00\x01\x11\x12\x39\xb8\ \x00\x02\x10\xb9\x00\x12\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\ \x01\x33\x32\x16\x1d\x01\x23\x35\x34\x26\x23\x22\x06\x07\x15\x23\ \xaf\x35\x05\x03\x17\x37\x25\x38\x35\x40\x1f\x24\x1a\x27\x19\x40\ \x02\x46\x30\x17\x21\x41\x3e\xcb\xc3\x2a\x27\x19\x18\xe3\x00\x00\ \x02\x00\x8e\x00\xfc\x01\xca\x02\x4e\x00\x13\x00\x1f\x00\x17\x00\ \xbb\x00\x17\x00\x01\x00\x0f\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\ \x1d\x00\x04\x2b\x30\x31\x13\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\ \x0e\x02\x23\x22\x2e\x02\x37\x14\x16\x33\x32\x36\x35\x34\x26\x23\ \x22\x06\x8e\x1a\x2b\x39\x20\x20\x39\x2c\x19\x19\x2c\x39\x20\x20\ \x39\x2b\x1a\x42\x31\x2b\x2b\x31\x31\x2b\x2b\x31\x01\xa5\x28\x3f\ \x2b\x17\x17\x2b\x3f\x28\x28\x3f\x2b\x17\x17\x2b\x3f\x28\x35\x40\ \x40\x35\x34\x41\x41\x00\x00\x00\x02\x00\xac\x00\x7f\x01\xd8\x02\ \x4e\x00\x13\x00\x1f\x00\x54\x00\xb8\x00\x01\x2f\xb8\x00\x00\x45\ \x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x09\x3e\x59\xbb\x00\x09\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x17\x00\x01\x00\x11\x00\x04\ \x2b\xba\x00\x05\x00\x09\x00\x11\x11\x12\x39\xba\x00\x13\x00\x11\ \x00\x09\x11\x12\x39\xb8\x00\x13\x10\xb9\x00\x14\x00\x01\xf4\xb8\ \x00\x05\x10\xb9\x00\x1f\x00\x01\xf4\x30\x31\x37\x15\x23\x11\x33\ \x17\x33\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\x27\x37\x1e\ \x01\x33\x32\x36\x35\x34\x26\x23\x22\x07\xec\x40\x34\x05\x03\x17\ \x36\x1e\x41\x44\x18\x28\x35\x1c\x2f\x2e\x02\x15\x28\x11\x28\x34\ \x27\x2e\x27\x2e\xea\x6b\x01\xc7\x24\x12\x1a\x59\x4b\x29\x41\x2d\ \x17\x25\x2e\x11\x0d\x3f\x39\x33\x3d\x28\x00\x00\x02\x00\x89\x00\ \x7f\x01\xb6\x02\x4e\x00\x14\x00\x20\x00\x54\x00\xb8\x00\x0d\x2f\ \xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\ \x59\xbb\x00\x05\x00\x01\x00\x1e\x00\x04\x2b\xbb\x00\x18\x00\x01\ \x00\x12\x00\x04\x2b\xba\x00\x09\x00\x05\x00\x12\x11\x12\x39\xba\ \x00\x0f\x00\x12\x00\x1e\x11\x12\x39\xb8\x00\x0f\x10\xb9\x00\x1a\ \x00\x01\xf4\xb8\x00\x09\x10\xb9\x00\x1b\x00\x01\xf4\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x35\x37\x0e\x01\ \x23\x22\x26\x37\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x06\x89\ \x18\x28\x35\x1d\x1d\x2c\x17\x02\x05\x34\x40\x03\x14\x34\x1d\x3f\ \x4c\x42\x2e\x2a\x2b\x28\x15\x26\x14\x27\x35\x01\xa5\x27\x3f\x2c\ \x17\x13\x14\x1f\xfe\x39\x70\x37\x11\x19\x58\x51\x37\x3d\x28\xa1\ \x11\x0e\x3e\x00\x01\x00\xf3\x01\x04\x01\xf0\x02\x4e\x00\x11\x00\ \x36\x00\xb8\x00\x10\x2f\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\ \xb9\x00\x01\x00\x09\x3e\x59\xbb\x00\x06\x00\x01\x00\x0c\x00\x04\ \x2b\xba\x00\x02\x00\x10\x00\x01\x11\x12\x39\xb8\x00\x02\x10\xb9\ \x00\x0f\x00\x01\xf4\x30\x31\x13\x33\x17\x33\x3e\x01\x33\x32\x17\ \x07\x2e\x01\x23\x22\x06\x07\x15\x23\xf3\x36\x05\x02\x17\x42\x27\ \x23\x1d\x0d\x11\x19\x12\x1f\x3d\x18\x40\x02\x46\x4b\x27\x2c\x0d\ \x36\x05\x05\x28\x32\xb7\x00\x00\x01\x00\xa2\x00\xfc\x01\xc3\x02\ \x4e\x00\x2d\x00\x2b\x00\xbb\x00\x03\x00\x01\x00\x2a\x00\x04\x2b\ \xbb\x00\x13\x00\x01\x00\x1a\x00\x04\x2b\xba\x00\x06\x00\x2a\x00\ \x1a\x11\x12\x39\xba\x00\x1d\x00\x13\x00\x03\x11\x12\x39\x30\x31\ \x13\x1e\x01\x33\x32\x36\x35\x34\x2e\x02\x27\x2e\x03\x35\x34\x36\ \x33\x32\x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x1e\x02\x17\x1e\ \x03\x15\x14\x06\x23\x22\x26\x27\xc0\x1a\x37\x25\x28\x26\x0f\x19\ \x20\x10\x15\x2b\x22\x16\x47\x40\x24\x3f\x17\x1e\x14\x2d\x1b\x26\ \x21\x0e\x18\x1e\x10\x16\x2c\x23\x16\x49\x46\x2b\x4c\x1b\x01\x53\ \x12\x14\x1a\x13\x0b\x11\x0e\x0a\x05\x06\x10\x16\x1d\x15\x28\x35\ \x16\x0f\x28\x0d\x10\x19\x11\x0b\x0f\x0c\x0a\x05\x06\x0f\x16\x1f\ \x17\x29\x39\x1a\x13\x00\x00\x00\x01\x00\xa4\x00\xfc\x01\xcf\x02\ \xa0\x00\x17\x00\x49\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\ \xb9\x00\x06\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\ \x1b\xb9\x00\x05\x00\x0d\x3e\x59\xbb\x00\x0d\x00\x01\x00\x14\x00\ \x04\x2b\xb8\x00\x06\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\x10\ \xb8\x00\x03\xd0\xb8\x00\x00\x10\xb8\x00\x09\xd0\x30\x31\x13\x23\ \x35\x3f\x01\x33\x15\x33\x15\x23\x15\x14\x16\x33\x32\x36\x37\x17\ \x0e\x01\x23\x22\x26\x35\xf1\x4d\x50\x08\x35\x91\x91\x22\x2d\x14\ \x1f\x0f\x0d\x14\x30\x1a\x48\x38\x02\x13\x30\x03\x5a\x5a\x33\x90\ \x2a\x2a\x08\x06\x2e\x08\x0b\x4a\x3d\x00\x00\x00\x01\x00\x9f\x00\ \xfc\x01\xbb\x02\x46\x00\x14\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\x59\xbb\x00\x0f\x00\ \x01\x00\x06\x00\x04\x2b\xba\x00\x02\x00\x06\x00\x14\x11\x12\x39\ \xb8\x00\x02\x10\xb8\x00\x12\xd0\x30\x31\x01\x23\x27\x23\x0e\x01\ \x23\x22\x26\x3d\x01\x33\x15\x14\x16\x33\x32\x36\x37\x35\x33\x01\ \xbb\x34\x06\x02\x17\x39\x25\x37\x34\x40\x1e\x23\x1a\x29\x18\x40\ \x01\x04\x33\x1a\x21\x41\x3e\xcb\xc3\x2a\x26\x17\x1c\xe0\x00\x00\ \x01\x00\x93\x01\x04\x01\xcd\x02\x46\x00\x0d\x00\x33\x00\xb8\x00\ \x0c\x2f\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\ \x00\x09\x3e\x59\xb8\x00\x0c\x10\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x13\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x93\x42\ \x3d\x09\x0e\x08\x02\x08\x0f\x08\x3e\x3d\x76\x4a\x02\x46\xb0\x18\ \x30\x18\x18\x30\x18\xb0\xfe\xbe\x00\x00\x00\x00\x01\x00\x52\x01\ \x04\x01\xdc\x02\x46\x00\x21\x00\x5a\x00\xb8\x00\x17\x2f\xb8\x00\ \x00\x45\x58\xb8\x00\x00\x2f\x1b\xb9\x00\x00\x00\x09\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\x09\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x09\x3e\ \x59\xb8\x00\x17\x10\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x06\xd0\xb8\ \x00\x0a\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x17\x10\xb8\x00\x20\ \xd0\x30\x31\x13\x33\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x23\x27\x2e\x01\x27\x23\ \x0e\x01\x0f\x01\x23\x52\x40\x25\x05\x06\x04\x03\x04\x09\x05\x24\ \x33\x25\x05\x08\x05\x03\x05\x06\x05\x24\x3c\x43\x4d\x23\x05\x07\ \x05\x03\x04\x07\x06\x22\x4a\x02\x46\xb2\x17\x2d\x17\x17\x2d\x17\ \x9a\x9a\x17\x2d\x17\x17\x2d\x17\xb2\xfe\xbe\x97\x17\x2d\x19\x14\ \x2c\x1d\x97\x00\x01\x00\x9f\x01\x04\x01\xcb\x02\x46\x00\x19\x00\ \x4b\x00\xb8\x00\x0f\x2f\xb8\x00\x18\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x01\x2f\x1b\xb9\x00\x01\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x0b\x2f\x1b\xb9\x00\x0b\x00\x09\x3e\x59\xba\x00\x13\x00\ \x0f\x00\x0b\x11\x12\x39\xb8\x00\x13\x10\xb8\x00\x00\xd0\xb8\x00\ \x13\x10\xb8\x00\x0d\xd0\xb8\x00\x06\xd0\x30\x31\x01\x27\x33\x17\ \x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x07\x17\x23\x27\x2e\x01\x27\ \x23\x0e\x01\x0f\x01\x23\x01\x0e\x66\x44\x2b\x08\x11\x08\x03\x08\ \x0f\x08\x26\x44\x68\x6f\x45\x2f\x08\x14\x0a\x02\x08\x11\x09\x2b\ \x43\x01\xac\x9a\x42\x0e\x1a\x0e\x0e\x1a\x0e\x42\xa1\xa1\x46\x0f\ \x1d\x0e\x0e\x1d\x0f\x46\x00\x00\x01\x00\x8c\x00\x7c\x01\xcc\x02\ \x46\x00\x1b\x00\x41\x00\xb8\x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\ \xb9\x00\x12\x00\x09\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x17\x00\ \x04\x2b\xba\x00\x0e\x00\x17\x00\x12\x11\x12\x39\xb8\x00\x0e\x10\ \xb8\x00\x07\xd0\x30\x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x03\x33\ \x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x0e\x01\x23\x22\x26\ \x27\x37\xa8\x05\x0e\x07\x1d\x25\x0b\x07\x8a\x40\x45\x08\x11\x09\ \x02\x08\x0e\x07\x3c\x3e\x82\x13\x3c\x35\x0d\x15\x09\x0d\xb4\x01\ \x03\x23\x1c\x17\x01\x40\xaa\x14\x2f\x17\x16\x2f\x15\xaa\xfe\xa9\ \x33\x40\x04\x03\x31\x00\x00\x00\x01\x00\x92\x01\x04\x01\xc8\x02\ \x46\x00\x09\x00\x34\x00\xb8\x00\x09\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x03\x2f\x1b\xb9\x00\x03\x00\x09\x3e\x59\xb8\x00\x09\x10\xb9\ \x00\x06\x00\x01\xf4\xb8\x00\x00\xd0\xb8\x00\x03\x10\xb9\x00\x01\ \x00\x01\xf4\xb8\x00\x05\xd0\x30\x31\x13\x37\x23\x35\x21\x15\x07\ \x33\x15\x21\x92\xd5\xbd\x01\x17\xd4\xdb\xfe\xca\x01\x26\xed\x33\ \x22\xed\x33\x00\x03\x00\xa0\x00\xfc\x01\xc9\x02\xe3\x00\x19\x00\ \x20\x00\x24\x00\x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\ \xb9\x00\x21\x00\x0f\x3e\x59\xbb\x00\x0e\x00\x01\x00\x15\x00\x04\ \x2b\xbb\x00\x05\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0a\x00\x01\ \x00\x1a\x00\x04\x2b\xb8\x00\x21\x10\xb8\x00\x23\xdc\x30\x31\x13\ \x34\x3e\x02\x33\x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\ \x17\x0e\x01\x23\x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x13\x33\ \x17\x23\xa0\x1b\x2b\x39\x1e\x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\ \x14\x17\x18\x3b\x23\x23\x3c\x2d\x1a\xf1\x2b\x28\x23\x37\x06\x0b\ \x45\x3c\x31\x01\xa5\x27\x3f\x2c\x17\x53\x45\x14\x0c\x31\x37\x0d\ \x0c\x29\x0e\x14\x17\x2b\x3f\x42\x2d\x30\x30\x2d\x01\x24\x65\x00\ \x03\x00\xa0\x00\xfc\x01\xc9\x02\xe3\x00\x19\x00\x20\x00\x24\x00\ \x3a\x00\xb8\x00\x00\x45\x58\xb8\x00\x23\x2f\x1b\xb9\x00\x23\x00\ \x0f\x3e\x59\xbb\x00\x0e\x00\x01\x00\x15\x00\x04\x2b\xbb\x00\x05\ \x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x1a\x00\x04\ \x2b\xb8\x00\x23\x10\xb8\x00\x21\xdc\x30\x31\x13\x34\x3e\x02\x33\ \x32\x16\x15\x14\x07\x23\x1e\x01\x33\x32\x36\x37\x17\x0e\x01\x23\ \x22\x2e\x02\x37\x34\x26\x23\x22\x06\x07\x37\x23\x37\x33\xa0\x1b\ \x2b\x39\x1e\x44\x48\x03\xe7\x04\x3d\x2f\x18\x2a\x14\x17\x18\x3b\ \x23\x23\x3c\x2d\x1a\xf1\x2b\x28\x23\x37\x06\x60\x30\x3d\x44\x01\ \xa5\x27\x3f\x2c\x17\x53\x45\x14\x0c\x31\x37\x0d\x0c\x29\x0e\x14\ \x17\x2b\x3f\x42\x2d\x30\x30\x2d\xbf\x65\x00\x00\x02\x00\x9a\x00\ \xfc\x01\xc2\x02\x4e\x00\x18\x00\x1f\x00\x21\x00\xbb\x00\x1c\x00\ \x01\x00\x16\x00\x04\x2b\xbb\x00\x0e\x00\x01\x00\x07\x00\x04\x2b\ \xbb\x00\x19\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x13\x34\x36\x37\ \x33\x2e\x01\x23\x22\x06\x07\x27\x3e\x01\x33\x32\x16\x15\x14\x0e\ \x02\x23\x22\x26\x37\x14\x16\x33\x32\x36\x37\x9a\x02\x02\xe5\x03\ \x33\x2f\x1a\x2a\x15\x16\x18\x3b\x23\x47\x56\x18\x29\x37\x20\x43\ \x4d\x39\x2d\x29\x27\x2f\x05\x01\x98\x09\x11\x06\x2f\x35\x0e\x0c\ \x29\x10\x13\x58\x51\x27\x3f\x2b\x18\x54\x3e\x30\x30\x31\x2f\x00\ \x02\x00\x89\x00\xfc\x01\xb6\x02\x4e\x00\x0b\x00\x20\x00\x54\x00\ \xb8\x00\x19\x2f\xb8\x00\x00\x45\x58\xb8\x00\x16\x2f\x1b\xb9\x00\ \x16\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1e\x00\x04\x2b\xbb\ \x00\x11\x00\x01\x00\x09\x00\x04\x2b\xba\x00\x1a\x00\x1e\x00\x11\ \x11\x12\x39\xb8\x00\x1a\x10\xb9\x00\x05\x00\x01\xf4\xba\x00\x15\ \x00\x11\x00\x1e\x11\x12\x39\xb8\x00\x15\x10\xb9\x00\x06\x00\x01\ \xf4\x30\x31\x13\x14\x16\x33\x32\x37\x35\x2e\x01\x23\x22\x06\x07\ \x34\x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x23\x27\x23\x0e\x01\ \x23\x22\x26\xcb\x2e\x2a\x2c\x27\x14\x28\x14\x26\x35\x42\x18\x28\ \x35\x1d\x1c\x2d\x17\x02\x05\x34\x35\x05\x02\x14\x35\x1d\x3f\x4c\ \x01\xa5\x37\x3d\x28\xa1\x11\x0e\x3e\x36\x27\x3f\x2c\x17\x13\x14\ \x1f\xfe\xbe\x25\x13\x1a\x58\x00\x02\x00\x89\x00\x79\x01\xb6\x02\ \x4e\x00\x1f\x00\x2c\x00\x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x17\ \x2f\x1b\xb9\x00\x17\x00\x09\x3e\x59\xbb\x00\x03\x00\x01\x00\x1c\ \x00\x04\x2b\xbb\x00\x12\x00\x01\x00\x27\x00\x04\x2b\xbb\x00\x20\ \x00\x01\x00\x0a\x00\x04\x2b\xba\x00\x07\x00\x0a\x00\x12\x11\x12\ \x39\xba\x00\x16\x00\x12\x00\x0a\x11\x12\x39\xb8\x00\x07\x10\xb9\ \x00\x23\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x24\x00\x01\xf4\x30\ \x31\x37\x1e\x01\x33\x32\x36\x3f\x01\x0e\x01\x23\x22\x26\x35\x34\ \x3e\x02\x33\x32\x16\x17\x33\x37\x33\x11\x14\x06\x23\x22\x26\x27\ \x37\x32\x36\x37\x35\x2e\x01\x23\x22\x06\x15\x14\x16\xb7\x19\x34\ \x17\x2d\x2d\x01\x01\x13\x33\x1d\x3f\x4c\x19\x28\x35\x1c\x1c\x2d\ \x16\x01\x06\x35\x51\x4a\x1f\x41\x1b\x83\x17\x28\x14\x14\x28\x14\ \x26\x36\x2f\xc8\x10\x0d\x2a\x24\x38\x11\x18\x57\x4b\x25\x3d\x2b\ \x17\x13\x13\x1e\xfe\xb2\x3c\x43\x12\x11\xa0\x15\x15\x94\x11\x0e\ \x3c\x32\x33\x3c\x00\x00\x00\x00\x02\x00\xaf\x01\xad\x01\xaa\x02\ \xad\x00\x13\x00\x1f\x00\x17\x00\xbb\x00\x0a\x00\x01\x00\x1a\x00\ \x04\x2b\xbb\x00\x14\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x01\x22\ \x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x15\x14\x0e\x02\x27\x32\ \x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x19\x2d\x23\x14\ \x14\x23\x2d\x19\x19\x2e\x22\x15\x15\x22\x2e\x19\x22\x2a\x2a\x22\ \x21\x2a\x2a\x01\xad\x12\x21\x2f\x1d\x1e\x2f\x22\x12\x12\x22\x2f\ \x1e\x1d\x2f\x21\x12\x2e\x2e\x23\x25\x2e\x2e\x25\x23\x2e\x00\x00\ \x02\x00\x3a\x00\x53\x02\x1e\x02\x41\x00\x20\x00\x34\x00\x17\x00\ \xbb\x00\x26\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x0c\x00\x01\x00\ \x30\x00\x04\x2b\x30\x31\x3f\x01\x2e\x01\x35\x34\x36\x37\x27\x37\ \x17\x36\x33\x32\x17\x37\x17\x07\x1e\x01\x15\x14\x06\x07\x17\x07\ \x27\x0e\x01\x23\x22\x27\x07\x37\x14\x1e\x02\x33\x32\x3e\x02\x35\ \x34\x2e\x02\x23\x22\x0e\x02\x3a\x54\x11\x13\x12\x11\x53\x2c\x57\ \x30\x3f\x3e\x31\x57\x2c\x54\x11\x13\x13\x11\x54\x2c\x58\x17\x39\ \x1e\x3e\x31\x57\x50\x13\x20\x2b\x18\x18\x2b\x20\x13\x13\x20\x2b\ \x18\x18\x2b\x20\x13\x80\x55\x17\x3a\x23\x23\x3b\x17\x56\x2d\x5a\ \x25\x25\x5a\x2d\x56\x17\x3b\x23\x23\x3a\x17\x55\x2d\x59\x13\x13\ \x26\x59\xf6\x1e\x31\x24\x13\x13\x24\x31\x1e\x1e\x31\x24\x13\x13\ \x24\x31\x00\x00\x01\x00\x55\xff\x92\x02\x00\x02\xec\x00\x31\x00\ \x47\x00\xb8\x00\x16\x2f\xb8\x00\x2c\x2f\xb8\x00\x2b\xdc\xb9\x00\ \x05\x00\x01\xf4\xb8\x00\x16\x10\xb8\x00\x17\xdc\xba\x00\x08\x00\ \x17\x00\x2b\x11\x12\x39\xb8\x00\x14\xd0\xb8\x00\x17\x10\xb9\x00\ \x1e\x00\x01\xf4\xba\x00\x21\x00\x2b\x00\x17\x11\x12\x39\xb8\x00\ \x2b\x10\xb8\x00\x2e\xd0\x30\x31\x01\x2e\x03\x23\x22\x06\x15\x14\ \x1e\x04\x15\x14\x0e\x02\x07\x15\x23\x35\x2e\x01\x27\x37\x1e\x01\ \x33\x32\x36\x35\x34\x2e\x04\x35\x34\x36\x37\x35\x33\x15\x1e\x01\ \x17\x01\xc3\x11\x1f\x22\x28\x19\x33\x3b\x2f\x47\x52\x47\x2f\x19\ \x2f\x41\x27\x3c\x38\x64\x23\x27\x26\x5b\x39\x3c\x3d\x2f\x46\x53\ \x46\x2f\x59\x49\x3c\x37\x4a\x1e\x01\xed\x0d\x15\x0f\x08\x2d\x26\ \x1c\x24\x1e\x1e\x2a\x3c\x2e\x20\x37\x29\x1b\x04\x92\x91\x05\x2c\ \x1d\x39\x1b\x29\x31\x26\x1f\x29\x20\x1e\x29\x39\x2c\x3f\x50\x08\ \x84\x83\x05\x2a\x1d\x00\x00\x00\x01\x00\x4d\x00\x00\x02\x13\x02\ \x8a\x00\x29\x00\x57\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\ \xb9\x00\x13\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x01\x2f\ \x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x08\x00\x01\x00\x0b\x00\ \x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\x03\xd0\ \xb8\x00\x13\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\ \x20\xd0\xb8\x00\x08\x10\xb8\x00\x23\xd0\x30\x31\x25\x15\x21\x35\ \x3e\x01\x35\x34\x27\x23\x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\ \x16\x17\x07\x2e\x01\x23\x22\x06\x15\x14\x16\x17\x33\x15\x23\x16\ \x15\x14\x06\x07\x15\x02\x13\xfe\x3b\x3f\x3d\x08\x75\x63\x0b\x15\ \x1e\x37\x4d\x30\x3e\x55\x1d\x30\x17\x3b\x2a\x42\x45\x13\x0b\xbd\ \xad\x06\x25\x26\x47\x47\x32\x1c\x5f\x39\x1a\x1d\x34\x04\x20\x3d\ \x20\x2a\x44\x30\x1a\x2b\x20\x2f\x17\x1e\x41\x34\x20\x3b\x20\x38\ \x1b\x1d\x35\x46\x1f\x04\x00\x00\x01\x00\x35\x00\x00\x02\x23\x02\ \x7e\x00\x1d\x00\x6c\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x09\x2f\ \x1b\xb9\x00\x09\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x13\ \x2f\x1b\xb9\x00\x13\x00\x03\x3e\x59\xba\x00\x05\x00\x13\x00\x09\ \x11\x12\x39\xb8\x00\x05\x10\xb8\x00\x0b\xd0\xb9\x00\x0e\x00\x01\ \xf4\xb8\x00\x19\xd0\xb8\x00\x18\xdc\xb8\x00\x0f\xd0\xb9\x00\x12\ \x00\x01\xf4\xb8\x00\x15\xd0\xb8\x00\x0b\x10\xb8\x00\x1c\xd0\x30\ \x31\x13\x17\x1e\x01\x17\x33\x3e\x01\x3f\x01\x33\x03\x33\x15\x23\ \x15\x33\x15\x23\x15\x23\x35\x23\x35\x33\x35\x23\x35\x33\x03\x8a\ \x5c\x11\x21\x13\x04\x12\x22\x12\x5c\x52\xba\xa2\xb7\xb7\xb7\x52\ \xb5\xb5\xb5\xa1\xb9\x02\x7e\xab\x21\x43\x23\x23\x43\x21\xab\xfe\ \xc0\x2f\x41\x30\x9e\x9e\x30\x41\x2f\x01\x40\x00\x01\x00\x3a\xff\ \xf4\x02\x36\x02\x8a\x00\x31\x00\x6d\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x15\x2f\x1b\xb9\x00\x15\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x03\x2f\x1b\xb9\x00\x03\x00\x03\x3e\x59\xba\x00\x28\x00\ \x22\x00\x03\x2b\xb8\x00\x28\x10\xb9\x00\x2b\x00\x01\xf4\xb8\x00\ \x06\xd0\xb8\x00\x28\x10\xb8\x00\x09\xd0\xb8\x00\x22\x10\xb8\x00\ \x0f\xd0\xb8\x00\x22\x10\xb9\x00\x1f\x00\x01\xf4\xb8\x00\x12\xd0\ \xb8\x00\x15\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x03\x10\xb9\x00\ \x2e\x00\x01\xf4\x30\x31\x25\x0e\x01\x23\x22\x26\x27\x23\x35\x37\ \x26\x34\x35\x3c\x01\x37\x23\x35\x37\x3e\x01\x33\x32\x16\x17\x07\ \x2e\x01\x23\x22\x06\x07\x21\x15\x21\x06\x14\x15\x1c\x01\x17\x21\ \x15\x23\x1e\x01\x33\x32\x36\x37\x02\x36\x26\x5c\x3e\x62\x87\x13\ \x40\x3b\x01\x01\x3b\x40\x13\x8d\x6a\x33\x58\x1e\x31\x1a\x3b\x26\ \x4a\x5a\x0e\x01\x26\xfe\xd5\x01\x01\x01\x03\xfd\x0e\x58\x45\x2b\ \x41\x1e\x51\x2c\x31\x81\x76\x2b\x04\x09\x12\x09\x08\x10\x08\x2c\ \x05\x76\x85\x2d\x21\x2f\x1a\x21\x62\x57\x31\x07\x0e\x08\x0a\x13\ \x09\x30\x55\x60\x24\x23\x00\x00\x02\x00\x71\xff\xdf\x01\xfa\x02\ \x8d\x00\x06\x00\x25\x00\x5c\x00\xb8\x00\x00\x45\x58\xb8\x00\x18\ \x2f\x1b\xb9\x00\x18\x00\x0b\x3e\x59\xbb\x00\x22\x00\x01\x00\x0a\ \x00\x04\x2b\xbb\x00\x1a\x00\x01\x00\x21\x00\x04\x2b\xb8\x00\x21\ \x10\xb8\x00\x00\xd0\xb8\x00\x00\x2f\xb8\x00\x22\x10\xb8\x00\x06\ \xd0\xb8\x00\x06\x2f\xb8\x00\x0a\x10\xb8\x00\x0d\xd0\xb8\x00\x0d\ \x2f\xb8\x00\x0c\xdc\xb8\x00\x1a\x10\xb8\x00\x17\xd0\xb8\x00\x17\ \x2f\x30\x31\x01\x0e\x01\x15\x14\x16\x1f\x01\x0e\x01\x07\x15\x23\ \x35\x2e\x03\x35\x34\x3e\x02\x37\x35\x33\x15\x1e\x01\x17\x07\x2e\ \x01\x27\x11\x3e\x01\x37\x01\x3a\x38\x40\x3f\x39\xc0\x1e\x48\x27\ \x33\x2d\x4a\x35\x1d\x1f\x36\x4a\x2a\x33\x2c\x40\x17\x28\x14\x2d\ \x1a\x20\x34\x15\x01\xdd\x0d\x58\x42\x43\x58\x0d\x09\x1a\x22\x03\ \x67\x68\x05\x24\x3d\x54\x35\x34\x53\x3c\x24\x06\x6a\x67\x02\x22\ \x16\x34\x12\x16\x02\xfe\xa8\x02\x1b\x12\x00\x00\x01\x00\x31\xff\ \x9f\x02\x18\x02\x9c\x00\x28\x00\x42\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x25\x2f\x1b\xb9\x00\x25\x00\x0d\x3e\x59\xbb\x00\x19\x00\x01\ \x00\x12\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\ \x00\x25\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\x1d\ \xd0\xb8\x00\x0a\x10\xb8\x00\x21\xd0\x30\x31\x01\x2e\x01\x23\x22\ \x0e\x02\x0f\x01\x33\x15\x23\x07\x0e\x03\x23\x22\x26\x27\x37\x1e\ \x01\x33\x32\x36\x3f\x01\x23\x35\x37\x33\x37\x3e\x01\x33\x32\x16\ \x17\x02\x04\x0e\x1f\x16\x19\x23\x18\x0e\x03\x07\x8e\x95\x1b\x06\ \x17\x28\x3e\x2c\x1a\x2a\x0f\x10\x0e\x1d\x10\x34\x2d\x0a\x18\x68\ \x46\x29\x06\x0d\x50\x54\x1a\x30\x11\x02\x4a\x07\x08\x16\x24\x2f\ \x19\x3f\x3f\xed\x2e\x4b\x36\x1e\x0b\x07\x3e\x05\x08\x4f\x4d\xdb\ \x3b\x04\x38\x64\x68\x0c\x08\x00\x03\x00\x60\xff\x92\x02\x22\x02\ \xec\x00\x09\x00\x10\x00\x37\x00\xb1\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x26\x2f\x1b\xb9\x00\x26\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x03\x3e\x59\xb8\x00\x1a\xd0\ \xb9\x00\x00\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x02\x00\x01\xf4\ \xb8\x00\x26\x10\xb9\x00\x09\x00\x01\xf4\xb8\x00\x03\xd0\xb8\x00\ \x09\x10\xb8\x00\x0a\xd0\xb8\x00\x00\x10\xb8\x00\x10\xd0\xb8\x00\ \x17\x10\xb8\x00\x14\xd0\xb8\x00\x17\x10\xb8\x00\x16\xdc\xb8\x00\ \x1b\xd0\xb8\x00\x1a\x10\xb8\x00\x1d\xd0\xb8\x00\x26\x10\xb8\x00\ \x23\xd0\xb8\x00\x26\x10\xb8\x00\x25\xdc\xb8\x00\x03\x10\xb9\x00\ \x29\x00\x01\xf4\xb8\x00\x25\x10\xb8\x00\x2a\xd0\xb8\x00\x29\x10\ \xb8\x00\x2c\xd0\xb8\x00\x03\x10\xb8\x00\x33\xd0\xb8\x00\x02\x10\ \xb8\x00\x34\xd0\xb8\x00\x34\x2f\x30\x31\x25\x16\x17\x13\x2e\x01\ \x23\x2a\x01\x0f\x01\x0e\x01\x15\x14\x16\x17\x05\x0e\x01\x0f\x01\ \x23\x37\x2e\x01\x27\x07\x23\x37\x2e\x01\x35\x34\x36\x3f\x01\x33\ \x07\x33\x32\x17\x37\x33\x07\x1e\x01\x17\x07\x2e\x01\x27\x03\x3e\ \x01\x37\x01\x1f\x17\x21\x3e\x0a\x13\x0b\x05\x08\x05\x27\x3e\x41\ \x24\x23\x01\x26\x23\x54\x36\x0c\x26\x0c\x0f\x1c\x0e\x0d\x26\x0f\ \x44\x4e\x76\x67\x0c\x26\x0c\x0f\x14\x17\x0c\x26\x0e\x1a\x2d\x11\ \x31\x0b\x17\x0d\x3c\x23\x37\x1a\x47\x0d\x03\x02\x0c\x02\x03\x01\ \x08\x15\x85\x64\x4c\x73\x21\x10\x28\x30\x04\x63\x63\x01\x05\x04\ \x6d\x7c\x23\x9c\x71\x8a\xab\x12\x67\x62\x05\x67\x72\x0b\x20\x13\ \x2f\x0b\x13\x08\xfe\x04\x05\x23\x1e\x00\x00\x00\x01\x00\x4e\x00\ \x00\x02\x13\x02\x8a\x00\x34\x00\x87\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x19\x2f\x1b\xb9\x00\x19\x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\ \xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x03\x3e\x59\xbb\x00\x0e\x00\ \x01\x00\x11\x00\x04\x2b\xb8\x00\x01\x10\xb9\x00\x00\x00\x01\xf4\ \xb8\x00\x03\xd0\xb8\x00\x0e\x10\xb9\x00\x0b\x00\x01\xf4\xb9\x00\ \x07\x00\x01\xf4\xb8\x00\x0b\x10\xb8\x00\x09\xd0\xb8\x00\x11\x10\ \xb8\x00\x10\xd0\xb8\x00\x19\x10\xb9\x00\x20\x00\x01\xf4\xb8\x00\ \x11\x10\xb8\x00\x27\xd0\xb8\x00\x0e\x10\xb8\x00\x28\xd0\xb8\x00\ \x0b\x10\xb8\x00\x2d\xd0\xb8\x00\x07\x10\xb8\x00\x2e\xd0\x30\x31\ \x25\x15\x21\x35\x3e\x01\x3d\x01\x23\x35\x37\x33\x2e\x01\x27\x23\ \x35\x37\x2e\x01\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\x23\ \x22\x06\x15\x14\x16\x17\x33\x15\x23\x1e\x01\x17\x33\x15\x23\x15\ \x14\x06\x07\x15\x02\x13\xfe\x3b\x3f\x3d\x7c\x57\x1e\x04\x0b\x05\ \x61\x50\x06\x08\x1e\x37\x4d\x30\x3e\x55\x1d\x30\x17\x3b\x2a\x42\ \x45\x07\x06\xce\xbe\x05\x09\x03\xad\xa7\x25\x26\x47\x47\x32\x1c\ \x5f\x39\x05\x2c\x05\x0f\x1d\x0f\x2d\x04\x12\x25\x13\x2a\x44\x30\ \x1a\x2b\x20\x2f\x17\x1e\x41\x34\x13\x23\x12\x31\x0e\x1e\x0f\x31\ \x06\x35\x46\x1f\x04\x00\x00\x00\x05\x00\x2f\x00\x00\x02\x27\x02\ \x7e\x00\x05\x00\x09\x00\x0f\x00\x13\x00\x2f\x00\xcb\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x27\x2f\x1b\xb9\x00\x27\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x2b\x2f\x1b\xb9\x00\x2b\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x03\ \x3e\x59\xb8\x00\x27\x10\xb8\x00\x10\xdc\xb9\x00\x0d\x00\x01\xf4\ \xb8\x00\x02\xd0\xb8\x00\x0d\x10\xb8\x00\x0f\xd0\xb8\x00\x04\xd0\ \xb8\x00\x0f\x10\xb9\x00\x1c\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\ \x1a\x10\xb9\x00\x08\x00\x01\xf4\xb8\x00\x27\x10\xb9\x00\x13\x00\ \x01\xf4\xb8\x00\x02\x10\xb8\x00\x14\xd0\xb8\x00\x04\x10\xb8\x00\ \x15\xd0\xb8\x00\x07\x10\xb8\x00\x18\xd0\xb8\x00\x1c\x10\xb8\x00\ \x1f\xd0\xb8\x00\x0f\x10\xb8\x00\x22\xd0\xb8\x00\x0d\x10\xb8\x00\ \x23\xd0\xb8\x00\x10\x10\xb8\x00\x26\xd0\xb8\x00\x10\x10\xb8\x00\ \x29\xd0\xb8\x00\x2d\xd0\x30\x31\x01\x35\x23\x1f\x01\x33\x17\x23\ \x17\x33\x2f\x01\x35\x23\x17\x15\x27\x33\x27\x23\x05\x15\x33\x15\ \x23\x15\x23\x27\x23\x15\x23\x35\x23\x35\x37\x35\x23\x35\x37\x35\ \x33\x17\x33\x35\x33\x15\x33\x15\x01\x9e\x5a\x13\x05\x44\x03\x37\ \x3e\x04\x95\x18\x48\x01\x04\x3b\x43\x04\x01\x35\x48\x48\x54\x61\ \x70\x41\x4a\x4a\x4a\x4a\x54\x66\x6b\x41\x48\x01\x3d\x1a\x2e\x0e\ \x2b\xa6\xd1\x3b\x01\x16\x26\x66\xb2\xdc\x3c\x2b\xf0\xf0\xf0\xf0\ \x26\x05\x3c\x25\x05\xfd\xfd\xfd\xfd\x2a\x00\x00\x03\x00\x2b\x00\ \x00\x02\x2a\x02\x7e\x00\x05\x00\x0b\x00\x21\x00\x63\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\x14\x00\x03\x3e\x59\ \xbb\x00\x04\x00\x01\x00\x07\x00\x04\x2b\xbb\x00\x13\x00\x01\x00\ \x05\x00\x04\x2b\xb8\x00\x1b\x10\xb9\x00\x0b\x00\x01\xf4\xb8\x00\ \x04\x10\xb8\x00\x0d\xd0\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb8\x00\ \x07\x10\xb8\x00\x18\xd0\xb8\x00\x07\x10\xb8\x00\x20\xd0\x30\x31\ \x01\x32\x36\x37\x23\x15\x11\x15\x33\x2e\x01\x23\x05\x23\x0e\x03\ \x2b\x01\x15\x23\x11\x23\x35\x37\x35\x33\x32\x1e\x02\x17\x33\x01\ \x00\x45\x4e\x08\xd6\xd6\x08\x4e\x45\x01\x2a\x40\x05\x25\x3c\x4d\ \x2d\x45\x4f\x4b\x4b\x94\x2d\x4e\x3b\x25\x05\x40\x01\x2e\x3a\x39\ \x73\x01\x17\x6c\x3b\x31\xa4\x2c\x41\x2a\x15\xf5\x01\xa1\x33\x05\ \xa5\x12\x27\x3f\x2d\x00\x00\x00\x03\x00\x6d\x00\x00\x02\x22\x02\ \x99\x00\x03\x00\x12\x00\x2f\x00\x56\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x24\x00\x01\ \x00\x07\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xb9\ \x00\x1c\x00\x01\xf4\xb9\x00\x0f\x00\x01\xf4\xb8\x00\x24\x10\xb8\ \x00\x15\xdc\xb8\x00\x29\xd0\xb8\x00\x15\x10\xb9\x00\x2f\x00\x01\ \xf4\xb8\x00\x2b\xd0\xb8\x00\x2f\x10\xb8\x00\x2e\xdc\x30\x31\x37\ \x21\x15\x21\x01\x2e\x01\x23\x22\x0e\x02\x15\x14\x16\x33\x32\x36\ \x37\x13\x15\x07\x11\x23\x27\x23\x0e\x01\x23\x22\x26\x35\x34\x3e\ \x02\x33\x32\x16\x17\x27\x35\x23\x35\x33\x35\x33\x15\x79\x01\x7a\ \xfe\x86\x01\x14\x1b\x2d\x1e\x17\x29\x1f\x12\x39\x34\x1c\x34\x1a\ \x95\x4e\x3a\x06\x04\x17\x3e\x27\x4c\x5b\x1d\x31\x3f\x21\x27\x35\ \x1a\x04\x9b\x9b\x47\x31\x31\x01\x79\x16\x13\x12\x20\x2b\x19\x3e\ \x45\x19\x1c\x01\x78\x2c\x05\xfe\x53\x2b\x17\x1e\x61\x5c\x29\x42\ \x2f\x19\x18\x16\x53\x22\x31\x43\x43\x00\x00\x00\x04\x00\x2b\x00\ \x00\x02\x2a\x02\x7e\x00\x08\x00\x0d\x00\x13\x00\x34\x00\x8d\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x2f\x2f\x1b\xb9\x00\x2f\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x25\x2f\x1b\xb9\x00\x25\x00\x03\ \x3e\x59\xbb\x00\x09\x00\x01\x00\x23\x00\x04\x2b\xb8\x00\x2f\x10\ \xb9\x00\x0e\x00\x01\xf4\xb8\x00\x10\xd0\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x00\xdc\xb9\x00\x0b\x00\x01\xf4\xb8\x00\x06\x10\xb8\x00\ \x15\xd0\xb8\x00\x00\x10\xb8\x00\x1b\xd0\xb8\x00\x0b\x10\xb8\x00\ \x1d\xd0\xb8\x00\x0b\x10\xb8\x00\x27\xd0\xb8\x00\x00\x10\xb8\x00\ \x2a\xd0\xb8\x00\x06\x10\xb8\x00\x2b\xd0\xb8\x00\x10\x10\xb8\x00\ \x2e\xd0\xb8\x00\x10\x10\xb8\x00\x33\xd0\x30\x31\x01\x3e\x01\x35\ \x34\x26\x27\x23\x15\x17\x32\x37\x23\x15\x11\x15\x33\x2e\x01\x23\ \x05\x23\x1e\x01\x15\x1c\x01\x07\x33\x15\x23\x0e\x03\x2b\x01\x15\ \x23\x11\x23\x35\x37\x35\x23\x35\x37\x35\x33\x32\x16\x17\x33\x01\ \x9b\x01\x01\x01\x01\xd6\x3b\x70\x21\xcc\xc9\x11\x47\x36\x01\x2a\ \x41\x01\x01\x01\x40\x48\x0a\x29\x38\x46\x27\x45\x4f\x4b\x4b\x4b\ \x4b\x94\x4e\x73\x15\x4a\x01\xa2\x06\x0d\x07\x09\x10\x08\x3b\x74\ \x4b\x4b\x01\x17\x3f\x22\x1d\x68\x08\x10\x09\x07\x0d\x06\x29\x22\ \x31\x21\x10\xf5\x01\x79\x24\x05\x3b\x25\x04\x78\x37\x41\x00\x00\ \x01\x00\x54\xff\x92\x02\x0e\x02\xec\x00\x2a\x00\x75\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x0f\x2f\x1b\xb9\x00\x0f\x00\x0b\x3e\x59\xb8\ \x00\x00\x45\x58\xb8\x00\x12\x2f\x1b\xb9\x00\x12\x00\x0b\x3e\x59\ \xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x05\x2f\x1b\xb9\x00\x05\x00\x03\ \x3e\x59\xbb\x00\x2a\x00\x01\x00\x27\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x03\xdc\xb8\x00\x12\x10\xb8\x00\x11\xdc\xb8\x00\x12\x10\ \xb9\x00\x19\x00\x01\xf4\xb8\x00\x05\x10\xb9\x00\x23\x00\x01\xf4\ \x30\x31\x25\x06\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\ \x33\x15\x1e\x01\x17\x07\x2e\x01\x23\x22\x0e\x02\x15\x14\x1e\x02\ \x33\x32\x36\x37\x35\x23\x35\x33\x02\x0e\x43\x58\x3c\x32\x54\x3c\ \x21\x20\x3b\x54\x34\x3c\x2e\x4f\x1b\x31\x1a\x3b\x26\x2c\x43\x2f\ \x18\x18\x2d\x41\x2a\x20\x3a\x10\x74\xbf\x3d\x3e\x09\x64\x64\x06\ \x32\x54\x74\x48\x46\x73\x55\x33\x08\x65\x63\x04\x2c\x1f\x2e\x1b\ \x21\x25\x44\x62\x3c\x3e\x62\x44\x25\x16\x0f\xa9\x45\x00\x00\x00\ \x02\x00\x60\xff\x92\x02\x22\x02\xe9\x00\x06\x00\x25\x00\x7b\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x17\x2f\x1b\xb9\x00\x17\x00\x0b\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\x0b\ \x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\x0a\x00\ \x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\ \x00\x03\x3e\x59\xb8\x00\x17\x10\xb9\x00\x00\x00\x01\xf4\xb8\x00\ \x0d\x10\xb9\x00\x06\x00\x01\xf4\xb8\x00\x0d\x10\xb8\x00\x0c\xdc\ \xb8\x00\x1a\x10\xb8\x00\x19\xdc\xb8\x00\x00\x10\xb8\x00\x21\xd0\ \xb8\x00\x06\x10\xb8\x00\x22\xd0\x30\x31\x01\x0e\x01\x15\x14\x16\ \x17\x37\x0e\x01\x07\x15\x23\x35\x2e\x03\x35\x34\x3e\x02\x37\x35\ \x33\x15\x1e\x01\x17\x07\x2e\x01\x27\x11\x3e\x01\x37\x01\x4a\x48\ \x4d\x4d\x48\xd8\x21\x4f\x33\x35\x34\x56\x3e\x22\x21\x3d\x57\x35\ \x35\x2f\x4f\x1c\x31\x17\x32\x20\x22\x36\x1a\x02\x45\x0e\x8a\x6c\ \x70\x8c\x0d\x19\x26\x30\x05\x64\x63\x05\x31\x54\x76\x49\x47\x74\ \x54\x34\x07\x61\x60\x03\x2b\x1f\x2f\x17\x1f\x04\xfd\xf1\x05\x23\ \x1d\x00\x00\x00\x01\x00\x6c\x00\x00\x02\x0c\x02\x7e\x00\x1d\x00\ \x70\x00\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1d\x2f\x1b\xb9\x00\x1d\ \x00\x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\x1b\xb9\x00\ \x0b\x00\x03\x3e\x59\xb8\x00\x1d\x10\xb9\x00\x01\x00\x01\xf4\xb8\ \x00\x1a\xd0\xb8\x00\x17\xd0\xb8\x00\x04\xd0\xb8\x00\x17\x10\xb9\ \x00\x13\x00\x01\xf4\xb8\x00\x07\xd0\xb8\x00\x13\x10\xb8\x00\x10\ \xd0\xb9\x00\x0d\x00\x01\xf4\xb8\x00\x0a\xd0\xb8\x00\x0a\x2f\x30\ \x31\x01\x23\x1e\x01\x17\x33\x15\x23\x0e\x01\x07\x13\x23\x27\x23\ \x35\x33\x32\x36\x37\x21\x35\x37\x33\x2e\x01\x2b\x01\x35\x21\x02\ \x0c\x9d\x21\x2b\x08\x49\x47\x05\x5d\x49\xd0\x5e\xc7\x59\x4f\x53\ \x60\x05\xfe\xf9\x4c\xb8\x0c\x5d\x4c\x4f\x01\xa0\x02\x4d\x0f\x35\ \x23\x31\x4c\x58\x0e\xfe\xfd\xfc\x43\x3a\x3c\x2c\x05\x2e\x26\x44\ \x00\x00\x00\x00\x01\x00\x38\xff\xf2\x02\x18\x02\x7e\x00\x24\x00\ \x5d\x00\xb8\x00\x00\x45\x58\xb8\x00\x1a\x2f\x1b\xb9\x00\x1a\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x11\x2f\x1b\xb9\x00\x11\ \x00\x03\x3e\x59\xb9\x00\x00\x00\x01\xf4\xba\x00\x20\x00\x11\x00\ \x1a\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x23\xd0\xb8\x00\x12\xd0\ \xb8\x00\x20\x10\xb8\x00\x15\xd0\xb8\x00\x1f\xd0\xb8\x00\x16\xd0\ \xb8\x00\x1f\x10\xb8\x00\x1c\xd0\xb8\x00\x19\xd0\x30\x31\x37\x3e\ \x03\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x27\x11\x07\x35\ \x37\x35\x07\x35\x37\x35\x33\x15\x37\x15\x07\x15\x37\x15\x07\x15\ \xf4\x25\x4e\x41\x29\x01\x05\x45\x05\x03\x3a\x66\x89\x4f\x68\x68\ \x68\x68\x54\xb6\xb6\xb6\xb6\x42\x01\x16\x29\x3d\x27\x08\x15\x0e\ \x12\x11\x1b\x0d\x3f\x5e\x3e\x1d\x02\x01\x11\x30\x35\x30\x48\x30\ \x34\x31\xc7\x9e\x56\x35\x56\x48\x56\x34\x57\xec\x00\x00\x00\x00\ \x02\x00\x1c\x00\x20\x02\x3c\x02\x70\x00\x03\x00\x07\x00\x0b\x00\ \xba\x00\x07\x00\x03\x00\x03\x2b\x30\x31\x3f\x01\x17\x07\x01\x07\ \x27\x37\x1c\xb7\x21\xa7\x01\xef\xb7\x21\xa7\x4d\xbc\x1e\xcb\x02\ \x23\xbc\x1e\xcb\x00\x00\x00\xff\xff\x00\x1c\x00\x20\x02\x3c\x02\ \x70\x02\x06\x02\x88\x00\x00\xff\xff\x00\x1c\x00\x20\x02\x3c\x02\ \x70\x02\x06\x02\x88\x00\x00\xff\xff\x00\x1c\xff\xf4\x02\x3d\x02\ \x8a\x02\x27\x02\x38\xff\x7b\x01\x4d\x00\x26\x02\x88\x00\x00\x00\ \x07\x02\x38\x00\x86\x00\x00\x00\x07\x00\x30\xff\xf4\x02\x3f\x02\ \x8a\x00\x0b\x00\x17\x00\x1b\x00\x27\x00\x33\x00\x3f\x00\x4b\x00\ \x76\x00\xb8\x00\x00\x45\x58\xb8\x00\x06\x2f\x1b\xb9\x00\x06\x00\ \x0b\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1c\x2f\x1b\xb9\x00\x1c\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x34\x2f\x1b\xb9\x00\ \x34\x00\x03\x3e\x59\xbb\x00\x22\x00\x01\x00\x2e\x00\x04\x2b\xbb\ \x00\x0c\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x06\x10\xb9\x00\x12\ \x00\x01\xf4\xb8\x00\x1c\x10\xb9\x00\x28\x00\x01\xf4\xb8\x00\x22\ \x10\xb8\x00\x3a\xd0\xb8\x00\x28\x10\xb8\x00\x40\xd0\xb8\x00\x2e\ \x10\xb8\x00\x46\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\ \x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x25\ \x05\x27\x25\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\ \x32\x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x05\x22\x26\x35\x34\ \x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\x23\x22\x06\ \x15\x14\x16\xa5\x34\x41\x41\x34\x34\x41\x41\x34\x1b\x23\x23\x1b\ \x1b\x24\x24\x01\xb5\xfe\x38\x0e\x01\xbe\xfe\x7e\x34\x41\x41\x34\ \x34\x41\x41\x34\x1b\x23\x23\x1b\x1b\x24\x24\x01\x2a\x34\x41\x41\ \x34\x34\x41\x41\x34\x1b\x23\x23\x1b\x1b\x24\x24\x01\x85\x45\x3f\ \x3d\x44\x44\x3d\x3f\x45\x2a\x2b\x2f\x2d\x2a\x2a\x2d\x2f\x2b\x15\ \xae\x1f\xc9\xfd\xf6\x45\x3f\x3d\x44\x44\x3d\x3f\x45\x2a\x2b\x2f\ \x2d\x29\x29\x2d\x2f\x2b\x2a\x45\x3f\x3d\x44\x44\x3d\x3f\x45\x2a\ \x2b\x2f\x2d\x29\x29\x2d\x2f\x2b\x00\x00\x00\xff\xff\x00\x1c\x00\ \x00\x02\x3f\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3c\x00\x86\x00\x00\xff\xff\x00\x1c\x00\ \x00\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3a\x00\x87\x00\x00\xff\xff\x00\x27\x00\ \x00\x02\x55\x02\x8a\x02\x27\x02\x3b\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x19\x00\x00\x07\x02\x3c\x00\x86\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x8a\x02\x27\x02\x3a\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x3b\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x39\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x8a\x02\x27\x02\x3b\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x3d\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\xff\xff\x00\x1c\xff\ \xf4\x02\x3c\x02\x7e\x02\x27\x02\x3f\xff\x7b\x01\x4d\x00\x26\x02\ \x88\x00\x00\x00\x07\x02\x40\x00\x87\x00\x00\x00\x01\x00\x55\x00\ \x68\x02\x03\x02\x2c\x00\x0b\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\ \x01\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\x30\x31\x01\x23\x35\x33\x35\x33\x15\x33\x15\x23\ \x15\x23\x01\x0b\xb6\xb6\x42\xb6\xb6\x42\x01\x2b\x3e\xc3\xc3\x3e\ \xc3\x00\x00\x00\x01\x00\x55\x01\x2b\x02\x03\x01\x69\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x21\ \x15\x21\x55\x01\xae\xfe\x52\x01\x69\x3e\x00\x00\x01\x00\x66\x00\ \x7e\x01\xf2\x02\x15\x00\x0b\x00\x29\x00\xba\x00\x05\x00\x09\x00\ \x03\x2b\xba\x00\x0a\x00\x09\x00\x05\x11\x12\x39\xb8\x00\x0a\x10\ \xb8\x00\x01\xd0\xb8\x00\x0a\x10\xb8\x00\x07\xd0\xb8\x00\x04\xd0\ \x30\x31\x3f\x01\x27\x37\x17\x37\x17\x07\x17\x07\x27\x07\x66\x9a\ \x9a\x2c\x9a\x9a\x2c\x9a\x9a\x2c\x9a\x9a\xab\x9f\x9e\x2d\x9f\x9f\ \x2d\x9e\x9f\x2d\xa0\xa0\x00\x00\x03\x00\x55\x00\x60\x02\x03\x02\ \x33\x00\x0b\x00\x17\x00\x1b\x00\x25\x00\xbb\x00\x19\x00\x01\x00\ \x1a\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x00\xdc\xb8\x00\x06\xdc\ \xb8\x00\x1a\x10\xb8\x00\x0f\xdc\xb8\x00\x15\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x03\x34\x36\x33\x32\x16\ \x15\x14\x06\x23\x22\x26\x27\x21\x15\x21\x01\x2c\x17\x1f\x1f\x17\ \x17\x1f\x1f\x4d\x1f\x17\x17\x1f\x1f\x17\x17\x1f\xa1\x01\xae\xfe\ \x52\x01\xc8\x1e\x18\x17\x1e\x1e\x17\x18\x1e\xfe\xce\x17\x1e\x1e\ \x17\x18\x1e\x1e\xeb\x3e\x00\xff\xff\x00\xd8\x01\x07\x01\x7a\x01\ \xb0\x02\x07\x01\xe3\xff\xfd\x01\x13\x00\x00\xff\xff\x00\x55\x00\ \xc1\x02\x03\x01\xd4\x02\x26\x02\x97\x00\x6b\x00\x06\x02\x97\x00\ \x96\x00\x00\x00\x01\x00\x78\x00\x30\x01\xed\x02\x68\x00\x07\x00\ \x3b\x00\xbb\x00\x00\x00\x01\x00\x07\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\xba\x00\ \x04\x00\x00\x00\x07\x11\x12\x39\xb8\x00\x07\x10\xb8\x00\x05\xd0\ \xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\x13\x25\x15\x05\ \x15\x05\x15\x25\x78\x01\x75\xfe\xd3\x01\x2d\xfe\x8b\x01\x6b\xfd\ \x4f\xcb\x04\xcb\x4f\xfd\x00\x00\x01\x00\x6b\x00\x30\x01\xe0\x02\ \x68\x00\x07\x00\x3b\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x02\xd0\xb8\x00\x02\x2f\xb9\x00\x01\x00\ \x01\xf4\xba\x00\x04\x00\x07\x00\x00\x11\x12\x39\xb8\x00\x07\x10\ \xb8\x00\x05\xd0\xb8\x00\x05\x2f\xb9\x00\x06\x00\x01\xf4\x30\x31\ \x01\x05\x35\x25\x35\x25\x35\x05\x01\xe0\xfe\x8b\x01\x2d\xfe\xd3\ \x01\x75\x01\x2d\xfd\x4f\xcb\x04\xcb\x4f\xfd\x00\x02\x00\x55\x00\ \x00\x02\x03\x02\x15\x00\x03\x00\x0d\x00\x4e\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x03\x3e\x59\xbb\x00\x04\ \x00\x01\x00\x0d\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x00\x00\x01\ \xf4\xba\x00\x09\x00\x04\x00\x0d\x11\x12\x39\xb8\x00\x09\x10\xb8\ \x00\x05\xd0\xb9\x00\x06\x00\x01\xf4\xb8\x00\x09\x10\xb8\x00\x0c\ \xd0\xb9\x00\x0b\x00\x01\xf4\x30\x31\x37\x21\x15\x21\x11\x25\x15\ \x0f\x01\x15\x1f\x01\x15\x25\x55\x01\xae\xfe\x52\x01\xae\xd2\x87\ \x87\xd2\xfe\x52\x3e\x3e\x01\x7c\x99\x47\x49\x2c\x04\x2c\x49\x47\ \x99\x00\x00\x00\x02\x00\x55\x00\x00\x02\x03\x02\x15\x00\x03\x00\ \x0d\x00\x4e\x00\xb8\x00\x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\ \x02\x00\x03\x3e\x59\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\ \x00\x02\x10\xb9\x00\x00\x00\x01\xf4\xba\x00\x08\x00\x0d\x00\x04\ \x11\x12\x39\xb8\x00\x08\x10\xb8\x00\x05\xd0\xb9\x00\x06\x00\x01\ \xf4\xb8\x00\x08\x10\xb8\x00\x0c\xd0\xb9\x00\x0b\x00\x01\xf4\x30\ \x31\x37\x21\x15\x21\x01\x05\x35\x3f\x01\x35\x2f\x01\x35\x05\x55\ \x01\xae\xfe\x52\x01\xae\xfe\x52\xd2\x87\x87\xd2\x01\xae\x3e\x3e\ \x01\x32\x99\x47\x49\x2c\x04\x2c\x49\x47\x99\x00\x02\x00\x55\x00\ \x00\x02\x03\x02\x2c\x00\x0b\x00\x0f\x00\x44\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x0e\x2f\x1b\xb9\x00\x0e\x00\x03\x3e\x59\xbb\x00\x03\ \x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\ \x00\x03\x10\xb8\x00\x06\xd0\xb8\x00\x00\x10\xb8\x00\x08\xd0\xb8\ \x00\x0e\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\x0b\xdc\x30\x31\x01\ \x23\x35\x33\x35\x33\x15\x33\x15\x23\x15\x23\x07\x21\x15\x21\x01\ \x0b\xb6\xb6\x42\xb6\xb6\x42\xb6\x01\xae\xfe\x52\x01\x30\x3e\xbe\ \xbe\x3e\xb1\x41\x3e\x00\x00\x00\x01\x00\x6f\x01\x1c\x01\xe9\x02\ \x9e\x00\x09\x00\x26\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0d\x3e\x59\xb8\x00\x02\xdc\xba\x00\x05\x00\x00\ \x00\x02\x11\x12\x39\xb8\x00\x09\xd0\x30\x31\x01\x33\x13\x23\x2f\ \x01\x23\x0f\x01\x23\x01\x08\x48\x99\x48\x42\x31\x04\x31\x42\x48\ \x02\x9e\xfe\x7e\xb0\x85\x85\xb0\x00\x00\x00\x00\x01\x00\x55\x00\ \x41\x02\x03\x02\x53\x00\x13\x00\x47\x00\xbb\x00\x07\x00\x01\x00\ \x0d\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x0e\xdc\xb9\x00\x11\x00\ \x01\xf4\xb8\x00\x00\xd0\xb8\x00\x0e\x10\xb8\x00\x03\xd0\xb8\x00\ \x0d\x10\xb8\x00\x04\xd0\xb8\x00\x07\x10\xb8\x00\x08\xdc\xb8\x00\ \x07\x10\xb8\x00\x0a\xd0\xb8\x00\x00\x10\xb8\x00\x13\xdc\x30\x31\ \x37\x23\x35\x33\x37\x23\x35\x21\x37\x33\x07\x33\x15\x23\x07\x33\ \x15\x21\x07\x23\xbc\x67\x8b\x5b\xe6\x01\x0a\x4c\x3d\x4c\x67\x8b\ \x5b\xe6\xfe\xf6\x4c\x3d\xc0\x3e\x98\x3e\x7f\x7f\x3e\x98\x3e\x7f\ \x00\x00\x00\x00\x01\x00\x4c\x00\xff\x02\x0c\x01\x95\x00\x19\x00\ \x27\x00\xbb\x00\x03\x00\x01\x00\x16\x00\x04\x2b\xbb\x00\x11\x00\ \x01\x00\x08\x00\x04\x2b\xb8\x00\x03\x10\xb8\x00\x0d\xd0\xb8\x00\ \x11\x10\xb8\x00\x19\xd0\x30\x31\x13\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x3e\x02\x37\x17\x0e\x01\x23\x22\x2e\x02\x23\x22\x06\x07\x4c\ \x1a\x48\x26\x1e\x2f\x29\x27\x15\x0c\x15\x15\x12\x09\x35\x1a\x48\ \x26\x1e\x2f\x29\x27\x15\x17\x29\x11\x01\x16\x46\x37\x1a\x20\x1a\ \x07\x13\x22\x1a\x18\x46\x36\x1a\x20\x1a\x22\x34\x00\x00\x00\xff\ \xff\x00\x4c\x00\x95\x02\x0c\x02\x00\x02\x26\x02\xa3\x00\x6b\x00\ \x06\x02\xa3\x00\x96\x00\x00\x00\x01\x00\x55\x00\x68\x02\x03\x01\ \x69\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x21\x11\x23\x35\x21\x55\x01\xae\x42\xfe\x94\x01\x69\ \xfe\xff\xc3\x00\x01\x00\x27\xff\xf4\x02\x31\x01\xe6\x00\x23\x00\ \x52\x00\xb8\x00\x00\x45\x58\xb8\x00\x10\x2f\x1b\xb9\x00\x10\x00\ \x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x21\x2f\x1b\xb9\x00\x21\ \x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\x00\ \x0a\x00\x03\x3e\x59\xb8\x00\x10\x10\xb9\x00\x0d\x00\x01\xf4\xb8\ \x00\x05\xd0\xb8\x00\x12\xd0\xb8\x00\x21\x10\xb9\x00\x1b\x00\x01\ \xf4\x30\x31\x25\x34\x3e\x02\x37\x23\x14\x06\x07\x27\x3e\x01\x35\ \x23\x35\x37\x21\x15\x23\x0e\x02\x14\x15\x14\x16\x33\x32\x37\x17\ \x0e\x01\x23\x22\x26\x01\x86\x01\x02\x02\x01\xb9\x07\x07\x53\x0c\ \x08\x5f\x46\x01\xc4\x56\x02\x03\x02\x16\x17\x07\x14\x0b\x0b\x19\ \x13\x39\x31\x6e\x13\x47\x56\x5c\x28\x67\xd5\x6b\x05\x6c\xd3\x63\ \x3f\x05\x44\x29\x5f\x59\x47\x12\x1a\x16\x06\x3f\x05\x06\x3e\x00\ \x03\xff\xfc\x00\x96\x02\x5c\x01\xfb\x00\x25\x00\x31\x00\x3c\x00\ \x5a\x00\xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\ \x07\x3e\x59\xbb\x00\x29\x00\x01\x00\x1d\x00\x04\x2b\xbb\x00\x32\ \x00\x01\x00\x00\x00\x04\x2b\xbb\x00\x0a\x00\x01\x00\x37\x00\x04\ \x2b\xba\x00\x20\x00\x1d\x00\x13\x11\x12\x39\xb8\x00\x20\x10\xb8\ \x00\x26\xd0\xb8\x00\x0f\xd0\xb8\x00\x13\x10\xb9\x00\x2f\x00\x01\ \xf4\xb8\x00\x20\x10\xb8\x00\x34\xd0\x30\x31\x37\x22\x2e\x02\x35\ \x34\x3e\x02\x33\x32\x1e\x02\x17\x33\x3e\x01\x33\x32\x1e\x02\x15\ \x14\x0e\x02\x23\x22\x26\x27\x23\x0e\x03\x37\x1e\x01\x33\x32\x36\ \x35\x34\x26\x23\x22\x06\x07\x32\x37\x2e\x01\x23\x22\x06\x15\x14\ \x16\x82\x1b\x31\x25\x15\x17\x27\x35\x1f\x19\x29\x23\x1c\x0b\x04\ \x1f\x4f\x36\x21\x39\x29\x17\x17\x29\x39\x22\x37\x4f\x26\x04\x0b\ \x1c\x23\x2b\x9d\x21\x3e\x26\x2d\x30\x34\x30\x23\x3d\xc9\x40\x28\ \x19\x34\x1d\x24\x2b\x2f\xaa\x18\x2a\x38\x20\x27\x3e\x2b\x17\x10\ \x1c\x24\x15\x35\x40\x19\x2e\x3f\x25\x2a\x45\x30\x1b\x39\x3e\x12\ \x23\x1d\x11\xaa\x3e\x31\x3d\x2b\x30\x3f\x31\xa2\x58\x31\x2b\x2d\ \x29\x29\x35\x00\x01\x00\x4d\xff\x45\x02\x2e\x01\xe6\x00\x28\x00\ \x73\x00\xb8\x00\x28\x2f\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0b\x2f\ \x1b\xb9\x00\x0b\x00\x07\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1f\ \x2f\x1b\xb9\x00\x1f\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xb8\x00\x1f\x10\xb9\x00\ \x05\x00\x01\xf4\xba\x00\x1c\x00\x0b\x00\x1f\x11\x12\x39\xb8\x00\ \x1c\x10\xb9\x00\x0a\x00\x01\xf4\xb8\x00\x18\x10\xb9\x00\x12\x00\ \x01\xf4\x30\x31\x13\x33\x11\x14\x16\x33\x32\x3e\x02\x37\x11\x33\ \x0e\x01\x15\x14\x16\x33\x3a\x01\x37\x17\x06\x23\x22\x26\x27\x23\ \x0e\x01\x23\x22\x26\x27\x1c\x01\x1e\x01\x17\x23\x4d\x53\x34\x39\ \x13\x26\x26\x27\x14\x53\x02\x03\x10\x0b\x04\x07\x07\x0c\x13\x1d\ \x26\x24\x05\x03\x20\x51\x2f\x23\x3b\x14\x02\x02\x02\x53\x01\xe6\ \xfe\xdd\x43\x45\x09\x18\x2b\x23\x01\x3c\x63\xcf\x58\x14\x10\x02\ \x3e\x08\x35\x3a\x38\x35\x15\x20\x26\x3b\x34\x33\x1e\x00\x00\x00\ \x02\x00\x4c\xff\xf4\x02\x0b\x02\xa0\x00\x0f\x00\x31\x00\x57\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x13\x2f\x1b\xb9\x00\x13\x00\x0d\x3e\ \x59\xb8\x00\x00\x45\x58\xb8\x00\x1b\x2f\x1b\xb9\x00\x1b\x00\x03\ \x3e\x59\xbb\x00\x25\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x1b\x10\ \xb9\x00\x00\x00\x01\xf4\xba\x00\x28\x00\x1b\x00\x25\x11\x12\x39\ \xb8\x00\x28\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x13\x10\xb9\x00\ \x2e\x00\x01\xf4\x30\x31\x25\x32\x36\x37\x2e\x01\x23\x22\x0e\x02\ \x15\x14\x1e\x02\x03\x3e\x01\x33\x32\x16\x15\x14\x0e\x02\x23\x22\ \x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x36\x34\x35\x34\x26\x23\ \x22\x06\x07\x01\x0a\x41\x59\x10\x21\x46\x21\x25\x37\x24\x12\x12\ \x1f\x28\x5a\x20\x4f\x2f\x61\x73\x26\x46\x62\x3b\x24\x42\x32\x1e\ \x1e\x38\x50\x33\x29\x4f\x1d\x01\x4c\x40\x20\x38\x18\x38\x6c\x64\ \x2a\x22\x18\x29\x39\x21\x1e\x2f\x22\x12\x02\x25\x20\x23\x98\x9b\ \x54\x8b\x63\x37\x1b\x31\x47\x2d\x31\x53\x3c\x22\x26\x22\x08\x11\ \x08\x7d\x70\x1b\x18\x00\x00\x00\x01\x00\xba\xff\x62\x01\xb9\x03\ \x15\x00\x26\x00\x17\x00\xbb\x00\x02\x00\x01\x00\x23\x00\x04\x2b\ \xbb\x00\x0f\x00\x01\x00\x16\x00\x04\x2b\x30\x31\x17\x16\x33\x32\ \x36\x35\x34\x2e\x02\x35\x34\x3e\x02\x33\x32\x16\x17\x07\x2e\x01\ \x23\x22\x06\x15\x14\x1e\x02\x15\x14\x0e\x02\x23\x22\x27\x37\xc3\ \x0c\x17\x2a\x19\x0d\x10\x0d\x0b\x1f\x36\x2b\x0f\x1a\x06\x0a\x07\ \x11\x0b\x29\x18\x0d\x0f\x0d\x0b\x1f\x36\x2b\x1f\x10\x09\x59\x04\ \x52\x4e\x37\x7e\x82\x7f\x38\x30\x54\x3d\x23\x04\x02\x3e\x02\x02\ \x55\x4d\x36\x7e\x82\x7f\x37\x31\x54\x3d\x23\x07\x3e\x00\x00\x00\ \x01\x00\x3e\xff\xa1\x02\x47\x03\x34\x00\x0f\x00\x0d\x00\xbb\x00\ \x04\x00\x01\x00\x0b\x00\x04\x2b\x30\x31\x25\x1e\x01\x17\x33\x3e\ \x01\x37\x13\x33\x03\x23\x03\x07\x27\x37\x01\x38\x05\x08\x04\x04\ \x03\x05\x04\xb2\x3c\xda\x3e\x96\x47\x14\x86\x3b\x10\x20\x10\x10\ \x20\x10\x02\xf9\xfc\x6d\x01\xac\x20\x2d\x3b\x00\x02\x00\x24\x00\ \x00\x02\x35\x02\x90\x00\x05\x00\x0b\x00\x45\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x01\x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb9\x00\ \x06\x00\x01\xf4\xb8\x00\x0b\xd0\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x03\xd0\xb8\x00\x01\x10\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x37\x13\x33\x13\x15\x21\x25\x03\x27\x23\x07\x03\x24\xd9\x5f\xd9\ \xfd\xef\x01\xb5\x67\x44\x04\x45\x66\x32\x02\x5e\xfd\xa2\x32\x47\ \x01\x2c\xd2\xd2\xfe\xd4\x00\x00\x01\x00\x1d\x00\x00\x02\x3b\x02\ \x9c\x00\x31\x00\x60\x00\xb8\x00\x00\x45\x58\xb8\x00\x0c\x2f\x1b\ \xb9\x00\x0c\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x30\x2f\ \x1b\xb9\x00\x30\x00\x03\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x1a\ \x2f\x1b\xb9\x00\x1a\x00\x03\x3e\x59\xb8\x00\x30\x10\xb9\x00\x01\ \x00\x01\xf4\xb8\x00\x1a\x10\xb9\x00\x17\x00\x01\xf4\xb8\x00\x1b\ \xd0\xb8\x00\x0c\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x01\x10\xb8\ \x00\x2f\xd0\x30\x31\x37\x33\x35\x2e\x03\x35\x34\x3e\x02\x33\x32\ \x1e\x02\x15\x14\x0e\x02\x07\x15\x33\x15\x23\x35\x3e\x03\x35\x34\ \x2e\x02\x23\x22\x0e\x02\x15\x14\x1e\x02\x17\x15\x23\x1d\x7b\x14\ \x28\x1f\x13\x24\x43\x60\x3b\x3b\x60\x43\x24\x13\x1f\x28\x14\x7b\ \xd2\x18\x29\x1d\x11\x17\x2c\x40\x29\x29\x40\x2c\x17\x11\x1d\x29\ \x18\xd2\x44\x04\x15\x37\x46\x53\x32\x45\x74\x55\x2f\x2f\x55\x74\ \x45\x32\x53\x46\x37\x15\x04\x44\x3d\x16\x38\x46\x55\x34\x35\x5b\ \x43\x26\x26\x43\x5b\x35\x34\x55\x46\x38\x16\x3d\x00\x00\x00\x00\ \x01\x00\x46\xff\x88\x02\x25\x02\x7e\x00\x0d\x00\x4a\x00\xb8\x00\ \x00\x45\x58\xb8\x00\x02\x2f\x1b\xb9\x00\x02\x00\x0b\x3e\x59\xbb\ \x00\x0a\x00\x01\x00\x0b\x00\x04\x2b\xb8\x00\x02\x10\xb9\x00\x04\ \x00\x01\xf4\xba\x00\x07\x00\x0a\x00\x04\x11\x12\x39\xb8\x00\x07\ \x10\xb8\x00\x00\xd0\xb8\x00\x04\x10\xb8\x00\x01\xd0\xb8\x00\x0a\ \x10\xb8\x00\x0d\xd0\x30\x31\x01\x03\x35\x21\x15\x21\x15\x13\x03\ \x15\x21\x15\x21\x35\x01\x34\xe3\x01\xb8\xfe\xaf\xd4\xde\x01\x77\ \xfe\x21\x01\x03\x01\x46\x35\x47\x04\xfe\xd1\xfe\xcf\x04\x47\x35\ \x00\x00\x00\x00\x01\x00\x34\xff\x88\x02\x24\x02\x7e\x00\x07\x00\ \x22\x00\xb8\x00\x06\x2f\xb8\x00\x03\x2f\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x0b\x3e\x59\xb9\x00\x04\x00\x01\ \xf4\x30\x31\x13\x21\x11\x23\x11\x21\x11\x23\x34\x01\xf0\x55\xfe\ \xb8\x53\x02\x7e\xfd\x0a\x02\xad\xfd\x53\x00\x00\x02\x00\x75\xff\ \xf4\x01\xf1\x02\xd0\x00\x09\x00\x2e\x00\x59\x00\xb8\x00\x00\x45\ \x58\xb8\x00\x1f\x2f\x1b\xb9\x00\x1f\x00\x0f\x3e\x59\xb8\x00\x00\ \x45\x58\xb8\x00\x0d\x2f\x1b\xb9\x00\x0d\x00\x03\x3e\x59\xba\x00\ \x00\x00\x0d\x00\x1f\x11\x12\x39\xb8\x00\x1f\x10\xb9\x00\x06\x00\ \x01\xf4\xb8\x00\x00\x10\xb9\x00\x25\x00\x01\xf4\xb8\x00\x12\xd0\ \xb8\x00\x00\x10\xb8\x00\x19\xd0\xb8\x00\x0d\x10\xb9\x00\x2b\x00\ \x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x23\x22\x06\x15\x13\x0e\ \x01\x23\x22\x2e\x02\x27\x0e\x01\x07\x27\x3e\x01\x37\x11\x34\x3e\ \x02\x33\x32\x16\x15\x14\x06\x07\x15\x14\x1e\x02\x33\x32\x36\x37\ \x01\x1b\x3b\x42\x21\x19\x1b\x28\xd6\x19\x43\x2c\x1f\x37\x2c\x1b\ \x02\x0c\x1a\x0e\x21\x17\x2a\x14\x16\x27\x36\x1f\x39\x49\x67\x5c\ \x0e\x19\x21\x12\x1e\x2b\x12\x01\x33\x3b\x80\x47\x32\x2a\x43\x49\ \xfe\x2e\x17\x28\x16\x2a\x40\x2a\x09\x11\x09\x34\x0e\x1f\x0f\x01\ \x0c\x3a\x52\x35\x18\x50\x4b\x5e\xad\x4e\x22\x23\x31\x1e\x0e\x1b\ \x11\x00\x00\x00\x02\x00\x1a\xff\xf4\x02\x3e\x02\x94\x00\x20\x00\ \x32\x00\x43\x00\xb8\x00\x00\x45\x58\xb8\x00\x14\x2f\x1b\xb9\x00\ \x14\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\x0a\x2f\x1b\xb9\ \x00\x0a\x00\x03\x3e\x59\xbb\x00\x32\x00\x01\x00\x1b\x00\x04\x2b\ \xb8\x00\x0a\x10\xb9\x00\x03\x00\x01\xf4\xb8\x00\x14\x10\xb9\x00\ \x29\x00\x01\xf4\x30\x31\x37\x1e\x01\x33\x32\x36\x37\x33\x0e\x01\ \x23\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\x1d\x01\x21\x22\ \x1d\x01\x14\x16\x01\x32\x3d\x01\x34\x27\x2e\x01\x23\x22\x06\x07\ \x0e\x01\x1d\x01\x14\x33\xa4\x1a\x47\x29\x35\x5e\x23\x26\x29\x71\ \x44\x39\x63\x4b\x2b\x2b\x4b\x63\x39\x39\x63\x4b\x2b\xfe\x62\x04\ \x05\x01\x17\x06\x0a\x1a\x46\x26\x29\x47\x1a\x03\x05\x04\x44\x1d\ \x1f\x3d\x33\x3c\x48\x35\x5b\x7a\x46\x46\x7a\x5b\x35\x35\x5b\x7a\ \x46\x08\x04\xe0\x06\x09\x01\x05\x06\xe0\x0c\x0a\x1a\x1c\x1f\x1b\ \x05\x0c\x05\xdc\x06\x00\x00\x00\x01\x00\x11\xff\xf1\x02\x39\x02\ \x07\x00\x09\x00\x0d\x00\xbb\x00\x04\x00\x01\x00\x05\x00\x04\x2b\ \x30\x31\x37\x01\x17\x07\x21\x15\x21\x17\x07\x01\x11\x01\x10\x2b\ \xc9\x01\xb6\xfe\x4a\xc9\x2b\xfe\xf0\xfe\x01\x09\x2e\xbb\x44\xbb\ \x2e\x01\x09\x00\x01\x00\x21\xff\xe7\x02\x37\x02\x0f\x00\x09\x00\ \x15\x00\xba\x00\x00\x00\x04\x00\x03\x2b\xba\x00\x06\x00\x04\x00\ \x00\x11\x12\x39\x30\x31\x09\x01\x07\x27\x11\x23\x11\x07\x27\x01\ \x01\x2e\x01\x09\x2e\xbb\x44\xbb\x2e\x01\x09\x02\x0f\xfe\xf0\x2a\ \xc9\xfe\x49\x01\xb7\xc9\x2a\x01\x10\x00\x00\x00\x01\x00\x1d\xff\ \xf1\x02\x46\x02\x07\x00\x09\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\ \x03\x00\x04\x2b\x30\x31\x25\x01\x27\x37\x21\x35\x21\x27\x37\x01\ \x02\x46\xfe\xef\x2a\xc9\xfe\x49\x01\xb7\xc9\x2a\x01\x11\xfa\xfe\ \xf7\x2e\xbb\x44\xbb\x2e\xfe\xf7\x00\x00\x00\x00\x01\x00\x21\xff\ \xe7\x02\x37\x02\x0f\x00\x09\x00\x15\x00\xba\x00\x04\x00\x00\x00\ \x03\x2b\xba\x00\x06\x00\x00\x00\x04\x11\x12\x39\x30\x31\x05\x01\ \x37\x17\x11\x33\x11\x37\x17\x01\x01\x2a\xfe\xf7\x2e\xbb\x44\xbb\ \x2e\xfe\xf7\x19\x01\x11\x2a\xc9\x01\xb6\xfe\x4a\xc9\x2a\xfe\xef\ \x00\x00\x00\x00\x01\x00\xc9\x00\xa2\x01\x8f\x01\x6d\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x13\x33\x15\x23\ \xc9\xc6\xc6\x01\x6d\xcb\x00\x00\x01\x00\x9f\x00\x7b\x01\xb9\x01\ \x93\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\ \x13\x37\x17\x07\x9f\x8e\x8c\x8c\x01\x07\x8c\x8c\x8c\x00\x00\x00\ \x03\x00\x77\x00\x4f\x01\xe1\x01\xbf\x00\x0b\x00\x1f\x00\x33\x00\ \x27\x00\xbb\x00\x20\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x16\x00\ \x01\x00\x2a\x00\x04\x2b\xb8\x00\x20\x10\xb8\x00\x00\xd0\xb8\x00\ \x2a\x10\xb8\x00\x06\xd0\x30\x31\x25\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x07\x22\x2e\x02\x35\x34\x3e\x02\x33\x32\x1e\x02\ \x15\x14\x0e\x02\x27\x32\x3e\x02\x35\x34\x2e\x02\x23\x22\x0e\x02\ \x15\x14\x1e\x02\x01\x2c\x17\x22\x22\x17\x17\x22\x22\x17\x25\x42\ \x31\x1d\x1d\x31\x42\x25\x25\x42\x31\x1d\x1d\x31\x42\x25\x19\x2e\ \x24\x15\x15\x24\x2e\x19\x19\x2e\x24\x15\x15\x24\x2e\xca\x22\x1b\ \x1b\x21\x21\x1b\x1b\x22\x7b\x1a\x30\x44\x2a\x2a\x44\x30\x1a\x1a\ \x30\x44\x2a\x2a\x44\x30\x1a\x31\x12\x23\x32\x20\x20\x33\x23\x12\ \x12\x23\x33\x20\x20\x32\x23\x12\x00\x00\x00\x00\x02\x00\xa6\x00\ \x7a\x01\xb2\x01\x8b\x00\x03\x00\x09\x00\x17\x00\xbb\x00\x00\x00\ \x01\x00\x08\x00\x04\x2b\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\ \x30\x31\x25\x35\x23\x15\x27\x37\x33\x15\x07\x23\x01\x6a\x9e\x26\ \x3b\xd1\x31\xdb\x9e\xa5\xa5\xbc\x31\xd7\x3a\x00\x01\x00\x26\x00\ \x26\x02\x32\x02\x16\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\ \x03\x2b\x30\x31\x37\x01\x33\x01\x15\x21\x26\x01\x05\x04\x01\x03\ \xfd\xf4\x28\x01\xee\xfe\x12\x02\x00\x00\x00\x00\x02\x00\x26\x00\ \x26\x02\x32\x02\x16\x00\x02\x00\x08\x00\x0d\x00\xbb\x00\x00\x00\ \x01\x00\x07\x00\x04\x2b\x30\x31\x25\x0b\x01\x07\x01\x33\x01\x15\ \x21\x01\xcc\x9f\xa0\x67\x01\x05\x04\x01\x03\xfd\xf4\x60\x01\x39\ \xfe\xc7\x38\x01\xee\xfe\x12\x02\x00\x00\x00\x00\x01\x00\x48\x00\ \x13\x02\x37\x02\x20\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\ \x03\x2b\x30\x31\x13\x33\x01\x15\x01\x23\x48\x02\x01\xed\xfe\x13\ \x02\x02\x20\xfe\xfc\x04\xfe\xfb\x00\x00\x00\x00\x02\x00\x48\x00\ \x13\x02\x37\x02\x20\x00\x02\x00\x08\x00\x29\x00\xba\x00\x04\x00\ \x07\x00\x03\x2b\xba\x00\x00\x00\x07\x00\x04\x11\x12\x39\xba\x00\ \x01\x00\x07\x00\x04\x11\x12\x39\xba\x00\x02\x00\x07\x00\x04\x11\ \x12\x39\x30\x31\x01\x25\x11\x03\x33\x01\x15\x01\x23\x01\xb8\xfe\ \xcb\x3b\x02\x01\xed\xfe\x13\x02\x01\x1a\x9f\xfe\xc1\x01\xa6\xfe\ \xfc\x04\xfe\xfb\x00\x00\x00\x00\x01\x00\x26\x00\x1e\x02\x32\x02\ \x0d\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x04\x00\x03\x2b\x30\x31\ \x13\x35\x21\x15\x01\x23\x26\x02\x0c\xfe\xfd\x04\x02\x0b\x02\x02\ \xfe\x13\x00\x00\x02\x00\x26\x00\x1d\x02\x32\x02\x0d\x00\x02\x00\ \x08\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x00\x00\x04\x2b\xba\x00\ \x05\x00\x00\x00\x03\x11\x12\x39\x30\x31\x1b\x02\x25\x21\x15\x01\ \x23\x01\x8d\xa0\x9f\xfe\x5a\x02\x0c\xfe\xfd\x04\xfe\xfb\x01\xd3\ \xfe\xc6\x01\x3a\x3a\x02\xfe\x12\x01\xee\x00\x00\x01\x00\x21\x00\ \x13\x02\x10\x02\x20\x00\x05\x00\x0b\x00\xba\x00\x02\x00\x03\x00\ \x03\x2b\x30\x31\x13\x01\x33\x11\x23\x01\x21\x01\xed\x02\x02\xfe\ \x13\x01\x1c\x01\x04\xfd\xf3\x01\x05\x00\x00\x00\x02\x00\x21\x00\ \x13\x02\x10\x02\x20\x00\x02\x00\x08\x00\x33\x00\xba\x00\x08\x00\ \x03\x00\x03\x2b\xba\x00\x00\x00\x03\x00\x08\x11\x12\x39\xba\x00\ \x01\x00\x03\x00\x08\x11\x12\x39\xba\x00\x02\x00\x03\x00\x08\x11\ \x12\x39\xba\x00\x06\x00\x03\x00\x08\x11\x12\x39\x30\x31\x25\x11\ \x05\x01\x23\x01\x35\x01\x33\x01\xd5\xfe\xcb\x01\x70\x02\xfe\x13\ \x01\xed\x02\x7a\x01\x3f\x9f\xfe\xf9\x01\x05\x04\x01\x04\x00\x00\ \x02\xff\xe7\xff\xf6\x02\x71\x02\x9f\x00\x03\x00\x09\x00\x28\x00\ \xb8\x00\x00\x45\x58\xb8\x00\x08\x2f\x1b\xb9\x00\x08\x00\x03\x3e\ \x59\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\x08\x10\xb9\ \x00\x00\x00\x01\xf4\x30\x31\x25\x11\x21\x11\x03\x37\x21\x11\x07\ \x21\x02\x26\xfd\xeb\x2a\x3d\x02\x4d\x34\xfd\xaa\x21\x02\x34\xfd\ \xcc\x02\x4b\x33\xfd\x94\x3d\x00\x02\xff\xe7\xff\xf6\x02\xc2\x03\ \x1b\x00\x12\x00\x1e\x00\x58\x00\xb8\x00\x00\x45\x58\xb8\x00\x16\ \x2f\x1b\xb9\x00\x16\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x1b\x2f\x1b\xb9\x00\x1b\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\ \x00\x18\x2f\x1b\xb9\x00\x18\x00\x03\x3e\x59\xbb\x00\x0c\x00\x01\ \x00\x03\x00\x04\x2b\xb8\x00\x16\x10\xb9\x00\x0f\x00\x01\xf4\xb8\ \x00\x00\xd0\xb8\x00\x18\x10\xb9\x00\x11\x00\x01\xf4\x30\x31\x01\ \x0e\x01\x0f\x01\x2e\x01\x27\x37\x1e\x01\x17\x33\x3e\x01\x37\x21\ \x11\x21\x13\x0e\x01\x07\x11\x07\x21\x11\x37\x21\x36\x37\x02\x26\ \x44\x6f\x23\x56\x1c\x45\x2b\x38\x25\x3d\x14\x04\x20\x69\x42\xfe\ \x26\x02\x15\x9c\x14\x29\x14\x34\xfd\xaa\x3d\x01\xfc\x33\x39\x02\ \x35\x5f\xe3\x81\x0a\x4d\x88\x40\x26\x3a\x7e\x3f\x6e\xda\x61\xfd\ \xcc\x02\xc8\x14\x29\x17\xfd\x9e\x3d\x02\x76\x33\x43\x39\x00\x00\ \x01\xff\xfa\xff\xec\x02\x62\x02\xac\x00\x13\x00\x00\x17\x2e\x01\ \x27\x37\x1e\x01\x17\x33\x3e\x03\x37\x17\x0e\x03\x07\x91\x1e\x49\ \x30\x38\x2a\x43\x17\x04\x1b\x4e\x60\x6e\x3b\x36\x3b\x70\x62\x52\ \x1c\x14\x53\x8f\x45\x26\x3f\x87\x43\x59\xb2\xa5\x92\x3a\x32\x37\ \x8b\xa4\xb9\x65\x00\x00\x00\x00\x01\x00\x4d\xff\xe8\x02\x11\x02\ \xb6\x00\x28\x00\x17\x00\xb8\x00\x09\x2f\xba\x00\x05\x00\x24\x00\ \x03\x2b\xb8\x00\x09\x10\xb8\x00\x1e\xd0\x30\x31\x37\x34\x3e\x02\ \x33\x32\x16\x17\x11\x33\x1e\x03\x17\x1e\x03\x15\x14\x06\x07\x27\ \x3e\x01\x35\x34\x26\x27\x11\x14\x0e\x02\x23\x22\x2e\x02\x4d\x17\ \x2a\x3a\x23\x14\x21\x08\x31\x04\x09\x0f\x18\x13\x22\x2b\x1a\x0a\ \x14\x0c\x23\x08\x05\x40\x3c\x1c\x30\x3f\x22\x14\x24\x1c\x11\x34\ \x17\x2a\x21\x13\x07\x05\x02\x19\x0a\x0f\x0f\x13\x0d\x18\x2e\x2f\ \x33\x1c\x27\x45\x17\x0d\x18\x29\x1b\x30\x53\x13\xfe\x69\x29\x3f\ \x2a\x15\x0a\x13\x1c\x00\x00\x00\x02\x00\x62\xff\xf6\x01\xf6\x02\ \x9e\x00\x05\x00\x0f\x00\x35\x00\xb8\x00\x00\x45\x58\xb8\x00\x01\ \x2f\x1b\xb9\x00\x01\x00\x0d\x3e\x59\xb8\x00\x00\x45\x58\xb8\x00\ \x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xb9\x00\x06\x00\x01\xf4\ \xb8\x00\x01\x10\xb9\x00\x0a\x00\x01\xf4\x30\x31\x1b\x01\x33\x13\ \x03\x23\x3f\x02\x2f\x01\x23\x0f\x01\x1f\x01\x62\xa4\x4c\xa4\xa4\ \x4c\x28\x3f\x40\x40\x3f\x04\x3f\x40\x40\x3f\x01\x4a\x01\x54\xfe\ \xac\xfe\xac\x45\x85\x8a\x89\x86\x86\x89\x8a\x85\x00\x00\x00\x00\ \x01\x01\x00\x01\xb2\x01\x68\x02\xb2\x00\x04\x00\x0b\x00\xba\x00\ \x00\x00\x04\x00\x03\x2b\x30\x31\x01\x33\x0f\x01\x23\x01\x17\x51\ \x10\x22\x36\x02\xb2\x64\x9c\xff\xff\x00\xa9\x01\xb2\x01\xc0\x02\ \xb2\x02\x26\x02\xc7\xa9\x00\x00\x06\x02\xc7\x58\x00\x00\x00\xff\ \xff\x00\xd1\x01\x5e\x01\x7c\x02\xbb\x02\x06\x01\xee\x00\x00\xff\ \xff\x00\xd9\x01\x5e\x01\x84\x02\xbb\x02\x06\x01\xef\x00\x00\x00\ \x01\x00\xf5\x01\xf4\x01\x82\x02\xd9\x00\x0d\x00\x17\x00\xbb\x00\ \x00\x00\x01\x00\x0d\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\x06\x00\ \x04\x2b\x30\x31\x13\x32\x36\x35\x34\x26\x23\x35\x36\x16\x15\x14\ \x06\x27\xf5\x33\x2c\x2c\x33\x45\x48\x48\x45\x02\x1a\x2a\x23\x22\ \x2a\x24\x02\x3e\x34\x35\x3e\x02\x00\x00\x00\x00\x01\x00\xdb\x01\ \xf4\x01\x68\x02\xd9\x00\x0d\x00\x17\x00\xbb\x00\x06\x00\x01\x00\ \x07\x00\x04\x2b\xbb\x00\x0d\x00\x01\x00\x00\x00\x04\x2b\x30\x31\ \x01\x22\x06\x15\x14\x16\x33\x15\x06\x26\x35\x34\x36\x17\x01\x68\ \x33\x2b\x2b\x33\x45\x48\x48\x45\x02\xb3\x2a\x22\x23\x2a\x24\x02\ \x3e\x35\x34\x3e\x02\x00\x00\xff\xff\x00\xb9\x02\x3d\x01\x6d\x02\ \xd1\x02\x06\x02\xdf\x00\x00\xff\xff\x00\xeb\x02\x3d\x01\x9f\x02\ \xd1\x02\x06\x02\xe1\x00\x00\xff\xff\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x02\x06\x02\xe3\x00\x00\xff\xff\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x02\x06\x02\xf5\x00\x00\x00\x01\x00\xf9\x01\x8d\x01\x5f\x02\ \xcc\x00\x03\x00\x18\x00\xb8\x00\x00\x45\x58\xb8\x00\x00\x2f\x1b\ \xb9\x00\x00\x00\x0f\x3e\x59\xb8\x00\x02\xdc\x30\x31\x13\x33\x03\ \x23\xf9\x66\x17\x38\x02\xcc\xfe\xc1\x00\x00\xff\xff\x00\xb1\x02\ \x59\x01\xa7\x02\x92\x02\x06\x02\xe7\x00\x00\xff\xff\x00\xeb\x02\ \x3d\x01\x9f\x02\xd1\x02\x06\x02\xe1\x00\x00\xff\xff\x00\xb9\x02\ \x3d\x01\x6d\x02\xd1\x02\x06\x02\xdf\x00\x00\x00\x01\x00\xf9\xff\ \x02\x01\x5f\x00\x42\x00\x03\x00\x0b\x00\xba\x00\x03\x00\x00\x00\ \x03\x2b\x30\x31\x05\x23\x13\x33\x01\x5f\x66\x17\x38\xfe\x01\x40\ \x00\x00\x00\xff\xff\x00\x9e\x02\x43\x01\xba\x02\xb0\x02\x06\x02\ \xe5\x00\x00\xff\xff\x00\x96\x02\x4c\x01\xc2\x02\xba\x02\x06\x02\ \xed\x00\x00\xff\xff\x00\xb1\x02\x59\x01\xa7\x02\x92\x02\x06\x02\ \xe7\x00\x00\xff\xff\x00\xaa\x02\x3f\x01\xae\x02\xc5\x02\x06\x02\ \xe9\x00\x00\xff\xff\x00\xcf\x02\x1e\x01\x89\x02\xd7\x02\x06\x02\ \xf1\x00\x00\xff\xff\x00\xca\x02\x3b\x01\xec\x02\xca\x02\x06\x02\ \xf3\x00\x00\xff\xff\x00\xea\x02\x4a\x01\x6e\x02\xc9\x02\x06\x02\ \xeb\x00\x00\xff\xff\x00\xdd\xff\x2b\x01\x76\x00\x03\x02\x06\x02\ \xff\x06\x00\xff\xff\x00\xea\xff\x32\x01\x93\x00\x03\x02\x06\x03\ \x01\x00\x00\x00\x01\x00\xb9\x02\x3d\x01\x6d\x02\xd1\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\x13\x33\x17\x23\ \xb9\x5a\x5a\x3f\x02\xd1\x94\x00\x01\x00\xa9\x02\xc2\x01\x5f\x03\ \x32\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x03\x00\x03\x2b\x30\x31\ \x13\x33\x17\x23\xa9\x5e\x58\x45\x03\x32\x70\x00\x01\x00\xeb\x02\ \x3d\x01\x9f\x02\xd1\x00\x03\x00\x0b\x00\xba\x00\x02\x00\x00\x00\ \x03\x2b\x30\x31\x01\x23\x37\x33\x01\x2a\x3f\x5a\x5a\x02\x3d\x94\ \x00\x00\x00\x00\x01\x00\xf9\x02\xc2\x01\xaf\x03\x32\x00\x03\x00\ \x0b\x00\xba\x00\x02\x00\x00\x00\x03\x2b\x30\x31\x01\x23\x37\x33\ \x01\x3e\x45\x58\x5e\x02\xc2\x70\x00\x00\x00\x00\x01\x00\xa8\x02\ \x3d\x01\xb0\x02\xd1\x00\x07\x00\x19\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x03\xdc\xb8\x00\x06\xd0\ \x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x01\x09\x46\x61\x3f\x43\ \x04\x43\x3f\x02\xd1\x94\x63\x63\x00\x00\x00\x00\x01\x00\xa4\x02\ \xc2\x01\xb4\x03\x32\x00\x07\x00\x19\x00\xbb\x00\x02\x00\x01\x00\ \x05\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x04\xdc\xb8\x00\x07\xd0\ \x30\x31\x13\x37\x33\x17\x23\x27\x23\x07\xa4\x60\x50\x60\x43\x43\ \x04\x43\x02\xc2\x70\x70\x44\x44\x00\x00\x00\x00\x01\x00\x9e\x02\ \x43\x01\xba\x02\xb0\x00\x16\x00\x27\x00\xbb\x00\x08\x00\x01\x00\ \x0e\x00\x04\x2b\xb8\x00\x0e\x10\xb8\x00\x13\xdc\xb9\x00\x03\x00\ \x01\xf4\xb8\x00\x0a\xd0\xb8\x00\x0e\x10\xb8\x00\x15\xd0\x30\x31\ \x13\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\x01\x23\x22\x2e\ \x02\x23\x22\x07\x23\x9e\x05\x2b\x28\x12\x1e\x19\x18\x0c\x1f\x09\ \x2f\x05\x2b\x28\x12\x1e\x19\x18\x0c\x1f\x09\x2f\x02\x43\x30\x3d\ \x11\x14\x11\x36\x2f\x3e\x11\x15\x11\x37\x00\x00\x01\x00\x9b\x02\ \xc7\x01\xbd\x03\x33\x00\x17\x00\x2b\x00\xbb\x00\x11\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\xb8\x00\x00\x10\ \xb8\x00\x08\xd0\xb8\x00\x05\x10\xb9\x00\x0c\x00\x01\xf4\xb8\x00\ \x14\xd0\x30\x31\x01\x22\x2e\x02\x23\x22\x06\x07\x23\x3e\x01\x33\ \x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x01\x68\x14\x20\x1b\x1a\ \x0e\x0e\x16\x04\x2e\x05\x2c\x24\x14\x20\x1b\x1a\x0e\x0e\x16\x04\ \x2e\x05\x2c\x02\xc7\x10\x14\x10\x1a\x1a\x2f\x3d\x10\x14\x10\x1b\ \x19\x2e\x3e\x00\x01\x00\xb1\x02\x59\x01\xa7\x02\x92\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x13\x33\ \x15\x23\xb1\xf6\xf6\x02\x92\x39\x00\x00\x00\x00\x01\x00\xb0\x02\ \xd9\x01\xa8\x03\x12\x00\x03\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x33\x15\x23\xb0\xf8\xf8\x03\x12\x39\ \x00\x00\x00\x00\x01\x00\xaa\x02\x3f\x01\xae\x02\xc5\x00\x13\x00\ \x19\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\ \xb8\x00\x0e\xdc\xb8\x00\x06\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\ \x1e\x01\x33\x32\x3e\x02\x37\x33\x0e\x03\x01\x2c\x21\x2f\x20\x10\ \x02\x33\x04\x26\x25\x12\x1c\x13\x0c\x02\x33\x02\x10\x20\x2f\x02\ \x3f\x18\x27\x2f\x18\x20\x33\x0e\x17\x1e\x10\x18\x2f\x27\x18\x00\ \x01\x00\xb1\x02\xc4\x01\xa7\x03\x32\x00\x11\x00\x19\x00\xbb\x00\ \x09\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x06\xdc\ \xb8\x00\x0c\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\ \x36\x37\x33\x0e\x03\x01\x2c\x1e\x2c\x1e\x10\x03\x32\x05\x22\x22\ \x22\x22\x05\x32\x03\x10\x1e\x2c\x02\xc4\x13\x1e\x28\x15\x18\x27\ \x27\x18\x15\x28\x1e\x13\x00\x00\x01\x00\xea\x02\x4a\x01\x6e\x02\ \xc9\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x1c\x26\x26\x1c\x1c\x26\x26\x02\x4a\x22\x1d\x1d\x23\x23\x1d\x1d\ \x22\x00\x00\x00\x01\x00\xf3\x02\xca\x01\x65\x03\x35\x00\x0b\x00\ \x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\x18\x21\x21\x18\ \x18\x21\x21\x02\xca\x1e\x18\x17\x1e\x1e\x17\x18\x1e\x00\x00\x00\ \x02\x00\x96\x02\x4c\x01\xc2\x02\xba\x00\x0b\x00\x17\x00\x1d\x00\ \xbb\x00\x00\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\x13\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\xcc\x18\x1e\x1e\x18\x17\x1f\x1f\xa9\x17\x1f\x1f\ \x17\x18\x1e\x1e\x02\x4c\x20\x17\x17\x20\x20\x17\x17\x20\x20\x17\ \x17\x20\x20\x17\x17\x20\x00\x00\x02\x00\xa5\x02\xcb\x01\xb3\x03\ \x2d\x00\x0b\x00\x17\x00\x1d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\ \x12\xd0\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\xd6\x16\x1b\x1b\ \x16\x15\x1c\x1c\x97\x15\x1c\x1c\x15\x16\x1b\x1b\x02\xcb\x1c\x15\ \x16\x1b\x1b\x16\x15\x1c\x1c\x15\x16\x1b\x1b\x16\x15\x1c\x00\x00\ \x01\x00\xec\x02\x29\x01\x7f\x02\xd7\x00\x0e\x00\x1b\x00\xbb\x00\ \x00\x00\x01\x00\x0e\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x05\xdc\ \xb9\x00\x06\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x27\x37\x1e\ \x01\x15\x14\x0e\x02\x07\x01\x07\x18\x20\x53\x09\x42\x48\x12\x1f\ \x28\x16\x02\x4f\x07\x14\x13\x27\x03\x30\x02\x29\x26\x16\x1f\x17\ \x0d\x04\x00\x00\x01\x00\xec\x02\xba\x01\x7f\x03\x68\x00\x0e\x00\ \x19\x00\xba\x00\x00\x00\x0e\x00\x03\x2b\xb8\x00\x00\x10\xb8\x00\ \x05\xdc\xb9\x00\x06\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x27\ \x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x07\x18\x20\x53\x09\x42\x48\ \x12\x1f\x28\x16\x02\xe0\x07\x14\x13\x27\x03\x30\x02\x29\x26\x16\ \x1f\x17\x0d\x04\x00\x00\x00\x00\x02\x00\xcf\x02\x1e\x01\x89\x02\ \xd7\x00\x0b\x00\x17\x00\x17\x00\xba\x00\x0c\x00\x00\x00\x03\x2b\ \xb8\x00\x0c\x10\xb8\x00\x12\xdc\xb8\x00\x06\xdc\x30\x31\x01\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\x36\x35\x34\x26\ \x23\x22\x06\x15\x14\x16\x01\x2c\x29\x34\x34\x29\x29\x34\x34\x29\ \x14\x1c\x1c\x14\x14\x1c\x1c\x02\x1e\x33\x2a\x2a\x32\x32\x2a\x2a\ \x33\x25\x1e\x1a\x19\x1e\x1e\x19\x1a\x1e\x00\x00\x02\x00\xcf\x02\ \xbb\x01\x89\x03\x6b\x00\x0b\x00\x17\x00\x17\x00\xba\x00\x0c\x00\ \x00\x00\x03\x2b\xb8\x00\x0c\x10\xb8\x00\x12\xdc\xb8\x00\x06\xdc\ \x30\x31\x01\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x32\ \x36\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\x2c\x29\x34\x34\x29\ \x28\x35\x35\x28\x13\x1c\x1c\x13\x14\x1c\x1c\x02\xbb\x2f\x29\x28\ \x30\x30\x28\x29\x2f\x24\x1b\x19\x17\x1c\x1c\x17\x19\x1b\x00\x00\ \x02\x00\xca\x02\x3b\x01\xec\x02\xca\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x00\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x01\x33\x07\x23\ \x37\x33\x07\x23\x01\x10\x49\x58\x37\xda\x48\x58\x37\x02\xca\x8f\ \x8f\x8f\x00\x00\x02\x00\xbf\x02\xc2\x01\xec\x03\x32\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x01\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\x30\x31\ \x13\x37\x33\x07\x37\x33\x07\x23\xbf\x42\x4d\x53\xa4\x4d\x54\x3b\ \x02\xc2\x70\x70\x70\x70\x00\x00\x01\x00\xa8\x02\x3d\x01\xb0\x02\ \xd1\x00\x07\x00\x19\x00\xbb\x00\x03\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x03\x10\xb8\x00\x04\xdc\xb8\x00\x01\xd0\x30\x31\x13\x33\ \x17\x33\x37\x33\x07\x23\xa8\x3f\x43\x04\x43\x3f\x61\x46\x02\xd1\ \x63\x63\x94\x00\x01\x00\xa4\x02\xc2\x01\xb4\x03\x32\x00\x07\x00\ \x19\x00\xbb\x00\x06\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\x06\x10\ \xb8\x00\x07\xdc\xb8\x00\x04\xd0\x30\x31\x01\x07\x23\x27\x33\x17\ \x33\x37\x01\xb4\x60\x50\x60\x43\x43\x04\x43\x03\x32\x70\x70\x44\ \x44\x00\x00\x00\x02\x00\x6c\x02\x3b\x01\x8e\x02\xca\x00\x03\x00\ \x07\x00\x1d\x00\xbb\x00\x03\x00\x01\x00\x01\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x04\xd0\xb8\x00\x03\x10\xb8\x00\x06\xd0\x30\x31\ \x01\x23\x27\x33\x07\x23\x27\x33\x01\x8e\x37\x58\x49\x4d\x37\x58\ \x48\x02\x3b\x8f\x8f\x8f\x00\x00\x02\x00\x6c\x02\xc2\x01\x99\x03\ \x32\x00\x03\x00\x07\x00\x1d\x00\xbb\x00\x02\x00\x01\x00\x00\x00\ \x04\x2b\xb8\x00\x00\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\ \x06\xd0\x30\x31\x01\x27\x33\x17\x2b\x01\x27\x33\x01\x5d\x53\x4d\ \x42\x9e\x3b\x54\x4d\x02\xc2\x70\x70\x70\x00\x00\x01\x00\xf7\x02\ \x21\x01\x5a\x02\xdc\x00\x10\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x0b\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x10\xdc\x30\x31\x01\x0e\ \x01\x07\x36\x33\x32\x16\x15\x14\x06\x23\x22\x35\x34\x36\x37\x01\ \x5a\x1d\x1a\x02\x03\x05\x0f\x1a\x17\x11\x33\x26\x2b\x02\xbc\x0e\ \x23\x17\x01\x13\x14\x17\x16\x45\x23\x3f\x14\x00\x01\x00\xfd\x02\ \x20\x01\x5f\x02\xda\x00\x0f\x00\x15\x00\xbb\x00\x0a\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x0f\xdc\x30\x31\x13\x36\ \x37\x06\x23\x22\x26\x35\x34\x36\x33\x32\x15\x14\x06\x07\xfd\x36\ \x03\x03\x06\x0f\x1a\x18\x11\x32\x26\x2b\x02\x40\x1a\x2e\x01\x13\ \x14\x16\x16\x45\x23\x3e\x14\x00\x01\x01\x23\x01\xb3\x01\xbb\x02\ \x65\x00\x0f\x00\x15\x00\xbb\x00\x00\x00\x01\x00\x0f\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x06\xdc\x30\x31\x01\x3e\x01\x35\x34\x26\ \x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x23\x2a\x2a\x08\x06\x3b\ \x0a\x0d\x16\x27\x34\x1f\x01\xdc\x06\x1e\x1e\x0b\x15\x0a\x1d\x0e\ \x20\x13\x1b\x28\x1b\x10\x03\x00\x01\x00\xea\xff\x1e\x01\x6e\xff\ \x9d\x00\x0b\x00\x0d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\ \x30\x31\x05\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x2c\ \x1c\x26\x26\x1c\x1c\x26\x26\xe2\x22\x1d\x1d\x23\x23\x1d\x1d\x22\ \x00\x00\x00\x00\x02\x00\xa5\xff\x37\x01\xb3\xff\x99\x00\x0b\x00\ \x17\x00\x1d\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\ \x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x17\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\xd6\x16\x1b\x1b\x16\x15\x1c\x1c\ \x97\x15\x1c\x1c\x15\x16\x1b\x1b\xc9\x1d\x14\x15\x1c\x1c\x15\x14\ \x1d\x1d\x14\x15\x1c\x1c\x15\x14\x1d\x00\x00\x00\x01\x00\xd7\xff\ \x28\x01\x70\xff\xd0\x00\x10\x00\x1b\x00\xbb\x00\x0f\x00\x01\x00\ \x00\x00\x04\x2b\xb8\x00\x0f\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\ \x01\xf4\x30\x31\x05\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\ \x34\x26\x27\x37\x01\x0f\x33\x2e\x18\x28\x35\x1c\x08\x28\x31\x1e\ \x15\x12\x30\x08\x23\x22\x16\x20\x16\x0d\x02\x28\x05\x15\x14\x14\ \x13\x05\x26\x00\x01\x00\xd7\xff\x2b\x01\x70\x00\x03\x00\x11\x00\ \x1d\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\ \x11\xd0\xb8\x00\x0b\xdc\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x33\ \x07\x1e\x01\x15\x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x01\ \x19\x35\x19\x18\x23\x18\x28\x35\x1c\x08\x28\x31\x21\x1e\x03\x35\ \x08\x20\x1f\x16\x20\x16\x0d\x03\x29\x05\x17\x14\x14\x15\x08\x00\ \x01\x00\xd2\xff\x2b\x01\x6b\x00\x03\x00\x11\x00\x1d\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\x11\xd0\xb8\x00\ \x0b\xdc\xb9\x00\x0a\x00\x01\xf4\x30\x31\x25\x33\x07\x1e\x01\x15\ \x14\x0e\x02\x07\x27\x3e\x01\x35\x34\x26\x27\x01\x13\x36\x19\x18\ \x23\x18\x28\x35\x1c\x08\x28\x31\x21\x1f\x03\x35\x08\x20\x1f\x16\ \x20\x16\x0d\x03\x29\x05\x17\x14\x14\x15\x08\x00\x01\x00\xea\xff\ \x32\x01\x93\x00\x03\x00\x12\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x04\x2f\x1b\xb9\x00\x04\x00\x03\x3e\x59\xbb\x00\x0a\x00\x01\ \x00\x10\x00\x04\x2b\x30\x31\x17\x34\x36\x37\x33\x0e\x01\x15\x14\ \x16\x33\x32\x37\x17\x0e\x01\x23\x22\x26\xea\x2e\x19\x3a\x20\x24\ \x1c\x12\x16\x12\x16\x0e\x2e\x13\x26\x34\x79\x29\x40\x13\x18\x37\ \x1d\x17\x17\x0d\x29\x0b\x10\x2b\x00\x00\x00\x00\x01\x00\xea\xff\ \x2c\x01\x99\x00\x03\x00\x15\x00\x1e\x00\xb8\x00\x00\x45\x58\xb8\ \x00\x00\x2f\x1b\xb9\x00\x00\x00\x03\x3e\x59\xbb\x00\x06\x00\x01\ \x00\x0d\x00\x04\x2b\x30\x31\x25\x0e\x01\x15\x14\x16\x33\x32\x36\ \x37\x17\x0e\x01\x23\x22\x26\x35\x34\x3e\x02\x37\x01\x6e\x20\x24\ \x1e\x12\x0c\x13\x09\x17\x0e\x2e\x14\x28\x37\x0d\x15\x1a\x0c\x03\ \x18\x39\x1d\x17\x17\x07\x07\x2d\x0b\x11\x2c\x2b\x15\x26\x21\x1b\ \x09\x00\x00\x00\x01\x00\xae\xff\x32\x01\xaa\xff\xb1\x00\x11\x00\ \x0d\x00\xbb\x00\x09\x00\x01\x00\x00\x00\x04\x2b\x30\x31\x05\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x2c\x20\ \x2f\x1e\x10\x01\x33\x04\x24\x23\x23\x24\x04\x33\x02\x0f\x1e\x2f\ \xce\x17\x25\x2d\x16\x1d\x2f\x2f\x1d\x16\x2d\x25\x17\x00\x00\x00\ \x01\x00\xb0\xff\x55\x01\xa7\xff\x8f\x00\x03\x00\x0d\x00\xbb\x00\ \x00\x00\x01\x00\x03\x00\x04\x2b\x30\x31\x05\x23\x35\x33\x01\xa7\ \xf7\xf7\xab\x3a\x00\x00\x00\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\ \x1d\x00\x0b\x00\x17\x00\x1b\x00\x2b\x00\xbb\x00\x00\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x00\x10\xb8\x00\x0c\xd0\xb8\x00\x06\x10\ \xb8\x00\x12\xd0\xb8\x00\x06\x10\xb8\x00\x1a\xdc\xb9\x00\x19\x00\ \x01\xf4\x30\x31\x13\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x27\x33\x15\x23\ \xd6\x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\ \xe6\xf7\xf7\x02\x4c\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\ \x1a\x1a\x14\x13\x1a\xd1\x2f\x00\x03\x00\xa8\x02\xcb\x01\xb0\x03\ \x8b\x00\x03\x00\x0f\x00\x1b\x00\x2b\x00\xbb\x00\x0a\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x02\xdc\xb9\x00\x01\x00\ \x01\xf4\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\ \x16\xd0\x30\x31\x13\x33\x15\x23\x17\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xb0\xf8\xf8\x26\x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\ \x14\x1a\x1a\x03\x8b\x2e\x92\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\ \x14\x14\x19\x19\x14\x14\x1a\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\ \x37\x00\x03\x00\x0f\x00\x1b\x00\x25\x00\xba\x00\x00\x00\x02\x00\ \x03\x2b\xbb\x00\x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x04\x10\ \xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x01\x33\ \x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x49\x4f\x67\x3a\x21\ \x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x03\ \x37\x67\x84\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\x1a\x1a\ \x14\x13\x1a\x00\x03\x00\xa8\x02\xcb\x01\xb0\x03\xb6\x00\x03\x00\ \x0f\x00\x1b\x00\x29\x00\xbb\x00\x0a\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x0a\x10\xb8\x00\x02\xdc\xb8\x00\x00\xdc\xb8\x00\x04\x10\ \xb8\x00\x10\xd0\xb8\x00\x0a\x10\xb8\x00\x16\xd0\x30\x31\x01\x33\ \x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\ \x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\x01\x52\x5b\x70\x44\x23\ \x14\x1a\x1a\x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x03\ \xb6\x6f\x7c\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\x14\x14\x19\x19\ \x14\x14\x1a\x00\x03\x00\xa8\x02\x4c\x01\xb0\x03\x37\x00\x07\x00\ \x13\x00\x1f\x00\x2b\x00\xbb\x00\x08\x00\x01\x00\x0e\x00\x04\x2b\ \xb8\x00\x0e\x10\xb8\x00\x06\xdc\xb9\x00\x03\x00\x01\xf4\xb8\x00\ \x08\x10\xb8\x00\x14\xd0\xb8\x00\x0e\x10\xb8\x00\x1a\xd0\x30\x31\ \x13\x33\x17\x33\x37\x33\x07\x23\x07\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\x16\x15\x14\x06\ \xae\x3d\x3f\x04\x3f\x3d\x5b\x46\x33\x14\x1a\x1a\x14\x14\x19\x19\ \x98\x14\x19\x19\x14\x14\x1a\x1a\x03\x37\x40\x40\x67\x84\x1a\x13\ \x14\x1a\x1a\x14\x13\x1a\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x00\x00\ \x03\x00\xa4\x02\xcb\x01\xb4\x03\xb6\x00\x0b\x00\x17\x00\x1f\x00\ \x2b\x00\xbb\x00\x06\x00\x01\x00\x00\x00\x04\x2b\xb8\x00\x00\x10\ \xb8\x00\x0c\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\xb8\x00\x06\x10\ \xb8\x00\x19\xdc\xb9\x00\x1e\x00\x01\xf4\x30\x31\x13\x22\x26\x35\ \x34\x36\x33\x32\x16\x15\x14\x06\x33\x22\x26\x35\x34\x36\x33\x32\ \x16\x15\x14\x06\x37\x07\x23\x27\x33\x17\x33\x37\xd6\x14\x1a\x1a\ \x14\x14\x19\x19\x98\x14\x19\x19\x14\x14\x1a\x1a\x1e\x60\x50\x60\ \x43\x43\x04\x43\x02\xcb\x1a\x14\x14\x19\x19\x14\x14\x1a\x1a\x14\ \x14\x19\x19\x14\x14\x1a\xeb\x6f\x6f\x44\x44\x00\x03\x00\xa8\x02\ \x4c\x01\xb0\x03\x37\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x04\x00\x01\x00\x0a\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x01\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x17\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x61\x3a\x67\x4f\x73\x14\x19\x19\x14\x14\x1a\x1a\xc0\ \x14\x1a\x1a\x14\x14\x19\x19\x02\xd0\x67\xeb\x1a\x13\x14\x1a\x1a\ \x14\x13\x1a\x1a\x13\x14\x1a\x1a\x14\x13\x1a\x00\x03\x00\xa8\x02\ \xcb\x01\xb0\x03\xb6\x00\x03\x00\x0f\x00\x1b\x00\x29\x00\xbb\x00\ \x0a\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0a\x10\xb8\x00\x00\xdc\ \xb8\x00\x03\xdc\xb8\x00\x04\x10\xb8\x00\x10\xd0\xb8\x00\x0a\x10\ \xb8\x00\x16\xd0\x30\x31\x01\x23\x27\x33\x17\x22\x26\x35\x34\x36\ \x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\ \x14\x06\x01\x5f\x44\x70\x5b\x7c\x14\x19\x19\x14\x14\x1a\x1a\xc0\ \x14\x1a\x1a\x14\x14\x19\x19\x03\x47\x6f\xeb\x1a\x14\x14\x19\x19\ \x14\x14\x1a\x1a\x14\x14\x19\x19\x14\x14\x1a\x00\x02\x00\xb8\x02\ \x3d\x02\x14\x02\xf2\x00\x07\x00\x0b\x00\x19\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x0b\xd0\xb8\x00\ \x08\xdc\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x25\x33\x07\x23\ \x01\x0a\x44\x52\x38\x3a\x04\x3a\x38\x01\x16\x46\x5c\x33\x02\xb4\ \x77\x49\x49\xb5\x72\x00\x00\x00\x02\x00\xac\x02\xc2\x02\x16\x03\ \x71\x00\x03\x00\x0b\x00\x19\x00\xbb\x00\x08\x00\x01\x00\x05\x00\ \x04\x2b\xb8\x00\x08\x10\xb8\x00\x03\xd0\xb8\x00\x00\xdc\x30\x31\ \x01\x33\x07\x23\x27\x33\x17\x23\x27\x23\x07\x23\x01\xce\x48\x5b\ \x34\x7f\x48\x5c\x3f\x3f\x04\x3f\x3f\x03\x71\x6f\x2a\x6a\x3e\x3e\ \x00\x00\x00\x00\x02\x00\xb8\x02\x3d\x01\xf5\x02\xf2\x00\x07\x00\ \x0b\x00\x19\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x04\x10\xb8\x00\x09\xd0\xb8\x00\x0b\xdc\x30\x31\x01\x33\x17\x23\ \x27\x23\x07\x23\x25\x23\x27\x33\x01\x0a\x44\x52\x38\x3a\x04\x3a\ \x38\x01\x3d\x33\x5c\x45\x02\xb4\x77\x49\x49\x43\x72\x00\x00\x00\ \x02\x00\xac\x02\xc2\x01\xe4\x03\x71\x00\x03\x00\x0b\x00\x19\x00\ \xbb\x00\x08\x00\x01\x00\x05\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\ \x01\xd0\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\x07\x33\x17\x23\ \x27\x23\x07\x23\x01\xe4\x34\x5b\x48\x95\x48\x5c\x3f\x3f\x04\x3f\ \x3f\x03\x02\x6f\x45\x6a\x3e\x3e\x00\x00\x00\x00\x02\x00\xb8\x02\ \x3d\x01\xfd\x03\x10\x00\x07\x00\x17\x00\x25\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x17\xd0\xb9\x00\ \x08\x00\x01\xf4\xb8\x00\x0e\xdc\xb9\x00\x0f\x00\x01\xf4\x30\x31\ \x01\x33\x17\x23\x27\x23\x07\x23\x37\x3e\x01\x35\x34\x26\x27\x37\ \x1e\x01\x15\x14\x0e\x02\x07\x01\x0a\x44\x52\x38\x3a\x04\x3a\x38\ \xdf\x13\x17\x20\x25\x07\x3b\x3f\x10\x1a\x21\x12\x02\xb4\x77\x49\ \x49\x5a\x05\x12\x10\x14\x13\x02\x29\x02\x24\x23\x14\x1c\x13\x0c\ \x04\x00\x00\x00\x02\x00\xac\x02\xc2\x01\xfb\x03\x8a\x00\x0d\x00\ \x15\x00\x25\x00\xbb\x00\x12\x00\x01\x00\x0f\x00\x04\x2b\xb8\x00\ \x12\x10\xb8\x00\x0d\xd0\xb9\x00\x00\x00\x01\xf4\xb8\x00\x06\xdc\ \xb9\x00\x07\x00\x01\xf4\x30\x31\x01\x3e\x01\x35\x34\x26\x27\x37\ \x1e\x01\x15\x14\x06\x07\x27\x33\x17\x23\x27\x23\x07\x23\x01\x94\ \x13\x1a\x21\x26\x09\x3b\x3d\x38\x24\x97\x48\x5c\x3f\x3f\x04\x3f\ \x3f\x03\x15\x05\x0f\x10\x14\x11\x02\x2a\x02\x24\x23\x26\x23\x06\ \x3a\x6a\x3e\x3e\x00\x00\x00\x00\x02\x00\xa9\x02\x3b\x01\xaf\x03\ \x22\x00\x07\x00\x1d\x00\x39\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x01\x10\xb8\x00\x16\xdc\xb8\x00\x1b\xdc\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x16\x10\xb9\x00\x10\x00\x01\xf4\xb8\x00\ \x0b\x10\xb8\x00\x12\xd0\xb8\x00\x16\x10\xb8\x00\x1d\xd0\x30\x31\ \x01\x33\x17\x23\x27\x23\x07\x23\x27\x3e\x01\x33\x32\x1e\x02\x33\ \x32\x37\x33\x0e\x01\x23\x22\x2e\x02\x23\x22\x07\x01\x06\x4c\x56\ \x3a\x40\x04\x40\x3a\x07\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\ \x2a\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\x02\xa3\x68\x41\x41\ \x8c\x28\x33\x0d\x11\x0d\x2b\x28\x33\x0d\x11\x0d\x2b\x00\x00\x00\ \x02\x00\xa8\x02\xc2\x01\xb0\x03\xaa\x00\x07\x00\x1f\x00\x39\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x17\xdc\xb8\x00\x08\xd0\xb8\x00\x17\x10\xb8\x00\x1c\xdc\xb9\x00\ \x0b\x00\x01\xf4\xb8\x00\x17\x10\xb9\x00\x10\x00\x01\xf4\xb8\x00\ \x0b\x10\xb8\x00\x13\xd0\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\ \x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x33\x0e\x01\x23\x22\ \x2e\x02\x23\x22\x06\x07\x01\x08\x48\x5c\x3f\x3f\x04\x3f\x3f\x04\ \x04\x27\x23\x13\x1d\x18\x15\x0c\x0f\x15\x03\x2a\x04\x27\x23\x13\ \x1d\x18\x15\x0c\x0f\x15\x03\x03\x2c\x6a\x3e\x3e\x8e\x27\x33\x0d\ \x10\x0d\x15\x15\x28\x32\x0d\x10\x0d\x15\x15\x00\x02\x00\xae\x02\ \x3f\x01\xaa\x03\x15\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\x02\xdc\xb8\x00\ \x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\x27\x33\x1e\x01\ \x33\x32\x36\x37\x33\x0e\x03\x01\x4b\x44\x58\x30\x25\x20\x2f\x1e\ \x10\x01\x2b\x05\x28\x26\x26\x28\x05\x2b\x02\x0f\x1e\x2f\x03\x15\ \x70\x66\x17\x25\x2d\x16\x1f\x31\x31\x1f\x16\x2d\x25\x17\x00\x00\ \x02\x00\xb2\x02\xc4\x01\xa6\x03\x8b\x00\x03\x00\x15\x00\x19\x00\ \xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x0d\x10\xb8\x00\ \x02\xdc\xb8\x00\x00\xdc\x30\x31\x01\x33\x07\x23\x17\x22\x2e\x02\ \x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x4f\x48\x61\x31\ \x27\x1d\x2b\x1e\x11\x03\x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\ \x1e\x2b\x03\x8b\x69\x5e\x12\x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\ \x1e\x12\x00\x00\x02\x00\xae\x02\x3f\x01\xaa\x03\x15\x00\x03\x00\ \x15\x00\x19\x00\xbb\x00\x0d\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x0d\x10\xb8\x00\x00\xdc\xb8\x00\x03\xdc\x30\x31\x01\x23\x27\x33\ \x17\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\ \x51\x30\x58\x44\x1f\x20\x2f\x1e\x10\x01\x2b\x05\x28\x26\x26\x28\ \x05\x2b\x02\x0f\x1e\x2f\x02\xa5\x70\xd6\x17\x25\x2d\x16\x1f\x31\ \x31\x1f\x16\x2d\x25\x17\x00\x00\x02\x00\xb2\x02\xc4\x01\xa6\x03\ \x8b\x00\x03\x00\x15\x00\x19\x00\xbb\x00\x0d\x00\x01\x00\x04\x00\ \x04\x2b\xb8\x00\x0d\x10\xb8\x00\x00\xdc\xb8\x00\x03\xdc\x30\x31\ \x01\x23\x27\x33\x17\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x01\x53\x31\x61\x48\x23\x1d\x2b\x1e\x11\x03\x2d\x06\ \x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\x03\x22\x69\xc7\x12\x1e\ \x26\x15\x1a\x26\x26\x1a\x15\x26\x1e\x12\x00\x00\x02\x00\xae\x02\ \x3f\x01\xaa\x03\x47\x00\x11\x00\x21\x00\x25\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb9\x00\ \x12\x00\x01\xf4\xb8\x00\x18\xdc\xb9\x00\x19\x00\x01\xf4\x30\x31\ \x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x27\ \x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x01\x2c\ \x20\x2f\x1e\x10\x01\x2b\x05\x28\x26\x26\x28\x05\x2b\x02\x0f\x1e\ \x2f\x43\x12\x18\x20\x25\x07\x3b\x3f\x10\x1a\x22\x12\x02\x3f\x17\ \x25\x2d\x16\x1f\x31\x31\x1f\x16\x2d\x25\x17\x8f\x05\x12\x10\x14\ \x13\x02\x29\x02\x23\x24\x14\x1c\x13\x0c\x04\x00\x02\x00\xb2\x02\ \xc4\x01\xa6\x03\xb8\x00\x0f\x00\x21\x00\x25\x00\xbb\x00\x19\x00\ \x01\x00\x10\x00\x04\x2b\xb8\x00\x19\x10\xb8\x00\x0f\xdc\xb9\x00\ \x00\x00\x01\xf4\xb8\x00\x06\xdc\xb9\x00\x07\x00\x01\xf4\x30\x31\ \x01\x3e\x01\x35\x34\x26\x27\x37\x1e\x01\x15\x14\x0e\x02\x07\x17\ \x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x0b\ \x12\x1a\x21\x25\x08\x3b\x3e\x10\x19\x22\x12\x17\x1d\x2b\x1e\x11\ \x03\x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\x03\x43\x05\ \x0f\x10\x14\x11\x02\x2a\x02\x24\x23\x13\x1b\x13\x0b\x03\x5c\x12\ \x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\x1e\x12\x00\x02\x00\xa9\x02\ \x3f\x01\xaf\x03\x22\x00\x11\x00\x27\x00\x39\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x20\xdc\xb8\x00\ \x25\xdc\xb9\x00\x15\x00\x01\xf4\xb8\x00\x20\x10\xb9\x00\x1a\x00\ \x01\xf4\xb8\x00\x15\x10\xb8\x00\x1c\xd0\xb8\x00\x20\x10\xb8\x00\ \x27\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x37\x33\x0e\x01\ \x23\x22\x2e\x02\x23\x22\x07\x01\x2c\x20\x2e\x1e\x10\x01\x2d\x05\ \x25\x26\x26\x25\x05\x2d\x02\x0f\x1e\x2e\xa3\x04\x28\x23\x13\x1b\ \x17\x15\x0c\x20\x07\x2a\x04\x28\x23\x13\x1b\x17\x15\x0c\x20\x07\ \x02\x3f\x13\x1e\x26\x14\x18\x26\x26\x18\x14\x26\x1e\x13\x88\x28\ \x33\x0d\x11\x0d\x2b\x28\x33\x0d\x11\x0d\x2b\x00\x02\x00\xa7\x02\ \xc4\x01\xaf\x03\xab\x00\x11\x00\x29\x00\x39\x00\xbb\x00\x09\x00\ \x01\x00\x00\x00\x04\x2b\xb8\x00\x09\x10\xb8\x00\x21\xdc\xb8\x00\ \x12\xd0\xb8\x00\x21\x10\xb8\x00\x26\xdc\xb9\x00\x15\x00\x01\xf4\ \xb8\x00\x21\x10\xb9\x00\x1a\x00\x01\xf4\xb8\x00\x15\x10\xb8\x00\ \x1d\xd0\x30\x31\x01\x22\x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\ \x33\x0e\x03\x27\x3e\x01\x33\x32\x1e\x02\x33\x32\x36\x37\x33\x0e\ \x01\x23\x22\x2e\x02\x23\x22\x06\x07\x01\x2c\x1d\x2b\x1e\x11\x03\ \x2d\x06\x23\x24\x24\x23\x06\x2d\x03\x11\x1e\x2b\xa2\x03\x29\x23\ \x11\x1c\x18\x16\x0c\x0f\x15\x04\x2a\x04\x28\x23\x12\x1b\x18\x16\ \x0c\x0f\x16\x03\x02\xc4\x12\x1e\x26\x15\x1a\x26\x26\x1a\x15\x26\ \x1e\x12\x8a\x28\x35\x0e\x11\x0e\x18\x15\x27\x36\x0e\x11\x0e\x18\ \x15\x00\x00\x00\x02\x00\xb0\x02\x3b\x01\xa8\x03\x22\x00\x07\x00\ \x19\x00\x23\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\ \x01\x10\xb8\x00\x08\xdc\xb9\x00\x11\x00\x01\xf4\xb8\x00\x14\xdc\ \xb8\x00\x0e\xd0\x30\x31\x01\x33\x17\x23\x27\x23\x07\x23\x37\x22\ \x2e\x02\x27\x33\x1e\x01\x33\x32\x36\x37\x33\x0e\x03\x01\x06\x4c\ \x56\x3a\x40\x04\x40\x3a\x7c\x1d\x29\x1d\x0f\x01\x2d\x04\x21\x21\ \x21\x21\x04\x2d\x02\x0e\x1d\x2a\x02\xa3\x68\x41\x41\x86\x10\x1b\ \x23\x13\x16\x1e\x1e\x16\x13\x23\x1b\x10\x00\x00\x02\x00\xac\x02\ \xc2\x01\xac\x03\xaa\x00\x07\x00\x15\x00\x23\x00\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x08\xdc\xb9\x00\ \x0f\x00\x01\xf4\xb8\x00\x12\xdc\xb8\x00\x0c\xd0\x30\x31\x01\x33\ \x17\x23\x27\x23\x07\x23\x37\x22\x26\x27\x33\x1e\x01\x33\x32\x36\ \x37\x33\x0e\x01\x01\x08\x48\x5c\x3f\x3f\x04\x3f\x3f\x80\x3a\x3b\ \x05\x2d\x06\x23\x24\x24\x23\x06\x2d\x05\x3b\x03\x2c\x6a\x3e\x3e\ \x87\x39\x28\x17\x1e\x1e\x17\x28\x39\x00\x00\x00\x01\x01\x06\x02\ \x24\x01\x41\x02\xf8\x00\x04\x00\x0b\x00\xba\x00\x01\x00\x00\x00\ \x03\x2b\x30\x31\x01\x27\x33\x0f\x01\x01\x0a\x04\x3b\x01\x0e\x02\ \x24\xd4\x39\x9b\x00\x00\x00\x00\x01\x00\xe7\x02\x1d\x01\x7f\x02\ \xc6\x00\x10\x00\x1b\x00\xbb\x00\x0f\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x0f\x10\xb8\x00\x09\xdc\xb9\x00\x08\x00\x01\xf4\x30\x31\ \x01\x2e\x01\x35\x34\x3e\x02\x37\x17\x0e\x01\x15\x14\x16\x17\x07\ \x01\x48\x33\x2e\x18\x28\x34\x1c\x08\x27\x31\x1d\x16\x12\x02\x1d\ \x08\x24\x21\x16\x20\x16\x0d\x03\x29\x05\x15\x13\x14\x14\x05\x26\ \x00\x00\x00\x00\x01\xff\xd9\x01\x05\x02\x7f\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\ \x15\x21\x27\x02\xa6\xfd\x5a\x01\x53\x4e\x00\x00\x01\xff\xd9\x00\ \xde\x02\x7f\x01\x7a\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x03\x21\x15\x21\x27\x02\xa6\xfd\x5a\x01\x7a\x9c\ \x00\x00\x00\x00\x01\x01\x05\xfe\x70\x01\x53\x03\xe8\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x01\x33\x11\x23\ \x01\x05\x4e\x4e\x03\xe8\xfa\x88\x00\x00\x00\x00\x01\x00\xde\xfe\ \x70\x01\x7a\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xde\x9c\x9c\x03\xe8\xfa\x88\x00\ \x03\x00\x21\x01\x05\x02\x37\x01\x53\x00\x03\x00\x07\x00\x0b\x00\ \x2d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\ \xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\ \xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\ \x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\ \xc8\x86\x86\x01\x53\x4e\x4e\x4e\x4e\x4e\x00\x00\x03\x00\x21\x00\ \xde\x02\x37\x01\x7a\x00\x03\x00\x07\x00\x0b\x00\x2b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\ \x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\ \x02\x10\xb8\x00\x0a\xd0\x30\x31\x13\x33\x15\x23\x37\x33\x15\x23\ \x37\x33\x15\x23\x21\x86\x86\xc8\x86\x86\xc8\x86\x86\x01\x7a\x9c\ \x9c\x9c\x9c\x9c\x00\x00\x00\x00\x03\x01\x05\xff\x6f\x01\x53\x02\ \xe7\x00\x03\x00\x07\x00\x0b\x00\x1b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xba\x00\x09\x00\x0a\x00\x03\x2b\xba\x00\x05\x00\x06\x00\ \x03\x2b\x30\x31\x25\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\ \x01\x05\x4e\x4e\x4e\x4e\x4e\x4e\x4d\xde\x02\x2b\xde\x02\x2b\xde\ \x00\x00\x00\x00\x03\x00\xde\xff\x6f\x01\x7a\x02\xe7\x00\x03\x00\ \x07\x00\x0b\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\ \x09\x00\x0a\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\x30\x31\ \x37\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xde\x9c\x9c\x9c\ \x9c\x9c\x9c\x4d\xde\x02\x2b\xde\x02\x2b\xde\x00\x04\x00\x12\x01\ \x05\x02\x45\x01\x53\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x3d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\xb8\x00\x01\x10\xb8\x00\ \x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\x30\x31\x13\x33\x15\x23\ \x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x12\x71\x71\x96\ \x71\x71\x96\x71\x71\x96\x71\x71\x01\x53\x4e\x4e\x4e\x4e\x4e\x4e\ \x4e\x00\x00\x00\x04\x00\x12\x00\xde\x02\x45\x01\x7a\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x3b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \xb8\x00\x01\x10\xb8\x00\x08\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\ \xb8\x00\x01\x10\xb8\x00\x0c\xd0\xb8\x00\x02\x10\xb8\x00\x0e\xd0\ \x30\x31\x13\x33\x15\x23\x37\x33\x15\x23\x37\x33\x15\x23\x37\x33\ \x15\x23\x12\x71\x71\x96\x71\x71\x96\x71\x71\x96\x71\x71\x01\x7a\ \x9c\x9c\x9c\x9c\x9c\x9c\x9c\x00\x04\x01\x05\xff\x57\x01\x53\x03\ \x01\x00\x03\x00\x07\x00\x0b\x00\x0f\x00\x23\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xba\x00\x0d\x00\x0e\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\xba\x00\x09\x00\x0a\x00\x03\x2b\x30\x31\x25\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\x01\x05\ \x4e\x4e\x4e\x4e\x4e\x4e\x4e\x4e\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\ \x01\xb6\xbc\x00\x04\x00\xde\xff\x57\x01\x7a\x03\x01\x00\x03\x00\ \x07\x00\x0b\x00\x0f\x00\x23\x00\xba\x00\x01\x00\x02\x00\x03\x2b\ \xba\x00\x0d\x00\x0e\x00\x03\x2b\xba\x00\x05\x00\x06\x00\x03\x2b\ \xba\x00\x09\x00\x0a\x00\x03\x2b\x30\x31\x37\x33\x15\x23\x11\x33\ \x15\x23\x11\x33\x15\x23\x11\x33\x15\x23\xde\x9c\x9c\x9c\x9c\x9c\ \x9c\x9c\x9c\x13\xbc\x01\xb6\xbc\x01\xb6\xbc\x01\xb6\xbc\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x01\x21\x15\x21\x11\x23\ \x01\x05\x01\x7a\xfe\xd4\x4e\x01\x53\x4e\xfd\x6b\x00\x00\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\x7a\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x01\x21\x15\x21\x11\x23\x01\x05\ \x01\x7a\xfe\xd4\x4e\x01\x7a\x9c\xfd\x92\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x02\x00\x04\x2b\x30\x31\x13\x21\x15\x21\x11\x23\xde\x01\xa1\xfe\ \xfb\x9c\x01\x53\x4e\xfd\x6b\x00\x01\x00\xde\xfe\x70\x02\x7f\x01\ \x7a\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x21\x15\x21\x11\x23\xde\x01\xa1\xfe\xfb\x9c\x01\x7a\x9c\xfd\ \x92\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\x53\x00\x05\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\ \x11\x23\x11\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x53\xfd\x1d\x02\x95\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\x7a\x00\x05\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\ \x11\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x7a\xfc\xf6\x02\x6e\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x01\x53\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\ \x27\x01\xa1\x9c\xfe\xfb\x01\x53\xfd\x1d\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x01\x7a\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x27\x01\ \xa1\x9c\xfe\xfb\x01\x7a\xfc\xf6\x02\x6e\x00\x00\x01\x01\x05\x01\ \x05\x02\x7f\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x01\x05\x4e\x01\ \x2c\xfe\x86\x03\xe8\xfd\x6b\x4e\x00\x00\x00\x00\x01\x01\x05\x00\ \xde\x02\x7f\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x01\x05\x4e\x01\x2c\xfe\ \x86\x03\xe8\xfd\x92\x9c\x00\x00\x01\x00\xde\x01\x05\x02\x7f\x03\ \xe8\x00\x05\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x13\x33\x11\x21\x15\x21\xde\x9c\x01\x05\xfe\x5f\x03\xe8\ \xfd\x6b\x4e\x00\x01\x00\xde\x00\xde\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x21\ \x15\x21\xde\x9c\x01\x05\xfe\x5f\x03\xe8\xfd\x92\x9c\x00\x00\x00\ \x01\xff\xd9\x01\x05\x01\x53\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\ \x01\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x27\x01\x2c\x4e\xfe\x86\x01\x53\x02\x95\xfd\x1d\x00\x00\x00\x00\ \x01\xff\xd9\x00\xde\x01\x53\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\ \x01\x00\x04\x00\x03\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\ \x2c\x4e\xfe\x86\x01\x7a\x02\x6e\xfc\xf6\x00\x00\x01\xff\xd9\x01\ \x05\x01\x7a\x03\xe8\x00\x05\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\x05\x9c\ \xfe\x5f\x01\x53\x02\x95\xfd\x1d\x00\x00\x00\x00\x01\xff\xd9\x00\ \xde\x01\x7a\x03\xe8\x00\x05\x00\x0b\x00\xba\x00\x01\x00\x04\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x27\x01\x05\x9c\xfe\x5f\ \x01\x7a\x02\x6e\xfc\xf6\x00\x00\x01\x01\x05\xfe\x70\x02\x7f\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\ \x30\x31\x01\x33\x11\x21\x15\x21\x11\x23\x01\x05\x4e\x01\x2c\xfe\ \xd4\x4e\x03\xe8\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x01\x01\x05\xfe\ \x70\x02\x7f\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\ \x03\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x11\x23\x01\x05\x4e\x01\ \x2c\xfe\xd4\x4e\x03\xe8\xfd\x92\x9c\xfd\x92\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\xb8\x00\x04\x10\xb8\x00\x08\xd0\x30\x31\x13\x33\ \x11\x21\x15\x21\x11\x23\x11\x23\xde\x9c\x01\x05\xfe\xd4\x4e\x27\ \x03\xe8\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\ \x11\x33\x11\x21\x15\x21\x11\x23\xde\x27\x4e\x01\x2c\xfe\xfb\x9c\ \x01\x53\x02\x95\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\x11\x23\xde\x9c\ \x01\x05\xfe\xfb\x9c\x03\xe8\xfd\x6b\x4e\xfd\x6b\x00\x00\x00\x00\ \x01\x00\xde\xfe\x70\x02\x7f\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x03\x00\x04\x00\x03\x2b\xb8\x00\x04\x10\xb8\x00\x08\xd0\x30\x31\ \x13\x33\x11\x21\x15\x21\x11\x23\x11\x23\xde\x9c\x01\x05\xfe\xd4\ \x4e\x27\x03\xe8\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x01\x00\xde\xfe\ \x70\x02\x7f\x03\xe8\x00\x09\x00\x13\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x13\x33\x11\x33\ \x11\x21\x15\x21\x11\x23\xde\x27\x4e\x01\x2c\xfe\xfb\x9c\x01\x7a\ \x02\x6e\xfd\x92\x9c\xfd\x92\x00\x01\x00\xde\xfe\x70\x02\x7f\x03\ \xe8\x00\x07\x00\x0b\x00\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\ \x13\x33\x11\x21\x15\x21\x11\x23\xde\x9c\x01\x05\xfe\xfb\x9c\x03\ \xe8\xfd\x92\x9c\xfd\x92\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x03\ \xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x4e\xfe\ \xd4\x01\x53\x02\x95\xfa\x88\x02\x95\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x53\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\x01\x00\x06\x00\ \x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x4e\xfe\xd4\x01\x7a\x02\x6e\xfa\x88\x02\x6e\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x23\x11\x23\x11\x21\x27\x01\x05\x9c\x27\x4e\xfe\xd4\ \x01\x53\x02\x95\xfd\x1d\xfd\x6b\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x27\x9c\xfe\xfb\ \x01\x53\x02\x95\xfd\x6b\xfd\x1d\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x01\x7a\x03\xe8\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\x27\x01\ \x05\x9c\x9c\xfe\xfb\x01\x53\x02\x95\xfa\x88\x02\x95\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x08\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x23\x11\x23\x11\x21\x27\x01\x05\x9c\x27\x4e\ \xfe\xd4\x01\x7a\x02\x6e\xfc\xf6\xfd\x92\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x09\x00\x13\x00\xba\x00\ \x01\x00\x08\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\ \x03\x21\x11\x33\x11\x33\x11\x23\x11\x21\x27\x01\x2c\x4e\x27\x9c\ \xfe\xfb\x01\x7a\x02\x6e\xfd\x92\xfc\xf6\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x01\x00\x06\x00\x03\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\ \x27\x01\x05\x9c\x9c\xfe\xfb\x01\x7a\x02\x6e\xfa\x88\x02\x6e\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x07\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\xa6\xfe\xd4\x4e\ \xfe\xd4\x01\x53\x4e\xfd\x6b\x02\x95\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\x03\x00\x01\x00\ \x04\x00\x04\x2b\xba\x00\x01\x00\x08\x00\x03\x2b\x30\x31\x03\x21\ \x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\x7a\x01\x2c\xfe\xd4\x4e\ \xfe\xd4\x01\x7a\x27\x4e\xfd\x6b\x02\x6e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\xba\x00\x03\x00\x04\x00\x03\x2b\x30\x31\x03\x21\ \x35\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x01\x7a\xfe\xd4\x4e\ \xfe\xd4\x01\x53\x27\x9c\xfd\x92\x02\x95\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x01\x7a\x00\x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x21\ \x11\x23\x11\x21\x27\x02\xa6\xfe\xd4\x4e\xfe\xd4\x01\x7a\x9c\xfd\ \x92\x02\x6e\x00\x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x07\x00\ \x15\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\ \xa6\xfe\xfb\x9c\xfe\xfb\x01\x53\x4e\xfd\x6b\x02\x95\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\xba\x00\x01\x00\x08\x00\x03\x2b\ \x30\x31\x03\x21\x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\xa1\x01\ \x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x27\x4e\xfd\x6b\x02\x6e\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x09\x00\x15\x00\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\xba\x00\x03\x00\x04\x00\x03\x2b\ \x30\x31\x03\x21\x35\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x01\ \xa1\xfe\xfb\x9c\xfe\xfb\x01\x53\x27\x9c\xfd\x92\x02\x95\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x01\x7a\x00\x07\x00\x13\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\ \x03\x21\x15\x21\x11\x23\x11\x21\x27\x02\xa6\xfe\xfb\x9c\xfe\xfb\ \x01\x7a\x9c\xfd\x92\x02\x6e\x00\x01\xff\xd9\x01\x05\x02\x7f\x03\ \xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x27\x01\x2c\x4e\x01\x2c\xfd\x5a\x01\x53\x02\x95\xfd\x6b\ \x4e\x00\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xba\x00\x01\x00\x08\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x27\x01\x2c\x4e\x01\x2c\xfe\xd4\xfe\x86\x01\x7a\x02\x6e\xfd\x6b\ \x4e\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\ \x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x35\x21\ \x27\x01\x2c\x4e\x01\x2c\xfe\x86\xfe\xd4\x01\x53\x02\x95\xfd\x92\ \x9c\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\xe8\x00\x07\x00\ \x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x27\x01\x2c\x4e\ \x01\x2c\xfd\x5a\x01\x7a\x02\x6e\xfd\x92\x9c\x00\x01\xff\xd9\x01\ \x05\x02\x7f\x03\xe8\x00\x07\x00\x15\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x27\x01\x05\x9c\x01\x05\xfd\x5a\x01\x53\ \x02\x95\xfd\x6b\x4e\x00\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x09\x00\x15\x00\xba\x00\x01\x00\x08\x00\x03\x2b\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x15\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\xfe\x5f\x01\x7a\ \x02\x6e\xfd\x6b\x4e\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x09\x00\x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x35\x21\x27\x01\x05\x9c\x01\x05\xfe\x5f\xfe\xfb\x01\x53\ \x02\x95\xfd\x92\x9c\x27\x00\x00\x01\xff\xd9\x00\xde\x02\x7f\x03\ \xe8\x00\x07\x00\x13\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\ \x27\x01\x05\x9c\x01\x05\xfd\x5a\x01\x7a\x02\x6e\xfd\x92\x9c\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\ \x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\ \xd4\x01\x53\x02\x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\ \x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\ \x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\ \x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\xd4\x01\x7a\x02\x6e\xfd\x6b\x4e\ \xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x15\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\ \xd4\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x95\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\x1b\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\ \x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\ \x11\x23\x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x4e\xfe\xd4\x01\ \x7a\x02\x6e\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xd4\x4e\xfe\xd4\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1d\x00\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\ \xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x53\x02\ \x95\xfd\x6b\x4e\xfd\x6b\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0d\x00\x1d\x00\xba\x00\x01\x00\x0c\x00\ \x03\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x0c\x10\ \xb8\x00\x08\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x23\ \x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x27\x4e\xfe\xd4\ \x01\x7a\x02\x6e\xfd\x6b\x4e\x27\xfd\x92\x02\x6e\x00\x00\x00\x00\ \x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0d\x00\x1d\x00\xba\x00\ \x05\x00\x06\x00\x03\x2b\xbb\x00\x01\x00\x01\x00\x0c\x00\x04\x2b\ \xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\ \x15\x21\x11\x23\x11\x23\x35\x21\x27\x01\x05\x9c\x01\x05\xfe\xd4\ \x4e\x27\xfe\xfb\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x6e\x27\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0d\x00\ \x1d\x00\xba\x00\x01\x00\x0c\x00\x03\x2b\xbb\x00\x07\x00\x01\x00\ \x08\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\x30\x31\x03\x21\ \x11\x33\x11\x33\x15\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x27\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x27\x4e\ \xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0d\x00\x1d\x00\xba\x00\x07\x00\x08\x00\x03\x2b\xbb\x00\ \x01\x00\x01\x00\x0c\x00\x04\x2b\xb8\x00\x07\x10\xb8\x00\x02\xd0\ \x30\x31\x03\x21\x35\x33\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\ \x27\x01\x05\x27\x4e\x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x53\x27\x02\ \x6e\xfd\x92\x9c\xfd\x92\x02\x95\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\ \x0a\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\ \x27\x01\x05\x9c\x01\x05\xfe\xd4\x4e\xfe\xd4\x01\x7a\x02\x6e\xfd\ \x92\x9c\xfd\x92\x02\x6e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x2c\x4e\ \x01\x2c\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x9c\xfd\x92\ \x02\x6e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\ \x15\x00\xba\x00\x01\x00\x0a\x00\x03\x2b\xbb\x00\x05\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x11\x23\ \x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\x9c\xfe\xfb\x01\x7a\x02\ \x6e\xfd\x6b\x4e\xfd\x6b\x02\x6e\x00\x00\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x0b\x00\x15\x00\xba\x00\x05\x00\x06\x00\ \x03\x2b\xbb\x00\x01\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\ \x11\x33\x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\ \xfe\xfb\x9c\xfe\xfb\x01\x53\x02\x95\xfd\x92\x9c\xfd\x92\x02\x95\ \x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\xe8\x00\x0b\x00\ \x1b\x00\xba\x00\x05\x00\x06\x00\x03\x2b\xb8\x00\x05\x10\xb8\x00\ \x00\xd0\xb8\x00\x06\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\x11\x33\ \x11\x21\x15\x21\x11\x23\x11\x21\x27\x01\x05\x9c\x01\x05\xfe\xfb\ \x9c\xfe\xfb\x01\x7a\x02\x6e\xfd\x92\x9c\xfd\x92\x02\x6e\x00\x00\ \x02\x00\x4b\x01\x05\x02\x0d\x01\x53\x00\x03\x00\x07\x00\x1d\x00\ \xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\x15\x23\ \x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\x53\x4e\x4e\x4e\ \x00\x00\x00\x00\x02\x00\x4b\x00\xde\x02\x0d\x01\x7a\x00\x03\x00\ \x07\x00\x1b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xb8\x00\x01\x10\ \xb8\x00\x04\xd0\xb8\x00\x02\x10\xb8\x00\x06\xd0\x30\x31\x13\x33\ \x15\x23\x25\x33\x15\x23\x4b\x96\x96\x01\x2c\x96\x96\x01\x7a\x9c\ \x9c\x9c\x00\x00\x02\x01\x05\xff\xb5\x01\x53\x02\xa3\x00\x03\x00\ \x07\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x25\x33\ \x15\x23\x11\x33\x15\x23\x01\x05\x4e\x4e\x4e\x4e\xaf\xfa\x02\xee\ \xfa\x00\x00\x00\x02\x00\xde\xff\xb5\x01\x7a\x02\xa3\x00\x03\x00\ \x07\x00\x13\x00\xba\x00\x01\x00\x02\x00\x03\x2b\xba\x00\x05\x00\ \x06\x00\x03\x2b\x30\x31\x37\x33\x15\x23\x11\x33\x15\x23\xde\x9c\ \x9c\x9c\x9c\xaf\xfa\x02\xee\xfa\x00\x00\x00\x00\x02\xff\xd9\x00\ \xb7\x02\x7f\x01\xa1\x00\x03\x00\x07\x00\x17\x00\xbb\x00\x05\x00\ \x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\ \x30\x31\x03\x21\x15\x21\x15\x21\x15\x21\x27\x02\xa6\xfd\x5a\x02\ \xa6\xfd\x5a\x01\xa1\x4e\x4e\x4e\x00\x00\x00\x00\x02\x00\xb7\xfe\ \x70\x01\xa1\x03\xe8\x00\x03\x00\x07\x00\x1b\x00\xba\x00\x01\x00\ \x02\x00\x03\x2b\xb8\x00\x01\x10\xb8\x00\x04\xd0\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\x30\x31\x13\x33\x11\x23\x13\x33\x11\x23\xb7\x4e\ \x4e\x9c\x4e\x4e\x03\xe8\xfa\x88\x05\x78\xfa\x88\x00\x00\x00\x00\ \x01\x01\x05\xfe\x70\x02\x7f\x01\xa1\x00\x09\x00\x17\x00\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\ \x04\x2b\x30\x31\x01\x21\x15\x21\x15\x21\x15\x21\x11\x23\x01\x05\ \x01\x7a\xfe\xd4\x01\x2c\xfe\xd4\x4e\x01\xa1\x4e\x4e\x4e\xfd\xb9\ \x00\x00\x00\x00\x01\x00\xb7\xfe\x70\x02\x7f\x01\x53\x00\x0a\x00\ \x1d\x00\xbb\x00\x02\x00\x01\x00\x03\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x00\xd0\xb8\x00\x03\x10\xb8\x00\x07\xd0\x30\x31\x13\x33\ \x21\x15\x23\x11\x23\x11\x23\x11\x23\xb7\x4e\x01\x7a\xde\x4e\x4e\ \x4e\x01\x53\x4e\xfd\x6b\x02\x95\xfd\x6b\x00\x00\x02\x00\xb7\xfe\ \x70\x02\x7f\x01\xa1\x00\x05\x00\x0b\x00\x17\x00\xbb\x00\x01\x00\ \x01\x00\x02\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\ \x30\x31\x13\x21\x15\x21\x11\x23\x13\x21\x15\x23\x11\x23\xb7\x01\ \xc8\xfe\x86\x4e\x9c\x01\x2c\xde\x4e\x01\xa1\x4e\xfd\x1d\x02\x95\ \x4e\xfd\xb9\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\xa1\x00\x09\x00\ \x17\x00\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x07\x00\ \x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x11\x23\x11\x21\x35\x21\ \x35\x21\x27\x01\x7a\x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\xa1\xfc\xcf\ \x02\x47\x4e\x4e\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\xa1\x01\ \x53\x00\x09\x00\x15\x00\xbb\x00\x07\x00\x01\x00\x00\x00\x04\x2b\ \xb8\x00\x00\x10\xb8\x00\x04\xd0\x30\x31\x01\x23\x11\x23\x11\x23\ \x35\x21\x11\x23\x01\x53\x4e\x4e\xde\x01\xc8\x4e\x01\x05\xfd\x6b\ \x02\x95\x4e\xfd\x1d\x00\x00\x00\x02\xff\xd9\xfe\x70\x01\xa1\x01\ \xa1\x00\x05\x00\x0b\x00\x17\x00\xbb\x00\x01\x00\x01\x00\x04\x00\ \x04\x2b\xbb\x00\x07\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\ \x11\x23\x11\x21\x15\x21\x11\x23\x11\x23\x27\x01\xc8\x4e\xfe\x86\ \x01\x2c\x4e\xde\x01\xa1\xfc\xcf\x02\xe3\x4e\xfd\x6b\x02\x47\x00\ \x01\x01\x05\x00\xb7\x02\x7f\x03\xe8\x00\x09\x00\x17\x00\xbb\x00\ \x07\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x03\x00\x01\x00\x04\x00\ \x04\x2b\x30\x31\x01\x33\x11\x21\x15\x21\x15\x21\x15\x21\x01\x05\ \x4e\x01\x2c\xfe\xd4\x01\x2c\xfe\x86\x03\xe8\xfd\xb9\x4e\x4e\x4e\ \x00\x00\x00\x00\x01\x00\xb7\x01\x05\x02\x7f\x03\xe8\x00\x09\x00\ \x15\x00\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x07\x10\ \xb8\x00\x02\xd0\x30\x31\x13\x33\x11\x33\x11\x33\x11\x33\x15\x21\ \xb7\x4e\x4e\x4e\xde\xfe\x38\x03\xe8\xfd\x6b\x02\x95\xfd\x6b\x4e\ \x00\x00\x00\x00\x02\x00\xb7\x00\xb7\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\x17\x00\xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\ \x09\x00\x01\x00\x0a\x00\x04\x2b\x30\x31\x13\x33\x11\x21\x15\x21\ \x13\x33\x11\x33\x15\x21\xb7\x4e\x01\x7a\xfe\x38\x9c\x4e\xde\xfe\ \xd4\x03\xe8\xfd\x1d\x4e\x03\x31\xfd\xb9\x4e\x00\x01\xff\xd9\x00\ \xb7\x01\x53\x03\xe8\x00\x09\x00\x17\x00\xbb\x00\x07\x00\x01\x00\ \x04\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x08\x00\x04\x2b\x30\x31\ \x03\x21\x11\x33\x11\x21\x35\x21\x35\x21\x27\x01\x2c\x4e\xfe\x86\ \x01\x2c\xfe\xd4\x01\xa1\x02\x47\xfc\xcf\x4e\x4e\x00\x00\x00\x00\ \x01\xff\xd9\x01\x05\x01\xa1\x03\xe8\x00\x09\x00\x15\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xb8\x00\x05\x10\xb8\x00\x00\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x21\x27\xde\x4e\x4e\ \x4e\xfe\x38\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x1d\x00\x00\x00\ \x02\xff\xd9\x00\xb7\x01\xa1\x03\xe8\x00\x05\x00\x0b\x00\x17\x00\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xbb\x00\x07\x00\x01\x00\ \x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x21\x35\x33\x11\x33\ \x11\x21\x27\x01\x7a\x4e\xfe\x38\xde\x4e\xfe\xd4\x01\x05\x02\xe3\ \xfc\xcf\xea\x02\x47\xfd\x6b\x00\x01\x01\x05\xfe\x70\x02\x7f\x03\ \xe8\x00\x0b\x00\x17\x00\xbb\x00\x07\x00\x01\x00\x08\x00\x04\x2b\ \xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x01\x33\x11\x21\ \x15\x21\x15\x21\x15\x21\x11\x23\x01\x05\x4e\x01\x2c\xfe\xd4\x01\ \x2c\xfe\xd4\x4e\x03\xe8\xfd\xb9\x4e\x4e\x4e\xfd\xb9\x00\x00\x00\ \x02\x00\xb7\xfe\x70\x02\x7f\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\ \xbb\x00\x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x01\x33\x11\x33\ \x15\x23\x11\x23\x03\x33\x11\x23\x01\x53\x4e\xde\xde\x4e\x9c\x4e\ \x4e\x03\xe8\xfd\x6b\x4e\xfd\x6b\x05\x78\xfa\x88\x00\x00\x00\x00\ \x03\x00\xb7\xfe\x70\x02\x7f\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\ \x17\x00\xbb\x00\x0b\x00\x01\x00\x0c\x00\x04\x2b\xbb\x00\x07\x00\ \x01\x00\x08\x00\x04\x2b\x30\x31\x13\x33\x11\x23\x13\x33\x11\x33\ \x15\x21\x15\x21\x15\x23\x11\x23\xb7\x4e\x4e\x9c\x4e\xde\xfe\xd4\ \x01\x2c\xde\x4e\x03\xe8\xfa\x88\x05\x78\xfd\xb9\x4e\x4e\x4e\xfd\ \xb9\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x03\xe8\x00\x0b\x00\ \x17\x00\xbb\x00\x09\x00\x01\x00\x06\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x0a\x00\x04\x2b\x30\x31\x03\x21\x11\x33\x11\x23\x11\x21\ \x35\x21\x35\x21\x27\x01\x2c\x4e\x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\ \xa1\x02\x47\xfa\x88\x02\x47\x4e\x4e\x00\x00\x00\x02\xff\xd9\xfe\ \x70\x01\xa1\x03\xe8\x00\x07\x00\x0b\x00\x0d\x00\xbb\x00\x01\x00\ \x01\x00\x06\x00\x04\x2b\x30\x31\x03\x33\x11\x33\x11\x23\x11\x23\ \x01\x33\x11\x23\x27\xde\x4e\x4e\xde\x01\x7a\x4e\x4e\x01\x53\x02\ \x95\xfa\x88\x02\x95\x02\xe3\xfa\x88\x00\x00\x00\x03\xff\xd9\xfe\ \x70\x01\xa1\x03\xe8\x00\x03\x00\x09\x00\x0f\x00\x17\x00\xbb\x00\ \x05\x00\x01\x00\x08\x00\x04\x2b\xbb\x00\x0b\x00\x01\x00\x0e\x00\ \x04\x2b\x30\x31\x01\x33\x11\x23\x01\x21\x11\x23\x11\x23\x35\x33\ \x11\x33\x11\x21\x01\x53\x4e\x4e\xfe\x86\x01\x2c\x4e\xde\xde\x4e\ \xfe\xd4\x03\xe8\xfa\x88\x02\x95\xfd\x6b\x02\x47\xea\x02\x47\xfd\ \x6b\x00\x00\x00\x02\xff\xd9\xfe\x70\x02\x7f\x01\xa1\x00\x07\x00\ \x0b\x00\x1f\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\xbb\x00\ \x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\xb8\x00\x06\xd0\ \x30\x31\x03\x21\x15\x21\x11\x23\x11\x21\x35\x21\x15\x21\x27\x02\ \xa6\xfe\xd4\x4e\xfe\xd4\x02\xa6\xfd\x5a\x01\x05\x4e\xfd\xb9\x02\ \x47\xea\x4e\x00\x01\xff\xd9\xfe\x70\x02\x7f\x01\x53\x00\x0b\x00\ \x1d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\xb8\x00\x02\x10\ \xb8\x00\x06\xd0\xb8\x00\x02\x10\xb8\x00\x0a\xd0\x30\x31\x03\x21\ \x15\x23\x11\x23\x11\x23\x11\x23\x11\x23\x27\x02\xa6\xde\x4e\x4e\ \x4e\xde\x01\x53\x4e\xfd\x6b\x02\x95\xfd\x6b\x02\x95\x00\x00\x00\ \x03\xff\xd9\xfe\x70\x02\x7f\x01\xa1\x00\x05\x00\x0b\x00\x0f\x00\ \x27\x00\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\xbb\x00\x01\x00\ \x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\x06\xd0\xb8\x00\ \x04\x10\xb8\x00\x08\xd0\x30\x31\x03\x21\x11\x23\x11\x23\x25\x21\ \x15\x23\x11\x23\x01\x21\x15\x21\x27\x01\x2c\x4e\xde\x01\x7a\x01\ \x2c\xde\x4e\xfe\x86\x02\xa6\xfd\x5a\x01\x05\xfd\x6b\x02\x47\x4e\ \x4e\xfd\xb9\x03\x31\x4e\x00\x00\x02\xff\xd9\x00\xb7\x02\x7f\x03\ \xe8\x00\x07\x00\x0b\x00\x1f\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\ \x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\x05\x10\ \xb8\x00\x00\xd0\x30\x31\x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\ \x15\x21\x27\x01\x2c\x4e\x01\x2c\xfd\x5a\x02\xa6\xfd\x5a\x01\xa1\ \x02\x47\xfd\xb9\x4e\x4e\x4e\x00\x01\xff\xd9\x01\x05\x02\x7f\x03\ \xe8\x00\x0b\x00\x1d\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x09\x10\xb8\x00\x00\xd0\xb8\x00\x09\x10\xb8\x00\x04\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x33\x15\x21\x27\xde\ \x4e\x4e\x4e\xde\xfd\x5a\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x6b\ \x4e\x00\x00\x00\x03\xff\xd9\x00\xb7\x02\x7f\x03\xe8\x00\x05\x00\ \x0b\x00\x0f\x00\x27\x00\xbb\x00\x0d\x00\x01\x00\x0e\x00\x04\x2b\ \xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\xb8\x00\x01\x10\xb8\x00\ \x08\xd0\xb8\x00\x04\x10\xb8\x00\x0a\xd0\x30\x31\x03\x33\x11\x33\ \x11\x21\x01\x33\x11\x33\x15\x21\x05\x21\x15\x21\x27\xde\x4e\xfe\ \xd4\x01\x7a\x4e\xde\xfe\xd4\xfe\x86\x02\xa6\xfd\x5a\x01\xa1\x02\ \x47\xfd\x6b\x02\x95\xfd\xb9\x4e\x4e\x4e\x00\x00\x01\xff\xd9\xfe\ \x70\x02\x7f\x03\xe8\x00\x13\x00\x37\x00\xbb\x00\x09\x00\x01\x00\ \x0a\x00\x04\x2b\xbb\x00\x05\x00\x01\x00\x06\x00\x04\x2b\xb8\x00\ \x05\x10\xb8\x00\x00\xd0\xb8\x00\x0a\x10\xb8\x00\x0e\xd0\xb8\x00\ \x09\x10\xb8\x00\x10\xd0\xb8\x00\x06\x10\xb8\x00\x12\xd0\x30\x31\ \x03\x21\x11\x33\x11\x21\x15\x21\x15\x21\x15\x21\x11\x23\x11\x21\ \x35\x21\x35\x21\x27\x01\x2c\x4e\x01\x2c\xfe\xd4\x01\x2c\xfe\xd4\ \x4e\xfe\xd4\x01\x2c\xfe\xd4\x01\xa1\x02\x47\xfd\xb9\x4e\x4e\x4e\ \xfd\xb9\x02\x47\x4e\x4e\x00\x00\x01\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x13\x00\x2d\x00\xbb\x00\x09\x00\x01\x00\x0a\x00\x04\x2b\ \xb8\x00\x09\x10\xb8\x00\x00\xd0\xb8\x00\x09\x10\xb8\x00\x04\xd0\ \xb8\x00\x0a\x10\xb8\x00\x0e\xd0\xb8\x00\x0a\x10\xb8\x00\x12\xd0\ \x30\x31\x03\x33\x11\x33\x11\x33\x11\x33\x11\x33\x15\x23\x11\x23\ \x11\x23\x11\x23\x11\x23\x27\xde\x4e\x4e\x4e\xde\xde\x4e\x4e\x4e\ \xde\x01\x53\x02\x95\xfd\x6b\x02\x95\xfd\x6b\x4e\xfd\x6b\x02\x95\ \xfd\x6b\x02\x95\x00\x00\x00\x00\x04\xff\xd9\xfe\x70\x02\x7f\x03\ \xe8\x00\x05\x00\x0b\x00\x11\x00\x17\x00\x37\x00\xbb\x00\x07\x00\ \x01\x00\x0a\x00\x04\x2b\xbb\x00\x01\x00\x01\x00\x04\x00\x04\x2b\ \xb8\x00\x01\x10\xb8\x00\x0e\xd0\xb8\x00\x04\x10\xb8\x00\x10\xd0\ \xb8\x00\x07\x10\xb8\x00\x12\xd0\xb8\x00\x0a\x10\xb8\x00\x14\xd0\ \x30\x31\x03\x33\x11\x33\x11\x21\x15\x21\x11\x23\x11\x23\x01\x33\ \x11\x33\x15\x21\x15\x21\x15\x23\x11\x23\x27\xde\x4e\xfe\xd4\x01\ \x2c\x4e\xde\x01\x7a\x4e\xde\xfe\xd4\x01\x2c\xde\x4e\x01\xa1\x02\ \x47\xfd\x6b\x4e\xfd\x6b\x02\x47\x03\x31\xfd\xb9\x4e\x4e\x4e\xfd\ \xb9\x00\x00\x00\x01\x01\x05\xfe\x70\x02\x7f\x01\x53\x00\x0f\x00\ \x0d\x00\xbb\x00\x06\x00\x01\x00\x07\x00\x04\x2b\x30\x31\x21\x34\ \x3e\x02\x3b\x01\x15\x23\x22\x0e\x02\x15\x11\x23\x01\x05\x35\x5c\ \x7c\x46\x27\x27\x36\x5f\x47\x29\x4e\x46\x7c\x5c\x35\x4e\x29\x47\ \x5f\x36\xfe\x70\x00\x00\x00\x00\x01\xff\xd9\xfe\x70\x01\x53\x01\ \x53\x00\x0f\x00\x0d\x00\xbb\x00\x0a\x00\x01\x00\x07\x00\x04\x2b\ \x30\x31\x01\x23\x11\x34\x2e\x02\x2b\x01\x35\x33\x32\x1e\x02\x15\ \x01\x53\x4e\x29\x47\x5f\x36\x27\x27\x46\x7c\x5c\x35\xfe\x70\x01\ \x90\x36\x5f\x47\x29\x4e\x35\x5c\x7c\x46\x00\x00\x01\xff\xd9\x01\ \x05\x01\x53\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\x08\x00\x01\x00\ \x05\x00\x04\x2b\x30\x31\x01\x14\x0e\x02\x2b\x01\x35\x33\x32\x3e\ \x02\x35\x11\x33\x01\x53\x35\x5c\x7c\x46\x27\x27\x36\x5f\x47\x29\ \x4e\x02\x58\x46\x7c\x5c\x35\x4e\x29\x47\x5f\x36\x01\x90\x00\x00\ \x01\x01\x05\x01\x05\x02\x7f\x03\xe8\x00\x0f\x00\x0d\x00\xbb\x00\ \x08\x00\x01\x00\x09\x00\x04\x2b\x30\x31\x01\x33\x11\x14\x1e\x02\ \x3b\x01\x15\x23\x22\x2e\x02\x35\x01\x05\x4e\x29\x47\x5f\x36\x27\ \x27\x46\x7c\x5c\x35\x03\xe8\xfe\x70\x36\x5f\x47\x29\x4e\x35\x5c\ \x7c\x46\x00\x00\x01\xff\xd9\xff\x11\x02\x7f\x03\x47\x00\x05\x00\ \x0b\x00\xba\x00\x00\x00\x03\x00\x03\x2b\x30\x31\x01\x33\x15\x01\ \x23\x35\x02\x31\x4e\xfd\xa8\x4e\x03\x47\x4e\xfc\x18\x4e\x00\x00\ \x01\xff\xd9\xff\x11\x02\x7f\x03\x47\x00\x05\x00\x0b\x00\xba\x00\ \x05\x00\x02\x00\x03\x2b\x30\x31\x05\x15\x23\x01\x35\x33\x02\x7f\ \x4e\xfd\xa8\x4e\xa1\x4e\x03\xe8\x4e\x00\x00\x00\x01\xff\xd9\xff\ \x11\x02\x7f\x03\x47\x00\x0f\x00\x2f\x00\xba\x00\x02\x00\x06\x00\ \x03\x2b\xba\x00\x00\x00\x06\x00\x02\x11\x12\x39\xba\x00\x08\x00\ \x06\x00\x02\x11\x12\x39\xb8\x00\x06\x10\xb8\x00\x09\xd0\xb8\x00\ \x02\x10\xb8\x00\x0e\xd0\x30\x31\x09\x01\x33\x15\x09\x01\x15\x23\ \x09\x01\x23\x35\x09\x01\x35\x33\x01\x2c\x01\x05\x4e\xfe\xeb\x01\ \x15\x4e\xfe\xfb\xfe\xfb\x4e\x01\x15\xfe\xeb\x4e\x01\x94\x01\xb3\ \x4e\xfe\x33\xfe\x33\x4e\x01\xb3\xfe\x4d\x4e\x01\xcd\x01\xcd\x4e\ \x00\x00\x00\x00\x01\xff\xd9\x01\x05\x01\x53\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x03\x21\ \x15\x21\x27\x01\x7a\xfe\x86\x01\x53\x4e\x00\x00\x01\x01\x05\x01\ \x05\x01\x53\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x01\x33\x11\x23\x01\x05\x4e\x4e\x03\xe8\xfd\x1d\ \x00\x00\x00\x00\x01\x01\x05\x01\x05\x02\x7f\x01\x53\x00\x03\x00\ \x0d\x00\xbb\x00\x01\x00\x01\x00\x02\x00\x04\x2b\x30\x31\x01\x21\ \x15\x21\x01\x05\x01\x7a\xfe\x86\x01\x53\x4e\x00\x01\x01\x05\xfe\ \x70\x01\x53\x01\x53\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x01\x33\x11\x23\x01\x05\x4e\x4e\x01\x53\xfd\x1d\ \x00\x00\x00\x00\x01\xff\xd9\x00\xde\x01\x53\x01\x7a\x00\x03\x00\ \x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\x03\x21\x15\x21\ \x27\x01\x7a\xfe\x86\x01\x7a\x9c\x00\x00\x00\x00\x01\x00\xde\x01\ \x05\x01\x7a\x03\xe8\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\ \x03\x2b\x30\x31\x13\x33\x11\x23\xde\x9c\x9c\x03\xe8\xfd\x1d\x00\ \x01\x01\x05\x00\xde\x02\x7f\x01\x7a\x00\x03\x00\x0b\x00\xba\x00\ \x01\x00\x02\x00\x03\x2b\x30\x31\x01\x21\x15\x21\x01\x05\x01\x7a\ \xfe\x86\x01\x7a\x9c\x00\x00\x00\x01\x00\xde\xfe\x70\x01\x7a\x01\ \x53\x00\x03\x00\x0b\x00\xba\x00\x01\x00\x02\x00\x03\x2b\x30\x31\ \x13\x33\x11\x23\xde\x9c\x9c\x01\x53\xfd\x1d\x00\x01\xff\xd9\x00\ \xde\x02\x7f\x01\x7a\x00\x07\x00\x0d\x00\xbb\x00\x01\x00\x01\x00\ \x06\x00\x04\x2b\x30\x31\x03\x21\x35\x21\x15\x21\x35\x21\x27\x01\ \x2c\x01\x7a\xfe\x86\xfe\xd4\x01\x53\x27\x9c\x27\x00\x00\x00\x00\ \x01\x00\xde\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\x0b\x00\xba\x00\ \x03\x00\x06\x00\x03\x2b\x30\x31\x13\x33\x11\x33\x11\x33\x11\x23\ \xde\x27\x4e\x27\x9c\x01\x53\x02\x95\xfd\x6b\xfd\x1d\x00\x00\x00\ \x01\xff\xd9\x00\xde\x02\x7f\x01\x7a\x00\x07\x00\x0d\x00\xbb\x00\ \x03\x00\x01\x00\x04\x00\x04\x2b\x30\x31\x03\x21\x15\x21\x15\x21\ \x15\x21\x27\x01\x7a\x01\x2c\xfe\xd4\xfe\x86\x01\x7a\x27\x4e\x27\ \x00\x00\x00\x00\x01\x00\xde\xfe\x70\x01\x7a\x03\xe8\x00\x07\x00\ \x0b\x00\xba\x00\x01\x00\x04\x00\x03\x2b\x30\x31\x13\x33\x11\x23\ \x11\x23\x11\x23\xde\x9c\x27\x4e\x27\x03\xe8\xfd\x1d\xfd\x6b\x02\ \x95\x00\x00\x00\x01\x00\x00\x01\x2c\x02\x58\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x02\x58\xfd\xa8\x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\xff\xb5\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x15\x21\x15\x21\x02\x58\xfd\xa8\x4b\x7d\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x00\x32\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x15\x21\x02\x58\xfd\xa8\ \x32\xfa\x00\x00\x01\x00\x00\xff\x38\x02\x58\x00\xaf\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x35\x21\x11\x21\ \x02\x58\xfd\xa8\xaf\xfe\x89\x00\x01\x00\x00\xff\x38\x02\x58\x01\ \x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x01\x2c\xfe\x0c\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x01\xa9\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x01\xa9\xfd\x8f\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x02\ \x26\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x02\x26\xfd\x12\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x02\xa3\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x58\xfd\xa8\ \x02\xa3\xfc\x95\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x02\x58\xfd\xa8\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x02\x0d\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x02\x0d\xfd\xf3\ \x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\xc2\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x01\xc2\xfe\x3e\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x01\x77\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\x01\x77\xfe\x89\ \x03\x20\xfc\x18\x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x21\x11\x21\x01\x2c\xfe\xd4\x03\x20\xfc\x18\x00\x00\x00\x00\ \x01\x00\x00\xff\x38\x00\xe1\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\ \x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\xe1\xe1\x03\x20\ \xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x96\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x33\x11\x23\ \x96\x96\x03\x20\xfc\x18\x00\x00\x01\x00\x00\xff\x38\x00\x4b\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x11\x33\x11\x23\x4b\x4b\x03\x20\xfc\x18\x00\x00\x01\x01\x2c\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\ \xfc\x18\x00\x00\x04\x00\x00\xff\x38\x02\x58\x03\x20\x00\x02\x00\ \x06\x00\x0a\x00\x0e\x00\x2f\x00\xba\x00\x08\x00\x01\x00\x03\x2b\ \xba\x00\x04\x00\x01\x00\x08\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x05\xd0\xb8\x00\x08\x10\xb8\x00\x0b\xd0\xba\x00\x0e\x00\x01\x00\ \x08\x11\x12\x39\x30\x31\x15\x17\x23\x11\x35\x01\x23\x01\x33\x01\ \x15\x01\x33\x01\x15\x1e\x1e\x01\x4a\x1e\xfe\xd4\x1e\x02\x3a\xfe\ \xd4\x1e\x01\x0e\x96\x32\x01\xf4\x32\xfd\xda\x03\xe8\xfc\x4a\x32\ \x03\xe8\xfe\x3e\x32\x00\x00\x00\x08\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\x16\x00\x1a\x00\ \x1e\x00\x77\x00\xba\x00\x10\x00\x01\x00\x03\x2b\xba\x00\x04\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x05\xd0\xba\x00\ \x08\x00\x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x09\xd0\ \xba\x00\x0c\x00\x01\x00\x10\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x0d\xd0\xb8\x00\x10\x10\xb8\x00\x13\xd0\xba\x00\x16\x00\x01\x00\ \x10\x11\x12\x39\xb8\x00\x10\x10\xb8\x00\x17\xd0\xba\x00\x1a\x00\ \x01\x00\x10\x11\x12\x39\xb8\x00\x10\x10\xb8\x00\x1b\xd0\xba\x00\ \x1e\x00\x01\x00\x10\x11\x12\x39\x30\x31\x15\x17\x23\x3d\x01\x13\ \x23\x03\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\x15\x01\x33\x01\ \x15\x01\x33\x01\x15\x03\x33\x17\x15\x1e\x1e\xb4\x1e\x96\x01\x4a\ \x1e\xfe\xd4\x01\xe0\x1e\xfe\x3e\x1e\x02\x3a\xfe\x3e\x1e\x01\xa4\ \xfe\xd4\x1e\x01\x0e\x96\x1e\x78\x96\x32\xfa\x32\xfe\xd4\x01\xf4\ \x32\xfd\xda\x02\xee\x32\xfc\xe0\x03\xe8\xfc\x4a\x32\x03\xe8\xfd\ \x44\x32\x02\xee\xfe\x3e\x32\x01\xf4\xc8\x32\x00\x10\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x02\x00\x06\x00\x0a\x00\x0e\x00\x12\x00\ \x16\x00\x1a\x00\x1e\x00\x22\x00\x26\x00\x2a\x00\x2e\x00\x32\x00\ \x36\x00\x3a\x00\x3e\x01\x07\x00\xba\x00\x20\x00\x01\x00\x03\x2b\ \xba\x00\x04\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\ \x05\xd0\xba\x00\x08\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\ \xb8\x00\x09\xd0\xba\x00\x0c\x00\x01\x00\x20\x11\x12\x39\xb8\x00\ \x01\x10\xb8\x00\x0d\xd0\xba\x00\x10\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x01\x10\xb8\x00\x11\xd0\xba\x00\x14\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x01\x10\xb8\x00\x15\xd0\xba\x00\x18\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x19\xd0\xba\x00\x1c\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x01\x10\xb8\x00\x1d\xd0\xb8\x00\ \x20\x10\xb8\x00\x23\xd0\xba\x00\x26\x00\x01\x00\x20\x11\x12\x39\ \xb8\x00\x20\x10\xb8\x00\x27\xd0\xba\x00\x2a\x00\x01\x00\x20\x11\ \x12\x39\xb8\x00\x20\x10\xb8\x00\x2b\xd0\xba\x00\x2e\x00\x01\x00\ \x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x2f\xd0\xba\x00\x32\x00\ \x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x33\xd0\xba\x00\ \x36\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\x37\xd0\ \xba\x00\x3a\x00\x01\x00\x20\x11\x12\x39\xb8\x00\x20\x10\xb8\x00\ \x3b\xd0\xba\x00\x3e\x00\x01\x00\x20\x11\x12\x39\x30\x31\x15\x17\ \x23\x3d\x01\x17\x23\x27\x35\x13\x23\x03\x35\x13\x23\x03\x35\x01\ \x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x35\x01\x23\x01\x33\x01\ \x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\x15\x01\x33\x01\ \x15\x03\x33\x13\x15\x03\x33\x17\x15\x27\x33\x17\x15\x1e\x1e\x69\ \x1e\x4b\xb4\x1e\x96\xff\x1e\xe1\x01\x4a\x1e\xfe\xd4\x01\x95\x1e\ \xfe\x89\x01\xe0\x1e\xfe\x3e\x02\x2b\x1e\xfd\xf3\x1e\x02\x3a\xfd\ \xf3\x1e\x01\xef\xfe\x3e\x1e\x01\xa4\xfe\x89\x1e\x01\x59\xfe\xd4\ \x1e\x01\x0e\xe1\x1e\xc3\x96\x1e\x78\x4b\x1e\x2d\x96\x32\x7d\x32\ \xaf\xfa\x32\xfe\xd4\x01\x77\x32\xfe\x57\x01\xf4\x32\xfd\xda\x02\ \x71\x32\xfd\x5d\x02\xee\x32\xfc\xe0\x03\x6b\x32\xfc\x63\x03\xe8\ \xfc\x4a\x32\x03\xe8\xfc\xc7\x32\x03\x6b\xfd\x44\x32\x02\xee\xfd\ \xc1\x32\x02\x71\xfe\x3e\x32\x01\xf4\xfe\xbb\x32\x01\x77\xc8\x32\ \xfa\x4b\x32\x00\x01\x00\x00\x02\xa3\x02\x58\x03\x20\x00\x03\x00\ \x0d\x00\xb8\x00\x02\x2f\xb9\x00\x01\x00\x01\xf4\x30\x31\x11\x21\ \x15\x21\x02\x58\xfd\xa8\x03\x20\x7d\x00\x00\x00\x01\x02\x0d\xff\ \x38\x02\x58\x03\x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x33\x11\x23\x02\x0d\x4b\x4b\x03\x20\xfc\x18\ \x00\x00\x00\x00\x01\x00\x00\xff\x38\x01\x2c\x01\x2c\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\x00\x00\x00\x00\x01\x01\x2c\xff\ \x38\x02\x58\x01\x2c\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\ \xfe\x0c\x00\x00\x01\x00\x00\x01\x2c\x01\x2c\x03\x20\x00\x03\x00\ \x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\x11\x21\x11\x21\ \x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x05\x2f\xb8\x00\ \x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\ \x03\x20\xfe\x0c\xfe\x0c\x00\x00\x02\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x03\x00\x07\x00\x0b\x00\xb8\x00\x06\x2f\xb8\x00\x00\xdc\ \x30\x31\x01\x11\x21\x11\x01\x11\x21\x11\x01\x2c\xfe\xd4\x02\x58\ \xfe\xd4\x03\x20\xfe\x0c\x01\xf4\xfe\x0c\xfe\x0c\x01\xf4\x00\x00\ \x01\x00\x00\xff\x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\ \x05\x2f\xb8\x00\x00\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\ \xfe\xd4\xfe\xd4\x03\x20\xfe\x0c\xfe\x0c\x00\x00\x01\x00\x00\xff\ \x38\x02\x58\x03\x20\x00\x05\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\ \x01\xdc\x30\x31\x11\x21\x11\x21\x11\x21\x02\x58\xfe\xd4\xfe\xd4\ \x03\x20\xfc\x18\x01\xf4\x00\x00\x01\x01\x2c\x01\x2c\x02\x58\x03\ \x20\x00\x03\x00\x0b\x00\xb8\x00\x02\x2f\xb8\x00\x01\xdc\x30\x31\ \x01\x21\x11\x21\x01\x2c\x01\x2c\xfe\xd4\x03\x20\xfe\x0c\x00\x00\ \x02\x00\x00\xff\x38\x02\x58\x03\x20\x00\x03\x00\x07\x00\x0b\x00\ \xb8\x00\x02\x2f\xb8\x00\x04\xdc\x30\x31\x11\x21\x11\x21\x01\x21\ \x11\x21\x01\x2c\xfe\xd4\x01\x2c\x01\x2c\xfe\xd4\x01\x2c\xfe\x0c\ \x03\xe8\xfe\x0c\x00\x00\x00\x00\x01\x00\x00\xff\x38\x02\x58\x03\ \x20\x00\x05\x00\x0b\x00\xb8\x00\x04\x2f\xb8\x00\x03\xdc\x30\x31\ \x11\x21\x11\x21\x11\x21\x01\x2c\x01\x2c\xfd\xa8\x01\x2c\x01\xf4\ \xfc\x18\x00\x00\x00\x00\x22\x01\x9e\x00\x01\x00\x00\x00\x00\x00\ \x00\x00\x45\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x0f\x00\ \x45\x00\x01\x00\x00\x00\x00\x00\x02\x00\x07\x00\x54\x00\x01\x00\ \x00\x00\x00\x00\x03\x00\x26\x00\x5b\x00\x01\x00\x00\x00\x00\x00\ \x04\x00\x0f\x00\x45\x00\x01\x00\x00\x00\x00\x00\x05\x00\x41\x00\ \x81\x00\x01\x00\x00\x00\x00\x00\x06\x00\x15\x00\xc2\x00\x01\x00\ \x00\x00\x00\x00\x07\x00\x60\x00\xd7\x00\x01\x00\x00\x00\x00\x00\ \x08\x00\x1a\x01\x37\x00\x01\x00\x00\x00\x00\x00\x09\x00\x0c\x01\ \x51\x00\x01\x00\x00\x00\x00\x00\x0b\x00\x19\x01\x5d\x00\x01\x00\ \x00\x00\x00\x00\x0d\x11\xd9\x01\x76\x00\x01\x00\x00\x00\x00\x00\ \x0e\x00\x24\x13\x4f\x00\x01\x00\x00\x00\x00\x01\x00\x00\x16\x13\ \x73\x00\x01\x00\x00\x00\x00\x01\x01\x00\x0b\x13\x89\x00\x01\x00\ \x00\x00\x00\x01\x02\x00\x0b\x13\x94\x00\x01\x00\x00\x00\x00\x01\ \x03\x00\x15\x13\x9f\x00\x03\x00\x01\x04\x09\x00\x00\x00\x8a\x13\ \xb4\x00\x03\x00\x01\x04\x09\x00\x01\x00\x1e\x14\x3e\x00\x03\x00\ \x01\x04\x09\x00\x02\x00\x0e\x14\x5c\x00\x03\x00\x01\x04\x09\x00\ \x03\x00\x4c\x14\x6a\x00\x03\x00\x01\x04\x09\x00\x04\x00\x1e\x14\ \x3e\x00\x03\x00\x01\x04\x09\x00\x05\x00\x82\x14\xb6\x00\x03\x00\ \x01\x04\x09\x00\x06\x00\x2a\x15\x38\x00\x03\x00\x01\x04\x09\x00\ \x07\x00\xc0\x15\x62\x00\x03\x00\x01\x04\x09\x00\x08\x00\x34\x16\ \x22\x00\x03\x00\x01\x04\x09\x00\x09\x00\x18\x16\x56\x00\x03\x00\ \x01\x04\x09\x00\x0b\x00\x32\x16\x6e\x00\x03\x00\x01\x04\x09\x00\ \x0d\x23\xb6\x16\xa0\x00\x03\x00\x01\x04\x09\x00\x0e\x00\x48\x3a\ \x56\x00\x03\x00\x01\x04\x09\x01\x00\x00\x2c\x3a\x9e\x00\x03\x00\ \x01\x04\x09\x01\x01\x00\x16\x3a\xca\x00\x03\x00\x01\x04\x09\x01\ \x02\x00\x16\x3a\xe0\x00\x03\x00\x01\x04\x09\x01\x03\x00\x2a\x3a\ \xf6\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x32\x30\x31\x30\x2c\ \x20\x32\x30\x31\x32\x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\ \x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\ \x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\ \x65\x72\x76\x65\x64\x2e\x53\x6f\x75\x72\x63\x65\x20\x43\x6f\x64\ \x65\x20\x50\x72\x6f\x52\x65\x67\x75\x6c\x61\x72\x31\x2e\x30\x31\ \x37\x3b\x41\x44\x42\x45\x3b\x53\x6f\x75\x72\x63\x65\x43\x6f\x64\ \x65\x50\x72\x6f\x2d\x52\x65\x67\x75\x6c\x61\x72\x3b\x41\x44\x4f\ \x42\x45\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x30\x31\x37\x3b\ \x50\x53\x20\x56\x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x30\x30\x30\ \x3b\x68\x6f\x74\x63\x6f\x6e\x76\x20\x31\x2e\x30\x2e\x37\x30\x3b\ \x6d\x61\x6b\x65\x6f\x74\x66\x2e\x6c\x69\x62\x32\x2e\x35\x2e\x35\ \x39\x30\x30\x53\x6f\x75\x72\x63\x65\x43\x6f\x64\x65\x50\x72\x6f\ \x2d\x52\x65\x67\x75\x6c\x61\x72\x53\x6f\x75\x72\x63\x65\x20\x69\ \x73\x20\x61\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6f\x66\ \x20\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\ \x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x69\x6e\x20\x74\ \x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\ \x20\x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x63\x6f\ \x75\x6e\x74\x72\x69\x65\x73\x2e\x41\x64\x6f\x62\x65\x20\x53\x79\ \x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\ \x65\x64\x50\x61\x75\x6c\x20\x44\x2e\x20\x48\x75\x6e\x74\x68\x74\ \x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\ \x6f\x6d\x2f\x74\x79\x70\x65\x43\x6f\x70\x79\x72\x69\x67\x68\x74\ \x20\x32\x30\x31\x30\x2c\x20\x32\x30\x31\x32\x20\x41\x64\x6f\x62\ \x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\ \x6f\x72\x61\x74\x65\x64\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\ \x77\x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x29\x2c\x20\ \x77\x69\x74\x68\x20\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x20\x27\x53\x6f\x75\x72\x63\x65\x27\ \x2e\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\ \x65\x72\x76\x65\x64\x2e\x20\x53\x6f\x75\x72\x63\x65\x20\x69\x73\ \x20\x61\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6f\x66\x20\ \x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\ \x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x20\x69\x6e\x20\x74\x68\ \x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\ \x61\x6e\x64\x2f\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x63\x6f\x75\ \x6e\x74\x72\x69\x65\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x69\x73\x20\ \x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x69\x73\ \x20\x6c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\ \x74\x68\x65\x20\x53\x49\x4c\x20\x4f\x70\x65\x6e\x20\x46\x6f\x6e\ \x74\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x56\x65\x72\x73\x69\ \x6f\x6e\x20\x31\x2e\x31\x2e\x0d\x0a\x0d\x0a\x54\x68\x69\x73\x20\ \x6c\x69\x63\x65\x6e\x73\x65\x20\x69\x73\x20\x63\x6f\x70\x69\x65\ \x64\x20\x62\x65\x6c\x6f\x77\x2c\x20\x61\x6e\x64\x20\x69\x73\x20\ \x61\x6c\x73\x6f\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x77\ \x69\x74\x68\x20\x61\x20\x46\x41\x51\x20\x61\x74\x3a\x20\x68\x74\ \x74\x70\x3a\x2f\x2f\x73\x63\x72\x69\x70\x74\x73\x2e\x73\x69\x6c\ \x2e\x6f\x72\x67\x2f\x4f\x46\x4c\x0d\x0a\x0d\x0a\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\x53\x49\x4c\x20\x4f\x50\x45\ \x4e\x20\x46\x4f\x4e\x54\x20\x4c\x49\x43\x45\x4e\x53\x45\x20\x56\ \x65\x72\x73\x69\x6f\x6e\x20\x31\x2e\x31\x20\x2d\x20\x32\x36\x20\ \x46\x65\x62\x72\x75\x61\x72\x79\x20\x32\x30\x30\x37\x0d\x0a\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\ \x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x2d\x0d\x0a\x0d\x0a\x50\x52\ \x45\x41\x4d\x42\x4c\x45\x0d\x0a\x54\x68\x65\x20\x67\x6f\x61\x6c\ \x73\x20\x6f\x66\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x20\x46\x6f\ \x6e\x74\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x28\x4f\x46\x4c\x29\ \x20\x61\x72\x65\x20\x74\x6f\x20\x73\x74\x69\x6d\x75\x6c\x61\x74\ \x65\x20\x77\x6f\x72\x6c\x64\x77\x69\x64\x65\x20\x64\x65\x76\x65\ \x6c\x6f\x70\x6d\x65\x6e\x74\x20\x6f\x66\x20\x63\x6f\x6c\x6c\x61\ \x62\x6f\x72\x61\x74\x69\x76\x65\x20\x66\x6f\x6e\x74\x20\x70\x72\ \x6f\x6a\x65\x63\x74\x73\x2c\x20\x74\x6f\x20\x73\x75\x70\x70\x6f\ \x72\x74\x20\x74\x68\x65\x20\x66\x6f\x6e\x74\x20\x63\x72\x65\x61\ \x74\x69\x6f\x6e\x20\x65\x66\x66\x6f\x72\x74\x73\x20\x6f\x66\x20\ \x61\x63\x61\x64\x65\x6d\x69\x63\x20\x61\x6e\x64\x20\x6c\x69\x6e\ \x67\x75\x69\x73\x74\x69\x63\x20\x63\x6f\x6d\x6d\x75\x6e\x69\x74\ \x69\x65\x73\x2c\x20\x61\x6e\x64\x20\x74\x6f\x20\x70\x72\x6f\x76\ \x69\x64\x65\x20\x61\x20\x66\x72\x65\x65\x20\x61\x6e\x64\x20\x6f\ \x70\x65\x6e\x20\x66\x72\x61\x6d\x65\x77\x6f\x72\x6b\x20\x69\x6e\ \x20\x77\x68\x69\x63\x68\x20\x66\x6f\x6e\x74\x73\x20\x6d\x61\x79\ \x20\x62\x65\x20\x73\x68\x61\x72\x65\x64\x20\x61\x6e\x64\x20\x69\ \x6d\x70\x72\x6f\x76\x65\x64\x20\x69\x6e\x20\x70\x61\x72\x74\x6e\ \x65\x72\x73\x68\x69\x70\x20\x77\x69\x74\x68\x20\x6f\x74\x68\x65\ \x72\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4f\x46\x4c\x20\x61\ \x6c\x6c\x6f\x77\x73\x20\x74\x68\x65\x20\x6c\x69\x63\x65\x6e\x73\ \x65\x64\x20\x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x62\x65\x20\x75\ \x73\x65\x64\x2c\x20\x73\x74\x75\x64\x69\x65\x64\x2c\x20\x6d\x6f\ \x64\x69\x66\x69\x65\x64\x20\x61\x6e\x64\x20\x72\x65\x64\x69\x73\ \x74\x72\x69\x62\x75\x74\x65\x64\x20\x66\x72\x65\x65\x6c\x79\x20\ \x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\x73\x20\x74\x68\x65\x79\x20\ \x61\x72\x65\x20\x6e\x6f\x74\x20\x73\x6f\x6c\x64\x20\x62\x79\x20\ \x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x20\x54\x68\x65\x20\ \x66\x6f\x6e\x74\x73\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ \x20\x61\x6e\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\ \x77\x6f\x72\x6b\x73\x2c\x20\x63\x61\x6e\x20\x62\x65\x20\x62\x75\ \x6e\x64\x6c\x65\x64\x2c\x20\x65\x6d\x62\x65\x64\x64\x65\x64\x2c\ \x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x61\ \x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\x64\x20\x77\x69\x74\x68\x20\ \x61\x6e\x79\x20\x73\x6f\x66\x74\x77\x61\x72\x65\x20\x70\x72\x6f\ \x76\x69\x64\x65\x64\x20\x74\x68\x61\x74\x20\x61\x6e\x79\x20\x72\ \x65\x73\x65\x72\x76\x65\x64\x20\x6e\x61\x6d\x65\x73\x20\x61\x72\ \x65\x20\x6e\x6f\x74\x20\x75\x73\x65\x64\x20\x62\x79\x20\x64\x65\ \x72\x69\x76\x61\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x2e\x20\ \x54\x68\x65\x20\x66\x6f\x6e\x74\x73\x20\x61\x6e\x64\x20\x64\x65\ \x72\x69\x76\x61\x74\x69\x76\x65\x73\x2c\x20\x68\x6f\x77\x65\x76\ \x65\x72\x2c\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x72\x65\ \x6c\x65\x61\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x61\x6e\x79\ \x20\x6f\x74\x68\x65\x72\x20\x74\x79\x70\x65\x20\x6f\x66\x20\x6c\ \x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\x65\x20\x72\x65\x71\x75\ \x69\x72\x65\x6d\x65\x6e\x74\x20\x66\x6f\x72\x20\x66\x6f\x6e\x74\ \x73\x20\x74\x6f\x20\x72\x65\x6d\x61\x69\x6e\x20\x75\x6e\x64\x65\ \x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x64\ \x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\ \x20\x61\x6e\x79\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x63\x72\ \x65\x61\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\ \x66\x6f\x6e\x74\x73\x20\x6f\x72\x20\x74\x68\x65\x69\x72\x20\x64\ \x65\x72\x69\x76\x61\x74\x69\x76\x65\x73\x2e\x0d\x0a\x0d\x0a\x44\ \x45\x46\x49\x4e\x49\x54\x49\x4f\x4e\x53\x0d\x0a\x22\x46\x6f\x6e\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x22\x20\x72\x65\x66\x65\ \x72\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x65\x74\x20\x6f\x66\ \x20\x66\x69\x6c\x65\x73\x20\x72\x65\x6c\x65\x61\x73\x65\x64\x20\ \x62\x79\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\ \x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x75\x6e\x64\x65\x72\ \x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x61\x6e\ \x64\x20\x63\x6c\x65\x61\x72\x6c\x79\x20\x6d\x61\x72\x6b\x65\x64\ \x20\x61\x73\x20\x73\x75\x63\x68\x2e\x20\x54\x68\x69\x73\x20\x6d\ \x61\x79\x20\x69\x6e\x63\x6c\x75\x64\x65\x20\x73\x6f\x75\x72\x63\ \x65\x20\x66\x69\x6c\x65\x73\x2c\x20\x62\x75\x69\x6c\x64\x20\x73\ \x63\x72\x69\x70\x74\x73\x20\x61\x6e\x64\x20\x64\x6f\x63\x75\x6d\ \x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x22\x52\x65\ \x73\x65\x72\x76\x65\x64\x20\x46\x6f\x6e\x74\x20\x4e\x61\x6d\x65\ \x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x61\x6e\x79\x20\ \x6e\x61\x6d\x65\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\ \x61\x73\x20\x73\x75\x63\x68\x20\x61\x66\x74\x65\x72\x20\x74\x68\ \x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x73\x74\x61\x74\ \x65\x6d\x65\x6e\x74\x28\x73\x29\x2e\x0d\x0a\x0d\x0a\x22\x4f\x72\ \x69\x67\x69\x6e\x61\x6c\x20\x56\x65\x72\x73\x69\x6f\x6e\x22\x20\ \x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x6f\ \x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x46\x6f\x6e\x74\ \x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x63\x6f\x6d\x70\x6f\x6e\ \x65\x6e\x74\x73\x20\x61\x73\x20\x64\x69\x73\x74\x72\x69\x62\x75\ \x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x2e\x0d\ \x0a\x0d\x0a\x22\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\ \x73\x69\x6f\x6e\x22\x20\x72\x65\x66\x65\x72\x73\x20\x74\x6f\x20\ \x61\x6e\x79\x20\x64\x65\x72\x69\x76\x61\x74\x69\x76\x65\x20\x6d\ \x61\x64\x65\x20\x62\x79\x20\x61\x64\x64\x69\x6e\x67\x20\x74\x6f\ \x2c\x20\x64\x65\x6c\x65\x74\x69\x6e\x67\x2c\x20\x6f\x72\x20\x73\ \x75\x62\x73\x74\x69\x74\x75\x74\x69\x6e\x67\x20\x2d\x2d\x20\x69\ \x6e\x20\x70\x61\x72\x74\x20\x6f\x72\x20\x69\x6e\x20\x77\x68\x6f\ \x6c\x65\x20\x2d\x2d\x20\x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\ \x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ \x68\x65\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x2c\x20\x62\x79\x20\x63\x68\x61\x6e\x67\x69\x6e\x67\ \x20\x66\x6f\x72\x6d\x61\x74\x73\x20\x6f\x72\x20\x62\x79\x20\x70\ \x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x20\x74\x6f\x20\x61\x20\x6e\x65\ \x77\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0d\x0a\ \x0d\x0a\x22\x41\x75\x74\x68\x6f\x72\x22\x20\x72\x65\x66\x65\x72\ \x73\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x65\x73\x69\x67\x6e\x65\ \x72\x2c\x20\x65\x6e\x67\x69\x6e\x65\x65\x72\x2c\x20\x70\x72\x6f\ \x67\x72\x61\x6d\x6d\x65\x72\x2c\x20\x74\x65\x63\x68\x6e\x69\x63\ \x61\x6c\x20\x77\x72\x69\x74\x65\x72\x20\x6f\x72\x20\x6f\x74\x68\ \x65\x72\x20\x70\x65\x72\x73\x6f\x6e\x20\x77\x68\x6f\x20\x63\x6f\ \x6e\x74\x72\x69\x62\x75\x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\ \x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2e\x0d\ \x0a\x0d\x0a\x50\x45\x52\x4d\x49\x53\x53\x49\x4f\x4e\x20\x26\x20\ \x43\x4f\x4e\x44\x49\x54\x49\x4f\x4e\x53\x0d\x0a\x50\x65\x72\x6d\ \x69\x73\x73\x69\x6f\x6e\x20\x69\x73\x20\x68\x65\x72\x65\x62\x79\ \x20\x67\x72\x61\x6e\x74\x65\x64\x2c\x20\x66\x72\x65\x65\x20\x6f\ \x66\x20\x63\x68\x61\x72\x67\x65\x2c\x20\x74\x6f\x20\x61\x6e\x79\ \x20\x70\x65\x72\x73\x6f\x6e\x20\x6f\x62\x74\x61\x69\x6e\x69\x6e\ \x67\x20\x61\x20\x63\x6f\x70\x79\x20\x6f\x66\x20\x74\x68\x65\x20\ \x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x74\ \x6f\x20\x75\x73\x65\x2c\x20\x73\x74\x75\x64\x79\x2c\x20\x63\x6f\ \x70\x79\x2c\x20\x6d\x65\x72\x67\x65\x2c\x20\x65\x6d\x62\x65\x64\ \x2c\x20\x6d\x6f\x64\x69\x66\x79\x2c\x20\x72\x65\x64\x69\x73\x74\ \x72\x69\x62\x75\x74\x65\x2c\x20\x61\x6e\x64\x20\x73\x65\x6c\x6c\ \x20\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x61\x6e\x64\x20\x75\x6e\ \x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x63\x6f\x70\x69\x65\x73\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x2c\x20\x73\x75\x62\x6a\x65\x63\x74\x20\x74\x6f\ \x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x63\ \x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\x3a\x0d\x0a\x0d\x0a\x31\x29\ \x20\x4e\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x20\x46\x6f\x6e\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6e\x6f\x72\x20\x61\ \x6e\x79\x20\x6f\x66\x20\x69\x74\x73\x20\x69\x6e\x64\x69\x76\x69\ \x64\x75\x61\x6c\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2c\ \x20\x69\x6e\x20\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x6f\x72\x20\ \x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\ \x73\x2c\x20\x6d\x61\x79\x20\x62\x65\x20\x73\x6f\x6c\x64\x20\x62\ \x79\x20\x69\x74\x73\x65\x6c\x66\x2e\x0d\x0a\x0d\x0a\x32\x29\x20\ \x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x6f\x72\x20\x4d\x6f\x64\x69\ \x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x73\x20\x6f\x66\ \x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\ \x72\x65\x20\x6d\x61\x79\x20\x62\x65\x20\x62\x75\x6e\x64\x6c\x65\ \x64\x2c\x20\x72\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64\ \x20\x61\x6e\x64\x2f\x6f\x72\x20\x73\x6f\x6c\x64\x20\x77\x69\x74\ \x68\x20\x61\x6e\x79\x20\x73\x6f\x66\x74\x77\x61\x72\x65\x2c\x20\ \x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x68\x61\x74\x20\x65\x61\ \x63\x68\x20\x63\x6f\x70\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\ \x20\x74\x68\x65\x20\x61\x62\x6f\x76\x65\x20\x63\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x6e\x6f\x74\x69\x63\x65\x20\x61\x6e\x64\x20\ \x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\ \x65\x73\x65\x20\x63\x61\x6e\x20\x62\x65\x20\x69\x6e\x63\x6c\x75\ \x64\x65\x64\x20\x65\x69\x74\x68\x65\x72\x20\x61\x73\x20\x73\x74\ \x61\x6e\x64\x2d\x61\x6c\x6f\x6e\x65\x20\x74\x65\x78\x74\x20\x66\ \x69\x6c\x65\x73\x2c\x20\x68\x75\x6d\x61\x6e\x2d\x72\x65\x61\x64\ \x61\x62\x6c\x65\x20\x68\x65\x61\x64\x65\x72\x73\x20\x6f\x72\x20\ \x69\x6e\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\ \x74\x65\x20\x6d\x61\x63\x68\x69\x6e\x65\x2d\x72\x65\x61\x64\x61\ \x62\x6c\x65\x20\x6d\x65\x74\x61\x64\x61\x74\x61\x20\x66\x69\x65\ \x6c\x64\x73\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x65\x78\x74\x20\ \x6f\x72\x20\x62\x69\x6e\x61\x72\x79\x20\x66\x69\x6c\x65\x73\x20\ \x61\x73\x20\x6c\x6f\x6e\x67\x20\x61\x73\x20\x74\x68\x6f\x73\x65\ \x20\x66\x69\x65\x6c\x64\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\ \x61\x73\x69\x6c\x79\x20\x76\x69\x65\x77\x65\x64\x20\x62\x79\x20\ \x74\x68\x65\x20\x75\x73\x65\x72\x2e\x0d\x0a\x0d\x0a\x33\x29\x20\ \x4e\x6f\x20\x4d\x6f\x64\x69\x66\x69\x65\x64\x20\x56\x65\x72\x73\ \x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\ \x53\x6f\x66\x74\x77\x61\x72\x65\x20\x6d\x61\x79\x20\x75\x73\x65\ \x20\x74\x68\x65\x20\x52\x65\x73\x65\x72\x76\x65\x64\x20\x46\x6f\ \x6e\x74\x20\x4e\x61\x6d\x65\x28\x73\x29\x20\x75\x6e\x6c\x65\x73\ \x73\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x20\x77\x72\x69\x74\x74\ \x65\x6e\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x69\x73\ \x20\x67\x72\x61\x6e\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\ \x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x43\x6f\ \x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x2e\x20\ \x54\x68\x69\x73\x20\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6f\x6e\ \x20\x6f\x6e\x6c\x79\x20\x61\x70\x70\x6c\x69\x65\x73\x20\x74\x6f\ \x20\x74\x68\x65\x20\x70\x72\x69\x6d\x61\x72\x79\x20\x66\x6f\x6e\ \x74\x20\x6e\x61\x6d\x65\x20\x61\x73\x20\x70\x72\x65\x73\x65\x6e\ \x74\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x73\x65\x72\x73\ \x2e\x0d\x0a\x0d\x0a\x34\x29\x20\x54\x68\x65\x20\x6e\x61\x6d\x65\ \x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x43\x6f\x70\x79\x72\ \x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\x73\x29\x20\x6f\ \x72\x20\x74\x68\x65\x20\x41\x75\x74\x68\x6f\x72\x28\x73\x29\x20\ \x6f\x66\x20\x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\ \x77\x61\x72\x65\x20\x73\x68\x61\x6c\x6c\x20\x6e\x6f\x74\x20\x62\ \x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x70\x72\x6f\x6d\x6f\x74\ \x65\x2c\x20\x65\x6e\x64\x6f\x72\x73\x65\x20\x6f\x72\x20\x61\x64\ \x76\x65\x72\x74\x69\x73\x65\x20\x61\x6e\x79\x20\x4d\x6f\x64\x69\ \x66\x69\x65\x64\x20\x56\x65\x72\x73\x69\x6f\x6e\x2c\x20\x65\x78\ \x63\x65\x70\x74\x20\x74\x6f\x20\x61\x63\x6b\x6e\x6f\x77\x6c\x65\ \x64\x67\x65\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\ \x74\x69\x6f\x6e\x28\x73\x29\x20\x6f\x66\x20\x74\x68\x65\x20\x43\ \x6f\x70\x79\x72\x69\x67\x68\x74\x20\x48\x6f\x6c\x64\x65\x72\x28\ \x73\x29\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x41\x75\x74\x68\x6f\ \x72\x28\x73\x29\x20\x6f\x72\x20\x77\x69\x74\x68\x20\x74\x68\x65\ \x69\x72\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x20\x77\x72\x69\x74\ \x74\x65\x6e\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x2e\x0d\ \x0a\x0d\x0a\x35\x29\x20\x54\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\ \x6f\x66\x74\x77\x61\x72\x65\x2c\x20\x6d\x6f\x64\x69\x66\x69\x65\ \x64\x20\x6f\x72\x20\x75\x6e\x6d\x6f\x64\x69\x66\x69\x65\x64\x2c\ \x20\x69\x6e\x20\x70\x61\x72\x74\x20\x6f\x72\x20\x69\x6e\x20\x77\ \x68\x6f\x6c\x65\x2c\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x64\x69\ \x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x65\x6e\x74\x69\x72\x65\ \x6c\x79\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\ \x63\x65\x6e\x73\x65\x2c\x20\x61\x6e\x64\x20\x6d\x75\x73\x74\x20\ \x6e\x6f\x74\x20\x62\x65\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\ \x65\x64\x20\x75\x6e\x64\x65\x72\x20\x61\x6e\x79\x20\x6f\x74\x68\ \x65\x72\x20\x6c\x69\x63\x65\x6e\x73\x65\x2e\x20\x54\x68\x65\x20\ \x72\x65\x71\x75\x69\x72\x65\x6d\x65\x6e\x74\x20\x66\x6f\x72\x20\ \x66\x6f\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x6d\x61\x69\x6e\x20\ \x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\ \x73\x65\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x70\x70\x6c\ \x79\x20\x74\x6f\x20\x61\x6e\x79\x20\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x20\x63\x72\x65\x61\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\ \x74\x68\x65\x20\x46\x6f\x6e\x74\x20\x53\x6f\x66\x74\x77\x61\x72\ \x65\x2e\x0d\x0a\x0d\x0a\x54\x45\x52\x4d\x49\x4e\x41\x54\x49\x4f\ \x4e\x0d\x0a\x54\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\ \x62\x65\x63\x6f\x6d\x65\x73\x20\x6e\x75\x6c\x6c\x20\x61\x6e\x64\ \x20\x76\x6f\x69\x64\x20\x69\x66\x20\x61\x6e\x79\x20\x6f\x66\x20\ \x74\x68\x65\x20\x61\x62\x6f\x76\x65\x20\x63\x6f\x6e\x64\x69\x74\ \x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x6d\x65\x74\ \x2e\x0d\x0a\x0d\x0a\x44\x49\x53\x43\x4c\x41\x49\x4d\x45\x52\x0d\ \x0a\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\x41\ \x52\x45\x20\x49\x53\x20\x50\x52\x4f\x56\x49\x44\x45\x44\x20\x22\ \x41\x53\x20\x49\x53\x22\x2c\x20\x57\x49\x54\x48\x4f\x55\x54\x20\ \x57\x41\x52\x52\x41\x4e\x54\x59\x20\x4f\x46\x20\x41\x4e\x59\x20\ \x4b\x49\x4e\x44\x2c\x20\x45\x58\x50\x52\x45\x53\x53\x20\x4f\x52\ \x20\x49\x4d\x50\x4c\x49\x45\x44\x2c\x20\x49\x4e\x43\x4c\x55\x44\ \x49\x4e\x47\x20\x42\x55\x54\x20\x4e\x4f\x54\x20\x4c\x49\x4d\x49\ \x54\x45\x44\x20\x54\x4f\x20\x41\x4e\x59\x20\x57\x41\x52\x52\x41\ \x4e\x54\x49\x45\x53\x20\x4f\x46\x20\x4d\x45\x52\x43\x48\x41\x4e\ \x54\x41\x42\x49\x4c\x49\x54\x59\x2c\x20\x46\x49\x54\x4e\x45\x53\ \x53\x20\x46\x4f\x52\x20\x41\x20\x50\x41\x52\x54\x49\x43\x55\x4c\ \x41\x52\x20\x50\x55\x52\x50\x4f\x53\x45\x20\x41\x4e\x44\x20\x4e\ \x4f\x4e\x49\x4e\x46\x52\x49\x4e\x47\x45\x4d\x45\x4e\x54\x20\x4f\ \x46\x20\x43\x4f\x50\x59\x52\x49\x47\x48\x54\x2c\x20\x50\x41\x54\ \x45\x4e\x54\x2c\x20\x54\x52\x41\x44\x45\x4d\x41\x52\x4b\x2c\x20\ \x4f\x52\x20\x4f\x54\x48\x45\x52\x20\x52\x49\x47\x48\x54\x2e\x20\ \x49\x4e\x20\x4e\x4f\x20\x45\x56\x45\x4e\x54\x20\x53\x48\x41\x4c\ \x4c\x20\x54\x48\x45\x20\x43\x4f\x50\x59\x52\x49\x47\x48\x54\x20\ \x48\x4f\x4c\x44\x45\x52\x20\x42\x45\x20\x4c\x49\x41\x42\x4c\x45\ \x20\x46\x4f\x52\x20\x41\x4e\x59\x20\x43\x4c\x41\x49\x4d\x2c\x20\ \x44\x41\x4d\x41\x47\x45\x53\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\ \x20\x4c\x49\x41\x42\x49\x4c\x49\x54\x59\x2c\x20\x49\x4e\x43\x4c\ \x55\x44\x49\x4e\x47\x20\x41\x4e\x59\x20\x47\x45\x4e\x45\x52\x41\ \x4c\x2c\x20\x53\x50\x45\x43\x49\x41\x4c\x2c\x20\x49\x4e\x44\x49\ \x52\x45\x43\x54\x2c\x20\x49\x4e\x43\x49\x44\x45\x4e\x54\x41\x4c\ \x2c\x20\x4f\x52\x20\x43\x4f\x4e\x53\x45\x51\x55\x45\x4e\x54\x49\ \x41\x4c\x20\x44\x41\x4d\x41\x47\x45\x53\x2c\x20\x57\x48\x45\x54\ \x48\x45\x52\x20\x49\x4e\x20\x41\x4e\x20\x41\x43\x54\x49\x4f\x4e\ \x20\x4f\x46\x20\x43\x4f\x4e\x54\x52\x41\x43\x54\x2c\x20\x54\x4f\ \x52\x54\x20\x4f\x52\x20\x4f\x54\x48\x45\x52\x57\x49\x53\x45\x2c\ \x20\x41\x52\x49\x53\x49\x4e\x47\x20\x46\x52\x4f\x4d\x2c\x20\x4f\ \x55\x54\x20\x4f\x46\x20\x54\x48\x45\x20\x55\x53\x45\x20\x4f\x52\ \x20\x49\x4e\x41\x42\x49\x4c\x49\x54\x59\x20\x54\x4f\x20\x55\x53\ \x45\x20\x54\x48\x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\ \x41\x52\x45\x20\x4f\x52\x20\x46\x52\x4f\x4d\x20\x4f\x54\x48\x45\ \x52\x20\x44\x45\x41\x4c\x49\x4e\x47\x53\x20\x49\x4e\x20\x54\x48\ \x45\x20\x46\x4f\x4e\x54\x20\x53\x4f\x46\x54\x57\x41\x52\x45\x2e\ \x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x61\x64\x6f\x62\x65\ \x2e\x63\x6f\x6d\x2f\x74\x79\x70\x65\x2f\x6c\x65\x67\x61\x6c\x2e\ \x68\x74\x6d\x6c\x54\x79\x70\x6f\x67\x72\x61\x70\x68\x69\x63\x20\ \x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x73\x41\x6c\x74\x65\x72\x6e\ \x61\x74\x65\x20\x61\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x67\ \x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x6f\x6c\x6c\x61\x72\ \x20\x73\x69\x67\x6e\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\ \x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x32\x00\x30\x00\x31\x00\ \x30\x00\x2c\x00\x20\x00\x32\x00\x30\x00\x31\x00\x32\x00\x20\x00\ \x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\x00\ \x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\x00\ \x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\x00\ \x65\x00\x64\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\ \x52\x00\x69\x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\ \x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\x43\x00\ \x6f\x00\x64\x00\x65\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x52\x00\ \x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x31\x00\x2e\x00\ \x30\x00\x31\x00\x37\x00\x3b\x00\x41\x00\x44\x00\x42\x00\x45\x00\ \x3b\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\ \x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x52\x00\ \x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x3b\x00\x41\x00\ \x44\x00\x4f\x00\x42\x00\x45\x00\x56\x00\x65\x00\x72\x00\x73\x00\ \x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x31\x00\ \x37\x00\x3b\x00\x50\x00\x53\x00\x20\x00\x56\x00\x65\x00\x72\x00\ \x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x30\x00\ \x30\x00\x30\x00\x3b\x00\x68\x00\x6f\x00\x74\x00\x63\x00\x6f\x00\ \x6e\x00\x76\x00\x20\x00\x31\x00\x2e\x00\x30\x00\x2e\x00\x37\x00\ \x30\x00\x3b\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6f\x00\x74\x00\ \x66\x00\x2e\x00\x6c\x00\x69\x00\x62\x00\x32\x00\x2e\x00\x35\x00\ \x2e\x00\x35\x00\x39\x00\x30\x00\x30\x00\x53\x00\x6f\x00\x75\x00\ \x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\ \x72\x00\x6f\x00\x2d\x00\x52\x00\x65\x00\x67\x00\x75\x00\x6c\x00\ \x61\x00\x72\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\ \x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\ \x61\x00\x64\x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\ \x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\ \x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\ \x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\ \x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\ \x72\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\ \x63\x00\x6f\x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\ \x73\x00\x2e\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\ \x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\ \x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\ \x61\x00\x74\x00\x65\x00\x64\x00\x50\x00\x61\x00\x75\x00\x6c\x00\ \x20\x00\x44\x00\x2e\x00\x20\x00\x48\x00\x75\x00\x6e\x00\x74\x00\ \x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x77\x00\ \x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\x62\x00\x65\x00\ \x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x74\x00\x79\x00\x70\x00\ \x65\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x32\x00\x30\x00\x31\x00\x30\x00\x2c\x00\ \x20\x00\x32\x00\x30\x00\x31\x00\x32\x00\x20\x00\x41\x00\x64\x00\ \x6f\x00\x62\x00\x65\x00\x20\x00\x53\x00\x79\x00\x73\x00\x74\x00\ \x65\x00\x6d\x00\x73\x00\x20\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\ \x72\x00\x70\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x65\x00\x64\x00\ \x20\x00\x28\x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\ \x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\x64\x00\x6f\x00\ \x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\x2f\x00\x29\x00\ \x2c\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\ \x65\x00\x20\x00\x27\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\ \x65\x00\x27\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\ \x52\x00\x69\x00\x67\x00\x68\x00\x74\x00\x73\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x2e\x00\ \x20\x00\x53\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\ \x64\x00\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\ \x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\ \x49\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x70\x00\x6f\x00\x72\x00\ \x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x6e\x00\x69\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x53\x00\x74\x00\x61\x00\x74\x00\x65\x00\ \x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\ \x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x63\x00\ \x6f\x00\x75\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\ \x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\ \x73\x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\ \x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x49\x00\ \x4c\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\x65\x00\ \x6e\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x56\x00\x65\x00\x72\x00\ \x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x31\x00\x2e\x00\x31\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\ \x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x6f\x00\ \x77\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x69\x00\ \x73\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x61\x00\ \x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ \x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\ \x46\x00\x41\x00\x51\x00\x20\x00\x61\x00\x74\x00\x3a\x00\x20\x00\ \x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\x73\x00\ \x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\x2e\x00\x73\x00\ \x69\x00\x6c\x00\x2e\x00\x6f\x00\x72\x00\x67\x00\x2f\x00\x4f\x00\ \x46\x00\x4c\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x0d\x00\x0a\x00\x53\x00\x49\x00\x4c\x00\x20\x00\x4f\x00\ \x50\x00\x45\x00\x4e\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\ \x20\x00\x4c\x00\x49\x00\x43\x00\x45\x00\x4e\x00\x53\x00\x45\x00\ \x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x20\x00\x31\x00\x2e\x00\x31\x00\x20\x00\x2d\x00\x20\x00\x32\x00\ \x36\x00\x20\x00\x46\x00\x65\x00\x62\x00\x72\x00\x75\x00\x61\x00\ \x72\x00\x79\x00\x20\x00\x32\x00\x30\x00\x30\x00\x37\x00\x0d\x00\ \x0a\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\x2d\x00\ \x2d\x00\x2d\x00\x2d\x00\x2d\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x50\x00\x52\x00\x45\x00\x41\x00\x4d\x00\x42\x00\x4c\x00\x45\x00\ \x0d\x00\x0a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x67\x00\x6f\x00\ \x61\x00\x6c\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x28\x00\x4f\x00\x46\x00\ \x4c\x00\x29\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6d\x00\x75\x00\x6c\x00\ \x61\x00\x74\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6c\x00\ \x64\x00\x77\x00\x69\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\ \x76\x00\x65\x00\x6c\x00\x6f\x00\x70\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ \x6c\x00\x61\x00\x62\x00\x6f\x00\x72\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ \x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ \x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x70\x00\ \x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\ \x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\ \x66\x00\x66\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x61\x00\x63\x00\x61\x00\x64\x00\x65\x00\x6d\x00\ \x69\x00\x63\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\ \x69\x00\x6e\x00\x67\x00\x75\x00\x69\x00\x73\x00\x74\x00\x69\x00\ \x63\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x75\x00\x6e\x00\ \x69\x00\x74\x00\x69\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x61\x00\ \x6e\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\ \x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x61\x00\x20\x00\ \x66\x00\x72\x00\x65\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x72\x00\ \x61\x00\x6d\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\ \x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\ \x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6d\x00\ \x61\x00\x79\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\ \x61\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x69\x00\x6d\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x65\x00\ \x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\ \x74\x00\x6e\x00\x65\x00\x72\x00\x73\x00\x68\x00\x69\x00\x70\x00\ \x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x74\x00\ \x68\x00\x65\x00\x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\ \x0a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x46\x00\x4c\x00\ \x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x73\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\ \x6e\x00\x73\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\ \x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\ \x74\x00\x75\x00\x64\x00\x69\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ \x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x64\x00\ \x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x6c\x00\ \x79\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\ \x67\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x79\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ \x74\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x73\x00\x65\x00\ \x6c\x00\x76\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x54\x00\x68\x00\ \x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\ \x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\ \x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\ \x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\ \x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\x2c\x00\ \x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x62\x00\x75\x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\ \x20\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x64\x00\x64\x00\x65\x00\ \x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x73\x00\ \x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\x72\x00\x20\x00\ \x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\x69\x00\x74\x00\ \x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\ \x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\ \x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x79\x00\ \x20\x00\x72\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\ \x64\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\ \x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ \x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\ \x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x73\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ \x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ \x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\ \x76\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ \x65\x00\x76\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x63\x00\x61\x00\ \x6e\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x72\x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x64\x00\ \x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\ \x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x65\x00\ \x71\x00\x75\x00\x69\x00\x72\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ \x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x72\x00\ \x65\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\ \x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ \x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\ \x20\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\ \x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\ \x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ \x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\ \x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ \x6f\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\ \x20\x00\x64\x00\x65\x00\x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\ \x69\x00\x76\x00\x65\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\ \x0a\x00\x44\x00\x45\x00\x46\x00\x49\x00\x4e\x00\x49\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x22\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\ \x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x74\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\ \x20\x00\x72\x00\x65\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\ \x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\ \x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ \x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\ \x61\x00\x6e\x00\x64\x00\x20\x00\x63\x00\x6c\x00\x65\x00\x61\x00\ \x72\x00\x6c\x00\x79\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\ \x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\ \x63\x00\x68\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\ \x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ \x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x75\x00\ \x72\x00\x63\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\ \x73\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ \x20\x00\x73\x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\x73\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x63\x00\ \x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\ \x52\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\ \x6d\x00\x65\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\ \x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\ \x79\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\ \x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x65\x00\ \x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\ \x68\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\ \x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x73\x00\x74\x00\ \x61\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x28\x00\ \x73\x00\x29\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\ \x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\ \x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ \x63\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x46\x00\x6f\x00\ \x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\ \x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ \x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\ \x73\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\ \x62\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\ \x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x22\x00\x20\x00\ \x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\ \x72\x00\x69\x00\x76\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\ \x20\x00\x6d\x00\x61\x00\x64\x00\x65\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x61\x00\x64\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ \x74\x00\x6f\x00\x2c\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x65\x00\ \x74\x00\x69\x00\x6e\x00\x67\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\ \x20\x00\x73\x00\x75\x00\x62\x00\x73\x00\x74\x00\x69\x00\x74\x00\ \x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x2d\x00\ \x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ \x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\ \x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x2d\x00\x2d\x00\x20\x00\ \x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ \x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x72\x00\x69\x00\ \x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x56\x00\x65\x00\ \x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x63\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x69\x00\ \x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ \x74\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x79\x00\ \x20\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\ \x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\ \x6e\x00\x65\x00\x77\x00\x20\x00\x65\x00\x6e\x00\x76\x00\x69\x00\ \x72\x00\x6f\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\ \x0d\x00\x0a\x00\x0d\x00\x0a\x00\x22\x00\x41\x00\x75\x00\x74\x00\ \x68\x00\x6f\x00\x72\x00\x22\x00\x20\x00\x72\x00\x65\x00\x66\x00\ \x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x67\x00\ \x6e\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x67\x00\ \x69\x00\x6e\x00\x65\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x70\x00\ \x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\ \x72\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6e\x00\ \x69\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x77\x00\x72\x00\x69\x00\ \x74\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x70\x00\x65\x00\x72\x00\ \x73\x00\x6f\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x6f\x00\x20\x00\ \x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ \x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x50\x00\x45\x00\x52\x00\ \x4d\x00\x49\x00\x53\x00\x53\x00\x49\x00\x4f\x00\x4e\x00\x20\x00\ \x26\x00\x20\x00\x43\x00\x4f\x00\x4e\x00\x44\x00\x49\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x53\x00\x0d\x00\x0a\x00\x50\x00\x65\x00\ \x72\x00\x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x20\x00\x69\x00\x73\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\ \x62\x00\x79\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ \x65\x00\x64\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\ \x20\x00\x6f\x00\x66\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ \x67\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x70\x00\x65\x00\x72\x00\x73\x00\x6f\x00\ \x6e\x00\x20\x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\x6e\x00\ \x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ \x70\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\ \x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x2c\x00\ \x20\x00\x73\x00\x74\x00\x75\x00\x64\x00\x79\x00\x2c\x00\x20\x00\ \x63\x00\x6f\x00\x70\x00\x79\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\ \x72\x00\x67\x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6d\x00\x62\x00\ \x65\x00\x64\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ \x66\x00\x79\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\ \x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\x65\x00\ \x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\ \x6c\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ \x75\x00\x6e\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ \x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ \x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ \x73\x00\x75\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\ \x6f\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x73\x00\x3a\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x31\x00\x29\x00\x20\x00\x4e\x00\x65\x00\x69\x00\x74\x00\x68\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ \x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ \x69\x00\x74\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ \x76\x00\x69\x00\x64\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x63\x00\ \x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ \x73\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x72\x00\ \x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ \x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\ \x6f\x00\x6e\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\ \x20\x00\x62\x00\x79\x00\x20\x00\x69\x00\x74\x00\x73\x00\x65\x00\ \x6c\x00\x66\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x32\x00\ \x29\x00\x20\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\ \x61\x00\x6c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ \x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\ \x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x64\x00\ \x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x64\x00\ \x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x2f\x00\x6f\x00\ \x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x77\x00\ \x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\ \x73\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\ \x2c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\ \x65\x00\x64\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\ \x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x79\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\ \x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\ \x62\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6e\x00\ \x6f\x00\x74\x00\x69\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ \x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\ \x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\ \x54\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\x00\x63\x00\x61\x00\ \x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ \x6c\x00\x75\x00\x64\x00\x65\x00\x64\x00\x20\x00\x65\x00\x69\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\ \x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x2d\x00\x61\x00\x6c\x00\ \x6f\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\ \x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\ \x68\x00\x75\x00\x6d\x00\x61\x00\x6e\x00\x2d\x00\x72\x00\x65\x00\ \x61\x00\x64\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x68\x00\ \x65\x00\x61\x00\x64\x00\x65\x00\x72\x00\x73\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x61\x00\x70\x00\x70\x00\x72\x00\x6f\x00\x70\x00\x72\x00\ \x69\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x63\x00\ \x68\x00\x69\x00\x6e\x00\x65\x00\x2d\x00\x72\x00\x65\x00\x61\x00\ \x64\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\ \x74\x00\x61\x00\x64\x00\x61\x00\x74\x00\x61\x00\x20\x00\x66\x00\ \x69\x00\x65\x00\x6c\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\x00\ \x74\x00\x68\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\ \x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x69\x00\x6e\x00\ \x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\ \x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\ \x67\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x6f\x00\ \x73\x00\x65\x00\x20\x00\x66\x00\x69\x00\x65\x00\x6c\x00\x64\x00\ \x73\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\ \x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x62\x00\ \x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\ \x65\x00\x72\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x33\x00\ \x29\x00\x20\x00\x4e\x00\x6f\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\ \x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\x65\x00\ \x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\ \x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x20\x00\x75\x00\ \x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x52\x00\ \x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x64\x00\x20\x00\ \x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\ \x65\x00\x28\x00\x73\x00\x29\x00\x20\x00\x75\x00\x6e\x00\x6c\x00\ \x65\x00\x73\x00\x73\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6c\x00\ \x69\x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\x69\x00\ \x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\x72\x00\ \x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ \x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ \x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x73\x00\ \x70\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ \x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\ \x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\ \x2e\x00\x20\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\ \x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x63\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\ \x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x73\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\ \x72\x00\x69\x00\x6d\x00\x61\x00\x72\x00\x79\x00\x20\x00\x66\x00\ \x6f\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\ \x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\ \x65\x00\x6e\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ \x72\x00\x73\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x34\x00\ \x29\x00\x20\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x61\x00\ \x6d\x00\x65\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\x66\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x70\x00\ \x79\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x48\x00\ \x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x28\x00\x73\x00\x29\x00\ \x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ \x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\ \x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\ \x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\x65\x00\x20\x00\x73\x00\ \x68\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ \x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\ \x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\ \x6f\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x64\x00\ \x6f\x00\x72\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ \x61\x00\x64\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x73\x00\ \x65\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x4d\x00\x6f\x00\ \x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x64\x00\x20\x00\x56\x00\ \x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\ \x65\x00\x78\x00\x63\x00\x65\x00\x70\x00\x74\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x61\x00\x63\x00\x6b\x00\x6e\x00\x6f\x00\x77\x00\ \x6c\x00\x65\x00\x64\x00\x67\x00\x65\x00\x20\x00\x74\x00\x68\x00\ \x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x69\x00\ \x62\x00\x75\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x28\x00\x73\x00\ \x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ \x20\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\x69\x00\x67\x00\ \x68\x00\x74\x00\x20\x00\x48\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\ \x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x75\x00\x74\x00\ \x68\x00\x6f\x00\x72\x00\x28\x00\x73\x00\x29\x00\x20\x00\x6f\x00\ \x72\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\ \x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x65\x00\x78\x00\x70\x00\ \x6c\x00\x69\x00\x63\x00\x69\x00\x74\x00\x20\x00\x77\x00\x72\x00\ \x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x65\x00\ \x72\x00\x6d\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ \x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x35\x00\x29\x00\x20\x00\ \x54\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\ \x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\x61\x00\x72\x00\ \x65\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x75\x00\ \x6e\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\ \x64\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\ \x72\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6e\x00\ \x20\x00\x77\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\ \x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\ \x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\x75\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ \x72\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ \x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x2c\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ \x74\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x65\x00\ \x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x62\x00\ \x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\ \x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x68\x00\ \x65\x00\x20\x00\x72\x00\x65\x00\x71\x00\x75\x00\x69\x00\x72\x00\ \x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ \x72\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x61\x00\x69\x00\ \x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ \x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\ \x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x65\x00\ \x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x70\x00\ \x70\x00\x6c\x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ \x6e\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ \x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\ \x74\x00\x65\x00\x64\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\ \x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\ \x6e\x00\x74\x00\x20\x00\x53\x00\x6f\x00\x66\x00\x74\x00\x77\x00\ \x61\x00\x72\x00\x65\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\ \x54\x00\x45\x00\x52\x00\x4d\x00\x49\x00\x4e\x00\x41\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x0d\x00\x0a\x00\x54\x00\x68\x00\x69\x00\ \x73\x00\x20\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\ \x65\x00\x20\x00\x62\x00\x65\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\ \x73\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\ \x6e\x00\x64\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\ \x69\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\ \x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x62\x00\ \x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\ \x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6d\x00\ \x65\x00\x74\x00\x2e\x00\x0d\x00\x0a\x00\x0d\x00\x0a\x00\x44\x00\ \x49\x00\x53\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\x45\x00\ \x52\x00\x0d\x00\x0a\x00\x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\ \x4f\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\ \x57\x00\x41\x00\x52\x00\x45\x00\x20\x00\x49\x00\x53\x00\x20\x00\ \x50\x00\x52\x00\x4f\x00\x56\x00\x49\x00\x44\x00\x45\x00\x44\x00\ \x20\x00\x22\x00\x41\x00\x53\x00\x20\x00\x49\x00\x53\x00\x22\x00\ \x2c\x00\x20\x00\x57\x00\x49\x00\x54\x00\x48\x00\x4f\x00\x55\x00\ \x54\x00\x20\x00\x57\x00\x41\x00\x52\x00\x52\x00\x41\x00\x4e\x00\ \x54\x00\x59\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x41\x00\x4e\x00\ \x59\x00\x20\x00\x4b\x00\x49\x00\x4e\x00\x44\x00\x2c\x00\x20\x00\ \x45\x00\x58\x00\x50\x00\x52\x00\x45\x00\x53\x00\x53\x00\x20\x00\ \x4f\x00\x52\x00\x20\x00\x49\x00\x4d\x00\x50\x00\x4c\x00\x49\x00\ \x45\x00\x44\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\x43\x00\x4c\x00\ \x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\x42\x00\x55\x00\ \x54\x00\x20\x00\x4e\x00\x4f\x00\x54\x00\x20\x00\x4c\x00\x49\x00\ \x4d\x00\x49\x00\x54\x00\x45\x00\x44\x00\x20\x00\x54\x00\x4f\x00\ \x20\x00\x41\x00\x4e\x00\x59\x00\x20\x00\x57\x00\x41\x00\x52\x00\ \x52\x00\x41\x00\x4e\x00\x54\x00\x49\x00\x45\x00\x53\x00\x20\x00\ \x4f\x00\x46\x00\x20\x00\x4d\x00\x45\x00\x52\x00\x43\x00\x48\x00\ \x41\x00\x4e\x00\x54\x00\x41\x00\x42\x00\x49\x00\x4c\x00\x49\x00\ \x54\x00\x59\x00\x2c\x00\x20\x00\x46\x00\x49\x00\x54\x00\x4e\x00\ \x45\x00\x53\x00\x53\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\ \x41\x00\x20\x00\x50\x00\x41\x00\x52\x00\x54\x00\x49\x00\x43\x00\ \x55\x00\x4c\x00\x41\x00\x52\x00\x20\x00\x50\x00\x55\x00\x52\x00\ \x50\x00\x4f\x00\x53\x00\x45\x00\x20\x00\x41\x00\x4e\x00\x44\x00\ \x20\x00\x4e\x00\x4f\x00\x4e\x00\x49\x00\x4e\x00\x46\x00\x52\x00\ \x49\x00\x4e\x00\x47\x00\x45\x00\x4d\x00\x45\x00\x4e\x00\x54\x00\ \x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\x50\x00\x59\x00\ \x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\x2c\x00\x20\x00\x50\x00\ \x41\x00\x54\x00\x45\x00\x4e\x00\x54\x00\x2c\x00\x20\x00\x54\x00\ \x52\x00\x41\x00\x44\x00\x45\x00\x4d\x00\x41\x00\x52\x00\x4b\x00\ \x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\ \x45\x00\x52\x00\x20\x00\x52\x00\x49\x00\x47\x00\x48\x00\x54\x00\ \x2e\x00\x20\x00\x49\x00\x4e\x00\x20\x00\x4e\x00\x4f\x00\x20\x00\ \x45\x00\x56\x00\x45\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x48\x00\ \x41\x00\x4c\x00\x4c\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\ \x43\x00\x4f\x00\x50\x00\x59\x00\x52\x00\x49\x00\x47\x00\x48\x00\ \x54\x00\x20\x00\x48\x00\x4f\x00\x4c\x00\x44\x00\x45\x00\x52\x00\ \x20\x00\x42\x00\x45\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\ \x4c\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x52\x00\x20\x00\x41\x00\ \x4e\x00\x59\x00\x20\x00\x43\x00\x4c\x00\x41\x00\x49\x00\x4d\x00\ \x2c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\x41\x00\x47\x00\x45\x00\ \x53\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x4f\x00\x54\x00\x48\x00\ \x45\x00\x52\x00\x20\x00\x4c\x00\x49\x00\x41\x00\x42\x00\x49\x00\ \x4c\x00\x49\x00\x54\x00\x59\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\ \x43\x00\x4c\x00\x55\x00\x44\x00\x49\x00\x4e\x00\x47\x00\x20\x00\ \x41\x00\x4e\x00\x59\x00\x20\x00\x47\x00\x45\x00\x4e\x00\x45\x00\ \x52\x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x53\x00\x50\x00\x45\x00\ \x43\x00\x49\x00\x41\x00\x4c\x00\x2c\x00\x20\x00\x49\x00\x4e\x00\ \x44\x00\x49\x00\x52\x00\x45\x00\x43\x00\x54\x00\x2c\x00\x20\x00\ \x49\x00\x4e\x00\x43\x00\x49\x00\x44\x00\x45\x00\x4e\x00\x54\x00\ \x41\x00\x4c\x00\x2c\x00\x20\x00\x4f\x00\x52\x00\x20\x00\x43\x00\ \x4f\x00\x4e\x00\x53\x00\x45\x00\x51\x00\x55\x00\x45\x00\x4e\x00\ \x54\x00\x49\x00\x41\x00\x4c\x00\x20\x00\x44\x00\x41\x00\x4d\x00\ \x41\x00\x47\x00\x45\x00\x53\x00\x2c\x00\x20\x00\x57\x00\x48\x00\ \x45\x00\x54\x00\x48\x00\x45\x00\x52\x00\x20\x00\x49\x00\x4e\x00\ \x20\x00\x41\x00\x4e\x00\x20\x00\x41\x00\x43\x00\x54\x00\x49\x00\ \x4f\x00\x4e\x00\x20\x00\x4f\x00\x46\x00\x20\x00\x43\x00\x4f\x00\ \x4e\x00\x54\x00\x52\x00\x41\x00\x43\x00\x54\x00\x2c\x00\x20\x00\ \x54\x00\x4f\x00\x52\x00\x54\x00\x20\x00\x4f\x00\x52\x00\x20\x00\ \x4f\x00\x54\x00\x48\x00\x45\x00\x52\x00\x57\x00\x49\x00\x53\x00\ \x45\x00\x2c\x00\x20\x00\x41\x00\x52\x00\x49\x00\x53\x00\x49\x00\ \x4e\x00\x47\x00\x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x2c\x00\ \x20\x00\x4f\x00\x55\x00\x54\x00\x20\x00\x4f\x00\x46\x00\x20\x00\ \x54\x00\x48\x00\x45\x00\x20\x00\x55\x00\x53\x00\x45\x00\x20\x00\ \x4f\x00\x52\x00\x20\x00\x49\x00\x4e\x00\x41\x00\x42\x00\x49\x00\ \x4c\x00\x49\x00\x54\x00\x59\x00\x20\x00\x54\x00\x4f\x00\x20\x00\ \x55\x00\x53\x00\x45\x00\x20\x00\x54\x00\x48\x00\x45\x00\x20\x00\ \x46\x00\x4f\x00\x4e\x00\x54\x00\x20\x00\x53\x00\x4f\x00\x46\x00\ \x54\x00\x57\x00\x41\x00\x52\x00\x45\x00\x20\x00\x4f\x00\x52\x00\ \x20\x00\x46\x00\x52\x00\x4f\x00\x4d\x00\x20\x00\x4f\x00\x54\x00\ \x48\x00\x45\x00\x52\x00\x20\x00\x44\x00\x45\x00\x41\x00\x4c\x00\ \x49\x00\x4e\x00\x47\x00\x53\x00\x20\x00\x49\x00\x4e\x00\x20\x00\ \x54\x00\x48\x00\x45\x00\x20\x00\x46\x00\x4f\x00\x4e\x00\x54\x00\ \x20\x00\x53\x00\x4f\x00\x46\x00\x54\x00\x57\x00\x41\x00\x52\x00\ \x45\x00\x2e\x00\x0d\x00\x0a\x00\x68\x00\x74\x00\x74\x00\x70\x00\ \x3a\x00\x2f\x00\x2f\x00\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\ \x64\x00\x6f\x00\x62\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\ \x2f\x00\x74\x00\x79\x00\x70\x00\x65\x00\x2f\x00\x6c\x00\x65\x00\ \x67\x00\x61\x00\x6c\x00\x2e\x00\x68\x00\x74\x00\x6d\x00\x6c\x00\ \x54\x00\x79\x00\x70\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x70\x00\ \x68\x00\x69\x00\x63\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\ \x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x73\x00\x41\x00\x6c\x00\ \x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\ \x61\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ \x74\x00\x65\x00\x20\x00\x67\x00\x41\x00\x6c\x00\x74\x00\x65\x00\ \x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ \x6c\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x73\x00\x69\x00\x67\x00\ \x6e\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\xff\xb5\x00\x32\x00\ \x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x03\xc5\x00\x00\x01\x02\x01\x03\x00\x03\x00\x24\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\ \x3d\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\ \x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\ \x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\ \x5b\x00\x5c\x00\x5d\x00\xad\x00\xc9\x00\xc7\x00\xae\x00\x62\x01\ \x04\x01\x05\x00\x63\x01\x06\x01\x07\x01\x08\x01\x09\x01\x0a\x01\ \x0b\x01\x0c\x01\x0d\x01\x0e\x01\x0f\x01\x10\x01\x11\x01\x12\x01\ \x13\x00\x90\x01\x14\x00\x64\x00\xfd\x01\x15\x00\xff\x01\x16\x01\ \x17\x01\x18\x01\x19\x01\x1a\x00\xcb\x00\x65\x00\xc8\x01\x1b\x00\ \xca\x01\x1c\x01\x1d\x01\x1e\x01\x1f\x01\x20\x01\x21\x01\x22\x01\ \x23\x01\x24\x01\x25\x01\x26\x01\x27\x01\x28\x00\xf8\x01\x29\x01\ \x2a\x01\x2b\x01\x2c\x01\x2d\x01\x2e\x01\x2f\x01\x30\x01\x31\x00\ \xcf\x00\xcc\x00\xcd\x01\x32\x00\xce\x01\x33\x01\x34\x00\xfa\x01\ \x35\x01\x36\x01\x37\x01\x38\x01\x39\x01\x3a\x01\x3b\x01\x3c\x01\ \x3d\x01\x3e\x01\x3f\x01\x40\x01\x41\x00\xe2\x01\x42\x01\x43\x01\ \x44\x00\x66\x01\x45\x01\x46\x01\x47\x01\x48\x00\xd3\x00\xd0\x00\ \xd1\x00\xaf\x00\x67\x01\x49\x01\x4a\x01\x4b\x01\x4c\x01\x4d\x01\ \x4e\x01\x4f\x01\x50\x01\x51\x01\x52\x01\x53\x00\x91\x00\xb0\x01\ \x54\x01\x55\x01\x56\x01\x57\x01\x58\x01\x59\x01\x5a\x01\x5b\x01\ \x5c\x01\x5d\x01\x5e\x01\x5f\x01\x60\x01\x61\x01\x62\x00\xe4\x01\ \x63\x01\x64\x01\x65\x01\x66\x01\x67\x01\x68\x01\x69\x01\x6a\x01\ \x6b\x01\x6c\x00\xd6\x00\xd4\x00\xd5\x01\x6d\x00\x68\x01\x6e\x01\ \x6f\x01\x70\x01\x71\x01\x72\x01\x73\x01\x74\x01\x75\x01\x76\x01\ \x77\x01\x78\x01\x79\x01\x7a\x01\x7b\x01\x7c\x01\x7d\x01\x7e\x01\ \x7f\x01\x80\x01\x81\x01\x82\x01\x83\x01\x84\x00\xeb\x01\x85\x00\ \xbb\x01\x86\x01\x87\x01\x88\x01\x89\x01\x8a\x00\xe6\x01\x8b\x01\ \x8c\x00\xe9\x00\xed\x01\x8d\x00\x6a\x00\x69\x00\x6b\x00\x6d\x00\ \x6c\x01\x8e\x01\x8f\x00\x6e\x01\x90\x01\x91\x01\x92\x01\x93\x01\ \x94\x01\x95\x01\x96\x01\x97\x01\x98\x01\x99\x01\x9a\x01\x9b\x01\ \x9c\x01\x9d\x00\xa0\x01\x9e\x00\x6f\x00\xfe\x01\x9f\x01\x00\x01\ \xa0\x01\xa1\x01\xa2\x01\xa3\x01\x01\x00\x71\x00\x70\x00\x72\x01\ \xa4\x00\x73\x01\xa5\x01\xa6\x01\xa7\x01\xa8\x01\xa9\x01\xaa\x01\ \xab\x01\xac\x01\xad\x01\xae\x01\xaf\x01\xb0\x01\xb1\x00\xf9\x01\ \xb2\x01\xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\ \xba\x00\x75\x00\x74\x00\x76\x01\xbb\x00\x77\x01\xbc\x01\xbd\x01\ \xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x00\xd7\x01\xc3\x01\xc4\x01\ \xc5\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\xcc\x00\ \xe3\x01\xcd\x01\xce\x01\xcf\x00\x78\x01\xd0\x01\xd1\x01\xd2\x01\ \xd3\x01\xd4\x00\x7a\x00\x79\x00\x7b\x00\x7d\x00\x7c\x01\xd5\x01\ \xd6\x01\xd7\x01\xd8\x01\xd9\x01\xda\x01\xdb\x01\xdc\x01\xdd\x01\ \xde\x01\xdf\x00\xa1\x00\xb1\x01\xe0\x01\xe1\x01\xe2\x01\xe3\x01\ \xe4\x01\xe5\x01\xe6\x01\xe7\x01\xe8\x01\xe9\x01\xea\x01\xeb\x01\ \xec\x01\xed\x01\xee\x00\xe5\x01\xef\x01\xf0\x01\xf1\x01\xf2\x00\ \x89\x01\xf3\x01\xf4\x01\xf5\x01\xf6\x01\xf7\x01\xf8\x00\x7f\x00\ \x7e\x00\x80\x01\xf9\x00\x81\x01\xfa\x01\xfb\x01\xfc\x01\xfd\x01\ \xfe\x01\xff\x02\x00\x02\x01\x02\x02\x02\x03\x02\x04\x02\x05\x02\ \x06\x02\x07\x02\x08\x02\x09\x02\x0a\x02\x0b\x02\x0c\x02\x0d\x02\ \x0e\x02\x0f\x02\x10\x00\xec\x02\x11\x00\xba\x02\x12\x02\x13\x02\ \x14\x02\x15\x02\x16\x00\xe7\x02\x17\x02\x18\x00\xea\x00\xee\x02\ \x19\x02\x1a\x02\x1b\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\ \x21\x02\x22\x02\x23\x02\x24\x02\x25\x02\x26\x02\x27\x02\x28\x00\ \xc0\x00\xc1\x02\x29\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\ \x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x34\x02\x35\x02\x36\x02\ \x37\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\ \x3f\x02\x40\x02\x41\x02\x42\x02\x43\x02\x44\x02\x45\x02\x46\x02\ \x47\x00\x09\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\ \x19\x00\x1a\x00\x1b\x00\x1c\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\ \x4c\x02\x4d\x02\x4e\x02\x4f\x02\x50\x02\x51\x00\x11\x00\x0f\x00\ \x1d\x00\x1e\x00\xab\x00\x04\x00\xa3\x00\x22\x00\xa2\x00\x0a\x00\ \x05\x00\xb6\x00\xb7\x00\xb4\x00\xb5\x00\xc4\x00\xc5\x00\xbe\x00\ \xbf\x00\xa9\x00\xaa\x00\x10\x02\x52\x00\xb2\x00\xb3\x02\x53\x02\ \x54\x00\xc3\x00\x87\x00\x42\x00\x0b\x00\x0c\x00\x3e\x00\x40\x00\ \x5e\x00\x60\x00\x12\x00\x5f\x00\x3f\x00\xe8\x00\x0d\x00\x82\x00\ \xc2\x00\x86\x00\x88\x00\x8b\x02\x55\x00\x8a\x00\x8c\x02\x56\x00\ \x23\x02\x57\x00\x06\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\ \x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\ \x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\x73\x02\x74\x02\ \x75\x02\x76\x02\x77\x02\x78\x02\x79\x02\x7a\x02\x7b\x02\x7c\x02\ \x7d\x02\x7e\x02\x7f\x02\x80\x02\x81\x02\x82\x02\x83\x02\x84\x02\ \x85\x02\x86\x02\x87\x02\x88\x02\x89\x02\x8a\x02\x8b\x02\x8c\x02\ \x8d\x02\x8e\x02\x8f\x02\x90\x02\x91\x02\x92\x02\x93\x00\x9d\x02\ \x94\x00\x9e\x02\x95\x02\x96\x02\x97\x02\x98\x02\x99\x02\x9a\x02\ \x9b\x02\x9c\x02\x9d\x02\x9e\x02\x9f\x02\xa0\x02\xa1\x02\xa2\x02\ \xa3\x02\xa4\x02\xa5\x02\xa6\x02\xa7\x02\xa8\x02\xa9\x02\xaa\x02\ \xab\x02\xac\x02\xad\x02\xae\x02\xaf\x02\xb0\x02\xb1\x02\xb2\x02\ \xb3\x00\x83\x00\xbd\x00\x07\x00\x85\x00\x96\x02\xb4\x00\x84\x02\ \xb5\x02\xb6\x02\xb7\x02\xb8\x02\xb9\x02\xba\x02\xbb\x02\xbc\x02\ \xbd\x02\xbe\x02\xbf\x00\xbc\x02\xc0\x02\xc1\x00\x08\x00\xc6\x00\ \xf5\x00\xf4\x00\xf6\x02\xc2\x02\xc3\x02\xc4\x02\xc5\x02\xc6\x02\ \xc7\x00\x0e\x00\xef\x00\xf0\x00\xb8\x02\xc8\x00\x20\x00\x1f\x00\ \x21\x00\x94\x00\x95\x00\x93\x00\x41\x00\x8f\x00\x61\x00\xa7\x00\ \xa4\x00\x9b\x00\x92\x02\xc9\x00\x98\x00\x9c\x00\xa5\x02\xca\x02\ \xcb\x00\x99\x00\x9a\x02\xcc\x02\xcd\x02\xce\x02\xcf\x02\xd0\x02\ \xd1\x02\xd2\x02\xd3\x02\xd4\x02\xd5\x02\xd6\x02\xd7\x02\xd8\x02\ \xd9\x02\xda\x02\xdb\x02\xdc\x02\xdd\x02\xde\x02\xdf\x02\xe0\x02\ \xe1\x00\xb9\x02\xe2\x02\xe3\x02\xe4\x02\xe5\x02\xe6\x02\xe7\x00\ \x43\x00\x8d\x00\xd8\x00\xe1\x02\xe8\x02\xe9\x02\xea\x02\xeb\x02\ \xec\x00\xd9\x00\x8e\x00\xda\x00\xdb\x00\xdd\x00\xdf\x00\xdc\x00\ \xde\x00\xe0\x02\xed\x02\xee\x02\xef\x02\xf0\x02\xf1\x02\xf2\x02\ \xf3\x02\xf4\x02\xf5\x02\xf6\x02\xf7\x02\xf8\x02\xf9\x02\xfa\x02\ \xfb\x02\xfc\x02\xfd\x02\xfe\x02\xff\x03\x00\x03\x01\x03\x02\x03\ \x03\x03\x04\x03\x05\x03\x06\x03\x07\x03\x08\x03\x09\x03\x0a\x03\ \x0b\x03\x0c\x03\x0d\x03\x0e\x03\x0f\x03\x10\x03\x11\x03\x12\x03\ \x13\x03\x14\x03\x15\x03\x16\x03\x17\x03\x18\x03\x19\x03\x1a\x03\ \x1b\x03\x1c\x03\x1d\x03\x1e\x03\x1f\x03\x20\x03\x21\x03\x22\x03\ \x23\x03\x24\x03\x25\x03\x26\x03\x27\x03\x28\x03\x29\x03\x2a\x03\ \x2b\x03\x2c\x03\x2d\x03\x2e\x03\x2f\x03\x30\x03\x31\x03\x32\x03\ \x33\x03\x34\x03\x35\x03\x36\x03\x37\x03\x38\x03\x39\x03\x3a\x03\ \x3b\x03\x3c\x03\x3d\x03\x3e\x03\x3f\x03\x40\x03\x41\x03\x42\x03\ \x43\x03\x44\x03\x45\x03\x46\x03\x47\x03\x48\x03\x49\x03\x4a\x03\ \x4b\x03\x4c\x03\x4d\x03\x4e\x03\x4f\x03\x50\x03\x51\x03\x52\x03\ \x53\x03\x54\x03\x55\x03\x56\x03\x57\x03\x58\x03\x59\x03\x5a\x03\ \x5b\x03\x5c\x03\x5d\x03\x5e\x03\x5f\x03\x60\x03\x61\x03\x62\x03\ \x63\x03\x64\x03\x65\x03\x66\x03\x67\x03\x68\x03\x69\x03\x6a\x03\ \x6b\x03\x6c\x03\x6d\x03\x6e\x03\x6f\x03\x70\x03\x71\x03\x72\x03\ \x73\x03\x74\x03\x75\x03\x76\x03\x77\x03\x78\x03\x79\x03\x7a\x03\ \x7b\x03\x7c\x03\x7d\x03\x7e\x03\x7f\x03\x80\x03\x81\x03\x82\x03\ \x83\x03\x84\x03\x85\x03\x86\x03\x87\x03\x88\x03\x89\x03\x8a\x03\ \x8b\x03\x8c\x03\x8d\x03\x8e\x03\x8f\x03\x90\x03\x91\x03\x92\x03\ \x93\x03\x94\x03\x95\x03\x96\x03\x97\x03\x98\x03\x99\x03\x9a\x03\ \x9b\x03\x9c\x03\x9d\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa2\x03\ \xa3\x03\xa4\x03\xa5\x03\xa6\x03\xa7\x03\xa8\x03\xa9\x03\xaa\x03\ \xab\x03\xac\x03\xad\x03\xae\x03\xaf\x03\xb0\x03\xb1\x03\xb2\x03\ \xb3\x03\xb4\x03\xb5\x03\xb6\x03\xb7\x03\xb8\x03\xb9\x03\xba\x03\ \xbb\x03\xbc\x03\xbd\x03\xbe\x03\xbf\x03\xc0\x03\xc1\x03\xc2\x03\ \xc3\x03\xc4\x03\xc5\x03\xc6\x03\xc7\x03\xc8\x03\xc9\x03\xca\x03\ \xcb\x03\xcc\x03\xcd\x03\xce\x03\xcf\x03\xd0\x03\xd1\x03\xd2\x04\ \x4e\x55\x4c\x4c\x02\x43\x52\x07\x41\x6d\x61\x63\x72\x6f\x6e\x06\ \x41\x62\x72\x65\x76\x65\x07\x75\x6e\x69\x30\x31\x43\x44\x07\x75\ \x6e\x69\x31\x45\x41\x30\x07\x75\x6e\x69\x31\x45\x41\x32\x07\x75\ \x6e\x69\x31\x45\x41\x34\x07\x75\x6e\x69\x31\x45\x41\x36\x07\x75\ \x6e\x69\x31\x45\x41\x38\x07\x75\x6e\x69\x31\x45\x41\x41\x07\x75\ \x6e\x69\x31\x45\x41\x43\x07\x75\x6e\x69\x31\x45\x41\x45\x07\x75\ \x6e\x69\x31\x45\x42\x30\x07\x75\x6e\x69\x31\x45\x42\x32\x07\x75\ \x6e\x69\x31\x45\x42\x34\x07\x75\x6e\x69\x31\x45\x42\x36\x07\x41\ \x6f\x67\x6f\x6e\x65\x6b\x07\x75\x6e\x69\x30\x32\x34\x33\x0b\x43\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x43\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x06\x44\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x31\x45\x30\x43\x07\x75\x6e\x69\x31\x45\x30\x45\x06\x44\x63\x72\ \x6f\x61\x74\x06\x45\x63\x61\x72\x6f\x6e\x07\x45\x6d\x61\x63\x72\ \x6f\x6e\x06\x45\x62\x72\x65\x76\x65\x0a\x45\x64\x6f\x74\x61\x63\ \x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x38\x07\x75\x6e\x69\ \x31\x45\x42\x41\x07\x75\x6e\x69\x31\x45\x42\x43\x07\x75\x6e\x69\ \x31\x45\x42\x45\x07\x75\x6e\x69\x31\x45\x43\x30\x07\x75\x6e\x69\ \x31\x45\x43\x32\x07\x75\x6e\x69\x31\x45\x43\x34\x07\x75\x6e\x69\ \x31\x45\x43\x36\x07\x45\x6f\x67\x6f\x6e\x65\x6b\x0b\x47\x63\x69\ \x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x47\x64\x6f\x74\x61\x63\x63\ \x65\x6e\x74\x07\x75\x6e\x69\x30\x31\x32\x32\x06\x47\x63\x61\x72\ \x6f\x6e\x07\x75\x6e\x69\x31\x45\x32\x30\x0b\x75\x6e\x69\x30\x30\ \x34\x37\x30\x33\x30\x33\x0b\x48\x63\x69\x72\x63\x75\x6d\x66\x6c\ \x65\x78\x07\x75\x6e\x69\x31\x45\x32\x34\x07\x75\x6e\x69\x31\x45\ \x32\x41\x04\x48\x62\x61\x72\x06\x49\x74\x69\x6c\x64\x65\x07\x49\ \x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x43\x07\x75\ \x6e\x69\x30\x31\x43\x46\x07\x75\x6e\x69\x31\x45\x43\x38\x07\x75\ \x6e\x69\x31\x45\x43\x41\x07\x49\x6f\x67\x6f\x6e\x65\x6b\x0b\x4a\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\ \x33\x36\x06\x4c\x61\x63\x75\x74\x65\x06\x4c\x63\x61\x72\x6f\x6e\ \x07\x75\x6e\x69\x30\x31\x33\x42\x04\x4c\x64\x6f\x74\x07\x75\x6e\ \x69\x31\x45\x33\x36\x07\x75\x6e\x69\x31\x45\x33\x38\x07\x75\x6e\ \x69\x31\x45\x33\x41\x07\x75\x6e\x69\x31\x45\x34\x32\x06\x4e\x61\ \x63\x75\x74\x65\x06\x4e\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\ \x31\x34\x35\x07\x75\x6e\x69\x31\x45\x34\x34\x07\x75\x6e\x69\x31\ \x45\x34\x36\x07\x75\x6e\x69\x31\x45\x34\x38\x07\x4f\x6d\x61\x63\ \x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x45\x0d\x4f\x68\x75\x6e\ \x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\ \x31\x07\x75\x6e\x69\x31\x45\x43\x43\x07\x75\x6e\x69\x31\x45\x43\ \x45\x07\x75\x6e\x69\x31\x45\x44\x30\x07\x75\x6e\x69\x31\x45\x44\ \x32\x07\x75\x6e\x69\x31\x45\x44\x34\x07\x75\x6e\x69\x31\x45\x44\ \x36\x07\x75\x6e\x69\x31\x45\x44\x38\x05\x4f\x68\x6f\x72\x6e\x07\ \x75\x6e\x69\x31\x45\x44\x41\x07\x75\x6e\x69\x31\x45\x44\x43\x07\ \x75\x6e\x69\x31\x45\x44\x45\x07\x75\x6e\x69\x31\x45\x45\x30\x07\ \x75\x6e\x69\x31\x45\x45\x32\x07\x75\x6e\x69\x30\x31\x45\x41\x06\ \x52\x61\x63\x75\x74\x65\x06\x52\x63\x61\x72\x6f\x6e\x07\x75\x6e\ \x69\x30\x31\x35\x36\x07\x75\x6e\x69\x31\x45\x35\x41\x07\x75\x6e\ \x69\x31\x45\x35\x43\x07\x75\x6e\x69\x31\x45\x35\x45\x06\x53\x61\ \x63\x75\x74\x65\x0b\x53\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\ \x07\x75\x6e\x69\x30\x31\x35\x45\x07\x75\x6e\x69\x30\x32\x31\x38\ \x07\x75\x6e\x69\x31\x45\x36\x30\x07\x75\x6e\x69\x31\x45\x36\x32\ \x07\x75\x6e\x69\x31\x45\x39\x45\x06\x54\x63\x61\x72\x6f\x6e\x07\ \x75\x6e\x69\x30\x31\x36\x32\x07\x75\x6e\x69\x30\x32\x31\x41\x07\ \x75\x6e\x69\x31\x45\x36\x43\x07\x75\x6e\x69\x31\x45\x36\x45\x06\ \x55\x74\x69\x6c\x64\x65\x07\x55\x6d\x61\x63\x72\x6f\x6e\x06\x55\ \x62\x72\x65\x76\x65\x05\x55\x72\x69\x6e\x67\x0d\x55\x68\x75\x6e\ \x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\x6e\x69\x30\x31\x44\ \x33\x07\x75\x6e\x69\x30\x31\x44\x35\x07\x75\x6e\x69\x30\x31\x44\ \x37\x07\x75\x6e\x69\x30\x31\x44\x39\x07\x75\x6e\x69\x30\x31\x44\ \x42\x07\x75\x6e\x69\x31\x45\x45\x34\x07\x75\x6e\x69\x31\x45\x45\ \x36\x07\x55\x6f\x67\x6f\x6e\x65\x6b\x05\x55\x68\x6f\x72\x6e\x07\ \x75\x6e\x69\x31\x45\x45\x38\x07\x75\x6e\x69\x31\x45\x45\x41\x07\ \x75\x6e\x69\x31\x45\x45\x43\x07\x75\x6e\x69\x31\x45\x45\x45\x07\ \x75\x6e\x69\x31\x45\x46\x30\x06\x57\x67\x72\x61\x76\x65\x06\x57\ \x61\x63\x75\x74\x65\x0b\x57\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\ \x78\x09\x57\x64\x69\x65\x72\x65\x73\x69\x73\x06\x59\x67\x72\x61\ \x76\x65\x0b\x59\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x07\x75\ \x6e\x69\x31\x45\x38\x45\x07\x75\x6e\x69\x31\x45\x46\x34\x07\x75\ \x6e\x69\x31\x45\x46\x36\x07\x75\x6e\x69\x31\x45\x46\x38\x06\x5a\ \x61\x63\x75\x74\x65\x0a\x5a\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\ \x07\x75\x6e\x69\x31\x45\x39\x32\x07\x75\x6e\x69\x30\x31\x38\x46\ \x07\x61\x6d\x61\x63\x72\x6f\x6e\x06\x61\x62\x72\x65\x76\x65\x07\ \x75\x6e\x69\x30\x31\x43\x45\x07\x75\x6e\x69\x31\x45\x41\x31\x07\ \x75\x6e\x69\x31\x45\x41\x33\x07\x75\x6e\x69\x31\x45\x41\x35\x07\ \x75\x6e\x69\x31\x45\x41\x37\x07\x75\x6e\x69\x31\x45\x41\x39\x07\ \x75\x6e\x69\x31\x45\x41\x42\x07\x75\x6e\x69\x31\x45\x41\x44\x07\ \x75\x6e\x69\x31\x45\x41\x46\x07\x75\x6e\x69\x31\x45\x42\x31\x07\ \x75\x6e\x69\x31\x45\x42\x33\x07\x75\x6e\x69\x31\x45\x42\x35\x07\ \x75\x6e\x69\x31\x45\x42\x37\x07\x61\x6f\x67\x6f\x6e\x65\x6b\x07\ \x75\x6e\x69\x30\x31\x38\x30\x0b\x63\x63\x69\x72\x63\x75\x6d\x66\ \x6c\x65\x78\x0a\x63\x64\x6f\x74\x61\x63\x63\x65\x6e\x74\x06\x64\ \x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x30\x44\x07\x75\x6e\ \x69\x31\x45\x30\x46\x06\x65\x63\x61\x72\x6f\x6e\x07\x65\x6d\x61\ \x63\x72\x6f\x6e\x06\x65\x62\x72\x65\x76\x65\x0a\x65\x64\x6f\x74\ \x61\x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x42\x39\x07\x75\ \x6e\x69\x31\x45\x42\x42\x07\x75\x6e\x69\x31\x45\x42\x44\x07\x75\ \x6e\x69\x31\x45\x42\x46\x07\x75\x6e\x69\x31\x45\x43\x31\x07\x75\ \x6e\x69\x31\x45\x43\x33\x07\x75\x6e\x69\x31\x45\x43\x35\x07\x75\ \x6e\x69\x31\x45\x43\x37\x07\x65\x6f\x67\x6f\x6e\x65\x6b\x0b\x67\ \x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x0a\x67\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x30\x31\x32\x33\x06\x67\x63\ \x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\x32\x31\x0b\x75\x6e\x69\ \x30\x30\x36\x37\x30\x33\x30\x33\x0b\x68\x63\x69\x72\x63\x75\x6d\ \x66\x6c\x65\x78\x07\x75\x6e\x69\x31\x45\x32\x35\x07\x75\x6e\x69\ \x31\x45\x32\x42\x04\x68\x62\x61\x72\x06\x69\x74\x69\x6c\x64\x65\ \x07\x69\x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x32\x44\ \x07\x75\x6e\x69\x30\x31\x44\x30\x07\x75\x6e\x69\x31\x45\x43\x39\ \x07\x75\x6e\x69\x31\x45\x43\x42\x07\x69\x6f\x67\x6f\x6e\x65\x6b\ \x09\x69\x6f\x67\x6f\x6e\x65\x6b\x2e\x64\x0b\x6a\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x33\x37\x0c\x6b\ \x67\x72\x65\x65\x6e\x6c\x61\x6e\x64\x69\x63\x06\x6c\x61\x63\x75\ \x74\x65\x06\x6c\x63\x61\x72\x6f\x6e\x04\x6c\x64\x6f\x74\x07\x75\ \x6e\x69\x30\x31\x33\x43\x07\x75\x6e\x69\x31\x45\x33\x37\x07\x75\ \x6e\x69\x31\x45\x33\x39\x07\x75\x6e\x69\x31\x45\x33\x42\x07\x75\ \x6e\x69\x31\x45\x34\x33\x06\x6e\x61\x63\x75\x74\x65\x06\x6e\x63\ \x61\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x36\x07\x75\x6e\x69\ \x31\x45\x34\x35\x07\x75\x6e\x69\x31\x45\x34\x37\x07\x75\x6e\x69\ \x31\x45\x34\x39\x0b\x6e\x61\x70\x6f\x73\x74\x72\x6f\x70\x68\x65\ \x07\x6f\x6d\x61\x63\x72\x6f\x6e\x07\x75\x6e\x69\x30\x31\x34\x46\ \x0d\x6f\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\ \x6e\x69\x30\x31\x44\x32\x07\x75\x6e\x69\x31\x45\x43\x44\x07\x75\ \x6e\x69\x31\x45\x43\x46\x07\x75\x6e\x69\x31\x45\x44\x31\x07\x75\ \x6e\x69\x31\x45\x44\x33\x07\x75\x6e\x69\x31\x45\x44\x35\x07\x75\ \x6e\x69\x31\x45\x44\x37\x07\x75\x6e\x69\x31\x45\x44\x39\x05\x6f\ \x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\x45\x44\x42\x07\x75\x6e\x69\ \x31\x45\x44\x44\x07\x75\x6e\x69\x31\x45\x44\x46\x07\x75\x6e\x69\ \x31\x45\x45\x31\x07\x75\x6e\x69\x31\x45\x45\x33\x07\x75\x6e\x69\ \x30\x31\x45\x42\x06\x72\x61\x63\x75\x74\x65\x07\x75\x6e\x69\x30\ \x31\x35\x37\x06\x72\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\x31\x45\ \x35\x42\x07\x75\x6e\x69\x31\x45\x35\x44\x07\x75\x6e\x69\x31\x45\ \x35\x46\x06\x73\x61\x63\x75\x74\x65\x0b\x73\x63\x69\x72\x63\x75\ \x6d\x66\x6c\x65\x78\x07\x75\x6e\x69\x30\x31\x35\x46\x07\x75\x6e\ \x69\x30\x32\x31\x39\x07\x75\x6e\x69\x31\x45\x36\x31\x07\x75\x6e\ \x69\x31\x45\x36\x33\x06\x74\x63\x61\x72\x6f\x6e\x07\x75\x6e\x69\ \x30\x31\x36\x33\x07\x75\x6e\x69\x30\x32\x31\x42\x07\x75\x6e\x69\ \x31\x45\x36\x44\x07\x75\x6e\x69\x31\x45\x36\x46\x07\x75\x6e\x69\ \x31\x45\x39\x37\x06\x75\x74\x69\x6c\x64\x65\x07\x75\x6d\x61\x63\ \x72\x6f\x6e\x06\x75\x62\x72\x65\x76\x65\x05\x75\x72\x69\x6e\x67\ \x0d\x75\x68\x75\x6e\x67\x61\x72\x75\x6d\x6c\x61\x75\x74\x07\x75\ \x6e\x69\x30\x31\x44\x34\x07\x75\x6e\x69\x30\x31\x44\x36\x07\x75\ \x6e\x69\x30\x31\x44\x38\x07\x75\x6e\x69\x30\x31\x44\x41\x07\x75\ \x6e\x69\x30\x31\x44\x43\x07\x75\x6e\x69\x31\x45\x45\x35\x07\x75\ \x6e\x69\x31\x45\x45\x37\x07\x75\x6f\x67\x6f\x6e\x65\x6b\x05\x75\ \x68\x6f\x72\x6e\x07\x75\x6e\x69\x31\x45\x45\x39\x07\x75\x6e\x69\ \x31\x45\x45\x42\x07\x75\x6e\x69\x31\x45\x45\x44\x07\x75\x6e\x69\ \x31\x45\x45\x46\x07\x75\x6e\x69\x31\x45\x46\x31\x06\x77\x67\x72\ \x61\x76\x65\x06\x77\x61\x63\x75\x74\x65\x0b\x77\x63\x69\x72\x63\ \x75\x6d\x66\x6c\x65\x78\x09\x77\x64\x69\x65\x72\x65\x73\x69\x73\ \x06\x79\x67\x72\x61\x76\x65\x0b\x79\x63\x69\x72\x63\x75\x6d\x66\ \x6c\x65\x78\x07\x75\x6e\x69\x31\x45\x38\x46\x07\x75\x6e\x69\x31\ \x45\x46\x35\x07\x75\x6e\x69\x31\x45\x46\x37\x07\x75\x6e\x69\x31\ \x45\x46\x39\x06\x7a\x61\x63\x75\x74\x65\x0a\x7a\x64\x6f\x74\x61\ \x63\x63\x65\x6e\x74\x07\x75\x6e\x69\x31\x45\x39\x33\x07\x75\x6e\ \x69\x30\x32\x33\x37\x07\x75\x6e\x69\x30\x32\x35\x30\x07\x75\x6e\ \x69\x30\x32\x35\x31\x07\x75\x6e\x69\x30\x32\x35\x32\x07\x75\x6e\ \x69\x30\x32\x35\x34\x07\x75\x6e\x69\x30\x32\x35\x38\x07\x75\x6e\ \x69\x30\x32\x35\x39\x07\x75\x6e\x69\x30\x32\x36\x31\x07\x75\x6e\ \x69\x30\x32\x36\x35\x07\x75\x6e\x69\x30\x32\x36\x46\x07\x75\x6e\ \x69\x30\x32\x37\x39\x07\x75\x6e\x69\x30\x32\x38\x37\x07\x75\x6e\ \x69\x30\x32\x38\x43\x07\x75\x6e\x69\x30\x32\x38\x44\x07\x75\x6e\ \x69\x30\x32\x38\x45\x07\x75\x6e\x69\x30\x32\x39\x45\x03\x61\x2e\ \x61\x08\x61\x67\x72\x61\x76\x65\x2e\x61\x08\x61\x61\x63\x75\x74\ \x65\x2e\x61\x0d\x61\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\ \x61\x08\x61\x74\x69\x6c\x64\x65\x2e\x61\x0b\x61\x64\x69\x65\x72\ \x65\x73\x69\x73\x2e\x61\x09\x61\x6d\x61\x63\x72\x6f\x6e\x2e\x61\ \x08\x61\x62\x72\x65\x76\x65\x2e\x61\x07\x61\x72\x69\x6e\x67\x2e\ \x61\x09\x75\x6e\x69\x30\x31\x43\x45\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x41\x31\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x33\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x41\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\ \x37\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x39\x2e\x61\x09\x75\x6e\ \x69\x31\x45\x41\x42\x2e\x61\x09\x75\x6e\x69\x31\x45\x41\x44\x2e\ \x61\x09\x75\x6e\x69\x31\x45\x41\x46\x2e\x61\x09\x75\x6e\x69\x31\ \x45\x42\x31\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\x33\x2e\x61\x09\ \x75\x6e\x69\x31\x45\x42\x35\x2e\x61\x09\x75\x6e\x69\x31\x45\x42\ \x37\x2e\x61\x09\x61\x6f\x67\x6f\x6e\x65\x6b\x2e\x61\x03\x67\x2e\ \x61\x0d\x67\x63\x69\x72\x63\x75\x6d\x66\x6c\x65\x78\x2e\x61\x08\ \x67\x62\x72\x65\x76\x65\x2e\x61\x0c\x67\x64\x6f\x74\x61\x63\x63\ \x65\x6e\x74\x2e\x61\x09\x75\x6e\x69\x30\x31\x32\x33\x2e\x61\x08\ \x67\x63\x61\x72\x6f\x6e\x2e\x61\x09\x75\x6e\x69\x31\x45\x32\x31\ \x2e\x61\x0d\x75\x6e\x69\x30\x30\x36\x37\x30\x33\x30\x33\x2e\x61\ \x09\x7a\x65\x72\x6f\x2e\x6f\x6e\x75\x6d\x08\x6f\x6e\x65\x2e\x6f\ \x6e\x75\x6d\x08\x74\x77\x6f\x2e\x6f\x6e\x75\x6d\x0a\x74\x68\x72\ \x65\x65\x2e\x6f\x6e\x75\x6d\x09\x66\x6f\x75\x72\x2e\x6f\x6e\x75\ \x6d\x09\x66\x69\x76\x65\x2e\x6f\x6e\x75\x6d\x08\x73\x69\x78\x2e\ \x6f\x6e\x75\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x6f\x6e\x75\x6d\x0a\ \x65\x69\x67\x68\x74\x2e\x6f\x6e\x75\x6d\x09\x6e\x69\x6e\x65\x2e\ \x6f\x6e\x75\x6d\x07\x75\x6e\x69\x30\x30\x41\x44\x0a\x66\x69\x67\ \x75\x72\x65\x64\x61\x73\x68\x07\x75\x6e\x69\x32\x30\x31\x35\x07\ \x75\x6e\x69\x32\x31\x31\x37\x07\x75\x6e\x69\x32\x31\x32\x30\x07\ \x61\x74\x2e\x63\x61\x73\x65\x0a\x61\x73\x74\x65\x72\x69\x73\x6b\ \x2e\x61\x08\x68\x79\x70\x68\x65\x6e\x2e\x61\x09\x75\x6e\x69\x30\ \x30\x41\x44\x2e\x61\x08\x64\x6f\x6c\x6c\x61\x72\x2e\x61\x09\x7a\ \x65\x72\x6f\x2e\x73\x75\x70\x73\x08\x6f\x6e\x65\x2e\x73\x75\x70\ \x73\x08\x74\x77\x6f\x2e\x73\x75\x70\x73\x0a\x74\x68\x72\x65\x65\ \x2e\x73\x75\x70\x73\x09\x66\x6f\x75\x72\x2e\x73\x75\x70\x73\x09\ \x66\x69\x76\x65\x2e\x73\x75\x70\x73\x08\x73\x69\x78\x2e\x73\x75\ \x70\x73\x0a\x73\x65\x76\x65\x6e\x2e\x73\x75\x70\x73\x0a\x65\x69\ \x67\x68\x74\x2e\x73\x75\x70\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\ \x70\x73\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x70\ \x73\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x70\ \x73\x0b\x70\x65\x72\x69\x6f\x64\x2e\x73\x75\x70\x73\x0a\x63\x6f\ \x6d\x6d\x61\x2e\x73\x75\x70\x73\x09\x7a\x65\x72\x6f\x2e\x73\x75\ \x62\x73\x08\x6f\x6e\x65\x2e\x73\x75\x62\x73\x08\x74\x77\x6f\x2e\ \x73\x75\x62\x73\x0a\x74\x68\x72\x65\x65\x2e\x73\x75\x62\x73\x09\ \x66\x6f\x75\x72\x2e\x73\x75\x62\x73\x09\x66\x69\x76\x65\x2e\x73\ \x75\x62\x73\x08\x73\x69\x78\x2e\x73\x75\x62\x73\x0a\x73\x65\x76\ \x65\x6e\x2e\x73\x75\x62\x73\x0a\x65\x69\x67\x68\x74\x2e\x73\x75\ \x62\x73\x09\x6e\x69\x6e\x65\x2e\x73\x75\x62\x73\x0e\x70\x61\x72\ \x65\x6e\x6c\x65\x66\x74\x2e\x73\x75\x62\x73\x0f\x70\x61\x72\x65\ \x6e\x72\x69\x67\x68\x74\x2e\x73\x75\x62\x73\x0b\x70\x65\x72\x69\ \x6f\x64\x2e\x73\x75\x62\x73\x0a\x63\x6f\x6d\x6d\x61\x2e\x73\x75\ \x62\x73\x09\x7a\x65\x72\x6f\x2e\x64\x6e\x6f\x6d\x08\x6f\x6e\x65\ \x2e\x64\x6e\x6f\x6d\x08\x74\x77\x6f\x2e\x64\x6e\x6f\x6d\x0a\x74\ \x68\x72\x65\x65\x2e\x64\x6e\x6f\x6d\x09\x66\x6f\x75\x72\x2e\x64\ \x6e\x6f\x6d\x09\x66\x69\x76\x65\x2e\x64\x6e\x6f\x6d\x08\x73\x69\ \x78\x2e\x64\x6e\x6f\x6d\x0a\x73\x65\x76\x65\x6e\x2e\x64\x6e\x6f\ \x6d\x0a\x65\x69\x67\x68\x74\x2e\x64\x6e\x6f\x6d\x09\x6e\x69\x6e\ \x65\x2e\x64\x6e\x6f\x6d\x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\ \x2e\x64\x6e\x6f\x6d\x0f\x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\ \x2e\x64\x6e\x6f\x6d\x0b\x70\x65\x72\x69\x6f\x64\x2e\x64\x6e\x6f\ \x6d\x0a\x63\x6f\x6d\x6d\x61\x2e\x64\x6e\x6f\x6d\x09\x7a\x65\x72\ \x6f\x2e\x6e\x75\x6d\x72\x08\x6f\x6e\x65\x2e\x6e\x75\x6d\x72\x08\ \x74\x77\x6f\x2e\x6e\x75\x6d\x72\x0a\x74\x68\x72\x65\x65\x2e\x6e\ \x75\x6d\x72\x09\x66\x6f\x75\x72\x2e\x6e\x75\x6d\x72\x09\x66\x69\ \x76\x65\x2e\x6e\x75\x6d\x72\x08\x73\x69\x78\x2e\x6e\x75\x6d\x72\ \x0a\x73\x65\x76\x65\x6e\x2e\x6e\x75\x6d\x72\x0a\x65\x69\x67\x68\ \x74\x2e\x6e\x75\x6d\x72\x09\x6e\x69\x6e\x65\x2e\x6e\x75\x6d\x72\ \x0e\x70\x61\x72\x65\x6e\x6c\x65\x66\x74\x2e\x6e\x75\x6d\x72\x0f\ \x70\x61\x72\x65\x6e\x72\x69\x67\x68\x74\x2e\x6e\x75\x6d\x72\x0b\ \x70\x65\x72\x69\x6f\x64\x2e\x6e\x75\x6d\x72\x0a\x63\x6f\x6d\x6d\ \x61\x2e\x6e\x75\x6d\x72\x0d\x6f\x72\x64\x66\x65\x6d\x69\x6e\x69\ \x6e\x65\x2e\x61\x06\x61\x2e\x73\x75\x70\x73\x06\x62\x2e\x73\x75\ \x70\x73\x06\x63\x2e\x73\x75\x70\x73\x06\x64\x2e\x73\x75\x70\x73\ \x06\x65\x2e\x73\x75\x70\x73\x06\x66\x2e\x73\x75\x70\x73\x06\x67\ \x2e\x73\x75\x70\x73\x06\x68\x2e\x73\x75\x70\x73\x06\x69\x2e\x73\ \x75\x70\x73\x06\x6a\x2e\x73\x75\x70\x73\x06\x6b\x2e\x73\x75\x70\ \x73\x06\x6c\x2e\x73\x75\x70\x73\x06\x6d\x2e\x73\x75\x70\x73\x06\ \x6e\x2e\x73\x75\x70\x73\x06\x6f\x2e\x73\x75\x70\x73\x06\x70\x2e\ \x73\x75\x70\x73\x06\x71\x2e\x73\x75\x70\x73\x06\x72\x2e\x73\x75\ \x70\x73\x06\x73\x2e\x73\x75\x70\x73\x06\x74\x2e\x73\x75\x70\x73\ \x06\x75\x2e\x73\x75\x70\x73\x06\x76\x2e\x73\x75\x70\x73\x06\x77\ \x2e\x73\x75\x70\x73\x06\x78\x2e\x73\x75\x70\x73\x06\x79\x2e\x73\ \x75\x70\x73\x06\x7a\x2e\x73\x75\x70\x73\x0b\x65\x67\x72\x61\x76\ \x65\x2e\x73\x75\x70\x73\x0b\x65\x61\x63\x75\x74\x65\x2e\x73\x75\ \x70\x73\x0c\x75\x6e\x69\x30\x32\x35\x39\x2e\x73\x75\x70\x73\x06\ \x61\x2e\x73\x75\x70\x61\x06\x67\x2e\x73\x75\x70\x61\x04\x45\x75\ \x72\x6f\x07\x75\x6e\x69\x30\x31\x39\x32\x0d\x63\x6f\x6c\x6f\x6e\ \x6d\x6f\x6e\x65\x74\x61\x72\x79\x04\x6c\x69\x72\x61\x07\x75\x6e\ \x69\x32\x30\x41\x36\x06\x70\x65\x73\x65\x74\x61\x04\x64\x6f\x6e\ \x67\x07\x75\x6e\x69\x32\x30\x42\x31\x07\x75\x6e\x69\x32\x30\x42\ \x32\x07\x75\x6e\x69\x32\x30\x42\x35\x07\x75\x6e\x69\x32\x30\x42\ \x39\x07\x75\x6e\x69\x32\x30\x42\x41\x07\x75\x6e\x69\x32\x32\x31\ \x35\x0a\x73\x6c\x61\x73\x68\x2e\x66\x72\x61\x63\x08\x6f\x6e\x65\ \x74\x68\x69\x72\x64\x09\x74\x77\x6f\x74\x68\x69\x72\x64\x73\x09\ \x6f\x6e\x65\x65\x69\x67\x68\x74\x68\x0c\x74\x68\x72\x65\x65\x65\ \x69\x67\x68\x74\x68\x73\x0b\x66\x69\x76\x65\x65\x69\x67\x68\x74\ \x68\x73\x0c\x73\x65\x76\x65\x6e\x65\x69\x67\x68\x74\x68\x73\x07\ \x75\x6e\x69\x32\x32\x31\x39\x07\x75\x6e\x69\x30\x30\x42\x35\x07\ \x75\x6e\x69\x32\x32\x30\x36\x07\x75\x6e\x69\x32\x31\x32\x36\x07\ \x75\x6e\x69\x32\x31\x31\x33\x09\x65\x73\x74\x69\x6d\x61\x74\x65\ \x64\x07\x75\x6e\x69\x32\x31\x39\x30\x07\x61\x72\x72\x6f\x77\x75\ \x70\x07\x75\x6e\x69\x32\x31\x39\x32\x09\x61\x72\x72\x6f\x77\x64\ \x6f\x77\x6e\x07\x75\x6e\x69\x32\x35\x41\x30\x07\x75\x6e\x69\x32\ \x35\x43\x36\x07\x75\x6e\x69\x32\x35\x43\x39\x07\x75\x6e\x69\x32\ \x37\x35\x32\x07\x74\x72\x69\x61\x67\x75\x70\x07\x75\x6e\x69\x32\ \x35\x42\x33\x07\x75\x6e\x69\x32\x35\x42\x36\x07\x75\x6e\x69\x32\ \x35\x42\x37\x07\x74\x72\x69\x61\x67\x64\x6e\x07\x75\x6e\x69\x32\ \x35\x42\x44\x07\x75\x6e\x69\x32\x35\x43\x30\x07\x75\x6e\x69\x32\ \x35\x43\x31\x07\x75\x6e\x69\x32\x36\x31\x30\x07\x75\x6e\x69\x32\ \x36\x31\x31\x07\x75\x6e\x69\x32\x37\x31\x33\x07\x75\x6e\x69\x32\ \x36\x36\x41\x07\x75\x6e\x69\x32\x30\x33\x32\x07\x75\x6e\x69\x32\ \x30\x33\x33\x07\x75\x6e\x69\x30\x32\x42\x42\x07\x75\x6e\x69\x30\ \x32\x42\x43\x07\x75\x6e\x69\x30\x32\x42\x45\x07\x75\x6e\x69\x30\ \x32\x42\x46\x07\x75\x6e\x69\x30\x32\x43\x38\x07\x75\x6e\x69\x30\ \x32\x43\x39\x07\x75\x6e\x69\x30\x32\x43\x41\x07\x75\x6e\x69\x30\ \x32\x43\x42\x07\x75\x6e\x69\x30\x32\x43\x43\x07\x75\x6e\x69\x30\ \x33\x30\x30\x0b\x75\x6e\x69\x30\x33\x30\x30\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x31\x0b\x75\x6e\x69\x30\x33\x30\x31\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x32\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x33\x0b\ \x75\x6e\x69\x30\x33\x30\x33\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x34\x0b\x75\x6e\x69\x30\x33\x30\x34\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x36\x0b\x75\x6e\x69\x30\x33\x30\x36\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x37\x0b\x75\x6e\x69\x30\ \x33\x30\x37\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x38\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x39\x0b\x75\x6e\x69\x30\x33\x30\x39\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x30\x41\x0b\x75\x6e\x69\x30\x33\x30\x41\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x42\x0b\x75\x6e\x69\x30\ \x33\x30\x42\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x30\x43\x0b\ \x75\x6e\x69\x30\x33\x30\x43\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\ \x33\x30\x46\x0b\x75\x6e\x69\x30\x33\x30\x46\x2e\x63\x61\x70\x07\ \x75\x6e\x69\x30\x33\x31\x32\x07\x75\x6e\x69\x30\x33\x31\x33\x07\ \x75\x6e\x69\x30\x33\x31\x42\x07\x75\x6e\x69\x30\x33\x32\x33\x07\ \x75\x6e\x69\x30\x33\x32\x34\x07\x75\x6e\x69\x30\x33\x32\x36\x07\ \x75\x6e\x69\x30\x33\x32\x37\x0b\x75\x6e\x69\x30\x33\x32\x37\x2e\ \x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x38\x0b\x75\x6e\x69\x30\ \x33\x32\x38\x2e\x63\x61\x70\x07\x75\x6e\x69\x30\x33\x32\x45\x07\ \x75\x6e\x69\x30\x33\x33\x31\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x34\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x34\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x0f\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x31\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x38\x30\x33\x30\x43\x0f\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x43\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x38\x30\x33\x30\x30\x0f\x75\x6e\x69\x30\x33\x30\x38\x30\ \x33\x30\x30\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x31\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x31\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x0f\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x32\x30\x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x33\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x31\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x31\x2e\ \x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x0f\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x30\x2e\x63\x61\x70\x0b\ \x75\x6e\x69\x30\x33\x30\x36\x30\x33\x30\x39\x0f\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x39\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\ \x33\x30\x36\x30\x33\x30\x33\x0f\x75\x6e\x69\x30\x33\x30\x36\x30\ \x33\x30\x33\x2e\x63\x61\x70\x0b\x75\x6e\x69\x30\x33\x30\x32\x30\ \x33\x30\x36\x0f\x75\x6e\x69\x30\x33\x30\x32\x30\x33\x30\x36\x2e\ \x63\x61\x70\x09\x75\x6e\x69\x30\x33\x30\x43\x2e\x61\x09\x75\x6e\ \x69\x30\x33\x32\x36\x2e\x61\x07\x75\x6e\x69\x30\x30\x41\x30\x07\ \x75\x6e\x69\x32\x30\x30\x37\x0a\x73\x70\x61\x63\x65\x2e\x66\x72\ \x61\x63\x0c\x6e\x62\x73\x70\x61\x63\x65\x2e\x66\x72\x61\x63\x07\ \x75\x6e\x69\x32\x35\x30\x30\x07\x75\x6e\x69\x32\x35\x30\x31\x07\ \x75\x6e\x69\x32\x35\x30\x32\x07\x75\x6e\x69\x32\x35\x30\x33\x07\ \x75\x6e\x69\x32\x35\x30\x34\x07\x75\x6e\x69\x32\x35\x30\x35\x07\ \x75\x6e\x69\x32\x35\x30\x36\x07\x75\x6e\x69\x32\x35\x30\x37\x07\ \x75\x6e\x69\x32\x35\x30\x38\x07\x75\x6e\x69\x32\x35\x30\x39\x07\ \x75\x6e\x69\x32\x35\x30\x41\x07\x75\x6e\x69\x32\x35\x30\x42\x07\ \x75\x6e\x69\x32\x35\x30\x43\x07\x75\x6e\x69\x32\x35\x30\x44\x07\ \x75\x6e\x69\x32\x35\x30\x45\x07\x75\x6e\x69\x32\x35\x30\x46\x07\ \x75\x6e\x69\x32\x35\x31\x30\x07\x75\x6e\x69\x32\x35\x31\x31\x07\ \x75\x6e\x69\x32\x35\x31\x32\x07\x75\x6e\x69\x32\x35\x31\x33\x07\ \x75\x6e\x69\x32\x35\x31\x34\x07\x75\x6e\x69\x32\x35\x31\x35\x07\ \x75\x6e\x69\x32\x35\x31\x36\x07\x75\x6e\x69\x32\x35\x31\x37\x07\ \x75\x6e\x69\x32\x35\x31\x38\x07\x75\x6e\x69\x32\x35\x31\x39\x07\ \x75\x6e\x69\x32\x35\x31\x41\x07\x75\x6e\x69\x32\x35\x31\x42\x07\ \x75\x6e\x69\x32\x35\x31\x43\x07\x75\x6e\x69\x32\x35\x31\x44\x07\ \x75\x6e\x69\x32\x35\x31\x45\x07\x75\x6e\x69\x32\x35\x31\x46\x07\ \x75\x6e\x69\x32\x35\x32\x30\x07\x75\x6e\x69\x32\x35\x32\x31\x07\ \x75\x6e\x69\x32\x35\x32\x32\x07\x75\x6e\x69\x32\x35\x32\x33\x07\ \x75\x6e\x69\x32\x35\x32\x34\x07\x75\x6e\x69\x32\x35\x32\x35\x07\ \x75\x6e\x69\x32\x35\x32\x36\x07\x75\x6e\x69\x32\x35\x32\x37\x07\ \x75\x6e\x69\x32\x35\x32\x38\x07\x75\x6e\x69\x32\x35\x32\x39\x07\ \x75\x6e\x69\x32\x35\x32\x41\x07\x75\x6e\x69\x32\x35\x32\x42\x07\ \x75\x6e\x69\x32\x35\x32\x43\x07\x75\x6e\x69\x32\x35\x32\x44\x07\ \x75\x6e\x69\x32\x35\x32\x45\x07\x75\x6e\x69\x32\x35\x32\x46\x07\ \x75\x6e\x69\x32\x35\x33\x30\x07\x75\x6e\x69\x32\x35\x33\x31\x07\ \x75\x6e\x69\x32\x35\x33\x32\x07\x75\x6e\x69\x32\x35\x33\x33\x07\ \x75\x6e\x69\x32\x35\x33\x34\x07\x75\x6e\x69\x32\x35\x33\x35\x07\ \x75\x6e\x69\x32\x35\x33\x36\x07\x75\x6e\x69\x32\x35\x33\x37\x07\ \x75\x6e\x69\x32\x35\x33\x38\x07\x75\x6e\x69\x32\x35\x33\x39\x07\ \x75\x6e\x69\x32\x35\x33\x41\x07\x75\x6e\x69\x32\x35\x33\x42\x07\ \x75\x6e\x69\x32\x35\x33\x43\x07\x75\x6e\x69\x32\x35\x33\x44\x07\ \x75\x6e\x69\x32\x35\x33\x45\x07\x75\x6e\x69\x32\x35\x33\x46\x07\ \x75\x6e\x69\x32\x35\x34\x30\x07\x75\x6e\x69\x32\x35\x34\x31\x07\ \x75\x6e\x69\x32\x35\x34\x32\x07\x75\x6e\x69\x32\x35\x34\x33\x07\ \x75\x6e\x69\x32\x35\x34\x34\x07\x75\x6e\x69\x32\x35\x34\x35\x07\ \x75\x6e\x69\x32\x35\x34\x36\x07\x75\x6e\x69\x32\x35\x34\x37\x07\ \x75\x6e\x69\x32\x35\x34\x38\x07\x75\x6e\x69\x32\x35\x34\x39\x07\ \x75\x6e\x69\x32\x35\x34\x41\x07\x75\x6e\x69\x32\x35\x34\x42\x07\ \x75\x6e\x69\x32\x35\x34\x43\x07\x75\x6e\x69\x32\x35\x34\x44\x07\ \x75\x6e\x69\x32\x35\x34\x45\x07\x75\x6e\x69\x32\x35\x34\x46\x07\ \x75\x6e\x69\x32\x35\x35\x30\x07\x75\x6e\x69\x32\x35\x35\x31\x07\ \x75\x6e\x69\x32\x35\x35\x32\x07\x75\x6e\x69\x32\x35\x35\x33\x07\ \x75\x6e\x69\x32\x35\x35\x34\x07\x75\x6e\x69\x32\x35\x35\x35\x07\ \x75\x6e\x69\x32\x35\x35\x36\x07\x75\x6e\x69\x32\x35\x35\x37\x07\ \x75\x6e\x69\x32\x35\x35\x38\x07\x75\x6e\x69\x32\x35\x35\x39\x07\ \x75\x6e\x69\x32\x35\x35\x41\x07\x75\x6e\x69\x32\x35\x35\x42\x07\ \x75\x6e\x69\x32\x35\x35\x43\x07\x75\x6e\x69\x32\x35\x35\x44\x07\ \x75\x6e\x69\x32\x35\x35\x45\x07\x75\x6e\x69\x32\x35\x35\x46\x07\ \x75\x6e\x69\x32\x35\x36\x30\x07\x75\x6e\x69\x32\x35\x36\x31\x07\ \x75\x6e\x69\x32\x35\x36\x32\x07\x75\x6e\x69\x32\x35\x36\x33\x07\ \x75\x6e\x69\x32\x35\x36\x34\x07\x75\x6e\x69\x32\x35\x36\x35\x07\ \x75\x6e\x69\x32\x35\x36\x36\x07\x75\x6e\x69\x32\x35\x36\x37\x07\ \x75\x6e\x69\x32\x35\x36\x38\x07\x75\x6e\x69\x32\x35\x36\x39\x07\ \x75\x6e\x69\x32\x35\x36\x41\x07\x75\x6e\x69\x32\x35\x36\x42\x07\ \x75\x6e\x69\x32\x35\x36\x43\x07\x75\x6e\x69\x32\x35\x36\x44\x07\ \x75\x6e\x69\x32\x35\x36\x45\x07\x75\x6e\x69\x32\x35\x36\x46\x07\ \x75\x6e\x69\x32\x35\x37\x30\x07\x75\x6e\x69\x32\x35\x37\x31\x07\ \x75\x6e\x69\x32\x35\x37\x32\x07\x75\x6e\x69\x32\x35\x37\x33\x07\ \x75\x6e\x69\x32\x35\x37\x34\x07\x75\x6e\x69\x32\x35\x37\x35\x07\ \x75\x6e\x69\x32\x35\x37\x36\x07\x75\x6e\x69\x32\x35\x37\x37\x07\ \x75\x6e\x69\x32\x35\x37\x38\x07\x75\x6e\x69\x32\x35\x37\x39\x07\ \x75\x6e\x69\x32\x35\x37\x41\x07\x75\x6e\x69\x32\x35\x37\x42\x07\ \x75\x6e\x69\x32\x35\x37\x43\x07\x75\x6e\x69\x32\x35\x37\x44\x07\ \x75\x6e\x69\x32\x35\x37\x45\x07\x75\x6e\x69\x32\x35\x37\x46\x07\ \x75\x6e\x69\x32\x35\x38\x30\x07\x75\x6e\x69\x32\x35\x38\x31\x07\ \x75\x6e\x69\x32\x35\x38\x32\x07\x75\x6e\x69\x32\x35\x38\x33\x07\ \x75\x6e\x69\x32\x35\x38\x34\x07\x75\x6e\x69\x32\x35\x38\x35\x07\ \x75\x6e\x69\x32\x35\x38\x36\x07\x75\x6e\x69\x32\x35\x38\x37\x07\ \x75\x6e\x69\x32\x35\x38\x38\x07\x75\x6e\x69\x32\x35\x38\x39\x07\ \x75\x6e\x69\x32\x35\x38\x41\x07\x75\x6e\x69\x32\x35\x38\x42\x07\ \x75\x6e\x69\x32\x35\x38\x43\x07\x75\x6e\x69\x32\x35\x38\x44\x07\ \x75\x6e\x69\x32\x35\x38\x45\x07\x75\x6e\x69\x32\x35\x38\x46\x07\ \x75\x6e\x69\x32\x35\x39\x30\x07\x75\x6e\x69\x32\x35\x39\x31\x07\ \x75\x6e\x69\x32\x35\x39\x32\x07\x75\x6e\x69\x32\x35\x39\x33\x07\ \x75\x6e\x69\x32\x35\x39\x34\x07\x75\x6e\x69\x32\x35\x39\x35\x07\ \x75\x6e\x69\x32\x35\x39\x36\x07\x75\x6e\x69\x32\x35\x39\x37\x07\ \x75\x6e\x69\x32\x35\x39\x38\x07\x75\x6e\x69\x32\x35\x39\x39\x07\ \x75\x6e\x69\x32\x35\x39\x41\x07\x75\x6e\x69\x32\x35\x39\x42\x07\ \x75\x6e\x69\x32\x35\x39\x43\x07\x75\x6e\x69\x32\x35\x39\x44\x07\ \x75\x6e\x69\x32\x35\x39\x45\x07\x75\x6e\x69\x32\x35\x39\x46\x00\ \x00\x00\x01\xff\xff\x00\x02\x00\x01\x00\x00\x00\x0c\x00\x00\x00\ \x00\x00\xbe\x00\x02\x00\x1d\x00\x04\x00\x37\x00\x01\x00\x4d\x00\ \x4e\x00\x01\x00\x69\x00\x69\x00\x01\x00\x70\x00\x70\x00\x02\x00\ \x80\x00\x80\x00\x01\x00\xa3\x00\xa5\x00\x01\x00\xab\x00\xab\x00\ \x01\x00\xcf\x00\xd0\x00\x01\x00\xe8\x00\xe8\x00\x01\x00\xfe\x00\ \xfe\x00\x01\x01\x06\x01\x06\x00\x02\x01\x1a\x01\x1a\x00\x01\x01\ \x1e\x01\x1e\x00\x02\x01\x21\x01\x21\x00\x02\x01\x30\x01\x30\x00\ \x02\x01\x31\x01\x32\x00\x01\x01\x37\x01\x37\x00\x02\x01\x57\x01\ \x59\x00\x01\x01\x5f\x01\x5f\x00\x01\x01\x6e\x01\x6e\x00\x02\x01\ \x84\x01\x85\x00\x01\x01\x9c\x01\xac\x00\x01\x01\xaf\x01\xaf\x00\ \x01\x01\xc5\x01\xc6\x00\x01\x01\xca\x01\xca\x00\x02\x02\xcf\x02\ \xcf\x00\x01\x02\xd9\x02\xd9\x00\x01\x02\xdf\x03\x1e\x00\x03\x03\ \x20\x03\x20\x00\x03\x00\x02\x00\x03\x02\xdf\x02\xfa\x00\x01\x03\ \x05\x03\x1e\x00\x01\x03\x20\x03\x20\x00\x01\x00\x01\x00\x00\x00\ \x0a\x00\x38\x00\x92\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x1e\x00\x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x00\x00\ \x02\x00\x04\x00\x04\x00\x00\x00\x00\xff\xff\x00\x03\x00\x01\x00\ \x03\x00\x05\x00\x06\x6d\x61\x72\x6b\x00\x26\x6d\x61\x72\x6b\x00\ \x36\x6d\x6b\x6d\x6b\x00\x46\x6d\x6b\x6d\x6b\x00\x4c\x73\x69\x7a\ \x65\x00\x52\x73\x69\x7a\x65\x00\x56\x00\x00\x00\x06\x00\x00\x00\ \x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x00\x00\x06\x00\x00\x00\ \x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x00\x00\x01\x00\x06\x00\ \x00\x00\x01\x00\x06\x00\x52\x00\x00\x00\x4e\x00\x00\x00\x07\x00\ \x10\x00\x1a\x00\x22\x00\x2a\x00\x32\x00\x3a\x00\x42\x00\x01\x00\ \x00\x00\x02\x00\x44\x00\x4e\x00\x04\x00\x00\x00\x01\x00\x4c\x00\ \x04\x00\x00\x00\x01\x03\x1a\x00\x04\x00\x00\x00\x01\x03\x5a\x00\ \x04\x00\x00\x00\x01\x05\x0e\x00\x04\x00\x00\x00\x01\x05\x38\x00\ \x06\x01\x00\x00\x01\x05\xa2\x00\x64\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x01\x06\x9a\x00\x05\xfe\xd4\xfd\xa8\x00\x01\x06\x9a\x00\ \x04\xfd\xa8\x00\x01\x06\x9c\x06\xb2\x00\x01\x00\x0c\x00\xea\x00\ \x37\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \x9e\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x00\x01\ \xa4\x00\x00\x01\x9e\x00\x00\x01\xa4\x00\x00\x01\x9e\x00\x5f\x00\ \xc6\x00\xcc\x00\xd2\x00\xd8\x00\xde\x00\xe4\x00\xde\x00\xd8\x00\ \xc6\x00\xea\x00\xea\x00\xf0\x00\xc6\x00\xf6\x00\xc6\x00\xfc\x01\ \x02\x01\x08\x01\x0e\x00\xd8\x00\xd8\x00\xd8\x00\xc6\x01\x14\x00\ \xc6\x00\xfc\x01\x1a\x01\x20\x01\x26\x01\x2c\x01\x32\x01\x38\x01\ \x3e\x01\x44\x01\x4a\x01\x4a\x01\x50\x01\x56\x01\x5c\x01\x62\x00\ \xc0\x01\x1a\x01\x68\x01\x6e\x01\x74\x01\x7a\x01\x80\x01\x68\x00\ \xc0\x00\xc0\x01\x86\x01\x8c\x00\xc6\x01\x92\x00\xde\x00\xc6\x01\ \x14\x01\x98\x00\xd8\x00\xc6\x00\xd8\x00\xc6\x01\x9e\x01\x1a\x01\ \x32\x01\xa4\x01\xa4\x00\xc0\x01\xaa\x00\xc0\x00\xc0\x01\x80\x01\ \x80\x01\x20\x01\xa4\x01\xb0\x01\x3e\x01\x32\x01\xb6\x01\xbc\x00\ \xc0\x01\xc2\x01\xc8\x01\x80\x01\xce\x01\xd4\x01\x68\x00\xc0\x01\ \x74\x01\xda\x01\x3e\x01\x3e\x01\x3e\x01\xe0\x01\xe6\x00\x01\x01\ \x2c\x01\xfc\x00\x01\x01\x2c\x02\xa6\x00\x01\x01\x23\x02\xa6\x00\ \x01\x01\x5b\x02\xa6\x00\x01\x01\x2b\x02\xa6\x00\x01\x01\x4b\x02\ \xa6\x00\x01\x01\x53\x02\xa6\x00\x01\x01\x41\x02\xa6\x00\x01\x00\ \xbe\x02\xa6\x00\x01\x01\x32\x02\xa6\x00\x01\x01\x3b\x02\xa6\x00\ \x01\x01\x2d\x02\xae\x00\x01\x01\x31\x02\xa6\x00\x01\x01\x37\x02\ \xa6\x00\x01\x01\x2d\x02\xa6\x00\x01\x01\x3a\x01\xfc\x00\x01\x00\ \x8a\x02\xda\x00\x01\x01\x57\x01\xfc\x00\x01\x01\xc1\x02\xda\x00\ \x01\x01\x3b\x01\xfc\x00\x01\x01\xa4\x02\xe4\x00\x01\x01\x33\x01\ \xfc\x00\x01\x00\x97\x02\xda\x00\x01\x01\x5c\x02\xb6\x00\x01\x00\ \xb2\x02\xda\x00\x01\x01\x1c\x02\xda\x00\x01\x01\x3c\x01\xfc\x00\ \x01\x01\x3e\x01\xfc\x00\x01\x01\x2d\x01\xfc\x00\x01\x01\x56\x01\ \xfc\x00\x01\x01\x2f\x01\xfc\x00\x01\x01\x07\x02\x83\x00\x01\x01\ \x27\x01\xfc\x00\x01\x01\x30\x01\xfc\x00\x01\x01\x40\x01\xfc\x00\ \x01\x01\xc3\x02\xb6\x00\x01\x01\x98\x02\xa6\x00\x01\x01\x3d\x02\ \xa6\x00\x01\x01\x5c\x01\xfc\x00\x01\x01\x3f\x01\xfc\x00\x01\x01\ \x38\x01\xfc\x00\x01\x01\x1a\x01\xfc\x00\x01\x01\x20\x01\xfc\x00\ \x01\x01\x32\x01\xfc\x00\x01\x01\x25\x01\xfc\x00\x01\x01\x91\x01\ \xfc\x00\x01\x00\xeb\x01\xfc\x00\x01\x01\x17\x01\xfc\x00\x01\x01\ \x2c\x02\xcf\x00\x01\x01\x2c\x02\xc2\x00\x01\x04\x52\x04\x5a\x00\ \x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\x18\x00\x00\x00\x18\x00\ \x06\x00\x14\x00\x1a\x00\x0e\x00\x20\x00\x26\x00\x2c\x00\x01\x01\ \x2c\x00\x00\x00\x01\x01\x5b\x00\x00\x00\x01\x01\x39\x00\x00\x00\ \x01\x01\x56\x00\x00\x00\x01\x01\x3a\x00\x00\x00\x01\x01\x78\x00\ \x00\x00\x01\x04\x22\x04\x30\x00\x01\x00\x0c\x00\x22\x00\x05\x00\ \x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xae\x00\ \x00\x00\xae\x00\x4b\x00\x98\x00\x9e\x00\xa4\x00\xaa\x00\xb0\x00\ \xb6\x00\xbc\x00\xc2\x00\x98\x00\xc8\x00\xce\x00\xd4\x00\x98\x00\ \x98\x00\x98\x00\xda\x00\xe0\x00\xe6\x00\x98\x00\xc2\x00\x98\x00\ \xec\x00\xf2\x00\x98\x00\xf8\x00\xec\x00\x98\x00\xfe\x01\x04\x01\ \x0a\x01\x10\x01\x16\x01\x1c\x01\x22\x01\x28\x00\xbc\x01\x2e\x01\ \x34\x01\x3a\x00\x98\x01\x40\x01\x46\x01\x4c\x00\xe6\x01\x52\x01\ \x58\x00\xc8\x00\x98\x00\x98\x01\x5e\x01\x64\x00\xc2\x00\x98\x01\ \x58\x01\x22\x00\x98\x01\x58\x01\x04\x01\x6a\x00\x9e\x01\x04\x01\ \x6a\x00\x9e\x01\x70\x01\x76\x01\x7c\x01\x7c\x01\x82\x01\x88\x00\ \xc8\x00\x98\x01\x5e\x01\x8e\x00\x9e\x01\x94\x00\x01\x01\x2c\xff\ \xea\x00\x01\x01\x34\xff\xea\x00\x01\x01\x5b\xff\xea\x00\x01\x01\ \x22\xff\xea\x00\x01\x01\x4c\xff\xea\x00\x01\x00\xbc\xff\xea\x00\ \x01\x01\x4f\xff\xea\x00\x01\x01\x2b\xff\xea\x00\x01\x01\x2d\xff\ \xea\x00\x01\x01\x52\xff\xea\x00\x01\x01\x5a\xff\xea\x00\x01\x00\ \x95\xff\xea\x00\x01\x01\x40\xff\xea\x00\x01\x01\x36\xff\xea\x00\ \x01\x01\x2f\xff\xea\x00\x01\x01\x27\xff\xea\x00\x01\x01\x37\xff\ \xea\x00\x01\x01\x56\xff\xea\x00\x01\x01\x32\xff\xea\x00\x01\x01\ \x3b\xff\xea\x00\x01\x01\x23\xff\xea\x00\x01\x01\x29\xff\x1a\x00\ \x01\x01\x3a\xff\xea\x00\x01\x01\x5c\xff\xea\x00\x01\x00\xec\xff\ \x19\x00\x01\x01\x73\xff\xea\x00\x01\x01\x35\xff\xea\x00\x01\x01\ \x39\xff\xea\x00\x01\x00\x88\xff\x26\x00\x01\x01\xc1\xff\x26\x00\ \x01\x00\xc8\xff\xea\x00\x01\x01\x7b\xff\xea\x00\x01\x01\x41\xff\ \xea\x00\x01\x01\x0a\xff\x0e\x00\x01\x01\x3d\xff\xea\x00\x01\x01\ \x43\xff\xea\x00\x01\x01\x20\xff\xea\x00\x01\x01\xcb\xff\x26\x00\ \x01\x01\x2a\xff\xea\x00\x01\x00\x76\xff\xea\x00\x01\x01\x6d\xff\ \xea\x00\x01\x00\xfe\xff\xea\x00\x01\x01\xcc\xff\x26\x00\x01\x02\ \xc0\x02\xc6\x00\x01\x00\x0c\x00\x12\x00\x01\x00\x00\x00\x0e\x00\ \x03\x00\x0e\x00\x14\x00\x1a\x00\x01\x01\x2c\x01\xe6\x00\x01\x01\ \xa4\x02\x86\x00\x01\x01\xf7\x02\x9a\x00\x01\x01\x9d\x01\xe6\x00\ \x01\x02\x9e\x02\xa6\x00\x01\x00\x0c\x00\x16\x00\x02\x00\x00\x00\ \x24\x00\x00\x00\x24\x00\x0c\x00\x20\x00\x26\x00\x2c\x00\x1a\x00\ \x32\x00\x38\x00\x3e\x00\x44\x00\x3e\x00\x4a\x00\x50\x00\x56\x00\ \x01\x01\x2c\x00\x00\x00\x01\x01\xef\x00\x00\x00\x01\x01\xa9\x00\ \x00\x00\x01\x01\x15\x00\x00\x00\x01\x01\x2b\x00\x00\x00\x01\x01\ \x95\x00\x00\x00\x01\x01\x81\x00\x00\x00\x01\x01\x5d\x00\x00\x00\ \x01\x01\x8f\x00\x00\x00\x01\x01\x20\x00\x00\x00\x01\x01\xa2\x00\ \x00\x00\x01\x01\x1e\x02\x50\x00\x01\x00\x0c\x00\xea\x00\x37\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xe6\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x00\x00\xec\x00\ \x00\x00\xe6\x00\x00\x00\xec\x00\x00\x00\xe6\x00\x03\x00\x14\x00\ \x1a\x00\x1a\x00\x01\x01\x2c\x01\xfc\x00\x01\x01\x2c\x02\xa6\x00\ \x01\x01\x2c\x02\xdc\x00\x01\x01\x2c\x02\xb7\x00\x02\x00\x01\x02\ \x88\x02\x8a\x00\x00\x00\x02\x00\x01\x02\xdf\x03\x20\x00\x00\x00\ \x02\x00\x03\x02\xdf\x02\xfa\x00\x00\x03\x05\x03\x1e\x00\x1c\x03\ \x20\x03\x20\x00\x36\x00\x02\x00\x13\x00\x04\x00\x37\x00\x00\x00\ \x4d\x00\x4e\x00\x34\x00\x69\x00\x69\x00\x36\x00\x80\x00\x80\x00\ \x37\x00\xa3\x00\xa5\x00\x38\x00\xab\x00\xab\x00\x3b\x00\xcf\x00\ \xd0\x00\x3c\x00\xe8\x00\xe8\x00\x3e\x00\xfe\x00\xfe\x00\x3f\x01\ \x1a\x01\x1a\x00\x40\x01\x31\x01\x32\x00\x41\x01\x57\x01\x59\x00\ \x43\x01\x5f\x01\x5f\x00\x46\x01\x84\x01\x85\x00\x47\x01\x9c\x01\ \xac\x00\x49\x01\xaf\x01\xaf\x00\x5a\x01\xc5\x01\xc6\x00\x5b\x02\ \xcf\x02\xcf\x00\x5d\x02\xd9\x02\xd9\x00\x5e\x00\x01\x00\x02\x02\ \xff\x03\x00\x00\x01\x00\x06\x00\x06\x00\x16\x00\x17\x00\x20\x00\ \x30\x00\x31\x00\x01\x00\x05\x02\xfc\x02\xfd\x02\xfe\x03\x03\x03\ \x04\x00\x02\x00\x0c\x00\x04\x00\x13\x00\x00\x00\x15\x00\x37\x00\ \x10\x00\xa5\x00\xa5\x00\x33\x00\xd0\x00\xd0\x00\x34\x00\xe8\x00\ \xe8\x00\x35\x01\x32\x01\x32\x00\x36\x01\x59\x01\x59\x00\x37\x01\ \x85\x01\x85\x00\x38\x01\x9c\x01\x9c\x00\x39\x01\x9e\x01\xac\x00\ \x3a\x01\xaf\x01\xaf\x00\x49\x01\xc6\x01\xc6\x00\x4a\x00\x01\x00\ \x01\x02\xfb\x00\x01\x00\x03\x00\x12\x00\x18\x00\x2c\x00\x01\x00\ \x02\x03\x01\x03\x02\x00\x01\x00\x0c\x00\x04\x00\x08\x00\x0c\x00\ \x12\x00\x18\x00\x22\x00\x26\x00\x2c\x01\x32\x01\xa2\x01\xa3\x01\ \xaf\x00\x01\x00\x03\x02\xe3\x02\xeb\x02\xed\x00\x01\x00\x00\x00\ \x0a\x00\x6c\x02\x1a\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x38\x00\x04\x00\x00\x00\x00\xff\xff\x00\x10\x00\x00\x00\ \x02\x00\x04\x00\x06\x00\x08\x00\x0a\x00\x0c\x00\x0e\x00\x10\x00\ \x12\x00\x14\x00\x16\x00\x18\x00\x1a\x00\x1c\x00\x1e\x00\x04\x00\ \x00\x00\x00\xff\xff\x00\x10\x00\x01\x00\x03\x00\x05\x00\x07\x00\ \x09\x00\x0b\x00\x0d\x00\x0f\x00\x11\x00\x13\x00\x15\x00\x17\x00\ \x19\x00\x1b\x00\x1d\x00\x1f\x00\x20\x61\x61\x6c\x74\x00\xc2\x61\ \x61\x6c\x74\x00\xca\x63\x61\x73\x65\x00\xd2\x63\x61\x73\x65\x00\ \xd8\x63\x63\x6d\x70\x00\xde\x63\x63\x6d\x70\x00\xec\x64\x6e\x6f\ \x6d\x00\xfa\x64\x6e\x6f\x6d\x01\x00\x66\x72\x61\x63\x01\x06\x66\ \x72\x61\x63\x01\x10\x6e\x75\x6d\x72\x01\x1a\x6e\x75\x6d\x72\x01\ \x20\x6f\x6e\x75\x6d\x01\x26\x6f\x6e\x75\x6d\x01\x2c\x6f\x72\x64\ \x6e\x01\x32\x6f\x72\x64\x6e\x01\x38\x73\x61\x6c\x74\x01\x3e\x73\ \x61\x6c\x74\x01\x4a\x73\x69\x6e\x66\x01\x56\x73\x69\x6e\x66\x01\ \x5c\x73\x73\x30\x31\x01\x62\x73\x73\x30\x31\x01\x68\x73\x73\x30\ \x32\x01\x6e\x73\x73\x30\x32\x01\x74\x73\x73\x30\x33\x01\x7a\x73\ \x73\x30\x33\x01\x80\x73\x73\x30\x34\x01\x86\x73\x73\x30\x34\x01\ \x8c\x73\x75\x62\x73\x01\x92\x73\x75\x62\x73\x01\x98\x73\x75\x70\ \x73\x01\x9e\x73\x75\x70\x73\x01\xa6\x00\x00\x00\x02\x00\x00\x00\ \x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x10\x00\ \x00\x00\x01\x00\x10\x00\x00\x00\x05\x00\x03\x00\x04\x00\x05\x00\ \x06\x00\x07\x00\x00\x00\x05\x00\x03\x00\x04\x00\x05\x00\x06\x00\ \x07\x00\x00\x00\x01\x00\x09\x00\x00\x00\x01\x00\x09\x00\x00\x00\ \x03\x00\x08\x00\x0a\x00\x0b\x00\x00\x00\x03\x00\x08\x00\x0a\x00\ \x0b\x00\x00\x00\x01\x00\x08\x00\x00\x00\x01\x00\x08\x00\x00\x00\ \x01\x00\x0f\x00\x00\x00\x01\x00\x0f\x00\x00\x00\x01\x00\x0c\x00\ \x00\x00\x01\x00\x0c\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\ \x14\x00\x00\x00\x04\x00\x11\x00\x12\x00\x13\x00\x14\x00\x00\x00\ \x01\x00\x0e\x00\x00\x00\x01\x00\x0e\x04\x04\x00\x01\x00\x11\x03\ \xfe\x00\x01\x00\x11\x04\x08\x00\x01\x00\x12\x04\x02\x00\x01\x00\ \x12\x04\x38\x00\x01\x00\x13\x04\x32\x00\x01\x00\x13\x04\x48\x00\ \x01\x00\x14\x04\x42\x00\x01\x00\x14\x00\x00\x00\x01\x00\x0e\x00\ \x00\x00\x01\x00\x0e\x00\x00\x00\x02\x00\x0c\x00\x0d\x00\x00\x00\ \x02\x00\x0c\x00\x0d\x00\x17\x00\x30\x00\x38\x00\x40\x00\x48\x00\ \x50\x00\x5a\x00\x62\x00\x6a\x00\x72\x00\x7a\x00\x82\x00\x8a\x00\ \x96\x00\x9e\x00\xa6\x00\xae\x00\xb6\x00\xbe\x00\xc6\x00\xce\x00\ \xd6\x00\xde\x00\xe6\x00\x01\x00\x00\x00\x01\x03\xfa\x00\x03\x00\ \x00\x00\x01\x04\xb0\x00\x02\x00\x00\x00\x01\x00\xae\x00\x06\x00\ \x00\x00\x01\x00\xcc\x00\x06\x00\x00\x00\x02\x00\xd6\x00\xea\x00\ \x04\x00\x00\x00\x01\x00\xf2\x00\x04\x00\x00\x00\x01\x01\x64\x00\ \x06\x00\x00\x00\x01\x02\x2a\x00\x01\x00\x00\x00\x01\x02\x34\x00\ \x01\x00\x00\x00\x01\x02\x4e\x00\x01\x00\x00\x00\x01\x02\x68\x00\ \x06\x00\x00\x00\x03\x02\x66\x02\x78\x02\x8a\x00\x01\x00\x00\x00\ \x01\x02\x92\x00\x01\x00\x00\x00\x01\x02\xca\x00\x01\x00\x00\x00\ \x01\x02\xe4\x00\x01\x00\x00\x00\x01\x02\xfe\x00\x01\x00\x00\x00\ \x01\x02\xfc\x00\x01\x00\x00\x00\x01\x02\xfe\x00\x01\x00\x00\x00\ \x01\x03\x06\x00\x01\x00\x00\x00\x01\x03\x3a\x00\x01\x00\x00\x00\ \x01\x03\x4e\x00\x04\x00\x00\x00\x01\x04\xdc\x00\x01\x00\x00\x00\ \x01\x04\xe6\x00\x01\x05\x3e\x00\x04\x00\x0e\x00\x14\x00\x1a\x00\ \x20\x00\x02\x00\x08\x02\xe3\x00\x02\x00\x12\x02\xe3\x00\x02\x00\ \x22\x02\xe3\x00\x02\x00\x2c\x02\xe3\x00\x03\x00\x00\x00\x01\x05\ \x18\x00\x01\x05\x24\x00\x01\x00\x00\x00\x02\x00\x03\x00\x00\x00\ \x02\x05\x18\x05\x1e\x00\x01\x05\x24\x00\x01\x00\x00\x00\x15\x00\ \x03\x00\x00\x00\x01\x05\x16\x00\x01\x05\x10\x00\x01\x00\x00\x00\ \x16\x00\x01\x05\x0a\x00\x03\x00\x0c\x00\x36\x00\x58\x00\x05\x00\ \x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x03\x0f\x00\x02\x02\xdf\x03\ \x0d\x00\x02\x02\xe1\x03\x13\x00\x02\x02\xe5\x03\x1d\x00\x02\x02\ \xe9\x03\x11\x00\x02\x02\xef\x00\x04\x00\x0a\x00\x10\x00\x16\x00\ \x1c\x03\x17\x00\x02\x02\xdf\x03\x15\x00\x02\x02\xe1\x03\x1b\x00\ \x02\x02\xe5\x03\x19\x00\x02\x02\xef\x00\x04\x00\x0a\x00\x10\x00\ \x16\x00\x1c\x03\x0b\x00\x02\x02\xdf\x03\x07\x00\x02\x02\xe1\x03\ \x05\x00\x02\x02\xe7\x03\x09\x00\x02\x02\xf5\x00\x01\x04\x9a\x00\ \x10\x00\x26\x00\x30\x00\x3a\x00\x44\x00\x4e\x00\x58\x00\x62\x00\ \x6c\x00\x76\x00\x80\x00\x92\x00\x9c\x00\xa6\x00\xb0\x00\xba\x00\ \xc4\x00\x01\x00\x04\x00\x4d\x00\x02\x03\x01\x00\x01\x00\x04\x00\ \x69\x00\x02\x03\x01\x00\x01\x00\x04\x00\x70\x00\x02\x02\xe5\x00\ \x01\x00\x04\x00\x80\x00\x02\x03\x01\x00\x01\x00\x04\x00\xab\x00\ \x02\x03\x01\x00\x01\x00\x04\x00\xcf\x00\x02\x03\x01\x00\x01\x00\ \x04\x00\xfe\x00\x02\x03\x01\x00\x01\x00\x04\x01\x06\x00\x02\x02\ \xf5\x00\x01\x00\x04\x01\x1a\x00\x02\x03\x01\x00\x02\x00\x06\x00\ \x0c\x01\x21\x00\x02\x02\xe5\x01\x1e\x00\x02\x02\xff\x00\x01\x00\ \x04\x01\x30\x00\x02\x03\x01\x00\x01\x00\x04\x01\x37\x00\x02\x02\ \xf5\x00\x01\x00\x04\x01\x5f\x00\x02\x03\x01\x00\x01\x00\x04\x01\ \x6e\x00\x02\x02\xf5\x00\x01\x00\x04\x01\x84\x00\x02\x03\x01\x00\ \x01\x00\x04\x01\xca\x00\x02\x02\xff\x00\x03\x00\x01\x03\xf0\x00\ \x01\x04\x12\x00\x00\x00\x01\x00\x00\x00\x16\x00\x02\x04\x3c\x00\ \x0e\x02\x46\x02\x47\x02\x48\x02\x49\x02\x4a\x02\x4b\x02\x4c\x02\ \x4d\x02\x4e\x02\x4f\x02\x52\x02\x53\x02\x50\x02\x51\x00\x02\x04\ \x1a\x00\x0e\x02\x38\x02\x39\x02\x3a\x02\x3b\x02\x3c\x02\x3d\x02\ \x3e\x02\x3f\x02\x40\x02\x41\x02\x44\x02\x45\x02\x42\x02\x43\x00\ \x01\x04\x0e\x00\x83\x00\x03\x00\x01\x04\x0e\x00\x01\x04\x18\x00\ \x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x01\x04\x0e\x00\x01\x04\ \x1e\x00\x00\x00\x01\x00\x00\x00\x16\x00\x03\x00\x02\x04\x20\x04\ \x16\x00\x01\x04\x0c\x00\x00\x00\x01\x00\x00\x00\x16\x00\x02\x04\ \x14\x00\x1d\x02\x57\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5d\x02\x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\ \x65\x02\x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\ \x6d\x02\x6e\x02\x6f\x02\x70\x02\x71\x02\x72\x02\x73\x00\x02\x03\ \x7a\x00\x0e\x02\x1c\x02\x1d\x02\x1e\x02\x1f\x02\x20\x02\x21\x02\ \x22\x02\x23\x02\x24\x02\x25\x02\x28\x02\x29\x02\x26\x02\x27\x00\ \x02\x03\x58\x00\x0e\x02\x2a\x02\x2b\x02\x2c\x02\x2d\x02\x2e\x02\ \x2f\x02\x30\x02\x31\x02\x32\x02\x33\x02\x36\x02\x37\x02\x34\x02\ \x35\x00\x01\x03\xa6\x00\x0a\x00\x01\x03\xaa\x00\x01\x00\x00\x01\ \x00\x00\x02\x03\xde\x00\x03\x02\x19\x02\x1a\x02\x18\x00\x00\x01\ \x01\x00\x02\x03\xd8\x00\x19\x01\xaf\x01\xb0\x01\xb1\x01\xb2\x01\ \xb3\x01\xb4\x01\xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\ \xbb\x01\xbc\x01\xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\ \xc3\x01\xc4\x01\xc5\x02\x55\x02\x74\x00\x00\x01\x02\x00\x02\x03\ \xb8\x00\x09\x01\xc6\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\ \xcc\x01\xcd\x02\x75\x00\x00\x01\x03\x00\x01\x03\xb2\xff\xa3\x00\ \x02\x03\xb2\x00\x5c\x02\x58\x02\x59\x02\x5a\x02\x5b\x02\x5c\x02\ \x5e\x02\x5f\x02\x60\x02\x61\x02\x62\x02\x63\x02\x64\x02\x65\x02\ \x66\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\x6d\x02\ \x6e\x02\x6f\x02\x70\x01\xb0\x01\xb1\x01\xb2\x01\xb3\x01\xb4\x01\ \xb5\x01\xb6\x01\xb7\x01\xb8\x01\xb9\x01\xba\x01\xbb\x01\xbc\x01\ \xbd\x01\xbe\x01\xbf\x01\xc0\x01\xc1\x01\xc2\x01\xc3\x01\xc4\x01\ \xc5\x02\x71\x02\x72\x01\xc7\x01\xc8\x01\xc9\x01\xca\x01\xcb\x01\ \xcc\x01\xcd\x02\x73\x02\x19\x02\x1a\x02\x18\x02\x16\x02\x55\x02\ \x74\x02\x75\x02\x1b\x02\xe0\x02\xe2\x02\xe4\x02\xe6\x02\xe8\x02\ \xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\xf6\x02\xf8\x03\ \x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\x10\x03\ \x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x00\x01\x03\ \xb0\x00\x10\x00\x26\x00\x2c\x00\x32\x00\x3e\x00\x4a\x00\x56\x00\ \x62\x00\x6e\x00\x7a\x00\x86\x00\x92\x00\x9e\x00\xaa\x00\xb4\x00\ \xbe\x00\xc8\x00\x02\x02\x57\x01\xaf\x00\x02\x02\x5d\x01\xc6\x00\ \x05\x02\x46\x02\x38\x02\x1c\x02\x2a\x01\xd9\x00\x05\x02\x47\x02\ \x39\x02\x1d\x02\x2b\x01\xda\x00\x05\x02\x48\x02\x3a\x02\x1e\x02\ \x2c\x01\xdb\x00\x05\x02\x49\x02\x3b\x02\x1f\x02\x2d\x01\xdc\x00\ \x05\x02\x4a\x02\x3c\x02\x20\x02\x2e\x01\xdd\x00\x05\x02\x4b\x02\ \x3d\x02\x21\x02\x2f\x01\xde\x00\x05\x02\x4c\x02\x3e\x02\x22\x02\ \x30\x01\xdf\x00\x05\x02\x4d\x02\x3f\x02\x23\x02\x31\x01\xe0\x00\ \x05\x02\x4e\x02\x40\x02\x24\x02\x32\x01\xe1\x00\x05\x02\x4f\x02\ \x41\x02\x25\x02\x33\x01\xe2\x00\x04\x02\x52\x02\x44\x02\x28\x02\ \x36\x00\x04\x02\x53\x02\x45\x02\x29\x02\x37\x00\x04\x02\x50\x02\ \x42\x02\x26\x02\x34\x00\x04\x02\x51\x02\x43\x02\x27\x02\x35\x00\ \x01\x00\x84\x00\x01\x00\x08\x00\x01\x00\x04\x01\x31\x00\x02\x03\ \x01\x00\x02\x02\xee\x00\x2d\x03\x23\x01\x31\x02\x38\x02\x39\x02\ \x3a\x02\x3b\x02\x3c\x02\x3d\x02\x3e\x02\x3f\x02\x40\x02\x41\x02\ \x42\x02\x43\x02\x44\x02\x45\x02\xe0\x02\xe2\x02\xe4\x02\xe6\x02\ \xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\xf6\x02\ \xf8\x03\x00\x03\x02\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\ \x10\x03\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x03\ \x24\x00\x01\x00\x04\x00\x5b\x00\x95\x01\x0c\x01\x49\x00\x01\x00\ \x01\x02\xe9\x00\x01\x00\x01\x00\x26\x00\x01\x00\x01\x03\x01\x00\ \x01\x00\x01\x02\xe1\x00\x01\x00\x01\x01\x30\x00\x01\x00\x03\x02\ \xe3\x02\xe9\x02\xed\x00\x01\x00\x10\x00\x04\x00\x08\x00\x0a\x00\ \x0c\x00\x12\x00\x18\x00\x1e\x00\x21\x00\x22\x00\x24\x00\x26\x00\ \x29\x00\x2c\x00\x31\x00\x32\x01\xc6\x00\x02\x00\x05\x00\x04\x00\ \x1d\x00\x00\x00\x38\x00\x4e\x00\x1a\x00\x50\x00\x7a\x00\x31\x00\ \x7c\x00\x98\x00\x5c\x00\x9a\x00\xe8\x00\x79\x00\x01\x00\x1c\x02\ \xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\ \xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\x01\x03\x05\x03\ \x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\ \x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\x03\x01\xcf\x01\xd8\x00\ \x00\x01\xe3\x01\xe4\x00\x0a\x02\x01\x02\x02\x00\x0c\x00\x01\x00\ \x01\x02\x07\x00\x02\x00\x01\x02\x46\x02\x4f\x00\x00\x00\x01\x00\ \x02\x00\x03\x03\x21\x00\x02\x00\x02\x02\x38\x02\x45\x00\x00\x02\ \x88\x02\x8a\x00\x0e\x00\x02\x00\x01\x02\x46\x02\x53\x00\x00\x00\ \x02\x00\x01\x02\x38\x02\x41\x00\x00\x00\x01\x00\x02\x03\x23\x03\ \x24\x00\x02\x00\x03\x00\x1e\x00\x37\x00\x00\x01\x0a\x01\x0b\x00\ \x1a\x01\xa3\x01\xa3\x00\x1c\x00\x02\x00\x01\x01\xcf\x01\xd8\x00\ \x00\x00\x01\x00\x1d\x02\x15\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\ \xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\ \xf7\x02\xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\ \x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\ \x01\x00\x03\x01\xf8\x01\xf9\x02\x0b\x00\x02\x00\x04\x00\x1e\x00\ \x1e\x00\x00\x00\xe9\x00\xfe\x00\x01\x02\x54\x02\x54\x00\x17\x02\ \x57\x02\x57\x00\x18\x00\x02\x00\x03\x00\x24\x00\x24\x00\x00\x01\ \x1b\x01\x21\x00\x01\x02\x5d\x02\x5d\x00\x08\x00\x01\x00\x01\x02\ \x78\x00\x01\x00\x5c\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\ \x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\ \x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\ \x35\x00\x36\x00\x37\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\ \xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\ \xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\ \xfe\x01\x0a\x01\x0b\x01\x1b\x01\x1c\x01\x1d\x01\x1e\x01\x1f\x01\ \x20\x01\x21\x01\xa3\x01\xf8\x01\xf9\x02\x0b\x02\x15\x02\x54\x02\ \x57\x02\x5d\x02\x78\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\ \xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\ \xff\x03\x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\ \x11\x03\x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x00\x02\x00\ \x05\x00\x1e\x00\x1e\x00\x00\x00\x24\x00\x24\x00\x01\x01\xcf\x01\ \xd8\x00\x02\x01\xe3\x01\xe4\x00\x0c\x02\x01\x02\x02\x00\x0e\x00\ \x01\x00\x2d\x00\x03\x01\x30\x02\x46\x02\x47\x02\x48\x02\x49\x02\ \x4a\x02\x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\x50\x02\x51\x02\ \x52\x02\x53\x02\xdf\x02\xe1\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\ \xeb\x02\xed\x02\xef\x02\xf1\x02\xf3\x02\xf5\x02\xf7\x02\xff\x03\ \x01\x03\x05\x03\x07\x03\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\ \x13\x03\x15\x03\x17\x03\x19\x03\x1b\x03\x1d\x03\x21\x00\x00\x00\ \x01\x00\x00\x00\x08\x00\x00\x00\x04\x00\x0e\x00\x02\x69\x64\x65\ \x6f\x72\x6f\x6d\x6e\x00\x02\x44\x46\x4c\x54\x00\x0e\x6c\x61\x74\ \x6e\x00\x0e\x00\x06\x00\x00\x00\x00\x00\x01\x00\x02\x00\x08\x00\ \x0c\x00\x01\xff\x56\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\ \x01\x00\x01\x00\x00\x00\x01\x00\x00\x20\x44\x00\x00\x00\x14\x00\ \x00\x00\x00\x00\x00\x20\x3c\x30\x82\x20\x38\x06\x09\x2a\x86\x48\ \x86\xf7\x0d\x01\x07\x02\xa0\x82\x20\x29\x30\x82\x20\x25\x02\x01\ \x01\x31\x0b\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x30\x61\ \x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\xa0\x53\x30\x51\ \x30\x2c\x06\x0a\x2b\x06\x01\x04\x01\x82\x37\x02\x01\x1c\xa2\x1e\ \x80\x1c\x00\x3c\x00\x3c\x00\x3c\x00\x4f\x00\x62\x00\x73\x00\x6f\ \x00\x6c\x00\x65\x00\x74\x00\x65\x00\x3e\x00\x3e\x00\x3e\x30\x21\ \x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\x14\x64\xe6\xb7\ \xe0\x44\x1d\xd9\xab\x16\xe4\x21\xea\x29\x0a\x4b\x69\xa4\xf3\x10\ \xab\xa0\x82\x1b\x0f\x30\x82\x02\x3c\x30\x82\x01\xa5\x02\x10\x70\ \xba\xe4\x1d\x10\xd9\x29\x34\xb6\x38\xca\x7b\x03\xcc\xba\xbf\x30\ \x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\x05\x00\x30\x5f\ \x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\x30\ \x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\x6e\ \x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\x13\ \x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\ \x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\ \x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x30\ \x1e\x17\x0d\x39\x36\x30\x31\x32\x39\x30\x30\x30\x30\x30\x30\x5a\ \x17\x0d\x32\x38\x30\x38\x30\x31\x32\x33\x35\x39\x35\x39\x5a\x30\ \x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\x31\x17\ \x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\x69\x67\ \x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\x35\x06\x03\x55\x04\x0b\ \x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\ \x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\ \x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\ \x30\x81\x9f\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\ \x05\x00\x03\x81\x8d\x00\x30\x81\x89\x02\x81\x81\x00\xc9\x5c\x59\ \x9e\xf2\x1b\x8a\x01\x14\xb4\x10\xdf\x04\x40\xdb\xe3\x57\xaf\x6a\ \x45\x40\x8f\x84\x0c\x0b\xd1\x33\xd9\xd9\x11\xcf\xee\x02\x58\x1f\ \x25\xf7\x2a\xa8\x44\x05\xaa\xec\x03\x1f\x78\x7f\x9e\x93\xb9\x9a\ \x00\xaa\x23\x7d\xd6\xac\x85\xa2\x63\x45\xc7\x72\x27\xcc\xf4\x4c\ \xc6\x75\x71\xd2\x39\xef\x4f\x42\xf0\x75\xdf\x0a\x90\xc6\x8e\x20\ \x6f\x98\x0f\xf8\xac\x23\x5f\x70\x29\x36\xa4\xc9\x86\xe7\xb1\x9a\ \x20\xcb\x53\xa5\x85\xe7\x3d\xbe\x7d\x9a\xfe\x24\x45\x33\xdc\x76\ \x15\xed\x0f\xa2\x71\x64\x4c\x65\x2e\x81\x68\x45\xa7\x02\x03\x01\ \x00\x01\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x02\x05\ \x00\x03\x81\x81\x00\xbb\x4c\x12\x2b\xcf\x2c\x26\x00\x4f\x14\x13\ \xdd\xa6\xfb\xfc\x0a\x11\x84\x8c\xf3\x28\x1c\x67\x92\x2f\x7c\xb6\ \xc5\xfa\xdf\xf0\xe8\x95\xbc\x1d\x8f\x6c\x2c\xa8\x51\xcc\x73\xd8\ \xa4\xc0\x53\xf0\x4e\xd6\x26\xc0\x76\x01\x57\x81\x92\x5e\x21\xf1\ \xd1\xb1\xff\xe7\xd0\x21\x58\xcd\x69\x17\xe3\x44\x1c\x9c\x19\x44\ \x39\x89\x5c\xdc\x9c\x00\x0f\x56\x8d\x02\x99\xed\xa2\x90\x45\x4c\ \xe4\xbb\x10\xa4\x3d\xf0\x32\x03\x0e\xf1\xce\xf8\xe8\xc9\x51\x8c\ \xe6\x62\x9f\xe6\x9f\xc0\x7d\xb7\x72\x9c\xc9\x36\x3a\x6b\x9f\x4e\ \xa8\xff\x64\x0d\x64\x30\x82\x03\xee\x30\x82\x03\x57\xa0\x03\x02\ \x01\x02\x02\x10\x7e\x93\xeb\xfb\x7c\xc6\x4e\x59\xea\x4b\x9a\x77\ \xd4\x06\xfc\x3b\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x30\x81\x8b\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\ \x02\x5a\x41\x31\x15\x30\x13\x06\x03\x55\x04\x08\x13\x0c\x57\x65\ \x73\x74\x65\x72\x6e\x20\x43\x61\x70\x65\x31\x14\x30\x12\x06\x03\ \x55\x04\x07\x13\x0b\x44\x75\x72\x62\x61\x6e\x76\x69\x6c\x6c\x65\ \x31\x0f\x30\x0d\x06\x03\x55\x04\x0a\x13\x06\x54\x68\x61\x77\x74\ \x65\x31\x1d\x30\x1b\x06\x03\x55\x04\x0b\x13\x14\x54\x68\x61\x77\ \x74\x65\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ \x31\x1f\x30\x1d\x06\x03\x55\x04\x03\x13\x16\x54\x68\x61\x77\x74\ \x65\x20\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\x6e\x67\x20\x43\ \x41\x30\x1e\x17\x0d\x31\x32\x31\x32\x32\x31\x30\x30\x30\x30\x30\ \x30\x5a\x17\x0d\x32\x30\x31\x32\x33\x30\x32\x33\x35\x39\x35\x39\ \x5a\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\ \x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\x79\x6d\x61\x6e\ \x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x31\ \x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\x6d\x61\x6e\x74\ \x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\x70\x69\x6e\x67\ \x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\x20\x2d\x20\x47\ \x32\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\ \x01\x00\xb1\xac\xb3\x49\x54\x4b\x97\x1c\x12\x0a\xd8\x25\x79\x91\ \x22\x57\x2a\x6f\xdc\xb8\x26\xc4\x43\x73\x6b\xc2\xbf\x2e\x50\x5a\ \xfb\x14\xc2\x76\x8e\x43\x01\x25\x43\xb4\xa1\xe2\x45\xf4\xe8\xb7\ \x7b\xc3\x74\xcc\x22\xd7\xb4\x94\x00\x02\xf7\x4d\xed\xbf\xb4\xb7\ \x44\x24\x6b\xcd\x5f\x45\x3b\xd1\x44\xce\x43\x12\x73\x17\x82\x8b\ \x69\xb4\x2b\xcb\x99\x1e\xac\x72\x1b\x26\x4d\x71\x1f\xb1\x31\xdd\ \xfb\x51\x61\x02\x53\xa6\xaa\xf5\x49\x2c\x05\x78\x45\xa5\x2f\x89\ \xce\xe7\x99\xe7\xfe\x8c\xe2\x57\x3f\x3d\xc6\x92\xdc\x4a\xf8\x7b\ \x33\xe4\x79\x0a\xfb\xf0\x75\x88\x41\x9c\xff\xc5\x03\x51\x99\xaa\ \xd7\x6c\x9f\x93\x69\x87\x65\x29\x83\x85\xc2\x60\x14\xc4\xc8\xc9\ \x3b\x14\xda\xc0\x81\xf0\x1f\x0d\x74\xde\x92\x22\xab\xca\xf7\xfb\ \x74\x7c\x27\xe6\xf7\x4a\x1b\x7f\xa7\xc3\x9e\x2d\xae\x8a\xea\xa6\ \xe6\xaa\x27\x16\x7d\x61\xf7\x98\x71\x11\xbc\xe2\x50\xa1\x4b\xe5\ \x5d\xfa\xe5\x0e\xa7\x2c\x9f\xaa\x65\x20\xd3\xd8\x96\xe8\xc8\x7c\ \xa5\x4e\x48\x44\xff\x19\xe2\x44\x07\x92\x0b\xd7\x68\x84\x80\x5d\ \x6a\x78\x64\x45\xcd\x60\x46\x7e\x54\xc1\x13\x7c\xc5\x79\xf1\xc9\ \xc1\x71\x02\x03\x01\x00\x01\xa3\x81\xfa\x30\x81\xf7\x30\x1d\x06\ \x03\x55\x1d\x0e\x04\x16\x04\x14\x5f\x9a\xf5\x6e\x5c\xcc\xcc\x74\ \x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\x30\x32\x06\x08\ \x2b\x06\x01\x05\x05\x07\x01\x01\x04\x26\x30\x24\x30\x22\x06\x08\ \x2b\x06\x01\x05\x05\x07\x30\x01\x86\x16\x68\x74\x74\x70\x3a\x2f\ \x2f\x6f\x63\x73\x70\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\ \x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x08\x30\x06\x01\x01\ \xff\x02\x01\x00\x30\x3f\x06\x03\x55\x1d\x1f\x04\x38\x30\x36\x30\ \x34\xa0\x32\xa0\x30\x86\x2e\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\ \x6c\x2e\x74\x68\x61\x77\x74\x65\x2e\x63\x6f\x6d\x2f\x54\x68\x61\ \x77\x74\x65\x54\x69\x6d\x65\x73\x74\x61\x6d\x70\x69\x6e\x67\x43\ \x41\x2e\x63\x72\x6c\x30\x13\x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\ \x06\x08\x2b\x06\x01\x05\x05\x07\x03\x08\x30\x0e\x06\x03\x55\x1d\ \x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x28\x06\x03\x55\x1d\ \x11\x04\x21\x30\x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\ \x04\x03\x13\x10\x54\x69\x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\ \x34\x38\x2d\x31\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\ \x05\x05\x00\x03\x81\x81\x00\x03\x09\x9b\x8f\x79\xef\x7f\x59\x30\ \xaa\xef\x68\xb5\xfa\xe3\x09\x1d\xbb\x4f\x82\x06\x5d\x37\x5f\xa6\ \x52\x9f\x16\x8d\xea\x1c\x92\x09\x44\x6e\xf5\x6d\xeb\x58\x7c\x30\ \xe8\xf9\x69\x8d\x23\x73\x0b\x12\x6f\x47\xa9\xae\x39\x11\xf8\x2a\ \xb1\x9b\xb0\x1a\xc3\x8e\xeb\x59\x96\x00\xad\xce\x0c\x4d\xb2\xd0\ \x31\xa6\x08\x5c\x2a\x7a\xfc\xe2\x7a\x1d\x57\x4c\xa8\x65\x18\xe9\ \x79\x40\x62\x25\x96\x6e\xc7\xc7\x37\x6a\x83\x21\x08\x8e\x41\xea\ \xdd\xd9\x57\x3f\x1d\x77\x49\x87\x2a\x16\x06\x5e\xa6\x38\x6a\x22\ \x12\xa3\x51\x19\x83\x7e\xb6\x30\x82\x04\x90\x30\x82\x03\xf9\xa0\ \x03\x02\x01\x02\x02\x10\x1b\x09\x3b\x78\x60\x96\xda\x37\xbb\xa4\ \x51\x94\x46\xc8\x96\x78\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\ \x01\x01\x05\x05\x00\x30\x5f\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x37\x30\ \x35\x06\x03\x55\x04\x0b\x13\x2e\x43\x6c\x61\x73\x73\x20\x33\x20\ \x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\x6d\x61\x72\x79\x20\x43\ \x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x41\x75\x74\ \x68\x6f\x72\x69\x74\x79\x30\x1e\x17\x0d\x30\x36\x31\x31\x30\x38\ \x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x31\x31\x31\x30\x37\x32\ \x33\x35\x39\x35\x39\x5a\x30\x81\xca\x31\x0b\x30\x09\x06\x03\x55\ \x04\x06\x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\ \x0e\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\ \x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\ \x67\x6e\x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\ \x31\x3a\x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\x20\x32\ \x30\x30\x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\ \x63\x2e\x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\x72\x69\ \x7a\x65\x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\x30\x43\ \x06\x03\x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\x6e\x20\ \x43\x6c\x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\ \x72\x69\x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\ \x74\x69\x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x20\x2d\ \x20\x47\x35\x30\x82\x01\x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\ \x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\ \x82\x01\x01\x00\xaf\x24\x08\x08\x29\x7a\x35\x9e\x60\x0c\xaa\xe7\ \x4b\x3b\x4e\xdc\x7c\xbc\x3c\x45\x1c\xbb\x2b\xe0\xfe\x29\x02\xf9\ \x57\x08\xa3\x64\x85\x15\x27\xf5\xf1\xad\xc8\x31\x89\x5d\x22\xe8\ \x2a\xaa\xa6\x42\xb3\x8f\xf8\xb9\x55\xb7\xb1\xb7\x4b\xb3\xfe\x8f\ \x7e\x07\x57\xec\xef\x43\xdb\x66\x62\x15\x61\xcf\x60\x0d\xa4\xd8\ \xde\xf8\xe0\xc3\x62\x08\x3d\x54\x13\xeb\x49\xca\x59\x54\x85\x26\ \xe5\x2b\x8f\x1b\x9f\xeb\xf5\xa1\x91\xc2\x33\x49\xd8\x43\x63\x6a\ \x52\x4b\xd2\x8f\xe8\x70\x51\x4d\xd1\x89\x69\x7b\xc7\x70\xf6\xb3\ \xdc\x12\x74\xdb\x7b\x5d\x4b\x56\xd3\x96\xbf\x15\x77\xa1\xb0\xf4\ \xa2\x25\xf2\xaf\x1c\x92\x67\x18\xe5\xf4\x06\x04\xef\x90\xb9\xe4\ \x00\xe4\xdd\x3a\xb5\x19\xff\x02\xba\xf4\x3c\xee\xe0\x8b\xeb\x37\ \x8b\xec\xf4\xd7\xac\xf2\xf6\xf0\x3d\xaf\xdd\x75\x91\x33\x19\x1d\ \x1c\x40\xcb\x74\x24\x19\x21\x93\xd9\x14\xfe\xac\x2a\x52\xc7\x8f\ \xd5\x04\x49\xe4\x8d\x63\x47\x88\x3c\x69\x83\xcb\xfe\x47\xbd\x2b\ \x7e\x4f\xc5\x95\xae\x0e\x9d\xd4\xd1\x43\xc0\x67\x73\xe3\x14\x08\ \x7e\xe5\x3f\x9f\x73\xb8\x33\x0a\xcf\x5d\x3f\x34\x87\x96\x8a\xee\ \x53\xe8\x25\x15\x02\x03\x01\x00\x01\xa3\x82\x01\x5b\x30\x82\x01\ \x57\x30\x0f\x06\x03\x55\x1d\x13\x01\x01\xff\x04\x05\x30\x03\x01\ \x01\xff\x30\x31\x06\x03\x55\x1d\x1f\x04\x2a\x30\x28\x30\x26\xa0\ \x24\xa0\x22\x86\x20\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\ \x33\x2e\x63\x72\x6c\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\ \x04\x03\x02\x01\x06\x30\x3d\x06\x03\x55\x1d\x20\x04\x36\x30\x34\ \x30\x32\x06\x04\x55\x1d\x20\x00\x30\x2a\x30\x28\x06\x08\x2b\x06\ \x01\x05\x05\x07\x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\ \x77\x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x63\x70\x73\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x7f\ \xd3\x65\xa7\xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\xaf\ \x33\x31\x33\x30\x6d\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x0c\x04\ \x61\x30\x5f\xa1\x5d\xa0\x5b\x30\x59\x30\x57\x30\x55\x16\x09\x69\ \x6d\x61\x67\x65\x2f\x67\x69\x66\x30\x21\x30\x1f\x30\x07\x06\x05\ \x2b\x0e\x03\x02\x1a\x04\x14\x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\ \xc3\xcf\x80\x6a\xd4\x48\x18\x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\ \x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\ \x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\ \x69\x66\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x28\ \x30\x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x18\ \x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x0d\x06\x09\x2a\x86\x48\x86\ \xf7\x0d\x01\x01\x05\x05\x00\x03\x81\x81\x00\xa3\xcd\x7d\x1e\xf7\ \xc7\x75\x8d\x48\xe7\x56\x34\x4c\x00\x90\x75\xa9\x51\xa5\x56\xc1\ \x6d\xbc\xfe\xf5\x53\x22\xe9\x98\xa2\xac\x9a\x7e\x70\x1e\xb3\x8e\ \x3b\x45\xe3\x86\x95\x31\xda\x6d\x4c\xfb\x34\x50\x80\x96\xcd\x24\ \xf2\x40\xdf\x04\x3f\xe2\x65\xce\x34\x22\x61\x15\xea\x66\x70\x64\ \xd2\xf1\x6e\xf3\xca\x18\x59\x6a\x41\x46\x7e\x82\xde\x19\xb0\x70\ \x31\x56\x69\x0d\x0c\xe6\x1d\x9d\x71\x58\xdc\xcc\xde\x62\xf5\xe1\ \x7a\x10\x02\xd8\x7a\xdc\x3b\xfa\x57\xbd\xc9\xe9\x8f\x46\x21\x39\ \x9f\x51\x65\x4c\x8e\x3a\xbe\x28\x41\x70\x1d\x30\x82\x04\xa3\x30\ \x82\x03\x8b\xa0\x03\x02\x01\x02\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\ \xbf\x35\x6e\x04\xd8\x6a\x98\x1b\x1a\x50\x30\x0d\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x30\x5e\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\ \x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\ \x6f\x72\x61\x74\x69\x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\ \x13\x27\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\ \x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\ \x73\x20\x43\x41\x20\x2d\x20\x47\x32\x30\x1e\x17\x0d\x31\x32\x31\ \x30\x31\x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x32\x30\x31\x32\ \x32\x39\x32\x33\x35\x39\x35\x39\x5a\x30\x62\x31\x0b\x30\x09\x06\ \x03\x55\x04\x06\x13\x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\ \x0a\x13\x14\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\ \x6f\x72\x61\x74\x69\x6f\x6e\x31\x34\x30\x32\x06\x03\x55\x04\x03\ \x13\x2b\x53\x79\x6d\x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\ \x53\x74\x61\x6d\x70\x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\ \x73\x20\x53\x69\x67\x6e\x65\x72\x20\x2d\x20\x47\x34\x30\x82\x01\ \x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xa2\x63\ \x0b\x39\x44\xb8\xbb\x23\xa7\x44\x49\xbb\x0e\xff\xa1\xf0\x61\x0a\ \x53\x93\xb0\x98\xdb\xad\x2c\x0f\x4a\xc5\x6e\xff\x86\x3c\x53\x55\ \x0f\x15\xce\x04\x3f\x2b\xfd\xa9\x96\x96\xd9\xbe\x61\x79\x0b\x5b\ \xc9\x4c\x86\x76\xe5\xe0\x43\x4b\x22\x95\xee\xc2\x2b\x43\xc1\x9f\ \xd8\x68\xb4\x8e\x40\x4f\xee\x85\x38\xb9\x11\xc5\x23\xf2\x64\x58\ \xf0\x15\x32\x6f\x4e\x57\xa1\xae\x88\xa4\x02\xd7\x2a\x1e\xcd\x4b\ \xe1\xdd\x63\xd5\x17\x89\x32\x5b\xb0\x5e\x99\x5a\xa8\x9d\x28\x50\ \x0e\x17\xee\x96\xdb\x61\x3b\x45\x51\x1d\xcf\x12\x56\x0b\x92\x47\ \xfc\xab\xae\xf6\x66\x3d\x47\xac\x70\x72\xe7\x92\xe7\x5f\xcd\x10\ \xb9\xc4\x83\x64\x94\x19\xbd\x25\x80\xe1\xe8\xd2\x22\xa5\xd0\xba\ \x02\x7a\xa1\x77\x93\x5b\x65\xc3\xee\x17\x74\xbc\x41\x86\x2a\xdc\ \x08\x4c\x8c\x92\x8c\x91\x2d\x9e\x77\x44\x1f\x68\xd6\xa8\x74\x77\ \xdb\x0e\x5b\x32\x8b\x56\x8b\x33\xbd\xd9\x63\xc8\x49\x9d\x3a\xc5\ \xc5\xea\x33\x0b\xd2\xf1\xa3\x1b\xf4\x8b\xbe\xd9\xb3\x57\x8b\x3b\ \xde\x04\xa7\x7a\x22\xb2\x24\xae\x2e\xc7\x70\xc5\xbe\x4e\x83\x26\ \x08\xfb\x0b\xbd\xa9\x4f\x99\x08\xe1\x10\x28\x72\xaa\xcd\x02\x03\ \x01\x00\x01\xa3\x82\x01\x57\x30\x82\x01\x53\x30\x0c\x06\x03\x55\ \x1d\x13\x01\x01\xff\x04\x02\x30\x00\x30\x16\x06\x03\x55\x1d\x25\ \x01\x01\xff\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\x07\x03\ \x08\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x07\ \x80\x30\x73\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x67\x30\ \x65\x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x1e\x68\ \x74\x74\x70\x3a\x2f\x2f\x74\x73\x2d\x6f\x63\x73\x70\x2e\x77\x73\ \x2e\x73\x79\x6d\x61\x6e\x74\x65\x63\x2e\x63\x6f\x6d\x30\x37\x06\ \x08\x2b\x06\x01\x05\x05\x07\x30\x02\x86\x2b\x68\x74\x74\x70\x3a\ \x2f\x2f\x74\x73\x2d\x61\x69\x61\x2e\x77\x73\x2e\x73\x79\x6d\x61\ \x6e\x74\x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\x61\x2d\ \x67\x32\x2e\x63\x65\x72\x30\x3c\x06\x03\x55\x1d\x1f\x04\x35\x30\ \x33\x30\x31\xa0\x2f\xa0\x2d\x86\x2b\x68\x74\x74\x70\x3a\x2f\x2f\ \x74\x73\x2d\x63\x72\x6c\x2e\x77\x73\x2e\x73\x79\x6d\x61\x6e\x74\ \x65\x63\x2e\x63\x6f\x6d\x2f\x74\x73\x73\x2d\x63\x61\x2d\x67\x32\ \x2e\x63\x72\x6c\x30\x28\x06\x03\x55\x1d\x11\x04\x21\x30\x1f\xa4\ \x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\x13\x10\x54\x69\ \x6d\x65\x53\x74\x61\x6d\x70\x2d\x32\x30\x34\x38\x2d\x32\x30\x1d\ \x06\x03\x55\x1d\x0e\x04\x16\x04\x14\x46\xc6\x69\xa3\x0e\x4a\x14\ \x1e\xd5\x4c\xda\x52\x63\x17\x3f\x5e\x36\xbc\x0d\xe6\x30\x1f\x06\ \x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x5f\x9a\xf5\x6e\x5c\xcc\ \xcc\x74\x9a\xd4\xdd\x7d\xef\x3f\xdb\xec\x4c\x80\x2e\xdd\x30\x0d\ \x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x82\x01\ \x01\x00\x78\x3b\xb4\x91\x2a\x00\x4c\xf0\x8f\x62\x30\x37\x78\xa3\ \x84\x27\x07\x6f\x18\xb2\xde\x25\xdc\xa0\xd4\x94\x03\xaa\x86\x4e\ \x25\x9f\x9a\x40\x03\x1c\xdd\xce\xe3\x79\xcb\x21\x68\x06\xda\xb6\ \x32\xb4\x6d\xbf\xf4\x2c\x26\x63\x33\xe4\x49\x64\x6d\x0d\xe6\xc3\ \x67\x0e\xf7\x05\xa4\x35\x6c\x7c\x89\x16\xc6\xe9\xb2\xdf\xb2\xe9\ \xdd\x20\xc6\x71\x0f\xcd\x95\x74\xdc\xb6\x5c\xde\xbd\x37\x1f\x43\ \x78\xe6\x78\xb5\xcd\x28\x04\x20\xa3\xaa\xf1\x4b\xc4\x88\x29\x91\ \x0e\x80\xd1\x11\xfc\xdd\x5c\x76\x6e\x4f\x5e\x0e\x45\x46\x41\x6e\ \x0d\xb0\xea\x38\x9a\xb1\x3a\xda\x09\x71\x10\xfc\x1c\x79\xb4\x80\ \x7b\xac\x69\xf4\xfd\x9c\xb6\x0c\x16\x2b\xf1\x7f\x5b\x09\x3d\x9b\ \x5b\xe2\x16\xca\x13\x81\x6d\x00\x2e\x38\x0d\xa8\x29\x8f\x2c\xe1\ \xb2\xf4\x5a\xa9\x01\xaf\x15\x9c\x2c\x2f\x49\x1b\xdb\x22\xbb\xc3\ \xfe\x78\x94\x51\xc3\x86\xb1\x82\x88\x5d\xf0\x3d\xb4\x51\xa1\x79\ \x33\x2b\x2e\x7b\xb9\xdc\x20\x09\x13\x71\xeb\x6a\x19\x5b\xcf\xe8\ \xa5\x30\x57\x2c\x89\x49\x3f\xb9\xcf\x7f\xc9\xbf\x3e\x22\x68\x63\ \x53\x9a\xbd\x69\x74\xac\xc5\x1d\x3c\x7f\x92\xe0\xc3\xbc\x1c\xd8\ \x04\x75\x30\x82\x05\x90\x30\x82\x04\x78\xa0\x03\x02\x01\x02\x02\ \x10\x74\x25\x53\xad\x07\xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\ \x68\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\ \x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\x53\ \x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\x53\ \x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\x55\ \x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\x72\x75\ \x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\x06\x03\ \x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x75\x73\ \x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\ \x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\ \x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\x04\x03\ \x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\x73\x73\ \x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\x67\x20\ \x32\x30\x31\x30\x20\x43\x41\x30\x1e\x17\x0d\x31\x32\x30\x39\x31\ \x38\x30\x30\x30\x30\x30\x30\x5a\x17\x0d\x31\x33\x30\x39\x31\x38\ \x32\x33\x35\x39\x35\x39\x5a\x30\x81\xd3\x31\x0b\x30\x09\x06\x03\ \x55\x04\x06\x13\x02\x55\x53\x31\x13\x30\x11\x06\x03\x55\x04\x08\ \x13\x0a\x43\x61\x6c\x69\x66\x6f\x72\x6e\x69\x61\x31\x11\x30\x0f\ \x06\x03\x55\x04\x07\x13\x08\x53\x61\x6e\x20\x4a\x6f\x73\x65\x31\ \x23\x30\x21\x06\x03\x55\x04\x0a\x14\x1a\x41\x64\x6f\x62\x65\x20\ \x53\x79\x73\x74\x65\x6d\x73\x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\ \x61\x74\x65\x64\x31\x12\x30\x10\x06\x03\x55\x04\x0b\x14\x09\x54\ \x79\x70\x65\x20\x46\x6f\x6e\x74\x31\x3e\x30\x3c\x06\x03\x55\x04\ \x0b\x13\x35\x44\x69\x67\x69\x74\x61\x6c\x20\x49\x44\x20\x43\x6c\ \x61\x73\x73\x20\x33\x20\x2d\x20\x4d\x69\x63\x72\x6f\x73\x6f\x66\ \x74\x20\x53\x6f\x66\x74\x77\x61\x72\x65\x20\x56\x61\x6c\x69\x64\ \x61\x74\x69\x6f\x6e\x20\x76\x32\x31\x23\x30\x21\x06\x03\x55\x04\ \x03\x14\x1a\x41\x64\x6f\x62\x65\x20\x53\x79\x73\x74\x65\x6d\x73\ \x20\x49\x6e\x63\x6f\x72\x70\x6f\x72\x61\x74\x65\x64\x30\x82\x01\ \x22\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x03\x82\x01\x0f\x00\x30\x82\x01\x0a\x02\x82\x01\x01\x00\xb7\xc2\ \x11\x53\x5d\x28\xa2\x61\xd3\x04\xd4\x71\xbe\x3c\x39\x3e\x5a\xc0\ \x1e\x1c\xba\xed\xe2\x94\xc3\xc7\x38\x83\xc1\xeb\x2d\x6b\x0f\x4a\ \xb8\x8a\x27\xff\x17\x15\x05\xca\xde\xea\x4b\xa1\x77\x92\x64\x0e\ \x4f\xf6\xf2\xd3\xf6\x06\xbe\x99\x95\xb3\x63\x1a\xc6\xb2\xad\xe1\ \xa6\x0b\x70\xe7\xd6\x35\x52\xc2\x21\x8a\x96\x32\x2c\x0d\x62\x8a\ \xd6\x1f\xd7\x93\xe7\x12\x71\xf5\x0c\xd1\xae\x71\x60\x55\x74\x52\ \xd0\xae\xe2\x55\x95\x0f\xe0\x0f\x5c\xe9\x37\xa6\x08\x4b\x5c\x91\ \xff\xd4\x92\xba\x15\xe4\x62\x8c\x6a\x73\xdd\x50\xab\xa8\x56\x9e\ \x4a\x5e\x72\xbf\x13\xcd\xe9\xc0\xd3\x92\x9b\x8c\xb9\x6b\x0a\xb9\ \x27\x4f\xb8\x51\x9b\x5e\x16\x69\x1d\xd3\xee\x67\xd5\x28\xf7\xe4\ \x0c\x8f\xeb\x7c\xd8\x5a\xc8\x78\x6b\xf5\x76\xea\x32\x43\xdf\x72\ \x3f\x9a\x72\x69\x8d\x00\x54\xd2\x09\xfb\x9e\xda\xe9\xc2\xe0\xa9\ \x43\xd4\x92\x74\x4a\xb7\xc4\x01\x8f\xe3\x30\x4b\xad\xb1\x40\x58\ \x57\x60\xd6\x8f\x83\xf3\x8b\xeb\xc0\xbd\xd5\x43\x4f\x65\x11\x3f\ \x72\x15\x17\x5e\xad\xda\xff\x71\x05\xb2\x29\x9e\x9c\x0d\x78\x88\ \xe7\xed\x4b\x9c\x92\xa4\xcd\xa1\x1a\xfd\x8f\x08\x9e\xad\x02\x03\ \x01\x00\x01\xa3\x82\x01\x7b\x30\x82\x01\x77\x30\x09\x06\x03\x55\ \x1d\x13\x04\x02\x30\x00\x30\x0e\x06\x03\x55\x1d\x0f\x01\x01\xff\ \x04\x04\x03\x02\x07\x80\x30\x40\x06\x03\x55\x1d\x1f\x04\x39\x30\ \x37\x30\x35\xa0\x33\xa0\x31\x86\x2f\x68\x74\x74\x70\x3a\x2f\x2f\ \x63\x73\x63\x33\x2d\x32\x30\x31\x30\x2d\x63\x72\x6c\x2e\x76\x65\ \x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\x33\x2d\ \x32\x30\x31\x30\x2e\x63\x72\x6c\x30\x44\x06\x03\x55\x1d\x20\x04\ \x3d\x30\x3b\x30\x39\x06\x0b\x60\x86\x48\x01\x86\xf8\x45\x01\x07\ \x17\x03\x30\x2a\x30\x28\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x01\ \x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\ \x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\x70\x73\x30\x13\ \x06\x03\x55\x1d\x25\x04\x0c\x30\x0a\x06\x08\x2b\x06\x01\x05\x05\ \x07\x03\x03\x30\x71\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\ \x65\x30\x63\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\ \x18\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\ \x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x30\x3b\x06\x08\x2b\x06\x01\ \x05\x05\x07\x30\x02\x86\x2f\x68\x74\x74\x70\x3a\x2f\x2f\x63\x73\ \x63\x33\x2d\x32\x30\x31\x30\x2d\x61\x69\x61\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x43\x53\x43\x33\x2d\x32\x30\ \x31\x30\x2e\x63\x65\x72\x30\x1f\x06\x03\x55\x1d\x23\x04\x18\x30\ \x16\x80\x14\xcf\x99\xa9\xea\x7b\x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\ \x05\x26\xef\xe3\xd2\xa7\x9d\x30\x11\x06\x09\x60\x86\x48\x01\x86\ \xf8\x42\x01\x01\x04\x04\x03\x02\x04\x10\x30\x16\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x1b\x04\x08\x30\x06\x01\x01\x00\x01\ \x01\xff\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\ \x00\x03\x82\x01\x01\x00\xaa\x68\x61\xbd\xaf\xdd\x52\x02\xc4\x8e\ \x41\xa5\x7d\x6f\x88\x9e\xbe\xfe\xb9\xcb\xb7\x6b\xed\xc2\x38\x65\ \x1b\x62\x31\x44\xdb\x9b\xad\x39\x33\xbf\x85\x94\xff\x6c\x00\xf9\ \xba\x94\x94\xa0\x9b\x5b\xe7\x4f\x1f\x2d\x03\x59\xe0\xe3\xa2\xdd\ \x63\xd6\xbc\xe5\x2b\x74\x01\x7b\x2d\xa4\x00\x74\x36\xdb\x5e\x92\ \x99\x9b\xf8\x7b\x17\xb9\xbf\xdd\x38\x4c\xe6\x2c\x84\xfa\x4e\x2a\ \xda\x10\x99\xd5\xf4\x8d\x95\x81\x33\xed\x64\x0f\x9b\x48\x44\x22\ \x34\x5f\x07\x63\x71\xdb\x68\xcc\xd1\x51\xff\x38\xdf\xda\xe8\x0e\ \xb3\xc1\xea\x25\xaf\x08\xb3\x0c\x9d\xca\x30\x93\xca\x0c\x7e\xdd\ \x3b\x80\xd8\x23\xa2\x0a\xd5\x16\x25\xdc\x0c\xda\xdb\xdd\x32\x03\ \xb5\x9b\x1f\xfa\xd1\x52\xf9\xd9\x9a\x2a\x10\x3e\x8c\xb1\x97\x1b\ \x41\x2e\xa9\x1f\x01\x2f\x6f\x49\x09\xdc\x6c\xb7\x2b\xce\x7f\xd8\ \x2f\xdc\xcc\x7d\xf6\x69\x1e\xdf\x94\x1d\xc9\xc5\x76\xa5\xe2\xf7\ \x34\x2b\x76\xd3\xf4\x2e\x3e\x14\xe2\xea\x6a\x41\xf2\xdf\xed\x7f\ \x0e\x2f\xdc\xee\xae\xf6\x05\x6c\x0a\x40\x40\xf1\x4f\x21\x8a\x83\ \x83\xa4\xb6\x8e\x07\x67\x15\x73\xd4\x06\x60\xdc\xc4\xda\x19\x8b\ \x4b\x28\x35\xb6\xc1\xe1\x30\x82\x06\x0a\x30\x82\x04\xf2\xa0\x03\ \x02\x01\x02\x02\x10\x52\x00\xe5\xaa\x25\x56\xfc\x1a\x86\xed\x96\ \xc9\xd4\x4b\x33\xc7\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\ \x01\x05\x05\x00\x30\x81\xca\x31\x0b\x30\x09\x06\x03\x55\x04\x06\ \x13\x02\x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\ \x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\ \x1d\x06\x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\ \x20\x54\x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3a\ \x30\x38\x06\x03\x55\x04\x0b\x13\x31\x28\x63\x29\x20\x32\x30\x30\ \x36\x20\x56\x65\x72\x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\ \x20\x2d\x20\x46\x6f\x72\x20\x61\x75\x74\x68\x6f\x72\x69\x7a\x65\ \x64\x20\x75\x73\x65\x20\x6f\x6e\x6c\x79\x31\x45\x30\x43\x06\x03\ \x55\x04\x03\x13\x3c\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\ \x61\x73\x73\x20\x33\x20\x50\x75\x62\x6c\x69\x63\x20\x50\x72\x69\ \x6d\x61\x72\x79\x20\x43\x65\x72\x74\x69\x66\x69\x63\x61\x74\x69\ \x6f\x6e\x20\x41\x75\x74\x68\x6f\x72\x69\x74\x79\x20\x2d\x20\x47\ \x35\x30\x1e\x17\x0d\x31\x30\x30\x32\x30\x38\x30\x30\x30\x30\x30\ \x30\x5a\x17\x0d\x32\x30\x30\x32\x30\x37\x32\x33\x35\x39\x35\x39\ \x5a\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x55\ \x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\x69\ \x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\x03\ \x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\x72\ \x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\x06\ \x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x75\ \x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\ \x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\ \x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\x04\ \x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\x73\ \x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\x67\ \x20\x32\x30\x31\x30\x20\x43\x41\x30\x82\x01\x22\x30\x0d\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x82\x01\x0f\x00\ \x30\x82\x01\x0a\x02\x82\x01\x01\x00\xf5\x23\x4b\x5e\xa5\xd7\x8a\ \xbb\x32\xe9\xd4\x57\xf7\xef\xe4\xc7\x26\x7e\xad\x19\x98\xfe\xa8\ \x9d\x7d\x94\xf6\x36\x6b\x10\xd7\x75\x81\x30\x7f\x04\x68\x7f\xcb\ \x2b\x75\x1e\xcd\x1d\x08\x8c\xdf\x69\x94\xa7\x37\xa3\x9c\x7b\x80\ \xe0\x99\xe1\xee\x37\x4d\x5f\xce\x3b\x14\xee\x86\xd4\xd0\xf5\x27\ \x35\xbc\x25\x0b\x38\xa7\x8c\x63\x9d\x17\xa3\x08\xa5\xab\xb0\xfb\ \xcd\x6a\x62\x82\x4c\xd5\x21\xda\x1b\xd9\xf1\xe3\x84\x3b\x8a\x2a\ \x4f\x85\x5b\x90\x01\x4f\xc9\xa7\x76\x10\x7f\x27\x03\x7c\xbe\xae\ \x7e\x7d\xc1\xdd\xf9\x05\xbc\x1b\x48\x9c\x69\xe7\xc0\xa4\x3c\x3c\ \x41\x00\x3e\xdf\x96\xe5\xc5\xe4\x94\x71\xd6\x55\x01\xc7\x00\x26\ \x4a\x40\x3c\xb5\xa1\x26\xa9\x0c\xa7\x6d\x80\x8e\x90\x25\x7b\xcf\ \xbf\x3f\x1c\xeb\x2f\x96\xfa\xe5\x87\x77\xc6\xb5\x56\xb2\x7a\x3b\ \x54\x30\x53\x1b\xdf\x62\x34\xff\x1e\xd1\xf4\x5a\x93\x28\x85\xe5\ \x4c\x17\x4e\x7e\x5b\xfd\xa4\x93\x99\x7f\xdf\xcd\xef\xa4\x75\xef\ \xef\x15\xf6\x47\xe7\xf8\x19\x72\xd8\x2e\x34\x1a\xa6\xb4\xa7\x4c\ \x7e\xbd\xbb\x4f\x0c\x3d\x57\xf1\x30\xd6\xa6\x36\x8e\xd6\x80\x76\ \xd7\x19\x2e\xa5\xcd\x7e\x34\x2d\x89\x02\x03\x01\x00\x01\xa3\x82\ \x01\xfe\x30\x82\x01\xfa\x30\x12\x06\x03\x55\x1d\x13\x01\x01\xff\ \x04\x08\x30\x06\x01\x01\xff\x02\x01\x00\x30\x70\x06\x03\x55\x1d\ \x20\x04\x69\x30\x67\x30\x65\x06\x0b\x60\x86\x48\x01\x86\xf8\x45\ \x01\x07\x17\x03\x30\x56\x30\x28\x06\x08\x2b\x06\x01\x05\x05\x07\ \x02\x01\x16\x1c\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\ \x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x63\x70\x73\ \x30\x2a\x06\x08\x2b\x06\x01\x05\x05\x07\x02\x02\x30\x1e\x1a\x1c\ \x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x76\x65\x72\x69\ \x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\x72\x70\x61\x30\x0e\x06\x03\ \x55\x1d\x0f\x01\x01\xff\x04\x04\x03\x02\x01\x06\x30\x6d\x06\x08\ \x2b\x06\x01\x05\x05\x07\x01\x0c\x04\x61\x30\x5f\xa1\x5d\xa0\x5b\ \x30\x59\x30\x57\x30\x55\x16\x09\x69\x6d\x61\x67\x65\x2f\x67\x69\ \x66\x30\x21\x30\x1f\x30\x07\x06\x05\x2b\x0e\x03\x02\x1a\x04\x14\ \x8f\xe5\xd3\x1a\x86\xac\x8d\x8e\x6b\xc3\xcf\x80\x6a\xd4\x48\x18\ \x2c\x7b\x19\x2e\x30\x25\x16\x23\x68\x74\x74\x70\x3a\x2f\x2f\x6c\ \x6f\x67\x6f\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\ \x2f\x76\x73\x6c\x6f\x67\x6f\x2e\x67\x69\x66\x30\x34\x06\x03\x55\ \x1d\x1f\x04\x2d\x30\x2b\x30\x29\xa0\x27\xa0\x25\x86\x23\x68\x74\ \x74\x70\x3a\x2f\x2f\x63\x72\x6c\x2e\x76\x65\x72\x69\x73\x69\x67\ \x6e\x2e\x63\x6f\x6d\x2f\x70\x63\x61\x33\x2d\x67\x35\x2e\x63\x72\ \x6c\x30\x34\x06\x08\x2b\x06\x01\x05\x05\x07\x01\x01\x04\x28\x30\ \x26\x30\x24\x06\x08\x2b\x06\x01\x05\x05\x07\x30\x01\x86\x18\x68\ \x74\x74\x70\x3a\x2f\x2f\x6f\x63\x73\x70\x2e\x76\x65\x72\x69\x73\ \x69\x67\x6e\x2e\x63\x6f\x6d\x30\x1d\x06\x03\x55\x1d\x25\x04\x16\ \x30\x14\x06\x08\x2b\x06\x01\x05\x05\x07\x03\x02\x06\x08\x2b\x06\ \x01\x05\x05\x07\x03\x03\x30\x28\x06\x03\x55\x1d\x11\x04\x21\x30\ \x1f\xa4\x1d\x30\x1b\x31\x19\x30\x17\x06\x03\x55\x04\x03\x13\x10\ \x56\x65\x72\x69\x53\x69\x67\x6e\x4d\x50\x4b\x49\x2d\x32\x2d\x38\ \x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04\x14\xcf\x99\xa9\xea\x7b\ \x26\xf4\x4b\xc9\x8e\x8f\xd7\xf0\x05\x26\xef\xe3\xd2\xa7\x9d\x30\ \x1f\x06\x03\x55\x1d\x23\x04\x18\x30\x16\x80\x14\x7f\xd3\x65\xa7\ \xc2\xdd\xec\xbb\xf0\x30\x09\xf3\x43\x39\xfa\x02\xaf\x33\x31\x33\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\ \x82\x01\x01\x00\x56\x22\xe6\x34\xa4\xc4\x61\xcb\x48\xb9\x01\xad\ \x56\xa8\x64\x0f\xd9\x8c\x91\xc4\xbb\xcc\x0c\xe5\xad\x7a\xa0\x22\ \x7f\xdf\x47\x38\x4a\x2d\x6c\xd1\x7f\x71\x1a\x7c\xec\x70\xa9\xb1\ \xf0\x4f\xe4\x0f\x0c\x53\xfa\x15\x5e\xfe\x74\x98\x49\x24\x85\x81\ \x26\x1c\x91\x14\x47\xb0\x4c\x63\x8c\xbb\xa1\x34\xd4\xc6\x45\xe8\ \x0d\x85\x26\x73\x03\xd0\xa9\x8c\x64\x6d\xdc\x71\x92\xe6\x45\x05\ \x60\x15\x59\x51\x39\xfc\x58\x14\x6b\xfe\xd4\xa4\xed\x79\x6b\x08\ \x0c\x41\x72\xe7\x37\x22\x06\x09\xbe\x23\xe9\x3f\x44\x9a\x1e\xe9\ \x61\x9d\xcc\xb1\x90\x5c\xfc\x3d\xd2\x8d\xac\x42\x3d\x65\x36\xd4\ \xb4\x3d\x40\x28\x8f\x9b\x10\xcf\x23\x26\xcc\x4b\x20\xcb\x90\x1f\ \x5d\x8c\x4c\x34\xca\x3c\xd8\xe5\x37\xd6\x6f\xa5\x20\xbd\x34\xeb\ \x26\xd9\xae\x0d\xe7\xc5\x9a\xf7\xa1\xb4\x21\x91\x33\x6f\x86\xe8\ \x58\xbb\x25\x7c\x74\x0e\x58\xfe\x75\x1b\x63\x3f\xce\x31\x7c\x9b\ \x8f\x1b\x96\x9e\xc5\x53\x76\x84\x5b\x9c\xad\x91\xfa\xac\xed\x93\ \xba\x5d\xc8\x21\x53\xc2\x82\x53\x63\xaf\x12\x0d\x50\x87\x11\x1b\ \x3d\x54\x52\x96\x8a\x2c\x9c\x3d\x92\x1a\x08\x9a\x05\x2e\xc7\x93\ \xa5\x48\x91\xd3\x31\x82\x04\x9b\x30\x82\x04\x97\x02\x01\x01\x30\ \x81\xc9\x30\x81\xb4\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\ \x55\x53\x31\x17\x30\x15\x06\x03\x55\x04\x0a\x13\x0e\x56\x65\x72\ \x69\x53\x69\x67\x6e\x2c\x20\x49\x6e\x63\x2e\x31\x1f\x30\x1d\x06\ \x03\x55\x04\x0b\x13\x16\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x54\ \x72\x75\x73\x74\x20\x4e\x65\x74\x77\x6f\x72\x6b\x31\x3b\x30\x39\ \x06\x03\x55\x04\x0b\x13\x32\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\ \x75\x73\x65\x20\x61\x74\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\ \x77\x77\x2e\x76\x65\x72\x69\x73\x69\x67\x6e\x2e\x63\x6f\x6d\x2f\ \x72\x70\x61\x20\x28\x63\x29\x31\x30\x31\x2e\x30\x2c\x06\x03\x55\ \x04\x03\x13\x25\x56\x65\x72\x69\x53\x69\x67\x6e\x20\x43\x6c\x61\ \x73\x73\x20\x33\x20\x43\x6f\x64\x65\x20\x53\x69\x67\x6e\x69\x6e\ \x67\x20\x32\x30\x31\x30\x20\x43\x41\x02\x10\x74\x25\x53\xad\x07\ \xe4\xaf\xd1\x15\x04\xaf\x98\x4d\x49\xed\x68\x30\x09\x06\x05\x2b\ \x0e\x03\x02\x1a\x05\x00\xa0\x81\x98\x30\x14\x06\x09\x2b\x06\x01\ \x04\x01\x82\x37\x28\x01\x31\x07\x03\x05\x00\x03\x00\x00\x00\x30\ \x19\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\x31\x0c\x06\x0a\ \x2b\x06\x01\x04\x01\x82\x37\x02\x01\x04\x30\x1c\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x0b\x31\x0e\x30\x0c\x06\x0a\x2b\x06\ \x01\x04\x01\x82\x37\x02\x01\x15\x30\x22\x06\x0a\x2b\x06\x01\x04\ \x01\x82\x37\x02\x01\x0c\x31\x14\x30\x12\xa1\x10\x80\x0e\x77\x77\ \x77\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x20\x30\x23\x06\x09\ \x2a\x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\x39\x5c\x1c\ \xfc\x3c\x54\x3a\x26\xf1\xab\x5b\x19\xef\x03\x28\x03\x37\xa7\xd5\ \x41\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\ \x04\x82\x01\x00\x0e\x42\xda\xc0\x12\x0a\x78\x58\x13\x2c\x52\xa9\ \x06\x8b\xd9\x54\x59\x12\xd8\xa8\x19\xb9\x7b\x40\x9b\x1b\x65\xc5\ \x5c\xf1\x34\x0e\x39\xe6\xcc\x0e\xb1\x17\x6b\xfa\x11\x4e\x9f\xab\ \x78\x2e\x72\x23\x91\x9a\x03\x84\x48\x6e\x22\xb6\x82\xb1\x22\x4f\ \x54\x45\x43\xa0\x04\xcb\xeb\x0f\x62\xe7\x91\x94\x14\x51\x5f\xba\ \x2a\xc7\x01\xdc\xa8\xd4\xa9\x3a\xc3\xf6\xcf\x24\x6d\xa0\x28\x14\ \x5d\x73\x5c\x93\x46\x13\x1a\xf0\x0a\x89\xf4\xbe\x82\x2a\xae\xd1\ \xa2\x4f\x60\xe3\x85\xf8\x04\x89\xd1\xa3\xa9\xa6\x3a\x5c\x50\x64\ \x67\x2f\x41\x96\x65\xdd\x5e\x28\x76\x31\x24\x20\xfb\xbe\x60\x93\ \xda\xa6\xad\x18\xa6\x74\x05\x3b\xed\xf4\x1f\x93\xee\x70\xa3\x13\ \x83\x21\xd8\xb1\xb4\x1d\x98\x66\x3e\x3c\x51\x07\xc7\xad\x6b\xdf\ \xdb\x96\xb5\xff\x5c\xe7\x00\xfb\x5e\x9a\x30\x35\x29\x53\x07\x7f\ \x1a\x63\x85\x5a\xa7\x1e\xe7\xde\xb7\x58\xed\xf6\x56\x7e\x21\xf5\ \x01\xd3\x60\x6b\xdf\x6a\x28\x40\xab\xe0\x5a\xf1\xf0\xd2\x5a\xa6\ \xcc\x93\x18\x82\x74\xd4\xc3\x36\x07\xd4\x43\xff\x17\xd9\xc7\x7a\ \x1c\x71\xc6\x97\x9a\x50\xfb\xce\x27\xe9\x21\xd1\x99\x9a\x89\xb8\ \xe1\x55\x5e\x63\xa1\x82\x02\x0b\x30\x82\x02\x07\x06\x09\x2a\x86\ \x48\x86\xf7\x0d\x01\x09\x06\x31\x82\x01\xf8\x30\x82\x01\xf4\x02\ \x01\x01\x30\x72\x30\x5e\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\ \x02\x55\x53\x31\x1d\x30\x1b\x06\x03\x55\x04\x0a\x13\x14\x53\x79\ \x6d\x61\x6e\x74\x65\x63\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\ \x6f\x6e\x31\x30\x30\x2e\x06\x03\x55\x04\x03\x13\x27\x53\x79\x6d\ \x61\x6e\x74\x65\x63\x20\x54\x69\x6d\x65\x20\x53\x74\x61\x6d\x70\ \x69\x6e\x67\x20\x53\x65\x72\x76\x69\x63\x65\x73\x20\x43\x41\x20\ \x2d\x20\x47\x32\x02\x10\x0e\xcf\xf4\x38\xc8\xfe\xbf\x35\x6e\x04\ \xd8\x6a\x98\x1b\x1a\x50\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\ \x00\xa0\x5d\x30\x18\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x03\ \x31\x0b\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x07\x01\x30\x1c\x06\ \x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x05\x31\x0f\x17\x0d\x31\x33\ \x30\x31\x31\x31\x31\x39\x32\x35\x35\x39\x5a\x30\x23\x06\x09\x2a\ \x86\x48\x86\xf7\x0d\x01\x09\x04\x31\x16\x04\x14\x70\x8d\xd1\xe2\ \x98\xae\x27\x4b\xf8\x19\x8b\x99\x49\x4b\xd8\x27\x25\xc5\x6d\x39\ \x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x04\ \x82\x01\x00\x18\x9a\x10\xae\x94\xf0\x35\xb7\x39\x84\x7b\x39\x6d\ \xc8\xab\xce\x87\xfa\x5e\x32\x44\xb3\x0e\x70\xc8\x92\xbf\x26\x95\ \xce\x8d\x8c\x26\x94\x04\xba\xa3\x9d\x8a\xbd\xfa\x87\x8b\x26\x53\ \xfa\xa6\x1b\xd8\x86\x33\xe1\x3e\x94\x96\x2b\xd6\xb4\xdf\xaa\xf8\ \xd6\x6d\x37\x0f\x03\xec\x51\x60\x03\x93\xeb\x23\xaa\xff\x1f\x0f\ \xc1\x59\x2b\x19\x61\x40\x8e\xc6\x3d\xa0\xee\x5a\x32\x0b\x50\x4f\ \x6e\xc3\xe0\x34\xde\x91\x34\x85\x8c\x2b\xd5\xad\x65\x64\x61\x04\ \xee\xc8\x97\x2f\x4e\xf5\xd8\xe4\x18\x7c\x17\x7b\xbf\x2f\x4b\x62\ \x69\x4f\x46\x74\x87\x66\xdf\xef\x66\x58\x0b\x1c\x47\x06\x0f\x5a\ \x99\x6d\xb9\x88\xda\x10\xb5\x45\xe3\x8d\x47\x25\x20\x1e\x53\x5a\ \xe1\x92\x7d\xaf\xe1\x83\x0d\x55\xfc\xd9\x38\x0a\x5b\xfc\x67\x9f\ \x35\xf3\x22\xbf\x62\x3c\xe2\x4b\x91\x7a\xdf\xb5\x25\x13\xb3\xb8\ \x12\x46\x94\x81\xfc\x66\xe1\x10\x5b\x75\x9b\xb1\x3e\x2c\x47\x79\ \xd3\xb5\xb9\xe7\x37\x21\x56\xbd\x5e\x72\x58\xc9\xfe\xe9\xd0\x09\ \x4d\x68\xba\xcf\xfc\x3b\x6d\x9a\xfe\xdd\x3b\xf1\xc9\x00\x00\x6f\ \xf2\xcc\x9d\x58\xbb\x7d\x38\x76\x00\x65\xe5\xa4\x56\x6f\x57\xa8\ \x7d\x62\xbd\ " qt_resource_name = b"\ \x00\x05\ \x00\x6d\x65\xb3\ \x00\x66\ \x00\x6f\x00\x6e\x00\x74\x00\x73\ \x00\x0c\ \x0b\x3e\xb1\x13\ \x00\x70\ \x00\x79\x00\x71\x00\x6f\x00\x64\x00\x65\x00\x2d\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x02\ \x00\x00\x07\x83\ \x00\x72\ \x00\x63\ \x00\x11\ \x0f\xe3\xd5\x67\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x13\ \x06\x57\x1d\xe7\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x09\ \x06\x98\x83\x27\ \x00\x63\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x07\x06\xe2\xa7\ \x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x2d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6c\x00\x65\x00\x73\ \x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x03\xd2\xbe\x67\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x27\xb1\x67\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x1c\xb1\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0d\x28\xe1\x67\ \x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x2d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6d\x00\x6f\x00\x72\ \x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x04\x92\x1e\xa7\ \x00\x67\ \x00\x6f\x00\x74\x00\x6f\x00\x2d\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x01\x75\x95\x07\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0d\ \x0c\xd2\xbf\xe7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0f\xcb\x90\x67\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x65\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0b\xa9\xab\x27\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x61\x00\x73\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x04\xbc\xbb\x27\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x07\xb1\x59\x27\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x63\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0e\xa7\x95\x87\ \x00\x63\ \x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2d\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0e\x95\xda\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x74\x00\x72\x00\x61\x00\x73\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0c\x42\xa9\xc7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x04\xc3\x8b\x07\ \x00\x67\ \x00\x6f\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0c\xaa\xc0\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x70\x00\x61\x00\x73\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x04\x85\x73\x67\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x05\x98\xb3\xe7\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x02\x6f\x48\x87\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x77\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x13\ \x0a\xb9\xc8\x07\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x2d\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x0b\ \x06\x3d\x10\x27\ \x00\x67\ \x00\x6f\x00\x2d\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0c\x2b\x1f\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x08\xcd\xb5\x87\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2d\x00\x72\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0e\x36\x76\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x04\x9e\xb8\x66\ \x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x42\x00\x6f\x00\x6c\ \x00\x64\x00\x2e\x00\x74\x00\x74\x00\x66\ \x00\x19\ \x0c\xda\xf1\x06\ \x00\x53\ \x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x50\x00\x72\x00\x6f\x00\x2d\x00\x52\x00\x65\x00\x67\ \x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x74\x00\x74\x00\x66\ " qt_resource_struct = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x20\ \x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x1c\x00\x00\x00\x04\ \x00\x00\x01\x16\x00\x00\x00\x00\x00\x01\x00\x00\x22\xa5\ \x00\x00\x01\x88\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x55\ \x00\x00\x03\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x71\x61\ \x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x13\x5b\ \x00\x00\x03\x08\x00\x00\x00\x00\x00\x01\x00\x00\x6e\xd8\ \x00\x00\x01\x68\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x66\ \x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x00\x43\x69\ \x00\x00\x02\xce\x00\x00\x00\x00\x00\x01\x00\x00\x61\xdb\ \x00\x00\x03\x32\x00\x00\x00\x00\x00\x01\x00\x00\x70\x50\ \x00\x00\x03\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x79\x4e\ \x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x05\x39\ \x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x06\xa2\ \x00\x00\x00\xa4\x00\x00\x00\x00\x00\x01\x00\x00\x0f\x1e\ \x00\x00\x02\x48\x00\x00\x00\x00\x00\x01\x00\x00\x47\x94\ \x00\x00\x03\xea\x00\x00\x00\x00\x00\x01\x00\x00\x85\x90\ \x00\x00\x03\x86\x00\x00\x00\x00\x00\x01\x00\x00\x73\xd2\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x70\ \x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xaf\ \x00\x00\x03\xce\x00\x00\x00\x00\x00\x01\x00\x00\x7f\x65\ \x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x5b\xa4\ \x00\x00\x02\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x68\x33\ \x00\x00\x01\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x2f\x7b\ \x00\x00\x01\x36\x00\x00\x00\x00\x00\x01\x00\x00\x26\x3a\ \x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x8e\xa2\ \x00\x00\x02\x88\x00\x00\x00\x00\x00\x01\x00\x00\x54\x1b\ \x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x27\ \x00\x00\x01\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x37\x7d\ \x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x02\x00\x00\x00\x21\ \x00\x00\x04\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x94\xe6\ \x00\x00\x04\x70\x00\x00\x00\x00\x00\x01\x00\x02\x6b\xa2\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()Turing-0.11-beta/pyqode/core/_forms/search_panel_ui.py000066400000000000000000000262141331472757200230450ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/colin/dev/pyQode/pyqode.core/forms/search_panel.ui' # # Created by: PyQt5 UI code generator 5.5.1 # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_SearchPanel(object): def setupUi(self, SearchPanel): SearchPanel.setObjectName("SearchPanel") SearchPanel.resize(884, 90) SearchPanel.setStyleSheet("") self.verticalLayout = QtWidgets.QVBoxLayout(SearchPanel) self.verticalLayout.setContentsMargins(0, 0, 0, 0) self.verticalLayout.setSpacing(0) self.verticalLayout.setObjectName("verticalLayout") self.frame = QtWidgets.QFrame(SearchPanel) self.frame.setFrameShape(QtWidgets.QFrame.NoFrame) self.frame.setFrameShadow(QtWidgets.QFrame.Raised) self.frame.setObjectName("frame") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.frame) self.verticalLayout_2.setContentsMargins(9, 9, 9, 9) self.verticalLayout_2.setSpacing(9) self.verticalLayout_2.setObjectName("verticalLayout_2") self.widgetSearch = QtWidgets.QWidget(self.frame) self.widgetSearch.setObjectName("widgetSearch") self.horizontalLayout = QtWidgets.QHBoxLayout(self.widgetSearch) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.labelSearch = QtWidgets.QLabel(self.widgetSearch) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.labelSearch.sizePolicy().hasHeightForWidth()) self.labelSearch.setSizePolicy(sizePolicy) self.labelSearch.setMinimumSize(QtCore.QSize(0, 0)) self.labelSearch.setMaximumSize(QtCore.QSize(18, 18)) self.labelSearch.setText("") self.labelSearch.setPixmap(QtGui.QPixmap(":/pycode-icons/rc/edit-find.png")) self.labelSearch.setScaledContents(True) self.labelSearch.setObjectName("labelSearch") self.horizontalLayout.addWidget(self.labelSearch) self.lineEditSearch = PromptLineEdit(self.widgetSearch) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lineEditSearch.sizePolicy().hasHeightForWidth()) self.lineEditSearch.setSizePolicy(sizePolicy) self.lineEditSearch.setMinimumSize(QtCore.QSize(200, 0)) self.lineEditSearch.setObjectName("lineEditSearch") self.horizontalLayout.addWidget(self.lineEditSearch) self.toolButtonPrevious = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonPrevious.setText("") icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/pyqode_icons/rc/go-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonPrevious.setIcon(icon) self.toolButtonPrevious.setObjectName("toolButtonPrevious") self.horizontalLayout.addWidget(self.toolButtonPrevious) self.toolButtonNext = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonNext.setText("") icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/pycode-icons/rc/go-down.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonNext.setIcon(icon1) self.toolButtonNext.setObjectName("toolButtonNext") self.horizontalLayout.addWidget(self.toolButtonNext) self.checkBoxRegex = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxRegex.setObjectName("checkBoxRegex") self.horizontalLayout.addWidget(self.checkBoxRegex) self.checkBoxCase = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxCase.setStyleSheet("") self.checkBoxCase.setObjectName("checkBoxCase") self.horizontalLayout.addWidget(self.checkBoxCase) self.checkBoxWholeWords = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxWholeWords.setObjectName("checkBoxWholeWords") self.horizontalLayout.addWidget(self.checkBoxWholeWords) self.checkBoxInSelection = QtWidgets.QCheckBox(self.widgetSearch) self.checkBoxInSelection.setObjectName("checkBoxInSelection") self.horizontalLayout.addWidget(self.checkBoxInSelection) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.labelMatches = QtWidgets.QLabel(self.widgetSearch) self.labelMatches.setObjectName("labelMatches") self.horizontalLayout.addWidget(self.labelMatches) self.toolButtonClose = QtWidgets.QToolButton(self.widgetSearch) self.toolButtonClose.setText("") icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(":/pycode-icons/rc/close.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.toolButtonClose.setIcon(icon2) self.toolButtonClose.setObjectName("toolButtonClose") self.horizontalLayout.addWidget(self.toolButtonClose) self.verticalLayout_2.addWidget(self.widgetSearch) self.widgetReplace = QtWidgets.QWidget(self.frame) self.widgetReplace.setObjectName("widgetReplace") self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.widgetReplace) self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.labelReplace = QtWidgets.QLabel(self.widgetReplace) self.labelReplace.setMaximumSize(QtCore.QSize(18, 18)) self.labelReplace.setText("") self.labelReplace.setPixmap(QtGui.QPixmap(":/pycode-icons/rc/edit-find-replace.png")) self.labelReplace.setScaledContents(True) self.labelReplace.setObjectName("labelReplace") self.horizontalLayout_2.addWidget(self.labelReplace) self.lineEditReplace = PromptLineEdit(self.widgetReplace) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lineEditReplace.sizePolicy().hasHeightForWidth()) self.lineEditReplace.setSizePolicy(sizePolicy) self.lineEditReplace.setMinimumSize(QtCore.QSize(200, 0)) self.lineEditReplace.setObjectName("lineEditReplace") self.horizontalLayout_2.addWidget(self.lineEditReplace) self.toolButtonReplace = QtWidgets.QToolButton(self.widgetReplace) self.toolButtonReplace.setObjectName("toolButtonReplace") self.horizontalLayout_2.addWidget(self.toolButtonReplace) self.toolButtonReplaceAll = QtWidgets.QToolButton(self.widgetReplace) self.toolButtonReplaceAll.setObjectName("toolButtonReplaceAll") self.horizontalLayout_2.addWidget(self.toolButtonReplaceAll) spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem1) self.lineEditReplace.raise_() self.toolButtonReplace.raise_() self.toolButtonReplaceAll.raise_() self.labelReplace.raise_() self.verticalLayout_2.addWidget(self.widgetReplace) self.verticalLayout.addWidget(self.frame) self.actionSearch = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("edit-find") self.actionSearch.setIcon(icon) self.actionSearch.setIconVisibleInMenu(True) self.actionSearch.setObjectName("actionSearch") self.actionActionSearchAndReplace = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("edit-find-replace") self.actionActionSearchAndReplace.setIcon(icon) self.actionActionSearchAndReplace.setIconVisibleInMenu(True) self.actionActionSearchAndReplace.setObjectName("actionActionSearchAndReplace") self.actionFindNext = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("go-down") self.actionFindNext.setIcon(icon) self.actionFindNext.setIconVisibleInMenu(True) self.actionFindNext.setObjectName("actionFindNext") self.actionFindPrevious = QtWidgets.QAction(SearchPanel) icon = QtGui.QIcon.fromTheme("go-up") self.actionFindPrevious.setIcon(icon) self.actionFindPrevious.setIconVisibleInMenu(True) self.actionFindPrevious.setObjectName("actionFindPrevious") self.retranslateUi(SearchPanel) QtCore.QMetaObject.connectSlotsByName(SearchPanel) SearchPanel.setTabOrder(self.lineEditSearch, self.lineEditReplace) SearchPanel.setTabOrder(self.lineEditReplace, self.toolButtonPrevious) SearchPanel.setTabOrder(self.toolButtonPrevious, self.toolButtonNext) SearchPanel.setTabOrder(self.toolButtonNext, self.checkBoxCase) SearchPanel.setTabOrder(self.checkBoxCase, self.checkBoxWholeWords) SearchPanel.setTabOrder(self.checkBoxWholeWords, self.toolButtonReplace) SearchPanel.setTabOrder(self.toolButtonReplace, self.toolButtonReplaceAll) SearchPanel.setTabOrder(self.toolButtonReplaceAll, self.toolButtonClose) def retranslateUi(self, SearchPanel): SearchPanel.setWindowTitle(_("Form")) self.lineEditSearch.setToolTip(_("Search term")) self.toolButtonPrevious.setToolTip(_("Select previous occurence")) self.toolButtonNext.setToolTip(_("Select next occurence")) self.checkBoxRegex.setToolTip(_("Use a regular expression for search occurences")) self.checkBoxRegex.setText(_("Regex")) self.checkBoxCase.setToolTip(_("Enable case sensitive search")) self.checkBoxCase.setText(_("Match case")) self.checkBoxWholeWords.setToolTip(_("Search for whole words only")) self.checkBoxWholeWords.setText(_("Whole words")) self.checkBoxInSelection.setText(_("In Selection")) self.labelMatches.setText(_("0 matches")) self.lineEditReplace.setToolTip(_("Replacement text")) self.toolButtonReplace.setToolTip(_("Replace current occurence")) self.toolButtonReplace.setText(_("Replace")) self.toolButtonReplaceAll.setToolTip(_("Replace all occurences")) self.toolButtonReplaceAll.setText(_("Replace All")) self.actionSearch.setText(_("Search")) self.actionSearch.setToolTip(_("Show the search panel")) self.actionSearch.setShortcut(_("Ctrl+F")) self.actionActionSearchAndReplace.setText(_("Search and replace")) self.actionActionSearchAndReplace.setToolTip(_("Show the search and replace panel")) self.actionActionSearchAndReplace.setShortcut(_("Ctrl+R")) self.actionFindNext.setText(_("Find next")) self.actionFindNext.setToolTip(_("Find the next occurrence (downward)")) self.actionFindNext.setShortcut(_("F3")) self.actionFindPrevious.setText(_("Find previous")) self.actionFindPrevious.setToolTip(_("Find previous occurrence (upward)")) self.actionFindPrevious.setShortcut(_("Shift+F3")) from pyqode.core.widgets import PromptLineEdit from . import pyqode_core_rcTuring-0.11-beta/pyqode/core/api/000077500000000000000000000000001331472757200166315ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/api/__init__.py000066400000000000000000000022261331472757200207440ustar00rootroot00000000000000""" This package contains the bases classes of pyqode and some utility functions. """ from .code_edit import CodeEdit from .decoration import TextDecoration from .encodings import ENCODINGS_MAP, convert_to_codec_key from .manager import Manager from .mode import Mode from .panel import Panel from .syntax_highlighter import ColorScheme from .syntax_highlighter import PYGMENTS_STYLES from .syntax_highlighter import SyntaxHighlighter from .syntax_highlighter import TextBlockUserData from .utils import TextHelper, TextBlockHelper from .utils import get_block_symbol_data from .utils import DelayJobRunner from .folding import FoldDetector from .folding import IndentFoldDetector from .folding import CharBasedFoldDetector from .folding import FoldScope __all__ = [ 'convert_to_codec_key', 'get_block_symbol_data', 'CharBasedFoldDetector', 'CodeEdit', 'ColorScheme', 'DelayJobRunner', 'ENCODINGS_MAP', 'FoldDetector', 'IndentFoldDetector', 'FoldScope', 'Manager', 'Mode', 'Panel', 'PYGMENTS_STYLES', 'SyntaxHighlighter', 'TextBlockUserData', 'TextDecoration', 'TextHelper', 'TextBlockHelper' ] Turing-0.11-beta/pyqode/core/api/client.py000066400000000000000000000341361331472757200204700ustar00rootroot00000000000000""" This module contains the client socket API. This API is exposed to the user throught the backend manager ( :class:`pyqode.core.managers.BackendManager`) """ import locale import json import logging import socket import struct import sys import uuid from weakref import ref from pyqode.qt import QtCore, QtNetwork def _logger(): return logging.getLogger(__name__) #: log level for communication COMM = 1 def comm(msg, *args): _logger().log(COMM, msg, *args) #: Dictionary of socket errors messages SOCKET_ERROR_STRINGS = { 0: 'the connection was refused by the peer (or timed out).', 1: 'the remote host closed the connection.', 2: 'the host address was not found.', 3: 'the socket operation failed because the application lacked the ' 'required privileges.', 4: 'the local system ran out of resources (e.g., too many sockets).', 5: 'the socket operation timed out.', 6: "the datagram was larger than the operating system's limit (which can " "be as low as 8192 bytes).", 7: 'an error occurred with the network (e.g., the network cable was ' 'accidentally plugged out).', # 9 and 10 are UDP only, we only care about TCP. # all others erros are unlikely to happen in our case (proxy related # errors) - 1: 'an unidentified error occurred.', } #: Dictionary of process errors messages PROCESS_ERROR_STRING = { 0: 'the process failed to start. Either the invoked program is missing, ' 'or you may have insufficient permissions to invoke the program.', 1: 'the process crashed some time after starting successfully.', 2: 'the last waitFor...() function timed out. The state of QProcess is ' 'unchanged, and you can try calling waitFor...() again.', 4: 'an error occurred when attempting to write to the process. ' 'For example, the process may not be running, or it may have closed ' 'its input channel.', 3: 'an error occurred when attempting to read from the process. ' 'For example, the process may not be running.', 5: 'an unknown error occurred. This is the default return value of ' 'error().' } if sys.version_info[0] >= 3: class WeakMethod(ref): """ A custom `weakref.ref` subclass which simulates a weak reference to a bound method, working around the lifetime problem of bound methods. """ __slots__ = "_func_ref", "_meth_type", "_alive", "__weakref__" def __new__(cls, meth, callback=None): try: obj = meth.__self__ func = meth.__func__ except AttributeError: raise TypeError("argument should be a bound method, not {}" .format(type(meth))) def _cb(arg): # The self-weakref trick is needed to avoid creating a # reference cycle. self = self_wr() if self._alive: self._alive = False if callback is not None: callback(self) self = ref.__new__(cls, obj, _cb) self._func_ref = ref(func, _cb) self._meth_type = type(meth) self._alive = True self_wr = ref(self) return self def __call__(self): obj = super().__call__() func = self._func_ref() if obj is None or func is None: return None return self._meth_type(func, obj) def __eq__(self, other): if isinstance(other, WeakMethod): if not self._alive or not other._alive: return self is other return ref.__eq__(self, other) and \ self._func_ref == other._func_ref return False def __ne__(self, other): if isinstance(other, WeakMethod): if not self._alive or not other._alive: return self is not other return ref.__ne__(self, other) or \ self._func_ref != other._func_ref return True __hash__ = ref.__hash__ else: class _weak_callable: def __init__(self, obj, func): self._obj = obj self._meth = func def __call__(self, *args, **kws): if self._obj is not None: return self._meth(self._obj, *args, **kws) else: return self._meth(*args, **kws) def __getattr__(self, attr): if attr == 'im_self': return self._obj if attr == 'im_func': return self._meth raise AttributeError(attr) class WeakMethod: """ Wraps a function or, more importantly, a bound method, in a way that allows a bound method's object to be GC'd, while providing the same interface as a normal weak reference. """ def __init__(self, fn): try: self._obj = ref(fn.im_self) self._meth = fn.im_func except AttributeError: # It's not a bound method. self._obj = None self._meth = fn def __call__(self): if self._dead(): return None return _weak_callable(self._obj(), self._meth) def _dead(self): return self._obj is not None and self._obj() is None class JsonTcpClient(QtNetwork.QTcpSocket): """ A json tcp client socket used to start and communicate with the pyqode backend. It uses a simple message protocol. A message is made up of two parts. parts: - header: contains the length of the payload. (4bytes) - payload: data as a json string. """ #: Internal signal emitted when the backend request finished and the #: socket can be removed from the list of sockets maintained by the #: backend manager finished = QtCore.Signal(QtNetwork.QTcpSocket) def __init__(self, parent, port, worker_class_or_function, args, on_receive=None): super(JsonTcpClient, self).__init__(parent) self._port = port self._worker = worker_class_or_function self._args = args self._header_complete = False self._header_buf = bytes() self._to_read = 0 self._data_buf = bytes() if on_receive: try: self._callback = WeakMethod(on_receive) except TypeError: # unbound method (i.e. free function) self._callback = ref(on_receive) else: self._callback = None self.is_connected = False self._closed = False self.connected.connect(self._on_connected) self.error.connect(self._on_error) self.disconnected.connect(self._on_disconnected) self.readyRead.connect(self._on_ready_read) self._connect() def close(self): self._closed = True # fix issue with QTimer.singleShot super(JsonTcpClient, self).close() self._callback = None def _send_request(self): """ Sends the request to the backend. """ if isinstance(self._worker, str): classname = self._worker else: classname = '%s.%s' % (self._worker.__module__, self._worker.__name__) self.request_id = str(uuid.uuid4()) self.send({'request_id': self.request_id, 'worker': classname, 'data': self._args}) def send(self, obj, encoding='utf-8'): """ Sends a python object to the backend. The object **must be JSON serialisable**. :param obj: object to send :param encoding: encoding used to encode the json message into a bytes array, this should match CodeEdit.file.encoding. """ comm('sending request: %r', obj) msg = json.dumps(obj) msg = msg.encode(encoding) header = struct.pack('=I', len(msg)) self.write(header) self.write(msg) @staticmethod def pick_free_port(): """ Picks a free port """ test_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) test_socket.bind(('127.0.0.1', 0)) free_port = int(test_socket.getsockname()[1]) test_socket.close() return free_port def _connect(self): """ Connects our client socket to the backend socket """ if self is None: return comm('connecting to 127.0.0.1:%d', self._port) address = QtNetwork.QHostAddress('127.0.0.1') self.connectToHost(address, self._port) if sys.platform == 'darwin': self.waitForConnected() def _on_connected(self): comm('connected to backend: %s:%d', self.peerName(), self.peerPort()) self.is_connected = True self._send_request() def _on_error(self, error): if error not in SOCKET_ERROR_STRINGS: # pragma: no cover error = -1 if error == 1 and self.is_connected or ( not self.is_connected and error == 0 and not self._closed): log_fct = comm else: log_fct = _logger().warning if error == 0 and not self.is_connected and not self._closed: QtCore.QTimer.singleShot(100, self._connect) log_fct(SOCKET_ERROR_STRINGS[error]) def _on_disconnected(self): try: comm('disconnected from backend: %s:%d', self.peerName(), self.peerPort()) except (AttributeError, RuntimeError): # logger might be None if for some reason qt deletes the socket # after python global exit pass try: self.is_connected = False except AttributeError: pass def _read_header(self): comm('reading header') self._header_buf += self.read(4) if len(self._header_buf) == 4: self._header_complete = True try: header = struct.unpack('=I', self._header_buf) except TypeError: # pyside header = struct.unpack('=I', self._header_buf.data()) self._to_read = header[0] self._header_buf = bytes() comm('header content: %d', self._to_read) def _read_payload(self): """ Reads the payload (=data) """ comm('reading payload data') comm('remaining bytes to read: %d', self._to_read) data_read = self.read(self._to_read) nb_bytes_read = len(data_read) comm('%d bytes read', nb_bytes_read) self._data_buf += data_read self._to_read -= nb_bytes_read if self._to_read <= 0: try: data = self._data_buf.decode('utf-8') except AttributeError: data = bytes(self._data_buf.data()).decode('utf-8') comm('payload read: %r', data) comm('payload length: %r', len(self._data_buf)) comm('decoding payload as json object') obj = json.loads(data) comm('response received: %r', obj) try: results = obj['results'] except (KeyError, TypeError): results = None # possible callback if self._callback and self._callback(): self._callback()(results) self._header_complete = False self._data_buf = bytes() self.finished.emit(self) def _on_ready_read(self): """ Read bytes when ready read """ while self.bytesAvailable(): if not self._header_complete: self._read_header() else: self._read_payload() class BackendProcess(QtCore.QProcess): """ Extends QProcess with methods to easily manipulate the backend process. Also logs everything that is written to the process' stdout/stderr. """ def __init__(self, parent): super(BackendProcess, self).__init__(parent) self.started.connect(self._on_process_started) self.error.connect(self._on_process_error) self.finished.connect(self._on_process_finished) self.readyReadStandardOutput.connect(self._on_process_stdout_ready) self.readyReadStandardError.connect(self._on_process_stderr_ready) self.running = False self.starting = True self._srv_logger = logging.getLogger('pyqode.backend') self._prevent_logs = False self._encoding = locale.getpreferredencoding() def _on_process_started(self): """ Logs process started """ comm('backend process started') if self is None: return self.starting = False self.running = True def _on_process_error(self, error): """ Logs process error """ if self is None: return if error not in PROCESS_ERROR_STRING: error = -1 if not self._prevent_logs: _logger().warning(PROCESS_ERROR_STRING[error]) def _on_process_finished(self, exit_code): """ Logs process exit status """ comm('backend process finished with exit code %d', exit_code) try: self.running = False except AttributeError: pass def _on_process_stdout_ready(self): """ Logs process output """ if not self: return o = self.readAllStandardOutput() try: output = bytes(o).decode(self._encoding) except TypeError: output = bytes(o.data()).decode(self._encoding) for line in output.splitlines(): self._srv_logger.log(1, line) def _on_process_stderr_ready(self): """ Logs process output (stderr) """ try: o = self.readAllStandardError() except (TypeError, RuntimeError): # widget already deleted return try: output = bytes(o).decode(self._encoding) except TypeError: output = bytes(o.data()).decode(self._encoding) for line in output.splitlines(): self._srv_logger.error(line) def terminate(self): """ Terminate the process """ self.running = False super(BackendProcess, self).terminate() Turing-0.11-beta/pyqode/core/api/code_edit.py000066400000000000000000001323511331472757200211270ustar00rootroot00000000000000""" This module contains the base code editor widget. """ from __future__ import print_function import os import sys try: from future.builtins import str, super except: # not availabe on python 3.2 (but not needed) pass import logging import platform from pyqode.core import icons from pyqode.core.cache import Cache from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.core.dialogs.goto import DlgGotoLine from pyqode.core.managers import BackendManager from pyqode.core.managers import FileManager from pyqode.core.managers import ModesManager from pyqode.core.managers import TextDecorationsManager from pyqode.core.managers import PanelsManager # ensure pyqode resource have been imported and are ready to be used. from pyqode.core._forms import pyqode_core_rc from pyqode.qt import QtWidgets, QtCore, QtGui def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class CodeEdit(QtWidgets.QPlainTextEdit): """ The editor widget is a simple extension to QPlainTextEdit. It adds a few utility signals/methods and introduces the concepts of **Managers, Modes and Panels**. A **mode/panel** is an editor extension that, once added to a CodeEdit instance, may modify its behaviour and appearance: * **Modes** are simple objects which connect to the editor signals to append new behaviours (such as automatic indentation, code completion, syntax checking,...) * **Panels** are the combination of a **Mode** and a **QWidget**. They are displayed in the CodeEdit's content margins. When you install a Panel on a CodeEdit, you can choose to install it in one of the four following zones: .. image:: _static/editor_widget.png :align: center :width: 600 :height: 450 A **manager** is an object that literally manage a specific aspect of :class:`pyqode.core.api.CodeEdit`. There are managers to manage the list of modes/panels, to open/save file and to control the backend: - :attr:`pyqode.core.api.CodeEdit.file`: File manager. Use it to open/save files or access the opened file attribute. - :attr:`pyqode.core.api.CodeEdit.backend`: Backend manager. Use it to start/stop the backend or send a work request. - :attr:`pyqode.core.api.CodeEdit.modes`: Modes manager. Use it to append/remove modes on the editor. - :attr:`pyqode.core.api.CodeEdit.panels`: Modes manager. Use it to append/remove panels on the editor. Starting from version 2.1, CodeEdit defines the :attr:`pyqode.core.api.CodeEdit.mimetypes` class attribute that can be used by IDE to determine which editor to use for a given mime type. This property is a list of supported mimetypes. An empty list means the CodeEdit is generic. **Code editors specialised for a specific language should define the mime types they support!** """ #: Paint hook painted = QtCore.Signal(QtGui.QPaintEvent) #: Signal emitted when a new text is set on the widget new_text_set = QtCore.Signal() #: Signal emitted when the text is saved to file text_saved = QtCore.Signal(str) #: Signal emitted before the text is saved to file text_saving = QtCore.Signal(str) #: Signal emitted when the dirty state changed dirty_changed = QtCore.Signal(bool) #: Signal emitted when a key is pressed key_pressed = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when a key is released key_released = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when a mouse button is pressed mouse_pressed = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when a mouse button is released mouse_released = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when a mouse double click event occured mouse_double_clicked = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted on a wheel event mouse_wheel_activated = QtCore.Signal(QtGui.QWheelEvent) #: Signal emitted at the end of the key_pressed event post_key_pressed = QtCore.Signal(QtGui.QKeyEvent) #: Signal emitted when focusInEvent is is called focused_in = QtCore.Signal(QtGui.QFocusEvent) #: Signal emitted when the mouse_moved mouse_moved = QtCore.Signal(QtGui.QMouseEvent) #: Signal emitted when the user press the TAB key indent_requested = QtCore.Signal() #: Signal emitted when the user press the BACK-TAB (Shift+TAB) key unindent_requested = QtCore.Signal() #: Store the list of mimetypes associated with the editor, for #: specialised editors. mimetypes = [] _DEFAULT_FONT = 'Source Code Pro' if sys.platform != 'darwin' else 'Monaco' @property def use_spaces_instead_of_tabs(self): """ Use spaces instead of tabulations. Default is True. """ return self._use_spaces_instead_of_tabs @use_spaces_instead_of_tabs.setter def use_spaces_instead_of_tabs(self, value): self._use_spaces_instead_of_tabs = value for c in self.clones: c.use_spaces_instead_of_tabs = value @property def tab_length(self): """ Tab length, number of spaces. """ return self._tab_length @tab_length.setter def tab_length(self, value): if value < 2: value = 2 self._tab_length = value for c in self.clones: c.tab_length = value @property def save_on_focus_out(self): """ Automatically saves editor content on focus out. Default is False. """ return self._save_on_focus_out @save_on_focus_out.setter def save_on_focus_out(self, value): self._save_on_focus_out = value for c in self.clones: c.save_on_focus_out = value @property def show_whitespaces(self): """ Shows/Hides virtual white spaces. """ return self._show_whitespaces @show_whitespaces.setter def show_whitespaces(self, value): if self._show_whitespaces != value: self._show_whitespaces = value self._set_whitespaces_flags(value) for c in self.clones: c.show_whitespaces = value self.rehighlight() @property def font_name(self): """ The editor font family name. """ return self._font_family @font_name.setter def font_name(self, value): if value == "": value = self._DEFAULT_FONT self._font_family = value self._reset_stylesheet() for c in self.clones: c.font_name = value @property def zoom_level(self): """ Gets/Sets the editor zoom level. The zoom level is a value that is added to the current editor font size. Negative values are used to zoom out the editor, positive values are used to zoom in the editor. """ return self._zoom_level @zoom_level.setter def zoom_level(self, value): self._zoom_level = value @property def font_size(self): """ The font point size. .. note:: Please, **never use setFontPointSize/setFontFamily functions directly** as the values you define there will be overwritten as soon as the user zoom the editor or as soon as a stylesheet property has changed. """ return self._font_size @font_size.setter def font_size(self, value): self._font_size = value self._reset_stylesheet() for c in self.clones: c.font_size = value @property def background(self): """ The editor background color (QColor) """ return self._background @background.setter def background(self, value): self._background = value self._reset_stylesheet() for c in self.clones: c.background = value @property def foreground(self): """ The editor foreground color (QColor) """ return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._reset_stylesheet() for c in self.clones: c.foreground = value @property def whitespaces_foreground(self): """ The editor white spaces' foreground color. White spaces are highlighted by the syntax highlighter. You should call rehighlight to update their color. This is not done automatically to prevent multiple, useless call to ``rehighlight`` which can take some time on big files. """ return self._whitespaces_foreground @whitespaces_foreground.setter def whitespaces_foreground(self, value): self._whitespaces_foreground = value for c in self.clones: c.whitespaces_foreground = value @property def selection_background(self): """ The editor selection's background color. """ return self._sel_background @selection_background.setter def selection_background(self, value): self._sel_background = value self._reset_stylesheet() for c in self.clones: c.selection_background = value @property def selection_foreground(self): """ The editor selection's foreground color. """ return self._sel_foreground @selection_foreground.setter def selection_foreground(self, value): self._sel_foreground = value for c in self.clones: c.selection_foreground = value @property def word_separators(self): """ The list of word separators used by the code completion mode and the word clicked mode. """ return self._word_separators @word_separators.setter def word_separators(self, value): self._word_separators = value for c in self.clones: c._word_separators = value @property def dirty(self): """ Tells whethere the content of editor has been modified. (this is just a shortcut to QTextDocument.isModified :type: bool """ return self.document().isModified() @property def visible_blocks(self): """ Returns the list of visible blocks. Each element in the list is a tuple made up of the line top position, the line number and the QTextBlock itself. :return: A list of tuple(top_position, line_number, block) :rtype: List of tuple(int, int, QtWidgets.QTextBlock) """ return self._visible_blocks @property def file(self): """ Returns a reference to the :class:`pyqode.core.managers.FileManager` used to open/save file on the editor """ return self._file @file.setter def file(self, file_manager): """ Sets a custom file manager. :param file_manager: custom file manager instance. """ self._file = file_manager @property def backend(self): """ Returns a reference to the :class:`pyqode.core.managers.BackendManager` used to control the backend process. """ return self._backend @property def modes(self): """ Returns a reference to the :class:`pyqode.core.managers.ModesManager` used to manage the collection of installed modes. """ return self._modes @property def panels(self): """ Returns a reference to the :class:`pyqode.core.managers.PanelsManager` used to manage the collection of installed panels """ return self._panels @property def decorations(self): """ Returns a reference to the :class:`pyqode.core.managers.TextDecorationManager` used to manage the list of :class:`pyqode.core.api.TextDecoration` """ return self._decorations @property def syntax_highlighter(self): """ Returns a reference to the syntax highlighter mode currently used to highlight the editor content. :return: :class:`pyqode.core.api.SyntaxHighlighter` """ for mode in self.modes: if hasattr(mode, 'highlightBlock'): return mode return None @property def show_context_menu(self): """ Specifies whether we should display the context menu or not. Default is True """ return self._show_ctx_mnu @show_context_menu.setter def show_context_menu(self, value): self._show_ctx_mnu = value @property def select_line_on_copy_empty(self): """ :return: state of "whole line selecting" on copy with empty selection :rtype: bool """ return self._select_line_on_copy_empty @select_line_on_copy_empty.setter def select_line_on_copy_empty(self, value): """ To turn on/off selecting the whole line when copy with empty selection is triggered Default is True """ self._select_line_on_copy_empty = value def __init__(self, parent=None, create_default_actions=True): """ :param parent: Parent widget :param create_default_actions: True to create the action for the standard shortcuts (copy, paste, delete, undo, redo,...). Non-standard actions will always get created. If you would like to prevent the context menu from showing, just set the :attr:`show_menu_enabled` to False. """ super(CodeEdit, self).__init__(parent) self.installEventFilter(self) self.clones = [] self._show_ctx_mnu = True self._default_font_size = 10 self._backend = BackendManager(self) self._file = FileManager(self) self._modes = ModesManager(self) self._panels = PanelsManager(self) self._decorations = TextDecorationsManager(self) self.document().modificationChanged.connect(self._emit_dirty_changed) self._word_separators = [ '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+', '{', '}', '|', ':', '"', "'", "<", ">", "?", ",", ".", "/", ";", '[', ']', '\\', '\n', '\t', '=', '-', ' ' ] self._save_on_focus_out = False self._use_spaces_instead_of_tabs = True self._whitespaces_foreground = None self._sel_background = None self._show_whitespaces = False self._foreground = None self._sel_foreground = None self._tab_length = 4 self._zoom_level = 0 self._font_size = 10 self._background = None QtGui.QFontDatabase.addApplicationFont( ':/fonts/rc/SourceCodePro-Regular.ttf') QtGui.QFontDatabase.addApplicationFont( ':/fonts/rc/SourceCodePro-Bold.ttf') self._font_family = self._DEFAULT_FONT self._mimetypes = [] self._select_line_on_copy_empty = True # Flags/Working variables self._last_mouse_pos = QtCore.QPoint(0, 0) self._modified_lines = set() self._cleaning = False self._visible_blocks = [] self._tooltips_runner = DelayJobRunner(delay=700) self._prev_tooltip_block_nbr = -1 self._original_text = "" self._dirty = False # setup context menu self._actions = [] self._menus = [] self._init_actions(create_default_actions) self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self._mnu = None # bug with PySide (github #63) # init settings and styles from global settings/style modules self._init_settings() self._init_style() # connect slots self.textChanged.connect(self._on_text_changed) self.blockCountChanged.connect(self.update) self.cursorPositionChanged.connect(self.update) self.selectionChanged.connect(self.update) self.setMouseTracking(True) self.setCenterOnScroll(True) self.setLineWrapMode(self.NoWrap) self.setCursorWidth(2) def __repr__(self): return '%s(path=%r)' % (self.__class__.__name__, self.file.path) def split(self): """ Split the code editor widget, return a clone of the widget ready to be used (and synchronised with its original). Splitting the widget is done in 2 steps: - first we clone the widget, you can override ``clone`` if your widget needs additional arguments. - then we link the two text document and disable some modes on the cloned instance (such as the watcher mode). """ # cache cursor position so that the clone open at the current cursor # pos l, c = TextHelper(self).cursor_position() clone = self.clone() self.link(clone) TextHelper(clone).goto_line(l, c) self.clones.append(clone) return clone def clone(self): """ Clone ourselves, return an instance of the same class, using the default QWidget constructor. """ clone = self.__class__(parent=self.parent()) return clone def link(self, clone): """ Links the clone with its original. We copy the file manager infos (path, mimetype, ...) and setup the clone text document as reference to our text document. :param clone: clone to link. """ clone.file._path = self.file.path clone.file._encoding = self.file.encoding clone.file._mimetype = self.file.mimetype clone.setDocument(self.document()) for original_mode, mode in zip(list(self.modes), list(clone.modes)): mode.enabled = original_mode.enabled mode.clone_settings(original_mode) for original_panel, panel in zip( list(self.panels), list(clone.panels)): panel.enabled = original_panel.isEnabled() panel.clone_settings(original_panel) if not original_panel.isVisible(): panel.setVisible(False) clone.use_spaces_instead_of_tabs = self.use_spaces_instead_of_tabs clone.tab_length = self.tab_length clone._save_on_focus_out = self._save_on_focus_out clone.show_whitespaces = self.show_whitespaces clone.font_name = self.font_name clone.font_size = self.font_size clone.zoom_level = self.zoom_level clone.background = self.background clone.foreground = self.foreground clone.whitespaces_foreground = self.whitespaces_foreground clone.selection_background = self.selection_background clone.selection_foreground = self.selection_foreground clone.word_separators = self.word_separators clone.file.clone_settings(self.file) def close(self, clear=True): """ Closes the editor, stops the backend and removes any installed mode/panel. This is also where we cache the cursor position. :param clear: True to clear the editor content before closing. """ if self._tooltips_runner: self._tooltips_runner.cancel_requests() self._tooltips_runner = None self.decorations.clear() self.modes.clear() self.panels.clear() self.backend.stop() Cache().set_cursor_position( self.file.path, self.textCursor().position()) super(CodeEdit, self).close() def set_mouse_cursor(self, cursor): """ Changes the viewport's cursor :param cursor: the mouse cursor to set. :type cursor: QtWidgets.QCursor """ self.viewport().setCursor(cursor) def show_tooltip(self, pos, tooltip, _sender_deco=None): """ Show a tool tip at the specified position :param pos: Tooltip position :param tooltip: Tooltip text :param _sender_deco: TextDecoration which is the sender of the show tooltip request. (for internal use only). """ if _sender_deco is not None and _sender_deco not in self.decorations: return QtWidgets.QToolTip.showText(pos, tooltip[0: 1024], self) def setPlainText(self, txt, mime_type, encoding): """ Extends setPlainText to force the user to setup an encoding and a mime type. Emits the new_text_set signal. :param txt: The new text to set. :param mime_type: Associated mimetype. Setting the mime will update the pygments lexer. :param encoding: text encoding """ self.file.mimetype = mime_type self.file._encoding = encoding self._original_text = txt self._modified_lines.clear() import time t = time.time() super(CodeEdit, self).setPlainText(txt) _logger().log(5, 'setPlainText duration: %fs' % (time.time() - t)) self.new_text_set.emit() self.redoAvailable.emit(False) self.undoAvailable.emit(False) def add_action(self, action, sub_menu='Advanced'): """ Adds an action to the editor's context menu. :param action: QAction to add to the context menu. :param sub_menu: The name of a sub menu where to put the action. 'Advanced' by default. If None or empty, the action will be added at the root of the submenu. """ if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: mnu = QtWidgets.QMenu(sub_menu) self.add_menu(mnu) self._sub_menus[sub_menu] = mnu finally: mnu.addAction(action) else: self._actions.append(action) action.setShortcutContext(QtCore.Qt.WidgetShortcut) self.addAction(action) def insert_action(self, action, prev_action): """ Inserts an action to the editor's context menu. :param action: action to insert :param prev_action: the action after which the new action must be inserted or the insert index """ if isinstance(prev_action, QtWidgets.QAction): index = self._actions.index(prev_action) else: index = prev_action action.setShortcutContext(QtCore.Qt.WidgetShortcut) self._actions.insert(index, action) def actions(self): """ Returns the list of actions/sepqrators of the context menu. """ return self._actions def add_separator(self, sub_menu='Advanced'): """ Adds a sepqrator to the editor's context menu. :return: The sepator that has been added. :rtype: QtWidgets.QAction """ action = QtWidgets.QAction(self) action.setSeparator(True) if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: pass else: mnu.addAction(action) else: self._actions.append(action) return action def remove_action(self, action, sub_menu='Advanced'): """ Removes an action/separator from the editor's context menu. :param action: Action/seprator to remove. :param advanced: True to remove the action from the advanced submenu. """ if sub_menu: try: mnu = self._sub_menus[sub_menu] except KeyError: pass else: mnu.removeAction(action) else: try: self._actions.remove(action) except ValueError: pass self.removeAction(action) def add_menu(self, menu): """ Adds a sub-menu to the editor context menu. Menu are put at the bottom of the context menu. .. note:: to add a menu in the middle of the context menu, you can always add its menuAction(). :param menu: menu to add """ self._menus.append(menu) self._menus = sorted(list(set(self._menus)), key=lambda x: x.title()) for action in menu.actions(): action.setShortcutContext(QtCore.Qt.WidgetShortcut) self.addActions(menu.actions()) def remove_menu(self, menu): """ Removes a sub-menu from the context menu. :param menu: Sub-menu to remove. """ self._menus.remove(menu) for action in menu.actions(): self.removeAction(action) def menus(self): """ Returns the list of sub context menus. """ return self._menus def delete(self): """ Deletes the selected text """ self.textCursor().removeSelectedText() def goto_line(self): """ Shows the *go to line dialog* and go to the selected line. """ helper = TextHelper(self) line, result = DlgGotoLine.get_line( self, helper.current_line_nbr(), helper.line_count()) if not result: return return helper.goto_line(line, move=True) def rehighlight(self): """ Calls ``rehighlight`` on the installed syntax highlighter mode. """ if self.syntax_highlighter: self.syntax_highlighter.rehighlight() def reset_zoom(self): """ Resets the zoom level. """ self._zoom_level = 0 self._reset_stylesheet() def zoom_in(self, increment=1): """ Zooms in the editor (makes the font bigger). :param increment: zoom level increment. Default is 1. """ self.zoom_level += increment TextHelper(self).mark_whole_doc_dirty() self._reset_stylesheet() def zoom_out(self, decrement=1): """ Zooms out the editor (makes the font smaller). :param decrement: zoom level decrement. Default is 1. The value is given as an absolute value. """ self.zoom_level -= decrement # make sure font size remains > 0 if self.font_size + self.zoom_level <= 0: self.zoom_level = -self._font_size + 1 TextHelper(self).mark_whole_doc_dirty() self._reset_stylesheet() def duplicate_line(self): """ Duplicates the line under the cursor. If multiple lines are selected, only the last one is duplicated. """ cursor = self.textCursor() assert isinstance(cursor, QtGui.QTextCursor) has_selection = True if not cursor.hasSelection(): cursor.select(cursor.LineUnderCursor) has_selection = False line = cursor.selectedText() line = '\n'.join(line.split('\u2029')) end = cursor.selectionEnd() cursor.setPosition(end) cursor.beginEditBlock() cursor.insertText('\n') cursor.insertText(line) cursor.endEditBlock() if has_selection: pos = cursor.position() cursor.setPosition(end + 1) cursor.setPosition(pos, cursor.KeepAnchor) self.setTextCursor(cursor) def indent(self): """ Indents the text cursor or the selection. Emits the :attr:`pyqode.core.api.CodeEdit.indent_requested` signal, the :class:`pyqode.core.modes.IndenterMode` will perform the actual indentation. """ self.indent_requested.emit() def un_indent(self): """ Un-indents the text cursor or the selection. Emits the :attr:`pyqode.core.api.CodeEdit.unindent_requested` signal, the :class:`pyqode.core.modes.IndenterMode` will perform the actual un-indentation. """ self.unindent_requested.emit() def eventFilter(self, obj, event): if obj == self and event.type() == QtCore.QEvent.KeyPress: if event.key() == QtCore.Qt.Key_X and \ int(event.modifiers()) == QtCore.Qt.ControlModifier: self.cut() return True if event.key() == QtCore.Qt.Key_C and \ int(event.modifiers()) == QtCore.Qt.ControlModifier: self.copy() return True return False def cut(self): """ Cuts the selected text or the whole line if no text was selected. """ tc = self.textCursor() helper = TextHelper(self) tc.beginEditBlock() no_selection = False if not helper.current_line_text(): tc.deleteChar() else: if not self.textCursor().hasSelection(): no_selection = True TextHelper(self).select_whole_line() super(CodeEdit, self).cut() if no_selection: tc.deleteChar() tc.endEditBlock() self.setTextCursor(tc) def copy(self): """ Copy the selected text to the clipboard. If no text was selected, the entire line is copied (this feature can be turned off by setting :attr:`select_line_on_copy_empty` to False. """ if self.select_line_on_copy_empty and not self.textCursor().hasSelection(): TextHelper(self).select_whole_line() super(CodeEdit, self).copy() def resizeEvent(self, e): """ Overrides resize event to resize the editor's panels. :param e: resize event """ super(CodeEdit, self).resizeEvent(e) self.panels.resize() def closeEvent(self, e): self.close() super(CodeEdit, self).closeEvent(e) def paintEvent(self, e): """ Overrides paint event to update the list of visible blocks and emit the painted event. :param e: paint event """ self._update_visible_blocks(e) super(CodeEdit, self).paintEvent(e) self.painted.emit(e) def keyPressEvent(self, event): """ Overrides the keyPressEvent to emit the key_pressed signal. Also takes care of indenting and handling smarter home key. :param event: QKeyEvent """ if self.isReadOnly(): return initial_state = event.isAccepted() event.ignore() self.key_pressed.emit(event) state = event.isAccepted() if not event.isAccepted(): if event.key() == QtCore.Qt.Key_Tab and event.modifiers() == \ QtCore.Qt.NoModifier: self.indent() event.accept() elif event.key() == QtCore.Qt.Key_Backtab and \ event.modifiers() == QtCore.Qt.NoModifier: self.un_indent() event.accept() elif event.key() == QtCore.Qt.Key_Home and \ int(event.modifiers()) & QtCore.Qt.ControlModifier == 0: self._do_home_key( event, int(event.modifiers()) & QtCore.Qt.ShiftModifier) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).keyPressEvent(event) new_state = event.isAccepted() event.setAccepted(state) self.post_key_pressed.emit(event) event.setAccepted(new_state) def keyReleaseEvent(self, event): """ Overrides keyReleaseEvent to emit the key_released signal. :param event: QKeyEvent """ if self.isReadOnly(): return initial_state = event.isAccepted() event.ignore() self.key_released.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).keyReleaseEvent(event) def mouseDoubleClickEvent(self, event): initial_state = event.isAccepted() event.ignore() self.mouse_double_clicked.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mouseDoubleClickEvent(event) def focusInEvent(self, event): """ Overrides focusInEvent to emits the focused_in signal :param event: QFocusEvent """ self.focused_in.emit(event) super(CodeEdit, self).focusInEvent(event) def focusOutEvent(self, event): # Saves content if save_on_focus_out is True. if self._save_on_focus_out and self.dirty and self.file.path: self.file.save() super(CodeEdit, self).focusOutEvent(event) def mousePressEvent(self, event): """ Overrides mousePressEvent to emits mouse_pressed signal :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_pressed.emit(event) if event.button() == QtCore.Qt.LeftButton: cursor = self.cursorForPosition(event.pos()) for sel in self.decorations: if sel.cursor.blockNumber() == cursor.blockNumber(): if sel.contains_cursor(cursor): sel.signals.clicked.emit(sel) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mousePressEvent(event) def mouseReleaseEvent(self, event): """ Emits mouse_released signal. :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_released.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).mouseReleaseEvent(event) def wheelEvent(self, event): """ Emits the mouse_wheel_activated signal. :param event: QMouseEvent """ initial_state = event.isAccepted() event.ignore() self.mouse_wheel_activated.emit(event) if not event.isAccepted(): event.setAccepted(initial_state) super(CodeEdit, self).wheelEvent(event) def mouseMoveEvent(self, event): """ Overrides mouseMovedEvent to display any decoration tooltip and emits the mouse_moved event. :param event: QMouseEvent """ cursor = self.cursorForPosition(event.pos()) self._last_mouse_pos = event.pos() block_found = False for sel in self.decorations: if sel.contains_cursor(cursor) and sel.tooltip: if (self._prev_tooltip_block_nbr != cursor.blockNumber() or not QtWidgets.QToolTip.isVisible()): pos = event.pos() # add left margin pos.setX(pos.x() + self.panels.margin_size()) # add top margin pos.setY(pos.y() + self.panels.margin_size(0)) self._tooltips_runner.request_job( self.show_tooltip, self.mapToGlobal(pos), sel.tooltip[0: 1024], sel) self._prev_tooltip_block_nbr = cursor.blockNumber() block_found = True break if not block_found and self._prev_tooltip_block_nbr != -1: QtWidgets.QToolTip.hideText() self._prev_tooltip_block_nbr = -1 self._tooltips_runner.cancel_requests() self.mouse_moved.emit(event) super(CodeEdit, self).mouseMoveEvent(event) def showEvent(self, event): """ Overrides showEvent to update the viewport margins """ super(CodeEdit, self).showEvent(event) self.panels.refresh() def setReadOnly(self, read_only): if read_only != self.isReadOnly(): super(CodeEdit, self).setReadOnly(read_only) from pyqode.core.panels import ReadOnlyPanel try: panel = self.panels.get(ReadOnlyPanel) except KeyError: self.panels.append( ReadOnlyPanel(), ReadOnlyPanel.Position.TOP) else: panel.setVisible(read_only) def get_context_menu(self): """ Gets the editor context menu. :return: QMenu """ mnu = QtWidgets.QMenu() mnu.addActions(self._actions) mnu.addSeparator() for menu in self._menus: mnu.addMenu(menu) return mnu def _show_context_menu(self, point): """ Shows the context menu """ tc = self.textCursor() nc = self.cursorForPosition(point) if not nc.position() in range(tc.selectionStart(), tc.selectionEnd()): self.setTextCursor(nc) self._mnu = self.get_context_menu() if len(self._mnu.actions()) > 1 and self.show_context_menu: self._mnu.popup(self.mapToGlobal(point)) def _set_whitespaces_flags(self, show): """ Sets show white spaces flag """ doc = self.document() options = doc.defaultTextOption() if show: options.setFlags(options.flags() | QtGui.QTextOption.ShowTabsAndSpaces) else: options.setFlags( options.flags() & ~QtGui.QTextOption.ShowTabsAndSpaces) doc.setDefaultTextOption(options) def _init_actions(self, create_standard_actions): """ Init context menu action """ menu_advanced = QtWidgets.QMenu(_('Advanced')) self.add_menu(menu_advanced) self._sub_menus = { 'Advanced': menu_advanced } if create_standard_actions: # Undo action = QtWidgets.QAction(_('Undo'), self) action.setShortcut('Ctrl+Z') action.setIcon(icons.icon( 'edit-undo', ':/pyqode-icons/rc/edit-undo.png', 'fa.undo')) action.triggered.connect(self.undo) self.undoAvailable.connect(action.setVisible) action.setVisible(False) self.add_action(action, sub_menu=None) self.action_undo = action # Redo action = QtWidgets.QAction(_('Redo'), self) action.setShortcut('Ctrl+Y') action.setIcon(icons.icon( 'edit-redo', ':/pyqode-icons/rc/edit-redo.png', 'fa.repeat')) action.triggered.connect(self.redo) self.redoAvailable.connect(action.setVisible) action.setVisible(False) self.add_action(action, sub_menu=None) self.action_redo = action # Copy action = QtWidgets.QAction(_('Copy'), self) action.setShortcut(QtGui.QKeySequence.Copy) action.setIcon(icons.icon( 'edit-copy', ':/pyqode-icons/rc/edit-copy.png', 'fa.copy')) action.triggered.connect(self.copy) self.add_action(action, sub_menu=None) self.action_copy = action # cut action = QtWidgets.QAction(_('Cut'), self) action.setShortcut(QtGui.QKeySequence.Cut) action.setIcon(icons.icon( 'edit-cut', ':/pyqode-icons/rc/edit-cut.png', 'fa.cut')) action.triggered.connect(self.cut) self.add_action(action, sub_menu=None) self.action_cut = action # paste action = QtWidgets.QAction(_('Paste'), self) action.setShortcut(QtGui.QKeySequence.Paste) action.setIcon(icons.icon( 'edit-paste', ':/pyqode-icons/rc/edit-paste.png', 'fa.paste')) action.triggered.connect(self.paste) self.add_action(action, sub_menu=None) self.action_paste = action # duplicate line action = QtWidgets.QAction(_('Duplicate line'), self) action.setShortcut('Ctrl+D') action.triggered.connect(self.duplicate_line) self.add_action(action, sub_menu=None) self.action_duplicate_line = action # select all action = QtWidgets.QAction(_('Select all'), self) action.setShortcut(QtGui.QKeySequence.SelectAll) action.triggered.connect(self.selectAll) self.action_select_all = action self.add_action(self.action_select_all, sub_menu=None) self.add_separator(sub_menu=None) if create_standard_actions: # indent action = QtWidgets.QAction(_('Indent'), self) action.setShortcut('Tab') action.setIcon(icons.icon( 'format-indent-more', ':/pyqode-icons/rc/format-indent-more.png', 'fa.indent')) action.triggered.connect(self.indent) self.add_action(action) self.action_indent = action # unindent action = QtWidgets.QAction(_('Un-indent'), self) action.setShortcut('Shift+Tab') action.setIcon(icons.icon( 'format-indent-less', ':/pyqode-icons/rc/format-indent-less.png', 'fa.dedent')) action.triggered.connect(self.un_indent) self.add_action(action) self.action_un_indent = action self.add_separator() # goto action = QtWidgets.QAction(_('Go to line'), self) action.setShortcut('Ctrl+G') action.setIcon(icons.icon( 'go-jump', ':/pyqode-icons/rc/goto-line.png', 'fa.share')) action.triggered.connect(self.goto_line) self.add_action(action) self.action_goto_line = action def _init_settings(self): """ Init setting """ self._show_whitespaces = False self._tab_length = 4 self._use_spaces_instead_of_tabs = True self.setTabStopWidth(self._tab_length * self.fontMetrics().width(" ")) self._set_whitespaces_flags(self._show_whitespaces) def _init_style(self): """ Inits style options """ self._background = QtGui.QColor('white') self._foreground = QtGui.QColor('black') self._whitespaces_foreground = QtGui.QColor('light gray') app = QtWidgets.QApplication.instance() self._sel_background = app.palette().highlight().color() self._sel_foreground = app.palette().highlightedText().color() self._font_size = 10 self.font_name = "" def _update_visible_blocks(self, *args): """ Updates the list of visible blocks """ self._visible_blocks[:] = [] block = self.firstVisibleBlock() block_nbr = block.blockNumber() top = int(self.blockBoundingGeometry(block).translated( self.contentOffset()).top()) bottom = top + int(self.blockBoundingRect(block).height()) ebottom_top = 0 ebottom_bottom = self.height() while block.isValid(): visible = (top >= ebottom_top and bottom <= ebottom_bottom) if not visible: break if block.isVisible(): self._visible_blocks.append((top, block_nbr, block)) block = block.next() top = bottom bottom = top + int(self.blockBoundingRect(block).height()) block_nbr = block.blockNumber() def _on_text_changed(self): """ Adjust dirty flag depending on editor's content """ if not self._cleaning: ln = TextHelper(self).cursor_position()[0] self._modified_lines.add(ln) def _reset_stylesheet(self): """ Resets stylesheet""" self.setFont(QtGui.QFont(self._font_family, self._font_size + self._zoom_level)) flg_stylesheet = hasattr(self, '_flg_stylesheet') if QtWidgets.QApplication.instance().styleSheet() or flg_stylesheet: self._flg_stylesheet = True # On Window, if the application once had a stylesheet, we must # keep on using a stylesheet otherwise strange colors appear # see https://github.com/OpenCobolIDE/OpenCobolIDE/issues/65 # Also happen on plasma 5 try: plasma = os.environ['DESKTOP_SESSION'] == 'plasma' except KeyError: plasma = False if sys.platform == 'win32' or plasma: self.setStyleSheet('''QPlainTextEdit { background-color: %s; color: %s; } ''' % (self.background.name(), self.foreground.name())) else: # on linux/osx we just have to set an empty stylesheet to # cancel any previous stylesheet and still keep a correct # style for scrollbars self.setStyleSheet('') else: p = self.palette() p.setColor(QtGui.QPalette.Base, self.background) p.setColor(QtGui.QPalette.Text, self.foreground) p.setColor(QtGui.QPalette.Highlight, self.selection_background) p.setColor(QtGui.QPalette.HighlightedText, self.selection_foreground) self.setPalette(p) self.repaint() def _do_home_key(self, event=None, select=False): """ Performs home key action """ # get nb char to first significative char delta = (self.textCursor().positionInBlock() - TextHelper(self).line_indent()) cursor = self.textCursor() move = QtGui.QTextCursor.MoveAnchor if select: move = QtGui.QTextCursor.KeepAnchor if delta > 0: cursor.movePosition(QtGui.QTextCursor.Left, move, delta) else: cursor.movePosition(QtGui.QTextCursor.StartOfBlock, move) self.setTextCursor(cursor) if event: event.accept() def _emit_dirty_changed(self, state): self.dirty_changed.emit(state) for c in self.clones: c.dirty_changed.emit(state) Turing-0.11-beta/pyqode/core/api/decoration.py000066400000000000000000000152341331472757200213370ustar00rootroot00000000000000""" This module contains the text decoration API. """ from pyqode.qt import QtWidgets, QtCore, QtGui class TextDecoration(QtWidgets.QTextEdit.ExtraSelection): """ Helper class to quickly create a text decoration. The text decoration is an utility class that adds a few utility methods to QTextEdit.ExtraSelection. In addition to the helper methods, a tooltip can be added to a decoration. (useful for errors markers and so on...) Text decoration expose a **clicked** signal stored in a separate QObject: :attr:`pyqode.core.api.TextDecoration.Signals` .. code-block:: python deco = TextDecoration() deco.signals.clicked.connect(a_slot) def a_slot(decoration): print(decoration) """ class Signals(QtCore.QObject): """ Holds the signals for a TextDecoration (since we cannot make it a QObject, we need to store its signals in an external QObject). """ #: Signal emitted when a TextDecoration has been clicked. clicked = QtCore.Signal(object) def __init__(self, cursor_or_bloc_or_doc, start_pos=None, end_pos=None, start_line=None, end_line=None, draw_order=0, tooltip=None, full_width=False): """ Creates a text decoration. .. note:: start_pos/end_pos and start_line/end_line pairs let you easily specify the selected text. You should use one pair or the other or they will conflict between each others. If you don't specify any values, the selection will be based on the cursor. :param cursor_or_bloc_or_doc: Reference to a valid QTextCursor/QTextBlock/QTextDocument :param start_pos: Selection start position :param end_pos: Selection end position :param start_line: Selection start line. :param end_line: Selection end line. :param draw_order: The draw order of the selection, highest values will appear on top of the lowest values. :param tooltip: An optional tooltips that will be automatically shown when the mouse cursor hover the decoration. :param full_width: True to select the full line width. .. note:: Use the cursor selection if startPos and endPos are none. """ super(TextDecoration, self).__init__() self.signals = self.Signals() self.draw_order = draw_order self.tooltip = tooltip self.cursor = QtGui.QTextCursor(cursor_or_bloc_or_doc) if full_width: self.set_full_width(full_width) if start_pos is not None: self.cursor.setPosition(start_pos) if end_pos is not None: self.cursor.setPosition(end_pos, QtGui.QTextCursor.KeepAnchor) if start_line is not None: self.cursor.movePosition(self.cursor.Start, self.cursor.MoveAnchor) self.cursor.movePosition(self.cursor.Down, self.cursor.MoveAnchor, start_line) if end_line is not None: self.cursor.movePosition(self.cursor.Down, self.cursor.KeepAnchor, end_line - start_line) def contains_cursor(self, cursor): """ Checks if the textCursor is in the decoration :param cursor: The text cursor to test :type cursor: QtGui.QTextCursor :returns: True if the cursor is over the selection """ start = self.cursor.selectionStart() end = self.cursor.selectionEnd() if cursor.atBlockEnd(): end -= 1 return start <= cursor.position() <= end def set_as_bold(self): """ Uses bold text """ self.format.setFontWeight(QtGui.QFont.Bold) def set_foreground(self, color): """ Sets the foreground color. :param color: Color :type color: QtGui.QColor """ self.format.setForeground(color) def set_background(self, brush): """ Sets the background brush. :param brush: Brush :type brush: QtGui.QBrush """ self.format.setBackground(brush) def set_outline(self, color): """ Uses an outline rectangle. :param color: Color of the outline rect :type color: QtGui.QColor """ self.format.setProperty(QtGui.QTextFormat.OutlinePen, QtGui.QPen(color)) def select_line(self): """ Select the entire line but starts at the first non whitespace character and stops at the non-whitespace character. :return: """ self.cursor.movePosition(self.cursor.StartOfBlock) text = self.cursor.block().text() lindent = len(text) - len(text.lstrip()) self.cursor.setPosition(self.cursor.block().position() + lindent) self.cursor.movePosition(self.cursor.EndOfBlock, self.cursor.KeepAnchor) def set_full_width(self, flag=True, clear=True): """ Enables FullWidthSelection (the selection does not stops at after the character instead it goes up to the right side of the widget). :param flag: True to use full width selection. :type flag: bool :param clear: True to clear any previous selection. Default is True. :type clear: bool """ if clear: self.cursor.clearSelection() self.format.setProperty(QtGui.QTextFormat.FullWidthSelection, flag) def set_as_underlined(self, color=QtCore.Qt.blue): """ Underlines the text :param color: underline color. """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) self.format.setUnderlineColor(color) def set_as_spell_check(self, color=QtCore.Qt.blue): """ Underlines text as a spellcheck error. :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.SpellCheckUnderline) self.format.setUnderlineColor(color) def set_as_error(self, color=QtCore.Qt.red): """ Highlights text as a syntax error. :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.WaveUnderline) self.format.setUnderlineColor(color) def set_as_warning(self, color=QtGui.QColor("orange")): """ Highlights text as a syntax warning :param color: Underline color :type color: QtGui.QColor """ self.format.setUnderlineStyle( QtGui.QTextCharFormat.WaveUnderline) self.format.setUnderlineColor(color) Turing-0.11-beta/pyqode/core/api/encodings.py000066400000000000000000000121171331472757200211560ustar00rootroot00000000000000""" This module contains the list of possible encodings, taken from the standard library documentation: https://docs.python.org/3.4/library/codecs.html#standard-encodings """ #: Encodings map, map a codec name to a an alias/language pair.#: ENCODINGS_MAP = { "ascii": ("US-ASCII", "English"), "big5": ("Big5", "Chinese traditional"), "big5hkscs": ("Big5-HKSCS", "Chinese traditional"), "cp037": ("IBM037", "English"), "cp424": ("IBM242", "Hebrew"), "cp437": ("IBM437", "English"), "cp500": ("IBM500", "Western"), "cp737": ("IBM737", "Greek"), "cp775": ("IBM775", "Baltic"), "cp850": ("IBM850", "Western"), "cp852": ("IBM852", "Central European"), "cp855": ("IBM855", "Cyrillic"), "cp856": ("IBM856", "Hebrew"), "cp857": ("IBM857", "Turkish"), "cp860": ("IBM860", "Portugese"), "cp861": ("IBM861", "Icelandic"), "cp862": ("IBM862", "Hebrew"), "cp863": ("IBM863", "Canadian"), "cp864": ("IBM864", "Arabic"), "cp865": ("IBM865", "Nordic"), "cp866": ("IBM866", "Russian"), "cp869": ("IBM869", "Greek"), "cp874": ("IBM874", "Thai"), "cp875": ("IBM875", "Greek"), "cp932": ("IBM932", "Japanese"), "cp949": ("IBM949", "Korean"), "cp950": ("IBM950", "Chinese traditional"), "cp1006": ("IBM1006", "Urdu"), "cp1026": ("IBM1026", "Turkish"), "cp1140": ("IBM1140", "Western"), "cp1250": ("windows-1250", "Central European"), "cp1251": ("windows-1251", "Cyrillic"), "cp1252": ("windows-1252", "Western"), "cp1253": ("windows-1253", "Greek"), "cp1254": ("windows-1254", " Turkish"), "cp1255": ("windows-1255", "Hebrew"), "cp1256": ("windows-1256", " Arabic"), "cp1257": ("windows-1257", "Baltic"), "cp1258": ("windows-1258", "Vietnamese"), "euc_jp": ("EUC-JP", "Japanese"), "euc_jis_2004": ("EUC-JIS-2004", "Japanese"), "euc_jisx0213": ("EUC-JISX0213", "Japanese"), "euc_kr": ("EUC-KR", "Korean"), "gb2312": ("GB2312", "Chinese simplified"), "gbk": ("GBK", "Chinese unified"), "gb18030": ("GB18030", "Chinese unified"), "hz": ("HZ", "Chinese simplified"), "iso2022_jp": ("ISO-2022-JP", "Japanese"), "iso2022_jp_1": ("ISO-2022-JP-1", "Japanese"), "iso2022_jp_2": ("ISO-2022-JP-2", "Japanese"), "iso2022_jp_2004": ("ISO-2022-JP-2004", "Japanese"), "iso2022_jp_3": ("ISO-2022-JP-3", "Japanese"), "iso2022_jp_ext": ("ISO-2022-JP-EXT", "Japanese"), "iso2022_kr": ("ISO-2022-KR", "Korean"), "latin_1": ("ISO-8859-1", "Western"), "iso8859_2": ("ISO-8859-2", "Central European"), "iso8859_3": ("ISO-8859-3", "South European"), "iso8859_4": ("ISO-8859-4", "Baltic"), "iso8859_5": ("ISO-8859-5", "Cyrillic"), "iso8859_6": ("ISO-8859-6", "Arabic"), "iso8859_7": ("ISO-8859-7", "Greek"), "iso8859_8": ("ISO-8859-8", "Hebrew"), "iso8859_9": ("ISO-8859-9", "Turkish"), "iso8859_10": ("ISO-8859-10", "Nordic"), "iso8859_13": ("ISO-8859-13", "Baltic"), "iso8859_14": ("ISO-8859-14", "Celtic"), "iso8859_15": ("ISO-8859-15", "Western"), "johab": ("Johab", "Korean"), "koi8_r": ("KOI8-R", "Russian"), "koi8_u": ("KOI8-U", "Ukrainian"), "mac_cyrillic": ("MacCyrillic", "Cyrillic"), "mac_greek": ("MacGreek", "Greek"), "mac_iceland": ("MacIceland", "Icelandic"), "mac_latin2": ("MacCentralEurope", "Central European"), "mac_roman": ("MacRoman", "Western"), "mac_turkish": ("MacTurkish", "Turkish"), "ptcp154": ("PTCP154", "Cyrillic Asian"), "shift_jis": ("Shift_JIS", "Japanese"), "shift_jis_2004": ("Shift_JIS-2004", "Japanese"), "shift_jisx0213": ("Shift_JISX0213", "Japanese"), "utf_16": ("UTF-16", "Unicode"), "utf_16_be": ("UTF-16BE", "Unicode"), "utf_16_le": ("UTF-16LE", "Unicode"), "utf_7": ("UTF-7", "Unicode"), "utf_8": ("UTF-8", "Unicode") } def convert_to_codec_key(value): """ Normalize code key value (encoding codecs must be lower case and must not contain any dashes). :param value: value to convert. """ if not value: # fallback to utf-8 value = 'UTF-8' # UTF-8 -> utf_8 converted = value.replace('-', '_').lower() # fix some corner cases, see https://github.com/pyQode/pyQode/issues/11 all_aliases = { 'ascii': [ 'us_ascii', 'us', 'ansi_x3.4_1968', 'cp367', 'csascii', 'ibm367', 'iso_ir_6', 'iso646_us', 'iso_646.irv:1991' ], 'utf-7': [ 'csunicode11utf7', 'unicode_1_1_utf_7', 'unicode_2_0_utf_7', 'x_unicode_1_1_utf_7', 'x_unicode_2_0_utf_7', ], 'utf_8': [ 'unicode_1_1_utf_8', 'unicode_2_0_utf_8', 'x_unicode_1_1_utf_8', 'x_unicode_2_0_utf_8', ], 'utf_16': [ 'utf_16le', 'ucs_2', 'unicode', 'iso_10646_ucs2' ], 'latin_1': ['iso_8859_1'] } for key, aliases in all_aliases.items(): if converted in aliases: return key return converted Turing-0.11-beta/pyqode/core/api/folding.py000066400000000000000000000320361331472757200206310ustar00rootroot00000000000000""" This module contains the code folding API. """ from __future__ import print_function import logging import sys from pyqode.core.api.utils import TextBlockHelper def print_tree(editor, file=sys.stdout, print_blocks=False): """ Prints the editor fold tree to stdout, for debugging purpose. :param editor: CodeEdit instance. :param file: file handle where the tree will be printed. Default is stdout. :param print_blocks: True to print all blocks, False to only print blocks that are fold triggers """ block = editor.document().firstBlock() while block.isValid(): trigger = TextBlockHelper().is_fold_trigger(block) trigger_state = TextBlockHelper().is_collapsed(block) lvl = TextBlockHelper().get_fold_lvl(block) visible = 'V' if block.isVisible() else 'I' if trigger: trigger = '+' if trigger_state else '-' print('l%d:%s%s%s' % (block.blockNumber() + 1, lvl, trigger, visible), file=file) elif print_blocks: print('l%d:%s%s' % (block.blockNumber() + 1, lvl, visible), file=file) block = block.next() def _logger(): return logging.getLogger(__name__) class FoldDetector(object): """ Base class for fold detectors. A fold detector takes care of detecting the text blocks fold levels that are used by the FoldingPanel to render the document outline. To use a FoldDetector, simply set it on a syntax_highlighter:: editor.syntax_highlighter.fold_detector = my_fold_detector """ @property def editor(self): if self._editor: return self._editor() return None def __init__(self): #: Reference to the parent editor, automatically set by the syntax #: highlighter before process any block. self._editor = None #: Fold level limit, any level greater or equal is skipped. #: Default is sys.maxsize (i.e. all levels are accepted) self.limit = sys.maxsize def process_block(self, current_block, previous_block, text): """ Processes a block and setup its folding info. This method call ``detect_fold_level`` and handles most of the tricky corner cases so that all you have to do is focus on getting the proper fold level foreach meaningful block, skipping the blank ones. :param current_block: current block to process :param previous_block: previous block :param text: current block text """ prev_fold_level = TextBlockHelper.get_fold_lvl(previous_block) if text.strip() == '': # blank line always have the same level as the previous line fold_level = prev_fold_level else: fold_level = self.detect_fold_level( previous_block, current_block) if fold_level > self.limit: fold_level = self.limit prev_fold_level = TextBlockHelper.get_fold_lvl(previous_block) if fold_level > prev_fold_level: # apply on previous blank lines block = current_block.previous() while block.isValid() and block.text().strip() == '': TextBlockHelper.set_fold_lvl(block, fold_level) block = block.previous() TextBlockHelper.set_fold_trigger( block, True) # update block fold level if text.strip(): TextBlockHelper.set_fold_trigger( previous_block, fold_level > prev_fold_level) TextBlockHelper.set_fold_lvl(current_block, fold_level) # user pressed enter at the beginning of a fold trigger line # the previous blank line will keep the trigger state and the new line # (which actually contains the trigger) must use the prev state ( # and prev state must then be reset). prev = current_block.previous() # real prev block (may be blank) if (prev and prev.isValid() and prev.text().strip() == '' and TextBlockHelper.is_fold_trigger(prev)): # prev line has the correct trigger fold state TextBlockHelper.set_collapsed( current_block, TextBlockHelper.is_collapsed( prev)) # make empty line not a trigger TextBlockHelper.set_fold_trigger(prev, False) TextBlockHelper.set_collapsed(prev, False) def detect_fold_level(self, prev_block, block): """ Detects the block fold level. The default implementation is based on the block **indentation**. .. note:: Blocks fold level must be contiguous, there cannot be a difference greater than 1 between two successive block fold levels. :param prev_block: first previous **non-blank** block or None if this is the first line of the document :param block: The block to process. :return: Fold level """ raise NotImplementedError class IndentFoldDetector(FoldDetector): """ Simple fold detector based on the line indentation level """ def detect_fold_level(self, prev_block, block): """ Detects fold level by looking at the block indentation. :param prev_block: previous text block :param block: current block to highlight """ text = block.text() # round down to previous indentation guide to ensure contiguous block # fold level evolution. return (len(text) - len(text.lstrip())) // self.editor.tab_length class CharBasedFoldDetector(FoldDetector): """ Fold detector based on trigger charachters (e.g. a { increase fold level and } decrease fold level). """ def __init__(self, open_chars=('{'), close_chars=('}')): super(CharBasedFoldDetector, self).__init__() self.open_chars = open_chars self.close_chars = close_chars def detect_fold_level(self, prev_block, block): if prev_block: prev_text = prev_block.text().strip() else: prev_text = '' text = block.text().strip() if text in self.open_chars: return TextBlockHelper.get_fold_lvl(prev_block) + 1 if prev_text.endswith(self.open_chars) and prev_text not in \ self.open_chars: return TextBlockHelper.get_fold_lvl(prev_block) + 1 if self.close_chars in prev_text: return TextBlockHelper.get_fold_lvl(prev_block) - 1 return TextBlockHelper.get_fold_lvl(prev_block) class FoldScope(object): """ Utility class for manipulating fold-able code scope (fold/unfold, get range, child and parent scopes and so on). A scope is built from a fold trigger (QTextBlock). """ @property def trigger_level(self): """ Returns the fold level of the block trigger :return: """ return TextBlockHelper.get_fold_lvl(self._trigger) @property def scope_level(self): """ Returns the fold level of the first block of the foldable scope ( just after the trigger) :return: """ return TextBlockHelper.get_fold_lvl(self._trigger.next()) @property def collapsed(self): """ Returns True if the block is collasped, False if it is expanded. """ return TextBlockHelper.is_collapsed(self._trigger) def __init__(self, block): """ Create a fold-able region from a fold trigger block. :param block: The block **must** be a fold trigger. :type block: QTextBlock :raise: `ValueError` if the text block is not a fold trigger. """ if not TextBlockHelper.is_fold_trigger(block): raise ValueError('Not a fold trigger') self._trigger = block def get_range(self, ignore_blank_lines=True): """ Gets the fold region range (start and end line). .. note:: Start line do no encompass the trigger line. :param ignore_blank_lines: True to ignore blank lines at the end of the scope (the method will rewind to find that last meaningful block that is part of the fold scope). :returns: tuple(int, int) """ ref_lvl = self.trigger_level first_line = self._trigger.blockNumber() block = self._trigger.next() last_line = block.blockNumber() lvl = self.scope_level if ref_lvl == lvl: # for zone set programmatically such as imports # in pyqode.python ref_lvl -= 1 while (block.isValid() and TextBlockHelper.get_fold_lvl(block) > ref_lvl): last_line = block.blockNumber() block = block.next() if ignore_blank_lines and last_line: block = block.document().findBlockByNumber(last_line) while block.blockNumber() and block.text().strip() == '': block = block.previous() last_line = block.blockNumber() return first_line, last_line def fold(self): """ Folds the region. """ start, end = self.get_range() TextBlockHelper.set_collapsed(self._trigger, True) block = self._trigger.next() while block.blockNumber() <= end and block.isValid(): block.setVisible(False) block = block.next() def unfold(self): """ Unfolds the region. """ # set all direct child blocks which are not triggers to be visible self._trigger.setVisible(True) TextBlockHelper.set_collapsed(self._trigger, False) for block in self.blocks(ignore_blank_lines=False): block.setVisible(True) if TextBlockHelper.is_fold_trigger(block): TextBlockHelper.set_collapsed(block, False) def blocks(self, ignore_blank_lines=True): """ This generator generates the list of blocks directly under the fold region. This list does not contain blocks from child regions. :param ignore_blank_lines: True to ignore last blank lines. """ start, end = self.get_range(ignore_blank_lines=ignore_blank_lines) block = self._trigger.next() while block.blockNumber() <= end and block.isValid(): yield block block = block.next() def child_regions(self): """ This generator generates the list of direct child regions. """ start, end = self.get_range() block = self._trigger.next() ref_lvl = self.scope_level while block.blockNumber() <= end and block.isValid(): lvl = TextBlockHelper.get_fold_lvl(block) trigger = TextBlockHelper.is_fold_trigger(block) if lvl == ref_lvl and trigger: yield FoldScope(block) block = block.next() def parent(self): """ Return the parent scope. :return: FoldScope or None """ if TextBlockHelper.get_fold_lvl(self._trigger) > 0 and \ self._trigger.blockNumber(): block = self._trigger.previous() ref_lvl = self.trigger_level - 1 while (block.blockNumber() and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): block = block.previous() try: return FoldScope(block) except ValueError: return None return None def text(self, max_lines=sys.maxsize): """ Get the scope text, with a possible maximum number of lines. :param max_lines: limit the number of lines returned to a maximum. :return: str """ ret_val = [] block = self._trigger.next() _, end = self.get_range() while (block.isValid() and block.blockNumber() <= end and len(ret_val) < max_lines): ret_val.append(block.text()) block = block.next() return '\n'.join(ret_val) @staticmethod def find_parent_scope(block): """ Find parent scope, if the block is not a fold trigger. :param block: block from which the research will start """ # if we moved up for more than n lines, just give up otherwise this # would take too much time. limit = 5000 counter = 0 original = block if not TextBlockHelper.is_fold_trigger(block): # search level of next non blank line while block.text().strip() == '' and block.isValid(): block = block.next() ref_lvl = TextBlockHelper.get_fold_lvl(block) - 1 block = original while (block.blockNumber() and counter < limit and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): counter += 1 block = block.previous() if counter < limit: return block return None def __repr__(self): return 'FoldScope(start=%r, end=%d)' % self.get_range() Turing-0.11-beta/pyqode/core/api/manager.py000066400000000000000000000022661331472757200206230ustar00rootroot00000000000000""" This module contains the Manager API. """ import weakref class Manager(object): """ A manager manages a specific aspect of a CodeEdit instance: - backend management (start/stop server, request work,...) - modes management - panels management and drawing - file manager Managers are typically created internally when you create a CodeEdit. You interact with them later, e.g. when you want to start the backend process or when you want to install/retrieve a mode or a panel. :: editor = CodeEdit() # use the backend manager to start the backend server editor.backend.start(...) editor.backend.send_request(...) # use the panels controller to install a panel editor.panels.install(MyPanel(), MyPanel.Position.Right) my_panel = editor.panels.get(MyPanel) # and so on """ @property def editor(self): """ Return a reference to the parent code edit widget. """ return self._editor() def __init__(self, editor): """ :param editor: CodeEdit instance to control """ self._editor = weakref.ref(editor) Turing-0.11-beta/pyqode/core/api/mode.py000066400000000000000000000071161331472757200201340ustar00rootroot00000000000000""" This module contains the editor extension API. """ import logging def _logger(): return logging.getLogger(__name__) class Mode(object): """ Base class for editor extensions. An extension is a "thing" that can be installed on an editor to add new behaviours or to modify its appearance. A mode is added to an editor by using the ModesManager/PanelsManager: - :meth:`pyqode.core.api.CodeEdit.modes.append` or - :meth:`pyqode.core.api.CodeEdit.panels.append` Subclasses may/should override the following methods: - :meth:`pyqode.core.api.Mode.on_install` - :meth:`pyqode.core.api.Mode.on_uninstall` - :meth:`pyqode.core.api.Mode.on_state_changed` ..warning: The mode will be identified by its class name, this means that **there cannot be two modes of the same type on the same editor instance!** """ @property def editor(self): """ Returns a reference to the parent editor widget. **READ ONLY** :rtype: pyqode.core.api.code_edit.CodeEdit """ if self._editor is not None: return self._editor else: return None @property def enabled(self): """ Tells if the mode is enabled, :meth:`pyqode.core.api.Mode.on_state_changed` will be called as soon as the mode state changed. :type: bool """ return self._enabled @enabled.setter def enabled(self, enabled): if enabled != self._enabled: self._enabled = enabled self.on_state_changed(enabled) def __init__(self): #: Mode name/identifier. :class:`pyqode.core.api.CodeEdit` uses # that as the attribute key when you install a mode. self.name = self.__class__.__name__ #: Mode description self.description = self.__doc__ self._enabled = False self._editor = None self._on_close = False def __del__(self): _logger().log(5, '%s.__del__', type(self)) def on_install(self, editor): """ Installs the extension on the editor. :param editor: editor widget instance :type editor: pyqode.core.api.code_edit.CodeEdit .. note:: This method is called by editor when you install a Mode. You should never call it yourself, even in a subclasss. .. warning:: Don't forget to call **super** when subclassing """ self._editor = editor self.enabled = True def on_uninstall(self): """ Uninstalls the mode from the editor. """ self._on_close = True self.enabled = False self._editor = None def on_state_changed(self, state): """ Called when the enable state has changed. This method does not do anything, you may override it if you need to connect/disconnect to the editor's signals (connect when state is true and disconnect when it is false). :param state: True = enabled, False = disabled :type state: bool """ pass def clone_settings(self, original): """ Clone the settings from another mode (same class). This method is called when splitting an editor widget. :param original: other mode (must be the same class). .. note:: The base method does not do anything, you must implement this method for every new mode/panel (if you plan on using the split feature). You should also make sure any properties will be propagated to the clones. """ pass Turing-0.11-beta/pyqode/core/api/panel.py000066400000000000000000000073271331472757200203130ustar00rootroot00000000000000""" This module contains the panel API. """ import logging from pyqode.core.api.mode import Mode from pyqode.qt import QtWidgets, QtGui def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class Panel(QtWidgets.QWidget, Mode): """ Base class for editor panels. A panel is a mode and a QWidget. .. note:: Use enabled to disable panel actions and setVisible to change the visibility of the panel. """ class Position(object): """ Enumerates the possible panel positions """ #: Top margin TOP = 0 #: Left margin LEFT = 1 #: Right margin RIGHT = 2 #: Bottom margin BOTTOM = 3 @classmethod def iterable(cls): """ Returns possible positions as an iterable (list) """ return [cls.TOP, cls.LEFT, cls.RIGHT, cls.BOTTOM] @property def scrollable(self): """ A scrollable panel will follow the editor's scroll-bars. Left and right panels follow the vertical scrollbar. Top and bottom panels follow the horizontal scrollbar. :type: bool """ return self._scrollable @scrollable.setter def scrollable(self, value): self._scrollable = value def __init__(self, dynamic=False): Mode.__init__(self) QtWidgets.QWidget.__init__(self) #: Specifies whether the panel is dynamic. A dynamic panel is a panel #: that will be shown/hidden depending on the context. #: Dynamic panel should not appear in any GUI menu (e.g. no display #: in the panels menu of the notepad example). self.dynamic = dynamic #: Panel order into the zone it is installed to. This value is #: automatically set when installing the panel but it can be changed #: later (negative values can also be used). self.order_in_zone = -1 self._scrollable = False self._background_brush = None self._foreground_pen = None #: Position in the editor (top, left, right, bottom) self.position = -1 def on_install(self, editor): """ Extends :meth:`pyqode.core.api.Mode.on_install` method to set the editor instance as the parent widget. .. warning:: Don't forget to call **super** if you override this method! :param editor: editor instance :type editor: pyqode.core.api.CodeEdit """ Mode.on_install(self, editor) self.setParent(editor) self.setPalette(QtWidgets.QApplication.instance().palette()) self.setFont(QtWidgets.QApplication.instance().font()) self.editor.panels.refresh() self._background_brush = QtGui.QBrush(QtGui.QColor( self.palette().window().color())) self._foreground_pen = QtGui.QPen(QtGui.QColor( self.palette().windowText().color())) def paintEvent(self, event): # Fills the panel background using QPalette if self.isVisible(): # fill background self._background_brush = QtGui.QBrush(QtGui.QColor( self.palette().window().color())) self._foreground_pen = QtGui.QPen(QtGui.QColor( self.palette().windowText().color())) painter = QtGui.QPainter(self) painter.fillRect(event.rect(), self._background_brush) def setVisible(self, visible): """ Shows/Hides the panel Automatically call CodeEdit.refresh_panels. :param visible: Visible state """ _logger().log(5, '%s visibility changed', self.name) super(Panel, self).setVisible(visible) if self.editor: self.editor.panels.refresh() Turing-0.11-beta/pyqode/core/api/syntax_highlighter.py000066400000000000000000000317461331472757200231220ustar00rootroot00000000000000""" This module contains the syntax highlighter API. """ import logging import sys import time import weakref from pygments.styles import get_style_by_name, get_all_styles from pygments.token import Token, Punctuation from pygments.util import ClassNotFound from pyqode.core.api.mode import Mode from pyqode.core.api.utils import drift_color from pyqode.qt import QtGui, QtCore, QtWidgets def _logger(): return logging.getLogger(__name__) #: A sorted list of available pygments styles, for convenience PYGMENTS_STYLES = sorted(set(list(get_all_styles()) + ['darcula', 'qt'])) #: The list of color schemes keys (and their associated pygments token) COLOR_SCHEME_KEYS = { # editor background "background": None, # highlight color (used for caret line) "highlight": None, # normal text "normal": Token.Text, # any keyword "keyword": Token.Keyword, # namespace keywords (from ... import ... as) "namespace": Token.Keyword.Namespace, # type keywords "type": Token.Keyword.Type, # reserved keyword "keyword_reserved": Token.Keyword.Reserved, # any builtin name "builtin": Token.Name.Builtin, # any definition (class or function) "definition": Token.Name.Class, # any comment "comment": Token.Comment, # any string "string": Token.Literal.String, # any docstring (python docstring, c++ doxygen comment,...) "docstring": Token.Literal.String.Doc, # any number "number": Token.Number, # any instance variable "instance": Token.Name.Variable, # whitespace color "whitespace": Token.Text.Whitespace, # any tag name (e.g. shinx doctags,...) 'tag': Token.Name.Tag, # self paramter (or this in other languages) 'self': Token.Name.Builtin.Pseudo, # python decorators 'decorator': Token.Name.Decorator, # colors of punctuation characters 'punctuation': Punctuation, # name or keyword constant 'constant': Token.Name.Constant, # function definition 'function': Token.Name.Function, # operator 'operator': Token.Operator, # operator words (and, not) 'operator_word': Token.Operator.Word } class ColorScheme(object): """ Translates a pygments style into a dictionary of colors associated with a style key. See :attr:`pyqode.core.api.syntax_highligter.COLOR_SCHEM_KEYS` for the available keys. """ @property def name(self): """ Name of the color scheme, this is usually the name of the associated pygments style. """ return self._name @property def background(self): """ Gets the background color. :return: """ return self.formats['background'].background().color() @property def highlight(self): """ Gets the highlight color. :return: """ return self.formats['highlight'].background().color() def __init__(self, style): """ :param style: name of the pygments style to load """ self._name = style self._brushes = {} #: Dictionary of formats colors (keys are the same as for #: :attr:`pyqode.core.api.COLOR_SCHEME_KEYS` self.formats = {} try: style = get_style_by_name(style) except ClassNotFound: if style == 'darcula': from pyqode.core.styles.darcula import DarculaStyle style = DarculaStyle else: from pyqode.core.styles.qt import QtStyle style = QtStyle self._load_formats_from_style(style) def _load_formats_from_style(self, style): # background self.formats['background'] = self._get_format_from_color( style.background_color) # highlight self.formats['highlight'] = self._get_format_from_color( style.highlight_color) for key, token in COLOR_SCHEME_KEYS.items(): if token and key: self.formats[key] = self._get_format_from_style(token, style) def _get_format_from_color(self, color): fmt = QtGui.QTextCharFormat() fmt.setBackground(self._get_brush(color)) return fmt def _get_format_from_style(self, token, style): """ Returns a QTextCharFormat for token by reading a Pygments style. """ result = QtGui.QTextCharFormat() items = list(style.style_for_token(token).items()) for key, value in items: if value is None and key == 'color': # make sure to use a default visible color for the foreground # brush value = drift_color(self.background, 1000).name() if value: if key == 'color': result.setForeground(self._get_brush(value)) elif key == 'bgcolor': result.setBackground(self._get_brush(value)) elif key == 'bold': result.setFontWeight(QtGui.QFont.Bold) elif key == 'italic': result.setFontItalic(value) elif key == 'underline': result.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) elif key == 'sans': result.setFontStyleHint(QtGui.QFont.SansSerif) elif key == 'roman': result.setFontStyleHint(QtGui.QFont.Times) elif key == 'mono': result.setFontStyleHint(QtGui.QFont.TypeWriter) if token in [Token.Literal.String, Token.Literal.String.Doc, Token.Comment]: # mark strings, comments and docstrings regions for further queries result.setObjectType(result.UserObject) return result def _get_brush(self, color): """ Returns a brush for the color. """ result = self._brushes.get(color) if result is None: qcolor = self._get_color(color) result = QtGui.QBrush(qcolor) self._brushes[color] = result return result @staticmethod def _get_color(color): """ Returns a QColor built from a Pygments color string. """ color = str(color).replace("#", "") qcolor = QtGui.QColor() qcolor.setRgb(int(color[:2], base=16), int(color[2:4], base=16), int(color[4:6], base=16)) return qcolor class SyntaxHighlighter(QtGui.QSyntaxHighlighter, Mode): """ Abstract base class for syntax highlighter modes. It fills up the document with our custom block data (fold levels, triggers,...). It **does not do any syntax highlighting**, that task is left to sublasses such as :class:`pyqode.core.modes.PygmentsSyntaxHighlighter`. Subclasses **must** override the :meth:`pyqode.core.api.SyntaxHighlighter.highlight_block` method to apply custom highlighting. .. note:: Since version 2.1 and for performance reasons, we store all our data in the block user state as a bit-mask. You should always use :class:`pyqode.core.api.TextBlockHelper` to retrieve or modify those data. """ #: Signal emitted at the start of highlightBlock. Parameters are the #: highlighter instance and the current text block block_highlight_started = QtCore.Signal(object, object) #: Signal emitted at the end of highlightBlock. Parameters are the #: highlighter instance and the current text block block_highlight_finished = QtCore.Signal(object, object) @property def formats(self): """ Returns the color shcme formats dict. """ return self._color_scheme.formats @property def color_scheme(self): """ Gets/Sets the color scheme of the syntax highlighter, this will trigger a rehighlight automatically. """ return self._color_scheme @color_scheme.setter def color_scheme(self, color_scheme): if isinstance(color_scheme, str): color_scheme = ColorScheme(color_scheme) if color_scheme.name != self._color_scheme.name: self._color_scheme = color_scheme self.refresh_editor(color_scheme) self.rehighlight() def refresh_editor(self, color_scheme): """ Refresh editor settings (background and highlight colors) when color scheme changed. :param color_scheme: new color scheme. """ self.editor.background = color_scheme.background self.editor.foreground = color_scheme.formats[ 'normal'].foreground().color() self.editor.whitespaces_foreground = color_scheme.formats[ 'whitespace'].foreground().color() try: mode = self.editor.modes.get('CaretLineHighlighterMode') except KeyError: pass else: mode.background = color_scheme.highlight mode.refresh() try: mode = self.editor.panels.get('FoldingPanel') except KeyError: pass else: mode.refresh_decorations(force=True) self.editor._reset_stylesheet() def __init__(self, parent, color_scheme=None): """ :param parent: parent document (QTextDocument) :param color_scheme: color scheme to use. """ QtGui.QSyntaxHighlighter.__init__(self, parent) Mode.__init__(self) if not color_scheme: color_scheme = ColorScheme('qt') self._color_scheme = color_scheme self._spaces_ptrn = QtCore.QRegExp(r'[ \t]+') #: Fold detector. Set it to a valid FoldDetector to get code folding #: to work. Default is None self.fold_detector = None self.WHITESPACES = QtCore.QRegExp(r'\s+') def on_state_changed(self, state): if self._on_close: return if state: self.setDocument(self.editor.document()) else: self.setDocument(None) def _highlight_whitespaces(self, text): index = self.WHITESPACES.indexIn(text, 0) while index >= 0: index = self.WHITESPACES.pos(0) length = len(self.WHITESPACES.cap(0)) self.setFormat(index, length, self.formats['whitespace']) index = self.WHITESPACES.indexIn(text, index + length) @staticmethod def _find_prev_non_blank_block(current_block): previous_block = (current_block.previous() if current_block.blockNumber() else None) # find the previous non-blank block while (previous_block and previous_block.blockNumber() and previous_block.text().strip() == ''): previous_block = previous_block.previous() return previous_block def highlightBlock(self, text): """ Highlights a block of text. Please do not override, this method. Instead you should implement :func:`pyqode.core.api.SyntaxHighlighter.highlight_block`. :param text: text to highlight. """ if not self.enabled: return current_block = self.currentBlock() previous_block = self._find_prev_non_blank_block(current_block) if self.editor: self.highlight_block(text, current_block) if self.editor.show_whitespaces: self._highlight_whitespaces(text) if self.fold_detector is not None: self.fold_detector._editor = weakref.ref(self.editor) self.fold_detector.process_block( current_block, previous_block, text) def highlight_block(self, text, block): """ Abstract method. Override this to apply syntax highlighting. :param text: Line of text to highlight. :param block: current block """ raise NotImplementedError() def rehighlight(self): """ Rehighlight the entire document, may be slow. """ start = time.time() QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.WaitCursor)) try: super(SyntaxHighlighter, self).rehighlight() except RuntimeError: # cloned widget, no need to rehighlight the same document twice ;) pass QtWidgets.QApplication.restoreOverrideCursor() end = time.time() _logger().debug('rehighlight duration: %fs' % (end - start)) def on_install(self, editor): super(SyntaxHighlighter, self).on_install(editor) self.refresh_editor(self.color_scheme) self.document().setParent(editor) self.setParent(editor) def clone_settings(self, original): self._color_scheme = original.color_scheme class TextBlockUserData(QtGui.QTextBlockUserData): """ Custom text block user data, mainly used to store checker messages and markers. """ def __init__(self): super(TextBlockUserData, self).__init__() #: List of checker messages associated with the block. self.messages = [] #: List of markers draw by a marker panel. self.markers = [] Turing-0.11-beta/pyqode/core/api/utils.py000066400000000000000000001130351331472757200203460ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains utility functions/classes. """ import functools import logging import weakref from pyqode.qt import QtCore, QtGui, QtWidgets def _logger(): """ Returns module logger """ return logging.getLogger(__name__) class memoized(object): """ Decorator. Caches a function's return value each time it is called. If called later with the same arguments, the cached value is returned (not reevaluated). """ def __init__(self, func): self.func = func self.cache = {} def __call__(self, *args): try: if args in self.cache: return self.cache[args] else: value = self.func(*args) self.cache[args] = value return value except TypeError: return self.func(*args) def __repr__(self): """ Return the function's docstring.""" return self.func.__doc__ def __get__(self, obj, objtype): """ Support instance methods. """ return functools.partial(self.__call__, obj) def drift_color(base_color, factor=110): """ Return color that is lighter or darker than the base color. If base_color.lightness is higher than 128, the returned color is darker otherwise is is lighter. :param base_color: The base color to drift from ;:param factor: drift factor (%) :return A lighter or darker color. """ base_color = QtGui.QColor(base_color) if base_color.lightness() > 128: return base_color.darker(factor) else: if base_color == QtGui.QColor('#000000'): return drift_color(QtGui.QColor('#101010'), factor + 20) else: return base_color.lighter(factor + 10) class DelayJobRunner(object): """ Utility class for running job after a certain delay. If a new request is made during this delay, the previous request is dropped and the timer is restarted for the new request. We use this to implement a cooldown effect that prevents jobs from being executed while the IDE is not idle. A job is a simple callable. """ def __init__(self, delay=500): """ :param delay: Delay to wait before running the job. This delay applies to all requests and cannot be changed afterwards. """ self._timer = QtCore.QTimer() self.delay = delay self._timer.timeout.connect(self._exec_requested_job) self._args = [] self._kwargs = {} self._job = lambda x: None def request_job(self, job, *args, **kwargs): """ Request a job execution. The job will be executed after the delay specified in the DelayJobRunner contructor elapsed if no other job is requested until then. :param job: job. :type job: callable :param args: job's position arguments :param kwargs: job's keyworded arguments """ self.cancel_requests() self._job = job self._args = args self._kwargs = kwargs self._timer.start(self.delay) def cancel_requests(self): """ Cancels pending requests. """ self._timer.stop() self._job = None self._args = None self._kwargs = None def _exec_requested_job(self): """ Execute the requested job after the timer has timeout. """ self._timer.stop() self._job(*self._args, **self._kwargs) class TextHelper(object): """ Text helper helps you manipulate the content of CodeEdit and extends the Qt text api for an easier usage. """ @property def _editor(self): try: return self._editor_ref() except TypeError: return self._editor_ref def __init__(self, editor): """ :param editor: The editor to work on. """ try: self._editor_ref = weakref.ref(editor) except TypeError: self._editor_ref = editor def goto_line(self, line, column=0, move=True): """ Moves the text cursor to the specified position.. :param line: Number of the line to go to (0 based) :param column: Optional column number. Default is 0 (start of line). :param move: True to move the cursor. False will return the cursor without setting it on the editor. :return: The new text cursor :rtype: QtGui.QTextCursor """ text_cursor = self._move_cursor_to(line) if column: text_cursor.movePosition(text_cursor.Right, text_cursor.MoveAnchor, column) if move: block = text_cursor.block() # unfold parent fold trigger if the block is collapsed try: folding_panel = self._editor.panels.get('FoldingPanel') except KeyError: pass else: from pyqode.core.api.folding import FoldScope if not block.isVisible(): block = FoldScope.find_parent_scope(block) if TextBlockHelper.is_collapsed(block): folding_panel.toggle_fold_trigger(block) self._editor.setTextCursor(text_cursor) return text_cursor def selected_text(self): """ Returns the selected text. """ return self._editor.textCursor().selectedText() def word_under_cursor(self, select_whole_word=False, text_cursor=None): """ Gets the word under cursor using the separators defined by :attr:`pyqode.core.api.CodeEdit.word_separators`. .. note: Instead of returning the word string, this function returns a QTextCursor, that way you may get more information than just the string. To get the word, just call ``selectedText`` on the returned value. :param select_whole_word: If set to true the whole word is selected, else the selection stops at the cursor position. :param text_cursor: Optional custom text cursor (e.g. from a QTextDocument clone) :returns: The QTextCursor that contains the selected word. """ editor = self._editor if not text_cursor: text_cursor = editor.textCursor() word_separators = editor.word_separators end_pos = start_pos = text_cursor.position() # select char by char until we are at the original cursor position. while not text_cursor.atStart(): text_cursor.movePosition( text_cursor.Left, text_cursor.KeepAnchor, 1) try: char = text_cursor.selectedText()[0] word_separators = editor.word_separators selected_txt = text_cursor.selectedText() if (selected_txt in word_separators and (selected_txt != "n" and selected_txt != "t") or char.isspace()): break # start boundary found except IndexError: break # nothing selectable start_pos = text_cursor.position() text_cursor.setPosition(start_pos) if select_whole_word: # select the resot of the word text_cursor.setPosition(end_pos) while not text_cursor.atEnd(): text_cursor.movePosition(text_cursor.Right, text_cursor.KeepAnchor, 1) char = text_cursor.selectedText()[0] selected_txt = text_cursor.selectedText() if (selected_txt in word_separators and (selected_txt != "n" and selected_txt != "t") or char.isspace()): break # end boundary found end_pos = text_cursor.position() text_cursor.setPosition(end_pos) # now that we habe the boundaries, we can select the text text_cursor.setPosition(start_pos) text_cursor.setPosition(end_pos, text_cursor.KeepAnchor) return text_cursor def word_under_mouse_cursor(self): """ Selects the word under the **mouse** cursor. :return: A QTextCursor with the word under mouse cursor selected. """ editor = self._editor text_cursor = editor.cursorForPosition(editor._last_mouse_pos) text_cursor = self.word_under_cursor(True, text_cursor) return text_cursor def cursor_position(self): """ Returns the QTextCursor position. The position is a tuple made up of the line number (0 based) and the column number (0 based). :return: tuple(line, column) """ return (self._editor.textCursor().blockNumber(), self._editor.textCursor().columnNumber()) def current_line_nbr(self): """ Returns the text cursor's line number. :return: Line number """ return self.cursor_position()[0] def current_column_nbr(self): """ Returns the text cursor's column number. :return: Column number """ return self.cursor_position()[1] def line_count(self): """ Returns the line count of the specified editor :return: number of lines in the document. """ return self._editor.document().blockCount() def line_text(self, line_nbr): """ Gets the text of the specified line :param line_nbr: The line number of the text to get :return: Entire line's text :rtype: str """ doc = self._editor.document() block = doc.findBlockByNumber(line_nbr) return block.text() def previous_line_text(self): """ Gets the previous line text (relative to the current cursor pos). :return: previous line text (str) """ if self.current_line_nbr(): return self.line_text(self.current_line_nbr() - 1) return '' def current_line_text(self): """ Returns the text of the current line. :return: Text of the current line """ return self.line_text(self.current_line_nbr()) def set_line_text(self, line_nbr, new_text): """ Replace an entire line with ``new_text``. :param line_nbr: line number of the line to change. :param new_text: The replacement text. """ editor = self._editor text_cursor = self._move_cursor_to(line_nbr) text_cursor.select(text_cursor.LineUnderCursor) text_cursor.insertText(new_text) editor.setTextCursor(text_cursor) def remove_last_line(self): """ Removes the last line of the document. """ editor = self._editor text_cursor = editor.textCursor() text_cursor.movePosition(text_cursor.End, text_cursor.MoveAnchor) text_cursor.select(text_cursor.LineUnderCursor) text_cursor.removeSelectedText() text_cursor.deletePreviousChar() editor.setTextCursor(text_cursor) def clean_document(self): """ Removes trailing whitespaces and ensure one single blank line at the end of the QTextDocument. ..deprecated: since pyqode 2.6.3, document is cleaned on disk only. """ editor = self._editor value = editor.verticalScrollBar().value() pos = self.cursor_position() editor.textCursor().beginEditBlock() # cleanup whitespaces editor._cleaning = True eaten = 0 removed = set() for line in editor._modified_lines: # parse line before and line after modified line (for cases where # key_delete or key_return has been pressed) for j in range(-1, 2): # skip current line if line + j != pos[0]: if line + j >= 0: txt = self.line_text(line + j) stxt = txt.rstrip() if txt != stxt: self.set_line_text(line + j, stxt) removed.add(line + j) editor._modified_lines -= removed # ensure there is only one blank line left at the end of the file i = self.line_count() while i: line = self.line_text(i - 1) if line.strip(): break self.remove_last_line() i -= 1 if self.line_text(self.line_count() - 1): editor.appendPlainText('') # restore cursor and scrollbars text_cursor = editor.textCursor() doc = editor.document() assert isinstance(doc, QtGui.QTextDocument) text_cursor = self._move_cursor_to(pos[0]) text_cursor.movePosition(text_cursor.StartOfLine, text_cursor.MoveAnchor) cpos = text_cursor.position() text_cursor.select(text_cursor.LineUnderCursor) if text_cursor.selectedText(): text_cursor.setPosition(cpos) offset = pos[1] - eaten text_cursor.movePosition(text_cursor.Right, text_cursor.MoveAnchor, offset) else: text_cursor.setPosition(cpos) editor.setTextCursor(text_cursor) editor.verticalScrollBar().setValue(value) text_cursor.endEditBlock() editor._cleaning = False def select_whole_line(self, line=None, apply_selection=True): """ Selects an entire line. :param line: Line to select. If None, the current line will be selected :param apply_selection: True to apply selection on the text editor widget, False to just return the text cursor without setting it on the editor. :return: QTextCursor """ if line is None: line = self.current_line_nbr() return self.select_lines(line, line, apply_selection=apply_selection) def _move_cursor_to(self, line): cursor = self._editor.textCursor() block = self._editor.document().findBlockByNumber(line) cursor.setPosition(block.position()) return cursor def select_lines(self, start=0, end=-1, apply_selection=True): """ Selects entire lines between start and end line numbers. This functions apply the selection and returns the text cursor that contains the selection. Optionally it is possible to prevent the selection from being applied on the code editor widget by setting ``apply_selection`` to False. :param start: Start line number (0 based) :param end: End line number (0 based). Use -1 to select up to the end of the document :param apply_selection: True to apply the selection before returning the QTextCursor. :returns: A QTextCursor that holds the requested selection """ editor = self._editor if end == -1: end = self.line_count() - 1 if start < 0: start = 0 text_cursor = self._move_cursor_to(start) if end > start: # Going down text_cursor.movePosition(text_cursor.Down, text_cursor.KeepAnchor, end - start) text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.KeepAnchor) elif end < start: # going up # don't miss end of line ! text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.MoveAnchor) text_cursor.movePosition(text_cursor.Up, text_cursor.KeepAnchor, start - end) text_cursor.movePosition(text_cursor.StartOfLine, text_cursor.KeepAnchor) else: text_cursor.movePosition(text_cursor.EndOfLine, text_cursor.KeepAnchor) if apply_selection: editor.setTextCursor(text_cursor) return text_cursor def selection_range(self): """ Returns the selected lines boundaries (start line, end line) :return: tuple(int, int) """ editor = self._editor doc = editor.document() start = doc.findBlock( editor.textCursor().selectionStart()).blockNumber() end = doc.findBlock( editor.textCursor().selectionEnd()).blockNumber() text_cursor = QtGui.QTextCursor(editor.textCursor()) text_cursor.setPosition(editor.textCursor().selectionEnd()) if text_cursor.columnNumber() == 0 and start != end: end -= 1 return start, end def line_pos_from_number(self, line_number): """ Computes line position on Y-Axis (at the center of the line) from line number. :param line_number: The line number for which we want to know the position in pixels. :return: The center position of the line. """ editor = self._editor block = editor.document().findBlockByNumber(line_number) if block.isValid(): return int(editor.blockBoundingGeometry(block).translated( editor.contentOffset()).top()) if line_number <= 0: return 0 else: return int(editor.blockBoundingGeometry( block.previous()).translated(editor.contentOffset()).bottom()) def line_nbr_from_position(self, y_pos): """ Returns the line number from the y_pos :param y_pos: Y pos in the editor :return: Line number (0 based), -1 if out of range """ editor = self._editor height = editor.fontMetrics().height() for top, line, block in editor.visible_blocks: if top <= y_pos <= top + height: return line return -1 def mark_whole_doc_dirty(self): """ Marks the whole document as dirty to force a full refresh. **SLOW** """ text_cursor = self._editor.textCursor() text_cursor.select(text_cursor.Document) self._editor.document().markContentsDirty(text_cursor.selectionStart(), text_cursor.selectionEnd()) def line_indent(self, line_nbr=None): """ Returns the indent level of the specified line :param line_nbr: Number of the line to get indentation (1 base). Pass None to use the current line number. Note that you can also pass a QTextBlock instance instead of an int. :return: Number of spaces that makes the indentation level of the current line """ if line_nbr is None: line_nbr = self.current_line_nbr() elif isinstance(line_nbr, QtGui.QTextBlock): line_nbr = line_nbr.blockNumber() line = self.line_text(line_nbr) indentation = len(line) - len(line.lstrip()) return indentation def get_right_word(self, cursor=None): """ Gets the character on the right of the text cursor. :param cursor: QTextCursor where the search will start. :return: The word that is on the right of the text cursor. """ if cursor is None: cursor = self._editor.textCursor() cursor.movePosition(QtGui.QTextCursor.WordRight, QtGui.QTextCursor.KeepAnchor) return cursor.selectedText().strip() def get_right_character(self, cursor=None): """ Gets the character that is on the right of the text cursor. :param cursor: QTextCursor that defines the position where the search will start. """ next_char = self.get_right_word(cursor=cursor) if len(next_char): next_char = next_char[0] else: next_char = None return next_char def insert_text(self, text, keep_position=True): """ Inserts text at the cursor position. :param text: text to insert :param keep_position: Flag that specifies if the cursor position must be kept. Pass False for a regular insert (the cursor will be at the end of the inserted text). """ text_cursor = self._editor.textCursor() if keep_position: s = text_cursor.selectionStart() e = text_cursor.selectionEnd() text_cursor.insertText(text) if keep_position: text_cursor.setPosition(s) text_cursor.setPosition(e, text_cursor.KeepAnchor) self._editor.setTextCursor(text_cursor) def clear_selection(self): """ Clears text cursor selection """ text_cursor = self._editor.textCursor() text_cursor.clearSelection() self._editor.setTextCursor(text_cursor) def move_right(self, keep_anchor=False, nb_chars=1): """ Moves the cursor on the right. :param keep_anchor: True to keep anchor (to select text) or False to move the anchor (no selection) :param nb_chars: Number of characters to move. """ text_cursor = self._editor.textCursor() text_cursor.movePosition( text_cursor.Right, text_cursor.KeepAnchor if keep_anchor else text_cursor.MoveAnchor, nb_chars) self._editor.setTextCursor(text_cursor) def selected_text_to_lower(self): """ Replaces the selected text by its lower version """ txt = self.selected_text() self.insert_text(txt.lower()) def selected_text_to_upper(self): """ Replaces the selected text by its upper version """ txt = self.selected_text() self.insert_text(txt.upper()) def search_text(self, text_cursor, search_txt, search_flags): """ Searches a text in a text document. :param text_cursor: Current text cursor :param search_txt: Text to search :param search_flags: QTextDocument.FindFlags :returns: the list of occurrences, the current occurrence index :rtype: tuple([], int) """ def compare_cursors(cursor_a, cursor_b): """ Compares two QTextCursor :param cursor_a: cursor a :param cursor_b: cursor b :returns; True if both cursor are identical (same position, same selection) """ return (cursor_b.selectionStart() >= cursor_a.selectionStart() and cursor_b.selectionEnd() <= cursor_a.selectionEnd()) text_document = self._editor.document() occurrences = [] index = -1 cursor = text_document.find(search_txt, 0, search_flags) original_cursor = text_cursor while not cursor.isNull(): if compare_cursors(cursor, original_cursor): index = len(occurrences) occurrences.append((cursor.selectionStart(), cursor.selectionEnd())) cursor.setPosition(cursor.position() + 1) cursor = text_document.find(search_txt, cursor, search_flags) return occurrences, index def is_comment_or_string(self, cursor_or_block, formats=None): """ Checks if a block/cursor is a string or a comment. :param cursor_or_block: QTextCursor or QTextBlock :param formats: the list of color scheme formats to consider. By default, it will consider the following keys: 'comment', 'string', 'docstring'. """ if formats is None: formats = ["comment", "string", "docstring"] layout = None pos = 0 if isinstance(cursor_or_block, QtGui.QTextBlock): pos = len(cursor_or_block.text()) - 1 layout = cursor_or_block.layout() elif isinstance(cursor_or_block, QtGui.QTextCursor): b = cursor_or_block.block() pos = cursor_or_block.position() - b.position() layout = b.layout() if layout is not None: additional_formats = layout.additionalFormats() sh = self._editor.syntax_highlighter if sh: ref_formats = sh.color_scheme.formats for r in additional_formats: if r.start <= pos < (r.start + r.length): for fmt_type in formats: is_user_obj = (r.format.objectType() == r.format.UserObject) if (ref_formats[fmt_type] == r.format and is_user_obj): return True return False def select_extended_word(self, continuation_chars=('.',)): """ Performs extended word selection. Extended selection consists in selecting the word under cursor and any other words that are linked by a ``continuation_chars``. :param continuation_chars: the list of characters that may extend a word. """ cursor = self._editor.textCursor() original_pos = cursor.position() start_pos = None end_pos = None # go left stop = False seps = self._editor.word_separators + [' '] while not stop: cursor.clearSelection() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if cursor.atBlockStart(): stop = True start_pos = cursor.position() elif char in seps and char not in continuation_chars: stop = True start_pos = cursor.position() + 1 # go right cursor.setPosition(original_pos) stop = False while not stop: cursor.clearSelection() cursor.movePosition(cursor.Right, cursor.KeepAnchor) char = cursor.selectedText() if cursor.atBlockEnd(): stop = True end_pos = cursor.position() if char in seps: end_pos -= 1 elif char in seps and char not in continuation_chars: stop = True end_pos = cursor.position() - 1 if start_pos and end_pos: cursor.setPosition(start_pos) cursor.movePosition(cursor.Right, cursor.KeepAnchor, end_pos - start_pos) self._editor.setTextCursor(cursor) def match_select(self, ignored_symbols=None): """ Performs matched selection, selects text between matching quotes or parentheses. :param ignored_symbols; matching symbols to ignore. """ def filter_matching(ignored_symbols, matching): """ Removes any ignored symbol from the match dict. """ if ignored_symbols is not None: for symbol in matching.keys(): if symbol in ignored_symbols: matching.pop(symbol) return matching def find_opening_symbol(cursor, matching): """ Find the position ot the opening symbol :param cursor: Current text cursor :param matching: symbol matches map """ start_pos = None opening_char = None closed = {k: 0 for k in matching.values() if k not in ['"', "'"]} # go left stop = False while not stop and not cursor.atStart(): cursor.clearSelection() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if char in closed.keys(): closed[char] += 1 elif char in matching.keys(): opposite = matching[char] if opposite in closed.keys() and closed[opposite]: closed[opposite] -= 1 continue else: # found opening quote or parenthesis start_pos = cursor.position() + 1 stop = True opening_char = char return opening_char, start_pos def find_closing_symbol(cursor, matching, opening_char, original_pos): """ Finds the position of the closing symbol :param cursor: current text cursor :param matching: symbold matching dict :param opening_char: the opening character :param original_pos: position of the opening character. """ end_pos = None cursor.setPosition(original_pos) rev_matching = {v: k for k, v in matching.items()} opened = {k: 0 for k in rev_matching.values() if k not in ['"', "'"]} stop = False while not stop and not cursor.atEnd(): cursor.clearSelection() cursor.movePosition(cursor.Right, cursor.KeepAnchor) char = cursor.selectedText() if char in opened.keys(): opened[char] += 1 elif char in rev_matching.keys(): opposite = rev_matching[char] if opposite in opened.keys() and opened[opposite]: opened[opposite] -= 1 continue elif matching[opening_char] == char: # found opening quote or parenthesis end_pos = cursor.position() - 1 stop = True return end_pos matching = {'(': ')', '{': '}', '[': ']', '"': '"', "'": "'"} filter_matching(ignored_symbols, matching) cursor = self._editor.textCursor() original_pos = cursor.position() end_pos = None opening_char, start_pos = find_opening_symbol(cursor, matching) if opening_char: end_pos = find_closing_symbol( cursor, matching, opening_char, original_pos) if start_pos and end_pos: cursor.setPosition(start_pos) cursor.movePosition(cursor.Right, cursor.KeepAnchor, end_pos - start_pos) self._editor.setTextCursor(cursor) return True else: return False class TextBlockHelper(object): """ Helps retrieving the various part of the user state bitmask. This helper should be used to replace calls to ``QTextBlock.setUserState``/``QTextBlock.getUserState`` as well as ``QSyntaxHighlighter.setCurrentBlockState``/ ``QSyntaxHighlighter.currentBlockState`` and ``QSyntaxHighlighter.previousBlockState``. The bitmask is made up of the following fields: - bit0 -> bit26: User state (for syntax highlighting) - bit26: fold trigger state - bit27-bit29: fold level (8 level max) - bit30: fold trigger flag - bit0 -> bit15: 16 bits for syntax highlighter user state ( for syntax highlighting) - bit16-bit25: 10 bits for the fold level (1024 levels) - bit26: 1 bit for the fold trigger flag (trigger or not trigger) - bit27: 1 bit for the fold trigger state (expanded/collapsed) """ @staticmethod def get_state(block): """ Gets the user state, generally used for syntax highlighting. :param block: block to access :return: The block state """ if block is None: return -1 state = block.userState() if state == -1: return state return state & 0x0000FFFF @staticmethod def set_state(block, state): """ Sets the user state, generally used for syntax highlighting. :param block: block to modify :param state: new state value. :return: """ if block is None: return user_state = block.userState() if user_state == -1: user_state = 0 higher_part = user_state & 0x7FFF0000 state &= 0x0000FFFF state |= higher_part block.setUserState(state) @staticmethod def get_fold_lvl(block): """ Gets the block fold level :param block: block to access. :returns: The block fold level """ if block is None: return 0 state = block.userState() if state == -1: state = 0 return (state & 0x03FF0000) >> 16 @staticmethod def set_fold_lvl(block, val): """ Sets the block fold level. :param block: block to modify :param val: The new fold level [0-7] """ if block is None: return state = block.userState() if state == -1: state = 0 if val >= 0x3FF: val = 0x3FF state &= 0x7C00FFFF state |= val << 16 block.setUserState(state) @staticmethod def is_fold_trigger(block): """ Checks if the block is a fold trigger. :param block: block to check :return: True if the block is a fold trigger (represented as a node in the fold panel) """ if block is None: return False state = block.userState() if state == -1: state = 0 return bool(state & 0x04000000) @staticmethod def set_fold_trigger(block, val): """ Set the block fold trigger flag (True means the block is a fold trigger). :param block: block to set :param val: value to set """ if block is None: return state = block.userState() if state == -1: state = 0 state &= 0x7BFFFFFF state |= int(val) << 26 block.setUserState(state) @staticmethod def is_collapsed(block): """ Checks if the block is expanded or collased. :param block: QTextBlock :return: False for an open trigger, True for for closed trigger """ if block is None: return False state = block.userState() if state == -1: state = 0 return bool(state & 0x08000000) @staticmethod def set_collapsed(block, val): """ Sets the fold trigger state (collapsed or expanded). :param block: The block to modify :param val: The new trigger state (True=collapsed, False=expanded) """ if block is None: return state = block.userState() if state == -1: state = 0 state &= 0x77FFFFFF state |= int(val) << 27 block.setUserState(state) class ParenthesisInfo(object): """ Stores information about a parenthesis in a line of code. """ def __init__(self, pos, char): #: Position of the parenthesis, expressed as a number of character self.position = pos #: The parenthesis character, one of "(", ")", "{", "}", "[", "]" self.character = char def get_block_symbol_data(editor, block): """ Gets the list of ParenthesisInfo for specific text block. :param editor: Code edit instance :param block: block to parse """ def list_symbols(editor, block, character): """ Retuns a list of symbols found in the block text :param editor: code edit instance :param block: block to parse :param character: character to look for. """ text = block.text() symbols = [] cursor = QtGui.QTextCursor(block) cursor.movePosition(cursor.StartOfBlock) pos = text.find(character, 0) cursor.movePosition(cursor.Right, cursor.MoveAnchor, pos) while pos != -1: if not TextHelper(editor).is_comment_or_string(cursor): # skips symbols in string literal or comment info = ParenthesisInfo(pos, character) symbols.append(info) pos = text.find(character, pos + 1) cursor.movePosition(cursor.StartOfBlock) cursor.movePosition(cursor.Right, cursor.MoveAnchor, pos) return symbols parentheses = sorted( list_symbols(editor, block, '(') + list_symbols(editor, block, ')'), key=lambda x: x.position) square_brackets = sorted( list_symbols(editor, block, '[') + list_symbols(editor, block, ']'), key=lambda x: x.position) braces = sorted( list_symbols(editor, block, '{') + list_symbols(editor, block, '}'), key=lambda x: x.position) return parentheses, square_brackets, braces def keep_tc_pos(func): """ Cache text cursor position and restore it when the wrapped function exits. This decorator can only be used on modes or panels. :param func: wrapped function """ @functools.wraps(func) def wrapper(editor, *args, **kwds): """ Decorator """ sb = editor.verticalScrollBar() spos = sb.sliderPosition() pos = editor.textCursor().position() retval = func(editor, *args, **kwds) text_cursor = editor.textCursor() text_cursor.setPosition(pos) editor.setTextCursor(text_cursor) sb.setSliderPosition(spos) return retval return wrapper def with_wait_cursor(func): """ Show a wait cursor while the wrapped function is running. The cursor is restored as soon as the function exits. :param func: wrapped function """ @functools.wraps(func) def wrapper(*args, **kwargs): QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.WaitCursor)) try: ret_val = func(*args, **kwargs) finally: QtWidgets.QApplication.restoreOverrideCursor() return ret_val return wrapper Turing-0.11-beta/pyqode/core/backend/000077500000000000000000000000001331472757200174475ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/backend/__init__.py000066400000000000000000000074341331472757200215700ustar00rootroot00000000000000""" The backend package contains the API to use on the server side: - server + methods for running it - workers definitions pyQode uses a client-server architecture for running heavy tasks such as code analysis (lint), code completion,... Protocol -------- We use a worker based json messaging server using the TCP/IP transport. We build our own, very simple protocol where each message is made up of two parts: - a header: simply contains the length of the payload - a payload: a json formatted string, the content of the message. There are two type of json object: a request and a response. Request +++++++ For a request, the object will contains the following fields: - 'request_id': uuid generated client side - 'worker': fully qualified name to the worker callable (class or function), e.g. 'pyqode.core.backend.workers.echo_worker' - 'data': data specific to the chose worker. E.g:: { 'request_id': 'a97285af-cc88-48a4-ac69-7459b9c7fa66', 'worker': 'pyqode.core.backend.workers.echo_worker', 'data': ['some code', 0] } Response ++++++++ For a response, the object will contains the following fields: - 'request_id': uuid generated client side that is simply echoed back - 'results': worker results (list, tuple, string,...) E.g:: { 'request_id': 'a97285af-cc88-48a4-ac69-7459b9c7fa66', 'results': ['some code', 0] } Server script ------------- The server script must be written by the user. Don't worry, it's very simple. All you have to do is to create and run a JsonTcpServer instance. We choose to let you write the main script to let you easily configure it. Some workers will requires some tweaking (for the completion worker, you will want to add custom completion providers, you might also want to modify sys.path,...). It also makes the packaging process more consistent, your script will be packaged on linux using setup.py and will be frozen on windows using cx_Freeze. Here is the most simple and basic example of a server script: .. code-block: python from pyqode.core import backend if __name__ == '__main__': backend.serve_forever() .. warning:: The user can choose the python interpreter that will run the server. That means that classes and functions that run on the server side ( workers) **should fully support python2 syntax** and that pyqode.core should be installed on the target interpreter sys path!!! (even for a virtual env). An alternative is to keep pyqode.core package (and all dependencies in a zip archive that you mount on the sys path in your server script. .. note:: print statements on the server side will be logged as debug messages on the client side. To have your messages logged as error message just print to sys.stderr. """ from .server import JsonServer from .server import default_parser from .server import serve_forever from .workers import CodeCompletionWorker from .workers import DocumentWordsProvider from .workers import echo_worker class NotConnected(Exception): """ Raised if the client is not connected to the server when an operation is requested. .. deprecated:: Since v2.3, you should instead use ``NotRunning``. This will be removed in v2.5 """ def __init__(self): super(NotConnected, self).__init__( 'Client socket not connected or server not started') class NotRunning(Exception): """ Raise if the backend process is not running and a backend operation is requested. """ def __init__(self): super(NotRunning, self).__init__( 'Backend process not running') __all__ = [ 'JsonServer', 'default_parser', 'serve_forever', 'CodeCompletionWorker', 'DocumentWordsProvider', 'echo_worker', 'NotConnected', 'NotRunning' ] Turing-0.11-beta/pyqode/core/backend/server.py000066400000000000000000000165611331472757200213400ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the server socket definition. """ import argparse import inspect import logging import json import os import struct import sys import time import traceback import threading try: import socketserver PY33 = True except ImportError: import SocketServer as socketserver PY33 = False def _logger(): """ Returns the module's logger """ return logging.getLogger(__name__) HEARTBEAT_DELAY = 60 # delay max without heartbeat signal def import_class(klass): """ Imports a class from a fully qualified name string. :param klass: class string, e.g. "pyqode.core.backend.workers.CodeCompletionWorker" :return: The corresponding class """ path = klass.rfind(".") class_name = klass[path + 1: len(klass)] try: module = __import__(klass[0:path], globals(), locals(), [class_name]) klass = getattr(module, class_name) except ImportError as e: raise ImportError('%s: %s' % (klass, str(e))) except AttributeError: raise ImportError(klass) else: return klass class JsonServer(socketserver.TCPServer): """ A server socket based on a json messaging system. """ class _Handler(socketserver.BaseRequestHandler): def read_bytes(self, size): """ Read x bytes :param size: number of bytes to read. """ if not PY33: data = '' else: data = bytes() while len(data) < size: tmp = self.request.recv(size - len(data)) data += tmp if tmp == '': raise RuntimeError("socket connection broken") return data def get_msg_len(self): """ Gets message len """ data = self.read_bytes(4) payload = struct.unpack('=I', data) return payload[0] def read(self): """ Reads a json string from socket and load it. """ size = self.get_msg_len() data = self.read_bytes(size).decode('utf-8') return json.loads(data) def send(self, obj): """ Sends a python obj as a json string on the socket. :param obj: The object to send, must be Json serializable. """ msg = json.dumps(obj).encode('utf-8') _logger().log(1, 'sending %d bytes for the payload', len(msg)) header = struct.pack('=I', len(msg)) self.request.sendall(header) self.request.sendall(msg) def handle(self): """ Hanlde the request and keep it alive while shutdown signal has not been received """ self.srv.reset_heartbeat() # make sure to have enough time to handle the request self.srv.timeout = HEARTBEAT_DELAY * 10 data = self.read() self._handle(data) self.srv.timeout = HEARTBEAT_DELAY self.srv.reset_heartbeat() def _handle(self, data): """ Handles a work request. """ try: _logger().log(1, 'handling request %r', data) assert data['worker'] assert data['request_id'] assert data['data'] is not None response = {'request_id': data['request_id'], 'results': []} try: worker = import_class(data['worker']) except ImportError: _logger().exception('Failed to import worker class') else: if inspect.isclass(worker): worker = worker() _logger().log(1, 'worker: %r', worker) _logger().log(1, 'data: %r', data['data']) try: ret_val = worker(data['data']) except Exception: _logger().exception( 'something went bad with worker %r(data=%r)', worker, data['data']) ret_val = None if ret_val is None: ret_val = [] response = {'request_id': data['request_id'], 'results': ret_val} finally: _logger().log(1, 'sending response: %r', response) try: self.send(response) except ConnectionAbortedError: pass except: _logger().warn('error with data=%r', data) exc1, exc2, exc3 = sys.exc_info() traceback.print_exception(exc1, exc2, exc3, file=sys.stderr) def __init__(self, args=None): """ :param args: Argument parser args. If None, the server will setup and use its own argument parser (using :meth:`pyqode.core.backend.default_parser`) """ self.reset_heartbeat() if not args: args = default_parser().parse_args() self.port = args.port self.timeout = HEARTBEAT_DELAY self._Handler.srv = self socketserver.TCPServer.__init__( self, ('127.0.0.1', int(args.port)), self._Handler) print('started on 127.0.0.1:%d' % int(args.port)) print('running with python %d.%d.%d' % (sys.version_info[:3])) self._heartbeat_thread = threading.Thread(target=self.heartbeat) self._heartbeat_thread.setDaemon(True) self._heartbeat_thread.start() def reset_heartbeat(self): self.last_time = time.time() self.elapsed_time = 0 def heartbeat(self): while True: elapsed_time = time.time() - self.last_time if elapsed_time > self.timeout: self.shutdown() sys.exit(1) time.sleep(1) def default_parser(): """ Configures and return the default argument parser. You should use this parser as a base if you want to add custom arguments. The default parser only has one argument, the tcp port used to start the server socket. *(CodeEdit picks up a free port and use it to run the server and connect its client socket)* :returns: The default server argument parser. """ parser = argparse.ArgumentParser() parser.add_argument("port", help="the local tcp port to use to run " "the server") return parser def serve_forever(args=None): """ Creates the server and serves forever :param args: Optional args if you decided to use your own argument parser. Default is None to let the JsonServer setup its own parser and parse command line arguments. """ class Unbuffered(object): def __init__(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def __getattr__(self, attr): return getattr(self.stream, attr) sys.stdout = Unbuffered(sys.stdout) sys.stderr = Unbuffered(sys.stderr) server = JsonServer(args=args) server.serve_forever() # Server script example if __name__ == '__main__': from pyqode.core import backend backend.CodeCompletionWorker.providers.append( backend.DocumentWordsProvider()) serve_forever() Turing-0.11-beta/pyqode/core/backend/workers.py000066400000000000000000000177271331472757200215330ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the worker functions/classes used on the server side. A worker is a function or a callable which receive one single argument (the decoded json object) and returns a tuple made up of a status (bool) and a response object (json serializable). A worker is always tightly coupled with its caller, so are the data. .. warning:: This module should keep its dependencies as low as possible and fully supports python2 syntax. This is badly needed since the server might be run with a python2 interpreter. We don't want to force the user to install all the pyqode dependencies twice (if the user choose to run the server with python2, which might happen in pyqode.python to support python2 syntax). """ import logging import re import sys import traceback def echo_worker(data): """ Example of worker that simply echoes back the received data. :param data: Request data dict. :returns: True, data """ print('echo worker running') return data class CodeCompletionWorker(object): """ This is the worker associated with the code completion mode. The worker does not actually do anything smart, the real work of collecting code completions is accomplished by the completion providers (see the :class:`pyqode.core.backend.workers.CodeCompletionWorker.Provider` interface) listed in :attr:`pyqode.core.backend.workers.CompletionWorker.providers`. Completion providers must be installed on the CodeCompletionWorker at the beginning of the main server script, e.g.:: from pyqode.core.backend import CodeCompletionWorker CodeCompletionWorker.providers.insert(0, MyProvider()) """ #: The list of code completion provider to run on each completion request. providers = [] class Provider(object): """ This class describes the expected interface for code completion providers. You can inherit from this class but this is not required as long as you implement a ``complete`` method which returns the list of completions and have the expected signature:: def complete(self, code, line, column, path, encoding, prefix): pass """ def complete(self, code, line, column, path, encoding, prefix): """ Returns a list of completions. A completion is dictionary with the following keys: - 'name': name of the completion, this the text displayed and inserted when the user select a completion in the list - 'icon': an optional icon file name - 'tooltip': an optional tooltip string :param code: code string :param line: line number (0 based) :param column: column number (0 based) :param path: file path :param encoding: file encoding :param prefix: completion prefix (text before cursor) :returns: A list of completion dicts as described above. :rtype: list """ raise NotImplementedError() def __call__(self, data): """ Do the work (this will be called in the child process by the SubprocessServer). """ code = data['code'] line = data['line'] column = data['column'] path = data['path'] encoding = data['encoding'] prefix = data['prefix'] req_id = data['request_id'] completions = [] for prov in CodeCompletionWorker.providers: try: results = prov.complete( code, line, column, path, encoding, prefix) completions.append(results) if len(completions): break except: sys.stderr.write('Failed to get completions from provider %r' % prov) exc1, exc2, exc3 = sys.exc_info() traceback.print_exception(exc1, exc2, exc3, file=sys.stderr) return [(line, column, req_id)] + completions class DocumentWordsProvider(object): """ Provides completions based on the document words """ words = {} # word separators separators = [ '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+', '{', '}', '|', ':', '"', "'", "<", ">", "?", ",", ".", "/", ";", '[', ']', '\\', '\n', '\t', '=', '-', ' ' ] @staticmethod def split(txt, seps): """ Splits a text in a meaningful list of words based on a list of word separators (define in pyqode.core.settings) :param txt: Text to split :param seps: List of words separators :return: A **set** of words found in the document (excluding punctuations, numbers, ...) """ # replace all possible separators with a default sep default_sep = seps[0] for sep in seps[1:]: if sep: txt = txt.replace(sep, default_sep) # now we can split using the default_sep raw_words = txt.split(default_sep) words = set() for word in raw_words: # w = w.strip() if word.replace('_', '').isalpha(): words.add(word) return sorted(words) def complete(self, code, *args): """ Provides completions based on the document words. :param code: code to complete :param args: additional (unused) arguments. """ completions = [] for word in self.split(code, self.separators): completions.append({'name': word}) return completions def finditer_noregex(string, sub, whole_word): """ Search occurrences using str.find instead of regular expressions. :param string: string to parse :param sub: search string :param whole_word: True to select whole words only """ start = 0 while True: start = string.find(sub, start) if start == -1: return if whole_word: if start: pchar = string[start - 1] else: pchar = ' ' try: nchar = string[start + len(sub)] except IndexError: nchar = ' ' if nchar in DocumentWordsProvider.separators and \ pchar in DocumentWordsProvider.separators: yield start start += len(sub) else: yield start start += 1 def findalliter(string, sub, regex=False, case_sensitive=False, whole_word=False): """ Generator that finds all occurrences of ``sub`` in ``string`` :param string: string to parse :param sub: string to search :param regex: True to search using regex :param case_sensitive: True to match case, False to ignore case :param whole_word: True to returns only whole words :return: """ if not sub: return if regex: flags = re.MULTILINE if not case_sensitive: flags |= re.IGNORECASE for val in re.finditer(sub, string, flags): yield val.span() else: if not case_sensitive: string = string.lower() sub = sub.lower() for val in finditer_noregex(string, sub, whole_word): yield val, val + len(sub) def findall(data): """ Worker that finds all occurrences of a given string (or regex) in a given text. :param data: Request data dict:: { 'string': string to search in text 'sub': input text 'regex': True to consider string as a regular expression 'whole_word': True to match whole words only. 'case_sensitive': True to match case, False to ignore case } :return: list of occurrence positions in text """ return list(findalliter( data['string'], data['sub'], regex=data['regex'], whole_word=data['whole_word'], case_sensitive=data['case_sensitive'])) Turing-0.11-beta/pyqode/core/cache.py000066400000000000000000000116121331472757200174760ustar00rootroot00000000000000""" This module contains a class to access the pyQode settings (QSettings). QSettings are used to cache some specific settings. At the moment, we use it to store the lists of encoding that appears in the encoding menu (to not have a too big encoding menu, user can choose which encoding should be display, offering a small compact menu with all its favorite encodings). We also cache encoding used to save or load a file so that we can reuse it automatically next time the user want to open the same file. We also use this to cache some editor states (such as the last cursor position for a specific file path) We do not store editor styles and settings here. Those kind of settings are better handled at the application level. """ import json import locale import logging from pyqode.qt import QtCore try: from future.builtins import open from future.builtins import str except: pass # python 3.2 not supported class Cache(object): """ Provides an easy acces to the cache by exposing some wrapper properties over QSettings. """ def __init__(self, suffix='', qsettings=None): if qsettings is None: self._settings = QtCore.QSettings('pyQode', 'pyqode.core%s' % suffix) else: self._settings = qsettings def clear(self): """ Clears the cache. """ self._settings.clear() @property def preferred_encodings(self): """ The list of user defined encodings, for display in the encodings menu/combobox. """ default_encodings = [ locale.getpreferredencoding().lower().replace('-', '_')] if 'utf_8' not in default_encodings: default_encodings.append('utf_8') default_encodings = list(set(default_encodings)) return json.loads(self._settings.value( 'userDefinedEncodings', json.dumps(default_encodings))) @preferred_encodings.setter def preferred_encodings(self, value): from pyqode.core.api import encodings lst = [encodings.convert_to_codec_key(v) for v in value] self._settings.setValue('userDefinedEncodings', json.dumps(list(set(lst)))) def get_file_encoding(self, file_path, preferred_encoding=None): """ Gets an eventual cached encoding for file_path. Raises a KeyError if no encoding were cached for the specified file path. :param file_path: path of the file to look up :returns: The cached encoding. """ _logger().debug('getting encoding for %s', file_path) try: map = json.loads(self._settings.value('cachedFileEncodings')) except TypeError: map = {} try: return map[file_path] except KeyError: encodings = self.preferred_encodings if preferred_encoding: encodings.insert(0, preferred_encoding) for encoding in encodings: _logger().debug('trying encoding: %s', encoding) try: with open(file_path, encoding=encoding) as f: f.read() except (UnicodeDecodeError, IOError, OSError): pass else: return encoding raise KeyError(file_path) def set_file_encoding(self, path, encoding): """ Cache encoding for the specified file path. :param path: path of the file to cache :param encoding: encoding to cache """ try: map = json.loads(self._settings.value('cachedFileEncodings')) except TypeError: map = {} map[path] = encoding self._settings.setValue('cachedFileEncodings', json.dumps(map)) def get_cursor_position(self, file_path): """ Gets the cached cursor position for file_path :param file_path: path of the file in the cache :return: Cached cursor position or (0, 0) """ try: map = json.loads(self._settings.value('cachedCursorPosition')) except TypeError: map = {} try: pos = map[file_path] except KeyError: pos = 0 if isinstance(pos, list): # changed in pyqode 2.6.3, now we store the cursor position # instead of the line and column (faster) pos = 0 return pos def set_cursor_position(self, path, position): """ Cache encoding for the specified file path. :param path: path of the file to cache :param position: cursor position to cache """ try: map = json.loads(self._settings.value('cachedCursorPosition')) except TypeError: map = {} map[path] = position self._settings.setValue('cachedCursorPosition', json.dumps(map)) def _logger(): return logging.getLogger(__name__) Turing-0.11-beta/pyqode/core/dialogs/000077500000000000000000000000001331472757200175025ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/dialogs/__init__.py000066400000000000000000000005331331472757200216140ustar00rootroot00000000000000""" This package contains all the pyqode specific dialogs. """ from .goto import DlgGotoLine from .encodings import DlgPreferredEncodingsEditor from .encodings import DlgEncodingsChoice from .unsaved_files import DlgUnsavedFiles __all__ = [ 'DlgPreferredEncodingsEditor', 'DlgGotoLine', 'DlgUnsavedFiles', 'DlgEncodingsChoice' ] Turing-0.11-beta/pyqode/core/dialogs/encodings.py000066400000000000000000000163521331472757200220340ustar00rootroot00000000000000""" This module contains some dialogs to help you manage encodings in you application. """ import locale from pyqode.core import icons from pyqode.core.api import encodings from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache from pyqode.core._forms import dlg_preferred_encodings_editor_ui class DlgPreferredEncodingsEditor(QtWidgets.QDialog): """ This dialog is used to edit the preferred encodings that appears in the encodings menu/combo box. """ def __init__(self, parent=None): super(DlgPreferredEncodingsEditor, self).__init__(parent) self.ui = dlg_preferred_encodings_editor_ui.Ui_Dialog() self.ui.setupUi(self) self._load_preferred() self.ui.pushButtonAdd.clicked.connect(self._add) self.ui.pushButtonAdd.setIcon(icons.icon( 'go-next', ':/pyqode-icons/rc/go-next.png', 'fa.arrow-right')) self.ui.pushButtonRemove.setIcon(icons.icon( 'go-previous', ':/pyqode-icons/rc/go-previous.png', 'fa.arrow-left')) self.ui.pushButtonRemove.clicked.connect(self._remove) def _load_available(self): self.ui.tableWidgetAvailable.setColumnCount(2) self.ui.tableWidgetAvailable.setSelectionMode( self.ui.tableWidgetAvailable.SingleSelection) self.ui.tableWidgetAvailable.setSelectionBehavior( self.ui.tableWidgetAvailable.SelectRows) self.ui.tableWidgetAvailable.setHorizontalHeaderLabels([ 'Encoding', 'Language']) self.ui.tableWidgetAvailable.verticalHeader().hide() self.ui.tableWidgetAvailable.setSortingEnabled(True) preferred = Cache().preferred_encodings for key in sorted(encodings.ENCODINGS_MAP.keys()): value = encodings.ENCODINGS_MAP[key] if key not in preferred: # lang_item.setData(QtCore.Qt.UserRole, key) row = self.ui.tableWidgetAvailable.rowCount() self.ui.tableWidgetAvailable.insertRow(row) for column in range(2): item = QtWidgets.QTableWidgetItem(value[column].strip()) item.setData(QtCore.Qt.UserRole, key) # item.setData(QtCore.Qt.UserRole, key) self.ui.tableWidgetAvailable.setItem(row, column, item) self.ui.tableWidgetAvailable.sortByColumn(0, QtCore.Qt.AscendingOrder) def _load_preferred(self): self._load_available() # setup preferred encodings self.ui.tableWidgetPreferred.setColumnCount(2) self.ui.tableWidgetPreferred.setSelectionMode( self.ui.tableWidgetPreferred.SingleSelection) self.ui.tableWidgetPreferred.setSelectionBehavior( self.ui.tableWidgetPreferred.SelectRows) self.ui.tableWidgetPreferred.setHorizontalHeaderLabels([ 'Encoding', 'Language']) self.ui.tableWidgetPreferred.verticalHeader().hide() self.ui.tableWidgetPreferred.setSortingEnabled(True) for i, encoding in enumerate(Cache().preferred_encodings): encoding = encodings.convert_to_codec_key(encoding) value = encodings.ENCODINGS_MAP[encoding] row = self.ui.tableWidgetPreferred.rowCount() self.ui.tableWidgetPreferred.insertRow(row) for column in range(2): item = QtWidgets.QTableWidgetItem(value[column].strip()) item.setData(QtCore.Qt.UserRole, encoding) self.ui.tableWidgetPreferred.setItem(row, column, item) self.ui.tableWidgetPreferred.sortByColumn(0, QtCore.Qt.AscendingOrder) def _transfer_selected_items(self, source, destination): # keeping sorting enabled cause bug for the second transferred item destination.setSortingEnabled(False) row = source.currentRow() if row != -1: # take items from source items = [] encoding = source.item(row, 0).data(QtCore.Qt.UserRole) is_locale = encoding == encodings.convert_to_codec_key( locale.getpreferredencoding()) if source == self.ui.tableWidgetPreferred and is_locale: destination.setSortingEnabled(True) return for i in range(2): items.append(source.takeItem(row, i)) source.removeRow(row) # insert a new row in the taken items into destination row = destination.rowCount() destination.insertRow(row) for col, item in enumerate(items): item = QtWidgets.QTableWidgetItem(item) destination.setItem(row, col, item) destination.setSortingEnabled(True) def _add(self): self._transfer_selected_items(self.ui.tableWidgetAvailable, self.ui.tableWidgetPreferred) def _remove(self): self._transfer_selected_items(self.ui.tableWidgetPreferred, self.ui.tableWidgetAvailable) def get_preferred_encodings(self): """ Gets the list of preferred encodings. :return: list """ encodings = [] for row in range(self.ui.tableWidgetPreferred.rowCount()): item = self.ui.tableWidgetPreferred.item(row, 0) encodings.append(item.data(QtCore.Qt.UserRole)) return encodings @classmethod def edit_encoding(cls, parent): """ Static helper method that shows the encoding editor dialog If the dialog was accepted the new encodings are added to the settings. :param parent: parent widget :return: True in case of succes, False otherwise """ dlg = cls(parent) if dlg.exec_() == dlg.Accepted: settings = Cache() settings.preferred_encodings = dlg.get_preferred_encodings() return True return False class DlgEncodingsChoice(QtWidgets.QDialog): """ This dialogs ask the user to choose an encoding from a combo box. You can use it if you're not using the encoding panel when there is a decoding error when opening a file. """ def __init__(self, parent, path, encoding): super(DlgEncodingsChoice, self).__init__(parent) self.setWindowTitle('Choose encoding') # avoid circular references with CodeEdit from pyqode.core._forms import dlg_encodings_ui self.ui = dlg_encodings_ui.Ui_Dialog() self.ui.setupUi(self) self.ui.comboBoxEncodings.current_encoding = encoding self.ui.lblDescription.setText( self.ui.lblDescription.text() % (_('There was a problem opening the file %r with encoding: %s') % (path, encoding))) @classmethod def choose_encoding(cls, parent, path, encoding): """ Show the encodings dialog and returns the user choice. :param parent: parent widget. :param path: file path :param encoding: current file encoding :return: selected encoding """ dlg = cls(parent, path, encoding) dlg.exec_() return dlg.ui.comboBoxEncodings.current_encoding if __name__ == '__main__': import sys app = QtWidgets.QApplication(sys.argv) new_encoding = DlgEncodingsChoice.choose_encoding(None, __file__, 'utf-8') print(new_encoding) Turing-0.11-beta/pyqode/core/dialogs/goto.py000066400000000000000000000027331331472757200210310ustar00rootroot00000000000000""" This module contains the go to line dialog. """ from pyqode.core._forms import dlg_goto_line_ui from pyqode.qt import QtWidgets class DlgGotoLine(QtWidgets.QDialog, dlg_goto_line_ui.Ui_Dialog): """ Goto line dialog. """ def __init__(self, parent, current_line, line_count): QtWidgets.QDialog.__init__(self, parent) dlg_goto_line_ui.Ui_Dialog.__init__(self) self.setupUi(self) self.buttonBox.accepted.connect(self.accept) self.buttonBox.rejected.connect(self.reject) self.spinBox.setMaximum(line_count) self.spinBox.setValue(current_line) self.lblCurrentLine.setText("%d" % current_line) self.lblLineCount.setText("%d" % line_count) self.buttonBox.button(self.buttonBox.Ok).setText(_("Go")) self.buttonBox.button(self.buttonBox.Cancel).setText( "I'm going nowhere") self.spinBox.setFocus() @classmethod def get_line(cls, parent, current_line, line_count): """ Gets user selected line. :param parent: Parent widget :param current_line: Current line number :param line_count: Number of lines in the current text document. :returns: tuple(line, status) status is False if the dialog has been rejected. """ dlg = DlgGotoLine(parent, current_line + 1, line_count) if dlg.exec_() == dlg.Accepted: return dlg.spinBox.value() - 1, True return current_line, False Turing-0.11-beta/pyqode/core/dialogs/unsaved_files.py000066400000000000000000000037731331472757200227150ustar00rootroot00000000000000""" This module contains the unsaved files dialog. """ from pyqode.qt.QtWidgets import QDialog from pyqode.core._forms.dlg_unsaved_files_ui import Ui_Dialog from pyqode.qt import QtWidgets, QtCore class DlgUnsavedFiles(QDialog, Ui_Dialog): """ This dialog shows the list of unsaved file in the CodeEditTabWidget. Use can choose to: - cancel: nothing changed, no tab will be closed - save all/save selected: save the selected files or all files - discard all changes: nothing will be saved but all tabs will be closed. """ def __init__(self, parent, files=None): if files is None: files = [] QtWidgets.QDialog.__init__(self, parent) Ui_Dialog.__init__(self) self.setupUi(self) self.bt_save_all = self.buttonBox.button( QtWidgets.QDialogButtonBox.SaveAll) self.bt_save_all.clicked.connect(self.accept) self.discarded = False self.bt_discard = self.buttonBox.button( QtWidgets.QDialogButtonBox.Discard) self.bt_discard.clicked.connect(self._set_discarded) self.bt_discard.clicked.connect(self.accept) for file in files: self._add_file(file) self.listWidget.itemSelectionChanged.connect( self._on_selection_changed) self._on_selection_changed() def _add_file(self, path): icon = QtWidgets.QFileIconProvider().icon(QtCore.QFileInfo(path)) item = QtWidgets.QListWidgetItem(icon, path) self.listWidget.addItem(item) def _set_discarded(self): self.discarded = True def _on_selection_changed(self): nb_items = len(self.listWidget.selectedItems()) if nb_items == 0: self.bt_save_all.setText(_("Save")) self.bt_save_all.setEnabled(False) else: self.bt_save_all.setEnabled(True) self.bt_save_all.setText(_("Save selected")) if nb_items == self.listWidget.count(): self.bt_save_all.setText(_("Save all")) Turing-0.11-beta/pyqode/core/icons.py000066400000000000000000000036111331472757200175460ustar00rootroot00000000000000""" This module contains a wrapper api over the various icon source pyqode could use: - icon from theme (linux only) - icon from qrc - icon from qtawesome qtawesome is an optional dependency, it is disabled by default. If your application use qtawesome, just set ``USE_QTAWESOME`` to True. """ from pyqode.qt import QtGui try: import qtawesome as qta except ImportError: qta = None #: This flag controls qtawesome icons should be preferred to theme/qrc icons. USE_QTAWESOME = False #: Default options used for rendering an icon from qtawesome. #: Options cannot be changed after the icon has been rendered so make sure #: to setup those options at startup (i.e. before you create any icon). QTA_OPTIONS = { 'color': '', 'color_disabled': '' } def icon(theme_name='', path='', qta_name='', qta_options=None, use_qta=None): """ Creates an icon from qtawesome, from theme or from path. :param theme_name: icon name in the current theme (GNU/Linux only) :param path: path of the icon (from file system or qrc) :param qta_name: icon name in qtawesome :param qta_options: the qtawesome options to use for controlling icon rendering. If None, QTA_OPTIONS are used. :param use_qta: True to use qtawesome, False to use icon from theme/path. None to use the global setting: USE_QTAWESOME. :returns: QtGui.QIcon """ ret_val = None if use_qta is None: use_qta = USE_QTAWESOME if qta_options is None: qta_options = QTA_OPTIONS if qta is not None and use_qta is True: ret_val = qta.icon(qta_name, **qta_options) else: if theme_name and path: ret_val = QtGui.QIcon.fromTheme(theme_name, QtGui.QIcon(path)) elif theme_name: ret_val = QtGui.QIcon.fromTheme(theme_name) elif path: ret_val = QtGui.QIcon(path) return ret_val Turing-0.11-beta/pyqode/core/managers/000077500000000000000000000000001331472757200176555ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/managers/__init__.py000066400000000000000000000014731331472757200217730ustar00rootroot00000000000000""" The managers package contains a series of managers classes for CodeEdit. A manager is class that takes care of a specific aspect of CodeEdit: - FileManager: open, save, encoding detection - BackendManager: manage the backend process (start the process and handle communication through sockets). - ModesManager: manage the list of modes of an editor - PanelsManager: manage the list of panels and draw them into the editor margins. - DecorationManager: manage text decorations """ from .backend import BackendManager from .decorations import TextDecorationsManager from .file import FileManager from .modes import ModesManager from .panels import PanelsManager __all__ = [ 'BackendManager', 'FileManager', 'ModesManager', 'PanelsManager', 'TextDecorationsManager', ] Turing-0.11-beta/pyqode/core/managers/backend.py000066400000000000000000000205641331472757200216250ustar00rootroot00000000000000""" This module contains the backend controller """ import logging import socket import sys from pyqode.qt import QtCore from pyqode.core.api.client import JsonTcpClient, BackendProcess from pyqode.core.api.manager import Manager from pyqode.core.backend import NotRunning, echo_worker def _logger(): return logging.getLogger(__name__) #: log level for communication COMM = 1 def comm(msg, *args): _logger().log(COMM, msg, *args) class BackendManager(Manager): """ The backend controller takes care of controlling the client-server architecture. It is responsible of starting the backend process and the client socket and exposes an API to easily control the backend: - start - stop - send_request """ LAST_PORT = None LAST_PROCESS = None SHARE_COUNT = 0 def __init__(self, editor): super(BackendManager, self).__init__(editor) self._process = None self._sockets = [] self.server_script = None self.interpreter = None self.args = None self._shared = False self._heartbeat_timer = QtCore.QTimer() self._heartbeat_timer.setInterval(1000) self._heartbeat_timer.timeout.connect(self._send_heartbeat) self._heartbeat_timer.start() @staticmethod def pick_free_port(): """ Picks a free port """ test_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) test_socket.bind(('127.0.0.1', 0)) free_port = int(test_socket.getsockname()[1]) test_socket.close() return free_port def start(self, script, interpreter=sys.executable, args=None, error_callback=None, reuse=False): """ Starts the backend process. The backend is a python script that starts a :class:`pyqode.core.backend.JsonServer`. You must write the backend script so that you can apply your own backend configuration. The script can be run with a custom interpreter. The default is to use sys.executable. .. note:: This restart the backend process if it was previously running. :param script: Path to the backend script. :param interpreter: The python interpreter to use to run the backend script. If None, sys.executable is used unless we are in a frozen application (frozen backends do not require an interpreter). :param args: list of additional command line args to use to start the backend process. :param reuse: True to reuse an existing backend process. WARNING: to use this, your application must have one single server script. If you're creating an app which supports multiple programming languages you will need to merge all backend scripts into one single script, otherwise the wrong script might be picked up). """ self._shared = reuse if reuse and BackendManager.SHARE_COUNT: self._port = BackendManager.LAST_PORT self._process = BackendManager.LAST_PROCESS BackendManager.SHARE_COUNT += 1 else: if self.running: self.stop() self.server_script = script self.interpreter = interpreter self.args = args backend_script = script.replace('.pyc', '.py') self._port = self.pick_free_port() if hasattr(sys, "frozen") and not backend_script.endswith('.py'): # frozen backend script on windows/mac does not need an # interpreter program = backend_script pgm_args = [str(self._port)] else: program = interpreter pgm_args = [backend_script, str(self._port)] if args: pgm_args += args self._process = BackendProcess(self.editor) if error_callback: self._process.error.connect(error_callback) self._process.start(program, pgm_args) if reuse: BackendManager.LAST_PROCESS = self._process BackendManager.LAST_PORT = self._port BackendManager.SHARE_COUNT += 1 comm('starting backend process: %s %s', program, ' '.join(pgm_args)) self._heartbeat_timer.start() def stop(self): """ Stops the backend process. """ if self._process is None: return if self._shared: BackendManager.SHARE_COUNT -= 1 if BackendManager.SHARE_COUNT: return comm('stopping backend process') # close all sockets for s in self._sockets: s._callback = None s.close() self._sockets[:] = [] # prevent crash logs from being written if we are busy killing # the process self._process._prevent_logs = True while self._process.state() != self._process.NotRunning: self._process.waitForFinished(1) if sys.platform == 'win32': # Console applications on Windows that do not run an event # loop, or whose event loop does not handle the WM_CLOSE # message, can only be terminated by calling kill(). self._process.kill() else: self._process.terminate() self._process._prevent_logs = False self._heartbeat_timer.stop() comm('backend process terminated') def send_request(self, worker_class_or_function, args, on_receive=None): """ Requests some work to be done by the backend. You can get notified of the work results by passing a callback (on_receive). :param worker_class_or_function: Worker class or function :param args: worker args, any Json serializable objects :param on_receive: an optional callback executed when we receive the worker's results. The callback will be called with one arguments: the results of the worker (object) :raise: backend.NotRunning if the backend process is not running. """ if not self.running: try: # try to restart the backend if it crashed. self.start(self.server_script, interpreter=self.interpreter, args=self.args) except AttributeError: pass # not started yet finally: # caller should try again, later raise NotRunning() else: comm('sending request, worker=%r' % worker_class_or_function) # create a socket, the request will be send as soon as the socket # has connected socket = JsonTcpClient( self.editor, self._port, worker_class_or_function, args, on_receive=on_receive) socket.finished.connect(self._rm_socket) self._sockets.append(socket) # restart heartbeat timer self._heartbeat_timer.start() def _send_heartbeat(self): try: self.send_request(echo_worker, {'heartbeat': True}) except NotRunning: self._heartbeat_timer.stop() def _rm_socket(self, socket): try: socket.close() self._sockets.remove(socket) socket.deleteLater() except ValueError: pass @property def running(self): """ Tells whether the backend process is running. :return: True if the process is running, otherwise False """ try: return (self._process is not None and self._process.state() != self._process.NotRunning) except RuntimeError: return False @property def connected(self): """ Checks if the client socket is connected to the backend. .. deprecated: Since v2.3, a socket is created per request. Checking for global connection status does not make any sense anymore. This property now returns ``running``. This will be removed in v2.5 """ return self.running @property def exit_code(self): """ Returns the backend process exit status or None if the process is till running. """ if self.running: return None else: return self._process.exitCode() Turing-0.11-beta/pyqode/core/managers/decorations.py000066400000000000000000000033461331472757200225470ustar00rootroot00000000000000""" Contains the text decorations manager """ import logging from pyqode.core.api.manager import Manager def _logger(): return logging.getLogger(__name__) class TextDecorationsManager(Manager): """ Manages the collection of TextDecoration that have been set on the editor widget. """ def __init__(self, editor): super(TextDecorationsManager, self).__init__(editor) self._decorations = [] def append(self, decoration): """ Adds a text decoration on a CodeEdit instance :param decoration: Text decoration to add :type decoration: pyqode.core.api.TextDecoration """ if decoration not in self._decorations: self._decorations.append(decoration) self._decorations = sorted( self._decorations, key=lambda sel: sel.draw_order) self.editor.setExtraSelections(self._decorations) return True return False def remove(self, decoration): """ Removes a text decoration from the editor. :param decoration: Text decoration to remove :type decoration: pyqode.core.api.TextDecoration """ try: self._decorations.remove(decoration) self.editor.setExtraSelections(self._decorations) return True except ValueError: return False def clear(self): """ Removes all text decoration from the editor. """ self._decorations[:] = [] try: self.editor.setExtraSelections(self._decorations) except RuntimeError: pass def __iter__(self): return iter(self._decorations) def __len__(self): return len(self._decorations) Turing-0.11-beta/pyqode/core/managers/file.py000066400000000000000000000362041331472757200211530ustar00rootroot00000000000000""" This module contains the file helper implementation """ try: from future.builtins import open from future.builtins import str except: pass # python 3.2 not supported import locale import logging import mimetypes import os from pyqode.core.api.manager import Manager from pyqode.core.api.utils import TextHelper from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache # needed on windows mimetypes.add_type('text/x-python', '.py') mimetypes.add_type('text/xml', '.ui') def _logger(): return logging.getLogger(__name__) class FileManager(Manager): """ Helps manage file operations: - opening and saving files - providing file icon - detecting mimetype Example of usage:: editor = CodeEdit() assert editor.file.path == '' # open a file with default locale encoding or using the cached one. editor.open(__file__) assert editor.file.path == __file__ print(editor.file.encoding) # reload with another encoding editor.open(__file__, encoding='cp1252', use_cached_encoding=False) assert editor.file.path == __file__ editor.file.encoding == 'cp1252' """ class EOL: """ This class enumerates the possible EOL conventions: - System: apply the system EOL - Linux: force the use of Linux EOL (\n) - Mac: force the use of Macintosh EOL (\r) - Windows: force the use of Windows EOL (\r\n) """ #: System = 0 #: Linux EOL: \n Linux = 1 #: Macintosh EOL: \r Mac = 2 #: Windows EOL: \r\n Windows = 3 _map = { System: os.linesep, Linux: '\n', Mac: '\r', Windows: '\r\n' } @classmethod def string(cls, value): return cls._map[value] @property def path(self): """ Gets the file path """ if self._path: return os.path.normpath(self._path) return '' @property def name(self): """ Gets the file base name """ return os.path.split(self.path)[1] @property def extension(self): """ Gets the file path """ return os.path.splitext(self.path)[1] @property def dirname(self): """ Gets the file directory name """ return os.path.dirname(self._path) @property def encoding(self): """ Gets the file encoding """ return self._encoding @property def icon(self): """ Gets the file icon, provided by _get_icon """ return self._get_icon() @property def autodetect_eol(self): return self._autodetect_eol @autodetect_eol.setter def autodetect_eol(self, value): self._autodetect_eol = value if not self._autodetect_eol: self._eol = self.EOL.string(self._preferred_eol) @property def preferred_eol(self): return self._preferred_eol @preferred_eol.setter def preferred_eol(self, eol): self._preferred_eol = eol if not self._autodetect_eol: self._eol = self.EOL.string(self._preferred_eol) @property def file_size_limit(self): """ Returns the file size limit. If the size of the file to open is superior to the limit, then we disabled syntax highlighting, code folding,... to improve the load time and the runtime performances. Default is 10MB. """ return self._limit @file_size_limit.setter def file_size_limit(self, value): self._limit = value def _get_icon(self): return QtWidgets.QFileIconProvider().icon(QtCore.QFileInfo(self.path)) def __init__(self, editor, replace_tabs_by_spaces=True): """ :param editor: Code edit instance to work on. :param replace_tabs_by_spaces: True to replace tabs by spaces on load/save. """ super(FileManager, self).__init__(editor) self._limit = 10000000 self._path = '' #: File mimetype self.mimetype = '' #: store the last file encoding used to open or save the file. self._encoding = locale.getpreferredencoding() #: True to replace tabs by spaces self.replace_tabs_by_spaces = replace_tabs_by_spaces #: Opening flag. Set to true during the opening of a file. self.opening = False #: Saving flag. Set to while saving the editor content to a file. self.saving = True #: If True, the file is saved to a temporary file first. If the save #: went fine, the temporary file is renamed to the final filename. self.safe_save = True #: True to clean trailing whitespaces of changed lines. Default is #: True self.clean_trailing_whitespaces = True #: True to restore cursor position (if the document has already been # opened once). self.restore_cursor = True #: Preferred EOL convention. This setting will be used for saving the #: document unles autodetect_eol is True. self._preferred_eol = self.EOL.System self._eol = self.EOL.string(self._preferred_eol) #: If true, automatically detects file EOL and use it instead of the #: preferred EOL when saving files. self._autodetect_eol = True @staticmethod def get_mimetype(path): """ Guesses the mime type of a file. If mime type cannot be detected, plain text is assumed. :param path: path of the file :return: the corresponding mime type. """ filename = os.path.split(path)[1] mimetype = mimetypes.guess_type(filename)[0] if mimetype is None: mimetype = 'text/x-plain' _logger().debug('mimetype detected: %s', mimetype) return mimetype def open(self, path, encoding=None, use_cached_encoding=True): """ Open a file and set its content on the editor widget. pyqode does not try to guess encoding. It's up to the client code to handle encodings. You can either use a charset detector to detect encoding or rely on a settings in your application. It is also up to you to handle UnicodeDecodeError, unless you've added class:`pyqode.core.panels.EncodingPanel` on the editor. pyqode automatically caches file encoding that you can later reuse it automatically. :param path: Path of the file to open. :param encoding: Default file encoding. Default is to use the locale encoding. :param use_cached_encoding: True to use the cached encoding instead of ``encoding``. Set it to True if you want to force reload with a new encoding. :raises: UnicodeDecodeError in case of error if no EncodingPanel were set on the editor. """ ret_val = False if encoding is None: encoding = locale.getpreferredencoding() self.opening = True settings = Cache() self._path = path # get encoding from cache if use_cached_encoding: try: cached_encoding = settings.get_file_encoding( path, preferred_encoding=encoding) except KeyError: pass else: encoding = cached_encoding enable_modes = os.path.getsize(path) < self._limit for m in self.editor.modes: if m.enabled: m.enabled = enable_modes # open file and get its content try: with open(path, 'Ur', encoding=encoding) as file: content = file.read() if self.autodetect_eol: self._eol = file.newlines if isinstance(self._eol, tuple): self._eol = self._eol[0] if self._eol is None: # empty file has no newlines self._eol = self.EOL.string(self.preferred_eol) else: self._eol = self.EOL.string(self.preferred_eol) except (UnicodeDecodeError, UnicodeError) as e: try: from pyqode.core.panels import EncodingPanel panel = self.editor.panels.get(EncodingPanel) except KeyError: raise e # panel not found, not automatic error management else: panel.on_open_failed(path, encoding) else: # success! Cache the encoding settings.set_file_encoding(path, encoding) self._encoding = encoding # replace tabs by spaces if self.replace_tabs_by_spaces: content = content.replace("\t", " " * self.editor.tab_length) # set plain text self.editor.setPlainText( content, self.get_mimetype(path), self.encoding) self.editor.setDocumentTitle(self.editor.file.name) ret_val = True _logger().debug('file open: %s', path) self.opening = False if self.restore_cursor: self._restore_cached_pos() self._check_for_readonly() return ret_val def _check_for_readonly(self): self.read_only = not os.access(self.path, os.W_OK) self.editor.setReadOnly(self.read_only) def _restore_cached_pos(self): pos = Cache().get_cursor_position(self.path) max_pos = self.editor.document().characterCount() if pos > max_pos: pos = max_pos - 1 tc = self.editor.textCursor() tc.setPosition(pos) self.editor.setTextCursor(tc) QtCore.QTimer.singleShot(1, self.editor.centerCursor) def reload(self, encoding): """ Reload the file with another encoding. :param encoding: the new encoding to use to reload the file. """ assert os.path.exists(self.path) self.open(self.path, encoding=encoding, use_cached_encoding=False) @staticmethod def _rm(tmp_path): if os.path.exists(tmp_path): os.remove(tmp_path) def _reset_selection(self, sel_end, sel_start): text_cursor = self.editor.textCursor() text_cursor.setPosition(sel_start) text_cursor.setPosition(sel_end, text_cursor.KeepAnchor) self.editor.setTextCursor(text_cursor) def _get_selection(self): sel_start = self.editor.textCursor().selectionStart() sel_end = self.editor.textCursor().selectionEnd() return sel_end, sel_start def _get_text(self, encoding): lines = self.editor.toPlainText().splitlines() if self.clean_trailing_whitespaces: lines = [l.rstrip() for l in lines] # remove emtpy ending lines try: last_line = lines[-1] except IndexError: pass # empty file else: while last_line == '': try: lines.pop() last_line = lines[-1] except IndexError: last_line = None text = self._eol.join(lines) + self._eol return text.encode(encoding) def save(self, path=None, encoding=None, fallback_encoding=None): """ Save the editor content to a file. :param path: optional file path. Set it to None to save using the current path (save), set a new path to save as. :param encoding: optional encoding, will use the current file encoding if None. :param fallback_encoding: Fallback encoding to use in case of encoding error. None to use the locale preferred encoding """ if not self.editor.dirty and \ (encoding is None and encoding == self.encoding) and \ (path is None and path == self.path): # avoid saving if editor not dirty or if encoding or path did not # change return if fallback_encoding is None: fallback_encoding = locale.getpreferredencoding() _logger().log( 5, "saving %r with %r encoding", path, encoding) if path is None: if self.path: path = self.path else: _logger().debug( 'failed to save file, path argument cannot be None if ' 'FileManager.path is also None') return False # use cached encoding if None were specified if encoding is None: encoding = self._encoding self.saving = True self.editor.text_saving.emit(str(path)) # get file persmission on linux try: st_mode = os.stat(path).st_mode except (ImportError, TypeError, AttributeError, OSError): st_mode = None # perform a safe save: we first save to a temporary file, if the save # succeeded we just rename the temporary file to the final file name # and remove it. if self.safe_save: tmp_path = path + '~' else: tmp_path = path try: with open(tmp_path, 'wb') as file: file.write(self._get_text(encoding)) except UnicodeEncodeError: # fallback to utf-8 in case of error. with open(tmp_path, 'wb') as file: file.write(self._get_text(fallback_encoding)) except (IOError, OSError) as e: self._rm(tmp_path) self.saving = False self.editor.text_saved.emit(str(path)) raise e # cache update encoding Cache().set_file_encoding(path, encoding) self._encoding = encoding # remove path and rename temp file, if safe save is on if self.safe_save: self._rm(path) os.rename(tmp_path, path) self._rm(tmp_path) # reset dirty flags self.editor.document().setModified(False) # remember path for next save self._path = os.path.normpath(path) self.editor.text_saved.emit(str(path)) self.saving = False _logger().debug('file saved: %s', path) self._check_for_readonly() # restore file permission if st_mode: try: os.chmod(path, st_mode) except (ImportError, TypeError, AttributeError): pass def close(self, clear=True): """ Close the file open in the editor: - clear editor content - reset file attributes to their default values :param clear: True to clear the editor content. Default is True. """ Cache().set_cursor_position( self.path, self.editor.textCursor().position()) self.editor._original_text = '' if clear: self.editor.clear() self._path = '' self.mimetype = '' self._encoding = locale.getpreferredencoding() def clone_settings(self, original): self.replace_tabs_by_spaces = original.replace_tabs_by_spaces self.safe_save = original.replace_tabs_by_spaces self.clean_trailing_whitespaces = original.clean_trailing_whitespaces self.restore_cursor = original.restore_cursor Turing-0.11-beta/pyqode/core/managers/modes.py000066400000000000000000000043111331472757200213350ustar00rootroot00000000000000""" This module contains the modes controller. """ import logging from pyqode.core.api.manager import Manager def _logger(): """ Returns module's logger """ return logging.getLogger(__name__) class ModesManager(Manager): """ Manages the list of modes of the code edit widget. """ def __init__(self, editor): super(ModesManager, self).__init__(editor) self._modes = {} def append(self, mode): """ Adds a mode to the editor. :param mode: The mode instance to append. """ _logger().log(5, 'adding mode %r', mode.name) self._modes[mode.name] = mode mode.on_install(self.editor) return mode def remove(self, name_or_klass): """ Removes a mode from the editor. :param name_or_klass: The name (or class) of the mode to remove. :returns: The removed mode. """ _logger().log(5, 'removing mode %r', name_or_klass) mode = self.get(name_or_klass) mode.on_uninstall() self._modes.pop(mode.name) return mode def clear(self): """ Removes all modes from the editor. All modes are removed from list and deleted. """ while len(self._modes): key = sorted(list(self._modes.keys()))[0] self.remove(key) def get(self, name_or_klass): """ Gets a mode by name (or class) :param name_or_klass: The name or the class of the mode to get :type name_or_klass: str or type :rtype: pyqode.core.api.Mode """ if not isinstance(name_or_klass, str): name_or_klass = name_or_klass.__name__ return self._modes[name_or_klass] def keys(self): """ Returns the list of the names of the installed modes. """ return self._modes.keys() def values(self): """ Returns the list of installed modes. """ return self._modes.values() def __len__(self): return len(list(self._modes.values())) def __iter__(self): """ Returns the list of modes. :return: """ return iter([v for k, v in sorted(self._modes.items())]) Turing-0.11-beta/pyqode/core/managers/panels.py000066400000000000000000000246541331472757200215240ustar00rootroot00000000000000""" This module contains the panels controller, responsible of drawing panel inside CodeEdit's margins """ import logging from pyqode.core.api.utils import TextHelper from pyqode.core.api.manager import Manager from pyqode.core.api.panel import Panel def _logger(): return logging.getLogger(__name__) class PanelsManager(Manager): """ Manages the list of panels and draws them inised the margin of the code edit widget. """ def __init__(self, editor): super(PanelsManager, self).__init__(editor) self._cached_cursor_pos = (-1, -1) self._margin_sizes = (0, 0, 0, 0) self._top = self._left = self._right = self._bottom = -1 self._panels = { Panel.Position.TOP: {}, Panel.Position.LEFT: {}, Panel.Position.RIGHT: {}, Panel.Position.BOTTOM: {} } try: editor.blockCountChanged.connect(self._update_viewport_margins) editor.updateRequest.connect(self._update) except AttributeError: # QTextEdit editor.document().blockCountChanged.connect( self._update_viewport_margins) def append(self, panel, position=Panel.Position.LEFT): """ Installs a panel on the editor. :param panel: Panel to install :param position: Position where the panel must be installed. :return: The installed panel """ assert panel is not None pos_to_string = { Panel.Position.BOTTOM: 'bottom', Panel.Position.LEFT: 'left', Panel.Position.RIGHT: 'right', Panel.Position.TOP: 'top' } _logger().log(5, 'adding panel %s at %r', panel.name, pos_to_string[position]) panel.order_in_zone = len(self._panels[position]) self._panels[position][panel.name] = panel panel.position = position panel.on_install(self.editor) _logger().log(5, 'panel %s installed', panel.name) return panel def remove(self, name_or_klass): """ Removes the specified panel. :param name_or_klass: Name or class of the panel to remove. :return: The removed panel """ _logger().log(5, 'removing panel %r', name_or_klass) panel = self.get(name_or_klass) panel.on_uninstall() panel.hide() panel.setParent(None) return self._panels[panel.position].pop(panel.name, None) def clear(self): """ Removes all panel from the editor. """ for i in range(4): while len(self._panels[i]): key = sorted(list(self._panels[i].keys()))[0] panel = self.remove(key) panel.setParent(None) panel.deleteLater() def get(self, name_or_klass): """ Gets a specific panel instance. :param name_or_klass: Name or class of the panel to retrieve. :return: The specified panel instance. """ if not isinstance(name_or_klass, str): name_or_klass = name_or_klass.__name__ for zone in range(4): try: panel = self._panels[zone][name_or_klass] except KeyError: pass else: return panel raise KeyError(name_or_klass) def keys(self): """ Returns the list of installed panel names. """ return self._modes.keys() def values(self): """ Returns the list of installed panels. """ return self._modes.values() def __iter__(self): lst = [] for zone, zone_dict in self._panels.items(): for name, panel in zone_dict.items(): lst.append(panel) return iter(lst) def __len__(self): lst = [] for zone, zone_dict in self._panels.items(): for name, panel in zone_dict.items(): lst.append(panel) return len(lst) def panels_for_zone(self, zone): """ Gets the list of panels attached to the specified zone. :param zone: Panel position. :return: List of panels instances. """ return list(self._panels[zone].values()) def refresh(self): """ Refreshes the editor panels (resize and update margins) """ _logger().log(5, 'refresh_panels') self.resize() self._update(self.editor.contentsRect(), 0, force_update_margins=True) def resize(self): """ Resizes panels """ crect = self.editor.contentsRect() view_crect = self.editor.viewport().contentsRect() s_bottom, s_left, s_right, s_top = self._compute_zones_sizes() tw = s_left + s_right th = s_bottom + s_top w_offset = crect.width() - (view_crect.width() + tw) h_offset = crect.height() - (view_crect.height() + th) left = 0 panels = self.panels_for_zone(Panel.Position.LEFT) panels.sort(key=lambda panel: panel.order_in_zone, reverse=True) for panel in panels: if not panel.isVisible(): continue panel.adjustSize() size_hint = panel.sizeHint() panel.setGeometry(crect.left() + left, crect.top() + s_top, size_hint.width(), crect.height() - s_bottom - s_top - h_offset) left += size_hint.width() right = 0 panels = self.panels_for_zone(Panel.Position.RIGHT) panels.sort(key=lambda panel: panel.order_in_zone, reverse=True) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry( crect.right() - right - size_hint.width() - w_offset, crect.top() + s_top, size_hint.width(), crect.height() - s_bottom - s_top - h_offset) right += size_hint.width() top = 0 panels = self.panels_for_zone(Panel.Position.TOP) panels.sort(key=lambda panel: panel.order_in_zone) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry(crect.left(), crect.top() + top, crect.width() - w_offset, size_hint.height()) top += size_hint.height() bottom = 0 panels = self.panels_for_zone(Panel.Position.BOTTOM) panels.sort(key=lambda panel: panel.order_in_zone) for panel in panels: if not panel.isVisible(): continue size_hint = panel.sizeHint() panel.setGeometry( crect.left(), crect.bottom() - bottom - size_hint.height() - h_offset, crect.width() - w_offset, size_hint.height()) bottom += size_hint.height() def _update(self, rect, delta_y, force_update_margins=False): """ Updates panels """ helper = TextHelper(self.editor) if not self: return for zones_id, zone in self._panels.items(): if zones_id == Panel.Position.TOP or \ zones_id == Panel.Position.BOTTOM: continue panels = list(zone.values()) for panel in panels: if panel.scrollable and delta_y: panel.scroll(0, delta_y) line, col = helper.cursor_position() oline, ocol = self._cached_cursor_pos if line != oline or col != ocol or panel.scrollable: panel.update(0, rect.y(), panel.width(), rect.height()) self._cached_cursor_pos = helper.cursor_position() if (rect.contains(self.editor.viewport().rect()) or force_update_margins): self._update_viewport_margins() def _update_viewport_margins(self): """ Update viewport margins """ top = 0 left = 0 right = 0 bottom = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if panel.isVisible(): width = panel.sizeHint().width() left += width for panel in self.panels_for_zone(Panel.Position.RIGHT): if panel.isVisible(): width = panel.sizeHint().width() right += width for panel in self.panels_for_zone(Panel.Position.TOP): if panel.isVisible(): height = panel.sizeHint().height() top += height for panel in self.panels_for_zone(Panel.Position.BOTTOM): if panel.isVisible(): height = panel.sizeHint().height() bottom += height self._margin_sizes = (top, left, right, bottom) self.editor.setViewportMargins(left, top, right, bottom) def margin_size(self, position=Panel.Position.LEFT): """ Gets the size of a specific margin. :param position: Margin position. See :class:`pyqode.core.api.Panel.Position` :return: The size of the specified margin :rtype: float """ return self._margin_sizes[position] def _compute_zones_sizes(self): """ Compute panel zone sizes """ # Left panels left = 0 for panel in self.panels_for_zone(Panel.Position.LEFT): if not panel.isVisible(): continue size_hint = panel.sizeHint() left += size_hint.width() # Right panels right = 0 for panel in self.panels_for_zone(Panel.Position.RIGHT): if not panel.isVisible(): continue size_hint = panel.sizeHint() right += size_hint.width() # Top panels top = 0 for panel in self.panels_for_zone(Panel.Position.TOP): if not panel.isVisible(): continue size_hint = panel.sizeHint() top += size_hint.height() # Bottom panels bottom = 0 for panel in self.panels_for_zone(Panel.Position.BOTTOM): if not panel.isVisible(): continue size_hint = panel.sizeHint() bottom += size_hint.height() self._top, self._left, self._right, self._bottom = ( top, left, right, bottom) return bottom, left, right, top Turing-0.11-beta/pyqode/core/modes/000077500000000000000000000000001331472757200171675ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/modes/__init__.py000066400000000000000000000031771331472757200213100ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains the core modes. """ from .autocomplete import AutoCompleteMode from .autoindent import AutoIndentMode from .backspace import SmartBackSpaceMode from .caret_line_highlight import CaretLineHighlighterMode from .case_converter import CaseConverterMode from .checker import CheckerMode from .checker import CheckerMessage from .checker import CheckerMessages from .cursor_history import CursorHistoryMode from .code_completion import CodeCompletionMode from .extended_selection import ExtendedSelectionMode from .filewatcher import FileWatcherMode from .indenter import IndenterMode from .line_highlighter import LineHighlighterMode from .matcher import SymbolMatcherMode from .occurences import OccurrencesHighlighterMode from .outline import OutlineMode from .right_margin import RightMarginMode from .pygments_sh import PygmentsSH from .wordclick import WordClickMode from .zoom import ZoomMode # for backward compatibility from ..api.syntax_highlighter import PYGMENTS_STYLES from .pygments_sh import PygmentsSH as PygmentsSyntaxHighlighter __all__ = [ 'AutoCompleteMode', 'AutoIndentMode', 'CaretLineHighlighterMode', 'CaseConverterMode', 'CheckerMode', 'CheckerMessage', 'CheckerMessages', 'CodeCompletionMode', 'CursorHistoryMode', 'ExtendedSelectionMode', 'FileWatcherMode', 'IndenterMode', 'LineHighlighterMode', 'OccurrencesHighlighterMode', 'OutlineMode', 'PygmentsSH', 'PygmentsSyntaxHighlighter', 'PYGMENTS_STYLES', 'RightMarginMode', 'SmartBackSpaceMode', 'SymbolMatcherMode', 'WordClickMode', 'ZoomMode', ] Turing-0.11-beta/pyqode/core/modes/autocomplete.py000066400000000000000000000107251331472757200222470ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the AutoCompleteMode """ import logging from pyqode.qt import QtCore, QtGui from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode class AutoCompleteMode(Mode): """ Automatically complete quotes and parentheses Generic auto complete mode that automatically completes the following symbols: - " -> " - ' -> ' - ( -> ) - [ -> ] - { -> } """ def __init__(self): super(AutoCompleteMode, self).__init__() #: Auto complete mapping, maps input key with completion text. self.MAPPING = {'"': '"', "'": "'", "(": ")", "{": "}", "[": "]"} #: The format to use for each symbol in mapping when there is a selection self.SELECTED_QUOTES_FORMATS = {key: '%s%s%s' for key in self.MAPPING.keys()} #: The format to use for each symbol in mapping when there is no selection self.QUOTES_FORMATS = {key: '%s' for key in self.MAPPING.keys()} self.logger = logging.getLogger(__name__) self._ignore_post = False def on_state_changed(self, state): if state: self.editor.post_key_pressed.connect(self._on_post_key_pressed) self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.post_key_pressed.disconnect(self._on_post_key_pressed) self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_post_key_pressed(self, event): if not event.isAccepted() and not self._ignore_post: txt = event.text() trav = self.editor.textCursor() assert isinstance(trav, QtGui.QTextCursor) trav.movePosition(trav.Left, trav.MoveAnchor, 2) literal = TextHelper(self.editor).is_comment_or_string(trav) if not literal: next_char = TextHelper(self.editor).get_right_character() if txt in self.MAPPING: to_insert = self.MAPPING[txt] if (not next_char or next_char in self.MAPPING.keys() or next_char in self.MAPPING.values() or next_char.isspace()): TextHelper(self.editor).insert_text( self.QUOTES_FORMATS[txt] % to_insert) self._ignore_post = False def _on_key_pressed(self, event): txt = event.text() cursor = self.editor.textCursor() from pyqode.qt import QtGui assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): # quoting of selected text if event.text() in self.MAPPING.keys(): first = event.text() last = self.MAPPING[event.text()] cursor.insertText( self.SELECTED_QUOTES_FORMATS[event.text()] % ( first, cursor.selectedText(), last)) self.editor.setTextCursor(cursor) event.accept() else: self._ignore_post = True return next_char = TextHelper(self.editor).get_right_character() self.logger.debug('next char: %s', next_char) ignore = False if event.key() == QtCore.Qt.Key_Backspace: # get the character that will get deleted tc = self.editor.textCursor() pos = tc.position() tc.movePosition(tc.Left) tc.movePosition(tc.Right, tc.KeepAnchor) del_char = tc.selectedText() if del_char in self.MAPPING and \ self.MAPPING[del_char] == next_char: tc.beginEditBlock() tc.movePosition(tc.Right, tc.KeepAnchor) tc.insertText('') tc.setPosition(pos - 2) tc.endEditBlock() self.editor.setTextCursor(tc) ignore = True elif txt and next_char == txt and next_char in self.MAPPING: ignore = True elif event.text() == ')' or event.text() == ']' or event.text() == '}': # if typing the same symbol twice, the symbol should not be written # and the cursor moved just after the char # e.g. if you type ) just before ), the cursor will just move after # the existing ) if next_char == event.text(): ignore = True if ignore: event.accept() TextHelper(self.editor).clear_selection() TextHelper(self.editor).move_right() Turing-0.11-beta/pyqode/core/modes/autoindent.py000066400000000000000000000036111331472757200217140ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the automatic generic indenter """ from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt.QtCore import Qt class AutoIndentMode(Mode): """ Indents text automatically. Generic indenter mode that indents the text when the user press RETURN. You can customize this mode by overriding :meth:`pyqode.core.modes.AutoIndentMode._get_indent` """ def __init__(self): super(AutoIndentMode, self).__init__() def _get_indent(self, cursor): """ Return the indentation text (a series of spaces or tabs) :param cursor: QTextCursor :returns: Tuple (text before new line, text after new line) """ indent = TextHelper(self.editor).line_indent() * ' ' return "", indent def on_state_changed(self, state): if state is True: self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): """ Auto indent if the released key is the return key. :param event: the key event """ if not event.isAccepted(): if event.key() == Qt.Key_Return or event.key() == Qt.Key_Enter: cursor = self.editor.textCursor() pre, post = self._get_indent(cursor) cursor.beginEditBlock() cursor.insertText("%s\n%s" % (pre, post)) # eats possible whitespaces cursor.movePosition(cursor.WordRight, cursor.KeepAnchor) txt = cursor.selectedText() if txt.startswith(' '): new_txt = txt.replace(" ", '') if len(txt) > len(new_txt): cursor.insertText(new_txt) cursor.endEditBlock() event.accept() Turing-0.11-beta/pyqode/core/modes/backspace.py000066400000000000000000000035511331472757200214610ustar00rootroot00000000000000""" This module contains the smart backspace mode """ from pyqode.qt import QtCore, QtGui from pyqode.core.api import Mode class SmartBackSpaceMode(Mode): """ Improves backspace behaviour. When you press backspace and there are spaces on the left of the cursor, those spaces will be deleted (at most tab_len spaces). Basically this turns backspace into Shitf+Tab """ def on_state_changed(self, state): if state: self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): no_modifiers = int(event.modifiers()) == QtCore.Qt.NoModifier if event.key() == QtCore.Qt.Key_Backspace and no_modifiers: if self.editor.textCursor().atBlockStart(): return tab_len = self.editor.tab_length tab_len = self.editor.textCursor().positionInBlock() % tab_len if tab_len == 0: tab_len = self.editor.tab_length # count the number of spaces deletable, stop at tab len spaces = 0 cursor = QtGui.QTextCursor(self.editor.textCursor()) while spaces < tab_len or cursor.atBlockStart(): pos = cursor.position() cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = cursor.selectedText() if char == " ": spaces += 1 else: break cursor.setPosition(pos - 1) cursor = self.editor.textCursor() if spaces == 0: return cursor.beginEditBlock() for _ in range(spaces): cursor.deletePreviousChar() cursor.endEditBlock() self.editor.setTextCursor(cursor) event.accept() Turing-0.11-beta/pyqode/core/modes/caret_line_highlight.py000066400000000000000000000052511331472757200237000ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the care line highlighter mode """ from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.core.api.utils import drift_color from pyqode.qt import QtGui class CaretLineHighlighterMode(Mode): """ Highlights the caret line """ @property def background(self): """ Background color of the caret line. Default is to use a color slightly darker/lighter than the background color. You can override the automatic color by setting up this property """ if self._color or not self.editor: return self._color else: return drift_color(self.editor.background, 110) @background.setter def background(self, value): self._color = value self.refresh() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): super(CaretLineHighlighterMode, self).__init__() self._decoration = None self._pos = -1 self._color = None def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self.refresh) self.editor.new_text_set.connect(self.refresh) self.refresh() else: self.editor.cursorPositionChanged.disconnect( self.refresh) self.editor.new_text_set.disconnect(self.refresh) self._clear_deco() def on_install(self, editor): super(CaretLineHighlighterMode, self).on_install(editor) self.refresh() def _clear_deco(self): """ Clear line decoration """ if self._decoration: self.editor.decorations.remove(self._decoration) self._decoration = None def refresh(self): """ Updates the current line decoration """ if self.enabled: self._clear_deco() if self._color: color = self._color else: color = drift_color(self.editor.background, 110) brush = QtGui.QBrush(color) self._decoration = TextDecoration(self.editor.textCursor()) self._decoration.set_background(brush) self._decoration.set_full_width() self.editor.decorations.append(self._decoration) def clone_settings(self, original): self.background = original.background Turing-0.11-beta/pyqode/core/modes/case_converter.py000066400000000000000000000037221331472757200225470ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains a case converter mode. """ from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtWidgets class CaseConverterMode(Mode): """ Provides context actions for converting case of the selected text. Converts selected text to lower case or UPPER case. It does so by adding two new menu entries to the editor's context menu: - *Convert to lower case*: ctrl-u - *Convert to UPPER CASE*: ctrl+shift+u """ def __init__(self): Mode.__init__(self) self._actions_created = False self.action_to_lower = None self.action_to_upper = None def to_upper(self): """ Converts selected text to upper """ TextHelper(self.editor).selected_text_to_upper() def to_lower(self): """ Converts selected text to lower """ TextHelper(self.editor).selected_text_to_lower() def _create_actions(self): """ Create associated actions """ self.action_to_lower = QtWidgets.QAction(self.editor) self.action_to_lower.triggered.connect(self.to_lower) self.action_to_upper = QtWidgets.QAction(self.editor) self.action_to_upper.triggered.connect(self.to_upper) self.action_to_lower.setText(_('Convert to lower case')) self.action_to_lower.setShortcut('Ctrl+U') self.action_to_upper.setText(_('Convert to UPPER CASE')) self.action_to_upper.setShortcut('Ctrl+Shift+U') self.menu = QtWidgets.QMenu(_('Case'), self.editor) self.menu.addAction(self.action_to_lower) self.menu.addAction(self.action_to_upper) self._actions_created = True def on_state_changed(self, state): if state: if not self._actions_created: self._create_actions() self.editor.add_action(self.menu.menuAction()) else: self.editor.remove_action(self.menu.menuAction()) Turing-0.11-beta/pyqode/core/modes/checker.py000066400000000000000000000301651331472757200211520ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the checker mode, a base class for code checker modes. """ import logging from pyqode.core.api import TextBlockUserData from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.core.backend import NotRunning from pyqode.core.api.utils import DelayJobRunner from pyqode.qt import QtCore, QtGui class CheckerMessages(object): """ Enumerates the possible checker message types. """ #: Status value for an information message. INFO = 0 #: Status value for a warning message. WARNING = 1 #: Status value for an error message. ERROR = 2 class CheckerMessage(object): """ Holds data for a message displayed by the :class:`pyqode.core.modes.CheckerMode`. """ #: Default colors foreach message status COLORS = {CheckerMessages.INFO: "#4040DD", CheckerMessages.WARNING: "#DDDD40", CheckerMessages.ERROR: "#DD4040"} @classmethod def status_to_string(cls, status): """ Converts a message status to a string. :param status: Status to convert (p yqode.core.modes.CheckerMessages) :return: The status string. :rtype: str """ strings = {CheckerMessages.INFO: "Info", CheckerMessages.WARNING: "Warning", CheckerMessages.ERROR: "Error"} return strings[status] @property def status_string(self): """ Returns the message status as a string. :return: The status string. """ return self.status_to_string(self.status) def __init__(self, description, status, line, col=None, icon=None, color=None, path=None): """ :param description: The message description (used as a tooltip) :param status: The status associated with the message. :param line: The message line number :param col: The message start column (at the moment the message ends at the end of the line). :param icon: Unused, we keep it for backward compatiblity. :param color: Text decoration color :param path: file path. Optional """ assert 0 <= status <= 2 #: The description of the message, used as a tooltip. self.description = description #: The status associated with the message. One of: #: * :const:`pyqode.core.modes.CheckerMessages.INFO` #: * :const:`pyqode.core.modes.CheckerMessages.WARNING` #: * :const:`pyqode.core.modes.CheckerMessages.ERROR` self.status = status #: The line of the message self.line = line #: The start column (used for the text decoration). If the col is None, #: the whole line is highlighted. self.col = col #: The color used for the text decoration. If None, the default color #: is used (:const:`pyqode.core.CheckerMessage.COLORS`) self.color = color if self.color is None: self.color = self.COLORS[status] self.decoration = None self.path = path #: store a reference to the associated QTextBlock, for quick acces self.block = None def __str__(self): return "{0} l{1}".format(self.description, self.line) def __eq__(self, other): return (self.block == other.block and self.description == other.description) def _logger(klass): return logging.getLogger('%s [%s]' % (__name__, klass.__name__)) class CheckerMode(Mode, QtCore.QObject): """ Performs a user defined code analysis job using the backend and display the results on the editor instance. The user defined code analysis job is a simple **function** with the following signature: .. code-block:: python def analysisProcess(data) where data is the request data: .. code-block:: python request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } and the return value is a tuple made up of the following elements: (description, status, line, [col], [icon], [color], [path]) The background process is ran when the text changed and the ide is an idle state for a few seconds. You can also request an analysis manually using :meth:`pyqode.core.modes.CheckerMode.request_analysis` Messages are displayed as text decorations on the editor. A checker panel will take care of display message icons next to each line. """ @property def messages(self): """ Returns the entire list of checker messages. """ return self._messages def __init__(self, worker, delay=500, show_tooltip=True): """ :param worker: The process function or class to call remotely. :param delay: The delay used before running the analysis process when trigger is set to :class:pyqode.core.modes.CheckerTriggers` :param show_tooltip: Specify if a tooltip must be displayed when the mouse is over a checker message decoration. """ Mode.__init__(self) QtCore.QObject.__init__(self) # max number of messages to keep good performances self.limit = 200 self.ignore_rules = [] self._job_runner = DelayJobRunner(delay=delay) self._messages = [] self._worker = worker self._mutex = QtCore.QMutex() self._show_tooltip = show_tooltip self._pending_msg = [] self._finished = True def set_ignore_rules(self, rules): """ Sets the ignore rules for the linter. Rules are a list of string that the actual linter function will check to reject some warnings/errors. """ self.ignore_rules = rules def add_messages(self, messages): """ Adds a message or a list of message. :param messages: A list of messages or a single message """ # remove old messages if len(messages) > self.limit: messages = messages[:self.limit] _logger(self.__class__).log(5, 'adding %s messages' % len(messages)) self._finished = False self._new_messages = messages self._to_check = list(self._messages) self._pending_msg = messages # start removing messages, new message won't be added until we # checked all message that need to be removed QtCore.QTimer.singleShot(1, self._remove_batch) def _remove_batch(self): if self.editor is None: return for i in range(100): if not len(self._to_check): # all messages checker, start adding messages now QtCore.QTimer.singleShot(1, self._add_batch) self.editor.repaint() return False msg = self._to_check.pop(0) if msg.block is None: msg.block = self.editor.document().findBlockByNumber(msg.line) if msg not in self._new_messages: self.remove_message(msg) self.editor.repaint() QtCore.QTimer.singleShot(1, self._remove_batch) def _add_batch(self): if self.editor is None: return for i in range(10): if not len(self._pending_msg): # all pending message added self._finished = True _logger(self.__class__).log(5, 'finished') self.editor.repaint() return False message = self._pending_msg.pop(0) if message.line >= 0: try: usd = message.block.userData() except AttributeError: message.block = self.editor.document().findBlockByNumber(message.line) usd = message.block.userData() if usd is None: usd = TextBlockUserData() message.block.setUserData(usd) # check if the same message already exists if message in usd.messages: continue self._messages.append(message) usd.messages.append(message) tooltip = None if self._show_tooltip: tooltip = message.description message.decoration = TextDecoration( self.editor.textCursor(), start_line=message.line, tooltip=tooltip, draw_order=3) message.decoration.set_full_width() message.decoration.set_as_error(color=QtGui.QColor( message.color)) self.editor.decorations.append(message.decoration) QtCore.QTimer.singleShot(1, self._add_batch) self.editor.repaint() return True def remove_message(self, message): """ Removes a message. :param message: Message to remove """ import time _logger(self.__class__).log(5, 'removing message %s' % message) t = time.time() usd = message.block.userData() if usd: try: usd.messages.remove(message) except (AttributeError, ValueError): pass if message.decoration: self.editor.decorations.remove(message.decoration) self._messages.remove(message) def clear_messages(self): """ Clears all messages. """ while len(self._messages): msg = self._messages.pop(0) usd = msg.block.userData() if usd and hasattr(usd, 'messages'): usd.messages[:] = [] if msg.decoration: self.editor.decorations.remove(msg.decoration) def on_state_changed(self, state): if state: self.editor.textChanged.connect(self.request_analysis) self.editor.new_text_set.connect(self.clear_messages) self.request_analysis() else: self.editor.textChanged.disconnect(self.request_analysis) self.editor.new_text_set.disconnect(self.clear_messages) self._job_runner.cancel_requests() self.clear_messages() def _on_work_finished(self, results): """ Display results. :param status: Response status :param results: Response data, messages. """ messages = [] for msg in results: msg = CheckerMessage(*msg) if msg.line >= self.editor.blockCount(): msg.line = self.editor.blockCount() - 1 block = self.editor.document().findBlockByNumber(msg.line) msg.block = block messages.append(msg) self.add_messages(messages) def request_analysis(self): """ Requests an analysis. """ if self._finished: _logger(self.__class__).log(5, 'running analysis') self._job_runner.request_job(self._request) elif self.editor: # retry later _logger(self.__class__).log( 5, 'delaying analysis (previous analysis not finished)') QtCore.QTimer.singleShot(500, self.request_analysis) def _request(self): """ Requests a checking of the editor content. """ try: self.editor.toPlainText() except (TypeError, RuntimeError): return try: max_line_length = self.editor.modes.get( 'RightMarginMode').position except KeyError: max_line_length = 79 request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding, 'ignore_rules': self.ignore_rules, 'max_line_length': max_line_length, } try: self.editor.backend.send_request( self._worker, request_data, on_receive=self._on_work_finished) self._finished = False except NotRunning: # retry later QtCore.QTimer.singleShot(100, self._request) Turing-0.11-beta/pyqode/core/modes/code_completion.py000066400000000000000000000600631331472757200227110ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the code completion mode and the related classes. """ import logging import re import sys import time from pyqode.core.api.mode import Mode from pyqode.core.backend import NotRunning from pyqode.qt import QtWidgets, QtCore, QtGui from pyqode.core.api.utils import TextHelper from pyqode.core import backend def _logger(): return logging.getLogger(__name__) def debug(msg, *args): """ Log internal debugger messages (user should not see them, even in debug mode) """ return _logger().log(5, msg, *args) class SubsequenceSortFilterProxyModel(QtCore.QSortFilterProxyModel): """ Performs subsequence matching/sorting (see pyQode/pyQode#1). """ def __init__(self, case, parent=None): QtCore.QSortFilterProxyModel.__init__(self, parent) self.case = case def set_prefix(self, prefix): self.filter_patterns = [] self.filter_patterns_case_sensitive = [] self.sort_patterns = [] if self.case == QtCore.Qt.CaseInsensitive: flags = re.IGNORECASE else: flags = 0 for i in reversed(range(1, len(prefix) + 1)): ptrn = '.*%s.*%s' % (prefix[0:i], prefix[i:]) try: self.filter_patterns.append(re.compile(ptrn, flags)) self.filter_patterns_case_sensitive.append(re.compile(ptrn, 0)) ptrn = '%s.*%s' % (prefix[0:i], prefix[i:]) self.sort_patterns.append(re.compile(ptrn, flags)) except Exception: continue self.prefix = prefix def filterAcceptsRow(self, row, _): completion = self.sourceModel().data(self.sourceModel().index(row, 0)) if len(completion) < len(self.prefix): return False if len(self.prefix) == 1: try: prefix = self.prefix if self.case == QtCore.Qt.CaseInsensitive: completion = completion.lower() prefix = self.prefix.lower() rank = completion.index(prefix) self.sourceModel().setData( self.sourceModel().index(row, 0), rank, QtCore.Qt.UserRole) return prefix in completion except ValueError: return False for i, patterns in enumerate(zip(self.filter_patterns, self.filter_patterns_case_sensitive, self.sort_patterns)): pattern, pattern_case, sort_pattern = patterns match = re.match(pattern, completion) if match: # compute rank, the lowest rank the closer it is from the # completion start = sys.maxsize for m in sort_pattern.finditer(completion): start, end = m.span() rank = start + i * 10 if re.match(pattern_case, completion): # favorise completions where case is matched rank -= 10 self.sourceModel().setData( self.sourceModel().index(row, 0), rank, QtCore.Qt.UserRole) return True return len(self.prefix) == 0 class SubsequenceCompleter(QtWidgets.QCompleter): """ QCompleter specialised for subsequence matching """ def __init__(self, *args): super(SubsequenceCompleter, self).__init__(*args) self.local_completion_prefix = "" self.source_model = None self.filterProxyModel = SubsequenceSortFilterProxyModel( self.caseSensitivity(), parent=self) self.filterProxyModel.setSortRole(QtCore.Qt.UserRole) self._force_next_update = True def setModel(self, model): self.source_model = model self.filterProxyModel = SubsequenceSortFilterProxyModel( self.caseSensitivity(), parent=self) self.filterProxyModel.setSortRole(QtCore.Qt.UserRole) self.filterProxyModel.set_prefix(self.local_completion_prefix) self.filterProxyModel.setSourceModel(self.source_model) super(SubsequenceCompleter, self).setModel(self.filterProxyModel) self.filterProxyModel.invalidate() self.filterProxyModel.sort(0) self._force_next_update = True def update_model(self): if (self.completionCount() or len(self.local_completion_prefix) <= 1 or self._force_next_update): self.filterProxyModel.set_prefix(self.local_completion_prefix) self.filterProxyModel.invalidate() # force sorting/filtering if self.completionCount() > 1: self.filterProxyModel.sort(0) self._force_next_update = False def splitPath(self, path): self.local_completion_prefix = path self.update_model() return [''] class CodeCompletionMode(Mode, QtCore.QObject): """ Provides code completions when typing or when pressing Ctrl+Space. This mode provides a code completion system which is extensible. It takes care of running the completion request in a background process using one or more completion provider and display the results in a QCompleter. To add code completion for a specific language, you only need to implement a new :class:`pyqode.core.backend.workers.CodeCompletionWorker.Provider` The completion popup is shown when the user press **ctrl+space** or automatically while the user is typing some code (this can be configured using a series of properties). """ #: Filter completions based on the prefix. FAST FILTER_PREFIX = 0 #: Filter completions based on whether the prefix is contained in the #: suggestion. Only available with PyQt5, if set with PyQt4, FILTER_PREFIX #: will be used instead. FAST FILTER_CONTAINS = 1 #: Fuzzy filtering, using the subsequence matcher. This is the most #: powerful filter mode but also the SLOWEST. FILTER_FUZZY = 2 @property def filter_mode(self): """ The completion filter mode """ return self._filter_mode @filter_mode.setter def filter_mode(self, value): self._filter_mode = value self._create_completer() @property def trigger_key(self): """ The key that triggers code completion (Default is **Space**: Ctrl + Space). """ return self._trigger_key @trigger_key.setter def trigger_key(self, value): self._trigger_key = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_key = value except KeyError: # this should never happen since we're working with clones pass @property def trigger_length(self): """ The trigger length defines the word length required to run code completion. """ return self._trigger_len @trigger_length.setter def trigger_length(self, value): self._trigger_len = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_length = value except KeyError: # this should never happen since we're working with clones pass @property def trigger_symbols(self): """ Defines the list of symbols that immediately trigger a code completion requiest. BY default, this list contains the dot character. For C++, we would add the '->' operator to that list. """ return self._trigger_symbols @trigger_symbols.setter def trigger_symbols(self, value): self._trigger_symbols = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).trigger_symbols = value except KeyError: # this should never happen since we're working with clones pass @property def case_sensitive(self): """ True to performs case sensitive completion matching. """ return self._case_sensitive @case_sensitive.setter def case_sensitive(self, value): self._case_sensitive = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).case_sensitive = value except KeyError: # this should never happen since we're working with clones pass @property def completion_prefix(self): """ Returns the current completion prefix """ return self._helper.word_under_cursor( select_whole_word=False).selectedText().strip() @property def show_tooltips(self): """ True to show tooltips next to the current completion. """ return self._show_tooltips @show_tooltips.setter def show_tooltips(self, value): self._show_tooltips = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(CodeCompletionMode).show_tooltips = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Mode.__init__(self) QtCore.QObject.__init__(self) self._current_completion = "" self._trigger_key = QtCore.Qt.Key_Space self._trigger_len = 1 self._trigger_symbols = ['.'] self._case_sensitive = False self._completer = None self._filter_mode = self.FILTER_FUZZY self._last_cursor_line = -1 self._last_cursor_column = -1 self._tooltips = {} self._show_tooltips = False self._request_id = self._last_request_id = 0 def clone_settings(self, original): self.trigger_key = original.trigger_key self.trigger_length = original.trigger_length self.trigger_symbols = original.trigger_symbols self.show_tooltips = original.show_tooltips self.case_sensitive = original.case_sensitive # # Mode interface # def _create_completer(self): if self.filter_mode != self.FILTER_FUZZY: self._completer = QtWidgets.QCompleter([''], self.editor) if self.filter_mode == self.FILTER_CONTAINS: try: self._completer.setFilterMode(QtCore.Qt.MatchContains) except AttributeError: # only available with PyQt5 pass else: self._completer = SubsequenceCompleter(self.editor) self._completer.setCompletionMode(self._completer.PopupCompletion) if self.case_sensitive: self._completer.setCaseSensitivity(QtCore.Qt.CaseSensitive) else: self._completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive) self._completer.activated.connect(self._insert_completion) self._completer.highlighted.connect( self._on_selected_completion_changed) self._completer.highlighted.connect(self._display_completion_tooltip) def on_install(self, editor): self._create_completer() self._completer.setModel(QtGui.QStandardItemModel()) self._helper = TextHelper(editor) Mode.on_install(self, editor) def on_uninstall(self): Mode.on_uninstall(self) self._completer.popup().hide() self._completer = None def on_state_changed(self, state): if state: self.editor.focused_in.connect(self._on_focus_in) self.editor.key_pressed.connect(self._on_key_pressed) self.editor.post_key_pressed.connect(self._on_key_released) else: self.editor.focused_in.disconnect(self._on_focus_in) self.editor.key_pressed.disconnect(self._on_key_pressed) self.editor.post_key_pressed.disconnect(self._on_key_released) # # Slots # def _on_key_pressed(self, event): def _handle_completer_events(): nav_key = self._is_navigation_key(event) mod = QtCore.Qt.ControlModifier ctrl = int(event.modifiers() & mod) == mod # complete if event.key() in [ QtCore.Qt.Key_Enter, QtCore.Qt.Key_Return, QtCore.Qt.Key_Tab]: self._insert_completion(self._current_completion) self._hide_popup() event.accept() # hide elif (event.key() in [ QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backtab] or nav_key and ctrl): self._reset_sync_data() # move into list elif event.key() == QtCore.Qt.Key_Home: self._show_popup(index=0) event.accept() elif event.key() == QtCore.Qt.Key_End: self._show_popup(index=self._completer.completionCount() - 1) event.accept() debug('key pressed: %s' % event.text()) is_shortcut = self._is_shortcut(event) # handle completer popup events ourselves if self._completer.popup().isVisible(): if is_shortcut: event.accept() else: _handle_completer_events() elif is_shortcut: self._reset_sync_data() self.request_completion() event.accept() def _on_key_released(self, event): if self._is_shortcut(event) or event.isAccepted(): return debug('key released:%s' % event.text()) word = self._helper.word_under_cursor( select_whole_word=True).selectedText() debug('word: %s' % word) if event.text(): if event.key() == QtCore.Qt.Key_Escape: self._hide_popup() return if self._is_navigation_key(event) and \ (not self._is_popup_visible() or word == ''): self._reset_sync_data() return if event.key() == QtCore.Qt.Key_Return: return if event.text() in self._trigger_symbols: # symbol trigger, force request self._reset_sync_data() self.request_completion() elif len(word) >= self._trigger_len and event.text() not in \ self.editor.word_separators: # Length trigger if int(event.modifiers()) in [ QtCore.Qt.NoModifier, QtCore.Qt.ShiftModifier]: self.request_completion() else: self._hide_popup() else: self._reset_sync_data() else: if self._is_navigation_key(event): if self._is_popup_visible() and word: self._show_popup() return else: self._reset_sync_data() def _on_focus_in(self, event): """ Resets completer's widget :param event: QFocusEvents """ self._completer.setWidget(self.editor) def _on_selected_completion_changed(self, completion): self._current_completion = completion def _insert_completion(self, completion): cursor = self._helper.word_under_cursor(select_whole_word=False) cursor.insertText(completion) self.editor.setTextCursor(cursor) def _on_results_available(self, results): debug("completion results (completions=%r), prefix=%s", results, self.completion_prefix) context = results[0] results = results[1:] line, column, request_id = context debug('request context: %r', context) debug('latest context: %r', (self._last_cursor_line, self._last_cursor_column, self._request_id)) self._last_request_id = request_id if (line == self._last_cursor_line and column == self._last_cursor_column): if self.editor: all_results = [] for res in results: all_results += res self._show_completions(all_results) else: debug('outdated request, dropping') # # Helper methods # def _is_popup_visible(self): return self._completer.popup().isVisible() def _reset_sync_data(self): debug('reset sync data and hide popup') self._last_cursor_line = -1 self._last_cursor_column = -1 self._hide_popup() def request_completion(self): line = self._helper.current_line_nbr() column = self._helper.current_column_nbr() - \ len(self.completion_prefix) same_context = (line == self._last_cursor_line and column == self._last_cursor_column) if same_context: if self._request_id - 1 == self._last_request_id: # context has not changed and the correct results can be # directly shown debug('request completion ignored, context has not ' 'changed') self._show_popup() else: # same context but result not yet available pass return True else: debug('requesting completion') data = { 'code': self.editor.toPlainText(), 'line': line, 'column': column, 'path': self.editor.file.path, 'encoding': self.editor.file.encoding, 'prefix': self.completion_prefix, 'request_id': self._request_id } try: self.editor.backend.send_request( backend.CodeCompletionWorker, args=data, on_receive=self._on_results_available) except NotRunning: _logger().exception('failed to send the completion request') return False else: debug('request sent: %r', data) self._last_cursor_column = column self._last_cursor_line = line self._request_id += 1 return True def _is_shortcut(self, event): """ Checks if the event's key and modifiers make the completion shortcut (Ctrl+Space) :param event: QKeyEvent :return: bool """ modifier = (QtCore.Qt.MetaModifier if sys.platform == 'darwin' else QtCore.Qt.ControlModifier) valid_modifier = int(event.modifiers() & modifier) == modifier valid_key = event.key() == self._trigger_key return valid_key and valid_modifier def _hide_popup(self): """ Hides the completer popup """ debug('hide popup') if (self._completer.popup() is not None and self._completer.popup().isVisible()): self._completer.popup().hide() self._last_cursor_column = -1 self._last_cursor_line = -1 QtWidgets.QToolTip.hideText() def _get_popup_rect(self): cursor_rec = self.editor.cursorRect() char_width = self.editor.fontMetrics().width('A') prefix_len = (len(self.completion_prefix) * char_width) cursor_rec.translate( self.editor.panels.margin_size() - prefix_len, self.editor.panels.margin_size(0) + 5) popup = self._completer.popup() width = popup.verticalScrollBar().sizeHint().width() cursor_rec.setWidth( self._completer.popup().sizeHintForColumn(0) + width) return cursor_rec def _show_popup(self, index=0): """ Shows the popup at the specified index. :param index: index :return: """ full_prefix = self._helper.word_under_cursor( select_whole_word=False).selectedText() if self._case_sensitive: self._completer.setCaseSensitivity(QtCore.Qt.CaseSensitive) else: self._completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive) # set prefix self._completer.setCompletionPrefix(self.completion_prefix) cnt = self._completer.completionCount() selected = self._completer.currentCompletion() if (full_prefix == selected) and cnt == 1: debug('user already typed the only completion that we ' 'have') self._hide_popup() else: # show the completion list if self.editor.isVisible(): if self._completer.widget() != self.editor: self._completer.setWidget(self.editor) self._completer.complete(self._get_popup_rect()) self._completer.popup().setCurrentIndex( self._completer.completionModel().index(index, 0)) debug( "popup shown: %r" % self._completer.popup().isVisible()) else: debug('cannot show popup, editor is not visible') def _show_completions(self, completions): debug("showing %d completions" % len(completions)) debug('popup state: %r', self._completer.popup().isVisible()) t = time.time() self._update_model(completions) elapsed = time.time() - t debug("completion model updated: %d items in %f seconds", self._completer.model().rowCount(), elapsed) self._show_popup() def _update_model(self, completions): """ Creates a QStandardModel that holds the suggestion from the completion models for the QCompleter :param completionPrefix: """ # build the completion model cc_model = QtGui.QStandardItemModel() self._tooltips.clear() for completion in completions: name = completion['name'] item = QtGui.QStandardItem() item.setData(name, QtCore.Qt.DisplayRole) if 'tooltip' in completion and completion['tooltip']: self._tooltips[name] = completion['tooltip'] if 'icon' in completion: icon = completion['icon'] if isinstance(icon, list): icon = QtGui.QIcon.fromTheme(icon[0], QtGui.QIcon(icon[1])) else: icon = QtGui.QIcon(icon) item.setData(QtGui.QIcon(icon), QtCore.Qt.DecorationRole) cc_model.appendRow(item) try: self._completer.setModel(cc_model) except RuntimeError: self._create_completer() self._completer.setModel(cc_model) return cc_model def _display_completion_tooltip(self, completion): if not self._show_tooltips: return if completion not in self._tooltips: QtWidgets.QToolTip.hideText() return tooltip = self._tooltips[completion].strip() pos = self._completer.popup().pos() pos.setX(pos.x() + self._completer.popup().size().width()) pos.setY(pos.y() - 15) QtWidgets.QToolTip.showText(pos, tooltip, self.editor) @staticmethod def _is_navigation_key(event): return (event.key() == QtCore.Qt.Key_Backspace or event.key() == QtCore.Qt.Key_Back or event.key() == QtCore.Qt.Key_Delete or event.key() == QtCore.Qt.Key_End or event.key() == QtCore.Qt.Key_Home or event.key() == QtCore.Qt.Key_Left or event.key() == QtCore.Qt.Key_Right or event.key() == QtCore.Qt.Key_Up or event.key() == QtCore.Qt.Key_Down or event.key() == QtCore.Qt.Key_Space) Turing-0.11-beta/pyqode/core/modes/cursor_history.py000066400000000000000000000054561331472757200226510ustar00rootroot00000000000000import weakref from pyqode.qt import QtCore, QtWidgets from pyqode.core import api class MoveCursorCommand(QtWidgets.QUndoCommand): def __init__(self, new_pos, prev_pos, editor): super(MoveCursorCommand, self).__init__( '(Goto line %d)' % (new_pos[0] + 1)) self._new_pos = new_pos self._prev_pos = prev_pos self._editor = weakref.ref(editor) def _move(self, line, column): self._editor().blockSignals(True) api.TextHelper(self._editor()).goto_line(line, column) self._editor().blockSignals(False) try: caret_mode = self._editor().modes.get('CaretLineHighlighterMode') except KeyError: pass else: caret_mode.refresh() def redo(self): self._move(*self._new_pos) def undo(self): self._move(*self._prev_pos) class CursorHistoryMode(api.Mode): def __init__(self): super(CursorHistoryMode, self).__init__() self._prev_pos = 0, 0 self.undo_stack = QtWidgets.QUndoStack() self.undo_stack.setUndoLimit(10) def on_state_changed(self, state): if state: menu = QtWidgets.QMenu(self.editor) menu.setTitle(_('Cursor history')) self.action_undo = self.undo_stack.createUndoAction(self.editor) self.action_undo.setShortcut('Ctrl+Alt+Z') self.action_undo.setEnabled(True) menu.addAction(self.action_undo) self.action_redo = self.undo_stack.createRedoAction(self.editor) self.action_redo.setShortcut('Ctrl+Alt+Y') menu.addAction(self.action_redo) self.editor.add_action(menu.menuAction()) self.editor.cursorPositionChanged.connect( self._on_cursor_position_changed) self.editor.key_pressed.connect(self._on_key_pressed) else: self.editor.cursorPositionChanged.disconnect( self._on_cursor_position_changed) self.editor.remove_action(self.action_undo) self.editor.remove_action(self.action_redo) def _on_cursor_position_changed(self): if self.editor.textCursor().hasSelection(): return new_pos = api.TextHelper(self.editor).cursor_position() if abs(new_pos[0] - self._prev_pos[0]) > 1: # only record when line changed and don't record change if the user # just wen to the previous/next line cmd = MoveCursorCommand(new_pos, self._prev_pos, self.editor) self.undo_stack.push(cmd) self._prev_pos = new_pos def _on_key_pressed(self, event): control = event.modifiers() & QtCore.Qt.ControlModifier alt = event.modifiers() & QtCore.Qt.AltModifier if event.text() in ['Z', 'Y'] and control and alt: event.accept() Turing-0.11-beta/pyqode/core/modes/extended_selection.py000066400000000000000000000141621331472757200234120ustar00rootroot00000000000000""" This module contains the extended selection mode. """ from pyqode.qt import QtCore, QtWidgets, QtGui from pyqode.core.api import Mode, TextHelper class ExtendedSelectionMode(Mode): """ Adds extended selection capabilities (Ctrl/Alt + Double click). This mode adds extended selections capabilities to CodeEdit. Extended selection is a feature that can be found in the Ulipad editor: https://code.google.com/p/ulipad It consists in adding a few shortcuts and contextual action to do some smarter selections. This mode adds the following new kind of selections: - word selection: select word under cursor - extended word selection: select word under cursor including continuation characters such as ".". - matched selection: select text inside quotes or parenthesis - line selection: select the whole line - select all: select entire document Extended selection and matched selection can be performed by combining ctrl or alt with a double click (modifiers are configurable through ``extended_sel_modifier`` or ``matched_sel_modifier``). """ def __init__(self): super(ExtendedSelectionMode, self).__init__() self.extended_sel_modifier = QtCore.Qt.ControlModifier self.matched_sel_modifier = QtCore.Qt.AltModifier self.continuation_characters = ('.',) self.word_sel_shortcut = QtGui.QKeySequence('Ctrl+Alt+M') self.action_select_word = QtWidgets.QAction(self.editor) self.action_select_word.setText(_('Select word')) self.action_select_word.setShortcut(self.word_sel_shortcut) self.action_select_word.triggered.connect(self.perform_word_selection) self.action_select_word.setShortcutContext( QtCore.Qt.WidgetShortcut) self.extended_sel_shortcut = QtGui.QKeySequence('Ctrl+Shift+M') self.action_select_extended_word = QtWidgets.QAction(self.editor) self.action_select_extended_word.setText(_('Select extended word')) self.action_select_extended_word.setShortcut( self.extended_sel_shortcut) self.action_select_extended_word.triggered.connect( self.perform_extended_selection) self.action_select_extended_word.setShortcutContext( QtCore.Qt.WidgetShortcut) self.matched_sel_shortcut = QtGui.QKeySequence('Ctrl+E') self.action_select_matched = QtWidgets.QAction(self.editor) self.action_select_matched.setText(_('Matched select')) self.action_select_matched.setShortcut(self.matched_sel_shortcut) self.action_select_matched.triggered.connect( self.perform_matched_selection) self.action_select_matched.setShortcutContext( QtCore.Qt.WidgetShortcut) self.line_sel_shortcut = QtGui.QKeySequence('Ctrl+Shift+L') self.action_select_line = QtWidgets.QAction(self.editor) self.action_select_line.setText(_('Select line')) self.action_select_line.setShortcut(self.line_sel_shortcut) self.action_select_line.triggered.connect(self.perform_line_selection) self.action_select_line.setShortcutContext( QtCore.Qt.WidgetShortcut) def create_menu(self): """ Creates the extended selection menu. """ # setup menu menu = QtWidgets.QMenu(self.editor) menu.setTitle(_('Select')) menu.menuAction().setIcon(QtGui.QIcon.fromTheme('edit-select')) # setup actions menu.addAction(self.action_select_word) menu.addAction(self.action_select_extended_word) menu.addAction(self.action_select_matched) menu.addAction(self.action_select_line) menu.addSeparator() menu.addAction(self.editor.action_select_all) icon = QtGui.QIcon.fromTheme( 'edit-select-all', QtGui.QIcon( ':/pyqode-icons/rc/edit-select-all.png')) self.editor.action_select_all.setIcon(icon) return menu def on_install(self, editor): super(ExtendedSelectionMode, self).on_install(editor) try: self.editor.remove_action(self.editor.action_select_all) except (ValueError, AttributeError): pass self.editor.add_action(self.create_menu().menuAction()) self.editor.addActions([ self.action_select_extended_word, self.action_select_line, self.action_select_matched, self.action_select_word]) def on_state_changed(self, state): if state: self.editor.mouse_double_clicked.connect(self._on_double_click) else: self.editor.mouse_double_clicked.disconnect(self._on_double_click) def _on_double_click(self, event): modifiers = event.modifiers() if modifiers & self.extended_sel_modifier: self.editor.textCursor().clearSelection() self.perform_extended_selection(event=event) elif modifiers & self.matched_sel_modifier: # self.editor.textCursor().clearSelection() self.perform_matched_selection(event=event) elif int(modifiers) == QtCore.Qt.NoModifier: self.perform_word_selection(event=event) def perform_word_selection(self, event=None): """ Performs word selection :param event: QMouseEvent """ self.editor.setTextCursor( TextHelper(self.editor).word_under_cursor(True)) if event: event.accept() def perform_extended_selection(self, event=None): """ Performs extended word selection. :param event: QMouseEvent """ TextHelper(self.editor).select_extended_word( continuation_chars=self.continuation_characters) if event: event.accept() def perform_matched_selection(self, event): """ Performs matched selection. :param event: QMouseEvent """ selected = TextHelper(self.editor).match_select() if selected and event: event.accept() def perform_line_selection(self): """ Performs line selection (select the entire line). """ TextHelper(self.editor).select_whole_line() Turing-0.11-beta/pyqode/core/modes/filewatcher.py000066400000000000000000000165461331472757200220520ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the mode that control the external changes of file. """ import os from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache class FileWatcherMode(Mode, QtCore.QObject): """ Watches the current file for external modifications. FileWatcher mode, check if the opened file has changed externally. """ #: Signal emitted when the file has been deleted. The Signal is emitted #: with the current editor instance so that user have a chance to close #: the editor. file_deleted = QtCore.Signal(object) #: Signal emitted when the file has been reloaded in the editor. file_reloaded = QtCore.Signal() @property def auto_reload(self): """ Automatically reloads changed files """ return self._auto_reload @auto_reload.setter def auto_reload(self, value): self._auto_reload = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(FileWatcherMode).auto_reload = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): QtCore.QObject.__init__(self) Mode.__init__(self) self._auto_reload = False self._flg_notify = False self._data = (None, None) self._timer = QtCore.QTimer() self._timer.setInterval(1000) self._timer.timeout.connect(self._check_file) self._mtime = 0 self._notification_pending = False self._processing = False def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self._update_mtime) self.editor.new_text_set.connect(self._timer.start) self.editor.text_saving.connect(self._cancel_next_change) self.editor.text_saved.connect(self._update_mtime) self.editor.text_saved.connect(self._restart_monitoring) self.editor.focused_in.connect(self._check_for_pending) else: self._timer.stop() self.editor.new_text_set.connect(self._update_mtime) self.editor.new_text_set.connect(self._timer.start) self.editor.text_saving.disconnect(self._cancel_next_change) self.editor.text_saved.disconnect(self._restart_monitoring) self.editor.focused_in.disconnect(self._check_for_pending) self._timer.stop() def _cancel_next_change(self): self._timer.stop() for e in self.editor.clones: try: w = e.modes.get(self.__class__) except KeyError: pass else: w._cancel_next_change() def _restart_monitoring(self): self._update_mtime() for e in self.editor.clones: try: w = e.modes.get(self.__class__) except KeyError: pass else: w._restart_monitoring() self._timer.start() def _update_mtime(self): """ Updates modif time """ try: self._mtime = os.path.getmtime(self.editor.file.path) except OSError: # file_path does not exists. self._mtime = 0 self._timer.stop() except (TypeError, AttributeError): # file path is none, this happen if you use setPlainText instead of # openFile. This is perfectly fine, we just do not have anything to # watch try: self._timer.stop() except AttributeError: pass def _check_file(self): """ Checks watched file moficiation time and permission changes. """ try: self.editor.toPlainText() except RuntimeError: self._timer.stop() return if self.editor and self.editor.file.path: if not os.path.exists(self.editor.file.path) and self._mtime: self._notify_deleted_file() else: mtime = os.path.getmtime(self.editor.file.path) if mtime > self._mtime: self._mtime = mtime self._notify_change() # check for permission change writeable = os.access(self.editor.file.path, os.W_OK) self.editor.setReadOnly(not writeable) def _notify(self, title, message, expected_action=None): """ Notify user from external event """ if self.editor is None: return inital_value = self.editor.save_on_focus_out self.editor.save_on_focus_out = False self._flg_notify = True dlg_type = (QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No) expected_action = ( lambda *x: None) if not expected_action else expected_action if (self._auto_reload or QtWidgets.QMessageBox.question( self.editor, title, message, dlg_type, QtWidgets.QMessageBox.Yes) == QtWidgets.QMessageBox.Yes): expected_action(self.editor.file.path) self._update_mtime() self.editor.save_on_focus_out = inital_value def _notify_change(self): """ Notify user from external change if autoReloadChangedFiles is False then reload the changed file in the editor """ def inner_action(*args): """ Inner action: open file """ # cache cursor position before reloading so that the cursor # position is restored automatically after reload has finished. # See OpenCobolIDE/OpenCobolIDE#97 Cache().set_cursor_position( self.editor.file.path, self.editor.textCursor().position()) if os.path.exists(self.editor.file.path): self.editor.file.open(self.editor.file.path) self.file_reloaded.emit() else: # file moved just after a change, see OpenCobolIDE/OpenCobolIDE#337 self._notify_deleted_file() args = (_("File changed"), _("The file %s has changed externally.\nDo you want to " "reload it?") % os.path.basename(self.editor.file.path)) kwargs = {"expected_action": inner_action} if self.editor.hasFocus() or self.auto_reload: self._notify(*args, **kwargs) else: # show the reload prompt as soon as the editor has focus self._notification_pending = True self._data = (args, kwargs) def _check_for_pending(self, *args, **kwargs): """ Checks if a notification is pending. """ if self._notification_pending and not self._processing: self._processing = True args, kwargs = self._data self._notify(*args, **kwargs) self._notification_pending = False self._processing = False def _notify_deleted_file(self): """ Notify user from external file deletion. """ self.file_deleted.emit(self.editor) # file deleted, disable file watcher self.enabled = False def clone_settings(self, original): self.auto_reload = original.auto_reload Turing-0.11-beta/pyqode/core/modes/indenter.py000066400000000000000000000141121331472757200213500ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the default indenter. """ import logging from pyqode.core.api import TextHelper from pyqode.core.api.mode import Mode from pyqode.qt import QtGui def _logger(): return logging.getLogger(__name__) def debug(msg, *args): return _logger().log(5, msg, *args) class IndenterMode(Mode): """ Implements classic indentation/tabulation (Tab/Shift+Tab) It inserts/removes tabulations (a series of spaces defined by the tabLength settings) at the cursor position if there is no selection, otherwise it fully indents/un-indents selected lines. To trigger an indentation/un-indentation programatically, you must emit :attr:`pyqode.core.api.CodeEdit.indent_requested` or :attr:`pyqode.core.api.CodeEdit.unindent_requested`. """ def __init__(self): super(IndenterMode, self).__init__() def on_state_changed(self, state): if state: self.editor.indent_requested.connect(self.indent) self.editor.unindent_requested.connect(self.unindent) else: self.editor.indent_requested.disconnect(self.indent) self.editor.unindent_requested.disconnect(self.unindent) def indent_selection(self, cursor): """ Indent selected text :param cursor: QTextCursor """ doc = self.editor.document() tab_len = self.editor.tab_length cursor.beginEditBlock() nb_lines = len(cursor.selection().toPlainText().splitlines()) c = self.editor.textCursor() if c.atBlockStart() and c.position() == c.selectionEnd(): nb_lines += 1 block = doc.findBlock(cursor.selectionStart()) i = 0 # indent every lines while i < nb_lines: nb_space_to_add = tab_len cursor = QtGui.QTextCursor(block) cursor.movePosition(cursor.StartOfLine, cursor.MoveAnchor) if self.editor.use_spaces_instead_of_tabs: for _ in range(nb_space_to_add): cursor.insertText(" ") else: cursor.insertText('\t') block = block.next() i += 1 cursor.endEditBlock() def unindent_selection(self, cursor): """ Un-indents selected text :param cursor: QTextCursor """ doc = self.editor.document() tab_len = self.editor.tab_length nb_lines = len(cursor.selection().toPlainText().splitlines()) if nb_lines == 0: nb_lines = 1 block = doc.findBlock(cursor.selectionStart()) assert isinstance(block, QtGui.QTextBlock) i = 0 debug('unindent selection: %d lines', nb_lines) while i < nb_lines: txt = block.text() debug('line to unindent: %s', txt) debug('self.editor.use_spaces_instead_of_tabs: %r', self.editor.use_spaces_instead_of_tabs) if self.editor.use_spaces_instead_of_tabs: indentation = (len(txt) - len(txt.lstrip())) else: indentation = len(txt) - len(txt.replace('\t', '')) debug('unindent line %d: %d spaces', i, indentation) if indentation > 0: c = QtGui.QTextCursor(block) c.movePosition(c.StartOfLine, cursor.MoveAnchor) for _ in range(tab_len): txt = block.text() if len(txt) and txt[0] == ' ': c.deleteChar() block = block.next() i += 1 return cursor def indent(self): """ Indents text at cursor position. """ cursor = self.editor.textCursor() assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): self.indent_selection(cursor) else: # simply insert indentation at the cursor position tab_len = self.editor.tab_length cursor.beginEditBlock() if self.editor.use_spaces_instead_of_tabs: nb_space_to_add = tab_len - cursor.positionInBlock() % tab_len cursor.insertText(nb_space_to_add * " ") else: cursor.insertText('\t') cursor.endEditBlock() def count_deletable_spaces(self, cursor, max_spaces): # count the number of spaces deletable, stop at tab len max_spaces = abs(max_spaces) if max_spaces > self.editor.tab_length: max_spaces = self.editor.tab_length spaces = 0 trav_cursor = QtGui.QTextCursor(cursor) while spaces < max_spaces or trav_cursor.atBlockStart(): pos = trav_cursor.position() trav_cursor.movePosition(cursor.Left, cursor.KeepAnchor) char = trav_cursor.selectedText() if char == " ": spaces += 1 else: break trav_cursor.setPosition(pos - 1) return spaces def unindent(self): """ Un-indents text at cursor position. """ debug('unindent') cursor = self.editor.textCursor() debug('cursor has selection %r', cursor.hasSelection()) if cursor.hasSelection(): cursor.beginEditBlock() self.unindent_selection(cursor) cursor.endEditBlock() self.editor.setTextCursor(cursor) else: tab_len = self.editor.tab_length indentation = cursor.positionInBlock() max_spaces = tab_len - (indentation - (indentation % tab_len)) spaces = self.count_deletable_spaces(cursor, max_spaces) debug('deleting %d space before cursor' % spaces) cursor.beginEditBlock() if spaces: # delete spaces before cursor for _ in range(spaces): cursor.deletePreviousChar() else: # un-indent whole line debug('un-indent whole line') cursor = self.unindent_selection(cursor) cursor.endEditBlock() self.editor.setTextCursor(cursor) debug(cursor.block().text()) Turing-0.11-beta/pyqode/core/modes/line_highlighter.py000066400000000000000000000051021331472757200230440ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the care line highlighter mode """ from pyqode.qt import QtGui from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode class LineHighlighterMode(Mode): """ Highlights a line in the editor.""" @property def background(self): """ Background color of the highlighted line. """ return self._color @background.setter def background(self, value): self._color = value self.refresh() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def line(self): if self._block: return self._block.blockNumber() else: return self._block @line.setter def line(self, value): if value is None: self._block = value self._clear_deco() else: self._block = self.editor.document().findBlockByNumber(value) self.refresh() def __init__(self): super(LineHighlighterMode, self).__init__() self._decoration = None self._block = None self._color = QtGui.QColor('#DD8080') def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self.refresh) self.refresh() else: self.editor.new_text_set.disconnect(self.refresh) self._clear_deco() def on_install(self, editor): super(LineHighlighterMode, self).on_install(editor) self.refresh() def _clear_deco(self): """ Clear line decoration """ if self._decoration: self.editor.decorations.remove(self._decoration) self._decoration = None def refresh(self): """ Updates the current line decoration """ if self.enabled and self.line: self._clear_deco() brush = QtGui.QBrush(self._color) self._decoration = TextDecoration( self.editor.textCursor(), start_line=self.line) self._decoration.set_background(brush) self._decoration.set_full_width() self._decoration.draw_order = 255 self.editor.decorations.append(self._decoration) def clone_settings(self, original): self.background = original.background Turing-0.11-beta/pyqode/core/modes/matcher.py000066400000000000000000000231541331472757200211710ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the symbol matcher mode """ from pyqode.core.api import get_block_symbol_data from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.qt import QtGui #: symbols indices in SymbolMatcherMode.SYMBOLS map PAREN = 0 SQUARE = 1 BRACE = 2 #: character indices in SymbolMatcherMode.SYMBOLS map OPEN = 0 CLOSE = 1 class SymbolMatcherMode(Mode): """ Highlights matching symbols (parentheses, braces,...) .. note:: This mode requires the document to be filled with :class:`pyqode.core.api.TextBlockUserData`, i.e. a :class:`pyqode.core.api.SyntaxHighlighter` must be installed on the editor instance. """ #: known symbols {SYMBOL: (OPEN, CLOSE)}, you can customise this map to #: add support for other symbols SYMBOLS = { PAREN: ('(', ')'), SQUARE: ('[', ']'), BRACE: ('{', '}') } @property def match_background(self): """ Background color of matching symbols. """ return self._match_background @match_background.setter def match_background(self, value): self._match_background = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).match_background = value except KeyError: # this should never happen since we're working with clones pass @property def match_foreground(self): """ Foreground color of matching symbols. """ return self._match_foreground @match_foreground.setter def match_foreground(self, value): self._match_foreground = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).match_foreground = value except KeyError: # this should never happen since we're working with clones pass @property def unmatch_background(self): """ Background color of non-matching symbols. """ return self._unmatch_background @unmatch_background.setter def unmatch_background(self, value): self._unmatch_background = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).unmatch_background = value except KeyError: # this should never happen since we're working with clones pass @property def unmatch_foreground(self): """ Foreground color of matching symbols. """ return self._unmatch_foreground @unmatch_foreground.setter def unmatch_foreground(self, value): self._unmatch_foreground = value self._refresh_decorations() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).unmatch_foreground = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): super(SymbolMatcherMode, self).__init__() self._decorations = [] self._match_background = QtGui.QBrush(QtGui.QColor('#B4EEB4')) self._match_foreground = QtGui.QColor('red') self._unmatch_background = QtGui.QBrush(QtGui.QColor('transparent')) self._unmatch_foreground = QtGui.QColor('red') def _clear_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) self._decorations[:] = [] def symbol_pos(self, cursor, character_type=OPEN, symbol_type=PAREN): """ Find the corresponding symbol position (line, column) of the specified symbol. If symbol type is PAREN and character_type is OPEN, the function will look for '('. :param cursor: QTextCursor :param character_type: character type to look for (open or close char) :param symbol_type: symbol type (index in the SYMBOLS map). """ retval = None, None original_cursor = self.editor.textCursor() self.editor.setTextCursor(cursor) block = cursor.block() data = get_block_symbol_data(self.editor, block) self._match(symbol_type, data, block.position()) for deco in self._decorations: if deco.character == self.SYMBOLS[symbol_type][character_type]: retval = deco.line, deco.column break self.editor.setTextCursor(original_cursor) self._clear_decorations() return retval def _refresh_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) if deco.match: deco.set_foreground(self._match_foreground) deco.set_background(self._match_background) else: deco.set_foreground(self._unmatch_foreground) deco.set_background(self._unmatch_background) self.editor.decorations.append(deco) def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self.do_symbols_matching) else: self.editor.cursorPositionChanged.disconnect( self.do_symbols_matching) def _match(self, symbol, data, cursor_pos): symbols = data[symbol] for i, info in enumerate(symbols): pos = (self.editor.textCursor().position() - self.editor.textCursor().block().position()) if info.character == self.SYMBOLS[symbol][OPEN] and \ info.position == pos: self._create_decoration( cursor_pos + info.position, self._match_left( symbol, self.editor.textCursor().block(), i + 1, 0)) elif info.character == self.SYMBOLS[symbol][CLOSE] and \ info.position == pos - 1: self._create_decoration( cursor_pos + info.position, self._match_right( symbol, self.editor.textCursor().block(), i - 1, 0)) def _match_left(self, symbol, current_block, i, cpt): while current_block.isValid(): data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] for j in range(i, len(parentheses)): info = parentheses[j] if info.character == self.SYMBOLS[symbol][OPEN]: cpt += 1 continue if info.character == self.SYMBOLS[symbol][CLOSE] and cpt == 0: self._create_decoration(current_block.position() + info.position) return True elif info.character == self.SYMBOLS[symbol][CLOSE]: cpt -= 1 current_block = current_block.next() i = 0 return False def _match_right(self, symbol, current_block, i, nb_right_paren): while current_block.isValid(): data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] for j in range(i, -1, -1): if j >= 0: info = parentheses[j] if info.character == self.SYMBOLS[symbol][CLOSE]: nb_right_paren += 1 continue if info.character == self.SYMBOLS[symbol][OPEN]: if nb_right_paren == 0: self._create_decoration( current_block.position() + info.position) return True else: nb_right_paren -= 1 current_block = current_block.previous() data = get_block_symbol_data(self.editor, current_block) parentheses = data[symbol] i = len(parentheses) - 1 return False def do_symbols_matching(self): """ Performs symbols matching. """ self._clear_decorations() current_block = self.editor.textCursor().block() data = get_block_symbol_data(self.editor, current_block) pos = self.editor.textCursor().block().position() for symbol in [PAREN, SQUARE, BRACE]: self._match(symbol, data, pos) def _create_decoration(self, pos, match=True): cursor = self.editor.textCursor() cursor.setPosition(pos) cursor.movePosition(cursor.NextCharacter, cursor.KeepAnchor) deco = TextDecoration(cursor, draw_order=10) deco.line = cursor.blockNumber() deco.column = cursor.columnNumber() deco.character = cursor.selectedText() deco.match = match if match: deco.set_foreground(self._match_foreground) deco.set_background(self._match_background) else: deco.set_foreground(self._unmatch_foreground) deco.set_background(self._unmatch_background) self._decorations.append(deco) self.editor.decorations.append(deco) return cursor def clone_settings(self, original): self.match_background = original.match_background self.match_foreground = original.match_foreground self.unmatch_background = original.unmatch_background self.unmatch_foreground = original.unmatch_foreground Turing-0.11-beta/pyqode/core/modes/occurences.py000066400000000000000000000144651331472757200217040ustar00rootroot00000000000000""" This module contains the occurrences highlighter mode. """ from pyqode.qt import QtGui from pyqode.core.api import Mode, DelayJobRunner, TextHelper, TextDecoration from pyqode.core.backend import NotRunning from pyqode.core.backend.workers import findall class OccurrencesHighlighterMode(Mode): """ Highlights occurrences of the word under the text text cursor. The ``delay`` before searching for occurrences is configurable. """ @property def delay(self): """ Delay before searching for occurrences. The timer is rearmed as soon as the cursor position changed. """ return self.timer.delay @delay.setter def delay(self, value): self.timer.delay = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).delay = value except KeyError: # this should never happen since we're working with clones pass @property def background(self): """ Background or underline color (if underlined is True). """ return self._background @background.setter def background(self, value): self._background = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): """ Foreground color of occurences, not used if underlined is True. """ return self._foreground @foreground.setter def foreground(self, value): self._foreground = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass @property def underlined(self): """ True to use to underlined occurrences instead of changing the background. Default is True. If this mode is ON, the foreground color is ignored, the background color is then used as the underline color. """ return self._underlined @underlined.setter def underlined(self, value): self._underlined = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).underlined = value except KeyError: # this should never happen since we're working with clones pass @property def case_sensitive(self): return self._case_sensitive @case_sensitive.setter def case_sensitive(self, value): self._case_sensitive = value self._request_highlight() def __init__(self): super(OccurrencesHighlighterMode, self).__init__() self._decorations = [] #: Timer used to run the search request with a specific delay self.timer = DelayJobRunner(delay=1000) self._sub = None self._background = QtGui.QColor('#CCFFCC') self._foreground = None self._underlined = False self._case_sensitive = False def on_state_changed(self, state): if state: self.editor.cursorPositionChanged.connect(self._request_highlight) else: self.editor.cursorPositionChanged.disconnect( self._request_highlight) self.timer.cancel_requests() def _clear_decos(self): for d in self._decorations: self.editor.decorations.remove(d) self._decorations[:] = [] def _request_highlight(self): if self.editor is not None: sub = TextHelper(self.editor).word_under_cursor( select_whole_word=True).selectedText() if sub != self._sub: self._clear_decos() if len(sub) > 1: self.timer.request_job(self._send_request) def _send_request(self): if self.editor is None: return cursor = self.editor.textCursor() self._sub = TextHelper(self.editor).word_under_cursor( select_whole_word=True).selectedText() if not cursor.hasSelection() or cursor.selectedText() == self._sub: request_data = { 'string': self.editor.toPlainText(), 'sub': self._sub, 'regex': False, 'whole_word': True, 'case_sensitive': self.case_sensitive } try: self.editor.backend.send_request(findall, request_data, self._on_results_available) except NotRunning: self._request_highlight() def _on_results_available(self, results): if len(results) > 500: # limit number of results (on very big file where a lots of # occurrences can be found, this would totally freeze the editor # during a few seconds, with a limit of 500 we can make sure # the editor will always remain responsive). results = results[:500] current = self.editor.textCursor().position() if len(results) > 1: for start, end in results: if start <= current <= end: continue deco = TextDecoration(self.editor.textCursor(), start_pos=start, end_pos=end) if self.underlined: deco.set_as_underlined(self._background) else: deco.set_background(QtGui.QBrush(self._background)) if self._foreground is not None: deco.set_foreground(self._foreground) deco.draw_order = 3 self.editor.decorations.append(deco) self._decorations.append(deco) def clone_settings(self, original): self.delay = original.delay self.background = original.background self.foreground = original.foreground self.underlined = original.underlined Turing-0.11-beta/pyqode/core/modes/outline.py000066400000000000000000000054501331472757200212240ustar00rootroot00000000000000import logging from pyqode.core.api import Mode from pyqode.core.api import DelayJobRunner from pyqode.core.backend import NotRunning from pyqode.core.share import Definition from pyqode.qt import QtCore def _logger(): return logging.getLogger(__name__) class OutlineMode(Mode, QtCore.QObject): """ Generic mode that provides outline information through the document_changed signal and a specialised worker function. To use this mode, you need to write a worker function that returns a list of pyqode.core.share.Definition (see pyqode.python.backend.workers.defined_names() for an example of how to implement the worker function). """ #: Signal emitted when the document structure changed. document_changed = QtCore.Signal() @property def definitions(self): """ Gets the list of top level definitions. """ return self._results def __init__(self, worker, delay=1000): Mode.__init__(self) QtCore.QObject.__init__(self) self._worker = worker self._jobRunner = DelayJobRunner(delay=delay) #: The list of definitions found in the file, each item is a #: pyqode.core.share.Definition. self._results = [] def on_state_changed(self, state): if state: self.editor.new_text_set.connect(self._run_analysis) self.editor.textChanged.connect(self._request_analysis) else: self.editor.textChanged.disconnect(self._request_analysis) self.editor.new_text_set.disconnect(self._run_analysis) self._jobRunner.cancel_requests() def _request_analysis(self): self._jobRunner.request_job(self._run_analysis) def _run_analysis(self): try: self.editor.file self.editor.toPlainText() except (RuntimeError, AttributeError): # called by the timer after the editor got deleted return if self.enabled: request_data = { 'code': self.editor.toPlainText(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } try: self.editor.backend.send_request( self._worker, request_data, on_receive=self._on_results_available) except NotRunning: QtCore.QTimer.singleShot(100, self._run_analysis) else: self._results = [] self.document_changed.emit() def _on_results_available(self, results): if results: results = [Definition.from_dict(ddict) for ddict in results] self._results = results if self._results is not None: _logger().log(5, "Document structure changed") self.document_changed.emit() Turing-0.11-beta/pyqode/core/modes/pygments_sh.py000066400000000000000000000337751331472757200221200ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains Syntax Highlighting mode and the QSyntaxHighlighter based on pygments. .. note: This code is taken and adapted from the IPython project. """ import logging import mimetypes import sys from pygments.formatters.html import HtmlFormatter from pygments.lexer import Error, RegexLexer, Text, _TokenType from pygments.lexers import get_lexer_for_filename, get_lexer_for_mimetype from pygments.lexers.agile import PythonLexer from pygments.lexers.compiled import CLexer, CppLexer from pygments.lexers.dotnet import CSharpLexer from pygments.lexers.special import TextLexer from pygments.styles import get_style_by_name, get_all_styles from pygments.token import Whitespace, Comment, Token from pygments.util import ClassNotFound from pyqode.qt import QtGui from pyqode.qt.QtCore import QRegExp from pyqode.core.api.syntax_highlighter import ( SyntaxHighlighter, ColorScheme, TextBlockUserData) def _logger(): """ Returns the module's logger """ return logging.getLogger(__name__) #: A sorted list of available pygments styles, for convenience PYGMENTS_STYLES = sorted(list(get_all_styles())) if hasattr(sys, 'frozen'): PYGMENTS_STYLES += ['darcula', 'qt'] def get_tokens_unprocessed(self, text, stack=('root',)): """ Split ``text`` into (tokentype, text) pairs. Monkeypatched to store the final stack on the object itself. """ pos = 0 tokendefs = self._tokens if hasattr(self, '_saved_state_stack'): statestack = list(self._saved_state_stack) else: statestack = list(stack) statetokens = tokendefs[statestack[-1]] while 1: for rexmatch, action, new_state in statetokens: m = rexmatch(text, pos) if m: if action is not None: if type(action) is _TokenType: yield pos, action, m.group() else: for item in action(self, m): yield item pos = m.end() if new_state is not None: # state transition if isinstance(new_state, tuple): for state in new_state: if state == '#pop': statestack.pop() elif state == '#push': statestack.append(statestack[-1]) else: statestack.append(state) elif isinstance(new_state, int): # pop del statestack[new_state:] elif new_state == '#push': statestack.append(statestack[-1]) else: assert False, "wrong state def: %r" % new_state statetokens = tokendefs[statestack[-1]] break else: try: if text[pos] == '\n': # at EOL, reset state to "root" pos += 1 statestack = ['root'] statetokens = tokendefs['root'] yield pos, Text, '\n' continue yield pos, Error, text[pos] pos += 1 except IndexError: break self._saved_state_stack = list(statestack) # Monkeypatch! RegexLexer.get_tokens_unprocessed = get_tokens_unprocessed # Even with the above monkey patch to store state, multiline comments do not # work since they are stateless (Pygments uses a single multiline regex for # these comments, but Qt lexes by line). So we need to append a state for # comments # to the C and C++ lexers. This means that nested multiline # comments will appear to be valid C/C++, but this is better than the # alternative for now. def replace_pattern(tokens, new_pattern): """ Given a RegexLexer token dictionary 'tokens', replace all patterns that match the token specified in 'new_pattern' with 'new_pattern'. """ for state in tokens.values(): for index, pattern in enumerate(state): if isinstance(pattern, tuple) and pattern[1] == new_pattern[1]: state[index] = new_pattern # More monkeypatching! COMMENT_START = (r'/\*', Comment.Multiline, 'comment') COMMENT_STATE = [(r'[^*/]', Comment.Multiline), (r'/\*', Comment.Multiline, '#push'), (r'\*/', Comment.Multiline, '#pop'), (r'[*/]', Comment.Multiline)] replace_pattern(CLexer.tokens, COMMENT_START) replace_pattern(CppLexer.tokens, COMMENT_START) CLexer.tokens['comment'] = COMMENT_STATE CppLexer.tokens['comment'] = COMMENT_STATE CSharpLexer.tokens['comment'] = COMMENT_STATE class PygmentsSH(SyntaxHighlighter): """ Highlights code using the pygments parser. This mode enable syntax highlighting using the pygments library. This is a generic syntax highlighter, it is slower than a native highlighter and does not do any code folding detection. Use it as a fallback for languages that do not have a native highlighter available. Check the other pyqode namespace packages to see what other languages are available (at the time of writing, only python has specialised support). .. warning:: There are some issues with multi-line comments, they are not properly highlighted until a full re-highlight is triggered. The text is automatically re-highlighted on save. """ #: Mode description DESCRIPTION = "Apply syntax highlighting to the editor using pygments" @property def pygments_style(self): """ Gets/Sets the pygments style """ return self.color_scheme.name @pygments_style.setter def pygments_style(self, value): self._pygments_style = value self._update_style() # triggers a rehighlight self.color_scheme = ColorScheme(value) def __init__(self, document, lexer=None, color_scheme=None): super(PygmentsSH, self).__init__(document, color_scheme=color_scheme) self._pygments_style = self.color_scheme.name self._style = None self._formatter = HtmlFormatter(nowrap=True) self._lexer = lexer if lexer else PythonLexer() self._brushes = {} self._formats = {} self._init_style() self._prev_block = None def _init_style(self): """ Init pygments style """ self._update_style() def on_install(self, editor): """ :type editor: pyqode.code.api.CodeEdit """ self._clear_caches() self._update_style() super(PygmentsSH, self).on_install(editor) def set_mime_type(self, mime_type): """ Update the highlighter lexer based on a mime type. :param mime_type: mime type of the new lexer to setup. """ try: self.set_lexer_from_mime_type(mime_type) except ClassNotFound: _logger().exception('failed to get lexer from mimetype') self._lexer = TextLexer() return False except ImportError: # import error while loading some pygments plugins, the editor # should not crash _logger().warning('failed to get lexer from mimetype (%s)' % mime_type) self._lexer = TextLexer() return False else: return True def set_lexer_from_filename(self, filename): """ Change the lexer based on the filename (actually only the extension is needed) :param filename: Filename or extension """ self._lexer = None if filename.endswith("~"): filename = filename[0:len(filename) - 1] try: self._lexer = get_lexer_for_filename(filename) except (ClassNotFound, ImportError): print('class not found for url', filename) try: m = mimetypes.guess_type(filename) print(m) self._lexer = get_lexer_for_mimetype(m[0]) except (ClassNotFound, IndexError, ImportError): self._lexer = get_lexer_for_mimetype('text/plain') if self._lexer is None: _logger().warning('failed to get lexer from filename: %s, using ' 'plain text instead...', filename) self._lexer = TextLexer() def set_lexer_from_mime_type(self, mime, **options): """ Sets the pygments lexer from mime type. :param mime: mime type :param options: optional addtional options. """ self._lexer = get_lexer_for_mimetype(mime, **options) _logger().debug('lexer for mimetype (%s): %r', mime, self._lexer) def highlight_block(self, text, block): """ Highlights the block using a pygments lexer. :param text: text of the block to highlith :param block: block to highlight """ if self.color_scheme.name != self._pygments_style: self._pygments_style = self.color_scheme.name self._update_style() original_text = text if self.editor and self._lexer and self.enabled: if block.blockNumber(): prev_data = self._prev_block.userData() if prev_data: if hasattr(prev_data, "syntax_stack"): self._lexer._saved_state_stack = prev_data.syntax_stack elif hasattr(self._lexer, '_saved_state_stack'): del self._lexer._saved_state_stack # Lex the text using Pygments index = 0 usd = block.userData() if usd is None: usd = TextBlockUserData() block.setUserData(usd) tokens = list(self._lexer.get_tokens(text)) for token, text in tokens: length = len(text) fmt = self._get_format(token) if token in [Token.Literal.String, Token.Literal.String.Doc, Token.Comment]: fmt.setObjectType(fmt.UserObject) self.setFormat(index, length, fmt) index += length if hasattr(self._lexer, '_saved_state_stack'): setattr(usd, "syntax_stack", self._lexer._saved_state_stack) # Clean up for the next go-round. del self._lexer._saved_state_stack # spaces text = original_text expression = QRegExp(r'\s+') index = expression.indexIn(text, 0) while index >= 0: index = expression.pos(0) length = len(expression.cap(0)) self.setFormat(index, length, self._get_format(Whitespace)) index = expression.indexIn(text, index + length) self._prev_block = block def _update_style(self): """ Sets the style to the specified Pygments style. """ try: self._style = get_style_by_name(self._pygments_style) except ClassNotFound: # unknown style, also happen with plugins style when used from a # frozen app. if self._pygments_style == 'qt': from pyqode.core.styles import QtStyle self._style = QtStyle elif self._pygments_style == 'darcula': from pyqode.core.styles import DarculaStyle self._style = DarculaStyle else: self._style = get_style_by_name('default') self._pygments_style = 'default' self._clear_caches() def _clear_caches(self): """ Clear caches for brushes and formats. """ self._brushes.clear() self._formats.clear() def _get_format(self, token): """ Returns a QTextCharFormat for token or None. """ if token == Whitespace: return self.editor.whitespaces_foreground if token in self._formats: return self._formats[token] result = self._get_format_from_style(token, self._style) self._formats[token] = result return result def _get_format_from_style(self, token, style): """ Returns a QTextCharFormat for token by reading a Pygments style. """ result = QtGui.QTextCharFormat() try: style = style.style_for_token(token) except KeyError: # fallback to plain text style = style.style_for_token(Text) for key, value in list(style.items()): if value: if key == 'color': result.setForeground(self._get_brush(value)) elif key == 'bgcolor': result.setBackground(self._get_brush(value)) elif key == 'bold': result.setFontWeight(QtGui.QFont.Bold) elif key == 'italic': result.setFontItalic(True) elif key == 'underline': result.setUnderlineStyle( QtGui.QTextCharFormat.SingleUnderline) elif key == 'sans': result.setFontStyleHint(QtGui.QFont.SansSerif) elif key == 'roman': result.setFontStyleHint(QtGui.QFont.Times) elif key == 'mono': result.setFontStyleHint(QtGui.QFont.TypeWriter) return result def _get_brush(self, color): """ Returns a brush for the color. """ result = self._brushes.get(color) if result is None: qcolor = self._get_color(color) result = QtGui.QBrush(qcolor) self._brushes[color] = result return result @staticmethod def _get_color(color): """ Returns a QColor built from a Pygments color string. """ color = str(color).replace("#", "") qcolor = QtGui.QColor() qcolor.setRgb(int(color[:2], base=16), int(color[2:4], base=16), int(color[4:6], base=16)) return qcolor Turing-0.11-beta/pyqode/core/modes/right_margin.py000066400000000000000000000052211331472757200222130ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the right margin mode. """ from pyqode.core.api import TextHelper from pyqode.core.api import Mode from pyqode.qt import QtGui class RightMarginMode(Mode): """ Displays a right margin at column the specified position. """ @property def color(self): """ Gets/sets the color of the margin """ return self._color @color.setter def color(self, value): self._color = value self._pen = QtGui.QPen(self._color) TextHelper(self.editor).mark_whole_doc_dirty() self.editor.repaint() if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def position(self): """ Gets/sets the position of the margin """ return self._margin_pos @position.setter def position(self, value): self._margin_pos = value if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).position = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Mode.__init__(self) self._margin_pos = 79 self._color = QtGui.QColor('red') self._pen = QtGui.QPen(self._color) def on_state_changed(self, state): """ Connects/Disconnects to the painted event of the editor :param state: Enable state """ if state: self.editor.painted.connect(self._paint_margin) self.editor.repaint() else: self.editor.painted.disconnect(self._paint_margin) self.editor.repaint() def _paint_margin(self, event): """ Paints the right margin after editor paint event. """ font = QtGui.QFont(self.editor.font_name, self.editor.font_size + self.editor.zoom_level) metrics = QtGui.QFontMetricsF(font) pos = self._margin_pos offset = self.editor.contentOffset().x() + \ self.editor.document().documentMargin() x80 = round(metrics.width(' ') * pos) + offset painter = QtGui.QPainter(self.editor.viewport()) painter.setPen(self._pen) painter.drawLine(x80, 0, x80, 2 ** 16) def clone_settings(self, original): self.color = original.color self.position = original.position Turing-0.11-beta/pyqode/core/modes/wordclick.py000066400000000000000000000113561331472757200215300ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the WordClickMode """ from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtGui from pyqode.core.api import TextHelper, DelayJobRunner class WordClickMode(Mode, QtCore.QObject): """ Adds support for word click events. It will highlight the click-able word when the user press control and move the mouse over a word. Detecting whether a word is click-able is the responsability of the subclasses. You must override ``_check_word_cursor`` and call ``_select_word_cursor`` if this is a click-able word (this process might be asynchrone) otherwise _clear_selection. :attr:`pyqode.core.modes.WordClickMode.word_clicked` is emitted when the word is clicked by the user (while keeping control pressed). """ #: Signal emitted when a word is clicked. The parameter is a #: QTextCursor with the clicked word set as the selected text. word_clicked = QtCore.Signal(QtGui.QTextCursor) def __init__(self): QtCore.QObject.__init__(self) Mode.__init__(self) self._previous_cursor_start = -1 self._previous_cursor_end = -1 self._deco = None self._cursor = None self._timer = DelayJobRunner(delay=200) def on_state_changed(self, state): if state: self.editor.mouse_moved.connect(self._on_mouse_moved) self.editor.mouse_released.connect(self._on_mouse_released) self.editor.key_released.connect(self._on_key_released) self.editor.mouse_double_clicked.connect( self._on_mouse_double_clicked) else: self.editor.mouse_moved.disconnect(self._on_mouse_moved) self.editor.mouse_released.disconnect(self._on_mouse_released) self.editor.key_released.disconnect(self._on_key_released) self.editor.mouse_double_clicked.disconnect( self._on_mouse_double_clicked) def _on_mouse_double_clicked(self): self._timer.cancel_requests() def _on_key_released(self, event): if event.key() == QtCore.Qt.Key_Control: self._clear_selection() self._cursor = None def _select_word_cursor(self): """ Selects the word under the mouse cursor. """ cursor = TextHelper(self.editor).word_under_mouse_cursor() if (self._previous_cursor_start != cursor.selectionStart() and self._previous_cursor_end != cursor.selectionEnd()): self._remove_decoration() self._add_decoration(cursor) self._previous_cursor_start = cursor.selectionStart() self._previous_cursor_end = cursor.selectionEnd() def _clear_selection(self): try: self._remove_decoration() except ValueError: pass self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) self._previous_cursor_start = -1 self._previous_cursor_end = -1 def _on_mouse_moved(self, event): """ mouse moved callback """ if event.modifiers() & QtCore.Qt.ControlModifier: cursor = TextHelper(self.editor).word_under_mouse_cursor() if (not self._cursor or cursor.position() != self._cursor.position()): self._check_word_cursor(cursor) self._cursor = cursor else: self._cursor = None self._clear_selection() def _check_word_cursor(self, cursor): pass def _on_mouse_released(self, event): """ mouse pressed callback """ if event.button() == 1 and self._deco: cursor = TextHelper(self.editor).word_under_mouse_cursor() if cursor and cursor.selectedText(): self._timer.request_job( self.word_clicked.emit, cursor) def _add_decoration(self, cursor): """ Adds a decoration for the word under ``cursor``. """ if self._deco is None: if cursor.selectedText(): self._deco = TextDecoration(cursor) if self.editor.background.lightness() < 128: self._deco.set_foreground(QtGui.QColor('#0681e0')) else: self._deco.set_foreground(QtCore.Qt.blue) self._deco.set_as_underlined() self.editor.decorations.append(self._deco) self.editor.set_mouse_cursor(QtCore.Qt.PointingHandCursor) else: self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) def _remove_decoration(self): """ Removes the word under cursor's decoration """ if self._deco is not None: self.editor.decorations.remove(self._deco) self._deco = None Turing-0.11-beta/pyqode/core/modes/zoom.py000066400000000000000000000063651331472757200205370ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the ZoomMode which lets you zoom in and out the editor. """ from pyqode.core.api.mode import Mode from pyqode.qt import QtCore, QtGui, QtWidgets class ZoomMode(Mode): """ Zooms/Unzooms the editor (Ctrl+mouse wheel or Ctrl + 0 to reset). This mode make it possible to zoom in/out the editor view. Here are the controls: * **zoom out**: *ctrl+-* or *ctrl+mouse wheel backward* * **zoom in**: *ctrl++* or *ctrl+mouse wheel forward* * **reset**: *ctrl + 0* """ def __init__(self): super(ZoomMode, self).__init__() self.prev_delta = 0 self.default_font_size = 10 def on_state_changed(self, state): if state: self.editor.mouse_wheel_activated.connect( self._on_wheel_event) self.editor.key_pressed.connect(self._on_key_pressed) self.mnu_zoom = QtWidgets.QMenu("Zoom") a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-in'), 'Zoom in') a.setShortcut('Ctrl++') a.triggered.connect(self.editor.zoom_in) a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-out'), 'Zoom out') a.setShortcut('Ctrl+-') a.triggered.connect(self.editor.zoom_out) a = self.mnu_zoom.addAction(QtGui.QIcon.fromTheme( 'zoom-fit-best'), 'Reset zoom') a.setShortcut('Ctrl+0') a.triggered.connect(self.editor.reset_zoom) a = self.mnu_zoom.menuAction() a.setIcon(QtGui.QIcon.fromTheme('zoom')) self.editor.add_action(a, sub_menu=None) else: self.editor.mouse_wheel_activated.disconnect( self._on_wheel_event) self.editor.remove_action(self.mnu_zoom.menuAction(), sub_menu=None) self.editor.key_pressed.disconnect(self._on_key_pressed) def _on_key_pressed(self, event): """ Resets editor font size to the default font size :param event: wheelEvent :type event: QKeyEvent """ if (int(event.modifiers()) & QtCore.Qt.ControlModifier > 0 and not int(event.modifiers()) & QtCore.Qt.ShiftModifier): if event.key() == QtCore.Qt.Key_0: self.editor.reset_zoom() event.accept() if event.key() == QtCore.Qt.Key_Plus: self.editor.zoom_in() event.accept() if event.key() == QtCore.Qt.Key_Minus: self.editor.zoom_out() event.accept() def _on_wheel_event(self, event): """ Increments or decrements editor fonts settings on mouse wheel event if ctrl modifier is on. :param event: wheel event :type event: QWheelEvent """ try: delta = event.angleDelta().y() except AttributeError: # PyQt4/PySide delta = event.delta() if int(event.modifiers()) & QtCore.Qt.ControlModifier > 0: if delta < self.prev_delta: self.editor.zoom_out() event.accept() else: self.editor.zoom_in() event.accept() Turing-0.11-beta/pyqode/core/panels/000077500000000000000000000000001331472757200173425ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/panels/__init__.py000066400000000000000000000011551331472757200214550ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains the core panels """ from .encodings import EncodingPanel from .line_number import LineNumberPanel from .marker import Marker from .marker import MarkerPanel from .checker import CheckerPanel from .folding import FoldingPanel from .search_and_replace import SearchAndReplacePanel from .global_checker import GlobalCheckerPanel from .read_only import ReadOnlyPanel __all__ = [ 'CheckerPanel', 'EncodingPanel', 'FoldingPanel', 'LineNumberPanel', 'Marker', 'MarkerPanel', 'SearchAndReplacePanel', 'GlobalCheckerPanel', 'ReadOnlyPanel' ] Turing-0.11-beta/pyqode/core/panels/checker.py000066400000000000000000000105371331472757200213260ustar00rootroot00000000000000""" Checker panels: - CheckerPanel: draw checker messages in front of each line - GlobalCheckerPanel: draw all checker markers as colored rectangle to offer a global view of all errors """ from pyqode.core import icons from pyqode.core.api import DelayJobRunner, TextHelper, CodeEdit from pyqode.core.api.panel import Panel, _logger from pyqode.core.modes.checker import CheckerMessages from pyqode.qt import QtCore, QtGui, QtWidgets class CheckerPanel(Panel): """ Shows messages collected by one or more checker modes """ def __init__(self): super(CheckerPanel, self).__init__() self._previous_line = -1 self.scrollable = True self._job_runner = DelayJobRunner(delay=100) self.setMouseTracking(True) #: Info icon self.info_icon = icons.icon( 'dialog-info', ':pyqode-icons/rc/dialog-info.png', 'fa.info-circle', qta_options={'color': '#4040DD'}) self.warning_icon = icons.icon( 'dialog-warning', ':pyqode-icons/rc/dialog-warning.png', 'fa.exclamation-triangle', qta_options={'color': '#DDDD40'}) self.error_icon = icons.icon( 'dialog-error', ':pyqode-icons/rc/dialog-error.png', 'fa.exclamation-circle', qta_options={'color': '#DD4040'}) def marker_for_line(self, line): """ Returns the marker that is displayed at the specified line number if any. :param line: The marker line. :return: Marker of None :rtype: pyqode.core.Marker """ block = self.editor.document().findBlockByNumber(line) try: return block.userData().messages except AttributeError: return [] def sizeHint(self): """ Returns the panel size hint. (fixed with of 16px) """ metrics = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(metrics.height(), metrics.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def on_uninstall(self): self._job_runner.cancel_requests() super(CheckerPanel, self).on_uninstall() def paintEvent(self, event): super(CheckerPanel, self).paintEvent(event) painter = QtGui.QPainter(self) for top, block_nbr, block in self.editor.visible_blocks: user_data = block.userData() if user_data and user_data.messages: for msg in user_data.messages: icon = self._icon_from_message(msg) if icon: rect = QtCore.QRect() rect.setX(0) rect.setY(top) rect.setWidth(self.sizeHint().width()) rect.setHeight(self.sizeHint().height()) icon.paint(painter, rect) def _icon_from_message(self, message): icons = { CheckerMessages.INFO: self.info_icon, CheckerMessages.WARNING: self.warning_icon, CheckerMessages.ERROR: self.error_icon } return icons[message.status] def mouseMoveEvent(self, event): # Requests a tooltip if the cursor is currently over a marker. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) if line: markers = self.marker_for_line(line) text = '\n'.join([marker.description for marker in markers if marker.description]) if len(markers): if self._previous_line != line: top = TextHelper(self.editor).line_pos_from_number( markers[0].line) if top: self._job_runner.request_job(self._display_tooltip, text, top) else: self._job_runner.cancel_requests() self._previous_line = line def leaveEvent(self, *args): """ Hide tooltip when leaving the panel region. """ QtWidgets.QToolTip.hideText() self._previous_line = -1 def _display_tooltip(self, tooltip, top): """ Display tooltip at the specified top position. """ QtWidgets.QToolTip.showText(self.mapToGlobal(QtCore.QPoint( self.sizeHint().width(), top)), tooltip, self) Turing-0.11-beta/pyqode/core/panels/encodings.py000066400000000000000000000176751331472757200217050ustar00rootroot00000000000000""" Contains a panel to manage unicode decoding/encoding errors. """ from pyqode.core.api.panel import Panel from pyqode.core.api.decoration import TextDecoration from pyqode.qt import QtCore, QtGui, QtWidgets class EncodingPanel(Panel): """ Displays a warning when an encoding error occured and let you reload. This panel display a warning in case encoding/decoding error and give the user the possibility to try out another encoding, to edit any way or to close the editor. The panel is automatically shown by :class:`pyqode.core.managers.FileManager` in case of error so that you don't have to worry about encoding issues. The only think you might do is to provide to your user a way to specify the default encoding, i.e. the one that is tried before showing this panel. The panel is a simple widget with a label describing the error, an encoding menu and 3 buttons: ``Retry``, ``Edit`` anyway and ``Cancel``. It is strongly inspired by the GEdit encoding panel. You can change the background color and the label foreground color by setting up the ``color`` and ``foreground`` properties. It's up to the client code to handle cancel requests. To do that simply connect ``cancel_requested`` signal to remove the editor from your application. """ #: Signal emitted when the user pressed on cancel. It is up to the client #: code to handle this event. cancel_requested = QtCore.Signal(object) _description = ('

%s' '

' 'The file you opened has some invalid characters. ' 'If you continue editing this file you could corrupt this ' 'document. You can also choose another character encoding ' 'and try again.

') @property def color(self): """ Returns the panel color. """ return self._color @color.setter def color(self, value): self._color = value self._refresh_stylesheet() if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._refresh_stylesheet() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def _refresh_stylesheet(self): try: self._lbl_stylesheet = ('color: %s;background: %s' % (self._foreground.name(), self._color.name())) for lbl in self._labels: lbl.setStyleSheet(self._lbl_stylesheet) except AttributeError: pass def __init__(self, add_context_menu=True): super(EncodingPanel, self).__init__(dynamic=True) # leave it here otherwise you will have circular import errors from pyqode.core._forms.pnl_encoding_ui import Ui_Form self.ui = Ui_Form() self.ui.setupUi(self) self.__add_ctx_mnu = add_context_menu self._labels = [self.ui.label, self.ui.lblDescription] self._color = None self.color = QtGui.QColor('#8AADD4') self._foreground = None self.foreground = QtGui.QColor('#FFFFFF') self._deco = None self.ui.pushButtonRetry.clicked.connect(self._reload) self.ui.pushButtonEdit.clicked.connect(self._edit_anyway) self.ui.pushButtonCancel.clicked.connect(self.cancel) self.hide() def enable_caret_line(self, value=True): try: from pyqode.core.modes import CaretLineHighlighterMode mode = self.editor.modes.get(CaretLineHighlighterMode) except KeyError: pass else: mode.enabled = value def on_open_failed(self, path, encoding): self.enable_caret_line(False) self.ui.comboBoxEncodings.current_encoding = encoding self.ui.lblDescription.setText( self._description % (_('There was a problem opening the file %r') % path)) # load text as binary and mark it as red, user might make use the # binary to recognize the original encoding try: with open(path, 'rb') as file: content = str(file.read(16)) except OSError: content = '' # set plain text self.editor.setPlainText( content, self.editor.file.get_mimetype(path), self.editor.file.encoding) self.editor.setDocumentTitle(self.editor.file.name) self.editor.setWindowTitle(self.editor.file.name) # Delay because the editor might not have been shown yet QtCore.QTimer.singleShot(1, self.show) def show(self): super(EncodingPanel, self).show() self.editor.selectAll() self._deco = TextDecoration(self.editor.textCursor()) self._deco.set_background(QtCore.Qt.red) self._deco.set_foreground(QtCore.Qt.black) self.editor.decorations.append(self._deco) cursor = self.editor.textCursor() cursor.clearSelection() cursor.setPosition(0) self.editor.setTextCursor(cursor) self.editor.setReadOnly(True) def paintEvent(self, event): """ Fills the panel background. """ super(EncodingPanel, self).paintEvent(event) if self.isVisible(): # fill background painter = QtGui.QPainter(self) self._background_brush = QtGui.QBrush(self._color) painter.fillRect(event.rect(), self._background_brush) def on_install(self, editor): super(EncodingPanel, self).on_install(editor) if self.__add_ctx_mnu: # add context menu from pyqode.core.widgets import EncodingsContextMenu EncodingsContextMenu(parent=editor) def _reload(self): self.hide() self._rm_deco() self.editor.setReadOnly(False) self.enable_caret_line(True) self.editor.file.reload(self.ui.comboBoxEncodings.current_encoding) def _edit_anyway(self): self._rm_deco() self.editor.setReadOnly(False) self.enable_caret_line(True) self.hide() def _rm_deco(self): if self._deco: self.editor.decorations.remove(self._deco) self._deco = None def cancel(self): if self.sender(): self.editor.clear() self.close_panel() def close_panel(self): self._rm_deco() self.enable_caret_line(True) self.cancel_requested.emit(self.editor) self.hide() def clone_settings(self, original): self.color = original.color self.foreground = original.foreground if __name__ == '__main__': import locale import sys from pyqode.core.api import CodeEdit def simulate_open(): pnl.on_open_failed(__file__, locale.getpreferredencoding()) def simulate_save(): pnl.on_save_failed(__file__, locale.getpreferredencoding()) app = QtWidgets.QApplication(sys.argv) # app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) edit = CodeEdit() edit.setMinimumSize(800, 600) edit.file.open(__file__) pnl = EncodingPanel() edit.panels.append(pnl, pnl.Position.TOP) edit.show() simulate_open() QtCore.QTimer.singleShot(5000, simulate_save) app.exec_() Turing-0.11-beta/pyqode/core/panels/folding.py000066400000000000000000000764161331472757200213540ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the marker panel """ import logging import os import sys from pyqode.core.api import TextBlockHelper, folding, TextDecoration, \ DelayJobRunner from pyqode.core.api.folding import FoldScope from pyqode.core.api.panel import Panel from pyqode.qt import QtCore, QtWidgets, QtGui, PYQT5_API from pyqode.core.api.utils import TextHelper, drift_color, keep_tc_pos def _logger(): """ Gets module's logger """ return logging.getLogger(__name__) class FoldingPanel(Panel): """ Displays the document outline and lets the user collapse/expand blocks. The data represented by the panel come from the text block user state and is set by the SyntaxHighlighter mode. The panel does not expose any function that you can use directly. To interact with the fold tree, you need to modify text block fold level or trigger state using :class:`pyqode.core.api.utils.TextBlockHelper` or :mod:`pyqode.core.api.folding` """ #: signal emitted when a fold trigger state has changed, parameters are #: the concerned text block and the new state (collapsed or not). trigger_state_changed = QtCore.Signal(QtGui.QTextBlock, bool) collapse_all_triggered = QtCore.Signal() expand_all_triggered = QtCore.Signal() @property def native_look(self): """ Defines whether the panel will use native indicator icons and color or use custom one. If you want to use custom indicator icons and color, you must first set this flag to False. """ return self._native @native_look.setter def native_look(self, value): self._native = value # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).native_look = value except KeyError: # this should never happen since we're working with clones pass @property def custom_indicators_icons(self): """ Gets/sets the custom icon for the fold indicators. The list of indicators is interpreted as follow:: (COLLAPSED_OFF, COLLAPSED_ON, EXPANDED_OFF, EXPANDED_ON) To use this property you must first set `native_look` to False. :returns: tuple(str, str, str, str) """ return self._custom_indicators @custom_indicators_icons.setter def custom_indicators_icons(self, value): if len(value) != 4: raise ValueError('The list of custom indicators must contains 4 ' 'strings') self._custom_indicators = value if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get( self.__class__).custom_indicators_icons = value except KeyError: # this should never happen since we're working with clones pass @property def custom_fold_region_background(self): """ Custom base color for the fold region background :return: QColor """ return self._custom_color @custom_fold_region_background.setter def custom_fold_region_background(self, value): self._custom_color = value # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get( self.__class__).custom_fold_region_background = value except KeyError: # this should never happen since we're working with clones pass @property def highlight_caret_scope(self): """ True to highlight the caret scope automatically. (Similar to the ``Highlight blocks in Qt Creator``. Default is False. """ return self._highlight_caret @highlight_caret_scope.setter def highlight_caret_scope(self, value): if value != self._highlight_caret: self._highlight_caret = value if self.editor: if value: self._block_nbr = -1 self.editor.cursorPositionChanged.connect( self._highlight_caret_scope) else: self._block_nbr = -1 self.editor.cursorPositionChanged.disconnect( self._highlight_caret_scope) for clone in self.editor.clones: try: clone.modes.get( self.__class__).highlight_caret_scope = value except KeyError: # this should never happen since we're working with # clones pass def __init__(self, highlight_caret_scope=False): Panel.__init__(self) self._native = True self._custom_indicators = ( ':/pyqode-icons/rc/arrow_right_off.png', ':/pyqode-icons/rc/arrow_right_on.png', ':/pyqode-icons/rc/arrow_down_off.png', ':/pyqode-icons/rc/arrow_down_on.png' ) self._custom_color = QtGui.QColor('gray') self._block_nbr = -1 self._highlight_caret = False self.highlight_caret_scope = highlight_caret_scope self._indic_size = 16 #: the list of deco used to highlight the current fold region ( #: surrounding regions are darker) self._scope_decos = [] #: the list of folded blocs decorations self._block_decos = [] self.setMouseTracking(True) self.scrollable = True self._mouse_over_line = None self._current_scope = None self._prev_cursor = None self.context_menu = None self.action_collapse = None self.action_expand = None self.action_collapse_all = None self.action_expand_all = None self._original_background = None self._highlight_runner = DelayJobRunner(delay=250) def on_install(self, editor): """ Add the folding menu to the editor, on install. :param editor: editor instance on which the mode has been installed to. """ super(FoldingPanel, self).on_install(editor) self.context_menu = QtWidgets.QMenu(_('Folding'), self.editor) action = self.action_collapse = QtWidgets.QAction( _('Collapse'), self.context_menu) action.setShortcut('Shift+-') action.triggered.connect(self._on_action_toggle) self.context_menu.addAction(action) action = self.action_expand = QtWidgets.QAction(_('Expand'), self.context_menu) action.setShortcut('Shift++') action.triggered.connect(self._on_action_toggle) self.context_menu.addAction(action) self.context_menu.addSeparator() action = self.action_collapse_all = QtWidgets.QAction( _('Collapse all'), self.context_menu) action.setShortcut('Ctrl+Shift+-') action.triggered.connect(self._on_action_collapse_all_triggered) self.context_menu.addAction(action) action = self.action_expand_all = QtWidgets.QAction( _('Expand all'), self.context_menu) action.setShortcut('Ctrl+Shift++') action.triggered.connect(self._on_action_expand_all_triggered) self.context_menu.addAction(action) self.editor.add_menu(self.context_menu) def sizeHint(self): """ Returns the widget size hint (based on the editor font size) """ fm = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(fm.height(), fm.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def paintEvent(self, event): # Paints the fold indicators and the possible fold region background # on the folding panel. super(FoldingPanel, self).paintEvent(event) painter = QtGui.QPainter(self) # Draw background over the selected non collapsed fold region if self._mouse_over_line is not None: block = self.editor.document().findBlockByNumber( self._mouse_over_line) try: self._draw_fold_region_background(block, painter) except ValueError: pass # Draw fold triggers for top_position, line_number, block in self.editor.visible_blocks: if TextBlockHelper.is_fold_trigger(block): collapsed = TextBlockHelper.is_collapsed(block) mouse_over = self._mouse_over_line == line_number self._draw_fold_indicator( top_position, mouse_over, collapsed, painter) if collapsed: # check if the block already has a decoration, it might # have been folded by the parent editor/document in the # case of cloned editor for deco in self._block_decos: if deco.block == block: # no need to add a deco, just go to the next block break else: self._add_fold_decoration(block, FoldScope(block)) else: for deco in self._block_decos: # check if the block decoration has been removed, it # might have been unfolded by the parent # editor/document in the case of cloned editor if deco.block == block: # remove it and self._block_decos.remove(deco) self.editor.decorations.remove(deco) del deco break def _draw_fold_region_background(self, block, painter): """ Draw the fold region when the mouse is over and non collapsed indicator. :param top: Top position :param block: Current block. :param painter: QPainter """ r = folding.FoldScope(block) th = TextHelper(self.editor) start, end = r.get_range(ignore_blank_lines=True) if start > 0: top = th.line_pos_from_number(start) else: top = 0 bottom = th.line_pos_from_number(end + 1) h = bottom - top if h == 0: h = self.sizeHint().height() w = self.sizeHint().width() self._draw_rect(QtCore.QRectF(0, top, w, h), painter) def _draw_rect(self, rect, painter): """ Draw the background rectangle using the current style primitive color or foldIndicatorBackground if nativeFoldingIndicator is true. :param rect: The fold zone rect to draw :param painter: The widget's painter. """ c = self._custom_color if self._native: c = self.get_system_bck_color() grad = QtGui.QLinearGradient(rect.topLeft(), rect.topRight()) if sys.platform == 'darwin': grad.setColorAt(0, c.lighter(100)) grad.setColorAt(1, c.lighter(110)) outline = c.darker(110) else: grad.setColorAt(0, c.lighter(110)) grad.setColorAt(1, c.lighter(130)) outline = c.darker(100) painter.fillRect(rect, grad) painter.setPen(QtGui.QPen(outline)) painter.drawLine(rect.topLeft() + QtCore.QPointF(1, 0), rect.topRight() - QtCore.QPointF(1, 0)) painter.drawLine(rect.bottomLeft() + QtCore.QPointF(1, 0), rect.bottomRight() - QtCore.QPointF(1, 0)) painter.drawLine(rect.topRight() + QtCore.QPointF(0, 1), rect.bottomRight() - QtCore.QPointF(0, 1)) painter.drawLine(rect.topLeft() + QtCore.QPointF(0, 1), rect.bottomLeft() - QtCore.QPointF(0, 1)) @staticmethod def get_system_bck_color(): """ Gets a system color for drawing the fold scope background. """ def merged_colors(colorA, colorB, factor): maxFactor = 100 colorA = QtGui.QColor(colorA) colorB = QtGui.QColor(colorB) tmp = colorA tmp.setRed((tmp.red() * factor) / maxFactor + (colorB.red() * (maxFactor - factor)) / maxFactor) tmp.setGreen((tmp.green() * factor) / maxFactor + (colorB.green() * (maxFactor - factor)) / maxFactor) tmp.setBlue((tmp.blue() * factor) / maxFactor + (colorB.blue() * (maxFactor - factor)) / maxFactor) return tmp pal = QtWidgets.QApplication.instance().palette() b = pal.window().color() h = pal.highlight().color() return merged_colors(b, h, 50) def _draw_fold_indicator(self, top, mouse_over, collapsed, painter): """ Draw the fold indicator/trigger (arrow). :param top: Top position :param mouse_over: Whether the mouse is over the indicator :param collapsed: Whether the trigger is collapsed or not. :param painter: QPainter """ rect = QtCore.QRect(0, top, self.sizeHint().width(), self.sizeHint().height()) if self._native: if os.environ['QT_API'].lower() not in PYQT5_API: opt = QtGui.QStyleOptionViewItemV2() else: opt = QtWidgets.QStyleOptionViewItem() opt.rect = rect opt.state = (QtWidgets.QStyle.State_Active | QtWidgets.QStyle.State_Item | QtWidgets.QStyle.State_Children) if not collapsed: opt.state |= QtWidgets.QStyle.State_Open if mouse_over: opt.state |= (QtWidgets.QStyle.State_MouseOver | QtWidgets.QStyle.State_Enabled | QtWidgets.QStyle.State_Selected) opt.palette.setBrush(QtGui.QPalette.Window, self.palette().highlight()) opt.rect.translate(-2, 0) self.style().drawPrimitive(QtWidgets.QStyle.PE_IndicatorBranch, opt, painter, self) else: index = 0 if not collapsed: index = 2 if mouse_over: index += 1 QtGui.QIcon(self._custom_indicators[index]).paint(painter, rect) @staticmethod def find_parent_scope(block): """ Find parent scope, if the block is not a fold trigger. """ original = block if not TextBlockHelper.is_fold_trigger(block): # search level of next non blank line while block.text().strip() == '' and block.isValid(): block = block.next() ref_lvl = TextBlockHelper.get_fold_lvl(block) - 1 block = original while (block.blockNumber() and (not TextBlockHelper.is_fold_trigger(block) or TextBlockHelper.get_fold_lvl(block) > ref_lvl)): block = block.previous() return block def _clear_scope_decos(self): """ Clear scope decorations (on the editor) """ for deco in self._scope_decos: self.editor.decorations.remove(deco) self._scope_decos[:] = [] def _get_scope_highlight_color(self): """ Gets the base scope highlight color (derivated from the editor background) """ color = self.editor.background if color.lightness() < 128: color = drift_color(color, 130) else: color = drift_color(color, 105) return color def _add_scope_deco(self, start, end, parent_start, parent_end, base_color, factor): """ Adds a scope decoration that enclose the current scope :param start: Start of the current scope :param end: End of the current scope :param parent_start: Start of the parent scope :param parent_end: End of the parent scope :param base_color: base color for scope decoration :param factor: color factor to apply on the base color (to make it darker). """ color = drift_color(base_color, factor=factor) # upper part if start > 0: d = TextDecoration(self.editor.document(), start_line=parent_start, end_line=start) d.set_full_width(True, clear=False) d.draw_order = 2 d.set_background(color) self.editor.decorations.append(d) self._scope_decos.append(d) # lower part if end <= self.editor.document().blockCount(): d = TextDecoration(self.editor.document(), start_line=end, end_line=parent_end + 1) d.set_full_width(True, clear=False) d.draw_order = 2 d.set_background(color) self.editor.decorations.append(d) self._scope_decos.append(d) def _add_scope_decorations(self, block, start, end): """ Show a scope decoration on the editor widget :param start: Start line :param end: End line """ try: parent = FoldScope(block).parent() except ValueError: parent = None if TextBlockHelper.is_fold_trigger(block): base_color = self._get_scope_highlight_color() factor_step = 5 if base_color.lightness() < 128: factor_step = 10 factor = 70 else: factor = 100 while parent: # highlight parent scope parent_start, parent_end = parent.get_range() self._add_scope_deco( start, end + 1, parent_start, parent_end, base_color, factor) # next parent scope start = parent_start end = parent_end parent = parent.parent() factor += factor_step # global scope parent_start = 0 parent_end = self.editor.document().blockCount() self._add_scope_deco( start, end + 1, parent_start, parent_end, base_color, factor + factor_step) else: self._clear_scope_decos() def _highlight_surrounding_scopes(self, block): """ Highlights the scopes surrounding the current fold scope. :param block: Block that starts the current fold scope. """ scope = FoldScope(block) if (self._current_scope is None or self._current_scope.get_range() != scope.get_range()): self._current_scope = scope self._clear_scope_decos() # highlight surrounding parent scopes with a darker color start, end = scope.get_range() if not TextBlockHelper.is_collapsed(block): self._add_scope_decorations(block, start, end) def mouseMoveEvent(self, event): """ Detect mouser over indicator and highlight the current scope in the editor (up and down decoration arround the foldable text when the mouse is over an indicator). :param event: event """ super(FoldingPanel, self).mouseMoveEvent(event) th = TextHelper(self.editor) line = th.line_nbr_from_position(event.pos().y()) if line >= 0: block = FoldScope.find_parent_scope( self.editor.document().findBlockByNumber(line)) if TextBlockHelper.is_fold_trigger(block): if self._mouse_over_line is None: # mouse enter fold scope QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.PointingHandCursor)) if self._mouse_over_line != block.blockNumber() and \ self._mouse_over_line is not None: # fold scope changed, a previous block was highlighter so # we quickly update our highlighting self._mouse_over_line = block.blockNumber() self._highlight_surrounding_scopes(block) else: # same fold scope, request highlight self._mouse_over_line = block.blockNumber() self._highlight_runner.request_job( self._highlight_surrounding_scopes, block) self._highight_block = block else: # no fold scope to highlight, cancel any pending requests self._highlight_runner.cancel_requests() self._mouse_over_line = None QtWidgets.QApplication.restoreOverrideCursor() self.repaint() def leaveEvent(self, event): """ Removes scope decorations and background from the editor and the panel if highlight_caret_scope, else simply update the scope decorations to match the caret scope. """ super(FoldingPanel, self).leaveEvent(event) QtWidgets.QApplication.restoreOverrideCursor() self._highlight_runner.cancel_requests() if not self.highlight_caret_scope: self._clear_scope_decos() self._mouse_over_line = None self._current_scope = None else: self._block_nbr = -1 self._highlight_caret_scope() self.editor.repaint() def _add_fold_decoration(self, block, region): """ Add fold decorations (boxes arround a folded block in the editor widget). """ deco = TextDecoration(block) deco.signals.clicked.connect(self._on_fold_deco_clicked) deco.tooltip = region.text(max_lines=25) deco.draw_order = 1 deco.block = block deco.select_line() deco.set_outline(drift_color( self._get_scope_highlight_color(), 110)) deco.set_background(self._get_scope_highlight_color()) deco.set_foreground(QtGui.QColor('#808080')) self._block_decos.append(deco) self.editor.decorations.append(deco) def toggle_fold_trigger(self, block): """ Toggle a fold trigger block (expand or collapse it). :param block: The QTextBlock to expand/collapse """ if not TextBlockHelper.is_fold_trigger(block): return region = FoldScope(block) if region.collapsed: region.unfold() if self._mouse_over_line is not None: self._add_scope_decorations( region._trigger, *region.get_range()) else: region.fold() self._clear_scope_decos() self._refresh_editor_and_scrollbars() self.trigger_state_changed.emit(region._trigger, region.collapsed) def mousePressEvent(self, event): """ Folds/unfolds the pressed indicator if any. """ if self._mouse_over_line is not None: block = self.editor.document().findBlockByNumber( self._mouse_over_line) self.toggle_fold_trigger(block) def _on_fold_deco_clicked(self, deco): """ Unfold a folded block that has just been clicked by the user """ self.toggle_fold_trigger(deco.block) def on_state_changed(self, state): """ On state changed we (dis)connect to the cursorPositionChanged signal """ if state: self.editor.key_pressed.connect(self._on_key_pressed) if self._highlight_caret: self.editor.cursorPositionChanged.connect( self._highlight_caret_scope) self._block_nbr = -1 self.editor.new_text_set.connect(self._clear_block_deco) else: self.editor.key_pressed.disconnect(self._on_key_pressed) if self._highlight_caret: self.editor.cursorPositionChanged.disconnect( self._highlight_caret_scope) self._block_nbr = -1 self.editor.new_text_set.disconnect(self._clear_block_deco) def _on_key_pressed(self, event): """ Override key press to select the current scope if the user wants to deleted a folded scope (without selecting it). """ delete_request = event.key() in [QtCore.Qt.Key_Backspace, QtCore.Qt.Key_Delete] if event.text() or delete_request: cursor = self.editor.textCursor() if cursor.hasSelection(): # change selection to encompass the whole scope. positions_to_check = cursor.selectionStart(), cursor.selectionEnd() else: positions_to_check = (cursor.position(), ) for pos in positions_to_check: block = self.editor.document().findBlock(pos) th = TextBlockHelper() if th.is_fold_trigger(block) and th.is_collapsed(block): self.toggle_fold_trigger(block) if delete_request and cursor.hasSelection(): scope = FoldScope(self.find_parent_scope(block)) tc = TextHelper(self.editor).select_lines(*scope.get_range()) if tc.selectionStart() > cursor.selectionStart(): start = cursor.selectionStart() else: start = tc.selectionStart() if tc.selectionEnd() < cursor.selectionEnd(): end = cursor.selectionEnd() else: end = tc.selectionEnd() tc.setPosition(start) tc.setPosition(end, tc.KeepAnchor) self.editor.setTextCursor(tc) @staticmethod def _show_previous_blank_lines(block): """ Show the block previous blank lines """ # set previous blank lines visibles pblock = block.previous() while (pblock.text().strip() == '' and pblock.blockNumber() >= 0): pblock.setVisible(True) pblock = pblock.previous() def refresh_decorations(self, force=False): """ Refresh decorations colors. This function is called by the syntax highlighter when the style changed so that we may update our decorations colors according to the new style. """ cursor = self.editor.textCursor() if (self._prev_cursor is None or force or self._prev_cursor.blockNumber() != cursor.blockNumber()): for deco in self._block_decos: self.editor.decorations.remove(deco) for deco in self._block_decos: deco.set_outline(drift_color( self._get_scope_highlight_color(), 110)) deco.set_background(self._get_scope_highlight_color()) self.editor.decorations.append(deco) self._prev_cursor = cursor def _refresh_editor_and_scrollbars(self): """ Refrehes editor content and scollbars. We generate a fake resize event to refresh scroll bar. We have the same problem as described here: http://www.qtcentre.org/threads/44803 and we apply the same solution (don't worry, there is no visual effect, the editor does not grow up at all, even with a value = 500) """ TextHelper(self.editor).mark_whole_doc_dirty() self.editor.repaint() s = self.editor.size() s.setWidth(s.width() + 1) self.editor.resizeEvent(QtGui.QResizeEvent(self.editor.size(), s)) def collapse_all(self): """ Collapses all triggers and makes all blocks with fold level > 0 invisible. """ self._clear_block_deco() block = self.editor.document().firstBlock() last = self.editor.document().lastBlock() while block.isValid(): lvl = TextBlockHelper.get_fold_lvl(block) trigger = TextBlockHelper.is_fold_trigger(block) if trigger: if lvl == 0: self._show_previous_blank_lines(block) TextBlockHelper.set_collapsed(block, True) block.setVisible(lvl == 0) if block == last and block.text().strip() == '': block.setVisible(True) self._show_previous_blank_lines(block) block = block.next() self._refresh_editor_and_scrollbars() tc = self.editor.textCursor() tc.movePosition(tc.Start) self.editor.setTextCursor(tc) self.collapse_all_triggered.emit() def _clear_block_deco(self): """ Clear the folded block decorations. """ for deco in self._block_decos: self.editor.decorations.remove(deco) self._block_decos[:] = [] def expand_all(self): """ Expands all fold triggers. """ block = self.editor.document().firstBlock() while block.isValid(): TextBlockHelper.set_collapsed(block, False) block.setVisible(True) block = block.next() self._clear_block_deco() self._refresh_editor_and_scrollbars() self.expand_all_triggered.emit() def _on_action_toggle(self): """ Toggle the current fold trigger. """ block = FoldScope.find_parent_scope(self.editor.textCursor().block()) self.toggle_fold_trigger(block) def _on_action_collapse_all_triggered(self): """ Closes all top levels fold triggers recursively """ self.collapse_all() def _on_action_expand_all_triggered(self): """ Expands all fold triggers :return: """ self.expand_all() def _highlight_caret_scope(self): """ Highlight the scope surrounding the current caret position. This get called only if :attr:` pyqode.core.panels.FoldingPanel.highlight_care_scope` is True. """ cursor = self.editor.textCursor() block_nbr = cursor.blockNumber() if self._block_nbr != block_nbr: block = FoldScope.find_parent_scope( self.editor.textCursor().block()) try: s = FoldScope(block) except ValueError: self._clear_scope_decos() else: self._mouse_over_line = block.blockNumber() if TextBlockHelper.is_fold_trigger(block): self._highlight_surrounding_scopes(block) self._block_nbr = block_nbr def clone_settings(self, original): self.native_look = original.native_look self.custom_indicators_icons = original.custom_indicators_icons self.highlight_caret_scope = original.highlight_caret_scope self.custom_fold_region_background = \ original.custom_fold_region_background Turing-0.11-beta/pyqode/core/panels/global_checker.py000066400000000000000000000065611331472757200226500ustar00rootroot00000000000000""" This module contains the GlobalCheckerPanel. """ from pyqode.core import modes from pyqode.core.api import Panel, TextHelper from pyqode.qt import QtCore, QtGui class GlobalCheckerPanel(Panel): """ Displays all checker messages found in the document. The user can click on a marker to quickly go the the error line. """ def __init__(self): super(GlobalCheckerPanel, self).__init__() self.scrollable = True def _draw_messages(self, painter): """ Draw messages from all subclass of CheckerMode currently installed on the editor. :type painter: QtGui.QPainter """ checker_modes = [] for m in self.editor.modes: if isinstance(m, modes.CheckerMode): checker_modes.append(m) for checker_mode in checker_modes: for msg in checker_mode.messages: block = msg.block color = QtGui.QColor(msg.color) brush = QtGui.QBrush(color) rect = QtCore.QRect() rect.setX(self.sizeHint().width() / 4) rect.setY(block.blockNumber() * self.get_marker_height()) rect.setSize(self.get_marker_size()) painter.fillRect(rect, brush) def _draw_visible_area(self, painter): """ Draw the visible area. This method does not take folded blocks into account. :type painter: QtGui.QPainter """ if self.editor.visible_blocks: start = self.editor.visible_blocks[0][-1] end = self.editor.visible_blocks[-1][-1] rect = QtCore.QRect() rect.setX(0) rect.setY(start.blockNumber() * self.get_marker_height()) rect.setWidth(self.sizeHint().width()) rect.setBottom(end.blockNumber() * self.get_marker_height()) if self.editor.background.lightness() < 128: c = self.editor.background.darker(150) else: c = self.editor.background.darker(110) c.setAlpha(128) painter.fillRect(rect, c) def paintEvent(self, event): """ Pains the messages and the visible area on the panel. :param event: paint event infos """ if self.isVisible(): # fill background self._background_brush = QtGui.QBrush(self.editor.background) painter = QtGui.QPainter(self) painter.fillRect(event.rect(), self._background_brush) self._draw_messages(painter) self._draw_visible_area(painter) def sizeHint(self): """ The panel has a fixed width of 8 pixels. """ return QtCore.QSize(12, 16) def get_marker_height(self): """ Gets the height of message marker. """ return self.editor.viewport().height() / TextHelper( self.editor).line_count() def get_marker_size(self): """ Gets the size of a message marker. :return: QSize """ h = self.get_marker_height() if h < 1: h = 1 return QtCore.QSize(self.sizeHint().width() / 2, h) def mousePressEvent(self, event): # Moves the editor text cursor to the clicked line. height = event.pos().y() line = height // self.get_marker_height() TextHelper(self.editor).goto_line(line) Turing-0.11-beta/pyqode/core/panels/line_number.py000066400000000000000000000101601331472757200222110ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the line number panel """ from pyqode.core.api.panel import Panel from pyqode.core.api.utils import drift_color, TextHelper from pyqode.qt import QtCore, QtGui class LineNumberPanel(Panel): """ Displays the document line numbers. """ def __init__(self): Panel.__init__(self) self.scrollable = True self._selecting = False self._start_line = -1 self._sel_start = -1 self._line_color_u = self.palette().color( QtGui.QPalette.Disabled, QtGui.QPalette.WindowText) self._line_color_s = self.palette().color( QtGui.QPalette.Normal, QtGui.QPalette.WindowText) def sizeHint(self): """ Returns the panel size hint (as the panel is on the left, we only need to compute the width """ return QtCore.QSize(self.line_number_area_width(), 50) def line_number_area_width(self): """ Computes the lineNumber area width depending on the number of lines in the document :return: Widtg """ digits = 1 count = max(1, self.editor.blockCount()) while count >= 10: count /= 10 digits += 1 space = 5 + self.editor.fontMetrics().width("9") * digits return space def mousePressEvent(self, e): """ Starts selecting """ self._selecting = True self._sel_start = e.pos().y() start = end = TextHelper(self.editor).line_nbr_from_position( self._sel_start) self._start_line = start TextHelper(self.editor).select_lines(start, end) def cancel_selection(self): """ Cancels line selection. """ self._selecting = False self._sel_start = -1 def mouseReleaseEvent(self, event): # Cancels selection self.cancel_selection() # def leaveEvent(self, event): # # Cancels selection # self.cancel_selection() def mouseMoveEvent(self, e): # Updates end of selection if we are currently selecting if self._selecting: end_pos = e.pos().y() end_line = TextHelper(self.editor).line_nbr_from_position( end_pos) if end_line == -1 and self.editor.visible_blocks: # take last visible block if end_pos < 50: _, end_line, _ = self.editor.visible_blocks[0] end_line -= 1 else: _, end_line, _ = self.editor.visible_blocks[-1] end_line += 1 TextHelper(self.editor).select_lines(self._start_line, end_line) def paintEvent(self, event): # Paints the line numbers self._line_color_u = drift_color(self._background_brush.color(), 250) self._line_color_s = drift_color(self._background_brush.color(), 280) Panel.paintEvent(self, event) if self.isVisible(): painter = QtGui.QPainter(self) # get style options (font, size) width = self.width() height = self.editor.fontMetrics().height() font = self.editor.font() bold_font = self.editor.font() bold_font.setBold(True) pen = QtGui.QPen(self._line_color_u) pen_selected = QtGui.QPen(self._line_color_s) painter.setFont(font) # get selection range sel_start, sel_end = TextHelper(self.editor).selection_range() has_sel = sel_start != sel_end cl = TextHelper(self.editor).current_line_nbr() # draw every visible blocks for top, line, block in self.editor.visible_blocks: if ((has_sel and sel_start <= line <= sel_end) or (not has_sel and cl == line)): painter.setPen(pen_selected) painter.setFont(bold_font) else: painter.setPen(pen) painter.setFont(font) painter.drawText(-3, top, width, height, QtCore.Qt.AlignRight, str(line + 1)) Turing-0.11-beta/pyqode/core/panels/marker.py000066400000000000000000000175251331472757200212070ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the marker panel """ import logging from pyqode.core.api import TextDecoration from pyqode.core.api.panel import Panel from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.qt import QtCore, QtWidgets, QtGui def _logger(): """ Gets module's logger """ return logging.getLogger(__name__) class Marker(QtCore.QObject): """ A marker is an icon draw on a marker panel at a specific line position and with a possible tooltip. """ @property def position(self): """ Gets the marker position (line number) :type: int """ try: return self.block.blockNumber() except AttributeError: return self._position # not added yet @property def icon(self): """ Gets the icon file name. Read-only. """ if isinstance(self._icon, str): if QtGui.QIcon.hasThemeIcon(self._icon): return QtGui.QIcon.fromTheme(self._icon) else: return QtGui.QIcon(self._icon) elif isinstance(self._icon, tuple): return QtGui.QIcon.fromTheme(self._icon[0], QtGui.QIcon(self._icon[1])) elif isinstance(self._icon, QtGui.QIcon): return self._icon return QtGui.QIcon() @property def description(self): """ Gets the marker description. """ return self._description def __init__(self, position, icon="", description="", parent=None): """ :param position: The marker position/line number. :type position: int :param icon: The icon to display :type icon: QtGui.QIcon :param parent: The optional parent object. :type parent: QtCore.QObject or None """ QtCore.QObject.__init__(self, parent) #: The position of the marker (line number) self._position = position self._icon = icon self._description = description class MarkerPanel(Panel): """ General purpose marker panel. This panels takes care of drawing icons at a specific line number. Use addMarker, removeMarker and clearMarkers to manage the collection of displayed makers. You can create a user editable panel (e.g. a breakpoints panel) by using the following signals: - :attr:`pyqode.core.panels.MarkerPanel.add_marker_requested` - :attr:`pyqode.core.panels.MarkerPanel.remove_marker_requested` """ #: Signal emitted when the user clicked in a place where there is no #: marker. add_marker_requested = QtCore.Signal(int) #: Signal emitted when the user right clicked on an existing marker. edit_marker_requested = QtCore.Signal(int) #: Signal emitted when the user left clicked on an existing marker. remove_marker_requested = QtCore.Signal(int) @property def background(self): """ Marker background color in editor. Use None if no text decoration should be used. """ return self._background @background.setter def background(self, value): self._background = value def __init__(self): Panel.__init__(self) self._background = QtGui.QColor('#FFC8C8') self._markers = [] self._icons = {} self._previous_line = -1 self.scrollable = True self._job_runner = DelayJobRunner(delay=100) self.setMouseTracking(True) self._to_remove = [] @property def markers(self): """ Gets all markers. """ return self._markers def add_marker(self, marker): """ Adds the marker to the panel. :param marker: Marker to add :type marker: pyqode.core.modes.Marker """ self._markers.append(marker) doc = self.editor.document() assert isinstance(doc, QtGui.QTextDocument) block = doc.findBlockByLineNumber(marker._position) marker.block = block d = TextDecoration(block) d.set_full_width() if self._background: d.set_background(QtGui.QBrush(self._background)) marker.decoration = d self.editor.decorations.append(d) self.repaint() def remove_marker(self, marker): """ Removes a marker from the panel :param marker: Marker to remove :type marker: pyqode.core.Marker """ self._markers.remove(marker) self._to_remove.append(marker) if hasattr(marker, 'decoration'): self.editor.decorations.remove(marker.decoration) self.repaint() def clear_markers(self): """ Clears the markers list """ while len(self._markers): self.remove_marker(self._markers[0]) def marker_for_line(self, line): """ Returns the marker that is displayed at the specified line number if any. :param line: The marker line. :return: Marker of None :rtype: pyqode.core.Marker """ markers = [] for marker in self._markers: if line == marker.position: markers.append(marker) return markers def sizeHint(self): """ Returns the panel size hint. (fixed with of 16px) """ metrics = QtGui.QFontMetricsF(self.editor.font()) size_hint = QtCore.QSize(metrics.height(), metrics.height()) if size_hint.width() > 16: size_hint.setWidth(16) return size_hint def paintEvent(self, event): Panel.paintEvent(self, event) painter = QtGui.QPainter(self) for top, block_nbr, block in self.editor.visible_blocks: for marker in self._markers: if marker.block == block and marker.icon: rect = QtCore.QRect() rect.setX(0) rect.setY(top) rect.setWidth(self.sizeHint().width()) rect.setHeight(self.sizeHint().height()) marker.icon.paint(painter, rect) def mousePressEvent(self, event): # Handle mouse press: # - emit add marker signal if there were no marker under the mouse # cursor # - emit remove marker signal if there were one or more markers under # the mouse cursor. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) if self.marker_for_line(line): if event.button() == QtCore.Qt.LeftButton: self.remove_marker_requested.emit(line) else: self.edit_marker_requested.emit(line) else: self.add_marker_requested.emit(line) def mouseMoveEvent(self, event): # Requests a tooltip if the cursor is currently over a marker. line = TextHelper(self.editor).line_nbr_from_position(event.pos().y()) markers = self.marker_for_line(line) text = '\n'.join([marker.description for marker in markers if marker.description]) if len(markers): if self._previous_line != line: top = TextHelper(self.editor).line_pos_from_number( markers[0].position) if top: self._job_runner.request_job(self._display_tooltip, text, top) else: self._job_runner.cancel_requests() self._previous_line = line def leaveEvent(self, *args, **kwargs): """ Hide tooltip when leaving the panel region. """ QtWidgets.QToolTip.hideText() self._previous_line = -1 def _display_tooltip(self, tooltip, top): """ Display tooltip at the specified top position. """ QtWidgets.QToolTip.showText(self.mapToGlobal(QtCore.QPoint( self.sizeHint().width(), top)), tooltip, self) Turing-0.11-beta/pyqode/core/panels/read_only.py000066400000000000000000000050231331472757200216700ustar00rootroot00000000000000""" Contains a panel to manage unicode decoding/encoding errors. """ from pyqode.core.api.panel import Panel from pyqode.core.api.decoration import TextDecoration from pyqode.qt import QtCore, QtGui, QtWidgets class ReadOnlyPanel(Panel): """ Displays a message if the opened file is read-only """ @property def color(self): """ Returns the panel color. """ return self._color @color.setter def color(self, value): self._color = value self._refresh_stylesheet() if self.editor: # propagate changes to every clone for clone in self.editor.clones: try: clone.modes.get(self.__class__).color = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): return self._foreground @foreground.setter def foreground(self, value): self._foreground = value self._refresh_stylesheet() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def _refresh_stylesheet(self): try: self._lbl_stylesheet = ('color: %s;background: %s' % (self._foreground.name(), self._color.name())) self.ui.lblDescription.setStyleSheet(self._lbl_stylesheet) except AttributeError: pass def __init__(self): super(ReadOnlyPanel, self).__init__(dynamic=True) # leave it here otherwise you will have circular import errors from pyqode.core._forms.pnl_read_only_ui import Ui_Form self.ui = Ui_Form() self.ui.setupUi(self) self._color = None self.color = QtGui.QColor('#8AADD4') self._foreground = None self.foreground = QtGui.QColor('#FFFFFF') self.hide() def paintEvent(self, event): """ Fills the panel background. """ super(ReadOnlyPanel, self).paintEvent(event) if self.isVisible(): # fill background painter = QtGui.QPainter(self) self._background_brush = QtGui.QBrush(self._color) painter.fillRect(event.rect(), self._background_brush) Turing-0.11-beta/pyqode/core/panels/search_and_replace.py000066400000000000000000000571221331472757200235050ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the search and replace panel """ import re import sre_constants from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core import icons from pyqode.core._forms.search_panel_ui import Ui_SearchPanel from pyqode.core.api.decoration import TextDecoration from pyqode.core.api.panel import Panel from pyqode.core.api.utils import DelayJobRunner, TextHelper from pyqode.core.backend import NotRunning from pyqode.core.backend.workers import findall class SearchAndReplacePanel(Panel, Ui_SearchPanel): """ Lets the user search and replace text in the current document. It uses the backend API to search for some text. Search operation is performed in a background process (the backend process).. The search panel can also be used programatically. To do that, the client code must first requests a search using :meth:`requestSearch` and connects to :attr:`search_finished`. The results of the search can then be retrieved using :attr:`cpt_occurences` and :meth:`get_oOccurrences`. The client code may now navigate through occurrences using :meth:`select_next` or :meth:`select_previous`, or replace the occurrences with a specific text using :meth:`replace` or :meth:`replace_all`. """ STYLESHEET = """SearchAndReplacePanel { background-color: %(bck)s; color: %(color)s; } QtoolButton { color: %(color)s; background-color: transparent; padding: 5px; min-height: 24px; min-width: 24px; border: none; } QtoolButton:hover { background-color: %(highlight)s; border: none; border-radius: 5px; color: %(color)s; } QtoolButton:pressed, QCheckBox:pressed { border: 1px solid %(bck)s; } QtoolButton:disabled { color: %(highlight)s; } QCheckBox { padding: 4px; color: %(color)s; } QCheckBox:hover { background-color: %(highlight)s; color: %(color)s; border-radius: 5px; } """ _KEYS = ["panelBackground", "background", "panelForeground", "panelHighlight"] #: Signal emitted when a search operation finished search_finished = QtCore.Signal() #: Define the maximum number of occurences that can be highlighted #: in the document. #: #: .. note:: The search operation itself is fast but the creation of all #: the extra selection used to highlight search result can be slow. MAX_HIGHLIGHTED_OCCURENCES = 500 @property def background(self): """ Text decoration background """ return self._bg @background.setter def background(self, value): self._bg = value self._refresh_decorations() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).background = value except KeyError: # this should never happen since we're working with clones pass @property def foreground(self): """ Text decoration foreground """ return self._fg @foreground.setter def foreground(self, value): self._fg = value self._refresh_decorations() # propagate changes to every clone if self.editor: for clone in self.editor.clones: try: clone.modes.get(self.__class__).foreground = value except KeyError: # this should never happen since we're working with clones pass def __init__(self): Panel.__init__(self, dynamic=True) self.job_runner = DelayJobRunner(delay=500) Ui_SearchPanel.__init__(self) self.setupUi(self) self.toolButtonClose.clicked.connect(self.on_close) self.actionSearch.triggered.connect(self.on_search) self.actionActionSearchAndReplace.triggered.connect(self.on_search_and_replace) self.lineEditReplace.prompt_text = _(' Replace') #: Occurrences counter self.cpt_occurences = 0 self._previous_stylesheet = "" self._separator = None self._decorations = [] self._occurrences = [] self._current_occurrence_index = 0 self._bg = None self._fg = None self._update_buttons(txt="") self.lineEditSearch.installEventFilter(self) self.lineEditReplace.installEventFilter(self) self._init_actions() self._init_style() self.checkBoxRegex.stateChanged.connect( self.checkBoxWholeWords.setDisabled) def _init_actions(self): icon_size = QtCore.QSize(16, 16) icon = icons.icon('edit-find', ':/pyqode-icons/rc/edit-find.png', 'fa.search') self.actionSearch.setIcon(icon) self.actionSearch.setShortcut('Ctrl+F') self.labelSearch.setPixmap(icon.pixmap(icon_size)) icon = icons.icon( 'edit-find-replace', ':/pyqode-icons/rc/edit-find-replace.png', 'fa.search-plus') self.actionActionSearchAndReplace.setShortcut( 'Ctrl+H') self.actionActionSearchAndReplace.setIcon(icon) self.labelReplace.setPixmap(icon.pixmap(icon_size)) icon = icons.icon('go-up', ':/pyqode-icons/rc/go-up.png', 'fa.arrow-up') self.actionFindPrevious.setShortcut('Shift+F3') self.actionFindPrevious.setIcon(icon) self.toolButtonPrevious.setIcon(icon) self.toolButtonPrevious.setIconSize(icon_size) icon = icons.icon('go-down', ':/pyqode-icons/rc/go-down.png', 'fa.arrow-down') self.actionFindNext.setShortcut('F3') self.actionFindNext.setIcon(icon) self.toolButtonNext.setIcon(icon) self.toolButtonNext.setIconSize(icon_size) icon = icons.icon('window-close', ':/pyqode-icons/rc/close.png', 'fa.close') self.toolButtonClose.setIcon(icon) self.toolButtonClose.setIconSize(icon_size) self.menu = QtWidgets.QMenu(self.editor) self.menu.setTitle(_('Search')) self.menu.menuAction().setIcon(self.actionSearch.icon()) self.menu.addAction(self.actionSearch) self.actionSearch.setShortcutContext(QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionActionSearchAndReplace) self.actionActionSearchAndReplace.setShortcutContext( QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionFindNext) self.actionFindNext.setShortcutContext( QtCore.Qt.WidgetShortcut) self.menu.addAction(self.actionFindPrevious) self.actionFindPrevious.setShortcutContext( QtCore.Qt.WidgetShortcut) def _init_style(self): self._bg = QtGui.QColor('yellow') self._outline = QtGui.QPen(QtGui.QColor('gray'), 1) def on_install(self, editor): super(SearchAndReplacePanel, self).on_install(editor) self.hide() self.text_helper = TextHelper(editor) def _refresh_decorations(self): for deco in self._decorations: self.editor.decorations.remove(deco) deco.set_background(QtGui.QBrush(self.background)) deco.set_outline(self._outline) self.editor.decorations.append(deco) def on_state_changed(self, state): super(SearchAndReplacePanel, self).on_state_changed(state) if state: # menu self.editor.add_action(self.menu.menuAction()) # requestSearch slot self.editor.textChanged.connect(self.request_search) self.lineEditSearch.textChanged.connect(self.request_search) self.checkBoxCase.stateChanged.connect(self.request_search) self.checkBoxWholeWords.stateChanged.connect(self.request_search) self.checkBoxRegex.stateChanged.connect(self.request_search) self.checkBoxInSelection.stateChanged.connect(self.request_search) # navigation slots self.toolButtonNext.clicked.connect(self.select_next) self.actionFindNext.triggered.connect(self.select_next) self.toolButtonPrevious.clicked.connect(self.select_previous) self.actionFindPrevious.triggered.connect(self.select_previous) # replace slots self.toolButtonReplace.clicked.connect(self.replace) self.toolButtonReplaceAll.clicked.connect(self.replace_all) # internal updates slots self.lineEditReplace.textChanged.connect(self._update_buttons) self.search_finished.connect(self._on_search_finished) else: self.editor.remove_action(self.menu.menuAction()) # requestSearch slot self.editor.textChanged.disconnect(self.request_search) self.lineEditSearch.textChanged.disconnect(self.request_search) self.checkBoxCase.stateChanged.disconnect(self.request_search) self.checkBoxWholeWords.stateChanged.disconnect( self.request_search) self.checkBoxRegex.stateChanged.disconnect(self.request_search) self.checkBoxInSelection.stateChanged.disconnect( self.request_search) # navigation slots self.toolButtonNext.clicked.disconnect(self.select_next) self.actionFindNext.triggered.disconnect(self.select_next) self.toolButtonPrevious.clicked.disconnect(self.select_previous) # replace slots self.toolButtonReplace.clicked.disconnect(self.replace) self.toolButtonReplaceAll.clicked.disconnect(self.replace_all) # internal updates slots self.lineEditReplace.textChanged.disconnect(self._update_buttons) self.search_finished.disconnect(self._on_search_finished) def close_panel(self): """ Closes the panel """ self.hide() self.lineEditReplace.clear() self.lineEditSearch.clear() def on_close(self): self.close_panel() def on_search(self): self.widgetSearch.show() self.widgetReplace.hide() self.show() new_text = self.text_helper.selected_text() old_text = self.lineEditSearch.text() text_changed = new_text != old_text self.lineEditSearch.setText(new_text) self.lineEditSearch.selectAll() self.lineEditSearch.setFocus() self.setFocusPolicy(QtCore.Qt.ClickFocus) if not text_changed: self.request_search(new_text) def on_search_and_replace(self): self.widgetSearch.show() self.widgetReplace.show() self.show() new_txt = self.text_helper.selected_text() old_txt = self.lineEditSearch.text() txt_changed = new_txt != old_txt self.lineEditSearch.setText(new_txt) self.lineEditReplace.clear() self.lineEditReplace.setFocus() if not txt_changed: self.request_search(new_txt) def focusOutEvent(self, event): self.job_runner.cancel_requests() Panel.focusOutEvent(self, event) def request_search(self, txt=None): """ Requests a search operation. :param txt: The text to replace. If None, the content of lineEditSearch is used instead. """ if self.checkBoxRegex.isChecked(): try: re.compile(self.lineEditSearch.text(), re.DOTALL) except sre_constants.error as e: self._show_error(e) return else: self._show_error(None) if txt is None or isinstance(txt, int): txt = self.lineEditSearch.text() if txt: self.job_runner.request_job( self._exec_search, txt, self._search_flags()) else: self.job_runner.cancel_requests() self._clear_occurrences() self._on_search_finished() @staticmethod def _set_widget_background_color(widget, color): """ Changes the base color of a widget (background). :param widget: widget to modify :param color: the color to apply """ pal = widget.palette() pal.setColor(pal.Base, color) widget.setPalette(pal) def _show_error(self, error): if error: self._set_widget_background_color( self.lineEditSearch, QtGui.QColor('#FFCCCC')) self.lineEditSearch.setToolTip(str(error)) else: self._set_widget_background_color( self.lineEditSearch, self.palette().color( self.palette().Base)) self.lineEditSearch.setToolTip('') def get_occurences(self): """ Returns the list of text occurrences. An occurrence is a tuple that contains start and end positions. :return: List of tuple(int, int) """ return self._occurrences def select_next(self): """ Selects the next occurrence. :return: True in case of success, false if no occurrence could be selected. """ current_occurence = self._current_occurrence() occurrences = self.get_occurences() if not occurrences: return current = self._occurrences[current_occurence] cursor_pos = self.editor.textCursor().position() if cursor_pos not in range(current[0], current[1] + 1) or \ current_occurence == -1: # search first occurrence that occurs after the cursor position current_occurence = 0 for i, (start, end) in enumerate(self._occurrences): if end > cursor_pos: current_occurence = i break else: if (current_occurence == -1 or current_occurence >= len(occurrences) - 1): current_occurence = 0 else: current_occurence += 1 self._set_current_occurrence(current_occurence) try: cursor = self.editor.textCursor() cursor.setPosition(occurrences[current_occurence][0]) cursor.setPosition(occurrences[current_occurence][1], cursor.KeepAnchor) self.editor.setTextCursor(cursor) return True except IndexError: return False def select_previous(self): """ Selects previous occurrence. :return: True in case of success, false if no occurrence could be selected. """ current_occurence = self._current_occurrence() occurrences = self.get_occurences() if not occurrences: return current = self._occurrences[current_occurence] cursor_pos = self.editor.textCursor().position() if cursor_pos not in range(current[0], current[1] + 1) or \ current_occurence == -1: # search first occurrence that occurs before the cursor position current_occurence = len(self._occurrences) - 1 for i, (start, end) in enumerate(self._occurrences): if end >= cursor_pos: current_occurence = i - 1 break else: if (current_occurence == -1 or current_occurence == 0): current_occurence = len(occurrences) - 1 else: current_occurence -= 1 self._set_current_occurrence(current_occurence) try: cursor = self.editor.textCursor() cursor.setPosition(occurrences[current_occurence][0]) cursor.setPosition(occurrences[current_occurence][1], cursor.KeepAnchor) self.editor.setTextCursor(cursor) return True except IndexError: return False def replace(self, text=None): """ Replaces the selected occurrence. :param text: The replacement text. If it is None, the lineEditReplace's text is used instead. :return True if the text could be replace properly, False if there is no more occurrences to replace. """ if text is None or isinstance(text, bool): text = self.lineEditReplace.text() current_occurences = self._current_occurrence() occurrences = self.get_occurences() if current_occurences == -1: self.select_next() current_occurences = self._current_occurrence() try: # prevent search request due to editor textChanged try: self.editor.textChanged.disconnect(self.request_search) except (RuntimeError, TypeError): # already disconnected pass occ = occurrences[current_occurences] cursor = self.editor.textCursor() cursor.setPosition(occ[0]) cursor.setPosition(occ[1], cursor.KeepAnchor) len_to_replace = len(cursor.selectedText()) len_replacement = len(text) offset = len_replacement - len_to_replace cursor.insertText(text) self.editor.setTextCursor(cursor) self._remove_occurrence(current_occurences, offset) current_occurences -= 1 self._set_current_occurrence(current_occurences) self.select_next() self.cpt_occurences = len(self.get_occurences()) self._update_label_matches() self._update_buttons() return True except IndexError: return False finally: self.editor.textChanged.connect(self.request_search) def replace_all(self, text=None): """ Replaces all occurrences in the editor's document. :param text: The replacement text. If None, the content of the lineEdit replace will be used instead """ cursor = self.editor.textCursor() cursor.beginEditBlock() remains = self.replace(text=text) while remains: remains = self.replace(text=text) cursor.endEditBlock() def eventFilter(self, obj, event): if event.type() == QtCore.QEvent.KeyPress: if (event.key() == QtCore.Qt.Key_Tab or event.key() == QtCore.Qt.Key_Backtab): return True elif (event.key() == QtCore.Qt.Key_Return or event.key() == QtCore.Qt.Key_Enter): if obj == self.lineEditReplace: if event.modifiers() & QtCore.Qt.ControlModifier: self.replace_all() else: self.replace() elif obj == self.lineEditSearch: if event.modifiers() & QtCore.Qt.ShiftModifier: self.select_previous() else: self.select_next() return True elif event.key() == QtCore.Qt.Key_Escape: self.on_close() return Panel.eventFilter(self, obj, event) def _search_flags(self): """ Returns the user search flag: (regex, case_sensitive, whole_words). """ return (self.checkBoxRegex.isChecked(), self.checkBoxCase.isChecked(), self.checkBoxWholeWords.isChecked(), self.checkBoxInSelection.isChecked()) def _exec_search(self, sub, flags): if self.editor is None: return regex, case_sensitive, whole_word, in_selection = flags tc = self.editor.textCursor() assert isinstance(tc, QtGui.QTextCursor) if in_selection and tc.hasSelection(): text = tc.selectedText() self._offset = tc.selectionStart() else: text = self.editor.toPlainText() self._offset = 0 request_data = { 'string': text, 'sub': sub, 'regex': regex, 'whole_word': whole_word, 'case_sensitive': case_sensitive } try: self.editor.backend.send_request(findall, request_data, self._on_results_available) except AttributeError: self._on_results_available(findall(request_data)) except NotRunning: QtCore.QTimer.singleShot(100, self.request_search) def _on_results_available(self, results): self._occurrences = [(start + self._offset, end + self._offset) for start, end in results] self._on_search_finished() def _update_label_matches(self): self.labelMatches.setText(_("{0} matches").format(self.cpt_occurences)) color = "#DD0000" if self.cpt_occurences: color = "#00DD00" self.labelMatches.setStyleSheet("color: %s" % color) if self.lineEditSearch.text() == "": self.labelMatches.clear() def _on_search_finished(self): self._clear_decorations() all_occurences = self.get_occurences() occurrences = all_occurences[:self.MAX_HIGHLIGHTED_OCCURENCES] for i, occurrence in enumerate(occurrences): deco = self._create_decoration(occurrence[0], occurrence[1]) self._decorations.append(deco) self.editor.decorations.append(deco) self.cpt_occurences = len(all_occurences) if not self.cpt_occurences: self._current_occurrence_index = -1 else: self._current_occurrence_index = -1 self._update_label_matches() self._update_buttons(txt=self.lineEditReplace.text()) def _current_occurrence(self): ret_val = self._current_occurrence_index return ret_val def _clear_occurrences(self): self._occurrences[:] = [] def _create_decoration(self, selection_start, selection_end): """ Creates the text occurences decoration """ deco = TextDecoration(self.editor.document(), selection_start, selection_end) deco.set_background(QtGui.QBrush(self.background)) deco.set_outline(self._outline) deco.set_foreground(QtCore.Qt.black) deco.draw_order = 1 return deco def _clear_decorations(self): """ Remove all decorations """ for deco in self._decorations: self.editor.decorations.remove(deco) self._decorations[:] = [] def _set_current_occurrence(self, current_occurence_index): self._current_occurrence_index = current_occurence_index def _remove_occurrence(self, i, offset=0): self._occurrences.pop(i) if offset: updated_occurences = [] for j, occ in enumerate(self._occurrences): if j >= i: updated_occurences.append( (occ[0] + offset, occ[1] + offset)) else: updated_occurences.append((occ[0], occ[1])) self._occurrences = updated_occurences def _update_buttons(self, txt=""): enable = self.cpt_occurences > 1 self.toolButtonNext.setEnabled(enable) self.toolButtonPrevious.setEnabled(enable) self.actionFindNext.setEnabled(enable) self.actionFindPrevious.setEnabled(enable) enable = (txt != self.lineEditSearch.text() and self.cpt_occurences) self.toolButtonReplace.setEnabled(enable) self.toolButtonReplaceAll.setEnabled(enable) def clone_settings(self, original): self.background = original.background self.foreground = original.foreground Turing-0.11-beta/pyqode/core/share.py000066400000000000000000000047001331472757200175350ustar00rootroot00000000000000""" This module contains some definition that can be shared between the backend and the frontend (e.g. this module can be imported without requiring any additional libraries). """ class Definition(object): """ Represents a definition in a source file. This class is used by the OutlineExplorerWidget to show the defined names in a source file. Definition usually form a tree (a definition may have some child definition, e.g. methods of a class). """ def __init__(self, name, line, column=0, icon='', description='', user_data=None, file_path=None): #: Icon resource name associated with the definition, can be None self.icon = icon #: Definition name (name of the class, method, variable) self.name = name #: The line of the definition in the current editor text self.line = line #: The column of the definition in the current editor text self.column = column #: Possible list of children (only classes have children) self.children = [] #: description (tooltip) self.description = description #: user data self.user_data = user_data #: File path of the definition self.file_path = file_path def add_child(self, definition): """ Adds a child definition """ self.children.append(definition) def to_dict(self): """ Serializes a definition to a dictionary, ready for json. Children are serialised recursively. """ ddict = {'name': self.name, 'icon': self.icon, 'line': self.line, 'column': self.column, 'children': [], 'description': self.description, 'user_data': self.user_data, 'path': self.file_path} for child in self.children: ddict['children'].append(child.to_dict()) return ddict @staticmethod def from_dict(ddict): """ Deserializes a definition from a simple dict. """ d = Definition(ddict['name'], ddict['line'], ddict['column'], ddict['icon'], ddict['description'], ddict['user_data'], ddict['path']) for child_dict in ddict['children']: d.children.append(Definition.from_dict(child_dict)) return d def __repr__(self): return 'Definition(%r, %r, %r, %r)' % ( self.name, self.line, self.column, self.icon) Turing-0.11-beta/pyqode/core/styles/000077500000000000000000000000001331472757200174035ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/styles/__init__.py000066400000000000000000000004421331472757200215140ustar00rootroot00000000000000""" This packages contains some pyqode specific pygments color schemes: - qt (inpired by the QtCreator color scheme) - darcula (inspired from the darcula them of PyCharm) """ from .qt import QtStyle from .darcula import DarculaStyle __all__ = [ 'QtStyle', 'DarculaStyle' ] Turing-0.11-beta/pyqode/core/styles/darcula.py000066400000000000000000000040751331472757200213760ustar00rootroot00000000000000""" This module contains the darcula pygments theme. """ from pygments.style import Style from pygments.token import Comment, Error, Generic, Keyword, Literal, Name, \ Operator, Text, Punctuation class DarculaStyle(Style): """ Pygments color scheme inspired by the darcula theme (Pycharm/IntelliJ Idea) """ background_color = '#252525' highlight_color = '#353535' styles = { Comment.Multiline: ' #808080', Comment.Preproc: '#808080', Comment.Single: ' #808080', Comment.Special: 'bold #808080', Comment: ' #808080', Error: '#CC0000', Generic.Deleted: '#CC4040', Generic.Emph: ' #A9B7C6', Generic.Error: '#aa0000', Generic.Heading: '#999999', Generic.Inserted: '#40CC40', Generic.Output: '#888888', Generic.Prompt: '#555555', Generic.Strong: 'bold', Generic.Subheading: '#aaaaaa', Generic.Traceback: '#aa0000', Keyword.Constant: '#CC7832 ', Keyword.Declaration: '#CC7832', Keyword.Namespace: '#CC7832', Keyword.Pseudo: '#CC7832', Keyword.Reserved: '#CC7832', Keyword.Type: '#A9B7C6 bold', Keyword: '#CC7832 bold', Literal.Number: '#6897B3', Literal.String: '#008080 ', Literal.String.Doc: '#629755 ', Name.Attribute: '#800080', Name.Builtin.Pseudo: '#94558D', Name.Builtin: '#8888C6', Name.Class: '#A9B7C6 bold', Name.Constant: '#B200B2', Name.Decorator: '#BBB529', Name.Entity: '#A9B7C6', Name.Exception: '#A9B7C6 bold', Name.Function: '#A9B7C6 bold', Name.Label: '#A9B7C6 bold', Name.Namespace: '#A9B7C6', Name.Tag: '#A5C261 bold', Name.Variable.Class: '#A9B7C6 bold', Name.Variable.Global: '#A9B7C6 bold', Name.Variable.Instance: '#A9B7C6', Name.Variable: '#A9B7C6', Operator: '#808080 bold', Operator.Word: '#CC7832 bold', Text: '#A9B7C6', Text.Whitespace: '#656565', Punctuation: '#A9B7C6' } Turing-0.11-beta/pyqode/core/styles/qt.py000066400000000000000000000040231331472757200204000ustar00rootroot00000000000000""" This module contains the Qt pygments style. """ from pygments.style import Style from pygments.token import Comment, Error, Generic, Keyword, Literal, Name, \ Operator, Text, Punctuation class QtStyle(Style): """ Port of the qt style """ default_style = '' background_color = '#ffffff' highlight_color = '#c7e7f9' styles = { Comment.Multiline: ' #008000', Comment.Preproc: '#000080', Comment.Single: ' #808080', Comment.Special: 'bold #000080', Comment: ' #808080', Error: '#CC0000', Generic.Deleted: 'bg:#ffdddd #000000', Generic.Emph: ' #000000', Generic.Error: '#aa0000', Generic.Heading: '#999999', Generic.Inserted: 'bg:#ddffdd #000000', Generic.Output: '#888888', Generic.Prompt: '#555555', Generic.Strong: 'bold', Generic.Subheading: '#aaaaaa', Generic.Traceback: '#aa0000', Keyword.Constant: '#808000 ', Keyword.Declaration: '#808000', Keyword.Namespace: '#000080', Keyword.Pseudo: '#808000', Keyword.Reserved: '#808000 bold', Keyword.Type: '#800080', Keyword: '#808000 bold', Literal.Number: '#000080', Literal.String: '#008000', Literal.String.Doc: '#000080', Name.Attribute: '#800080', Name.Builtin.Pseudo: '#94558D', Name.Builtin: '#AA00AA', Name.Class: '#800080 bold', Name.Constant: '#800080', Name.Decorator: '#808000', Name.Entity: '#000000', Name.Exception: '#800080', Name.Function: '#800000 bold', Name.Label: '#800000', Name.Namespace: '#000000', Name.Tag: '#2984C6 bold', Name.Variable.Class: '#800080', Name.Variable.Global: '#000000', Name.Variable.Instance: '#800000', Name.Variable: '#000000', Operator.Word: '#808000 bold', Operator: '#808000 bold', Text: '#000000', Text.Whitespace: '#BFBFBF', Punctuation: '#202020' } Turing-0.11-beta/pyqode/core/tools/000077500000000000000000000000001331472757200172205ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/tools/__init__.py000066400000000000000000000003761331472757200213370ustar00rootroot00000000000000""" This package contains generic tools that might be useful for IDE: - console: offer an external console wrapper that prompt the user to press a key at the end of the console program. Useful for running short program in an external terminal. """ Turing-0.11-beta/pyqode/core/tools/console.py000066400000000000000000000021561331472757200212400ustar00rootroot00000000000000""" This script wraps the execution of console program so that a prompt appear after the end of the console program (so that the console does not close as soon as the user program finished). Usage: pyqode-console program [options] Example: $ pyqode-console python /path/to/a/script.py --spam eggs $ ... $ The process terminated with exit code 0. $ Press a key to close this window... $ """ import os import sys import subprocess def main(): """ pyqode-console main function. """ global program, args, ret print(os.getcwd()) ret = 0 if '--help' in sys.argv or '-h' in sys.argv or len(sys.argv) == 1: print(__doc__) else: program = sys.argv[1] args = sys.argv[2:] if args: ret = subprocess.call([program] + args) else: ret = subprocess.call([program]) print('\nProcess terminated with exit code %d' % ret) prompt = 'Press ENTER to close this window...' if sys.version_info[0] == 3: input(prompt) else: raw_input(prompt) sys.exit(ret) if __name__ == '__main__': main() Turing-0.11-beta/pyqode/core/widgets/000077500000000000000000000000001331472757200175265ustar00rootroot00000000000000Turing-0.11-beta/pyqode/core/widgets/__init__.py000066400000000000000000000047231331472757200216450ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains a set of widgets that might be useful when writing pyqode applications: - TextCodeEdit: code edit specialised for plain text - GenericCodeEdit: generic code edit, using PygmentsSH. Not really fast, not really smart. - InteractiveConsole: QTextEdit made for running background process interactively. Can be used in an IDE for running programs or to display the compiler output,... - CodeEditTabWidget: tab widget made to handle CodeEdit instances (or any other object that have the same interface). - ErrorsTable: a QTableWidget specialised to show CheckerMessage. - OutlineTreeWidget: a widget that show the outline of an editor. """ from pyqode.core.widgets.code_edits import TextCodeEdit, GenericCodeEdit from pyqode.core.widgets.encodings import (EncodingsComboBox, EncodingsMenu, EncodingsContextMenu) from pyqode.core.widgets.errors_table import ErrorsTable from pyqode.core.widgets.file_icons_provider import FileIconProvider from pyqode.core.widgets.interactive import InteractiveConsole # Deprecated from pyqode.core.widgets.menu_recents import MenuRecentFiles from pyqode.core.widgets.menu_recents import RecentFilesManager from pyqode.core.widgets.preview import HtmlPreviewWidget from pyqode.core.widgets.tabs import TabWidget from pyqode.core.widgets.tab_bar import TabBar from pyqode.core.widgets.prompt_line_edit import PromptLineEdit from pyqode.core.widgets.outline import OutlineTreeWidget from pyqode.core.widgets.splittable_tab_widget import ( SplittableTabWidget, SplittableCodeEditTabWidget) from pyqode.core.widgets.filesystem_treeview import FileSystemTreeView from pyqode.core.widgets.filesystem_treeview import FileSystemContextMenu from pyqode.core.widgets.filesystem_treeview import FileSystemHelper from pyqode.core.widgets.output_window import OutputWindow from pyqode.core.widgets.terminal import Terminal __all__ = [ 'ErrorsTable', 'FileSystemContextMenu', 'FileSystemTreeView', 'InteractiveConsole', 'FileIconProvider', 'FileSystemHelper', 'MenuRecentFiles', 'RecentFilesManager', 'TabWidget', 'EncodingsComboBox', 'EncodingsMenu', 'EncodingsContextMenu', 'TextCodeEdit', 'GenericCodeEdit', 'PromptLineEdit', 'OutlineTreeWidget', 'SplittableTabWidget', 'SplittableCodeEditTabWidget', 'TabBar', 'HtmlPreviewWidget', 'OutputWindow', 'Terminal' ] Turing-0.11-beta/pyqode/core/widgets/_pty.py000066400000000000000000000120501331472757200210510ustar00rootroot00000000000000"""Pseudo terminal utilities.""" # Bugs: No signal handling. Doesn't set slave termios and window size. # Only tested on Linux. # See: W. Richard Stevens. 1992. Advanced Programming in the # UNIX Environment. Chapter 19. # Author: Steen Lumholt -- with additions by Guido. from select import select import os import tty __all__ = ["openpty","fork","spawn"] STDIN_FILENO = 0 STDOUT_FILENO = 1 STDERR_FILENO = 2 CHILD = 0 def openpty(): """openpty() -> (master_fd, slave_fd) Open a pty master/slave pair, using os.openpty() if possible.""" try: return os.openpty() except (AttributeError, OSError): pass master_fd, slave_name = _open_terminal() slave_fd = slave_open(slave_name) return master_fd, slave_fd def master_open(): """master_open() -> (master_fd, slave_name) Open a pty master and return the fd, and the filename of the slave end. Deprecated, use openpty() instead.""" try: master_fd, slave_fd = os.openpty() except (AttributeError, OSError): pass else: slave_name = os.ttyname(slave_fd) os.close(slave_fd) return master_fd, slave_name return _open_terminal() def _open_terminal(): """Open pty master and return (master_fd, tty_name).""" for x in 'pqrstuvwxyzPQRST': for y in '0123456789abcdef': pty_name = '/dev/pty' + x + y try: fd = os.open(pty_name, os.O_RDWR) except OSError: continue return (fd, '/dev/tty' + x + y) raise OSError('out of pty devices') def slave_open(tty_name): """slave_open(tty_name) -> slave_fd Open the pty slave and acquire the controlling terminal, returning opened filedescriptor. Deprecated, use openpty() instead.""" result = os.open(tty_name, os.O_RDWR) try: from fcntl import ioctl, I_PUSH except ImportError: return result try: ioctl(result, I_PUSH, "ptem") ioctl(result, I_PUSH, "ldterm") except OSError: pass return result def fork(): """fork() -> (pid, master_fd) Fork and make the child a session leader with a controlling terminal.""" try: pid, fd = os.forkpty() except (AttributeError, OSError): pass else: if pid == CHILD: try: os.setsid() except OSError: # os.forkpty() already set us session leader pass return pid, fd master_fd, slave_fd = openpty() pid = os.fork() if pid == CHILD: # Establish a new session. os.setsid() os.close(master_fd) # Slave becomes stdin/stdout/stderr of child. os.dup2(slave_fd, STDIN_FILENO) os.dup2(slave_fd, STDOUT_FILENO) os.dup2(slave_fd, STDERR_FILENO) if (slave_fd > STDERR_FILENO): os.close (slave_fd) # Explicitly open the tty to make it become a controlling tty. tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR) os.close(tmp_fd) else: os.close(slave_fd) # Parent and child process. return pid, master_fd def _writen(fd, data): """Write all the data to a descriptor.""" while data: n = os.write(fd, data) data = data[n:] def _read(fd): """Default read function.""" return os.read(fd, 1024) def _copy(master_fd, master_read=_read, stdin_read=_read): """Parent copy loop. Copies pty master -> standard output (master_read) standard input -> pty master (stdin_read)""" fds = [master_fd, STDIN_FILENO] while True: rfds, wfds, xfds = select(fds, [], []) if master_fd in rfds: data = master_read(master_fd) if not data: # Reached EOF. return else: os.write(STDOUT_FILENO, data) if STDIN_FILENO in rfds: data = stdin_read(STDIN_FILENO) if not data: fds.remove(STDIN_FILENO) else: _writen(master_fd, data) def spawn(argv, master_read=_read, stdin_read=_read): """Create a spawned process.""" if type(argv) == type(''): argv = (argv,) pid, master_fd = fork() if pid == CHILD: try: os.execlp(argv[0], *argv) except: # If we wanted to be really clever, we would use # the same method as subprocess() to pass the error # back to the parent. For now just dump stack trace. traceback.print_exc() finally: os._exit(1) try: mode = tty.tcgetattr(STDIN_FILENO) tty.setraw(STDIN_FILENO) restore = 1 except tty.error: # This is the same as termios.error restore = 0 try: _copy(master_fd, master_read, stdin_read) except OSError: # Some OSes never return an EOF on pty, just raise # an error instead. pass finally: if restore: tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode) os.close(master_fd) return os.waitpid(pid, 0)[1] Turing-0.11-beta/pyqode/core/widgets/code_edits.py000066400000000000000000000152011331472757200222010ustar00rootroot00000000000000""" This module contains core code edits: - TextEdit: code edit specialised for plain text - GenericCodeEdit: generic code editor, not that smart and slow. Use it as a fallback and look other pyqode packages for language specific cod edits. """ import sys from pyqode.core.backend import server from pyqode.core.api import CodeEdit, Panel, SyntaxHighlighter, \ CharBasedFoldDetector, IndentFoldDetector, ColorScheme class TextCodeEdit(CodeEdit): """ CodeEdit specialised for plain text. Especially useful for long text file such as log files because it's syntax highlighter does not do anything. """ class TextSH(SyntaxHighlighter): """ Empty highlighter, does not do anything (very fast at loading very big files). """ def highlight_block(self, text, user_data): """ Does nothing """ pass mimetypes = ['text/x-plain', 'text/x-log', 'text/plain'] DEFAULT_SERVER = server.__file__ def __init__(self, parent=None, server_script=None, interpreter=sys.executable, args=None, create_default_actions=True, color_scheme='qt', reuse_backend=False): from pyqode.core import panels from pyqode.core import modes if server_script is None: server_script = TextCodeEdit.DEFAULT_SERVER super(TextCodeEdit, self).__init__(parent, create_default_actions) self.backend.start(server_script, interpreter, args, reuse=reuse_backend) # append panels self.panels.append(panels.SearchAndReplacePanel(), Panel.Position.BOTTOM) self.panels.append(panels.FoldingPanel()) self.panels.append(panels.LineNumberPanel()) # append modes self.modes.append(modes.AutoCompleteMode()) self.modes.append(modes.ExtendedSelectionMode()) self.modes.append(modes.CaseConverterMode()) self.modes.append(modes.FileWatcherMode()) self.modes.append(modes.CaretLineHighlighterMode()) self.modes.append(modes.RightMarginMode()) self.modes.append(TextCodeEdit.TextSH( self.document(), ColorScheme(color_scheme))) self.modes.append(modes.ZoomMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.AutoIndentMode()) self.modes.append(modes.IndenterMode()) self.modes.append(modes.SymbolMatcherMode()) self.panels.append(panels.EncodingPanel(), Panel.Position.TOP) self.panels.append(panels.ReadOnlyPanel(), Panel.Position.TOP) def clone(self): clone = self.__class__( parent=self.parent(), server_script=self.backend.server_script, interpreter=self.backend.interpreter, args=self.backend.args, color_scheme=self.syntax_highlighter.color_scheme.name) return clone class GenericCodeEdit(CodeEdit): """ This generic code edit uses the PygmentSH for syntax highlighting and commpletion engine based on the document words. It is not very smart and is probably 2 times slower than a native specialised code edit. It is meant to be used as a fallback editor in case you're missing a specialised editor. """ # generic mimetypes = [] #: the list of mimetypes that use char based fold detector _char_based_mimetypes = [ 'text/x-php', 'text/x-c++hdr', 'text/x-c++src', 'text/x-chdr', 'text/x-csrc', 'text/x-csharp', 'application/javascript' ] DEFAULT_SERVER = server.__file__ def __init__(self, parent=None, server_script=None, interpreter=sys.executable, args=None, create_default_actions=True, color_scheme='qt', reuse_backend=False): super(GenericCodeEdit, self).__init__(parent, create_default_actions) from pyqode.core import panels from pyqode.core import modes if server_script is None: server_script = GenericCodeEdit.DEFAULT_SERVER self.backend.start(server_script, interpreter, args, reuse=reuse_backend) # append panels self.panels.append(panels.LineNumberPanel()) self.panels.append(panels.SearchAndReplacePanel(), Panel.Position.BOTTOM) self.panels.append(panels.FoldingPanel()) # append modes self.modes.append(modes.CursorHistoryMode()) self.modes.append(modes.AutoCompleteMode()) self.modes.append(modes.ExtendedSelectionMode()) self.modes.append(modes.CaseConverterMode()) self.modes.append(modes.FileWatcherMode()) self.modes.append(modes.CaretLineHighlighterMode()) self.modes.append(modes.RightMarginMode()) self.modes.append(modes.PygmentsSyntaxHighlighter( self.document(), color_scheme=ColorScheme(color_scheme))) self.modes.append(modes.ZoomMode()) self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.AutoIndentMode()) self.modes.append(modes.IndenterMode()) self.modes.append(modes.SymbolMatcherMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.SmartBackSpaceMode()) self.panels.append(panels.EncodingPanel(), Panel.Position.TOP) self.panels.append(panels.ReadOnlyPanel(), Panel.Position.TOP) def setPlainText(self, txt, mime_type='', encoding=''): if mime_type is None: mime_type = self.file.mimetype if encoding is None: encoding = self.file.encoding try: self.syntax_highlighter.set_lexer_from_filename(self.file.path) try: mimetype = self.syntax_highlighter._lexer.mimetypes[0] except (AttributeError, IndexError): mimetype = '' if mimetype in self._char_based_mimetypes: self.syntax_highlighter.fold_detector = CharBasedFoldDetector() else: self.syntax_highlighter.fold_detector = IndentFoldDetector() except AttributeError: # syntax highlighter removed, e.g. file size > FileManager.limit pass super(GenericCodeEdit, self).setPlainText(txt, mime_type, encoding) def clone(self): clone = self.__class__( parent=self.parent(), server_script=self.backend.server_script, interpreter=self.backend.interpreter, args=self.backend.args, color_scheme=self.syntax_highlighter.color_scheme.name) return clone Turing-0.11-beta/pyqode/core/widgets/encodings.py000066400000000000000000000160571331472757200220620ustar00rootroot00000000000000""" This module contains the encodings related widgets (combox, menus,...) """ import locale import logging from pyqode.core.api import ENCODINGS_MAP, convert_to_codec_key from pyqode.qt import QtCore, QtWidgets from pyqode.core.cache import Cache def _logger(): return logging.getLogger(__name__) class EncodingsComboBox(QtWidgets.QComboBox): """ This combo box display the list of user preferred encoding. The last item let you choose an additional encoding from the list of encodings define in :mod:`pyqode.core.api.encodings` using the EncodingsEditorDialog. You can also set the current encoding, it will be automatically appended if not in the user list or set as the current index. """ @property def current_encoding(self): """ Gets/Sets the current encoding """ return self._current_encoding @current_encoding.setter def current_encoding(self, value): self._current_encoding = convert_to_codec_key(value) self._refresh_items() def __init__(self, parent, default_encoding=locale.getpreferredencoding()): super(EncodingsComboBox, self).__init__(parent) self._current_encoding = default_encoding self._lock = False self._refresh_items() self.currentIndexChanged.connect(self._on_current_changed) def _on_current_changed(self, index): if self._lock: return if index == self.count() - 1: from pyqode.core.dialogs import DlgPreferredEncodingsEditor if DlgPreferredEncodingsEditor.edit_encoding(self): self._refresh_items() else: self._current_encoding = self.itemData(index, QtCore.Qt.UserRole) def _refresh_items(self): self._lock = True self.clear() for i, encoding in enumerate(sorted(Cache().preferred_encodings)): encoding = convert_to_codec_key(encoding) try: alias, lang = ENCODINGS_MAP[encoding] except KeyError: _logger().warning('KeyError with encoding: %s', encoding) else: self.addItem('%s (%s)' % (alias, lang)) self.setItemData(i, encoding, QtCore.Qt.UserRole) if encoding == self._current_encoding or \ convert_to_codec_key(alias) == self._current_encoding: self.setCurrentIndex(i) self.insertSeparator(self.count()) self.addItem('Add or remove') self._lock = False class EncodingsMenu(QtWidgets.QMenu): """ Implements a menu that show the user preferred encoding and emit reload_requested when the user changed the selected encoding. This menu is a general purpose menu that you can put anywhere in your application but you will have to manage the reload operation yourself. For an integrated context menu, prefer using :class:`pyqode.core.widgets.EncodingsContextMenu`. """ #: Signal emitted when the user triggered an action. reload_requested = QtCore.Signal(str) @property def current_encoding(self): """ Gets/Sets the current encoding """ return self._current_encoding @current_encoding.setter def current_encoding(self, value): self._current_encoding = convert_to_codec_key(value) self._refresh() def __init__(self, title=_('Encodings'), parent=None, selected_encoding=locale.getpreferredencoding()): super(EncodingsMenu, self).__init__(parent) self.setTitle(title) self._group = QtWidgets.QActionGroup(self) self._edit_action = None self._current_encoding = '' self.current_encoding = selected_encoding def _clear_actions(self): for action in self._group.actions(): self._group.removeAction(action) self.removeAction(action) self.removeAction(self._edit_action) def _refresh(self): self._clear_actions() for i, encoding in enumerate(sorted(Cache().preferred_encodings)): encoding = convert_to_codec_key(encoding) try: alias, lang = ENCODINGS_MAP[encoding] except KeyError: _logger().warn('KeyError with encoding:', encoding) else: action = QtWidgets.QAction('%s (%s)' % (alias, lang), self) action.setData(encoding) action.setCheckable(True) if encoding == self._current_encoding or \ convert_to_codec_key(alias) == self._current_encoding: action.setChecked(True) self.addAction(action) self._group.addAction(action) self._group.triggered.connect(self._on_encoding_triggered) self.addSeparator() self._edit_action = QtWidgets.QAction(_('Add or remove'), self) self._edit_action.triggered.connect(self._on_edit_requested) self.addAction(self._edit_action) def _on_edit_requested(self): from pyqode.core.dialogs import DlgPreferredEncodingsEditor if DlgPreferredEncodingsEditor.edit_encoding(self): self._refresh() def _on_encoding_triggered(self, action): self.reload_requested.emit(action.data()) class EncodingsContextMenu(EncodingsMenu): """ Extends the encoding menu to be tightly coupled with a CodeEdit instance for an easier integration (automatically reload the editor file content when the encoding changed). The parent widget of the menu must be set to a CodeEdit instance. """ def __init__(self, title='Encodings', parent=None, selected_encoding=locale.getpreferredencoding()): from pyqode.core.api import CodeEdit assert isinstance(parent, CodeEdit) super(EncodingsContextMenu, self).__init__( title, parent, selected_encoding) self.reload_requested.connect(self._on_reload_requested) parent.new_text_set.connect(self._refresh) sep = QtWidgets.QAction(self.parent()) sep.setSeparator(True) self.parent().add_menu(self) self._timer = QtCore.QTimer() self._timer.setInterval(1) self._timer.timeout.connect(self._reload) self._refresh() def _refresh(self): self._current_encoding = convert_to_codec_key( self.parent().file.encoding) super(EncodingsContextMenu, self)._refresh() def _on_reload_requested(self, encoding): self._encoding = encoding self._timer.start() def _reload(self): self._timer.stop() try: self.parent().file.reload(self._encoding) except UnicodeDecodeError: QtWidgets.QMessageBox.warning( self.parent(), _('Decoding error'), _('Failed to reload file with encoding %s') % self._encoding) else: try: from pyqode.core.panels import EncodingPanel panel = self.parent().panels.get(EncodingPanel) except KeyError: pass else: panel.close_panel() Turing-0.11-beta/pyqode/core/widgets/errors_table.py000066400000000000000000000132761331472757200225740ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains a custom QTableWidget for easier displaying of CheckerMessages """ from pyqode.core.api.utils import memoized from pyqode.core.modes import CheckerMessage, CheckerMessages from pyqode.qt import QtCore, QtWidgets, QtGui COL_TYPE = 0 COL_FILE_NAME = 1 COL_LINE_NBR = 2 COL_MSG = 3 class ErrorsTable(QtWidgets.QTableWidget): """ Extends a QtWidgets.QTableWidget to easily show :class:`pyqode.core.modes.CheckerMessage`. You add messages to the table using :meth:`pyqode.core.widgets.ErrorsTable.add_message`. You clear the table using :meth:`pyqode.core.widgets.ErrorsTable`. """ #: Signal emitted when a message is activated, the clicked signal is passed #: as a parameter msg_activated = QtCore.Signal(CheckerMessage) ICONS = { CheckerMessages.INFO: ':pyqode-icons/rc/dialog-info.png', CheckerMessages.WARNING: ':pyqode-icons/rc/dialog-warning.png', CheckerMessages.ERROR: ':pyqode-icons/rc/dialog-error.png', } def __init__(self, parent=None): QtWidgets.QTableWidget.__init__(self, parent) self.setColumnCount(6) self.setHorizontalHeaderLabels( ["Type", "File name", "Line", "Description", 'Details']) try: # pyqt4 self.horizontalHeader().setResizeMode( QtWidgets.QHeaderView.ResizeToContents) self.horizontalHeader().setResizeMode( COL_MSG, QtWidgets.QHeaderView.Stretch) except AttributeError: # pyqt5 self.horizontalHeader().setSectionResizeMode( QtWidgets.QHeaderView.ResizeToContents) self.horizontalHeader().setSectionResizeMode( COL_MSG, QtWidgets.QHeaderView.Stretch) self.setMinimumSize(900, 200) self.itemActivated.connect(self._on_item_activated) self.setSelectionMode(self.SingleSelection) self.setSelectionBehavior(self.SelectRows) self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self.context_mnu = QtWidgets.QMenu() self.action_details = QtWidgets.QAction(_('View details'), self) self.action_details.triggered.connect(self.showDetails) self.action_copy = QtWidgets.QAction(_('Copy error'), self) self.action_copy.triggered.connect(self._copy_cell_text) self.context_mnu.addAction(self.action_details) self.context_mnu.addAction(self.action_copy) self.clear() def _copy_cell_text(self): """ Copies the description of the selected message to the clipboard """ txt = self.currentItem().text() QtWidgets.QApplication.clipboard().setText(txt) def _show_context_menu(self, pos): """ Shows the context menu """ self.context_mnu.exec_(self.mapToGlobal(pos)) def clear(self): """ Clears the tables and the message list """ QtWidgets.QTableWidget.clear(self) self.setRowCount(0) self.setColumnCount(4) self.setHorizontalHeaderLabels( ["Type", "File name", "Line", "Description"]) @classmethod @memoized def _make_icon(cls, status): """ Make icon from icon filename/tuple (if you want to use a theme) """ icon = cls.ICONS[status] if isinstance(icon, tuple): return QtGui.QIcon.fromTheme( icon[0], QtGui.QIcon(icon[1])) elif isinstance(icon, str): return QtGui.QIcon(icon) elif isinstance(icon, QtGui.QIcon): return icon else: return None def add_message(self, msg): """ Adds a checker message to the table. :param msg: The message to append :type msg: pyqode.core.modes.CheckerMessage """ row = self.rowCount() self.insertRow(row) # type item = QtWidgets.QTableWidgetItem( self._make_icon(msg.status), msg.status_string) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_TYPE, item) # filename item = QtWidgets.QTableWidgetItem( QtCore.QFileInfo(msg.path).fileName()) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_FILE_NAME, item) # line if msg.line < 0: item = QtWidgets.QTableWidgetItem("-") else: item = QtWidgets.QTableWidgetItem(str(msg.line + 1)) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_LINE_NBR, item) # desc item = QtWidgets.QTableWidgetItem(msg.description) item.setFlags(QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable) item.setData(QtCore.Qt.UserRole, msg) self.setItem(row, COL_MSG, item) def _on_item_activated(self, item): """ Emits the message activated signal """ msg = item.data(QtCore.Qt.UserRole) self.msg_activated.emit(msg) def showDetails(self): """ Shows the error details. """ msg = self.currentItem().data(QtCore.Qt.UserRole) desc = msg.description desc = desc.replace('\r\n', '\n').replace('\r', '\n') desc = desc.replace('\n', '
') QtWidgets.QMessageBox.information( self, _('Message details'), _("""

Description:
%s

File:
%s

Line:
%d

""") % (desc, msg.path, msg.line + 1, )) Turing-0.11-beta/pyqode/core/widgets/file_icons_provider.py000066400000000000000000000037331331472757200241320ustar00rootroot00000000000000import mimetypes import sys from pyqode.qt import QtCore, QtGui, QtWidgets class FileIconProvider(QtWidgets.QFileIconProvider): """ Provides file/folder icons based on their mimetype. """ plugins = [] @staticmethod def mimetype_icon(path, fallback=None): """ Tries to create an icon from theme using the file mimetype. E.g.:: return self.mimetype_icon( path, fallback=':/icons/text-x-python.png') :param path: file path for which the icon must be created :param fallback: fallback icon path (qrc or file system) :returns: QIcon or None if the file mimetype icon could not be found. """ mime = mimetypes.guess_type(path)[0] if mime: icon = mime.replace('/', '-') # if system.WINDOWS: # return icons.file() if QtGui.QIcon.hasThemeIcon(icon): icon = QtGui.QIcon.fromTheme(icon) if not icon.isNull(): return icon if fallback: return QtGui.QIcon(fallback) return QtGui.QIcon.fromTheme('text-x-generic') def icon(self, type_or_info): if 'linux' in sys.platform: if isinstance(type_or_info, QtCore.QFileInfo): if type_or_info.isDir(): return QtGui.QIcon.fromTheme('folder') else: ret_val = self.mimetype_icon( type_or_info.absoluteFilePath()) return ret_val else: map = { FileIconProvider.File: QtGui.QIcon.fromTheme('text-x-generic'), FileIconProvider.Folder: QtGui.QIcon.fromTheme('folder'), } try: return map[type_or_info] except KeyError: return super().icon(type_or_info) else: return QtWidgets.QFileIconProvider().icon(type_or_info) Turing-0.11-beta/pyqode/core/widgets/filesystem_treeview.py000066400000000000000000000740561331472757200242120ustar00rootroot00000000000000""" This module contains the file system tree view. """ import sys import fnmatch import locale import logging import os import platform import shutil import subprocess from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core import icons def _logger(): return logging.getLogger(__name__) def debug(msg, *args): return _logger().log(5, msg, *args) class FileSystemTreeView(QtWidgets.QTreeView): """ Extends QtWidgets.QTreeView with a filterable file system model. To exclude directories or extension, just set :attr:`FilterProxyModel.ignored_directories` and :attr:`FilterProxyModel.ignored_extensions`. Provides methods to retrieve file info from model index. By default there is no context menu and no file operations are possible. We provide a standard context menu with basic file system operation ( :class:`FileSystemContextMenu`) that you can extend and set on the tree view using :meth:`FileSystemTreeView.set_context_menu` """ class FilterProxyModel(QtCore.QSortFilterProxyModel): """ Excludes :attr:`ignored_directories` and :attr:`ignored_extensions` from the file system model. """ def __init__(self): super(FileSystemTreeView.FilterProxyModel, self).__init__() #: The list of file extension to exclude self.ignored_patterns = [ '*.pyc', '*.pyo', '*.coverage', '.DS_Store', '__pycache__'] self._ignored_unused = [] def set_root_path(self, path): """ Sets the root path to watch. :param path: root path (str). """ self._ignored_unused[:] = [] self._root = path parent_dir = os.path.dirname(path) for item in os.listdir(parent_dir): item_path = os.path.join(parent_dir, item) if item_path != path: self._ignored_unused.append(os.path.normpath(item_path)) def filterAcceptsRow(self, row, parent): index0 = self.sourceModel().index(row, 0, parent) finfo = self.sourceModel().fileInfo(index0) fn = finfo.fileName() fp = os.path.normpath(finfo.filePath()) if os.path.ismount(self._root): return True if fp in self._ignored_unused: return False for ptrn in self.ignored_patterns: if fnmatch.fnmatch(fn, ptrn): return False debug('accepting %s', finfo.filePath()) return True #: signal emitted when the user deleted a file or a directory #: Deprecated, use files_deleted instead. #: Parameters: #: - path (str): path of the file that got deleted #: Note that if the removed path is a directory, this signal will be emitted for every file #: found recursively in the parent directory file_deleted = QtCore.Signal(str) #: Signal emitted when the user deleted a file or a directory, #: it is emitted only once with all the files deleted. files_deleted = QtCore.Signal(list) #: signal emitted when the user renamed a file or a directory #: Deprecated, use files_renamed instead. #: Parameters: #: - old (str): old path #: - new (str): new path file_renamed = QtCore.Signal(str, str) #: Signal emitted when the user renamed a file or a directory, #: it is emitted once with all the renamed files (not directgories) files_renamed = QtCore.Signal(list) #: signal emitted when the user created a file #: Parameters: #: - path (str): path of the file that got created file_created = QtCore.Signal(str) #: signal emitted just before the context menu is shown #: Parameters: #: - file path: current file path. about_to_show_context_menu = QtCore.Signal(str) def __init__(self, parent=None): super(FileSystemTreeView, self).__init__(parent) self._path_to_set = None self._path_to_select = None self.context_menu = None self._root_path = None self.root_path = '' self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self.helper = FileSystemHelper(self) self.setSelectionMode(self.ExtendedSelection) self._ignored_patterns = [] self._icon_provider = QtWidgets.QFileIconProvider() self._hide_extra_colums = True from pyqode.core.widgets import FileIconProvider self.set_icon_provider(FileIconProvider()) def showEvent(self, event): super(FileSystemTreeView, self).showEvent(event) if self._path_to_set: self.set_root_path(self._path_to_set, self._hide_extra_colums) self._path_to_set = None def set_icon_provider(self, icon_provider): self._icon_provider = icon_provider def ignore_directories(self, *directories): """ Adds the specified directories to the list of ignored directories. This must be done before calling set_root_path! .. deprecated:: 2.6.1 Use :func:`add_ignore_pattern` instead. :param directories: the directories to ignore """ for d in directories: self.add_ignore_patterns(d) def ignore_extensions(self, *extensions): """ Adds the specified extensions to the list of ignored directories. This must be done before calling set_root_path! .. deprecated:: 2.6.1 Use :func:`add_ignore_pattern` instead. :param extensions: the extensions to ignore .. note:: extension must have the dot: '.py' and not 'py' """ for ext in extensions: self.add_ignore_patterns('*%s' % ext) def clear_ignore_patterns(self): """ Clears the list of ignore patterns """ self._ignored_patterns[:] = [] def add_ignore_patterns(self, *patterns): """ Adds an ignore pattern to the list for ignore patterns. Ignore patterns are used to filter out unwanted files or directories from the file system model. A pattern is a Unix shell-style wildcards. See :mod:`fnmatch` for a deeper explanation about the shell-style wildcards. """ for ptrn in patterns: if isinstance(ptrn, list): for p in ptrn: self._ignored_patterns.append(p) else: self._ignored_patterns.append(ptrn) def set_context_menu(self, context_menu): """ Sets the context menu of the tree view. :param context_menu: QMenu """ self.context_menu = context_menu self.context_menu.tree_view = self self.context_menu.init_actions() for action in self.context_menu.actions(): self.addAction(action) def set_root_path(self, path, hide_extra_columns=True): """ Sets the root path to watch :param path: root path - str :param hide_extra_columns: Hide extra column (size, paths,...) """ if not self.isVisible(): self._path_to_set = path self._hide_extra_colums = hide_extra_columns return if sys.platform == 'win32' and os.path.splitunc(path)[0]: mdl = QtGui.QStandardItemModel(1, 1) item = QtGui.QStandardItem( QtGui.QIcon.fromTheme( 'dialog-warning', QtGui.QIcon(':/pyqode-icons/rc/dialog-warning.png')), 'UNC pathnames not supported.') mdl.setItem(0, 0, item) self.setModel(mdl) self.root_path = None return self._hide_extra_colums = hide_extra_columns if os.path.isfile(path): path = os.path.abspath(os.path.join(path, os.pardir)) self._fs_model_source = QtWidgets.QFileSystemModel() self._fs_model_source.setFilter(QtCore.QDir.Dirs | QtCore.QDir.Files | QtCore.QDir.NoDotAndDotDot | QtCore.QDir.Hidden) self._fs_model_source.setIconProvider(self._icon_provider) self._fs_model_proxy = self.FilterProxyModel() for item in self._ignored_patterns: self._fs_model_proxy.ignored_patterns.append(item) self._fs_model_proxy.setSourceModel(self._fs_model_source) self._fs_model_proxy.set_root_path(path) # takes parent of the root path, filter will keep only `path`, that # way `path` appear as the top level node of the tree self._root_path = os.path.dirname(path) self.root_path = path self._fs_model_source.directoryLoaded.connect(self._on_path_loaded) self._fs_model_source.setRootPath(self._root_path) def _on_path_loaded(self, path): if os.path.normpath(path) != self._root_path: return try: self.setModel(self._fs_model_proxy) file_root_index = self._fs_model_source.setRootPath( self._root_path) root_index = self._fs_model_proxy.mapFromSource(file_root_index) self.setRootIndex(root_index) if not os.path.ismount(self._root_path): self.expandToDepth(0) if self._hide_extra_colums: self.setHeaderHidden(True) for i in range(1, 4): self.hideColumn(i) if self._path_to_select: self.select_path(self._path_to_select) self._path_to_select = None except RuntimeError: # wrapped C/C++ object of type FileSystemTreeView has been deleted return def filePath(self, index): """ Gets the file path of the item at the specified ``index``. :param index: item index - QModelIndex :return: str """ return self._fs_model_source.filePath( self._fs_model_proxy.mapToSource(index)) def fileInfo(self, index): """ Gets the file info of the item at the specified ``index``. :param index: item index - QModelIndex :return: QFileInfo """ return self._fs_model_source.fileInfo( self._fs_model_proxy.mapToSource(index)) def _show_context_menu(self, point): if self.context_menu: self.about_to_show_context_menu.emit( FileSystemHelper(self).get_current_path()) self.context_menu.exec_(self.mapToGlobal(point)) def select_path(self, path): if not self.isVisible(): self._path_to_select = path else: self.setCurrentIndex(self._fs_model_proxy.mapFromSource( self._fs_model_source.index(path))) class FileSystemHelper: """ File system helper. Helps manipulating the clipboard for file operations on the tree view (drag & drop, context menu, ...). """ class _UrlListMimeData(QtCore.QMimeData): def __init__(self, copy=True): super(FileSystemHelper._UrlListMimeData, self).__init__() self.copy = copy def set_list(self, urls): """ Sets the lis of urls into the mime type data. """ lst = [] for url in urls: lst.append(bytes(url, encoding=locale.getpreferredencoding())) self.setData(self.format(self.copy), b'\n'.join(lst)) @classmethod def list_from(cls, mime_data, copy=True): """ Returns a list of url from mimetype data :param mime_data: mime data from which we must read the list of urls :param copy: True to copy, False to cut """ string = bytes(mime_data.data(cls.format(copy))).decode('utf-8') lst = string.split('\n') urls = [] for val in lst: urls.append(val) return urls def formats(self): return [self.format(self.copy)] @classmethod def format(cls, copy=True): return 'text/tv-copy-url-list' if copy else 'text/tv-cut-url-list' def __init__(self, treeview): self.tree_view = treeview def copy_to_clipboard(self, copy=True): """ Copies the selected items to the clipboard :param copy: True to copy, False to cut. """ urls = self.selected_urls() if not urls: return mime = self._UrlListMimeData(copy) mime.set_list(urls) clipboard = QtWidgets.QApplication.clipboard() clipboard.setMimeData(mime) def selected_urls(self): """ Gets the list of selected items file path (url) """ urls = [] debug('gettings urls') for proxy_index in self.tree_view.selectedIndexes(): finfo = self.tree_view.fileInfo(proxy_index) urls.append(finfo.canonicalFilePath()) debug('selected urls %r' % [str(url) for url in urls]) return urls def paste_from_clipboard(self): """ Pastes files from clipboard. """ to = self.get_current_path() if os.path.isfile(to): to = os.path.abspath(os.path.join(to, os.pardir)) mime = QtWidgets.QApplication.clipboard().mimeData() paste_operation = None if mime.hasFormat(self._UrlListMimeData.format(copy=True)): paste_operation = True elif mime.hasFormat(self._UrlListMimeData.format(copy=False)): paste_operation = False if paste_operation is not None: self._paste( self._UrlListMimeData.list_from(mime, copy=paste_operation), to, copy=paste_operation) def _paste(self, sources, destination, copy): """ Copies the files listed in ``sources`` to destination. Source are removed if copy is set to False. """ for src in sources: debug('%s <%s> to <%s>' % ( 'copying' if copy else 'cutting', src, destination)) perform_copy = True ext = os.path.splitext(src)[1] original = os.path.splitext(os.path.split(src)[1])[0] filename, status = QtWidgets.QInputDialog.getText( self.tree_view, _('Copy'), _('New name:'), QtWidgets.QLineEdit.Normal, original) if filename == '' or not status: return filename = filename + ext final_dest = os.path.join(destination, filename) if os.path.exists(final_dest): rep = QtWidgets.QMessageBox.question( self.tree_view, _('File exists'), _('File <%s> already exists. Do you want to erase it?') % final_dest, QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.No) if rep == QtWidgets.QMessageBox.No: perform_copy = False if not perform_copy: continue try: if os.path.isfile(src): shutil.copy(src, final_dest) else: shutil.copytree(src, final_dest) except (IOError, OSError) as e: QtWidgets.QMessageBox.warning( self.tree_view, _('Copy failed'), _('Failed to copy "%s" to "%s".\n\n%s' % (src, destination, str(e)))) _logger().exception('failed to copy "%s" to "%s', src, destination) else: debug('file copied %s', src) if not copy: debug('removing source (cut operation)') if os.path.isfile(src): os.remove(src) else: shutil.rmtree(src) self.tree_view.files_renamed.emit([(src, final_dest)]) @staticmethod def _get_files(path): """ Returns the list of files contained in path (recursively). """ ret_val = [] for root, _, files in os.walk(path): for f in files: ret_val.append(os.path.join(root, f)) return ret_val def delete(self): """ Deletes the selected items. """ urls = self.selected_urls() rep = QtWidgets.QMessageBox.question( self.tree_view, _('Confirm delete'), _('Are you sure about deleting the selected files/directories?'), QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.Yes) if rep == QtWidgets.QMessageBox.Yes: deleted_files = [] for fn in urls: try: if os.path.isfile(fn): os.remove(fn) deleted_files.append(fn) else: files = self._get_files(fn) shutil.rmtree(fn) deleted_files += files except OSError as e: QtWidgets.QMessageBox.warning( self.tree_view, _('Delete failed'), _('Failed to remove "%s".\n\n%s') % (fn, str(e))) _logger().exception('failed to remove %s', fn) self.tree_view.files_deleted.emit(deleted_files) for d in deleted_files: debug('%s removed', d) self.tree_view.file_deleted.emit(os.path.normpath(d)) def get_current_path(self): """ Gets the path of the currently selected item. """ path = self.tree_view.fileInfo( self.tree_view.currentIndex()).filePath() # https://github.com/pyQode/pyQode/issues/6 if not path: path = self.tree_view.root_path return path def copy_path_to_clipboard(self): """ Copies the file path to the clipboard """ path = self.get_current_path() QtWidgets.QApplication.clipboard().setText(path) debug('path copied: %s' % path) def rename(self): """ Renames the selected item in the tree view """ src = self.get_current_path() pardir, name = os.path.split(src) new_name, status = QtWidgets.QInputDialog.getText( self.tree_view, _('Rename '), _('New name:'), QtWidgets.QLineEdit.Normal, name) if status: dest = os.path.join(pardir, new_name) old_files = [] if os.path.isdir(src): old_files = self._get_files(src) else: old_files = [src] try: os.rename(src, dest) except OSError as e: QtWidgets.QMessageBox.warning( self.tree_view, _('Rename failed'), _('Failed to rename "%s" into "%s".\n\n%s') % (src, dest, str(e))) else: if os.path.isdir(dest): new_files = self._get_files(dest) else: new_files = [dest] self.tree_view.file_renamed.emit(os.path.normpath(src), os.path.normpath(dest)) renamed_files = [] for old_f, new_f in zip(old_files, new_files): self.tree_view.file_renamed.emit(old_f, new_f) renamed_files.append((old_f, new_f)) # emit all changes in one go self.tree_view.files_renamed.emit(renamed_files) def create_directory(self): """ Creates a directory under the selected directory (if the selected item is a file, the parent directory is used). """ src = self.get_current_path() name, status = QtWidgets.QInputDialog.getText( self.tree_view, _('Create directory'), _('Name:'), QtWidgets.QLineEdit.Normal, '') if status: fatal_names = ['.', '..'] for i in fatal_names: if i == name: QtWidgets.QMessageBox.critical( self.tree_view, _("Error"), _("Wrong directory name")) return if os.path.isfile(src): src = os.path.dirname(src) dir_name = os.path.join(src, name) try: os.makedirs(dir_name, exist_ok=True) except OSError as e: QtWidgets.QMessageBox.warning( self.tree_view, _('Failed to create directory'), _('Failed to create directory: "%s".\n\n%s') % (dir_name, str(e))) def create_file(self): """ Creates a file under the current directory. """ src = self.get_current_path() name, status = QtWidgets.QInputDialog.getText( self.tree_view, _('Create new file'), _('File name:'), QtWidgets.QLineEdit.Normal, '') if status: fatal_names = ['.', '..', os.sep] for i in fatal_names: if i == name: QtWidgets.QMessageBox.critical( self.tree_view, _("Error"), _("Wrong directory name")) return if os.path.isfile(src): src = os.path.dirname(src) path = os.path.join(src, name) try: with open(path, 'w'): pass except OSError as e: QtWidgets.QMessageBox.warning( self.tree_view, _('Failed to create new file'), _('Failed to create file: "%s".\n\n%s') % (path, str(e))) else: self.tree_view.file_created.emit(os.path.normpath(path)) class FileSystemContextMenu(QtWidgets.QMenu): """ Default context menu for the file system treeview. This context menu contains the following actions: - Copy - Cut - Paste - Delete - Copy path .. note:: copy/cut/paste action works only from inside the application (e.g. you cannot paste what you copied in the app to the explorer) """ _explorer = None _command = None def __init__(self): super(FileSystemContextMenu, self).__init__() #: Reference to the tree view self.tree_view = None def addAction(self, *args): action = super(FileSystemContextMenu, self).addAction(*args) if action is None: action = args[0] action.setShortcutContext(QtCore.Qt.WidgetShortcut) self.tree_view.addAction(action) return action def init_actions(self): # New - submenu self.menu_new = self.addMenu("&New") self.menu_new.setIcon( icons.icon('document-new', None, 'fa.plus')) # https://github.com/pyQode/pyqode.core/pull/153 new_user_actions = self.get_new_user_actions() if len(new_user_actions) > 0: self.menu_new.addSeparator() for user_new_action in new_user_actions: self.menu_new.addAction(user_new_action) # New file self.action_create_file = QtWidgets.QAction(_('&File'), self) self.action_create_file.triggered.connect( self._on_create_file_triggered) icon_provider = self.tree_view._icon_provider self.action_create_file.setIcon(icon_provider.icon( icon_provider.File)) self.menu_new.addAction(self.action_create_file) # New directory self.action_create_directory = QtWidgets.QAction( _('&Directory'), self) self.action_create_directory.triggered.connect( self._on_create_directory_triggered) self.action_create_directory.setIcon(icon_provider.icon( icon_provider.Folder)) self.menu_new.addAction(self.action_create_directory) self.addSeparator() # cut self.action_cut = QtWidgets.QAction(_('&Cut'), self) self.action_cut.setShortcut(QtGui.QKeySequence.Cut) self.action_cut.setIcon(icons.icon( 'edit-cut', ':/pyqode-icons/rc/edit-cut.png', 'fa.cut')) self.addAction(self.action_cut) self.action_cut.triggered.connect(self._on_cut_triggered) # copy self.action_copy = QtWidgets.QAction(_('&Copy'), self) self.action_copy.setShortcut(QtGui.QKeySequence.Copy) self.action_copy.setIcon(icons.icon( 'edit-copy', ':/pyqode-icons/rc/edit-copy.png', 'fa.copy')) self.addAction(self.action_copy) self.action_copy.triggered.connect(self._on_copy_triggered) # copy path self.action_copy_path = QtWidgets.QAction(_('&Copy path'), self) self.action_copy_path.setShortcut('Ctrl+Shift+C') self.addAction(self.action_copy_path) self.action_copy_path.triggered.connect(self._on_copy_path_triggered) # Paste self.action_paste = QtWidgets.QAction(_('&Paste'), self) self.action_paste.setShortcut(QtGui.QKeySequence.Paste) self.action_paste.setIcon(icons.icon( 'edit-paste', ':/pyqode-icons/rc/edit-paste.png', 'fa.paste')) self.action_paste.triggered.connect(self._on_paste_triggered) self.addAction(self.action_paste) self.addSeparator() # Rename self.action_rename = QtWidgets.QAction(_('&Rename'), self) self.action_rename.setShortcut('F2') self.action_rename.triggered.connect(self._on_rename_triggered) self.action_rename.setIcon(QtGui.QIcon.fromTheme('edit-rename')) self.addAction(self.action_rename) # Delete self.action_delete = QtWidgets.QAction(_('&Delete'), self) self.action_delete.setShortcut(QtGui.QKeySequence.Delete) self.action_delete.setIcon(icons.icon( 'edit-delete', ':/pyqode-icons/rc/edit-delete.png', 'fa.remove')) self.action_delete.triggered.connect(self._on_delete_triggered) self.addAction(self.action_delete) self.addSeparator() text = 'Show in %s' % self.get_file_explorer_name() action = self.action_show_in_explorer = self.addAction(text) action.setIcon(QtGui.QIcon.fromTheme('system-file-manager')) action.triggered.connect(self._on_show_in_explorer_triggered) self._action_show_in_explorer = action def update_show_in_explorer_action(self): self.action_show_in_explorer.setText( _('Show in %s') % self.get_file_explorer_name()) def get_new_user_actions(self): """ Returns user actions for "new" sub-menu. Example:: def get_new_user_actions(self): actions = [] action_python_package = QtWidgets.QAction( '&Python package', self) action_python_package.triggered.connect( self._on_create_python_package_triggered) actions.append(action_python_package) return actions """ return [] def _on_copy_triggered(self): self.tree_view.helper.copy_to_clipboard() def _on_cut_triggered(self): self.tree_view.helper.copy_to_clipboard(copy=False) def _on_paste_triggered(self): self.tree_view.helper.paste_from_clipboard() def _on_delete_triggered(self): self.tree_view.helper.delete() def _on_copy_path_triggered(self): self.tree_view.helper.copy_path_to_clipboard() def _on_rename_triggered(self): self.tree_view.helper.rename() def _on_create_directory_triggered(self): self.tree_view.helper.create_directory() def _on_create_file_triggered(self): self.tree_view.helper.create_file() @classmethod def get_linux_file_explorer(cls): if cls._explorer is None: try: output = subprocess.check_output( ['xdg-mime', 'query', 'default', 'inode/directory']).decode() except subprocess.CalledProcessError: output = '' if output: explorer = output.splitlines()[0].replace( '.desktop', '').replace('-folder-handler', '').split( '.')[-1].lower() FileSystemContextMenu._explorer = explorer return explorer return '' else: return cls._explorer @classmethod def get_file_explorer_name(cls): system = platform.system() if system == 'Darwin': pgm = 'finder' elif system == 'Windows': pgm = 'explorer' else: pgm = cls.get_file_explorer_command().split(' ')[0] if os.path.isabs(pgm): pgm = os.path.split(pgm)[1] return pgm.capitalize() def _on_show_in_explorer_triggered(self): path = self.tree_view.helper.get_current_path() self.show_in_explorer(path, self.tree_view) @classmethod def get_file_explorer_command(cls): if cls._command is None: system = platform.system() if system == 'Linux': explorer = cls.get_linux_file_explorer() if explorer in ['nautilus', 'dolphin']: explorer_cmd = '%s --select %s' % (explorer, '%s') else: explorer_cmd = '%s %s' % (explorer, '%s') elif system == 'Windows': explorer_cmd = 'explorer /select,%s' elif system == 'Darwin': explorer_cmd = 'open -R %s' cls._command = explorer_cmd return explorer_cmd else: return cls._command @classmethod def set_file_explorer_command(cls, command): pgm = command.split(' ')[0] if os.path.isabs(pgm): pgm = os.path.split(pgm)[1] cls._explorer = pgm cls._command = command @classmethod def show_in_explorer(cls, path, parent): try: cmd = cls.get_file_explorer_command() % os.path.normpath(path) _logger().info('show file in explorer: %s' % cmd) args = cmd.split(' ') subprocess.Popen(args) except Exception as e: QtWidgets.QMessageBox.warning( parent, _('Open in explorer'), _('Failed to open file in explorer.\n\n%s') % str(e)) Turing-0.11-beta/pyqode/core/widgets/interactive.py000066400000000000000000000362721331472757200224270ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains interactive widgets: - interactive console: a text edit made to run subprocesses interactively """ import locale import logging import sys from pyqode.core.api.client import PROCESS_ERROR_STRING from pyqode.core.managers.decorations import TextDecorationsManager from pyqode.core.managers.panels import PanelsManager from pyqode.qt.QtCore import Qt, Signal, QProcess, QProcessEnvironment from pyqode.qt.QtWidgets import QTextEdit, QAction, QApplication from pyqode.qt.QtGui import QColor, QTextCursor, QFont, QKeySequence def _logger(): return logging.getLogger(__name__) class InteractiveConsole(QTextEdit): """ An interactive console is a QTextEdit specialised to run a process interactively The user will see the process outputs and will be able to interact with the process by typing some text, this text will be forwarded to the process stdin. You can customize the colors using the following attributes: - stdout_color: color of the process stdout - stdin_color: color of the user inputs. Green by default - app_msg_color: color for custom application message ( process started, process finished) - stderr_color: color of the process stderr .. deprecated: Since v2.10.0, this widget is deprecated, you should use :class:`pyqode.core.widgets.OutputWindow` instead. """ #: Signal emitted when the process has finished. process_finished = Signal(int) process_started = Signal() def __init__(self, parent=None): super(InteractiveConsole, self).__init__(parent) self.panels = PanelsManager(self) self.decorations = TextDecorationsManager(self) from pyqode.core.panels import SearchAndReplacePanel self.panels.append(SearchAndReplacePanel(), SearchAndReplacePanel.Position.TOP) self._stdout_col = QColor("#404040") self._app_msg_col = QColor("#4040FF") self._stdin_col = QColor("#22AA22") self._stderr_col = QColor("#FF0000") self._write_app_messages = True self._process_name = '' self.process = None self._args = None self._usr_buffer = "" self._clear_on_start = True self._merge_outputs = False self._running = False self._writer = self.write self._user_stop = False font = "monospace" if sys.platform == "win32": font = "Consolas" elif sys.platform == "darwin": font = 'Monaco' self._font_family = font self.setFont(QFont(font, 10)) self.setReadOnly(True) self._mask_user_input = False action = QAction(_('Copy'), self) action.setShortcut(QKeySequence.Copy) action.triggered.connect(self.copy) self.add_action(action) action = QAction(_('Paste'), self) action.setShortcut(QKeySequence.Paste) action.triggered.connect(self.paste) self.add_action(action) def showEvent(self, event): super(InteractiveConsole, self).showEvent(event) self.panels.refresh() def resizeEvent(self, e): super(InteractiveConsole, self).resizeEvent(e) self.panels.resize() def add_action(self, action): self.addAction(action) action.setShortcutContext(Qt.WidgetShortcut) def set_writer(self, writer): """ Changes the writer function to handle writing to the text edit. A writer function must have the following prototype: .. code-block:: python def write(text_edit, text, color) :param writer: write function as described above. """ if self._writer != writer and self._writer: self._writer = None if writer: self._writer = writer def _on_stdout(self): raw = bytes(self.process.readAllStandardOutput()) try: txt = raw.decode(sys.getfilesystemencoding()) except UnicodeDecodeError: txt = str(raw).replace("b'", '')[:-1].replace( '\\r\\n', '\n').replace('\\\\', '\\') _logger().debug('stdout: %s', txt) self._writer(self, txt, self.stdout_color) def _on_stderr(self): raw = bytes(self.process.readAllStandardError()) try: txt = raw.decode(sys.getfilesystemencoding()) except UnicodeDecodeError: txt = str(raw).replace("b'", '')[:-1].replace( '\\r\\n', '\n').replace('\\\\', '\\') _logger().debug('stderr: %s', txt) self._writer(self, txt, self.stderr_color) @property def exit_code(self): if self.is_running: return None exit_status = self.process.exitStatus() if exit_status == self.process.Crashed: exit_code = 139 else: exit_code = self.process.exitCode() return exit_code @property def write_app_messages(self): return self._write_app_messages @write_app_messages.setter def write_app_messages(self, value): self._write_app_messages = value @property def background_color(self): """ The console background color. Default is white. """ pal = self.palette() return pal.color(pal.Base) @background_color.setter def background_color(self, color): pal = self.palette() pal.setColor(pal.Base, color) pal.setColor(pal.Text, self.stdout_color) self.setPalette(pal) @property def stdout_color(self): """ STDOUT color. Default is black. """ return self._stdout_col @stdout_color.setter def stdout_color(self, color): self._stdout_col = color pal = self.palette() pal.setColor(pal.Text, self._stdout_col) self.setPalette(pal) @property def stderr_color(self): """ Color for stderr output if :attr:`pyqode.core.widgets.InteractiveConsole.merge_outputs` is False. Default is Red. """ return self._stderr_col @stderr_color.setter def stderr_color(self, color): self._stderr_col = color @property def stdin_color(self): """ STDIN color. Default is green. """ return self._stdin_col @stdin_color.setter def stdin_color(self, color): self._stdin_col = color @property def app_msg_color(self): """ Color of the application messages (e.g.: 'Process started', 'Process finished with status %d') """ return self._app_msg_col @app_msg_color.setter def app_msg_color(self, color): self._app_msg_col = color @property def clear_on_start(self): """ True to clear window when starting a new process. False to accumulate outputs. """ return self._clear_on_start @clear_on_start.setter def clear_on_start(self, value): self._clear_on_start = value @property def merge_outputs(self): """ Merge stderr with stdout. Default is False. If set to true, stderr and stdin will use the same color: stdin_color. """ return self._merge_outputs @merge_outputs.setter def merge_outputs(self, value): self._merge_outputs = value if value: self.process.setProcessChannelMode(QProcess.MergedChannels) else: self.process.setProcessChannelMode(QProcess.SeparateChannels) @property def is_running(self): """ Checks if the process is running. :return: """ return self._running @property def mask_user_input(self): return self._mask_user_input @mask_user_input.setter def mask_user_input(self, value): """ If true, user input will be replaced by "*". Could be useful to run commands as root. """ self._mask_user_input = value def closeEvent(self, *args, **kwargs): if self.process and self.process.state() == QProcess.Running: self.process.terminate() def start_process(self, process, args=None, cwd=None, env=None): """ Starts a process interactively. :param process: Process to run :type process: str :param args: List of arguments (list of str) :type args: list :param cwd: Working directory :type cwd: str :param env: environment variables (dict). """ self.setReadOnly(False) if env is None: env = {} if args is None: args = [] if not self._running: self.process = QProcess() self.process.finished.connect(self._on_process_finished) self.process.started.connect(self.process_started.emit) self.process.error.connect(self._write_error) self.process.readyReadStandardError.connect(self._on_stderr) self.process.readyReadStandardOutput.connect(self._on_stdout) if cwd: self.process.setWorkingDirectory(cwd) e = self.process.systemEnvironment() ev = QProcessEnvironment() for v in e: values = v.split('=') ev.insert(values[0], '='.join(values[1:])) for k, v in env.items(): ev.insert(k, v) self.process.setProcessEnvironment(ev) self._running = True self._process_name = process self._args = args if self._clear_on_start: self.clear() self._user_stop = False self._write_started() self.process.start(process, args) self.process.waitForStarted() else: _logger().warning('a process is already running') def stop_process(self): """ Stop the process (by killing it). """ if self.process is not None: self._user_stop = True self.process.kill() self.setReadOnly(True) self._running = False def get_user_buffer_as_bytes(self): """ Returns the user buffer as a bytes. """ return bytes(self._usr_buffer, locale.getpreferredencoding()) def keyPressEvent(self, event): ctrl = event.modifiers() & Qt.ControlModifier != 0 if not self.is_running or self.textCursor().hasSelection(): if event.key() == Qt.Key_C and ctrl: self.copy() return propagate_to_parent = True delete = event.key() in [Qt.Key_Backspace, Qt.Key_Delete] if delete and not self._usr_buffer: return if event.key() == Qt.Key_V and ctrl: # Paste to usr buffer text = QApplication.clipboard().text() self._usr_buffer += text self.setTextColor(self._stdin_col) if self._mask_user_input: text = len(text) * '*' self.insertPlainText(text) return if event.key() in [Qt.Key_Return, Qt.Key_Enter]: # send the user input to the child process if sys.platform == 'win32': self._usr_buffer += "\r" self._usr_buffer += "\n" self.process.write(self.get_user_buffer_as_bytes()) self._usr_buffer = "" else: if not delete and len(event.text()): txt = event.text() self._usr_buffer += txt if self._mask_user_input: txt = '*' self.setTextColor(self._stdin_col) self.insertPlainText(txt) propagate_to_parent = False elif delete: self._usr_buffer = self._usr_buffer[:len(self._usr_buffer) - 1] # text is inserted here, the text color must be defined before this # line if propagate_to_parent: super(InteractiveConsole, self).keyPressEvent(event) self.setTextColor(self._stdout_col) def _on_process_finished(self, exit_code, exit_status): if self is None: return self._running = False if not self._user_stop: if self._write_app_messages: self._writer( self, "\nProcess finished with exit code %d" % self.exit_code, self._app_msg_col) _logger().debug('process finished (exit_code=%r, exit_status=%r)', exit_code, exit_status) try: self.process_finished.emit(exit_code) except TypeError: # pyqtSignal must be bound to a QObject, not 'InteractiveConsole' pass else: self.setReadOnly(True) def _write_started(self): if not self._write_app_messages: return self._writer(self, "{0} {1}\n".format( self._process_name, " ".join(self._args)), self._app_msg_col) self._running = True def _write_error(self, error): if self is None: return if self._user_stop: self._writer(self, '\nProcess stopped by the user', self.app_msg_color) else: err = PROCESS_ERROR_STRING[error] self._writer(self, "Error: %s" % err, self.stderr_color) _logger().warn('process error: %s', err) self._running = False @staticmethod def write(text_edit, text, color): """ Default write function. Move the cursor to the end and insert text with the specified color. :param text_edit: QInteractiveConsole instance :type text_edit: pyqode.widgets.QInteractiveConsole :param text: Text to write :type text: str :param color: Desired text color :type color: QColor """ try: text_edit.moveCursor(QTextCursor.End) text_edit.setTextColor(color) text_edit.insertPlainText(text) text_edit.moveCursor(QTextCursor.End) except RuntimeError: pass def apply_color_scheme(self, color_scheme): """ Apply a pygments color scheme to the console. As there is not a 1 to 1 mapping between color scheme formats and console formats, we decided to make the following mapping (it usually looks good for most of the available pygments styles): - stdout_color = normal color - stderr_color = red (lighter if background is dark) - stdin_color = numbers color - app_msg_color = string color - bacgorund_color = background :param color_scheme: pyqode.core.api.ColorScheme to apply """ self.stdout_color = color_scheme.formats['normal'].foreground().color() self.stdin_color = color_scheme.formats['number'].foreground().color() self.app_msg_color = color_scheme.formats[ 'string'].foreground().color() self.background_color = color_scheme.background if self.background_color.lightness() < 128: self.stderr_color = QColor('#FF8080') else: self.stderr_color = QColor('red') if __name__ == '__main__': from pyqode.qt import QtWidgets app = QtWidgets.QApplication([]) console = InteractiveConsole() console.start_process('cal') console.show() app.exec_() Turing-0.11-beta/pyqode/core/widgets/menu_recents.py000066400000000000000000000154601331472757200225750ustar00rootroot00000000000000""" Provides a menu that display the list of recent files and a RecentFilesManager which use your application's QSettings to store the list of recent files. """ import sys import os from pyqode.core import icons from pyqode.qt import QtCore, QtGui, QtWidgets class RecentFilesManager(QtCore.QObject): """ Manages a list of recent files. The list of files is stored in your application QSettings. """ #: Maximum number of files kept in the list. max_recent_files = 15 updated = QtCore.Signal() def __init__(self, organisation, application, qsettings=None): super(RecentFilesManager, self).__init__() if qsettings is None: self._settings = QtCore.QSettings(organisation, application) else: self._settings = qsettings def clear(self): """ Clears recent files in QSettings """ self.set_value('list', []) self.updated.emit() def remove(self, filename): """ Remove a file path from the list of recent files. :param filename: Path of the file to remove """ files = self.get_value('list', []) files.remove(filename) self.set_value('list', files) self.updated.emit() def get_value(self, key, default=None): """ Reads value from QSettings :param key: value key :param default: default value. :return: value """ def unique(seq, idfun=None): if idfun is None: def idfun(x): return x # order preserving seen = {} result = [] for item in seq: marker = idfun(item) if marker in seen: continue seen[marker] = 1 result.append(item) return result lst = self._settings.value('recent_files/%s' % key, default) # emtpy list if lst is None: lst = [] # single file if isinstance(lst, str): lst = [lst] return unique([os.path.normpath(pth) for pth in lst]) def set_value(self, key, value): """ Set the recent files value in QSettings. :param key: value key :param value: new value """ if value is None: value = [] value = [os.path.normpath(pth) for pth in value] self._settings.setValue('recent_files/%s' % key, value) def get_recent_files(self): """ Gets the list of recent files. (files that do not exists anymore are automatically filtered) """ ret_val = [] files = self.get_value('list', []) # filter files, remove files that do not exist anymore for file in files: if file is not None and os.path.exists(file): if os.path.ismount(file) and \ sys.platform == 'win32' and not file.endswith('\\'): file += '\\' if file not in ret_val: ret_val.append(file) return ret_val def open_file(self, file): """ Adds a file to the list (and move it to the top of the list if the file already exists) :param file: file path to add the list of recent files. """ files = self.get_recent_files() try: files.remove(file) except ValueError: pass files.insert(0, file) # discard old files del files[self.max_recent_files:] self.set_value('list', files) self.updated.emit() def last_file(self): """ Returns the path to the last opened file. """ files = self.get_recent_files() try: return files[0] except IndexError: return None class MenuRecentFiles(QtWidgets.QMenu): """ Menu that manage the list of recent files. To use the menu, simply connect to the open_requested signal. """ #: Signal emitted when the user clicked on a recent file action. #: The parameter is the path of the file to open. open_requested = QtCore.Signal(str) clear_requested = QtCore.Signal() def __init__(self, parent, recent_files_manager=None, title='Recent files', icon_provider=None, clear_icon=None): """ :param parent: parent object :param icon_provider: Object that provides icon based on the file path. :type icon_provider: QtWidgets.QFileIconProvider :param clear_icon: Clear action icon. This parameter is a tuple made up of the icon theme name and the fallback icon path (from your resources). Default is None, clear action has no icons. """ super(MenuRecentFiles, self).__init__(title, parent) if icon_provider is None: self.icon_provider = QtWidgets.QFileIconProvider() else: self.icon_provider = icon_provider self.clear_icon = clear_icon #: Recent files manager self.manager = recent_files_manager #: List of recent files actions self.recent_files_actions = [] self.update_actions() def update_actions(self): """ Updates the list of actions. """ self.clear() self.recent_files_actions[:] = [] for file in self.manager.get_recent_files(): action = QtWidgets.QAction(self) action.setText(os.path.split(file)[1]) action.setToolTip(file) action.setStatusTip(file) action.setData(file) action.setIcon(self.icon_provider.icon(QtCore.QFileInfo(file))) action.triggered.connect(self._on_action_triggered) self.addAction(action) self.recent_files_actions.append(action) self.addSeparator() action_clear = QtWidgets.QAction(_('Clear list'), self) action_clear.triggered.connect(self.clear_recent_files) if isinstance(self.clear_icon, QtGui.QIcon): action_clear.setIcon(self.clear_icon) elif self.clear_icon: theme = '' if len(self.clear_icon) == 2: theme, path = self.clear_icon else: path = self.clear_icon icons.icon(theme, path, 'fa.times-circle') self.addAction(action_clear) def clear_recent_files(self): """ Clear recent files and menu. """ self.manager.clear() self.update_actions() self.clear_requested.emit() def _on_action_triggered(self): """ Emits open_requested when a recent file action has been triggered. """ action = self.sender() assert isinstance(action, QtWidgets.QAction) path = action.data() self.open_requested.emit(path) self.update_actions() Turing-0.11-beta/pyqode/core/widgets/outline.py000066400000000000000000000227141331472757200215650ustar00rootroot00000000000000""" This document contains the tree widget used to display the editor document outline. """ import weakref from pyqode.core import icons from pyqode.core.panels import FoldingPanel from pyqode.core.modes.outline import OutlineMode from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core.api import TextBlockHelper, TextBlockUserData, TextHelper class OutlineTreeWidget(QtWidgets.QTreeWidget): """ Displays the outline of a CodeEdit. To use this widget: 1. add an OutlineMode to CodeEdit 2. call set_editor with a CodeEdit instance to show it's outline. """ sync_with_editor_changed = QtCore.Signal(bool) @property def sync_with_editor(self): return self._sync_with_editor @sync_with_editor.setter def sync_with_editor(self, value): if value != self.sync_with_editor: self._sync_with_editor = value self._action_sync.setChecked(value) self.sync_with_editor_changed.emit(value) def __init__(self, parent=None): super(OutlineTreeWidget, self).__init__(parent) self._context_actions = [] self._definitions = None self._flattened_defs = None self._editor = None self._outline_mode = None self._folding_panel = None self._expanded_items = [] self.setHeaderHidden(True) self.itemClicked.connect(self._on_item_clicked) self.itemCollapsed.connect(self._on_item_state_changed) self.itemExpanded.connect(self._on_item_state_changed) self._updating = True self.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.customContextMenuRequested.connect(self._show_context_menu) self._sync_with_editor = True self._action_sync = QtWidgets.QAction( QtGui.QIcon.fromTheme('view-refresh'), _('Sync with editor'), None) self._action_sync.setCheckable(True) self._action_sync.setChecked(self._sync_with_editor) self._action_sync.toggled.connect(self._on_action_sync_toggled) self.add_context_action(self._action_sync) def set_editor(self, editor): """ Sets the current editor. The widget display the structure of that editor. :param editor: CodeEdit """ try: self._editor.cursorPositionChanged.disconnect(self.sync) except (AttributeError, TypeError, RuntimeError, ReferenceError): pass try: self._outline_mode.document_changed.disconnect( self._on_changed) except (AttributeError, TypeError, RuntimeError, ReferenceError): pass try: self._folding_panel.trigger_state_changed.disconnect( self._on_block_state_changed) except (AttributeError, TypeError, RuntimeError, ReferenceError): pass if editor: self._editor = weakref.proxy(editor) else: self._editor = None if editor is not None: editor.cursorPositionChanged.connect(self.sync) try: self._folding_panel = weakref.proxy( editor.panels.get(FoldingPanel)) except KeyError: pass else: self._folding_panel.trigger_state_changed.connect( self._on_block_state_changed) try: analyser = editor.modes.get(OutlineMode) except KeyError: self._outline_mode = None else: self._outline_mode = weakref.proxy(analyser) analyser.document_changed.connect(self._on_changed) self._on_changed() def _on_item_state_changed(self, item): if self._updating: return block = item.data(0, QtCore.Qt.UserRole).block assert isinstance(item, QtWidgets.QTreeWidgetItem) item_state = not item.isExpanded() block_state = TextBlockHelper.is_collapsed(block) if item_state != block_state: self._updating = True self._folding_panel.toggle_fold_trigger(block) self._updating = False def _on_block_state_changed(self, block, state): if self._updating: return data = block.userData() if data is not None: try: item_state = not data.tree_item.isExpanded() if item_state != state: if state: self.collapseItem(data.tree_item) else: self.expandItem(data.tree_item) except AttributeError: # a block that is not represented in the tree view has # folded/unfolded, just ignore it pass def _on_changed(self): """ Update the tree items """ self._updating = True to_collapse = [] self.clear() if self._editor and self._outline_mode and self._folding_panel: items, to_collapse = self.to_tree_widget_items( self._outline_mode.definitions, to_collapse=to_collapse) if len(items): self.addTopLevelItems(items) self.expandAll() for item in reversed(to_collapse): self.collapseItem(item) self._updating = False return # no data root = QtWidgets.QTreeWidgetItem() root.setText(0, _('No data')) root.setIcon(0, icons.icon( 'dialog-information', ':/pyqode-icons/rc/dialog-info.png', 'fa.info-circle')) self.addTopLevelItem(root) self._updating = False self.sync() def _on_item_clicked(self, item): """ Go to the item position in the editor. """ if item: name = item.data(0, QtCore.Qt.UserRole) if name: go = name.block.blockNumber() helper = TextHelper(self._editor) if helper.current_line_nbr() != go: helper.goto_line(go, column=name.column) self._editor.setFocus() def to_tree_widget_items(self, definitions, to_collapse=None): """ Converts the list of top level definitions to a list of top level tree items. """ def flatten(definitions): """ Flattens the document structure tree as a simple sequential list. """ ret_val = [] for de in definitions: ret_val.append(de) for sub_d in de.children: ret_val.append(sub_d) ret_val += flatten(sub_d.children) return ret_val def convert(name, editor, to_collapse): ti = QtWidgets.QTreeWidgetItem() ti.setText(0, name.name) if isinstance(name.icon, list): icon = QtGui.QIcon.fromTheme( name.icon[0], QtGui.QIcon(name.icon[1])) else: icon = QtGui.QIcon(name.icon) ti.setIcon(0, icon) name.block = editor.document().findBlockByNumber(name.line) ti.setData(0, QtCore.Qt.UserRole, name) ti.setToolTip(0, name.description) name.tree_item = ti block_data = name.block.userData() if block_data is None: block_data = TextBlockUserData() name.block.setUserData(block_data) block_data.tree_item = ti if to_collapse is not None and \ TextBlockHelper.is_collapsed(name.block): to_collapse.append(ti) for ch in name.children: ti_ch, to_collapse = convert(ch, editor, to_collapse) if ti_ch: ti.addChild(ti_ch) return ti, to_collapse self._definitions = definitions self._flattened_defs = flatten(self._definitions) items = [] for d in definitions: value, to_collapse = convert(d, self._editor, to_collapse) items.append(value) if to_collapse is not None: return items, to_collapse return items def sync(self): if not self.sync_with_editor or self._editor is None or \ not self._definitions: return to_select = None previous = None current_line = TextHelper(self._editor).current_line_nbr() for d in self._flattened_defs: if d.line == current_line: to_select = d.tree_item elif d.line > current_line: to_select = d.tree_item if previous is not None: to_select = previous.tree_item previous = d if to_select is not None: break else: if previous: to_select = previous.tree_item if to_select: try: self.setCurrentItem(to_select) except RuntimeError: # RuntimeError: wrapped C/C++ object of type QTreeWidgetItem # has been deleted pass def add_context_action(self, action): self._context_actions.append(action) def _show_context_menu(self, pos): mnu = QtWidgets.QMenu(self) for action in self._context_actions: mnu.addAction(action) mnu.exec_(self.mapToGlobal(pos)) def _on_action_sync_toggled(self, value): self.sync_with_editor = value if value: self.sync() Turing-0.11-beta/pyqode/core/widgets/output_window.py000066400000000000000000001570041331472757200230360ustar00rootroot00000000000000""" This module contains the output window widget that can be used to visually run a child process in a PyQt application. The widget supports most ANSI Escape Sequences (colors, cursor positioning,...) and can be used to create a rudimentary terminal emulator (such a widget is available in the terminal module). """ import logging import os import re import sys import string from collections import namedtuple from pyqode.core.api import CodeEdit, SyntaxHighlighter, TextHelper from pyqode.core.api.client import PROCESS_ERROR_STRING from pyqode.core.backend import server from pyqode.qt import QtWidgets, QtGui, QtCore from pyqode.qt.QtGui import QColor from pyqode.qt.QtWidgets import qApp from . import pty_wrapper # ---------------------------------------------------------------------------------------------------------------------- # Widget # ---------------------------------------------------------------------------------------------------------------------- class OutputWindow(CodeEdit): """ Widget that runs a child process and print its output in a text area. This widget can be used to show the output of a process in a Qt application (i.e. the run output of an IDE) or it could be used to implement a terminal emulator. While the parser supports most common Ansi Escape Codes, it does not aim to support all VT100 features. User inputs are handled by an InputHandler, there are two types of input handlers: - ImmediateInputHandler: forward ansi code of each key strokes directly to the child process's stdin. Use this for an interactive process such as bash or python. - BufferedInputHandler: bufferize user inputs until user pressed enter. Use this for any other kind of process. Usage: - create an OutputWindow instance (you can specify a color scheme and an input handler). - call start_process to actually start your child process. """ # # Public API # #: Define the color_scheme of the output window. ColorScheme = namedtuple('ColorScheme', 'background foreground error custom red green yellow blue magenta cyan') #: Default theme using QPalette colors, must be initialised by a call to ``_init_default_scheme`` DefaultColorScheme = None #: Linux color scheme (black background with ANSI colors) LinuxColorScheme = None #: Tango theme (black background with pastel colors). TangoColorScheme = None #: The famous Solarized dark theme. SolarizedColorScheme = None #: Signal emitted when the user pressed on a file link. #: Client code should open the requested file in the editor. #: Parameters: #: - path (str) #: - line number (int, 0 based) open_file_requested = QtCore.Signal(str, int) process_finished = QtCore.Signal() @property def process(self): """ Returns a reference to the child process being run (QProcess) """ return self._process @property def is_running(self): """ Checks if the child process is running (or is starting). """ return self._process.state() in [self._process.Running, self._process.Starting] @property def color_scheme(self): """ Gets/Sets the color scheme """ return self._formatter.theme @color_scheme.setter def color_scheme(self, scheme): self._formatter.color_scheme = scheme self.background = scheme.background self.foreground = scheme.foreground self._reset_stylesheet() @property def input_handler(self): """ Gets/Sets an input handler (see :class:`InputHandler). """ return self._input_handler @input_handler.setter def input_handler(self, handler): self._input_handler = handler self._input_handler.edit = self self._input_handler.process = self._process def __init__(self, parent=None, color_scheme=None, formatter=None, input_handler=None, backend=server.__file__, link_regex=re.compile(r'("|\')(?P(/|[a-zA-Z]:\\)[\w/\s\\\.\-]*)("|\')(, line (?P\d*))?')): """ :param parent: parent widget, if any :param color_scheme: color scheme to use :param formatter: The formatter to use to draw the process output. Use our builtin formatter by default. :param input_handler: the user input handler, buffered by default. :param backend: backend script used for searching in the process output. :param link_regex: Regex used to match file links, default regex was made to match file path of python tracebacks. You can specify another regex if needed, the only requirements is that the regex must have two named capture groups: 'url' and 'line' """ super(OutputWindow, self).__init__(parent) if formatter is None: formatter = OutputFormatter(self, color_scheme=color_scheme) if input_handler is None: input_handler = BufferedInputHandler() self.link_regex = link_regex self._link_match = None self._formatter = formatter self._init_code_edit(backend) self._process = QtCore.QProcess() self._process.readyReadStandardOutput.connect(self._read_stdout) self._process.readyReadStandardError.connect(self._read_stderr) self._process.error.connect(self._on_process_error) self._process.finished.connect(self._on_process_finished) self._input_handler = input_handler self._input_handler.edit = self self._input_handler.process = self._process self._last_hovered_block = None self.flg_use_pty = False def start_process(self, program, arguments=None, working_dir=None, print_command=True, use_pseudo_terminal=True, env=None): """ Starts the child process. :param program: program to start :param arguments: list of program arguments :param working_dir: working directory of the child process :param print_command: True to print the full command (pgm + arguments) as the first line of the output window :param use_pseudo_terminal: True to use a pseudo terminal on Unix (pty), False to avoid using a pty wrapper. When using a pty wrapper, both stdout and stderr are merged together. :param environ: environment variables to set on the child process. If None, os.environ will be used. """ # clear previous output self.clear() self.setReadOnly(False) if arguments is None: arguments = [] if sys.platform != 'win32' and use_pseudo_terminal: pgm = sys.executable args = [pty_wrapper.__file__, program] + arguments self.flg_use_pty = use_pseudo_terminal else: pgm = program args = arguments self.flg_use_pty = False # pty not available on windows self._process.setProcessEnvironment(self._setup_process_environment(env)) if working_dir: self._process.setWorkingDirectory(working_dir) if print_command: self._formatter.append_message('\x1b[0m%s %s\n' % (program, ' '.join(arguments)), output_format=OutputFormat.CustomFormat) self._process.start(pgm, args) def stop_process(self): """ Stops the child process. """ self._process.terminate() if not self._process.waitForFinished(100): self._process.kill() def paste(self): """ Paste the content of the clipboard to the child process'stdtin. """ self.input_handler.paste(QtWidgets.qApp.clipboard().text()) @staticmethod def create_color_scheme(background=None, foreground=None, error=None, custom=None, red=None, green=None, yellow=None, blue=None, magenta=None, cyan=None): """ Utility function that creates a color scheme instance, with default values. The default colors are chosen based on the current palette. :param background: background color :param foreground: foreground color :param error: color of error messages (stderr) :param custom: color of custom messages (e.g. to print the full command or the process exit code) :param red: value of the red ANSI color :param green: value of the green ANSI color :param yellow: value of the yellow ANSI color :param blue: value of the blue ANSI color :param magenta: value of the magenta ANSI color :param cyan: value of the cyan ANSI color :return: A ColorScheme instance. """ if background is None: background = qApp.palette().base().color() if foreground is None: foreground = qApp.palette().text().color() is_light = background.lightness() >= 128 if error is None: if is_light: error = QColor('dark red') else: error = QColor('#FF5555') if red is None: red = QColor(error) if green is None: if is_light: green = QColor('dark green') else: green = QColor('#55FF55') if yellow is None: if is_light: yellow = QColor('#aaaa00') else: yellow = QColor('#FFFF55') if blue is None: if is_light: blue = QColor('dark blue') else: blue = QColor('#5555FF') if magenta is None: if is_light: magenta = QColor('dark magenta') else: magenta = QColor('#FF55FF') if cyan is None: if is_light: cyan = QColor('dark cyan') else: cyan = QColor('#55FFFF') if custom is None: custom = QColor('orange') return OutputWindow.ColorScheme(background, foreground, error, custom, red, green, yellow, blue, magenta, cyan) # # Overriden Qt Methods # def setReadOnly(self, value): QtWidgets.QPlainTextEdit.setReadOnly(self, value) def closeEvent(self, event): """ Terminates the child process on close. """ self.stop_process() self.backend.stop() try: self.modes.remove('_LinkHighlighter') except KeyError: pass # already removed super(OutputWindow, self).closeEvent(event) def keyPressEvent(self, event): """ Handle key press event using the defined input handler. """ if self._process.state() != self._process.Running: return tc = self.textCursor() sel_start = tc.selectionStart() sel_end = tc.selectionEnd() tc.setPosition(self._formatter._last_cursor_pos) self.setTextCursor(tc) if self.input_handler.key_press_event(event): tc.setPosition(sel_start) tc.setPosition(sel_end, tc.KeepAnchor) self.setTextCursor(tc) super(OutputWindow, self).keyPressEvent(event) self._formatter._last_cursor_pos = self.textCursor().position() def mouseMoveEvent(self, event): """ Handle mouse over file link. """ c = self.cursorForPosition(event.pos()) block = c.block() self._link_match = None self.viewport().setCursor(QtCore.Qt.IBeamCursor) for match in self.link_regex.finditer(block.text()): if not match: continue start, end = match.span() if start <= c.positionInBlock() <= end: self._link_match = match self.viewport().setCursor(QtCore.Qt.PointingHandCursor) break self._last_hovered_block = block super(OutputWindow, self).mouseMoveEvent(event) def mousePressEvent(self, event): """ Handle file link clicks. """ super(OutputWindow, self).mousePressEvent(event) if self._link_match: path = self._link_match.group('url') line = self._link_match.group('line') if line is not None: line = int(line) - 1 else: line = 0 self.open_file_requested.emit(path, line) def eventFilter(self, *args): return False # # Utility methods # def _init_code_edit(self, backend): """ Initializes the code editor (setup modes, panels and colors). """ from pyqode.core import panels, modes self.modes.append(_LinkHighlighter(self.document())) self.background = self._formatter.color_scheme.background self.foreground = self._formatter.color_scheme.foreground self._reset_stylesheet() self.setCenterOnScroll(False) self.setMouseTracking(True) self.setUndoRedoEnabled(False) search_panel = panels.SearchAndReplacePanel() self.panels.append(search_panel, search_panel.Position.TOP) self.action_copy.setShortcut('Ctrl+Shift+C') self.action_paste.setShortcut('Ctrl+Shift+V') self.remove_action(self.action_undo, sub_menu=None) self.remove_action(self.action_redo, sub_menu=None) self.remove_action(self.action_cut, sub_menu=None) self.remove_action(self.action_duplicate_line, sub_menu=None) self.remove_action(self.action_indent) self.remove_action(self.action_un_indent) self.remove_action(self.action_goto_line) self.remove_action(search_panel.menu.menuAction()) self.remove_menu(self._sub_menus['Advanced']) self.add_action(search_panel.actionSearch, sub_menu=None) self.modes.append(modes.ZoomMode()) self.backend.start(backend) def _setup_process_environment(self, env): """ Sets up the process environment. """ environ = self._process.processEnvironment() if env is None: env = {} for k, v in os.environ.items(): environ.insert(k, v) for k, v in env.items(): environ.insert(k, v) if sys.platform != 'win32': environ.insert('TERM', 'xterm') environ.insert('LINES', '24') environ.insert('COLUMNS', '450') environ.insert('PYTHONUNBUFFERED', '1') environ.insert('QT_LOGGING_TO_CONSOLE', '1') return environ def _on_process_error(self, error): """ Display child process error in the text edit. """ if self is None: return err = PROCESS_ERROR_STRING[error] self._formatter.append_message(err + '\r\n', output_format=OutputFormat.ErrorMessageFormat) def _on_process_finished(self): """ Write the process finished message and emit the `finished` signal. """ exit_code = self._process.exitCode() if self._process.exitStatus() != self._process.NormalExit: exit_code = 139 self._formatter.append_message('\x1b[0m\nProcess finished with exit code %d' % exit_code, output_format=OutputFormat.CustomFormat) self.setReadOnly(True) self.process_finished.emit() def _decode(self, data): for encoding in ['utf-8', 'cp850', 'cp1252', 'ascii']: try: string = data.decode(encoding) except UnicodeDecodeError: _logger().debug('failed to decode output with encoding=%r', encoding) continue else: _logger().debug('decoding output with encoding=%r succeeded', encoding) return string return str(data).replace("b'", '')[:-1].replace('\\r', '\r').replace('\\n', '\n').replace('\\\\', '\\') def _read_stdout(self): """ Reads the child process' stdout and process it. """ output = self._decode(self._process.readAllStandardOutput().data()) if self._formatter: self._formatter.append_message(output, output_format=OutputFormat.NormalMessageFormat) else: self.insertPlainText(output) def _read_stderr(self): """ Reads the child process' stderr and process it. """ output = self._decode(self._process.readAllStandardError().data()) if self._formatter: self._formatter.append_message(output, output_format=OutputFormat.ErrorMessageFormat) else: self.insertPlainText(output) class _LinkHighlighter(SyntaxHighlighter): """ Highlights links using OutputWindow.link_regex. """ def highlight_block(self, text, block): for match in self.editor.link_regex.finditer(text): if match: start, end = match.span('url') fmt = QtGui.QTextCharFormat() fmt.setForeground(QtWidgets.qApp.palette().highlight().color()) fmt.setUnderlineStyle(fmt.SingleUnderline) self.setFormat(start, end - start, fmt) # ---------------------------------------------------------------------------------------------------------------------- # Parser # ---------------------------------------------------------------------------------------------------------------------- #: Represents a formatted text: a string + a QtGui.QTextCharFormat FormattedText = namedtuple('FormattedText', 'txt fmt') #: Generic structure for representing a terminal operation (draw, move cursor,...). Operation = namedtuple('Operation', 'command data') class AnsiEscapeCodeParser(object): """ The AnsiEscapeCodeParser class parses text and extracts ANSI escape codes from it. In order to preserve color information across text segments, an instance of this class must be stored for the lifetime of a stream. Also, one instance of this class should not handle multiple streams (at least not at the same time). Its main function is parse_text(), which accepts text and default QTextCharFormat. This function is designed to parse text and split colored text to smaller strings, with their appropriate formatting information set inside QTextCharFormat. Compared to the QtCreator implementation, we added limited support for terminal emulation (changing cursor position, erasing display/line,...). Usage: - Create new instance of AnsiEscapeCodeParser for a stream. - To add new text, call parse_text() with the text and a default QTextCharFormat. The result of this function is a list of Operation with their associated data. """ _ResetFormat = 0 _BoldText = 1 _ItalicText = 3 _UnderlinedText = 4 _NotBold = 21 _NotItalicNotFraktur = 23 _NotUnderlined = 24 _Negative = 7 _Positive = 27 _TextColorStart = 30 _TextColorEnd = 37 _RgbTextColor = 38 _DefaultTextColor = 39 _BackgroundColorStart = 40 _BackgroundColorEnd = 47 _RgbBackgroundColor = 48 _DefaultBackgroundColor = 49 _Dim = 2 _escape = "\x1b[" _escape_alts = ["\x1b(", "\x1b)", '\x1b=', '\x1b]', '\x08', '\x07'] _escape_len = len(_escape) _semicolon = ';' _color_terminator = 'm' _supported_commands = re.compile(r'^(?P\d*;?\d*)(?P[ABCDEFGHJKfP]{1})') _unsupported_command = re.compile(r'^(\?\d+h)|^(\??\d+l)|^(\d+d)|^(\d+X)|^(\([AB01])|' r'^(\)[AB01])|^(\d*;?\d*r)|^(=)|^(>)|^(\d;.*\x07)') _commands = { 'A': 'cursor_up', 'B': 'cursor_down', 'C': 'cursor_forward', 'D': 'cursor_back', 'E': 'cursor_next_line', 'F': 'cursor_previous_lined', 'G': 'cursor_horizontal_absolute', 'H': 'cursor_position', 'J': 'erase_display', 'K': 'erase_in_line', 'f': 'cursor_position', # same as H 'P': 'delete_chars' } DIM_FACTOR = 120 def __init__(self): fmt = QtGui.QTextCharFormat() fmt.setForeground(QtWidgets.qApp.palette().text().color()) fmt.setBackground(QtWidgets.qApp.palette().base().color()) FormattedText.__new__.__defaults__ = '', fmt self._prev_fmt_closed = True self._prev_fmt = fmt self._pending_text = '' self.color_scheme = None def parse_text(self, formatted_text): """ Retursn a list of operations (draw, cup, ed,...). Each operation consist of a command and its associated data. :param formatted_text: text to parse with the default char format to apply. :return: list of Operation """ assert isinstance(formatted_text, FormattedText) ret_val = [] fmt = formatted_text.fmt if self._prev_fmt_closed else self._prev_fmt fmt = QtGui.QTextCharFormat(fmt) if not self._pending_text: stripped_text = formatted_text.txt else: stripped_text = self._pending_text + formatted_text.txt self._pending_text = '' while stripped_text: try: escape_pos = stripped_text.index(self._escape[0]) except ValueError: ret_val.append(Operation('draw', FormattedText(stripped_text, fmt))) break else: if escape_pos != 0: ret_val.append(Operation('draw', FormattedText(stripped_text[:escape_pos], fmt))) stripped_text = stripped_text[escape_pos:] fmt = QtGui.QTextCharFormat(fmt) assert stripped_text[0] == self._escape[0] while stripped_text and stripped_text[0] == self._escape[0]: if self._escape.startswith(stripped_text): # control sequence not complete self._pending_text += stripped_text stripped_text = '' break if not stripped_text.startswith(self._escape): # check vt100 escape sequences ctrl_seq = False for alt_seq in self._escape_alts: if stripped_text.startswith(alt_seq): ctrl_seq = True break if not ctrl_seq: # not a control sequence self._pending_text = '' ret_val.append(Operation('draw', FormattedText(stripped_text[:1], fmt))) fmt = QtGui.QTextCharFormat(fmt) stripped_text = stripped_text[1:] continue self._pending_text += _mid(stripped_text, 0, self._escape_len) stripped_text = stripped_text[self._escape_len:] # Non draw related command (cursor/erase) if self._pending_text in [self._escape] + self._escape_alts: m = self._supported_commands.match(stripped_text) if m and self._pending_text == self._escape: _, e = m.span() n = m.group('n') cmd = m.group('cmd') if not n: n = 0 ret_val.append(Operation(self._commands[cmd], n)) self._pending_text = '' stripped_text = stripped_text[e:] continue else: m = self._unsupported_command.match(stripped_text) if m: self._pending_text = '' stripped_text = stripped_text[m.span()[1]:] continue elif self._pending_text in ['\x1b=', '\x1b>']: self._pending_text = '' continue # Handle Select Graphic Rendition commands # get the number str_nbr = '' numbers = [] while stripped_text: if stripped_text[0].isdigit(): str_nbr += stripped_text[0] else: if str_nbr: numbers.append(str_nbr) if not str_nbr or stripped_text[0] != self._semicolon: break str_nbr = '' self._pending_text += _mid(stripped_text, 0, 1) stripped_text = stripped_text[1:] if not stripped_text: break # remove terminating char if not stripped_text.startswith(self._color_terminator): # _logger().warn('removing %s', repr(self._pending_text + stripped_text[0])) self._pending_text = '' stripped_text = stripped_text[1:] break # got consistent control sequence, ok to clear pending text self._pending_text = '' stripped_text = stripped_text[1:] if not numbers: fmt = QtGui.QTextCharFormat(formatted_text.fmt) self.end_format_scope() i_offset = 0 n = len(numbers) for i in range(n): i += i_offset code = int(numbers[i]) if self._TextColorStart <= code <= self._TextColorEnd: fmt.setForeground(_ansi_color(code - self._TextColorStart, self.color_scheme)) self._set_format_scope(fmt) elif self._BackgroundColorStart <= code <= self._BackgroundColorEnd: fmt.setBackground(_ansi_color(code - self._BackgroundColorStart, self.color_scheme)) self._set_format_scope(fmt) else: if code == self._ResetFormat: fmt = QtGui.QTextCharFormat(formatted_text.fmt) self.end_format_scope() elif code == self._BoldText: fmt.setFontWeight(QtGui.QFont.Bold) self._set_format_scope(fmt) elif code == self._NotBold: fmt.setFontWeight(QtGui.QFont.Normal) self._set_format_scope(fmt) elif code == self._ItalicText: fmt.setFontItalic(True) self._set_format_scope(fmt) elif code == self._NotItalicNotFraktur: fmt.setFontItalic(False) self._set_format_scope(fmt) elif code == self._UnderlinedText: fmt.setUnderlineStyle(fmt.SingleUnderline) fmt.setUnderlineColor(fmt.foreground().color()) self._set_format_scope(fmt) elif code == self._NotUnderlined: fmt.setUnderlineStyle(fmt.NoUnderline) self._set_format_scope(fmt) elif code == self._DefaultTextColor: fmt.setForeground(formatted_text.fmt.foreground()) self._set_format_scope(fmt) elif code == self._DefaultBackgroundColor: fmt.setBackground(formatted_text.fmt.background()) self._set_format_scope(fmt) elif code == self._Dim: fmt = QtGui.QTextCharFormat(fmt) fmt.setForeground(fmt.foreground().color().darker(self.DIM_FACTOR)) elif code == self._Negative: normal_fmt = fmt fmt = QtGui.QTextCharFormat(fmt) fmt.setForeground(normal_fmt.background()) fmt.setBackground(normal_fmt.foreground()) elif code == self._Positive: fmt = QtGui.QTextCharFormat(formatted_text.fmt) elif code in [self._RgbBackgroundColor, self._RgbTextColor]: # See http://en.wikipedia.org/wiki/ANSI_escape_code#Colors i += 1 if i == n: break next_code = int(numbers[i]) if next_code == 2: # RGB set with format: 38;2;;; if i + 3 < n: method = fmt.setForeground if code == self._RgbTextColor else fmt.setBackground method(QtGui.QColor(int(numbers[i + 1]), int(numbers[i + 2]), int(numbers[i + 3]))) self._set_format_scope(fmt) i_offset = 3 elif next_code == 5: # 256 color mode with format: 38;5; index = int(numbers[i + 1]) if index < 8: # The first 8 colors are standard low-intensity ANSI colors. color = _ansi_color(index, self.color_scheme) elif index < 16: # The next 8 colors are standard high-intensity ANSI colors. color = _ansi_color(index - 8, self.color_scheme).lighter(150) elif index < 232: # The next 216 colors are a 6x6x6 RGB cube. o = index - 16 color = QtGui.QColor((o / 36) * 51, ((o / 6) % 6) * 51, (o % 6) * 51) else: # The last 24 colors are a greyscale gradient. grey = (index - 232) * 11 color = QtGui.QColor(grey, grey, grey) if code == self._RgbTextColor: fmt.setForeground(color) else: fmt.setBackground(color) self._set_format_scope(fmt) else: _logger().warn('unsupported SGR code: %r', code) return ret_val def end_format_scope(self): """ Close the format scope """ self._prev_fmt_closed = True def _set_format_scope(self, fmt): """ Opens the format scope. """ self._prev_fmt = QtGui.QTextCharFormat(fmt) self._prev_fmt_closed = False def _mid(string, start, end=None): """ Returns a substring delimited by start and end position. """ if end is None: end = len(string) return string[start:start + end] def _ansi_color(code, theme): """ Converts an ansi code to a QColor, taking the color scheme (theme) into account. """ red = 170 if code & 1 else 0 green = 170 if code & 2 else 0 blue = 170 if code & 4 else 0 color = QtGui.QColor(red, green, blue) if theme is not None: mappings = { '#aa0000': theme.red, '#00aa00': theme.green, '#aaaa00': theme.yellow, '#0000aa': theme.blue, '#aa00aa': theme.magenta, '#00aaaa': theme.cyan, '#000000': theme.background, "#ffffff": theme.foreground } try: return mappings[color.name()] except KeyError: pass return color # ---------------------------------------------------------------------------------------------------------------------- # Input handlers # ---------------------------------------------------------------------------------------------------------------------- class InputHandler(object): """ Base class for handling user inputs """ def __init__(self): # references set by the outout window instance that owns the handler. self.edit = None self.process = None class ImmediateInputHandler(InputHandler): """ Write ascii key code immediately to the process' stdin. """ def key_press_event(self, event): """ Directly writes the ascii code of the key to the process' stdin. :retuns: False to prevent the event from being propagated to the parent widget. """ if event.key() == QtCore.Qt.Key_Return: cursor = self.edit.textCursor() cursor.movePosition(cursor.EndOfBlock) self.edit.setTextCursor(cursor) code = _qkey_to_ascii(event) if code: self.process.writeData(code) return False return True def paste(self, text): self.process.write(text.encode()) def _qkey_to_ascii(event): """ (Try to) convert the Qt key event to the corresponding ASCII sequence for the terminal. This works fine for standard alphanumerical characters, but most other characters require terminal specific control_modifier sequences. The conversion below works for TERM="linux' terminals. """ if sys.platform == 'darwin': control_modifier = QtCore.Qt.MetaModifier else: control_modifier = QtCore.Qt.ControlModifier ctrl = int(event.modifiers() & control_modifier) != 0 if ctrl: if event.key() == QtCore.Qt.Key_P: return b'\x10' elif event.key() == QtCore.Qt.Key_N: return b'\x0E' elif event.key() == QtCore.Qt.Key_C: return b'\x03' elif event.key() == QtCore.Qt.Key_L: return b'\x0C' elif event.key() == QtCore.Qt.Key_B: return b'\x02' elif event.key() == QtCore.Qt.Key_F: return b'\x06' elif event.key() == QtCore.Qt.Key_D: return b'\x04' elif event.key() == QtCore.Qt.Key_O: return b'\x0F' elif event.key() == QtCore.Qt.Key_V: return QtWidgets.qApp.clipboard().text().encode('utf-8') else: return None else: if event.key() == QtCore.Qt.Key_Return: return '\n'.encode('utf-8') elif event.key() == QtCore.Qt.Key_Enter: return '\n'.encode('utf-8') elif event.key() == QtCore.Qt.Key_Tab: return '\t'.encode('utf-8') elif event.key() == QtCore.Qt.Key_Backspace: return b'\x08' elif event.key() == QtCore.Qt.Key_Delete: return b'\x06\x08' elif event.key() == QtCore.Qt.Key_Enter: return '\n'.encode('utf-8') elif event.key() == QtCore.Qt.Key_Home: return b'\x1b[H' elif event.key() == QtCore.Qt.Key_End: return b'\x1b[F' elif event.key() == QtCore.Qt.Key_Left: return b'\x02' elif event.key() == QtCore.Qt.Key_Up: return b'\x10' elif event.key() == QtCore.Qt.Key_Right: return b'\x06' elif event.key() == QtCore.Qt.Key_Down: return b'\x0E' elif event.key() == QtCore.Qt.Key_PageUp: return b'\x49' elif event.key() == QtCore.Qt.Key_PageDown: return b'\x51' elif event.key() == QtCore.Qt.Key_F1: return b'\x1b\x31' elif event.key() == QtCore.Qt.Key_F2: return b'\x1b\x32' elif event.key() == QtCore.Qt.Key_F3: return b'\x00\x3b' elif event.key() == QtCore.Qt.Key_F4: return b'\x1b\x34' elif event.key() == QtCore.Qt.Key_F5: return b'\x1b\x35' elif event.key() == QtCore.Qt.Key_F6: return b'\x1b\x36' elif event.key() == QtCore.Qt.Key_F7: return b'\x1b\x37' elif event.key() == QtCore.Qt.Key_F8: return b'\x1b\x38' elif event.key() == QtCore.Qt.Key_F9: return b'\x1b\x39' elif event.key() == QtCore.Qt.Key_F10: return b'\x1b\x30' elif event.key() == QtCore.Qt.Key_F11: return b'\x45' elif event.key() == QtCore.Qt.Key_F12: return b'\x46' elif event.text() in ('abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' '[],=-.;/`&^~*@|#(){}$><%+?"_!' "'\\ :"): return event.text().encode('utf8') else: return None class CommandHistory(object): """ A very basic history of commands. Use add_command when user press RETURN, use scroll_up/scroll_down to scroll the history. """ def __init__(self): self._history = [] self._index = -1 def add_command(self, command): """ Adds a command to the history and reset history index. """ try: self._history.remove(command) except ValueError: pass self._history.insert(0, command) self._index = -1 def scroll_up(self): """ Returns the previous command, if any. """ self._index += 1 nb_commands = len(self._history) if self._index >= nb_commands: self._index = nb_commands - 1 try: return self._history[self._index] except IndexError: return '' def scroll_down(self): """ Returns the next command if any. """ self._index -= 1 if self._index < 0: self._index = -1 return '' try: return self._history[self._index] except IndexError: return '' class BufferedInputHandler(InputHandler): """ Bufferise user inputs until user press RETURN. Use :class:`CommandHistory` to manage the history of commands/inputs. """ def __init__(self): super(BufferedInputHandler, self).__init__() self._history = CommandHistory() def _insert_command(self, command): """ Insert command by replacing the current input buffer and display it on the text edit. """ self._clear_user_buffer() tc = self.edit.textCursor() tc.insertText(command) self.edit.setTextCursor(tc) def _clear_user_buffer(self): tc = self.edit.textCursor() for _ in self._get_input_buffer(): tc.deletePreviousChar() self.edit.setTextCursor(tc) def is_code_completion_popup_visible(self): try: mode = self.edit.modes.get('CodeCompletionMode') except KeyError: pass else: return mode._completer.popup().isVisible() def key_press_event(self, event): """ Manages our own buffer and send it to the subprocess when user pressed RETURN. """ input_buffer = self._get_input_buffer() ctrl = int(event.modifiers() & QtCore.Qt.ControlModifier) != 0 shift = int(event.modifiers() & QtCore.Qt.ShiftModifier) != 0 delete = event.key() in [QtCore.Qt.Key_Backspace, QtCore.Qt.Key_Delete] ignore = False if delete and not input_buffer and not shift: return False if ctrl: if shift and event.key() == QtCore.Qt.Key_V: self.edit.insertPlainText(QtWidgets.qApp.clipboard().text()) return False elif event.key() == QtCore.Qt.Key_L: self.edit.clear() if sys.platform == 'win32': self.process.write(b'\r') self.process.write(b'\n') return False if (shift or ctrl) and event.key() == QtCore.Qt.Key_Backspace: if input_buffer.strip() != '': return True self._clear_user_buffer() return False if event.key() == QtCore.Qt.Key_Up: if self.is_code_completion_popup_visible(): return True self._insert_command(self._history.scroll_up()) return False if event.key() == QtCore.Qt.Key_Left: return bool(input_buffer) if event.key() == QtCore.Qt.Key_Down: if self.is_code_completion_popup_visible(): return True self._insert_command(self._history.scroll_down()) return False if event.key() == QtCore.Qt.Key_Home: tc = self.edit.textCursor() tc.movePosition(tc.StartOfBlock) tc.movePosition(tc.Right, tc.MoveAnchor, self.edit._formatter._prefix_len) self.edit.setTextCursor(tc) return False if event.key() == QtCore.Qt.Key_End: tc = self.edit.textCursor() tc.movePosition(tc.EndOfBlock) self.edit.setTextCursor(tc) self._cursor_pos = len(self._get_input_buffer()) return False if event.key() in [QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter]: if self.is_code_completion_popup_visible(): return True tc = self.edit.textCursor() tc.movePosition(tc.EndOfBlock) self.edit.setTextCursor(tc) # send the user input to the child process if self.edit.flg_use_pty or 'cmd.exe' in self.process.program(): # remove user buffer from text edit, the content of the buffer will be # drawn as soon as we write it to the process stdin tc = self.edit.textCursor() for _ in input_buffer: tc.deletePreviousChar() self.edit.setTextCursor(tc) self._history.add_command(input_buffer) if sys.platform == 'win32': input_buffer += "\r" input_buffer += "\n" self.process.write(input_buffer.encode()) if self.edit.flg_use_pty or 'cmd.exe' in self.process.program(): ignore = True return not ignore def _get_input_buffer(self): current_line = TextHelper(self.edit).current_line_text() return current_line[self.edit._formatter._prefix_len:] # ---------------------------------------------------------------------------------------------------------------------- # Formatter # ---------------------------------------------------------------------------------------------------------------------- class OutputFormat: """ Enumerates the possible output formats. """ #: format used to display normal messages NormalMessageFormat = 0 #: format used to display normal messages ErrorMessageFormat = 1 #: format used to display custom messages CustomFormat = 2 class OutputFormatter(object): """ Perform formatting (draw text, move cursor,...). """ @property def color_scheme(self): """ Gets/Sets the formatter color scheme """ return self._color_scheme @color_scheme.setter def color_scheme(self, new_theme): self._color_scheme = new_theme self._init_formats() self._parser.color_scheme = new_theme def __init__(self, text_edit, color_scheme=None): if text_edit is None: raise ValueError('text_edit parameter cannot be None') self._last_cursor_pos = 0 self._text_edit = text_edit self._parser = AnsiEscapeCodeParser() self._cursor = text_edit.textCursor() self._formats = {} self._overwrite_output = False _init_default_scheme() self._color_scheme = color_scheme if self._color_scheme is None: self._color_scheme = OutputWindow.DefaultColorScheme self._init_formats() self._parser.color_scheme = self._color_scheme self.flg_bash = False def append_message(self, text, output_format=OutputFormat.NormalMessageFormat): """ Parses and append message to the text edit. """ self._append_message(text, self._formats[output_format]) def flush(self): """ Flush intermediary resutls: close the format scope. """ self._parser.end_format_scope() # Utility methods def _append_message(self, text, char_format): """ Parses text and executes parsed operations. """ self._cursor = self._text_edit.textCursor() operations = self._parser.parse_text(FormattedText(text, char_format)) for i, operation in enumerate(operations): try: func = getattr(self, '_%s' % operation.command) except AttributeError: print('command not implemented: %r - %r' % ( operation.command, operation.data)) else: try: func(operation.data) except Exception: _logger().exception('exception while running %r', operation) # uncomment next line for debugging commands self._text_edit.repaint() def _init_formats(self): """ Initialise default formats. """ theme = self._color_scheme # normal message format fmt = QtGui.QTextCharFormat() fmt.setForeground(theme.foreground) fmt.setBackground(theme.background) self._formats[OutputFormat.NormalMessageFormat] = fmt # error message fmt = QtGui.QTextCharFormat() fmt.setForeground(theme.error) fmt.setBackground(theme.background) self._formats[OutputFormat.ErrorMessageFormat] = fmt # debug message fmt = QtGui.QTextCharFormat() fmt.setForeground(theme.custom) fmt.setBackground(theme.background) self._formats[OutputFormat.CustomFormat] = fmt # Commands implementation def _draw(self, data): """ Draw text """ self._cursor.clearSelection() self._cursor.setPosition(self._last_cursor_pos) if '\x07' in data.txt: print('\a') txt = data.txt.replace('\x07', '') if '\x08' in txt: parts = txt.split('\x08') else: parts = [txt] for i, part in enumerate(parts): if part: part = part.replace('\r\r', '\r') if len(part) >= 80 * 24 * 8: # big output, process it in one step (\r and \n will not be handled) self._draw_chars(data, part) continue to_draw = '' for n, char in enumerate(part): if char == '\n': self._draw_chars(data, to_draw) to_draw = '' self._linefeed() elif char == '\r': self._draw_chars(data, to_draw) to_draw = '' self._erase_in_line(0) try: nchar = part[n + 1] except IndexError: nchar = None if self._cursor.positionInBlock() > 80 and self.flg_bash and nchar != '\n': self._linefeed() self._cursor.movePosition(self._cursor.StartOfBlock) self._text_edit.setTextCursor(self._cursor) else: to_draw += char if to_draw: self._draw_chars(data, to_draw) if i != len(parts) - 1: self._cursor_back(1) self._last_cursor_pos = self._cursor.position() self._prefix_len = self._cursor.positionInBlock() self._text_edit.setTextCursor(self._cursor) def _draw_chars(self, data, to_draw): """ Draw the specified charachters using the specified format. """ i = 0 while not self._cursor.atBlockEnd() and i < len(to_draw) and len(to_draw) > 1: self._cursor.deleteChar() i += 1 self._cursor.insertText(to_draw, data.fmt) def _linefeed(self): """ Performs a line feed. """ last_line = self._cursor.blockNumber() == self._text_edit.blockCount() - 1 if self._cursor.atEnd() or last_line: if last_line: self._cursor.movePosition(self._cursor.EndOfBlock) self._cursor.insertText('\n') else: self._cursor.movePosition(self._cursor.Down) self._cursor.movePosition(self._cursor.StartOfBlock) self._text_edit.setTextCursor(self._cursor) def _cursor_down(self, value): """ Moves the cursor down by ``value``. """ self._cursor.clearSelection() if self._cursor.atEnd(): self._cursor.insertText('\n') else: self._cursor.movePosition(self._cursor.Down, self._cursor.MoveAnchor, value) self._last_cursor_pos = self._cursor.position() def _cursor_up(self, value): """ Moves the cursor up by ``value``. """ value = int(value) if value == 0: value = 1 self._cursor.clearSelection() self._cursor.movePosition(self._cursor.Up, self._cursor.MoveAnchor, value) self._last_cursor_pos = self._cursor.position() def _cursor_position(self, data): """ Moves the cursor position. """ column, line = self._get_line_and_col(data) self._move_cursor_to_line(line) self._move_cursor_to_column(column) self._last_cursor_pos = self._cursor.position() def _move_cursor_to_column(self, column): """ Moves the cursor to the specified column, if possible. """ last_col = len(self._cursor.block().text()) self._cursor.movePosition(self._cursor.EndOfBlock) to_insert = '' for i in range(column - last_col): to_insert += ' ' if to_insert: self._cursor.insertText(to_insert) self._cursor.movePosition(self._cursor.StartOfBlock) self._cursor.movePosition(self._cursor.Right, self._cursor.MoveAnchor, column) self._last_cursor_pos = self._cursor.position() def _move_cursor_to_line(self, line): """ Moves the cursor to the specified line, if possible. """ last_line = self._text_edit.document().blockCount() - 1 self._cursor.clearSelection() self._cursor.movePosition(self._cursor.End) to_insert = '' for i in range(line - last_line): to_insert += '\n' if to_insert: self._cursor.insertText(to_insert) self._cursor.movePosition(self._cursor.Start) self._cursor.movePosition(self._cursor.Down, self._cursor.MoveAnchor, line) self._last_cursor_pos = self._cursor.position() def _cursor_horizontal_absolute(self, column): """ Moves the cursor to the specified column, if possible. """ self._move_cursor_to_column(int(column) - 1) @staticmethod def _get_line_and_col(data): """ Gets line and column from a string like the following: "1;5" or "1;" or ";5" and convers the column/line numbers to 0 base. """ try: line, column = data.split(';') except AttributeError: line = int(data) column = 1 # handle empty values and convert them to 0 based indices if not line: line = 0 else: line = int(line) - 1 if line < 0: line = 0 if not column: column = 0 else: column = int(column) - 1 if column < 0: column = 0 return column, line def _erase_in_line(self, value): """ Erases charachters in line. """ initial_pos = self._cursor.position() if value == 0: # delete end of line self._cursor.movePosition(self._cursor.EndOfBlock, self._cursor.KeepAnchor) elif value == 1: # delete start of line self._cursor.movePosition(self._cursor.StartOfBlock, self._cursor.KeepAnchor) else: # delete whole line self._cursor.movePosition(self._cursor.StartOfBlock) self._cursor.movePosition(self._cursor.EndOfBlock, self._cursor.KeepAnchor) self._cursor.insertText(' ' * len(self._cursor.selectedText())) self._cursor.setPosition(initial_pos) self._text_edit.setTextCursor(self._cursor) self._last_cursor_pos = self._cursor.position() def _erase_display(self, value): """ Erases display. """ if value == 0: # delete end of line self._cursor.movePosition(self._cursor.End, self._cursor.KeepAnchor) elif value == 1: # delete start of line self._cursor.movePosition(self._cursor.Start, self._cursor.KeepAnchor) else: # delete whole line self._cursor.movePosition(self._cursor.Start) self._cursor.movePosition(self._cursor.End, self._cursor.KeepAnchor) self._cursor.removeSelectedText() self._last_cursor_pos = self._cursor.position() def _cursor_back(self, value): """ Moves the cursor back. """ if value <= 0: value = 1 self._cursor.movePosition(self._cursor.Left, self._cursor.MoveAnchor, value) self._text_edit.setTextCursor(self._cursor) self._last_cursor_pos = self._cursor.position() def _cursor_forward(self, value): """ Moves the cursor forward. """ if value <= 0: value = 1 self._cursor.movePosition(self._cursor.Right, self._cursor.MoveAnchor, value) self._text_edit.setTextCursor(self._cursor) self._last_cursor_pos = self._cursor.position() def _delete_chars(self, value): """ Deletes the specified number of charachters. """ value = int(value) if value <= 0: value = 1 for i in range(value): self._cursor.deleteChar() self._text_edit.setTextCursor(self._cursor) self._last_cursor_pos = self._cursor.position() # ---------------------------------------------------------------------------------------------------------------------- # Color schemes definition # ---------------------------------------------------------------------------------------------------------------------- def _init_default_scheme(): """ Initialises the default color scheme with colors based on QPalette. Call this function once after QApplication has been created (otherwise QPalette cannot be used). """ if OutputWindow.DefaultColorScheme is None: OutputWindow.DefaultColorScheme = OutputWindow.create_color_scheme() # Initialize non-palette dependant themes. OutputWindow.LinuxColorScheme = OutputWindow.create_color_scheme( background=QColor('black'), foreground=QColor('white'), red=QColor('#FF5555'), green=QColor('#55FF55'), yellow=QColor('#FFFF55'), blue=QColor('#5555FF'), magenta=QColor('#FF55FF'), cyan=QColor('#55FFFF')) #: Tango theme (black background with pastel colors). OutputWindow.TangoColorScheme = OutputWindow.create_color_scheme( background=QColor('black'), foreground=QColor('white'), red=QColor('#CC0000'), green=QColor('#4E9A06'), yellow=QColor('#C4A000'), blue=QColor('#3465A4'), magenta=QColor('#75507B'), cyan=QColor('#06989A')) #: The famous Solarized dark theme. OutputWindow.SolarizedColorScheme = OutputWindow.create_color_scheme( background=QColor('#073642'), foreground=QColor('#EEE8D5'), red=QColor('#DC322F'), green=QColor('#859900'), yellow=QColor('#B58900'), blue=QColor('#268BD2'), magenta=QColor('#D33682'), cyan=QColor('#2AA198')) def _logger(): """ Returns a logger instance for this module. """ return logging.getLogger(__name__) Turing-0.11-beta/pyqode/core/widgets/preview.py000066400000000000000000000036161331472757200215670ustar00rootroot00000000000000""" This module contains a widget that can show the html preview of an editor. """ from weakref import proxy from pyqode.qt import QtCore, QtWidgets from pyqode.core.api import DelayJobRunner class HtmlPreviewWidget(QtWidgets.QTextEdit): """ Display html preview of a document as rich text in a QTextEdit. """ hide_requested = QtCore.Signal() show_requested = QtCore.Signal() def __init__(self, parent=None): super(HtmlPreviewWidget, self).__init__(parent) self._editor = None self._timer = DelayJobRunner(delay=1000) def set_editor(self, editor): try: self.setHtml(editor.to_html()) except (TypeError, AttributeError): self.setHtml('
No preview available...
') self._editor = None self.hide_requested.emit() else: if self._editor is not None and editor != self._editor: try: self._editor.textChanged.disconnect(self._on_text_changed) except TypeError: pass editor.textChanged.connect(self._on_text_changed) self._editor = proxy(editor) self.show_requested.emit() def _on_text_changed(self, *_): self._timer.request_job(self._update_preview) def _update_preview(self): try: # remember cursor/scrollbar position p = self.textCursor().position() v = self.verticalScrollBar().value() # display new html self.setHtml(self._editor.to_html()) # restore cursor/scrollbar position c = self.textCursor() c.setPosition(p) self.setTextCursor(c) self.verticalScrollBar().setValue(v) except (TypeError, AttributeError): self.setHtml('
No preview available...
') self.hide_requested.emit() Turing-0.11-beta/pyqode/core/widgets/prompt_line_edit.py000066400000000000000000000077751331472757200234550ustar00rootroot00000000000000""" This module contains the PromptLineEdit widget implementation. """ import os from pyqode.core import icons from pyqode.qt import QtWidgets, QtCore, QtGui from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API class PromptLineEdit(QtWidgets.QLineEdit): """ Extends QLineEdit to show a prompt text and a clear icon """ #: Signal emitted when the embedded button is clicked clear_clicked = QtCore.Signal() def __init__(self, parent=None, prompt_text=_(' Search'), button_icon=None): super(PromptLineEdit, self).__init__(parent) self._margin = self.sizeHint().height() - 2 self._spacing = 0 self._prompt_text = prompt_text self.button = QtWidgets.QToolButton(self) if button_icon is None: button_icon = icons.icon( 'edit-clear', ':/pyqode-icons/rc/clear-left.png', 'fa.times-circle') self.button.setIcon(button_icon) self.button.setToolTip(_("Clear")) self.button.setStyleSheet( "QToolButton { border: none; padding: 5px; }") self.button.setCursor(QtCore.Qt.ArrowCursor) self.button.setFocusPolicy(QtCore.Qt.NoFocus) self.set_button_visible(False) self.textChanged.connect(self._on_text_changed) self.button.clicked.connect(self.clear) self.button.clicked.connect(self.clear_clicked.emit) @property def prompt_text(self): """ Gets/Sets the prompt text. """ return self._prompt_text @prompt_text.setter def prompt_text(self, prompt): self._prompt_text = prompt self.update() def paintEvent(self, event): super(PromptLineEdit, self).paintEvent(event) qt_api = os.environ['QT_API'].lower() if self._prompt_text and not self.text() and self.isEnabled(): if qt_api in PYQT4_API: from PyQt4.QtGui import QStyleOptionFrameV3 option = QStyleOptionFrameV3() elif qt_api in PYSIDE_API: from PySide.QtGui import QStyleOptionFrameV3 option = QStyleOptionFrameV3() elif qt_api in PYQT5_API: from PyQt5.QtWidgets import QStyleOptionFrame option = QStyleOptionFrame() else: msg = 'Qt bindings "%s" is not supported' % qt_api raise PythonQtError(msg) self.initStyleOption(option) left, top, right, bottom = self.getTextMargins() va = self.style().visualAlignment( self.layoutDirection(), self.alignment()) rect = self.style().subElementRect( QtWidgets.QStyle.SE_LineEditContents, option, self).adjusted( 2, 0, 0, 0).adjusted(left, top, -right, -bottom) fm = QtGui.QFontMetrics(self.font()) text = fm.elidedText( self._prompt_text, QtCore.Qt.ElideRight, rect.width()) painter = QtGui.QPainter(self) painter.setPen(self.palette().color( QtGui.QPalette.Disabled, QtGui.QPalette.Text)) painter.drawText(rect, va, text) def resizeEvent(self, event): # Adjusts Clear button position super(PromptLineEdit, self).resizeEvent(event) self.button.resize(QtCore.QSize(self._margin, self.height() - 2)) self.button.move(self.width() - self._margin - 3, 0) def set_button_visible(self, visible): """ Sets the clear button as ``visible`` :param visible: Visible state (True = visible, False = hidden). """ self.button.setVisible(visible) left, top, right, bottom = self.getTextMargins() if visible: right = self._margin + self._spacing else: right = 0 self.setTextMargins(left, top, right, bottom) def _on_text_changed(self, text): """Text changed, update Clear button visibility """ self.set_button_visible(len(text) > 0) Turing-0.11-beta/pyqode/core/widgets/pty_wrapper.py000066400000000000000000000007341331472757200224600ustar00rootroot00000000000000import sys import os def pty_wrapper_main(): """ Main function of the pty wrapper script """ # make sure we can import _pty even if pyqode is not installed (this is the case in HackEdit where pyqode has # been vendored). sys.path.insert(0, os.path.dirname(__file__)) import _pty # fixme: find a way to use a pty and keep stdout and stderr as separate channels _pty.spawn(sys.argv[1:]) if __name__ == '__main__': pty_wrapper_main() Turing-0.11-beta/pyqode/core/widgets/splittable_tab_widget.py000066400000000000000000001652651331472757200244530ustar00rootroot00000000000000""" This module contains the splittable tab widget API """ import inspect import logging import mimetypes import os import io import sys import uuid import weakref from pyqode.qt import QtCore, QtWidgets, QtGui from pyqode.core.api import utils from pyqode.core.dialogs import DlgUnsavedFiles from pyqode.core._forms import popup_open_files_ui from .tab_bar import TabBar from .code_edits import GenericCodeEdit, TextCodeEdit from pyqode.core._forms import pyqode_core_rc assert pyqode_core_rc def _logger(): return logging.getLogger(__name__) class DraggableTabBar(TabBar): """ A draggable tab bar that allow to drag & drop tabs. Implementation is based on this qt article: http://www.qtcentre.org/wiki/index.php?title=Movable_Tabs """ #: Signal emitted when a tab must be moved to the specified #: index (the tab might come from another tab bar (split)). tab_move_request = QtCore.Signal(QtWidgets.QWidget, int) def __init__(self, parent): super(DraggableTabBar, self).__init__(parent) self._pos = QtCore.QPoint() self.setAcceptDrops(True) self.setMouseTracking(True) self.setElideMode(QtCore.Qt.ElideNone) def mousePressEvent(self, event): if event.button() == QtCore.Qt.LeftButton: self._pos = event.pos() # _pos is a QPoint defined in the header super(DraggableTabBar, self).mousePressEvent(event) def widget_under_mouse(self, event): index = self.tabAt(event.pos()) tab = self.parent().widget(index) return tab def mouseMoveEvent(self, event): # update tooltip with the tooltip of the tab under mouse cursor. tab = self.widget_under_mouse(event) if tab is not None: tooltip = tab.toolTip() if not tooltip: try: tooltip = tab.file.path except AttributeError: pass self.setToolTip(tooltip) # If the distance is too small then return if (event.pos() - self._pos).manhattanLength() < \ QtWidgets.QApplication.startDragDistance(): return # If the left button isn't pressed anymore then return if not event.buttons() & QtCore.Qt.LeftButton: return drag = QtGui.QDrag(self) data = QtCore.QMimeData() data.tab = tab data.widget = self # a crude way to distinguish tab-reodering drags from other drags data.setData("action", b"tab-reordering") drag.setMimeData(data) drag.setPixmap(self.tabIcon(self.tabAt(event.pos())).pixmap(32, 32)) drag.exec_() def dragEnterEvent(self, event): # Only accept if it's an tab-reordering request m = event.mimeData() formats = m.formats() if "action" in formats and m.data("action") == "tab-reordering": event.acceptProposedAction() def dropEvent(self, event): # drop a tab in a split (may be the same split or another one). m = event.mimeData() index = self.tabAt(event.pos()) # Tell interested objects that a tab should be moved. if m.tab != self.parent().widget(index): self.tab_move_request.emit(m.tab, index) event.acceptProposedAction() class BaseTabWidget(QtWidgets.QTabWidget): """ Base tab widget class used by SplittableTabWidget. This tab widget adds a context menu to the tab bar that allow the user to: - split the current tab (horizontally or vertically) - close the current tab - close all tabs - close all other tabs """ #: Signal emitted when the last tab has been closed last_tab_closed = QtCore.Signal() #: Signal emitted when a tab has been closed tab_closed = QtCore.Signal(QtWidgets.QWidget) #: Signal emitted when the user clicked on split vertical or split #: horizontal #: **Parameters**: #: - widget: the widget to split #: - orientation: split orientation (horizontal/vertical) split_requested = QtCore.Signal(QtWidgets.QWidget, int) #: Signal emitted when a tab got detached from the TabWidget #: **Parameters**: #: - old_tab: the old tab instance (before it get closed) #: - new_tab: the new tab instance (the one that is detached) tab_detached = QtCore.Signal(QtWidgets.QWidget, QtWidgets.QWidget) _detached_window_class = None def __init__(self, parent): super(BaseTabWidget, self).__init__(parent) self._current = None self.currentChanged.connect(self._on_current_changed) self.tabCloseRequested.connect(self._on_tab_close_requested) tab_bar = DraggableTabBar(self) tab_bar.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) tab_bar.customContextMenuRequested.connect(self._show_tab_context_menu) tab_bar.tab_move_request.connect(self._on_tab_move_request) self.setTabBar(tab_bar) self.setAcceptDrops(True) self.setUsesScrollButtons(True) #: A list of additional context menu actions self.context_actions = [] self.a_close = None self.a_close_all = None self._menu_pos = None self._create_tab_bar_menu() self.detached_tabs = [] def tab_under_menu(self): """ Returns the tab that sits under the context menu. :return: QWidget """ if self._menu_pos: return self.tabBar().tabAt(self._menu_pos) else: return self.currentIndex() def close(self): """ Closes the active editor """ self.tabCloseRequested.emit(self.tab_under_menu()) def close_others(self): """ Closes every editors tabs except the current one. """ current_widget = self.widget(self.tab_under_menu()) if self._try_close_dirty_tabs(exept=current_widget): i = 0 while self.count() > 1: widget = self.widget(i) if widget != current_widget: self.remove_tab(i) else: i = 1 def close_left(self): """ Closes every editors tabs on the left of the current one. """ current_widget = self.widget(self.tab_under_menu()) index = self.indexOf(current_widget) if self._try_close_dirty_tabs(tab_range=range(index)): while True: widget = self.widget(0) if widget != current_widget: self.remove_tab(0) else: break def close_right(self): """ Closes every editors tabs on the left of the current one. """ current_widget = self.widget(self.tab_under_menu()) index = self.indexOf(current_widget) if self._try_close_dirty_tabs(tab_range=range(index + 1, self.count())): while True: widget = self.widget(self.count() - 1) if widget != current_widget: self.remove_tab(self.count() - 1) else: break def close_all(self): """ Closes all editors """ if self._try_close_dirty_tabs(): while self.count(): widget = self.widget(0) self.remove_tab(0) self.tab_closed.emit(widget) return True return False def detach_tab(self): tab_index = self.tab_under_menu() tab = self.widget(tab_index) try: open_parameters = tab.open_parameters except AttributeError: open_parameters = { 'encoding': None, 'replace_tabs_by_spaces': True, 'clean_trailing_whitespaces': True, 'safe_save': True, 'restore_cursor_position': True, 'preferred_eol': 0, 'autodetect_eol': True, 'show_whitespaces': False, 'kwargs': {} } path = tab.file.path self.tabCloseRequested.emit(tab_index) # create a new top level widget and add the tab new_tab_widget = self.parent().__class__() # reopen document with same open settings. new_tab = new_tab_widget.open_document( path, encoding=open_parameters['encoding'], replace_tabs_by_spaces=open_parameters['replace_tabs_by_spaces'], clean_trailing_whitespaces=open_parameters[ 'clean_trailing_whitespaces'], safe_save=open_parameters['safe_save'], restore_cursor_position=open_parameters['restore_cursor_position'], preferred_eol=open_parameters['preferred_eol'], autodetect_eol=open_parameters['autodetect_eol'], show_whitespaces=open_parameters['show_whitespaces'], **open_parameters['kwargs']) if self._detached_window_class is None: win = new_tab_widget else: win = self._detached_window_class() #: detached window must be an instance of QMainWindow win.setCentralWidget(new_tab_widget) self.detached_tabs.append(win) win.resize(800, 600) win.show() self.tab_detached.emit(tab, new_tab) # if the user has two monitor, move the window to the second monitor desktop = QtWidgets.qApp.desktop() if desktop.screenCount() > 1: primary_screen = desktop.screenNumber(self) other_screen = {0: 1, 1: 0}[primary_screen] l = desktop.screenGeometry(other_screen).left() new_tab_widget.move(l, 0) new_tab_widget.showMaximized() new_tab_widget.last_tab_closed.connect(self._remove_detached_tab) def _remove_detached_tab(self): self.detached_tabs.remove(self.sender()) self.sender().close() def save_widget(self, editor): """ Saves the widget. The base implementation does nothing. The function must return a bool that tells whether the save succeeded or not. :param editor: editor widget to save. """ return True def _create_tab_bar_menu(self): context_mnu = QtWidgets.QMenu() for name, slot, icon in [ (_('Close tab'), self.close, 'document-close'), (_('Close tabs to the left'), self.close_left, 'tab-close-other'), (_('Close tabs to the right'), self.close_right, 'tab-close-other'), (_('Close others tabs'), self.close_others, 'tab-close-other'), (_('Close all tabs'), self.close_all, 'project-development-close-all'), (None, None, None), (_('Detach tab'), self.detach_tab, 'tab-detach')]: if name is None and slot is None: qaction = QtWidgets.QAction(self) qaction.setSeparator(True) else: qaction = QtWidgets.QAction(name, self) qaction.triggered.connect(slot) if icon: qaction.setIcon(QtGui.QIcon.fromTheme(icon)) if slot == self.close and self.a_close is None: self.a_close = qaction self.addAction(self.a_close) elif slot == self.close_left: self.a_close_left = qaction elif slot == self.close_right: self.a_close_right = qaction elif slot == self.close_others: self.a_close_others = qaction elif slot == self.close_all: self.a_close_all = qaction self.addAction(self.a_close_all) context_mnu.addAction(qaction) # self.addAction(qaction) context_mnu.addSeparator() menu = QtWidgets.QMenu(_('Split'), context_mnu) menu.setIcon(QtGui.QIcon.fromTheme('split')) a = menu.addAction(_('Split horizontally')) a.triggered.connect(self._on_split_requested) a.setIcon(QtGui.QIcon.fromTheme('view-split-left-right')) a = menu.addAction(_('Split vertically')) a.setIcon(QtGui.QIcon.fromTheme('view-split-top-bottom')) a.triggered.connect(self._on_split_requested) context_mnu.addMenu(menu) context_mnu.addSeparator() if self.context_actions: context_mnu.addSeparator() for action in self.context_actions: context_mnu.addAction(action) tab = self.widget(self.tab_under_menu()) index = self.indexOf(tab) self.a_close_right.setVisible(0 <= index < self.count() - 1) self.a_close_left.setVisible(0 < index <= self.count() - 1) self.a_close_others.setVisible(self.count() > 1) self.a_close_all.setVisible(self.count() > 1) self.a_close.setShortcut('Ctrl+W') self.a_close_all.setShortcut('Ctrl+Shift+W') self._context_mnu = context_mnu return context_mnu def _show_tab_context_menu(self, position): if self.count(): self._menu_pos = position SplittableTabWidget.tab_under_menu = self.widget( self.tab_under_menu()) mnu = self._create_tab_bar_menu() mnu.exec_(self.tabBar().mapToGlobal(position)) self._menu_pos = None def _collect_dirty_tabs(self, skip=None, tab_range=None): """ Collects the list of dirty tabs :param skip: Tab to skip (used for close_others). """ widgets = [] filenames = [] if tab_range is None: tab_range = range(self.count()) for i in tab_range: widget = self.widget(i) try: if widget.dirty and widget != skip: widgets.append(widget) if widget.file.path: filenames.append(widget.file.path) else: filenames.append(widget.documentTitle()) except AttributeError: pass return widgets, filenames def _try_close_dirty_tabs(self, exept=None, tab_range=None): """ Tries to close dirty tabs. Uses DlgUnsavedFiles to ask the user what he wants to do. """ widgets, filenames = self._collect_dirty_tabs(skip=exept, tab_range=tab_range) if not len(filenames): return True dlg = DlgUnsavedFiles(self, files=filenames) if dlg.exec_() == dlg.Accepted: if not dlg.discarded: for item in dlg.listWidget.selectedItems(): filename = item.text() widget = None for widget in widgets: if widget.file.path == filename: break if widget != exept: self.save_widget(widget) self.remove_tab(self.indexOf(widget)) return True return False def _get_widget_path(self, widget): try: return widget.file.path except AttributeError: return '' def _on_tab_close_requested(self, index): widget = self.widget(index) dirty = False try: if widget.original is None: dirty = widget.dirty except AttributeError: pass if not dirty: self.remove_tab(index) else: # unsaved widget path = self._get_widget_path(widget) if not path: path = self.tabText(self.indexOf(widget)) dlg = DlgUnsavedFiles( self, files=[path]) if dlg.exec_() == dlg.Accepted: rm = True if not dlg.discarded: try: rm = self.save_widget(widget) except OSError: pass if rm: self.remove_tab(index) @staticmethod def _close_widget(widget): """ Closes the given widgets and handles cases where the widget has been clone or is a clone of another widget """ if widget is None: return try: widget.document().setParent(None) widget.syntax_highlighter.setParent(None) except AttributeError: pass # not a QPlainTextEdit subclass # handled cloned widgets clones = [] if hasattr(widget, 'original') and widget.original: # cloned widget needs to be removed from the original widget.original.clones.remove(widget) try: widget.setDocument(None) except AttributeError: # not a QTextEdit/QPlainTextEdit pass elif hasattr(widget, 'clones'): clones = widget.clones try: # only clear current editor if it does not have any other clones widget.close(clear=len(clones) == 0) except (AttributeError, TypeError): # not a CodeEdit widget.close() return clones def _restore_original(self, clones): try: first = clones[0] except (IndexError, TypeError): # empty or None pass else: first.clones = clones[1:] first.original = None for c in first.clones: c.original = first def remove_tab(self, index): """ Overrides removeTab to emit tab_closed and last_tab_closed signals. :param index: index of the tab to remove. """ widget = self.widget(index) try: document = widget.document() except AttributeError: document = None # not a QPlainTextEdit clones = self._close_widget(widget) self.tab_closed.emit(widget) self.removeTab(index) self._restore_original(clones) widget._original_tab_widget._tabs.remove(widget) if self.count() == 0: self.last_tab_closed.emit() if SplittableTabWidget.tab_under_menu == widget: SplittableTabWidget.tab_under_menu = None if not clones: widget.setParent(None) else: try: clones[0].syntax_highlighter.setDocument(document) except AttributeError: pass # not a QPlainTextEdit def _on_split_requested(self): """ Emits the split requested signal with the desired orientation. """ orientation = self.sender().text() widget = self.widget(self.tab_under_menu()) if 'horizontally' in orientation: self.split_requested.emit( widget, QtCore.Qt.Horizontal) else: self.split_requested.emit( widget, QtCore.Qt.Vertical) def _on_current_changed(self, index): tab = self.widget(index) if tab: tab.setFocus() def _on_tab_move_request(self, widget, new_index): parent = widget.parent_tab_widget index = parent.indexOf(widget) text = parent.tabText(index) icon = parent.tabIcon(index) parent.removeTab(index) widget.parent_tab_widget = self self.insertTab(new_index, widget, icon, text) self.setCurrentIndex(new_index) widget.setFocus() if parent.count() == 0: parent.last_tab_closed.emit() def dragEnterEvent(self, event): # Only accept if it's an tab-reordering request m = event.mimeData() formats = m.formats() if "action" in formats and m.data("action") == "tab-reordering": event.acceptProposedAction() def dropEvent(self, event): m = event.mimeData() index = self.tabBar().tabAt(event.pos()) # Tell interested objects that a tab should be moved. if m.tab != self.widget(index): self._on_tab_move_request(m.tab, index) event.acceptProposedAction() def addTab(self, tab, *args): """ Adds a tab to the tab widget, this function set the parent_tab_widget attribute on the tab instance. """ tab.parent_tab_widget = self super(BaseTabWidget, self).addTab(tab, *args) class OpenFilesPopup(QtWidgets.QDialog): triggered = QtCore.Signal(str) def __init__(self, parent=None, qsettings=None): super(OpenFilesPopup, self).__init__(parent) self.ui = popup_open_files_ui.Ui_Dialog() self.ui.setupUi(self) self.ui.tableWidget.itemActivated.connect(self._on_item_activated) self.ui.tableWidget.itemDoubleClicked.connect(self._on_item_activated) if qsettings is None: self.settings = QtCore.QSettings('pyQode', 'pyqode.core') else: self.settings = qsettings self.sort_enabled = bool(self.settings.value( 'sortOpenFilesAlphabetically', False)) self.ui.checkBox.setChecked(self.sort_enabled) self.ui.checkBox.stateChanged.connect(self._on_sort_changed) def set_filenames(self, filenames): def clean(filenames): ret_val = [] new_count = 0 for filename in filenames: if not filename: filename = 'New document %d.txt' % (new_count + 1) new_count += 1 ret_val.append(filename) return ret_val self._filenames = filenames filenames = clean(filenames) if self.sort_enabled: filenames = sorted(filenames, key=lambda x: QtCore.QFileInfo(x).fileName().lower()) self.ui.tableWidget.clearContents() icon_provider = SplittableCodeEditTabWidget.icon_provider_klass() self.ui.tableWidget.setRowCount(len(filenames)) self.ui.tableWidget.horizontalHeader().setSectionResizeMode( QtWidgets.QHeaderView.ResizeToContents) for row, path in enumerate(filenames): finfo = QtCore.QFileInfo(path) filename = finfo.fileName() if finfo.exists(): icon = icon_provider.icon(finfo) else: icon = icon_provider.icon(icon_provider.File) # file name item = QtWidgets.QTableWidgetItem() item.setText(filename) item.setIcon(icon) item.setToolTip(path) item.setData(QtCore.Qt.UserRole, bytes(path, 'utf-8')) self.ui.tableWidget.setItem(row, 0, item) # path item = QtWidgets.QTableWidgetItem() item.setText(path) item.setToolTip(path) item.setData(QtCore.Qt.UserRole, bytes(path, 'utf-8')) self.ui.tableWidget.setItem(row, 1, item) def _on_sort_changed(self, *_): self.sort_enabled = self.ui.checkBox.isChecked() self.settings.setValue( 'sortOpenFilesAlphabetically', self.sort_enabled) self.set_filenames(self._filenames) def _on_item_activated(self, item): self.hide() self.triggered.emit(item.data(QtCore.Qt.UserRole).decode('utf-8')) def show(self): super(OpenFilesPopup, self).show() self.ui.tableWidget.setFocus() self.ui.tableWidget.selectRow(0) class SplittableTabWidget(QtWidgets.QSplitter): """ A splittable tab widget. The widget is implemented as a splitter which contains a main tab widget and a collection of child SplittableTabWidget. Widgets added to the the tab widget **must** have a ``split`` method which returns a clone of the widget instance. You can add new tabs to the main tab widget by using the ``add_tab`` method. Tabs are always closable. To change the underlying tab widget class, just set the ``tab_widget_klass`` class attribute. The splittable tab widget works with any kind of widget. There is a specialisation made specifically for managing a collection code editor widgets: SplittableCodeEditTabWidget. The implementation uses duck typing and will automatically show a dialog when closing an editor which has a ``dirty`` property. To actually save the widget, you must reimplement :meth:`SplittableTabWidget.save_widget``. """ #: Signal emitted when the last tab has been closed. last_tab_closed = QtCore.Signal(QtWidgets.QSplitter) #: Signal emitted when the active tab changed (takes child tab widgets #: into account). Parameter is the new tab widget. current_changed = QtCore.Signal(QtWidgets.QWidget) #: Signal emitted when a tab got detached from the TabWidget #: **Parameters**: #: - old_tab: the old tab instance (before it get closed) #: - new_tab: the new tab instance (the one that is detached) tab_detached = QtCore.Signal(QtWidgets.QWidget, QtWidgets.QWidget) #: The window to use when a type is detached. If None, the detached tab #: widget will be shown directly. detached_window_klass = None #: underlying tab widget class tab_widget_klass = BaseTabWidget #: Reference to the widget under the tab bar menu tab_under_menu = None @property def popup_shortcut(self): """ Gets/sets the open files popup shortcut (ctrl+t by default). """ if hasattr(self, '_action_popup'): return self._shortcut return None @popup_shortcut.setter def popup_shortcut(self, value): if hasattr(self, '_action_popup'): self._shortcut = value self._action_popup.setShortcut(self._shortcut) def __init__(self, parent=None, root=True, create_popup=True, qsettings=None): super(SplittableTabWidget, self).__init__(parent) SplittableTabWidget.tab_widget_klass._detached_window_class = \ SplittableTabWidget.detached_window_klass if root: self._action_popup = QtWidgets.QAction(self) self._action_popup.setShortcutContext(QtCore.Qt.WindowShortcut) self._shortcut = 'Ctrl+T' self._action_popup.setShortcut(self._shortcut) self._action_popup.triggered.connect(self._show_popup) self.addAction(self._action_popup) self.popup = OpenFilesPopup(qsettings=qsettings) self.popup.setWindowFlags( QtCore.Qt.Popup | QtCore.Qt.FramelessWindowHint) self.popup.triggered.connect(self._on_popup_triggered) self.child_splitters = [] self.main_tab_widget = self.tab_widget_klass(self) self.main_tab_widget.last_tab_closed.connect( self._on_last_tab_closed) self.main_tab_widget.tab_detached.connect(self.tab_detached.emit) self.main_tab_widget.split_requested.connect(self.split) self.addWidget(self.main_tab_widget) self._parent_splitter = None self._current = None self.root = root if root: QtWidgets.QApplication.instance().focusChanged.connect( self._on_focus_changed) self._uuid = uuid.uuid1() self._tabs = [] def add_context_action(self, action): """ Adds a custom context menu action :param action: action to add. """ self.main_tab_widget.context_actions.append(action) for child_splitter in self.child_splitters: child_splitter.add_context_action(action) def add_tab(self, tab, title='', icon=None): """ Adds a tab to main tab widget. :param tab: Widget to add as a new tab of the main tab widget. :param title: Tab title :param icon: Tab icon """ if icon: tab._icon = icon if not hasattr(tab, 'clones'): tab.clones = [] if not hasattr(tab, 'original'): tab.original = None if icon: self.main_tab_widget.addTab(tab, icon, title) else: self.main_tab_widget.addTab(tab, title) self.main_tab_widget.setCurrentIndex( self.main_tab_widget.indexOf(tab)) self.main_tab_widget.show() tab._uuid = self._uuid try: scroll_bar = tab.horizontalScrollBar() except AttributeError: # not a QPlainTextEdit class pass else: scroll_bar.setValue(0) tab.setFocus() tab._original_tab_widget = self self._tabs.append(tab) self._on_focus_changed(None, tab) def _on_popup_triggered(self, path): new_count = 0 for w in self.widgets(): if w.file.path == path: index = w.parent_tab_widget.indexOf(w) w.parent_tab_widget.setCurrentIndex(index) break elif w.file.path == '': # New document fpath = 'New document %d.txt' % (new_count + 1) if fpath == path: index = w.parent_tab_widget.indexOf(w) w.parent_tab_widget.setCurrentIndex(index) break new_count += 1 def _show_popup(self): parent_pos = self.main_tab_widget.pos() parent_size = self.main_tab_widget.size() size = self.popup.size() x, y = parent_pos.x(), parent_pos.y() pw, ph = parent_size.width(), parent_size.height() w = size.width() x += pw / 2 - w / 2 y += ph / 10 self.popup.move(self.mapToGlobal(QtCore.QPoint(x, y))) self.popup.set_filenames( [editor.file.path for editor in self.widgets()]) self.popup.show() def _make_splitter(self): splitter = None for widget in reversed(self.child_splitters): if widget.parent() is None: widget.setParent(self) splitter = widget break if splitter is None: splitter = self.__class__(self, root=False) for action in self.main_tab_widget.context_actions: splitter.add_context_action(action) return splitter def split(self, widget, orientation): """ Split the the current widget in new SplittableTabWidget. :param widget: widget to split :param orientation: orientation of the splitter :return: the new splitter """ if widget.original: base = widget.original else: base = widget clone = base.split() if not clone: return if orientation == int(QtCore.Qt.Horizontal): orientation = QtCore.Qt.Horizontal else: orientation = QtCore.Qt.Vertical self.setOrientation(orientation) splitter = self._make_splitter() splitter.show() self.addWidget(splitter) self.child_splitters.append(splitter) if clone not in base.clones: # code editors maintain the list of clones internally but some # other widgets (user widgets) might not. base.clones.append(clone) clone.original = base splitter._parent_splitter = self splitter.last_tab_closed.connect(self._on_last_child_tab_closed) splitter.tab_detached.connect(self.tab_detached.emit) if hasattr(base, '_icon'): icon = base._icon else: icon = None # same group of tab splitter (user might have a group for editors and # another group for consoles or whatever). splitter._uuid = self._uuid splitter.add_tab(clone, title=self.main_tab_widget.tabText( self.main_tab_widget.indexOf(widget)), icon=icon) self.setSizes([1 for i in range(self.count())]) return splitter def has_children(self): """ Checks if there are children tab widgets. :return: True if there is at least one tab in the children tab widget. """ for splitter in self.child_splitters: if splitter.has_children(): return splitter return self.main_tab_widget.count() != 0 def current_widget(self): """ Returns a reference to the current widget, i.e. the last widget that got the focus. :return: QWidget """ if self._current: return self._current() return None def widgets(self, include_clones=False): """ Recursively gets the list of widgets. :param include_clones: True to retrieve all tabs, including clones, otherwise only original widgets are returned. """ widgets = [] for i in range(self.main_tab_widget.count()): widget = self.main_tab_widget.widget(i) try: if widget.original is None or include_clones: widgets.append(widget) except AttributeError: pass for child in self.child_splitters: widgets += child.widgets(include_clones=include_clones) return widgets def _on_last_tab_closed(self, *args): has_children = self.has_children() if has_children: # hide the tab widget if there is not tabs if not self.main_tab_widget.count(): self.main_tab_widget.hide() else: if self.root: # ensure root is visible when there are no children self.show() self.main_tab_widget.show() else: # hide ourselves (we don't have any other tabs or children) self._remove_from_parent() if not self.has_children(): self.last_tab_closed.emit(self) def _on_focus_changed(self, old, new): try: result = new._uuid == self._uuid except (AttributeError, TypeError): pass else: if result: if new != self.current_widget(): self._on_current_changed(new) def _on_current_changed(self, new): old = self.current_widget() self._current = weakref.ref(new) _logger().debug( 'current tab changed (old=%r, new=%r)', old, new) self.current_changed.emit(new) return old, new def _remove_from_parent(self): self.hide() self.setParent(None) self.main_tab_widget.hide() if not self.root: self._parent_splitter.child_splitters.remove(self) self._parent_splitter = None def _on_last_child_tab_closed(self): if not self.has_children(): self.last_tab_closed.emit(self) if self.root: self.show() self.main_tab_widget.show() else: self._remove_from_parent() def count(self): """ Returns the number of widgets currently displayed (takes child splits into account). """ c = self.main_tab_widget.count() for child in self.child_splitters: c += child.count() return c class CodeEditTabWidget(BaseTabWidget): """ Tab widget specialised to hold pyqode's code editor widgets. It will manage the saving of editors """ default_directory = os.path.expanduser('~') dirty_changed = QtCore.Signal(bool) @classmethod @utils.memoized def get_filter(cls, mimetype): """ Returns a filter string for the file dialog. The filter is based on the mime type. :param mimetype: path from which the filter must be derived. :return: Filter string """ filters = ' '.join( ['*%s' % ext for ext in mimetypes.guess_all_extensions(mimetype)]) return '%s (%s)' % (mimetype, filters) def addTab(self, widget, *args): """ Re-implements addTab to connect to the dirty changed signal and setup some helper attributes. :param widget: widget to add :param args: optional addtional arguments (name and/or icon). """ widget.dirty_changed.connect(self._on_dirty_changed) super(CodeEditTabWidget, self).addTab(widget, *args) def _on_dirty_changed(self, dirty): """ Adds a star in front of a dirtt tab and emits dirty_changed. """ widget = self.sender() if isinstance(widget, DraggableTabBar): return parent = widget.parent_tab_widget index = parent.indexOf(widget) title = parent.tabText(index) title = title.replace('* ', '') if dirty: parent.setTabText(index, "* " + title) else: parent.setTabText(index, title) parent.dirty_changed.emit(dirty) @classmethod def _ask_path(cls, editor): """ Shows a QFileDialog and ask for a save filename. :return: save filename """ try: filter = cls.get_filter(editor.mimetypes[0]) except IndexError: filter = _('All files (*)') return QtWidgets.QFileDialog.getSaveFileName( editor, _('Save file as'), cls.default_directory, filter) @classmethod def save_widget(cls, editor): """ Implements SplittableTabWidget.save_widget to actually save the code editor widget. If the editor.file.path is None or empty or the file does not exist, a save as dialog is shown (save as). :param editor: editor widget to save. :return: False if there was a problem saving the editor (e.g. the save as dialog has been canceled by the user, or a permission error,...) """ if editor.original: editor = editor.original if editor.file.path is None or not os.path.exists(editor.file.path): # save as path, filter = cls._ask_path(editor) if not path: return False if not os.path.splitext(path)[1]: if len(editor.mimetypes): path += mimetypes.guess_extension(editor.mimetypes[0]) try: _logger().debug('saving %r as %r', editor.file._old_path, path) except AttributeError: _logger().debug('saving %r as %r', editor.file.path, path) editor.file._path = path else: path = editor.file.path try: editor.file.save(path) except Exception as e: QtWidgets.QMessageBox.warning(editor, "Failed to save file", 'Failed to save %r.\n\nError="%s"' % (path, e)) else: tw = editor.parent_tab_widget text = tw.tabText(tw.indexOf(editor)).replace('*', '') tw.setTabText(tw.indexOf(editor), text) for clone in [editor] + editor.clones: if clone != editor: tw = clone.parent_tab_widget tw.setTabText(tw.indexOf(clone), text) return True def _get_widget_path(self, editor): return editor.file.path class DetachedEditorWindow(QtWidgets.QMainWindow): def __init__(self): super(DetachedEditorWindow, self).__init__() tb = QtWidgets.QToolBar('File') action = tb.addAction(QtGui.QIcon.fromTheme('document-save'), _('Save')) action.triggered.connect(self._save) action.setShortcut('Ctrl+S') self.addToolBar(tb) def _save(self): self.centralWidget().save_current() class SplittableCodeEditTabWidget(SplittableTabWidget): """ SplittableTabWidget specialised for CodeEdit and subclasses. Offers some convenience function for opening/saving files. The widget supports multiple type of code editors. Each editor type must be explicitly registered using ``register_editor``. If there is no registered editor for the given mime-type, ``fallback_editor`` is used. """ #: Signal emitted when a tab bar is double clicked, this should work #: even with child tab bars tab_bar_double_clicked = QtCore.Signal() #: Signal emitted when a document has been saved. #: Parameters: # - save_file_path # - old_content document_saved = QtCore.Signal(str, str) #: uses a CodeEditTabWidget which is able to save code editor widgets. tab_widget_klass = CodeEditTabWidget #: the icon provider class to use when creating new document. Must be #: a subclass of QtWidgets.QFileIconProvider. By default, QFileIconProvider #: is used. icon_provider_klass = QtWidgets.QFileIconProvider #: Maps a mime-type with an editor type. #: This map is used to instantiate the proper editor type when #: opening/creating a document. editors = {mimetype: TextCodeEdit for mimetype in TextCodeEdit.mimetypes} #: Fallback editor is used in case not editors matching the requested #: mime-type could not be found in the editors map. #: By default the fallback_editor is a #: :class:`pyqode.core.widgets.GenericCodeEdit` fallback_editor = GenericCodeEdit #: signal emitted when the dirty_changed signal of the current editor #: has been emitted. dirty_changed = QtCore.Signal(bool) #: signal emitted when an editor has been created but just before the file #: is open. This give you a chance to change some editor settings that #: influence file opening. editor_created = QtCore.Signal(object) #: signal emitted when en editor has been created and the document has #: been sucessfully open document_opened = QtCore.Signal(object) #: Store the number of new documents created, for internal use. _new_count = 0 CLOSED_TABS_HISTORY_LIMIT = 10 def __init__(self, parent=None, root=True, qsettings=None): SplittableTabWidget.detached_window_klass = DetachedEditorWindow super(SplittableCodeEditTabWidget, self).__init__( parent, root, qsettings=qsettings) self.main_tab_widget.tabBar().double_clicked.connect( self.tab_bar_double_clicked.emit) if root: self.closed_tabs_history_btn = QtWidgets.QToolButton() self.closed_tabs_history_btn.setAutoRaise(True) self.closed_tabs_history_btn.setIcon(QtGui.QIcon.fromTheme( 'user-trash', QtGui.QIcon(':/pyqode-icons/rc/edit-trash.png'))) self.closed_tabs_history_btn.setPopupMode( QtWidgets.QToolButton.InstantPopup) self.closed_tabs_menu = QtWidgets.QMenu() self.closed_tabs_history_btn.setMenu(self.closed_tabs_menu) self.closed_tabs_history_btn.setDisabled(True) self.main_tab_widget.setCornerWidget(self.closed_tabs_history_btn) self.main_tab_widget.tab_closed.connect(self._on_tab_closed) @classmethod def register_code_edit(cls, code_edit_class): """ Register an additional code edit **class** .. warning: This method expect a class, not an instance! :param code_edit_class: code edit class to register. """ if not inspect.isclass(code_edit_class): raise TypeError('must be a class, not an instance.') for mimetype in code_edit_class.mimetypes: if mimetype in cls.editors: _logger().warn('editor for mimetype already registered, ' 'skipping') cls.editors[mimetype] = code_edit_class _logger().log(5, 'registered editors: %r', cls.editors) def save_current_as(self): """ Save current widget as. """ if not self.current_widget(): return mem = self.current_widget().file.path self.current_widget().file._path = None self.current_widget().file._old_path = mem CodeEditTabWidget.default_directory = os.path.dirname(mem) widget = self.current_widget() try: success = self.main_tab_widget.save_widget(widget) except Exception as e: QtWidgets.QMessageBox.warning( self, _('Failed to save file as'), _('Failed to save file as %s\nError=%s') % ( widget.file.path, str(e))) widget.file._path = mem else: if not success: widget.file._path = mem else: CodeEditTabWidget.default_directory = os.path.expanduser('~') self.document_saved.emit(widget.file.path, '') # rename tab tw = widget.parent_tab_widget tw.setTabText(tw.indexOf(widget), os.path.split(widget.file.path)[1]) return self.current_widget().file.path def save_current(self): """ Save current editor. If the editor.file.path is None, a save as dialog will be shown. """ if self.current_widget() is not None: editor = self.current_widget() self._save(editor) def _save(self, widget): path = widget.file.path try: encoding = widget.file.encoding except AttributeError: # not a code edit old_content = '' else: try: with io.open(path, encoding=encoding) as f: old_content = f.read() except OSError: old_content = '' if widget.dirty: try: self.main_tab_widget.save_widget(widget) except Exception as e: QtWidgets.QMessageBox.warning( self, 'Failed to save file', 'Failed to save file: %s\nError=%s' % ( widget.file.path, str(e))) else: self.document_saved.emit(path, old_content) def save_all(self): """ Save all editors. """ for w in self.widgets(): try: self._save(w) except OSError: _logger().exception('failed to save %s', w.file.path) def _create_code_edit(self, mimetype, *args, **kwargs): """ Create a code edit instance based on the mimetype of the file to open/create. :type mimetype: mime type :param args: Positional arguments that must be forwarded to the editor widget constructor. :param kwargs: Keyworded arguments that must be forwarded to the editor widget constructor. :return: Code editor widget instance. """ if mimetype in self.editors.keys(): return self.editors[mimetype]( *args, parent=self.main_tab_widget, **kwargs) editor = self.fallback_editor(*args, parent=self.main_tab_widget, **kwargs) return editor def create_new_document(self, base_name='New Document', extension='.txt', preferred_eol=0, autodetect_eol=True, **kwargs): """ Creates a new document. The document name will be ``base_name + count + extension`` :param base_name: Base name of the document. An int will be appended. :param extension: Document extension (dotted) :param args: Positional arguments that must be forwarded to the editor widget constructor. :param preferred_eol: Preferred EOL convention. This setting will be used for saving the document unless autodetect_eol is True. :param autodetect_eol: If true, automatically detects file EOL and use it instead of the preferred EOL when saving files. :param kwargs: Keyworded arguments that must be forwarded to the editor widget constructor. :return: Code editor widget instance. """ SplittableCodeEditTabWidget._new_count += 1 name = '%s%d%s' % (base_name, self._new_count, extension) tab = self._create_code_edit( self.guess_mimetype(name), **kwargs) self.editor_created.emit(tab) tab.file.autodetect_eol = autodetect_eol tab.file.preferred_eol = preferred_eol tab.setDocumentTitle(name) self.add_tab(tab, title=name, icon=self._icon(name)) self.document_opened.emit(tab) return tab def guess_mimetype(self, path): if 'CMakeLists.txt' in path: return 'text/x-cmake-project' else: return mimetypes.guess_type(path)[0] @utils.with_wait_cursor def open_document(self, path, encoding=None, replace_tabs_by_spaces=True, clean_trailing_whitespaces=True, safe_save=True, restore_cursor_position=True, preferred_eol=0, autodetect_eol=True, show_whitespaces=False, **kwargs): """ Opens a document. :param path: Path of the document to open :param encoding: The encoding to use to open the file. Default is locale.getpreferredencoding(). :param replace_tabs_by_spaces: Enable/Disable replace tabs by spaces. Default is true. :param clean_trailing_whitespaces: Enable/Disable clean trailing whitespaces (on save). Default is True. :param safe_save: If True, the file is saved to a temporary file first. If the save went fine, the temporary file is renamed to the final filename. :param restore_cursor_position: If true, last cursor position will be restored. Default is True. :param preferred_eol: Preferred EOL convention. This setting will be used for saving the document unless autodetect_eol is True. :param autodetect_eol: If true, automatically detects file EOL and use it instead of the preferred EOL when saving files. :param show_whitespaces: True to show white spaces. :param kwargs: addtional keyword args to pass to the widget constructor. :return: The created code editor """ original_path = os.path.normpath(path) path = os.path.normcase(original_path) paths = [] widgets = [] for w in self.widgets(include_clones=False): if os.path.exists(w.file.path): # skip new docs widgets.append(w) paths.append(os.path.normcase(w.file.path)) if path in paths: i = paths.index(path) w = widgets[i] tw = w.parent_tab_widget tw.setCurrentIndex(tw.indexOf(w)) return w else: assert os.path.exists(original_path) name = os.path.split(original_path)[1] use_parent_dir = False for tab in self.widgets(): title = QtCore.QFileInfo(tab.file.path).fileName() if title == name: tw = tab.parent_tab_widget new_name = os.path.join(os.path.split(os.path.dirname( tab.file.path))[1], title) tw.setTabText(tw.indexOf(tab), new_name) use_parent_dir = True if use_parent_dir: name = os.path.join( os.path.split(os.path.dirname(path))[1], name) use_parent_dir = False tab = self._create_code_edit(self.guess_mimetype(path), **kwargs) self.editor_created.emit(tab) tab.open_parameters = { 'encoding': encoding, 'replace_tabs_by_spaces': replace_tabs_by_spaces, 'clean_trailing_whitespaces': clean_trailing_whitespaces, 'safe_save': safe_save, 'restore_cursor_position': restore_cursor_position, 'preferred_eol': preferred_eol, 'autodetect_eol': autodetect_eol, 'show_whitespaces': show_whitespaces, 'kwargs': kwargs } tab.file.clean_trailing_whitespaces = clean_trailing_whitespaces tab.file.safe_save = safe_save tab.file.restore_cursor = restore_cursor_position tab.file.replace_tabs_by_spaces = replace_tabs_by_spaces tab.file.autodetect_eol = autodetect_eol tab.file.preferred_eol = preferred_eol tab.show_whitespaces = show_whitespaces try: tab.file.open(original_path, encoding=encoding) except Exception as e: _logger().exception('exception while opening file') tab.close() tab.setParent(None) tab.deleteLater() raise e else: tab.setDocumentTitle(name) tab.file._path = original_path icon = self._icon(path) self.add_tab(tab, title=name, icon=icon) self.document_opened.emit(tab) for action in self.closed_tabs_menu.actions(): if action.toolTip() == original_path: self.closed_tabs_menu.removeAction(action) break self.closed_tabs_history_btn.setEnabled( len(self.closed_tabs_menu.actions()) > 0) return tab def close_document(self, path): """ Closes a text document. :param path: Path of the document to close. """ to_close = [] for widget in self.widgets(include_clones=True): p = os.path.normpath(os.path.normcase(widget.file.path)) path = os.path.normpath(os.path.normcase(path)) if p == path: to_close.append(widget) for widget in to_close: tw = widget.parent_tab_widget tw.remove_tab(tw.indexOf(widget)) def rename_document(self, old_path, new_path): """ Renames an already opened document (this will not rename the file, just update the file path and tab title). Use that function to update a file that has been renamed externally. :param old_path: old path (path of the widget to rename with ``new_path`` :param new_path: new path that will be used to rename the tab. """ to_rename = [] title = os.path.split(new_path)[1] for widget in self.widgets(include_clones=True): p = os.path.normpath(os.path.normcase(widget.file.path)) old_path = os.path.normpath(os.path.normcase(old_path)) if p == old_path: to_rename.append(widget) for widget in to_rename: tw = widget.parent_tab_widget widget.file._path = new_path tw.setTabText(tw.indexOf(widget), title) def closeEvent(self, event): """ Saves dirty editors on close and cancel the event if the user choosed to continue to work. :param event: close event """ dirty_widgets = [] for w in self.widgets(include_clones=False): if w.dirty: dirty_widgets.append(w) filenames = [] for w in dirty_widgets: if os.path.exists(w.file.path): filenames.append(w.file.path) else: filenames.append(w.documentTitle()) if len(filenames) == 0: self.close_all() return dlg = DlgUnsavedFiles(self, files=filenames) if dlg.exec_() == dlg.Accepted: if not dlg.discarded: for item in dlg.listWidget.selectedItems(): filename = item.text() widget = None for widget in dirty_widgets: if widget.file.path == filename or \ widget.documentTitle() == filename: break tw = widget.parent_tab_widget tw.save_widget(widget) tw.remove_tab(tw.indexOf(widget)) self.close_all() else: event.ignore() def close_all(self): for w in self.widgets(include_clones=True): tw = w.parent_tab_widget tw.remove_tab(tw.indexOf(w)) def _icon(self, path): provider = self.icon_provider_klass() if not os.path.exists(path): return provider.icon(provider.File) return provider.icon(QtCore.QFileInfo(path)) def _on_current_changed(self, new): old, new = super( SplittableCodeEditTabWidget, self)._on_current_changed(new) if new: new.dirty_changed.connect(self.dirty_changed.emit) self.dirty_changed.emit(new.dirty) return old, new def split(self, widget, orientation): splitter = super(SplittableCodeEditTabWidget, self).split( widget, orientation) if splitter: splitter.tab_bar_double_clicked.connect( self.tab_bar_double_clicked.emit) def _on_tab_closed(self, tab): try: path = tab.file.path open_params = tab.open_parameters except AttributeError: pass else: for i, action in enumerate(self.closed_tabs_menu.actions()): if action.toolTip() == path: # already in menu, just move it at the top if i: before = self.closed_tabs_menu.actions()[0] self.closed_tabs_menu.removeAction(action) self.closed_tabs_menu.insertAction(before, action) break else: filename = QtCore.QFileInfo(path).fileName() try: before = self.closed_tabs_menu.actions()[0] except IndexError: action = self.closed_tabs_menu.addAction( self._icon(path), filename) else: action = QtWidgets.QAction(self._icon(path), filename, self.closed_tabs_menu) self.closed_tabs_menu.insertAction(before, action) action.setToolTip(path) action.triggered.connect(self._open_closed_path) action.setData(open_params) self.closed_tabs_history_btn.setEnabled(True) nb_actions = len(self.closed_tabs_menu.actions()) while nb_actions > self.CLOSED_TABS_HISTORY_LIMIT: self.closed_tabs_menu.removeAction( self.closed_tabs_menu.actions()[-1]) nb_actions = len(self.closed_tabs_menu.actions()) def _open_closed_path(self): action = self.sender() path = action.toolTip() open_parameters = action.data() self.open_document( path, encoding=open_parameters['encoding'], replace_tabs_by_spaces=open_parameters['replace_tabs_by_spaces'], clean_trailing_whitespaces=open_parameters[ 'clean_trailing_whitespaces'], safe_save=open_parameters['safe_save'], restore_cursor_position=open_parameters['restore_cursor_position'], preferred_eol=open_parameters['preferred_eol'], autodetect_eol=open_parameters['autodetect_eol'], show_whitespaces=open_parameters['show_whitespaces'], **open_parameters['kwargs']) self.closed_tabs_menu.removeAction(action) self.closed_tabs_history_btn.setEnabled( len(self.closed_tabs_menu.actions()) > 0) Turing-0.11-beta/pyqode/core/widgets/tab_bar.py000066400000000000000000000017011331472757200214710ustar00rootroot00000000000000""" This module contains the tab bar used in the splittable tab widget. """ from pyqode.qt import QtWidgets, QtCore from pyqode.core.api import DelayJobRunner class TabBar(QtWidgets.QTabBar): """ Tab bar specialized to allow the user to close a tab using mouse middle click. Also exposes a double clicked signal. """ double_clicked = QtCore.Signal() def __init__(self, parent): QtWidgets.QTabBar.__init__(self, parent) self.setTabsClosable(True) self._timer = DelayJobRunner(delay=1) def mousePressEvent(self, event): QtWidgets.QTabBar.mousePressEvent(self, event) if event.button() == QtCore.Qt.MiddleButton: tab = self.tabAt(event.pos()) self._timer.request_job( self.parentWidget().tabCloseRequested.emit, tab) def mouseDoubleClickEvent(self, event): if event.button() == QtCore.Qt.LeftButton: self.double_clicked.emit() Turing-0.11-beta/pyqode/core/widgets/tabs.py000066400000000000000000000375201331472757200210400ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the implementation of a tab widget specialised to show code editor tabs. """ import logging import os from pyqode.core.dialogs.unsaved_files import DlgUnsavedFiles from pyqode.core.modes.filewatcher import FileWatcherMode from pyqode.core.widgets.tab_bar import TabBar from pyqode.qt import QtCore, QtWidgets from pyqode.qt.QtWidgets import QTabBar, QTabWidget def _logger(): return logging.getLogger(__name__) class TabWidget(QTabWidget): """ QTabWidget specialised to hold CodeEdit instances (or any other object that has the same interace). It ensures that there is only one open editor tab for a specific file path, it adds a few utility methods to quickly manipulate the current editor widget. It will automatically rename tabs that share the same base filename to include their distinctive parent directory. It handles tab close requests automatically and show a dialog box when a dirty tab widget is being closed. It also adds a convenience QTabBar with a "close", "close others" and "close all" menu. (You can add custom actions by using the addAction and addSeparator methods). It exposes a variety of signal and slots for a better integration with your applications( dirty_changed, save_current, save_all, close_all, close_current, close_others). .. deprecated: starting from version 2.4, this widget is considered as deprecated. You should use :class:`pyqode.core.widgets.SplittableTabWidget` instead. It will be removed in version 2.6. """ #: Signal emitted when a tab dirty flag changed dirty_changed = QtCore.Signal(bool) #: Signal emitted when the last tab has been closed last_tab_closed = QtCore.Signal() #: Signal emitted when a tab has been closed tab_closed = QtCore.Signal(QtWidgets.QWidget) @property def active_editor(self): """ Returns the current editor widget or None if the current tab widget is not a subclass of CodeEdit or if there is no open tab. """ return self._current def __init__(self, parent): QtWidgets.QTabWidget.__init__(self, parent) self._current = None self.currentChanged.connect(self._on_current_changed) self.tabCloseRequested.connect(self._on_tab_close_requested) tab_bar = TabBar(self) tab_bar.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) tab_bar.customContextMenuRequested.connect(self._show_tab_context_menu) self.setTabBar(tab_bar) self.tab_bar = tab_bar self._context_mnu = QtWidgets.QMenu() for name, slot in [(_('Close'), self.close), (_('Close others'), self.close_others), (_('Close all'), self.close_all)]: qaction = QtWidgets.QAction(name, self) qaction.triggered.connect(slot) self._context_mnu.addAction(qaction) self.addAction(qaction) # keep a list of widgets (to avoid PyQt bug where # the C++ class loose the wrapped obj type). self._widgets = [] def close(self): """ Closes the active editor """ self.tabCloseRequested.emit(self.currentIndex()) def close_others(self): """ Closes every editors tabs except the current one. """ current_widget = self.currentWidget() self._try_close_dirty_tabs(exept=current_widget) i = 0 while self.count() > 1: widget = self.widget(i) if widget != current_widget: self.removeTab(i) else: i = 1 def close_all(self): """ Closes all editors """ if self._try_close_dirty_tabs(): while self.count(): widget = self.widget(0) self.removeTab(0) self.tab_closed.emit(widget) return True return False def _ensure_unique_name(self, code_edit, name): if name is not None: code_edit._tab_name = name else: code_edit._tab_name = code_edit.file.name file_name = code_edit.file.name if self._name_exists(file_name): file_name = self._rename_duplicate_tabs( code_edit, code_edit.file.name, code_edit.file.path) code_edit._tab_name = file_name def save_current(self, path=None): """ Save current editor content. Leave file to None to erase the previous file content. If the current editor's file_path is None and path is None, the function will call ``QtWidgets.QFileDialog.getSaveFileName`` to get a valid save filename. :param path: path of the file to save, leave it None to overwrite existing file. """ try: if not path and not self._current.file.path: path, filter = QtWidgets.QFileDialog.getSaveFileName( self, _('Choose destination path')) if not path: return False old_path = self._current.file.path code_edit = self._current self._save_editor(code_edit, path) path = code_edit.file.path # path (and icon) may have changed if path and old_path != path: self._ensure_unique_name(code_edit, code_edit.file.name) self.setTabText(self.currentIndex(), code_edit._tab_name) ext = os.path.splitext(path)[1] old_ext = os.path.splitext(old_path)[1] if ext != old_ext or not old_path: icon = QtWidgets.QFileIconProvider().icon( QtCore.QFileInfo(code_edit.file.path)) self.setTabIcon(self.currentIndex(), icon) return True except AttributeError: # not an editor widget pass return False def save_all(self): """ Save all editors. """ initial_index = self.currentIndex() for i in range(self.count()): try: self.setCurrentIndex(i) self.save_current() except AttributeError: pass self.setCurrentIndex(initial_index) def addAction(self, action): """ Adds an action to the TabBar context menu :param action: QAction to append """ self._context_mnu.addAction(action) def add_separator(self): """ Adds a separator to the TabBar context menu. :returns The separator action. """ return self._context_mnu.addSeparator() def index_from_filename(self, path): """ Checks if the path is already open in an editor tab. :param path: path to check :returns: The tab index if found or -1 """ if path: for i in range(self.count()): widget = self.widget(i) try: if widget.file.path == path: return i except AttributeError: pass # not an editor widget return -1 @staticmethod def _del_code_edit(code_edit): try: code_edit.close() code_edit.delete() except AttributeError: pass del code_edit def add_code_edit(self, code_edit, name=None): """ Adds a code edit tab, sets its text as the editor.file.name and sets it as the active tab. The widget is only added if there is no other editor tab open with the same filename, else the already open tab is set as current. If the widget file path is empty, i.e. this is a new document that has not been saved to disk, you may provided a formatted string such as 'New document %d.txt' for the document name. The int format will be automatically replaced by the number of new documents (e.g. 'New document 1.txt' then 'New document 2.txt' and so on). If you prefer to use your own code to manage the file names, just ensure that the names are unique. :param code_edit: The code editor widget tab to append :type code_edit: pyqode.core.api.CodeEdit :param name: Name of the tab. Will use code_edit.file.name if None is supplied. Default is None. If this is a new document, you should either pass a unique name or a formatted string (with a '%d' format) :return: Tab index """ # new empty editor widget (no path set) if code_edit.file.path == '': cnt = 0 for i in range(self.count()): tab = self.widget(i) if tab.file.path.startswith(name[:name.find('%')]): cnt += 1 name %= (cnt + 1) code_edit.file._path = name index = self.index_from_filename(code_edit.file.path) if index != -1: # already open, just show it self.setCurrentIndex(index) # no need to keep this instance self._del_code_edit(code_edit) return -1 self._ensure_unique_name(code_edit, name) index = self.addTab(code_edit, code_edit.file.icon, code_edit._tab_name) self.setCurrentIndex(index) self.setTabText(index, code_edit._tab_name) try: code_edit.setFocus() except TypeError: # PySide code_edit.setFocus() try: file_watcher = code_edit.modes.get(FileWatcherMode) except (KeyError, AttributeError): # not installed pass else: file_watcher.file_deleted.connect(self._on_file_deleted) return index def addTab(self, elem, icon, name): """ Extends QTabWidget.addTab to keep an internal list of added tabs. :param elem: tab widget :param icon: tab icon :param name: tab name """ self._widgets.append(elem) return super(TabWidget, self).addTab(elem, icon, name) def _name_exists(self, name): """ Checks if we already have an opened tab with the same name. """ for i in range(self.count()): if self.tabText(i) == name: return True return False def _save_editor(self, code_edit, path=None): if not path: path = code_edit.file.path if not os.path.exists(path): path, status = QtWidgets.QFileDialog.getSaveFileName( self, _('Save as (%s)') % code_edit.file.path) if path: try: code_edit.file.save(path) except AttributeError: # not a code edit, try with a save method code_edit.save(path) def _rename_duplicate_tabs(self, current, name, path): """ Rename tabs whose title is the same as the name """ for i in range(self.count()): if self.widget(i)._tab_name == name and self.widget(i) != current: file_path = self.widget(i).file.path if file_path: parent_dir = os.path.split(os.path.abspath( os.path.join(file_path, os.pardir)))[1] new_name = os.path.join(parent_dir, name) self.setTabText(i, new_name) self.widget(i)._tab_name = new_name break if path: parent_dir = os.path.split(os.path.abspath( os.path.join(path, os.pardir)))[1] return os.path.join(parent_dir, name) else: return name def _on_current_changed(self, index): if index != -1: widget = self.widget(index) else: widget = None if self._current: # needed if the user set save_on_focus_out to True which change # the dirty flag self._on_dirty_changed(self._current.dirty) self._current = widget try: if self._current: self._current.dirty_changed.connect(self._on_dirty_changed) self._on_dirty_changed(self._current.dirty) self._current.setFocus() except AttributeError: pass # not an editor widget def removeTab(self, index): """ Removes tab at index ``index``. This method will emits tab_closed for the removed tab. :param index: index of the tab to remove. """ widget = self.widget(index) try: self._widgets.remove(widget) except ValueError: pass self.tab_closed.emit(widget) self._del_code_edit(widget) QTabWidget.removeTab(self, index) if widget == self._current: self._current = None def _on_tab_close_requested(self, index): widget = self.widget(index) try: if not widget.dirty: self.removeTab(index) else: dlg = DlgUnsavedFiles( self, files=[widget.file.path if widget.file.path else widget._tab_name]) if dlg.exec_() == dlg.Accepted: if not dlg.discarded: self._save_editor(widget) self.removeTab(index) except AttributeError: _logger().warning('Failed to close tab %d', index) if self.count() == 0: self.last_tab_closed.emit() def _show_tab_context_menu(self, position): self._context_mnu.popup(self.mapToGlobal(position)) def _try_close_dirty_tabs(self, exept=None): """ Tries to close dirty tabs. Uses DlgUnsavedFiles to ask the user what he wants to do. """ widgets, filenames = self._collect_dirty_tabs(exept=exept) if not len(filenames): return True dlg = DlgUnsavedFiles(self, files=filenames) if dlg.exec_() == dlg.Accepted: if not dlg.discarded: for item in dlg.listWidget.selectedItems(): filename = item.text() widget = None for widget in widgets: if widget.file.path == filename: break if widget != exept: self._save_editor(widget) self.removeTab(self.indexOf(widget)) return True return False def _collect_dirty_tabs(self, exept=None): """ Collects the list of dirty tabs """ widgets = [] filenames = [] for i in range(self.count()): widget = self.widget(i) try: if widget.dirty and widget != exept: widgets.append(widget) filenames.append(widget.file.path) except AttributeError: pass return widgets, filenames def _on_dirty_changed(self, dirty): """ Adds a star in front of a dirtt tab and emits dirty_changed. """ try: title = self._current._tab_name index = self.indexOf(self._current) if dirty: self.setTabText(index, "* " + title) else: self.setTabText(index, title) except AttributeError: pass self.dirty_changed.emit(dirty) def closeEvent(self, event): # On close, we try to close dirty tabs and only process the close # event if all dirty tabs were closed by the user. if not self.close_all(): event.ignore() else: event.accept() def _on_file_deleted(self, editor): """ Removes deleted files from the tab widget. ;:param editor: CodeEdit to remove """ self.removeTab(self.indexOf(editor)) Turing-0.11-beta/pyqode/core/widgets/terminal.py000066400000000000000000000044311331472757200217150ustar00rootroot00000000000000import os import sys from pyqode.core.backend import server from pyqode.core import modes from . import output_window class Terminal(output_window.OutputWindow): """ Simple (rudimentary) terminal widget. It will run cmd.exe on Windows and bash on GNU/Linux. Please note that this widget does not support all VT100 features, only the most basic one. The goal is to have a small widget for running commands in a PyQt application, it does not aim to be a perfect emulator, just a quick one. """ def __init__(self, parent=None, color_scheme=None, backend=server.__file__): if sys.platform == 'win32': input_handler = output_window.BufferedInputHandler() program = 'cmd.exe' args = [] use_pty = False flg_bash = False else: program = 'bash' args = ['-l'] input_handler = output_window.ImmediateInputHandler() use_pty = True flg_bash = True working_dir = os.path.expanduser('~') super(Terminal, self).__init__(parent=parent, color_scheme=color_scheme, input_handler=input_handler, backend=backend) self._formatter.flg_bash = flg_bash self.start_process(program, arguments=args, print_command=False, use_pseudo_terminal=use_pty, working_dir=working_dir) def _init_code_edit(self, backend): self.modes.append(modes.SymbolMatcherMode()) self.modes.append(modes.IndenterMode()) super(Terminal, self)._init_code_edit(backend) try: self.panels.remove('ReadOnlyPanel') except KeyError: pass def change_directory(self, directory): """ Changes the current directory. Change is made by running a "cd" command followed by a "clear" command. :param directory: :return: """ self._process.write(('cd %s\n' % directory).encode()) if sys.platform == 'win32': self._process.write((os.path.splitdrive(directory)[0] + '\r\n').encode()) self.clear() else: self._process.write(b'\x0C') def terminate_process(self): self._process.write(b'\x04') self._process.waitForBytesWritten() Turing-0.11-beta/pyqode/python/000077500000000000000000000000001331472757200164515ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/__init__.py000066400000000000000000000005161331472757200205640ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ pyqode.python is an extension of pyqode.core that brings support for the python programming language. It provides a set of additional modes and panels for the frontend and a series of worker for the backend (code completion, documentation lookups, code linters, and so on...). """ __version__ = '2.10.0' Turing-0.11-beta/pyqode/python/_forms/000077500000000000000000000000001331472757200177365ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/_forms/__init__.py000066400000000000000000000002541331472757200220500ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This packages contains the qt forms and resource files used in pyqode.python. To update an forms/rc file, just run the compile_ui script. """ Turing-0.11-beta/pyqode/python/_forms/pyqode_python_icons_rc.py000066400000000000000000000637131331472757200251030ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.5.1) # # WARNING! All changes made in this file will be lost! from pyqode.qt import QtCore qt_resource_data = b"\ \x00\x00\x02\x57\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x0e\ \x50\x4c\x54\x45\xff\xff\xff\x00\x52\x5c\x04\x56\x60\x00\x52\x5c\ \x0b\x5b\x65\x09\x59\x63\x00\x52\x5c\x7f\xb2\xb8\x06\x59\x62\x7f\ \xb2\xb7\x06\x58\x62\x06\x58\x61\x04\x56\x60\x01\x56\x60\x00\x52\ \x5c\x7e\xb1\xb6\x77\xad\xb2\x07\x58\x61\x05\x57\x61\x05\x57\x60\ \x00\x56\x5f\x00\x55\x5f\xa4\xe5\xe9\xcd\xf6\xf8\x9d\xea\xef\x59\ \xcd\xd5\xcc\xf5\xf8\x9d\xe9\xee\x99\xe5\xea\x96\xe1\xe6\x4a\xbd\ \xc5\xcc\xf5\xf7\x9c\xe8\xed\x96\xe3\xe8\x6b\xd3\xd9\x3a\xbe\xc7\ \x20\xaf\xb8\x18\x9e\xa7\xcc\xf4\xf7\x95\xe5\xea\x69\xd6\xdd\x33\ \xc1\xc9\x24\xb6\xbe\x1f\xad\xb6\x19\xa5\xae\x12\x97\xa0\xc7\xf3\ \xf6\x65\xd8\xe0\x35\xc6\xcf\x28\xbc\xc5\x23\xb3\xbc\x1d\xab\xb4\ \x18\xa3\xac\x10\x95\x9e\xb3\xee\xf2\x39\xcb\xd4\x2c\xc2\xcb\x27\ \xb9\xc2\x21\xb1\xba\x1c\xa9\xb1\x16\xa1\xa9\x10\x93\x9c\xa0\xe9\ \xed\x33\xc8\xd1\x2b\xbf\xc9\x25\xb7\xc0\x1a\xa7\xaf\x15\x9f\xa7\ \x0f\x91\x9a\x89\xd9\xdd\x31\xc5\xcf\x29\xbd\xc6\x24\xb5\xbe\x1e\ \xac\xb5\x19\xa4\xad\x13\x9d\xa5\x0d\x90\x98\x24\xb2\xbb\x22\xb3\ \xbb\x1d\xaa\xb3\x17\xa2\xab\x12\x9b\xa3\x0c\x8e\x96\x19\xa0\xa9\ \x16\xa0\xa9\x11\x99\xa1\x0b\x8c\x95\x0e\x91\x99\x0a\x8b\x93\xff\ \xff\xff\x85\x73\x4d\xab\x00\x00\x00\x16\x74\x52\x4e\x53\x00\x00\ \x00\x13\xe7\xf0\x16\xfe\xf0\xfe\xf0\xf0\xf2\xf5\x1a\xfe\xfe\xf2\ \xf2\xf2\xf5\xf5\x81\xe3\xd2\x04\x00\x00\x00\x01\x62\x4b\x47\x44\ \x00\x88\x05\x1d\x48\x00\x00\x00\xa9\x49\x44\x41\x54\x18\xd3\x65\ \xce\xd5\x12\xc2\x30\x10\x40\xd1\x96\x84\x60\x6d\x71\x77\x28\xee\ \xee\xee\xee\xf2\xff\x5f\xc2\xb6\x69\xe1\x81\x7d\xc9\x9c\x3b\x99\ \xd9\x65\x98\xbf\x61\xe9\x20\xac\x25\xd2\xab\x06\x84\x75\x2e\x3d\ \xf9\x05\x84\x0d\x6e\x8f\xd7\x48\xd4\x00\xf6\xf9\x03\xc1\x90\x89\ \xd0\x00\x0e\x47\xa2\xb1\xb8\x98\xe0\xe4\x00\x4e\xa6\xd2\x99\x6c\ \x2e\x5f\xe0\x05\x08\xe0\x62\xa9\x5c\xa9\xd6\xea\x0d\x5e\x80\x1f\ \x08\x9b\x9b\xad\x76\xa7\xdb\xeb\x0f\xc0\x10\xb0\x65\x38\x1a\x4f\ \xc4\xe9\x6c\x2e\x19\x82\x75\xb1\x5c\xad\x37\xdb\xdd\x5e\x36\x04\ \x62\x3b\x1c\x4f\xe7\xcb\x95\x5a\xda\x42\xec\xb7\xfb\xe3\xa9\x58\ \x5e\x4b\xb8\xd7\xdb\xa1\x98\x1e\x46\x38\xa7\x6a\xe5\x74\xcd\xd7\ \xec\x07\xd4\x2e\x11\x35\x9a\x31\x91\x1e\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xa1\ \x47\ \x49\x46\x38\x39\x61\x10\x00\x10\x00\xf2\x00\x00\xff\xff\xff\x00\ \x00\x00\xc2\xc2\xc2\x42\x42\x42\x00\x00\x00\x62\x62\x62\x82\x82\ \x82\x92\x92\x92\x21\xff\x0b\x4e\x45\x54\x53\x43\x41\x50\x45\x32\ \x2e\x30\x03\x01\x00\x00\x00\x21\xfe\x1a\x43\x72\x65\x61\x74\x65\ \x64\x20\x77\x69\x74\x68\x20\x61\x6a\x61\x78\x6c\x6f\x61\x64\x2e\ \x69\x6e\x66\x6f\x00\x21\xf9\x04\x09\x0a\x00\x00\x00\x2c\x00\x00\ \x00\x00\x10\x00\x10\x00\x00\x03\x33\x08\xba\xdc\xfe\x30\xca\x49\ \x6b\x13\x63\x08\x3a\x08\x19\x9c\x07\x4e\x98\x66\x09\x45\xb1\x31\ \xc2\xba\x14\x99\xc1\xb6\x2e\x60\xc4\xc2\x71\xd0\x2d\x5b\x18\x39\ \xdd\xa6\x07\x39\x18\x0c\x07\x4a\x6b\xe7\x48\x00\x00\x21\xf9\x04\ \x09\x0a\x00\x00\x00\x2c\x00\x00\x00\x00\x10\x00\x10\x00\x00\x03\ \x34\x08\xba\xdc\xfe\x4e\x8c\x21\x20\x1b\x84\x0c\xbb\xb0\xe6\x8a\ \x44\x71\x42\x51\x54\x60\x31\x19\x20\x60\x4c\x45\x5b\x1a\xa8\x7c\ \x1c\xb5\x75\xdf\xed\x61\x18\x07\x80\x20\xd7\x18\xe2\x86\x43\x19\ \xb2\x25\x24\x2a\x12\x00\x21\xf9\x04\x09\x0a\x00\x00\x00\x2c\x00\ \x00\x00\x00\x10\x00\x10\x00\x00\x03\x36\x08\xba\x32\x23\x2b\xca\ \x41\xc8\x90\xcc\x94\x56\x2f\x06\x85\x63\x1c\x0e\xf4\x19\x4e\xf1\ \x49\x42\x61\x98\xab\x70\x1c\xf0\x0a\xcc\xb3\xbd\x1c\xc6\xa8\x2b\ \x02\x59\xed\x17\xfc\x01\x83\xc3\x0f\x32\xa9\x64\x1a\x9f\xbf\x04\ \x00\x21\xf9\x04\x09\x0a\x00\x00\x00\x2c\x00\x00\x00\x00\x10\x00\ \x10\x00\x00\x03\x33\x08\xba\x62\x25\x2b\xca\x32\x86\x91\xec\x9c\ \x56\x5f\x85\x8b\xa6\x09\x85\x21\x0c\x04\x31\x44\x87\x61\x1c\x11\ \xaa\x46\x82\xb0\xd1\x1f\x03\x62\x52\x5d\xf3\x3d\x1f\x30\x38\x2c\ \x1a\x8f\xc8\xa4\x72\x39\x4c\x00\x00\x21\xf9\x04\x09\x0a\x00\x00\ \x00\x2c\x00\x00\x00\x00\x10\x00\x10\x00\x00\x03\x32\x08\xba\x72\ \x27\x2b\x4a\xe7\x64\x14\xf0\x18\xf3\x4c\x81\x0c\x26\x76\xc3\x60\ \x5c\x62\x54\x94\x85\x84\xb9\x1e\x68\x59\x42\x29\xcf\xca\x40\x10\ \x03\x1e\xe9\x3c\x1f\xc3\x26\x2c\x1a\x8f\xc8\xa4\x52\x92\x00\x00\ \x21\xf9\x04\x09\x0a\x00\x00\x00\x2c\x00\x00\x00\x00\x10\x00\x10\ \x00\x00\x03\x33\x08\xba\x20\xc2\x90\x39\x17\xe3\x74\xe7\xbc\xda\ \x9e\x30\x19\xc7\x1c\xe0\x21\x2e\x42\xb6\x9d\xca\x57\xac\xa2\x31\ \x0c\x06\x0b\x14\x73\x61\xbb\xb0\x35\xf7\x95\x01\x81\x30\xb0\x09\ \x89\xbb\x9f\x6d\x29\x4a\x00\x00\x21\xf9\x04\x09\x0a\x00\x00\x00\ \x2c\x00\x00\x00\x00\x10\x00\x10\x00\x00\x03\x32\x08\xba\xdc\xfe\ \xf0\x09\x11\xd9\x9c\x55\x5d\x9a\x01\xee\xda\x71\x70\x95\x60\x88\ \xdd\x61\x9c\xdd\x34\x96\x85\x41\x46\xc5\x30\x14\x90\x60\x9b\xb6\ \x01\x0d\x04\xc2\x40\x10\x9b\x31\x80\xc2\xd6\xce\x91\x00\x00\x21\ \xf9\x04\x09\x0a\x00\x00\x00\x2c\x00\x00\x00\x00\x10\x00\x10\x00\ \x00\x03\x32\x08\xba\xdc\xfe\x30\xca\x49\xab\x65\x42\xd4\x9c\x29\ \xd7\x1e\x08\x08\xc3\x20\x8e\xc7\x71\x0e\x04\x31\x30\xa9\xca\xb0\ \xae\x50\x18\xc2\x61\x18\x07\x56\xda\xa5\x02\x20\x75\x62\x18\x82\ \x9e\x5b\x11\x90\x00\x00\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \ \x00\x00\x02\x75\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x20\ \x50\x4c\x54\x45\xff\xff\xff\x7d\x00\x23\x7f\x03\x25\x7d\x00\x23\ \x84\x09\x2c\x82\x07\x2a\x7d\x00\x23\xc2\x68\x84\x82\x06\x29\xc1\ \x68\x83\x81\x05\x28\xc1\x67\x83\x80\x04\x27\xc0\x67\x82\x7f\x03\ \x26\xc0\x66\x82\x7f\x01\x25\x7d\x00\x23\xbf\x66\x82\x7f\x01\x24\ \xbe\x65\x80\x83\x09\x2c\xbc\x5f\x7c\x81\x06\x28\x7e\x01\x24\x80\ \x04\x27\x80\x03\x26\x7f\x03\x25\xe8\x8f\xae\xf5\xb7\xcd\xec\x98\ \xb6\xd7\x62\x8a\xf4\xb5\xcc\xeb\x97\xb4\xe6\x92\xaf\xe0\x8d\xa9\ \xc5\x50\x76\xf3\xb5\xca\xea\x96\xb3\xe4\x8f\xac\xd7\x6d\x90\xc4\ \x45\x6e\xb7\x2f\x59\xa9\x23\x4b\xf2\xb4\xca\xe7\x91\xaf\xdb\x6e\ \x93\xc9\x43\x6f\xbe\x35\x60\xb5\x2d\x57\xac\x25\x4d\xa0\x1a\x41\ \xf0\xaf\xc6\xdf\x6e\x95\xcf\x47\x74\xc5\x3b\x68\xbb\x33\x5e\xb2\ \x2a\x54\xa9\x22\x4b\x9e\x19\x3f\xeb\x9b\xb7\xd6\x4e\x7c\xcb\x41\ \x6f\xc2\x39\x65\xb9\x30\x5b\xb0\x28\x52\xa7\x20\x48\x9b\x17\x3d\ \xe7\x87\xa8\xd2\x48\x77\xc9\x3e\x6c\xc0\x36\x62\xb6\x2e\x58\xad\ \x26\x4f\xa4\x1e\x46\x99\x15\x3b\xda\x71\x94\xd0\x45\x74\xc6\x3c\ \x69\xbd\x34\x60\xb4\x2c\x56\xab\x24\x4c\xa2\x1c\x43\x97\x13\x39\ \xbe\x35\x61\xbb\x32\x5d\xb1\x2a\x53\xa8\x22\x4a\x96\x11\x37\xaa\ \x23\x4d\xa6\x20\x47\x9e\x18\x3f\x94\x10\x34\x98\x14\x3a\x92\x0f\ \x33\xff\xff\xff\x68\xea\xa0\xf4\x00\x00\x00\x1c\x74\x52\x4e\x53\ \x00\x00\x00\x13\xe7\xf0\x16\xfe\xf0\xfe\xf0\xfe\xf0\xfe\xf2\xfe\ \xf5\x1a\xfe\xf5\xfe\xe7\xfe\xf2\xf5\xf2\xf2\xf2\x89\x63\x85\x71\ \x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\ \xaf\x49\x44\x41\x54\x18\xd3\x65\x8f\x45\x16\xc2\x40\x10\x05\x27\ \xcc\x30\xb8\x84\xe0\xee\xee\xc1\xdd\xdd\xdd\xef\x7f\x0c\xa2\x64\ \x41\xef\xaa\xfa\xbf\x7e\xbf\x01\xf8\x1b\x82\x1f\x88\xe4\x98\x20\ \x24\x01\x91\xc2\xad\xc4\x92\x80\x48\xe5\xf1\xfa\xd4\x58\x14\x10\ \x69\xfc\x81\x60\x28\xac\x65\x33\x1c\xeb\x22\xd1\x58\x3c\x91\x4c\ \xe9\x39\x01\x91\x21\x9d\xc9\xe6\xf2\x85\x22\x6d\x24\x19\x01\x91\ \xa9\x54\xae\x54\x6b\xf5\x46\x93\x22\x99\x04\x44\xe6\x56\xbb\xd3\ \xed\xf5\x07\x43\x8a\x64\x8f\x5a\xac\xa3\xf1\x64\x3a\x9b\x2f\x96\ \xdc\x1e\x00\xdb\x6a\xbd\xd9\xee\xf6\x87\xa3\x9d\xe4\x8b\x61\xc7\ \xe9\x7c\xb9\xd2\x37\x96\xf9\x62\xd8\x79\x7f\x3c\x5f\x1c\x0b\x4d\ \xb1\xfe\xfd\xe1\x59\xac\x8e\x5d\x02\xff\x7e\x91\x09\xcc\x88\x2f\ \xe8\x81\x13\x74\x00\xf9\xa8\xe1\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x01\xfb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\xc6\ \x50\x4c\x54\x45\xff\xff\xff\x62\x55\x00\x62\x55\x00\x62\x55\x00\ \x7d\x00\x23\x7d\x00\x23\x7d\x00\x23\x0a\x4b\x57\x00\x52\x5c\x00\ \x52\x5c\x00\x52\x5c\xed\xe7\xc3\xec\xe6\xc0\xed\xe7\xc2\xf9\xf4\ \xd1\xee\xe1\x87\xe0\xd2\x75\xee\xe1\x86\xdf\xc9\x30\xd1\xba\x22\ \x63\x56\x00\xee\xe0\x85\xdf\xc9\x2f\xd1\xba\x21\x62\x55\x00\xdd\ \xaf\xbd\xc5\x5d\x83\xed\xe7\xc1\xf9\xf4\xd0\xed\xe0\x84\xde\xc8\ \x2d\xd1\xba\x1f\x35\x34\x2d\x31\x31\x31\x38\x2d\x30\xdd\xaf\xbe\ \xce\x67\x8f\xbe\x0c\x58\x7d\x00\x23\x63\x56\x01\xec\xe5\xbe\xed\ \xdf\x83\xde\xc7\x2c\xd0\xba\x1e\xde\xb0\xbf\xd0\x67\x91\xc2\x0d\ \x5c\xd2\xbd\x27\xd0\xb9\x1d\x7d\x01\x24\xcb\x5e\x89\xc5\x0e\x5f\ \xb1\xd7\xda\x66\xbd\xc2\x2d\x34\x35\x00\x52\x5c\xb2\xd8\xdb\x72\ \xc9\xce\x25\xb2\xbb\x73\xcb\xd1\x27\xb6\xbf\x00\x53\x5d\x01\x53\ \x5d\x6b\xc2\xc9\x29\xb9\xc2\xff\xff\xff\x63\x4d\x2d\x1a\x00\x00\ \x00\x0b\x74\x52\x4e\x53\x00\x16\xfe\x02\x16\xfe\x02\x18\xfe\x16\ \x02\x2e\x8e\x3f\x89\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\ \x1d\x48\x00\x00\x00\xa0\x49\x44\x41\x54\x18\xd3\x55\x8f\xd7\x16\ \x82\x40\x0c\x44\x67\x17\x16\x17\xec\x1d\xbb\x6b\x01\x7b\x57\xb0\ \xa0\xfe\xff\x57\x19\x78\x90\x25\x0f\x39\xe7\x4e\x26\x93\x13\x80\ \x8a\x71\xce\xa0\x15\xe3\xf9\x82\xae\x30\x5e\x2c\x95\x2b\x3c\xc3\ \xd5\x5a\xbd\x61\x00\xa6\x10\x66\xc2\xcd\x56\xdb\x65\x31\x77\xba\ \x02\xbc\xd7\x1f\x0c\x47\xee\x58\xa9\x89\x98\xce\xe6\x1e\xfc\xc5\ \x72\xb5\xa6\xb9\x82\xd8\x6c\x77\x1e\xad\xf8\xfb\x43\xec\x57\xd6\ \xf1\x74\x26\xa6\x50\x37\x66\x72\x98\x5e\xc2\x80\x61\x20\x11\x60\ \xe5\xa4\xb4\xff\xd7\x49\xb0\xe5\xe5\x2a\x53\x41\xdd\x82\xf0\xfe\ \x08\xb4\x0f\x64\xf8\x7c\x45\xe9\x0a\x9c\xf7\xe7\xab\x33\x45\x44\ \x59\x26\x8f\x43\xed\x07\x0b\xa0\x0c\x76\xb1\x78\x34\x0e\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xb1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x3b\ \x50\x4c\x54\x45\x7d\x00\x23\xff\xff\xff\x1e\x1e\x1e\x00\x00\x00\ \x7d\x00\x23\x84\x09\x2c\x82\x07\x2a\x7d\x00\x23\xc2\x68\x84\x82\ \x06\x29\xc1\x68\x83\x81\x05\x28\xc1\x67\x83\x80\x04\x27\xc0\x67\ \x82\x7f\x03\x26\xc0\x66\x82\x7f\x01\x25\x7d\x00\x23\xbf\x66\x82\ \x7f\x01\x24\xbe\x65\x80\x83\x09\x2c\xbc\x5f\x7c\x81\x06\x28\xc9\ \x95\xa4\x86\x12\x33\x80\x04\x27\x6e\x60\x64\xba\x77\x8a\x80\x03\ \x26\xe1\xc5\xcd\x6b\x5e\x62\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \xe8\x8f\xae\xf5\xb7\xcd\xec\x98\xb6\xd7\x62\x8a\xf4\xb5\xcc\xeb\ \x97\xb4\xe6\x92\xaf\xe0\x8d\xa9\xc5\x50\x76\xf3\xb5\xca\xea\x96\ \xb3\xe4\x8f\xac\xd7\x6d\x90\xc4\x45\x6e\xb7\x2f\x59\xa9\x23\x4b\ \xf2\xb4\xca\xe7\x91\xaf\xdb\x6e\x93\xc9\x43\x6f\xbe\x35\x60\xb5\ \x2d\x57\xac\x25\x4d\xa0\x1a\x41\xf0\xaf\xc6\xdf\x6e\x95\xcf\x47\ \x74\xc5\x3b\x68\xbb\x33\x5e\xb2\x2a\x54\xa9\x22\x4b\x9e\x19\x3f\ \xeb\x9b\xb7\xd6\x4e\x7c\xcb\x41\x6f\xc2\x39\x65\xb9\x30\x5b\xb0\ \x28\x52\xa7\x20\x48\x9b\x17\x3d\xe7\x87\xa8\xd2\x48\x77\xc9\x3e\ \x6c\xc0\x36\x62\xb6\x2e\x58\xad\x26\x4f\xa4\x1e\x46\x99\x15\x3b\ \xda\x71\x94\xd0\x45\x74\xc6\x3c\x69\xbd\x34\x60\xb4\x2c\x56\xbf\ \x59\x78\xdc\xa9\xb7\xea\xd0\xd7\xbe\x35\x61\xbb\x32\x5d\xb1\x2a\ \x53\xc1\x60\x7d\xec\xd1\xd9\x72\x65\x69\xaa\x23\x4d\xb7\x4a\x6a\ \x1e\x1b\x1c\x1e\x1e\x1e\xd2\x98\xa8\x6f\x63\x66\xff\xff\xff\xdd\ \xa3\x91\x75\x00\x00\x00\x24\x74\x52\x4e\x53\x00\x00\x00\x00\x13\ \xe7\xf0\x16\xfe\xf0\xfe\xf0\xfe\xf0\xfe\xf2\xfe\xf5\x1a\xfe\xf5\ \xfe\xe7\xfe\xf2\xfb\x1c\xf2\xfe\x2d\xf2\xfc\xfe\xde\x86\x89\x26\ \x57\x64\xb7\x00\x00\x00\x01\x62\x4b\x47\x44\x01\xff\x02\x2d\xde\ \x00\x00\x00\xc8\x49\x44\x41\x54\x18\xd3\x63\x60\x80\x00\x16\x56\ \x36\x76\x10\xcd\x08\xe7\x73\xa8\x70\xb2\x23\x04\x58\x58\xb9\x54\ \xd5\xd4\xb9\xd9\x61\x02\x2c\xac\x3c\x1a\x9a\x5a\xda\x3a\xbc\xec\ \x10\x01\x16\x56\x3e\x5d\x3d\x7d\x03\x43\x23\x63\x7e\xb0\x00\x0b\ \xab\x80\x89\xa9\x99\xb9\x85\xa5\x95\xb5\xa0\x10\x23\x88\x2f\x6c\ \x63\x6b\x67\xef\xe0\xe8\xe4\x2c\x22\x04\x54\xc1\xc2\x2a\xea\xe2\ \xea\xe6\xee\xe1\xe9\xe5\x0d\xe4\x03\x05\xc4\xc4\x7d\x7c\xfd\xfc\ \x03\x02\x83\x82\x41\x7c\xa0\x80\x44\x48\x68\x58\x78\x44\x64\x54\ \xb4\xa4\x14\x23\x23\x13\x13\x13\x03\xbb\x74\x4c\x6c\x5c\x7c\x42\ \xa2\x8c\x2c\x88\x0b\x14\x60\x60\x97\x4b\x4a\x4e\x48\x49\x4d\x4d\ \x65\x82\x0a\x30\xb0\xf3\xa7\xa5\xa7\x0a\xa5\x42\x01\xc8\x61\xec\ \xf2\x0a\xa9\x4c\x60\x25\x50\x01\x06\x46\x59\x20\x4b\x11\xa8\x1e\ \x28\xce\xc0\x08\x06\x4c\x4a\xca\xcc\x10\x33\x00\x5d\x44\x1f\xb4\ \x29\xc1\xc8\x5b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x02\x95\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x29\ \x50\x4c\x54\x45\x00\x52\x5c\xff\xff\xff\x1e\x1e\x1e\x00\x00\x00\ \x00\x52\x5c\x0b\x5b\x65\x09\x59\x63\x00\x52\x5c\x7f\xb2\xb8\x06\ \x59\x62\x7f\xb2\xb7\x06\x58\x62\x06\x58\x61\x04\x56\x60\x01\x56\ \x60\x00\x52\x5c\x7e\xb1\xb6\x77\xad\xb2\x07\x58\x61\x95\xb9\xbd\ \x12\x5e\x68\x05\x57\x61\x60\x6a\x6b\x77\xa3\xa8\x05\x57\x60\xc5\ \xd8\xda\x5e\x67\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\xe5\ \xe9\xcd\xf6\xf8\x9d\xea\xef\x59\xcd\xd5\xcc\xf5\xf8\x9d\xe9\xee\ \x99\xe5\xea\x96\xe1\xe6\x4a\xbd\xc5\xcc\xf5\xf7\x9c\xe8\xed\x96\ \xe3\xe8\x6b\xd3\xd9\x3a\xbe\xc7\x20\xaf\xb8\x18\x9e\xa7\xcc\xf4\ \xf7\x95\xe5\xea\x69\xd6\xdd\x33\xc1\xc9\x24\xb6\xbe\x1f\xad\xb6\ \x19\xa5\xae\x12\x97\xa0\xc7\xf3\xf6\x65\xd8\xe0\x35\xc6\xcf\x28\ \xbc\xc5\x23\xb3\xbc\x1d\xab\xb4\x18\xa3\xac\x10\x95\x9e\xb3\xee\ \xf2\x39\xcb\xd4\x2c\xc2\xcb\x27\xb9\xc2\x21\xb1\xba\x1c\xa9\xb1\ \x16\xa1\xa9\x10\x93\x9c\xa0\xe9\xed\x33\xc8\xd1\x2b\xbf\xc9\x25\ \xb7\xc0\x1a\xa7\xaf\x15\x9f\xa7\x0f\x91\x9a\x89\xd9\xdd\x31\xc5\ \xcf\x29\xbd\xc6\x24\xb5\xbe\x1e\xac\xb5\x51\xba\xc1\xa5\xda\xdd\ \xcf\xe9\xea\x24\xb2\xbb\x22\xb3\xbb\x1d\xaa\xb3\x59\xbc\xc3\xd0\ \xeb\xed\x64\x71\x72\x19\xa0\xa9\x42\xb2\xb9\xcf\xeb\xec\x1b\x1e\ \x1e\x1e\x1e\x1e\x95\xcf\xd2\x62\x6e\x6f\xff\xff\xff\x3d\x0c\xb1\ \xa1\x00\x00\x00\x1e\x74\x52\x4e\x53\x00\x00\x00\x00\x13\xe7\xf0\ \x16\xfe\xf0\xfe\xf0\xf0\xf2\xf5\x1a\xfe\xfe\xf2\xfb\x1c\xf2\xfe\ \x2d\xf2\xfc\xfe\xde\x86\x89\x84\x72\x6a\xe5\x00\x00\x00\x01\x62\ \x4b\x47\x44\x01\xff\x02\x2d\xde\x00\x00\x00\xc4\x49\x44\x41\x54\ \x18\xd3\x63\x60\x80\x00\x16\x56\x36\x76\x10\xcd\x08\xe7\x73\xc8\ \x71\xb2\x23\x04\x58\x58\xb9\xe4\x15\x14\xb9\xd9\x61\x02\x40\xbe\ \x92\xb2\x8a\xaa\x1a\x0f\x3b\x44\x00\xc8\x57\xd7\xd0\xd4\xd2\xd6\ \xd1\xe5\x05\x0b\x00\xf9\x7a\xfa\x06\x86\x46\xc6\x26\xa6\x7c\xfc\ \x8c\x60\xbe\x99\xb9\x85\xa5\x95\xb5\x8d\x2d\x1f\x3f\x50\x05\x0b\ \xab\x80\x9d\xbd\x83\xa3\x93\xb3\x8b\x2b\x90\x0f\x14\x60\x15\x74\ \x73\xf7\xf0\xd4\xf1\xf2\xf6\x01\xf1\x81\x02\x42\xbe\x7e\xfe\x01\ \x81\x41\xc1\x21\xc2\x22\x8c\x8c\x4c\x4c\x4c\x0c\xec\xa2\xa1\x61\ \xe1\x11\x91\x51\x62\xe2\x20\x2e\x50\x80\x81\x5d\x22\x3a\x26\x36\ \x2e\x3e\x3e\x9e\x09\x2a\xc0\xc0\xce\x9b\x90\x18\xcf\x1f\x0f\x05\ \x20\x87\xb1\x4b\x4a\xc5\x33\x81\x95\x40\x05\x18\x18\xc5\x81\x2c\ \x69\xa0\x7a\xa0\x38\x03\x23\x18\x30\xc9\xc8\x32\x43\xcc\x00\x00\ \xf5\x84\x1c\xb6\x33\xbd\x1a\xf6\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x02\xa1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x32\ \x50\x4c\x54\x45\x00\x52\x5c\xff\xff\xff\x51\x51\x51\x1e\x1e\x1e\ \x4f\x4f\x4f\x45\x45\x45\x04\x56\x60\x00\x52\x5c\x0b\x5b\x65\x09\ \x59\x63\x00\x52\x5c\x7f\xb2\xb8\x06\x59\x62\x7f\xb2\xb7\x06\x58\ \x62\x06\x58\x61\x04\x56\x60\x01\x56\x60\x00\x52\x5c\x05\x59\x62\ \x7e\xb1\xb6\xba\xd1\xd4\x71\x9f\xa4\x77\xad\xb2\x07\x58\x61\x05\ \x57\x61\x05\x57\x60\x4f\x4f\x4f\x00\x56\x5f\x00\x55\x5f\x51\x51\ \x51\xa4\xe5\xe9\xcd\xf6\xf8\x9d\xea\xef\x59\xcd\xd5\xcc\xf5\xf8\ \x9d\xe9\xee\x99\xe5\xea\x96\xe1\xe6\x4a\xbd\xc5\xcc\xf5\xf7\x9c\ \xe8\xed\x96\xe3\xe8\x6b\xd3\xd9\x3a\xbe\xc7\x20\xaf\xb8\x18\x9e\ \xa7\xcc\xf4\xf7\x95\xe5\xea\x69\xd6\xdd\x33\xc1\xc9\x24\xb6\xbe\ \x1f\xad\xb6\x19\xa5\xae\x12\x97\xa0\xc7\xf3\xf6\x65\xd8\xe0\x35\ \xc6\xcf\x28\xbc\xc5\x23\xb3\xbc\x1d\xab\xb4\x18\xa3\xac\x14\x97\ \xa0\xb3\xee\xf2\x39\xcb\xd4\x2c\xc2\xcb\x27\xb9\xc2\x21\xb1\xba\ \x1c\xa9\xb1\x16\xa1\xa9\xc3\xe4\xe6\xa0\xe9\xed\x33\xc8\xd1\x2b\ \xbf\xc9\x25\xb7\xc0\x1a\xa7\xaf\x15\x9f\xa7\xc3\xe3\xe6\x51\x51\ \x51\x1e\x1e\x1e\x89\xd9\xdd\x31\xc5\xcf\x29\xbd\xc6\x24\xb5\xbe\ \x1e\xac\xb5\x19\xa4\xad\x13\x9d\xa5\x11\x92\x9a\x24\xb2\xbb\x22\ \xb3\xbb\x1d\xaa\xb3\x17\xa2\xab\x12\x9b\xa3\x0c\x8e\x96\x19\xa0\ \xa9\x16\xa0\xa9\x11\x99\xa1\x0b\x8c\x95\x0e\x91\x99\x0a\x8b\x93\ \x45\x45\x45\xff\xff\xff\x60\xa4\xbe\x95\x00\x00\x00\x1f\x74\x52\ \x4e\x53\x00\x00\x00\x00\x00\x00\x00\x13\xe7\xf0\x16\xfe\xf0\xfe\ \xf0\xf0\xf2\xf5\x1a\xf5\xfe\xfc\x2b\xfe\xf2\xf2\xf2\xca\xf5\xf5\ \xc5\x08\x24\x2e\x53\x00\x00\x00\x01\x62\x4b\x47\x44\x01\xff\x02\ \x2d\xde\x00\x00\x00\xc6\x49\x44\x41\x54\x18\xd3\x63\x60\x80\x00\ \x76\x0e\x4e\x2e\x10\xcd\x08\xe7\x73\xcb\xf3\x70\x21\x04\xd8\x39\ \x78\x15\x14\x95\xf8\xb8\x60\x02\x40\xbe\xb2\x8a\xaa\x9a\x3a\x3f\ \x17\x44\x00\xc8\xd7\xd0\xd4\xd2\xd6\xd1\xd5\x13\x00\x0b\x00\xf9\ \xfa\x06\x86\x46\xc6\x26\xa6\x66\x82\x42\x8c\x60\xbe\xb9\x85\xa5\ \x95\xb5\x8d\xad\x9d\xb0\x10\x13\x13\x90\x2f\x62\xef\xe0\xe8\xe4\ \xec\xe2\xea\x26\x2a\xc6\x0c\x14\xe0\x10\x77\xf7\xf0\xf4\xd2\xf5\ \xf6\xf1\xf5\xf3\xf7\xf7\xf7\x63\x62\x90\x08\x08\x0c\x0a\x0e\x09\ \x0d\x0b\x17\xf5\x67\x66\x66\xf6\x67\x66\xe0\x92\x8c\x88\x8c\x8a\ \x8e\x89\x15\x16\x03\x0b\xb0\x30\x30\x70\x49\xc5\xc5\x27\x24\x0a\ \x0a\x49\xfb\x83\x80\x34\xd0\x5a\x2e\x81\xa4\x64\x19\x21\xd6\x14\ \xb0\x40\x0a\x03\x58\x44\x56\x88\x01\x24\xc0\x0c\x15\x60\x60\x13\ \x62\x40\x08\x30\x42\x01\x93\x1c\x58\x8b\x1c\x00\xa8\xde\x21\x46\ \x11\x33\xed\x10\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x01\x15\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\ \x00\x00\x8d\x49\x44\x41\x54\x28\xcf\x63\xfc\xcf\x80\x1f\x30\x31\ \x0c\x2a\x05\x01\x5e\xc9\xa7\x12\x3e\xb9\x9d\x92\xf5\x42\x56\xc0\ \xf8\x1f\x2e\x6d\xb0\x55\x9e\xe1\x2f\xc3\x1d\x86\x73\x0c\x27\xbd\ \x3f\x6e\x83\x29\x60\x81\x31\x84\x1b\xe4\x19\xcc\x18\xfe\x32\x30\ \x30\xbc\x60\x10\x69\x60\xd8\x86\x61\xc5\x5f\x8d\xbf\x0c\x7f\x19\ \x98\x21\x50\x03\x61\x05\xdc\x84\x67\x37\xee\x98\x32\x30\x30\x33\ \x3c\x64\x78\xcb\xf0\xf9\x06\x16\x05\xd7\x1b\x18\xb6\xbe\x60\x60\ \x66\x78\xcb\x70\x9b\xe1\x45\x03\x92\x2b\xff\xc3\x21\x9f\x97\xd2\ \x29\xd5\x4f\x12\xa7\x18\xbc\xfe\x23\x89\x32\x0e\x82\xb8\x00\x00\ \xad\x1d\x31\x27\x8f\xe1\xdb\xde\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x02\xbf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x01\x44\ \x50\x4c\x54\x45\x7d\x00\x23\xff\xff\xff\x51\x51\x51\x1e\x1e\x1e\ \x4f\x4f\x4f\x45\x45\x45\x7f\x03\x25\x7d\x00\x23\x84\x09\x2c\x82\ \x07\x2a\x7d\x00\x23\xc2\x68\x84\x82\x06\x29\xc1\x68\x83\x81\x05\ \x28\xc1\x67\x83\x80\x04\x27\xc0\x67\x82\x7f\x03\x26\xc0\x66\x82\ \x7f\x01\x25\x7d\x00\x23\xbf\x66\x82\x81\x05\x27\xbe\x65\x80\xdc\ \xba\xc4\xb7\x71\x84\x83\x09\x2c\xbc\x5f\x7c\x81\x06\x28\x80\x04\ \x27\x80\x05\x27\x80\x03\x26\x7e\x01\x24\x4f\x4f\x4f\x7f\x03\x25\ \x51\x51\x51\xe8\x8f\xae\xf5\xb7\xcd\xec\x98\xb6\xd7\x62\x8a\xf4\ \xb5\xcc\xeb\x97\xb4\xe6\x92\xaf\xe0\x8d\xa9\xc5\x50\x76\xf3\xb5\ \xca\xea\x96\xb3\xe4\x8f\xac\xd7\x6d\x90\xc4\x45\x6e\xb7\x2f\x59\ \xa9\x23\x4b\xf2\xb4\xca\xe7\x91\xaf\xdb\x6e\x93\xc9\x43\x6f\xbe\ \x35\x60\xb5\x2d\x57\xac\x25\x4d\xa0\x1a\x41\xf0\xaf\xc6\xdf\x6e\ \x95\xcf\x47\x74\xc5\x3b\x68\xbb\x33\x5e\xb2\x2a\x54\xa9\x22\x4b\ \xa0\x1d\x42\xeb\x9b\xb7\xd6\x4e\x7c\xcb\x41\x6f\xc2\x39\x65\xb9\ \x30\x5b\xb0\x28\x52\xa7\x20\x48\xe6\xc5\xce\xe7\x87\xa8\xd2\x48\ \x77\xc9\x3e\x6c\xc0\x36\x62\xb6\x2e\x58\xad\x26\x4f\xa4\x1e\x46\ \xe5\xc4\xce\x51\x51\x51\x1e\x1e\x1e\xda\x71\x94\xd0\x45\x74\xc6\ \x3c\x69\xbd\x34\x60\xb4\x2c\x56\xab\x24\x4c\xa2\x1c\x43\x99\x17\ \x3c\xbe\x35\x61\xbb\x32\x5d\xb1\x2a\x53\xa8\x22\x4a\x96\x11\x37\ \xaa\x23\x4d\xa6\x20\x47\x9e\x18\x3f\x94\x10\x34\x98\x14\x3a\x92\ \x0f\x33\x45\x45\x45\xff\xff\xff\xc7\xbe\x39\x34\x00\x00\x00\x25\ \x74\x52\x4e\x53\x00\x00\x00\x00\x00\x00\x00\x13\xe7\xf0\x16\xfe\ \xf0\xfe\xf0\xfe\xf0\xfe\xf2\xfe\xf5\x1a\xfe\xf5\xfe\xfc\x2b\xe7\ \xfe\xf2\xf2\xf5\xf2\xf5\xca\xf2\xc5\x8c\x42\x96\x19\x00\x00\x00\ \x01\x62\x4b\x47\x44\x01\xff\x02\x2d\xde\x00\x00\x00\xcc\x49\x44\ \x41\x54\x18\xd3\x63\x60\x80\x00\x76\x0e\x4e\x2e\x10\xcd\x08\xe7\ \x73\xab\xf2\x70\x21\x04\xd8\x39\x78\xd5\xd4\x35\xf8\xb8\x60\x02\ \xec\x1c\xfc\x9a\x5a\xda\x3a\xba\x02\x5c\x10\x01\x76\x0e\x41\x3d\ \x7d\x03\x43\x23\x63\x13\x21\xb0\x00\x3b\x87\xb0\xa9\x99\xb9\x85\ \xa5\x95\xb5\x8d\x88\x28\x23\x88\x2f\x66\x6b\x67\xef\xe0\xe8\xe4\ \xec\x22\x2e\xca\xc4\x04\xe4\x4b\xb8\xba\xb9\x7b\x78\x7a\x79\xfb\ \x48\x4a\x31\x03\x05\xa4\x65\x7c\xfd\xfc\x03\x02\x83\x82\x43\x42\ \xc3\xc2\xc2\x42\x99\x18\x64\xc3\x23\x22\xa3\xa2\x63\x62\xe3\x24\ \xc3\x98\x99\x99\xc3\x98\x19\xb8\xe4\xe2\x13\x12\x93\x6c\x92\xe5\ \xa5\xc0\x02\x2c\x0c\x0c\x5c\x0a\x29\xa9\x69\xe9\x8a\xa2\x4a\x61\ \x20\xa0\x04\xb4\x96\x4b\x28\x23\x53\x51\x94\x35\x0b\x2c\x90\x05\ \x72\x18\x97\xb2\xa2\x28\x03\x48\x80\x19\x2a\xc0\xc0\x26\xca\x80\ \x10\x60\x84\x02\x26\x15\xb0\x16\x15\x00\x24\x28\x24\xaa\xdc\x05\ \xeb\x29\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x41\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\xce\x49\x44\ \x41\x54\x28\xcf\xa5\x91\x41\x8a\xc2\x30\x14\x86\xbf\xd6\xee\x85\ \x61\x62\x11\x77\xcd\x6a\x06\xba\xf0\x00\xb9\x84\x37\xe8\x41\xdc\ \x0e\xde\xc2\x23\x55\x0a\x2e\xc6\xa1\x5d\x88\x45\x82\x7b\x65\x1a\ \x63\x5c\x34\x4a\xcb\xc0\x28\x98\x40\xde\x07\xff\x83\xf7\x3e\x12\ \x38\xfe\x3f\xe1\x83\x9c\xc8\xd7\x09\x09\x82\x03\x15\xdc\xa9\xee\ \x36\x24\x5f\xcb\x46\x0e\xca\x79\x06\xf3\xe5\x49\x46\xe5\x22\xeb\ \x37\x88\x46\x5a\x8c\x44\xc0\x49\x5a\x8e\x12\xd1\x1f\x81\xe5\xc2\ \x05\x80\x5f\x4a\xb6\x7f\x96\xd4\xd1\xc6\x32\xd8\xa0\xd1\x3f\xab\ \x8a\x61\x8e\x6e\x83\xc0\x6b\x8e\x49\x88\xd1\x7e\xc9\x96\xf6\xdd\ \x11\x21\x61\xe7\xbd\x11\x80\x6b\xaf\x9a\xad\x53\xa7\x0a\xa7\x9c\ \x9a\x16\x23\xf7\x51\x38\xd5\x26\x77\x8b\xef\xcf\x33\x75\x8a\x80\ \x5d\x7a\xa3\x9e\x85\xc1\x70\xf6\x64\x3d\xf5\x2c\xde\x72\xc3\x7b\ \x8e\x46\xc7\xb9\x21\x7e\xde\x22\x78\xf9\x37\xaf\x5b\x6f\x59\x33\ \x71\xb8\xa6\x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ " qt_resource_name = b"\ \x00\x13\ \x01\x7f\xd5\xb3\ \x00\x70\ \x00\x79\x00\x71\x00\x6f\x00\x64\x00\x65\x00\x5f\x00\x70\x00\x79\x00\x74\x00\x68\x00\x6f\x00\x6e\x00\x5f\x00\x69\x00\x63\x00\x6f\ \x00\x6e\x00\x73\ \x00\x02\ \x00\x00\x07\x83\ \x00\x72\ \x00\x63\ \x00\x07\ \x0c\x85\x57\xa7\ \x00\x76\ \x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x04\x31\xad\x56\ \x00\x73\ \x00\x70\x00\x69\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x2e\x00\x67\x00\x69\x00\x66\ \x00\x08\ \x0c\x46\x5a\xe7\ \x00\x66\ \x00\x75\x00\x6e\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x08\xa6\x83\x07\ \x00\x63\ \x00\x6c\x00\x61\x00\x73\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x02\xee\x7a\x07\ \x00\x66\ \x00\x75\x00\x6e\x00\x63\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x06\xf6\x5b\xa7\ \x00\x76\ \x00\x61\x00\x72\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x06\x98\x5b\xa7\ \x00\x76\ \x00\x61\x00\x72\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x76\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x06\x64\xf6\x87\ \x00\x6b\ \x00\x65\x00\x79\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x02\x80\x7a\x07\ \x00\x66\ \x00\x75\x00\x6e\x00\x63\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x76\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0e\x93\xc2\x47\ \x00\x6e\ \x00\x61\x00\x6d\x00\x65\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x2c\x00\x02\x00\x00\x00\x0a\x00\x00\x00\x03\ \x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x12\x84\ \x00\x00\x00\x94\x00\x00\x00\x00\x00\x01\x00\x00\x09\x78\ \x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x02\x5b\ \x00\x00\x00\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x11\x6b\ \x00\x00\x00\xd2\x00\x00\x00\x00\x00\x01\x00\x00\x0e\xc6\ \x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x2d\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x07\x79\ \x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x05\x00\ \x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x15\x47\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()Turing-0.11-beta/pyqode/python/backend/000077500000000000000000000000001331472757200200405ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/backend/__init__.py000066400000000000000000000013321331472757200221500ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ The backend package contains everything needed to implement the server side of a python editor. """ from .workers import calltips from .workers import defined_names from .workers import goto_assignments from .workers import icon_from_typename from .workers import quick_doc from .workers import run_pyflakes # for backward compatibility, will be removed in a future release from .workers import run_pyflakes as run_frosted from .workers import run_pep8 from .workers import JediCompletionProvider __all__ = [ 'calltips', 'defined_names', 'goto_assignments', 'icon_from_typename', 'quick_doc', 'run_pyflakes', 'run_frosted', 'run_pep8', 'JediCompletionProvider' ] Turing-0.11-beta/pyqode/python/backend/pep8utils.py000066400000000000000000000013771331472757200223570ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains utility classes for interacting with the pep8 module using strings instread of files. This allow live checking on code without the need to save. """ import pep8 class CustomReport(pep8.StandardReport): """ Custom report used to get the pep8 results as a list of string. This is easier to handler then retrieving the stdout and parsing. """ def get_file_results(self): self._deferred_print.sort() return self._deferred_print class CustomChecker(pep8.Checker): """ Custom Checker with our Custom report. """ def __init__(self, *args, **kwargs): super(CustomChecker, self).__init__( *args, report=CustomReport(kwargs.pop("options")), **kwargs) Turing-0.11-beta/pyqode/python/backend/server.py000066400000000000000000000027751331472757200217330ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- """ Main server script for a pyqode.python backend. You can directly use this script in your application if it fits your needs or use it as a starting point for writing your own server. :: usage: server.py [-h] [-s [SYSPATH [SYSPATH ...]]] port positional arguments: port the local tcp port to use to run the server optional arguments: -h, --help show this help message and exit -s [SYSPATH [SYSPATH ...]], --syspath [SYSPATH [SYSPATH ...]] """ import argparse import logging import sys if __name__ == '__main__': """ Server process' entry point """ logging.basicConfig() # setup argument parser and parse command line args parser = argparse.ArgumentParser() parser.add_argument("port", help="the local tcp port to use to run " "the server") parser.add_argument('-s', '--syspath', nargs='*') args = parser.parse_args() # add user paths to sys.path if args.syspath: for path in args.syspath: print('append path %s to sys.path' % path) sys.path.append(path) from pyqode.core import backend from pyqode.python.backend.workers import JediCompletionProvider # setup completion providers backend.CodeCompletionWorker.providers.append(JediCompletionProvider()) backend.CodeCompletionWorker.providers.append( backend.DocumentWordsProvider()) # starts the server backend.serve_forever(args) Turing-0.11-beta/pyqode/python/backend/workers.py000066400000000000000000000250171331472757200221130ustar00rootroot00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- """ Contains the worker classes/functions executed on the server side. """ import logging import os import tempfile import jedi from pyqode.core.share import Definition from pyflakes import messages def _logger(): """ Returns the module's logger """ return logging.getLogger(__name__) def calltips(request_data): """ Worker that returns a list of calltips. A calltips is a tuple made of the following parts: - module_name: name of the module of the function invoked - call_name: name of the function that is being called - params: the list of parameter names. - index: index of the current parameter - bracket_start :returns tuple(module_name, call_name, params) """ code = request_data['code'] line = request_data['line'] + 1 column = request_data['column'] path = request_data['path'] # encoding = request_data['encoding'] encoding = 'utf-8' # use jedi to get call signatures script = jedi.Script(code, line, column, path, encoding) signatures = script.call_signatures() for sig in signatures: results = (str(sig.module_name), str(sig.name), [p.description for p in sig.params], sig.index, sig.bracket_start, column) # todo: add support for multiple signatures, for that we need a custom # widget for showing calltips. return results return [] def goto_assignments(request_data): """ Go to assignements worker. """ code = request_data['code'] line = request_data['line'] + 1 column = request_data['column'] path = request_data['path'] # encoding = request_data['encoding'] encoding = 'utf-8' script = jedi.Script(code, line, column, path, encoding) try: definitions = script.goto_assignments() except jedi.NotFoundError: pass else: ret_val = [(d.module_path, d.line - 1 if d.line else None, d.column, d.full_name) for d in definitions] return ret_val _old_definitions = {} def _extract_def(d, path): d_line, d_column = d.start_pos # use full name for import type if d.type == 'function': try: params = [p.name for p in d.params] name = d.name + '(' + ', '.join(params) + ')' except AttributeError: name = d.name else: name = d.name definition = Definition(name, d_line - 1, d_column, icon_from_typename(d.name, d.type), file_path=path) # check for methods in class or nested methods/classes if d.type == "class" or d.type == 'function': try: sub_definitions = d.defined_names() for sub_d in sub_definitions: if (d.type == 'function' and sub_d.type == 'function') or \ d.type == 'class': definition.add_child(_extract_def(sub_d, path)) except (AttributeError, IndexError): pass return definition def defined_names(request_data): """ Returns the list of defined names for the document. """ global _old_definitions ret_val = [] path = request_data['path'] toplvl_definitions = jedi.defined_names( request_data['code'], path, 'utf-8') for d in toplvl_definitions: definition = _extract_def(d, path) if d.type != 'import': ret_val.append(definition) ret_val = [d.to_dict() for d in ret_val] return ret_val def quick_doc(request_data): """ Worker that returns the documentation of the symbol under cursor. """ code = request_data['code'] line = request_data['line'] + 1 column = request_data['column'] path = request_data['path'] # encoding = 'utf-8' encoding = 'utf-8' script = jedi.Script(code, line, column, path, encoding) try: definitions = script.goto_definitions() except jedi.NotFoundError: return [] else: ret_val = [d.doc for d in definitions] return ret_val def run_pep8(request_data): """ Worker that run the pep8 tool on the current editor text. :returns a list of tuples (msg, msg_type, line_number) """ import pep8 from pyqode.python.backend.pep8utils import CustomChecker WARNING = 1 code = request_data['code'] path = request_data['path'] max_line_length = request_data['max_line_length'] ignore_rules = request_data['ignore_rules'] ignore_rules += ['W291', 'W292', 'W293', 'W391'] pep8.MAX_LINE_LENGTH = max_line_length # setup our custom style guide with our custom checker which returns a list # of strings instread of spitting the results at stdout pep8style = pep8.StyleGuide(parse_argv=False, config_file='', checker_class=CustomChecker) try: results = pep8style.input_file(path, lines=code.splitlines(True)) except Exception: _logger().exception('Failed to run PEP8 analysis with data=%r' % request_data) return [] else: messages = [] for line_number, offset, code, text, doc in results: if code in ignore_rules: continue messages.append(('[PEP8] %s: %s' % (code, text), WARNING, line_number - 1)) return messages PYFLAKES_ERROR_MESSAGES = [ messages.DoctestSyntaxError, messages.ReturnWithArgsInsideGenerator, messages.UndefinedExport, messages.UndefinedName, messages.UndefinedLocal ] def run_pyflakes(request_data): """ Worker that run a frosted (the fork of pyflakes) code analysis on the current editor text. """ global prev_results from pyflakes import checker import _ast WARNING = 1 ERROR = 2 ret_val = [] code = request_data['code'] path = request_data['path'] encoding = request_data['encoding'] if not encoding: encoding = 'utf-8' if not path: path = os.path.join(tempfile.gettempdir(), 'temp.py') if not code: return [] else: # First, compile into an AST and handle syntax errors. try: tree = compile(code.encode(encoding), path, "exec", _ast.PyCF_ONLY_AST) except SyntaxError as value: msg = '[pyFlakes] %s' % value.args[0] (lineno, offset, text) = value.lineno - 1, value.offset, value.text # If there's an encoding problem with the file, the text is None if text is None: # Avoid using msg, since for the only known case, it # contains a bogus message that claims the encoding the # file declared was unknown.s _logger().warning("[SyntaxError] %s: problem decoding source", path) else: ret_val.append((msg, ERROR, lineno)) else: # Okay, it's syntactically valid. Now check it. w = checker.Checker(tree, os.path.split(path)[1]) w.messages.sort(key=lambda m: m.lineno) for message in w.messages: msg = "[pyFlakes] %s" % str(message).split(':')[-1].strip() line = message.lineno - 1 status = WARNING \ if message.__class__ not in PYFLAKES_ERROR_MESSAGES \ else ERROR ret_val.append((msg, status, line)) prev_results = ret_val return ret_val ICON_CLASS = ('code-class', ':/pyqode_python_icons/rc/class.png') ICON_FUNC = ('code-function', ':/pyqode_python_icons/rc/func.png') ICON_FUNC_PRIVATE = ('code-function', ':/pyqode_python_icons/rc/func_priv.png') ICON_FUNC_PROTECTED = ('code-function', ':/pyqode_python_icons/rc/func_prot.png') ICON_NAMESPACE = ('code-context', ':/pyqode_python_icons/rc/namespace.png') ICON_VAR = ('code-variable', ':/pyqode_python_icons/rc/var.png') ICON_KEYWORD = ('quickopen', ':/pyqode_python_icons/rc/keyword.png') def icon_from_typename(name, icon_type): """ Returns the icon resource filename that corresponds to the given typename. :param name: name of the completion. Use to make the distinction between public and private completions (using the count of starting '_') :pram typename: the typename reported by jedi :returns: The associate icon resource filename or None. """ ICONS = { 'CLASS': ICON_CLASS, 'IMPORT': ICON_NAMESPACE, 'STATEMENT': ICON_VAR, 'FORFLOW': ICON_VAR, 'FORSTMT': ICON_VAR, 'WITHSTMT': ICON_VAR, 'GLOBALSTMT': ICON_VAR, 'MODULE': ICON_NAMESPACE, 'KEYWORD': ICON_KEYWORD, 'PARAM': ICON_VAR, 'ARRAY': ICON_VAR, 'INSTANCEELEMENT': ICON_VAR, 'INSTANCE': ICON_VAR, 'PARAM-PRIV': ICON_VAR, 'PARAM-PROT': ICON_VAR, 'FUNCTION': ICON_FUNC, 'DEF': ICON_FUNC, 'FUNCTION-PRIV': ICON_FUNC_PRIVATE, 'FUNCTION-PROT': ICON_FUNC_PROTECTED } ret_val = None icon_type = icon_type.upper() # jedi 0.8 introduced NamedPart class, which have a string instead of being # one if hasattr(name, "string"): name = name.string if icon_type == "FORFLOW" or icon_type == "STATEMENT": icon_type = "PARAM" if icon_type == "PARAM" or icon_type == "FUNCTION": if name.startswith("__"): icon_type += "-PRIV" elif name.startswith("_"): icon_type += "-PROT" if icon_type in ICONS: ret_val = ICONS[icon_type] elif icon_type: _logger().warning("Unimplemented completion icon_type: %s", icon_type) return ret_val class JediCompletionProvider: """ Provides code completion using the awesome `jedi`_ library .. _`jedi`: https://github.com/davidhalter/jedi """ @staticmethod def complete(code, line, column, path, encoding, prefix): """ Completes python code using `jedi`_. :returns: a list of completion. """ ret_val = [] try: script = jedi.Script(code, line + 1, column, path, encoding) completions = script.completions() print('completions: %r' % completions) except jedi.NotFoundError: completions = [] for completion in completions: ret_val.append({ 'name': completion.name, 'icon': icon_from_typename( completion.name, completion.type), 'tooltip': completion.description}) return ret_val Turing-0.11-beta/pyqode/python/designer_plugin.py000066400000000000000000000010441331472757200222000ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This file contains all the pyQode QtDesigner plugins. Installation: ================== run designer.pyw (Qt Designer must be installed on your system and must be in your path on Windows) """ # This only works with PyQt, PySide does not support the QtDesigner module from pyqode.python.widgets.code_edit import PyCodeEdit from pyqode.core._designer_plugins import WidgetPlugin class PyCodeEditPlugin(WidgetPlugin): def klass(self): return PyCodeEdit def objectName(self): return 'pyCodeEdit' Turing-0.11-beta/pyqode/python/folding.py000066400000000000000000000066521331472757200204560ustar00rootroot00000000000000""" This module contains the python code fold detector. """ import re from pyqode.core.api import IndentFoldDetector, TextBlockHelper, TextHelper class PythonFoldDetector(IndentFoldDetector): """ Python specific fold detector. Python is an indent based language so we use indentation for detecting the outline but we discard regions with higher indentation if they do not follow a trailing ':'. That way, only the real logical blocks are displayed. We also add some trickery to make import regions and docstring appear with an higher fold level than they should be (in order to make them foldable). """ #: regex which identifies a single line docstring _single_line_docstring = re.compile(r'""".*"""') def _strip_comments(self, prev_block): txt = prev_block.text().strip() if prev_block else '' if txt.find('#') != -1: txt = txt[:txt.find('#')].strip() return txt def _handle_docstrings(self, block, lvl, prev_block): if block.docstring: is_start = block.text().strip().startswith('"""') if is_start: TextBlockHelper.get_fold_lvl(prev_block) + 1 else: pblock = block.previous() while pblock.isValid() and pblock.text().strip() == '': pblock = pblock.previous() is_start = pblock.text().strip().startswith('"""') if is_start: return TextBlockHelper.get_fold_lvl(pblock) + 1 else: return TextBlockHelper.get_fold_lvl(pblock) # fix end of docstring elif prev_block and prev_block.text().strip().endswith('"""'): single_line = self._single_line_docstring.match( prev_block.text().strip()) if single_line: TextBlockHelper.set_fold_lvl(prev_block, lvl) else: TextBlockHelper.set_fold_lvl( prev_block, TextBlockHelper.get_fold_lvl( prev_block.previous())) return lvl def _handle_imports(self, block, lvl, prev_block): txt = block.text() indent = len(txt) - len(txt.lstrip()) if (hasattr(block, 'import_stmt') and prev_block and 'import ' in prev_block.text() and indent == 0): return 1 return lvl def detect_fold_level(self, prev_block, block): """ Perfoms fold level detection for current block (take previous block into account). :param prev_block: previous block, None if `block` is the first block. :param block: block to analyse. :return: block fold level """ # Python is an indent based language so use indentation for folding # makes sense but we restrict new regions to indentation after a ':', # that way only the real logical blocks are displayed. lvl = super(PythonFoldDetector, self).detect_fold_level( prev_block, block) # cancel false indentation, indentation can only happen if there is # ':' on the previous line prev_lvl = TextBlockHelper.get_fold_lvl(prev_block) if prev_block and lvl > prev_lvl and not ( self._strip_comments(prev_block).endswith(':')): lvl = prev_lvl lvl = self._handle_docstrings(block, lvl, prev_block) lvl = self._handle_imports(block, lvl, prev_block) return lvl Turing-0.11-beta/pyqode/python/managers/000077500000000000000000000000001331472757200202465ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/managers/__init__.py000066400000000000000000000001771331472757200223640ustar00rootroot00000000000000""" This module contains some python specific managers. """ from .file import PyFileManager __all__ = [ 'PyFileManager' ] Turing-0.11-beta/pyqode/python/managers/file.py000066400000000000000000000050461331472757200215440ustar00rootroot00000000000000""" Contains the python specific FileManager. """ import ast import re from pyqode.core.api import TextBlockHelper from pyqode.core.managers import FileManager class PyFileManager(FileManager): """ Extends file manager to override detect_encoding. With python, we can detect encoding by reading the two first lines of a file and extracting its encoding tag. """ #: True to fold import statements on open. fold_imports = False #: True to fold docstring on open fold_docstrings = False def detect_encoding(self, path): """ For the implementation of encoding definitions in Python, look at: - http://www.python.org/dev/peps/pep-0263/ .. note:: code taken and adapted from ```jedi.common.source_to_unicode.detect_encoding``` """ with open(path, 'rb') as file: source = file.read() # take care of line encodings (not in jedi) source = source.replace(b'\r', b'') source_str = str(source).replace('\\n', '\n') byte_mark = ast.literal_eval(r"b'\xef\xbb\xbf'") if source.startswith(byte_mark): # UTF-8 byte-order mark return 'utf-8' first_two_lines = re.match(r'(?:[^\n]*\n){0,2}', source_str).group(0) possible_encoding = re.search(r"coding[=:]\s*([-\w.]+)", first_two_lines) if possible_encoding: return possible_encoding.group(1) return 'UTF-8' def open(self, path, encoding=None, use_cached_encoding=True): encoding = self.detect_encoding(path) super(PyFileManager, self).open( path, encoding=encoding, use_cached_encoding=use_cached_encoding) try: folding_panel = self.editor.panels.get('FoldingPanel') except KeyError: pass else: # fold imports and/or docstrings blocks_to_fold = [] sh = self.editor.syntax_highlighter if self.fold_imports and sh.import_statements: blocks_to_fold += sh.import_statements if self.fold_docstrings and sh.docstrings: blocks_to_fold += sh.docstrings for block in blocks_to_fold: if TextBlockHelper.is_fold_trigger(block): folding_panel.toggle_fold_trigger(block) def clone_settings(self, original): super(PyFileManager, self).clone_settings(original) self.fold_docstrings = original.fold_docstrings self.fold_imports = original.fold_imports Turing-0.11-beta/pyqode/python/modes/000077500000000000000000000000001331472757200175605ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/modes/__init__.py000066400000000000000000000022421331472757200216710ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains a series of python specific modes (calltips, autoindent, code linting,...). """ from .autocomplete import PyAutoCompleteMode from .autoindent import PyAutoIndentMode from .calltips import CalltipsMode from .comments import CommentsMode from .frosted_checker import PyFlakesChecker # for backward compatibility, will be removed in a future release from .frosted_checker import PyFlakesChecker as FrostedCheckerMode from .goto_assignements import Assignment from .goto_assignements import GoToAssignmentsMode from .indenter import PyIndenterMode from .sh import PythonSH from .pep8_checker import PEP8CheckerMode try: # load pyqode.python resources (code completion icons) from pyqode.python._forms import pyqode_python_icons_rc # DO NOT REMOVE!!! except ImportError: # PyQt/PySide might not be available for the interpreter that run the # backend pass __all__ = [ 'Assignment', 'CalltipsMode', 'CommentsMode', 'PyFlakesChecker', 'FrostedCheckerMode', 'GoToAssignmentsMode', 'PEP8CheckerMode', 'PyAutoCompleteMode', 'PyAutoIndentMode', 'PyIndenterMode', 'PythonSH', ] Turing-0.11-beta/pyqode/python/modes/autocomplete.py000066400000000000000000000036051331472757200226370ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the python autocomplete mode """ from pyqode.core.api import TextHelper from pyqode.core.modes import AutoCompleteMode class PyAutoCompleteMode(AutoCompleteMode): """ Auto complete parentheses and method definitions. Extends :class:`pyqode.core.modes.AutoCompleteMode` to add support for method/function call: - function completion adds "):" to the function definition. - method completion adds "self):" to the method definition. """ def _in_method_call(self): helper = TextHelper(self.editor) line_nbr = helper.current_line_nbr() - 1 expected_indent = helper.line_indent() - 4 while line_nbr >= 0: text = helper.line_text(line_nbr) indent = len(text) - len(text.lstrip()) if indent == expected_indent and 'class' in text: return True line_nbr -= 1 return False def _handle_fct_def(self): if self._in_method_call(): th = TextHelper(self.editor) if '@classmethod' in th.line_text(th.current_line_nbr() - 1): txt = "cls):" else: txt = "self):" else: txt = "):" cursor = self.editor.textCursor() cursor.insertText(txt) cursor.movePosition(cursor.Left, cursor.MoveAnchor, 2) self.editor.setTextCursor(cursor) def _on_post_key_pressed(self, event): # if we are in disabled cc, use the parent implementation helper = TextHelper(self.editor) if (event.text() == "(" and helper.current_line_text().lstrip().startswith("def ")): self._handle_fct_def() else: line = TextHelper(self.editor).current_line_text().strip() if not line.endswith(('"""', "'''")): super(PyAutoCompleteMode, self)._on_post_key_pressed(event) Turing-0.11-beta/pyqode/python/modes/autoindent.py000066400000000000000000000340321331472757200223060ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains smart indent modes """ import re from pyqode.core.api import TextHelper, get_block_symbol_data from pyqode.qt.QtGui import QTextCursor from pyqode.core.modes import AutoIndentMode, SymbolMatcherMode from pyqode.core.modes.matcher import CLOSE, PAREN, SQUARE, BRACE, OPEN class PyAutoIndentMode(AutoIndentMode): """ Automatically indents text, respecting the PEP8 conventions. Customised :class:`pyqode.core.modes.AutoIndentMode` for python that tries its best to follow the pep8 indentation guidelines. """ def __init__(self): super(PyAutoIndentMode, self).__init__() self._helper = None def on_install(self, editor): super(PyAutoIndentMode, self).on_install(editor) self._helper = TextHelper(editor) def _get_indent(self, cursor): ln, column = self._helper.cursor_position() fullline = self._get_full_line(cursor).rstrip() line = fullline[:column] pre, post = AutoIndentMode._get_indent(self, cursor) if self._at_block_start(cursor, line): return pre, post # return pressed in comments c2 = QTextCursor(cursor) if c2.atBlockEnd(): c2.movePosition(c2.Left) if (self._helper.is_comment_or_string( c2, formats=['comment', 'docstring']) or fullline.endswith(('"""', "'''"))): if line.strip().startswith("#") and column != len(fullline): post += '# ' return pre, post # between parens elif self._between_paren(cursor, column): return self._handle_indent_between_paren( column, line, (pre, post), cursor) else: lastword = self._get_last_word(cursor) lastwordu = self._get_last_word_unstripped(cursor) end_with_op = fullline.endswith( ('+', '-', '*', '/', '=', ' and', ' or', '%')) in_string_def, char = self._is_in_string_def(fullline, column) if in_string_def: post, pre = self._handle_indent_inside_string( char, cursor, fullline, post) elif (fullline.rstrip().endswith(":") and lastword.rstrip().endswith(':') and self._at_block_end(cursor, fullline)): post = self._handle_new_scope_indentation( cursor, fullline) elif line.endswith("\\"): # if user typed \ and press enter -> indent is always # one level higher post += self.editor.tab_length * " " elif (fullline.endswith((')', '}', ']')) and lastword.endswith((')', '}', ']'))): post = self._handle_indent_after_paren(cursor, post) elif (not fullline.endswith("\\") and (end_with_op or not self._at_block_end(cursor, fullline))): post, pre = self._handle_indent_in_statement( fullline, lastwordu, post, pre) elif ((self._at_block_end(cursor, fullline) and fullline.strip().startswith('return')) or lastword == "pass"): post = post[:-self.editor.tab_length] return pre, post @staticmethod def _is_in_string_def(full_line, column): count = 0 char = "'" for i in range(len(full_line)): if full_line[i] == "'" or full_line[i] == '"': count += 1 if full_line[i] == '"' and i < column: char = '"' count_after_col = 0 for i in range(column, len(full_line)): if full_line[i] == "'" or full_line[i] == '"': count_after_col += 1 return count % 2 == 0 and count_after_col % 2 == 1, char @staticmethod def _is_paren_open(paren): return (paren.character == "(" or paren.character == "[" or paren.character == '{') @staticmethod def _is_paren_closed(paren): return (paren.character == ")" or paren.character == "]" or paren.character == '}') @staticmethod def _get_full_line(tc): tc2 = QTextCursor(tc) tc2.select(QTextCursor.LineUnderCursor) full_line = tc2.selectedText() return full_line def _parens_count_for_block(self, col, block): open_p = [] closed_p = [] lists = get_block_symbol_data(self.editor, block) for symbols in lists: for paren in symbols: if paren.position >= col: continue if self._is_paren_open(paren): if not col: return -1, -1, [], [] open_p.append(paren) if self._is_paren_closed(paren): closed_p.append(paren) return len(open_p), len(closed_p), open_p, closed_p def _between_paren(self, tc, col): try: self.editor.modes.get('SymbolMatcherMode') except KeyError: return False block = tc.block() nb_open = nb_closed = 0 while block.isValid() and block.text().strip(): o, c, _, _ = self._parens_count_for_block(col, block) nb_open += o nb_closed += c block = block.previous() col = len(block.text()) return nb_open > nb_closed @staticmethod def _get_last_word(tc): tc2 = QTextCursor(tc) tc2.movePosition(QTextCursor.Left, tc.KeepAnchor, 1) tc2.movePosition(QTextCursor.WordLeft, tc.KeepAnchor) w = tc2.selectedText().strip() return w @staticmethod def _get_last_word_unstripped(tc): tc2 = QTextCursor(tc) tc2.movePosition(QTextCursor.Left, tc.KeepAnchor, 1) tc2.movePosition(QTextCursor.WordLeft, tc.KeepAnchor) return tc2.selectedText() def _get_indent_of_opening_paren(self, tc): tc.movePosition(tc.Left, tc.KeepAnchor) char = tc.selectedText() tc.movePosition(tc.Right, tc.MoveAnchor) mapping = { ')': (OPEN, PAREN), ']': (OPEN, SQUARE), '}': (OPEN, BRACE) } try: character, char_type = mapping[char] except KeyError: return None else: ol, oc = self.editor.modes.get(SymbolMatcherMode).symbol_pos( tc, character, char_type) line = self._helper.line_text(ol) return len(line) - len(line.lstrip()) def _get_first_open_paren(self, tc, column): pos = None char = None ln = tc.blockNumber() tc_trav = QTextCursor(tc) mapping = { '(': (CLOSE, PAREN), '[': (CLOSE, SQUARE), '{': (CLOSE, BRACE) } while ln >= 0 and tc.block().text().strip(): tc_trav.movePosition(tc_trav.StartOfLine, tc_trav.MoveAnchor) lists = get_block_symbol_data(self.editor, tc_trav.block()) all_symbols = [] for symbols in lists: all_symbols += [s for s in symbols] symbols = sorted(all_symbols, key=lambda x: x.position) for paren in reversed(symbols): if paren.position < column: if self._is_paren_open(paren): if paren.position > column: continue else: pos = tc_trav.position() + paren.position char = paren.character # ensure it does not have a closing paren on # the same line tc3 = QTextCursor(tc) tc3.setPosition(pos) try: ch, ch_type = mapping[paren.character] l, c = self.editor.modes.get( SymbolMatcherMode).symbol_pos( tc3, ch, ch_type) except KeyError: continue if l == ln and c < column: continue return pos, char # check previous line tc_trav.movePosition(tc_trav.Up, tc_trav.MoveAnchor) ln = tc_trav.blockNumber() column = len(self._helper.line_text(ln)) return pos, char def _get_paren_pos(self, tc, column): pos, char = self._get_first_open_paren(tc, column) mapping = {'(': PAREN, '[': SQUARE, '{': BRACE} tc2 = QTextCursor(tc) tc2.setPosition(pos) import sys ol, oc = self.editor.modes.get(SymbolMatcherMode).symbol_pos( tc2, OPEN, mapping[char]) cl, cc = self.editor.modes.get(SymbolMatcherMode).symbol_pos( tc2, CLOSE, mapping[char]) return (ol, oc), (cl, cc) @staticmethod def _get_next_char(tc): tc2 = QTextCursor(tc) tc2.movePosition(QTextCursor.NextCharacter, QTextCursor.KeepAnchor) char = tc2.selectedText() return char @staticmethod def _get_prev_char(tc): tc2 = QTextCursor(tc) tc2.movePosition(QTextCursor.PreviousCharacter, QTextCursor.KeepAnchor) char = tc2.selectedText() while char == ' ': tc2.movePosition(tc2.PreviousCharacter, tc2.KeepAnchor) char = tc2.selectedText() return char.strip() def _handle_indent_between_paren(self, column, line, parent_impl, tc): """ Handle indent between symbols such as parenthesis, braces,... """ pre, post = parent_impl next_char = self._get_next_char(tc) prev_char = self._get_prev_char(tc) prev_open = prev_char in ['[', '(', '{'] next_close = next_char in [']', ')', '}'] (open_line, open_symbol_col), (close_line, close_col) = \ self._get_paren_pos(tc, column) open_line_txt = self._helper.line_text(open_line) open_line_indent = len(open_line_txt) - len(open_line_txt.lstrip()) if prev_open: post = (open_line_indent + self.editor.tab_length) * ' ' elif next_close and prev_char != ',': post = open_line_indent * ' ' elif tc.block().blockNumber() == open_line: post = open_symbol_col * ' ' # adapt indent if cursor on closing line and next line have same # indent -> PEP8 compliance if close_line and close_col: txt = self._helper.line_text(close_line) bn = tc.block().blockNumber() flg = bn == close_line next_indent = self._helper.line_indent(bn + 1) * ' ' if flg and txt.strip().endswith(':') and next_indent == post: # | look at how the previous line ( ``':'):`` ) was # over-indented, this is actually what we are trying to # achieve here post += self.editor.tab_length * ' ' # breaking string if next_char in ['"', "'"]: tc.movePosition(tc.Left) is_string = self._helper.is_comment_or_string(tc, formats=['string']) if next_char in ['"', "'"]: tc.movePosition(tc.Right) if is_string: trav = QTextCursor(tc) while self._helper.is_comment_or_string( trav, formats=['string']): trav.movePosition(trav.Left) trav.movePosition(trav.Right) symbol = '%s' % self._get_next_char(trav) pre += symbol post += symbol return pre, post @staticmethod def _at_block_start(tc, line): """ Improve QTextCursor.atBlockStart to ignore spaces """ if tc.atBlockStart(): return True column = tc.columnNumber() indentation = len(line) - len(line.lstrip()) return column <= indentation @staticmethod def _at_block_end(tc, fullline): if tc.atBlockEnd(): return True column = tc.columnNumber() return column >= len(fullline.rstrip()) - 1 def _handle_indent_inside_string(self, char, cursor, fullline, post): # break string with a '\' at the end of the original line, always # breaking strings enclosed by parens is done in the # _handle_between_paren method n = self.editor.tab_length pre = '%s \\' % char post += n * ' ' if fullline.endswith(':'): post += n * " " post += char return post, pre def _handle_new_scope_indentation(self, cursor, fullline): try: indent = (self._get_indent_of_opening_paren(cursor) + self.editor.tab_length) post = indent * " " except TypeError: # e.g indent is None (meaning the line does not ends with ):, ]: # or }: kw = ["if", "class", "def", "while", "for", "else", "elif", "except", "finally", "try", "with"] l = fullline ln = cursor.blockNumber() def check_kw_in_line(kwds, lparam): for kwd in kwds: if kwd in lparam: return True return False while not check_kw_in_line(kw, l) and ln: ln -= 1 l = self._helper.line_text(ln) indent = (len(l) - len(l.lstrip())) * " " indent += self.editor.tab_length * " " post = indent return post def _handle_indent_after_paren(self, cursor, post): indent = self._get_indent_of_opening_paren(cursor) if indent is not None: post = indent * " " return post def _handle_indent_in_statement(self, fullline, lastword, post, pre): if lastword[-1] != ':': if lastword and lastword[-1] != " ": pre += " \\" else: pre += '\\' post += self.editor.tab_length * " " if fullline.endswith(':'): post += self.editor.tab_length * " " return post, pre Turing-0.11-beta/pyqode/python/modes/calltips.py000066400000000000000000000116121331472757200217460ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the JediCompletionProvider class implementation. """ import logging from pyqode.core.api import Mode, TextHelper from pyqode.qt import QtCore, QtWidgets from pyqode.python.backend import workers def _logger(): return logging.getLogger(__name__) class CalltipsMode(Mode, QtCore.QObject): """ Shows function calltips. This mode shows function/method call tips in a QToolTip using :meth:`jedi.Script.call_signatures`. """ tooltipDisplayRequested = QtCore.Signal(object, int) tooltipHideRequested = QtCore.Signal() def __init__(self): Mode.__init__(self) QtCore.QObject.__init__(self) self.tooltipDisplayRequested.connect(self._display_tooltip) self.tooltipHideRequested.connect(QtWidgets.QToolTip.hideText) self.__requestCnt = 0 def on_state_changed(self, state): if state: self.editor.key_released.connect(self._on_key_released) else: self.editor.key_released.disconnect(self._on_key_released) def _on_key_released(self, event): if (event.key() == QtCore.Qt.Key_ParenLeft or event.key() == QtCore.Qt.Key_Comma): tc = self.editor.textCursor() line = tc.blockNumber() col = tc.columnNumber() fn = self.editor.file.path encoding = self.editor.file.encoding source = self.editor.toPlainText() # jedi has a bug if the statement has a closing parenthesis # remove it! lines = source.splitlines() try: l = lines[line].rstrip() except IndexError: # at the beginning of the last line (empty) return if l.endswith(")"): lines[line] = l[:-1] source = "\n".join(lines) self._request_calltip(source, line, col, fn, encoding) elif (event.key() in [ QtCore.Qt.Key_ParenRight, QtCore.Qt.Key_Return, QtCore.Qt.Key_Left, QtCore.Qt.Key_Right, QtCore.Qt.Key_Up, QtCore.Qt.Key_Down, QtCore.Qt.Key_End, QtCore.Qt.Key_Home, QtCore.Qt.Key_PageDown, QtCore.Qt.Key_PageUp, QtCore.Qt.Key_Backspace, QtCore.Qt.Key_Delete]): QtWidgets.QToolTip.hideText() def _request_calltip(self, source, line, col, fn, encoding): if self.__requestCnt == 0: self.__requestCnt += 1 self.editor.backend.send_request( workers.calltips, {'code': source, 'line': line, 'column': col, 'path': None, 'encoding': encoding}, on_receive=self._on_results_available) def _on_results_available(self, results): self.__requestCnt -= 1 if results: call = {"call.module.name": results[0], "call.call_name": results[1], "call.params": results[2], "call.index": results[3], "call.bracket_start": results[4]} self.tooltipDisplayRequested.emit(call, results[5]) def _is_last_chard_end_of_word(self): try: tc = TextHelper(self.editor).word_under_cursor() tc.setPosition(tc.position()) tc.movePosition(tc.StartOfLine, tc.KeepAnchor) l = tc.selectedText() last_char = l[len(l) - 1] seps = self.editor.word_separators symbols = [",", " ", "("] return last_char in seps and last_char not in symbols except IndexError: return False def _display_tooltip(self, call, col): if not call or self._is_last_chard_end_of_word(): return # create a formatted calltip (current index appear in bold) calltip = "

{0}.{1}(".format( call['call.module.name'], call['call.call_name']) for i, param in enumerate(call['call.params']): if i < len(call['call.params']) - 1 and not param.endswith(','): param += ", " if param.endswith(','): param += ' ' # pep8 calltip if i == call['call.index']: calltip += "" calltip += param if i == call['call.index']: calltip += "" calltip += ')

' # set tool tip position at the start of the bracket char_width = self.editor.fontMetrics().width('A') w_offset = (col - call['call.bracket_start'][1]) * char_width position = QtCore.QPoint( self.editor.cursorRect().x() - w_offset, self.editor.cursorRect().y() + char_width + self.editor.panels.margin_size(0)) position = self.editor.mapToGlobal(position) # show tooltip QtWidgets.QToolTip.showText(position, calltip, self.editor) Turing-0.11-beta/pyqode/python/modes/comments.py000066400000000000000000000113331331472757200217600ustar00rootroot00000000000000# -*- coding: utf-8 -*- import sys import os from pyqode.core import api, icons from pyqode.qt import QtGui, QtCore, QtWidgets class CommentsMode(api.Mode): """ Comments/uncomments a set of lines using Ctrl+/. """ def __init__(self): super(CommentsMode, self).__init__() self.action = QtWidgets.QAction(_("Comment/Uncomment"), self.editor) self.action.setShortcut("Ctrl+/") icon = icons.icon(qta_name='fa.comment') if icon: self.action.setIcon(icon) def on_state_changed(self, state): """ Called when the mode is activated/deactivated """ if state: self.action.triggered.connect(self.comment) self.editor.add_action(self.action, sub_menu='Python') if 'pyqt5' in os.environ['QT_API'].lower(): self.editor.key_pressed.connect(self.on_key_pressed) else: self.editor.remove_action(self.action, sub_menu='Python') self.action.triggered.disconnect(self.comment) if 'pyqt5' in os.environ['QT_API'].lower(): self.editor.key_pressed.disconnect(self.on_key_pressed) def on_key_pressed(self, key_event): ctrl = (key_event.modifiers() & QtCore.Qt.ControlModifier == QtCore.Qt.ControlModifier) if key_event.key() == QtCore.Qt.Key_Slash and ctrl: self.comment() key_event.accept() def check_selection(self, cursor): sel_start = cursor.selectionStart() sel_end = cursor.selectionEnd() reversed_selection = cursor.position() == sel_start # were there any selected lines? If not select the current line has_selection = True if not cursor.hasSelection(): cursor.select(QtGui.QTextCursor.LineUnderCursor) has_selection = False return has_selection, reversed_selection, sel_end, sel_start def get_selected_lines(self): nb_lines = len( api.TextHelper(self.editor).selected_text().splitlines()) cursor = self.editor.textCursor() self._move_cursor_to_selection_start(cursor) lines = [] for i in range(nb_lines): lines.append(cursor.block().text()) cursor.movePosition(cursor.NextBlock) return lines def get_operation(self): lines = self.get_selected_lines() if not lines: lines = [api.TextHelper(self.editor).current_line_text()] min_indent = sys.maxsize comment = False for l in lines: indent = len(l) - len(l.lstrip()) if indent < min_indent and l: min_indent = indent if not l.lstrip().startswith('# ') and l: comment = True return min_indent, comment, len(lines) def comment(self): """ Comments/Uncomments the selected lines or the current lines if there is no selection. """ cursor = self.editor.textCursor() # get the indent at which comment should be inserted and whether to # comment or uncomment the selected text indent, comment, nb_lines = self.get_operation() has_selection = cursor.hasSelection() if nb_lines > 1: self._move_cursor_to_selection_start(cursor) cursor.beginEditBlock() for i in range(nb_lines): self.comment_line(indent, cursor, comment) cursor.movePosition(cursor.NextBlock) cursor.endEditBlock() else: # comment a single line cursor.beginEditBlock() self.comment_line(indent, cursor, comment) if not has_selection: # move to the first non-whitespace character of the next line cursor.movePosition(cursor.NextBlock) text = cursor.block().text() indent = len(text) - len(text.lstrip()) cursor.movePosition(cursor.Right, cursor.MoveAnchor, indent) cursor.endEditBlock() self.editor.setTextCursor(cursor) else: cursor.endEditBlock() def _move_cursor_to_selection_start(self, cursor): start = cursor.selectionStart() end = cursor.selectionEnd() if start > end: start = end cursor.setPosition(start) def comment_line(self, indent, cursor, comment): if not cursor.block().text(): return cursor.movePosition(cursor.StartOfLine) cursor.movePosition(cursor.Right, cursor.MoveAnchor, indent) if comment: cursor.insertText('# ') if cursor.atEnd(): cursor.insertText('\n') else: cursor.deleteChar() cursor.deleteChar() Turing-0.11-beta/pyqode/python/modes/frosted_checker.py000066400000000000000000000007011331472757200232620ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the pyFlakes checker mode """ from pyqode.core.modes import CheckerMode from pyqode.python.backend.workers import run_pyflakes class PyFlakesChecker(CheckerMode): """ Runs pyflakes on you code while you're typing This checker mode runs pyflakes on the fly to check your python syntax. """ def __init__(self): super(PyFlakesChecker, self).__init__(run_pyflakes, delay=1200) Turing-0.11-beta/pyqode/python/modes/goto_assignements.py000066400000000000000000000154421331472757200236700ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the go to assignments mode. """ import logging import os from pyqode.core import icons from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core.api import Mode, TextHelper, DelayJobRunner, CodeEdit from pyqode.core.backend import NotRunning from pyqode.core.modes import WordClickMode from pyqode.python.backend import workers def _logger(): return logging.getLogger(__name__) class Assignment(object): """ Defines an assignment. Used by :class:`GoToAssignmentsMode`. """ def __init__(self, path, line, column, full_name): if path: path = path.replace(".pyc", ".py") #: File path of the module where the assignment can be found self.module_path = path #: Line number self.line = line #: Column number self.column = column #: Assignement full name self.full_name = full_name def __str__(self): if self.line and self.column: return "%s (%s, %s)" % (self.full_name, self.line + 1, self.column + 1) return self.full_name def __repr__(self): return "Definition(%r, %r, %r, %r)" % (self.module_path, self.line, self.column, self.full_name) class GoToAssignmentsMode(WordClickMode): """ Goes to the assignments (using jedi.Script.goto_assignments) when the user execute the shortcut or click word. If there are more than one assignments, an input dialog is used to ask the user to choose the desired assignment. This mode will emit the :attr:`out_of_doc` signal if the definition can not be reached in the current document. IDE will typically connects a slot that open a new editor tab and goes to the definition position. """ #: Signal emitted when the definition cannot be reached in the current #: document out_of_doc = QtCore.Signal(Assignment) #: Signal emitted when no results could be found. no_results_found = QtCore.Signal() shortcut = 'Alt+F2' def __init__(self): super(GoToAssignmentsMode, self).__init__() self._definitions = [] self._goto_requested = False self.action_goto = QtWidgets.QAction(_("Go to assignments"), self) self.action_goto.setShortcut(self.shortcut) self.action_goto.triggered.connect(self.request_goto) icon = icons.icon(qta_name='fa.share') if icon: self.action_goto.setIcon(icon) self.word_clicked.connect(self._on_word_clicked) self._runner = DelayJobRunner(delay=1) def on_state_changed(self, state): super(GoToAssignmentsMode, self).on_state_changed(state) if state: self.editor.add_action(self.action_goto, sub_menu='Python') else: self.editor.remove_action(self.action_goto, sub_menu='Python') def request_goto(self): """ Request a goto action for the word under the text cursor. """ self._goto_requested = True self._check_word_cursor() def _check_word_cursor(self, tc=None): """ Request a go to assignment. :param tc: Text cursor which contains the text that we must look for its assignment. Can be None to go to the text that is under the text cursor. :type tc: QtGui.QTextCursor """ if not tc: tc = TextHelper(self.editor).word_under_cursor() request_data = { 'code': self.editor.toPlainText(), 'line': tc.blockNumber(), 'column': tc.columnNumber(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } try: self.editor.backend.send_request( workers.goto_assignments, request_data, on_receive=self._on_results_available) except NotRunning: pass def _goto(self, definition): fp = '' if self.editor.file.path: fp = os.path.normpath(self.editor.file.path.replace(".pyc", ".py")) if definition.module_path == fp: line = definition.line col = definition.column _logger().debug("Go to %s" % definition) self._runner.request_job( TextHelper(self.editor).goto_line, line, move=True, column=col) else: _logger().debug("Out of doc: %s" % definition) self.out_of_doc.emit(definition) def _unique(self, seq): """ Not performant but works. """ # order preserving checked = [] for e in seq: present = False for c in checked: if str(c) == str(e): present = True break if not present: checked.append(e) return checked def _clear_selection(self): super(GoToAssignmentsMode, self)._clear_selection() self._definitions[:] = [] def _validate_definitions(self, definitions): if definitions: if len(definitions) == 1: return definitions[0].line is not None return True return False def _on_results_available(self, definitions): _logger().debug("Got %r" % definitions) definitions = [Assignment(path, line, col, full_name) for path, line, col, full_name in definitions] definitions = self._unique(definitions) self._definitions = definitions if self._validate_definitions(definitions): if self._goto_requested: self._perform_goto(definitions) else: self._select_word_cursor() self.editor.set_mouse_cursor(QtCore.Qt.PointingHandCursor) else: self._clear_selection() self.editor.set_mouse_cursor(QtCore.Qt.IBeamCursor) self._goto_requested = False def _perform_goto(self, definitions): if len(definitions) == 1: definition = definitions[0] if definition: self._goto(definition) elif len(definitions) > 1: _logger().debug( "More than 1 assignments in different modules, user " "need to make a choice: %s" % definitions) def_str, result = QtWidgets.QInputDialog.getItem( self.editor, _("Choose a definition"), _("Choose the definition you want to go to:"), [str(d) for d in definitions]) if result: for definition in definitions: if definition and str(definition) == def_str: self._goto(definition) break def _on_word_clicked(self): self._perform_goto(self._definitions) Turing-0.11-beta/pyqode/python/modes/indenter.py000066400000000000000000000045751331472757200217550ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the python indenter. """ from pyqode.qt import QtGui from pyqode.core.modes import IndenterMode class PyIndenterMode(IndenterMode): """ Extends the core indenter to add the ability to always indent the whole line instead of inserting a tab at the cursor position. This behaviour can be turned off at runtime by setting :attr:`tab_always_indent` to False. """ @property def tab_always_indent(self): """ When this flag is set to True, any call to indent will indent the whole line instead of inserting a tab at the cursor position. """ return self._tab_always_indent @tab_always_indent.setter def tab_always_indent(self, value): self._tab_always_indent = value if self.editor: for c in self.editor.clones: try: c.modes.get(self.__class__).tab_always_indent = value except KeyError: pass def __init__(self): super(PyIndenterMode, self).__init__() self._tab_always_indent = None self.tab_always_indent = True def indent(self): """ Performs an indentation """ if not self.tab_always_indent: super(PyIndenterMode, self).indent() else: cursor = self.editor.textCursor() assert isinstance(cursor, QtGui.QTextCursor) if cursor.hasSelection(): self.indent_selection(cursor) else: # simply insert indentation at the cursor position tab_len = self.editor.tab_length cursor.beginEditBlock() if self.editor.use_spaces_instead_of_tabs: cursor.insertText(tab_len * " ") else: cursor.insertText('\t') cursor.endEditBlock() self.editor.setTextCursor(cursor) def unindent(self): """ Performs an un-indentation """ if self.tab_always_indent: cursor = self.editor.textCursor() if not cursor.hasSelection(): cursor.select(cursor.LineUnderCursor) self.unindent_selection(cursor) else: super(PyIndenterMode, self).unindent() def clone_settings(self, original): self.tab_always_indent = original.tab_always_indent Turing-0.11-beta/pyqode/python/modes/pep8_checker.py000066400000000000000000000005611331472757200224740ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This module contains the pyFlakes checker mode """ from pyqode.core.modes import CheckerMode from pyqode.python.backend.workers import run_pep8 class PEP8CheckerMode(CheckerMode): """ This checker mode runs pep8.py on the fly to check your python style. """ def __init__(self): CheckerMode.__init__(self, run_pep8) Turing-0.11-beta/pyqode/python/modes/sh.py000066400000000000000000000231301331472757200205430ustar00rootroot00000000000000""" This module contains a native python syntax highlighter, strongly inspired from spyderlib.widgets.source_code.syntax_higlighter.PythonSH but modified to highlight docstrings with a different color than the string color and to highlight decorators and self parameters. It is approximately 3 time faster then :class:`pyqode.core.modes.PygmentsSH`. """ try: #it works on windows import builtins except ImportError: #it works on osx builtins = __import__('__builtin__') import re from pyqode.core.api import SyntaxHighlighter as BaseSH from pyqode.core.api import TextBlockHelper def any(name, alternates): """Return a named group pattern matching list of alternates.""" return "(?P<%s>" % name + "|".join(alternates) + ")" kwlist = [ 'self', 'False', 'None', 'True', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'global', 'if', 'lambda', 'nonlocal', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield', ] kw_namespace_list = ['from', 'import', 'as'] wordop_list = ['and', 'or', 'not', 'in', 'is'] def make_python_patterns(additional_keywords=[], additional_builtins=[]): """Strongly inspired from idlelib.ColorDelegator.make_pat""" kw = r"\b" + any("keyword", kwlist + additional_keywords) + r"\b" kw_namespace = r"\b" + any("namespace", kw_namespace_list) + r"\b" word_operators = r"\b" + any("operator_word", wordop_list) + r"\b" builtinlist = [str(name) for name in dir(builtins) if not name.startswith('_')] + additional_builtins for v in ['None', 'True', 'False']: builtinlist.remove(v) builtin = r"([^.'\"\\#]\b|^)" + any("builtin", builtinlist) + r"\b" builtin_fct = any("builtin_fct", [r'_{2}[a-zA-Z_]*_{2}']) comment = any("comment", [r"#[^\n]*"]) instance = any("instance", [r"\bself\b", r"\bcls\b"]) decorator = any('decorator', [r'@\w*', r'.setter']) number = any("number", [r"\b[+-]?[0-9]+[lLjJ]?\b", r"\b[+-]?0[xX][0-9A-Fa-f]+[lL]?\b", r"\b[+-]?0[oO][0-7]+[lL]?\b", r"\b[+-]?0[bB][01]+[lL]?\b", r"\b[+-]?[0-9]+(?:\.[0-9]+)?(?:[eE][+-]?[0-9]+)?[jJ]?\b"]) sqstring = r"(\b[rRuU])?'[^'\\\n]*(\\.[^'\\\n]*)*'?" dqstring = r'(\b[rRuU])?"[^"\\\n]*(\\.[^"\\\n]*)*"?' uf_sqstring = r"(\b[rRuU])?'[^'\\\n]*(\\.[^'\\\n]*)*(\\)$(?!')$" uf_dqstring = r'(\b[rRuU])?"[^"\\\n]*(\\.[^"\\\n]*)*(\\)$(?!")$' sq3string = r"(\b[rRuU])?'''[^'\\]*((\\.|'(?!''))[^'\\]*)*(''')?" dq3string = r'(\b[rRuU])?"""[^"\\]*((\\.|"(?!""))[^"\\]*)*(""")?' uf_sq3string = r"(\b[rRuU])?'''[^'\\]*((\\.|'(?!''))[^'\\]*)*(\\)?(?!''')$" uf_dq3string = r'(\b[rRuU])?"""[^"\\]*((\\.|"(?!""))[^"\\]*)*(\\)?(?!""")$' string = any("string", [sq3string, dq3string, sqstring, dqstring]) ufstring1 = any("uf_sqstring", [uf_sqstring]) ufstring2 = any("uf_dqstring", [uf_dqstring]) ufstring3 = any("uf_sq3string", [uf_sq3string]) ufstring4 = any("uf_dq3string", [uf_dq3string]) return "|".join([instance, decorator, kw, kw_namespace, builtin, word_operators, builtin_fct, comment, ufstring1, ufstring2, ufstring3, ufstring4, string, number, any("SYNC", [r"\n"])]) # # Pygments Syntax highlighter # class PythonSH(BaseSH): """ Highlights python syntax in the editor. """ mimetype = 'text/x-python' # Syntax highlighting rules: PROG = re.compile(make_python_patterns(), re.S) IDPROG = re.compile(r"\s+(\w+)", re.S) ASPROG = re.compile(r".*?\b(as)\b") # Syntax highlighting states (from one text block to another): (NORMAL, INSIDE_SQ3STRING, INSIDE_DQ3STRING, INSIDE_SQSTRING, INSIDE_DQSTRING) = list(range(5)) # Comments suitable for Outline Explorer OECOMMENT = re.compile('^(# ?--[-]+|##[#]+ )[ -]*[^- ]+') def __init__(self, parent, color_scheme=None): super(PythonSH, self).__init__(parent, color_scheme) self.import_statements = [] self.global_import_statements = [] self.docstrings = [] def highlight_block(self, text, block): prev_block = block.previous() prev_state = TextBlockHelper.get_state(prev_block) if prev_state == self.INSIDE_DQ3STRING: offset = -4 text = r'""" ' + text elif prev_state == self.INSIDE_SQ3STRING: offset = -4 text = r"''' " + text elif prev_state == self.INSIDE_DQSTRING: offset = -2 text = r'" ' + text elif prev_state == self.INSIDE_SQSTRING: offset = -2 text = r"' " + text else: offset = 0 import_stmt = None # set docstring dynamic attribute, used by the fold detector. block.docstring = False self.setFormat(0, len(text), self.formats["normal"]) state = self.NORMAL match = self.PROG.search(text) while match: for key, value in list(match.groupdict().items()): if value: start, end = match.span(key) start = max([0, start + offset]) end = max([0, end + offset]) if key == "uf_sq3string": self.setFormat(start, end - start, self.formats["docstring"]) block.docstring = True state = self.INSIDE_SQ3STRING elif key == "uf_dq3string": self.setFormat(start, end - start, self.formats["docstring"]) block.docstring = True state = self.INSIDE_DQ3STRING elif key == "uf_sqstring": self.setFormat(start, end - start, self.formats["string"]) state = self.INSIDE_SQSTRING elif key == "uf_dqstring": self.setFormat(start, end - start, self.formats["string"]) state = self.INSIDE_DQSTRING elif key == 'builtin_fct': # trick to highlight __init__, __add__ and so on with # builtin color self.setFormat(start, end - start, self.formats["constant"]) else: if ('"""' in value or "'''" in value) and \ key != 'comment': # highlight docstring with a different color block.docstring = True self.setFormat(start, end - start, self.formats["docstring"]) elif key == 'decorator': # highlight decorators self.setFormat(start, end - start, self.formats["decorator"]) elif value in ['self', 'cls']: # highlight self attribute self.setFormat(start, end - start, self.formats["self"]) else: # highlight all other tokens self.setFormat(start, end - start, self.formats[key]) if key == "keyword": if value in ("def", "class"): match1 = self.IDPROG.match(text, end) if match1: start1, end1 = match1.span(1) fmt_key = ('definition' if value == 'class' else 'function') fmt = self.formats[fmt_key] self.setFormat(start1, end1 - start1, fmt) if key == 'namespace': import_stmt = text.strip() # color all the "as" words on same line, except # if in a comment; cheap approximation to the # truth if '#' in text: endpos = text.index('#') else: endpos = len(text) while True: match1 = self.ASPROG.match(text, end, endpos) if not match1: break start, end = match1.span(1) self.setFormat(start, end - start, self.formats["namespace"]) # next match match = self.PROG.search(text, match.end()) TextBlockHelper.set_state(block, state) # update import zone if import_stmt is not None: block.import_stmt = import_stmt self.import_statements.append(block) block.import_stmt = True elif block.docstring: self.docstrings.append(block) def rehighlight(self): self.import_statements[:] = [] self.global_import_statements[:] = [] self.docstrings[:] = [] super(PythonSH, self).rehighlight() Turing-0.11-beta/pyqode/python/panels/000077500000000000000000000000001331472757200177335ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/panels/__init__.py000066400000000000000000000012531331472757200220450ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This packages contains the python specific panels: - QuickDocPanel: show docstring of functions/classes. - SymbolBrowserPanel: combo box that shows the symbols in the current document. """ from pyqode.python.panels.symbol_browser import SymbolBrowserPanel from pyqode.python.panels.quick_doc import QuickDocPanel try: # load pyqode.python resources (code completion icons) from pyqode.python._forms import pyqode_python_icons_rc # DO NOT REMOVE!!! except ImportError: # PyQt/PySide might not be available for the interpreter that run the # backend pass __all__ = [ 'QuickDocPanel', 'SymbolBrowserPanel', ] Turing-0.11-beta/pyqode/python/panels/quick_doc.py000066400000000000000000000100141331472757200222420ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ Contains the quick documentation panel """ from docutils.core import publish_parts from pyqode.core import icons from pyqode.qt import QtCore, QtWidgets from pyqode.core.api import Panel, TextHelper from pyqode.python.backend.workers import quick_doc class QuickDocPanel(Panel): """ Shows the python documentation for the word under the text cursor. This panel quickly shows the documentation of the symbol under cursor. """ _KEYS = ['panelBackground', 'background', 'panelForeground', 'panelHighlight'] def __init__(self): super(QuickDocPanel, self).__init__(dynamic=True) # layouts layout = QtWidgets.QHBoxLayout() self.setLayout(layout) child_layout = QtWidgets.QVBoxLayout() # A QTextEdit to show the doc self.text_edit = QtWidgets.QTextEdit() self.text_edit.setReadOnly(True) self.text_edit.setAcceptRichText(True) layout.addWidget(self.text_edit) # A QPushButton (inside a child layout for a better alignment) # to close the panel self.bt_close = QtWidgets.QPushButton() self.bt_close.setIcon(icons.icon( 'window-close', ':/pyqode-icons/rc/close.png', 'fa.close')) self.bt_close.setIconSize(QtCore.QSize(16, 16)) self.bt_close.clicked.connect(self.hide) child_layout.addWidget(self.bt_close) child_layout.addStretch() layout.addLayout(child_layout) # Action self.action_quick_doc = QtWidgets.QAction( _('Show documentation'), self) self.action_quick_doc.setShortcut('Alt+Q') icon = icons.icon(qta_name='fa.book') if icon: self.action_quick_doc.setIcon(icon) self.action_quick_doc.triggered.connect( self._on_action_quick_doc_triggered) def on_install(self, editor): super(QuickDocPanel, self).on_install(editor) self.setVisible(False) def on_state_changed(self, state): super(QuickDocPanel, self).on_state_changed(state) if state: self.editor.add_action(self.action_quick_doc, sub_menu='Python') else: self.editor.remove_action(self.action_quick_doc, sub_menu='Python') def _on_action_quick_doc_triggered(self): tc = TextHelper(self.editor).word_under_cursor(select_whole_word=True) request_data = { 'code': self.editor.toPlainText(), 'line': tc.blockNumber(), 'column': tc.columnNumber(), 'path': self.editor.file.path, 'encoding': self.editor.file.encoding } self.editor.backend.send_request( quick_doc, request_data, on_receive=self._on_results_available) def _on_results_available(self, results): self.setVisible(True) if len(results) and results[0] != '': string = '\n\n'.join(results) string = publish_parts( string, writer_name='html', settings_overrides={'output_encoding': 'unicode'})[ 'html_body'] string = string.replace('colspan="2"', 'colspan="0"') string = string.replace('\n ', '') if string: skip_error_msg = False lines = [] for l in string.splitlines(): if (l.startswith('
'): skip_error_msg = False else: lines.append(l) self.text_edit.setText('\n'.join(lines)) return else: self.text_edit.setText(_('Documentation not found')) Turing-0.11-beta/pyqode/python/panels/symbol_browser.py000066400000000000000000000075411331472757200233640ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ SymbolBrowserPanel """ import logging from pyqode.core.api import Panel, TextHelper from pyqode.qt import QtGui, QtCore, QtWidgets from pyqode.core.share import Definition def _logger(): return logging.getLogger(__name__) class SymbolBrowserPanel(Panel): """ Shows a combo box with the definitions found in the document. Allow quick navigation in the file and sync with the cursor position. """ def __init__(self): super(SymbolBrowserPanel, self).__init__() self._prevLine = -1 self._definitions = [] layout = QtWidgets.QHBoxLayout() layout.setContentsMargins(0, 0, 0, 0) self.combo_box = QtWidgets.QComboBox() self.combo_box.setSizeAdjustPolicy( self.combo_box.AdjustToMinimumContentsLength) self.combo_box.activated.connect(self._on_definition_activated) layout.addWidget(self.combo_box) self.setLayout(layout) self.combo_box.addItem("Loading symbols...") def on_state_changed(self, state): super(SymbolBrowserPanel, self).on_state_changed(state) if state: self.editor.cursorPositionChanged.connect( self._on_cursor_pos_changed) try: self.editor.modes.get( 'OutlineMode').document_changed.connect( self._on_document_changed) except KeyError: _logger().warning("No OutlineMode found, install it " "before SymbolBrowserPanel!") else: self.editor.cursorPositionChanged.disconnect( self._on_cursor_pos_changed) try: self.editor.modes.get( 'OutlineMode').document_changed.disconnect( self._on_document_changed) except KeyError: pass def _on_document_changed(self): def flatten(results): """ Flattens the document structure tree as a simple sequential list. """ ret_val = [] for de in results: ret_val.append(de) for sub_d in de.children: nd = Definition( sub_d.name, sub_d.line, sub_d.column, sub_d.icon) nd.name = " " + nd.name ret_val.append(nd) return ret_val if not self or not self.editor: return mode = self.editor.modes.get('OutlineMode') definitions = flatten(mode.definitions) self.combo_box.clear() if definitions: self.combo_box.addItem(" < Select a symbol >") else: self.combo_box.addItem("No symbols") for d in definitions: try: self.combo_box.addItem(QtGui.QIcon(d.icon), d.name, d) except TypeError: self.combo_box.addItem(QtGui.QIcon.fromTheme( d.icon[0], QtGui.QIcon(d.icon[1])), d.name, d) self._definitions = definitions self._sync_combo_box(TextHelper(self.editor).current_line_nbr()) @QtCore.Slot(int) def _on_definition_activated(self, index): definition = self.combo_box.itemData(index) if definition: TextHelper(self.editor).goto_line( definition.line, column=definition.column) self.editor.setFocus() def _sync_combo_box(self, line): i = -1 for i, d in enumerate(reversed(self._definitions)): if d.line <= line: break if i >= 0: index = len(self._definitions) - i self.combo_box.setCurrentIndex(index) def _on_cursor_pos_changed(self): line = TextHelper(self.editor).current_line_nbr() if self._prevLine != line: self._sync_combo_box(line) self._prevLine = line Turing-0.11-beta/pyqode/python/widgets/000077500000000000000000000000001331472757200201175ustar00rootroot00000000000000Turing-0.11-beta/pyqode/python/widgets/__init__.py000066400000000000000000000007261331472757200222350ustar00rootroot00000000000000""" This packages contains the available python widgets: - PyCodeEdit - PyInteractiveConsole """ from .code_edit import PyCodeEditBase, PyCodeEdit from .interactive import PyInteractiveConsole # todo PyOutlineTreeWidget is deprecated and should be removed soon. from .outline import PyOutlineTreeWidget from .console import PyConsole __all__ = [ 'PyCodeEdit', 'PyConsole', 'PyCodeEditBase', 'PyInteractiveConsole', 'PyOutlineTreeWidget' ] Turing-0.11-beta/pyqode/python/widgets/code_edit.py000066400000000000000000000113771331472757200224210ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This package contains the python code editor widget """ import sys from pyqode.core.api import ColorScheme from pyqode.python.backend import server from pyqode.qt import QtCore, QtGui from pyqode.core import api from pyqode.core import modes from pyqode.core import panels from pyqode.python import managers as pymanagers from pyqode.python import modes as pymodes from pyqode.python import panels as pypanels from pyqode.python.backend.workers import defined_names from pyqode.python.folding import PythonFoldDetector class PyCodeEditBase(api.CodeEdit): """ Base class for creating a python code editor widget. The base class takes care of setting up the syntax highlighter. .. note:: This code editor widget use PEP 0263 to detect file encoding. If the opened file does not respects the PEP 0263, :py:func:`locale.getpreferredencoding` is used as the default encoding. """ def __init__(self, parent=None, create_default_actions=True): super(PyCodeEditBase, self).__init__(parent, create_default_actions) self.file = pymanagers.PyFileManager(self) def setPlainText(self, txt, mimetype='text/x-python', encoding='utf-8'): """ Extends QCodeEdit.setPlainText to allow user to setPlainText without mimetype (since the python syntax highlighter does not use it). """ try: self.syntax_highlighter.docstrings[:] = [] self.syntax_highlighter.import_statements[:] = [] except AttributeError: pass super(PyCodeEditBase, self).setPlainText(txt, mimetype, encoding) class PyCodeEdit(PyCodeEditBase): """ Extends PyCodeEditBase with a set of hardcoded modes and panels specifics to a python code editor widget. """ DARK_STYLE = 0 LIGHT_STYLE = 1 mimetypes = ['text/x-python'] def __init__(self, parent=None, server_script=server.__file__, interpreter=sys.executable, args=None, create_default_actions=True, color_scheme='qt', reuse_backend=False): super(PyCodeEdit, self).__init__( parent=parent, create_default_actions=create_default_actions) self.backend.start(server_script, interpreter, args, reuse=reuse_backend) self.setLineWrapMode(self.NoWrap) self.setWindowTitle("pyQode - Python Editor") # install those modes first as they are required by other modes/panels self.modes.append(modes.OutlineMode(defined_names)) # panels self.panels.append(panels.SearchAndReplacePanel(), panels.SearchAndReplacePanel.Position.BOTTOM) self.panels.append(panels.FoldingPanel()) self.panels.append(panels.LineNumberPanel()) self.panels.append(panels.CheckerPanel()) self.panels.append(panels.GlobalCheckerPanel(), panels.GlobalCheckerPanel.Position.RIGHT) self.add_separator() # modes # generic self.modes.append(modes.ExtendedSelectionMode()) self.modes.append(modes.CaseConverterMode()) self.modes.append(modes.CaretLineHighlighterMode()) self.modes.append(modes.FileWatcherMode()) self.modes.append(modes.RightMarginMode()) self.modes.append(modes.ZoomMode()) self.modes.append(modes.SymbolMatcherMode()) self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.SmartBackSpaceMode()) # python specifics self.modes.append(pymodes.PyAutoIndentMode()) self.modes.append(pymodes.PyAutoCompleteMode()) self.modes.append(pymodes.PyFlakesChecker()) self.modes.append(pymodes.PEP8CheckerMode()) self.modes.append(pymodes.CalltipsMode()) self.modes.append(pymodes.PyIndenterMode()) self.modes.append(pymodes.GoToAssignmentsMode()) self.modes.append(pymodes.CommentsMode()) self.modes.append(pymodes.PythonSH( self.document(), color_scheme=ColorScheme(color_scheme))) self.syntax_highlighter.fold_detector = PythonFoldDetector() self.panels.append(pypanels.QuickDocPanel(), api.Panel.Position.BOTTOM) self.panels.append(panels.EncodingPanel(), api.Panel.Position.TOP) self.panels.append(panels.ReadOnlyPanel(), api.Panel.Position.TOP) def clone(self): clone = self.__class__( parent=self.parent(), server_script=self.backend.server_script, interpreter=self.backend.interpreter, args=self.backend.args, color_scheme=self.syntax_highlighter.color_scheme.name) return clone def __repr__(self): return 'PyCodeEdit(path=%r)' % self.file.path Turing-0.11-beta/pyqode/python/widgets/console.py000066400000000000000000000070371331472757200221420ustar00rootroot00000000000000""" This module provides a python console widgets based on the pyqode.core's OutputWindow. """ import sys from pyqode.qt import QtWidgets, QtGui from pyqode.core import modes as modes from pyqode.core.api import ColorScheme from pyqode.core.widgets import output_window from pyqode.python import modes as pymodes from pyqode.python.backend import server class SyntaxHighlighter(pymodes.PythonSH): """ Extends the base syntax highlighter to only highlight code that is entered after a python prompt """ def highlight_block(self, text, block): if text.startswith('>>>') or text.startswith('...'): super(SyntaxHighlighter, self).highlight_block(text, block) else: match = self.editor.link_regex.search(text) if match: start, end = match.span('url') fmt = QtGui.QTextCharFormat() fmt.setForeground(QtWidgets.qApp.palette().highlight().color()) fmt.setUnderlineStyle(fmt.SingleUnderline) self.setFormat(start, end - start, fmt) class CodeCompletionMode(modes.CodeCompletionMode): """ Extend base code completion mode to insert the completion in the user buffer of the input handler """ def _insert_completion(self, completion): cursor = self._helper.word_under_cursor(select_whole_word=False) prefix = cursor.selectedText() super(CodeCompletionMode, self)._insert_completion(completion) for ch in prefix: self.editor._input_handler.backspace() self.editor._input_handler.insert_text(completion) class PyConsole(output_window.OutputWindow): """ Extends the OutputWindow to run a python interpreter with all the bells and whistles of a python code editor (code completion!). """ def __init__(self, parent=None, interpreter=sys.executable, backend=server.__file__, color_scheme='qt'): self._pygment_color_scheme = color_scheme super(PyConsole, self).__init__(parent=parent, input_handler=output_window.BufferedInputHandler(), backend=backend) self.start_process(interpreter.replace('pythonw', 'python'), arguments=['-i'], print_command=False, use_pseudo_terminal=True) def change_interpreter(self, interpreter=sys.executable): self.stop_process() self.start_process(interpreter.replace('pythonw', 'python'), arguments=['-i'], print_command=False, use_pseudo_terminal=True) def _init_code_edit(self, backend): self.modes.append(modes.SmartBackSpaceMode()) self.modes.append(modes.SymbolMatcherMode()) self.modes.append(pymodes.PyIndenterMode()) self.modes.append(CodeCompletionMode()) super(PyConsole, self)._init_code_edit(backend) self.modes.append(SyntaxHighlighter(self.document(), color_scheme=ColorScheme(self._pygment_color_scheme))) try: self.panels.remove('ReadOnlyPanel') except KeyError: pass self.update_terminal_colors() def update_terminal_colors(self): """ Update terminal color scheme based on the pygments color scheme colors """ self.color_scheme = self.create_color_scheme( background=self.syntax_highlighter.color_scheme.background, foreground=self.syntax_highlighter.color_scheme.formats['normal'].foreground().color()) def terminate_process(self): self._process.write(b'exit()') self._process.waitForBytesWritten() Turing-0.11-beta/pyqode/python/widgets/interactive.py000066400000000000000000000134451331472757200230150ustar00rootroot00000000000000""" This module contains the Interactive python console, for running python programs. """ from pyqode.qt import QtCore, QtGui, QtWidgets from pyqode.core.widgets import InteractiveConsole class PyInteractiveConsole(InteractiveConsole): """ Extends the InteractiveConcole to highlight python traceback. If the user press on a filename in a traceback, the signal open_file_requested is emitted with the file path to open and the line where the user want to go. .. deprecated: since version 2.10.0, you should use pyqode.core.widgets.OutputWindow """ #: Signal emitted when the user pressed on a traceback file location. #: Client code should open the requested file in the editor. open_file_requested = QtCore.Signal(str, int) class UserData(QtGui.QTextBlockUserData): def __init__(self, filename, line, start, end): super(PyInteractiveConsole.UserData, self).__init__() self.filename = filename self.line = line self.start_pos_in_block = start self.end_pos_in_block = end def __init__(self, parent=None): super(PyInteractiveConsole, self).__init__(parent) self.set_writer(self._write) self.setMouseTracking(True) self.PROG = QtCore.QRegExp( r'\s*File ".*", line [0-9]*, in ') self.FILENAME_PROG = QtCore.QRegExp(r'".*"') self.LINE_PROG = QtCore.QRegExp(r'line [0-9]*') self.setLineWrapMode(self.NoWrap) self._module_color = QtGui.QColor('blue') def start_process(self, process, args=None, cwd=None, env=None): if env is None: env = {} if 'PYTHONUNBUFFERED' not in env: env['PYTHONUNBUFFERED'] = '1' if 'QT_LOGGING_TO_CONSOLE' not in env: env['QT_LOGGING_TO_CONSOLE'] = '1' super(PyInteractiveConsole, self).start_process( process, args, cwd, env) def _write(self, text_edit, text, color): def write(text_edit, text, color): text_edit.moveCursor(QtGui.QTextCursor.End) fmt = QtGui.QTextCharFormat() fmt.setUnderlineStyle(QtGui.QTextCharFormat.NoUnderline) fmt.setForeground(QtGui.QBrush(color)) text_edit.setCurrentCharFormat(fmt) text_edit.insertPlainText(text) text_edit.moveCursor(QtGui.QTextCursor.End) def write_with_underline(text_edit, text, color, line, start, end): text_edit.moveCursor(QtGui.QTextCursor.End) text_edit.setTextColor(color) fmt = QtGui.QTextCharFormat() fmt.setUnderlineColor(color) fmt.setUnderlineStyle(QtGui.QTextCharFormat.SingleUnderline) fmt.setForeground(QtGui.QBrush(color)) text_edit.setCurrentCharFormat(fmt) text_edit.insertPlainText(text) text_edit.moveCursor(QtGui.QTextCursor.End) block = self.document().lastBlock() data = self.UserData(text, line, start, end) block.setUserData(data) text = text.replace('\n', '{@}\n') text = text.replace('\r', '') for i, line in enumerate(text.split('{@}')): # check if File and highlight it in blue, also store it if self.PROG.indexIn(line) != -1: # get line number self.LINE_PROG.indexIn(line) start = self.LINE_PROG.pos(0) end = start + len(self.LINE_PROG.cap(0)) l = int(line[start:end].replace('line ', '')) - 1 self.FILENAME_PROG.indexIn(line) start = self.FILENAME_PROG.pos(0) end = start + len(self.FILENAME_PROG.cap(0)) write(self, line[:start + 1], color) write_with_underline(self, line[start + 1:end - 1], self._module_color, l, start, end) write(self, line[end - 1:], color) else: write(text_edit, line, color) def mouseMoveEvent(self, e): """ Extends mouseMoveEvent to display a pointing hand cursor when the mouse cursor is over a file location """ super(PyInteractiveConsole, self).mouseMoveEvent(e) cursor = self.cursorForPosition(e.pos()) assert isinstance(cursor, QtGui.QTextCursor) p = cursor.positionInBlock() usd = cursor.block().userData() if usd and usd.start_pos_in_block <= p <= usd.end_pos_in_block: if QtWidgets.QApplication.overrideCursor() is None: QtWidgets.QApplication.setOverrideCursor( QtGui.QCursor(QtCore.Qt.PointingHandCursor)) else: if QtWidgets.QApplication.overrideCursor() is not None: QtWidgets.QApplication.restoreOverrideCursor() def mousePressEvent(self, e): """ Emits open_file_requested if the press event occured over a file location string. """ super(PyInteractiveConsole, self).mousePressEvent(e) cursor = self.cursorForPosition(e.pos()) p = cursor.positionInBlock() usd = cursor.block().userData() if usd and usd.start_pos_in_block <= p <= usd.end_pos_in_block: if e.button() == QtCore.Qt.LeftButton: self.open_file_requested.emit(usd.filename, usd.line) def leaveEvent(self, e): super(PyInteractiveConsole, self).leaveEvent(e) if QtWidgets.QApplication.overrideCursor() is not None: QtWidgets.QApplication.restoreOverrideCursor() def apply_color_scheme(self, color_scheme): super(PyInteractiveConsole, self).apply_color_scheme(color_scheme) if color_scheme.background.lightness() < 128: self._module_color = QtGui.QColor('#0681e0') else: self._module_color = QtGui.QColor('blue') Turing-0.11-beta/pyqode/python/widgets/outline.py000066400000000000000000000004331331472757200221500ustar00rootroot00000000000000""" This document contains the tree widget used to display the editor document outline. """ from pyqode.core.widgets import OutlineTreeWidget class PyOutlineTreeWidget(OutlineTreeWidget): """ Deprecated, use pyqode.core.widgets.OutlineTreeWidget instead. """ pass Turing-0.11-beta/pyqode/qt/000077500000000000000000000000001331472757200155545ustar00rootroot00000000000000Turing-0.11-beta/pyqode/qt/QtCore.py000066400000000000000000000021611331472757200173230ustar00rootroot00000000000000""" Provides QtCore classes and functions. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtCore import * # compatibility with pyside from PyQt5.QtCore import pyqtSignal as Signal from PyQt5.QtCore import pyqtSlot as Slot from PyQt5.QtCore import pyqtProperty as Property # use a common __version__ from PyQt5.QtCore import QT_VERSION_STR as __version__ elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtCore import * # compatibility with pyside from PyQt4.QtCore import pyqtSignal as Signal from PyQt4.QtCore import pyqtSlot as Slot from PyQt4.QtCore import pyqtProperty as Property from PyQt4.QtGui import QSortFilterProxyModel # use a common __version__ from PyQt4.QtCore import QT_VERSION_STR as __version__ elif os.environ[QT_API] in PYSIDE_API: from PySide.QtCore import * from PySide.QtGui import QSortFilterProxyModel # use a common __version__ import PySide.QtCore __version__ = PySide.QtCore.__version__ Turing-0.11-beta/pyqode/qt/QtDesigner.py000066400000000000000000000004541331472757200201760ustar00rootroot00000000000000""" Provides QtDesigner classes and functions. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtDesigner import * elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtDesigner import * Turing-0.11-beta/pyqode/qt/QtGui.py000066400000000000000000000011161331472757200171560ustar00rootroot00000000000000""" Provides QtGui classes and functions. .. warning:: All PyQt4/PySide gui classes are exposed but when you use PyQt5, those classes are not available. Therefore, you should treat/use this package as if it was ``PyQt5.QtGui`` module. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtGui import * elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtGui import * elif os.environ[QT_API] in PYSIDE_API: from PySide.QtGui import * Turing-0.11-beta/pyqode/qt/QtNetwork.py000066400000000000000000000006231331472757200200650ustar00rootroot00000000000000""" Provides QtNetwork classes and functions. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtNetwork import * elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtNetwork import * elif os.environ[QT_API] in PYSIDE_API: from PySide.QtNetwork import * Turing-0.11-beta/pyqode/qt/QtTest.py000066400000000000000000000012531331472757200173530ustar00rootroot00000000000000""" Provides QtTest and functions .. warning:: PySide is not supported here, that's why there is not unit tests running with PySide. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtTest import QTest elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtTest import QTest as OldQTest class QTest(OldQTest): @staticmethod def qWaitForWindowActive(QWidget): OldQTest.qWaitForWindowShown(QWidget) elif os.environ[QT_API] in PYSIDE_API: raise ImportError('QtTest support is incomplete for PySide') Turing-0.11-beta/pyqode/qt/QtWebWidgets.py000066400000000000000000000016261331472757200205040ustar00rootroot00000000000000""" This shiw provides a QWebView either from QtWebKit or from QtWebEngine. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: try: from PyQt5.QtWebKitWidgets import QWebView from PyQt5.QtWebKitWidgets import QWebPage except ImportError: try: from PyQt5.QtWebEngineWidgets import QWebEngineView as QWebView from PyQt5.QtWebEngineWidgets import QWebEnginePage as QWebPage except ImportError: # neither QtWebKit nor QtWebEngine installed QWebPage = None QWebView = None elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtWebKit import QWebView, QWebPage elif os.environ[QT_API] in PYSIDE_API: from PySide.QtWebKit import QWebView, QWebPage else: QWebPage = None QWebView = None Turing-0.11-beta/pyqode/qt/QtWidgets.py000066400000000000000000000033701331472757200200440ustar00rootroot00000000000000""" Provides widget classes and functions. .. warning:: All PyQt4/PySide gui classes are exposed but when you use PyQt5, those classes are not available. Therefore, you should treat/use this package as if it was ``PyQt5.QtWidgets`` module. """ import os from pyqode.qt import QT_API from pyqode.qt import PYQT5_API from pyqode.qt import PYQT4_API from pyqode.qt import PYSIDE_API if os.environ[QT_API] in PYQT5_API: from PyQt5.QtWidgets import * elif os.environ[QT_API] in PYQT4_API: from PyQt4.QtGui import * from PyQt4.QtGui import QFileDialog as OldFileDialog class QFileDialog(OldFileDialog): @staticmethod def getOpenFileName(parent=None, caption='', directory='', filter='', selectedFilter='', options=OldFileDialog.Options()): return OldFileDialog.getOpenFileNameAndFilter( parent, caption, directory, filter, selectedFilter, options) @staticmethod def getOpenFileNames(parent=None, caption='', directory='', filter='', selectedFilter='', options=OldFileDialog.Options()): return OldFileDialog.getOpenFileNamesAndFilter( parent, caption, directory, filter, selectedFilter, options) @staticmethod def getSaveFileName(parent=None, caption='', directory='', filter='', selectedFilter='', options=OldFileDialog.Options()): return OldFileDialog.getSaveFileNameAndFilter( parent, caption, directory, filter, selectedFilter, options) elif os.environ[QT_API] in PYSIDE_API: from PySide.QtGui import * Turing-0.11-beta/pyqode/qt/__init__.py000066400000000000000000000112131331472757200176630ustar00rootroot00000000000000""" **pyqode.qt** is a shim over the various qt bindings. It is used to write qt bindings indenpendent library or application. The shim will automatically select the first available API (PyQt5, PyQt4 and finally PySide). You can force the use of one specific bindings (e.g. if your application is using one specific bindings and you need to use library that use pyqode.qt) by setting up the ``QT_API`` environment variable. PyQt5 +++++ For pyqt5, you don't have to set anything as it will be used automatically:: >>> from pyqode.qt import QtGui, QtWidgets, QtCore >>> print(QtWidgets.QWidget) PyQt4 +++++ Set the ``QT_API`` environment variable to 'PyQt4' (case insensitive) before importing any python package:: >>> import os >>> os.environ['QT_API'] = 'PyQt4' >>> from pyqode.qt import QtGui, QtWidgets, QtCore >>> print(QtWidgets.QWidget) .. warning:: This requires to set the SIP api to version 2 (for strings and covariants). If you're using python2 you have to make sure the correct sip api is set before importing any PyQt4 module (pyqode.qt can take care of that for you but it must be imported before any PyQt4 module). PySide ++++++ Set the QT_API environment variable to 'PySide' (case insensitive) before importing pyqode:: >>> import os >>> os.environ['QT_API'] = 'PySide' >>> from pyqode.qt import QtGui, QtWidgets, QtCore >>> print(QtWidgets.QWidget) """ import os import sys import logging __version__ = '2.10.0' #: Qt API environment variable name QT_API = 'QT_API' #: names of the expected PyQt5 api PYQT5_API = ['pyqt5'] #: names of the expected PyQt4 api PYQT4_API = [ 'pyqt', # name used in IPython.qt 'pyqt4' # pyqode.qt original name ] #: names of the expected PySide api PYSIDE_API = ['pyside'] class PythonQtError(Exception): """ Error raise if no bindings could be selected """ pass def setup_apiv2(): """ Setup apiv2 when using PyQt4 and Python2. """ # setup PyQt api to version 2 if sys.version_info[0] == 2: logging.getLogger(__name__).debug( 'setting up SIP API to version 2') import sip try: sip.setapi("QString", 2) sip.setapi("QVariant", 2) except ValueError: logging.getLogger(__name__).critical( "failed to set up sip api to version 2 for PyQt4") raise ImportError('PyQt4') def autodetect(): """ Auto-detects and use the first available QT_API by importing them in the following order: 1) PyQt5 2) PyQt4 3) PySide """ logging.getLogger(__name__).debug('auto-detecting QT_API') try: logging.getLogger(__name__).debug('trying PyQt5') import PyQt5 os.environ[QT_API] = PYQT5_API[0] logging.getLogger(__name__).debug('imported PyQt5') except ImportError: try: logging.getLogger(__name__).debug('trying PyQt4') setup_apiv2() import PyQt4 os.environ[QT_API] = PYQT4_API[0] logging.getLogger(__name__).debug('imported PyQt4') except ImportError: try: logging.getLogger(__name__).debug('trying PySide') import PySide os.environ[QT_API] = PYSIDE_API[0] logging.getLogger(__name__).debug('imported PySide') except ImportError: raise PythonQtError('No Qt bindings could be found') if QT_API in os.environ: # check if the selected QT_API is available try: if os.environ[QT_API].lower() in PYQT5_API: logging.getLogger(__name__).debug('importing PyQt5') import PyQt5 os.environ[QT_API] = PYQT5_API[0] logging.getLogger(__name__).debug('imported PyQt5') elif os.environ[QT_API].lower() in PYQT4_API: logging.getLogger(__name__).debug('importing PyQt4') setup_apiv2() import PyQt4 os.environ[QT_API] = PYQT4_API[0] logging.getLogger(__name__).debug('imported PyQt4') elif os.environ[QT_API].lower() in PYSIDE_API: logging.getLogger(__name__).debug('importing PySide') import PySide os.environ[QT_API] = PYSIDE_API[0] logging.getLogger(__name__).debug('imported PySide') except ImportError: logging.getLogger(__name__).warning( 'failed to import the selected QT_API: %s', os.environ[QT_API]) # use the auto-detected API if possible autodetect() else: # user did not select a qt api, let's perform auto-detection autodetect() logging.getLogger(__name__).info('using %s' % os.environ[QT_API]) Turing-0.11-beta/requirements.txt000066400000000000000000000006161331472757200171160ustar00rootroot00000000000000altgraph==0.15 autopep8==1.3.5 cycler==0.10.0 docutils==0.14 future==0.16.0 jedi==0.11.1 kiwisolver==1.0.1 macholib==1.9 matplotlib==2.2.2 numpy==1.14.2 parso==0.1.1 pefile==2017.11.5 pep8==1.7.1 pyflakes==1.6.0 Pygments==2.2.0 PyInstaller==3.3.1 pyparsing==2.2.0 pyqode.core==2.11.0 pyqode.python==2.10.0 pyqode.qt==2.10.0 PyQt5==5.10.1 python-dateutil==2.7.2 pytz==2018.3 sip==4.19.8 six==1.11.0 Turing-0.11-beta/src/000077500000000000000000000000001331472757200144165ustar00rootroot00000000000000Turing-0.11-beta/src/Makefile000066400000000000000000000005001331472757200160510ustar00rootroot00000000000000DESTDIR = all: pylupdate5 project-linux.pro make -C lang $@ DESTDIR=$(DESTDIR) make -C forms $@ DESTDIR=$(DESTDIR) clean: rm -f *~ make -C lang $@ DESTDIR=$(DESTDIR) make -C forms $@ DESTDIR=$(DESTDIR) install: make -C lang $@ DESTDIR=$(DESTDIR) make -C forms $@ DESTDIR=$(DESTDIR) .PHONY: all clean install Turing-0.11-beta/src/algo/000077500000000000000000000000001331472757200153405ustar00rootroot00000000000000Turing-0.11-beta/src/algo/__init__.py000066400000000000000000000000301331472757200174420ustar00rootroot00000000000000# -*- coding: utf-8 -*- Turing-0.11-beta/src/algo/__tests__.py000066400000000000000000000107121331472757200176510ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts import * from algo.worker import Worker from maths.parser import quick_parse as parse from tests.framework import expect tests = [ ( [ AssignStmt(parse("sum"), parse("0")), InputStmt(parse("N")), ForStmt("i", parse("1"), parse("N"), [ AssignStmt(parse("sum"), parse("sum + i")) ]), DisplayStmt(parse("\"Result=\" + sum")) ], "5", [ "Variable N = 5", "Result=15" ] ), ( [ ForStmt("i", parse("1"), parse("3"), [ ForStmt("i", parse("1"), parse("3"), [ DisplayStmt(parse("i")) ]) ]) ], "", [ "1", "2", "3", "1", "2", "3", "1", "2", "3", ] ), ( [ AssignStmt(parse("i"), parse("42")), ForStmt("i", parse("1"), parse("10"), [ IfStmt(parse("1"), [ IfStmt(parse("i % 2"), [ ContinueStmt() ]), IfStmt(parse("i > 5"), [ FuncStmt("fibo", ["n"], [ IfStmt(parse("n <= 1"), [ ReturnStmt(parse("n")) ]), ReturnStmt(parse("fibo(n-1)+fibo(n-2)")) ]), DisplayStmt(parse("map(fibo, [5, 7, 9])")), DisplayStmt(parse("i")), BreakStmt() ]), DisplayStmt(parse("i")), ]) ]), DisplayStmt(parse("i")) ], "", [ "2", "4", "[5, 13, 34]", "6", "42" ] ), ( [ FuncStmt("f1", ["n"], [ FuncStmt("f2", ["n"], [ ReturnStmt(parse("{m}({n}(m*n))(n)")) ]), ReturnStmt(parse("f2(n)")) ]), DisplayStmt(parse("f1(3)(4)")) ], "", [ "12" ] ), ( [ FuncStmt("sayHello2", ["name"], [ AssignStmt(parse("text"), parse("\"Hello \" + name")), FuncStmt("say", [], [ DisplayStmt(parse("text")) ]), ReturnStmt(parse("say")) ]), AssignStmt(parse("say2"), parse("sayHello2(\"Bob\")")), CallStmt(parse("say2"), []) ], "", [ "Hello Bob" ] ), ( [ ForStmt("i", parse("1"), parse("16"), [ IfStmt(parse("i % 15 == 0"), [ DisplayStmt(parse("\"FizzBuzz\"")) ]), ElseStmt([ IfStmt(parse("i % 3 == 0"), [ DisplayStmt(parse("\"Fizz\"")) ]), ElseStmt([ IfStmt(parse("i % 5 == 0"), [ DisplayStmt(parse("\"Buzz\"")) ]), ElseStmt([ DisplayStmt(parse("i")) ]) ]) ]), ]) ], "", [ "1", "2", "Fizz", "4", "Buzz", "Fizz", "7", "8", "Fizz", "Buzz", "11", "Fizz", "13", "14", "FizzBuzz", "16" ] ) ] def run_tests(): for algo, input, exp_output in tests: # print("\n".join(BlockStmt(algo).python())) worker = Worker(algo) output = "" def buffer_print(*args, end="\n"): nonlocal output output += " ".join(str(arg) for arg in args) + end worker.callback_print = buffer_print iter_input = iter(input.split("\n")) def buffer_input(prompt=""): result = next(iter_input) buffer_print(prompt + result) return result worker.callback_input = buffer_input worker.strict_typing = True worker.run() expect(output, "".join(x + "\n" for x in exp_output)) Turing-0.11-beta/src/algo/backends/000077500000000000000000000000001331472757200171125ustar00rootroot00000000000000Turing-0.11-beta/src/algo/backends/__init__.py000066400000000000000000000000301331472757200212140ustar00rootroot00000000000000# -*- coding: utf-8 -*- Turing-0.11-beta/src/algo/backends/texas.py000066400000000000000000000774751331472757200206340ustar00rootroot00000000000000# -*- coding: utf-8 -*- import struct from algo.stmts import * from maths.nodes import * from maths.parser import quick_parse as parse from util import lstreplace, pairwise tokens = { # 'unused': [[0x00]], '►DMS': [[0x01]], '►Dec': [[0x02]], '►Frac': [[0x03]], '→': [[0x04]], 'Boxplot': [[0x05]], '[': [[0x06]], ']': [[0x07]], '{': [[0x08]], '}': [[0x09]], 'ʳ': [[0x0A]], '°': [[0x0B]], '⁻¹': [[0x0C]], '²': [[0x0D]], 'ᵀ': [[0x0E]], # matrix transpose '³': [[0x0F]], '(': [[0x10]], ')': [[0x11]], 'round(': [[0x12]], 'pxl-Test(': [[0x13]], 'augment(': [[0x14]], 'rowSwap(': [[0x15]], 'row+(': [[0x16]], '*row(': [[0x17]], '*row+(': [[0x18]], 'max(': [[0x19]], 'min(': [[0x1A]], 'R►Pr(': [[0x1B]], 'R►Pθ(': [[0x1C]], 'P►Rx(': [[0x1D]], 'P►Ry': [[0x1E]], 'median(': [[0x1F]], 'randM(': [[0x20]], 'mean(': [[0x21]], 'solve(': [[0x22]], 'seq(': [[0x23]], 'fnInt(': [[0x24]], 'nDeriv(': [[0x25]], # 'unused': [[0x26]], 'fMin(': [[0x27]], 'fMax(': [[0x28]], ' ': [[0x29]], '"': [[0x2A]], ',': [[0x2B]], 'ii': [[0x2C], "i"], # imaginary unit '!': [[0x2D]], 'CubicReg ': [[0x2E]], 'QuartReg ': [[0x2F]], '0': [[0x30]], '1': [[0x31]], '2': [[0x32]], '3': [[0x33]], '4': [[0x34]], '5': [[0x35]], '6': [[0x36]], '7': [[0x37]], '8': [[0x38]], '9': [[0x39]], '.': [[0x3A]], 'ᴇ': [[0x3B]], # exponent ' or ': [[0x3C]], ' xor ': [[0x3D]], ':': [[0x3E]], '\n': [[0x3F]], ' and ': [[0x40]], 'A': [[0x41]], 'B': [[0x42]], 'C': [[0x43]], 'D': [[0x44]], 'E': [[0x45]], 'F': [[0x46]], 'G': [[0x47]], 'H': [[0x48]], 'I': [[0x49]], 'J': [[0x4A]], 'K': [[0x4B]], 'L': [[0x4C]], 'M': [[0x4D]], 'N': [[0x4E]], 'O': [[0x4F]], 'P': [[0x50]], 'Q': [[0x51]], 'R': [[0x52]], 'S': [[0x53]], 'T': [[0x54]], 'U': [[0x55]], 'V': [[0x56]], 'W': [[0x57]], 'X': [[0x58]], 'Y': [[0x59]], 'Z': [[0x5A]], 'θ': [[0x5B]], # '2-byte': [[0x5C]], Matrices # '2-byte': [[0x5D]], Lists # '2-byte': [[0x5E]], Equations 'prgm': [[0x5F]], # '2-byte': [[0x60]], Pictures # '2-byte': [[0x61]], GDBs # '2-byte': [[0x62]], Statistics # '2-byte': [[0x63]], Window and Finance 'Radian': [[0x64]], 'Degree': [[0x65]], 'Normal': [[0x66]], 'Sci': [[0x67]], 'Eng': [[0x68]], 'Float': [[0x69]], '=': [[0x6A]], '<': [[0x6B]], '>': [[0x6C]], '≤': [[0x6D]], '≥': [[0x6E]], '≠': [[0x6F]], '+': [[0x70]], '-': [[0x71]], 'Ans': [[0x72]], 'Fix ': [[0x73]], 'Horiz': [[0x74]], 'Full': [[0x75]], 'Func': [[0x76]], 'Param': [[0x77]], 'Polar': [[0x78]], 'Seq': [[0x79]], 'IndpntAuto': [[0x7A]], 'IndpntAsk': [[0x7B]], 'DependAuto': [[0x7C]], 'DependAsk': [[0x7D]], # '2-byte': [[0x7E]], Graph Format '□': [[0x7F]], '﹢': [[0x80]], '·': [[0x81]], '*': [[0x82]], '/': [[0x83]], 'Trace': [[0x84]], 'ClrDraw': [[0x85]], 'ZStandard': [[0x86]], 'ZTrig': [[0x87]], 'ZBox': [[0x88]], 'Zoom In': [[0x89]], 'Zoom Out': [[0x8A]], 'ZSquare': [[0x8B]], 'ZInteger': [[0x8C]], 'ZPrevious': [[0x8D]], 'ZDecimal': [[0x8E]], 'ZoomStat': [[0x8F]], 'ZoomRcl': [[0x90]], 'PrintScreen': [[0x91]], 'ZoomSto': [[0x92]], 'Text(': [[0x93]], ' nPr ': [[0x94]], ' nCr ': [[0x95]], 'FnOn ': [[0x96]], 'FnOff ': [[0x97]], 'StorePic ': [[0x98]], 'RecallPic ': [[0x99]], 'StoreGDB ': [[0x9A]], 'RecallGDB ': [[0x9B]], 'Line(': [[0x9C]], 'Vertical ': [[0x9D]], 'Pt-On(': [[0x9E]], 'Pt-Off(': [[0x9F]], 'Pt-Change(': [[0xA0]], 'Pxl-On(': [[0xA1]], 'Pxl-Off(': [[0xA2]], 'Pxl-Change(': [[0xA3]], 'Shade(': [[0xA4]], 'Circle(': [[0xA5]], 'Horizontal ': [[0xA6]], 'Tangent(': [[0xA7]], 'DrawInv ': [[0xA8]], 'DrawF ': [[0xA9]], # '2-byte': [[0xAA]], Strings 'rand': [[0xAB]], 'π_const': [[0xAC], "π"], 'getKey': [[0xAD]], "'": [[0xAE]], '?': [[0xAF]], '⁻': [[0xB0]], 'int(': [[0xB1]], 'abs(': [[0xB2]], 'det(': [[0xB3]], 'identity(': [[0xB4]], 'dim(': [[0xB5]], 'sum(': [[0xB6]], 'prod(': [[0xB7]], 'not(': [[0xB8]], 'iPart(': [[0xB9]], 'fPart(': [[0xBA]], # '2-byte': [[0xBB]], Miscellaneous '√(': [[0xBC]], '³√(': [[0xBD]], 'ln(': [[0xBE]], 'e^(': [[0xBF]], 'log(': [[0xC0]], '10^(': [[0xC1]], 'sin(': [[0xC2]], 'sin⁻¹(': [[0xC3]], 'cos(': [[0xC4]], 'cos⁻¹(': [[0xC5]], 'tan(': [[0xC6]], 'tan⁻¹(': [[0xC7]], 'sinh(': [[0xC8]], 'sinh⁻¹(': [[0xC9]], 'cosh(': [[0xCA]], 'cosh⁻¹(': [[0xCB]], 'tanh(': [[0xCC]], 'tanh⁻¹(': [[0xCD]], 'If ': [[0xCE]], 'Then': [[0xCF]], 'Else': [[0xD0]], 'While ': [[0xD1]], 'Repeat ': [[0xD2]], 'For(': [[0xD3]], 'End': [[0xD4]], 'Return': [[0xD5]], 'Lbl ': [[0xD6]], 'Goto ': [[0xD7]], 'Pause ': [[0xD8]], 'Stop': [[0xD9]], 'IS>(': [[0xDA]], 'DS<(': [[0xDB]], 'Input ': [[0xDC]], 'Prompt ': [[0xDD]], 'Disp ': [[0xDE]], 'DispGraph': [[0xDF]], 'Output(': [[0xE0]], 'ClrHome': [[0xE1]], 'Fill(': [[0xE2]], 'SortA(': [[0xE3]], 'SortD(': [[0xE4]], 'DispTable': [[0xE5]], 'Menu(': [[0xE6]], 'Send(': [[0xE7]], 'Get(': [[0xE8]], 'PlotsOn ': [[0xE9]], 'PlotsOff ': [[0xEA]], 'ʟ': [[0xEB]], 'Plot1(': [[0xEC]], 'Plot2(': [[0xED]], 'Plot3(': [[0xEE]], # 'TI-84+(C(S)E)': [[0xEF]], TI-84+ '^': [[0xF0]], '×√': [[0xF1]], '1-Var Stats ': [[0xF2]], '2-Var Stats': [[0xF3]], 'LinReg(a+bx) ': [[0xF4]], 'ExpReg ': [[0xF5]], 'LnReg ': [[0xF6]], 'PwrReg ': [[0xF7]], 'Med-Med ': [[0xF8]], 'QuadReg ': [[0xF9]], 'ClrList ': [[0xFA]], 'ClrTable': [[0xFB]], 'Histogram': [[0xFC]], 'xyLine': [[0xFD]], 'Scatter': [[0xFE]], 'LinReg(ax+b) ': [[0xFF]], # Matrices '[A]': [[0x5C, 0x00]], '[B]': [[0x5C, 0x01]], '[C]': [[0x5C, 0x02]], '[D]': [[0x5C, 0x03]], '[E]': [[0x5C, 0x04]], '[F]': [[0x5C, 0x05]], '[G]': [[0x5C, 0x06]], '[H]': [[0x5C, 0x07]], '[I]': [[0x5C, 0x08]], '[J]': [[0x5C, 0x09]], # Lists 'L₁': [[0x5D, 0x00]], 'L₂': [[0x5D, 0x01]], 'L₃': [[0x5D, 0x02]], 'L₄': [[0x5D, 0x03]], 'L₅': [[0x5D, 0x04]], 'L₆': [[0x5D, 0x05]], # Equations 'Y₁': [[0x5E, 0x10]], 'Y₂': [[0x5E, 0x11]], 'Y₃': [[0x5E, 0x12]], 'Y₄': [[0x5E, 0x13]], 'Y₅': [[0x5E, 0x14]], 'Y₆': [[0x5E, 0x15]], 'Y₇': [[0x5E, 0x16]], 'Y₈': [[0x5E, 0x17]], 'Y₉': [[0x5E, 0x18]], 'Y₀': [[0x5E, 0x19]], 'X₁ᴛ': [[0x5E, 0x20]], 'Y₁ᴛ': [[0x5E, 0x21]], 'X₂ᴛ': [[0x5E, 0x22]], 'Y₂ᴛ': [[0x5E, 0x23]], 'X₃ᴛ': [[0x5E, 0x24]], 'Y₃ᴛ': [[0x5E, 0x25]], 'X₄ᴛ': [[0x5E, 0x26]], 'Y₄ᴛ': [[0x5E, 0x27]], 'X₅ᴛ': [[0x5E, 0x28]], 'Y₅ᴛ': [[0x5E, 0x29]], 'X₆ᴛ': [[0x5E, 0x2A]], 'Y₆ᴛ': [[0x5E, 0x2B]], 'r₁': [[0x5E, 0x40]], 'r₂': [[0x5E, 0x41]], 'r₃': [[0x5E, 0x42]], 'r₄': [[0x5E, 0x43]], 'r₅': [[0x5E, 0x44]], 'r₆': [[0x5E, 0x45]], 'u_': [[0x5E, 0x80]], # sequences todo 'v_': [[0x5E, 0x81]], 'w_': [[0x5E, 0x82]], # Pictures 'Pic1': [[0x60, 0x00]], 'Pic2': [[0x60, 0x01]], 'Pic3': [[0x60, 0x02]], 'Pic4': [[0x60, 0x03]], 'Pic5': [[0x60, 0x04]], 'Pic6': [[0x60, 0x05]], 'Pic7': [[0x60, 0x06]], 'Pic8': [[0x60, 0x07]], 'Pic9': [[0x60, 0x08]], 'Pic0': [[0x60, 0x09]], # GDBs 'GDB1': [[0x61, 0x00]], 'GDB2': [[0x61, 0x01]], 'GDB3': [[0x61, 0x02]], 'GDB4': [[0x61, 0x03]], 'GDB5': [[0x61, 0x04]], 'GDB6': [[0x61, 0x05]], 'GDB7': [[0x61, 0x06]], 'GDB8': [[0x61, 0x07]], 'GDB9': [[0x61, 0x08]], 'GDB0': [[0x61, 0x09]], # Strings 'Str1': [[0xAA, 0x00]], 'Str2': [[0xAA, 0x01]], 'Str3': [[0xAA, 0x02]], 'Str4': [[0xAA, 0x03]], 'Str5': [[0xAA, 0x04]], 'Str6': [[0xAA, 0x05]], 'Str7': [[0xAA, 0x06]], 'Str8': [[0xAA, 0x07]], 'Str9': [[0xAA, 0x08]], 'Str0': [[0xAA, 0x09]], # Statistics # 'internal use only': [[0x62, 0x00]], 'RegEq': [[0x62, 0x01]], 'n_stat': [[0x62, 0x02], "n"], 'x̄': [[0x62, 0x03]], 'Σx': [[0x62, 0x04]], 'Σx²': [[0x62, 0x05]], 'Sx': [[0x62, 0x06]], 'σx': [[0x62, 0x07]], 'minX': [[0x62, 0x08]], 'maxX': [[0x62, 0x09]], 'minY': [[0x62, 0x0A]], 'maxY': [[0x62, 0x0B]], 'ȳ': [[0x62, 0x0C]], 'Σy': [[0x62, 0x0D]], 'Σy²': [[0x62, 0x0E]], 'Sy': [[0x62, 0x0F]], 'σy': [[0x62, 0x10]], 'Σxy': [[0x62, 0x11]], 'r_stat': [[0x62, 0x12]], 'Med': [[0x62, 0x13]], 'Q1': [[0x62, 0x14]], 'Q3': [[0x62, 0x15]], 'a_stat': [[0x62, 0x16], "a"], 'b_stat': [[0x62, 0x17], "b"], 'c_stat': [[0x62, 0x18], "c"], 'd_stat': [[0x62, 0x19], "d"], 'e_stat': [[0x62, 0x1A], "e"], 'x₁': [[0x62, 0x1B]], 'x₂': [[0x62, 0x1C]], 'x₃': [[0x62, 0x1D]], 'y₁': [[0x62, 0x1E]], 'y₂': [[0x62, 0x1F]], 'y₃': [[0x62, 0x20]], 'n_recur': [[0x62, 0x21], "n"], 'p_stat': [[0x62, 0x22], "p"], 'z_stat': [[0x62, 0x23], "z"], 't_stat': [[0x62, 0x24], "t"], 'χ²': [[0x62, 0x25]], 'F_stat': [[0x62, 0x26], "F"], 'df': [[0x62, 0x27]], '̂p': [[0x62, 0x28]], '̂p₁': [[0x62, 0x29]], '̂p₂': [[0x62, 0x2A]], 'x̄₁': [[0x62, 0x2B]], 'Sx₁': [[0x62, 0x2C]], 'n₁': [[0x62, 0x2D]], 'x₂̄': [[0x62, 0x2E]], 'Sx₂': [[0x62, 0x2F]], 'n₂': [[0x62, 0x30]], 'Sxp': [[0x62, 0x31]], 'lower': [[0x62, 0x32]], 'upper': [[0x62, 0x33]], 's_stat': [[0x62, 0x34], "s"], 'r²': [[0x62, 0x35]], 'R²': [[0x62, 0x36]], 'Factor df': [[0x62, 0x37]], 'Factor SS': [[0x62, 0x38]], 'Factor MS': [[0x62, 0x39]], 'Error df': [[0x62, 0x3A]], 'Error SS': [[0x62, 0x3B]], 'Error MS': [[0x62, 0x3C]], # Window and Finance 'ZXscl': [[0x63, 0x00]], 'ZYscl': [[0x63, 0x01]], 'Xscl': [[0x63, 0x02]], 'Yscl': [[0x63, 0x03]], 'u(nMin)': [[0x63, 0x04]], 'v(nMin)': [[0x63, 0x05]], 'u(n-1)_wnd': [[0x63, 0x06], "u(n-1)"], # TI-82 compatibility 'v(n-1)_wnd': [[0x63, 0x07], "v(n-1)"], 'Zu(nMin)': [[0x63, 0x08]], 'Zv(nMin)': [[0x63, 0x09]], 'Xmin': [[0x63, 0x0A]], 'Xmax': [[0x63, 0x0B]], 'Ymin': [[0x63, 0x0C]], 'Ymax': [[0x63, 0x0D]], 'Tmin': [[0x63, 0x0E]], 'Tmax': [[0x63, 0x0F]], 'θmin': [[0x63, 0x10]], 'θmax': [[0x63, 0x11]], 'ZXmin': [[0x63, 0x12]], 'ZXmax': [[0x63, 0x13]], 'ZYmin': [[0x63, 0x14]], 'ZYmax': [[0x63, 0x15]], 'Zθmin': [[0x63, 0x16]], 'Zθmax': [[0x63, 0x17]], 'ZTmin': [[0x63, 0x18]], 'ZTmax': [[0x63, 0x19]], 'TblStart': [[0x63, 0x1A]], 'PlotStart': [[0x63, 0x1B]], 'ZPlotStart': [[0x63, 0x1C]], 'nMax': [[0x63, 0x1D]], 'ZnMax': [[0x63, 0x1E]], 'nMin': [[0x63, 0x1F]], 'ZnMin': [[0x63, 0x20]], 'ΔTbl': [[0x63, 0x21]], 'Tstep': [[0x63, 0x22]], 'θstep': [[0x63, 0x23]], 'ZTstep': [[0x63, 0x24]], 'Zθstep': [[0x63, 0x25]], 'ΔX': [[0x63, 0x26]], 'ΔY': [[0x63, 0x27]], 'XFact': [[0x63, 0x28]], 'YFact': [[0x63, 0x29]], 'TblInput': [[0x63, 0x2A]], 'N_wnd': [[0x63, 0x2B], "N"], 'I%': [[0x63, 0x2C]], 'PV': [[0x63, 0x2D]], 'PMT': [[0x63, 0x2E]], 'FV': [[0x63, 0x2F]], 'P/Y': [[0x63, 0x30]], 'C/Y': [[0x63, 0x31]], 'w(nMin)': [[0x63, 0x32]], 'Zw(nMin)': [[0x63, 0x33]], 'PlotStep': [[0x63, 0x34]], 'ZPlotStep': [[0x63, 0x35]], 'Xres': [[0x63, 0x36]], 'ZXres': [[0x63, 0x37]], 'TraceStep': [[0x63, 0x38]], # Graph Format 'Sequential': [[0x7E, 0x00]], 'Simul': [[0x7E, 0x01]], 'PolarGC': [[0x7E, 0x02]], 'RectGC': [[0x7E, 0x03]], 'CoordOn': [[0x7E, 0x04]], 'CoordOff': [[0x7E, 0x05]], 'Connected': [[0x7E, 0x06]], 'Dot': [[0x7E, 0x07]], 'AxesOn': [[0x7E, 0x08]], 'AxesOff': [[0x7E, 0x09]], 'GridDot ': [[0x7E, 0x0A]], 'GridOff': [[0x7E, 0x0B]], 'LabelOn': [[0x7E, 0x0C]], 'LabelOff': [[0x7E, 0x0D]], 'Web': [[0x7E, 0x0E]], 'Time': [[0x7E, 0x0F]], 'uvAxes': [[0x7E, 0x10]], 'vwAxes': [[0x7E, 0x11]], 'uwAxes': [[0x7E, 0x12]], # Miscellaneous 'npv(': [[0xBB, 0x00]], 'irr(': [[0xBB, 0x01]], 'bal(': [[0xBB, 0x02]], 'Σprn(': [[0xBB, 0x03]], 'ΣInt(': [[0xBB, 0x04]], '►Nom(': [[0xBB, 0x05]], '►Eff(': [[0xBB, 0x06]], 'dbd(': [[0xBB, 0x07]], 'lcm(': [[0xBB, 0x08]], 'gcd(': [[0xBB, 0x09]], 'randInt(': [[0xBB, 0x0A]], 'randBin(': [[0xBB, 0x0B]], 'sub(': [[0xBB, 0x0C]], 'stdDev(': [[0xBB, 0x0D]], 'variance(': [[0xBB, 0x0E]], 'inString(': [[0xBB, 0x0F]], 'normalcdf(': [[0xBB, 0x10]], 'invNorm(': [[0xBB, 0x11]], 'tcdf(': [[0xBB, 0x12]], 'χ²cdf(': [[0xBB, 0x13]], 'Fcdf(': [[0xBB, 0x14]], 'binompdf(': [[0xBB, 0x15]], 'binomcdf(': [[0xBB, 0x16]], 'poissonpdf(': [[0xBB, 0x17]], 'poissoncdf(': [[0xBB, 0x18]], 'geometpdf(': [[0xBB, 0x19]], 'geometcdf(': [[0xBB, 0x1A]], 'normalpdf(': [[0xBB, 0x1B]], 'tpdf(': [[0xBB, 0x1C]], 'χ²pdf(': [[0xBB, 0x1D]], 'Fpdf(': [[0xBB, 0x1E]], 'randNorm(': [[0xBB, 0x1F]], 'tvm_Pmt': [[0xBB, 0x20]], 'tvm_I%': [[0xBB, 0x21]], 'tvm_PV': [[0xBB, 0x22]], 'tvm_N': [[0xBB, 0x23]], 'tvm_FV': [[0xBB, 0x24]], 'conj(': [[0xBB, 0x25]], 'real(': [[0xBB, 0x26]], 'imag(': [[0xBB, 0x27]], 'angle(': [[0xBB, 0x28]], 'cumSum(': [[0xBB, 0x29]], 'expr(': [[0xBB, 0x2A]], 'length(': [[0xBB, 0x2B]], 'ΔList(': [[0xBB, 0x2C]], 'ref(': [[0xBB, 0x2D]], 'rref(': [[0xBB, 0x2E]], '►Rect': [[0xBB, 0x2F]], '►Polar': [[0xBB, 0x30]], 'e_const': [[0xBB, 0x31]], 'SinReg ': [[0xBB, 0x32]], 'Logistic ': [[0xBB, 0x33]], 'LinRegTTest ': [[0xBB, 0x34]], 'ShadeNorm(': [[0xBB, 0x35]], 'Shade_t(': [[0xBB, 0x36]], 'Shadeχ²': [[0xBB, 0x37]], 'ShadeF(': [[0xBB, 0x38]], 'Matr►list(': [[0xBB, 0x39]], 'List►matr(': [[0xBB, 0x3A]], 'Z-Test(': [[0xBB, 0x3B]], 'T-Test ': [[0xBB, 0x3C]], '2-SampZTest(': [[0xBB, 0x3D]], '1-PropZTest(': [[0xBB, 0x3E]], '2-PropZTest(': [[0xBB, 0x3F]], 'χ²-Test(': [[0xBB, 0x40]], 'ZInterval': [[0xBB, 0x41]], '2-SampZInt(': [[0xBB, 0x42]], '1-PropZInt(': [[0xBB, 0x43]], '2-PropZInt(': [[0xBB, 0x44]], 'GraphStyle(': [[0xBB, 0x45]], '2-SampTTest ': [[0xBB, 0x46]], '2-SampFTest ': [[0xBB, 0x47]], 'TInterval ': [[0xBB, 0x48]], '2-SampTInt ': [[0xBB, 0x49]], 'SetUpEditor ': [[0xBB, 0x4A]], 'Pmt_End': [[0xBB, 0x4B]], 'Pmt_Bgn': [[0xBB, 0x4C]], 'Real': [[0xBB, 0x4D]], 're^θi': [[0xBB, 0x4E]], 'a+bi': [[0xBB, 0x4F]], 'ExprOn': [[0xBB, 0x50]], 'ExprOff': [[0xBB, 0x51]], 'ClrAllLists': [[0xBB, 0x52]], 'GetCalc(': [[0xBB, 0x53]], 'DelVar ': [[0xBB, 0x54]], 'Equ►String(': [[0xBB, 0x55]], 'String►Equ(': [[0xBB, 0x56]], 'Clear Entries': [[0xBB, 0x57]], 'Select(': [[0xBB, 0x58]], 'ANOVA(': [[0xBB, 0x59]], 'ModBoxplot': [[0xBB, 0x5A]], 'NormProbPlot': [[0xBB, 0x5B]], # 'unused': [[0xBB, 0x5C]], # 'unused': [[0xBB, 0x5D]], # 'unused': [[0xBB, 0x5E]], # 'unused': [[0xBB, 0x5F]], # 'unused': [[0xBB, 0x60]], # 'unused': [[0xBB, 0x61]], # 'unused': [[0xBB, 0x62]], # 'unused': [[0xBB, 0x63]], 'G-T': [[0xBB, 0x64]], 'ZoomFit': [[0xBB, 0x65]], 'DiagnosticOn': [[0xBB, 0x66]], 'DiagnosticOff': [[0xBB, 0x67]], 'Archive ': [[0xBB, 0x68]], 'UnArchive ': [[0xBB, 0x69]], 'Asm(': [[0xBB, 0x6A]], 'AsmComp(': [[0xBB, 0x6B]], 'AsmPrgm': [[0xBB, 0x6C]], 'compiled_asm': [[0xBB, 0x6D]], 'Á': [[0xBB, 0x6E]], 'À': [[0xBB, 0x6F]], 'Â': [[0xBB, 0x70]], 'Ä': [[0xBB, 0x71]], 'á': [[0xBB, 0x72]], 'à': [[0xBB, 0x73]], 'â': [[0xBB, 0x74]], 'ä': [[0xBB, 0x75]], 'É': [[0xBB, 0x76]], 'È': [[0xBB, 0x77]], 'Ê': [[0xBB, 0x78]], 'Ë': [[0xBB, 0x79]], 'é': [[0xBB, 0x7A]], 'è': [[0xBB, 0x7B]], 'ê': [[0xBB, 0x7C]], 'ë': [[0xBB, 0x7D]], # 'unused': [[0xBB, 0x7E]], 'Ì': [[0xBB, 0x7F]], 'Î': [[0xBB, 0x80]], 'Ï': [[0xBB, 0x81]], 'í': [[0xBB, 0x82]], 'ì': [[0xBB, 0x83]], 'î': [[0xBB, 0x84]], 'ï': [[0xBB, 0x85]], 'Ó': [[0xBB, 0x86]], 'Ò': [[0xBB, 0x87]], 'Ô': [[0xBB, 0x88]], 'Ö': [[0xBB, 0x89]], 'ó': [[0xBB, 0x8A]], 'ò': [[0xBB, 0x8B]], 'ô': [[0xBB, 0x8C]], 'ö': [[0xBB, 0x8D]], 'Ú': [[0xBB, 0x8E]], 'Ù': [[0xBB, 0x8F]], 'Û': [[0xBB, 0x90]], 'Ü': [[0xBB, 0x91]], 'ú': [[0xBB, 0x92]], 'ù': [[0xBB, 0x93]], 'û': [[0xBB, 0x94]], 'ü': [[0xBB, 0x95]], 'Ç': [[0xBB, 0x96]], 'ç': [[0xBB, 0x97]], 'Ñ': [[0xBB, 0x98]], 'ñ': [[0xBB, 0x99]], '´': [[0xBB, 0x9A]], '`': [[0xBB, 0x9B]], '¨': [[0xBB, 0x9C]], '¿': [[0xBB, 0x9D]], '¡': [[0xBB, 0x9E]], 'α': [[0xBB, 0x9F]], 'β': [[0xBB, 0xA0]], 'γ': [[0xBB, 0xA1]], 'Δ': [[0xBB, 0xA2]], 'δ': [[0xBB, 0xA3]], 'ε': [[0xBB, 0xA4]], 'λ': [[0xBB, 0xA5]], 'μ': [[0xBB, 0xA6]], 'π': [[0xBB, 0xA7]], 'ρ': [[0xBB, 0xA8]], 'Σ': [[0xBB, 0xA9]], # 'unused': [[0xBB, 0xAA]], 'φ': [[0xBB, 0xAB]], 'Ω': [[0xBB, 0xAC]], 'p^_sym': [[0xBB, 0xAD]], 'χ': [[0xBB, 0xAE]], 'F_sym': [[0xBB, 0xAF]], 'a': [[0xBB, 0xB0]], 'b': [[0xBB, 0xB1]], 'c': [[0xBB, 0xB2]], 'd': [[0xBB, 0xB3]], 'e': [[0xBB, 0xB4]], 'f': [[0xBB, 0xB5]], 'g': [[0xBB, 0xB6]], 'h': [[0xBB, 0xB7]], 'i': [[0xBB, 0xB8]], 'j': [[0xBB, 0xB9]], 'k': [[0xBB, 0xBA]], # 'unused': [[0xBB, 0xBB]], 'l': [[0xBB, 0xBC]], 'm': [[0xBB, 0xBD]], 'n': [[0xBB, 0xBE]], 'o': [[0xBB, 0xBF]], 'p': [[0xBB, 0xC0]], 'q': [[0xBB, 0xC1]], 'r': [[0xBB, 0xC2]], 's': [[0xBB, 0xC3]], 't': [[0xBB, 0xC4]], 'u': [[0xBB, 0xC5]], 'v': [[0xBB, 0xC6]], 'w': [[0xBB, 0xC7]], 'x': [[0xBB, 0xC8]], 'y': [[0xBB, 0xC9]], 'z': [[0xBB, 0xCA]], 'σ': [[0xBB, 0xCB]], 'τ': [[0xBB, 0xCC]], 'Í': [[0xBB, 0xCD]], 'GarbageCollect': [[0xBB, 0xCE]], '~': [[0xBB, 0xCF]], 'reserved': [[0xBB, 0xD0]], '@': [[0xBB, 0xD1]], '#': [[0xBB, 0xD2]], '$': [[0xBB, 0xD3]], '&': [[0xBB, 0xD4]], '`_other': [[0xBB, 0xD5]], ';': [[0xBB, 0xD6]], '\\': [[0xBB, 0xD7]], '|': [[0xBB, 0xD8]], '_': [[0xBB, 0xD9]], '%': [[0xBB, 0xDA]], '…': [[0xBB, 0xDB]], '∠': [[0xBB, 0xDC]], 'ß': [[0xBB, 0xDD]], 'x_exp': [[0xBB, 0xDE]], 'T_sub': [[0xBB, 0xDF]], '0_sub': [[0xBB, 0xE0]], '1_sub': [[0xBB, 0xE1]], '2_sub': [[0xBB, 0xE2]], '3_sub': [[0xBB, 0xE3]], '4_sub': [[0xBB, 0xE4]], '5_sub': [[0xBB, 0xE5]], '6_sub': [[0xBB, 0xE6]], '7_sub': [[0xBB, 0xE7]], '8_sub': [[0xBB, 0xE8]], '9_sub': [[0xBB, 0xE9]], '10_sub': [[0xBB, 0xEA]], '←_arr': [[0xBB, 0xEB]], '→_arr': [[0xBB, 0xEC]], '↑_arr': [[0xBB, 0xED]], '↓_arr': [[0xBB, 0xEE]], # 'unused': [[0xBB, 0xEF]], 'x_sym': [[0xBB, 0xF0]], '∫': [[0xBB, 0xF1]], '↑_sym': [[0xBB, 0xF2]], '↓_sym': [[0xBB, 0xF3]], '√': [[0xBB, 0xF4]], '[=]': [[0xBB, 0xF5]], # '': [[0xBB, 0xF6]], # '': [[0xBB, 0xF7]], # '': [[0xBB, 0xF8]], # '': [[0xBB, 0xF9]], # '': [[0xBB, 0xFA]], # '': [[0xBB, 0xFB]], # '': [[0xBB, 0xFC]], # '': [[0xBB, 0xFD]], # '': [[0xBB, 0xFE]], # '': [[0xBB, 0xFF]], # TI-84+ 'setDate(': [[0xEF, 0x00]], 'setTime(': [[0xEF, 0x01]], 'checkTmr(': [[0xEF, 0x02]], 'setDtFmt(': [[0xEF, 0x03]], 'setTmFmt(': [[0xEF, 0x04]], 'timeCnv(': [[0xEF, 0x05]], 'dayOfWk(': [[0xEF, 0x06]], 'getDtStr': [[0xEF, 0x07]], 'getTmStr(': [[0xEF, 0x08]], 'getDate': [[0xEF, 0x09]], 'getTime': [[0xEF, 0x0A]], 'startTmr': [[0xEF, 0x0B]], 'getDtFmt': [[0xEF, 0x0C]], 'getTmFmt': [[0xEF, 0x0D]], 'isClockOn': [[0xEF, 0x0E]], 'ClockOff': [[0xEF, 0x0F]], 'ClockOn': [[0xEF, 0x10]], 'OpenLib(': [[0xEF, 0x11]], 'ExecLib': [[0xEF, 0x12]], 'invT(': [[0xEF, 0x13]], 'χ²GOF-Test(': [[0xEF, 0x14]], 'LinRegTInt ': [[0xEF, 0x15]], 'Manual-Fit ': [[0xEF, 0x16]], 'ZQuadrant1': [[0xEF, 0x17]], 'ZFrac1/2': [[0xEF, 0x18]], 'ZFrac1/3': [[0xEF, 0x19]], 'ZFrac1/4': [[0xEF, 0x1A]], 'ZFrac1/5': [[0xEF, 0x1B]], 'ZFrac1/8': [[0xEF, 0x1C]], 'ZFrac1/10': [[0xEF, 0x1D]], 'mathprintbox': [[0xEF, 0x1E]], # '': [[0xEF, 0x1F]], # '': [[0xEF, 0x20]], # '': [[0xEF, 0x21]], # '': [[0xEF, 0x22]], # '': [[0xEF, 0x23]], # '': [[0xEF, 0x24]], # '': [[0xEF, 0x25]], # '': [[0xEF, 0x26]], # '': [[0xEF, 0x27]], # '': [[0xEF, 0x28]], # '': [[0xEF, 0x29]], # '': [[0xEF, 0x2A]], # '': [[0xEF, 0x2B]], # '': [[0xEF, 0x2C]], # '': [[0xEF, 0x2D]], # '': [[0xEF, 0x2E]], # '': [[0xEF, 0x2F]], '►n/d◄►Un/d': [[0xEF, 0x30]], '►F◄►D': [[0xEF, 0x31]], 'remainder(': [[0xEF, 0x32]], 'Σ(': [[0xEF, 0x33]], 'logBASE(': [[0xEF, 0x34]], 'randIntNoRep(': [[0xEF, 0x35]], 'MATHPRINT': [[0xEF, 0x36]], 'CLASSIC': [[0xEF, 0x37]], 'n/d': [[0xEF, 0x38]], 'Un/d': [[0xEF, 0x39]], 'AUTO': [[0xEF, 0x3A]], 'DEC': [[0xEF, 0x3B]], 'FRAC': [[0xEF, 0x3C]], 'FRAC-APPROX': [[0xEF, 0x3D]], # '': [[0xEF, 0x3E]], # '': [[0xEF, 0x3F]], # '': [[0xEF, 0x40]], 'BLUE': [[0xEF, 0x41]], 'RED': [[0xEF, 0x42]], 'BLACK': [[0xEF, 0x43]], 'MAGENTA': [[0xEF, 0x44]], 'GREEN': [[0xEF, 0x45]], 'ORANGE': [[0xEF, 0x46]], 'BROWN': [[0xEF, 0x47]], 'NAVY': [[0xEF, 0x48]], 'LTBLUE': [[0xEF, 0x49]], 'YELLOW': [[0xEF, 0x4A]], 'WHITE': [[0xEF, 0x4B]], 'LTGREY': [[0xEF, 0x4C]], 'MEDGREY': [[0xEF, 0x4D]], 'GREY': [[0xEF, 0x4E]], 'DARKGREY': [[0xEF, 0x4F]], 'Image1': [[0xEF, 0x50]], 'Image2': [[0xEF, 0x51]], 'Image3': [[0xEF, 0x52]], 'Image4': [[0xEF, 0x53]], 'Image5': [[0xEF, 0x54]], 'Image6': [[0xEF, 0x55]], 'Image7': [[0xEF, 0x56]], 'Image8': [[0xEF, 0x57]], 'Image9': [[0xEF, 0x58]], 'Image0': [[0xEF, 0x59]], 'Gridline ': [[0xEF, 0x5A]], 'BackgroundOn ': [[0xEF, 0x5B]], # '': [[0xEF, 0x5C]], # '': [[0xEF, 0x5D]], # '': [[0xEF, 0x5E]], # '': [[0xEF, 0x5F]], # '': [[0xEF, 0x60]], # '': [[0xEF, 0x61]], # '': [[0xEF, 0x62]], # '': [[0xEF, 0x63]], 'BackgroundOff': [[0xEF, 0x64]], 'GraphColor(': [[0xEF, 0x65]], # '': [[0xEF, 0x66]], 'TextColor(': [[0xEF, 0x67]], 'Asm84CPrgm': [[0xEF, 0x68]], # '': [[0xEF, 0x69]], 'DetectAsymOn': [[0xEF, 0x6A]], 'DetectAsymOff': [[0xEF, 0x6B]], 'BorderColor ': [[0xEF, 0x6C]], # '': [[0xEF, 0x6D]], # '': [[0xEF, 0x6E]], # '': [[0xEF, 0x6F]], # '': [[0xEF, 0x70]], # '': [[0xEF, 0x71]], # '': [[0xEF, 0x72]], 'tinydotplot': [[0xEF, 0x73]], 'Thin': [[0xEF, 0x74]], 'Dot-Thin': [[0xEF, 0x75]], # '': [[0xEF, 0x76]], # '': [[0xEF, 0x77]], # '': [[0xEF, 0x78]], 'PlySmth2': [[0xEF, 0x79]], 'Asm84CEPrgm': [[0xEF, 0x7A]], # '': [[0xEF, 0x7B]], # '': [[0xEF, 0x7C]], # '': [[0xEF, 0x7D]], # '': [[0xEF, 0x7E]], # '': [[0xEF, 0x7F]], # '': [[0xEF, 0x80]], 'QuartilesSetting…': [[0xEF, 0x81]], 'u(n-2)': [[0xEF, 0x82]], 'v(n-2)': [[0xEF, 0x83]], 'w(n-2)': [[0xEF, 0x84]], 'u(n-1)': [[0xEF, 0x85]], 'v(n-1)': [[0xEF, 0x86]], 'w(n-1)': [[0xEF, 0x87]], 'u(n)': [[0xEF, 0x88]], 'v(n)': [[0xEF, 0x89]], 'w(n)': [[0xEF, 0x8A]], 'u(n+1)': [[0xEF, 0x8B]], 'v(n+1)': [[0xEF, 0x8C]], 'w(n+1)': [[0xEF, 0x8D]], 'pieceWise(': [[0xEF, 0x8E]], 'SEQ(n)': [[0xEF, 0x8F]], 'SEQ(n+1)': [[0xEF, 0x90]], 'SEQ(n+2)': [[0xEF, 0x91]], 'LEFT': [[0xEF, 0x92]], 'CENTER': [[0xEF, 0x93]], 'RIGHT': [[0xEF, 0x94]], 'invBinom(': [[0xEF, 0x95]], 'Wait ': [[0xEF, 0x96]], 'toString(': [[0xEF, 0x97]], 'eval': [[0xEF, 0x98]], # '': [[0xEF, 0x99]], # '': [[0xEF, 0x9A]], # '': [[0xEF, 0x9B]], # '': [[0xEF, 0x9C]], # '': [[0xEF, 0x9D]], # '': [[0xEF, 0x9E]], # '': [[0xEF, 0x9F]], } def linify(lst): if lst: return lst + ["\n"] return [] def paren(lst): return ["("] + lst + [")"] def listjoin(args, sep): res = [] for a in args: res.extend(a) res.append(sep) if res: res = res[:-1] return res def convert_color(node): colors = [ 'BLUE', 'RED', 'BLACK', 'MAGENTA', 'GREEN', 'ORANGE', 'BROWN' 'NAVY', 'LTBLUE', 'YELLOW', 'WHITE', 'LTGREY', 'MEDGREY', 'GREY', 'DARKGREY', ] if isinstance(node, StringNode): fix = node.value.upper().strip() if fix in colors: return fix return "BLUE" def convert_node(node): if isinstance(node, StringNode): return ['"'] + list(node.value) + ['"'] if isinstance(node, NumberNode): return list(str(node.value).replace("e", "ᴇ").replace("-", "⁻")) if isinstance(node, IdentifierNode): return list(node.value.upper()) if isinstance(node, ListNode): return ["{"] + listjoin((convert_node(a) for a in node.value), ",") + ["}"] if isinstance(node, UnaryOpNode): table = { "NOT": ["not("], "-": ["--", "("], } return table[node.operator] + [convert_node(node.value), ")"] if isinstance(node, BinOpNode): table = { "^": "", "**": "", "<=": "≤", ">=": "≥", "==": "=", "!=": "≠", "&": " and ", "|": " or ", "XOR": " xor " } ftable = { "%": "remainder(" } left = convert_node(node.left) right = convert_node(node.right) if node.operator.upper() in ftable: return [ftable[node.operator.upper()]] + left + [","] + right + [")"] if node.need_fix(node.left): left = paren(left) if node.need_fix(node.right, True): right = paren(right) return left + [table.get(node.operator.upper(), node.operator)] + right if isinstance(node, ArrayAccessNode): return ["ʟ"] + convert_node(node.array) + ["("] + convert_node(node.index) + [")"] if isinstance(node, CallNode): return convert_node(node.func) + ["("] + listjoin((convert_node(a) for a in node.args), ",") + [")"] print("unimpl node %s" % type(node)) def convert_block(block): return [tok for a, b in pairwise(block) for tok in convert_stmt(a, b)] def convert_stmt(stmt, next=None): if isinstance(stmt, AssignStmt): return convert_node(stmt.value) + ["→"] + convert_node(stmt.variable) if isinstance(stmt, InputStmt): res = ["Input "] if stmt.prompt is not None: res.extend(convert_node(stmt.prompt)) res.append(",") res.extend(convert_node(stmt.variable)) return res if isinstance(stmt, DisplayStmt): return ["Disp "] + convert_node(stmt.content) if isinstance(stmt, StopStmt): return ["Pause "] + (convert_node(stmt.message) if stmt.message is not None else []) if isinstance(stmt, SleepStmt): return ["Wait "] + convert_node(stmt.duration) if isinstance(stmt, ForStmt): res = ["For("] + list(stmt.variable.upper()) + [","] + convert_node(stmt.begin) + [","] + convert_node(stmt.end) if stmt.step is not None: res.append(",") res.extend(convert_node(stmt.step)) res.append(")") res.append("\n") for line, n in pairwise(stmt.children): res.extend(linify(convert_stmt(line, n))) res.append("End") return res if isinstance(stmt, WhileStmt): res = ["While "] + convert_node(stmt.condition) + ["\n"] for line, n in pairwise(stmt.children): res.extend(linify(convert_stmt(line, n))) res.append("End") return res if isinstance(stmt, IfStmt): res = ["If "] + convert_node(stmt.condition) + ["\n", "Then", "\n"] for line, n in pairwise(stmt.children): res.extend(linify(convert_stmt(line, n))) if isinstance(next, ElseStmt): res.append("Else") res.append("\n") for line, n in pairwise(next.children): res.extend(linify(convert_stmt(line, n))) res.append("End") return res if isinstance(stmt, ElseStmt): return [] if isinstance(stmt, CommentStmt): return ['"'] + list(stmt.content) if isinstance(stmt, GClearStmt): return ["ClrDraw"] if isinstance(stmt, GWindowStmt): return convert_node(stmt.x_min) + ["→", "Xmin", ":"] + \ convert_node(stmt.x_max) + ["→", "Xmax", ":"] + \ convert_node(stmt.y_min) + ["→", "Ymin", ":"] + \ convert_node(stmt.y_max) + ["→", "Ymax"] if isinstance(stmt, GLineStmt): return ["Line("] + \ convert_node(stmt.start_x) + [","] + \ convert_node(stmt.start_y) + [","] + \ convert_node(stmt.end_x) + [","] + \ convert_node(stmt.end_y) + [","] + \ convert_color(stmt.color) + [")"] if isinstance(stmt, GPointStmt): return ["Pt-On("] + \ convert_node(stmt.x) + [","] + \ convert_node(stmt.y) + [")"] if isinstance(stmt, CallStmt): return convert_node(stmt.function) + ["("] + listjoin((convert_node(a) for a in stmt.arguments), ",") + [")"] print("unimpl stmt %s" % type(stmt)) def stringify(toklst): res = "" if toklst: for tok in toklst: if len(tokens[tok]) == 2: res += tokens[tok][1] else: res += tok return res def binify(toklst): if toklst: return [bin for tok in toklst for bin in tokens[tok][0]] return [] def package(name, data): entry = struct.pack(" BlockStmt: """Parses the Algobox XML document and converts it to a Turing code block.""" root = ElementTree.fromstring(xml) result = [] for elem in root: r = to_stmt(elem) if r is not None: if type(r) == list: result.extend(r) else: result.append(r) return BlockStmt(result) def parse_expr(expr: str) -> AstNode: """Fixes it to match the Turing syntax and parses it.""" lut = { "Math.PI": "pi", "&&": "&", "||": "|" } for k, v in lut.items(): expr = expr.replace(k, v) return parse(expr) def get_color(color: str) -> str: """Converts the specified Algobox color to a standard CSS X11 color.""" lut = { "Bleu": "blue", "Rouge": "red", "Vert": "green", "Blanc": "white" } if color not in lut: raise ValueError(translate("Algobox", "Unknown color: {color}").format(color=color)) return lut[color] def to_stmt(elem: ElementTree) -> Optional[Union[BaseStmt, CodeBlock]]: """Converts an Algobox XML element to a Turing statement.""" if elem.tag == "description": value = elem.attrib["texte"] if not value: return None return [CommentStmt(x) for x in elem.attrib["texte"].replace("\r\n", "\n").split("\n")] if elem.tag == "repere": if elem.attrib["repetat"] == "inactif": return None xmin, xmax, ymin, ymax, xgrad, ygrad = elem.attrib["repcode"].split("#") return GWindowStmt(parse_expr(xmin), parse_expr(xmax), parse_expr(ymin), parse_expr(ymax), parse_expr(xgrad), parse_expr(ygrad)) if elem.tag == "fonction": if elem.attrib["fctetat"] == "inactif": return None return AssignStmt(IdentifierNode("F1"), LambdaNode(["x"], parse_expr(elem.attrib["fctcode"]))) if elem.tag == "item": code, *args = elem.attrib["code"].split("#") code = int(code) children = [] if len(list(elem)) != 0: for e in elem: s = to_stmt(e) if s is None: continue if builtins.type(s) == list: children.extend(s) else: children.append(s) if code == 1: # VARIABLE type, varname = args value = None if type == "NOMBRE": value = NumberNode(0) elif type == "CHAINE": value = StringNode("") elif type == "LISTE": value = ListNode([]) if value is None: raise ValueError(translate("Algobox", "Unknown variable type: {type}").format(type=type)) return AssignStmt(IdentifierNode(varname), value) elif code == 2: # LIRE varname, index = args if index == "pasliste": return InputStmt(IdentifierNode(varname)) return InputStmt(ArrayAccessNode(IdentifierNode(varname), parse(index))) elif code == 3: # AFFICHER varname, newline, index = args if index == "pasliste": return DisplayStmt(IdentifierNode(varname), bool(int(newline))) return DisplayStmt(ArrayAccessNode(IdentifierNode(varname), parse(index)), bool(int(newline))) elif code == 4: # MESSAGE message, newline = args return DisplayStmt(StringNode(message), bool(int(newline))) elif code == 5: # AFFECTATION varname, value, index = args if index == "pasliste": return AssignStmt(IdentifierNode(varname), parse_expr(value)) return AssignStmt(ArrayAccessNode(IdentifierNode(varname), parse_expr(index)), parse_expr(value)) elif code == 6: # SI condition = args[0] if isinstance(children[-1], ElseStmt): return [IfStmt(parse_expr(condition), children[:-1]), children[-1]] return IfStmt(parse_expr(condition), children) elif code == 7: # DEBUT_SI return None elif code == 8: # FIN_SI return None elif code == 9: # SINON return ElseStmt(children) elif code == 10: # DEBUT_SINON return None elif code == 11: # FIN_SINON return None elif code == 12: # POUR varname, begin, end = args return ForStmt(varname, parse_expr(begin), parse_expr(end), children) elif code == 13: # DEBUT_POUR return None elif code == 14: # FIN_POUR return None elif code == 15: # TANT_QUE condition = args[0] return WhileStmt(parse_expr(condition), children) elif code == 16: # DEBUT_TANT_QUE return None elif code == 17: # FIN_TANT_QUE return None elif code == 18: # PAUSE return BreakStmt() elif code == 19: # COMMENTAIRE value = args[0] return CommentStmt(value) elif code == 20: # AFFICHERCALCUL calcul, newline = args return DisplayStmt(parse_expr(calcul), bool(int(newline))) elif code == 50: # POINT x, y, color = args return GPointStmt(parse_expr(x), parse_expr(y), StringNode(get_color(color))) elif code == 51: # SEGMENT start_x, start_y, end_x, end_y, color = args return GLineStmt(parse_expr(start_x), parse_expr(start_y), parse_expr(end_x), parse_expr(end_y), StringNode(get_color(color))) elif code == 52: # EFFACE return GClearStmt() elif code == 100: # VARIABLES return children elif code == 101: # DEBUT_ALGO return children elif code == 102: # FIN_ALGO return None elif code == 103: # autres pass elif code == 200: # FONCTIONS_UTILISEES return children elif code == 201: # FONCTION name, params = args return FuncStmt(name, [x.strip() for x in params.split(",")], children) elif code == 202: # VARIABLES_FONCTION return children elif code == 203: # DEBUT_FONCTION return None elif code == 204: # FIN_FONCTION: return None elif code == 205: # RENVOYER_FONCTION value = args[0] return ReturnStmt(parse_expr(value)) elif code == 206: # APPELER_FONCTION expr = args[0] return CallStmt.from_node(parse_expr(expr)) else: print("unknown type %d" % code) return None print("unimpl type %d" % code) Turing-0.11-beta/src/algo/stmts/000077500000000000000000000000001331472757200165125ustar00rootroot00000000000000Turing-0.11-beta/src/algo/stmts/AssignStmt.py000066400000000000000000000011661331472757200211640ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class AssignStmt(BaseStmt): def __init__(self, variable: AstNode, value: AstNode = None): super().__init__() self.variable = variable self.value = value def __str__(self): return "[Assign %s = %s]" % (self.variable, self.value) def __repr__(self): return "AssignStmt(%r, %r)" % (self.variable, self.value) def python(self) -> List[str]: return ["%s = %s" % (self.variable.python(), self.value.python())] def get_children(self) -> List[AstNode]: return self.variable.flatten() + self.value.flatten() Turing-0.11-beta/src/algo/stmts/BaseStmt.py000066400000000000000000000005411331472757200206060ustar00rootroot00000000000000# -*- coding: utf-8 -*- from typing import List from maths.nodes import AstNode class BaseStmt: def __init__(self): self.parent = None def __repr__(self): return "BaseStmt()" def python(self) -> List[str]: return [""] def get_children(self) -> List[AstNode]: return [] CodeBlock = List[BaseStmt] Turing-0.11-beta/src/algo/stmts/BlockStmt.py000066400000000000000000000020261331472757200207660ustar00rootroot00000000000000# -*- coding: utf-8 -*- from typing import List, Optional import util from algo.stmts import BaseStmt, CodeBlock from maths.nodes import AstNode class BlockStmt(BaseStmt): def __init__(self, children: CodeBlock): super().__init__() self.set_children(children) def __str__(self): return "{ %s }" % ", ".join(str(x) for x in self.children) def __repr__(self): return "BlockStmt(%r)" % self.children def python(self) -> List[str]: header = self.python_header() lines = [l for sub in self.children for l in sub.python()] if header is not None: lines = ["\t" + l for l in lines] return [header] + lines return lines def python_header(self) -> Optional[str]: return None def set_children(self, children: CodeBlock): self.children = children for c in self.children: c.parent = self def get_children(self) -> List[AstNode]: return util.flatten(x.get_children() for x in self.children) Turing-0.11-beta/src/algo/stmts/BreakStmt.py000066400000000000000000000004451331472757200207630ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class BreakStmt(BaseStmt): def __init__(self): super().__init__() def __str__(self): return "[Break]" def __repr__(self): return "BreakStmt()" def python(self) -> List[str]: return ["break"] Turing-0.11-beta/src/algo/stmts/CallStmt.py000066400000000000000000000016361331472757200206150ustar00rootroot00000000000000# -*- coding: utf-8 -*- from maths.nodes import CallNode from .BaseStmt import * class CallStmt(BaseStmt): def __init__(self, function: AstNode, arguments: List[AstNode]): super().__init__() self.function = function self.arguments = arguments def __str__(self): return "[Call %s (%s)]" % (self.function, ", ".join(str(x) for x in self.arguments)) def __repr__(self): return "CallStmt(%r, %r)" % (self.function, self.arguments) def python(self) -> List[str]: return ["(%s)(%s)" % (self.function.python(), ", ".join(x.python() for x in self.arguments))] def to_node(self): return CallNode(self.function, self.arguments) @staticmethod def from_node(node: CallNode): return CallStmt(node.func, node.args) def get_children(self) -> List[AstNode]: return self.function.flatten() + [x.flatten() for x in self.arguments] Turing-0.11-beta/src/algo/stmts/CommentStmt.py000066400000000000000000000006071331472757200213410ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class CommentStmt(BaseStmt): def __init__(self, content: str): super().__init__() self.content = content def __str__(self): return "[Comment %s]" % self.content def __repr__(self): return "CommentStmt(%r)" % self.content def python(self) -> List[str]: return ["# " + self.content] Turing-0.11-beta/src/algo/stmts/ContinueStmt.py000066400000000000000000000004611331472757200215210ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class ContinueStmt(BaseStmt): def __init__(self): super().__init__() def __str__(self): return "[Continue]" def __repr__(self): return "ContinueStmt()" def python(self) -> List[str]: return ["continue"] Turing-0.11-beta/src/algo/stmts/DisplayStmt.py000066400000000000000000000011751331472757200213450ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class DisplayStmt(BaseStmt): def __init__(self, content: AstNode, newline: bool = True): super().__init__() self.content = content self.newline = newline def __str__(self): return "[Display %s]" % self.content def __repr__(self): return "DisplayStmt(%r, %r)" % (self.content, self.newline) def python(self) -> List[str]: content = self.content.python() return [("print(%s)" if self.newline else "print(%s, end='')") % content] def get_children(self) -> List[AstNode]: return self.content.flatten() Turing-0.11-beta/src/algo/stmts/ElseStmt.py000066400000000000000000000006131331472757200206240ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts import BlockStmt from .BaseStmt import * class ElseStmt(BlockStmt): def __init__(self, children: CodeBlock): super().__init__(children) def __str__(self): return "[Else %s]" % (super().__str__()) def __repr__(self): return "ElseStmt(%r)" % self.children def python_header(self) -> str: return "else:" Turing-0.11-beta/src/algo/stmts/ForStmt.py000066400000000000000000000020341331472757200204610ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts.BlockStmt import BlockStmt from .BaseStmt import * class ForStmt(BlockStmt): def __init__(self, variable: str, begin: AstNode, end: AstNode, children: CodeBlock, step: AstNode = None): super().__init__(children) self.variable = variable self.begin = begin self.end = end self.step = step def __str__(self): return "[For %s = %s -> %s [%s] %s]" % (self.variable, self.begin, self.end, self.step, super().__str__()) def __repr__(self): return "ForStmt(%r, %r, %r, %r, %r)" % (self.variable, self.begin, self.end, self.children, self.step) def python_header(self) -> str: return "for %s in irange(%s, %s, %s):" % ( self.variable, self.begin.python(), self.end.python(), "None" if self.step is None else self.step.python()) def get_children(self) -> List[AstNode]: return self.begin.flatten() + self.end.flatten() + ( [] if self.step is None else self.step.flatten()) + super().get_children() Turing-0.11-beta/src/algo/stmts/FuncStmt.py000066400000000000000000000011601331472757200206250ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts import BlockStmt from .BaseStmt import * class FuncStmt(BlockStmt): def __init__(self, name: str, parameters: List[str], children: CodeBlock): super().__init__(children) self.name = name self.parameters = parameters def __str__(self): return "[Func %s (%s) %s]" % (self.name, ", ".join(self.parameters), super().__str__()) def __repr__(self): return "FuncStmt(%r, %r, %r)" % (self.name, self.parameters, self.children) def python_header(self) -> str: return "def %s(%s):" % (self.name, ", ".join(self.parameters)) Turing-0.11-beta/src/algo/stmts/GClearStmt.py000066400000000000000000000004541331472757200210740ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class GClearStmt(BaseStmt): def __init__(self): super().__init__() def __str__(self): return "[GClear]" def __repr__(self): return "GClearStmt()" def python(self) -> List[str]: return ["g_clear()"] Turing-0.11-beta/src/algo/stmts/GFuncStmt.py000066400000000000000000000021511331472757200207350ustar00rootroot00000000000000# -*- coding: utf-8 -*- from maths.nodes import LambdaNode from .BaseStmt import * class GFuncStmt(BaseStmt): def __init__(self, var: str, expr: AstNode, start: AstNode, end: AstNode, step: AstNode, color: AstNode): super().__init__() self.var = var self.expr = expr self.start = start self.end = end self.step = step self.color = color def __str__(self): return "[Func (%s) -> (%s) [%s; %s] / %s - %s]" % ( self.var, self.expr, self.start, self.end, self.step, self.color) def __repr__(self): return "GFuncStmt(%r, %r, %r, %r, %r, %r)" % (self.var, self.expr, self.start, self.end, self.step, self.color) def get_function(self) -> LambdaNode: return LambdaNode([self.var], self.expr) def python(self) -> List[str]: return ["g_func(%s)" % ", ".join( x.python() for x in (self.get_function(), self.start, self.end, self.step, self.color))] def get_children(self) -> List[AstNode]: return [x for c in (self.expr, self.start, self.end, self.step, self.color) for x in c.flatten()] Turing-0.11-beta/src/algo/stmts/GLineStmt.py000066400000000000000000000017671331472757200207450ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class GLineStmt(BaseStmt): def __init__(self, start_x: AstNode, start_y: AstNode, end_x: AstNode, end_y: AstNode, color: AstNode): super().__init__() self.start_x = start_x self.start_y = start_y self.end_x = end_x self.end_y = end_y self.color = color def __str__(self): return "[Line (%s; %s) -> (%s; %s) - %s]" % (self.start_x, self.start_y, self.end_x, self.end_y, self.color) def __repr__(self): return "GLineStmt(%r, %r, %r, %r, %r)" % (self.start_x, self.start_y, self.end_x, self.end_y, self.color) def python(self) -> List[str]: return ["g_line(%s, %s, %s, %s, %s)" % ( self.start_x.python(), self.start_y.python(), self.end_x.python(), self.end_y.python(), self.color.python())] def get_children(self) -> List[AstNode]: return [x for c in (self.start_x, self.start_y, self.end_x, self.end_y, self.color) for x in c.flatten()] Turing-0.11-beta/src/algo/stmts/GPointStmt.py000066400000000000000000000012471331472757200211400ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class GPointStmt(BaseStmt): def __init__(self, x: AstNode, y: AstNode, color: AstNode): super().__init__() self.x = x self.y = y self.color = color def __str__(self): return "[GPoint (%s; %s) - %s]" % (self.x, self.y, self.color) def __repr__(self): return "GPointStmt(%r, %r, %r)" % (self.x, self.y, self.color) def python(self) -> List[str]: return ["g_point(%s, %s, %s)" % (self.x.python(), self.y.python(), self.color.python())] def get_children(self) -> List[AstNode]: return self.x.flatten() + self.y.flatten() + self.color.flatten() Turing-0.11-beta/src/algo/stmts/GWindowStmt.py000066400000000000000000000022371331472757200213160ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class GWindowStmt(BaseStmt): def __init__(self, x_min: AstNode, x_max: AstNode, y_min: AstNode, y_max: AstNode, x_grad: AstNode, y_grad: AstNode): super().__init__() self.x_min = x_min self.x_max = x_max self.y_min = y_min self.y_max = y_max self.x_grad = x_grad self.y_grad = y_grad def __str__(self): return "[Window X(%s; %s) Y(%s; %s) Grad(%s; %s)]" % ( self.x_min, self.x_max, self.y_min, self.y_max, self.x_grad, self.y_grad) def __repr__(self): return "GWindowStmt(%r, %r, %r, %r, %r, %r)" % ( self.x_min, self.x_max, self.y_min, self.y_max, self.x_grad, self.y_grad) def python(self) -> List[str]: return ["g_window(%s, %s, %s, %s, %s, %s)" % ( self.x_min.python(), self.x_max.python(), self.y_min.python(), self.y_max.python(), self.x_grad.python(), self.y_grad.python())] def get_children(self) -> List[AstNode]: return [x for c in (self.x_min, self.x_max, self.y_min, self.y_max, self.x_grad, self.y_grad) for x in c.flatten()] Turing-0.11-beta/src/algo/stmts/IfStmt.py000066400000000000000000000011571331472757200202760ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts import BlockStmt from .BaseStmt import * class IfStmt(BlockStmt): def __init__(self, condition: AstNode, children: CodeBlock): super().__init__(children) self.condition = condition def __str__(self): return "[If %s %s]" % (self.condition, super().__str__()) def __repr__(self): return "IfStmt(%r, %r)" % (self.condition, self.children) def python_header(self) -> str: return "if %s:" % self.condition.python() def get_children(self) -> List[AstNode]: return self.condition.flatten() + super().get_children() Turing-0.11-beta/src/algo/stmts/InputStmt.py000066400000000000000000000017341331472757200210400ustar00rootroot00000000000000# -*- coding: utf-8 -*- from util import translate from .BaseStmt import * class InputStmt(BaseStmt): def __init__(self, variable: AstNode, prompt: AstNode = None, text: bool = False): super().__init__() self.variable = variable self.prompt = prompt self.text = text def __str__(self): return "[Input '%s' [%s] -> %s]" % (self.prompt, self.text, self.variable) def __repr__(self): return "InputStmt(%r, %r, %r)" % (self.variable, self.prompt, self.text) def python(self) -> List[str]: return ["%s = input(%s%s)" % (self.variable.python(), ('"%s"' % translate("Algo", "Variable {var} = ").format( var=self.variable.python())) if self.prompt is None else self.prompt.python(), ", unsafe=True" if not self.text else "")] def get_children(self) -> List[AstNode]: return self.variable.flatten() + ([] if self.prompt is None else self.prompt.flatten()) Turing-0.11-beta/src/algo/stmts/ReturnStmt.py000066400000000000000000000011021331472757200212050ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class ReturnStmt(BaseStmt): def __init__(self, value: AstNode = None): super().__init__() self.value = value def __str__(self): return "[Return %s]" % self.value def __repr__(self): return "ReturnStmt(%r)" % self.value def python(self) -> List[str]: if self.value is None: return ["return"] return ["return (%s)" % self.value.python()] def get_children(self) -> List[AstNode]: return [] if self.value is None else self.value.flatten() Turing-0.11-beta/src/algo/stmts/SleepStmt.py000066400000000000000000000007531331472757200210110ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class SleepStmt(BaseStmt): def __init__(self, value: AstNode): super().__init__() self.duration = value def __str__(self): return "[Sleep %s]" % self.duration def __repr__(self): return "SleepStmt(%r)" % self.duration def python(self) -> List[str]: return ["sleep (%s)" % self.duration.python()] def get_children(self) -> List[AstNode]: return self.duration.flatten() Turing-0.11-beta/src/algo/stmts/StopStmt.py000066400000000000000000000007001331472757200206560ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .BaseStmt import * class StopStmt(BaseStmt): def __init__(self, message: AstNode = None): super().__init__() self.message = message def __str__(self): return "[Stop %s]" % self.message def __repr__(self): return "StopStmt(%r)" % self.message def python(self) -> List[str]: return ["breakpoint(%s)" % ("" if self.message is None else self.message.python())] Turing-0.11-beta/src/algo/stmts/WhileStmt.py000066400000000000000000000011731331472757200210060ustar00rootroot00000000000000# -*- coding: utf-8 -*- from algo.stmts import BlockStmt from .BaseStmt import * class WhileStmt(BlockStmt): def __init__(self, condition: AstNode, children: CodeBlock): super().__init__(children) self.condition = condition def __str__(self): return "[While %s %s]" % (self.condition, super().__str__()) def __repr__(self): return "WhileStmt(%r, %r)" % (self.condition, self.children) def python_header(self) -> str: return "while %s:" % self.condition.python() def get_children(self) -> List[AstNode]: return self.condition.flatten() + super().get_children() Turing-0.11-beta/src/algo/stmts/__init__.py000066400000000000000000000011021331472757200206150ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .AssignStmt import * from .BaseStmt import * from .BlockStmt import * from .BreakStmt import * from .CallStmt import * from .CommentStmt import * from .ContinueStmt import * from .DisplayStmt import * from .ElseStmt import * from .ForStmt import * from .FuncStmt import * from .GClearStmt import * from .GFuncStmt import * from .GLineStmt import * from .GPointStmt import * from .GWindowStmt import * from .IfStmt import * from .InputStmt import * from .ReturnStmt import * from .SleepStmt import * from .StopStmt import * from .WhileStmt import * Turing-0.11-beta/src/algo/worker.py000066400000000000000000000313071331472757200172270ustar00rootroot00000000000000# -*- coding: utf-8 -*- import time import typing from collections import Iterable from typing import * from algo.stmts import * from maths.evaluator import Evaluator from maths.nodes import * from maths.parser import Parser from util import translate from util.log import Logger Loops = (ForStmt, WhileStmt) StackFrame = Tuple[BlockStmt, int] ExecStack = List[StackFrame] class Worker: def __init__(self, code: CodeBlock): self.code = BlockStmt(code) self.log = Logger("Algo") self.strict_typing = False self.callback_stop = lambda: () self.callback_input = None self.callback_print = None self.map = { DisplayStmt: self.exec_display, InputStmt: self.exec_input, AssignStmt: self.exec_assign, IfStmt: self.exec_if, ForStmt: self.exec_for, WhileStmt: self.exec_while, BreakStmt: self.exec_break, ContinueStmt: self.exec_continue, FuncStmt: self.exec_function, ReturnStmt: self.exec_return, CallStmt: self.exec_call, ElseStmt: self.exec_else, BaseStmt: lambda _: (), CommentStmt: lambda _: (), StopStmt: self.exec_stop, SleepStmt: self.exec_sleep } def reset_eval(self): """Resets the worker's evaluator object.""" self.evaluator = Evaluator() self.evaluator.log = self.log self.evaluator.strict_typing = self.strict_typing def stmt_input(self, prompt: str = None, text: bool = False) -> Any: """Executes an input statement.""" if self.callback_input is not None: res = self.callback_input(prompt) else: res = input(prompt) if text: return res p = Parser(str(res)) return self.evaluator.eval_node(p.parse()) def stmt_print(self, *args, end="\n"): """Executes a print statement.""" if self.callback_print is not None: self.callback_print(*args, end=end) return print(*args, end=end) def iterate_for(self, stmt: ForStmt) -> bool: """Updates a for loop.""" current = self.evaluator.get_variable(stmt.variable) begin = self.evaluator.eval_node(stmt.begin) end = self.evaluator.eval_node(stmt.end) step = None if stmt.step is None else self.evaluator.eval_node(stmt.step) if step is None: if end < begin: step = -1 else: step = 1 current = self.evaluator.binary_operation(current, step, "+") self.evaluator.set_variable(stmt.variable, current) return self.check_for_condition(stmt, current, step, begin, end) def check_for_condition(self, stmt: ForStmt, current=None, step=None, begin=None, end=None) -> bool: """Checks for the condition of a for loop.""" begin = self.evaluator.eval_node(stmt.begin) if begin is None else begin end = self.evaluator.eval_node(stmt.end) if end is None else end step = (None if stmt.step is None else self.evaluator.eval_node(stmt.step)) if step is None else step if step is None: if end < begin: step = -1 else: step = 1 condition_1 = bool(self.evaluator.binary_operation(current, begin, "><"[step < 0] + "=")) condition_2 = bool(self.evaluator.binary_operation(current, end, "<>"[step < 0] + "=")) return condition_1 and condition_2 def find_parent(self, types: Union[type, typing.Iterable[type]]) -> Optional[Tuple[int, StackFrame]]: """Finds the nearest frame of the specified type.""" if not isinstance(types, Iterable): types = [types] for idx, frame in enumerate(reversed(self.stack)): if type(frame[0]) in types: return idx, frame return None def next_stmt(self) -> Optional[BaseStmt]: """Returns the next statement to be executed.""" while True: stmt, index = self.stack[-1] index += 1 if index >= len(stmt.children): if len(self.stack) == 1: self.finish(True) return None if isinstance(stmt, ForStmt): if self.iterate_for(stmt): self.stack[-1] = (stmt, -1) continue elif isinstance(stmt, WhileStmt): if bool(self.evaluator.eval_node(stmt.condition)): self.stack[-1] = (stmt, -1) continue elif isinstance(stmt, FuncStmt): self.calls.append(None) self.exit_block() return None self.exit_block() continue break self.stack[-1] = (stmt, index) return stmt.children[index] def peek_following(self) -> BaseStmt: """Returns the immediately following statement. Does not handle loops or functions.""" stmt, index = self.stack[-1] if index + 1 < len(stmt.children): return stmt.children[index + 1] if len(self.stack) == 1: self.finish() return None return None def enter_block(self, stmt: BlockStmt, value=None): """Pushes a new frame to the stack.""" self.stack.append((stmt, -1)) self.evaluator.enter_frame(value) def exit_block(self): """Pops the last frame from the stack.""" self.evaluator.exit_frame() return self.stack.pop() def exec_display(self, stmt: DisplayStmt): """Executes a display statement.""" self.stmt_print(str(self.evaluator.eval_node(stmt.content)), end="\n" if stmt.newline else "") def exec_input(self, stmt: InputStmt): """Executes an input statement.""" prompt = ( translate("Algo", "Variable {var} = ").format( var=stmt.variable.code())) if stmt.prompt is None else self.evaluator.eval_node(stmt.prompt) self.assign(stmt.variable, self.stmt_input(prompt, stmt.text)) def assign(self, target: AstNode, value): """Assigns the specified value to the target (either variable or array access).""" if isinstance(target, IdentifierNode): self.evaluator.set_variable(target.value, value) elif isinstance(target, ArrayAccessNode): array = self.evaluator.eval_node(target.array) if not type(array) == list: self.log.error(translate("Algo", "Array access target must be of array type")) self.finish() return index = self.evaluator.eval_node(target.index) while index >= len(array): array.append(0) if index < len(array): array[index] = value else: self.log.error(translate("Algo", "Index '{idx}' too big for array").format(idx=index)) return None else: self.log.error(translate("Algo", "Assignment target must be either variable or array item")) self.finish() return def exec_assign(self, stmt: AssignStmt): """Executes an assignment statement.""" value = None if stmt.value is None else self.evaluator.eval_node(stmt.value) self.assign(stmt.variable, value) def exec_if(self, stmt: IfStmt): """Executes an if block.""" self.enter_block(stmt) condition = bool(self.evaluator.eval_node(stmt.condition)) self.if_status = (len(self.stack) - 1, condition) if not condition: self.exit_block() def exec_while(self, stmt: WhileStmt): """Executes a while loop.""" self.enter_block(stmt) predicate = bool(self.evaluator.eval_node(stmt.condition)) if not predicate: self.exit_block() def exec_for(self, stmt: ForStmt): """Executes a for loop.""" self.enter_block(stmt) self.evaluator.set_variable(stmt.variable, self.evaluator.eval_node(stmt.begin), local=True) if not self.check_for_condition(stmt, self.evaluator.get_variable(stmt.variable), None if stmt.step is None else self.evaluator.eval_node(stmt.step)): self.exit_block() def exec_break(self, stmt: BreakStmt): """Executes a break statement.""" if not self.find_parent(Loops): self.log.error(translate("Algo", "BREAK can only be used inside a loop")) self.finish() return while True: if isinstance(self.exit_block()[0], Loops): break def exec_continue(self, stmt: ContinueStmt): """Executes a continue statement.""" if not self.find_parent(Loops): self.log.error(translate("Algo", "CONTINUE can only be used inside a loop")) self.finish() return while not isinstance(self.stack[-1][0], Loops): self.exit_block() stmt, index = self.stack[-1] index = len(stmt.children) self.stack[-1] = stmt, index def exec_function(self, stmt: FuncStmt): """Executes a function definition block.""" frames = [x.copy() for x in self.evaluator.frames[1:]] def wrapper(*args): for frame in frames: self.evaluator.enter_frame(frame) result = self.call_function(stmt, *list(args)) for frame in frames: self.evaluator.exit_frame() return result self.evaluator.set_variable(stmt.name, wrapper) def exec_return(self, stmt: ReturnStmt): """Executes a return statement.""" if not self.find_parent(FuncStmt): self.log.error(translate("Algo", "RETURN can only be used inside a function")) self.finish() return self.calls.append(self.evaluator.eval_node(stmt.value) if stmt.value else None) while True: if isinstance(self.exit_block()[0], FuncStmt): break def call_function(self, stmt: FuncStmt, *args) -> Optional[Any]: """Calls the specified function.""" self.enter_block(stmt, {stmt.parameters[idx]: arg for idx, arg in enumerate(args)}) length = len(self.stack) while len(self.stack) >= length and not self.finished: self.step() if len(self.stack) != length - 1: self.log.error(translate("Algo", "Stack corruption after calling function %s" % stmt.name)) return None return self.calls.pop() def exec_call(self, stmt: CallStmt): """Executes a function call statement.""" self.evaluator.eval_node(stmt.to_node()) def exec_else(self, stmt: ElseStmt): """Executes an else block.""" if self.if_status is None: self.log.error(translate("Algo", "ELSE can only be used after an IF block")) self.finish() return if not self.if_status[1]: self.enter_block(stmt) self.if_status = None def exec_stop(self, stmt: StopStmt): """Executes a breakpoint statement.""" self.stopped = True self.callback_stop(stmt) def exec_sleep(self, stmt: SleepStmt): """Executes a sleep statement""" time.sleep(self.evaluator.eval_node(stmt.duration)) def step(self): """Executes a step.""" stmt = self.next_stmt() self.last = stmt if stmt is None: return self.exec_stmt(stmt) if self.break_on_error and self.log.messages: self.finish() def exec_stmt(self, stmt): """Executes the specified statement.""" self.last = stmt if self.if_status is not None and type(stmt) != ElseStmt and len(self.stack) <= self.if_status[0]: self.if_status = None if type(stmt) not in self.map: self.log.error(translate("Algo", "Unknown statement type: {type}").format(type=type(stmt))) self.finish() return self.map[type(stmt)](stmt) def finish(self, normal=False): """Ends the execution.""" self.finished = True self.error = not normal self.evaluator.exit_frame() def init(self): """Initialises the worker.""" self.reset_eval() self.stack = [(self.code, -1)] self.calls = [] self.if_status = None self.finished = False self.error = False self.evaluator.enter_frame() self.stopped = False self.break_on_error = False self.last = None def run(self): """Runs the program continuously.""" self.init() while not self.finished: self.step() Turing-0.11-beta/src/editor_backend.py000066400000000000000000000024061331472757200177270ustar00rootroot00000000000000# -*- coding: utf-8 -*- import os import sys ## add a path to get the embedded unmaintained package pyqode sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ) import keyword from pyqode.core import backend import maths.lib.docs class PythonCompletionProvider: @staticmethod def complete(code, *args): return [{"name": x} for x in keyword.kwlist] class LibCompletionProvider: def __init__(self): self.functions = [f[0] for fns in maths.lib.get_funcs().values() for f in fns] self.constants = [c[0] for cts in maths.lib.get_consts().values() for c in cts] self.directory = [{"name": x} for x in (self.functions + self.constants)] def complete(self, code, *args): return self.directory class FinalCompletionProvider: def __init__(self): self.providers = [] def complete(self, code, *args): return [c for prov in self.providers for c in prov.complete(code, args)] if __name__ == '__main__': provider = FinalCompletionProvider() provider.providers.append(PythonCompletionProvider()) provider.providers.append(LibCompletionProvider()) backend.CodeCompletionWorker.providers.append(provider) backend.serve_forever() Turing-0.11-beta/src/editor_backend.spec000066400000000000000000000014171331472757200202320ustar00rootroot00000000000000# -*- mode: python -*- block_cipher = None a = Analysis(['editor_backend.py'], pathex=['/mnt/hgfs/Turing/src'], binaries=[], datas=[], hiddenimports=['pyqode.python.backend'], hookspath=['.'], runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, name='editor_backend', debug=False, strip=False, upx=True, runtime_tmpdir=None, console=True , icon='media/icon.ico') Turing-0.11-beta/src/forms/000077500000000000000000000000001331472757200155445ustar00rootroot00000000000000Turing-0.11-beta/src/forms/.gitignore000066400000000000000000000000731331472757200175340ustar00rootroot00000000000000# files generated by pyuic5 ui*.py # backups for Emacs *~ Turing-0.11-beta/src/forms/Makefile000066400000000000000000000003021331472757200171770ustar00rootroot00000000000000DESTDIR = UI_SOURCES = $(shell ls *.ui) UI_TARGETS = $(patsubst %.ui, %.py, $(UI_SOURCES)) all: $(UI_TARGETS) clean: rm -f *~ install: %.py: %.ui pyuic5 $< -o $@ .PHONY: all clean install Turing-0.11-beta/src/forms/__init__.py000066400000000000000000000000301331472757200176460ustar00rootroot00000000000000# -*- coding: utf-8 -*- Turing-0.11-beta/src/forms/about.py000066400000000000000000000032511331472757200172310ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtGui import QGuiApplication, QMovie from PyQt5.QtWidgets import * from forms.ui_about import Ui_AboutWindow from util.widgets import center_widget translate = QCoreApplication.translate class AboutWindow(QDialog): KONAMI = [Qt.Key_Up, Qt.Key_Up, Qt.Key_Down, Qt.Key_Down, Qt.Key_Left, Qt.Key_Right, Qt.Key_Left, Qt.Key_Right, Qt.Key_B, Qt.Key_A] def __init__(self, parent, version, channel): super().__init__(parent) self.kpos = 0 self.ui = Ui_AboutWindow() self.ui.setupUi(self) self.setFixedSize(self.size()) txt = self.ui.textBrowser_about.toHtml().replace("{version}", version).replace("{channel}", channel) self.ui.textBrowser_about.setHtml(txt) QGuiApplication.instance().installEventFilter(self) center_widget(self, parent) def closeEvent(self, QCloseEvent): QGuiApplication.instance().removeEventFilter(self) def keyPressEvent(self, QKeyEvent): if AboutWindow.KONAMI[self.kpos] == QKeyEvent.key(): self.kpos += 1 if self.kpos >= len(AboutWindow.KONAMI): self.egg() else: self.kpos = 0 def eventFilter(self, obj, event): if event.type() == QEvent.KeyPress: self.keyPressEvent(event) return True return False def egg(self): self.kpos = 0 movie = QMovie(":/action/media/media.qrc") self.ui.label.setText(None) self.ui.label.setMovie(movie) movie.start() self.setStyleSheet("QDialog { background-color: red; }") def run(self): self.exec_() Turing-0.11-beta/src/forms/alg_call.py000066400000000000000000000031031331472757200176510ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_call import Ui_AlgoCallStmt from maths.nodes import ListNode from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoCallStmt(QDialog): def __init__(self, parent, origcode=("", ())): super().__init__(parent) self.ui = Ui_AlgoCallStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtFunction.setText(origcode[0]) self.ui.txtArguments.setText(", ".join(origcode[1])) self.ui.btnCodeFunc.clicked.connect(lambda: self.click(self.ui.txtFunction)) self.ui.btnCodeArgs.clicked.connect(lambda: self.click(self.ui.txtArguments)) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.txtFunction.text(), self) if p is None: return self.func = p p = try_parse("[%s]" % self.ui.txtArguments.text(), self) if p is None or not isinstance(p, ListNode): return self.args = p.value self.ok = True super(AlgoCallStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_comment.py000066400000000000000000000015201331472757200204010ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.ui_alg_comment import Ui_AlgoCommentStmt from util.widgets import center_widget translate = QCoreApplication.translate class AlgoCommentStmt(QDialog): def __init__(self, parent, origcode=""): super().__init__(parent) self.ui = Ui_AlgoCommentStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.lineEdit.setText(origcode) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: self.comment = self.ui.lineEdit.text() self.ok = True super(AlgoCommentStmt, self).done(res) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_define.py000066400000000000000000000034631331472757200202010ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_define import Ui_AlgoDefineStmt from maths.nodes import * from maths.parser import quick_parse as parse from util.code import try_parse from util.widgets import center_widget, msg_box_error translate = QCoreApplication.translate class AlgoDefineStmt(QDialog): def __init__(self, parent, origcode=("", "")): super().__init__(parent) self.ui = Ui_AlgoDefineStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtVariable.setText(origcode[0]) self.ui.txtValue.setText(origcode[1]) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: name = self.ui.txtVariable.text().strip() parsed = parse(name) if not isinstance(parsed, (IdentifierNode, ArrayAccessNode)): box = msg_box_error(translate("Algo", "Invalid assignment target (must be either variable or array item): {name}").format( name=name), parent=self) box.exec_() return p = try_parse(self.ui.txtValue.text(), self) if p is None: return self.varname = parsed self.expr = p self.ok = True super(AlgoDefineStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.txtValue.text()) if dlg.run(): self.ui.txtValue.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_display.py000066400000000000000000000025011331472757200204040ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_display import Ui_AlgoDisplayStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoDisplayStmt(QDialog): def __init__(self, parent, origcode=("", True)): super().__init__(parent) self.ui = Ui_AlgoDisplayStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.lineEdit.setText(origcode[0]) self.ui.cbxNewline.setChecked(origcode[1]) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.lineEdit.text(), self) if p is None: return self.expr = p self.newline = self.ui.cbxNewline.isChecked() self.ok = True super(AlgoDisplayStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.lineEdit.text()) if dlg.run(): self.ui.lineEdit.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_for.py000066400000000000000000000047731331472757200175420ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_for import Ui_AlgoForStmt from util.code import try_parse, is_id from util.widgets import center_widget, msg_box_error translate = QCoreApplication.translate class AlgoForStmt(QDialog): def __init__(self, parent, origcode=("", "", "", None)): super().__init__(parent) self.ui = Ui_AlgoForStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtVariable.setText(origcode[0]) self.ui.txtFrom.setText(origcode[1]) self.ui.txtTo.setText(origcode[2]) self.ui.cbxHasValue.stateChanged.connect(self.checked) self.ui.cbxHasValue.setChecked(origcode[3] is not None) if origcode[3] is not None: self.ui.txtStep.setText(origcode[3]) self.ui.btnCodeFrom.clicked.connect(lambda: self.click(self.ui.txtFrom)) self.ui.btnCodeTo.clicked.connect(lambda: self.click(self.ui.txtTo)) self.ui.btnCodeStep.clicked.connect(lambda: self.click(self.ui.txtStep)) center_widget(self, parent) def checked(self, state): enabled = state == Qt.Checked self.ui.txtStep.setEnabled(enabled) self.ui.btnCodeStep.setEnabled(enabled) def done(self, res): if res == QDialog.Accepted: name = self.ui.txtVariable.text().strip() if not is_id(name): box = msg_box_error(translate("Algo", "Invalid variable name: {name}").format(name=name), parent=self) box.exec_() return p = try_parse(self.ui.txtFrom.text(), self) if p is None: return self.f_from = p p = try_parse(self.ui.txtTo.text(), self) if p is None: return self.f_to = p if self.ui.cbxHasValue.isChecked(): p = try_parse(self.ui.txtStep.text(), self) if p is None: return self.f_step = p else: self.f_step = None self.varname = name self.ok = True super(AlgoForStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_func.py000066400000000000000000000025331331472757200176770ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.ui_alg_func import Ui_AlgoFuncStmt from util.code import is_id from util.widgets import center_widget, msg_box_error translate = QCoreApplication.translate class AlgoFuncStmt(QDialog): def __init__(self, parent, origcode=("", ())): super().__init__(parent) self.ui = Ui_AlgoFuncStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtFunction.setText(origcode[0]) self.ui.txtArguments.setText(", ".join(origcode[1])) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: lst = [x.strip() for x in [self.ui.txtFunction.text()] + self.ui.txtArguments.text().split(",")] if not lst[-1]: lst = lst[:-1] for name in lst: if not is_id(name): box = msg_box_error(translate("Algo", "Invalid name: {name}").format(name=name), parent=self) box.exec_() return self.func = lst[0] self.args = lst[1:] self.ok = True super(AlgoFuncStmt, self).done(res) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_gfunc.py000066400000000000000000000062321331472757200200460ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtGui import QColor from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_gfunc import Ui_AlgoGFuncStmt from maths.nodes import * from maths.parser import quick_parse as parse from util.code import try_parse from util.widgets import center_widget, msg_box_error translate = QCoreApplication.translate class AlgoGFuncStmt(QDialog): def __init__(self, parent, origcode=("x", "cos(x)", "", "", "0.1", '"red"')): super().__init__(parent) self.ui = Ui_AlgoGFuncStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtVariable.setText(origcode[0]) self.ui.txtFunction.setText(origcode[1]) self.ui.txtStart.setText(origcode[2]) self.ui.txtEnd.setText(origcode[3]) self.ui.txtStep.setText(origcode[4]) self.ui.txtColor.setText(origcode[5]) self.ui.btnCodeFunction.clicked.connect(lambda: self.click(self.ui.txtFunction)) self.ui.btnCodeStart.clicked.connect(lambda: self.click(self.ui.txtStart)) self.ui.btnCodeEnd.clicked.connect(lambda: self.click(self.ui.txtEnd)) self.ui.btnCodeStep.clicked.connect(lambda: self.click(self.ui.txtStep)) self.ui.btnCodeColor.clicked.connect(self.change_color) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: name = self.ui.txtVariable.text() parsed = parse(name) if not isinstance(parsed, IdentifierNode): box = msg_box_error(translate("Algo", "Invalid variable name: {name}").format( name=name), parent=self) box.exec_() return self.f_variable = name p = try_parse(self.ui.txtFunction.text(), self) if p is None: return self.f_function = p p = try_parse(self.ui.txtStart.text(), self) if p is None: return self.f_start = p p = try_parse(self.ui.txtEnd.text(), self) if p is None: return self.f_end = p p = try_parse(self.ui.txtStep.text(), self) if p is None: return self.f_step = p p = try_parse(self.ui.txtColor.text(), self) if p is None: return self.f_color = p self.ok = True super(AlgoGFuncStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def change_color(self, _): dlg = QColorDialog(self) current = self.ui.txtColor.text() if current[0] == current[-1] == '"': current = current[1:-1] dlg.setCurrentColor(QColor(current)) if dlg.exec_(): self.ui.txtColor.setText('"%s"' % dlg.currentColor().name()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_gline.py000066400000000000000000000051571331472757200200470ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtGui import QColor from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_gline import Ui_AlgoGLineStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoGLineStmt(QDialog): def __init__(self, parent, origcode=("", "", "", "", '"red"')): super().__init__(parent) self.ui = Ui_AlgoGLineStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtStartX.setText(origcode[0]) self.ui.txtStartY.setText(origcode[1]) self.ui.txtEndX.setText(origcode[2]) self.ui.txtEndY.setText(origcode[3]) self.ui.txtColor.setText(origcode[4]) self.ui.btnCodeStartX.clicked.connect(lambda: self.click(self.ui.txtStartX)) self.ui.btnCodeStartY.clicked.connect(lambda: self.click(self.ui.txtStartY)) self.ui.btnCodeEndX.clicked.connect(lambda: self.click(self.ui.txtEndX)) self.ui.btnCodeEndY.clicked.connect(lambda: self.click(self.ui.txtEndY)) self.ui.btnCodeColor.clicked.connect(self.change_color) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.txtStartX.text(), self) if p is None: return self.f_start_x = p p = try_parse(self.ui.txtStartY.text(), self) if p is None: return self.f_start_y = p p = try_parse(self.ui.txtEndX.text(), self) if p is None: return self.f_end_x = p p = try_parse(self.ui.txtEndY.text(), self) if p is None: return self.f_end_y = p p = try_parse(self.ui.txtColor.text(), self) if p is None: return self.f_color = p self.ok = True super(AlgoGLineStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def change_color(self, _): dlg = QColorDialog(self) current = self.ui.txtColor.text() if current[0] == current[-1] == '"': current = current[1:-1] dlg.setCurrentColor(QColor(current)) if dlg.exec_(): self.ui.txtColor.setText('"%s"' % dlg.currentColor().name()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_gpoint.py000066400000000000000000000040521331472757200202420ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtGui import QColor from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_gpoint import Ui_AlgoGPointStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoGPointStmt(QDialog): def __init__(self, parent, origcode=("", "", '"red"')): super().__init__(parent) self.ui = Ui_AlgoGPointStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtX.setText(origcode[0]) self.ui.txtY.setText(origcode[1]) self.ui.txtColor.setText(origcode[2]) self.ui.btnCodeX.clicked.connect(lambda: self.click(self.ui.txtX)) self.ui.btnCodeY.clicked.connect(lambda: self.click(self.ui.txtY)) self.ui.btnCodeColor.clicked.connect(self.change_color) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.txtX.text(), self) if p is None: return self.f_x = p p = try_parse(self.ui.txtY.text(), self) if p is None: return self.f_y = p p = try_parse(self.ui.txtColor.text(), self) if p is None: return self.f_color = p self.ok = True super(AlgoGPointStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def change_color(self, _): dlg = QColorDialog(self) current = self.ui.txtColor.text() if current[0] == current[-1] == '"': current = current[1:-1] dlg.setCurrentColor(QColor(current)) if dlg.exec_(): self.ui.txtColor.setText('"%s"' % dlg.currentColor().name()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_gwindow.py000066400000000000000000000050351331472757200204220ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_gwindow import Ui_AlgoGWindowStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoGWindowStmt(QDialog): def __init__(self, parent, origcode=("", "", "", "", "0", "0")): super().__init__(parent) self.ui = Ui_AlgoGWindowStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtXmin.setText(origcode[0]) self.ui.txtXmax.setText(origcode[1]) self.ui.txtYmin.setText(origcode[2]) self.ui.txtYmax.setText(origcode[3]) self.ui.txtXgrad.setText(origcode[4]) self.ui.txtYgrad.setText(origcode[5]) self.ui.btnCodeXmin.clicked.connect(lambda: self.click(self.ui.txtXmin)) self.ui.btnCodeXmax.clicked.connect(lambda: self.click(self.ui.txtXmax)) self.ui.btnCodeYmin.clicked.connect(lambda: self.click(self.ui.txtYmin)) self.ui.btnCodeYmax.clicked.connect(lambda: self.click(self.ui.txtYmax)) self.ui.btnCodeXgrad.clicked.connect(lambda: self.click(self.ui.txtXgrad)) self.ui.btnCodeYgrad.clicked.connect(lambda: self.click(self.ui.txtYgrad)) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.txtXmin.text(), self) if p is None: return self.f_x_min = p p = try_parse(self.ui.txtXmax.text(), self) if p is None: return self.f_x_max = p p = try_parse(self.ui.txtYmin.text(), self) if p is None: return self.f_y_min = p p = try_parse(self.ui.txtYmax.text(), self) if p is None: return self.f_y_max = p p = try_parse(self.ui.txtXgrad.text(), self) if p is None: return self.f_x_grad = p p = try_parse(self.ui.txtYgrad.text(), self) if p is None: return self.f_y_grad = p self.ok = True super(AlgoGWindowStmt, self).done(res) def click(self, wgt): dlg = InlineCodeDialog(self, wgt.text()) if dlg.run(): wgt.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_if.py000066400000000000000000000022601331472757200173370ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_if import Ui_AlgoIfStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoIfStmt(QDialog): def __init__(self, parent, origcode=""): super().__init__(parent) self.ui = Ui_AlgoIfStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.lineEdit.setText(origcode) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.lineEdit.text(), self) if p is None: return self.expr = p self.ok = True super(AlgoIfStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.lineEdit.text()) if dlg.run(): self.ui.lineEdit.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_input.py000066400000000000000000000045241331472757200201050ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_input import Ui_AlgoInputStmt from maths.nodes import * from maths.parser import quick_parse as parse from util.code import try_parse from util.widgets import center_widget, msg_box_error translate = QCoreApplication.translate class AlgoInputStmt(QDialog): def __init__(self, parent, origcode=("", None, False)): super().__init__(parent) self.ui = Ui_AlgoInputStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtVariable.setText(origcode[0]) self.ui.cbxHasValue.stateChanged.connect(self.checked) self.ui.cbxHasValue.setChecked(origcode[1] is not None) if origcode[1] is not None: self.ui.txtValue.setText(origcode[1]) self.ui.cbxText.setChecked(origcode[2]) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def checked(self, state): enabled = state == Qt.Checked self.ui.txtValue.setEnabled(enabled) self.ui.btnCode.setEnabled(enabled) def done(self, res): if res == QDialog.Accepted: name = self.ui.txtVariable.text().strip() parsed = parse(name) if not isinstance(parsed, (IdentifierNode, ArrayAccessNode)): box = msg_box_error(translate("Algo", "Invalid assignment target (must be either variable or array item): {name}").format( name=name), parent=self) box.exec_() return if self.ui.cbxHasValue.isChecked(): p = try_parse(self.ui.txtValue.text(), self) if p is None: return self.expr = p else: self.expr = None self.text = self.ui.cbxText.isChecked() self.varname = parsed self.ok = True super(AlgoInputStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.txtValue.text()) if dlg.run(): self.ui.txtValue.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_return.py000066400000000000000000000031711331472757200202620ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_return import Ui_AlgoReturnStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoReturnStmt(QDialog): def __init__(self, parent, origcode=None): super().__init__(parent) self.ui = Ui_AlgoReturnStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.cbxHasValue.stateChanged.connect(self.checked) self.ui.cbxHasValue.setChecked(origcode is not None) if origcode is not None: self.ui.txtValue.setText(origcode) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def checked(self, state): enabled = state == Qt.Checked self.ui.txtValue.setEnabled(enabled) self.ui.btnCode.setEnabled(enabled) def done(self, res): if res == QDialog.Accepted: if self.ui.cbxHasValue.isChecked(): p = try_parse(self.ui.txtValue.text(), self) if p is None: return self.expr = p else: self.expr = None self.ok = True super(AlgoReturnStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.txtValue.text()) if dlg.run(): self.ui.txtValue.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_sleep.py000066400000000000000000000025361331472757200200570ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_sleep import Ui_AlgoSleepStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoSleepStmt(QDialog): def __init__(self, parent, origcode=""): super().__init__(parent) self.ui = Ui_AlgoSleepStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.txtValue.setText(origcode) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def checked(self, state): enabled = state == Qt.Checked self.ui.txtValue.setEnabled(enabled) self.ui.btnCode.setEnabled(enabled) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.txtValue.text(), self) if p is None: return self.expr = p self.ok = True super(AlgoSleepStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.txtValue.text()) if dlg.run(): self.ui.txtValue.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_stop.py000066400000000000000000000031711331472757200177300ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_stop import Ui_AlgoStopStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoStopStmt(QDialog): def __init__(self, parent, origcode=None): super().__init__(parent) self.ui = Ui_AlgoStopStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.cbxHasValue.stateChanged.connect(self.checked) self.ui.cbxHasValue.setChecked(origcode is not None) if origcode is not None: self.ui.txtMessage.setText(origcode) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def checked(self, state): enabled = state == Qt.Checked self.ui.txtMessage.setEnabled(enabled) self.ui.btnCode.setEnabled(enabled) def done(self, res): if res == QDialog.Accepted: if self.ui.cbxHasValue.isChecked(): p = try_parse(self.ui.txtMessage.text(), self) if p is None: return self.expr = p else: self.expr = None self.ok = True super(AlgoStopStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.txtMessage.text()) if dlg.run(): self.ui.txtMessage.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/alg_while.py000066400000000000000000000022771331472757200200610ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_dialog import InlineCodeDialog from forms.ui_alg_while import Ui_AlgoWhileStmt from util.code import try_parse from util.widgets import center_widget translate = QCoreApplication.translate class AlgoWhileStmt(QDialog): def __init__(self, parent, origcode=""): super().__init__(parent) self.ui = Ui_AlgoWhileStmt() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.ui.lineEdit.setText(origcode) self.ui.btnCode.clicked.connect(self.click) center_widget(self, parent) def done(self, res): if res == QDialog.Accepted: p = try_parse(self.ui.lineEdit.text(), self) if p is None: return self.expr = p self.ok = True super(AlgoWhileStmt, self).done(res) def click(self): dlg = InlineCodeDialog(self, self.ui.lineEdit.text()) if dlg.run(): self.ui.lineEdit.setText(dlg.value()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/calculator.py000066400000000000000000000040521331472757200202500ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtGui import * from forms.inline_code_editor import InlineCodeEditor from forms.ui_calculator import Ui_CalcWindow from lang import translator from maths.evaluator import Evaluator from util.math import proper_str from util.widgets import * translate = QCoreApplication.translate class CalculatorWindow(QMainWindow): def __init__(self): super().__init__() self.ui = Ui_CalcWindow() translator.add(self.ui, self) self.ui.setupUi(self) self.editor = InlineCodeEditor(self.ui.centralwidget) self.ui.verticalLayout.addWidget(self.editor) self.editor.submitted.connect(self.calculate) self.ui.lstHistory.itemDoubleClicked.connect(self.history_double_click) self.show() def add_result(self, expr, result, error=False): if expr: item1 = QListWidgetItem() txt = str(expr) item1.setText(txt) item1.setStatusTip(txt) self.ui.lstHistory.addItem(item1) item2 = QListWidgetItem() txt = proper_str(result) item2.setText(txt) item2.setTextAlignment(Qt.AlignRight) if error: item2.setForeground(QBrush(QColor("red"))) else: item2.setStatusTip(txt) self.ui.lstHistory.addItem(item2) self.ui.lstHistory.scrollToBottom() def calculate(self): ev = Evaluator() expression = self.editor.get_text() result = ev.evaluate(expression) msgs = ev.log.get_messages() if msgs: # err = "\n".join([x[1] for x in msgs]) err = msgs[0][1] self.add_result(ev.beautified, err, True) else: if result is not None: self.add_result(None if msgs else ev.beautified, result) else: self.add_result(None if msgs else ev.beautified, translate("CalcWindow", "Result is None"), True) def history_double_click(self, item): if item.statusTip(): self.editor.set_text(item.text()) Turing-0.11-beta/src/forms/changtheme.py000066400000000000000000000032761331472757200202310ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * from forms.ui_changtheme import Ui_ChangeThemeWindow from util import theming from util.widgets import center_widget translate = QCoreApplication.translate class ChangeThemeWindow(QDialog): def __init__(self, parent, orig=()): super().__init__(parent) self.ui = Ui_ChangeThemeWindow() self.ui.setupUi(self) self.setFixedWidth(self.width()) self.adjustSize() self.setFixedSize(self.size()) self.theme_callback = lambda: () orig = orig or ("",) * 20 def gen(txt): return lambda: self.change_color(txt) for i, t in enumerate(orig): txt = getattr(self.ui, "txtColor_%02d" % (i + 1)) btn = getattr(self.ui, "btnCodeColor_%02d" % (i + 1)) txt.setText(t) btn.clicked.connect(gen(txt)) self.ui.buttonBox.button(QDialogButtonBox.Apply).clicked.connect(self.apply_theme) center_widget(self, parent) def apply_theme(self): colors = [getattr(self.ui, "txtColor_%02d" % (i + 1)).text() for i in range(24)] theming.themes["custom"] = (theming.themes["custom"][0], colors) self.theme_callback() def done(self, res): if res == QDialog.Accepted: self.apply_theme() self.ok = True super(ChangeThemeWindow, self).done(res) def change_color(self, wgt): dlg = QColorDialog(self) dlg.setCurrentColor(QColor(wgt.text())) if dlg.exec_(): wgt.setText(dlg.currentColor().name()) def run(self): return self.exec_() == QDialog.Accepted and self.ok Turing-0.11-beta/src/forms/help.py000066400000000000000000000111631331472757200170500ustar00rootroot00000000000000# -*- coding: utf-8 -*- import re from html import escape import maths.lib import maths.lib.docs import util.html from forms.ui_help import Ui_HelpWindow from lang import translator from util.math import proper_str from util.widgets import * translate = QCoreApplication.translate class HelpWindow(QDialog): def __init__(self, parent): super().__init__(parent) self.ui = Ui_HelpWindow() translator.add(self.ui, self) self.ui.setupUi(self) self.ui.textSearch.textChanged.connect(self.search_changed) self.ui.btnClear.setVisible(False) self.ui.btnClear.clicked.connect(self.clear_search_field) # by default, 25-75 ratio self.ui.splitter.setStretchFactor(0, 2) self.ui.splitter.setStretchFactor(1, 5) self.ui.listFuncs.itemSelectionChanged.connect(self.on_item_select) self.load_funcs() self.show() def on_item_select(self): current = self.ui.listFuncs.currentItem() if current.parent() is not None: category, function = maths.lib.find_function(current.statusTip(0)) name, args, desc = function[:3] desc = re.sub(r"{{(\w+)\}\}", "\g<1>", escape(desc)) desc = re.sub(r"//(\w+)//", "\g<1>", desc) html = util.html.centered("

%s

" % maths.lib.docs.get_func_def_html(function)) html += translate("HelpWindow", "

Arguments:

") html += "
    " if not args: html += translate("HelpWindow", "
  • None
  • ") else: for arg in args: html += "
  • " html += "%s (%s)" % arg[:2] if len(arg) > 2: constraint = escape(arg[2]) if arg[2] else None if len(arg) > 3: default = translate("HelpWindow", "default = {deft}").format( deft=proper_str(arg[3]) if arg[3] is not None else None) else: default = None arg_infos = ", ".join(x for x in [constraint, default] if x) if arg_infos: html += " " + arg_infos html += "
  • " html += "
" if len(function) > 3 and function[3]: html += translate("HelpWindow", "

Aliases:

") html += "
    " for alias in function[3]: html += "
  • %s
  • " % alias html += "
" html += "

%s

" % desc else: text = current.text(0).strip() html = util.html.centered("

%s

" % text) html += translate("HelpWindow", "

Functions:

") html += "
    " for function in self.functions[text]: html += "
  • %s
  • " % maths.lib.docs.get_func_def_html(function) html += "
" self.ui.textBrowser.setHtml(html) def load_funcs(self): self.functions = maths.lib.get_funcs() self.catItems = [] for k in sorted(self.functions.keys()): item_category = QTreeWidgetItem() item_category.setText(0, "%s" % k) font = item_category.font(0) font.setBold(True) item_category.setFont(0, font) items = [] def gen_func(item): return lambda: self.ui.listFuncs.setCurrentItem(item) for f in sorted(self.functions[k], key=lambda x: x[0]): item = QTreeWidgetItem(item_category) item.setStatusTip(0, f[0]) txt = QClickableLabel() txt.setText(" " + maths.lib.docs.get_func_def_html(f, False)) txt.clicked.connect(gen_func(item)) self.ui.listFuncs.setItemWidget(item, 0, txt) items.append(item) self.ui.listFuncs.addTopLevelItem(item_category) self.catItems.append((item_category, items)) def clear_search_field(self): self.ui.textSearch.setText("") def search_changed(self, txt: str): self.ui.btnClear.setVisible(bool(txt)) for ci, items in self.catItems: hid = 0 for i in items: if txt.upper() in i.statusTip(0).upper(): i.setHidden(False) else: i.setHidden(True) hid += 1 # if all sub-items are hidden, hide the whole category ci.setHidden(hid == len(items)) Turing-0.11-beta/src/forms/inline_code_dialog.py000066400000000000000000000015141331472757200217060ustar00rootroot00000000000000# -*- coding: utf-8 -*- from PyQt5.QtCore import * from PyQt5.QtWidgets import * from forms.inline_code_editor import InlineCodeEditor from forms.ui_inline_code import Ui_InlineCodeDialog from util.widgets import center_widget translate = QCoreApplication.translate class InlineCodeDialog(QDialog): def __init__(self, parent, origcode=""): super().__init__(parent) self.ui = Ui_InlineCodeDialog() self.ui.setupUi(self) self.setFixedSize(self.size()) center_widget(self, parent) self.editor = InlineCodeEditor(self) self.editor.set_text(origcode) self.ui.verticalLayout.addWidget(self.editor) self.editor.submitted.connect(self.accept) def run(self): return self.exec_() == QDialog.Accepted def value(self): return self.editor.get_text() Turing-0.11-beta/src/forms/inline_code_editor.py000066400000000000000000000062251331472757200217410ustar00rootroot00000000000000# -*- coding: utf-8 -*- import html import re from typing import Tuple, Dict, List from PyQt5.QtCore import * from PyQt5.QtWidgets import * import maths.lib.docs from forms.w_inline_code import Ui_InlineCodeEditor from lang import translator translate = QCoreApplication.translate class InlineCodeEditor(QWidget): function = Tuple functions: Dict[str, List[function]] = None doc_items: List[List[QListWidgetItem]] = None submitted = pyqtSignal() def __init__(self, parent=None): super().__init__(parent) self.ui = Ui_InlineCodeEditor() translator.add(self.ui, self) self.ui.setupUi(self) if isinstance(parent, QLayout): parent.addWidget(self) self.ui.btnSubmit.clicked.connect(self.submitted.emit) self.ui.lstFuncs.itemDoubleClicked.connect(self.ins_func) self.load_funcs() self.ui.cbxFuncs.currentIndexChanged.connect(self.on_sel) self.ui.txtExpr.textChanged.connect(self.txt_changed) self.ui.btnClear.clicked.connect(self.clear) self.ui.btnClear.setVisible(False) self.ui.txtSearch.textChanged.connect(self.search_changed) self.on_sel(0) def get_text(self): return self.ui.txtExpr.text() def set_text(self, text: str): self.ui.txtExpr.setText(text) def on_sel(self, id: int): self.current_sel = id self.ui.txtSearch.setText("") self.search_changed("") def load_funcs(self): self.functions = maths.lib.get_funcs() self.doc_items = [] for k in sorted(self.functions.keys()): self.ui.cbxFuncs.addItem(k) self.doc_items.append([]) for f in sorted(self.functions[k], key=lambda x: x[0]): item_func = QListWidgetItem(self.ui.lstFuncs) w = QWidget() lay = QVBoxLayout() label_func = QLabel() label_func.setText(maths.lib.docs.get_func_def_html(f)) lay.addWidget(label_func) label_desc = QLabel() desc = re.sub(r"{{(\w+)\}\}", "\g<1>", html.escape(f[2])) desc = re.sub(r"//(\w+)//", "\g<1>", desc) label_desc.setText(desc) label_desc.setAlignment(Qt.AlignRight) lay.addWidget(label_desc) lay.setSizeConstraint(QLayout.SetFixedSize) lay.setSpacing(2) lay.setContentsMargins(6, 6, 6, 6) w.setLayout(lay) item_func.setSizeHint(w.sizeHint()) self.ui.lstFuncs.setItemWidget(item_func, w) self.doc_items[-1].append(item_func) item_func.setStatusTip(f[0]) def ins_func(self, item: QListWidgetItem): self.set_text(self.get_text() + item.statusTip() + "()") def clear(self): self.set_text("") def txt_changed(self, txt: str): self.ui.btnClear.setVisible(bool(txt)) def search_changed(self, txt: str): for idx, items in enumerate(self.doc_items): for it in items: it.setHidden(idx != self.current_sel or txt not in it.statusTip()) Turing-0.11-beta/src/forms/mainwindow.py000066400000000000000000002406371331472757200203060ustar00rootroot00000000000000# -*- coding: utf-8 -*- import html import json import os import re import runpy import sys import tempfile import threading from datetime import datetime import numpy as np import pygments.styles from PyQt5.QtGui import * from matplotlib.axes import Axes from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure from matplotlib.ticker import AutoLocator, LinearLocator import pyqode.python.backend import util.code import util.html from algo.stmts import * from lang import translator from maths.nodes import * from maths.parser import quick_parse as parse from pyqode.core import api from pyqode.core import modes from pyqode.core import panels from util import first_found_dir from util import theming, show_error from util.widgets import * translate = QCoreApplication.translate class AppState(): current_file: Optional[str] = None can_save = False autosave_timer: QTimer = None mode_python = False app_started = False algo = BlockStmt([]) new_version = False async_import_table = {} def async_import(module): def runner(): globals()[module] = __import__(module) async_import_table[module] = threading.Thread(target=runner, args=()) async_import_table[module].start() def async_imported(module): return not async_import_table[module].is_alive() class GuiState(): window: QMainWindow = None ui = None code_editor: api.CodeEdit = None plot_canvas: FigureCanvas = None plot_figure: Figure = None plot_axes: Axes = None panel_search: panels.SearchAndReplacePanel = None syntax_highlighter: modes.PygmentsSyntaxHighlighter = None algo_base_font: QFont = None editor_action_table = [ ("Copy", "copy"), ("Cut", "cut"), ("Paste", "paste"), ("Undo", "undo"), ("Redo", "redo"), ("SelectAll", "select_all"), ("DuplicateLine", "duplicate_line"), ("Indent", "indent"), ("Unindent", "un_indent"), ("GoToLine", "goto_line"), ("Find", "Search"), ("Replace", "ActionSearchAndReplace"), ("FindPrevious", "FindPrevious"), ("FindNext", "FindNext"), ("ZoomIn", "zoom_in"), ("ZoomOut", "zoom_out"), ("ResetZoom", "reset_zoom") ] python_only = [ "SelectAll", "Find", "FindPrevious", "FindNext", "Replace", "Indent", "Unindent", "GoToLine" ] algo_only = [ "Debug", "Step", "ConvertToPython" ] filters = {} lng_actions = {} item_map = {} root_item: QTreeWidgetItem = None mode_zoom: modes.ZoomMode = None mode_ext_select: modes.ExtendedSelectionMode = None panel_folding: panels.FoldingPanel = None article_load_widgets = None class ExecState(): stop_flag = False running = False run_started: datetime = None skip_step = False stopped = False last_saved = None current_stmt: BaseStmt = None python_stopped = False recent_actions = None recent_buttons = None article_buttons = None article_list = None current_output = "" after_output = "" user_input: str = None worker = None block_html = lambda: '' % theming.algo_colors[0] comment_html = lambda: '' % theming.algo_colors[1] keyword_html = lambda: '' % theming.algo_colors[2] red_html = lambda: '' % theming.algo_colors[3] def sleep(duration): begin = datetime.datetime.now() while (datetime.datetime.now() - begin).total_seconds() < duration: check_stop() QCoreApplication.processEvents() def sleep_seconds(duration): sleep(float(duration)) plot_update() def is_empty(): if AppState.mode_python: return not GuiState.code_editor.toPlainText() else: return AppState.algo.children == [] def is_modified(): if AppState.mode_python: return GuiState.code_editor.toPlainText() != ExecState.last_saved else: return repr(AppState.algo) != ExecState.last_saved def handler_ClearRecent(): util.settings.setValue("recent", json.dumps([])) recent_update_text() def recent_add(path): recent = json.loads(util.settings.value("recent", "[]")) recent.insert(0, path) recent = sorted(list(set(recent)))[0:10] util.settings.setValue("recent", json.dumps(recent)) recent_update_text() def recent_update_text(): recent = json.loads(util.settings.value("recent", "[]")) recent = [f for f in recent if os.path.isfile(f)] util.settings.setValue("recent", json.dumps(recent)) for i, file in enumerate(recent): ExecState.recent_actions[i].setText(os.path.basename(file)) ExecState.recent_buttons[i].setText(os.path.basename(file)) _, ext = os.path.splitext(file.lower()) if ext == ".alg": icon = QIcon(":/action/media/algobox.ico") elif ext == ".tr": icon = GuiState.ui.tabWidget.tabIcon(1) elif ext == ".py": icon = GuiState.ui.tabWidget.tabIcon(2) else: icon = QIcon() ExecState.recent_actions[i].setIcon(icon) ExecState.recent_buttons[i].setIcon(icon) ExecState.recent_actions[i].setVisible(True) ExecState.recent_buttons[i].setVisible(i < 7) for i in range(len(recent), 10): ExecState.recent_actions[i].setVisible(False) ExecState.recent_buttons[i].setVisible(False) ExecState.recent_actions[i].setIcon(QIcon()) ExecState.recent_buttons[i].setIcon(QIcon()) fix_qt_shitty_margins() def recent_clicked(index): recent = json.loads(util.settings.value("recent", "[]")) if index < len(recent) and recent[index]: load_file(recent[index]) def recent_init_actions(): ExecState.recent_actions = [] ExecState.recent_buttons = [] def generator(num): return lambda: recent_clicked(num) for i in range(10): act = QAction(GuiState.window) act.setVisible(False) act.triggered.connect(generator(i)) ExecState.recent_actions.append(act) GuiState.ui.menuRecent.insertAction(GuiState.ui.actionClearRecent, act) btn = QFlatButton(GuiState.window) btn.setVisible(False) btn.clicked.connect(generator(i)) ExecState.recent_buttons.append(btn) GuiState.ui.verticalLayout_10.addWidget(btn) GuiState.ui.menuRecent.insertSeparator(GuiState.ui.actionClearRecent) GuiState.ui.verticalLayout_10.addItem(QSpacerItem(1, 2, QSizePolicy.Minimum, QSizePolicy.Expanding)) recent_update_text() def article_clicked(i): QDesktopServices.openUrl(QUrl(ExecState.article_list[i][1])) def article_fetch(language): import urllib.request from xml.etree import ElementTree response = urllib.request.urlopen(urllib.request.Request("https://turingapp.ml/%s/feed/" % language, headers={'User-Agent': 'Mozilla/5.0'})) xml = ElementTree.fromstring(response.read()) result = [] for elem in xml[0].iter("item"): result.append((elem.find("title").text, elem.find("link").text)) return result def article_init_actions(update=True): ExecState.article_buttons = [] ExecState.article_list = [] def generator(i): return lambda: article_clicked(i) for i in range(7): btn = QFlatButton(GuiState.window) btn.setVisible(False) btn.clicked.connect(generator(i)) ExecState.article_buttons.append(btn) GuiState.ui.verticalLayout_11.addWidget(btn) GuiState.ui.verticalLayout_11.addItem(QSpacerItem(1, 2, QSizePolicy.Minimum, QSizePolicy.Expanding)) if update: return article_update_text_begin() def article_remove_button(): if GuiState.article_load_widgets is not None: GuiState.ui.verticalLayout_11.removeWidget(GuiState.article_load_widgets[0]) GuiState.article_load_widgets[0].deleteLater() GuiState.ui.verticalLayout_11.removeItem(GuiState.article_load_widgets[1]) GuiState.article_load_widgets = None for btn in ExecState.article_buttons: btn.setVisible(False) def article_init_button(): article_remove_button() btn = QFlatButton(GuiState.window) spacer = QSpacerItem(1, 2, QSizePolicy.Minimum, QSizePolicy.Expanding) GuiState.article_load_widgets = (btn, spacer) def handler(): set_load_recent_articles(True) article_update_text_begin(True) btn.setIcon(QIcon(":/action/media/download.png")) btn.setText(translate("MainWindow", "Load recent articles")) btn.clicked.connect(handler) GuiState.ui.verticalLayout_11.addWidget(btn) GuiState.ui.verticalLayout_11.addItem(spacer) def article_loader(): ExecState.article_list = article_fetch(translator.current_lang) or article_fetch("") def article_update_text_begin(both=False): article_remove_button() thr = threading.Thread(target=article_loader, args=()) thr.start() if both: article_update_text_end(thr) else: return thr def article_update_text_end(thr=None): if thr is not None: while thr.is_alive(): QCoreApplication.processEvents() for i, (name, _) in enumerate(ExecState.article_list): ExecState.article_buttons[i].setText(name) ExecState.article_buttons[i].setVisible(True) for i in range(len(ExecState.article_list), 7): ExecState.article_buttons[i].setVisible(False) class MainWindowWrapper(QMainWindow): def closeEvent(self, event): if not is_modified(): event.setAccepted(True) clean_exit() return msg = msg_box(translate("MainWindow", "Do you really want to exit?\nAll unsaved changes will be lost."), parent=self) event.ignore() if msg.exec_() == QMessageBox.Yes: event.setAccepted(True) clean_exit() def get_action(name: str) -> QAction: return getattr(GuiState.ui, "action" + name) def refresh(): plot_update() refresh_buttons_status() if not AppState.mode_python: refresh_algo() algo_sel_changed() refresh_window_title() def refresh_window_title(): if GuiState.ui.tabWidget.currentIndex() == 0: title = "Turing" else: if AppState.current_file: filename = os.path.basename(AppState.current_file) if is_modified(): title = translate("MainWindow", "Turing - {file} (unsaved)").format(file=filename) else: title = translate("MainWindow", "Turing - {file}").format(file=filename) else: title = translate("MainWindow", "Turing - New File") GuiState.window.setWindowTitle(title) def refresh_buttons_status(): if AppState.mode_python: for ours, theirs in GuiState.editor_action_table: get_action(ours).setEnabled(getattr(GuiState.code_editor, "action_" + theirs).isEnabled()) active_code = True for c in [ "Save", "SaveAs", "Print", "Find", "Replace", "Run", "Step", "ConvertToPython", "ConvertToPseudocode" ]: get_action(c).setEnabled(active_code) for c in GuiState.python_only: get_action(c).setVisible(AppState.mode_python) for c in GuiState.algo_only: get_action(c).setVisible(not AppState.mode_python) # if AppState.current_file != -1: # get_action("Undo").setEnabled(undo_objs[AppState.current_file].can_undo()) # get_action("Redo").setEnabled(undo_objs[AppState.current_file].can_redo()) def handler_Undo(): if AppState.mode_python: GuiState.code_editor.undo() def handler_Redo(): if AppState.mode_python: GuiState.code_editor.redo() def handler_SelectAll(): GuiState.code_editor.selectAll() def handler_Cut(): if AppState.mode_python: GuiState.code_editor.cut() def handler_Copy(): if AppState.mode_python: GuiState.code_editor.copy() def handler_Paste(): if AppState.mode_python: GuiState.code_editor.paste() def handler_DuplicateLine(): if AppState.mode_python: GuiState.code_editor.duplicate_line() else: btn_dupl_line() def handler_Indent(): GuiState.code_editor.indent() def handler_Unindent(): GuiState.code_editor.un_indent() def handler_GoToLine(): GuiState.code_editor.goto_line() def handler_Find(): GuiState.panel_search.on_search() def handler_FindPrevious(): GuiState.panel_search.select_previous() def handler_FindNext(): GuiState.panel_search.select_next() def handler_Replace(): GuiState.panel_search.on_search_and_replace() def handler_Calculator(): from forms import calculator calculator.CalculatorWindow() def handler_ChangTheme(): from forms import changtheme backup = util.settings.value("app_theme") dlg = changtheme.ChangeThemeWindow(GuiState.window, theming.themes[backup][1]) dlg.theme_callback = lambda: set_theme("custom") if dlg.run(): util.settings.setValue("custom_theme", theming.themes["custom"][1]) for act in GuiState.ui.menuChangeTheme.actions(): if act.statusTip() == "custom": act.setVisible(True) break else: set_theme(backup) def handler_HelpContents(): from forms import help help.HelpWindow(GuiState.window) def change_tab(): if GuiState.ui.tabWidget.currentIndex() == 1: AppState.mode_python = False elif GuiState.ui.tabWidget.currentIndex() == 2: AppState.mode_python = True refresh() def python_print(*args, end="\n"): ExecState.current_output += html.escape(" ".join(str(arg) for arg in args)) ExecState.current_output += end update_output() def update_output(): GuiState.ui.txtOutput.setHtml( '
%s
' % (ExecState.current_output + ExecState.after_output)) GuiState.ui.txtOutput.moveCursor(QTextCursor.End) GuiState.ui.txtOutput.ensureCursorVisible() if ExecState.current_output.endswith("\n\n"): ExecState.current_output = ExecState.current_output[:-1] plot_update() def check_stop(): if ExecState.stopped or (not AppState.mode_python and ExecState.worker.finished): raise KeyboardInterrupt() def python_input(prompt="", globals=None, locals=None, unsafe=False): python_print(prompt, end="") plot_update() ExecState.after_output = "
" ExecState.after_output += util.html.centered( "

%s

" % util.html.color_span("%s" % translate("MainWindow", "Input: ") + html.escape(prompt), "red")) update_output() GuiState.ui.btnSendInput.setEnabled(True) GuiState.ui.txtInput.setEnabled(True) GuiState.ui.txtInput.setFocus(Qt.OtherFocusReason) for n in range(3): if not GuiState.ui.txtInput.text(): GuiState.ui.txtInput.setStyleSheet("QLineEdit { background-color: #ffbaba; }") sleep(0.050) GuiState.ui.txtInput.setStyleSheet("QLineEdit { background-color: #ff7b7b; }") sleep(0.050) GuiState.ui.txtInput.setStyleSheet("QLineEdit { background-color: #ff5252; }") sleep(0.050) GuiState.ui.txtInput.setStyleSheet("QLineEdit { background-color: #ff7b7b; }") sleep(0.050) GuiState.ui.txtInput.setStyleSheet("QLineEdit { background-color: #ffbaba; }") sleep(0.050) GuiState.ui.txtInput.setStyleSheet("") sleep(0.200) ExecState.user_input = None while ExecState.user_input is None: check_stop() QCoreApplication.processEvents() GuiState.ui.btnSendInput.setEnabled(False) GuiState.ui.txtInput.setEnabled(False) GuiState.ui.txtInput.setText("") ExecState.after_output = "" python_print(ExecState.user_input) update_output() if unsafe: try: evaled = eval(ExecState.user_input, globals, locals) return evaled except: pass try: to_int = int(ExecState.user_input) return to_int except: pass try: to_float = float(ExecState.user_input) return to_float except: pass if unsafe: try: to_complex = complex(ExecState.user_input) return to_complex except: pass return ExecState.user_input def python_print_error(msg, end="\n"): ExecState.current_output += util.html.color_span(msg, "red") + end if not AppState.mode_python: set_current_line(ExecState.worker.last, True) update_output() def plot_update(): if GuiState.plot_axes is not None and GuiState.plot_canvas is not None: GuiState.plot_axes.grid(linestyle='-') GuiState.plot_canvas.draw() def plot_clear(): GuiState.plot_axes.clear() GuiState.plot_axes.axhline(y=0, color='k') GuiState.plot_axes.axvline(x=0, color='k') def plot_reset(): plot_clear() plot_window(-10, 10, -10, 10) plot_update() def plot_window(xmin, xmax, ymin, ymax, xgrad=0, ygrad=0): GuiState.plot_axes.set_xlim(xmin, xmax) GuiState.plot_axes.set_ylim(ymin, ymax) GuiState.plot_axes.get_xaxis().set_major_locator( AutoLocator() if xgrad == 0 else LinearLocator(abs(int((xmax - xmin) / xgrad)) + 1)) GuiState.plot_axes.get_yaxis().set_major_locator( AutoLocator() if ygrad == 0 else LinearLocator(abs(int((ymax - ymin) / ygrad)) + 1)) def plot_point(x, y, color="red"): GuiState.plot_axes.scatter([x], [y], c=color) def plot_line(startx, starty, endx, endy, color="red"): GuiState.plot_axes.plot([startx, endx], [starty, endy], c=color, linestyle="-", marker="o") def plot_function(func, start, end, step, color="red"): domain = [x.item() for x in np.arange(start, end, step)] results = [func(x) for x in domain] GuiState.plot_axes.plot(domain, results, c=color, linestyle="-") def stmt_GClear(stmt: GClearStmt): plot_clear() def stmt_GWindow(stmt: GWindowStmt): plot_window(ExecState.worker.evaluator.eval_node(stmt.x_min), ExecState.worker.evaluator.eval_node(stmt.x_max), ExecState.worker.evaluator.eval_node(stmt.y_min), ExecState.worker.evaluator.eval_node(stmt.y_max), ExecState.worker.evaluator.eval_node(stmt.x_grad), ExecState.worker.evaluator.eval_node(stmt.y_grad)) def stmt_GPoint(stmt: GPointStmt): plot_point(ExecState.worker.evaluator.eval_node(stmt.x), ExecState.worker.evaluator.eval_node(stmt.y), ExecState.worker.evaluator.eval_node(stmt.color)) def stmt_GLine(stmt: GLineStmt): plot_line(ExecState.worker.evaluator.eval_node(stmt.start_x), ExecState.worker.evaluator.eval_node(stmt.start_y), ExecState.worker.evaluator.eval_node(stmt.end_x), ExecState.worker.evaluator.eval_node(stmt.end_y), ExecState.worker.evaluator.eval_node(stmt.color)) def stmt_GFunc(stmt: GFuncStmt): plot_function(ExecState.worker.evaluator.eval_node(stmt.get_function()), ExecState.worker.evaluator.eval_node(stmt.start), ExecState.worker.evaluator.eval_node(stmt.end), ExecState.worker.evaluator.eval_node(stmt.step), ExecState.worker.evaluator.eval_node(stmt.color)) def stmt_Sleep(stmt: SleepStmt): sleep_seconds(ExecState.worker.evaluator.eval_node(stmt.duration)) def init_worker(): from algo.worker import Worker ExecState.worker = Worker(AppState.algo.children) ExecState.worker.callback_print = python_print ExecState.worker.callback_input = python_input ExecState.worker.log.set_callback(python_print_error) ExecState.worker.log.use_prefix = False ExecState.worker.init() ExecState.worker.callback_stop = callback_stop ExecState.worker.map[GClearStmt] = stmt_GClear ExecState.worker.map[GWindowStmt] = stmt_GWindow ExecState.worker.map[GPointStmt] = stmt_GPoint ExecState.worker.map[GLineStmt] = stmt_GLine ExecState.worker.map[GFuncStmt] = stmt_GFunc ExecState.worker.map[SleepStmt] = stmt_Sleep set_current_line(None) plot_reset() def end_output(): ExecState.current_output += util.html.centered( util.html.color_span(translate("MainWindow", "end of output") if ExecState.run_started is None else translate("MainWindow", "end of output [{time}]").format( time=datetime.datetime.now() - ExecState.run_started), "red")) ExecState.current_output += "
\n" ExecState.run_started = None update_output() def set_current_line(current: Optional[BaseStmt], error=False): for item, stmt in GuiState.item_map.values(): if stmt == current: item.setBackground(0, QBrush(QColor("#ef5350") if error else QColor("#fdd835"))) else: item.setBackground(0, GuiState.root_item.background(0)) def callback_stop(stmt, virtual=False): breakpoint_message(ExecState.worker.evaluator.eval_node(stmt.message)) if not virtual: ExecState.worker.finished = True def breakpoint_message(message=""): ExecState.after_output = "
" ExecState.after_output += util.html.centered( "

%s

" % util.html.color_span("%s" % ( translate("MainWindow", "Breakpoint: ") + html.escape(str(message)) if message else translate("MainWindow", "Breakpoint")), "red")) update_output() def python_breakpoint(message=""): breakpoint_message(message) ExecState.python_stopped = True GuiState.ui.actionRun.setDisabled(False) GuiState.ui.actionStop.setDisabled(False) while ExecState.python_stopped and not ExecState.stopped: QCoreApplication.processEvents() if ExecState.stopped: raise KeyboardInterrupt() ExecState.after_output = "" update_output() GuiState.ui.actionRun.setDisabled(True) GuiState.ui.actionStop.setDisabled(True) def handler_Stop(): python_print_error(translate("MainWindow", "program interrupted")) ExecState.after_output = "" ExecState.stopped = True if AppState.mode_python: ExecState.running = False ExecState.python_stopped = False else: ExecState.running = True ExecState.worker.finished = True ExecState.worker.error = False ExecState.stop_flag = True handler_Step() ExecState.stop_flag = False update_output() def handler_Step(): GuiState.ui.actionNew.setDisabled(True) GuiState.ui.actionOpen.setDisabled(True) GuiState.ui.actionRun.setDisabled(True) GuiState.ui.actionDebug.setDisabled(True) GuiState.ui.actionStep.setDisabled(True) GuiState.ui.actionStop.setEnabled(True) try: if AppState.mode_python: pass else: if not ExecState.stopped: if ExecState.running: if ExecState.skip_step: ExecState.skip_step = False ExecState.after_output = "" update_output() else: if isinstance(ExecState.current_stmt, StopStmt): callback_stop(ExecState.current_stmt, True) ExecState.skip_step = True else: ExecState.worker.exec_stmt(ExecState.current_stmt) else: init_worker() ExecState.running = True if not ExecState.skip_step and not ExecState.worker.error: ExecState.current_stmt = ExecState.worker.next_stmt() set_current_line(ExecState.current_stmt) else: ExecState.stopped = False QCoreApplication.processEvents() plot_update() except: show_error() finally: plot_update() if ExecState.worker.finished: GuiState.ui.actionRun.setDisabled(False) if not ExecState.stop_flag: end_output() if not ExecState.worker.error: set_current_line(None) ExecState.running = False GuiState.ui.actionDebug.setDisabled(False) GuiState.ui.actionStep.setDisabled(False) GuiState.ui.actionNew.setDisabled(not ExecState.worker.finished) GuiState.ui.actionOpen.setDisabled(not ExecState.worker.finished) GuiState.ui.actionStop.setEnabled(not ExecState.worker.finished) def handler_Debug(): handler_Run(True) class compat_list(list): def __init__(self, iterable=()): super().__init__(iterable) def __setitem__(self, key, value): while len(self) <= key: self.append(0) super().__setitem__(key, value) def handler_Run(flag=False): if ExecState.python_stopped: ExecState.python_stopped = False return if not flag and not AppState.mode_python: algo_run_python() return GuiState.ui.actionNew.setDisabled(True) GuiState.ui.actionOpen.setDisabled(True) GuiState.ui.actionRun.setDisabled(True) GuiState.ui.actionDebug.setDisabled(True) GuiState.ui.actionStep.setDisabled(True) GuiState.ui.actionStop.setEnabled(True) user_stop = False set_current_line(None) try: if AppState.mode_python: file = tempfile.NamedTemporaryFile(mode="w+b", suffix=".py", delete=False) try: code = util.code.python_wrapper(GuiState.code_editor.toPlainText()).encode("utf8") file.write(code) file.close() ExecState.running = True ExecState.stopped = False ExecState.python_stopped = False plot_reset() ExecState.run_started = datetime.datetime.now() runpy.run_path(file.name, init_globals={ "print": python_print, "input": python_input, "breakpoint": python_breakpoint, "list": compat_list, "sleep": sleep_seconds, "g_clear": plot_clear, "g_window": plot_window, "g_point": plot_point, "g_line": plot_line, "g_func": plot_function, "plot": GuiState.plot_axes }) plot_update() except SyntaxError as err: msg = translate("MainWindow", "Syntax error ({type}) at line {line}, offset {off}: ").format( type=type(err).__name__, line=err.lineno - util.code.line_offset, off=err.offset) python_print_error(msg + html.escape(err.text), end="") python_print_error(" " * (len(msg) + err.offset - 1) + "↑") except KeyboardInterrupt: pass except: python_print_error(html.escape(str(sys.exc_info()[1]))) finally: os.unlink(file.name) plot_update() else: if not ExecState.running: init_worker() plot_reset() ExecState.worker.break_on_error = True ExecState.running = True ExecState.stopped = False ExecState.run_started = datetime.datetime.now() ExecState.skip_step = False else: if ExecState.skip_step: ExecState.skip_step = False ExecState.after_output = "" update_output() else: ExecState.worker.exec_stmt(ExecState.current_stmt) if not ExecState.worker.error: set_current_line(None) while not ExecState.worker.finished: ExecState.worker.step() QCoreApplication.processEvents() except KeyboardInterrupt: user_stop = True except: show_error() finally: plot_update() if not AppState.mode_python and ExecState.worker.stopped: GuiState.ui.actionStep.setDisabled(False) GuiState.ui.actionDebug.setDisabled(False) set_current_line(ExecState.worker.last) ExecState.skip_step = True ExecState.worker.finished = False ExecState.worker.stopped = False else: if not user_stop: end_output() GuiState.ui.actionNew.setDisabled(False) GuiState.ui.actionOpen.setDisabled(False) GuiState.ui.actionRun.setDisabled(False) GuiState.ui.actionStep.setDisabled(False) GuiState.ui.actionDebug.setDisabled(False) GuiState.ui.actionStop.setEnabled(False) ExecState.running = False def load_python_code(): import autopep8 py_code = autopep8.fix_code("\n".join(AppState.algo.python())) GuiState.code_editor.setPlainText(py_code.replace("\t", " "), "", "") def handler_ConvertToPython(): load_python_code() AppState.mode_python = True AppState.current_file = None refresh() def algo_run_python(): load_python_code() AppState.mode_python = True handler_Run() AppState.mode_python = False # GuiState.code_editor.setPlainText("", "", "") def handler_AboutTuring(): import forms.about forms.about.AboutWindow(GuiState.window, util.__version__, util.__channel__).run() def handler_Examples(): """ callback function for actionExamples. Let the user choose one example file, providing some metadata about examples to make an easier choice. """ msg = msg_box_info(translate("MainWindow", "You are about to choose an example file\nfrom the `examples` directory. To guess what examples are,\nyou can guess from the file names.")) msg.exec_() data_dirs = ["/usr/share/turing/", os.path.dirname(os.path.realpath(__file__)), os.path.dirname(os.path.dirname(os.path.realpath(__file__))), os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))] + \ QStandardPaths.standardLocations(QStandardPaths.DataLocation) + \ QStandardPaths.standardLocations(QStandardPaths.AppDataLocation) data_dirs = [os.path.join(x, "examples") for x in data_dirs] handler_Open(whichDir=first_found_dir(data_dirs)) return def set_show_toolbar(show): if show: GuiState.ui.toolBar.show() else: GuiState.ui.toolBar.hide() util.settings.setValue("show_toolbar", show) GuiState.ui.actionShowToolbar.setChecked(show) def handler_ShowToolbar(): set_show_toolbar(not GuiState.ui.toolBar.isVisible()) def set_show_toolbar_text(show): if show: GuiState.ui.toolBar.setToolButtonStyle(Qt.ToolButtonTextUnderIcon) else: GuiState.ui.toolBar.setToolButtonStyle(Qt.ToolButtonIconOnly) util.settings.setValue("show_toolbar_text", show) GuiState.ui.actionShowToolbarText.setChecked(show) def handler_ShowToolbarText(): set_show_toolbar_text(GuiState.ui.toolBar.toolButtonStyle() == Qt.ToolButtonIconOnly) def save(filename): if AppState.mode_python: ExecState.last_saved = str(GuiState.code_editor.toPlainText()) else: ExecState.last_saved = repr(AppState.algo) with open(filename, "w+", encoding="utf8") as savefile: savefile.write(ExecState.last_saved) recent_add(filename) refresh() def save_output(): file = QFileDialog.getSaveFileName(GuiState.window, translate("MainWindow", "Save output"), "", translate("MainWindow", "Text files (*.txt)"))[0] if not file: return with open(file, "w+", encoding="utf8") as savefile: savefile.write(GuiState.ui.txtOutput.toPlainText()) def handler_SaveAs(): file = QFileDialog.getSaveFileName(GuiState.window, translate("MainWindow", "Save"), "", GuiState.filters[["tr", "py"][AppState.mode_python]])[0] if not file: return AppState.current_file = file handler_Save() def handler_Save(): if not AppState.current_file: handler_SaveAs() return try: save(AppState.current_file) except PermissionError: msg = msg_box_info( translate("MainWindow", "You are not allowed to write to {},\nplease choose another file path.").format( AppState.current_file)) msg.exec_() handler_SaveAs() return def handler_Open(whichDir=""): """ callback function to open a file @param whichDir the directory to browse initially """ sel_file, _ = QFileDialog.getOpenFileName( GuiState.window, translate("MainWindow", "Open"), whichDir, ";;".join(GuiState.filters.values())) if not sel_file: return load_file(sel_file) def load_file(file): AppState.current_file = file _, ext = os.path.splitext(AppState.current_file.lower()) with open(AppState.current_file, "r", encoding="utf8") as openfile: newcode = openfile.read() if ext == ".alg": from algo.frontends.algobox import parse_algobox AppState.mode_python = False load_block(parse_algobox(newcode)) ExecState.last_saved = repr(AppState.algo) elif ext == ".tr": AppState.mode_python = False load_pseudocode(newcode) ExecState.last_saved = repr(AppState.algo) elif ext == ".py": AppState.mode_python = True GuiState.code_editor.setPlainText(newcode, "", "") ExecState.last_saved = newcode recent_add(AppState.current_file) set_correct_tab() refresh() def set_correct_tab(): GuiState.ui.tabWidget.setCurrentIndex(2 if AppState.mode_python else 1) def handler_New(): if is_modified(): msg = msg_box( translate("MainWindow", "Do you really want to create a new file?\nAll unsaved changes will be lost."), parent=GuiState.window) if msg.exec_() != QMessageBox.Yes: return AppState.current_file = None AppState.algo = BlockStmt([]) GuiState.code_editor.setPlainText("", "", "") set_correct_tab() refresh() def handler_ZoomIn(): if AppState.mode_python: GuiState.code_editor.zoom_in() else: set_algo_size(GuiState.ui.treeWidget.font().pointSize() + 1) def handler_ZoomOut(): if AppState.mode_python: GuiState.code_editor.zoom_out() else: set_algo_size(GuiState.ui.treeWidget.font().pointSize() - 1) def handler_ResetZoom(): if AppState.mode_python: GuiState.code_editor.reset_zoom() else: set_algo_size(GuiState.algo_base_font.pointSize()) def set_algo_size(size): if size < 1: size = 1 set_font_size(GuiState.ui.treeWidget, size) for idstmt, (item, stmt) in GuiState.item_map.items(): set_font_size(item, size, 0) if hasattr(item, "lbl"): set_font_size(item.lbl, size) def init_action_handlers(): for item in dir(GuiState.ui): if item.startswith("action"): name = "handler_" + item[6:] if name in globals(): getattr(GuiState.ui, item).triggered.connect(globals()[name]) def copy_action(source: QAction, target: QAction): target.setText(source.text()) target.setIcon(source.icon()) target.triggered.disconnect() target.triggered.connect(source.trigger) def load_languages(): def gen(loc): return lambda: change_language(loc) it = QDirIterator(":/lang/media/lang") while it.hasNext(): cur = it.next() locale_name, _ = os.path.splitext(os.path.basename(cur)) locale = QLocale(locale_name) act = QAction(GuiState.window) act.setCheckable(True) act.setIcon(QIcon(cur)) act.setText(locale.nativeLanguageName()) act.triggered.connect(gen(locale_name)) GuiState.ui.menuLanguage.addAction(act) GuiState.lng_actions[locale_name] = act def fix_tabwidget_width(): GuiState.ui.tabWidget_2.setMinimumWidth( sum(GuiState.ui.tabWidget_2.tabBar().tabRect(x).width() for x in range(GuiState.ui.tabWidget_2.count()))) GuiState.ui.widget.setMinimumWidth(0) GuiState.ui.widget.setMaximumWidth(16777215) GuiState.ui.widget.adjustSize() width = max(GuiState.window.width() / 3, GuiState.ui.widget.width()) GuiState.ui.widget.setMinimumWidth(width) GuiState.ui.widget.setMaximumWidth(width) def refresh_locs(): for act in GuiState.ui.menuChangeTheme.actions(): if act.statusTip(): act.setText(theming.themes[act.statusTip()][0]()) def change_language(language: str): available = GuiState.lng_actions.keys() if language not in available: if util.get_short_lang(language) in available: language = util.get_short_lang(language) else: language = "en" translator.load(language) GuiState.ui.menubar.resizeEvent(QResizeEvent(GuiState.ui.menubar.size(), GuiState.ui.menubar.size())) load_editor_actions() for l, a in GuiState.lng_actions.items(): a.setChecked(l == language) fix_qt_shitty_margins() fix_tabwidget_width() if sys.platform in ["darwin", "linux"]: GuiState.ui.menuLanguage.setTitle(QLocale(language).nativeLanguageName()) if util.settings.value("load_articles", False, type=bool): thr = article_update_text_begin() else: article_init_button() refresh_locs() refresh() if util.settings.value("load_articles", False, type=bool): article_update_text_end(thr) def send_user_input(): ExecState.user_input = GuiState.ui.txtInput.text() def clear_output(): ExecState.current_output = "" if not AppState.mode_python: set_current_line(None) update_output() plot_reset() def print_output(): print(dir(GuiState.code_editor)) p = QGuiApplication.palette() print(p.color(QPalette.Window).name()) print(p.color(QPalette.WindowText).name()) print(p.color(QPalette.Disabled, QPalette.WindowText).name()) print(p.color(QPalette.Base).name()) print(p.color(QPalette.AlternateBase).name()) print(p.color(QPalette.ToolTipBase).name()) print(p.color(QPalette.ToolTipText).name()) print(p.color(QPalette.Text).name()) print(p.color(QPalette.Disabled, QPalette.Text).name()) print(p.color(QPalette.Dark).name()) print(p.color(QPalette.Shadow).name()) print(p.color(QPalette.Button).name()) print(p.color(QPalette.ButtonText).name()) print(p.color(QPalette.Disabled, QPalette.ButtonText).name()) print(p.color(QPalette.BrightText).name()) print(p.color(QPalette.Link).name()) print(p.color(QPalette.Highlight).name()) print(p.color(QPalette.Disabled, QPalette.Highlight).name()) print(p.color(QPalette.HighlightedText).name()) print(p.color(QPalette.Disabled, QPalette.HighlightedText).name()) theming.themes["devtest"] = (theming.themes["devtest"][0], GuiState.code_editor.toPlainText().split("\n")) set_theme("devtest") pass def load_editor_actions(): for ours, theirs in GuiState.editor_action_table: copy_action(getattr(GuiState.ui, "action" + ours), getattr(GuiState.code_editor, "action_" + theirs)) # edge cases copy_action(GuiState.ui.actionFind, GuiState.panel_search.menu.menuAction()) GuiState.code_editor._sub_menus["Advanced"].setTitle(translate("MainWindow", "Advanced")) GuiState.mode_zoom.mnu_zoom.setTitle(translate("MainWindow", "Zoom")) GuiState.panel_folding.context_menu.setTitle(translate("MainWindow", "Folding")) GuiState.panel_folding.context_menu.actions()[0].setText(translate("MainWindow", "Collapse")) GuiState.panel_folding.context_menu.actions()[1].setText(translate("MainWindow", "Expand")) GuiState.panel_folding.context_menu.actions()[3].setText(translate("MainWindow", "Collapse all")) GuiState.panel_folding.context_menu.actions()[4].setText(translate("MainWindow", "Expand all")) GuiState.mode_ext_select.action_select_word.setText(translate("MainWindow", "Select word")) GuiState.mode_ext_select.action_select_extended_word.setText(translate("MainWindow", "Select extended word")) GuiState.mode_ext_select.action_select_matched.setText(translate("MainWindow", "Matched select")) GuiState.mode_ext_select.action_select_line.setText(translate("MainWindow", "Select line")) GuiState.mode_ext_select.action_select_line.associatedWidgets()[0].setTitle(translate("MainWindow", "Select")) GuiState.panel_search.labelSearch.setPixmap(GuiState.ui.actionFind.icon().pixmap(16, 16)) GuiState.panel_search.labelSearch.setMaximumSize(QSize(16, 16)) GuiState.panel_search.labelReplace.setPixmap(GuiState.ui.actionReplace.icon().pixmap(16, 16)) GuiState.panel_search.labelReplace.setMaximumSize(QSize(16, 16)) GuiState.panel_search.toolButtonPrevious.setIcon(QIcon(":/action/media/up.png")) GuiState.panel_search.toolButtonNext.setIcon(QIcon(":/action/media/down.png")) GuiState.panel_search.toolButtonClose.setIcon(QIcon(":/action/media/cross.png")) GuiState.panel_search.checkBoxRegex.setText(translate("MainWindow", "Regex")) GuiState.panel_search.checkBoxCase.setText(translate("MainWindow", "Match case")) GuiState.panel_search.checkBoxWholeWords.setText(translate("MainWindow", "Whole words")) GuiState.panel_search.checkBoxInSelection.setText(translate("MainWindow", "In Selection")) GuiState.panel_search.labelMatches.setText(translate("MainWindow", "0 matches")) GuiState.panel_search.toolButtonReplace.setText(translate("MainWindow", "Replace")) GuiState.panel_search.toolButtonReplaceAll.setText(translate("MainWindow", "Replace All")) GuiState.panel_search.lineEditSearch.prompt_text = translate("MainWindow", "Find") GuiState.panel_search.lineEditSearch.button.setIcon(QIcon(":/action/media/backspace.png")) GuiState.panel_search.lineEditSearch.button.setMinimumSize(QSize(21, 21)) GuiState.panel_search.lineEditReplace.prompt_text = translate("MainWindow", "Replace") GuiState.panel_search.lineEditReplace.button.setIcon(QIcon(":/action/media/backspace.png")) def copy_actions_to_editor(panel): for name, obj in panel.__dict__.items(): if name.startswith("action_"): setattr(GuiState.code_editor, name, obj) elif name.startswith("action"): # workaround for shitty naming by the devs setattr(GuiState.code_editor, "action_" + name[6:], obj) def set_theme(theme): if theme not in theming.themes or not theming.themes[theme][1]: theme = "default" util.settings.setValue("app_theme", theme) theming.load_theme(theme) for act in GuiState.ui.menuChangeTheme.actions(): act.setChecked(act.statusTip() == theme) refresh_algo() def set_style(style): util.settings.setValue("editor_style", style) GuiState.syntax_highlighter.pygments_style = style for act in GuiState.ui.menuChangeStyle.actions(): act.setChecked(act.text() == style) def load_code_editor(): GuiState.code_editor = api.CodeEdit() if hasattr(sys, "frozen"): print("using external backend") if sys.platform == "win32": backend = "editor_backend.exe" elif sys.platform.startswith("linux"): backend = "editor_backend" elif sys.platform == "darwin": backend = "editor_backend" backend = os.path.join(sys._MEIPASS, backend) else: print("using script file") while not async_imported("editor_backend"): QCoreApplication.processEvents() backend = globals()["editor_backend"].__file__ GuiState.code_editor.backend.start(backend) GuiState.code_editor.modes.append(modes.CodeCompletionMode()) GuiState.code_editor.modes.append(modes.CaretLineHighlighterMode()) GuiState.code_editor.modes.append(modes.AutoCompleteMode()) GuiState.code_editor.modes.append(modes.IndenterMode()) GuiState.code_editor.modes.append(modes.AutoIndentMode()) GuiState.code_editor.modes.append(modes.OccurrencesHighlighterMode()) GuiState.code_editor.modes.append(modes.SmartBackSpaceMode()) GuiState.code_editor.modes.append(modes.SymbolMatcherMode()) GuiState.mode_zoom = modes.ZoomMode() GuiState.code_editor.modes.append(GuiState.mode_zoom) GuiState.code_editor.action_zoom_in = GuiState.mode_zoom.mnu_zoom.actions()[0] GuiState.code_editor.action_zoom_out = GuiState.mode_zoom.mnu_zoom.actions()[1] GuiState.code_editor.action_reset_zoom = GuiState.mode_zoom.mnu_zoom.actions()[2] GuiState.mode_ext_select = GuiState.code_editor.modes.append(modes.ExtendedSelectionMode()) GuiState.syntax_highlighter = GuiState.code_editor.modes.append( modes.PygmentsSyntaxHighlighter(GuiState.code_editor.document())) GuiState.syntax_highlighter.fold_detector = api.IndentFoldDetector() GuiState.panel_folding = GuiState.code_editor.panels.append(panels.FoldingPanel()) GuiState.code_editor.panels.append(panels.LineNumberPanel()) GuiState.code_editor.modes.append(modes.CheckerMode(pyqode.python.backend.run_pep8)) GuiState.code_editor.panels.append(panels.GlobalCheckerPanel(), panels.GlobalCheckerPanel.Position.LEFT) GuiState.panel_search = GuiState.code_editor.panels.append(panels.SearchAndReplacePanel(), api.Panel.Position.BOTTOM) GuiState.panel_search._update_label_matches_orig = GuiState.panel_search._update_label_matches def wrapper(): GuiState.panel_search._update_label_matches_orig() if GuiState.panel_search.labelMatches.text(): GuiState.panel_search.labelMatches.setText( translate("MainWindow", "{num} matches").format(num=GuiState.panel_search.cpt_occurences)) GuiState.panel_search._update_label_matches = wrapper copy_actions_to_editor(GuiState.panel_search) GuiState.code_editor.textChanged.connect(refresh) load_editor_actions() def gen(s): return lambda: set_style(s) for style in pygments.styles.get_all_styles(): action = QAction(GuiState.window) action.setText(style) action.setCheckable(True) action.triggered.connect(gen(style)) GuiState.ui.menuChangeStyle.addAction(action) GuiState.syntax_highlighter.pygments_style = util.settings.value("editor_style", "default") set_style(GuiState.syntax_highlighter.pygments_style) GuiState.ui.verticalLayout_8.addWidget(GuiState.code_editor) def load_plot_canvas(): GuiState.plot_figure = Figure() GuiState.plot_axes = GuiState.plot_figure.add_subplot(111) GuiState.plot_canvas = FigureCanvas(GuiState.plot_figure) plot_reset() GuiState.ui.verticalLayout_4.addWidget(GuiState.plot_canvas) def get_item_label(item): def gen_func(item): return lambda: GuiState.ui.treeWidget.setCurrentItem(item) txt = QClickableLabel() txt.setStyleSheet(GuiState.ui.treeWidget.styleSheet()) txt.clicked.connect(gen_func(item)) txt.dclicked.connect(algo_double_click) item.lbl = txt GuiState.ui.treeWidget.setItemWidget(item, 0, txt) GuiState.ui.treeWidget.header().setSectionResizeMode(QHeaderView.ResizeToContents) return txt def get_item_html(html, data=""): item = QTreeWidgetItem() item.setStatusTip(0, data) item.setFont(0, GuiState.ui.treeWidget.font()) lbl = get_item_label(item) lbl.setFont(item.font(0)) lbl.setText(' %s' % html) GuiState.ui.treeWidget.setItemWidget(item, 0, lbl) return item, lbl def refresh_algo_text(): for item, stmt in GuiState.item_map.values(): lbl = get_item_label(item) lbl.setText(' %s' % str_stmt(stmt)) def add_display(): from forms import alg_display dlg = alg_display.AlgoDisplayStmt(GuiState.window) if dlg.run(): append_line(DisplayStmt(dlg.expr, dlg.newline)) def add_def_variable(): from forms import alg_define dlg = alg_define.AlgoDefineStmt(GuiState.window) if dlg.run(): append_line(AssignStmt(dlg.varname, dlg.expr)) def add_input(): from forms import alg_input dlg = alg_input.AlgoInputStmt(GuiState.window) if dlg.run(): append_line(InputStmt(dlg.varname, dlg.expr, dlg.text)) def add_call(): from forms import alg_call dlg = alg_call.AlgoCallStmt(GuiState.window) if dlg.run(): append_line(CallStmt(dlg.func, dlg.args)) def add_def_func(): from forms import alg_func dlg = alg_func.AlgoFuncStmt(GuiState.window) if dlg.run(): append_line(FuncStmt(dlg.func, dlg.args, [])) def add_return(): from forms import alg_return dlg = alg_return.AlgoReturnStmt(GuiState.window) if dlg.run(): append_line(ReturnStmt(dlg.expr)) def add_if_block(): from forms import alg_if dlg = alg_if.AlgoIfStmt(GuiState.window) if dlg.run(): append_line(IfStmt(dlg.expr, [])) def add_else_block(): append_line(ElseStmt([])) def add_for_loop(): from forms import alg_for dlg = alg_for.AlgoForStmt(GuiState.window) if dlg.run(): append_line(ForStmt(dlg.varname, dlg.f_from, dlg.f_to, [], dlg.f_step)) def add_while_loop(): from forms import alg_while dlg = alg_while.AlgoWhileStmt(GuiState.window) if dlg.run(): append_line(WhileStmt(dlg.expr, [])) def add_gclear(): append_line(GClearStmt()) def add_gline(): from forms import alg_gline dlg = alg_gline.AlgoGLineStmt(GuiState.window) if dlg.run(): append_line(GLineStmt(dlg.f_start_x, dlg.f_start_y, dlg.f_end_x, dlg.f_end_y, dlg.f_color)) def add_gpoint(): from forms import alg_gpoint dlg = alg_gpoint.AlgoGPointStmt(GuiState.window) if dlg.run(): append_line(GPointStmt(dlg.f_x, dlg.f_y, dlg.f_color)) def add_gwindow(): from forms import alg_gwindow dlg = alg_gwindow.AlgoGWindowStmt(GuiState.window) if dlg.run(): append_line(GWindowStmt(dlg.f_x_min, dlg.f_x_max, dlg.f_y_min, dlg.f_y_max, dlg.f_x_grad, dlg.f_y_grad)) def add_gfunc(): from forms import alg_gfunc dlg = alg_gfunc.AlgoGFuncStmt(GuiState.window) if dlg.run(): append_line(GFuncStmt(dlg.f_variable, dlg.f_function, dlg.f_start, dlg.f_end, dlg.f_step, dlg.f_color)) def add_break_stmt(): append_line(BreakStmt()) def add_continue_stmt(): append_line(ContinueStmt()) def add_stop_stmt(): from forms import alg_stop dlg = alg_stop.AlgoStopStmt(GuiState.window) if dlg.run(): append_line(StopStmt(dlg.expr)) def add_sleep_stmt(): from forms import alg_sleep dlg = alg_sleep.AlgoSleepStmt(GuiState.window) if dlg.run(): append_line(SleepStmt(dlg.expr)) def add_comment_stmt(): from forms import alg_comment dlg = alg_comment.AlgoCommentStmt(GuiState.window) if dlg.run(): append_line(CommentStmt(dlg.comment)) def btn_dupl_line(): stmt = get_current_stmt() if isinstance(stmt, IfStmt): current_pos = get_current_pos() _, parent_stmt = get_parent(current_pos) if current_pos[-1] + 1 < len(parent_stmt.children) and isinstance(parent_stmt.children[current_pos[-1] + 1], ElseStmt): append_line(eval(repr(parent_stmt.children[current_pos[-1] + 1])), True) append_line(eval(repr(stmt)), True) def btn_delete_line(): current_pos = get_current_pos() _, parent_stmt = get_parent(current_pos) if isinstance(parent_stmt.children[current_pos[-1]], IfStmt) and current_pos[-1] < len( parent_stmt.children) - 1 and isinstance(parent_stmt.children[current_pos[-1] + 1], ElseStmt): del parent_stmt.children[current_pos[-1] + 1] del parent_stmt.children[current_pos[-1]] refresh() def btn_edit_line(): stmt = get_current_stmt() if isinstance(stmt, DisplayStmt): from forms import alg_display dlg = alg_display.AlgoDisplayStmt(GuiState.window, (stmt.content.code(), stmt.newline)) if dlg.run(): stmt.content = dlg.expr stmt.newline = dlg.newline elif isinstance(stmt, CallStmt): from forms import alg_call dlg = alg_call.AlgoCallStmt(GuiState.window, (stmt.function.code(), [x.code() for x in stmt.arguments])) if dlg.run(): stmt.function = dlg.func stmt.arguments = dlg.args elif isinstance(stmt, AssignStmt): from forms import alg_define dlg = alg_define.AlgoDefineStmt(GuiState.window, (stmt.variable.code(), stmt.value.code())) if dlg.run(): stmt.variable = dlg.varname stmt.value = dlg.expr elif isinstance(stmt, ReturnStmt): from forms import alg_return dlg = alg_return.AlgoReturnStmt(GuiState.window, stmt.value.code() if stmt.value is not None else None) if dlg.run(): stmt.value = dlg.expr elif isinstance(stmt, StopStmt): from forms import alg_stop dlg = alg_stop.AlgoStopStmt(GuiState.window, stmt.message.code() if stmt.message is not None else None) if dlg.run(): stmt.message = dlg.expr elif isinstance(stmt, SleepStmt): from forms import alg_sleep dlg = alg_sleep.AlgoSleepStmt(GuiState.window, stmt.duration.code()) if dlg.run(): stmt.duration = dlg.expr elif isinstance(stmt, InputStmt): from forms import alg_input dlg = alg_input.AlgoInputStmt(GuiState.window, (stmt.variable.code(), stmt.prompt.code() if stmt.prompt is not None else None, stmt.text)) if dlg.run(): stmt.variable = dlg.varname stmt.prompt = dlg.expr stmt.text = dlg.text elif isinstance(stmt, IfStmt): from forms import alg_if dlg = alg_if.AlgoIfStmt(GuiState.window, stmt.condition.code()) if dlg.run(): stmt.condition = dlg.expr elif isinstance(stmt, WhileStmt): from forms import alg_while dlg = alg_while.AlgoWhileStmt(GuiState.window, stmt.condition.code()) if dlg.run(): stmt.condition = dlg.expr elif isinstance(stmt, ForStmt): from forms import alg_for dlg = alg_for.AlgoForStmt(GuiState.window, ( stmt.variable, stmt.begin.code(), stmt.end.code(), stmt.step.code() if stmt.step is not None else None)) if dlg.run(): stmt.variable = dlg.varname stmt.begin = dlg.f_from stmt.end = dlg.f_to stmt.step = dlg.f_step elif isinstance(stmt, FuncStmt): from forms import alg_func dlg = alg_func.AlgoFuncStmt(GuiState.window, (stmt.name, stmt.parameters)) if dlg.run(): stmt.name = dlg.func stmt.parameters = dlg.args elif isinstance(stmt, CommentStmt): from forms import alg_comment dlg = alg_comment.AlgoCommentStmt(GuiState.window, stmt.content) if dlg.run(): stmt.content = dlg.comment elif isinstance(stmt, GLineStmt): from forms import alg_gline dlg = alg_gline.AlgoGLineStmt(GuiState.window, ( stmt.start_x.code(), stmt.start_y.code(), stmt.end_x.code(), stmt.end_y.code(), stmt.color.code())) if dlg.run(): stmt.start_x = dlg.f_start_x stmt.start_y = dlg.f_start_y stmt.end_x = dlg.f_end_x stmt.end_y = dlg.f_end_y stmt.color = dlg.f_color elif isinstance(stmt, GPointStmt): from forms import alg_gpoint dlg = alg_gpoint.AlgoGPointStmt(GuiState.window, (stmt.x.code(), stmt.y.code(), stmt.color.code())) if dlg.run(): stmt.x = dlg.f_x stmt.y = dlg.f_y stmt.color = dlg.f_color elif isinstance(stmt, GWindowStmt): from forms import alg_gwindow dlg = alg_gwindow.AlgoGWindowStmt(GuiState.window, ( stmt.x_min.code(), stmt.x_max.code(), stmt.y_min.code(), stmt.y_max.code(), stmt.x_grad.code(), stmt.y_grad.code())) if dlg.run(): stmt.x_min = dlg.f_x_min stmt.x_max = dlg.f_x_max stmt.y_min = dlg.f_y_min stmt.y_max = dlg.f_y_max stmt.x_grad = dlg.f_x_grad stmt.y_grad = dlg.f_y_grad elif isinstance(stmt, GFuncStmt): from forms import alg_gfunc dlg = alg_gfunc.AlgoGFuncStmt(GuiState.window, ( stmt.var, stmt.expr.code(), stmt.start.code(), stmt.end.code(), stmt.step.code(), stmt.color.code())) if dlg.run(): stmt.var = dlg.f_variable stmt.expr = dlg.f_function stmt.start = dlg.f_start stmt.end = dlg.f_end stmt.step = dlg.f_step stmt.color = dlg.f_color refresh() def btn_move_up_block(): btn_move_up(True) def btn_move_up(block=False): current_pos = get_current_pos() _, parent_stmt = get_parent(current_pos) current_pos[-1] -= 1 if current_pos[-1] < 0: current_pos.pop() else: if not block: existing = parent_stmt.children[current_pos[-1]] if isinstance(existing, BlockStmt): current_pos.append(len(existing.children)) move_line(get_current_pos(), current_pos) def btn_move_down_block(): btn_move_down(True) def btn_move_down(block=False): current_pos = get_current_pos() _, parent_stmt = get_parent(current_pos) current_pos[-1] += 1 if current_pos[-1] >= len(parent_stmt.children): current_pos.pop() current_pos[-1] += 1 else: if not block: existing = parent_stmt.children[current_pos[-1]] if isinstance(existing, BlockStmt): current_pos.append(0) move_line(get_current_pos(), current_pos) def append_line(stmt, force_after=False): current_pos = get_current_pos() _, parent_stmt = get_parent(current_pos) if current_pos: existing = parent_stmt.children[current_pos[-1]] if type(existing) == BaseStmt: parent_stmt.children[current_pos[-1]] = stmt refresh() return else: existing = AppState.algo if force_after and isinstance(existing, IfStmt) and current_pos[-1] + 1 < len(parent_stmt.children) and isinstance( parent_stmt.children[current_pos[-1] + 1], ElseStmt): current_pos[-1] += 1 if not force_after and isinstance(existing, BlockStmt) \ and not (isinstance(stmt, ElseStmt) and isinstance(existing, IfStmt)): current_pos.append(len(existing.children)) else: current_pos[-1] += 1 add_line(current_pos, stmt) if isinstance(stmt, BlockStmt): add_block(stmt, current_pos) set_current_stmt(stmt) def get_current_stmt(): current_item = GuiState.ui.treeWidget.currentItem() if current_item is not None: for item, stmt in GuiState.item_map.values(): if item == current_item: return stmt return AppState.algo def get_current_pos(): current = [] found = False current_stmt = get_current_stmt() def find_block(block: BlockStmt): nonlocal found if found: return nonlocal current current.append(0) for child in block.children: if child == current_stmt: found = True return if isinstance(child, BlockStmt): find_block(child) if found: return current[-1] += 1 current.pop() if current_stmt is not None: find_block(AppState.algo) return current def get_parent(pos): parent = GuiState.root_item parent_stmt = AppState.algo for p in pos[:-1]: parent = parent.child(p) parent_stmt = parent_stmt.children[p] return parent, parent_stmt def set_current_stmt(current): if current is None: return for item, stmt in GuiState.item_map.values(): if stmt == current: GuiState.ui.treeWidget.setCurrentItem(item) break def refresh_algo(): current = None line = GuiState.ui.treeWidget.currentItem() for item, stmt in GuiState.item_map.values(): if item == line: current = stmt break load_block(AppState.algo) set_current_stmt(current) def move_line(old_pos, new_pos): _, old_parent_stmt = get_parent(old_pos) _, new_parent_stmt = get_parent(new_pos) line = old_parent_stmt.children[old_pos[-1]] del old_parent_stmt.children[old_pos[-1]] new_parent_stmt.children.insert(new_pos[-1], line) refresh() def add_line(pos, stmt, add=True): parent, parent_stmt = get_parent(pos) item, lbl = get_item_html(str_stmt(stmt)) parent.insertChild(pos[-1], item) if add: parent_stmt.children.insert(pos[-1], stmt) store_line(item, stmt) GuiState.ui.treeWidget.setItemWidget(item, 0, lbl) def handler_UseArrowNotation(): util.settings.setValue("use_arrow_notation", GuiState.ui.actionUseArrowNotation.isChecked()) refresh_algo() def set_load_recent_articles(val): GuiState.ui.actionLoadRecentArticles.setChecked(val) util.settings.setValue("load_articles", val) def handler_LoadRecentArticles(): set_load_recent_articles(GuiState.ui.actionLoadRecentArticles.isChecked()) def handler_CheckForUpdates(): util.settings.setValue("check_for_updates", GuiState.ui.actionCheckForUpdates.isChecked()) if GuiState.ui.actionCheckForUpdates.isChecked(): run_updater() def str_stmt(stmt): code = lambda stmt: stmt.code(True) if isinstance(stmt, DisplayStmt): ret = translate("Algo", "[k]DISPLAY[/k] [c]{val}[/c] {newline}").format(val=code(stmt.content), newline="↵" if stmt.newline else "") elif isinstance(stmt, BreakStmt): ret = translate("Algo", "[k]BREAK[/k]") elif isinstance(stmt, ContinueStmt): ret = translate("Algo", "[k]CONTINUE[/k]") elif isinstance(stmt, ElseStmt): ret = translate("Algo", "[b]ELSE[/b]") elif isinstance(stmt, WhileStmt): ret = translate("Algo", "[b]WHILE[/b] [c]{cond}[/c]").format(cond=code(stmt.condition)) elif isinstance(stmt, IfStmt): ret = translate("Algo", "[b]IF[/b] [c]{cond}[/c]").format(cond=code(stmt.condition)) elif isinstance(stmt, InputStmt): ret = translate("Algo", "[k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text}").format( prompt="" if stmt.prompt is None else stmt.prompt.code(True), var=code(stmt.variable), text="⌘" if stmt.text else "") elif isinstance(stmt, AssignStmt): if stmt.value is None: ret = translate("Algo", "[k]DECLARE[/k] [c]{var}[/c]").format(var=stmt.variable) else: ret = (translate("Algo", "[c]{var}[/c] [k]🡨[/k] [c]{value}[/c]") if GuiState.ui.actionUseArrowNotation.isChecked() else translate("Algo", "[k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c]")).format( var=code(stmt.variable), value=code(stmt.value)) elif isinstance(stmt, CallStmt): ret = translate("Algo", "[k]CALL[/k] [c]{code}[/c]").format(code=code(stmt.to_node())) elif isinstance(stmt, ForStmt): ret = translate("Algo", "[b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step}").format( var=stmt.variable, begin=code(stmt.begin), end=code(stmt.end), step="" if stmt.step is None else translate("Algo", "([b]STEP[/b] [c]{step}[/c])").format( step=code(stmt.step))) elif isinstance(stmt, FuncStmt): ret = translate("Algo", "[b]FUNCTION[/b] [c]{func}({args})[/c]").format(func=stmt.name, args=", ".join(stmt.parameters)) elif isinstance(stmt, ReturnStmt): ret = translate("Algo", "[k]RETURN[/k] [c]{val}[/c]").format( val="" if stmt.value is None else code(stmt.value)) elif isinstance(stmt, StopStmt): ret = translate("Algo", "[k]STOP[/k] [c]{val}[/c]").format( val="" if stmt.message is None else code(stmt.message)) elif isinstance(stmt, SleepStmt): ret = translate("Algo", "[k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k]").format(val=code(stmt.duration)) elif isinstance(stmt, CommentStmt): ret = "[t]{com}[/t]".format(com=util.html.sanitize(stmt.content)) elif isinstance(stmt, GClearStmt): ret = translate("Algo", "[k]CLEAR PLOT[/k]") elif isinstance(stmt, GLineStmt): ret = translate("Algo", "[k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c])").format( color=code(stmt.color), start_x=code(stmt.start_x), start_y=code(stmt.start_y), end_x=code(stmt.end_x), end_y=code(stmt.end_y) ) elif isinstance(stmt, GPointStmt): ret = translate("Algo", "[k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c])").format( color=code(stmt.color), x=code(stmt.x), y=code(stmt.y), ) elif isinstance(stmt, GWindowStmt): ret = translate("Algo", "[k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c]").format( x_min=code(stmt.x_min), x_max=code(stmt.x_max), y_min=code(stmt.y_min), y_max=code(stmt.y_max), x_grad=code(stmt.x_grad), y_grad=code(stmt.y_grad), ) elif isinstance(stmt, GFuncStmt): ret = translate("Algo", "[k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c]").format( color=code(stmt.color), var=stmt.var, expr=code(stmt.expr), begin=code(stmt.start), end=code(stmt.end), step=code(stmt.step) ) elif isinstance(stmt, BlockStmt): ret = translate("Algo", "[b]PROGRAM[/b]") elif isinstance(stmt, BaseStmt): ret = translate("Algo", "[i]empty[/i]") else: ret = "unimpl %s" % stmt ret = ret.replace("[b]", block_html()).replace("[/b]", "
") ret = ret.replace("[k]", keyword_html()).replace("[/k]", "
") ret = ret.replace("[c]", "").replace("[/c]", "") ret = ret.replace("[i]", "").replace("[/i]", "") ret = ret.replace("[t]", comment_html()).replace("[/t]", "
") ret = ret.replace("[g]", "").replace("[/g]", "") ret = ret.replace("[n]", "" + red_html()).replace("[/n]", "
") ret = ret.replace("[s]", red_html()).replace("[/s]", "") ret = util.html.unescape_brackets(ret) ret = ret.replace(" ", " ") return ret.strip() def store_line(item: QTreeWidgetItem, stmt: BaseStmt): GuiState.item_map[id(stmt)] = item, stmt def add_block(block: BlockStmt, current, add=False): current.append(0) for child in block.children: add_line(current, child, add=add) if isinstance(child, BlockStmt): add_block(child, current, add) current[-1] += 1 current.pop() def load_block(stmt: BlockStmt): GuiState.item_map = {} GuiState.ui.treeWidget.clear() AppState.algo = stmt GuiState.root_item, lbl = get_item_html(str_stmt(AppState.algo)) GuiState.ui.treeWidget.addTopLevelItem(GuiState.root_item) store_line(GuiState.root_item, AppState.algo) GuiState.ui.treeWidget.setItemWidget(GuiState.root_item, 0, lbl) current = [] add_block(stmt, current) GuiState.ui.treeWidget.expandAll() def load_pseudocode(algo): code = eval(algo) load_block(code) def load_algo(): load_block(BlockStmt([ ForStmt("i", parse("1"), parse("16"), [ IfStmt(parse("i % 15 == 0"), [ DisplayStmt(parse("\"FizzBuzz\"")) ]), ElseStmt([ IfStmt(parse("i % 3 == 0"), [ DisplayStmt(parse("\"Fizz\"")) ]), ElseStmt([ IfStmt(parse("i % 5 == 0"), [ DisplayStmt(parse("\"Buzz\"")) ]), ElseStmt([ DisplayStmt(parse("i")) ]) ]) ]), ]) ])) def algo_double_click(): if GuiState.ui.btnAlgo_Edit.isEnabled(): btn_edit_line() def algo_sel_changed(): current = get_current_pos() current_stmt = get_current_stmt() is_item = current_stmt is not None is_root = current == [] is_changeable = is_item and not is_root is_editable = is_changeable \ and not isinstance(current_stmt, (BreakStmt, ContinueStmt, ElseStmt)) \ and type(current_stmt) not in [BaseStmt, BlockStmt] GuiState.ui.btnAlgo_Delete.setEnabled(is_changeable) GuiState.ui.btnAlgo_Edit.setEnabled(is_editable) GuiState.ui.btnAlgo_Dupl.setEnabled(is_changeable and not isinstance(current_stmt, ElseStmt)) can_up = is_changeable and current != [0] GuiState.ui.btnAlgo_UpBlock.setEnabled(can_up) GuiState.ui.btnAlgo_Up.setEnabled(can_up) can_down = is_changeable and current != [len(AppState.algo.children) - 1] GuiState.ui.btnAlgo_Down.setEnabled(can_down) GuiState.ui.btnAlgo_DownBlock.setEnabled(can_down) GuiState.ui.btnAlgo_Variable.setEnabled(is_item) GuiState.ui.btnAlgo_Display.setEnabled(is_item) GuiState.ui.btnAlgo_Input.setEnabled(is_item) GuiState.ui.btnAlgo_Call.setEnabled(is_item) GuiState.ui.btnAlgo_Func.setEnabled(is_item) GuiState.ui.btnAlgo_Return.setEnabled(is_changeable) GuiState.ui.btnAlgo_Stop.setEnabled(is_item) GuiState.ui.btnAlgo_Sleep.setEnabled(is_item) GuiState.ui.btnAlgo_If.setEnabled(is_item) GuiState.ui.btnAlgo_Else.setEnabled(is_changeable) GuiState.ui.btnAlgo_For.setEnabled(is_item) GuiState.ui.btnAlgo_While.setEnabled(is_item) GuiState.ui.btnAlgo_Continue.setEnabled(is_changeable) GuiState.ui.btnAlgo_Break.setEnabled(is_changeable) GuiState.ui.btnAlgo_Comment.setEnabled(is_item) GuiState.ui.btnAlgo_GClear.setEnabled(is_item) GuiState.ui.btnAlgo_GWindow.setEnabled(is_item) GuiState.ui.btnAlgo_GPoint.setEnabled(is_item) GuiState.ui.btnAlgo_GLine.setEnabled(is_item) GuiState.ui.btnAlgo_GFunc.setEnabled(is_item) if is_changeable: parent_stack = [AppState.algo] for p in current: parent_stack.append(parent_stack[-1].children[p]) existing_else = current[-1] + 1 < len(parent_stack[-2].children) and isinstance( parent_stack[-2].children[current[-1] + 1], ElseStmt) GuiState.ui.btnAlgo_Else.setEnabled(isinstance(current_stmt, IfStmt) and not existing_else) in_loop = any(x for x in parent_stack if type(x) in [ForStmt, WhileStmt]) GuiState.ui.btnAlgo_Continue.setEnabled(in_loop) GuiState.ui.btnAlgo_Break.setEnabled(in_loop) in_func = any(x for x in parent_stack if type(x) == FuncStmt) GuiState.ui.btnAlgo_Return.setEnabled(in_func) def algo_scroll(event: QWheelEvent): if event.modifiers() and Qt.ControlModifier: if event.angleDelta().y() > 0: handler_ZoomIn() elif event.angleDelta().y() < 0: handler_ZoomOut() event.accept() else: GuiState.ui.treeWidget.wheelEventOrig(event) def fix_qt_shitty_margins(): for wgt in GuiState.window.centralWidget().findChildren(QPushButton): if not wgt.icon().isNull() and wgt.text() and not wgt.text().startswith(" "): wgt.setText(" " + wgt.text()) wgt.setMinimumHeight(28) def init_theme_actions(): def gen(s): return lambda: set_theme(s) for theme in theming.themes: action = QAction(GuiState.window) action.setStatusTip(theme) action.setCheckable(True) action.triggered.connect(gen(theme)) GuiState.ui.menuChangeTheme.addAction(action) if theme == "custom": action.setVisible(bool(theming.themes["custom"][1])) def load_home_actions(): def gen(btn, a): def func(): btn.setEnabled(a.isEnabled()) btn.setText(a.text()) return func for a in [GuiState.ui.actionNew, GuiState.ui.actionOpen]: btn = QFlatButton(GuiState.window) btn.setIcon(a.icon()) btn.clicked.connect(a.triggered) a.changed.connect(gen(btn, a)) GuiState.ui.verticalLayout_3.addWidget(btn) def init_ui(): from forms.ui_mainwindow import Ui_MainWindow GuiState.window = MainWindowWrapper() GuiState.ui = Ui_MainWindow() translator.add(GuiState.ui, GuiState.window) GuiState.ui.setupUi(GuiState.window) load_languages() GuiState.algo_base_font = GuiState.ui.treeWidget.font() recent_init_actions() article_thr = article_init_actions(util.settings.value("load_articles", False, type=bool)) if article_thr is None: article_init_button() load_home_actions() load_code_editor() load_plot_canvas() load_algo() init_action_handlers() if sys.platform not in ["darwin", "linux"]: right_corner = QMenuBar() GuiState.ui.menubar.removeAction(GuiState.ui.menuLanguage.menuAction()) right_corner.addAction(GuiState.ui.menuLanguage.menuAction()) GuiState.ui.menubar.setCornerWidget(right_corner) init_event_handlers() init_theme_actions() algo_sel_changed() GuiState.filters = { "all": translate("MainWindow", "Program file (*.py *.tr *.alg)"), "py": translate("MainWindow", "Python file (*.py)"), "tr": translate("MainWindow", "Turing program (*.tr)"), "alg": translate("MainWindow", "Algobox file (*.alg)") } autosave_init() set_show_toolbar(util.settings.value("show_toolbar", True, type=bool)) set_show_toolbar_text(util.settings.value("show_toolbar_text", True, type=bool)) GuiState.ui.actionUseArrowNotation.setChecked(util.settings.value("use_arrow_notation", False, type=bool)) is_deb = False if os.path.exists("/etc/issue"): try: with open("/etc/issue", encoding="utf-8") as fp: issue = fp.read() if re.match("Debian", issue, re.M) or re.match("Ubuntu", issue, re.M): is_deb = True except: pass GuiState.ui.actionLoadRecentArticles.setChecked(util.settings.value("load_articles", False, type=bool)) GuiState.ui.actionCheckForUpdates.setChecked(util.settings.value("check_for_updates", not is_deb, type=bool)) center_widget(GuiState.window, None) fix_qt_shitty_margins() if util.settings.value("load_articles", False, type=bool): article_update_text_end(article_thr) GuiState.window.show() def init_event_handlers(): GuiState.ui.btnSendInput.clicked.connect(send_user_input) GuiState.ui.btnClearOutput.clicked.connect(clear_output) GuiState.ui.btnPrintOutput.clicked.connect(print_output) GuiState.ui.btnSaveOutput.clicked.connect(save_output) GuiState.ui.btnAlgo_Delete.clicked.connect(btn_delete_line) GuiState.ui.btnAlgo_Edit.clicked.connect(btn_edit_line) GuiState.ui.btnAlgo_UpBlock.clicked.connect(btn_move_up_block) GuiState.ui.btnAlgo_Up.clicked.connect(btn_move_up) GuiState.ui.btnAlgo_Down.clicked.connect(btn_move_down) GuiState.ui.btnAlgo_DownBlock.clicked.connect(btn_move_down_block) GuiState.ui.btnAlgo_Dupl.clicked.connect(btn_dupl_line) GuiState.ui.btnAlgo_Variable.clicked.connect(add_def_variable) GuiState.ui.btnAlgo_Display.clicked.connect(add_display) GuiState.ui.btnAlgo_Input.clicked.connect(add_input) GuiState.ui.btnAlgo_Call.clicked.connect(add_call) GuiState.ui.btnAlgo_Func.clicked.connect(add_def_func) GuiState.ui.btnAlgo_Return.clicked.connect(add_return) GuiState.ui.btnAlgo_Stop.clicked.connect(add_stop_stmt) GuiState.ui.btnAlgo_Sleep.clicked.connect(add_sleep_stmt) GuiState.ui.btnAlgo_If.clicked.connect(add_if_block) GuiState.ui.btnAlgo_Else.clicked.connect(add_else_block) GuiState.ui.btnAlgo_For.clicked.connect(add_for_loop) GuiState.ui.btnAlgo_While.clicked.connect(add_while_loop) GuiState.ui.btnAlgo_Continue.clicked.connect(add_continue_stmt) GuiState.ui.btnAlgo_Break.clicked.connect(add_break_stmt) GuiState.ui.btnAlgo_Comment.clicked.connect(add_comment_stmt) GuiState.ui.btnAlgo_GClear.clicked.connect(add_gclear) GuiState.ui.btnAlgo_GWindow.clicked.connect(add_gwindow) GuiState.ui.btnAlgo_GPoint.clicked.connect(add_gpoint) GuiState.ui.btnAlgo_GLine.clicked.connect(add_gline) GuiState.ui.btnAlgo_GFunc.clicked.connect(add_gfunc) GuiState.ui.treeWidget.itemSelectionChanged.connect(algo_sel_changed) GuiState.ui.treeWidget.itemDoubleClicked.connect(algo_double_click) GuiState.ui.treeWidget.wheelEventOrig = GuiState.ui.treeWidget.wheelEvent GuiState.ui.treeWidget.wheelEvent = algo_scroll GuiState.ui.tabWidget.currentChanged.connect(change_tab) def autosave_write(): util.settings.setValue("autosave_type", AppState.mode_python) util.settings.setValue("autosave_date", datetime.datetime.now()) if AppState.mode_python: content = GuiState.code_editor.toPlainText() else: content = repr(AppState.algo) util.settings.setValue("autosave_content", content) def autosave_tick(): if AppState.app_started: if is_modified(): util.settings.setValue("autosave_dirty", True) autosave_write() else: util.settings.setValue("autosave_dirty", False) autosave_clear() def autosave_init(): AppState.autosave_timer = QTimer() AppState.autosave_timer.timeout.connect(autosave_tick) AppState.autosave_timer.start(1000) def autosave_load(): AppState.mode_python = util.settings.value("autosave_type", False, type=bool) content = util.settings.value("autosave_content", "") if AppState.mode_python: GuiState.code_editor.setPlainText(content, "", "") else: load_pseudocode(content) refresh() def autosave_clear(): util.settings.setValue("autosave_dirty", False) util.settings.remove("autosave_content") util.settings.remove("autosave_date") util.settings.remove("autosave_type") def clean_exit(): autosave_clear() GuiState.code_editor.backend.stop() sys.exit() def handler_SendFeedback(): QDesktopServices.openUrl(QUrl("https://goo.gl/forms/GVCJoBTQv0jYp3MA3")) def version_check(): import json import urllib.request import re result = json.load(urllib.request.urlopen(urllib.request.Request("https://api.github.com/repos/TuringApp/Turing/releases/latest", headers={'User-Agent': 'Mozilla/5.0'}))) if result and type(result) == dict and "tag_name" in result: version = re.findall(r"[\d.]+", result["tag_name"])[0] current = re.findall(r"[\d.]+", util.__version__)[0] from distutils.version import StrictVersion if StrictVersion(version) > StrictVersion(current): AppState.new_version = True def run_updater(): AppState.new_version = False thr = threading.Thread(target=version_check, args=()) thr.start() while thr.is_alive(): QCoreApplication.processEvents() if AppState.new_version: msg = msg_box(translate("MainWindow", "A new version of Turing is available.\nWould you like to download it?"), parent=GuiState.window) if msg.exec_() == QMessageBox.Yes: QDesktopServices.openUrl(QUrl("https://github.com/TuringApp/Turing/releases/latest")) def autosave_check(): dirty = util.settings.value("autosave_dirty", False, type=bool) if dirty: msg = msg_box( translate("MainWindow", "A modified file has been automatically saved.\nWould you like to recover it?"), parent=GuiState.window) if msg.exec_() == QMessageBox.Yes: autosave_load() else: autosave_clear() def init_pre(): if not hasattr(sys, "frozen"): async_import("editor_backend") init_pre() def init_main(splash): init_ui() set_theme(util.settings.value("app_theme", "default")) change_language(QLocale.system().name()) GuiState.window.show() splash.finish(GuiState.window) if GuiState.ui.actionCheckForUpdates.isChecked(): run_updater() GuiState.window.raise_() GuiState.window.activateWindow() autosave_check() AppState.app_started = True Turing-0.11-beta/src/forms/ui_about.ui000066400000000000000000000224761331472757200177250ustar00rootroot00000000000000 AboutWindow 0 0 671 402 About Turing :/icon/media/icon.ico:/icon/media/icon.ico true <img src=":/icon/media/icon_96.png"/> Qt::RichText QTabWidget::Rounded 0 Program true <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> true License true <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Copyright © 2018 Turing </span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), 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: </span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, 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.</span></p></body></html> Qt::Horizontal QDialogButtonBox::Close buttonBox accepted() AboutWindow accept() 248 254 157 274 buttonBox rejected() AboutWindow reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_call.ui000066400000000000000000000076131331472757200203450ustar00rootroot00000000000000 AlgoCallStmt Qt::WindowModal 0 0 477 193 Call function :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> true Function: txtFunction :/action/media/edit_line.png:/action/media/edit_line.png :/action/media/edit_line.png:/action/media/edit_line.png Arguments: txtArguments Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtFunction txtArguments btnCodeFunc btnCodeArgs buttonBox accepted() AlgoCallStmt accept() 248 254 157 274 buttonBox rejected() AlgoCallStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_comment.ui000066400000000000000000000051571331472757200210750ustar00rootroot00000000000000 AlgoCommentStmt Qt::WindowModal 0 0 477 193 Comment :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> true Comment: lineEdit Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AlgoCommentStmt accept() 248 254 157 274 buttonBox rejected() AlgoCommentStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_define.ui000066400000000000000000000066331331472757200206650ustar00rootroot00000000000000 AlgoDefineStmt Qt::WindowModal 0 0 477 193 Define variable :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> true Value: txtValue Variable: txtVariable :/action/media/edit_line.png:/action/media/edit_line.png Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AlgoDefineStmt accept() 238 172 238 96 buttonBox rejected() AlgoDefineStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_display.ui000066400000000000000000000066401331472757200210760ustar00rootroot00000000000000 AlgoDisplayStmt Qt::WindowModal 0 0 477 193 Display value :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> true :/action/media/edit_line.png:/action/media/edit_line.png Value: lineEdit Followed by a line break true Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok lineEdit cbxNewline btnCode buttonBox accepted() AlgoDisplayStmt accept() 248 254 157 274 buttonBox rejected() AlgoDisplayStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_for.ui000066400000000000000000000132241331472757200202130ustar00rootroot00000000000000 AlgoForStmt Qt::WindowModal 0 0 477 251 FOR loop :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> true From: txtFrom To: txtTo true :/action/media/edit_line.png:/action/media/edit_line.png false :/action/media/edit_line.png:/action/media/edit_line.png false Step: txtStep Variable: txtVariable Custom step true :/action/media/edit_line.png:/action/media/edit_line.png Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtVariable txtFrom txtTo cbxHasValue txtStep btnCodeFrom btnCodeTo btnCodeStep buttonBox accepted() AlgoForStmt accept() 238 172 238 96 buttonBox rejected() AlgoForStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_func.ui000066400000000000000000000062351331472757200203640ustar00rootroot00000000000000 AlgoFuncStmt Qt::WindowModal 0 0 477 193 Define function :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> true Function: txtFunction Parameters: txtArguments Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AlgoFuncStmt accept() 248 254 157 274 buttonBox rejected() AlgoFuncStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_gfunc.ui000066400000000000000000000160131331472757200205260ustar00rootroot00000000000000 AlgoGFuncStmt Qt::WindowModal 0 0 477 263 Plot function :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> true Start: txtStart Step: txtStep Function: txtFunction Variable: txtVariable true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png Color: txtColor End: txtEnd true :/action/media/edit_line.png:/action/media/edit_line.png Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtVariable txtFunction txtStart txtEnd txtStep txtColor btnCodeFunction btnCodeStart btnCodeEnd btnCodeStep btnCodeColor buttonBox accepted() AlgoGFuncStmt accept() 238 172 238 96 buttonBox rejected() AlgoGFuncStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_gline.ui000066400000000000000000000151451331472757200205270ustar00rootroot00000000000000 AlgoGLineStmt Qt::WindowModal 0 0 477 251 Plot line :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> true End Y: txtEndY End X: txtEndX Start X: txtStartX Start Y: txtStartY true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png Color: txtColor Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtStartX txtStartY txtEndX txtEndY txtColor btnCodeStartX btnCodeStartY btnCodeEndX btnCodeEndY btnCodeColor buttonBox accepted() AlgoGLineStmt accept() 247 241 238 96 buttonBox rejected() AlgoGLineStmt reject() 247 241 238 96 Turing-0.11-beta/src/forms/ui_alg_gpoint.ui000066400000000000000000000115231331472757200207250ustar00rootroot00000000000000 AlgoGPointStmt Qt::WindowModal 0 0 477 210 Plot point :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> true Color: txtColor X: txtX Y: txtY true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/color_wheel.png:/action/media/color_wheel.png Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtX txtY txtColor btnCodeX btnCodeY btnCodeColor buttonBox accepted() AlgoGPointStmt accept() 247 200 238 96 buttonBox rejected() AlgoGPointStmt reject() 247 200 238 96 Turing-0.11-beta/src/forms/ui_alg_gwindow.ui000066400000000000000000000166071331472757200211130ustar00rootroot00000000000000 AlgoGWindowStmt Qt::WindowModal 0 0 477 251 Set window :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> true Max Y: txtYmax Min Y: txtYmin Min X: txtXmin Max X: txtXmax true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png true :/action/media/edit_line.png:/action/media/edit_line.png Grad X: txtXgrad Grad Y: txtYgrad Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtXmin txtXmax txtYmin txtYmax txtXgrad txtYgrad btnCodeXmin btnCodeXmax btnCodeYmin btnCodeYmax btnCodeXgrad btnCodeYgrad buttonBox accepted() AlgoGWindowStmt accept() 238 172 238 96 buttonBox rejected() AlgoGWindowStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_if.ui000066400000000000000000000060441331472757200200250ustar00rootroot00000000000000 AlgoIfStmt Qt::WindowModal 0 0 477 193 IF block :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> true :/action/media/edit_line.png:/action/media/edit_line.png Condition: lineEdit Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AlgoIfStmt accept() 248 254 157 274 buttonBox rejected() AlgoIfStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_alg_input.ui000066400000000000000000000103401331472757200205600ustar00rootroot00000000000000 AlgoInputStmt Qt::WindowModal 0 0 477 283 Read user input :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> true false false :/action/media/edit_line.png:/action/media/edit_line.png Display a message Variable: txtVariable Message: txtValue Text Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtVariable cbxHasValue txtValue btnCode buttonBox accepted() AlgoInputStmt accept() 238 172 238 96 buttonBox rejected() AlgoInputStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_return.ui000066400000000000000000000066321331472757200207510ustar00rootroot00000000000000 AlgoReturnStmt Qt::WindowModal 0 0 477 193 Return :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> true Value: txtValue false false :/action/media/edit_line.png:/action/media/edit_line.png Return a value Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtValue cbxHasValue btnCode buttonBox accepted() AlgoReturnStmt accept() 238 172 238 96 buttonBox rejected() AlgoReturnStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_sleep.ui000066400000000000000000000060521331472757200205360ustar00rootroot00000000000000 AlgoSleepStmt Qt::WindowModal 0 0 477 193 Wait :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> true Duration: txtValue :/action/media/edit_line.png:/action/media/edit_line.png Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtValue btnCode buttonBox accepted() AlgoSleepStmt accept() 238 172 238 96 buttonBox rejected() AlgoSleepStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_stop.ui000066400000000000000000000066631331472757200204230ustar00rootroot00000000000000 AlgoStopStmt Qt::WindowModal 0 0 477 193 Breakpoint :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> true Message: txtMessage false false :/action/media/edit_line.png:/action/media/edit_line.png Display a message Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtMessage cbxHasValue btnCode buttonBox accepted() AlgoStopStmt accept() 238 172 238 96 buttonBox rejected() AlgoStopStmt reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_alg_while.ui000066400000000000000000000060311331472757200205330ustar00rootroot00000000000000 AlgoWhileStmt Qt::WindowModal 0 0 477 193 WHILE loop :/action/media/settings.png:/action/media/settings.png true <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> true :/action/media/edit_line.png:/action/media/edit_line.png Condition: lineEdit Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AlgoWhileStmt accept() 248 254 157 274 buttonBox rejected() AlgoWhileStmt reject() 316 260 286 274 Turing-0.11-beta/src/forms/ui_calculator.ui000066400000000000000000000016521331472757200207350ustar00rootroot00000000000000 CalcWindow 0 0 671 601 Calculator :/action/media/calculator.png:/action/media/calculator.png 16 16 Turing-0.11-beta/src/forms/ui_changtheme.ui000066400000000000000000000571351331472757200207160ustar00rootroot00000000000000 ChangeThemeWindow Qt::WindowModal 0 0 503 459 Edit theme :/action/media/settings.png:/action/media/settings.png true Block: txtColor_21 Comment: txtColor_22 Keyword: txtColor_23 true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png Literal: txtColor_24 Qt::Horizontal QSizePolicy::Fixed 80 20 true :/action/media/color_wheel.png:/action/media/color_wheel.png Window: txtColor_01 Shadow: txtColor_11 true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png Button: txtColor_12 Button Text: txtColor_13 Disabled Button Text: txtColor_14 Bright Text: txtColor_15 true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png Disabled Highlight: txtColor_18 Highlight: txtColor_17 Highlighted Text: txtColor_19 Link: txtColor_16 Disabled Highlighted Text: txtColor_20 Disabled Window Text : txtColor_03 Alternate Base: txtColor_05 Base: txtColor_04 Window Text: txtColor_02 Dark: txtColor_10 Disabled Text: txtColor_09 Tool Tip Text: txtColor_07 Text: txtColor_08 Tool Tip Base: txtColor_06 true :/action/media/color_wheel.png:/action/media/color_wheel.png true :/action/media/color_wheel.png:/action/media/color_wheel.png Qt::Horizontal QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok txtColor_01 txtColor_02 txtColor_03 txtColor_04 txtColor_05 txtColor_06 txtColor_07 txtColor_08 txtColor_09 txtColor_10 txtColor_21 txtColor_22 txtColor_11 txtColor_12 txtColor_13 txtColor_14 txtColor_15 txtColor_16 txtColor_17 txtColor_18 txtColor_19 txtColor_20 txtColor_23 txtColor_24 btnCodeColor_05 btnCodeColor_06 btnCodeColor_07 btnCodeColor_08 btnCodeColor_09 btnCodeColor_10 btnCodeColor_11 btnCodeColor_12 btnCodeColor_13 btnCodeColor_14 btnCodeColor_15 btnCodeColor_16 btnCodeColor_17 btnCodeColor_18 btnCodeColor_19 btnCodeColor_20 btnCodeColor_01 btnCodeColor_21 btnCodeColor_02 btnCodeColor_22 btnCodeColor_03 btnCodeColor_04 btnCodeColor_23 btnCodeColor_24 buttonBox accepted() ChangeThemeWindow accept() 238 172 238 96 buttonBox rejected() ChangeThemeWindow reject() 238 172 238 96 Turing-0.11-beta/src/forms/ui_help.ui000066400000000000000000000064071331472757200175370ustar00rootroot00000000000000 HelpWindow 0 0 947 552 Help Contents :/action/media/help.png:/action/media/help.png Qt::Horizontal false :/action/media/clear.png:/action/media/clear.png true true 1 Qt::Horizontal QDialogButtonBox::Close false textSearch btnClear listFuncs textBrowser buttonBox accepted() HelpWindow accept() 227 534 157 274 buttonBox rejected() HelpWindow reject() 295 540 286 274 Turing-0.11-beta/src/forms/ui_inline_code.ui000066400000000000000000000015021331472757200210460ustar00rootroot00000000000000 InlineCodeDialog Qt::WindowModal 0 0 470 347 Expression editor :/action/media/edit_line.png:/action/media/edit_line.png true Turing-0.11-beta/src/forms/ui_mainwindow.ui000066400000000000000000001546241331472757200207700ustar00rootroot00000000000000 zdimension MainWindow 0 0 900 713 800 0 Turing :/icon/media/icon.ico:/icon/media/icon.ico true true 0 :/action/media/home.png:/action/media/home.png Home 0 0 12 Recent files Qt::AlignCenter Qt::Horizontal :/icon/media/icon_128.png Qt::AlignCenter 36 Turing Qt::AlignCenter 0 0 12 Recent articles Qt::AlignCenter Qt::Horizontal :/action/media/code.png:/action/media/code.png Pseudocode true true true 1 0 0 0 0 0 0 0 28 :/action/media/up_double.png:/action/media/up_double.png 0 0 0 28 :/action/media/down_double.png:/action/media/down_double.png 0 0 0 28 :/action/media/up.png:/action/media/up.png Duplicate Line :/action/media/duplicate_line.png:/action/media/duplicate_line.png 0 0 0 28 :/action/media/down.png:/action/media/down.png Delete Line :/action/media/delete.png:/action/media/delete.png Edit Line :/action/media/edit_line.png:/action/media/edit_line.png 1 Qt::Horizontal 0 0 Zoom in :/action/media/zoom_in.png:/action/media/zoom_in.png 0 0 Zoom out :/action/media/zoom_out.png:/action/media/zoom_out.png 0 0 Reset zoom :/action/media/zoom_reset.png:/action/media/zoom_reset.png 1 Qt::Horizontal 0 0 270 0 0 Basic ASSIGN variable :/action/media/variable.png:/action/media/variable.png Breakpoint :/action/media/breakpoint.png:/action/media/breakpoint.png Read user INPUT :/action/media/input.png:/action/media/input.png DISPLAY value :/action/media/message.png:/action/media/message.png Comment :/action/media/comment.png:/action/media/comment.png Wait :/action/media/time.png:/action/media/time.png Blocks WHILE loop :/action/media/while_loop.png:/action/media/while_loop.png ELSE block :/action/media/else_block.png:/action/media/else_block.png FOR loop :/action/media/for_loop.png:/action/media/for_loop.png IF block :/action/media/if_block.png:/action/media/if_block.png CONTINUE :/action/media/continue.png:/action/media/continue.png BREAK :/action/media/break.png:/action/media/break.png Functions CALL function Define FUNCTION :/action/media/function.png:/action/media/function.png RETURN Plot Set window :/action/media/window_size.png:/action/media/window_size.png Clear plot :/action/media/erase.png:/action/media/erase.png Draw point :/action/media/draw_points.png:/action/media/draw_points.png Draw line :/action/media/draw_line.png:/action/media/draw_line.png Plot function :/action/media/plot_function.png:/action/media/plot_function.png :/action/media/python.ico:/action/media/python.ico Code 0 0 900 22 &File Recent files :/action/media/recent.png:/action/media/recent.png &Edit &Help &View Change theme :/action/media/theme.png:/action/media/theme.png Change style :/action/media/style.png:/action/media/style.png &Program &Tools Settings :/action/media/settings.png:/action/media/settings.png :/action/media/language.png:/action/media/language.png Toolbar Qt::ToolButtonTextUnderIcon TopToolBarArea false 0 0 QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable Output 8 310 0 false true true <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> true 0 28 Clear Output :/action/media/log_clear.png:/action/media/log_clear.png 0 28 Save Output :/action/media/log_save.png:/action/media/log_save.png 0 28 Print Output :/action/media/print.png:/action/media/print.png false false false :/action/media/accept.png:/action/media/accept.png 0 0 300 260 QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable Plot 8 :/action/media/new.png:/action/media/new.png New New Ctrl+N :/action/media/open.png:/action/media/open.png Open Open Ctrl+O :/action/media/save.png:/action/media/save.png Save Save Ctrl+S :/action/media/save_as.png:/action/media/save_as.png Save As Save As :/action/media/exit.png:/action/media/exit.png Exit Exit Ctrl+Q Save All Save All Ctrl+Shift+S :/action/media/undo.png:/action/media/undo.png Undo Undo Ctrl+Z :/action/media/redo.png:/action/media/redo.png Redo Redo Ctrl+Y :/action/media/cut.png:/action/media/cut.png Cut Cut Ctrl+X :/action/media/copy.png:/action/media/copy.png Copy Copy Ctrl+C :/action/media/paste.png:/action/media/paste.png Paste Paste Ctrl+V :/action/media/quick_start.png:/action/media/quick_start.png Quick Start Quick Start :/action/media/help.png:/action/media/help.png Help Contents Help Contents F1 :/icon/media/icon_16.png:/icon/media/icon_16.png About Turing About Turing true true :/action/media/toolbar.png:/action/media/toolbar.png Show toolbar Show toolbar :/action/media/examples.png:/action/media/examples.png Examples :/action/media/print.png:/action/media/print.png Print Print Ctrl+P :/action/media/find.png:/action/media/find.png Find Find :/action/media/replace.png:/action/media/replace.png Replace Replace :/action/media/calculator.png:/action/media/calculator.png Calculator Calculator :/action/media/recent_clear.png:/action/media/recent_clear.png Clear Clear :/action/media/select_all.png:/action/media/select_all.png Select All Select All Ctrl+A :/action/media/run.png:/action/media/run.png Run Run F5 :/action/media/step.png:/action/media/step.png Step-by-step Step-by-step F10 true true :/action/media/toolbar_text.png:/action/media/toolbar_text.png Show toolbar text Show toolbar text :/action/media/python.ico:/action/media/python.ico Convert to Python Convert to Python false :/action/media/code.png:/action/media/code.png Convert to pseudocode Convert to pseudocode :/action/media/duplicate_line.png:/action/media/duplicate_line.png Duplicate Line Ctrl+D :/action/media/indent.png:/action/media/indent.png Indent Tab :/action/media/unindent.png:/action/media/unindent.png Unindent Shift+Tab :/action/media/go_to_line.png:/action/media/go_to_line.png Go To Line Ctrl+G :/action/media/find_previous.png:/action/media/find_previous.png Find Previous Shift+F3 :/action/media/find_next.png:/action/media/find_next.png Find Next F3 false :/action/media/stop.png:/action/media/stop.png Stop :/action/media/debug.png:/action/media/debug.png Debug false :/action/media/feedback.png:/action/media/feedback.png Send Feedback :/action/media/zoom_in.png:/action/media/zoom_in.png Zoom in :/action/media/zoom_out.png:/action/media/zoom_out.png Zoom out :/action/media/zoom_reset.png:/action/media/zoom_reset.png Reset zoom Edit theme true Use arrow notation true Load recent articles true Check for updates btnClearOutput btnSaveOutput btnPrintOutput txtInput btnSendInput txtInput returnPressed() btnSendInput click() 232 613 474 613 btnAlgo_ZoomIn clicked() actionZoomIn trigger() 852 137 -1 -1 btnAlgo_ZoomOut clicked() actionZoomOut trigger() 852 167 -1 -1 btnAlgo_ResetZoom clicked() actionResetZoom trigger() 829 190 -1 -1 actionExit triggered() MainWindow close() -1 -1 449 356 Turing-0.11-beta/src/forms/w_inline_code.py000066400000000000000000000072461331472757200207250ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'w_inline_code.ui' # # Created by: PyQt5 UI code generator 5.10.1 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_InlineCodeEditor(object): def setupUi(self, InlineCodeEditor): InlineCodeEditor.setObjectName("InlineCodeEditor") InlineCodeEditor.resize(400, 300) self.verticalLayout = QtWidgets.QVBoxLayout(InlineCodeEditor) self.verticalLayout.setContentsMargins(0, 0, 0, 0) self.verticalLayout.setObjectName("verticalLayout") self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.txtExpr = QtWidgets.QLineEdit(InlineCodeEditor) self.txtExpr.setObjectName("txtExpr") self.horizontalLayout.addWidget(self.txtExpr) self.btnClear = QtWidgets.QPushButton(InlineCodeEditor) self.btnClear.setText("") icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/action/media/clear.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.btnClear.setIcon(icon) self.btnClear.setObjectName("btnClear") self.horizontalLayout.addWidget(self.btnClear) self.btnSubmit = QtWidgets.QPushButton(InlineCodeEditor) self.btnSubmit.setText("") icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/action/media/accept.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.btnSubmit.setIcon(icon1) self.btnSubmit.setDefault(True) self.btnSubmit.setObjectName("btnSubmit") self.horizontalLayout.addWidget(self.btnSubmit) self.verticalLayout.addLayout(self.horizontalLayout) self.verticalLayout_2 = QtWidgets.QVBoxLayout() self.verticalLayout_2.setObjectName("verticalLayout_2") self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.cbxFuncs = QtWidgets.QComboBox(InlineCodeEditor) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.cbxFuncs.sizePolicy().hasHeightForWidth()) self.cbxFuncs.setSizePolicy(sizePolicy) self.cbxFuncs.setObjectName("cbxFuncs") self.horizontalLayout_2.addWidget(self.cbxFuncs) self.txtSearch = QtWidgets.QLineEdit(InlineCodeEditor) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.txtSearch.sizePolicy().hasHeightForWidth()) self.txtSearch.setSizePolicy(sizePolicy) self.txtSearch.setObjectName("txtSearch") self.horizontalLayout_2.addWidget(self.txtSearch) self.horizontalLayout_2.setStretch(0, 1) self.horizontalLayout_2.setStretch(1, 2) self.verticalLayout_2.addLayout(self.horizontalLayout_2) self.lstFuncs = QtWidgets.QListWidget(InlineCodeEditor) self.lstFuncs.setObjectName("lstFuncs") self.verticalLayout_2.addWidget(self.lstFuncs) self.verticalLayout.addLayout(self.verticalLayout_2) self.retranslateUi(InlineCodeEditor) QtCore.QMetaObject.connectSlotsByName(InlineCodeEditor) InlineCodeEditor.setTabOrder(self.txtExpr, self.btnClear) InlineCodeEditor.setTabOrder(self.btnClear, self.btnSubmit) InlineCodeEditor.setTabOrder(self.btnSubmit, self.lstFuncs) def retranslateUi(self, InlineCodeEditor): pass import turing_rc Turing-0.11-beta/src/forms/w_inline_code.ui000066400000000000000000000052421331472757200207040ustar00rootroot00000000000000 InlineCodeEditor 0 0 400 300 0 0 0 0 :/action/media/clear.png:/action/media/clear.png :/action/media/accept.png:/action/media/accept.png true 0 0 0 0 txtExpr btnClear btnSubmit lstFuncs Turing-0.11-beta/src/lang/000077500000000000000000000000001331472757200153375ustar00rootroot00000000000000Turing-0.11-beta/src/lang/.gitignore000066400000000000000000000000431331472757200173240ustar00rootroot00000000000000# files generated by lrelease *.qm Turing-0.11-beta/src/lang/Makefile000066400000000000000000000002761331472757200170040ustar00rootroot00000000000000DESTDIR = LANG_SRC = $(shell ls *.ts) LANG_TARGET = $(patsubst %.ts, %.qm, $(LANG_SRC)) all: $(LANG_TARGET) %.qm: %.ts lrelease $< clean: rm -f *~ install: .PHONY: all clean install Turing-0.11-beta/src/lang/__init__.py000066400000000000000000000000301331472757200174410ustar00rootroot00000000000000# -*- coding: utf-8 -*- Turing-0.11-beta/src/lang/de.ts000066400000000000000000003105711331472757200163060ustar00rootroot00000000000000 AboutWindow About Turing Über Turing Program Programm License Lizenz <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> Algo [k]BREAK[/k] [k]VERLASSEN[/k] [k]CONTINUE[/k] [k]FORTSETZEN[/k] [b]ELSE[/b] [b]SONST[/b] [b]WHILE[/b] [c]{cond}[/c] [b]SOLANGE[/b] [c]{cond}[/c] [b]IF[/b] [c]{cond}[/c] [b]WENN[/b] [c]{cond}[/c] [k]DECLARE[/k] [c]{var}[/c] [k]DEKLARIEREN[/k] [c]{var}[/c] [k]CALL[/k] [c]{code}[/c] [k]AUFRUFEN[/k] [c]{code}[/c] [b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step} [b]FÜR[/b] [c]{var}[/c] [b]VON[/b] [c]{begin}[/c] [b]BIS[/b] [c]{end}[/c] {step} ([b]STEP[/b] [c]{step}[/c]) ([b]SCHRITTWEITE[/b] [c]{step}[/c]) [b]FUNCTION[/b] [c]{func}({args})[/c] [b]FUNKTION[/b] [c]{func}({args})[/c] [k]RETURN[/k] [c]{val}[/c] [k]ZURÜCKGEBEN[/k] [c]{val}[/c] [k]STOP[/k] [c]{val}[/c] [k]UNTERBRECHEN[/k] [c]{val}[/c] [k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k] [k]WARTEN[/k] [c]{val}[/c] [k]SEKUNDEN[/k] [k]CLEAR PLOT[/k] [k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c] [b]PROGRAM[/b] [b]PROGRAMM[/b] [i]empty[/i] [i]frei[/i] Variable {var} = Variable {var} = Array access target must be of array type Index '{idx}' too big for array Assignment target must be either variable or array item BREAK can only be used inside a loop CONTINUE can only be used inside a loop RETURN can only be used inside a function ELSE can only be used after an IF block Unknown statement type: {type} Unbekannter Anweisungstyp: {type} Invalid assignment target (must be either variable or array item): {name} Invalid variable name: {name} Ungültiger Variablenname: {name} Invalid name: {name} Ungültiger Name: {name} The following errors occured while parsing the expression: [k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c] [k]DISPLAY[/k] [c]{val}[/c] {newline} [k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text} [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] AlgoCallStmt Call function Funktion aufrufen <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> Function: Funktion: Arguments: Parameter: AlgoCommentStmt Comment Kommentar <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> Comment: Kommentar: AlgoDefineStmt Define variable Variable definieren <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> Value: Variable: Variable: AlgoDisplayStmt Display value Wert anzeigen <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> Value: Followed by a line break Einen Zeilenumbruch einfügen AlgoForStmt FOR loop FÜR Schleife <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> From: Von: To: Bis: Step: Schrittweite: Variable: Variable: Custom step Benutzerdefiniert Schrittweite AlgoFuncStmt Define function Funktion definieren <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> Function: Funktion: Parameters: Parameter: AlgoGFuncStmt Plot function Plotten einer Funktion <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Start: Step: Schrittweite: Function: Funktion: Variable: Variable: Color: Farbe: End: AlgoGLineStmt Plot line Plotten einer Linie <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> End Y: End X: Start X: Start Y: Color: Farbe: AlgoGPointStmt Plot point Plotten eines Punktes <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Color: Farbe: X: X: Y: Y: AlgoGWindowStmt Set window Einstellen des Grafikfensters Max Y: Max Y: Min Y: Min Y: Min X: Min X: Max X: Max X: Grad X: Grad Y: <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> AlgoIfStmt IF block <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> Condition: AlgoInputStmt Read user input Benutzereingaben lesen <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> Display a message Eine Nachricht anzeigen Message: Variable: Variable: Text AlgoReturnStmt Return Zurückgeben <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> Value: Return a value AlgoSleepStmt Wait Warten <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> Duration: AlgoStopStmt Breakpoint Haltepunkt <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> Message: Display a message Eine Nachricht anzeigen AlgoWhileStmt WHILE loop SOLANGE Schleife <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> Condition: Algobox Unknown color: {color} Unbekannte Farbe: {color} Unknown variable type: {type} Unbekannter Variablentyp: {type} CalcWindow Calculator Rechner Result is None Ergebnis ist None ChangeThemeWindow Edit theme Block: Comment: Kommentar: Keyword: Literal: Window: Shadow: Button: Button Text: Disabled Button Text: Bright Text: Disabled Highlight: Highlight: Highlighted Text: Link: Disabled Highlighted Text: Alternate Base: Base: Window Text: Dark: Disabled Text: Tool Tip Text: Text: Tool Tip Base: Disabled Window Text : Docs Algobox compatibility Algobox Kompatibilität Basic Basisch Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals. Returns the absolute value of {{num}}. Gibt den absoluten Wert von {{num}} zurück. Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex. Gibt die Quadratwurzel aus {{num}} zurück. Wenn {{num}} < 0, ist das Ergebnis komplex. Returns the {{n}}-th root of {{num}}. Gibt die {{n}}-te Wurzel von {{num}} zurück. Returns {{num}} to the {{p}}-th power. Gibt {{num}} auf die {{n}}-te Potenz zurück. Returns //e// to the power of {{num}}. Returns the natural (base-//e//) logarithm of {{num}}. Returns the base-{{b}} logarithm of {{num}}. Returns the base-10 logarithm of {{num}}. Gibt den Dekadischer Logarithmus von {{num}} zurück. Returns the largest integer less than or equal to {{num}}. Gibt die größte ganze Zahl kleiner oder gleich {{num}} zurück. Returns the smallest integer greater than or equal to {{num}}. Gibt die kleinste ganze Zahl größer oder gleich {{num}} zurück. Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise). Gibt das Vorzeichen von {{num}} (-1 wenn negativ, 1 wenn positiv, sonst 0) zurück. Returns the greatest common divisor of {{a}} and {{b}}. Gibt den größten gemeinsamen Teiler von {{a}} und {{b}} zurück. Returns the least common multiple of {{a}} and {{b}}. Gibt das am kleinsten gemeinsame Vielfache von {{a}} und {{b}}} zurück. Returns the argument (or phase) of {{x}}. Gibt das Argument von {{x}}} zurück. Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) and argument (angle). Converts the specified polar coordinates to a complex number. Returns the real part of {{x}}. Gibt den Realteil von {{x}} zurück. Returns the imaginary part of {{x}}. Gibt den Imaginärteil von {{x}} zurück. Returns the complex conjugate of {{x}}. Gibt den Komplex Konjugiert von {{x}} zurück. Returns the gradient of {{func}} at {{x}} (optional precision {{h}}). Returns the derivative of {{func}} (optional precision {{h}}). Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}}). Type conversion Tries to convert {{obj}} to Boolean. Tries to convert {{obj}} to Number. Tries to convert {{obj}} to List. Converts {{obj}} to String. Other constants Geometry Geometrie Returns the perimeter of the circle with the specified {{radius}}. Returns the area of the triangle with the specified side lengths. Returns the area of the triangle with the specified base and height. Returns the area of the square with the specified {{side}} length. Returns the area of the rectangle with side lengths {{s1}} and {{s2}}. Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}. Returns the area of the circle with the specified {{radius}}. Returns the area of the ellipse with radii {{r1}} and {{r2}}. Returns the area of the parallelogram with the specified {{base}} and {{height}}. Returns the area of the circle sector with the specified {{radius}} and {{angle}}. Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}. Returns the surface area of the sphere with the specified {{radius}}. Returns the surface area of the cube with the specified {{side}} length. Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the surface area of the cylinder with the specified {{radius}} and {{height}}. Returns the volume of the regular pyramid with the specified number of {{sides}}, side {{length}} and {{height}}. Returns the volume of the cube with the specified {{side}} length. Returns the volume of the sphere with the specified {{radius}}. Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the volume of the cylinder with the specified {{radius}} and {{height}}. Physics Physik Statistics Statistiken Returns the arithmetic mean of {{args}}. Gibt das arithmetische Mittel von {{args}} zurück. Returns the harmonic mean of {{args}}. Gibt das harmonische Mittel von {{args}} zurück. Returns the sum of all the terms of {{args}}. Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}. Returns the maximum value of {{args}}. Gibt den maximalen Wert von {{args}} zurück. Returns the minimum value of {{args}}. Gibt den minimalen Wert von {{args}} zurück. Returns the Gamma function at {{x}}. Returns the natural logarithm of the absolute value of the Gamma function at {{x}}. Returns the factorial of {{x}}. Gibt die Fakultät von {{x}}} zurück. Returns the error function at {{x}}. Returns the complementary error function at {{x}}. Applies {{func}} to each element of {{lst}} and returns the resulting list. Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value. Returns a slice of the specified list, from index {{start}} (inclusive) to either index {{end}} (exclusive) or the end of the list. Returns the population standard deviation of {{lst}}. Gibt die Standardabweichung von {{lst}} zurück. Returns the population variance of {{lst}}. Gibt die Varianz von {{lst}} zurück. Returns the sample standard deviation of {{lst}}. Returns the sample variance of {{lst}}. Returns a random number between 0 (inclusive) and 1 (exclusive). Gibt eine Zufallszahl zwischen 0 (inklusive) und 1 (exklusiv) zurück. Returns a random integer between {{a}} and {{b}} (inclusive). Gibt eine Zufallszahl zwischen {{a}} und {{b}} (inklusive) zurück. Returns the {{n}}-th Fibonacci number. Returns the {{n}}-th Euler number. Returns the Beta function at {{a}} and {{b}}. Trigonometry Trigonometrie Converts angle {{x}} from radians to degrees. Converts angle {{x}} from degrees to radians. Returns the arc sine of {{x}}. Gibt den Arkussinus von {{x}}} zurück. Returns the arc cosine of {{x}}. Gibt den Arcuskosinus von {{x}}} zurück. Returns the arc tangent of {{x}}. Gibt den Arcustangens von {{x}}} zurück. Returns the arc tangent of {{y}} / {{x}}. Returns the inverse hyperbolic sine of {{x}}. Gibt den umgekehrten hyperbolischen Sinus von {{x}}} zurück. Returns the inverse hyperbolic cosine of {{x}}. Gibt den umgekehrten hyperbolischen Kosinus von {{x}}} zurück. Returns the inverse hyperbolic tangent of {{x}}. Gibt den umgekehrten hyperbolischen Tangens von {{x}}} zurück. Returns the sine of {{x}}. Gibt den Sinus von {{x}}} zurück. Returns the cosine of {{x}}. Gibt den Kosinus von {{x}}} zurück. Returns the tangent of {{x}}. Gibt den Tangens von {{x}}} zurück. Returns the hyperbolic sine of {{x}}. Gibt den hyperbolischen Sinus von {{x}}} zurück. Returns the hyperbolic cosine of {{x}}. Gibt den hyperbolischen Kosinus von {{x}}} zurück. Returns the hyperbolic tangent of {{x}}. Gibt den hyperbolischen Tangens von {{x}}} zurück. Returns the secant of {{x}}. Returns the cosecant of {{x}}. Returns the cotangent of {{x}}. Returns the exsecant of {{x}}. Returns the excosecant of {{x}}. Returns the chord of {{x}}. Returns the hyperbolic secant of {{x}}. Returns the hyperbolic cosecant of {{x}}. Returns the hyperbolic cotangent of {{x}}. Returns the inverse secant of {{x}}. Returns the inverse cosecant of {{x}}. Returns the inverse cotangent of {{x}}. Returns the inverse hyperbolic secant of {{x}}. Returns the inverse hyperbolic cosecant of {{x}}. Returns the inverse hyperbolic cotangent of {{x}}. Returns the cardinal sine of {{x}}. Returns the versed sine of {{x}}. Returns the versed cosine of {{x}}. Returns the coversed sine of {{x}}. Returns the coversed cosine of {{x}}. Returns the haversed sine of {{x}}. Returns the haversed cosine of {{x}}. Returns the hacoversed sine of {{x}}. Returns the hacoversed cosine of {{x}}. Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}). Returns the median of {{lst}}. Returns the mode of {{lst}}. Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}. Returns the number of elements in {{T}}. Swaps the elements of {{t}} at indices {{a}} and {{b}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}. Returns the inverse of the error function at {{y}}. Returns the inverse of the complementary error function at {{y}}. Returns the index of maximum value of {{args}}. Returns the index of minimum value of {{args}}. Returns a random element from {{args}}. Returns the uppercase version of {{s}}. Returns the lowercase version of {{s}}. Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1). Evaluator Cannot find variable or function {name} Parser: Parser: Argument count mismatch (expected {exp}, got {act}) Unverträgliche Anzahl an Argumenten (erwartet {exp}, aktuell {act}) Unknown node type: {type} Unbekannter Knotentyp: {type} Array access target must be of array type Index '{idx}' too big for array Callee is None Angerufener ist None Only lists can be expanded Type mismatch for argument #{idx} '{arg}' (expected {exp}) Typenkonflikt für Parameter #{idx} '{arg}' (erwartet {exp}) Invalid unary operator '{op}' Ungültiger unärer Operator '{op}' Trying to use None Type mismatch: operands have different types ({left} and {right}) left links right rechts Invalid value type for {val} and operator '{op}' and und Operator '{op}' not allowed for value type {type} Trying to multiply List by non-integer ({val}) Trying to divide by zero Invalid binary operator '{op}' for '{left}' and '{right}' Ungültiger binärer Operator '{op}' für '{left}' und '{right}' HelpWindow Help Contents Hilfethemen <h2>Arguments:</h2> <h2>Parameter:</h2> <li>None</li> <li>Keiner</li> default = {deft} Standard = {deft} <h2>Aliases:</h2> <h2>Aliase:</h2> <h2>Functions:</h2> <h2>Funktionen:</h2> InlineCodeDialog Expression editor Ausdrucks-Editor MainWindow Home Start Pseudocode Pseudocode Duplicate Line shorter Delete Line Edit Line Zoom in Vergrößern Zoom out Verkleinern Reset zoom Standardgröße Basic Basisch Breakpoint Haltepunkt Read user INPUT BENUTZEREINGABEN lesen DISPLAY value Comment Kommentar Wait Warten Blocks WHILE loop SOLANGE Schleife ELSE block FOR loop FÜR Schleife IF block CONTINUE BREAK VERLASSEN Functions Funktionen CALL function Funktion AUFRUFEN Define FUNCTION RETURN ZURÜCKGEBEN Plot Set window Grafikfensters Clear plot Draw point Plotten Punktes Draw line Plotten Linie Plot function Plotten Funktion Code &File &Datei &Edit &Bearbeiten &Help &View &Ansicht Change theme Change style &Program &Tools &Werkzeuge Toolbar Symbolleiste Output Clear Output Save Output Print Output New Neu Open Öffnen Save Speichern Save As Speichern unter Exit Beenden Save All Alle speichern Undo Rückgängig Redo Wiederherstellen Cut Ausschneiden Copy Kopieren Paste Einfügen Quick Start Schnellstart Help Contents Hilfethemen About Turing Über Turing Show toolbar Symbolleiste anzeigen Examples Beispiele Print Ausgeben Find Suchen Replace Ersetzen Calculator Rechner Clear Löschen Select All Alles auswählen Run Ausführen Step-by-step Show toolbar text Convert to Python Convert to pseudocode Duplicate Line Indent Zeileneinzug vergrößern Unindent Zeileneinzug verkleinern Go To Line Gehe zu Zeile Find Previous Rückwärts suchen Find Next Weitersuchen Stop Beenden Debug Debuggen Send Feedback Feedback senden Do you really want to exit? All unsaved changes will be lost. Möchten Sie wirklich beenden? Alle nicht gespeicherten Änderungen gehen verloren. Turing - {file} (unsaved) Turing - {file} (geändert) Turing - {file} Turing - {file} Turing - New File Turing - Unbenannt Input: Eingeben: end of output end of output [{time}] Breakpoint: Haltepunkt: program interrupted Syntax error ({type}) at line {line}, offset {off}: Save output Ausgabedaten speichern Text files (*.txt) Textdateien (*.txt) Do you really want to create a new file? All unsaved changes will be lost. Advanced Erweitert Folding Faltung Collapse Reduzieren Expand Erweitern Collapse all Alle reduzieren Expand all Alle erweitern Select word Select extended word Matched select Select line Select Auswahl Regex Reguläre Ausdrücke Match case Groß-/Kleinschreibung beachten Whole words Übereinstimmung mit ganzem Wort In Selection 0 matches 0 Treffer Replace All Alle ersetzen {num} matches {num} Treffer Program file (*.py *.tr *.alg) Python file (*.py) Python Dateien (*.py) Turing program (*.tr) Algobox file (*.alg) Algobox Dateien (*.alg) A new version of Turing is available. Would you like to download it? A modified file has been automatically saved. Would you like to recover it? Zoom Zoom Edit theme Settings Einstellungen Use arrow notation ASSIGN variable Recent files Header Zuletzt verwendet Recent articles Header Recent files Menu Zuletzt verwendet Load recent articles Check for updates You are about to choose an example file from the `examples` directory. To guess what examples are, you can guess from the file names. You are not allowed to write to {}, please choose another file path. Parser OR ODER AND UND NOT NICHT Expected token ({type}) '{val}' Token erwartet ({type}) '{val}' Unexpected token ({type}) '{val}' after end of expression Unexpected EOL Unerwartetes Dateiende Unexpected token ({type}) '{val}' Unerwarteter Token ({type}) '{val}' Themes Default Standard Dark Dark blue Custom Benutzerdefiniert Dark green Dark red Candy Utilities TRUE WAHR FALSE FALSCH Turing-0.11-beta/src/lang/es.ts000066400000000000000000003077351331472757200163350ustar00rootroot00000000000000 AboutWindow About Turing Acerca de Turing Program License Licencia <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> Algo [k]BREAK[/k] [k]CONTINUE[/k] [b]ELSE[/b] [b]WHILE[/b] [c]{cond}[/c] [b]IF[/b] [c]{cond}[/c] [k]DECLARE[/k] [c]{var}[/c] [k]CALL[/k] [c]{code}[/c] [b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step} ([b]STEP[/b] [c]{step}[/c]) [b]FUNCTION[/b] [c]{func}({args})[/c] [k]RETURN[/k] [c]{val}[/c] [k]STOP[/k] [c]{val}[/c] [k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k] [k]CLEAR PLOT[/k] [k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c] [b]PROGRAM[/b] [i]empty[/i] Variable {var} = Array access target must be of array type Index '{idx}' too big for array Assignment target must be either variable or array item BREAK can only be used inside a loop CONTINUE can only be used inside a loop RETURN can only be used inside a function ELSE can only be used after an IF block Unknown statement type: {type} Invalid assignment target (must be either variable or array item): {name} Invalid variable name: {name} Invalid name: {name} The following errors occured while parsing the expression: [k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c] [k]DISPLAY[/k] [c]{val}[/c] {newline} [k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text} [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] AlgoCallStmt Call function Llamada a una función <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> Function: Arguments: AlgoCommentStmt Comment Comentario <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> Comment: AlgoDefineStmt Define variable Definir variable <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> Value: Variable: AlgoDisplayStmt Display value Visualizar valor <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> Value: Followed by a line break Añadir un salto de línea AlgoForStmt FOR loop Bucle PARA <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> From: De: To: A: Step: Variable: Custom step AlgoFuncStmt Define function Definir una función <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> Function: Parameters: AlgoGFuncStmt Plot function Trazar una función <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Start: Step: Function: Variable: Color: Color: End: AlgoGLineStmt Plot line Trazar una línea <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> End Y: End X: Start X: Start Y: Color: Color: AlgoGPointStmt Plot point Trazar un punto <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Color: Color: X: X: Y: Y: AlgoGWindowStmt Set window Configurar la ventana del gráfico Max Y: Máx Y: Min Y: Mín Y: Min X: Mín X: Max X: Máx X: Grad X: Grad Y: <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> AlgoIfStmt IF block <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> Condition: AlgoInputStmt Read user input Leer la entrada del usuario <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> Display a message Mostrar un mensaje Message: Variable: Text AlgoReturnStmt Return <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> Value: Return a value AlgoSleepStmt Wait <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> Duration: AlgoStopStmt Breakpoint Punto de ruptura <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> Message: Display a message Mostrar un mensaje AlgoWhileStmt WHILE loop <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> Condition: Algobox Unknown color: {color} Color desconocido: {color} Unknown variable type: {type} Tipo de variable desconocido: {type} CalcWindow Calculator Calculadora Result is None ChangeThemeWindow Edit theme Block: Comment: Keyword: Literal: Window: Shadow: Button: Button Text: Disabled Button Text: Bright Text: Disabled Highlight: Highlight: Highlighted Text: Link: Disabled Highlighted Text: Alternate Base: Base: Window Text: Dark: Disabled Text: Tool Tip Text: Text: Tool Tip Base: Disabled Window Text : Docs Algobox compatibility Basic Básico Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals. Returns the absolute value of {{num}}. Devuelve el valor absoluto de {{num}}. Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex. Devuelve la raíz cuadrada de {{num}}. Si {{num}} < 0, el resultado será Complejo. Returns the {{n}}-th root of {{num}}. Devuelve la raíz {{n}}-ésima de {{num}}. Returns {{num}} to the {{p}}-th power. Devuelve {{num}} a la {{n}}-ésima potencia. Returns //e// to the power of {{num}}. Returns the natural (base-//e//) logarithm of {{num}}. Returns the base-{{b}} logarithm of {{num}}. Returns the base-10 logarithm of {{num}}. Devuelve el logaritmo decimal de {{num}}. Returns the largest integer less than or equal to {{num}}. Devuelve el número entero más grande menor o igual que {{num}}. Returns the smallest integer greater than or equal to {{num}}. Devuelve el entero más pequeño mayor o igual que {{num}}. Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise). Devuelve el signo de {{num}} (-1 si es negativo, 1 si es positivo, 0 en caso contrario). Returns the greatest common divisor of {{a}} and {{b}}. Devuelve el máximo común divisor de {{a}} y {{b}}. Returns the least common multiple of {{a}} and {{b}}. Devuelve el mínimo común múltiplo de {{a}} y {{b}}. Returns the argument (or phase) of {{x}}. Devuelve el argumento de {{x}}. Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) and argument (angle). Converts the specified polar coordinates to a complex number. Returns the real part of {{x}}. Devuelve la parte real de {{x}}. Returns the imaginary part of {{x}}. Devuelve la parte imaginaria de {{x}}. Returns the complex conjugate of {{x}}. Devuelve el complejo conjugado de {{x}}. Returns the gradient of {{func}} at {{x}} (optional precision {{h}}). Returns the derivative of {{func}} (optional precision {{h}}). Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}}). Type conversion Tries to convert {{obj}} to Boolean. Tries to convert {{obj}} to Number. Tries to convert {{obj}} to List. Converts {{obj}} to String. Other constants Geometry Returns the perimeter of the circle with the specified {{radius}}. Returns the area of the triangle with the specified side lengths. Returns the area of the triangle with the specified base and height. Returns the area of the square with the specified {{side}} length. Returns the area of the rectangle with side lengths {{s1}} and {{s2}}. Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}. Returns the area of the circle with the specified {{radius}}. Returns the area of the ellipse with radii {{r1}} and {{r2}}. Returns the area of the parallelogram with the specified {{base}} and {{height}}. Returns the area of the circle sector with the specified {{radius}} and {{angle}}. Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}. Returns the surface area of the sphere with the specified {{radius}}. Returns the surface area of the cube with the specified {{side}} length. Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the surface area of the cylinder with the specified {{radius}} and {{height}}. Returns the volume of the regular pyramid with the specified number of {{sides}}, side {{length}} and {{height}}. Returns the volume of the cube with the specified {{side}} length. Returns the volume of the sphere with the specified {{radius}}. Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the volume of the cylinder with the specified {{radius}} and {{height}}. Physics Statistics Returns the arithmetic mean of {{args}}. Devuelve la media aritmética de {{args}}. Returns the harmonic mean of {{args}}. Devuelve la media armónica de {{args}}. Returns the sum of all the terms of {{args}}. Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}. Returns the maximum value of {{args}}. Devuelve el valor máximo de {{args}}. Returns the minimum value of {{args}}. Devuelve el valor mínimo de {{args}}. Returns the Gamma function at {{x}}. Returns the natural logarithm of the absolute value of the Gamma function at {{x}}. Returns the factorial of {{x}}. Devuelve el factorial de {{x}}. Returns the error function at {{x}}. Returns the complementary error function at {{x}}. Applies {{func}} to each element of {{lst}} and returns the resulting list. Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value. Returns a slice of the specified list, from index {{start}} (inclusive) to either index {{end}} (exclusive) or the end of the list. Returns the population standard deviation of {{lst}}. Devuelve la desviación estándar de {{lst}}. Returns the population variance of {{lst}}. Devuelve la varianza de {{lst}}. Returns the sample standard deviation of {{lst}}. Returns the sample variance of {{lst}}. Returns a random number between 0 (inclusive) and 1 (exclusive). Devuelve un número aleatorio entre 0 (incluido) y 1 (excluido). Returns a random integer between {{a}} and {{b}} (inclusive). Devuelve un número aleatorio entre {{a}} y {{b}} (incluido). Returns the {{n}}-th Fibonacci number. Returns the {{n}}-th Euler number. Returns the Beta function at {{a}} and {{b}}. Trigonometry Trigonometría Converts angle {{x}} from radians to degrees. Converts angle {{x}} from degrees to radians. Returns the arc sine of {{x}}. Devuelve el arco seno de {{x}}}. Returns the arc cosine of {{x}}. Devuelve el arco coseno de {{x}}}. Returns the arc tangent of {{x}}. Devuelve el arco tangente de {{x}}}. Returns the arc tangent of {{y}} / {{x}}. Returns the inverse hyperbolic sine of {{x}}. Devuelve el seno hiperbólico inverso de {{x}}}. Returns the inverse hyperbolic cosine of {{x}}. Devuelve el coseno hiperbólico inverso de {{x}}}. Returns the inverse hyperbolic tangent of {{x}}. Devuelve el tangente hiperbólico inverso de {{x}}}. Returns the sine of {{x}}. Devuelve el seno de {{x}}}. Returns the cosine of {{x}}. Devuelve el coseno de {{x}}}. Returns the tangent of {{x}}. Devuelve el tangente de {{x}}}. Returns the hyperbolic sine of {{x}}. Devuelve el seno hiperbólico de {{x}}}. Returns the hyperbolic cosine of {{x}}. Devuelve el coseno hiperbólico de {{x}}}. Returns the hyperbolic tangent of {{x}}. Devuelve el tangente hiperbólico de {{x}}}. Returns the secant of {{x}}. Returns the cosecant of {{x}}. Returns the cotangent of {{x}}. Returns the exsecant of {{x}}. Returns the excosecant of {{x}}. Returns the chord of {{x}}. Returns the hyperbolic secant of {{x}}. Returns the hyperbolic cosecant of {{x}}. Returns the hyperbolic cotangent of {{x}}. Returns the inverse secant of {{x}}. Returns the inverse cosecant of {{x}}. Returns the inverse cotangent of {{x}}. Returns the inverse hyperbolic secant of {{x}}. Returns the inverse hyperbolic cosecant of {{x}}. Returns the inverse hyperbolic cotangent of {{x}}. Returns the cardinal sine of {{x}}. Returns the versed sine of {{x}}. Returns the versed cosine of {{x}}. Returns the coversed sine of {{x}}. Returns the coversed cosine of {{x}}. Returns the haversed sine of {{x}}. Returns the haversed cosine of {{x}}. Returns the hacoversed sine of {{x}}. Returns the hacoversed cosine of {{x}}. Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}). Returns the median of {{lst}}. Returns the mode of {{lst}}. Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}. Returns the number of elements in {{T}}. Swaps the elements of {{t}} at indices {{a}} and {{b}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}. Returns the inverse of the error function at {{y}}. Returns the inverse of the complementary error function at {{y}}. Returns the index of maximum value of {{args}}. Returns the index of minimum value of {{args}}. Returns a random element from {{args}}. Returns the uppercase version of {{s}}. Returns the lowercase version of {{s}}. Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1). Evaluator Cannot find variable or function {name} Parser: Argument count mismatch (expected {exp}, got {act}) Unknown node type: {type} Array access target must be of array type Index '{idx}' too big for array Callee is None Only lists can be expanded Type mismatch for argument #{idx} '{arg}' (expected {exp}) Invalid unary operator '{op}' Trying to use None Type mismatch: operands have different types ({left} and {right}) left izquierdo right derecho Invalid value type for {val} and operator '{op}' and Operator '{op}' not allowed for value type {type} Trying to multiply List by non-integer ({val}) Trying to divide by zero Invalid binary operator '{op}' for '{left}' and '{right}' HelpWindow Help Contents Contenido de la Ayuda <h2>Arguments:</h2> <li>None</li> default = {deft} defecto = {deft} <h2>Aliases:</h2> <h2>Functions:</h2> InlineCodeDialog Expression editor MainWindow Home Pseudocode Duplicate Line shorter Delete Line Edit Line Zoom in Aumentar zoom Zoom out Disminuir zoom Reset zoom Restaurar Basic Básico Breakpoint Punto de ruptura Read user INPUT DISPLAY value Comment Comentario Wait Blocks WHILE loop ELSE block FOR loop Bucle PARA IF block CONTINUE BREAK Functions CALL function Define FUNCTION RETURN Plot Set window Configurar la ventana del gráfico Clear plot Draw point Trazar punto Draw line Trazar línea Plot function Trazar función Code &File &Archivo &Edit &Editar &Help &View &Vista Change theme Change style &Program &Tools &Herramientas Toolbar Output Clear Output Save Output Print Output New Nuevo Open Abrir Save Guardar Save As Guardar como Exit Salir Save All Guardar todo Undo Deshacer Redo Rehacer Cut Cortar Copy Copiar Paste Pegar Quick Start Help Contents Ayuda About Turing Acerca de Turing Show toolbar Examples Print Imprimir Find Buscar Replace Reemplazar Calculator Calculadora Clear Select All Seleccionar todo Run Ejecutar Step-by-step Show toolbar text Convert to Python Convert to pseudocode Duplicate Line Indent Aumentar guion de línea Unindent Reducir guion de línea Go To Line Find Previous Buscar anterior Find Next Buscar siguiente Stop Debug Send Feedback Do you really want to exit? All unsaved changes will be lost. Turing - {file} (unsaved) Turing - {file} Turing - {file} Turing - New File Input: end of output end of output [{time}] Breakpoint: program interrupted Syntax error ({type}) at line {line}, offset {off}: Save output Text files (*.txt) Do you really want to create a new file? All unsaved changes will be lost. Advanced Folding Collapse Expand Collapse all Expand all Select word Select extended word Matched select Select line Select Regex Expresión regular Match case Coincidir MAYÚSCULAS/minúsculas Whole words Solo palabras completas In Selection 0 matches Replace All {num} matches Program file (*.py *.tr *.alg) Python file (*.py) Turing program (*.tr) Algobox file (*.alg) A new version of Turing is available. Would you like to download it? A modified file has been automatically saved. Would you like to recover it? Zoom Zoom Edit theme Settings Ajustes Use arrow notation ASSIGN variable Recent files Header Archivos recientes Recent articles Header Recent files Menu Archivos recientes Load recent articles Check for updates You are about to choose an example file from the `examples` directory. To guess what examples are, you can guess from the file names. You are not allowed to write to {}, please choose another file path. Parser OR O AND Y NOT NO Expected token ({type}) '{val}' Token esperado ({type}) '{val}' Unexpected token ({type}) '{val}' after end of expression Unexpected EOL Fin de la linea inesperado Unexpected token ({type}) '{val}' Token inesperado ({type}) '{val}' Themes Default Por defecto Dark Dark blue Custom Personalizado Dark green Dark red Candy Utilities TRUE VERDADERO FALSE FALSO Turing-0.11-beta/src/lang/fr.ts000066400000000000000000003426671331472757200163400ustar00rootroot00000000000000 AboutWindow About Turing À propos de Turing Program Programme License Licence <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:xx-large; font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Canal de développement : </span>{channel} <br /><br />Logiciel libre et multi-plateforme d'aide à l'apprentissage de l'algorithmique et de la programmation informatique. <br /><br /><span style=" font-weight:600;">Copyright &copy; 2018 l'équipe Turing (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ce logiciel est distribué sous la licence MIT et utilise le framework <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Spé ISN &gt; Spé maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Icônes Windows sous licence CC-BY 3.0 - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">&copy; Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Remerciements :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, professeur de physique et d'informatique, dont les cours et la modestie ont été d'une aide incontournable pendant le développement</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, sans qui ce projet n'existerait pas</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">svp mettez nous pas une mauvaise note</p></body></html> Algo Variable {var} = Variable {var} = BREAK can only be used inside a loop SORTIR ne peut être utilisé qu'à l'intérieur d'une boucle CONTINUE can only be used inside a loop CONTINUER ne peut être utilisé qu'à l'intérieur d'une boucle RETURN can only be used inside a function RENVOYER ne peut être utilisé qu'à l'intérieur d'une fonction Unknown statement type: {type} Type d'instruction inconnu : {type} ELSE can only be used after an IF block SINON ne peut être utilisé qu'immédiatement après un bloc SI [k]CONTINUE[/k] [k]CONTINUER[/k] [b]ELSE[/b] [b]SINON[/b] [b]WHILE[/b] [c]{cond}[/c] [b]TANT QUE[/b] [c]{cond}[/c] [b]IF[/b] [c]{cond}[/c] [b]SI[/b] [c]{cond}[/c] [k]RETURN[/k] [c]{val}[/c] [k]RENVOYER[/k] [c]{val}[/c] [k]DECLARE[/k] [c]{var}[/c] [k]DÉCLARER[/k] [c]{var}[/c] [k]CALL[/k] [c]{code}[/c] [k]APPELER[/k] [c]{code}[/c] [b]FUNCTION[/b] [c]{func}({args})[/c] [b]FONCTION[/b] [c]{func}({args})[/c] [b]PROGRAM[/b] [b]ALGORITHME[/b] [k]BREAK[/k] [k]SORTIR[/k] [b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step} [b]POUR[/b] [c]{var}[/c] [b]DE[/b] [c]{begin}[/c] [b]À[/b] [c]{end}[/c] {step} ([b]STEP[/b] [c]{step}[/c]) ([b]PAS[/b] [c]{step}[/c]) [i]empty[/i] [i]vide[/i] The following errors occured while parsing the expression: Les erreurs suivantes sont survenues lors de l'analyse de l'expression : Invalid variable name: {name} Nom de variable invalide : {name} Invalid name: {name} Nom invalide : {name} Array access target must be of array type La cible d'un accès de liste doit être une liste Index '{idx}' too big for array Indice '{idx}' trop grand pour la liste Assignment target must be either variable or array item La cible d'une affectation doit être une variable ou un élément de liste Invalid assignment target (must be either variable or array item): {name} Cible d'affectation invalide (doit être une variable ou un élément de liste) : {name} [k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c] [k]VARIABLE[/k] [c]{var}[/c] [k]PREND LA VALEUR[/b] [c]{value}[/c] [k]CLEAR PLOT[/k] [k]EFFACER GRAPHIQUE[/k] [k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DESSINER LIGNE[/k] [c]{color}[/c] [k]DE[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]À[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]DESSINER POINT[/k] [c]{color}[/c] [k]À[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]DÉFINIR REPÈRE[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]STOP[/k] [c]{val}[/c] [k]STOP[/k] [c]{val}[/c] [k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c] [k]TRACER FONCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]DE[/k] [c]{begin}[/c] [k]À[/k] [c]{end}[/c] [k]PAS[/k] [c]{step}[/c] [k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k] [k]ATTENDRE[/k] [c]{val}[/c] [k]SECONDES[/k] [k]DISPLAY[/k] [c]{val}[/c] {newline} [k]AFFICHER[/k] [c]{val}[/c] {newline} [k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text} [k]SAISIR[/k] [c]{var}[/c] {text} [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] AlgoCallStmt <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> <html><head/><body><p>Appelle la fonction avec les arguments spécifiés.</p><p>Les arguments doivent être séparés par des virgules.</p></body></html> Function: Fonction : Arguments: Arguments : Call function Appeler fonction AlgoCommentStmt Comment Commentaire <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> <html><head/><body><p>Un commentaire n'a absolument aucun effet sur l'exécution du programme.</p><p>Il peut contenir n'importe quoi.</p></body></html> Comment: Commentaire : AlgoDefineStmt <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> <html><head/><body><p>Assigne la valeur spécifiée à la variable.</p><p>Si la variable n'existe pas dans le champ actuel ou dans un quelconque champ parent, elle sera créée dans le champ actuel.</p></body></html> Value: Valeur : Variable: Variable : Define variable Définir variable AlgoDisplayStmt Display value Afficher valeur <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> <html><head/><body><p>Affiche une valeur dans ̊la fenêtre de sortie. </p><p>La valeur peut être de n'importe quel type, elle sera de toute façon convertie en une représentation textuelle appropriée.</p></body></html> Value: Valeur : Followed by a line break Ajouter un retour à la ligne AlgoForStmt <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> <html><head/><body><p>Exécute une instruction pour toutes les valeurs de la variable dans l'intervalle spécifié.</p><p>À chaque itération, la variable est incrémentée du pas spécifié (1 par défaut). </p><p>Les bornes sont inclusives.</p></body></html> From: De : To: À : Step: Pas : Variable: Variable : Custom step Pas personnalisé FOR loop Boucle POUR AlgoFuncStmt <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> <html><head/><body><p>Définit une fonction personnalisée. Les paramètres doivent être séparés par des virgules.</p><p>Une fonction peut renvoyer ou non une valeur, elle peut très bien simplement exécuter des instructions sans donner de résultat. Une telle fonction peut être appelée en utilisant une instruction APPELER.</p></body></html> Function: Fonction : Parameters: Paramètres : Define function Définir fonction AlgoGFuncStmt Plot function Tracer une fonction <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> <html><head/><body><p>Dessine la courbe représentative de la fonction sur l'intervalle spécifié.</p><p>La couleur doit être une chaîne de caractères contenant le nom de la couleur ou la valeur RGB hexadécimale.</p></body></html> Start: Début : Step: Pas : Function: Fonction : Variable: Variable : Color: Couleur : End: Fin : AlgoGLineStmt Plot line Dessiner une ligne <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> <html><head/><body><p>Dessine une ligne avec les coordonnées spécifiées.</p><p>La couleur doit être une chaîne de caractères contenant le nom de la couleur ou la valeur RGB hexadécimale.</p></body></html> End Y: Y arrivée : End X: X arrivée : Start X: X début : Start Y: Y début : Color: Couleur : AlgoGPointStmt Plot point Dessiner un point <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> <html><head/><body><p>Dessine un point aux coordonnées spécifiées.</p><p>La couleur doit être une chaîne de caractères contenant le nom de la couleur ou la valeur RGB hexadécimale.</p></body></html> Color: Couleur : X: X : Y: Y : AlgoGWindowStmt Max Y: Y max : Min Y: Y min : Min X: X min : Max X: X max : Grad X: X grad : Grad Y: Y grad : Set window Définir le repère <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> <html><head/><body><p>Définit la taille du repère et de la fenêtre du graphique. Pour Grad, 0 signifie automatique.</p></body></html> AlgoIfStmt Condition: Condition : <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> <html><head/><body><p>Vérifie si la condition spécifiée est vraie.</p><p>Le bloc sera exécuté uniquement si la condition est vraie, le cas échéant l'exécution du programme continuera à l'instruction suivant le bloc.</p></body></html> IF block Bloc SI AlgoInputStmt Display a message Afficher un message Message: Message : Variable: Variable : <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> <html><head/><body><p>Demande à l'utilisateur de saisir une variable, puis assigne cette valeur à la variable spécifiée.</p><p>Optionnellement, un message peut être affiché. <span style=" font-weight:600;">Attention</span> : le message est une expression, ainsi si vous souhaitez afficher du texte il faut mettre le tout entre guillemets.</p></body></html> Read user input Saisir entrée utilisateur Text Texte AlgoReturnStmt <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> <html><head/><body><p>Sort de la fonction actuelle et renvoie optionnellement une valeur au code appelant.</p></body></html> Value: Valeur : Return a value Renvoyer une valeur Return Renvoyer AlgoSleepStmt Wait Attendre <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> <html><head/><body><p>Suspend l'exécution du programme pendant la durée spécifiée (en <span style=" font-weight:600;">secondes</span>).</p></body></html> Duration: Durée : AlgoStopStmt Breakpoint Point d'arrêt <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> <html><head/><body><p>Suspend l'exécution du programme jusqu'à ce que l'utilisateur clique sur &quot;Exécuter&quot; or &quot;Déboguer&quot;.</p></body></html> Message: Message : Display a message Afficher un message AlgoWhileStmt <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> <html><head/><body><p>Exécute les instructions tant que la condition est vraie.</p><p>Aussitôt que la condition est fausse, l'exécution du programme continue avec l'instruction suivant le bloc.</p></body></html> Condition: Condition : WHILE loop Boucle TANT QUE Algobox Unknown variable type: {type} Type de variable inconnu : {type} Unknown color: {color} Couleur inconnue : {color} CalcWindow Calculator Calculatrice Result is None Résultat nul ChangeThemeWindow Edit theme Modifier le thème Block: Bloc : Comment: Commentaire : Keyword: Mot-clé : Literal: Valeur : Window: Fenêtre : Shadow: Ombre : Button: Bouton : Button Text: Texte de bouton : Disabled Button Text: Texte de bouton désactivé : Bright Text: Texte clair : Disabled Highlight: Surligné désactivé : Highlight: Surligné : Highlighted Text: Texte surligné : Link: Lien : Disabled Highlighted Text: Texte surligné désactivé : Alternate Base: Base alternative : Base: Base : Window Text: Texte de fenêtre : Dark: Sombre : Disabled Text: Texte désactivé : Tool Tip Text: Texte d'infobulle : Text: Texte : Tool Tip Base: Base d'infobulle : Disabled Window Text : Texte de fenêtre désactivé : Docs Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals. Arrondit {{num}} à l'entier le plus proche / (si spécifié) à {{prec}} décimales. Returns the absolute value of {{num}}. Calcule la valeur absolue de {{num}}. Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex. Calcule la racine carrée de {{num}}. Si {{num}} < 0, le résultat sera de type Complex. Returns the {{n}}-th root of {{num}}. Calcule la racine {{n}}-ème de {{num}}. Returns {{num}} to the {{p}}-th power. Calcule {{num}} élevé à la puissance {{p}}.. Returns //e// to the power of {{num}}. Calcule //e// élevé à la puissance {{num}}. Returns the natural (base-//e//) logarithm of {{num}}. Calcule le logarithme naturel/népérien (de base //e//) de {{num}}. Returns the base-{{b}} logarithm of {{num}}. Calcule le logarithme de base {{b}} de {{num}}. Returns the base-10 logarithm of {{num}}. Calcule le logarithme de base 10 de {{num}}. Returns the largest integer less than or equal to {{num}}. Détermine le plus grand entier inférieur ou égal à {{num}}. Returns the smallest integer greater than or equal to {{num}}. Détermine le plus petit entier supérieur ou égal à {{num}}. Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise). Détermine le signe de {{num}} (-1 si négatif, 1 si positif, 0 sinon). Returns the greatest common divisor of {{a}} and {{b}}. Calcule le PGCD (plus grand diviseur commun) de {{a}} et {{b}}. Returns the least common multiple of {{a}} and {{b}}. Calcule le PPCM (plus petit commun multiple) de {{a}} et {{b}}. Returns the argument (or phase) of {{x}}. Calcule l'argument (ou phase) de {{x}}. Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) and argument (angle). Renvoie une liste contenant les coordonnées polaires de {{x}}, respectivement le module (rayon) et l'argument (angle). Converts the specified polar coordinates to a complex number. Convertit les coordonnées polaires spéficiées en nombre complexe. Tries to convert {{obj}} to Boolean. Convertit {{obj}} en Boolean. Tries to convert {{obj}} to Number. Convertit {{obj}} en Number. Tries to convert {{obj}} to List. Convertit {{obj}} en List. Converts {{obj}} to String. Convertit {{obj}} en String. Returns the perimeter of the circle with the specified {{radius}}. Calcule le périmètre du cercle de rayon {{radius}}. Returns the area of the triangle with the specified side lengths. Calcule l'aire du triangle ayant les longueurs de côtés spécifiées. Returns the area of the triangle with the specified base and height. Calcule l'aire du triangle ayant une base de longueur {{base}} et une hauteur de longueur {{height}}. Returns the area of the square with the specified {{side}} length. Calcule l'aire du carré de côté {{side}}. Returns the area of the rectangle with side lengths {{s1}} and {{s2}}. Calcule l'aire du rectangle de côtés {{s1}} et {{s2}}. Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}. Calcule l'aire du trapèze de côtés {{a}} et {{b}} et de longueur {{height}}. Returns the area of the circle with the specified {{radius}}. Calcule l'aire du disque de rayon {{radius}}. Returns the area of the ellipse with radii {{r1}} and {{r2}}. Calcule l'aire de l'ellipse ayant pour rayons {{r1}} et {{r2}}. Returns the area of the parallelogram with the specified {{base}} and {{height}}. Calcule l'aire du parallélogramme ayant une base de longueur {{base}} et une hauteur de longueur {{height}}. Returns the area of the circle sector with the specified {{radius}} and {{angle}}. Calcule l'aire du secteur de disque de rayon {{radius}} et d'angle {{angle}}. Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}. Calcule l'aire du polygone régulier à {{sides}} côtés de longueur individuelle {{length}}. Returns the surface area of the sphere with the specified {{radius}}. Calcule la surface de la sphère de rayon {{radius}}. Returns the surface area of the cube with the specified {{side}} length. Calcule la surface du cube de côté {{side}}. Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Calcule la surface du parallélogramme de côtés {{a}}, {{b}} et {{c}}. Returns the surface area of the cylinder with the specified {{radius}} and {{height}}. Calcule la surface du cylindre de rayon {{radius}} et de hauteur {{height}}. Returns the volume of the regular pyramid with the specified number of {{sides}}, side {{length}} and {{height}}. Calcule le volume de la pyramide régulière à {{sides}} côtés de longueur individuelle {{length}} et de hauteur {{height}}. Returns the volume of the cube with the specified {{side}} length. Calcule le volume du cube de côté {{side}}. Returns the volume of the sphere with the specified {{radius}}. Calcule le volume de la sphère de rayon {{radius}}. Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Calcule le volume du parallélogramme de côtés {{a}}, {{b}} et {{c}}. Returns the volume of the cylinder with the specified {{radius}} and {{height}}. Calcule le volume du cylindre de rayon {{radius}} et de hauteur {{height}}. Returns the arithmetic mean of {{args}}. Calcule la moyenne arithmétique de {{args}}. Returns the sum of all the terms of {{args}}. Calcule la somme de tous les éléments de {{args}}. Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}. Calcule le coefficient binomial de {{k}} parmi {{n}}. Returns the maximum value of {{args}}. Détermine la valeur maximale de {{args}}. Returns the minimum value of {{args}}. Détermine la valeur minimale de {{args}}. Returns the Gamma function at {{x}}. Calcule la fonction Gamma à {{x}}. Returns the factorial of {{x}}. Calcule la factorielle de {{x}}. Returns the error function at {{x}}. Calcule la fonction d'erreur à {{x}}. Returns the complementary error function at {{x}}. Calcule la fonction d'erreur complémentaire à {{x}}. Applies {{func}} to each element of {{lst}} and returns the resulting list. Applique {{func}} à chaque élément de {{lst}} et renvoie la liste résultante. Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value. Renvoie une liste contenant tous les éléments de {{lst}} pour lesquels {{func}} est vraie. Returns a slice of the specified list, from index {{start}} (inclusive) to either index {{end}} (exclusive) or the end of the list. Renvoie une tranche de {{lst}} de l'indice {{start}} (inclus), à l'indice {{end}} (exclus) si spécifié ou à la fin de la liste. Returns the population standard deviation of {{lst}}. Calcule l'écart-type de {{lst}}. Returns the population variance of {{lst}}. Calcule la variance de {{lst}}. Returns the sample standard deviation of {{lst}}. Calcule l'écart-type de l'échantillon {{lst}}. Returns the sample variance of {{lst}}. Calcule la variance de l'échantillon {{lst}}. Returns a random number between 0 (inclusive) and 1 (exclusive). Renvoie un nombre aléatoire compris entre 0 (inclus) et 1 (exclus). Converts angle {{x}} from radians to degrees. Convertit l'angle {{x}} des radians vers les degrés. Converts angle {{x}} from degrees to radians. Convertit l'angle {{x}} des degrés vers les radians. Returns the arc sine of {{x}}. Calcule l'arc sinus de {{x}}. Returns the arc cosine of {{x}}. Calcule l'arc cosinus de {{x}}. Returns the arc tangent of {{x}}. Calcule l'arc tangente de {{x}}. Returns the arc tangent of {{y}} / {{x}}. Calcule l'arc tangente de {{y}} / {{x}}. Returns the inverse hyperbolic sine of {{x}}. Calcule l'arc sinus hyperbolique de {{x}}. Returns the inverse hyperbolic cosine of {{x}}. Calcule l'arc cosinus hyperbolique de {{x}}. Returns the inverse hyperbolic tangent of {{x}}. Calcule l'arc tangente hyperbolique de {{x}}. Returns the sine of {{x}}. Calcule le sinus de {{x}}. Returns the cosine of {{x}}. Calcule le cosinus de {{x}}. Returns the tangent of {{x}}. Calcule la tangente de {{x}}. Returns the hyperbolic sine of {{x}}. Calcule le sinus hyperbolique de {{x}}. Returns the hyperbolic cosine of {{x}}. Calcule le cosinus hyperbolique de {{x}}. Returns the hyperbolic tangent of {{x}}. Calcule la tangente hyperbolique de {{x}}. Returns the secant of {{x}}. Calcule la sécante de {{x}}. Returns the cosecant of {{x}}. Calcule la cosécante de {{x}}. Returns the cotangent of {{x}}. Calcule la cotangente de {{x}}. Returns the exsecant of {{x}}. Calcule l'exsécante de {{x}}. Returns the excosecant of {{x}}. Calcule l'excosécante de {{x}}. Returns the chord of {{x}}. Calcule la corde de {{x}}. Returns the hyperbolic secant of {{x}}. Calcule la sécante hyperbolique de {{x}}. Returns the hyperbolic cosecant of {{x}}. Calcule la cosécante hyperbolique de {{x}}. Returns the hyperbolic cotangent of {{x}}. Calcule la cotangente hyperbolique de {{x}}. Returns the inverse secant of {{x}}. Calcule l'arc sécante de {{x}}. Returns the inverse cosecant of {{x}}. Calcule l'arc cosécante de {{x}}. Returns the inverse cotangent of {{x}}. Calcule l'arc tangente de {{x}}. Returns the inverse hyperbolic secant of {{x}}. Calcule l'arc sécante hyperbolique de {{x}}. Returns the inverse hyperbolic cosecant of {{x}}. Calcule l'arc cosécante hyperbolique de {{x}}. Returns the inverse hyperbolic cotangent of {{x}}. Calcule l'arc cotangente hyperbolique de {{x}}. Returns the cardinal sine of {{x}}. Calcule le sinus cardinal de {{x}}. Returns the versed sine of {{x}}. Calcule le sinus verse de {{x}}. Returns the versed cosine of {{x}}. Calcule le cosinus verse de {{x}}. Returns the coversed sine of {{x}}. Calcule le sinus coverse de {{x}}. Returns the coversed cosine of {{x}}. Calcule le cosinus coverse de {{x}}. Returns the haversed sine of {{x}}. Calcule l'haversine de {{x}}. Returns the haversed cosine of {{x}}. Calcule l'havercosine de {{x}}. Returns the hacoversed sine of {{x}}. Calcule l'hacoversine de {{x}}. Returns the hacoversed cosine of {{x}}. Calcule l'hacovercosine de {{x}}. Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}). Calcule l'hypoténuse / la norme euclidienne du vecteur ({{x}}, {{y}}). Basic Basique Type conversion Conversion de type Other constants Autres constantes Geometry Géométrie Physics Physique Statistics Statistiques Trigonometry Trigonométrie Returns the harmonic mean of {{args}}. Calcule la moyenne harmonique de {{args}}. Returns the real part of {{x}}. Renvoie la partie réelle de {{x}}. Returns the imaginary part of {{x}}. Renvoie la partie imaginaire de {{x}}. Returns the complex conjugate of {{x}}. Calcule le conjugué de {{x}}. Returns the {{n}}-th Fibonacci number. Calcule le {{n}}-ième terme de la suite de Fibonacci. Returns the gradient of {{func}} at {{x}} (optional precision {{h}}). Calcule le nombre dérivé de {{func}} à {{x}} (facultatif : précision {{h}}). Returns the derivative of {{func}} (optional precision {{h}}). Détermine la dérivée de {{func}} (facultatif : précision {{h}}). Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}}). Calcule l'intégrale de {{a}} à {{b}} de {{func}} (facultatif : nombre d'étapes {{steps}}). Returns the natural logarithm of the absolute value of the Gamma function at {{x}}. Calcule le logarithme naturel de la valeur absolue de la fonction Gamma à {{x}}. Returns the {{n}}-th Euler number. Calcule le {{n}}-ième nombre d'Euler. Returns the Beta function at {{a}} and {{b}}. Calcule la fonction Beta à {{a}} et {{b}}. Algobox compatibility Compatibilité Algobox Returns a random integer between {{a}} and {{b}} (inclusive). Renvoie un nombre entier aléatoire compris entre {{a}} et {{b}} (inclus). Returns the median of {{lst}}. Renvoie la médiane de {{lst}}. Returns the mode of {{lst}}. Renvoie le mode (élement le plus fréquent) de {{lst}}. Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}. Renvoie la probabilité de {{k}} avec la loi binomiale de paramètres {{n}} et {{p}}. Returns the number of elements in {{T}}. Renvoie le nombre d'élements de {{T}}. Swaps the elements of {{t}} at indices {{a}} and {{b}}. Échange les éléments de {{t}} aux positions {{a}} et {{b}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}. Renvoie une liste contenant tous les nombres de {{start}} (inclus) à {{end}} (exclus) avec un pas de {{step}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}. Renvoie une liste contenant tous les nombres de {{start}} (inclus) à {{end}} (inclus) avec un pas de {{step}}. Returns the inverse of the error function at {{y}}. Calcule la fonction d'erreur inverse à {{y}}. Returns the inverse of the complementary error function at {{y}}. Calcule la fonction d'erreur complémentaire inverse à {{y}}. Returns the index of maximum value of {{args}}. Renvoie la position de la valeur maximale de {{args}}. Returns the index of minimum value of {{args}}. Renvoie la position de la valeur minimale de {{args}}. Returns a random element from {{args}}. Renvoie un élément au hasard de {{args}}. Returns the uppercase version of {{s}}. Renvoie une copie en majuscules de {{s}}. Returns the lowercase version of {{s}}. Renvoie une copie en minuscules de {{s}}. Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Renvoie la probabilité de {{x}} avec la loi normale de paramètres µ={{mu}} et σ={{sigma}}. Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Renvoie la probabilité de {{x}} avec la loi normale centrée réduite (µ=0 et σ=1). Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Renvoie la probabilité cumulative de {{x}} avec la loi normale de paramètres µ={{mu}} et σ={{sigma}}. Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Renvoie la probabilité cumulative de {{x}} avec la loi normale centrée réduite (µ=0 et σ=1). Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Renvoie le nombre ayant pour probabilité cumulative {{p}} avec la loi normale de paramètres µ={{mu}} et σ={{sigma}}. Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1). Renvoie le nombre ayant pour probabilité cumulative {{p}} avec la loi normale centrée réduite (µ=0 et σ=1). Evaluator Parser: Analyseur : Argument count mismatch (expected {exp}, got {act}) Nombre d'arguments invalides (attendu : {exp}, reçu : {act}) Cannot find variable or function {name} Impossible de trouver la variable ou fonction {name} Callee is None La fonction appelée est None Only lists can be expanded Seules les listes peuvent être étendues Index '{idx}' too big for array Indice '{idx}' trop grand pour la liste Unknown node type: {type} Type de nœud inconnu : {type} Invalid unary operator '{op}' Opérateur unaire invalide '{op}' Trying to use None Opération sur None impossible Type mismatch: operands have different types ({left} and {right}) Types incompatibles : les opérandes ont des types différents ({left} et {right}) Invalid value type for {val} and operator '{op}' Type de valeur invalide pour {val} et l'opérateur '{op}' and et Operator '{op}' not allowed for value type {type} Opérateur '{op}' non autorisé pour le type de valeur {type} Trying to divide by zero Tentative de division par zéro Invalid binary operator '{op}' for '{left}' and '{right}' Opérateur binaire '{op}' invalide pour '{left}' et '{right}' left gauche right droite Trying to multiply List by non-integer ({val}) Tentative de multiplication d'une List par un non-entier ({val}) Type mismatch for argument #{idx} '{arg}' (expected {exp}) Type incorrect pour l'argument #{idx} '{arg}' (attendu : {exp}) Array access target must be of array type La cible d'un accès de liste doit être une liste HelpWindow Help Contents Bibliothèque <h2>Arguments:</h2> <h2>Arguments :</h2> <li>None</li> <li>Aucun</li> default = {deft} par défaut = {deft} <h2>Aliases:</h2> <h2>Alias :</h2> <h2>Functions:</h2> <h2>Fonctions :</h2> InlineCodeDialog Expression editor Éditeur d'expression MainWindow Home Accueil &File &Fichier &Edit &Édition &Help &Aide &View &Affichage &Program &Programme &Tools O&utils Output Sortie New Nouveau Open Ouvrir Save Enregistrer Save As Enregistrer sous Exit Quitter Save All Enregistrer tout Undo Annuler Redo Rétablir Cut Couper Copy Copier Paste Coller Quick Start Tutoriel rapide Help Contents Bibliothèque About Turing À propos de Turing Show toolbar Barre d'outils Examples Exemples Print Imprimer Find Rechercher Replace Remplacer Calculator Calculatrice Clear Effacer Select All Sélectionner tout Run Exécuter Step-by-step Pas-à-pas Show toolbar text Texte des boutons Convert to Python Convertir en Python Convert to pseudocode Convertir en pseudocode Do you really want to exit? All unsaved changes will be lost. Voulez-vous vraiment quitter ? Toutes les modifications non sauvegardées seront perdues. Toolbar Barre d'outils Pseudocode Algorithme Code Code end of output fin de l'exécution Input: Saisir : Syntax error ({type}) at line {line}, offset {off}: Erreur de syntaxe ({type}) à la ligne {line}, caractère {off} : Indent Augmenter l'indentation Unindent Réduire l'indentation Duplicate Line Dupliquer la ligne Go To Line Aller à la ligne Find Previous Rechercher précédent Find Next Rechercher suivant Change theme Changer de thème Change style Changer de style Clear Output Effacer la sortie Save Output Enregistrer la sortie Print Output Imprimer la sortie FOR loop Boucle POUR WHILE loop Boucle TANT QUE IF block Bloc SI ELSE block Bloc SINON BREAK SORTIR CONTINUE CONTINUER Stop Arrêter Comment Commentaire program interrupted algorithme interrompu end of output [{time}] fin de l'exécution [{time}] Python file (*.py) Fichier Python (*.py) Turing program (*.tr) Algorithme Turing (*.tr) Algobox file (*.alg) Algorithme Algobox (*.alg) Define FUNCTION Définir FONCTION CALL function APPELER fonction RETURN RENVOYER Read user INPUT SAISIR une entrée DISPLAY value AFFICHER valeur Turing - New File Turing - Sans titre Turing - {file} (unsaved) Turing - {file} (modifié) Turing - {file} Turing - {file} Debug Déboguer Program file (*.py *.tr *.alg) Fichier de programme (*.py *.tr *.alg) Clear plot Effacer graphique Draw point Dessiner point Draw line Dessiner ligne Plot Graphique Set window Définir le repère Save output Enregistrer la sortie Text files (*.txt) Fichiers texte (*.txt) Do you really want to create a new file? All unsaved changes will be lost. Voulez-vous vraiment créer un nouveau fichier ? Toutes les modifications non sauvegardées seront perdues. Send Feedback Un commentaire ? A new version of Turing is available. Would you like to download it? Une nouvelle version de Turing est disponible. Voulez-vous la télécharger ? Breakpoint Point d'arrêt Breakpoint: Point d'arrêt : Zoom in Agrandir Zoom out Réduire Reset zoom Par défaut Advanced Avancé Delete Line Supprimer Edit Line Modifier Duplicate Line shorter Dupliquer Folding Plan Collapse Réduire Expand Étendre Expand all Tout étendre Select word Sélectionner le mot Select extended word Sélectionner le mot étendu Matched select Sélectionner le résultat Select line Sélectionner la ligne Select Sélection Collapse all Tout réduire Regex Expression régulière Match case Respecter la casse Whole words Mot entier In Selection Dans la sélection 0 matches 0 correspondances Replace All Remplacer tout Basic Basique Blocks Blocs Functions Fonctions Plot function Tracer fonction Wait Attendre {num} matches {num} correspondances A modified file has been automatically saved. Would you like to recover it? Un fichier modifié a été enregistré automatiquement. Souhaitez-vous le récupérer ? Zoom Zoom Edit theme Modifier le thème Settings Options Use arrow notation Utiliser la notation fléchée ASSIGN variable AFFECTER variable Recent files Header Fichiers récents Recent articles Header Articles récents Recent files Menu Récents Load recent articles Charger les articles récents Check for updates Vérifier les mises à jour You are about to choose an example file from the `examples` directory. To guess what examples are, you can guess from the file names. Vous allez choisir un fichier d'exemple depuis le répertoire « examples ». Pour devinece qu'il y a dans les fichiers, fiez-vous à leurs noms. You are not allowed to write to {}, please choose another file path. Vous n'êtes pas autorisé à écrire dans {}, veuillez choisir un chemin vers un autre fichier. Parser Expected token ({type}) '{val}' Jeton attendu ({type}) '{val}' Unexpected EOL Fin de ligne inattendue Unexpected token ({type}) '{val}' Jeton ({type}) '{val}' inattendu OR OU AND ET NOT NON Unexpected token ({type}) '{val}' after end of expression Jeton ({type}) '{val}' inattendu après la fin de l'expression Themes Default Par défaut Dark Sombre Dark blue Bleu foncé Custom Personnalisé Dark green Vert foncé Dark red Rouge foncé Candy Candy Utilities TRUE VRAI FALSE FAUX Turing-0.11-beta/src/lang/it.ts000066400000000000000000003076101331472757200163320ustar00rootroot00000000000000 AboutWindow About Turing Program License <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> Algo [k]BREAK[/k] [k]CONTINUE[/k] [b]ELSE[/b] [b]WHILE[/b] [c]{cond}[/c] [b]IF[/b] [c]{cond}[/c] [k]DECLARE[/k] [c]{var}[/c] [k]CALL[/k] [c]{code}[/c] [b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step} ([b]STEP[/b] [c]{step}[/c]) [b]FUNCTION[/b] [c]{func}({args})[/c] [k]RETURN[/k] [c]{val}[/c] [k]STOP[/k] [c]{val}[/c] [k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k] [k]CLEAR PLOT[/k] [k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c] [b]PROGRAM[/b] [i]empty[/i] Variable {var} = Array access target must be of array type Index '{idx}' too big for array Assignment target must be either variable or array item BREAK can only be used inside a loop CONTINUE can only be used inside a loop RETURN can only be used inside a function ELSE can only be used after an IF block Unknown statement type: {type} Invalid assignment target (must be either variable or array item): {name} Invalid variable name: {name} Invalid name: {name} The following errors occured while parsing the expression: [k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c] [k]DISPLAY[/k] [c]{val}[/c] {newline} [k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text} [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] AlgoCallStmt Call function Chiamare una funzione <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> Function: Arguments: AlgoCommentStmt Comment Commenta <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> Comment: AlgoDefineStmt Define variable Definire la variabile <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> Value: Variable: AlgoDisplayStmt Display value Visualizzazione valore <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> Value: Followed by a line break Aggiungere un'interruzione di linea AlgoForStmt FOR loop <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> From: To: Step: Variable: Custom step AlgoFuncStmt Define function Definire una funzione <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> Function: Parameters: AlgoGFuncStmt Plot function Tracciare una funzione <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Start: Step: Function: Variable: Color: Colore: End: AlgoGLineStmt Plot line Tracciare una linea <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> End Y: End X: Start X: Start Y: Color: Colore: AlgoGPointStmt Plot point Tracciare un punto <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Color: Colore: X: Y: Y: Y: AlgoGWindowStmt Set window Impostare la finestra del grafico Max Y: Max Y: Min Y: Min Y: Min X: Min Y: Max X: Max X: Grad X: Grad Y: <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> AlgoIfStmt IF block <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> Condition: AlgoInputStmt Read user input Lettura dei dati immessi dall'utente <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> Display a message Visualizzare un messaggio Message: Variable: Text AlgoReturnStmt Return <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> Value: Return a value AlgoSleepStmt Wait <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> Duration: AlgoStopStmt Breakpoint Punto di interruzione <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> Message: Display a message Visualizzare un messaggio AlgoWhileStmt WHILE loop <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> Condition: Algobox Unknown color: {color} Colore sconosciuto: {color} Unknown variable type: {type} Tipo di variabile sconosciuto: {type} CalcWindow Calculator Calcolatrice Result is None ChangeThemeWindow Edit theme Block: Comment: Keyword: Literal: Window: Shadow: Button: Button Text: Disabled Button Text: Bright Text: Disabled Highlight: Highlight: Highlighted Text: Link: Disabled Highlighted Text: Alternate Base: Base: Window Text: Dark: Disabled Text: Tool Tip Text: Text: Tool Tip Base: Disabled Window Text : Docs Algobox compatibility Basic Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals. Returns the absolute value of {{num}}. Riporta il valore assoluto di{{num}}. Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex. Riporta la radice quadrata di {{num}}. Se {{num}} < 0, il risultato sarà Complesso. Returns the {{n}}-th root of {{num}}. Riporta la radice {{n}}-esima di {{num}}. Returns {{num}} to the {{p}}-th power. Riporta {{num}} al potere {{p}}-esimo. Returns //e// to the power of {{num}}. Returns the natural (base-//e//) logarithm of {{num}}. Returns the base-{{b}} logarithm of {{num}}. Returns the base-10 logarithm of {{num}}. Riporta il logaritmo decimale di {{num}}. Returns the largest integer less than or equal to {{num}}. Riporta l'intero più grande meno grande o uguale a {{num}}. Returns the smallest integer greater than or equal to {{num}}. Riporta l'intero più piccolo maggiore o uguale a {{num}}. Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise). Riporta il segno di {{{num}} (-1 se negativo, 1 se positivo, 0 altrimenti). Returns the greatest common divisor of {{a}} and {{b}}. Restituisce il massimo comune divisore di {{a}} e {b}}. Returns the least common multiple of {{a}} and {{b}}. Restituisce il minimo comune multiplo di {{a}} e {{b}}. Returns the argument (or phase) of {{x}}. Riporta l'argomento di {{x}}. Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) and argument (angle). Converts the specified polar coordinates to a complex number. Returns the real part of {{x}}. Riporta la parte reale di {{x}}. Returns the imaginary part of {{x}}. Riporta la parte immaginaria di {{x}}. Returns the complex conjugate of {{x}}. Riporta il complesso coniugato di {{x}}. Returns the gradient of {{func}} at {{x}} (optional precision {{h}}). Returns the derivative of {{func}} (optional precision {{h}}). Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}}). Type conversion Tries to convert {{obj}} to Boolean. Tries to convert {{obj}} to Number. Tries to convert {{obj}} to List. Converts {{obj}} to String. Other constants Geometry Returns the perimeter of the circle with the specified {{radius}}. Returns the area of the triangle with the specified side lengths. Returns the area of the triangle with the specified base and height. Returns the area of the square with the specified {{side}} length. Returns the area of the rectangle with side lengths {{s1}} and {{s2}}. Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}. Returns the area of the circle with the specified {{radius}}. Returns the area of the ellipse with radii {{r1}} and {{r2}}. Returns the area of the parallelogram with the specified {{base}} and {{height}}. Returns the area of the circle sector with the specified {{radius}} and {{angle}}. Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}. Returns the surface area of the sphere with the specified {{radius}}. Returns the surface area of the cube with the specified {{side}} length. Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the surface area of the cylinder with the specified {{radius}} and {{height}}. Returns the volume of the regular pyramid with the specified number of {{sides}}, side {{length}} and {{height}}. Returns the volume of the cube with the specified {{side}} length. Returns the volume of the sphere with the specified {{radius}}. Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the volume of the cylinder with the specified {{radius}} and {{height}}. Physics Statistics Returns the arithmetic mean of {{args}}. Riporta la media aritmetica di {{args}}. Returns the harmonic mean of {{args}}. Riporta la media armonica di {{args}}. Returns the sum of all the terms of {{args}}. Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}. Returns the maximum value of {{args}}. Riporta il valore massimo di {{args}}. Returns the minimum value of {{args}}. Riporta il valore minimo di {{args}}. Returns the Gamma function at {{x}}. Returns the natural logarithm of the absolute value of the Gamma function at {{x}}. Returns the factorial of {{x}}. Riporta il fattoriale di {{x}}. Returns the error function at {{x}}. Returns the complementary error function at {{x}}. Applies {{func}} to each element of {{lst}} and returns the resulting list. Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value. Returns a slice of the specified list, from index {{start}} (inclusive) to either index {{end}} (exclusive) or the end of the list. Returns the population standard deviation of {{lst}}. Riporta la deviazione standard di {{lst}}. Returns the population variance of {{lst}}. Riporta la varianza di {{primo}}. Returns the sample standard deviation of {{lst}}. Returns the sample variance of {{lst}}. Returns a random number between 0 (inclusive) and 1 (exclusive). Restituisce un numero casuale compreso tra 0 (incluso) e 1 (escluso). Returns a random integer between {{a}} and {{b}} (inclusive). Restituisce un numero casuale compreso tra {{a}} e {{b}} (incluso). Returns the {{n}}-th Fibonacci number. Returns the {{n}}-th Euler number. Returns the Beta function at {{a}} and {{b}}. Trigonometry Trigonometria Converts angle {{x}} from radians to degrees. Converts angle {{x}} from degrees to radians. Returns the arc sine of {{x}}. Returns the arc cosine of {{x}}. Returns the arc tangent of {{x}}. Returns the arc tangent of {{y}} / {{x}}. Returns the inverse hyperbolic sine of {{x}}. Returns the inverse hyperbolic cosine of {{x}}. Returns the inverse hyperbolic tangent of {{x}}. Returns the sine of {{x}}. Returns the cosine of {{x}}. Returns the tangent of {{x}}. Returns the hyperbolic sine of {{x}}. Returns the hyperbolic cosine of {{x}}. Returns the hyperbolic tangent of {{x}}. Returns the secant of {{x}}. Returns the cosecant of {{x}}. Returns the cotangent of {{x}}. Returns the exsecant of {{x}}. Returns the excosecant of {{x}}. Returns the chord of {{x}}. Returns the hyperbolic secant of {{x}}. Returns the hyperbolic cosecant of {{x}}. Returns the hyperbolic cotangent of {{x}}. Returns the inverse secant of {{x}}. Returns the inverse cosecant of {{x}}. Returns the inverse cotangent of {{x}}. Returns the inverse hyperbolic secant of {{x}}. Returns the inverse hyperbolic cosecant of {{x}}. Returns the inverse hyperbolic cotangent of {{x}}. Returns the cardinal sine of {{x}}. Returns the versed sine of {{x}}. Returns the versed cosine of {{x}}. Returns the coversed sine of {{x}}. Returns the coversed cosine of {{x}}. Returns the haversed sine of {{x}}. Returns the haversed cosine of {{x}}. Returns the hacoversed sine of {{x}}. Returns the hacoversed cosine of {{x}}. Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}). Returns the median of {{lst}}. Returns the mode of {{lst}}. Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}. Returns the number of elements in {{T}}. Swaps the elements of {{t}} at indices {{a}} and {{b}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}. Returns the inverse of the error function at {{y}}. Returns the inverse of the complementary error function at {{y}}. Returns the index of maximum value of {{args}}. Returns the index of minimum value of {{args}}. Returns a random element from {{args}}. Returns the uppercase version of {{s}}. Returns the lowercase version of {{s}}. Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1). Evaluator Cannot find variable or function {name} Parser: Argument count mismatch (expected {exp}, got {act}) Unknown node type: {type} Array access target must be of array type Index '{idx}' too big for array Callee is None Only lists can be expanded Type mismatch for argument #{idx} '{arg}' (expected {exp}) Invalid unary operator '{op}' Trying to use None Type mismatch: operands have different types ({left} and {right}) left right Invalid value type for {val} and operator '{op}' and Operator '{op}' not allowed for value type {type} Trying to multiply List by non-integer ({val}) Trying to divide by zero Invalid binary operator '{op}' for '{left}' and '{right}' HelpWindow Help Contents Sommario Guida <h2>Arguments:</h2> <li>None</li> default = {deft} difetto = {deft} <h2>Aliases:</h2> <h2>Functions:</h2> InlineCodeDialog Expression editor MainWindow Home Pseudocode Duplicate Line shorter Delete Line Edit Line Zoom in Ingrandisci testo Zoom out Riduci testo Reset zoom Reimposta Basic Breakpoint Punto di interruzione Read user INPUT DISPLAY value Comment Commenta Wait Blocks WHILE loop ELSE block FOR loop IF block CONTINUE BREAK Functions CALL function Define FUNCTION RETURN Plot Set window Impostare la finestra del grafico Clear plot Draw point Tracciare punto Draw line Tracciare linea Plot function Tracciare funzione Code &File &File &Edit &Modifica &Help &View &Visualizza Change theme Change style &Program &Tools &Strumenti Toolbar Output Clear Output Save Output Print Output New Nuovo Open Apri Save Salva Save As Salva come Exit Esci Save All Salva tutto Undo Annulla Redo Ripristina Cut Taglia Copy Copia Paste Incolla Quick Start Help Contents Sommario Guida About Turing Show toolbar Examples Print Stampa Find Trova Replace Sostituisci Calculator Calcolatrice Clear Select All Seleziona tutto Run Esegui Step-by-step Show toolbar text Convert to Python Convert to pseudocode Duplicate Line Indent Inserisci tabulazione Unindent Rimuovi tabulazione Go To Line Find Previous Trova precedente Find Next Trova successivo Stop Debug Send Feedback Do you really want to exit? All unsaved changes will be lost. Turing - {file} (unsaved) Turing - {file} Turing - {file} Turing - New File Input: end of output end of output [{time}] Breakpoint: program interrupted Syntax error ({type}) at line {line}, offset {off}: Save output Text files (*.txt) Do you really want to create a new file? All unsaved changes will be lost. Advanced Zoom Zoom Folding Collapse Expand Collapse all Expand all Select word Select extended word Matched select Select line Select Regex Espressione regolare Match case L'evidenziazione è case-sensitive Whole words Identifica solo parole intere In Selection 0 matches Replace All {num} matches Program file (*.py *.tr *.alg) Python file (*.py) Turing program (*.tr) Algobox file (*.alg) A new version of Turing is available. Would you like to download it? A modified file has been automatically saved. Would you like to recover it? Edit theme Settings Impostazioni Use arrow notation ASSIGN variable Recent files Header File recenti Recent articles Header Recent files Menu File recenti Load recent articles Check for updates You are about to choose an example file from the `examples` directory. To guess what examples are, you can guess from the file names. You are not allowed to write to {}, please choose another file path. Parser OR O AND E NOT NON Expected token ({type}) '{val}' Token previsto ({type}) '{val}' Unexpected token ({type}) '{val}' after end of expression Unexpected EOL Fine della linea imprevista Unexpected token ({type}) '{val}' Token imprevisto ({type}) '{val}' Themes Default Difetto Dark Dark blue Custom Personalizzata Dark green Dark red Candy Utilities TRUE VERO FALSE FALSO Turing-0.11-beta/src/lang/translator.py000066400000000000000000000033641331472757200201100ustar00rootroot00000000000000# -*- coding: utf-8 -*- import importlib import os import sip import sys import types from typing import List, Tuple from PyQt5.QtCore import * from PyQt5.QtWidgets import QWidget uis: List[Tuple[object, QWidget]] = [] current_lang = None tr_object: QTranslator = None tr_object_qt: QTranslator = None def add(ui: object, window: QWidget): uis.append((ui, window)) def remove(ui: object): global uis uis = [x for x in uis if x[0] != ui] def update(): import maths.lib global uis uis = [x for x in uis if not sip.isdeleted(x[1])] for ui, window in uis: ui.retranslateUi(window) # reload the docs importlib.reload(maths.lib.docs) for name, item in maths.lib.__dict__.items(): if isinstance(item, types.ModuleType) and not name.startswith("__") and name != "docs": importlib.reload(item) def load(lang: str): global current_lang, tr_object, tr_object_qt current_lang = lang locale = QLocale(lang) if tr_object: QCoreApplication.removeTranslator(tr_object) QCoreApplication.removeTranslator(tr_object_qt) tr_object = QTranslator() if not tr_object.load(locale, "", "", ":/lang/lang"): if not tr_object.load(lang, ":/lang/lang"): print("error loading %s" % lang) tr_object_qt = QTranslator() if hasattr(sys, "frozen"): tpath = os.path.join(sys._MEIPASS, "PyQt5", "Qt", "translations") else: tpath = QLibraryInfo.location(QLibraryInfo.TranslationsPath) if not tr_object_qt.load(locale, "qt", "_", tpath): tr_object_qt.load(locale, "qtbase", "_", tpath) QCoreApplication.installTranslator(tr_object_qt) QCoreApplication.installTranslator(tr_object) QLocale.setDefault(locale) update() Turing-0.11-beta/src/lang/zh-CN.ts000066400000000000000000003061001331472757200166260ustar00rootroot00000000000000 AboutWindow About Turing 关于Turing Program License <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Turing {version}</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Release channel : </span>{channel} <br /><br />Free and open-source software to assist the learning of algorithms and programming. <br /><br /><span style=" font-weight:600;">Copyright (c) 2018 the Turing development team (Léo Joly, Tom Niget)</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the MIT license and makes use of the <a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a> / <a href="https://riverbankcomputing.com/software/pyqt/"><span style=" text-decoration: underline; color:#0000ff;">pyQt</span></a>. frameworks.</li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CS &gt; Maths</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Windows icons under CC-BY 3.0 license - <a href="http://www.fatcow.com/free-icons"><span style=" text-decoration: underline; color:#0000ff;">(c) Fatcow Web Hosting</span></a></li></ul> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Special thanks :</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://twitter.com/davR74130"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">David Roche</span></a>, physics and computer science teacher, whose lessons and modesty were a big help during the development</li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Alan Turing</span>, without whom the computer you're looking at wouldn't be a thing</li></ul> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">plz give us a good grade</p></body></html> Algo [k]BREAK[/k] [k]CONTINUE[/k] [b]ELSE[/b] [b]WHILE[/b] [c]{cond}[/c] [b]IF[/b] [c]{cond}[/c] [k]DECLARE[/k] [c]{var}[/c] [k]CALL[/k] [c]{code}[/c] [b]FOR[/b] [c]{var}[/c] [b]FROM[/b] [c]{begin}[/c] [b]TO[/b] [c]{end}[/c] {step} ([b]STEP[/b] [c]{step}[/c]) [b]FUNCTION[/b] [c]{func}({args})[/c] [k]RETURN[/k] [c]{val}[/c] [k]STOP[/k] [c]{val}[/c] [k]WAIT[/k] [c]{val}[/c] [k]SECONDS[/k] [k]CLEAR PLOT[/k] [k]DRAW LINE[/k] [c]{color}[/c] [k]FROM[/k] ([c]{start_x}[/c]; [c]{start_y}[/c]) [k]TO[/k] ([c]{end_x}[/c]; [c]{end_y}[/c]) [k]DRAW POINT[/k] [c]{color}[/c] [k]AT[/k] ([c]{x}[/c]; [c]{y}[/c]) [k]PLOT FUNCTION[/k] [c]{color}[/c] [i]f[/i]({var}) = [c]{expr}[/c] [k]FROM[/k] [c]{begin}[/c] [k]TO[/k] [c]{end}[/c] [k]STEP[/k] [c]{step}[/c] [b]PROGRAM[/b] [i]empty[/i] Variable {var} = Array access target must be of array type Index '{idx}' too big for array Assignment target must be either variable or array item BREAK can only be used inside a loop CONTINUE can only be used inside a loop RETURN can only be used inside a function ELSE can only be used after an IF block Unknown statement type: {type} Invalid assignment target (must be either variable or array item): {name} Invalid variable name: {name} Invalid name: {name} The following errors occured while parsing the expression: [k]SET WINDOW[/k] [i]Xmin=[/i][c]{x_min}[/c] [i]Xmax=[/i][c]{x_max}[/c] [i]Ymin=[/i][c]{y_min}[/c] [i]Ymax=[/i][c]{y_max}[/c] [i]Xgrad=[/i][c]{x_grad}[/c] [i]Ygrad=[/i][c]{y_grad}[/c] [k]VARIABLE[/k] [c]{var}[/c] [k]TAKES VALUE[/k] [c]{value}[/c] [k]DISPLAY[/k] [c]{val}[/c] {newline} [k]INPUT[/k] [c]{prompt}[/c] [k]TO[/k] [c]{var}[/c] {text} [c]{var}[/c] [k]&#129128;[/k] [c]{value}[/c] AlgoCallStmt Call function <html><head/><body><p>Calls the function with the specified arguments.</p><p>The argument list must consist of a comma-separated list of arguments.</p></body></html> Function: Arguments: AlgoCommentStmt Comment 注释/取消注释 <html><head/><body><p>A comment has no effect whatsoever on the execution of the program.</p><p>It can contain anything.</p></body></html> Comment: AlgoDefineStmt Define variable <html><head/><body><p>Assigns the specified value to the variable.</p><p>If the variable does not exist in the current scope or in any parent scope, it will be created in the current scope.</p></body></html> Value: Variable: AlgoDisplayStmt Display value <html><head/><body><p>Displays a value in the output window. </p><p>The value can be of any type, it will be automatically converted to a textual representation.</p></body></html> Value: Followed by a line break AlgoForStmt FOR loop <html><head/><body><p>Executes the instructions for all values of the variable in the specified range.</p><p>At each iteration, the variable will be incremented by the step which is defaulted to 1. </p><p>The bounds are inclusive.</p></body></html> From: To: Step: Variable: Custom step AlgoFuncStmt Define function <html><head/><body><p>Creates a custom function. The parameters must be a comma-separated list of identifiers.</p><p>A function may or may not return a value, it can very well only &quot;do&quot; things without ever giving a result. Such a function can be called using the CALL statement.</p></body></html> Function: Parameters: AlgoGFuncStmt Plot function <html><head/><body><p>Draws the curve of the function on the specified interval.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Start: Step: Function: Variable: Color: End: AlgoGLineStmt Plot line <html><head/><body><p>Draws a line with the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> End Y: End X: Start X: Start Y: Color: AlgoGPointStmt Plot point <html><head/><body><p>Draws a point at the specified coordinates.</p><p>The color must be a string containing the color name or RGB hex string.</p></body></html> Color: X: Y: AlgoGWindowStmt Set window Max Y: Min Y: Min X: Max X: Grad X: Grad Y: <html><head/><body><p>Changes the size of the plot window canvas. For Grad, 0 means automatic.</p></body></html> AlgoIfStmt IF block <html><head/><body><p>Checks if the specified condition is true.</p><p>The block will only be executed if the condition is true, otherwise the program will continue with the instruction following the block.</p></body></html> Condition: AlgoInputStmt Read user input <html><head/><body><p>Asks the user for a value and assigns it to the specified variable.</p><p>Optionally, a message can be displayed. <span style=" font-weight:600;">Warning</span>: the message is an expression, thus if you want to display text you need to enclose everything inside quotes.</p></body></html> Display a message Message: Variable: Text AlgoReturnStmt Return <html><head/><body><p>Exits the current function and optionally passes a value to the caller.</p></body></html> Value: Return a value AlgoSleepStmt Wait <html><head/><body><p>Waits for the specified amount of time (in <span style=" font-weight:600;">seconds</span>).</p></body></html> Duration: AlgoStopStmt Breakpoint <html><head/><body><p>Pauses the program until &quot;Run&quot; or &quot;Debug&quot; is pressed.</p></body></html> Message: Display a message AlgoWhileStmt WHILE loop <html><head/><body><p>Executes the instructions while the condition is true.</p><p>As soon as the condition is false, the program continues with the instruction following the block.</p></body></html> Condition: Algobox Unknown color: {color} Unknown variable type: {type} CalcWindow Calculator 计算器 Result is None ChangeThemeWindow Edit theme Block: Comment: Keyword: Literal: Window: Shadow: Button: Button Text: Disabled Button Text: Bright Text: Disabled Highlight: Highlight: Highlighted Text: Link: Disabled Highlighted Text: Alternate Base: Base: Window Text: Dark: Disabled Text: Tool Tip Text: Text: Tool Tip Base: Disabled Window Text : Docs Algobox compatibility Basic Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals. Returns the absolute value of {{num}}. Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex. Returns the {{n}}-th root of {{num}}. Returns {{num}} to the {{p}}-th power. Returns //e// to the power of {{num}}. Returns the natural (base-//e//) logarithm of {{num}}. Returns the base-{{b}} logarithm of {{num}}. Returns the base-10 logarithm of {{num}}. Returns the largest integer less than or equal to {{num}}. Returns the smallest integer greater than or equal to {{num}}. Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise). Returns the greatest common divisor of {{a}} and {{b}}. Returns the least common multiple of {{a}} and {{b}}. Returns the argument (or phase) of {{x}}. Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) and argument (angle). Converts the specified polar coordinates to a complex number. Returns the real part of {{x}}. Returns the imaginary part of {{x}}. Returns the complex conjugate of {{x}}. Returns the gradient of {{func}} at {{x}} (optional precision {{h}}). Returns the derivative of {{func}} (optional precision {{h}}). Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}}). Type conversion Tries to convert {{obj}} to Boolean. Tries to convert {{obj}} to Number. Tries to convert {{obj}} to List. Converts {{obj}} to String. Other constants Geometry Returns the perimeter of the circle with the specified {{radius}}. Returns the area of the triangle with the specified side lengths. Returns the area of the triangle with the specified base and height. Returns the area of the square with the specified {{side}} length. Returns the area of the rectangle with side lengths {{s1}} and {{s2}}. Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}. Returns the area of the circle with the specified {{radius}}. Returns the area of the ellipse with radii {{r1}} and {{r2}}. Returns the area of the parallelogram with the specified {{base}} and {{height}}. Returns the area of the circle sector with the specified {{radius}} and {{angle}}. Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}. Returns the surface area of the sphere with the specified {{radius}}. Returns the surface area of the cube with the specified {{side}} length. Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the surface area of the cylinder with the specified {{radius}} and {{height}}. Returns the volume of the regular pyramid with the specified number of {{sides}}, side {{length}} and {{height}}. Returns the volume of the cube with the specified {{side}} length. Returns the volume of the sphere with the specified {{radius}}. Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}. Returns the volume of the cylinder with the specified {{radius}} and {{height}}. Physics Statistics Returns the arithmetic mean of {{args}}. Returns the harmonic mean of {{args}}. Returns the sum of all the terms of {{args}}. Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}. Returns the maximum value of {{args}}. Returns the minimum value of {{args}}. Returns the Gamma function at {{x}}. Returns the natural logarithm of the absolute value of the Gamma function at {{x}}. Returns the factorial of {{x}}. Returns the error function at {{x}}. Returns the complementary error function at {{x}}. Applies {{func}} to each element of {{lst}} and returns the resulting list. Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value. Returns a slice of the specified list, from index {{start}} (inclusive) to either index {{end}} (exclusive) or the end of the list. Returns the population standard deviation of {{lst}}. Returns the population variance of {{lst}}. Returns the sample standard deviation of {{lst}}. Returns the sample variance of {{lst}}. Returns a random number between 0 (inclusive) and 1 (exclusive). Returns a random integer between {{a}} and {{b}} (inclusive). Returns the {{n}}-th Fibonacci number. Returns the {{n}}-th Euler number. Returns the Beta function at {{a}} and {{b}}. Trigonometry Converts angle {{x}} from radians to degrees. Converts angle {{x}} from degrees to radians. Returns the arc sine of {{x}}. Returns the arc cosine of {{x}}. Returns the arc tangent of {{x}}. Returns the arc tangent of {{y}} / {{x}}. Returns the inverse hyperbolic sine of {{x}}. Returns the inverse hyperbolic cosine of {{x}}. Returns the inverse hyperbolic tangent of {{x}}. Returns the sine of {{x}}. Returns the cosine of {{x}}. Returns the tangent of {{x}}. Returns the hyperbolic sine of {{x}}. Returns the hyperbolic cosine of {{x}}. Returns the hyperbolic tangent of {{x}}. Returns the secant of {{x}}. Returns the cosecant of {{x}}. Returns the cotangent of {{x}}. Returns the exsecant of {{x}}. Returns the excosecant of {{x}}. Returns the chord of {{x}}. Returns the hyperbolic secant of {{x}}. Returns the hyperbolic cosecant of {{x}}. Returns the hyperbolic cotangent of {{x}}. Returns the inverse secant of {{x}}. Returns the inverse cosecant of {{x}}. Returns the inverse cotangent of {{x}}. Returns the inverse hyperbolic secant of {{x}}. Returns the inverse hyperbolic cosecant of {{x}}. Returns the inverse hyperbolic cotangent of {{x}}. Returns the cardinal sine of {{x}}. Returns the versed sine of {{x}}. Returns the versed cosine of {{x}}. Returns the coversed sine of {{x}}. Returns the coversed cosine of {{x}}. Returns the haversed sine of {{x}}. Returns the haversed cosine of {{x}}. Returns the hacoversed sine of {{x}}. Returns the hacoversed cosine of {{x}}. Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}). Returns the median of {{lst}}. Returns the mode of {{lst}}. Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}. Returns the number of elements in {{T}}. Swaps the elements of {{t}} at indices {{a}} and {{b}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}. Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}. Returns the inverse of the error function at {{y}}. Returns the inverse of the complementary error function at {{y}}. Returns the index of maximum value of {{args}}. Returns the index of minimum value of {{args}}. Returns a random element from {{args}}. Returns the uppercase version of {{s}}. Returns the lowercase version of {{s}}. Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1). Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}. Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1). Evaluator Cannot find variable or function {name} Parser: Argument count mismatch (expected {exp}, got {act}) Unknown node type: {type} Array access target must be of array type Index '{idx}' too big for array Callee is None Only lists can be expanded Type mismatch for argument #{idx} '{arg}' (expected {exp}) Invalid unary operator '{op}' Trying to use None Type mismatch: operands have different types ({left} and {right}) left right Invalid value type for {val} and operator '{op}' and Operator '{op}' not allowed for value type {type} Trying to multiply List by non-integer ({val}) Trying to divide by zero Invalid binary operator '{op}' for '{left}' and '{right}' HelpWindow Help Contents 帮助目录 <h2>Arguments:</h2> <li>None</li> default = {deft} 缺省 = {deft} <h2>Aliases:</h2> <h2>Functions:</h2> InlineCodeDialog Expression editor MainWindow Home Pseudocode Duplicate Line shorter Delete Line Edit Line Zoom in 放大 Zoom out 缩小 Reset zoom 恢复默认缩放 Basic Breakpoint Read user INPUT DISPLAY value Comment 注释/取消注释 Wait Blocks WHILE loop ELSE block FOR loop IF block CONTINUE BREAK Functions CALL function Define FUNCTION RETURN Plot Set window Clear plot Draw point Draw line Plot function Code &File 文件(&F) &Edit 编辑(&E) &Help &View 视图(&V) Change theme Change style &Program &Tools 工具(&O) Toolbar Output Clear Output Save Output Print Output New 新建 Open 打开 Save 保存 Save As 另存为 Exit 退出 Save All 全部保存 Undo 撤消 Redo 恢复 Cut 剪切 Copy 复制 Paste 粘贴 Quick Start Help Contents 帮助目录 About Turing 关于Turing Show toolbar Examples Print 打印 Find 查找 Replace 替换 Calculator 计算器 Clear Select All 全选 Run 运行 Step-by-step Show toolbar text Convert to Python Convert to pseudocode Duplicate Line Indent 插入制表符 Unindent 删除制表符 Go To Line Find Previous 查找上一个 Find Next 查找下一个 Stop Debug Send Feedback Do you really want to exit? All unsaved changes will be lost. Turing - {file} (unsaved) Turing - {file} Turing - {file} Turing - New File Input: end of output end of output [{time}] Breakpoint: program interrupted Syntax error ({type}) at line {line}, offset {off}: Save output Text files (*.txt) Do you really want to create a new file? All unsaved changes will be lost. Advanced Folding Collapse Expand Collapse all Expand all Select word Select extended word Matched select Select line Select Regex 正则表达式 Match case 区分大小写 Whole words 仅匹配完整词 In Selection 0 matches 0次匹配 Replace All {num} matches {num}次匹配 Program file (*.py *.tr *.alg) Python file (*.py) Turing program (*.tr) Algobox file (*.alg) A new version of Turing is available. Would you like to download it? A modified file has been automatically saved. Would you like to recover it? Zoom 缩放 Edit theme Settings Use arrow notation ASSIGN variable Recent files Header 近期文件 Recent articles Header Recent files Menu 近期文件 Load recent articles Check for updates You are about to choose an example file from the `examples` directory. To guess what examples are, you can guess from the file names. You are not allowed to write to {}, please choose another file path. Parser OR AND NOT Expected token ({type}) '{val}' 需要的符号({type}) '{val}' Unexpected token ({type}) '{val}' after end of expression Unexpected EOL 意外的 EOL Unexpected token ({type}) '{val}' 意外的令牌({type}) '{val}' Themes Default 缺省 Dark Dark blue Custom 自定 Dark green Dark red Candy Utilities TRUE FALSE Turing-0.11-beta/src/main.py000066400000000000000000000057201331472757200157200ustar00rootroot00000000000000# -*- coding: utf-8 -*- import json import os import sys ## add a path to get the embedded unmaintained package pyqode sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ) import threading from PyQt5.QtCore import QSettings, QCoreApplication, Qt from PyQt5.QtGui import QFont, QPixmap from PyQt5.QtWidgets import QApplication, QStyleFactory, QSplashScreen import util from util import theming, show_error translate = QCoreApplication.translate util.__version__ = "β-0.11" util.__channel__ = "beta" def except_hook(type, value, tback): show_error() sys.__excepthook__(type, value, tback) def setup_thread_excepthook(): """ Workaround for `sys.excepthook` thread bug from: http://bugs.python.org/issue1230540 Call once from the main thread before creating any threads. """ init_original = threading.Thread.__init__ def init(self, *args, **kwargs): init_original(self, *args, **kwargs) run_original = self.run def run_with_except_hook(*args2, **kwargs2): try: run_original(*args2, **kwargs2) except Exception: sys.excepthook(*sys.exc_info()) self.run = run_with_except_hook threading.Thread.__init__ = init if __name__ == "__main__": sys.excepthook = except_hook setup_thread_excepthook() theming.app = app = QApplication(sys.argv) app.setApplicationName("Turing") app.setApplicationVersion(util.__version__) util.settings = QSettings("Turing", "Turing") ## check the format of "recent"'s value try: recent = json.loads(util.settings.value("recent", "[]")) assert (type(recent) is list) ## as of 2018-06-03, There was a bug with QSettings, which ## could not deal with empty lists: such a data was stored ## as @Invalid() and restored as None, which is not an empty list. ## so the format will be a string, serialized with JSON which ## is less buggy, and provides a well readable conffile. except: ## so, if some old-fashioned data were in the conffile, ## just forget it. util.settings.setValue("recent", json.dumps([])) util.translate_backend = translate DEFAULT_STYLE = QStyleFactory.create(app.style().objectName()) if sys.platform == "win32": # fix for ugly font on 7+ font = QFont("Segoe UI", 9) app.setFont(font) # noinspection PyUnresolvedReferences import turing_rc splash = QSplashScreen(QPixmap(":/icon/media/icon_128.png"), Qt.WindowStaysOnTopHint) splash.show() app.processEvents() try: theming.themes["custom"] = (theming.themes["custom"][0], util.settings.value("custom_theme", [], type=list)) except: pass from forms import mainwindow mainwindow.init_main(splash) try: exitCode = app.exec_() except: show_error() exitCode = 1 mainwindow.clean_exit() Turing-0.11-beta/src/maths/000077500000000000000000000000001331472757200155325ustar00rootroot00000000000000Turing-0.11-beta/src/maths/__init__.py000066400000000000000000000000301331472757200176340ustar00rootroot00000000000000# -*- coding: utf-8 -*- Turing-0.11-beta/src/maths/__init__.pyc000066400000000000000000000002071331472757200200050ustar00rootroot00000000000000 I;Zc@sdS(N((((s0D:\Documents\GitHub\Turing\src\maths\__init__.pytsTuring-0.11-beta/src/maths/__tests__.py000066400000000000000000000130441331472757200200440ustar00rootroot00000000000000# -*- coding: utf-8 -*- from maths.evaluator import Evaluator from maths.lib import basic, trig from tests.framework import expect tests = [ # basic parsing ("42", 42, "42"), ("-42", -42, "-42"), # basic operators ("2+2", 4, "2 + 2"), ("3*3", 9, "3 * 3"), ("142 -9 ", 133, "142 - 9"), (" 50/10", 5, "50 / 10"), ("72+ 15", 87, "72 + 15"), (" 12* 4", 48, "12 * 4"), ("4*2.5 + 8.5+1.5 / 3.0", 19, "4 * 2.5 + 8.5 + 1.5 / 3"), (" 2-7", -5, "2 - 7"), ("2 -4 +6 -1 -1- 0 +8", 10, "2 - 4 + 6 - 1 - 1 - 0 + 8"), (" 2*3 - 4*5 + 6/3 ", -12, "2 * 3 - 4 * 5 + 6 / 3"), ("10/4", 2.5, "10 / 4"), # unary edge cases ("--5", 5, "--5"), ("0--5", 5, "0 - -5"), # basic functions ("ceil(pi)", 4, "ceil(pi)"), ("floor(e)", 2, "floor(e)"), ("sqrt(49)", 7, "sqrt(49)"), ("sqrt(2)^2", 2, "sqrt(2) ^ 2"), ("cos(0)", 1, "cos(0)"), ("sin(pi)", 0, "sin(pi)"), ("deg(2pi)", 360, "deg(2 * pi)"), ("round(asin(acos(atan(tan(cos(sin(0.5)))))),5)", 0.5, "round(asin(acos(atan(tan(cos(sin(0.5)))))), 5)"), ("sign(-5)", -1, "sign(-5)"), ("binomial(3,2)", 3, "binomial(3, 2)"), ("binomial(3 , 0)", 1, "binomial(3, 0)"), ("average([12,82,74,36,14,94])", 52, "average([12, 82, 74, 36, 14, 94])"), ("sum([1,8,9,6,24,54,354])", 456, "sum([1, 8, 9, 6, 24, 54, 354])"), ("sum(1,-8,6,-3)", -4, "sum(1, -8, 6, -3)"), ("[8,5,42,96,31,84,35] [-4]", 96, "[8, 5, 42, 96, 31, 84, 35][-4]"), ("[1,2,3,4][2]", 3, "[1, 2, 3, 4][2]"), ("[42,{x,y,z}(x*abs({x, y}(x - y)(y, z))),38][1](4,3,5)", 8, "[42, {x, y, z}(x * abs({x, y}(x - y)(y, z))), 38][1](4, 3, 5)"), ("(2+2)==4", True, "2 + 2 == 4"), ("vrai xor true", False, "TRUE XOR TRUE"), ("\"abc\"+\"def\"", "abcdef", "\"abc\" + \"def\""), # list operators ("[1,2,3]+[3,4,5]", [1, 2, 3, 3, 4, 5], "[1, 2, 3] + [3, 4, 5]"), ("[1,2,3]-[3,4,5]", [1, 2], "[1, 2, 3] - [3, 4, 5]"), ("-[1,2,3]", [3, 2, 1], "-[1, 2, 3]"), ("3*[1,2,3]", [1, 2, 3, 1, 2, 3, 1, 2, 3], "3 * [1, 2, 3]"), ("[1,2,3]&[2,3,4]", [2, 3], "[1, 2, 3] AND [2, 3, 4]"), ("[1,2,3]|[2,3,4]", [1, 2, 3, 4], "[1, 2, 3] OR [2, 3, 4]"), ("[1,2,3]xor[3,4,5]", [1, 2, 4, 5], "[1, 2, 3] XOR [3, 4, 5]"), # complex lambda tests ("map({a}({a,b}(b*a)(2,a)),[1,2,3,4,5,6])", [2, 4, 6, 8, 10, 12], "map({a}({a, b}(b * a)(2, a)), [1, 2, 3, 4, 5, 6])"), ("-filter({a}(a<0),[-2,-1,0,1,2])", [-1, -2], "-filter({a}(a < 0), [-2, -1, 0, 1, 2])"), # leo ("gcd(248,4584)", 8, "gcd(248, 4584)"), ("lcm(904,1356)", 2712, "lcm(904, 1356)"), ("slice([1,2,3,4,5,6,7,8],2,6)", [3, 4, 5, 6], "slice([1, 2, 3, 4, 5, 6, 7, 8], 2, 6)"), ("round(variance([2.75,1.75,1.25,0.25,0.5,1.25,3.5]),2)", 1.18, "round(variance([2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]), 2)"), ("round(variance_sample([2.75,1.75,1.25,0.25,0.5,1.25,3.5]),2)", 1.37, "round(variance_sample([2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]), 2)"), ("harmonic_mean([2.5,3,10])", 3.6, "harmonic_mean([2.5, 3, 10])"), ("5e+99/2e45", 2.5e54, "5e99 / 2e45"), ("5e-99/2e-45", 2.5e-54, "5e-99 / 2e-45"), # complex ("3sqrt(-4)", 6j, "3 * sqrt(-4)"), ("(2+3i)+(4+5i)", 6 + 8j, "(2 + 3i) + (4 + 5i)"), ("(2+3i)*(4+5i)", -7 + 22j, "(2 + 3i) * (4 + 5i)"), ("(2+3i)^2", -5 + 12j, "(2 + 3i) ^ 2"), ("arg(2+3i) == atan(3/2)", True, "arg(2 + 3i) == atan(3 / 2)"), ("asin(2) == pi/2 + i*ln(2+sqrt(3))", True, "asin(2) == pi / 2 + i * ln(2 + sqrt(3))"), ("rect(sqrt(2),rad(45)) == 1+i", True, "rect(sqrt(2), rad(45)) == 1 + i"), ("polar(1+i)", [basic.sqrt(2), trig.c_pi / 4], "polar(1 + i)"), ("gcd(*-[4584, 248])", 8, "gcd(*-[4584, 248])"), ("re(5+4i)", 5, "re(5 + 4i)"), ("im(8-9i)", -9, "im(8 - 9i)"), ("conj(5+4i)", 5 - 4j, "conj(5 + 4i)"), ("euler(10)", 50521, "euler(10)"), ("fact(5)", 120, "fact(5)"), ("gamma(6)", 120, "gamma(6)"), ("beta(18,2)==1/342", True, "beta(18, 2) == 1 / 342"), ("{x}(2x^2+3x+4)(8)", 156, "{x}(2 * x ^ 2 + 3 * x + 4)(8)"), ("gradient({x}(2x^2+3x+4),8)", 35, "gradient({x}(2 * x ^ 2 + 3 * x + 4), 8)"), ("{x}(2x^2+3x+4)(8+1e-5)", 156.0003500002, "{x}(2 * x ^ 2 + 3 * x + 4)(8 + 1e-5)"), ("round(deriv(gamma)(5),4)", 36.1468, "round(deriv(gamma)(5), 4)"), ("integ({x}(4x^3-2x^2+3x-4),-7,4)", -2509.8 - 1 / 30, "integ({x}(4 * x ^ 3 - 2 * x ^ 2 + 3 * x - 4), -7, 4)"), ("integ(sin,0,pi)", 2, "integ(sin, 0, pi)"), ("round(integ({x}(root(x,3)),-19,71),1)", 239.5 + 32.9j, "round(integ({x}(root(x, 3)), -19, 71), 1)"), ("fib(400)", 176023680645013966468226945392411250770384383304492191886725992896575345044216019675, "fib(400)"), ("map(derivative(ln),[1,2,4,8])==map({x}(1/x),[1,2,4,8])", True, "map(derivative(ln), [1, 2, 4, 8]) == map({x}(1 / x), [1, 2, 4, 8])"), ("map(derivative(sin),[0,pi/2,pi])==map(cos,[0,pi/2,pi])", True, "map(derivative(sin), [0, pi / 2, pi]) == map(cos, [0, pi / 2, pi])"), ("2+2==4 and 3+3==6", True, "2 + 2 == 4 AND 3 + 3 == 6"), ("2+2>=1+1", True, "2 + 2 >= 1 + 1"), ("3+3<=12/2", True, "3 + 3 <= 12 / 2"), ("{n}({m}({n}(m*n))(n))(3)(4)", 12, "{n}({m}({n}(m * n))(n))(3)(4)"), ("round({m,d,x}(1/(d*sqrt(2pi))*exp(-((x-m)^2)/(2*d^2)))(100,5.7,110),3)", 0.015, "round({m, d, x}(1 / (d * sqrt(2 * pi)) * exp(-((x - m) ^ 2) / (2 * d ^ 2)))(100, 5.7, 110), 3)"), ("non faux", True, "NOT FALSE") ] def run_tests(): ev = Evaluator() for expr, exp_result, exp_beautified in tests: result = ev.evaluate(expr) expect(result, exp_result) expect(ev.beautified, exp_beautified) Turing-0.11-beta/src/maths/evaluator.py000066400000000000000000000364661331472757200201250ustar00rootroot00000000000000# -*- coding: utf-8 -*- import math import sys from typing import Dict import maths.lib as mlib from maths.parser import * from util.log import Logger from util.math import * DEBUG = False class Evaluator: def __init__(self, strict=False): self.frames = [{}] self.arguments = None self.beautified = None self.node_tree = None for name, item in mlib.__dict__.items(): if isinstance(item, types.ModuleType): for member_name, member in item.__dict__.items(): if callable(member): # if function doc_func = mlib.find_function(member_name) if doc_func: member.doc_spec = doc_func self.frames[0][member_name] = member elif member_name.startswith("c_"): # if constant self.frames[0][member_name[2:]] = member for alias, func in mlib.docs.ext_aliases: self.frames[0][alias] = self.frames[0][func] self.log = Logger("Eval") self.strict_typing = strict def enter_frame(self, value: Dict[str, Any] = None): """Pushes the a new frame / the specified frame to the stack. value -- Frame (optional)""" self.frames.append(value or {}) def exit_frame(self): """Pops the last frame from the stack.""" return self.frames.pop() def set_variable(self, variable: str, value: Any, local=False): """Sets the value of the specified variable. variable -- Variable name value -- Variable value local -- If true, forces the creation of a new variable in the current frame. Otherwise, sets the value in the nearest frame containing the variable.""" if not local: for frame in reversed(self.frames): if variable in frame: frame[variable] = value return self.frames[-1][variable] = value def get_variable(self, variable: str) -> Optional[Any]: """Returns the value of the specified variable. variable -- Variable name""" for frame in reversed(self.frames): if variable in frame: return frame[variable] self.log.error(translate("Evaluator", "Cannot find variable or function {name}").format(name=variable)) return None def evaluate(self, expr: str) -> Optional[Any]: """Evaluates the specified expression. If an error occurs during the parsing, the result will be None. If an error occurs during the evaluation, the result will be undefined.""" parser = Parser(expr) parser.log = self.log node = None try: node = parser.parse() except: if DEBUG: raise self.log.error(translate("Evaluator", "Parser: ") + str(sys.exc_info()[1])) self.beautified = parser.beautify() if not node: return None return self.evaluate_parsed(node) def evaluate_parsed(self, node: nodes.AstNode): """Evaluates the specified root node. node -- Node to be evaluated""" self.node_tree = node self.beautified = self.node_tree.code() result = None try: result = self.eval_node(self.node_tree) except: if DEBUG: raise self.log.error(str(sys.exc_info()[1])) return result def eval_node(self, node: nodes.AstNode): """Evaluates the specified node. Basically just a wrapper for eval_node_real that handles all the IEEE754 floating point rounding fuckery.""" value = self.eval_node_real(node) if value is not None and is_num(value) and not isinstance(value, bool): if isinstance(value, complex): # if real, convert to float directly if is_real(value): value = value.real # only convert to int if it fits well if is_int(value) and 1 <= abs(value) <= 1e15: value = int(round(value)) # if zero, use zero directly if is_zero(value): value = 0 else: if not (type(value) == int and value != int(float(value))): value = close_round(value, 12) return value def call_lambda(self, node: nodes.LambdaNode, *args): """Calls the specified lambda function. node -- Function node args -- Argument list""" args = list(args) if len(args) != len(node.args): self.log.error( translate("Evaluator", "Argument count mismatch (expected {exp}, got {act})").format(exp=len(node.args), act=len(args))) return None frame = {node.args[idx]: arg for idx, arg in enumerate(args)} self.enter_frame(frame) result = self.eval_node(node.expr) if callable(result): if not hasattr(result, "frames"): result.frames = [] result.frames.append(frame.copy()) # pop arguments after use self.exit_frame() return result def eval_node_real(self, node: nodes.AstNode): """Evaluates the specified node. node -- Node to be evaluated""" if isinstance(node, nodes.ListNode): return [self.eval_node(x) for x in node.value] if isinstance(node, (nodes.NumberNode, nodes.StringNode)): return node.value if isinstance(node, nodes.IdentifierNode): return self.get_variable(node.value) if isinstance(node, nodes.UnaryOpNode): return self.eval_unary(node) if isinstance(node, nodes.BinOpNode): return self.eval_binary(node) if isinstance(node, nodes.CallNode): return self.eval_call(node) if isinstance(node, nodes.ArrayAccessNode): return self.eval_array_access(node) if isinstance(node, nodes.LambdaNode): return self.eval_lambda(node) # if the object is not a node, it must be a remnant of an already-parsed value # return it directly if not isinstance(node, nodes.AstNode): return node # if it's an unknown descendant of AstNode # this should never happen, but we put a message just in case self.log.error(translate("Evaluator", "Unknown node type: {type}").format(type=type(node))) return None def eval_lambda(self, node: nodes.LambdaNode): """Evaluates the specified lambda function node.""" return lambda *args: self.call_lambda(node, *list(args)) def eval_array_access(self, node: nodes.ArrayAccessNode): """Evaluates the specified array access node.""" array = self.eval_node(node.array) index = int(self.eval_node(node.index)) if not isinstance(array, (list, str)): self.log.error(translate("Evaluator", "Array access target must be of array type")) return None if index < len(array): return array[index] else: self.log.error(translate("Evaluator", "Index '{idx}' too big for array").format(idx=index)) return None def eval_call(self, node: nodes.CallNode): """Evaluates the specified function call node.""" function = self.eval_node(node.func) if function is None: self.log.error(translate("Evaluator", "Callee is None")) return None if (len(node.args) == 1 and isinstance(node.args[0], nodes.UnaryOpNode) and node.args[0].operator == "*"): # expand list of arguments arg_list = self.eval_node(node.args[0].value) if type(arg_list) != list: self.log.error(translate("Evaluator", "Only lists can be expanded")) return None args = arg_list else: args = [self.eval_node(x) for x in node.args] if hasattr(function, "doc_spec") and not hasattr(function, "listfunc"): arg_spec = function.doc_spec[1][1] num_opt = sum(1 for arg in arg_spec if len(arg) >= 4) if not (len(arg_spec) - num_opt <= len(args) <= len(arg_spec)): self.log.error(translate("Evaluator", "Argument count mismatch (expected {exp}, got {act})").format( exp=len(arg_spec) - num_opt, act=len(args))) return None for idx, (arg, spec) in enumerate(zip(args, arg_spec)): if not check_type(arg, spec[1]): self.log.error( translate("Evaluator", "Type mismatch for argument #{idx} '{arg}' (expected {exp})").format( idx=idx + 1, arg=spec[0], exp=spec[1])) return None if hasattr(function, "frames"): for f in function.frames: self.enter_frame(f) result = function.__call__(*args) if hasattr(function, "frames"): for _ in function.frames: self.exit_frame() return result def eval_unary(self, node: nodes.UnaryOpNode): """Evaluates the specified unary operation node.""" value = self.eval_node(node.value) value_type = ValueType.get_type(value) if node.operator == "+": return value if node.operator == "-" and (is_num(value) and (not self.strict_typing or not is_bool(value))): return -value if node.operator == "-" and value_type == ValueType.LIST: return value[::-1] if node.operator == "NOT" and (is_bool(value) or (not self.strict_typing and is_num(value))): return not value self.log.error(translate("Evaluator", "Invalid unary operator '{op}'").format(op=node.operator)) return None def eval_binary(self, node: nodes.BinOpNode): """Evaluates the specified binary operation node. Wrapper for binary_operation.""" return self.binary_operation(self.eval_node(node.left), self.eval_node(node.right), node.operator) def binary_operation(self, left, right, operator): """Evaluates the specified binary operation.""" left_type = ValueType.get_type(left) right_type = ValueType.get_type(right) if left is None or right is None: self.log.error(translate("Evaluator", "Trying to use None")) return None if operator == "+" and ValueType.STRING in [left_type, right_type]: # if one of the operands is a string return str(left) + str(right) if operator in ["*"] and right_type == ValueType.LIST and left_type != ValueType.LIST: # if one operand is list and not the other, then put the list at left # so we don't have to handle both cases afterwards (left, left_type, right, right_type) = (right, right_type, left, left_type) result = None if self.strict_typing: if left_type != right_type: self.log.error( translate("Evaluator", "Type mismatch: operands have different types ({left} and {right})").format( left=ValueType.get_name(left_type), right=ValueType.get_name(right_type))) return None if left_type == ValueType.BOOLEAN: allowed = Operators.boolean elif left_type == ValueType.NUMBER: allowed = Operators.math + Operators.comp elif left_type == ValueType.STRING: allowed = Operators.eq + ["+"] elif left_type == ValueType.LIST: allowed = Operators.eq + ["+", "-", "&", "|"] else: error_pos = [] if left_type is None: error_pos.append(translate("Evaluator", "left")) if right_type is None: error_pos.append(translate("Evaluator", "right")) self.log.error(translate("Evaluator", "Invalid value type for {val} and operator '{op}'").format( val=translate("Evaluator", " and ").join(error_pos), op=operator)) return None if operator not in allowed: self.log.error( translate("Evaluator", "Operator '{op}' not allowed for value type {type}").format( op=operator, type=ValueType.get_name(left_type))) return None # arithmetic if operator == "+": result = left + right elif operator == "-": if left_type == right_type == ValueType.LIST: result = [x for x in left if x not in right] else: result = left - right elif operator == "*": if left_type == ValueType.LIST: if not is_int(right): self.log.error( translate("Evaluator", "Trying to multiply List by non-integer ({val})").format(val=right)) return None else: result = left * int(right) else: result = left * right elif operator == "/": if right == 0: self.log.error(translate("Evaluator", "Trying to divide by zero")) return None result = left / right elif operator == "%": result = math.fmod(left, right) elif operator in ["^", "**"]: result = left ** right # comparison elif operator == "<=": result = left <= right or is_close(left, right) elif operator == "<": result = left < right elif operator == ">": result = left > right elif operator == ">=": result = left >= right or is_close(left, right) # equality elif operator == "==": result = is_close(left, right) elif operator == "!=": result = not is_close(left, right) # logic / bitwise elif operator == "&": if left_type == right_type == ValueType.LIST: result = [x for x in left if x in right] else: result = int(left) & int(right) elif operator == "|": if left_type == right_type == ValueType.LIST: result = list(set(left + right)) else: result = int(left) | int(right) elif operator == "XOR": if left_type == right_type == ValueType.LIST: result = list(set(x for x in left + right if x not in left or x not in right)) else: result = int(left) ^ int(right) if result is None: self.log.error( translate("Evaluator", "Invalid binary operator '{op}' for '{left}' and '{right}'").format(op=operator, left=left, right=right)) else: if is_bool(left) and is_bool(right): # if both operands are bool, then cast the whole thing to bool so it looks like we're professional result = bool(result) return result Turing-0.11-beta/src/maths/lib/000077500000000000000000000000001331472757200163005ustar00rootroot00000000000000Turing-0.11-beta/src/maths/lib/__init__.py000066400000000000000000000011171331472757200204110ustar00rootroot00000000000000# -*- coding: utf-8 -*- from typing import Optional, Tuple import maths.lib.basic import maths.lib.cast import maths.lib.const import maths.lib.docs import maths.lib.geom import maths.lib.physics import maths.lib.stats import maths.lib.trig def get_funcs(): return docs.funcs def get_consts(): return docs.consts def get_modules(): return docs.modules def find_function(name: str) -> Optional[Tuple[str, Tuple]]: functions = get_funcs() for k in functions: for f in functions[k]: if f[0] == name: return k, f return None Turing-0.11-beta/src/maths/lib/algobox.py000066400000000000000000000022571331472757200203130ustar00rootroot00000000000000# -*- coding: utf-8 -*- from maths.lib.basic import * from maths.lib.stats import * from util import translate __desc__ = translate("Docs", "Algobox compatibility") def algobox_listfunc(func): def wrapper(lst, p, n): return func(lst[p:n + 1]) setattr(wrapper, "algobox_listfunc", True) return wrapper ALGOBOX_ALEA_ENT = randint ALGOBOX_NB_COMBINAISONS = binomial ALGOBOX_COEFF_BINOMIAL = binomial ALGOBOX_LOI_BINOMIAL = d_binomial ALGOBOX_LOI_NORMALE_CR = d_normal_std_cdf ALGOBOX_LOI_NORMALE = d_normal_cdf ALGOBOX_INVERSE_LOI_NORMALE_CR = d_normal_std_cdf_inv ALGOBOX_INVERSE_LOI_NORMALE = d_normal_cdf_inv ALGOBOX_FACTORIELLE = fact ALGOBOX_SOMME = algobox_listfunc(sum) ALGOBOX_MOYENNE = algobox_listfunc(arithm_mean) ALGOBOX_VARIANCE = algobox_listfunc(variance) ALGOBOX_ECART_TYPE = algobox_listfunc(stand_dev) ALGOBOX_MEDIANE = algobox_listfunc(median) ALGOBOX_QUARTILE1 = None ALGOBOX_QUARTILE3 = None ALGOBOX_QUARTILE1_BIS = None ALGOBOX_QUARTILE3_BIS = None ALGOBOX_MINIMUM = algobox_listfunc(min) ALGOBOX_MAXIMUM = algobox_listfunc(max) ALGOBOX_POS_MINIMUM = algobox_listfunc(min_index) ALGOBOX_POS_MAXIMUM = algobox_listfunc(max_index) ALGOBOX_ARRONDIR = round Turing-0.11-beta/src/maths/lib/basic.py000066400000000000000000000144471331472757200177450ustar00rootroot00000000000000# -*- coding: utf-8 -*- import builtins import cmath import math as rmath from maths.lib import const from util import translate from util.math import mod, modn from .docs import * __desc__ = translate("Docs", "Basic") doc("round", [ ("num", "Number"), ("prec", "Real", None, None) ], translate("Docs", "Rounds {{num}} to the nearest integer / (if specified) to {{prec}} decimals."), ["arrondi"]) def round(num, prec=None): if 0 < prec < 1: return round(num, -int(rmath.log10(prec))) if type(num) == complex: return complex(round(num.real, prec), round(num.imag, prec)) if prec: return builtins.round(num, int(prec)) return builtins.round(num) arrondi = round doc("abs", [ ("num", "Number") ], translate("Docs", "Returns the absolute value of {{num}}.")) def abs(x): return builtins.abs(x) doc("sqrt", [ ("num", "Number") ], translate("Docs", "Returns the square root of {{num}}. If {{num}} < 0, the result will be Complex."), ["rac"]) def sqrt(x): return modn(x).sqrt(x) rac = sqrt doc("root", [ ("num", "Number"), ("n", "Number", "!= 0") ], translate("Docs", "Returns the {{n}}-th root of {{num}}.")) def root(x, n): return pow(x, 1 / n) doc("pow", [ ("num", "Number"), ("p", "Number") ], translate("Docs", "Returns {{num}} to the {{p}}-th power."), ["puiss"]) def pow(x, y): return x ** y puiss = pow doc("exp", [ ("num", "Number") ], translate("Docs", "Returns //e// to the power of {{num}}.")) def exp(x): return mod(x).exp(x) doc("ln", [ ("num", "Number") ], translate("Docs", "Returns the natural (base-//e//) logarithm of {{num}}.")) def ln(x): return log(x, const.c_e) doc("log", [ ("num", "Number"), ("b", "Number", "!= 0", "e") ], translate("Docs", "Returns the base-{{b}} logarithm of {{num}}.")) def log(x, b=None): if b is None: return ln(x) return cmath.log(x, b) if type(x) == complex or type(b) == complex or x < 0 else rmath.log(x, b) doc("log10", [ ("num", "Number") ], translate("Docs", "Returns the base-10 logarithm of {{num}}.")) def log10(x): return mod(x).log10(x) doc("floor", [ ("num", "Number") ], translate("Docs", "Returns the largest integer less than or equal to {{num}}.")) def floor(x): if type(x) == complex: return complex(rmath.floor(x.real), rmath.floor(x.imag)) return rmath.floor(x) doc("ceil", [ ("num", "Number") ], translate("Docs", "Returns the smallest integer greater than or equal to {{num}}.")) def ceil(x): if type(x) == complex: return complex(rmath.ceil(x.real), rmath.ceil(x.imag)) return rmath.ceil(x) doc("sign", [ ("num", "Real") ], translate("Docs", "Returns the sign of {{num}} (-1 if negative, 1 if positive, 0 otherwise).")) def sign(x): if x < 0: return -1 if x > 0: return 1 return 0 doc("gcd", [ ("a", "Integer"), ("b", "Integer") ], translate("Docs", "Returns the greatest common divisor of {{a}} and {{b}}."), ['pgcd']) def gcd(a, b): return rmath.gcd(int(a), int(b)) pgcd = gcd doc("lcm", [ ("a", "Integer"), ("b", "Integer") ], translate("Docs", "Returns the least common multiple of {{a}} and {{b}}."), ['ppcm']) def lcm(a, b): return a * b / gcd(a, b) ppcm = lcm doc("arg", [ ("x", "Number") ], translate("Docs", "Returns the argument (or phase) of {{x}}."), ["phase"]) def arg(x): return cmath.phase(x) phase = arg doc("polar", [ ("x", "Number") ], translate("Docs", "Returns a list containing the polar coordinates of {{x}}, respectively the modulus (radius) " "and argument (angle)."), ["polaire"]) def polar(x): return [abs(x), arg(x)] polaire = polar doc("rect", [ ("r", "Number"), ("phi", "Number") ], translate("Docs", "Converts the specified polar coordinates to a complex number.")) def rect(r, phi): return r * exp(phi * 1j) doc("re", [ ("x", "Number") ], translate("Docs", "Returns the real part of {{x}}.")) def re(x): return complex(x).real doc("im", [ ("x", "Number") ], translate("Docs", "Returns the imaginary part of {{x}}.")) def im(x): return complex(x).imag doc("conj", [ ("x", "Number") ], translate("Docs", "Returns the complex conjugate of {{x}}.")) def conj(x): return complex(x).conjugate() doc("gradient", [ ("func", "Function(Number)"), ("x", "Number"), ("h", "Number", None, 1e-7) ], translate("Docs", "Returns the gradient of {{func}} at {{x}} (optional precision {{h}}).")) def gradient(func, x, h=1e-7): result = (func(x + h) - func(x - h)) / (2 * h) if h < 1: result = round(result, h) return result doc("derivative", [ ("func", "Function(Number)"), ("h", "Number", None, 1e-7) ], translate("Docs", "Returns the derivative of {{func}} (optional precision {{h}})."), ["deriv"]) def derivative(func, h=1e-7): return lambda x: gradient(func, x, h) deriv = derivative doc("integrate", [ ("func", "Function(Number)"), ("a", "Number"), ("b", "Number"), ("steps", "Integer", None, 100000) ], translate("Docs", "Returns the integral of {{func}} from {{a}} to {{b}} (optional number of steps: {{steps}})."), ["integ"]) def integrate(func, a, b, steps=1000): steps = int(steps) step = (b - a) / steps sum = func(a) for i in range(1, steps, 2): sum += 4 * func(a + step * i) for i in range(2, steps - 1, 2): sum += 2 * func(a + step * i) sum += func(b) return sum * step / 3 integ = integrate doc("upper", [ ("s", "String") ], translate("Docs", "Returns the uppercase version of {{s}}."), ["maju"]) def upper(s): return str(s).upper() maju = upper doc("lower", [ ("s", "String") ], translate("Docs", "Returns the lowercase version of {{s}}."), ["minu"]) def lower(s): return str(s).lower() minu = lower Turing-0.11-beta/src/maths/lib/cast.py000066400000000000000000000014131331472757200176030ustar00rootroot00000000000000# -*- coding: utf-8 -*- from util import translate from .docs import * __desc__ = translate("Docs", "Type conversion") doc("c_bool", [ ("obj", "Any") ], translate("Docs", "Tries to convert {{obj}} to Boolean.")) def c_bool(obj): return bool(obj) doc("c_num", [ ("obj", "Any") ], translate("Docs", "Tries to convert {{obj}} to Number.")) def c_num(obj): return complex(obj) doc("c_list", [ ("obj", "Any") ], translate("Docs", "Tries to convert {{obj}} to List.")) def c_list(obj): return list(obj) doc("c_str", [ ("obj", "Any") ], translate("Docs", "Converts {{obj}} to String.")) def c_str(obj): if type(obj) == list: return "".join(obj) return str(obj) Turing-0.11-beta/src/maths/lib/const.py000066400000000000000000000012511331472757200177770ustar00rootroot00000000000000# -*- coding: utf-8 -*- from util import translate from .docs import * __desc__ = translate("Docs", "Other constants") doc_c("e", "e", "Euler number") c_e = 2.71828182845904523536028747135266249775724709369996 doc_c("phi", "φ", "Golden ratio") c_phi = 1.61803398874989484820458683436563811772030917980576 doc_c("euler_gamma", "γ", "Euler-Mascheroni constant") c_euler_gamma = 0.57721566490153286060651209008240243104215933593992 doc_c("khinchin", "K0", "Khinchin's constant") c_khinchin = 2.68545200106530644530971483548179569382038229399446 doc_c("inf", "∞", "Positive infinity") c_inf = complex("inf") doc_c("i", "i", "Imaginary unit") c_i = complex(0, 1) Turing-0.11-beta/src/maths/lib/docs.py000066400000000000000000000023631331472757200176060ustar00rootroot00000000000000# -*- coding: utf-8 -*- import inspect import sys from util.math import proper_str funcs = {} consts = {} modules = {} ext_aliases = {} def doc(*kwargs): module = sys.modules[inspect.stack()[1][0].f_globals["__name__"]] mod_name = module.__desc__ modules[mod_name] = module if mod_name not in funcs: funcs[mod_name] = [] funcs[mod_name].append(kwargs) def doc_c(*kwargs): module = sys.modules[inspect.stack()[1][0].f_globals["__name__"]] mod_name = module.__desc__ modules[mod_name] = module if mod_name not in consts: consts[mod_name] = [] consts[mod_name].append(kwargs) def add_alias(func, alias): ext_aliases[alias] = func def get_func_def(f): args = [] for a in f[1]: if len(a) >= 4: args.append("%s=%s" % (a[0], proper_str(a[3]))) else: args.append(a[0]) return "%s(%s)" % (f[0], ", ".join(args)) def get_func_def_html(f, name_bold=True): hargs = [] name = f[0] if name_bold: name = "%s" % name for a in f[1]: cur = "%s" % a[0] if len(a) >= 4: cur += "=%s" % proper_str(a[3]) hargs.append(cur) return "%s(%s)" % (name, ", ".join(hargs)) Turing-0.11-beta/src/maths/lib/geom.py000066400000000000000000000123731331472757200176070ustar00rootroot00000000000000# -*- coding: utf-8 -*- import math from maths.lib import trig from util import translate from .docs import * __desc__ = translate("Docs", "Geometry") doc("peri_circle", [ ("radius", "Real") ], translate("Docs", "Returns the perimeter of the circle with the specified {{radius}}.")) def peri_circle(radius): return 2 * trig.c_pi * radius doc("area_triangle_sides", [ ("a", "Real"), ("b", "Real"), ("c", "Real") ], translate("Docs", "Returns the area of the triangle with the specified side lengths.")) def area_triangle_sides(a, b, c): p = (a + b + c) / 2.0 return math.sqrt(p * (p - a) * (p - b) * (p - c)) doc("area_triangle", [ ("base", "Real"), ("height", "Real") ], translate("Docs", "Returns the area of the triangle with the specified base and height.")) def area_triangle(base, height): return base * height / 2.0 doc("area_square", [ ("side", "Real") ], translate("Docs", "Returns the area of the square with the specified {{side}} length.")) def area_square(side): return side * side doc("area_rectangle", [ ("s1", "Real"), ("s2", "Real") ], translate("Docs", "Returns the area of the rectangle with side lengths {{s1}} and {{s2}}.")) def area_rectangle(s1, s2): return s1 * s2 doc("area_trapezoid", [ ("a", "Real"), ("b", "Real"), ("height", "Real") ], translate("Docs", "Returns the area of the trapezoid with sides {{a}} and {{b}} and height {{height}}.")) def area_trapezoid(a, b, height): return (a + b) * height / 2.0 doc("area_circle", [ ("radius", "Real") ], translate("Docs", "Returns the area of the circle with the specified {{radius}}.")) def area_circle(radius): return math.pi * radius * radius doc("area_ellipse", [ ("r1", "Real"), ("r2", "Real") ], translate("Docs", "Returns the area of the ellipse with radii {{r1}} and {{r2}}.")) def area_ellipse(r1, r2): return math.pi * r1 * r2 doc("area_parallelogram", [ ("base", "Real"), ("height", "Real") ], translate("Docs", "Returns the area of the parallelogram with the specified {{base}} and {{height}}.")) def area_parallelogram(base, height): return base * height doc("area_sector", [ ("radius", "Real"), ("angle", "Real") ], translate("Docs", "Returns the area of the circle sector with the specified {{radius}} and {{angle}}.")) def area_sector(radius, angle): return (angle / 2) * radius * radius doc("area_polygon", [ ("sides", "Integer"), ("length", "Real") ], translate("Docs", "Returns the area of the regular polygon with the specified number of {{sides}} and side {{length}}.")) def area_polygon(sides, length): return (sides * length * length) / (4 * math.tan(trig.c_pi / sides)) doc("area_sphere", [ ("radius", "Real") ], translate("Docs", "Returns the surface area of the sphere with the specified {{radius}}.")) def area_sphere(radius): return 4 * trig.c_pi * radius * radius doc("area_cube", [ ("side", "Real") ], translate("Docs", "Returns the surface area of the cube with the specified {{side}} length.")) def area_cube(side): return 6 * side * side doc("area_parallelepiped", [ ("a", "Real"), ("b", "Real"), ("c", "Real") ], translate("Docs", "Returns the surface area of the parallelogram with side lengths {{a}}, {{b}} and {{c}}.")) def area_parallelepiped(a, b, c): return (2 * a * b) + (2 * b * c) + (2 * a * c) doc("area_cylinder", [ ("radius", "Real"), ("height", "Real") ], translate("Docs", "Returns the surface area of the cylinder with the specified {{radius}} and {{height}}.")) def area_cylinder(radius, height): return 2 * area_circle(radius) + height * peri_circle(radius) doc("vol_pyramid", [ ("sides", "Integer"), ("length", "Real"), ("height", "Real") ], translate("Docs", "Returns the volume of the regular pyramid with the specified number of {{sides}}, " "side {{length}} and {{height}}.")) def vol_pyramid(sides, length, height): return area_polygon(sides, length) * height / 3 doc("vol_cube", [ ("side", "Real") ], translate("Docs", "Returns the volume of the cube with the specified {{side}} length.")) def vol_cube(side): return pow(side, 3) doc("vol_sphere", [ ("radius", "Real") ], translate("Docs", "Returns the volume of the sphere with the specified {{radius}}.")) def vol_sphere(radius): return 4 * math.pi * pow(radius, 3) / 3 doc("vol_parallelepiped", [ ("a", "Real"), ("b", "Real"), ("c", "Real") ], translate("Docs", "Returns the volume of the parallelogram with side lengths {{a}}, {{b}} and {{c}}.")) def vol_parallelepiped(a, b, c): return a * b * c doc("vol_cylinder", [ ("radius", "Real"), ("height", "Real") ], translate("Docs", "Returns the volume of the cylinder with the specified {{radius}} and {{height}}.")) def vol_cylinder(radius, height): return area_circle(radius) * height Turing-0.11-beta/src/maths/lib/physics.py000066400000000000000000000026341331472757200203410ustar00rootroot00000000000000# -*- coding: utf-8 -*- from util import translate from .docs import * __desc__ = translate("Docs", "Physics") doc_c("celerity", "c", "Speed of light in vacuum", "m*s-1") c_celerity = 299792458 doc_c("planck", "h", "Planck constant", "J*s-1") c_planck = 6.62607004081e-34 doc_c("red_planck", "ħ", "Reduced Planck constant", "J*s-1") c_red_planck = 1.054571629e-34 doc_c("planck_time", "tP", "Planck time", "s") c_planck_time = 5.3911413e-44 doc_c("planck_temp", "TP", "Planck temperature", "K") c_planck_temp = 1.41680833e32 doc_c("planck_mass", "mP", "Planck mass", "kg") c_planck_mass = 2.17647051e-8 doc_c("planck_length", "lP", "Planck length", "m") c_planck_length = 1.61622938e-35 doc_c("planck_charge", "qP", "Planck charge", "C") c_planck_charge = 1.8755459e-18 doc_c("gravity", "G", "Gravitational constant", "N*m2*kg-2") c_gravity = 6.6740831e-11 doc_c("vacuum_permit", "ε0", "Vacuum permittivity", "F*m-1") c_vacuum_permit = 8.8541878176203898505365630317107502606083701665994e-12 doc_c("vacuum_permea", "μ0", "Vacuum permeability", "N*A-2") c_vacuum_permea = 1.25663706143591729538505735331180115367886775975e-6 doc_c("vacuum_imped", "Z0", "Impedance of free space", "Ω") c_vacuum_imped = 376.73031346177065546819840042031930826862350835242 Turing-0.11-beta/src/maths/lib/stats.py000066400000000000000000000314121331472757200200110ustar00rootroot00000000000000# -*- coding: utf-8 -*- import builtins import math import random as rnd import statistics import numpy as np from util import translate from . import basic, trig from .docs import * __desc__ = translate("Docs", "Statistics") doc_c("catalan", "G", "Catalan's constant") c_catalan = 0.91596559417721901505460351493238411077414937428167 doc_c("glaisher", "A", "Glaisher-Kinkelin constant") c_glaisher = 1.28242712910062263687534256886979172776768892732500 def listfunc(func): def wrapper(*args): if builtins.len(args) == 1: if isinstance(args[0], list): try: return func(args[0]) except: pass try: return func(list(iter(args[0]))) except: pass return func(list(args)) setattr(wrapper, "listfunc", True) return wrapper doc("choice", [ ("args", "List(Any)") ], translate("Docs", "Returns a random element from {{args}}."), ["choix"]) @listfunc def choice(args): return rnd.choice(args) choix = choice doc("arithm_mean", [ ("args", "List(Number)") ], translate("Docs", "Returns the arithmetic mean of {{args}}."), ["moyenne", "average"]) @listfunc def arithm_mean(args): return statistics.mean(args) average = arithm_mean moyenne = arithm_mean doc("harmonic_mean", [ ("args", "List(Number)") ], translate("Docs", "Returns the harmonic mean of {{args}}."), ["moyenne_harmo"]) @listfunc def harmonic_mean(args): if "harmonic_mean" not in dir(statistics): return builtins.len(args) / sum([1 / x for x in args]) return statistics.harmonic_mean(args) moyenne_harmo = harmonic_mean doc("sum", [ ("args", "List(Number)") ], translate("Docs", "Returns the sum of all the terms of {{args}}.")) @listfunc def sum(args): return builtins.sum(args) doc("binomial", [ ("n", "Number"), ("k", "Number") ], translate("Docs", "Returns the binomial coefficient for a subset of size {{k}} and a set of size {{n}}.")) def binomial(n, k): """Calculates the binomial coefficient.""" return math.gamma(n + 1) / (math.gamma(k + 1) * math.gamma(n - k + 1)) doc("max", [ ("args", "List(Number)") ], translate("Docs", "Returns the maximum value of {{args}}.")) @listfunc def max(args): return builtins.max(args) doc("min", [ ("args", "List(Number)") ], translate("Docs", "Returns the minimum value of {{args}}.")) @listfunc def min(args): return builtins.min(args) doc("max_index", [ ("args", "List(Number)") ], translate("Docs", "Returns the index of maximum value of {{args}}.")) @listfunc def max_index(args): return args.index(builtins.max(args)) doc("min_index", [ ("args", "List(Number)") ], translate("Docs", "Returns the index of minimum value of {{args}}.")) @listfunc def min_index(args): return args.index(builtins.min(args)) doc("gamma", [ ("x", "Number") ], translate("Docs", "Returns the Gamma function at {{x}}.")) def gamma(x): return math.gamma(x) doc("log_gamma", [ ("x", "Number") ], translate("Docs", "Returns the natural logarithm of the absolute value of the Gamma function at {{x}}.")) def log_gamma(x): return math.lgamma(x) doc("fact", [ ("x", "Integer") ], translate("Docs", "Returns the factorial of {{x}}.")) def fact(x): return math.factorial(x) doc("erf", [ ("x", "Number") ], translate("Docs", "Returns the error function at {{x}}.")) def erf(x): return math.erf(x) doc("erfc", [ ("x", "Number") ], translate("Docs", "Returns the complementary error function at {{x}}.")) def erfc(x): return math.erfc(x) doc("erfinv", [ ("y", "Number") ], translate("Docs", "Returns the inverse of the error function at {{y}}.")) def erfinv(y): # courtesy of # https://github.com/antelopeusersgroup/antelope_contrib/blob/master/lib/location/libgenloc/erfinv.c#L15 a = [0.886226899, -1.645349621, 0.914624893, -0.140543331] b = [-2.118377725, 1.442710462, -0.329097515, 0.012229801] c = [-1.970840454, -1.624906493, 3.429567803, 1.641345311] d = [3.543889200, 1.637067800] if y > 1: return None if y == 1: return math.copysign(1, y) * float("inf") if y <= 0.7: z = y * y num = (((a[3] * z + a[2]) * z + a[1]) * z + a[0]) dem = ((((b[3] * z + b[2]) * z + b[1]) * z + b[0]) * z + 1.0) x = y * num / dem else: z = math.sqrt(-math.log((1.0 - abs(y)) / 2.0)) num = ((c[3] * z + c[2]) * z + c[1]) * z + c[0] dem = (d[1] * z + d[0]) * z + 1.0 x = (math.copysign(1.0, y)) * num / dem for _ in [1, 2]: x = x - (erf(x) - y) / ((2 / math.sqrt(trig.c_pi)) * math.exp(-x * x)) return x doc("erfcinv", [ ("y", "Number") ], translate("Docs", "Returns the inverse of the complementary error function at {{y}}.")) def erfcinv(y): return erfinv(1 - y) doc("map", [ ("func", "Function(1 arg)"), ("lst", "List") ], translate("Docs", "Applies {{func}} to each element of {{lst}} and returns the resulting list."), ["appl"]) def map(func, lst): return [func(x) for x in lst] appl = map doc("filter", [ ("func", "Function(1 arg)"), ("lst", "List") ], translate("Docs", "Returns a list containing all elements of {{lst}} for which {{func}} returns a truthy value."), ["filtre"]) def filter(func, lst): return [x for x in lst if func(x)] filtre = filter doc("slice", [ ("lst", "List"), ("start", "Integer", "0 <= start <= end <= len(lst)"), ("end", "Integer", "start <= end <= len(lst)", None) ], translate("Docs", "Returns a slice of the specified list, from index {{start}} (inclusive) to either index " "{{end}} (exclusive) or the end of the list."), ["tranche"]) def slice(lst, start, end=None): start = int(start) if end is not None: end = int(end) return lst[start:end] return lst[start:] tranche = slice doc("stand_dev", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the population standard deviation of {{lst}}."), ["ecart_type"]) @listfunc def stand_dev(lst): return statistics.pstdev(lst) ecart_type = stand_dev doc("variance", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the population variance of {{lst}}.")) @listfunc def variance(lst): return statistics.pvariance(lst) doc("stand_dev_sample", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the sample standard deviation of {{lst}}."), ["ecart_type_echant"]) @listfunc def stand_dev_sample(lst): return statistics.stdev(lst) ecart_type_echant = stand_dev_sample doc("variance_sample", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the sample variance of {{lst}}."), ["variance_echant"]) @listfunc def variance_sample(lst): return statistics.variance(lst) variance_echant = variance_sample doc("random", [], translate("Docs", "Returns a random number between 0 (inclusive) and 1 (exclusive)."), ["alea"]) def random(): return rnd.random() alea = random doc("randint", [ ("a", "Integer"), ("b", "Integer") ], translate("Docs", "Returns a random integer between {{a}} and {{b}} (inclusive)."), ["alea_ent"]) def randint(a, b): if b < a: a, b = b, a return math.floor((b - a + 1) * random() + a) alea_ent = randint doc("fib", [ ("n", "Integer") ], translate("Docs", "Returns the {{n}}-th Fibonacci number.")) def fib(n): a, b = 1, 1 for i in range(int(n) - 1): a, b = b, a + b return a doc("euler", [ ("n", "Integer") ], translate("Docs", "Returns the {{n}}-th Euler number.")) def euler(n): # odd indices are zero if int(n) % 2 != 0: return 0 n = int(n / 2) return basic.pow(-1, n) \ * complex(0, 1) \ * sum(sum(binomial(k, j) * ((basic.pow(-1, j) * basic.pow(k - 2 * j, 2 * n + 1)) / ( basic.pow(2, k) * basic.pow(complex(0, 1), k) * k)) for j in range(0, k + 1) ) for k in range(1, 2 * n + 2) ) doc("beta", [ ("a", "Number"), ("b", "Number") ], translate("Docs", "Returns the Beta function at {{a}} and {{b}}.")) def beta(a, b): return (gamma(a) * gamma(b)) / gamma(a + b) doc("median", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the median of {{lst}}.")) @listfunc def median(lst): return statistics.median(lst) doc("mode", [ ("lst", "List(Number)"), ], translate("Docs", "Returns the mode of {{lst}}.")) @listfunc def mode(lst): return statistics.mode(lst) doc("d_binomial", [ ("n", "Integer"), ("p", "Real", "0 <= p <= 1"), ("k", "Integer") ], translate("Docs", "Returns the probability for {{k}} with the binomial distribution of parameters {{n}} and {{p}}.")) @listfunc def d_binomial(n, p, k): return binomial(n, k) * basic.pow(p, k) * basic.pow(1 - p, n - k) doc("len", [ ("T", "List") ], translate("Docs", "Returns the number of elements in {{T}}."), ["taille"]) @listfunc def len(T): return builtins.len(T) taille = len doc("swap", [ ("T", "List"), ("a", "Integer"), ("b", "Integer") ], translate("Docs", "Swaps the elements of {{t}} at indices {{a}} and {{b}}.")) def swap(T, a, b): T[a], T[b] = T[b], T[a] return T doc("range", [ ("start", "Number"), ("end", "Number"), ("step", "Number", None, 1) ], translate("Docs", "Generates a list containing all number from {{start}} (inclusive) to {{end}} (exclusive) with a step of {{step}}.")) def range(start, end=None, step=None): if end is None: end = start start = 0 if step is None: if end < start: step = -1 else: step = 1 return [x.item() for x in np.arange(start, end, step)] doc("irange", [ ("start", "Number"), ("end", "Number"), ("step", "Number", None, 1) ], translate("Docs", "Generates a list containing all number from {{start}} (inclusive) to {{end}} (inclusive) with a step of {{step}}.")) def irange(start, end=None, step=None): if end is None: end = start start = 0 if step is None: if end < start: step = -1 else: step = 1 return [x.item() for x in np.arange(start, end + step, step)] doc("d_normal_pdf", [ ("mu", "Real"), ("sigma", "Real"), ("x", "Real") ], translate("Docs", "Returns the probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}.")) def d_normal_pdf(mu, sigma, x): return 1 / (sigma * math.sqrt(2 * trig.c_pi)) * math.exp( - (math.pow(x - mu, 2) / (2 * math.pow(sigma, 2)))) doc("d_normal_std_pdf", [ ("x", "Real") ], translate("Docs", "Returns the probability for {{x}} with the standard normal distribution (µ=0 and σ=1).")) def d_normal_std_pdf(x): return 1 / math.sqrt(2 * trig.c_pi) * math.exp(-pow(x, 2) / 2) doc("d_normal_cdf", [ ("mu", "Real"), ("sigma", "Real"), ("x", "Real") ], translate("Docs", "Returns the cumulative probability for {{x}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}.")) def d_normal_cdf(mu, sigma, x): return d_normal_std_cdf((x - mu) / sigma) doc("d_normal_std_cdf", [ ("x", "Real") ], translate("Docs", "Returns the cumulative probability for {{x}} with the standard normal distribution (µ=0 and σ=1).")) def d_normal_std_cdf(x): return 1 - 0.5 * erfc(x / math.sqrt(2)) doc("d_normal_cdf_inv", [ ("mu", "Real"), ("sigma", "Real"), ("p", "Real") ], translate("Docs", "Returns the number with cumulative probability {{p}} with the normal distribution of parameters µ={{mu}} and σ={{sigma}}.")) def d_normal_cdf_inv(mu, sigma, p): return d_normal_std_cdf_inv(p) * sigma + mu doc("d_normal_std_cdf_inv", [ ("p", "Real") ], translate("Docs", "Returns the number with cumulative probability {{p}} with the standard normal distribution (µ=0 and σ=1).")) def d_normal_std_cdf_inv(p): return erfcinv((1 - p) * 2) * math.sqrt(2) Turing-0.11-beta/src/maths/lib/trig.py000066400000000000000000000136611331472757200176260ustar00rootroot00000000000000# -*- coding: utf-8 -*- from maths.lib import basic from util import translate from util.math import mod, mods from .docs import * __desc__ = translate("Docs", "Trigonometry") doc_c("pi", "π", "Perimeter of a circle of diameter 1") c_pi = 3.14159265358979323846264338327950288419716939937511 doc_c("tau", "τ", "Double of π") c_tau = 6.28318530717958647692528676655900576839433879875021 deg_cst = 180 / c_pi rad_cst = c_pi / 180 doc("degrees", [ ("x", "Number") ], translate("Docs", "Converts angle {{x}} from radians to degrees."), ["deg"]) def degrees(x): return x * deg_cst deg = degrees doc("radians", [ ("x", "Number") ], translate("Docs", "Converts angle {{x}} from degrees to radians."), ["rad"]) def radians(x): return x * rad_cst rad = radians doc("asin", [("x", "Number")], translate("Docs", "Returns the arc sine of {{x}}.")) def asin(x): return mods(x, 1).asin(x) doc("acos", [("x", "Number")], translate("Docs", "Returns the arc cosine of {{x}}.")) def acos(x): return mods(x, 1).acos(x) doc("atan", [("x", "Number")], translate("Docs", "Returns the arc tangent of {{x}}.")) def atan(x): return mods(x, 1).atan(x) doc("atan2", [("y", "Number"), ("x", "Number")], translate("Docs", "Returns the arc tangent of {{y}} / {{x}}.")) def atan2(y, x): return atan(y / x) doc("asinh", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic sine of {{x}}.")) def asinh(x): return mods(x, 1).asinh(x) doc("acosh", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic cosine of {{x}}.")) def acosh(x): return mods(x, 1).acosh(x) doc("atanh", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic tangent of {{x}}.")) def atanh(x): return mods(x, 1).atanh(x) doc("sin", [("x", "Number")], translate("Docs", "Returns the sine of {{x}}.")) def sin(x): return mod(x).sin(x) doc("cos", [("x", "Number")], translate("Docs", "Returns the cosine of {{x}}.")) def cos(x): return mod(x).cos(x) doc("tan", [("x", "Number")], translate("Docs", "Returns the tangent of {{x}}.")) def tan(x): return mod(x).tan(x) doc("sinh", [("x", "Number")], translate("Docs", "Returns the hyperbolic sine of {{x}}.")) def sinh(x): return mod(x).sinh(x) doc("cosh", [("x", "Number")], translate("Docs", "Returns the hyperbolic cosine of {{x}}.")) def cosh(x): return mod(x).cosh(x) doc("tanh", [("x", "Number")], translate("Docs", "Returns the hyperbolic tangent of {{x}}.")) def tanh(x): return mod(x).tanh(x) doc("sec", [("x", "Number")], translate("Docs", "Returns the secant of {{x}}.")) def sec(x): return 1 / cos(x) doc("csc", [("x", "Number")], translate("Docs", "Returns the cosecant of {{x}}.")) def csc(x): return 1 / sin(x) doc("cot", [("x", "Number")], translate("Docs", "Returns the cotangent of {{x}}.")) def cot(x): return 1 / tan(x) doc("exsec", [("x", "Number")], translate("Docs", "Returns the exsecant of {{x}}.")) def exsec(x): return sec(x) - 1 doc("excsc", [("x", "Number")], translate("Docs", "Returns the excosecant of {{x}}.")) def excsc(x): return csc(x) - 1 doc("chord", [("x", "Number")], translate("Docs", "Returns the chord of {{x}}."), ["crd"]) def chord(x): return 2 * sin(x / 2) crd = chord doc("sech", [("x", "Number")], translate("Docs", "Returns the hyperbolic secant of {{x}}.")) def sech(x): return 1 / cosh(x) doc("csch", [("x", "Number")], translate("Docs", "Returns the hyperbolic cosecant of {{x}}.")) def csch(x): return 1 / sinh(x) doc("coth", [("x", "Number")], translate("Docs", "Returns the hyperbolic cotangent of {{x}}.")) def coth(x): return 1 / tanh(x) doc("asec", [("x", "Number")], translate("Docs", "Returns the inverse secant of {{x}}.")) def asec(x): return acos(1 / x) doc("acsc", [("x", "Number")], translate("Docs", "Returns the inverse cosecant of {{x}}.")) def acsc(x): return asin(1 / x) doc("acot", [("x", "Number")], translate("Docs", "Returns the inverse cotangent of {{x}}.")) def acot(x): return atan(1 / x) doc("asech", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic secant of {{x}}.")) def asech(x): return acosh(1 / x) doc("acsch", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic cosecant of {{x}}.")) def acsch(x): return asinh(1 / x) doc("acoth", [("x", "Number")], translate("Docs", "Returns the inverse hyperbolic cotangent of {{x}}.")) def acoth(x): return atanh(1 / x) doc("sinc", [("x", "Number")], translate("Docs", "Returns the cardinal sine of {{x}}.")) def sinc(x): return sin(x) / x doc("versin", [("x", "Number")], translate("Docs", "Returns the versed sine of {{x}}.")) def versin(x): return 1 - cos(x) doc("vercos", [("x", "Number")], translate("Docs", "Returns the versed cosine of {{x}}.")) def vercos(x): return 1 + cos(x) doc("coversin", [("x", "Number")], translate("Docs", "Returns the coversed sine of {{x}}.")) def coversin(x): return 1 - sin(x) doc("covercos", [("x", "Number")], translate("Docs", "Returns the coversed cosine of {{x}}.")) def covercos(x): return 1 + sin(x) doc("haversin", [("x", "Number")], translate("Docs", "Returns the haversed sine of {{x}}.")) def haversin(x): return versin(x) / 2 doc("havercos", [("x", "Number")], translate("Docs", "Returns the haversed cosine of {{x}}.")) def havercos(x): return vercos(x) / 2 doc("hacoversin", [("x", "Number")], translate("Docs", "Returns the hacoversed sine of {{x}}.")) def hacoversin(x): return coversin(x) / 2 doc("hacovercos", [("x", "Number")], translate("Docs", "Returns the hacoversed cosine of {{x}}.")) def hacovercos(x): return covercos(x) / 2 doc("hypot", [("x", "Number"), ("y", "Number")], translate("Docs", "Returns the hypotenuse / Euclidean norm of the vector ({{x}}, {{y}}).")) def hypot(x, y): return basic.sqrt(basic.pow(x, 2) + basic.pow(y, 2)) Turing-0.11-beta/src/maths/nodes/000077500000000000000000000000001331472757200166425ustar00rootroot00000000000000Turing-0.11-beta/src/maths/nodes/ArrayAccessNode.py000066400000000000000000000015451331472757200222270ustar00rootroot00000000000000# -*- coding: utf-8 -*- import util.html from .AstNode import * class ArrayAccessNode(AstNode): """Array access node array -- array (AstNode) index -- index (AstNode)""" def __init__(self, array: AstNode, index: AstNode): super().__init__(True) self.array = array self.index = index def __str__(self): return "[ArrayAccess %s @ %s]" % (self.array, self.index) def __repr__(self): return "ArrayAccessNode(%r, %r)" % (self.array, self.index) def code(self, bb=False) -> str: return (util.html.escape_brackets("%s[%s]") if bb else "%s[%s]") % ( self.array.code_fix(bb), self.index.code(bb)) def python(self) -> str: return "(%s)[%s]" % (self.array.python(), self.index.python()) def children(self) -> List["AstNode"]: return [self.array, self.index] Turing-0.11-beta/src/maths/nodes/AstNode.py000066400000000000000000000024121331472757200205500ustar00rootroot00000000000000# -*- coding: utf-8 -*- from typing import List from shlex import shlex # lexer module for shell-mode expressions class AstNode: """Base node class""" def __init__(self, atomic: bool = False): self.atomic = atomic def code(self, bb=False) -> str: return "" def code_fix(self, bb=False) -> str: if self.atomic: return self.code(bb) return "(%s)" % self.code(bb) def python(self) -> str: return "" def children(self) -> List["AstNode"]: return [] def flatten(self) -> List["AstNode"]: return [self] + self.children() def isSimple(s): """ @ param s a string which may be a left or a right operand @return True when s is a "simple" string. A string is "simple" when it is enclosed in parentheses or when it contains a single toke, according to shlex """ return len(list(shlex(s)))==1 or \ (s[0]=='(' and s[-1]==')') or \ (s[0]=='{' and s[-1]=='}') or \ (s[0]=='[' and s[-1]==']') def protectExpr(s): """ protects a string by surrounding parentheses when it is not simple @param s a string which may be a left or a right operand """ if isSimple(s): return s return '('+s+')' Turing-0.11-beta/src/maths/nodes/BinOpNode.py000066400000000000000000000063571331472757200210440ustar00rootroot00000000000000# -*- coding: utf-8 -*- import maths.parser import util.html from .IdentifierNode import * from .NumberNode import * from .AstNode import * from .StringNode import StringNode class BinOpNode(AstNode): """Binary (two operands) operator node left -- left operand (AstNode) right -- right operand (AstNode) operator -- which binary operator (str)""" def __init__(self, left: AstNode, right: AstNode, operator: str): super().__init__() # check for imaginary part if operator == "*": if left == IdentifierNode("i") and type(right) == NumberNode: left, right = right, left self.is_imag_part = isinstance(left, NumberNode) and right == IdentifierNode("i") else: self.is_imag_part = False # check for complex if operator in ["+", "-"]: if isinstance(right, NumberNode) and isinstance(left, BinOpNode) and left.is_imag_part: left, right = right, left self.is_complex = isinstance(left, NumberNode) and isinstance(right, BinOpNode) and right.is_imag_part else: self.is_complex = False self.left = left self.right = right self.operator = operator self.precedence = maths.parser.Operators.get_precedence(operator) def __str__(self): return "[BinOp %s %s %s]" % (self.left, self.operator, self.right) def __repr__(self): return "BinOpNode(%r, %r, %r)" % (self.left, self.right, self.operator) def need_fix(self, operand: AstNode, right=False) -> bool: return (isinstance(operand, BinOpNode) and operand.is_complex and operand.operator == self.operator) \ or (not self.is_complex and isinstance(operand, BinOpNode) and (operand.precedence < self.precedence or ( right and operand.precedence == self.precedence and not maths.parser.Operators.is_commutative( self.operator)))) def operand_code(self, operand: AstNode, bb=False, right=False) -> str: return operand.code_fix(bb) \ if self.need_fix(operand, right) \ else operand.code(bb) def code(self, bb=False) -> str: # handle complex numbers if self.is_imag_part: return "%si" % self.left.code(bb) op = maths.parser.Operators.pretty_print(self.operator) if bb: op = util.html.sanitize(op) return "%s %s %s" % ( self.operand_code(self.left, bb), op, self.operand_code(self.right, bb, True)) def python(self) -> str: op_table = { "^": "**", "XOR": "^" } op_fix = op_table.get(self.operator.upper(), self.operator.lower()) left = self.left right = self.right left_py = left.python() right_py = right.python() if op_fix == "+": if type(left) == StringNode and type(right) != StringNode: right_py = "str(%s)" % right_py elif type(right) == StringNode and type(left) != StringNode: left_py = "str(%s)" % left_py return "(%s %s %s)" % \ (protectExpr(left_py), op_fix, protectExpr(right_py)) def children(self) -> List["AstNode"]: return [self.left, self.right] Turing-0.11-beta/src/maths/nodes/CallNode.py000066400000000000000000000015101331472757200206720ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .AstNode import * class CallNode(AstNode): """Function call node func -- function (AstNode) args -- arguments (list of AstNode)""" def __init__(self, func: AstNode, args: List[AstNode]): super().__init__(True) self.func = func self.args = args def __str__(self): return "[Call %s with %s]" % (self.func, self.args) def __repr__(self): return "CallNode(%r, %r)" % (self.func, self.args) def code(self, bb=False) -> str: return "%s(%s)" % (self.func.code_fix(bb), ", ".join(arg.code(bb) for arg in self.args)) def python(self) -> str: return "%s(%s)" % (protectExpr(self.func.python()), ", ".join(arg.python() for arg in self.args)) def children(self) -> List["AstNode"]: return [self.func] + self.args Turing-0.11-beta/src/maths/nodes/IdentifierNode.py000066400000000000000000000012261331472757200221050ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .AstNode import * class IdentifierNode(AstNode): """Identifier node value -- value (str)""" def __init__(self, value: str): super().__init__(True) self.value = value def __str__(self): return "[Identifier %s]" % self.value def __repr__(self): return "IdentifierNode(%r)" % self.value def __eq__(self, other): return type(other) == IdentifierNode and other.value == self.value def code(self, bb=False) -> str: if bb: return "[i]%s[/i]" % self.code(False) return self.value def python(self) -> str: return self.value Turing-0.11-beta/src/maths/nodes/LambdaNode.py000066400000000000000000000014171331472757200212050ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .AstNode import * class LambdaNode(AstNode): """Lambda (inline function) node args -- arguments (list of str) expr -- expression (AstNode)""" def __init__(self, args: List[str], expr: AstNode): super().__init__(True) self.args = args self.expr = expr def __str__(self): return "[Lambda %s -> %s]" % (self.args, self.expr) def __repr__(self): return "LambdaNode(%r, %r)" % (self.args, self.expr) def code(self, bb=False) -> str: return "{%s}(%s)" % (", ".join(self.args), self.expr.code(bb)) def python(self) -> str: return "(lambda %s: %s)" % (", ".join(self.args), self.expr.python()) def children(self) -> List["AstNode"]: return [self.expr] Turing-0.11-beta/src/maths/nodes/ListNode.py000066400000000000000000000013651331472757200207420ustar00rootroot00000000000000# -*- coding: utf-8 -*- import util.html from util.math import proper_str from .AstNode import * class ListNode(AstNode): """Identifier node value -- value (list of AstNode)""" def __init__(self, value: List[AstNode]): super().__init__(True) self.value = value def __str__(self): return "[List %s]" % self.value def __repr__(self): return "ListNode(%r)" % self.value def code(self, bb=False) -> str: return (util.html.sanitize("[%s]") if bb else "[%s]") % proper_str([node.code(bb) for node in self.value])[1:-1] def python(self) -> str: return "list([%s])" % ", ".join(x.python() for x in self.value) def children(self) -> List["AstNode"]: return self.value Turing-0.11-beta/src/maths/nodes/NumberNode.py000066400000000000000000000015321331472757200212530ustar00rootroot00000000000000# -*- coding: utf-8 -*- import util from util.math import proper_str from .AstNode import * class NumberNode(AstNode): """Number node value -- value (number)""" def __init__(self, value: util.number): super().__init__(type(value) != complex or proper_str(value)[-1] != "i") self.value = value def __str__(self): return "[Number %s]" % self.value def __repr__(self): return "NumberNode(%r)" % self.value def code(self, bb=False) -> str: if bb: return "[n]%s[/n]" % self.code(False) return proper_str(self.value) def python(self) -> str: if type(self.value) == complex or self.value < 0: # parentheses for complex and negative numbers return "(%r)" % self.value # no parentheses by default return "%r" % self.value Turing-0.11-beta/src/maths/nodes/StringNode.py000066400000000000000000000011611331472757200212670ustar00rootroot00000000000000# -*- coding: utf-8 -*- from util.html import sanitize from .AstNode import * class StringNode(AstNode): """String node value -- value (str)""" def __init__(self, value: str): super().__init__(True) self.value = value def __str__(self): return "[String '%s']" % self.value def __repr__(self): return "StringNode(%r)" % self.value def code(self, bb=False) -> str: if bb: return "[s]%s[/s]" % sanitize(self.code(False)) return '"%s"' % repr(self.value)[1:-1] def python(self) -> str: return "%r" % protectExpr(self.value) Turing-0.11-beta/src/maths/nodes/UnaryOpNode.py000066400000000000000000000017451331472757200214260ustar00rootroot00000000000000# -*- coding: utf-8 -*- import util.html from .AstNode import * class UnaryOpNode(AstNode): """Unary operator node value -- value (AstNode) operator -- which unary operator (str)""" def __init__(self, value: AstNode, operator: str): super().__init__(True) if operator.upper() == "NON": operator = "NOT" self.value = value self.operator = operator.upper() def __str__(self): return "[UnaryOp %s %s]" % (self.operator, self.value) def __repr__(self): return "UnaryOpNode(%r, %r)" % (self.value, self.operator) def code(self, bb=False) -> str: op = self.operator if bb: op = util.html.sanitize(op) if op == "NOT": op += " " return op + self.value.code_fix(bb) def python(self) -> str: return "(%s %s)" % (self.operator.lower(), protectExpr(self.value.python())) def children(self) -> List["AstNode"]: return [self.value] Turing-0.11-beta/src/maths/nodes/__init__.py000066400000000000000000000004371331472757200207570ustar00rootroot00000000000000# -*- coding: utf-8 -*- from .ArrayAccessNode import * from .AstNode import * from .BinOpNode import * from .CallNode import * from .IdentifierNode import * from .LambdaNode import * from .ListNode import * from .NumberNode import * from .StringNode import * from .UnaryOpNode import * Turing-0.11-beta/src/maths/parser.py000066400000000000000000000436311331472757200174070ustar00rootroot00000000000000# -*- coding: utf-8 -*- import re import types from typing import List, Tuple, Any, Optional from util import translate from util.log import Logger from util.math import proper_str, is_num from . import nodes class ValueType: """Types of values""" STRING, NUMBER, BOOLEAN, LIST, FUNCTION = range(5) @staticmethod def get_type(obj) -> Optional['ValueType']: if type(obj) == list: return ValueType.LIST if type(obj) == types.FunctionType: return ValueType.FUNCTION if type(obj) == str: return ValueType.STRING if type(obj) == bool: return ValueType.BOOLEAN if is_num(obj): return ValueType.NUMBER return None @staticmethod def get_name(type: 'ValueType') -> str: for name, value in ValueType.__dict__.items(): if value == type: return name class TokenType: """Token types used during the lexing process""" OPERATOR, STRING, NUMBER, BOOLEAN, IDENTIFIER, COMMA, PAREN, BRACK, BRACE, INVALID = range(10) Term = [NUMBER, BOOLEAN, IDENTIFIER, STRING] UnaryVal = ["+", "-", "*"] Opening = ["(", "[", "{"] Closing = [")", "]", "}"] TrueVal = ["TRUE", "VRAI"] FalseVal = ["FALSE", "FAUX"] Block = [PAREN, BRACK, BRACE] @staticmethod def get_name(type: 'TokenType') -> str: for name, value in TokenType.__dict__.items(): if value == type: return name class Operators: """Available operators""" math = ["+", "-", "*", "/", "%", "^", "**", "&", "|", "ET", "AND", "OU", "OR", "XOR"] # Mathematical (numeric) operators eq = ["==", "!="] # Basic comparison operators rel = ["<=", ">=", "<", ">"] # Relational operators comp = eq + rel # Comparison operators boolean = ["ET", "AND", "OU", "OR", "NON", "NOT", "==", "!=", "&", "|", "XOR"] # Boolean operators ops = list(set(math + comp + boolean)) # All operators precedence = [ ["OR", "OU", "|"], ["XOR"], ["AND", "ET", "&"], comp, ["+", "-"], ["*", "/", "%"], ["^", "**"] ] commutative = [ "|", "XOR", "&", "+", "*" ] @staticmethod def get_precedence(op: str) -> int: return next(i for i, ops in enumerate(Operators.precedence) if op.upper() in ops) @staticmethod def is_commutative(op: str) -> bool: return op in Operators.commutative @staticmethod def pretty_print(op: str) -> str: return { "|": translate("Parser", "OR"), "&": translate("Parser", "AND"), "NOT": translate("Parser", "NOT") }.get(op.upper(), op) Token = Tuple[TokenType, Any] class Parser: """Main parser class. Transforms a string into an AST tree.""" def __init__(self, expr: str): """Initializes the Parser instance. expr -- the expression to be parsed""" self.expression = expr self.tokens = [] self.index = 0 self.log = Logger("Parser") def fix_mul_tok(self): """Fixes implicit multiplication (e.g. 2pi) at token level.""" result = [] previous = (None, None) for tok in self.tokens: if previous[0] == TokenType.NUMBER and tok[0] == TokenType.IDENTIFIER: result.append((TokenType.OPERATOR, "*")) result.append(tok) previous = tok self.tokens = result def next_token(self) -> Token: """Reads the next token and advances the position.""" self.index += 1 return self.tokens[self.index - 1] def peek_token(self) -> Optional[Token]: """Reads the next token without affecting position.""" if not self.can_read(): return None return self.tokens[self.index] def match_token(self, token_type: TokenType, value=None) -> bool: """Checks if the next token matches the specified token type and (optional) value.""" return self.can_read() \ and self.peek_token()[0] == token_type \ and ((not value) or self.peek_token()[1] in (value if type(value) == list else [value])) def accept_token(self, token_type: TokenType, value=None) -> bool: """If the next token matches, advance and return True, otherwise return False without advancing.""" if self.match_token(token_type, value): self.index += 1 return True return False def accept_operator(self, operator: str) -> bool: """Wrapper for accept(OPERATOR, operator).""" return self.accept_token(TokenType.OPERATOR, operator) def expect_token(self, token_type: TokenType, value=None): """Asserts the next token is of the specified type and (optional) value. Explodes otherwise.""" if not self.match_token(token_type, value): self.log.error( translate("Parser", "Expected token ({type}) '{val}'").format(type=TokenType.get_name(token_type), val=value)) return None return self.next_token() def can_read(self) -> bool: """Checks if there is still anything to read.""" return self.index < len(self.tokens) def tokenize(self): """Converts the expression string into a linear list of tokens.""" regex = re.compile( r"(\+|-|/|%|\^|\*\*|\*|" r"==|!=|<=|>=|<|>|" r"\(|\)|\[|\]|{|\}|" r"\bET\b|\bAND\b|\bOU\b|\bOR\b|\bXOR\b|\bNON\b|\bNOT\b|" r"\bVRAI\b|\bFAUX\b|\bTRUE\b|\bFALSE\b|" r"&|\||,| |\"(?:[^\"]*)\")", re.IGNORECASE) tokenized = [x.strip() for x in regex.split(self.expression) if x.strip()] # fix exponents new_tokens = [] idx = 0 while idx < len(tokenized): current = tokenized[idx] if idx < len(tokenized) - 2 and current[0].isdigit() and current[-1].upper() == "E" and tokenized[ idx + 1] in ["+", "-"]: # if there is an E followed by a number, this is an exponent notation current += tokenized[idx + 1] current += tokenized[idx + 2] idx += 2 new_tokens.append(current) idx += 1 for token in new_tokens: if token.upper() in Operators.ops: self.tokens.append((TokenType.OPERATOR, token.upper())) elif token.upper() in TokenType.TrueVal: self.tokens.append((TokenType.BOOLEAN, True)) elif token.upper() in TokenType.FalseVal: self.tokens.append((TokenType.BOOLEAN, False)) elif token == ",": self.tokens.append((TokenType.COMMA, ",")) elif token in ["(", ")"]: self.tokens.append((TokenType.PAREN, token)) elif token in ["[", "]"]: self.tokens.append((TokenType.BRACK, token)) elif token in ["{", "}"]: self.tokens.append((TokenType.BRACE, token)) else: if token[0] == token[-1] == '"': self.tokens.append((TokenType.STRING, token[1:-1])) else: try: if re.search('^[0-9]+$', token): num = int(token) else: num = float(token) self.tokens.append((TokenType.NUMBER, num)) except: if re.search('^[a-zA-Z_0-9]+$', token): match = re.search('^([0-9]+)([a-zA-Z_0-9]+$)', token) if match: factor, variable = match.groups() self.tokens.append((TokenType.NUMBER, int(factor))) self.tokens.append((TokenType.OPERATOR, "*")) self.tokens.append((TokenType.IDENTIFIER, variable)) else: self.tokens.append((TokenType.IDENTIFIER, token)) else: self.tokens.append((TokenType.INVALID, token)) self.fix_mul_tok() def match_operator(self, expected: List[str]) -> str: """Checks if any of the specified operators are to be found.""" for x in expected: if self.accept_operator(x): return x def parse(self) -> Optional[nodes.AstNode]: """Main parsing routine.""" self.tokenize() result = self.parse_expression() if self.can_read(): self.log.error( translate("Parser", "Unexpected token ({type}) '{val}' after end of expression").format( type=TokenType.get_name(self.peek_token()[0]), val=self.peek_token()[1])) return None return result def parse_expression(self) -> nodes.AstNode: """Parses an expression.""" return self.parse_or() def parse_or(self) -> nodes.AstNode: """Parses an OR operation.""" expr = self.parse_xor() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["OR", "OU", "|"]) if op: expr = nodes.BinOpNode(expr, self.parse_xor(), "|") continue break return expr def parse_xor(self) -> nodes.AstNode: """Parses a XOR operation.""" expr = self.parse_and() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["XOR"]) if op: expr = nodes.BinOpNode(expr, self.parse_and(), "XOR") continue break return expr def parse_and(self) -> nodes.AstNode: """Parses an AND operation.""" expr = self.parse_equality() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["AND", "ET", "&"]) if op: expr = nodes.BinOpNode(expr, self.parse_equality(), "&") continue break return expr def parse_equality(self) -> nodes.AstNode: """Parses a comparison/equality.""" expr = self.parse_additive() while self.match_token(TokenType.OPERATOR): op = self.match_operator(Operators.comp) if op: expr = nodes.BinOpNode(expr, self.parse_additive(), op) continue break return expr def parse_additive(self) -> nodes.AstNode: """Parses an addition or subtraction.""" expr = self.parse_multiplicative() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["+", "-"]) if op: expr = nodes.BinOpNode(expr, self.parse_multiplicative(), op) continue break return expr def parse_multiplicative(self) -> nodes.AstNode: """Parses a product, division, or modulus.""" expr = self.parse_exponent() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["*", "/", "%"]) if op: expr = nodes.BinOpNode(expr, self.parse_exponent(), op) continue break return expr def parse_exponent(self) -> nodes.AstNode: """Parses an exponentiation.""" expr = self.parse_unary() while self.match_token(TokenType.OPERATOR): op = self.match_operator(["^", "**"]) if op: expr = nodes.BinOpNode(expr, self.parse_unary(), op) continue break return expr def parse_unary(self) -> nodes.AstNode: """Parses an unary operation.""" op = self.match_operator(["+", "-", "NON", "NOT", "*"]) if op: return nodes.UnaryOpNode(self.parse_unary(), op) return self.parse_call_pre() def parse_call_pre(self) -> nodes.AstNode: """Parses a function call (1).""" return self.parse_call(self.parse_term()) def parse_arg_list(self, array=False) -> List[nodes.AstNode]: """Parses an argument list.""" result = [] if array: tok_type = TokenType.BRACK sym_open = "[" sym_end = "]" else: tok_type = TokenType.PAREN sym_open = "(" sym_end = ")" self.expect_token(tok_type, sym_open) while not self.match_token(tok_type, sym_end): result.append(self.parse_expression()) if not self.accept_token(TokenType.COMMA): break self.expect_token(tok_type, sym_end) return result def parse_param_list(self) -> List[str]: """Parses a lambda function parameter list.""" result = [] self.expect_token(TokenType.BRACE, "{") while not self.match_token(TokenType.BRACE, "}"): result.append(self.expect_token(TokenType.IDENTIFIER)[1]) if not self.accept_token(TokenType.COMMA): break self.expect_token(TokenType.BRACE, "}") return result def parse_indexer(self) -> nodes.AstNode: """Parses an indexer expression.""" self.expect_token(TokenType.BRACK, "[") expr = self.parse_expression() self.expect_token(TokenType.BRACK, "]") return expr def parse_call(self, left: nodes.AstNode) -> nodes.AstNode: """Parses a function call (2).""" if self.match_token(TokenType.PAREN, "("): return self.parse_call(nodes.CallNode(left, self.parse_arg_list())) elif self.match_token(TokenType.BRACK, "["): return self.parse_call(nodes.ArrayAccessNode(left, self.parse_indexer())) else: return left def parse_term(self) -> Optional[nodes.AstNode]: """Parses an atomic term.""" if self.match_token(TokenType.NUMBER): return nodes.NumberNode(self.next_token()[1]) elif self.match_token(TokenType.BOOLEAN): return nodes.NumberNode(bool(self.next_token()[1])) elif self.match_token(TokenType.STRING): return nodes.StringNode(self.next_token()[1]) elif self.match_token(TokenType.IDENTIFIER): return nodes.IdentifierNode(self.next_token()[1]) elif self.accept_token(TokenType.PAREN, "("): stmt = self.parse_expression() self.expect_token(TokenType.PAREN, ")") return stmt elif self.match_token(TokenType.BRACK, "["): stmt = nodes.ListNode(self.parse_arg_list(True)) return stmt elif self.match_token(TokenType.BRACE, "{"): args = self.parse_param_list() self.expect_token(TokenType.PAREN, "(") expr = self.parse_expression() self.expect_token(TokenType.PAREN, ")") return nodes.LambdaNode(args, expr) else: if not self.can_read(): self.log.error(translate("Parser", "Unexpected EOL")) else: self.log.error( translate("Parser", "Unexpected token ({type}) '{val}'").format( type=TokenType.get_name(self.peek_token()[0]), val=self.peek_token()[1])) return None def beautify(self): """Beautifies the expression (adds spaces between operators).""" result = "" prev2: Token = None prev1: Token = None for typ, val in self.tokens: # remove space between operator and term only if operator is unary if (result # only if string contains contents and result[-1] == " " # only if there is a space to remove and (typ in TokenType.Term or val in TokenType.Opening) # only if this is a term or block and ((prev1[1] in TokenType.UnaryVal) # only for unary op and ((not prev2) or (prev2[ 1] in TokenType.Opening + TokenType.UnaryVal) # no space between opening and unary op or (prev2[0] == TokenType.COMMA) # no space before comma ) ) ): result = result[:-1] # add space before operator only if after term or closing if (typ == TokenType.OPERATOR # only if operator and prev1 # and something before and (prev1[1] not in TokenType.Opening) # no space after opening and (prev1[0] != TokenType.OPERATOR or (prev2 and prev2[1] not in TokenType.Opening ) ) ): result += " " # remove space for i if typ == TokenType.IDENTIFIER and val == "i": if prev1 and prev1 == (TokenType.OPERATOR, "*"): result = result[:-3] # token if typ in [TokenType.NUMBER, TokenType.BOOLEAN]: result += proper_str(val) elif typ == TokenType.STRING: result += '"' + str(val) + '"' else: result += str(val) # comma is always followed by space if typ == TokenType.COMMA: result += " " if (typ == TokenType.OPERATOR and prev1 and prev1[0] != TokenType.OPERATOR and prev1[1] not in TokenType.Opening): result += " " prev2 = prev1 prev1 = (typ, val) # remove double whitespaces return re.sub("\s\s+", " ", result) def quick_parse(expr: str) -> nodes.AstNode: """Parses the specified expression.""" p = Parser(expr) return p.parse() Turing-0.11-beta/src/media/000077500000000000000000000000001331472757200154755ustar00rootroot00000000000000Turing-0.11-beta/src/media/accept.png000066400000000000000000000013101331472757200174350ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<jIDATxڤSMhQv͏MAJVȵZ Ƃ ED =͓"h)ACѦ UOziAPRX,6vvM}fo ?18zT cN#'6;D#gNp]DCP :~W\yj63]~qi$צT.GهWE5>) #w.La+lSkȵPlC,fxPQq{<@$ b9(CCրK!W@0+lډ`,^kTt@J #ִ\ʎSࡪV6!רr9jaN %nG lRp x v[8=om#1Bchۈ~ɤW[qQ;ǶEJ-MQ1ٗ}qž.K$Ii ,al 1WBJpS5/uC]wRRk!1Pṏ0go*wR+: >@\67]o,=^\kUqL.=kcF'[&_# 0=IENDB`Turing-0.11-beta/src/media/algobox.ico000066400000000000000000013226261331472757200176400ustar00rootroot00000000000000 ( f ( @@ (B(00 %j   h.( xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"xD xD"bxD"xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC"xC"5xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE wD!^f33xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!wC XxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"yC"&xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wE oxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"UUxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!M xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!mI$xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!|xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC!ExD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!@+ xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uE"%xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{B!xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zB2xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!@ xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zB2xD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xF#BxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!îƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƽƳxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD OxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!įxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ȶxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"YxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!mW8xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!Q1uxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|I'O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/}K)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!V7|dvC vC vC vC vC vC vC vC vC wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!wC!xD!ya`BxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC rAtB tB tB tB tB tB tB tB tB tB tB tB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC wC!wC!wC!wC!yE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rAļtB tB tB tB tB tB tB tB tB tB tB tB tB tB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC wC!Ǿ̻xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!sA nwE%tB tB tB tB tB tB tB tB tB tB tB tB tB tB tB tB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB uB vC vC vC vC vC vC vC vC vC vC vC vC vC vC vC xF#{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uB Xq@q@q@q@q@q@rArArArArArArArArArArArArArArArArArAsA sA sA sA sA sA sA sA sA sA sA sA sA sA sA sA sA kQxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!sA kq@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArAsA sA sA sA sA sA sA sA sA sA sA sA sA sA sA xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC nVq@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArArAsA sA sA sA sA sA sA sA sA sA sA sA Ƿ}exD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uH(q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArAsA sA sA sA sA sA sA sA sA sA S3xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!q@ýwH(q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArArAsA sA sA sA sA sA Y;xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!tB kRq@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArAsA sA sA sA ~iîxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC r\~p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArArArAsA kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xJ-³p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArArArArAX9xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!q@p@p@p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArArArArAxH)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!tB U9p@p@p@p@p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArArAmTƲxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC vazep?p?p@p@p@p@p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArArArArArxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{O1p?p?p?p?p?p@p@p@p@p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArArArArAǹ\>xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rA¼p?p?p?p?p?p?p?p@p@p@p@p@p@p@p@p@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@q@rArAsA xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!tB ʸxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!{gxxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!}R5aDxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rAyE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uB ͼxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!~k~xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!Y=fJxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!\>tZtZtZtZtZtZtZtZ^@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rAzF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uB xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!pxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!]BkPxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!sB {H&xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uB ƽxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!bHpVxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uD"}K)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!Q1u\¸îyaV7xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zG$tZįzb|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U5[=xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!gMu\xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~L+įU5xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vE%N,xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u[mxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#ɷ}K)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{H&ʸR1xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!lSyaxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zF$ϿN-xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yH)P0xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|I'xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!ĹxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U6rXxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!pXm>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>n>n>n>n>n>n>n>n>n>gxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ɷzG$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{L,m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>n>n>n>n>n>n>n>T4xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!bEwxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ƽwM0l=l=m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>n>n>n>tG)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ͼ{H%xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!lVl=l=l=l=l=m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>n>iQįxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U6­uhL|J(xD!xD!xD!xD!xD!xD!xD!zG$bEngxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!v_}l=l=l=l=l=l=l=m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>m>ynxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!`BxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U6ƽxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~P0l=l=l=l=l=l=l=l=l=l=m>m>m>m>m>m>m>m>m>m>m>m>m>Y:xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!űS3xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!}K)P0xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!l=l=l=l=l=l=l=l=l=l=l=l=m>m>m>m>m>m>m>m>m>m>m>xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U5kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!dGkxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xO3l=l=l=l=l=l=l=l=l=l=l=l=l=l=m>m>m>m>m>m>m>vJ-dzxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ou\xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!W8űxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{fo[l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=m>m>m>m>m>lUtxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!bDxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!S5k=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=m>m>^@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!k=k=k=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!sYxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|J(bExD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!l>k=k=k=k=k=l=l=l=l=l=l=l=l=l=l=l=l=l=l=l=ʸxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~L+xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!v]xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!m{S7k=k=k=k=k=k=k=l=l=l=l=l=l=l=l=l=l=l=l=zP4yxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!_AxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!jNuxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD![=t_k=k=k=k=k=k=k=k=k=k=l=l=l=l=l=l=l=l=l=q[bExD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!oUw^xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!R2gKgKgKgKgKgKgKgK~M+xD!xD!xD!xD!xD!xD!xD!xD!xD!zG$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!k=k=k=k=k=k=k=k=k=k=k=k=l=l=l=l=l=l=l=yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!w^X9xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wmRxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!k=k=k=k=k=k=k=k=k=k=k=k=k=k=k=l=l=l=l=ϾxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|e}K)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wmRxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ŻxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rl=k=k=k=k=k=k=k=k=k=k=k=k=k=k=k=k=l=m>xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wmRxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!νxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!`C}V mQxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{H&dGxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wmRxD!xD!xD!xD!xD!xD!xD!xD!xD!u\dHxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#~X@j<j<j<j<j<j<j<j<j<j<j<j<j<k=k=~Y?{H&xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wsgKgKgKgKgKgKgKgKgKż|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ôyfj<j<j<j<j<j<j<j<j<j<j<j<j<j<j<zfȿxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!˹űxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zG$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wűxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!jO¹i<i<j<j<j<j<j<j<j<j<j<j<j<j<j<ĻrXxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!kPw^xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wqxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zG$mA#i<i<i<i<j<j<j<j<j<j<j<j<j<m@"}K*xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zF$ùxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wU6xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ƹ]Ei<i<i<i<i<i<j<j<j<j<j<j<j<]DxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ʸfJxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|ji<i<i<i<i<i<i<i<i<j<j<j<j<}kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!kyE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wtxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!oUi;i;i<i<i<i<i<i<i<i<i<j<j<v]xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{H&|xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!w~L+xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|I'ļi;i;i;i;i;i<i<i<i<i<i<i<i<ƾN-xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!jNxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!nB&i;i;i;i;i;i;i<i<i<i<i<nB%xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!X8Z;xD!xD!xD!xD!xD!xD!xD!xD!xD!wR2xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!`Hi;i;i;i;i;i;i;i;i;i<i<bJxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u\oh;h;h;i;i;i;i;i;i;i;i;p|dxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!w}K*xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~M+h;h;h;h;h;i;i;i;i;i;i;R1xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!W8tZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZtZ]>xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!žžh;h;h;h;h;h;h;h;i;i;i;xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!nD(h;h;h;h;h;h;h;h;h;pE)xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yacLh;h;h;h;h;h;h;h;h;fOjxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!N-rh;h;h;h;h;h;h;h;h;vV7xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!h;h;h;h;h;h;h;h;h;xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!h;h;h;h;h;h;h;h;h;űxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!gpG+h;h;h;h;h;h;h;rJ.pxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!R2fPh;h;h;h;h;h;h;iTZŻxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ƽξ̻̻ƽǾ{H&xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!o[f:ucxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U6ĺrXZ;{H%xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"U6kP}ͻv]xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!gKf:nSxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vr|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#v]îxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zF$e9|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!Ǵ~xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!jOxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ùjA$ǾxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!bExD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!P0N,xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!tbxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{H%oUxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!V7hLxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!lQtZxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD![=˺xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~fxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{H%~L+xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!oTu\xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!T4~xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ǾxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!x_O/xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!gxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!rXx_xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!kxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!}K)O.xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|ezF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u\X8xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!jNqxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!dGxxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!v]}exD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!T4yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!űw^xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~M+S3xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!pVbExD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!oUzG$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ͻU6xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!~L+xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!{ckxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|eʸqW|I'xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#eIxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!P0X9xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!}K)vv]bEP0}K)xD!xD!xD!xD!xD!{H%O/]>rXq¸dHxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ɷxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!iMwxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!iqxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ȿ|J(xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U5\>xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!bDkxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ĺxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!űxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zF$ŻR1xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!puxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!R1bExD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!X9aDxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!Q1bDxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD"SxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!|J(ŰV7xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwD OxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!ȵxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!n{H%xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZyE ?xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uyxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!N-ƳZ;xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwA$+xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!_AdHxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!N-X8xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"Z@ xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!zF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!^@~ϾƽiMxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxE!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!˺xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!U6sYxî̻ŻƽƽƽƽͻƳ}x_\>yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vwxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD!{xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vC uB tB sA rAp@o?wC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZvB!6xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZzF#,xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxF#BxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZvA!'xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZyC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"Z@@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZvB!6xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwD GxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZyE ?xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZzE 0xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZI$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwF!MxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZI$yC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"Z@ xC"yxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZyC9wD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"ZwD"yE#;xD"byD!xD!xC"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD"<???( xD xC!xC!xD!xD xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xD! xC xE"yD xC xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD xC xC!8wIwD wD xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xC!wC!xD wD wB!PxC!xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD xC!wC!wC!wD xD xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD xD!xD xD!wD 3wB!xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!wD!xC wD!xD!0wD!xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD!wD!vC vC!xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!wC wC!wDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD!wD wD :wD xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC wD!xDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD xD!wC wBwC xDxD!xD xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xC!xC QxC xDxD!xD xD!wC xD!wC wBwBwBwBwBwBwBwBwBwBwBwBwBwC xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!wC wBwBwBwBwBwBwBwBwBwBwBwBwBwCxD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD!xD!xD!xC!wD!xC ~wD!xDxD!xD xD!xD!wC xD!zG%yF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zG$xE"wC wD!wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC!wC xD!wC yF$zG$zG$zG$zG$zG$zG$zG$zG$zG$zG$zF$zG%yF$wC xD!xD!xD!xD!wC yF#zG$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zF$zG$xD"wC xD!xD!xD!xD!xD!wD!xD wD!xDxD!xD xD!xD!wC yE#̻ùzG%wBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#p9~f|cq:yF#xD!wC wC xD!q;n6n7n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6n6u@xD!wC xD!xD!xD!wD!xC wD!xB xDxD!xD xD!xD!yE#q:Ų]?s>wD!vC vC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC wC!yE#p9¬eHs=yE"xD!xD!xD!vAn`Bt?xE"xD!xD!xD!wD!xD wD!yCxDxD!xD xD!wC zF$n7l}fl7uD"sAsAtA tA tA uA uA uA uA uA uA uA uB uB uB vB uB uB uB uB vC vBvC zG%wBxD!xD!xD!xD!t?Ż}ep:yF#xD!xD!xD!wD!xD wC!yDxDxD!xD xD!wC!xE"t>]Al6uD#tB tB sAsBsBtBtBtBuBuBtBtBtAtAuBuBuBvCvCvCvC!s?S4Ǵr<yE"xD!xD!xD!xD!t?ͼx_q:yF#xD!xD!xD!wD!xD wD!yCxDxD!xD xD!wD!xD!wBwE$̿q?sA sB sA tB tB tB sA sB tB tB tB tB uB uB uB tA tA uB uB uB uB wE"o9u]zo7zF$xC!xD!xD!xD!t?ξy`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!yE#p;zK,q>sA sA sA sA tB tB tB sA sA sB tB tB tB uB uB uB tA tA tA uB wE#l6gJs=yE"xD!xD!xD!xD!t?ξy`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!wC zF$o7qhOn9tB!r@r@sA sA sA sA tB tB sA sA sA tB tB tB tB uB uB uB uB uB q=ʺ|I(vBxD!xD!xD!xD!xD!t?y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!wC!xE"s>aFwj4uC#sA sA r@r@r@ sA sA sA tB tB tB sA sA sB tB tB tB uB uB s@yH(˹s=xE"xD!xD!xD!xD!xD!u?ʸy`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!wBxF&l9sB!rArAsA sA rAr@r@r@ sA sA sA tB tB sA sA sA tB tB uC!p;dIn7zF$xD!xD!xD!xD!xD!wC N-S3R2R2R2R2R2R2R2R2R2R2R2R2R2R2R2R2R2T4|J)hy`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!yE"q<sC!q@rArArArAsA sA sA rAr@r@ sA sA sA tB tB tB sA sAuD#k6skPr<yE"xD!xD!xD!wC wC xD!vAu@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@vBo7rXy`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!wC zF$n7vV8o<rA q@q@qArArArAsA sA sAr@r@r@ sA sA sA tB tB uC"m9}L*vAxD!xD!xD!xD!xD!xD!wC xD!xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$r<u\y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!wC yE"s=eKw`j6sC!rArAr@q@qArArArAsA sA sA rAr@r@ sA sA tB sAtC!ξt>xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!wByH(h4sB"q@q@rArArAq@q@qArArArAsA sA sAr@r@ sA!p=T7n7zF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!yE"r=Ƹn=q@q@q@q@q@q@rArAr@q@qArArArAsA sA sA tC"l7v_pUr;yE#xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!wD!zF$o7zvH(o=q@p?p?p?q@q@q@rArArAq@q@qArArArAuC#j5N-vAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!wC yE"s<hOcIl9rA q@q@q@p?p?q@q@q@q@rArAr@q@qArArA p=Ⱥùu@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!wBzJ*qg4rC"p@q@q@q@q@q@q@q@q@q@rArArArArA p?xI)o7zF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!s?i6qA!p@p@p@p@q@q@q@q@q@q@q@q@q@rAsB!m:eJt[q;yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!wD!yF$o8~ſp?n<o>n>n>n>n>o>o>o>o>o>o>o>o>p>rA h3tQ1u@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!wC yE#r<lTǻƹǺǺǺǺǻǻǻǻȻȻȻȻɼɼɼƹȿvAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;u[y`q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!vA|M-o7yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#q;u\yaq:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!t@µyaq:yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;tZx_q:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!yF$p8T5u@xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vB~L+cFbEbEcF~M+vBxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!wC yE#r;pXwBwC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!vBs>s>s>s=vBxD!wC xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!vA~P1o8yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xE"yF#yF$zF$zG$zF$yF#yE#xD!xD!xD!wC xD!xE"xE"xE"xE"xD!wC xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!uAĸ~gp9yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!yE"yF#wCt?q;o8n7n6o7p9r<u@xD!yF$xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!yF#p9X9u?xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"yF#s=p9yE#[=w^r}zklQP/t?o8vByF#xD!wC xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!wC yF#r;t]xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#u@q:cF¸s}K*p:xE"xD!wC xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!v@S5p9yF#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#r<P/îlr<wBxE"wC xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!wC vC Żmo8yF$wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#r;cFîwBvBxD"wC xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#q:\=t?xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE#s=^@ȵt?xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q:xaǾȾȿȿȿɿɿɿyE#wCxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD xD!wByF$p9yF#wC xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"u@W9pB#m>n? n?m?m?m?m?n?n?pA"g4}i­q:yF#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#p9[xE"wC xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"Ǿ{R7h8l=l=l=l=l=l=l=l=n?f3ro7yF$wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vB}L*Ƴzp9yF#xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#r;q\e4m? l=l=m>m>m>m>m>m>l=ĸ`Cs>xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#p9hʸgKxE"r<n5n6o7n6o7u?~M,l~L+vAxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q:|g~c1m?!k=k<k<l=l=l=m>k;sG)zG$wBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#q:į{p9s=wC yE"zG$zG$yF$zG$yF$xD!vBo8|J(·sYr;yE#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"u?[>h8l=l=l=k=k<k<l=m>h7bIƲr;yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE"n5yF#yF#xD!xD!wC xD!xE"xE"xE"xD"xD!zG%t>{I'n6zG$xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wCyF$nA#j;k=k=l=l=l=k<m?!c1nwo7yF$wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vAN-S3u@yE"wC xD!wC xD!u@t>t?t>u@xD!wC zG%o8oïq:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"s=|V;g8k>k=k=k=l=l=m> e4eHs=xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t>\>ͼs>yE"xD!xD!xD!xD!wC U5^@\>^AS3wBxD!xD"u@U5Ͽu?xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q9ks^d3l? j<j<j=k=k=k<l=ĺ|I'vBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=fJo7zF$xD!xD!xD!xD"t?˹q;yE#xD!wBzG$ƽvBxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t>`Cc1l?k=k=k<j<k=h9tJ-ȵs<xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=gLn6zG$xD!xD!xD!xD"t?ξİq;yF#xD!wC yF#ǾvBxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wB{H&g9j<j<j<k=k=l>e5eN|n7zF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t>`Cn6zG$xC xD!xD!xD"t?ͼįs=zH%yF$xE"zG%u@xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t>nB$h:j<j<j<j<l? b1qjNr<yE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"u@S4o8yF$xD!xD!xD!xD"t?ͽj0 r<r;m4T4İq:yE#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$p9q}W>f6j=i;i;j<k=e5}K*vAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wBzG$Ļu@xD!xD!xD!xD!xD"t?ͽ­­Ƽn6zG$xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t>dIuab1k>j;j<j<i;k=żʹt>xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"s=ʸW7u@xE"xD!xD!xD"t?ͽt[q;yE#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vB|J(a1j>i<i;j<g8uL0n7zF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!yF$o7xn6zG$wC xD!xD"t?ͽN-vAxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u@g9i<i<i<j=d4hRnSr<yE#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t?Z<\>s=yE"xD!xD"t?ͼ­q:yF#xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$p8vnB&g8i;h;j> `0tN-uAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"r<îͼyF#wC xD!xD"t?νdHs=yE"wC xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=jN~ZBd5i<i;i<d5˻u@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!wCyE"~M+}K*}L*|J)P/zG$wC xD!xD"t?̻q;yE#xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vA~M+vd`0i=h;h9j= žo7yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!wC vAvAvAvAu@wC xD!xD!xD!wCX:dGbEbEbEbEbEbEbEbEbEdG|J(vBxD!wC xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wAa1i=h<e7vN4sXq;yE#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!wC wC wC xD!u?s=s>s>s>s>s>s>s>s>s>s=wBxD!wC xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$p8|g:g:i=a2kWQ1u@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD"yE#yF$zG$zH&{H&{H&{H&zG%zF$yF#yE"xE"xE"xE"yE"xD!wC xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC yE#r<oTnD'f8j> `/x˽vAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"yF$xD!u@r;o8n6m5n6m5n7p9s=vAyE"yF#xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!uAO/\Dc5i=d6o8yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!yF#u@o8vAU5rXr}ifJ}L*r<p9wC yF#wC wC xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!xCyg_/h;j? ƿv]q:yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"wC p9V6ʸ{cwC r;yF#xD!wC xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$p8a2e7wQ8T4u@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE"u@wC oUq:xE"xD!wC xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE#q;t[h<`0nZ˾xC wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"u@~L+ƽ}r;yE"xD!xD!xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u@S3pG,], |p8yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!wCxE"ȿvq:yF#wC xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD Ƹ_H_0zbq:yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#p9`Cs=yE"wC xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$p9ygb4W7u?xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"t?Y:ɷr;yE"xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q:yasM3ʾyE"wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF$o7vokq{ɶY:t?xE"xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"t?W7q_q:yF#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vAƽZ;wBq:n6o8p8p9o8o7n6s=zG%pVpo8yF$wC xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE"˾þ}fp9yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vA}L+om5t?xD!yF#zG$yF$yF$yF#yF$zF$zG$xE"wC q:u@o8yF$xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#p9Z;t?xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"t?\=¹q;yF#yE#xD!xD!xD!xD!xD!xD!xD!xC xD!xD!xD!zH%r<_B̻t>xE"xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#p9~gɾ{G$vBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=gJo7zG$wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC zG%żvAxD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD"t?[`Cİo8zH%xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!yE#vAP0Ͽu@xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#q:\>t?xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u@Q0[=o7yF#zF$yE#xE"xD!xD!xD!xD!xD"yE"yF#zG$wC l3 įq:yF#xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF$o8mǾ{H%vBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE"iNs=o7r;t>u@vAvAvAu@s=p9o8yE#n7zF$xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"s>_@t=xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yF#p9}rX^AQ1~M+}L*N-U5fI}ehLs=yE"xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vB{G%kq9yF#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE#r;nTvBwC xD!xD!xD!xD!wD!xD wD!yDxDxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE#q;_Bt>xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"s>¸gp:yF#xD!xD!xD!xD!wD!xD wD!yDxCwD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF$o7sž{H&vBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE"t>\>ɷs=xE"xD!xD!xD!xD!xD!wD!xD wD!yDwDxC!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"s=cEu?xD"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q;pVŻzH%vAxD"wC xD!xD!xD!xD!wD!xD wD!yDxC!wD xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!vB{H&lq9yF#xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q:bExD!u@yE"wC xD!xD!xD!xD!xD!wD!xD wD!yDwD xC!wD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"r<İaEt>xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yF#s=xE"sɶiMq:wBxE"wC xD!xD!xD!xD!xD!xD!wD!xD wD!yDwD xD!}wD!xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC zF$n6z{H&vBxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE#wC p9wBdGy˹~fT4r;r<yE#xD!wC xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDwD!wD!RxD!xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!u@X9}{ywusroonrq[xC wC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!yF#wC s=o7p9u@xD!zF$zG$yF#wC s>o7p9u@yE"yE#xD!wC xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDwC wC wC!xD!wD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!u@n6n6n6o7o7o7p7p8p8p8q9q9q9q9q9p8r;xD!wC wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xE"zF$yF#xD!wC wBwBwCwC xE"zF$yF#xD"xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxCwD!xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD"zG$zG$zF$zF$yF$yF$yF$yF$yF$yF$yF$yF$yF#yF$yF#yF$yE#wC xC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxD!xD!GxD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC wC wC wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxE wC xD wD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxC!xC!)xC!xD xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxD wC!TwC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxC xD cxC wC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDxC!xC JwC!wD wD xD wD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDwD!wE!xC!xC!wD!xD!wC wC xD xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDwC uC!xC!)wC wC xD!xD!xC!wC!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!yDwD vD wCxD"xD!AxC!SwC!YxD YxC!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YxD!YwD!XxD ^wD!:xC!wD!xD!xD!xC!wC!xD xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wD!xD wD!????(@ @xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD!wC xD!xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD!xD!wD xD!xD!PxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!wC HxD wC!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD wC!wD!wD xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD!xC wD!uE xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC!wC!sxC!xD!xD!UxD!wC xE"zF$yF$yF$yF$yF$zF$xE"wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!zF$yF$yF$yF$yF$zF$yE#wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xD!wC wBxD!xD!UwC xD"t>n6o7o7o7o7n6t>xD"wC wC wC wC wC wC wC wC wC wC xD!vAn7o7o7o7o7n6q;xD!wC wC xE"yE"xE"xE"xE"xE"xE"xE"xE"xE"xE"xE"xE"xD!wC xD!xC!xC 6xC xD!xD!UxE"t>eI|~~|fJt>yE"xD!xD!xD!xD!xD!xD!xD!xD!xD!u@S3}}}|y`u?xD"xD!t>s<s=s=s=s=s=s=s=s=s=s=s=wBxD!wC xD!xD!QxD!xD!xD!UyF#q:v]°m6wE#uB vB vB vB vB vB vC vC xE#n7mo7yF$xD!ƲZxE"wD!wD!WwD!xD!xD!UxD!vA}M-q?sB sB sAtAtAtAtAuBuBwE#m7rXq:yE#xD!cFs=yE"wD!wC!WwC!xD!xD!UxD!yE"s=ʾR4p<tB!sA sB tB tB tB tA uB uB r>S3u@xD!xD!aDs=yE"wD!wD!WwD!xD!xD!UwC!yF$o8oWl7tB"s@ sA sAsAsBtB uB!r>Q2t>xE"xD!xD!{­bDs=yE"wD!wD!WwD!xD!xD!UxD!yF#q:qXi5tC"rAr@r@ sA sA sAuD"m8oVo7yF$xD!wC p9n6n7n6n6n6n6n6o8i0 U5aDs=yE"wD!wD!WwD!xD!xD!UxD!xD"u@Q2ĵk8sB!rArArAr@r@s@ uC#j5yap9yF#xC xD!yF#zG$zF$zF$zF$zF$zF$zF${H&u@bEaDs=yE"wD!wD!WwD!xD!xD!UxD!xD!xD"t?ʿtE%p>qA qArArArArA tC"m8ƷV7t?xE"xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=`BaDs=yE"wD!wD!WwD!xD!xD!UxD!wD!yF$p8\@k8q@p?p?p?q@q@p>uE$u@xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=`BaDs=yE"wD!wD!WwD!xD!xD!UxD!xD!yF#q:t\~jj7sD$rB!rB!rB!rB!sD#n<aFo7yF$xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=_BaDs=yE"wD!wD!WwD!xD!xD!UxD!xD!xD"u@T6~fp9yF#xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!yE"s=aDcFr<yE"wD!wD!WwD!xD!xD!UxD!xD xD!xD!u@ZxE"xD!xD!xD!xD!xD!wC xD!xD!yE"yE#yE#yE#u@S4T5u@xD"wD!wD!WwD!xD!xD!UxD!xD xD!yF#p9wCwD!xD!xD!xD!xD!xD!wC yE"yF#uAr<q;r;t?yE"xD!o8o8vBxD!wC wD!wD!WwD!xD!xD!UxD!xD xD!yF#q:w`p8yF$xD!xD!xD!xD!wC yF#s=q:O/eImRiMV7t>q:zH%zG$xD!wC xD!wD!wD!WwD!xD!xD!UxD!xD xD!xE"u?W9lo8yF$xD!xD!xD!wC yF#q:bE̻}er;xD!xD!wC xD!wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!vB^@s=xE"xD!xD!wC yF#q:zbr<xE"xD!xD!wD!wD!WwD!xD!xD!UxD!xD xD!xD!yF#q:rnooq}i¼yE"wC xD!xD!xD!xE"t>Z;qp8yF$wC wD!wD!WwD!xD!xD!UxD!xD xD!xD!yF#q:zdtH+`- e3e3e3c0Ⱦ®p9yF#xD!xD!xD!yF$o7v]lQrXxxE"wC xD!wD!wD!WwD!xD!xD!UxD!xD xD!xD!xE"t>Z=p\g5oA#n@"k<zP4po8yF$xD!xD!xD!wC xD!V7m4q:o8n6n6s=ʸgKr<yE#wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!wC xE"¼~c1m?!m> e4gPbDs=yE"xD!xD!xD"u@S3zl3 |J(yF#T4Y;N-r<Y:hp9yF#wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!yF#r:e5l>l?!c1u{G%wBxD!xD!xD!xE"t>Z^A{T:f6j<j<tp8yF$xD!xD!xD!xD!wCyF#ym4zG$wC hLr<yE#wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!wBzG%þo[c3g9wO4eIr<yE"xD!xD!xD!xD!yF$o8ƱP/vAxD!yF#wC xD!wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!yE#s<b2d5iS}J(vBxD!xD!xD!xD!xD!xE"t>_BgJs>xE"{o8yF$wC wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!yF#q9oe7a1xr<yE#xD!xD!xD!xD!xD!wC xD"t?n6n6vAzG%yE#V7[[=pp9yF#wC wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!yE#r<hLsyq9yF#xD!xD!xD!xD!xD!xD!yF#p9ȵ˺ξ|I(vBxD!wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!vAN,jOr<yE#xD!xD!xD!xD!xD!xD!vB|J(dGvAq;q:q:t?P/dzoUq:yF#wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xE"t>N-vAxD!xD!xD!xD!xD!xD!xE"t?X9w_k2 yF$yE#yF#yF#yF#r;~L+no8yF$wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!yF#q9|u>xE"xD!xD!xD!xD!xD!xD!xE"t>Y;oUo7{I'zF$zG$zF$zG%vAzG%po8yF$wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!yE#r;mRzq9yF#xD!xD!xD!xD!xD!xD!xD!vA~M,Ļ}K)p9o7n6n7p9s=u[q:yF#wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xD!u@Q0jQr<yE#xD!xD!xD!xD!xD!xD!xD!yE#q;ʸįP0u@xD"wD!wD!WwD!xD!xD!UxD!xD xD!xD!xD!xD!xD!xD!xD!xD"v?P/vAxD!xD!xD!xD!xD!xD!xD!wC yE#r<jOp8yF#wC wD!wD!WwD!wC!wC!UwC!xD!xD!xD!xD!xD!xD!xD!xD!yF$p9u@xD"xD!xD!xD!xD!xD!xD!xD!xD!wC yF#q:hu@xD!xD!xD!wD!wD!WwD!xD!xD!HxD!xC xD!xD!xD!xD!xD!xD!xD!yF#q:rX|r:yF#xD!xD!xD!xD!xD!xD!xD!xD!xD!wC yE#q:W8ȿ¬kPq:wC xD!wC xD!wD!wD!WwD!wD!wD!!wD!xC xD!xD!xD!xD!xD!xD!xD!xD!wB|I'mRlQjOhNgLeKcIeK~O/vAxD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC wC yF#t?o7s=yF$|J({H&u@o7r;yE#xD!wC xD!xD wD!wD!WwD!xC wD!xC xD!xD!xD!xD!xD!xD!xD!wC xD!wBr;r;r;r<s<s<s=s<vAxD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC xE"yF$yE"wCvBwBxD!yF$yE#xD!wC xD!xD!xD wD!wD!WwD!xC!xC!;xC!wD!xD!xD!xD!xD!xD!xD!xD!wC xD!yE#yE#yE#yE#yE#xE"xE"xE#xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!WwD!xD wC mxC wD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!VwD!wD xD!QxC!wC!wD xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!XwD!wC!xC! wC XxD!xC!wD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!9wD!xC wC wC wD xC!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!(0` $xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD wC!xD!xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD! wC!xD!xD!xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!wC wC!BxC xD!xD!xD!xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD!wD!wD!wxC xD!xD!xD!wC xD"xE"xE"xE"xE"xD!wC xD!xD!xD!xD!xD!xD!xD!wC xD!xE"xE"xE"xE"xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wC!GwC!xD!wC!xD!wC t?t>t>t>t>vBxD!wC wC wC wC wC wC wC xD!uAt>t?t?t>u@xD!wC yF#zF$zF$zF$zF$zF$zF$yF$zF$yF#wC xD!wC xD!xD!xD"wC xD!W8Zƺo7yF$xD!xD!wC yE"yE#u@r<s=u@yE"cFbDwC wC xD!wD!wD!xD!xD!xD!wD yF$p8nSq;yE#xD!wC yE#t>q:R2cFcFQ1q:o8t?wC xD!wC!wD!wD!xD!xD!xD!xD yE#r;pXO.uAxD!wC yE#r<[=ϿͼZ;t>yE#wC wD!wD!wD!xD!xD!xD!xD xD"u@R3ȾȾɿȾͿs=xE"xD!xE"t?W8U5t?xE"wC!wD!wD!xD!xD!xD!xD xD!xD!u@źuJ-g6m>c0 t_o7yF$xD!yF#p8Ʊ{~îĮo8yF#wD!wD!wD!xD!xD!xD!xD xD!yF#q9gPf4oB#d2qXq:yF#xD!vB{H&iMl3 l3 f*j0 kPzG$wBxD!wD!wD!xD!xD!xD!xD xD!yF#r:s\tc2n@"g7R2u@xD"xE"t?T4Ƽp8vAkPį^@k1 ǾR1u@xE"wD!wD!xD!xD!xD!xD xD!xD"u?U7d3j<qE'˾u?xD"xD!xE"u?R2̻r;p9voTk2 ȿP/u@xD"wD!wD!xD!xD!xD!xD xD!xD!xD!wBŻƿj=d4\Cp8yF$xC xD!wC xD!zH&n7rwBwC xD!wD!wD!xD!xD!xD!xD xD!xD!yF#q:wP5^, yft[q:yF#xD!xD!yF#q:{bi/zo7yF$wC!wD!wD!xD!xD!xD!xD xD!xD!yF#q:xaiTZ'U5u?xD"xD!xD!xD!wC u@yE"}K*s>T4y`v]zb|e~L+vAxD!wD!wD!wD!xD!xD!xD!xD xD!xD!xE"t?Y;u], ȼvAxD!xD!xD!xD!xD!wC yF$r<o8}L+R2}K)u@i/k2 xD!xD!wC wD!wD!wD!xD!xD!xD!xD xD!xD!xD!wC yE!żi=q9yF#xD!xD!xD!wC yE#r;fJξϾfJr<yE#wC wD!wD!wD!xD!xD!xD!xD xD!xD!xD!yE#r;]Gv]q:yF#xD!xD!wC yE#r<lRiNr<yE#wC!wD!wD!xD!xD!xD!xD xD!xD!xD!yF#q:}gW8t?xE"xD!xD!xD!xE"s=îïƼr<yE"xD!wD!wD!xD!xD!xD!xD xD!xD!xD!xE"s>^@ùwCwD!xD!xD!xD!xD"u@P0N-n7o8o8n6P/N-uAxD"wD!wD!xD!xD!xD!xD xD!xD!xD!xD!wB{G%ƾr:yF#xD!xD!xD!xE"t?U5ͽh-yF#yF$yF$yF#i.¸R2u?xE"wD!wD!xD!wD!xD!xD xD!xD!xD!xD!yE#s;v_r:yF#xD!xD!xD!xD!vB|J(g|J)xE"xE"}K)j{H&wBxD!wD!wD!xD!xD!xD!xD xD!xD!xD!xD!yF#q9mX9t?xE"xD!xD!xD!xD!yF#p9îo8yF#wD!wD!wD!wC!wC!wC!xD xD!xD!xD!xD!yE"s=cFxC wC xD!xD!xD!xD!wC xD"vA~L+Ǿ|J)vAxD!wC!wD!wD!xD!xD!xC xD!xD!xD!xD!xD!vB|J'÷¼~s<yE#xD!xD!xD!xD!xD!wC xE"u@vB~fͼͼ|dvAu@xE"wC wD!wD!wD!xC wD!xC xD!xD!xD!xD!wC xD!wC {H%}K(|I'{H&zG%yG%wD!wC xD!xD!xD!xD!xD!xD!xD!wC xE"wC p9o7q:q:o7p9xD!xE"wC xD!wD!wD!wD!xC!xC!?xC!wD!xD!xD!xD!xD!wC xD!wBvBvBwBwBwBwC xD!wC xD!xD!xD!xD!xD!xD!xD!wC xD!yF#yF$yF#yF#yF$yF#xD!wC xD!xD wD!wD!wD!xD wC pxD!xD!wD xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC xD!xD!xD!xD!xC xD!xD!xD!xD wD!wD!wD!wD xC!?xC!xD!xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!wD!wC!xC! xC!wD xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!wD!xD!xD!xC!wD xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!?( @ xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD!xD wD!xD! xD xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xC!xD! wC xD wC!xD!xD!xD!xD!xD!wC xD!xD!xD!xC xD!xD!xD!xD!xD!wC xD!xD!xD!xD!xD!xD!wC!wD!0wC!xD wC!xD!yE"yE#yE#xD!wC wD!wC wD!wC xD!yE#yE#yE#xD!xD!yF#yF$yF$yF$yF$zF$yE"wC xD!!wD!xD xD!wC r;r;q;vAxD!xC xD!xC xD!vBq;q;q:vBxD!p9o7o7o7o7n6r<xD!wC wD!xD r<X9ͽżfJq<xD"wC xD"s>Y:¸ȿhLt>irppowkPt?yE"xC xD u@|K*j4uD#tAvD#m6iZ;xD!Űo7{H&xD xD zG$q;Ĵól8tC"sA vE$l6u@yE#kPqWpVrXdHƽƲn6zH&xD xD zG%p9{rA o=q?r@n:ƿo8yF#q;p:q:s=e*ïɶm5zH&xD xD yF$s<hM_Ep@wH(sC"T6ip8yF$yE#yF#zG$|J(n6̻ͼm4{H&xD xD xD"vB|K*\>s>xE"xE"yE"u?u@n6p8zG$xD xD xD!yE"r<³xD!wC xE"u@r;R2[<|J(n6u@xD!wC xD xD xD!yF#p8|p9zG%u@N-t>xD"xD!xD xD xD!yE#r<iOkU_EdKmp8{H&p:˹ο|dq:zG%xD xD xD!xD!vA~N-Y?^)uJ-_At>wB}L*sj1 zG$p8ǽn6zG%xD xD xD!xD!xE"t>n]*nYzF#wD!u?U5W7wC V6o8zG$xD xD xD!xD yF$q9~Z&{q:yF$wC wByu?o7{H&xD xD xD!xD!yE#r;mS`/np9yF#xD!t?fJbEo7vY:t?yE#xD xD xD!xD xD!u@Q1rI.ļaDs=xE"wC yF#m5~L+|ezacFn7r<yE#wC xD xD xD!xD xD!xD!v@s`{H&wBxD!yF#q;~fS3u@yE#xD xD xD!xD xD!yF#q:s<yE#xD!wC xD!mg~n7zH&xD xD xD!xD xD!yE#r;qYnq9yF#xD"t?T4U6a$l4[o7zG$xD xD xD!xD xD!xD"u?U6aEs=xE"xD!wByF$ùtZqViŰn7zH&xD xD xC!xD xD!xD!wD!wB{I'wBxD!wC yF#q:rY:t?yE#xD wD wD!xD!xD!xD!xE"t>|fmu@xD!xD!xD!wC xD"r<^Axj}L*s>xE"wC xD xC!wD!@wC!wD xD!wC xD!t=r:r;r:s<xD!wC xC xD!wC wC yE#s=n7n6o8vAyE"wC wD!xD xD!xC nxC!xD!xD!wC xE"yE#yE#yE#xE"wC xD!xD!xD!xD!xD!wC yE"yF$yF$yF#xD!wC xD!wD!xD wD xC!xC!RxC!VxD UxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!VxD!TxD [wD!9xD wC xC!xC!xC!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD!xD wD!(  xD r;W8lR{J(vBvAZ<lQ|J(Z<^@aCjyF$Ns=n6wBxD!xD"s<n6vAp:o7p9u@R2n6TfIp}L+wC u@gKqP/lRv\rX~M,s=J^SupXl6m7S3ɷx_`#Tk0 T[>l9|O1q:s=a$x_i\Tu@TzG%n6yE"\>cFU5p9T{I(Tr;ȽnTn6ϿP0q:T|K)Tq9sl=zG%Y;í_BĮj\TzH&Ts=aEnZq:R1jOv]\>k2 TxE"TvB{H&q:s>~gȿxD!wBTxD!SxE"s=nUo6Y:Y:k\TwD!TyF#q9uP0u?|I(˹ƲǾgLg-SxD!7xD!vAP0oWdIwC xD"u@N-|d`Bt>zG$TwC _xD!u@o6q:xD!wC xE"u@j1 q:yE#wC7Turing-0.11-beta/src/media/backspace.png000066400000000000000000000023611331472757200201210ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp beIDATxēJAF1*ĐL KZO!6h)iR 6ګ1 baLs`. [8p3793CgP9rg")U zy#OlƊoHNM A d#iPBV֖gd.}_vO+324 M?00=B@0@`T~X~L6DbԶ&5ވJkox-x~y4CeyrIXr$)%Uۻo<\{:@R}kgA@'UR6ѷCB{tIc_#Q%IENDB`Turing-0.11-beta/src/media/break.png000066400000000000000000000012201331472757200172620ustar00rootroot00000000000000PNG  IHDRabKGDq} pHYs  tIME  YsIDAT8˽KHTa^l, |0̵ z8ZIvBEt#:-\تYdMĴ(!5"cR3>ƩE-:-ü @Pu#me{hG%UjP=p(GͼhK\TA^(Ԯn'~@Ua_N]Ao}ǹsul2(. „Ёh.sQUXxZT,jȉ%ڑN<- fo'kW >ӆ{O+:-#. Ǻ3Xنt_k%x=9q{ 8A~?1omΤY ]NZC, EP4qC\ffzTKsysP2.~"Ʃ|<)=ڿ I$-USQu :| =RZGcfd|LT,2/[5?XR~ᠧ4'VVћ_B o@Ͱ7IENDB`Turing-0.11-beta/src/media/breakpoint.png000066400000000000000000000010361331472757200203410ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxԓK[Qǿ噘IlB@Aֵ[[:g\T:ZPG+J7Wb}?nϹI ^p={ZkfIr}ǯ֮bYHRz?+l8ه@VB ĚWOAv%ĕe(Ձ/J%0 U*X#u$Epr IcTAvPmxX|XT'o^'Gў^3yɓn2mRg/?wS#YJYmқ{oaeҜ_yJ$L7ʡ nOԨx~,I!%"RR3\RNƤd7k`cL<-}v![׍߰쇾eW]9=٧fANS9 |:|_D?#s^+A=-ą?? IENDB`Turing-0.11-beta/src/media/calculator.png000066400000000000000000000012271331472757200203360ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<9IDATxڔS=hSQ{I!" NVhAЂti "JhQ: ""J)47%q0%|scZT+O0*€~яS (p,ǥ7,@l=vN ?8؇hɸIbHk~vI0?iIENDB`Turing-0.11-beta/src/media/clear.png000066400000000000000000000031761331472757200173000ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp fmIDATx|S[HQfwv\׽Ub!=Xd͛EER(%^BDACEJ4Fac$Y溆+sdJϙs|*x IVCj4LzEY'FNATBALpfƴ4l߶<XEx7䫣屌@ ݎ)b(Ky*)+1l"y91~39Y9-]PN_A!I$Lmjzv(("H(/%":Vj\h^c|8bqs lJe4+:J-*+_Q022 1mIvm)Xc~v!I M&0=}ҼE16}5GRVE XQ~-Y;S"`͂3Qv$!h~k3z^ (21A9rG[V χXZFoCYBoc0 7q!)G aGG%׫SX"}]MMfOlKAYtn\?P[YWE"\9v~}e iuEUi Al+5TD[CЗ.7G rF_8~`伷X2%.렖4R]i6`xv|UBZ{\|a@@ȤH.TGh%H (ŀWU!aҬ@|-C8rd&bY[6JJC} Q[]7K6n UIENDB`Turing-0.11-beta/src/media/color_wheel.png000066400000000000000000000015221331472757200205050ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxdOl33-®t[J1iBhjzpDcOp# L'#piHK[.?vfvq#/3{Y\D B7/\z篣rceJݒ@32}%$k rueY|%eB*)EUMH5A`vGN>yz`;.# Sd/L}!{ui!J7VJ1axpmouK6-(^Ua*NQX,31#j{&\HűH:6}N͚[nWHUѮEU]ԗ. bA8~w6I{bicP7淬Cmo̎'z).(->"OpMy($x7x_H\k }K}ӕs^BquNqŮE,JKk'yk͙UT6nVlPQ`99Q E$IENDB`Turing-0.11-beta/src/media/comment.png000066400000000000000000000025241331472757200176500ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp fIDATxڔSKKBAG.* qEUPaEV6A ihDBʹܫޫAu9sf0p}T)2]ՄG ץE=XdTfb%iaU{z."O2Lcjbb-]V"`0h/hZEwO#rt8C-)AdiP..rM- V~)dsY] #;G :Q/+'* M$C4'8;=vr"%G+7_|cFB\._.fx_ T8V`TRtzIENDB`Turing-0.11-beta/src/media/continue.png000066400000000000000000000010561331472757200200310ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڤAHTQf64B$3hB60\9)p)ą;E)q#&h"EBHZP3s732.wsεDS=p$Ս'HA]1{ܝk#Y\eY4te3jjh34cu0+ͭtn8⛿(/6jGHZ/BWsx߾k~CF!)&1be˪[;KҿDQՖ@; i}.^Cړ~T%sÔSli7L^wfk9F٭7|&q|]@\(:#^usLbi?m` gwsIENDB`Turing-0.11-beta/src/media/copy.png000066400000000000000000000007671331472757200171670ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڄSMO@(&' < Q&"K_8w};;*uMcb0("Ĉl^Zm#@>nutD8xu64Tm9Zr>a&ϠWF]~hJUp}{*6oHb15ϭa*. #ATa.sNIa ;`mmΰ_u
 v>:Yt*,87__aR(Iq@=P o{%ِ)צ6].St~@[ۮFn>711s+^klsNHzӫEFכy!2NgopQ?lA#$mu<ďO_Pظޠ73氂 ?47Hj!oA5dg~ܫ'Ee*4Zm V.6DDnC[ůHJC!8N*fEFFAiTxMoYQ*0Ļp߱a?Eˌ,k|Kv/`3›)Ay)FJ '`*>ܙ8qW#*Y?7;Ye3Xo$N #W^c?T$~ 0+Tq`IENDB`Turing-0.11-beta/src/media/delete.png000066400000000000000000000012671331472757200174530ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<YIDATxڌSKhSQ=}i TDQjZ.ZںPuN]vQµK .č;7* ҠuQ5Dl$hlyv`9y/Ktq=99ƘdơXdoth^f|>M>tsu`硴D;RE5p=I Lt{GF!/P~xc2@U49'/\F,#)ѳ{,rBmhU落T'G\=>dW(V 2XyiELy#EHJ>Z3w:!I b#BQz׷PЂhnzу1d4JnzaaP1&ϛ}Nێ7ꜝq|^(ZӱH[okL4:AV#^9*Q)J@602)PD`o|q.Y>dLڄ8}ȝ^Eo0ϵJV:]Z.]\ojoBq %~p)XW0;V19#ąyO"Ge2 _IENDB`Turing-0.11-beta/src/media/down_double.png000066400000000000000000000006331331472757200205060ustar00rootroot00000000000000PNG  IHDRabKGD pHYs  tIME^(IDAT8˭JAEd`%66j'vb#  ^m[%ATTBb,܄gq[po+[8wl3ax9=~(A&iO <(t2x< J4< P X$_PG @WC @_W^% 7P4&Cd'cj^OXք7+0?>V \ `t;w\l8E5-u ҵdIENDB`Turing-0.11-beta/src/media/download.png000066400000000000000000000010761331472757200200160ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڌS1KAff5w,4Vi4HQcV IUbXRXH@6gDcxݙúy[aٍ1?AKJy84g'I 2,.@v&ȅlD%XH?,8 y+@h,9I⊻B_a. j,EBZ_DȔo |A]Ə~"H|[=o&s tHF{zt*g~ێgX{9Ƃ+>u$`Wmƚė "@KoFoOwO1&οB |`p~E$^j/XrFK2=XYZ%9Xiؐ"}g>2h~vic$ L_P3)W[6C=anh<P_h͍?1م[ЬIENDB`Turing-0.11-beta/src/media/draw_line.png000066400000000000000000000007761331472757200201610ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڤS;KAfo QQbia!+F| V;;6B4).DxwLHP27{]Zi JεV R&wMsյM 8><Ȉh8삍bXg.B1d!YA><Ob˜4}k2Ж}Ա3h"ܾA"fB!OH-ATّŎ>\$׷NGW[E%ƗLL,?9vc6v럏`*q钝Gz{!1mL-Y?OB`_Ff{3~ĺ,19p$<%ax fk~tr⾽ )b mM^Z!&L(h_RSQ:Zo"",IENDB`Turing-0.11-beta/src/media/draw_points.png000066400000000000000000000005171331472757200205370ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxb?%ƈ20133/YdH.&&&(IlŧQ ֬<)) 1̝3s!PxTn!)0#B ?~`x!1>c`ggca`gce`bbd FgϞ/7w ޾}[{]=P&wΝ8#9@J)B@$w+$EL ")£Hh$01P O]KIENDB`Turing-0.11-beta/src/media/duplicate_line.png000066400000000000000000000007011331472757200211620ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<cIDATxbL !l@cs@@;.?- @qmg/^dg f%uU~TTɯog{ +Hh,F6 SC/_0|xZayr{cǦgD~~~ã[ˎO\޾"0? 0ةm}Uκ@Wn{^YF#ddH|vnIJ+L@Cā@?(!B40;{:Ztұ Gcgx~At L0t5vmyfw;85b ` 1hIENDB`Turing-0.11-beta/src/media/edit_line.png000066400000000000000000000007321331472757200201410ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<|IDATxڔKAǰ%y:du@>TBT P)%ރHJIF饺H Ek4d`2 }aG3RBĊ׭V: ҥFt`쒕e쇝YijG)6miPJx386O ṣǛ >ki8fȏCwN]a =9K ГPBH?2dWY(8^f(_^Wi+1(fIv |G +nӘ.HFhlt@:"iҁL85B`J!ɒj;=$ AB#́LĐh$* H^PrsYJ n>0ԉd${@Px3ʀu潱 @fQhKR#LL( {m>ݴ%P1 8"hprzƪvԫ`6_>섍5^X=|t\an_0wlv_ѝןcCT!#ow Ê O ,faIQ\yH| `ZO]NWD2?ܚyJ$\vb,IENDB`Turing-0.11-beta/src/media/erase.png000066400000000000000000000013161331472757200173030ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<pIDATxڄOQƿw:2] ctխ?S$J]Aа4b`#1q ݈"ãMYBR#ezNr23#:,bi[s"lۆU0ID.zE!pPbv0˂Did[U$ASa@f2s+,!:x/2ɩg}o( (OP2Y‰bbbÚR J(jnW@"(K-?pPޖk^\p+3sr5l&~܍/l P@Ao]E;{~LzYxۋun7li6.46awf@> >(x ccc^E)77ע;lV>*{@ױn|$zr#Sm  c]X)?b-Vxe~.a-:4 W;M>B{{&ȝD(DOX]O°`5L&?RB:[[[!Ns~1b弼였X_e/t,k1x|s&yETUŇ|>?|ڼHU7yL5["ptoIENDB`Turing-0.11-beta/src/media/examples.png000066400000000000000000000026441331472757200200270ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp @IDATxtSkA}3ڄ * E$ 6*LKJF" FB!M&C) )Mr3fr||g=_Pn9NkF\~|{* Mpx 1Ӥb<!kV 8{ /Sr8PgFGf4f^c5,ng5\aݤya1TX+:̥V\X)~PX+"1w: )^6psd DNsk~"~&[wo4T`K"hkA>C6vraK˜TׂI]eǗ- x׾ ʷ7u `ᛵd[O' v6h4\YS nXsPu̧H̀%6G?q+'W:Ř. MBúc$KP1)a֞! ?߾ mߞr>Ĩ47z!MOϭ(1IENDB`Turing-0.11-beta/src/media/exit.png000066400000000000000000000011361331472757200171550ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڜ=nAfF[@$ |#A┄Bp$   ؝^g<ڞzQİf+ή]ĥ-ѩ[gZ;h4WZ(tP\WbQ XqFa{gMJ)cvx?XߺC3ӑbѼ4§'#FIԕA(1o`9|3O;x0$ A hq8Mcge>M{hۖ {$k$AJI cŐK|ͻ2h!(R~(Irģ_l $@"NͤO pg L)2H=Ě^~Y% vM+/ɑ\-܄614Q_ݯk04kص"da'͸g k8IQ~ z./7 ?!3cݻ}ƹ;V*ŁeIENDB`Turing-0.11-beta/src/media/feedback.png000066400000000000000000000012751331472757200177340ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<_IDATxڜMHTQ38b #Mi_`fʢ}iQ@*(] lhh&b64MqNwvřQ>?;R"X5 #l&e$ EQp\W5z{X֫~K_Xv!˲3ުf.ONN208D4P΋#>^^EUгY\'I5;",+ Tl"$UE55:Cf-w67TS]]M0Sϳc=ُ1vT*%*+~R@Y` 0 x=^r\hxr.01#0iת@-xh4jf3}p^ܳ$Yz(u5lܑL Mޞdt[[?(_*~&0@*B&!b@$ij$Xn`kfm E$Tn蘙ƕy@Qp(-q$QReaAtmu5L;bG%M,l}v E J%D"p?~b$pc7fX,}8Nl$6r1;;Y^*/Hh7cݺ5i{#b;@g767׫@]4W ӊHQFX@ex<.T+f~L'kof>R\^ ׋ÃCsȳerv (VHry5ooM`Y+ˌ3;ӣ{? X\?[IENDB`Turing-0.11-beta/src/media/find_next.png000066400000000000000000000030251331472757200201610ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp -IDATxڌSKTQst#1DEhbBPRPeAvsݘB!&Itt#X8f5 M3{;f4с{m:B@(3غaA98ND"QavvȲ$\ʽ+XY]Pߖ ۶=,(SFq 34=C8KNދ@%؎P L4;-C3[6mdtUUU%]AWj߹jNg `n ۮ\q!dKuԏݛDt|oXl҈ "~yDfgzPH""=~@>q?dpbRQk  R8Arc >&v@0r$,HF fv~𹿻өxMͨhAv.Tdy??. \"AIK ɰ=$߱~*z8.uǁ3`&obcqKui=LZ019 K2嗑ǽ H ;64L=c_OO.J{z{vAeJ&3oBYPzgWaaaPyVIX*bn*IENDB`Turing-0.11-beta/src/media/find_previous.png000066400000000000000000000030471331472757200210630ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp zIDATxڌSKTQ}3ZH4&6XdTXa$E?ЪNEgl47FܤʂImofс;sws%a13"(! jvR"z!sض]nnƿdmmDaWdJ YD2WJ{~aQxuueн{в9LTs<-Ta's/]o.حT:ve{趿Bp;y_R0((^,4kBO.eugyfO9dNEPy#*ӔQ!+>X q39]*D^l i`9T[[m+Q- u.H$Qž<`Sў^$ d8 C@:: (Ϫ`wnb;<$UT2/ϽMc;Kǧ?aIENDB`Turing-0.11-beta/src/media/for_loop.png000066400000000000000000000030061331472757200200210ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp y zIDATxڜMHTQ3M]fXFRT@*b *[AE4!$ J(MI8Z 3(EFQaCBZ̈́vt> 2\wp\ bNsW5$\ӹO!;] o)ꥮ =/xu:1 k ,dFD\V J ʑFbYl8P!))E@Z4fC3< |Jm V` Z%+93ccɂ*Whzb7ڎጅ`"統`k3 Xh6CɆ 2;VAI,RA7₝d{ix&?IMr`#{sҘ $7˃;m˄_OŽ:1͑!4F@jú `ԇ8M- 7S~xap0r>w)Qr̍=-uq{tb+_rϹMΖbIENDB`Turing-0.11-beta/src/media/function.png000066400000000000000000000027221331472757200200330ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ŁaFIDATxڔSkQy%1\"ZJMxU<ԃWoŃ x BtEDZ(?6MQhu73J`voAZYrHa'й ! m(s$ȇj0ܼn7eC 3h%U#B/Q;~>"Q6C``('$™lx_/;``뵍A ~z}޿UKjk PmڻB`@XAȵ^vW4 B:\%q@&f ЏÄGܲڻA%NoN`dH%OrVUտ;NP UUKw- = iDxTq+Dks9b<,GDž27ڳSV̟[xmPPtMVPZ.3x\ž&{ ~ 0C^A`YIENDB`Turing-0.11-beta/src/media/go_to_line.png000066400000000000000000000013771331472757200203310ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڌSQHQ=͛UW[ R ?DӕD22D1 /귯>BpUBB KA͵vwtgYpgͼa`EiH[ )ٗQ301g}AU(9&x@2,B0;5bh>WEcc4_ 6hmܕVrogĉVi½y:΁ætU*Z @22eLJx)SL7uR x"kE%݊ ; ˀKSIyX`9`ƅCdC}-^OnInoOD8'̓Mn2:K`  quePLѴrTU`g*t$ !|x8؀vI1G}y jl}dVL(d{z&돃xz>6#0 '.MT){0 PED{]ۥxU"8[ف7=E0qn l`^L>3Mϧz`DV|ǚj^L$ [x~9`ze"B(܉+,S2D$HuA?L:Qk*Y:U!sth.\m/e Mw1~x10/`}r}[aQFIENDB`Turing-0.11-beta/src/media/help.png000066400000000000000000000013711331472757200171350ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxdSMHTQ{ޝqJ„ZHQdAjF?-مEk"E *~b؀ӌ93doƙ:Z.s}ǪN.q'Wc 6vB6`S5L ^O06+s@&oWO5!DX:0vp1@ }XHf h,ࢗoهw4`6?F^8RuIL%65lo@0 ^,*_3Sm\TF#1|i*83P=Kfh0);hRV[`P+$t!m'ƋOCz\0t %(~?yί6Gvm0",xM&y$dmJ* 0ăc@ MӐQ+ J GK:U 45_I>sqg?;yf塗4 &Lfg㙧xțdx. >983]a?tSryV쬯kw!;l "Ͽ^  Nj2Gׄ'F4˿@I CW&N^$Je^ ZIENDB`Turing-0.11-beta/src/media/home.png000066400000000000000000000013441331472757200171350ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڌSOHQ7ovmW%H"k:P顢CD!Cv DASX%(B.џSQI!ꮻ3fͬ}7=~}%^`U\OJTJa g D_GDUW5zs.VB4T`C0o{*>9^.lV >B!RIiG$2lĬsDvQ%04#‹J|xcx44?G":(y {o3ЕDuBVlI/Bdy'vcWS$ &3(7GЋںa_HE"=V7as2%0QXR=-]l\e3_00059G:.J85!5;i[zz Ǯ Qߊq<\ā5Byn{8ޑy4ZZt\;80F]#ED iз=ǁ)0Pzj`ٴ\IiI ˴ ve ?Na,7Ţ`b T'YD2!ںf;`rg- E'Ml ӛcŋ`#IENDB`Turing-0.11-beta/src/media/icon.ai000066400000000000000000013430531331472757200167510ustar00rootroot00000000000000%PDF-1.5 % 1 0 obj <>/OCGs[6 0 R 29 0 R 51 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream application/pdf Web Adobe Illustrator CC 2017 (Windows) 2018-03-07T23:48:04+01:00 2018-04-18T20:20:22+02:00 2018-04-18T20:20:22+02:00 200 256 JPEG /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAADIAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq+WP0vq3/LbP/wAjX/rnovgw/mj5PN8cu936X1b/AJbZ/wDka/8AXHwYfzR8 l45d7v0vq3/LbP8A8jX/AK4+DD+aPkvHLvd+l9W/5bZ/+Rr/ANcfBh/NHyXjl3u/S+rf8ts//I1/ 64+DD+aPkvHLvd+l9W/5bZ/+Rr/1x8GH80fJeOXe79L6t/y2z/8AI1/64+DD+aPkvHLvd+l9W/5b Z/8Aka/9cfBh/NHyXjl3u/S+rf8ALbP/AMjX/rj4MP5o+S8cu936X1b/AJbZ/wDka/8AXHwYfzR8 l45d7v0vq3/LbP8A8jX/AK4+DD+aPkvHLvd+l9W/5bZ/+Rr/ANcfBh/NHyXjl3u/S+rf8ts//I1/ 64+DD+aPkvHLvd+l9W/5bZ/+Rr/1x8GH80fJeOXe79L6t/y2z/8AI1/64+DD+aPkvHLvd+l9W/5b Z/8Aka/9cfBh/NHyXjl3u/S+rf8ALbP/AMjX/rj4MP5o+S8cu936X1b/AJbZ/wDka/8AXHwYfzR8 l45d7v0vq3/LbP8A8jX/AK4+DD+aPkvHLvd+l9W/5bZ/+Rr/ANcfBh/NHyXjl3u/S+rf8ts//I1/ 64+DD+aPkvHLvd+l9W/5bZ/+Rr/1x8GH80fJeOXe79L6t/y2z/8AI1/64+DD+aPkvHLvd+l9W/5b Z/8Aka/9cfBh/NHyXjl3s/8AyWvr64803ST3EsqCxkIV3ZhX1ohWhOaXt3HGOEUAPV+gudoJEzNn p+p5rm/de7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXof5H/APKW Xf8AzASf8noc0fb/APcj+sPuLndn/Wfd+p55m8cF2KuxV2KuxV2KuxV6Bof5P6pq2kWupLfQwLdI JFidWJCnpUjxG+aXUdtQxzMOEmnOx6GUog3zR3/Ki9W/6ukH/APlP+iCH80s/wCTpd7v+VF6t/1d IP8AgHx/0QQ/mlf5Ol3u/wCVF6t/1dIP+AfH/RBD+aV/k6XewrzZ5bk8u6u2mS3CXMqoru8YIAL7 hd/bfNto9UM8OMCnDzYvDlVpNmU1OxV2KuxV2KuxV2KuxV2KuxV2KuxV6H+R/wDyll3/AMwEn/J6 HNH2/wD3I/rD7i53Z/1n3fqeeZvHBdirsVdirsVdiq+KN5ZEijHJ3YKqjuSaAYCaFlID6n06zSy0 +1s0+xbRJCtPCNQo/VnnOWfHIyPU29HGNABEZBk7FXYq+a/PeofpDzfqtyDyX6w0SHxWH90pH0Jn fdn4+DBAeX37vP6iXFkJSHMxpdirsVdirsVdirsVdirsVdirsVdir0P8j/8AlLLv/mAk/wCT0OaP t/8AuR/WH3Fzuz/rPu/U88zeOC7FXYq7FXYq7FWQeQdP+v8AnHSrelVE4mcduMIMpr/wGYXaOTgw TPlXz2b9NHiyAPpLOCd+7FXYqhdUvVsNMu75/s2sMkx/55qW/hlmHHxzEe80xnLhBPc+WXdndnc8 nYlmJ7k7nPRQKebW4VdirsVdirsVdirsVdirsVdirsVdir0P8j/+Usu/+YCT/k9Dmj7f/uR/WH3F zuz/AKz7v1PPM3jguxV2KuxV2KuxV6N+SOn+t5iu71hVbS3KqfB5WAH/AAqtmi7eyViEf5x+5z+z 43MnuD2zOSdu7FXYqxH81dQ+peSb0KaSXRS3T/ZsCw/4BWzZ9j4uPUR8t/x8XF1kqxnzfPedu6N2 KuxV2KuxV2KuxV2KuxV2KuxV2KuxV6H+R/8Ayll3/wAwEn/J6HNH2/8A3I/rD7i53Z/1n3fqeeZv HBdirsVdirsVdir2v8kNP9Hy/eXxFHu7jgD4pCop/wAM7ZyXb+S8sY9w+92/Z8aiT3l6Pmic92Ku xVhX5oeWde8w2FjZ6WqNHFK00/qOE3C8UpXr9ps23ZOqx4JSlPuoOJq8UpgCLzr/AJU551/31B/y OH9M3v8ALen7z8nA/I5Hf8qc86/76g/5HD+mP8t6fvPyX8jkd/ypzzr/AL6g/wCRw/pj/Len7z8l /I5GEuvFitQaEio3Bp4ZtgXDW4VdirsVdirsVdirsVdirsVeh/kf/wApZd/8wEn/ACehzR9v/wBy P6w+4ud2f9Z936nnmbxwXYq7FXYq7FXYq+kfy+0/6h5M0qAijPAJ28azky7/APB0zg+0snHqJnzr 5bO/00eHGAyHMFvdirsVdirsVdiqV+adQ/R3lzUr0GjQ20hjP+WVIT/hiMyNJj48sY95DXmlwwJ8 nzDnoTzrsVdirsVdirsVdirsVdirsVeh/kf/AMpZd/8AMBJ/yehzR9v/ANyP6w+4ud2f9Z936nnm bxwXYq7FXYq7FURYWkl5fW9nH/eXMqQp83YKP15DJMRiZHoLZRjZAfVEUSRRJEgokahVHgFFBnnM jZsvRgUuwJdirsVdirsVdirBvzk1D6t5Oa3Bo17PHDTvxUmU/wDJsZuOw8fFnv8Amgn9H6XD10qx 13vBs7J0rsVdirsVdirsVdirsVdirsVeh/kf/wApZd/8wEn/ACehzR9v/wByP6w+4ud2f9Z936nn mbxwXYq7FXYq7FWVflhp/wBd87acCKpbs1w/t6Skr/w/HNb2tl4NPLz2+bk6SN5A+iM4d3rsVdiq 2SSOJDJIwRF3Z2IAA9ycIBOwUlDfpfSf+W2D/kan9cs8Gf8ANPyY8ce936X0n/ltg/5Gp/XHwZ/z T8l4497v0vpP/LbB/wAjU/rj4M/5p+S8ce95P+d2s29zcaXY20ySpEkk0npsGFXIVa0J6cDnSdg4 DESkRXIOs7QmCQA8wzoXXOxV2KuxV2KuxV2KuxV2KuxV6H+R/wDyll3/AMwEn/J6HNH2/wD3I/rD 7i53Z/1n3fqeeZvHBdirsVdirsVeofkXp/PUdT1Aj+5iSBD7ytyNP+RYznvaDLUIx7zfy/tdj2fH cl7FnLO1dirsVYR+cWofVfJkkANGvZooB40B9U/8m6Zt+xMfFqAf5oJ/R+lw9dKsdd7wTOzdK7FX Yq7FXYq7FWTeS/Imp+aLhxE31axh2mvGXkoamyKtV5N9Ow+iuv13aENON95Ho5GDTnIfJK/MGgaj oOqS6dfpxlj3Rxurofsup8DmRptTHNATjya8uMwNFLcyGt2KuxV2KuxV2KvQ/wAj/wDlLLv/AJgJ P+T0OaPt/wDuR/WH3Fzuz/rPu/U88zeOC7FXYq7FXYq92/JjT/q/lE3JHxXtxJIG8VSkYH0MjZx3 bmTiz1/NH7Xc6CNY77yzzNM5rsVdiryL89dQrcaVpyn7CSXEg/1yET/iDZ0/s/i2lP3B1faMtwHl WdG612KuxV2KuxVG6La2l3q9la3cphtZ5445pRSqo7AE75VnnKMJSiLIDPGAZAHk+nNN02x0yxis bGJYbaFeMca/iSe5Pc559lyyySMpGyXoYQERQ5JB+Ynl3SdX8u3Mt8whksY3ngu6boVWpB8ValCP 45m9mameLKBHfiNENGqxRlA30fOudy6J2KuxV2KuxV2KvQ/yP/5Sy7/5gJP+T0OaPt/+5H9YfcXO 7P8ArPu/U88zeOC7FXYq7FXYq+nPKOn/AKP8saXZleLxW0fqL4Oy8n/4YnPPtbk480peZehwx4YA eSbZjNrsVdir58/NbUPrnna9ANUtVjt0/wBgtW/4dmztux8XDp4+e7o9ZK8h8mIZtHFdirsVe76b +UnkZreK49Oe6jlRZEMspFVYAj+74Zx2XtnUWRsK8v1u5hosdXzQvnL8q9Dby/M+g2XoahbfvYwr yOZVUHlH8bNuRuPfLND2vk8UeJK4n3bebHPo48PpG7xPcHwIzrXUPpTyPrv6b8sWV8zcrjh6Vz4+ rH8LE/632vpzge0NP4OaUenT3PQafJxwBYR+dXmjhDD5etn+OWk98R/ID+7Q/M/EfkM2/YWksnKf cP0uHr838AeVadp95qN9DY2cZmubhgkUY7k/qA6k9s6PLkjCJlI0A62MTI0ObPL38kfMsMQe1ura 6anxR1aNq+ClhxP0kZp8fb2IncSDmy7PmORBYlrHlHzLoyGTUdPlghUgGageME7D94hZd/nmywa3 Fl2hIE/b8nFngnDmEnzKanYq7FXof5H/APKWXf8AzASf8noc0fb/APcj+sPuLndn/Wfd+p55m8cF 2KuxV2Ko/QNPOo63YWFKi5uI4m/1WYBj9AynUZODHKXcCzxx4pAPqPPO3o3Yq7FWnZUUuxoqglie wGEC1fLOrXzX+qXl832rqaSY1/y2Lfxz0XDj4ICPcAHm5y4pE96Eyxi7FXYq+jfy31NdQ8maZJyD SQx/V5BWpBhJQV+agHOF7UxcGokO8383faWfFjDJc17kPCPzY8o/ofWf0japTT9RYtQDaObq6fJv tD6R2zsex9b4uPgl9UfudNrcHBKxyKv+VPnOz0JNUtdQl4WrRG6gBNKyxihRf8qQUp8sh2xoZZuE xG918P2J0ecQsHkwrVdSvNX1W4vrgmS5u5CxAqdzsqr7AUAzb4cUcUBEcohxJzMpWeZe2fll5DXQ bEahfJ/uXul+IH/dMZ39Mf5R/a+7OS7V7R8aXDH6B9v46O30mm4BZ+os5zTuY8x/OzzF6Nhb6DC3 7y7InugP99IfgU/6ziv+xzoewdNcjkPTYe/+z73Xa/LQEe943nUuqdirsVeh/kf/AMpZd/8AMBJ/ yehzR9v/ANyP6w+4ud2f9Z936nnmbxwXYq7FXYqzX8odP+t+dIJSKpZRSzt4V4+mv4yVzU9tZeHT kfziB+n9Dl6KN5Pc99zi3duxV2KpH551D9H+UdVugeLC3aNG8Gl/dqf+CcZmdn4+PPAef3btOolw 4yfJ8053zz7sVdirsVVbe6ubZ+dvM8L/AM0bFT94pkZQEtiLSCRyTqz8/ecrOno6vcEDoJW9Ybe0 vPMSfZ2CXOA+77m6OpyDqUXq35keY9X0mXTNS+r3MMtD6jRBZFZTUMpQqAfoyvD2XixTE4WD72U9 VOUaLFc2LjJt5X1uDRNYi1KWyS+aAEwxOxULJ2fYNuvbbMbV6c5cZgJcNtuHIISurZ9/yve7/wCr PH/yPP8AzRml/wBD0f5/2ftc3+UT/NUm/PXUyx46VAF7AyOT99Bkh7Pw/nH5I/lE9zAvMOu3mu6v Pqd3QSzkURa8VVRxVRXwAzdabTxwwEI8g4WXIZyspbl7W7FXYq9D/I//AJSy7/5gJP8Ak9Dmj7f/ ALkf1h9xc7s/6z7v1PPM3jguxV2KuxV61+RWn/DquosNyY7eM/Krv/xrnM+0GT6Ie8uz7OjzL1jO bdm7FXYq89/OzUPQ8sW9mpo95crUeKRKWP8Aw3HN52DjvMZfzR97g6+VQrvLw/OudO7FXYqvijeW RIoxyd2Cqo7kmgGAmhZSA9lj/I3QvTX1NQujJQcyvpha96Aqc5U+0GS9ox+12o7Pj3ld/wAqN8vf 8t93/wAkv+aMH+iDL/Nj9v60/wAnw7yxL8wfJHlryxZwrb3082qTuDHbyFCBEK8nYKoI3oBv4/Rs +zdfm1EjcQIDr5uLqdPDGNjuwLNy4TIPJnlqz8x6m+mzX/1G4ZC1qTH6gkZd2X7Sb8d8wtdqpYIc YjxDru34MQyGrpk15+R/mOOptby1uFHQMXjY/RxYfjmvh2/iP1CQ+1yJdnz6EJHeflf54tak6a0y jo0LxyVp/khuX4Zlw7W08v4q99tMtJkHRi7o8bsjqUdCVZWFCCNiCDmxBvcOMtwq7FXYq9D/ACP/ AOUsu/8AmAk/5PQ5o+3/AO5H9YfcXO7P+s+79TzzN44LsVdirsVfQH5Saf8AVPJVq5FHvJJLhh82 4KfpVBnFds5OLUH+jQd3oo1jHmzLNU5bsVdirxf88dQ9XW7CwBqLW3MrDwaZqU+6MZ1fYGKscpd5 +7+11PaErkB3PNc37r3Yq7FWQ/l9YC/856TAd1WcTMD4QAy/8aZg9pZODTzPlXz2b9NHiyAPpHOD d+kvm3zVYeW9Je9uaPK3w2tuDRpZPAeAHc9sy9Ho5Z58I5dT3NObMMcbL501jV7/AFfUZtQvpDLc TtVj2A7Ko7KOgGd1gwxxREYjYOinMyNl6fpn5aL/AMq3uvVhrrV2gvIqj409Mco4h/rLWvu3tnPZ e1f8LFH93H0/rP47nYQ0n7k/zju8ptLq4tLmK6tnMU8DiSKReqspqDnSTgJAg8i62JINh9I+TvM1 v5j0OHUI6LP/AHd3CP2JV+0Pkeo9s4LXaQ4MhieXT3O/wZRkjad5iNz54/M/Sv0d5zvwopFdEXUf v6u7/wDJTlncdk5uPTx8tvl+x0Wrhw5D5sUzZOM7FXYq9D/I/wD5Sy7/AOYCT/k9Dmj7f/uR/WH3 Fzuz/rPu/U88zeOC7FXYq2ASQAKk7ADFX1JolgNP0exsaAG1gjiNPFEAJ+/POs+TjySl3kl6PHHh iB3I3KmbsVdir5z/ADJvWvPO2qO3SKUQKPARKE/Eiud12Xj4dPH3X83Q6qV5CxnNg47sVdiq+KaW GRZYXaORd1dCVYH2IwSiCKKQaZBp/wCYnnOwoIdVmkUfsz0nFPD94GOYOXszTz5xHw2+5vjqskeq B8w+ZtX8wXi3Wpzeo6LwjRRxRR34qPHvl2m0sMMeGAa8uWUzZTv8sfKv6e8wpJOnLT7Ck1zUbM1f 3cf+yIqfYHMTtbWeDiofVLYfpLdpMPHPfkH0FnEu8fOX5h6D+hfNd5bovG2nP1m17D05STQeytVf ozu+zNR4uEHqNj8HQ6rHwTIb8h+c5vK+qNMyNNYXC8LqBSKmm6stduSn8K4O0dCNRCuUhyK6bP4c vJndx+e2nrX6vpMsnh6kqx/qV808fZ6XWY+TmntEdAwPzx5zPmm8t7prJbNrdGj2cyFlLchU8V6b 9s3Og0P5eJHFxW4Woz+IQapjWZ7juxV2KvQ/yP8A+Usu/wDmAk/5PQ5o+3/7kf1h9xc7s/6z7v1P PM3jguxV2Kpz5NsBf+atKtSKo9zG0g8UQ82H/Aqcxddk4MM5eTbgjxTA830znn70LsVdirsVY9rP 5f8AlLWLpry+sQ109Oc0bvGWpt8QRgCfcjM7B2lnxR4Yy2aMmmhM2Rul3/Ko/I3/ACxyf8jpf+as v/lnU/zvsDX+Sx9zv+VR+Rv+WOT/AJHS/wDNWP8ALOp/nfYF/JY+55n+aPl/QdB1e0sdJhMXKD1p 6uz1LOVX7RNPsHN/2RqcmaBlM3vQdfrMcYSAiwvNs4jsVdir0P8AKnzzZaJLJpOoKsVpeS+ol50K SEBaSH+Q8evY+x20fbHZ8so44/VEcv1ebnaPUCHpPIvZ77ULKwspb67mWG1hXnJKx2A/jXtTrnKY 8UpyEYiyXbSkIizyfPfn3ze3mfWRcpH6NnbqYrVD9srWpZ/dvDtnb9naL8vjq7kebo9Tn8SV9GM5 sHHdirsVdirsVdir0P8AI/8A5Sy7/wCYCT/k9Dmj7f8A7kf1h9xc7s/6z7v1PPM3jguxV2Ks0/KG FZPPFq56wxTOvzMZT/jbNT21KtOfMj73L0Q/eB79nFu7dirsVdirsVdirsVfOv5magL3ztqTg1SB 1t19vRUI3/Dg53PZWPg08fPf5ui1cryFi+bFxnYq7FXYqmd35l1y70m30i4u3k0+1NYYD0HgCerB f2a9O2Y8NLjjMzA9RbDlkY8JOwSzMhrdirsVdirsVdirsVeh/kf/AMpZd/8AMBJ/yehzR9v/ANyP 6w+4ud2f9Z936nnmbxwXYq7FU+8j61Fovmmwv5jS3Ryk58I5VKM3+x5VzD7QwHLhlEc/1N2nycEw X0nHIkiLJGweNwGR1NQQdwQRnBEEGi9AC3gV2KuxV2KuxVZNMkMMk0hpHGpdz4BRU4YxJNBBNPle 9upLu8nu5P7y4keV/wDWdix/Xno2OAjERHQPNyNm1DJodirsVdirsVdirsVdirsVdirsVdir0P8A I/8A5Sy7/wCYCT/k9Dmj7f8A7kf1h9xc7s/6z7v1PPM3jguxV2KuxVlHlr8x/M2gRLbW8y3Fkv2b W4BdVH+QQVZflWntmu1XZeHMbIqXeHJxaqcNhyZdF+fEwSkuiq792S4Kj7jG3681h9nh0n9n7XJH aP8AR+1f/wAr5/7Uf/T1/wBecH+h7+n/ALH/AI8n+Uf6P2/sd/yvn/tR/wDT1/15x/0Pf0/9j/x5 f5R/o/b+x3/K+f8AtR/9PX/XnH/Q9/T/ANj/AMeX+Uf6P2/sd/yvn/tR/wDT1/15x/0Pf0/9j/x5 f5R/o/b+xB6z+dUmo6TeWEek/V2u4Xh9b6xz4iRSpPH0lrsfHLcHYQhMSM7o3y/awya/iiRXPzeZ Z0Dr3Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXof5H/APKWXf8AzASf8noc0fb/APcj+sPuLndn/Wfd +p55m8cF2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KvQ/yP8A+Usu /wDmAk/5PQ5o+3/7kf1h9xc7s/6z7v1PPM3jguxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2 KuxV2KuxV2KuxV2KuxV6H+R//KWXf/MBJ/yehzR9v/3I/rD7i53Z/wBZ936ku/5VH55/5Y4/+R0X /NWX/wAs6b+d9hYfksnc7/lUfnn/AJY4/wDkdF/zVj/LOm/nfYV/JZO53/Ko/PP/ACxx/wDI6L/m rH+WdN/O+wr+Sydzv+VR+ef+WOP/AJHRf81Y/wAs6b+d9hX8lk7nf8qj88/8scf/ACOi/wCasf5Z 03877Cv5LJ3O/wCVR+ef+WOP/kdF/wA1Y/yzpv532FfyWTud/wAqj88/8scf/I6L/mrH+WdN/O+w r+Sydzv+VR+ef+WOP/kdF/zVj/LOm/nfYV/JZO53/Ko/PP8Ayxx/8jov+asf5Z03877Cv5LJ3O/5 VH55/wCWOP8A5HRf81Y/yzpv532FfyWTud/yqPzz/wAscf8AyOi/5qx/lnTfzvsK/ksnc7/lUfnn /ljj/wCR0X/NWP8ALOm/nfYV/JZO53/Ko/PP/LHH/wAjov8AmrH+WdN/O+wr+Sydzv8AlUfnn/lj j/5HRf8ANWP8s6b+d9hX8lk7nf8AKo/PP/LHH/yOi/5qx/lnTfzvsK/ksnc7/lUfnn/ljj/5HRf8 1Y/yzpv532FfyWTud/yqPzz/AMscf/I6L/mrH+WdN/O+wr+Sydzv+VR+ef8Aljj/AOR0X/NWP8s6 b+d9hX8lk7nf8qj88/8ALHH/AMjov+asf5Z03877Cv5LJ3O/5VH55/5Y4/8AkdF/zVj/ACzpv532 FfyWTud/yqPzz/yxx/8AI6L/AJqx/lnTfzvsK/ksnc7/AJVH55/5Y4/+R0X/ADVj/LOm/nfYV/JZ O53/ACqPzz/yxx/8jov+asf5Z03877Cv5LJ3O/5VH55/5Y4/+R0X/NWP8s6b+d9hX8lk7mYflf5F 8yaBr9xeanbrFBJaPCrLIjnmZI2AopJ6Ic1fa3aGLNiEYGzxXy8i5Wk084Ss9z1DOedi7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FX/9k= proof:pdf uuid:65E6390686CF11DBA6E2D887CEACB407 xmp.did:14383c8b-1f6c-3642-8048-31b6a076be03 uuid:3aa3a694-2516-495e-bd3e-37c8e6b1b2d2 uuid:f8ce5214-05d5-4ab3-a802-9a098c689a3b xmp.did:4bccae06-0f9d-6642-8479-2f3329ced402 uuid:65E6390686CF11DBA6E2D887CEACB407 proof:pdf saved xmp.iid:14383c8b-1f6c-3642-8048-31b6a076be03 2018-03-07T23:48:04+01:00 Adobe Illustrator CC 2017 (Windows) / Web Document 1 False False 32.000000 32.000000 Pixels HemiHeadRg-BoldItalic Hemi Head Bold Italic TrueType Version 1.001 False hemi head bd it.ttf Cyan Magenta Groupe de nuances par défaut 0 Blanc RGB PROCESS 255 255 255 Noir RGB PROCESS 0 0 0 Rouge RVB RGB PROCESS 255 0 0 Jaune RVB RGB PROCESS 255 255 0 Vert RVB RGB PROCESS 0 255 0 Cyan RVB RGB PROCESS 0 255 255 Bleu RVB RGB PROCESS 0 0 255 Magenta RVB RGB PROCESS 255 0 255 R=193 V=39 B=45 RGB PROCESS 193 39 45 R=237 V=28 B=36 RGB PROCESS 237 28 36 R=241 V=90 B=36 RGB PROCESS 241 90 36 R=247 V=147 B=30 RGB PROCESS 247 147 30 R=251 V=176 B=59 RGB PROCESS 251 176 59 R=252 V=238 B=33 RGB PROCESS 252 238 33 R=217 V=224 B=33 RGB PROCESS 217 224 33 R=140 V=198 B=63 RGB PROCESS 140 198 63 R=57 V=181 B=74 RGB PROCESS 57 181 74 R=0 V=146 B=69 RGB PROCESS 0 146 69 R=0 V=104 B=55 RGB PROCESS 0 104 55 R=34 V=181 B=115 RGB PROCESS 34 181 115 R=0 V=69 B=157 RGB PROCESS 0 169 157 R=41 V=71 B=226 RGB PROCESS 41 171 226 R=0 V=113 B=188 RGB PROCESS 0 113 188 R=46 V=49 B=146 RGB PROCESS 46 49 146 R=27 V=20 B=100 RGB PROCESS 27 20 100 R=102 V=45 B=145 RGB PROCESS 102 45 145 R=147 V=39 B=143 RGB PROCESS 147 39 143 R=158 V=0 B=93 RGB PROCESS 158 0 93 R=212 V=20 B=90 RGB PROCESS 212 20 90 R=237 V=30 B=121 RGB PROCESS 237 30 121 R=199 V=178 B=153 RGB PROCESS 199 178 153 R=153 V=134 B=117 RGB PROCESS 153 134 117 R=115 V=99 B=87 RGB PROCESS 115 99 87 R=83 V=71 B=65 RGB PROCESS 83 71 65 R=198 V=156 B=109 RGB PROCESS 198 156 109 R=166 V=124 B=82 RGB PROCESS 166 124 82 R=140 V=98 B=57 RGB PROCESS 140 98 57 R=117 V=76 B=36 RGB PROCESS 117 76 36 R=96 V=56 B=19 RGB PROCESS 96 56 19 R=66 V=33 B=11 RGB PROCESS 66 33 11 Gris 1 R=0 V=0 B=0 RGB PROCESS 0 0 0 R=26 V=26 B=26 RGB PROCESS 26 26 26 R=51 V=51 B=51 RGB PROCESS 51 51 51 R=77 V=77 B=77 RGB PROCESS 77 77 77 R=102 V=102 B=102 RGB PROCESS 102 102 102 R=128 V=128 B=128 RGB PROCESS 128 128 128 R=153 V=153 B=153 RGB PROCESS 153 153 153 R=179 V=179 B=179 RGB PROCESS 179 179 179 R=204 V=204 B=204 RGB PROCESS 204 204 204 R=230 V=230 B=230 RGB PROCESS 230 230 230 R=242 V=242 B=242 RGB PROCESS 242 242 242 Groupe de couleurs Web 1 R=63 V=169 B=245 RGB PROCESS 63 169 245 R=122 V=201 B=67 RGB PROCESS 122 201 67 R=255 V=147 B=30 RGB PROCESS 255 147 30 R=255 V=29 B=37 RGB PROCESS 255 29 37 R=255 V=123 B=172 RGB PROCESS 255 123 172 R=189 V=204 B=212 RGB PROCESS 189 204 212 Adobe PDF library 15.00 21.0.0 endstream endobj 3 0 obj <> endobj 8 0 obj <>/Resources<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/Thumb 56 0 R/TrimBox[0.0 0.0 32.0 32.0]/Type/Page>> endobj 53 0 obj <>stream HDn1 y,aq'qmXU1h+ԋcg*4q|]yk]-dYmdS\Sէ?VU~Yky~.GW;cYsBګz\ˇ_(_/|Os#a;ykR\ <RZ_K#]{`d"$mD09‚sG/\$9Jb=z6[;ʖ8e6e6j`Y#@1k/VdIu4CB LNN({5ksb;[ 3O\n>xfsj>;8 #xҀEH3ϓ7|Nj\]հq(>δy m%L0 cZtck;ͨ;y뱑rCNWzvG8/V| Xq\vv1],F&ds|?P?X`9 endstream endobj 56 0 obj <>stream 8;W5=*cH'^rd*XJ+>>O`*Y/fi!)7G>.f~> endstream endobj 57 0 obj [/Indexed/DeviceRGB 255 58 0 R] endobj 58 0 obj <>stream 8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn 6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 51 0 obj <> endobj 59 0 obj [/View/Design] endobj 60 0 obj <>>> endobj 50 0 obj <> endobj 61 0 obj <> endobj 62 0 obj <>stream HV{pWoyHYH~Wtldž*6-!B vm}L[mX( Œ8S5 Ψ8 3ezΗMHg?w=9@)EKvO_?=ҾX j)=M]-WO(zbû^ yZs{O_N^`qoCo}=sϑ*O~Y|"{?ߗz4Ƚ56Dy~ɾ?HHpiK[h)y<%J \nM+ܯ3te%7!;K H$ωי*F. Wpp3?3("La:f`&fltQ9Z5瑛#>mdȺ~|xpcÝÍrxo{>'9j1+WI{LY%h@kIݮ܉gRR%jR51j,^T Z2%wL&M&ɔM#1bۖe–&r͐JS3R=zXJ2tGf=q3CB 4eFf]t?J͵thO6T!.HB3$a) Yk7dH蔔tZJYT ;#C8ڐpyy:P^\Nkwu1]-Ṹ K.uT$iwΘ>@̂ĺm5} EHz[+ ss0K%߽{C|4W^]Mc%mMh cZ:gN&k[\;2tղwe#[+Q=-{f7d{s/)wkmʣj{;3绫x^ꮞb^]VB⸃Sa\5 np 1R~qT>‘<e2TƵ͌13]VxU4Ф7镊VTxX/"W-Wz8?9qJK3oJİenV-nENlwDo=ӳEiBHTbK?A}nWr$/iJDY(.{ yKTP/.IHce$j~BL'yнxᇩ6/>&>DmoRE[i eeԪ ?N8f,:'$?GMS km~XKl$Xs=k".1""aG9ZĖ).y\e|K":: c*EĿU#8{xUg5R:F#dLK!C_Ë>~?WZp '>89+FĊS:wE5k@t #MoV6rEvsD! 짓t e>jx5ruW bF+n%QGC^ ~Ob}O^=fy fr4C|`_3_8_343W ȕog%l9tNrl(4DPа &gDdU]! jzԈQZ9dRbQ8Aq(RA#AXhz% d*BolO #$OƠyG%`,(5dYR7QǪFă=>9A;1},~u 1EDH#}AiϤ,%>xD(D""ig><#¾2lVmJ]cvЀqfߘͷmye KY|Z3܍2M.k{ǖ5{ZhT*s9luiE`rp endstream endobj 55 0 obj <> endobj 54 0 obj <> endobj 63 0 obj <> endobj 64 0 obj <>stream %!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 17.0 %%AI8_CreatorVersion: 21.0.0 %%For: (Tom Niget) () %%Title: (icon.ai) %%CreationDate: 4/18/2018 8:20 PM %%Canvassize: 16383 %%BoundingBox: 0 -38 32 4 %%HiResBoundingBox: 0 -37.5947265625 32 3.99609375 %%DocumentProcessColors: Cyan Magenta %AI5_FileFormat 13.0 %AI12_BuildNumber: 223 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Repérage]) %AI3_Cropmarks: 0 -32 32 0 %AI3_TemplateBox: 16.5 -16.5 16.5 -16.5 %AI3_TileBox: -272.00000667572 -389.499969482422 303.999969482422 396.499994277954 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI17_Begin_Content_if_version_gt:17 1 %AI9_OpenToView: -15 5 21.04 1549 884 18 0 0 46 121 0 0 0 1 1 0 1 1 0 0 %AI17_Alternate_Content %AI9_OpenToView: -15 5 21.04 1549 884 18 0 0 46 121 0 0 0 1 1 0 1 1 0 0 %AI17_End_Versioned_Content %AI5_OpenViewLayers: 7 %%PageOrigin:-384 -316 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MO %%EndComments endstream endobj 65 0 obj <>stream %%BoundingBox: 0 -38 32 4 %%HiResBoundingBox: 0 -37.5947265625 32 3.99609375 %AI7_Thumbnail: 100 128 8 %%BeginData: 19728 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDFCFFFDFCFFFDFCFFFDFCFFFDC0FF7F5B855B7F5B855B7F5B855B %7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B %855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B %7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5B855B7F5BAFFF3031 %303130313031303130313031303130313031303130313031303130313031 %303130313031303130313031303130313031303130313031303130313031 %303130313031303130313031303130313031303130313031303130313031 %3031303130317EFF5B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B3185FF305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B303130317EFF5B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B31A9FF305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B305530317FFF5B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B30A9FF3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B30317EFF5B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B30A9FF3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3031305B3031305B3031305B3031 %305B3055305B3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B30317EFF5B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305BA9AFA9 %AFA9AFA9AFA9AFA9AFA9AFA9FF5B5B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B3185FF305B3031305B3031305B3031305B3031305B3031305B %3031305B30315AFD10FF7F3031305B3031305B3031305B3031305B303130 %5B3031305B3031305B3031305B3031305B3031305B3031305B3031305B30 %3130317EFF5B315B305B315B305B315B305B315B305B315B305B315B305B %315B30A9FD10FF555B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %A9FF305B3055305B3055305B3055305B3055305B3055305B3055305B3031 %A9FD0FFFA95B3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B305530317FFF %5B305B315B305B315B305B315B305B315B305B315B305B315B305B55FD10 %FFA9305B315B305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B315B305B315B30A9FF303130 %5B3031305B3031305B3031305B3031305B3031305B3031305BFD10FF5A31 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B30317EFF5B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B7FFD10FF5B305B315B %305B315B305B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B315B30A9FF3055305B3055305B30 %55305B3055305B3055305B3055305B305530A9FD10FF3031305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B30317EFF5B315B305B315B305B315B30 %5B315B305B315B305B315B305B315BA9FD0FFFA95B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B3185FF305B3031305B3031305B3031305B %3031305B3031305B3031303130FD10FF85305B3031305B3031305B303130 %5B3031305B3031305B3031305B3031305B3031305B3031305B3031305B30 %31305B3031305B303130317EFF5B315B305B315B305B315B305B315B305B %315B305B315B305B317FFD10FF5B5B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B31A9FF305B3055305B3055305B3055305B3055305B3055 %305B305530317FFD10FF5B305B3055305B3055305B3055305B3055305B30 %55305B3055305B3055305B3055305B3055305B3055305B3055305B305530 %5B305530317FFF5B305B315B305B315B305B315B305B315B305B315B305B %315B30A9FD10FF315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B30A9FF3031305B3031305B3031305B3031305B3031305B3031305B3055 %A8FD0FFF84313031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %7EFF5B305B315B305B315B305B315B305B315B305B315B305B315B5BFD10 %FF85315B305B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B315B305B315B305B315B30A9FF30 %55305B3055305B3055305B3055305B3055305B3055305B307FFD10FF5431 %3031303130313031303130313055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B30317EFF5B315B30 %5B315B305B315B305B315B305B315B305B315B305B85FD10FF855A7F5B7F %5A7F5B7F5A7F5B7F5B5B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B315B305B3185FF305B3031305B30 %31305B3031305B3031305B3031305B303130A9FD1EFF30313031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %303130317EFF5B315B305B315B305B315B305B315B305B315B305B315B30 %5BFD1EFFA95B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B31A9FF305B3055305B3055305B30 %55305B3055305B3055305B303154FD1EFFA9305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B3055305B30553031 %7FFF5B305B315B305B315B305B315B305B315B305B315B305B3185FD1EFF %7F31305B315B305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B30A9FF3031305B3031305B3031305B303130 %5B3031305B303130317EFD1EFF7F3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B30317EFF5B30 %5B315B305B315B305B315B305B315B305B315B305B31FD1FFF5B5B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B30A9FF3055305B3055305B3055305B3055305B3055305B %3055305BAFFD1DFFA95B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B30317EFF5B315B305B31 %5B305B315B305B315B305B315B305B315B5AFD1EFFA9305B315B305B315B %305B315B305B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B3185FF305B3031305B3031305B3031305B3031305B3031305B30 %85FD1EFF7E31305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B303130317EFF5B315B305B315B305B31 %5B305B315B305B315B305B315B85FD1EFF7F305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B315B305B315B305B315B305B %31A9FF305B3055305B3055305B3055305B3055305B3055305B30AFFD1EFF %3031305B3055305B3055305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B305530317FFF5B305B315B305B315B305B315B30 %5B315B305B315B305BFD1EFFA95B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B315B305B315B305B315B30A9FF30 %31305B3031305B3031305B3031305B3031305B30315AFD10FFAFA9A9A8A9 %A9A9A8A9A9A9A8A9A97F305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B30317EFF5B305B31 %5B305B315B305B315B305B315B305B315B30A9FD10FF5B5B305B315B305B %315B305B315B305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B315B30A9FF3055305B305530 %5B3055305B3055305B3055305B303184FD0FFFA95B3031305B3031305B30 %31305B3055305B3055305B3055305B3055305B3055305B3055305B305530 %5B3055305B3055305B3055305B3055305B30317EFF5B315B305B315B305B %315B305B315B305B315B305B31FD10FFA9305B315B305B315B305B315B30 %5B315B305B315B305B315B305B317FFF85315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B3185FF305B3031305B3031305B3031 %305B3031305B3031305BFD10FF7E31305B3031305B3031305B3031305B30 %31305B3031305B3031305BFFFFFF7F3031305B3031305B3031305B303130 %5B3031305B3031305B303130317EFF5B315B305B315B305B315B305B315B %305B315B305B7FFD10FF7F305B315B305B315B305B315B305B315B305B31 %5B305B315B307FFD05FF7F305B315B305B315B305B315B305B315B305B31 %5B305B315B305B31A9FF305B3055305B3055305B3055305B3055305B3055 %30A9FD10FF3031305B3055305B3055305B3055305B3055305B3055305B30 %5BFD07FF5B305B3055305B3055305B3055305B3055305B3055305B305530 %317FFF5B305B315B305B315B305B315B305B315B305B315BA9FD0FFFA95B %315B305B315B305B315B305B315B305B315B305B315B305BA9FD07FFA95B %305B315B305B315B305B315B305B315B305B315B305B315B30A9FF303130 %5B3031305B3031305B3031305B3031305B30FD10FFA9305B3031305B3031 %305B3031305B3031305B3031305B3031307FFD07FF853031305B3031305B %3031305B3031305B3031305B3031305B30317EFF5B305B315B305B315B30 %5B315B305B315B305B317FFD10FF7F5B315B305B315B305B315B305B315B %305B555B5B5B315B305B31FD07FF315B305B315B305B315B305B315B305B %315B305B315B305B315B30A9FF3055305B3055305B3055305B3055305B30 %5530317FFD10FF5B305B3055305B3055305B3055305B7FA9A9FFFFFF7E31 %305530317FFD05FF5A313055305B303130313031305B3055305B3055305B %3055305B30317EFF5B315B305B315B305B315B305B315B305B315B30A9FD %10FF315B305B315B305B315B305B315B30FD07FF5A5B315B305BFD04FFA9 %5B305B315B30AFA9855A5B3131305B315B305B315B305B315B305B3185FF %305B3031305B3031305B3031305B3031305B3031A8FD0FFF84313031305B %3031305B3031305B303184FD06FFA9305B303130A9FFFFFF7F3031305B30 %A9FD04FFA8A97E31305B3031305B3031305B303130317EFF5B315B305B31 %5B305B315B305B315B305B315B54FD10FFA9315B305B315B305B315B305B %315B30A9FD07FF85315B305B7FFFFFFF315B305B31A9FD08FF305B315B30 %5B315B305B315B305B31A9FF305B3055305B3055305B3055305B3055305B %305BFD10FF5A313055305B3055305B3055305B30315AFD07FFA95B305530 %5BAFFF5A3130553085FD08FF7F31305B3055305B3055305B305530317FFF %5B305B315B305B315B305B315B305B315B30377FFD10FF5B305B315B305B %315B305B315B305B315BFD08FF855B315B30A9A95B305B315BFD09FF5B31 %5B305B315B305B315B305B315B30A9FF3031305B3031305B3031305B3031 %305B303130A9FD10FF3031305B3031305B3031305B3031305B30A9FD08FF %5A313031545B3055305BA9FD08FF85305B3031305B3031305B3031305B30 %317EFF5B305B315B305B315B305B315B305B315B305BAFFD0FFFA95B305B %315B305B315B305B315B305B315B307F7F8585FD05FF555B305B315B305B %A9FD09FF5B5B315B305B315B305B315B305B315B30A9FF3055305B305530 %5B3055305B3055305B303130FD10FF853055305B3055305B3055305B3055 %305B303130313031305B547F7E5B3055305B30315AFFA9FFA9FFA9A9A9AF %7F31305B3055305B3055305B3055305B30317EFF5B315B305B315B305B31 %5B305B315B305B317FFD10FF5A5B315B305B315B305B315B305B315B305B %315B305B315B305B3131305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B3185FF305B3031305B3031305B303130 %5B303130317EFD10FF5B305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B303130317EFF5B315B305B315B305B315B305B315B30 %5B31AFFD10FF305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B31A9FF305B3055305B3055305B3055305B3055305BA9 %FD0FFF8531305B3055305B3055305B3055305B30315A857E7F5A857E7F5A %855A31305B3055305B545B30313031305B3031305B3055305B3055305B30 %55305B305530317FFF5B305B315B305B315B305B315B305B315B5AFD10FF %85315B305B315B305B315B305B315B305B31FD0AFFA9315B305B315B30AF %FFAF85A97F7F305B315B305B315B305B315B305B315B305B315B30A9FF30 %31305B3031305B3031305B3031305B307FFD10FF54313031305B3031305B %3031305B3031305BFD09FFA9305B3031305B303154FD07FFA8A95431305B %3031305B3031305B3031305B30317EFF5B305B315B305B315B305B315B30 %5B313785FD10FF5B315B305B315B305B315B305B315B305B7FFD09FF545B %315B5BA9315B305B85FD08FFA9305B315B305B315B305B315B305B315B30 %A9FF3055305B3055305B3055305B3055305B30A9FD0FFFA9305B3055305B %3055305B3055305B305530A9FD08FF5A31305B30A9FF5B3055305BA9FD07 %FFA931305B3055305B3055305B3055305B30317EFF5B315B305B315B305B %315B305B315B305BFD10FF8531305B315B305B315B305B315B305B315BA9 %FD07FF5A5B315B305BFFFF7F5B315B307FFD08FF5B5B305B315B305B315B %305B315B305B3185FF305B3031305B3031305B3031305B303154FD10FF7F %3031305B3031305B3031305B3031303130FD07FF7E31305B303184FFFFAF %305B303130A9FD07FF853031305B3031305B3031305B303130317EFF5B31 %5B305B315B305B315B305B315B3085FD10FF5B5B305B315B305B315B305B %315B305B315B5BA9A9FFFFFF855B305B315B5BFD04FF7F315B305B31FD07 %FFA95B305B315B305B315B305B315B305B31A9FF305B3055305B3055305B %3055305B303184FD0FFFA95B3055305B3055305B3055305B3055305B3031 %305B305B5A5B3055305B30AFFD04FF8431305530315AFD05FFA9A9303130 %5B3055305B3055305B305530317FFF5B305B315B305B315B305B315B305B %31FD10FFA9305B315B305B315B305B315B305B315B305B315B305B313730 %5B315B3085FD06FF545B315B305B5B855A5B5B5B305B315B305B315B305B %315B305B315B30A9FF3031305B3031305B3031305B3031305BFD10FF8431 %305B3031305B3031305B3031305B3031305B3031305B3031305B305BA8FD %06FF85305B30313031303130313031305B3031305B3031305B3031305B30 %317EFF5B305B315B305B315B305B315B305B5BFD11FF5B5B315B305B315B %305B315B305B315B305B315B305B315B305B31377FFD07FFA95B315B305B %315B305B315B305B315B305B315B305B315B305B315B30A9FF3055305B30 %55305B3055305B30553085FD12FFA9FFA9FFA9FFA9FFA9FFA9A9305B3055 %305B3055305B3055305B305BFD07FF7F305B3055305B3055305B3055305B %3055305B3055305B3055305B30317EFF5B315B305B315B305B315B305B31 %5BA9FD1DFFA95B305B315B305B315B305B315B305B317FFD05FF85315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B3185FF305B %3031305B3031305B3031305B30AFFD1DFF853031305B3031305B3031305B %3031305B305BFFFFFF7F305B3031305B3031305B3031305B3031305B3031 %305B3031305B303130317EFF5B315B305B315B305B315B305B315BFD1EFF %5B5B305B315B305B315B305B315B305B315B3085FF85305B315B305B315B %305B315B305B315B305B315B305B315B305B315B305B31A9FF305B305530 %5B3055305B3055305B5AFD1DFFA95B3055305B3055305B3055305B305530 %5B3055305B3031305B3055305B3055305B3055305B3055305B3055305B30 %55305B305530317FFF5B305B315B305B315B305B315B307FFD1DFFAF305B %315B305B315B305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B315B30A9FF3031305B303130 %5B3031305B30315AFD1DFF8431305B3031305B3031305B3031305B303130 %5B3031305B3031305B3031305B3031305B3031305B3031305B3031305B30 %31305B30317EFF5B305B315B305B315B305B315B305BFD1DFF85305B315B %305B315B305B315B305B315B305B315B305B315B305B315B305B315B305B %315B305B315B305B315B305B315B305B315B30A9FF3055305B3055305B30 %55305B303130FD1DFF5A31305B3055305B3055305B3055305B3055305B30 %55305B3055305B3055305B3055305B3055305B3055305B3055305B305530 %5B30317EFF5B315B305B315B305B315B305B313185FD1BFFAF5B315B305B %315B305B315B305B315B305B315B305B315B305B315B305B315B305B315B %305B315B305B315B305B315B305B315B305B3185FF305B3031305B303130 %5B3031305B305BA8FD1AFFA9305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B303130317EFF5B315B305B315B305B315B305B315B305BA9FD19FF85 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B31A9FF305B3055 %305B3055305B3055305B305B305B5A85A9FFFFFFA9FFFFFFA9FFFFFFA9FF %FFFFA9FFFFFFA9FFFF7F305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B3055305B3055305B %305530317FFF5B305B315B305B315B305B315B305B315B305B315B305B55 %5B305B555B305B555B305B555B305B555B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B30A9FF3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B30317EFF5B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B30A9FF3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B30317EFF5B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B3185FF305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %303130317EFF5B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B31A9FF305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B3055305B3055305B3055 %305B3055305B3055305B3055305B3055305B3055305B3055305B3055305B %3055305B3055305B3055305B3055305B3055305B305530317FFF5B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B30A9FF3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B30317EFF5B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B305B315B305B31 %5B305B315B305B315B305B315B305B315B305B315B305B315B305B315B30 %5B315B305B315B305B315B305B315B305B315B305B315B30A9FF3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B3031305B3031305B3031305B3031305B3031305B3031305B3031305B %3031305B3031305B3031305B3031305B3031305B3031305B3031305B3031 %305B30317EFF5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A %5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B %5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A5B5B5B5A %5B5B5B5A5B5B5B5A5B5B5B5A5B5BA9FFA9FFFFFFA9FFFFFFA9FFFFFFA9FF %FFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFF %A9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FF %FFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FDFCFFFDFCFFFD %FCFFFDFCFFFDFCFFFDFCFFFD5AFFFF %%EndData endstream endobj 66 0 obj <>stream %AI12_CompressedDatax7z-_|=?fLL޵ly[ I3ܒ&b:oZ. fERm$@H\>|ׅ?ݳ??7a賿yׯn7vv`ݗI.wWW7_l)滛?\p7qz{y^?\!>VT/Rϗ^]oPDÇϮa7YsUnA{cQG?&8syۛWnܾbs? r^s|q7g/._=һ/ݓGڋ˻22/~}^t/tɗ/> \|Gq0~_m~FLs#On9ėHuہ?4h>ڨFga`Rb:\4;?_77wWq3?^_`|u|=uzO󫗯g?p!ӫ[ݏ7_]^?{ۛ?HϏ=ĥɿ1Y?&h%e5=>^?| $Gij#*{4^9>~vo|]oů6_|׷?O7|%țq)˟rϾUA?_=|~}sǟ^x~|xO;>{)a$=~s o~/7^cЮnnx{<.;>~{e*ejY/kAD5_J/|5{ԧ{/^?z_z5AL/q[+e~-V5ګǗ=/SӗKe8c8T*5qU1שTfM.R{v+>H::zџR OϾ;OD^~&3Oo|ybbY2d!yJ0KqF]stV}P9\]|{̒}aY>Gߧ4 *gs9f;|!"8is49vwtau!|kry'3.68,O3]5<,KęEIi" ssvAyNL&OF3Jfy\҈1:~Azr/hǵ"^H+XM0ьft0ze`!ك=Ndwnΐ]Rp>ޟHl!ưg.\F} qx/pF?R۳vrqvKI>Gdp'n,:.ųpved2sp?Xܞё9v#.M=*@ Zafi?KEKB#R%Hn,YjD:%e4Hg)a~v4R\0K~p`bJdfIϒaJe}5,S*[u1Y\]L-g3|Ff3nFXՎi.m1Zu0^qIcis |N.'+u'Q$B Jcg/i()͎|NB@R29%\Nٜ@#9A6w^݃88 78G1gnctGwɩk\`0%{8#`= H@α W+qpƕ腈E! "֣ dQJB%"VD-ZI2YТu1k/VL֣DRQ.D> T!j%aN\,pEJ"ERŮ (x%kˊ _aeQK/=1)@v9y'Bb"Q83f\` W:I^.U{J'>nWB{F^'A禿4ϨKvvtHZ`c E,i)?E@VwyWWQ4lT Ts==DPYY5/&14ZƸ@Yp}Fs].TV$W+I&OD'S'Ф4ޓR4z`K6NTן3S وRѡWCNE:攵1ikO!*Rmh;n񦤐SiiW~fWUOj6- tBsʳ}i1Έ.4Y,QF: P rU)l =xî~sw[m[0vgI*bbb!b0&ȸ:#Ob>>C'{3F1iL>sr2(rY9w*Ӹ͔ 413ɕytF\"9NُAXNg =ckaiv{i< 01S5b{u1z < \mą[nf z[DU 5D='9Q9LqFpKlNZ6Q%-k gӧ9ϳל: W2O T^,Hm47qZM0[>쯞.̺`?j7H1Z 1n yxǠRQ\nΤ.04 n456[tX/zaG/ulta%ȃ2["RgiC 'c󇛫[EȮy9Ĭv|iֵY,ehxl&D56%|3OZruln>w-.1H> Ɋы&2{ɬѹs cԲE13FKO/1Fs(T(g,a&a,Sb6T'aﯤ]M*KuyadKkcF{^dBp^'e)A-Y3n)ǥv{~yU*:+IVk vfag̶RtoZYL7VYfJ+]euv2?[I3 \bzXP "bETǒ?*aMq!~ZC"PVkx6Da? qV)O=B)dZ)SB&u3_;i՜G]/XZ.^Sx-ZW=ϓSp\i-s%S3X}ιvc7OVN]35a>bEҷ\a :k`8bA~Hqt_c=s}}!q4$h!NSET6bp\fvWw|V|3$:\{E9B k5xؚA+})_!OyqtqP SƫTEi4S|& I gWo" DtHxyzα&kg1S;jzBUT$^R|ui%˙^tmY6A!kN%D3g&*Q|vArjdEYo>ɃW` R~'2ţ Kt3QB;+PPyMtNKt.%[9GT=| ~,YV\y- ~ChϊX0 '>R< *iRV|z}ceO!⡮ًlo8do3weEy%l(dH")Tff7 s _qZP͙Q rgE)KCN h;z[$x#`ZJE 9Ŝ <T\TNKLj~BMcMt?%Xb+ia9\Yფkkr&+ bky=ސ('ֻP{,hH}'L\bdO{F١"Kb{%U&]-XOBҪpزWK~e<1ag}闐Ve=Ɉ=Wohd%hJ\U&=r!:۪!)>)soi_./(6]k:;iI&ɇit0w~CX: >YHΘg6۷3s78Bg25H&KMd…Gn0Yh˂C\NTta.o+C_Nڝ {c*+bS8+aEÆ" l\+$LP`K%Iʘ䊹|>ssY<-,euMQ'72xs(R_JKY|)eAY2$\Wa&_̤󺙪hEi|b[?^__8>m_*=8)Cp|ꃇL k$j=Cf7N3{ IH˓y:A,%BG;:m`B''<9?ZHo;ߙ:msTZꮅ.gCzR3FC ((ə/]~N|BIݡ^w3_ T٥KXJ ;/GUG[9r zbP\ T>iT1*V› j5Sh3J]2ɞHne=)NjKFaiEwҧӯ5*1a +U9ϸF׭hqK%d)d dL !p gm]Pf ׍8Fg&LLH'*kj+IexӲęW&\U)8Mɼ!&. uDdZ&HM˄)5>55GQfX1|ptI&K(g"Pq&r-5a"np}݆zO 9ػڒ*'PPM:i)͂$>jAuH@+A8BY<6ReN +FIiKBr/f\rK@Kng?9tⰒz11|Ò}Hn'Є\R3!C.̅:8?~x !{b/ 6/5%5lJH4'fs\ \k9v^HGQh<ކ)xg٨[ Řkr&,f lrP.C5NbLvn5i40˶F${{0ž +nf5?4|BKr{Mj(R_)ʯ]kJQ~(RWc>SwLNآю! ؁f]r)?a2VB9͹"BjX{> c _zU< ƩZ+h#rcc֫45T46lZ m\!B03o&a vXө 5{Soؽ*Dq*N@3|oL:NSY y=4P3ji}~*4n@6x ̒4 f%cM}ud,0ˑ0sEŲ׃ 9<] `'ңQ #f|?뇏n1yw?"hX\c\ӭAT^\HOuf%yQ!(\X}FUprmx8*2VL.rP= ↋ Dȃ;f39:]&2OEt&%)ʦz !(jG_%? 8y(N%{Nޛ Oƪ6K.R{LA &`S02vI>vfN/= ^( -qJX"t |k]PRjYO$ גI;}kk$|9P23{Nl{*;:1"EaԤg|DE<~ϯ5>f _#6<-J($[=d'wS!7n+#dvrtPX|#֘~Z)Ul|%;KK' 5-/0ƪ;E^ƌs#x_[lN枢a\z3db)scM sxlUbT~fr<.I'k-P~}Xݳ&DVdVqي/xL&S/p{Vhj&.l0ZLrੴzw_:n[1} 5H(?gY#nZky/B|W=E/rccfj_ck̷C*>s"S`J'=h;ո.XH١]:!b>TE)rʕ-]IlQ?厏Q,o  O!İbvcr+8xy/'';[e_i,q֎xt:ba8]y&sF_QûJ0-f5i.[,&p#?DLw`q?xgʰ~!3k̯q0`J]bC56n&m&.}M}Ӎ6:\=??|Uw/r*73n{ Yqw!Nms'ϛ7γ]4t٤\BAC+EW xBlrGʛ=FO#u[ɓ?\}{u}wu_>gﮞ|s|z'Xj=_38IEG\AŹDgB][egnyǠ@sxŭϞG5֌ja4Ge3.`t ZTsqn0KRMt[)j;V4y7`Ǝ2FUưk5 1,A[:n1.[7b5ۍXaS`&-ƣu ##2nN Ꞑ1z1"*FW mCkiA#`):` e<ӨFfDF+ecS[cj0nkkmj "N`!mR(CbPY=f`,tDE.QRߎ\6쓊| Ό5E`Y8U`q>W[|g@w~YL%> jJځl{\Ks؁aB k0r I5cXV!@*|Ά[8tґ֗rnS/es-O ;+o>jHH-&ƣS\>6?e 5V x~5(`{zl0is= <w^lAXژC3R^28D%iDؒ837؜FA[?D€d dE fȑa;aa]@x6`+c쑋B= Z G1ؠT$ OVo >nՈܼXĮlp;l)5 ߗ}o\tKHvVZQ aEmdLuf j;c3 "VS TpHڴy0– $Dq ‘<96 0Bٜ^z75f\'u5`3r}gځ i߂+Փ_1 ÷+F>A}d gGW%$)o"G'Ձ+rb@qbrC1,? "1cVw<(Wdbc7]#3n}ߵK1n?bڝ6Tf43b`m\n(r8 b́Ԥ$8~eSQD"x$Yܩ\[ nVF s9#W?nbdNR<BeBi d8E\3,FQ%h)/ @a.XE-Mt$AiC 1}KipShz4F 7ԮŌT/l=|3_/Rtk1wT["5vxqi|`tw$b a6b|++%6+ԕM R9m]ƮrV7 R JB I@e uX{M 2I$5(5vw9N}XX=10JfS z('Lźw fv>Vw% Ҁ6TͶB`N07vH,M5P X`cfCz46 >qn+ #?i!4OCHmUR -4/Fy0"1gЗzu |w5VNOI}Ǽc$nPЊe>79z9#Bgځ( GEI3"Uqa;*I8& 2n4]e-,xTvMo>Zz,$@CXĂ<҂ v"}IH(Ŕ;KMy‚$jIYmzJ5 ֋!H1;jiSRF@m!@Sy0}»`*}5O’'LNb#{HFV xnGZ N|Ҋ&'$: 1_0F$n8nG(. <ݎlVj5cjۑaf:DfZ@C1Wɑa2ʡc-8/f4E^ƪfkpIS ;J OL:O7[t) gk1?[鎞V(쪅 $*n9%zlEt_av67jLv6uڛ},vF U۞beS uTjd;IfzP-@xX:0 +[[La\A28LiAJ\Xemhԓ XXl)Fҩɭt;"SCPt<8W_꟬a%t#N\K DBMd5 yR=r_Zo8$ 4̠4ƒT[&V5z+~!8/&f#{TUM.Cب=؈ZG@ǘ nTA- oKP>TM5ԍ8jVJ7!j#l8qrKu ݅W~|cܳ#Th!вfH}&hD%Û^ZE>?+]H/~crMJv7G [n~%rtcvdη:p!&愣"bvUEoG \!{Re&͕0}f-V3#H6xr$d=U$HCmqo _s$S;S6D:"NxэnU)C 9bWi- ?KܱLDprY T"*ɞߧ eIQDt7S+}cn WcȰTqIukO2j=N6M0m <[M0< &D.\>brrNh9uP AG{w!Hi2`֭<8+{JЀOoI UǠi87\ABPK]}Pe8 9wΡ,U {҂" k;.J$F$oJd0XBOc@2zDqD]Jy*YaG޷4hWbv^]uӕĭt ys_T}9j PB +RQ;]_7xb?]@)WVZ7r[^D>%cݧuzqN]i+t}˕Ɖخ9cuzW<<>:L9ngO#MI|%Ay <5՚Z~Q')zH*!XTvEK<#zkͼ9X;j2}TdDˠg/U&{8 L]EtzX'MHtL#@d{< DT\Mᴅ(~_HS`yٔIlmꕦYtQ ՜S%$؛SJrHQ4a /jvZR^)N|9=ڮ/|Ln-.'zKSaJ_ӲcdL:p7scZM>=T W>\f,-|>}E*k:xSRjQN8W8!v]7~½SWJk~7|M>] ?֔u([HrXwo>%YwAd1mgP#ii3}W}3ɺiJ NiօX.tźM+FMO5 Oa 7fDj]N\R9պ@\F5f_ Kz\Zh" \FNMC) Gx? ?8sp@v8vn[b<HXӪlbxy}p ^*_E*RKniיĪ~X;ZZ5+WDיtG.| ]Z$ZXaxs %[ ÐT_'MF )ؗ>UG{ " h%,=4ՃsQhA IxQ^3~O[t-ƥڮ/'yyx1+$`D]LUmꑣMHv0:W#VG:Q<߈J7a"q` .%hPWG6d+˻3G.}ȴc1xӞ^$Eؑqt1X|j;Y&i`Kd%iyArPQIA>ӳfK"[-+c!2JT%.5ޘK(Б3HS<% 2QҲ3D²5xHQW,L~೮'jRVRValYO'1M l >ht1R@1`F1iV((c"o7 cPܫ46ᐸH ;qQ|и=ХPa$h!\yY1nxt#d-CF]K; }{͘Cx|22׼0( ]xIH3c1id Ջ6YCmܿe{ſaA@R+ 3/N˦BھN&xtQ{@HIٶ}؉kZZ.Ms%Jt}#}:^Y7oQQݘu]o?Uuv eٗQ@*DGk!-Y U.Q1-`-*xrG/r  #_ї|%TÐ(K)E< 12D1iea `Rw-KRB iY,rLj_쑀Zh!eU/r(#Y厌YG;|7Gxt)P!ϐ:q}zHJ=@d^)`OSkN0 Vt`/ۋZ1k="* it֒A#59ނN,܄Q-̧XngMIi"v^Z2m2H(#] QTF\ f9փMj #mFjU5fF4-x,/ &`%dH^>H[ҧFQlɨhcI?o; M*DW r8 *6'vz: jeB\_"SZ,@HZE`Zr9m M'7+ьɂ7V)h®/̙+3ĄěBFn'H&E;'sp:&/D J pG:rb,,u Nlr|+|Tm)2Fp'amg|A"OGrKt徙*4(M&;ۀ~F><=>1cx 8"Eg/NTe:Ux46)ݏt[+%N+]i@3+$]Y)|Un+FaSqydM_ՔxZn?Wy5ц'5#ʤ_8A0(@ t %[3PLLEV'GCKvxZ_^DC$(> :St}JUʦX6xbNl*J~=ۑ(ocݴwd|v\;U/ļ"Me 64yL#vI;  iUl'i JxNO'E1~Z X/*"y֋KB>ZiXĺ^b}0_"SL}2)/uъ3避p1JrqoWXDO 1k 7dAD".]WWi]s,(`+]h RRqK8h ynKUM##ѿߍuiI8mycخe@ 0O A[^_(J(|ՕV%l%rx-I8@H~ht꾤)Qj-we>7 3v_ ǻx6UEY38iqCUi>MMK 8}V3c_"S-84Ŧ//dPyɥ+G4r8!mwQeqmiǠǮ3N'lH]rK#dZBӉ b)d݉w*: [~cZ'\bD8M֣50v],~'<Z4X*@/䢬n D ,z;Q3pQRFac#9HǸj(m3n c(֢ p{ c%$@6Jbu%i@'SfZ)QThS]1Ef}˚ 3zٴcHAָ'wtug ž*Fq YY h&nthD9ŮcoEO7=m9C UV\gP=y_,ai/: 3WȝYJjp/}Z(6 BLOqF(XXp巰p2AcPut[ J]繅JF#Z*f0l 'rKt阩45"@`Sa{ kKuxv$omk%\5 *慕bS`̛liQ`*Oj 0z2 C_&C2S[ԁp$7I_@`遭VJd>Q+Xk+!nSk}J43@#SL3YNb׾)*Ҿhۇ{gfF.yU{ͱo&5pH_LWJM6fp4"rK 2}FfQ=hVǭvn>iqY2n Ю6++K34i 䆺qF}S4_Q°A40pRP )bW bg hh%ENy)x*F}iQpƫT2,U찫zИT։†<f饲G%b fO9"fut?O߻0X[?>ߎ빘ATR;l\$:B^|05#30cPY_cL!SkJ;ܻ\[ #kTs9,֎Bi}ZTVdF I &fݲ5n"A LB)X \qЖg2py8UZJF N!!Yz״,w)Qf q:s߄|da]@e_4 )*!{ Vxo7NHVL2-FV aYCut7kCF@@WH삘yԼwЖMCW vי.bZ%-!b*b KUM83UQlg +YSn1`AI)k}J4PM1zoNעHN.d/5}b?-#W1=t`PnY.]1],'!&G ɀQ@qZ \GJ5C10z/xߓDIN!6<7}_P&F Ԗ u96}Evo>pXo|ߍ@1Q /P7x@$>=0,nЗM S:r?bWu^, 8Ưu+|L5.a`,:޹ J($UmeܖWGÉ FKO 6\V#Q :bR#PUH8أѝcpK \dڝI  ħ!XW 4vt@>7Q+ Q(Lͥil*.@I gw {D6tP3"vܗYzLУvKt3X&D =,_bhvlO@pL)@es+0[k\Oau-noBtY쐬4qn=hK$?eqb86Y^Wp9%F%"+,;XSÿl u?O=d]r)yzѩWkFLkXPSn%55PM[C_dNдsrqE}DЩ񛆘Bw QdE7=ב&:һ]4J*Д(dLګ9RR DS׉9˨ 6^}؁wI$%.&ٞ@`0K,\!0]{5c{ o6P?>mQ+Ӎ{';b7Wvon?=?Sn /vzjZ,wxÏw?{:wu|5odn^>^\ݩ_PW-_JٌD2^=]~KY~??Ώۿ\]GjKf^@"h'eRXJSP'鯿˚ea?_aMRh7ukRnқs[~'r1i9>&cnJ8KP5EA8rvDWjq_E';s\ `7D !Mp `tE2 4CH-agvGa.N#!ReIЄp^>KܺJ?8^Ac`!7Ao$2hz:n"[&;6-JnsV1۱8.mJ4*QMR5C^ftU5ɱ )iFsq0tQ"=;Ċ_ɣ4d` uK@iBf0cSmޯ=G g|PϾd)f'=!Glm_J=KX?Qj{![/Z#P71W(838Y[O,ESBzl(îƒ`&W#luAi"1XKv\~؎xkEĞy k=7q(Zu4lRwN@ҀOlH^QΈ[*AZ:!-ybU|.4;i2ht\%Ql%:b)R[Bu %(ݠLJzX)AHx,kxel59%T9| 05/,a|sB1:[P&VHWD-7 CXXb;EࡇN{VP؁іYցf1ՃOgjTRt (l; ا K O*#Ey#Zj)@@M` c9I{G3$!ѣJ1/\e ,f \* >R&xqqyT? Kzҁ _LOhF$)]LԃDY=$;0V[2~Ī NζDNq#6{33m.WH3p0ǁwWs[UVtæ\ |2\Ix6(JeYOS&-Wi#I}!+QMe+(rȉS [q`b%Ե&`*Rj-ΜUuqJ<gzWtix=G}M !А^ 8(/N36(R36bD3 Ky w`>8`s7bQ髦S / iT1=xLj5mf|<'+}ܗhL+'8`$NҥէeU(vh*Zm @9b )+J=!J( WKm+%xQ3;ݵeh݌HܑfH䟫3MqYʎDUl9dM`N4 3?˼wH;R4&0ÔBi  G'KLW!-$rL⭧ ,H"=JD nNj;L&s=![n̳MZw!]b A۩[o0Xt.8MI/` .?1ü2X]B[{|j:zdJ:S Z"S%t8r JB{~ I3+0+8xW^Sya/N TQغb3|b|6{tH©,1r:Q(<+6 H;)E|m%r #sr&'RPMxZ1šz;xkN$pi|_Y=0Qg:(kccA{!^stdP"!?H`GQ-/Eutcm2U/! V(%65!&ILFOj:o7b+j, b+< 9ܭx Mr>&c|Rɲ5B1g1tI<3FV2isbCXFH#T_YfV px䆐kXb0JM:$&/jZ98Čq9Xpt}(pir)z@Kp:@H+ ^,.yS;b#HCSHaCv1".Ӄ (ѦvS2eWcGEف@B@wDdn#d^%ÓY!IьC Zf%RtVa-~am&.2 0UxMSUlp pq u*QAdk)z9#zZ7 g- ޓ@Py'ȁ$H";1i3-c*7lGMP(.ޔY[Pty@ndx!) ,N rL]:%};1).g<y(XFX9Z2̤[\Fc&YLѷ710)*k|8$P-F2"Ö%f֤/K9*`% O.cؒqւLSƐb 9?r!GA*5E*눱^p '32A@+I%n%KPr~1* G-oeww6K,CCMB-㼑>T82lV)Z'8"?= Ap$W.K3*JAj,Fv Ո+>8еz :qƤbIF:S4grSED5Vבy  C/sqٌƥ." a%>I+%8˴'܏54qJ 1Jc. Ry1Os)rI.|TgbsD:ۑqmgxZn؄Gl_Er|R% hmE5ASizRg#1oXơ:'k56*FR!#U9E0oʏm!dH..Bi=J3Njk{;vF > Ie!b?P'_AгEfVcЙq/t)g.wV;0a/DAI% q*Q`>CNw& U{7]zC1_G%oJ$P`Jys/AZqGKQ48@Hsz,O,:.yeCtQqgu%-u3%VuXWߩ؝diϟFY*^T?䵿CG >L"99 PK+ l`cNpâY¸f?Xm\5kf8֝ݕFZ_*꼼y&Ifn8J]l%tmvg~;`8[aUk $N\ľ׳ژՕ0awK㸹G~q'ʮ&V4ޞ + BƋ0{N&lJ{fO 0#[jiY8x ^<& vkmcQw^%p&RȹNQDJ2h)q;u6Z N:_d f\qzBRSNwVbjT5lCqʍPcHyNs\*#V8{/"K"^-*zp@mEUm:тu{ύ.zt`wziͥ\nPO2SMCyӽ K%^E6S!. :)`KX&N#OHzψJK%Nt+gOuX.5@¹\U= _4p!q֑L!=#V>}R8OU=Tݍ 9G\#rk^c1Im3V\>]a\Ȍa*sn! eC'NN>LX+',~f3q thͯnj=I-f7(zZstzg'3hA۪Z,bGfJjcH+Is("t#NQ?Dt=!̇,w:9N7r>g)rC\TWdzcCPʼC)`4jhCnu<:X@cZK+V8=  Fu5ES4a/9 C<#9 lD Y8|Ǜc@3?Ƨ@_4 >Gs9ֲR۠5;FV˝7<N|-R S7u̚zHŨAjlLvX*(1а7l*=_0Y7cJȱ9ʱoT5D_(ҀzU0ֈWNfs## moQp@ߥ 6EXBOTMv8LfhDjT%)n2xTU Pߤ=sRD==&@uA/ b|˕udɃ[\_KtrٝJ2?.oJUAu-ԇcm?]o[N=LM ;&DI BҀ>oϯLLC?J*& {>=sԟd#F3A΋@0XFVa %Wa 0-0:ii6ڦ(n$߉ѫC>ҿQk'$`Ze C孑CǾuP\˞xy e F"f݀Tg ~b;#XrB˪tּ^=KJC0墨 H 6&* d^*yE?X Є8K#J~u&s Յp J}m\=}nOD>M .>$RɦFI_uj;a%Ԑ$U]#W\(:̩5~ l-xiU=izp'fyt :\c:m^G?_gBŊ1$1*jQ8G\[#&ţS۽şjm 2W)YCpxl0JЬüu'?>0,M[ӊ13O- \X88z5d8i-m3@ZcO8`P2@QشbꠧʹgHW:2 Bۧks(ϛ5ZȋU#}G<%aw6$ud=* czxVbe9^ P9Ce06y͑ y}]--K|Gya~zHY {ͤ?&$_7~N-F$q H"z@jڪ]3gzA.og(!2Q%gh,܈ce`L[OKV i;Ǎ96Grí.i$+Dv8aEc|w+6TBڹg}3# ܲbyrP::'!Ӱ֑ᢽ& Y!tpn0{6mbѐ7WT|)؟?q%M(#snr%W{U"CʺXaPL^ <2nF$uHefE҉H8뼲4K#`NK!(%{h!;[Ern1ܳȩeqw^- D͙VbMgHuuaD aXњB\y)i 40C!Ѱ5~D&NbL0)$sӭ(Z {L9bpkDŠN?XAG :,$J"he4[{*_"\XfGZ%JkcM?iu\u:|y]g5{[#:PG;'[Rh!(A +mք YƳS1l/9J1"ela;k]-9) i1";ުTh k^uR/4DNVStqRlrH)o3ۖ,_^ro03x7[NjA_+1'z#]2$sGȶZ0Gبnϳfƣ&]CiC|]O`%OvM+ͷD-PR]Juz&ݺWRm )FܝWǜ) ̵s.=M_RgLFXJwŖE^H)8UC&ChӛGU9ᤌ?(hV7r\}3GJ-e>%nQ;a7JH+;z,Kː5\C\Q3id%\D֒R EmUrH)L*7}ZZ4OzJc潵c8H)Tt;t/fhJMAQt C@_=֚EIgukoJ]ĭ#ka#|3pv嬶=XOuώuCl,%)%J<|>FSXf7wn˅(^'}E UGL 4~  Zn'h{8:W"~G ҰǪcdnn (kjy]#T`:"9{W' uV Ud4A}G7ՎQQ[ң2V˟Im$h7%6mlt0X ]I4 rM>†UީxL@`N9dxDF %s\|{Gϕ ֱ04(˺w'$}."}Yw1J~4s|E%VW̰eʱ3R@P$dTE]&pR +; `h;{TeF1lCqbE-T\,*GD>9/_4{2MwlEA=rx'e[yi@NA&}xZQL%kzЀȈ 72{|J'/n/^ls4#h+Nɓt9-C<9+'ݛGBPG/([2M%uoԇ33fg|P^ ?WC]Ůh⨅˚"zl4qK N@˹|mk5m9d}ĂRю( rOGת#&_7kfBeoHTYn1>+JFlΖ^,\:a7dºN%=Ո0]ad{'5LrtrFb?B%|JQڗ/YwvX4)Ii3j Q[ɦEIFjMBn˃sރP+λPo2lqk莥cYƂ%Dtn̉R8%CJv;_Syҙ⻾vwo0-iRP֔~AXb#8D~emQG/,i,vZ/ڹ#x Jʶ}ѠHtPErɶ@3q0(j4!Lf~z𱘋I-~h^D8P_xCDQE]wϔ/G 5 34 ,gfأ t׷G}W8 Ev eA XXan\[@Z:~,ȶeCsEБ?fFƲQ"D>\ VC0E 9AA*0 Vw%oL1Ą&4\@.pҜC!ZqY= 5_ eMf]c"U0CGYXN iQ0,6ǒÆ!XARImƱT1Qߙ:KA ~WD}}>f xiݒܐ/#c"o+nN 9+Sg%H`R ҢZRWSHV4h9^HHsvsu_M ɟ{"qP˵ŅJߒ3t xx3+#:'=b 'oC;@ zGˁ9[s& d:JZu,|RpB IFx)\=+1ژ =b|cUCdhG>h҃4T5Tܒ؅PB_nΨE@KiYԺʷ>nXy:ü$8*5n3VMI^ηN?:j}VZᑎPo&8+f;.btj2xĞ31cJ/B%8V=sOlauI\G=,eClPkjW -s'~J4m$VuS@G ^%[[դ[!nVE!|}tUP:%$QuD>Dk}5kSIo=t *\҅kJPUr0yytLDb'3|+u~6p5Ug+Ga}fFL2AfzظwwQGC-R'%8rPN$9X[J:oc FQyU̗QlY6mX( waڗ:=+@G`K{F@.RX.JYctmY<I+JnՑWw jNR&%':8a.;(F[WBNKkƢc4_6 ƅ.g<}xO_ʢ!|gaml?1+L\ukrS?rn ܱ :i'W+6<0T7{\E}V%O4&>Oj>NĞ>G.[s6oČ0E'Cæq>(> 4qb̺^cY/_Ӄȯ{.`Hj?LRRKzJ#k GDP݅gWi]˭>,B|68+W-Y9DZ`]+*yH\ۚ$n* e//",<^t́Hϑ%UֺXDM۫b6D:LykJ64ȺbwʅZ<2+#U V8=^GqXDLU*s=6a-oG4۲%J@Cl&S k??ϊnF Gaa>ZXB(EV|fwڃ9$v)E4' :֪0Փ5DV#?WBuTcE)?VDmP[C w=Ѐxnas`FȄ/w(!KkPw:kq~ͽYw:^Wy'gx~tn\j(I*STg2߅Tۿ 3irKaxu qk"֯5_'FBC{ r֘j\špQrj*RHG_@hb'P&p?כZ:gbI<`Nbަn] \@X_̆Z:%Smie(k(\r,,S6}y]qQ+X[TgK9`uwEYkkE{zHU{6wv8Q=oZQ.Uڽ3\^Q2;!Ƕ`f;-և -~1"XHÇ/g[/VK@ L#>%.^y%E\k$4jcgAyJKF]Tce'c,DҾSݰ.|Z)vL`>,}(DP11tw5y@JS@Ȏ X&c9e~K: &nV\>dVʭja me<^o .Қb2ZwV̿*lP'16kWLi e$^O+kd$ 2"WJ -{:J9=C{9 ?߲kIpkU8n[ 됤A4HXET5iL#t_}za f:8wY)bxM2%21[Pͻ.D45#WcآGa:8C="z$j ;YX+$i =%iW;{XOq#=i0F\ɘ ;plWV7tnMf)qIDYtp6,HZ Nէ2& BxpMKԍ,:`=jѐCq"ӿ1ۃ__7/oO_?wwz~_7/<H \aڰ %8owq]?T!lPm 8@rwX([ =:Kۛ|x:vQ3 &[_fgMiyr*Ɉ#];(4Mp"4"V4W5-uܦmOބ/G#"t?o'RIA!s`cd51R'BtEPz 9.Vh٢TC{Wm*L'A޹BDsYyBkw~زΛb>y[v?px# ֥UCwg#U\pBnҟnbETHդzaO ANa΂5 AXLJu<(Q,j*nV*>Ǫ @LNր;|k}rK>Zޭ1$% |97ZV~÷Č1֞Ԭ֞КG]/{ڏz ~r;;66~wYod)}Pz떕͞5_9Oø~Gg}~;B~p{ N =u7E~?Hmx<2fXuf<=*u_yԍԟdxCs9. Ñ>1kcߴwN7]ljCm+|c]Rֺ$]ZGpp(KX:pwk刪fՔ}x/O74'GPw~|AEzܹl t n@N6V<,=i4Gb  wovN7Tv;<nd;`oR;fu<7*vSٍu/ֵ<pׯ5u΃֑Zn:O^XuJ8*lɼ)ުOgLLF+x7*.Z^B&`tlfxWK92T'%T7LΨtƀY7On05s ͇삊{kK*^DVa̼$K{Q@u,7xN<_Aعp7^k|Z68G~C>(yn<ʹaŇbW7/sg % G:dSO0?\sx75l4#q1 DC%D^$C :rdz ݝ͇Ѧ MzqDxbp<7@||C?ؿL8Zo/L673 %ie&@Eؾqcw_^n-RGujxPC$A_UG;yU¬U>FcpɻKI{'ּyyFޜ]dj#}_t]\@/u`YO,\ ]F #ZZδ(t=B7\NOGo~s-kOtnH{k#9<{ f^BU|?gΚovTэ٢~s~`(syAwOd/4 :V57 f_E>g~ː~!s}K}"scy('3$a1=fwҚf.)q=2\#mf.woV>?G\ gF- =YV.~¹nB.3o0l!<\Z}#8iq[>yKPsukwMKY1w-+1e/#P `ܒ,#ږtP{ sv9x7vmִn~ê55#߈ZJ7۹/Dg߬ZPps|j@2=WXt-2-![]Hks: Zp,,YYޱIILߥ\]?X}"o@T͟(S.XS'֬!?Bn G6XAZNsH@yt"bh#=RdW(L>{J exޝ7VWpZ.{YFNYDYZJ1͍1z_gzDk+Dh9QFQ ~Bs *ضʛDk gM4*bޟ$Z+tlI"2 cgHZd-2Z0rOSm\ɧM&#ϿjXO>-=b Ao|ZH2% 6:}iaKڿ6PbqĂ"6Qs0^|Z9\|xXM̥'Fv%v$GxZtN ROy:LOkC,'5Fj" T8 u`<Ҳ:z{hT02"捣UٲL#/-u^Ю~sgsoвOA8'wl+!YC֬>)N ~ دE+Du\k]5m<;võ kdqw'i3`ѯE|&ä;U@n~q^U\Օ7K{\x+: W1Mlq*Ʋ^/+/<V.oU#~,B& jմ񙞄U/ VvBiFv)mS T_[R6*HPx@qQ ":?r;=EQ~}"OfM PS΃ԓBe!LAɥiPfK\RiJxAި.i_ʆc?݋Ay1iУ=ǵѡTFQWV`MV&ث놈\WlXB;>nv(I@ReX}B?6%Lfl@ky6I"|FG8o.1Ic Ȣ=I_E!50JxfAݤ: O |n&+X/f!9Y7Hh4b?Pic3J2?P-%\ʍԜ/Ў-?#9Gč5W|% G7 a̛VlJ4$n6%Zuɓ I <9'!/7͜DL5ɋX߈IDo$gtd-Q4us$k=Fr&9*^:$ZG^v '@?؎|_#) ~&9%57Qӑrm\#b,F^\$ _/8#pdߙVպQWM`6~ab -[oQE6fq3=5bށ`q{)8ٌT=5ZSpsm!gIipxEnv(Y8Ɏ N_Facssm0DOrUm[EYxha, >"ǨD2xHo@P'".~E$K0 8GgK^Z7F/^27V+!_E2Qw;^Z2񟩊ԟ*e)Ҡ?'CuN靡 { LӉ?:Wr1[NtY$εAhS~"SL4>|s!^ER„/* %Fjhd=z˶0ΑLDs (/?f9T%hx2+9*N‚H~M~b9&pZP>_NKwb*O0%4rg߼DҸz겮WQ/0t~{H*1 L[&߃;@o̢96 2?ɂ‘}@AR(o kCԕSixI U*7%0oJ`&0_ D݅c1|Ofmyw cs/r+Dz\Pvĩ=X~X,Ǧ7]Zծa }rӧb],{ʇ^4$r3op>{d_{ן0{eSM=܅3< iT .}3<ܨ<.J"G ,us'O1P[օ ^>nmZv32E| [LYuʣD"`7O,n Bkϱ>G9Vd)l/6ph4F a^£`Yn Rm֟|s-n6֍qxhV t>m$W6 Ѧr'mh㶓$']٥®1V#S!kiͩ6 VR洉jûn_# 6zF?idT v.' :^4Kg1\^Y6LO@&qߊ#_@3ccs5{2MjyP2X/F2I"7 #}oP&8id:OcdLıCϭXcmW1x! 14_}3@bn}eX;#4Ɔare1@]QhL ~{ 3]x;l\.~̎7 P3Y\¡ Sͯ;n#mD ܺ~poV_Ǣx"w' ^׋57:kN̺_AYrƵXbQhpӰo`݊d_񢪙jSZqx+M ͵""/#\Ve|xM"Z27PN'WΊ}@Qf7jOd̛JDCC&ӥ*)o&!E;+9J^70JZXۜ(S}pB>[0' j] ._}7'qfˁx;\~s5׻Gl'}18i܂l%n"=<MԚDX#M#/Se9c(UVg+yeVKX-}?E>JZ)1~2(͆DOjT7=O ׋Pj`î8$姾탒D1 x$+b#Q'}g!c;oHLw`} ʸ2bxTSL_#dF{|7Fn;Wo?I i,>F ÈM^D0@N \wPQ9[A(*qxHvDk?>0?0IV$Y|LwUBena]=4CKq +eCROoby#&d]sťFHJ1B$H]25K r,J[ R9 %M6?UYa'Qتy'-{XLH9lǵL/k\гjH(rXR.UW)% J6\EMw9Ʃ4xJ LQ"\=|ߒfWbZ3OB>l^(Q<fZ%n"lu?է6RzmL@-j'4>ޡVFz pki$g/֭sr ~Ts[s09BvNEIg8}~Jhs`'px]<7D!/] F hdZ}!# Wx=UgGPxX|c3ϜIfA|1wz,Erްv'F%gj/Za8ɽ$}ϟ# / yiւpn+U,NvoHqZD}XۍPŒ?( 0@Ir~hl^6.aֹ6`}d|r0Jp > 'G:Tz0+ ֹQ ZMh4̭qHXhmڶ֊Ān՞ "U|ktaP[V:LA8vCg8$sp/Ga|(._^l=ӻ}%f]L70n2Q}[-5>7E&Ő4cgcJ/(Sb>GeDQ8Zi9=Bh?p[-ι#Ʈ$͛)ہj 8GE'm*M2k,0 u7} :*)ɧ!38qG11cdT+J8vkV|?@ fsr H::1+ۂWzuK59O?.#Kt@R0lnR0+껣W|QqX-J p׋ «eLh7bhC[:]p.L싺1c"ZD6gi]>ڐ n9| w`nCѼ_NmZ<‰2+y8G%ƘA$>b0z I¸xsW*@gz9T\Ra$z8{Y4ޟdSs Kx>ɻ}^IY Ki=_jLm678qari-,qnqBOF'oڎ0 |ߥ: B!;25%ܸ5zҡ 3M튣ic1욟NuX,XbuߧK'cgk?bt D1hҖ2_iH \sݎ0)p,,bHQku4ro=Tu=THD 穏Z8Ѝ\ -ωw P9Ap\* ={X& KДgŸcL"|]Δ:3]Isݢ $.'?JGcp )h>pD cmNfK_V+Kz'ǟ^U!%9nfPMsv YY"$i05V{z;+}n9>$=\#N`K.'$1xlwʰAcOF\PCp8p;坍Io< ]NҸ2Vmǀ1Lբ۪3A!t]?c2X fF|c&wb;a발/C|E1npoάJ| i8&k°Q)5`冷 vˡu\ҚY Y" $Q̨ xQ6^eL7&01jLF8!NA<:SX3{շ1JjW{{ˀ=bbw9~*=?Blt=*uzT,juLPL =Ÿ^EL, ٳVA܆sqTɔ( I6P:N]M0χqĸbQb}\>E XqolW 88E0nao{#oeՋkxopZڰPꝿм}SB.QbVʼ<qJPxv C/3݊38":J w5|+/4B-#ޫ֚< ._I%=.o%[Dvq@]UeS֬ru% 5%-r+kH:4ǘG>{,A!;z-8lC#6͵dIyj:w;Զbd:m$? Z$& GE=lJ8"j=XYo6G*"kkwC a!3@:,Z`> G].uRU>HIۺF"OìԼc+>W=RϠU!-b"s& Mp+kF~{2s;x(w+.0R,Q!\5ZhlGr+ϻ> K RYٌ t$)ӆe6?e-kWMg$`ɎRJ8z\&L?IK.J}kQ3"NcG>;01fD5VTD\HwئG0'TRC;}+ݡ(+b>ݣGԋluqg yxnp@f@f0aΎ^I}S" 32e!/+N]!P" 9P'W;nxegm-)5tG)ǠjFP#}$5n+-C[ȇ+6DѣGm!J^?1rb)r?qj(apDDDSR b.ֺ-f'DvFqltW_q(s{pYsJ33 $ &ZRFP(/l{=l׬jYKy hb6m,mry[T1-Nep}2NSS0cr͸oǰL8%hPBW~ ]nEoDgDc7_˳G0lU=ԑ9fx1cavU5+1աX(-L?'-6T.e/ BFө3[nAa<"ԉH>F> S+Y' 2g/{̼p_Jga1nf\;Vn⽣'1 o>A쁞10adœn0 :';~tD8EyKA܁6|/,$!m`X%uLo~ȅLa6QD_%ܿ*YID}+Fj]',@ZG/@6oY{⺧cT/dV8{I' W #u\pG`Fo}xfn+ ; R\c!:8x70.ɲWn}͟I]qϳJЏWI%Uos=1\ڋ/+>v`BkBYʖ܊:}HΩ!2B;V5f:ۋ("%dKD6* 'R-oӬ{=XsaQHM`)M+N\+@#4.qUo~+|z4U{}(Bbm3%ڎ`UJ1 S#vꀰ>"<18al {)!ծB*}@>H{ \! ḵ!f%v%Kp9nfZKnh|ďUIXswPwH)8m'|R?/ݖA - QuMȡZ(k{Yrtf:MW`\t5*EYrd1{KԾ$yK[ww˗2MQ.5a](dm#ZoI _sSz%JG訐@ WOahO':(3|aN;~ǹzlBH;fd `QHKQʬ± P`mg AU9y;*ñ!u^ͽbv 7XJVRJ_MFyA0\,$=U@gW3[<[8qҍqn199#*)!WC#>\#ݮX,xauCnqu``.iUR=d[-¹'\GalžߘN.>ъgI@$?Eh xۼG"DBmѸ|wZ_R#IÞaFm6abH7IxlYOSf\=rGαʸY;oq7ݨ[]Yx(9RZee +܊+e֏c4pZZW*kKb_NFa3HPň#We!J em#`/YJFzlt0D1JԼo3}yx$z,>3Ro*W)#+yXBRwy$eٗxD T$ژϟj>eT i?zd،g.7SY< zUyU!9()ӊqPӷ(+KP[tzQWK cBa)!@Bmi(9Zj+6ln"ű.I_kj?[EzGR K:/Qk/H >JAʘ*8Vk?T7<_(1Kb.Au)S6#?[#,+[oyX- Gt-_eRGlf Ý?(X_7X\B(u݅X{ l0nGnf-D8҉-C٣E`1jr9 QnkT/Dae,c9(S 6Zp nW:Y3#jO%cc`[ض 8O̭yuFJ0B2HSԢQ%IB+o+ءwo vI."Qaw@b5{pl¥SJ,;p>W@m[ ?ߢbKtiZ㟡>$2|ZN&p1@촞"4t,ʸ^?8ZGEH C\L,* E\$n|zK-qK%{,ߒ|*{Ap\Eպt ㎌1Zg*Ns)[[ߣ`f"JSݍ_0E:'DEGd?DhI0^s4(*E1\ds~ŗTOHP˅׼EuӪn{+$tH4Hm7` N{QTzlYY?nA;-BLBcm:'[yup_wD>S]'Njw&&bƦ:s.RjiU=G>&0;qfh5UNz=!GaO ;r!:`reL>'I:dgsZ L=,Ƥ=Kn8j)zAEr)cQcdq À|Џϒ5ҵUd)=?qlQcsV=*VynsjOTZH°r{ Zv¾*vn!ay*cݗ Ԛɣ7O46蘠k}MV<*jrϓl=YPH>94i/ Rվ3b +['{xD&e" oNw*[,Ma)ncfys\Ř-_xe[b^nCC`iܶa Y7_$B1%Q@S4u+t ; /v.`(`&+VYބ̰ e `aJ xQ&P {ܱ wBh=Et؞w͆qaf^*%tQc?I߉0*:2Ü[EC-Gqp ͩGRm^&1woc=(C.Z| cU'G8':pBDF`Ҫ DX-4zÁOPgMbqƩ$bI8鈺B1tWuKIdY0W'd]SD0EVdF/R9#jlZ~`~-.~Vxt=WQ\,Kۻ\WzR`)Αy)6R- QR K-3"d_%@+хxQ0u{x\گ}Im(6;A/] ꤥ'guݡn( )d;8:/qL}"!d&#]\=?S5Y})Au׋,`JO_b9e\#e\s O͜0@ʑ ҨY:3 T3 =!մDNvUƃ_yq9mUF.$~9 % $XCVYחpڇ fT2{H^ vguR^!ʸ4 ?Yt 'P9DTN+>:$Tβbn.y@I;1dԤrc[3:҉4i/sE[pq֜G*%8ngY0.Y{BI (I$ +>I;şY5*dL(H{Oi 5Sٱ4X,ekǘ]6u5 ;dz-|LLp>,@t@n<Ē W݄L$%M!tKSy.*ɾ+7@ymupo1'jȑOώ&#M+VZs+5>BesHLiFb:II!&x|ͬ.6(Vy'sBv"NX(mv`U&&jJ.z! zA2=l6EUzm(Ks ?LZ7ylԍ'p.YWb'jȵXܔjַP蝉+f{w AY*ICbˆHp6G*xUV󝸈Kd9CʎY{21f;S()z0>RM4iXzնN+lꑂq$>j =pm(L)AF֊LTuA(%z7" aJYj@# 0Fa _Ih)(?L/՛NϞz6d٫U{0uXc;6kSjRAcDTi;1qFiuXzuriG0&YEz(N3XSbSSR^|V[d5U{Wqw}~#@ 6FwDv" Ih &?72_N#JT\J׎25QflFYbø^> E}zH]VUb}9/(pӽĹҟb SlϬ*Z1W IqnQ:/É 1dΗ | \1L; s{'RR8b {aiS, UUQՔ1Y]O$g'" ?1Bn}L,#ϼyVDR\040kl=U _վ|U->qMfB[6 !a Yڈdu zp"ĻULP =byCqϓ*Q9u790P*s57QI(VV'DKs@ؿ,hW)Ŝ./hz@nTebL ,.ʽk]5o,( O;kZ/ 9{q'8T"i_E|{d%>"S5C$Ys"7]?f9ɒ9 PRp`6^ic47=nq(if3[Dۓb3s G.NqXX@bd  Rl czUDx) lbi:\]24g2z]c& JgzhYu'y5բnA,Arp$Ys.Q&#ZE8*_C\Dzըn 9{O,K | Jz> EoBB2{5OhHzH9&\ɭFy}P>j%7nѭl3vPLPFU/`RI/E|`_ /눋q VR PCzXb_ 9)+$f-'XD&ۿԢMˠZV ʼV6.b4IRu1XFKE6Ǟ} ےb dPVX{\.$&JRH)fo>Ҋ3N1 J-~< ۅ\vFb;zle`qv] Z4еLEbTkh1/t""v?Tun-~_=,_PM >J@ʌy ZEYбkybM 9~׻(F.A=PmL`VѶ‘%1w&&wuh$aׂ^-Z Y=bw&eOBl.#"3?9|O$őƤݝ:Qw [":a{z{jJ?Qan M)^f}fX&%&&4Y݃5,@L(t\I_?%gʫ ElkҺk=sEHdMPoS[r@ 0Ph5W(NFC݆z ]W+Ӯ4-CdMi_ﰡdQ`ۄmJe,)`Ж+Miվ){O ɠn17m&8;9Ѐ66Wnc9'  D/o)⋩'*=ׁq+o 7XÅ@Sf` VK% Cd'!$lZekδDt*Y׀[y aӱfQu&!D[a5퇄tJ!:8=K޴ӦxX>"$ DTB<uR+Zs>MjlXv|0zFl>-K'h(+ C%[4lDgV GD|I’xQy .N +lx#`b5^C>s"fUJ:}r$K]aBR;wxT^J(ɚ:t`U}7ѝ ި"Xn #@'ŔC+1"1xNpY 3S_9bL8vc/p^B?l)Iǽ" ٺcs/}ӒkGRI*c<;N~*GF(f e,ՅLmK >stream 5ePtRׇ@{ }$2-1VD~%,u -1NO]'?@@b A]D%y`bzwx "%5Wjl<ϛ T$6Ş5XCFjԾ|p"HN6[0\SqVh,qE֊8m,֕ te!(nsϘ|R\@,sKzuףh)TgTۄ x^Ǝq; ^ޮy9vCI)DJYk.>#%GɚfOb2 +İ~śEnﴕkPMKӇiBsOvAKW@-*!*uUn$s'9ry2!@-'x|".Yq1sT)CԄvܿy;}mC3SJ#bw ğ#%?Ɇ"a cYzk ~9 )R;",ޛH SDKP!/^7qdCu Ӗ *%S@tJ-u!6}P Zͬ9_6 'OM% 5My,G%`[xIa|thp]k@ZB~E״: ׋3<*#."'7BNZNo/GNIS۽CTr=(mo3j?DtȦPßY0MjX K* hRo^ZXWQuS=)F-lí9jt^[}9 ADdiaZɎ*6 u>jNЄdznb4a%V@kUu 'Xѩ _]+d[N~>R{H#1 U"CZ`u*&*% ͇.xo(e> en*W{}oϷٱcaPbS/qLm+}Ph xI&9$No1j~u|_DGoͼ$aٗ ,ij&?KQDSl>( =A(˾<ԽwEbC6eL3NPoNx*!˃'ӓ;)JeGHLax52wő{6_ԱF~֜“vRsQK`b0 y4~0x!Stmq'Ko+H{j;m^ыr P aØdtT7\+T"а ZgmR.gHeI>TK45fK̼jbxSP h癔h\+TGަnVȚ9Ys\X/Q 7eIĉ)M5cYtȯQbC+i'^)6`SKcys ѭ8:LUwu2 `v\?5YH-KC4քP*lf~Χ1->XlMŧ7\SLV(pi'`XsJlЖ3%[WPIa(`3Ed4\NzM؇KjaZz@6J htNP %S3;߾#x ,1Rb"W 97o &[uBbM -2eYc3$0UгR=T"Rcէ}9V sy*_ ĩY3!}hCYX WN:9,}w|?sDހ²5p$cHvq|f- s!FL8 d&b ^#@| 7Xd$QLOZoi񸬪aKC*ϴ;aĕy$nK$W鱶V$WP& }sP^$ t s|&PXZ7C?m %xNWT6U~bks͐ MP J1;=R{.wko+[h㕘ׁql4;;ġ_PZAJT]n7K4$[)~^T.$zS="Щ,m k,HiN"bQ'X‹AڔSIN@qaEG`/D$W$J(/e 2]\Swp`"9Ķ$N"%mŨD(zBӤ݄uv~k^?)/vA" M*p0J(&DAF (: K/ E\ ]>MFkm+$µ: zr98#r897܂jrWl`0~j"Lj;Q)uG*]G9 H-݀`iG)tlљDdR ZXLJ8ԁJy[ER#rCr3!>ˁ![ɗhwI&R(JՃ)-[ye+S\L$]Ju" i^/@PXVܪqΚ=K qG׵PmM2bBv*ڪO qݟR*]E2u3OWźR~|je}IӀ,!cXZiխKh^>\k.%{n @Ms&R!ٴV ;tUfʒ2XnlȈ^,T,<)Z*ّT@$OGN=#^Qfq:hF'YHTbOÒGd GfT4Yf=.K lUjh(S+b]/0g`TsId<$|9, -RiSe=_0l E1X;DFmsl #uK!E&$uUn[$P`|<Ȏp)wR[VNF=\LUl$yc@9W B%,ȽS2W5\H 3ݣUQB%Wz̒h˜ ~/!e "_SZ4) |~J`ł-*6xmlρdmk>GbV%$0ђ7 t+q V6o Xm+3\h_m ໱0.Y#:)i5\!yGHTRW"G~Υ>S 0p ]z 8h^xq} _o8 <,U$yE [Ҋ49`si!N@~Hv}\Q%W9P})A$!AAVp٥ux2Η6<fgr!nm!ux%շ qV T25Ԥ;\;i׺Kشշ!l{YšDJnoF1gpD1:d,=Q zre>+8nCY0vQ)j Y?Uw47z(Cp$ _6d )uvER*<"0"`"{V%mn:),B5Qs@k! [ |4tuo{ 1 6p$c*I5_l,Yz,Ե©[apJmX$Ay&w(E,=6WzŊעobI-An$0neIը (gEw7y0"EGeeĂ(̎Mm!D 8/RR"Ϧ0{E;˖DYI##8!(\w۫kz>z-*)eJ1TnK)@h }Cw8ctg;. YgGO'z܅!|ȧ OHUk Z G؉v"u9^F|RZ)sPxpncrT].gTև<@`ДV:W- tV#\JE&NE)B^6!/;UE  61k>8xŖuvV*~`t/bR ^ݪ*ߣ>(t顛Q )s5OF Bˍ -A~6“=|XLd SkBmѽg_gjIWU0 ;^B$#D\A>Z#4&Ċ>2:MNnEGK8MA^j 0A7k`4ÏUpx) ZΥn%pOs_I5Zr˽X3x]Rg)@f:CҟD;O]da ۯc\ߎj1}ͅa>Bja0JXt&%^~ʖZ0>Uǿ=~I\"ȁ`cb9c +jM*֤I Pu5ʄؘ{mQ60vK`QzX~~0zk_7vP;&۝d7[Wr]^6IG- J燤4IRTR}12G'{j4dxzjnG3NP ̍mwuwpߐ*Ly]pNv}YZ @%Cܴ3 FT2៧0 I|ͻ<BaluI5R~W D!h^.lGEF%U7e`o \YAE"|"B{I]a w q^Ȣk>Hٵ1]?w̢Fr \Hzʰj$.?ͅJI-BԳq{rƢr(6ԶKPrg8,H_]L܌|Ѹf4BFZ6;L)9|7/ Kv OLNrAóy2թp+ԅHaSJ >ކti@ƛtat>sӇh 'H@2v7hVLTg*9tt5Cyuk?WsdL veʲV\ϮM>. |ZxiGERq۹>OnR`qV}q꤄W]!{rTQ8%IWCBdll%mʅ%3p,@5@mįظF@D$ c+o^AWk"~{1'+JZ)Va#%5lr шH/S4Mdz]o). ݲ秄j㧤䢒/ -4SGGqe:I#tt[1O3c!,]\sU 0:o@<ƭ$E[>ZDJCƹ&ftgM7 Qg?[96LīynwJEi#",oT !¾#mWhO`_7OHC$bANG~/o(bAk4Qː;B[  KP9ŸQ>w=b"\p?s ]\{j6;$J5JwԀ(ԯOc#F5!l4fNR \!2zZ5fI$' QrNϡu|)")~AI )fv}@ ݂{oҼLjC3vnRޖ,o&;ti~L )R/IzJvPxW7%4BjЃI+V1T,ߐ\>< 9Z(9зłK+`=(}Xߥ[^߼I6Ze"?HRJA6e2RVM!rNlB2DVbŔaE.S1SKyE, dEcӂ(ַ;m& 7ۑ^ ]UO~&vz/ZI!CRZLY ցdɲM0L(& ?_ﲁ t-lA\X4(Y)^Mcѭ%pQ'af܆bn2U=2tk?%'D9wH縊 q ӛ/v/k|@NhOvO Y+w=а!GXIҞYo=ia{y[0Z d۩ !*J6"]z\r*igGu&JŇ[dJ؝]x  a)5J66ף߼A!ap-J/t"3oi*Co&YTṧ N--p']8O%:,k!XՍ$R(d3bA]\aTv%,ͦº+ԯ[==@tS[LkR>dk}YejDcGDp_)F]e%/%2UvOa6{ohC82އ8@1qk ' =-]LIzXBJA)Ay\ݓz$Nhd `:EIM#\5.&w|BT2OD^K Eo:{̍)ἂDSe' ZQ!z8`-6&"Kus-q5Fq#?R ծk^k˚)?ry E?T:1"!#aq"Ju1%-\mD!9,L540zqp(Dk %] |%P1kHQ8CS:[ZKUj^gǦ; <RA(0+fSc]HQ.)Mރ]Vl [A8w' 0O=vȰ`Ei S ѳZ)S6Z0.[ߪdx}-DhZ]fB폣p.O)[R!BZ-ǎ W;˚ G+#Ó.{q# 9F$.A>w)qW2}.['-ݥk+ag~K[D7<4tDѐ@Y(WbE l.L"tJhj7-CA!c:U_uw.p$3q)2oWv|k:3 nUnnaA C[D7OLjB-߲ƂfFoi:-:#G4t$<}3d$# ;~DY{sؙ Xq=hdm 'E?m?Z7JaIBNy=ٌ$Y 廉(,2" CVoXvA!W"& /:p}X QF<`IkAy^7LRkmY) pA]?7"~TAdqIo1xE:o 1B19]SډĞ@K|BG|t%I"I6Mєs3,BCE\Krys 5uŃ@tcG 5IYXu3[+ ,z ϡ5oЦ&mmG*;I]f 3E@oJr~_GeYS&H_j-ioF B!\oA_)QrB*2!eJ2T'hkp(A%h j"a[Tj,eK&ҘJ ㅩ${@L b~7Z sTQĦ Pۥ^ӺSس hQ) ɒ`V7lE}gP qH7!Ĩ K5v}uw}FFF?߾B,2 xidFAN* M"`*U<\Mn#IԤWup <.q`lgdҼ7)Q,mAŐ+^&mL֚ C\|f#GDՀ`2B1c'&#bdi{.VSHr : 5(U7fT|,aWfDT:(\]Zt?"۷I!Z:0.%¨=ʈ)s2<~%brYY7fϔ1kb\먼 ֏5@|QI08؆(H Wt}Gv" X0KZ/@pLȄ`Ad*lM_ tQ?hQD_IZ;D[4YM .rӐ %c@rGR(#hq%SڥP,:'4J1a݅3 Qyw`!FM!?iI*VVz/o'?A迂ڶ0 msN18|6?%ʮM-asG/%ĐFu2e~(0-ذgI$nњ|,[ƅG٫2)Ĭ.L+cp!fΪQ?ߞF˻#N~vu %|isaߡfڕ,C(\:`H.0/|^G?{gtBNNY gD:KEMk۳b8y۟G#WȁS2X+s2q*t( e)S`5VTCbqvaxb#3,>żN&\!CL8LS!h:2CDS5G!{R;=)HwH:p/# /eD(i5@.5wGG-X|?y8>C .>ë&ykp  UfMtF{.C\-uk-Z~f>ẅϻAwT MT)oa ,/N#"a9/ ]7;ߪ)&'탘 ) ^תX]i![+e/=y6BQ{瑷lkuXRaI=\a͠ Z_d bN{y=ƾ|؍wI. ZK`ݾZ D"+!tE :jʉ=|9hܴg)dvFvΎX 73>D ~37ÌR'DtwZGq5#9䨘 o=[N?'#:ouKQE/jv48ۦz':LZu^& Ws^*/ V5v^eSMQ\Xi,7܆i'(Go#Y%$ WQ<#< _r:)/$Hgk:&Db>:.lachkzɬR+CE}bF#fr%v1%(DE`bdMϽ7.UL7փtq'wlݍIo(2SuT%Z!N\7D'FnDexSQlKXӞHP?X?.KE6^U&0@g&ԫYbt)!pL8 _vФA%vyҮ)|şֹ7P+'O 8oeOYO;gl _YaxPF^vɐB0Z,#5+O/VsM㓹<+656Z*KC߃|'XOu/,㿾_~÷???_Oz_?󷷿?;_/W/3o~?{M/ium?~__}_?ߟEw??o__{5t?5Zg??Ͽձw9~w~?;?:Mz߽Oz:?VXa=&{y/|ھ& 29ϗ_'WCS"# 8qē4ʨ|8aiǚ@EI Pl{)B?jxVD}>a+x,j'SsDʍ0ݘ g o}/rMU^kI~7XOjFtw.LJѫQ1~|-pcFV?u`o]~ң1N|4nѕ]'MI_~s-~2i$ w}d/׾ӷ8޽ik+x?*aG-֐zSӓߣƛ!~N N4E[;}_Ssѵ9q<׆/S@u&/Z&ԣo?Ϩfˍ$>{#/#utv*Sѿx1-F7qeۑ sq{ C|>ߩߖ`?=:`}eO$Iݗ$k4^+iSݶ'2=!B_rqyS3Q\y95{ wXi/Ԯ iR؍)^r^?Rw`3ڧ'Qi?4=SQ{s^y0ȏ!Entע繿4^SuM~w *z>g! D{RYS@w?>?i] mpXسUO(7RT:Ec Ro=LKw# ~h53ѹQӹz+21_ƙ뾄?7ʽi== T+^GƹԄg"؝ˉZ FlXswv&Qw{N9. -grEy4>]ٻcK4?(LA]0| 4D{ݻW]1pqܷ dKO|M~W޳=ņl~:NS=Mj}4wؕ~sS/'N3?7}F 'D[(C7ױgsb'8\I{(@'pip1˷2| }=/:!3}xNDn/*>uv-(ckݻ[.k|v_ù R>RU.++܈F) ȕӘ4xN džx%+Xp;vdMyB 28XW/}Y"S Yu9/^=$5eDln~T[4$Vj{NK 'Jٗ30F a{/yrWUŮ}=bɶ(:/K+϶}nCYIxN\YIء=@;AEN4͑s>춟zFyx#}ώJ =kq)]'5%uO{3~H}xh$͹ hdj2Ͻ+th;3kG'8[*N@imO5WĞȱ^Ed ։ Q#u#{ҏ"Fsai{ΞbnwgbqoRͱƽ"^#\7:yB}1vltrBZˮ6|ƚiċdǵ>v1ϕAٚ\'b&,)|=ڙ8ٱ A8S" ''_Ɏ@irkB@bq\џ<3x+) G=}[4y.F`G%!)&|yȸfגF7Y|#9L\^Td 3B{T d q$=gUi_T}y]{b`Qf$c妭ENdE ד2\%zrx''=ǃ~4Q1Fyyau9,QcYhsrGD@- v|qshֲ;V3s ~Bܑ/䣮&{n+%2]Igm)LuNĊDc{;gHuO89!3EHFӞlq֔NLϨRsڧ]Y^ ;{ ۉ/ Ѱgu I;K7Xۍ'ҞI3'eq;9QI֞$3"ENYdPuy=[ш-<h1jEb8qX ,@;Yk- Faf:,>yT\v²ōʔGcOi}"J$(㎶Cv~e{Pj\b%Y r߃DY SOcGyLeOITv6ĻFGZbpşs{t c"LSe!9 bBw7~ wi?z@ƺ{,u'뛅p!䨬LW>9C;bIVr眡;'49B/~t[^W[Ά*f`'nu\sm>;H_ _`)jYLm5^ǻB7#0>#;=&_0g*QKu%2{S z$-y^I@4uU^om O6}1 w⟒U }՛@cd|ϣ/zKN_y0lr>kQé ]D{bz@7HNe?tL42H O}Nd$0 j9=]^iɮXm&3axiV:O+岱s(}}ս뉆F9}կgw.+qhAewQP~cU<\ŗ"OѥqJͱ '3{^@澃~)OYFӞT{Vb5r Bq'~e=3E.Or|8r-{ϵ͋{x!EE/c/#c_lyY_/f״'P!~4 ¦zzv%RwvE9S/O69m9ufO9tb6G~~vyR0Ng+$f$z^M4Ck}Rn9AiutӬeWqwo325ꚦ}ph'5rjKC,gCH՛8IgX_Fp پldvty}/j 9hX)39>*r`Ψ:pIǝ%'gjdۏ(ss5,-<4_U;Qn%N?p)-P=jy:qr81^Q6Z⦲uG`< }uLd'N"1$0qb청Foashg4/ct("f>Zy`M Ӿr̽3Ÿ%Grz ΉU{(tOnmMx s?MI̾uwkSB@*g|:p ey B5&Zv06=0)AlLD=Ls1 G4=g.wmaz|jI3<[ nEUA\Yc1s#l[ϝkp`,yҙL"p3Y|tֶ NQ?c.N5VJ_SpCn])fi e!!s f_WsJBf,͚%-.R"r1h[W68I9r-8VX2Wyĺ c&89C%M:[%4>cKSts )e3 c"eЛ VziBҰ:*q^D I -+s 9]ʱur<1 [L$&&6aDX ]D1b.4 yoX[iN47d in)'u+!TvH NOGBj*M+f*@M̤!V:ZnMRJ(8Ȧr:yP)M+;%͌X.ei0zUBMzfw[ AQq ؓ2 jT3^"}RqB YBhV#sA/ +n|E>] ,pJ6rJ['NSCnY?*UTv UrF]-J;("]f!'FK(u`)Wu$aRzRWi%KRc:U;QF~QMRP Y _XGBcy @Ρh-D^IN3"ARM# c=I2\h)`t70RD"Gfb0 c@eƄKo_N%3,F!X*iFƊA9ޤK j5r!\cC$k"Q%UDK^')NX.Ie)e,jlIh4C} ,MXT? p=p.l^Q-PT&x RBp:. "%FY華R̢- ݺШG>KHKeè|]-OHڐV`5aY+.%Tw5R WhT(R%$XRhn"CRcB2^ːTd!wě]WK:k (+OIeYYZ${@`RX҄Z0c,:h+4⍹#-4Kۍj! ?A͖J=DvKPp 2*2b2/`:4IL_3BrhAa|b.ЃR!ZKJK඲P.GS#E> Y8ZHMjQ0Y3QROJC &zU,cAV+)m.9F%8&*9MrA.gC.sgJ;n~u]e,7PP%i\ɢAC 9UG^֥`Uz5%M)55l B&+ |}B,BzIRpڣJNШQYa&+Q@\XRpGPu]޼J'c+]RrJT2vieR$=1Ӹ.X(R['ʺNt #(aAݶrt/-)A| Q6 Cx(l1Jz"p#Ŧ+c *a*_.#L[?Sꗩ^rR  /.Dͬ踰J*c:WRk덱TM(gn.Ʌpqf!1cotѕ?v [ߤn* \Lθԃ&dݾF|i/T}D̡w bGnsTMJ{08UrmSJWs\wSr +3 ff1]^.)i Tr(cǴPwjDޜ ˹$ru, @b% Ԩ+&we,4JTy~P5b4SPNZEPlsiJWtp6Ol* y4ItT]K5! \K\j4uZ\^؁)4JHl'IũK_Tx ,uMd'U2mv?TJJqrz5Kq;v|Zw0+XW1nRoWKիe.TkXNoSEŋMR |Z\`P=3ՕSw71Z*]6W2o2FNr?POF_,źzX"LSAh *BT~W)& 5ơHݕzDX,RSqB({XCtKl&;^R }OܹRe!e .WwjXYv,s3\OGh'FswKj(S ]~40Dp$"r,:5qS&D:;F&¡Jɢ 2vQn*2uQXw߿m-h&H+!*57+[#6Q`$G/_]_;}zG[ >80UlnJb\fLtx&\kn)@#υ?#\|dR$fJ]WLF~3z_ .#yΈ@\M:>7JLWq?K4 r Tgc;*ik5+,\ 2J!'fDEh2mn)L,(*L\]KW@F}KRtg*d%UX:Ԡ Yhwp_L7ߦz%lMf|ʫ|haی\YږTe!,njA\O VTR<]z.4*FIԕR b!zF#7t}Kc\\ 2*U_C~22k{KD/ bd?R1-{H_4B(Oq&P_>yJ>JfR~>zcKuU+LOyst݆lc]bKr5wW-mdX`.;ԍMj!I*ZdƺH꛾Q%ę'%BK"pbZ)%rrL$o @6&Ҽ?@, `.;7}v9zc%1{Kub)XuU )ϒT4۳i%1՝蔬^R^Pfn+~K(aju{mmgfxtġLӅA."~*E)^rBTNJXŋujI|[yCS5׋ ]URc#Nf-`lbW*V.k kk˭)Evo*V [57+kdU566KpOkJ{xtŲ+ ;݀t Wvў=܆ā|d(mTmB$:bև $prAø|b$.mRR3.$ $dѵLt8'?ї/3ol'zEc1%cĦ\LX/ye܂zk7Cr3YCIL@`5а.:kHr}@/=7҇v Ѯ7 !X8 Jx&{n4wL??uAÁY׃ZڛFٟ)eo'lLyE<{.!Xߤ3L2>hXalH0>a"S:2$}0\ڋG#IvC{g?C?~ U>ŗD`҆1+$T}B և҆ aGoCv2e lyw"sakc- h5jVƚSV= X_C5z)}-Xta]gB_33z]x/{FYzk :(8/*`KFxb=Ğ!tp07u3c} +u+(l5NH{C?4chOIِq s􆤁jlxH.~aϰ\T'h|dzQ \i[|ԜHv hо\@mrç|ZgO %1|xH>:w4< JqI:Ҭzˆ^/uT`1 |L8&8y0A`.b<8 '=z^Q}̡ k@//u0d#4}Y<9oV1@9'q i\zt.l4>I%4OfӶ|FWbj}EAǕeCx4H(X$ωMش)|BD&4u(!?яL'6LC2^a}ٰ,_7ɧ'ӋiO&e\ /F:ržDio4=5cxY(֮vjjC7ּK[Vaw= {Rh\"zIp[v{;Ƶۏ-A's H ЛNOۨPs~wD_+u7tuz% ‹F9ߘwD?><624֛XٛOfw`6O"yCӟ sGr)>Wh6lLw&|r$>"w5`^ҷ YgqHF|LX X" :7L/q <K!} 2Ç Y*˥Mr[pnF> |h.8c0܋ <:e*zi|iָV;kJ|ԍ:j'h|!??I{ ʦLAOeSZ>e1QţhAd@@'?!fX7.aC8^eòC_ -KG3@>>o/&*0uȕrj{SM!YPYU}^jZ=i> ?^oO*ŽZo@F&=QCj-H^o@X[LXH6j4㗌;KȆ`Ὑ!lpp5XtB~9ql/iЅ#8eSndQ^1\Fg\Y@o$h>W'"]1vK{ŠFqi[si;üqѕ\8K4჉\i\93AaÑ.O ԇLEbr1ţѠ6>Akb6M:OFW ^: }y,̈́ wĥnM6#˾3fS6{<?sTLRD* q .m*֩t|z4>q6iYc`-atx}蠌!tP`l#Z!7O:Z?i͟:o-ǁ'{P.x'=uhGe<#H/j8O/HhX}(o|XG?} [> Fjи"7d d7M`dJG.hKat\oHhɇ=Mv=I9"xWCXO.`̖i/9p9\XKGc :28 '`yF2= + XOuTd86p$ov0|tX.Ḉ\D>$u(=l0(l ]u,؊q`Ka؈|rӧ\r0oX.+.骴rIu0lTXC>q&ct6zdوttTw}3qtL%5Йpuq"7 t!!|݈6Lw+*|;4(ejYGfS/ӾmAO{%قsقإZ3rC8"|5/OɛC9y2n.^1*?e"d5M<;p7U0[xL,lH'bòc=ƒ m,~$gXfer^Er | m`H`óϢNOCg!]d2Ea]?atGp;tΞTiTR*4J`~C}N:@'#-s,6q2]phW? DGf S%hSI/d_3@v14M@ni4>gB?'?C[X/Е`+|o̎ral G\~} Rs0^؞<4*$|dIe!C`>?`2vL|NJVb+PQ%ґT|'!b~كzR^T@ GDo{`R!'"0? . X_ e7` Fjo|A5v-3h~5ww}I&6N: tj4[!N0 t [C@>'Gl? 6&_Ⱦ0ȾƘ2- A!!3>7xGXNZlGd=D~H߁k 3)d -uJxK" ߔ[HoXX;LxH&u5l眃{Cz:qgihgv1H!{G9"th8`mc#2>=@6F571O:(o(33V |I o#v{/d @?3g&#,܏7f:i`A=5n=zb{=D[˖Ckr6aӐ 7 Bz_g7ڐ qS;hmgO=c2n}p6q4GҷM#}ix^_ jnEVo2** ]_ ȲQjv4׃BB`N1Ck;7&q%CA\ q0 cr~rQ#0)C(0W@\a$¦_@> aȼH/"~E'2QX"H @Fx$ZsSCĭa oJNS/=#6?Zd|My" < +5.Н` 慨-Ht=J d&<` d8;[0這0&G !7$u,Z }مW)`N?#.d P/{ Դ6t ?ԬƌH0LDh}HؾīupT1.=4<td57^y${lEkd-7CSPOƐ%Nzb| .8w8#@z`4'et)%`|%+Os}5Qzݜ+ x" ĺ ;ߐGPCѳ~¸1و? {&M, |@PL>[u(XӇs ]31%O >C.`4 Z\l83[>#o|M^r?dO2,$6=^B>[bQsɊ.:mt;} Z33Y9*Yuɒ.>kNT|HzFe7WUDs7gIt\x*AYgSTtL%LEhA7`X;x)U~ aY.~¤l2}؜Q-תXJ-u$W?xΉ &{? BMWOh"*F![3yCA/z]HOI+??Cŀf e$}{Ұ)|S2=90\hPzl\x68y;ImhњazۅdL(?[[tq0V0x#=y4 ا>? *>S_ ̀/|)o % 8l*ǨJ?¯HOb: 9`?EO]t`'q ~&EIE# U*,m(%:g,:y2OtyTr `A/tɦg [VTr$Lt8숱uE :}ӧThp ټsZ`7w"~M/GI8 =s`ՕW͝_fz_D |`]c,Q2 47@,L aj={A#V;ҷ#S#u1!>sc .>>Bn!} 'njOWj+ Vn}h3 .A=1An1GG~)!5- )<; `'Wl$uߠǂoD&}γ0oCC98=wpD%U|*?tP#>v8:o M5qm2 یNc.l:e*Y{Ί,DlȦBt2W{k1p ` #j5kT)]?XPg,mT3RtzO:`-S3bњA)>l̦4qIMIkR>#NQ!K0}yJtItydo_W~C:]sN H^_OkhAN7M&`:9m*;:3=|s~ϖݩXn"swN=јGX ߐ ?`tM痄:`*`@ٰ<ױ? d.cT9|u&st#C><t(Tdis<𭃟s5K1W11&v BeDSIl}hX1&VO]tq yqetO 61hkGLB$Ą^||d"s <l(冞;qL9WۋZı`+36ktM4moL]sÂLcc6O ؆-:hLU^o,j/} :'t3ĉiF {Kv06dX>w΀ }vLOΥۍvx~Z`&_K$ 8G트?b`Ñny?   ttقBG1cth6,u(0F0t f. 0Zmo~DZĺTQS|x$9Tրdž^g&RVc^?zX ރ8 v06i*6h$bl s>u a:|3m Īؼm+Vd/C٘OZ.Мó5շ-*TjDWn!f:OCL͂wEߙև+Q8]yv'A(mrQDc@pSQ7bsYwKMk"MuCK׀wi+6 5SůRobWkmxj'<Dn7sM̫SQ}G(LD!ny[Fm"r_gN7N,o/@kKE} G:/K/}0m-9UyJBn z*}twL ׬ !!"DrJ2z R֪Pk ̀2:{>$qP2)S؂q8qӆ 7āܣR!i2pG:;ƿ;b z):fi~l~,C҇_,uJ$_1`Rޡ}!85C>naEYdO#\0Q]m@Ghz|T,bb*VkuD<,z4mxa}cl& o6vL`7󲉈qJkZ-Qz)%~JI9I+4ΈAv5XP1}%A_cGx_op ƊA@/f)ٚz0':FKR-gр=Dc 8jJQAӥL-5Gކ6lo-Om5uȔɰN5g;iN\UQu :*ֲ~TBD|CY[giu"8֐6Ѽ1k: \&< ] #;O\>3A`U1K=j~ʚ~1ɶˉbl%C["}1ED^#Cƀƹ2ΏO&m슒 +N < V,Q,ZBr†PdӝD@ [æ2Jzw皯J*9d۰=2$A.GBx_ӛ$^0 8߈+/[7+5)Δ 5=AXC.F>k jOO.hs:t+ChݰUTLKmb'Y9C:Kop\uQcjG s/k Lͥt) T}k:w ]|C<7-FTƮTIS7LKk nfsB:m*x>j~d隦_u_q6N v㓋'`lSsSrܜ9=H\bn.-!/3Yzb7l\6mtM/sTd9XGE4rOL9!#\WtyȨ ^򐷇d'#ǐ!5!ӎra8pZ/S@1h}/ E6ք>0Oy3A9 _GgүRIO#>ʾ32w"|sMh9i} }챕>ahM1 _{{[}k#{f雦Ϟ  ġsLFlEm9y{5o:U+V+l9exu)zw-jK :F>qhN qQM5s;O~AIL&ACTLwZyTޖR&ĘG,ʳV`LJ >l\x*S|N7ZDo E3OS{wUTt\ߚTˋe֞T &/88ر,>gcB^SC,8:"K8ޏ?r{׋`-QcA5/8pPP&jX-yFxzjWسȾ#;m;p:;ٔ `pr E&lΡO!&0 1J\19> ~~lHۧEG@qhB҆5 p tdD[[ W?8 1hS@.:w4e:Ơkan5mK:=I{8klkIm?qz32jӝedtY 6k,638U:|t_ 19oI6u, qħ>j$m5"|Sk|2 @NG\jYBN@>^dI%l>}`?ɿ9mT\íl㭥{8~С mvB5_ 1!YDm}n݅C o63`B G1c6}܌jZAn7LRwLкIĖ_ Q\CzǍApc"4#7 N 7 rհ,tx0GQ? 2Zt؟qԍH+'b}]|Ԝ-9`üB=}Y><:94.;g1+1|qz!q ]|ʌ9K$h\gy =`I6[D4\,;jc(0ya Ą >?!{F4_>q+|Dh?*9eF\OԜ YReA/HOc[l`V;faLl6|29{faۿ֎TƖOZYth-շDïGV] n|la"~l>o6mT?`s%cKm_Y[@c Chyj!UrU rX fdxH*a,3rlk@0 7AH$o 9dwG}I\ps$0SvNTf )F6%M֔_3l[r۵Y>ϵ:g>#ɭ?Ҵ~wӝ~Csj}cF4oKU4fd$SpܘnXzpnkqx͞d)c hg“fA4 ɲ%mVSWQ-oQMOC>dkZ@>_KӅIly t صl g\ؗE=;%擕W,4--߲6̖ɍ]5M> 5B!vu32Ծg7ߨim9u#{Y}/w˝:bv{בөft=ְ;/( Q|XSʾ47 `~] JuEXI͓ʋ*RcJMdM-V_0&&8qWdyc6L6c|qѶ޵n/K5w.EKWBnsd9{lpE)|l8)[1;>lӁ}v郏u̩'n~9Ku닅'Pmf/k툽OIrK#w:u9=|ˉtWM/B9cK1rLck2OA6j%;o2T΅;@Blf>,%]I|Fjb5Ğ6w7Hy>!CuG=F}𗵚?rҜa=݊qRӱK֮5T79lW>"N}䙃xz4_v,_khS7bgGhOgrdr|cdZٶWk->*GYf-fu^|YnzjͶ<[In|ġEw*M~m5νϼ{sc ${=Yͽ_z}r'8rcμ.?Ҟ~}kur>tw3G.ph5m?/S7 n=$NC/)M7,Zs䭚Őg;S0/:])><,Pwuv#J=xEƕJ誱 u9¥`_e_rg-a>7ܾ;[NݿR}O:mCï_MVjiҞxbҺ+S\NwwlS;U6Yj>̏s_fRߦrz=n/jL_[z=J8Rν~?%=CO>UbMs=bN@P^rܕG k]1]A[qNfWB 3n/q y˟t]/rLkj#.ug $OR;hJ.E'*Y?6C77Bkt>t3u G}Iӧgqo>d{n͛1;[Y//y=x{NjoOWdsnF߿u<$:Pͩ*'ZjC4Ԇޫ h~^Lu>?\P6adr{kz;km`ԉ'&6}pzzər{r]Z*vgokt/rH;1~}t5֎ t3`w~J'C:6m|tlk.aDÕPgr wg>OګU_I̹[2j_ㇳ%\^._ejbž Tw5WHn]_|w{וJHCݫV^~INn[cw=5[g<'~o=?Qhۥ̣܋Y^]_Σ.?Uت"K}Cw^O9Yh%{Zicf^v?=ӽʾ^l\]36nV}†op?=.`~|8oAu^U:?=lc gcd߯`N]4JZmG<4['toK֏+ӏ}o^K݌gvVm|MWk}x<;^D|tB;7ohT~/#r&yIKI3dU>Lr;n\Λe}+2oT]ɩȻUjeשw~ԉ>;a.e~qI"ӷk[]`&]wr?y__^}[mTrJ`/=]rW*Gc/6PW ɵvR۞f2n:=!ɞOVx=9ٲ)&NnE²[e[n$[v^D񵎰‹J݌.z7֝k"K^)=t-l˵k5[}_ľh8'W=|-2n +\{ʿ,`^ ^Z܍ w7:?XΜywk?/aΎ䐎fǻ\DLe/ֿ:XYP/^J&ݕ"${R:SK,y;>{oŖ}Sj_{5ZjmGyt'{앇܍;16/g έ̹Sr&vqM ׉v?t;wt{y Tp=bzզ+|56jB}#HXs{k]};l,-N6ǻZ^ވbn\NW >oEWFbپ1eFl|Wjo5$ݞvo0o?&8;Zw&VVuՔ-S+bnUT^||yHͫdwW=Rnۮ;N5Iʶ:?a}m*6qM\ȵM&v7o^yZSܑRS{'ruyu7]7m7cZ@vпN53lt .s=w+lGT4Wlr=&f#V#4+0akc[5;ϥTP5w7J]^r{y:qcwK|USA>Ǽ@F۫CվOkCjj$פϭg~!^C<5^ڋkWZ]\3vU +/w/[7s[.'#Wbry22;ʨwStEvܝxto]Ꝃ}O_-;x>rυ$ݤc7]Jr}lۋ`_sn_~rlI;YWoE} +>K[DŽ~qrꋝGF|]Qؙv=VC-tՉkc 7\lZl0jbk\ c M\e1G-kYw/'~~lʝ?V˩9]r.l^U~m5َ̛/oz<[pQ]k6]I܆pCՍyvxdH(8xӈRlQiQ>t*V#Ŕ#yvO?XUb Vh TL6A1^1]5N1pb'=NW2\1k_8oOvv7~?!ą̅_*oZ}B\qgEWx#ZzM歼[Eҫw9M.Q]z%jݛc翇o$tT /z(:?&[?v1:u}W_2ʃRZºFS~0=( @E?E~02:H1NS}{t|w}2vJ^=|:v~m݅􊖳ϧ#X\Zw[rr''p.ܕҍד++nvuw/Ido|7{%?aŌF9sg*9L::eeQ&)*+*(z)z{==Q@Uom 7i,)5XsŔSy5'r+fgXTɺ]D%Q愢șW@("IrFJF@`v Θ33;笧b}{}yZnVCKeK[.on\ܸRQ㑋g.5W|~a<7k8z-`fݖmϯQ!?Eϱ~R, ZYqhm>+M 3@~IZ W`a!]M#X4x$ 3~~㣐mT{[\,j|)n= ;{-h%S5ŷJN -7_5zQiyӭ޸yn/B[Ӆ W!ñ #3p3i>4H>x.^_u/}r+Qu:ŗQ/R=l~l ssI-=y)ɍ׷ߨZ$ٯBMQq>__kf>b2EyFnglձuǹCO_k:u`kG6|\Aۮ5l:X\}gs!wn?[1X$Yq^X^r9byK8d ꑳcN\-2NnH?A< ᵑ8d3YY!hipco?__})Fȇt7A\y%M^ 47X7a~Kc 8P:֌yk^6n]reF;lQmm#|"4ky4r\wPc0WⳚĻ Wqł7/5?}ZގgW :vvyx|6ߴZIGAp eJgh}$ahb&ϐN)h]cnG!"Ɂgʚ-n>{/t r~y]7£`滅 aon|gXnǰ5"}O ?cqh5a$+'!SihTdeq^h֚<%a>R[?ИwY`e1v6`x.F@L 7?KߏsδM =_O_B㴌/}0OGam9 3Zƛ9"Keb27YF-@f##y/D̝Ea!pۀ`'~-DE<=X{oW fG7痊w~u=]n^9]fi厰tAec-wq/S ےIh21Efи nh?,Bq)4npG{͗69G-x O&EE/Z_(qR[.\nVCY?h0&l 4F=<{?ju-4di8 Yöy&27rdiYDfI& J4e~,SÎh-`rCX*^|_1gZ_W9m0z^N׫ǙWsp.QVPX5mzlfiLp)sfZka:5۶[.I(Y/M@]4QɵtZzZs?]3(,dHMܹJ]]8vfNIod7Nv˫Wrջ_VXO =x*3- d;i<fQc Lsг|l7푕j4i lGT|45MZ7NZ\^r)as%gÍΪ‹_~G{/^kaOZ.(Lq}"888Vՙ=[kW51nۭuoe}/懇mgt޾q>o*}6ؒXXkf-Lk"=+h<,)"d5YwF=ł 4Ϲ*(֒mOF9 kECD|uB]ֳ w.^|BAlOQ_\5eAk!㖰i5SQSv 6='Qx9 i #,44!M)ES&B^ZyфpL)F0h扪<ٯBkQke k\\D[!]qþ9ZtOK-=ݍƼݷoon(FQ;^l.i( b? Ho@B L |@&:AfFsd_dhy7v^aҚ/;'לfc[e/ϻmߚ9!< 弦/gʬ{v3Pnǃ9Oϲ\soόM}9O-FX ДپhzdGhNqeWu[\tuS,)ᒲdžK\vqc(\5[ χcAJP=xG!5zY]{p{v oz}xOrqk qI X sBܑpYQ%hU+jZV k+,q+,Ҩ> dnXWgUޠvRX/? A>&s?]+V*oY5>lfGm_&ݙʼn_?ު'G)/HNkBRL{3dd/Bmh d{b4k#* Ͷь9YʣTƲ#o/S< >B0ӯ9_UxT/i}!p^}f>Po tH?=}}}??͡o5)y!MzSPeQmC U7v|W!β -篾tߏLɲ> ߈sIըe-Ǧp5M]#͕կLHKW!V'!Aۂ%-P~7c!TAF8Kj谵[{_ÙwɾҤh-xы#'~k!Usf~v)sAuǗ*Ssغ!|36ٹJշăp߶KZИh2Σɳ||ts@aÕe]aObs*3^~yG- ;_kSP&eA,.oǯoب+-6k:nwM<-枾Ȓ-U QHdWS{'TC2tغG#(rg_rמ(oZw+{w!şB|NnLx`1g-5ώv+8~/~ ^+%?R@M˜< (!I'[/_u=k {{CxH}v?Ϸ삵炓 u^$;=]o^_gMl7&j":Ieʹ=YE4E}A yfVFÕh=Zd=]qha6n1 GԕNMߎw>#q},u&W_8[/R諿Sd}S>|Z|6u:"o刕K%Sv}4/.`ɷ_"iwNTLZW=bWn ^+VyJR}߸Q-*OMj4mfڣ?Зcf\2τ /{#B;gx!/W ! 0 7ZU+"T+3#D\W95_ZH'U&=zLh.h7lELWg{FŵgQʎC_<~,Fle~(8kwPo?*l@2Q=)+W:6"++$D!q#6e *ubG~rgR e>TvO>vW.Ϫ0jvO==g 87wYŹql]Yh<*QԽy#:ug}G)ԙii➏KE7wQj.pR7MqF![Xxz^V{^ďw7ݣgR(y֒S=9ʪΤ2MqL^k&c&b7r_I}JR)Wk2VZ.-dOo||Dž%WW)&K,$cZ ˼S8Crۓ9o7_0~InkDHFvT); -6\Q2T+,9$")4d}uF8 ˟|DJJ )fǚeþZ_<_-~@?iBzSdԏu?YG |v -^)v!9"~[_=. ϟGw]|n|(4A+ $^-5 88 a)lb!hhG"Ґ$mlV-]s2)뙮ʮ` ٴ+]6Ln%d)ǶPuNLȭ3%oCSdLS^)}3Ce˙}Su&/$)lO +=N'L96#iQa{!I >s/@\A.W yBx"{9Kdj5RGQPzvۀ|50ʽ-FTV,?Qu?A7TvSأn{*yW+ٞSqa_<=mf>-;_QwqL"z-~>(,x_hΚ5b)Q!*UK8WV9"_/tFNs*a )B+]4RC3 τ UAq_VqkGWyv9]k{'yÍTJ,PoNϓoRi3S[M v&JK5 ;?,\t DzqU q.Kqnd/逖%MvKp ˑ4;jR3j@KORf ZTݙogчScMo3e7L@?=ȯn?U"-o-l+/1~D6ustjc{+ݤ0 )ZL^# tAψ ~F.mh3ilS l6S:ژ`&o~~'Ye{;ɏPߨ/ߨso_ERˤOWHم-65$A뵠~uwof3gߪ$C W])Ds,٣&Qte6צSueN.h5:Ta$H#4W)RŒJB=JH(P%*Y#GfO5dR+mL#WթNG.`'Ԡq0 3nL'̔$m1? D{, +ʥ K4RSg?}.7CSG9c&U8*0sbۑPrb.rwU`L>(^[*&ZH*(O,fw \Y]{CѲ]/VGI, {)eοf/ OaOt Xb tj~UtggYv,nw'Y{wt䑉:!ViҮtN4mhmR$H Ք2!ߐNЗF&jhif\ũ9:sedt=LSLa[Whc-=S'N>PU=A穳bsT筳t.w8řgk}oIJ=O}ln8,ޤvJ"YJ1RoBu_-}nn//?2i"On,B*?O`}d+=2u&(M4:J%lLWT*>h amOgG7l7k+fSW|p*6Z36$ݒhl`* wMbs[-t|_h@v?#_S#@kuQ%[ uҠǕW~1N(4 4D@㙊+0r:`wxIօ.z|p:hN4@{>aM^_ٓ/U/8g +C?xo,-a]MdJWb|TP?z)SEmf kWk‘><΃2';;/7"W7*A}ųi' Lv8;@{ 4ΓGOY0g@ÌLb!Wf q [7-pwp.90زS`'&h|]<:g$?0m'n"I(r_xD&;&81qy}B&t,"YӗCl֠=tp6hɰD?{-ReCVJTم)rC*KQ'$>&z W6XrUP!I&5yX#kкnьJ2C<^ |‚jwqG^~ AQZTP04ZƦ4,L>|bI',,\`$:# FIxD~SZK`b?+d>Z ]fc11BE",]Sq޾tٝ;N\݉Dngs >//l ?EZ!5ц?樼=r!P9<2AؖbR$V*:c9~P ~he}?T Z8wuXǐ(ߖȃ5@A$IlӪ͘3nxcjC^9W}6hMO O 8$xЛN#~d-㨵I:~),N-E` lf 9cA*M(GLH6Xr6ϥV+vbDlHѫ>6_Yup.r:rjl7*7^75l]W@3ps@SqB}:G,z}a`PZ74S:3&@QX\raly)B4ui%Tel(1;epG|yJ)h+ m oepڏJV m1fRL ZYzI:g|ϐrpzK?9sfel-g}/ET5\V+Nuf?YN4'dϗӛ'9mVpnnx>.6(44]*E9+r-;.g$8FN5a$WNu_rp^+Fam4!lZffkWN( ׹t-|7~+>7UYpt`Úr۱L$>N\V\кUg3_K?SݯVs%~[o7R>v'\@zy>Fb*a!8[:S>ёf wR6RKF􎁭c Żs+ c-l5ʮ{^lU{e6 7E5+ģ0i; (ZX-.4E[-쎉Z @Ug7[,Zt /Ę#힏eЉח3ǫʏW`06R*mX?;P8?>{#}ȏP꾶hqCNl Ρ # yFTpK؋8ϠmzUQTl92-7@EdEɄqYw YD∭Gf5%4_㾻\F_fjOjzPَ׎ʲS@G!(M6x2p4l:D;kH #۳atUtՅLL9Scˏ̤v=qR=s&YuzptGWyowqh9UB~pW+ *S2)o4_ h.7aga}S@ |l>.;km,4Yزr.FKFk*Hg)Mn4i>@D ;'?T뱌ڝ>&̖Β;K,-EbavV1aMR(`S6<ѥ0`g)8s\jp^zh0 ofxٞ`cbl;r=/=Ai<;OyӝCuyhsݏlՁd8E'ɵ&d]X ocU= bN+.02e6E"A%*bI6sU `g.!o2yhƪ2Hq&G4ɪ Bcu@kU㱹k a?FDJFSQ봁D -_:xu5[8.+b^c">jXZ,0Aλ\ЬhIox80>ѹRg =|a}KvI3I.0CTY〝EJ`ggTguNTԜW LWbFtnWFxP(7*U~UD]sv)~V5hVfXM-5Vm1㞈M=MwCw~3՝ꓰ|04Y;&(z'#SuaMBnnc xf 1!Z^[2sGmҕ1ARqM8F{J2w*fs~ˑYLS7 =ιWܽ;K)5̿&DHDR_"4?G"3TQiz#`M9yۭ~z _[0~>r[8v`ᔃbu콁R撫M79CL k\}eL!lɰBؿ9=-xmr>?Y\^; b6S|FʀdU0R|?(F:z, s4L *>65XYb8|>SAoys hnf :.Ȭ2g=ә]<Ġ# X`c kL-sX{^|L$\䎰-)09l3ؚ !KGHDRĨ#Ty9a)=`k[hÞY}ysuoY"+j;Kpv`;=jc2`L`LAPT(`4a lX"O`wa̗N"09pچVsm7VUZoFu|1hs>)Lא3H(qGގ \*n#p9zxkE0AkVo>;Uzb ɭw;NZ/vrˑ[ sQn¦޲TOvV0;K?Y#(-Ź;>w5{b`RJy?;HuZ\*_yl6yS%:ǻ*T>YVdn/-f;!i\ GZ~ $qN5~G$Lo2uD?p0d5[rU^}=[ fR=T/+l62|Z a~+j3g~s?4=ٿRggmSvyʤ12y;^*nzIoMqD#`?\e&oچc+!wjR`0؟CrNhW"В}ʲsK@7|$0ؔ Vnq8KzW< C~@X ytDidU0v/s6wMSVfE{~ mlEݗs]H6b0aDa6X4ҞpcJlww(UuljˡYʜm`(mok9vaݫmn[@r1ה-a3dl<0L|'A?׃E 6t*[Uƶq<m=4[П ýY#sF )UD!=?@,~L>Hg7^pN7.a \:?#4 st4Ӈ>aSBzR 0[ fO5ݥ]Ʉ5_7MYj |~=cuWou :]wUYf8{RJnDgÚr}"̉jpErsˎ'V'ks\oTet*܌}GBX2j!q> mFau i*e s;5&dߖ \C%Ep?0Ga$އLQrx|D=S 6Bp]!%vy0IK%^IPmAO86wٰړx鸝xtm=24+Ul].0N[.ܿ"ܺ7b z?Iޖ29qy吿#u8gS[́(ʼn><'q:&ۈ9 a+ wnD$u\͑l9<ƖsgIB֬*gg6\ A,@lpep.}o=>/1{l6像f(zm(=tEBmp`mjpϊ0a EYʢӀC봁7\ụ̀ؒ骊¸'} M*hk|lqy =6$QGR;^T+ٖk;}l~svsri[󑘵L_6@l ,bz3W IcLIgXJVdL┬vrOw|>Y|^~a`Bl^I;aAAn?=[ߎ9[C46@dBq3|žR ѐ@ $1ť둱 i|a/^r +ӂ|l){ma+8_Hm67đ܄9|V3̈+)\z90 O+ffb2Sj"6 k&89m;1l}m\+SkWO .1sL !&dZ\W$<1y`<Ԙ+1;CmK[ۖ#2OQny`nad?p 0H-+UnD*%LpfnK2Nv[Oͦ+OdS #m}/m7a>Vdp¥_ڟ{KWDB}d>{0Ԉ7 Oǧt|:>Oǧt|:>Oǧt|:>Oǧt|:>Oǧt|:>?ӦDž'gFOs^_oH O//wNLr M NLq$~_pZxb3mV9{/\߁:fymKÃcl?F_DŽ+Q9ep*.7'K8~|ݎ !/my6w,Y@i~bpB& ҟl_,nˆ_/ N{Dń;.O?-<9*4՟aq(l+KO|.xf!~"h-e6$.#ކ|>iDa8/\tD^ rwG iHHMx!b*XC/呇*TVC ,]yD4,YG\,FkVz!oh zH"7!A &QՔo NТb:@/A 5% MҖjŸ!CkW) "5 44]OQW$unD(߇Z" ge֤fC1BI2lwPUa$(oL:dJAf%&ChIYgP ek|l>_ RkVD~ʞ֦#6㊌To,7&!ˀ1ʠVkPPM@9&l1B2 RCTpJx訍td"/.:SJ4AU&Ґ!,HDǧ+3-e3Uݓ9@n9TPڻLbLdۭ's٭㙍%FlR5~ƔK1c"sG@*K1$2Y͖d9)6&rCl'[A:0Z4AQn~DhH%'Cp1DBO%GP*Sjq{P|M 懠db}*T_rbL#zmdJ |y)FPRU撶Er6^$-o{ޮ Hp $ LfT LDr]*6PdL`v Is.砩HfaUJHB 23?\L:__+Had7OP6[9eʮRȡaI0k-3GS Tf @d 6LA$AzbBtet>m%ꬦ PZ')",Qny)S,}f]#?xӑqlzPⱑ\b eUGRl6>K9zsRZShcS5Hm5^ZƷ I.{XY_`(Sご;' %=S@ 2IyKz*}t .e$)_R[o0"Fb $|HJ֖ Zr>e6R~G"_v"25)x·jH(5W8?eòG@[b9*L# ͸ P&%יrz2U €gEtHQY q %6:mb]\%Sb;XoL6VXa4PFA:ʜ t](24|?ǁHV)Lܑ%׏%0:9+_iP*kzbjޙJ"s*s sTdl3<)}FRw3Bc(%%PRs ؍%daJ0U&+sG"R\U\o5MU? 暲xT.)%%iEݓ9m@Gۖ-RXcN6Rb]3EeP]ooK$A2<&[jq5Y5a~,Usո/aAՁ:q!F>~RQrE/6Mԑ"40~6˃iPn+6L ߤD联.m1F@y1-("T+Fо"CEr)Hl(L@JQMDSAAHbK'-NYEbh oʮԃ2Hei-J}GZl) ("3FɲmP]{:)h :&)Kzd{)+ܼۤl*e o :T - #V|bC1V3G'?lRP.*c Jq"7GxH3)h%(UTC|-0(Y*gAZ읽D4s U &d=>fr&n#UBBX8s*ʵ AY;! 8$yd:0P]84$miك#A d(I19/p\8@ dnArHPZyҙE)pܚDX<|i}xb},z]Ϗ`Q.Qќ4\ pdטrXIJ|xH ] e8:N\8Pty>;Bc@ȑP-wB%f.gACĿ{QXdLp ˶8"ge='.MÒK(6 G{ E s1j> W6ݓܓ0>:+K0o@E%$ @!H㒮1h$?ZR {]R 7G+L|?΃&5ryQC _ ,scd_&` {+ pYbFxh>Ʌcnh|Li GG[K="9B޳4f)zAOṅ8FqK%AzNw{ϞW Ӥ̱Ip9hx aHEًX+SAz>6B8-{\ȕP+hN_dX 3F@"'⋆F _G_}V0>Rsg9X% >>}c}4K@&q Vb`}DLgfÃrLK v"EccpMDK&~*j93E rjl8/kPݚ 8?X`pHƈ8lP}<1el#܂X~ vc1AqyC>*0%.Fo?!gA<Hꁵ>qF9 j2c~wW YIX~pj8ЙD 2 hxpMЧ:&αh.WT4tw`e;4.rX,)AQtHW\rQ$FL#0,eE{~$U_yyRxVA6 ozn8c(Br'{qusA02Ts_D܂@V8# @_kcnțR18[ H!W3/OZDBdYB<(ݕ[=I\ ĈAx$^5ʇPq9|{*bk1u'rO8z"`mc,}QI{E)Ēޱ ~h-Tz~} }dւyaX!^mc 613G9SJiڋe\)i8|dde;؄zAR B$RdQ]q L&%]HW='k|zz:! @88'O &{@?(@Сo]+])(S`,.ױzo!^toD@>lqNɃ$["?8^!ew"#vzCl endstream endobj 68 0 obj <>stream >YO_oPY4Af/ y4m0BB;D"sX8IJY =eȾbOrK?& mC-c{òq>Kw^y!٫irM!'REۘW@)Tg' LܓRo wwm4jvY pQ:$ kt╨f\_tFlJWOX$1 EȩyjWLT>.V G>㌎u<tOc; K4Oڍҝ( z$)ܒ#<׀RMLУ`VҘ!`?D'E|} {:d Oւ\ 4a8I|5}%z.f[wZ2?`ln/ G 䅠ixq;<6J`J@L q|vRЗ{3vy5Hp0 zXB(@7{HC.匥X"R!i 1@s l)<ťD?|ۯ١,)PAjRTpm*ι EJ0FQˆ/9/cA3߃ _m(;\wVhA_qܝyYɔn:S'QW|u&`"E,=Iw zc`V75,wc9[௨fBU(@ p^ȄD3Z7М6`Ca&Yl5Ц ]`:׸?yhoa~jja5?`{auC[D<"}E['˭3Ar-{qH4d&^GWuT, l۰"A'e08'a@gtjU۱ 'd\>cKw` ğa /<-VL`M}(l] ې _m(I0ޅ5aTز]ltN3vQ"[˘m*u@Bk sN xÜ䶁/0g='}3C:_ =4ť>& >AҖ,:]KƢcr&iDz(N:F$nA2zX< ,Ό|"F1J". .J)d" Pmýw۠xrTl\M6!fP8?Zm(ny)[D5Ŏ1sİ pKfL ᢋ3=X !\~CM⚢ w"NZ2-+:0`gsm\8X\ ɮg] ꟳxoXˆ6u{¬6*_Ҥ^Z kBc+TMtX;xM|`-8:Ҡ"$YK=~uZqU tȋM"ׁMƹ%qȷөjjŖBTQr':֣ }BX֎`oAuQyĮ `M/~5JX_Ac { >>Ii:k7A`6ebyh]աo"Ih88%N(cr)T$}i cKf5<(=lZƖʇu*=m> 5mdн`K'ܨFlY!Zm|a.Bzti x _l((_g|L>+VvIPen/ jlgJ/l(N~[k[f9_R&DYX!LOJJ/Zիs G($}еn wGؚ"#Tӵ91-le6BlS3{ah#`Lj9(azaE=#rpDu,N%Џګ{`7` S|6=S#^5`sz8֩`}ֆG{DJx_9XFؓ!u)x}(GC5XrpFx89ՊݤDV^l#3CWk*?CQ81w =ǹ81̯ח=]w%f.`eC䖾 LKƗn}o,mf! $3z9)\?3wVP1/plNN>2 ,~W=}.񹵄J/x_׀e2%3l,9 4~sQSﶏV `]qN랰uƘ>qi4<hPnY@<')yai,%AHfǴ6v'1;e?N!%G&~?-=ƱǽQ?:@or|hO[♜1yi,yv$X5 2 HGogP\ {s9(KaC_lQ {y[!aG"KB߼U8lDyk­PO*/% I@a/6_Gu9Xؠx#^CaMg2'TϨt-xDWu~auOc_lWTlVl24uf}}ƴ`mEWڟyѤ\\ C~RnXC 7!w2[̞Tbn!fn+X լaz]] j*6:kkTBN7s!^S#pۘ}Tj ^#GʄD_'d-S 3\pX< +JϪ^_(rN{Ȱ؂dG<]1u%B&0w)C0mi>rLI'ek7y׾sSPy,}i?9扞4?#zty)b2z4٘wL.'-} w3Dt z6IMr2ˮL RˌE:d)cTbnCo}TRnœa{6.AISg <" 繴elHS1e/͆Z ;ێ>Ȇmqt"I7hA|o)O3i׬yWBø 8u|71w3oy9AއiDW~8{'(sU: ZЏ~y ɓ&wk%juqR&y?=`\'6ѕ#+0]Cd-pESbǐY缧xd.D l֡Na7bsY6U>8(|RDBx4Ć].z1{aw ;_;Fc ZDC/ T2dz*z@1C\BW4mڰ^+ԗ\$7*LFڬMC/Y,ȴd}>-Fy{@Qрy/axRz8^ZIɳ +AnDtC(nWhAZ0Gf-2ZZ[Fo"A_ {$/ ﴊ%kMO|oc^Ol)œeoTlAXժJ Va5tZ: ѩIn56 _h<ɿ. ~/i?#><Xs80Ss)b~>Fqz̈́*dƔw[|%~ªr{3>=E&!3>"Q^{etN5AVaoɓrKVmD_nEOͨ_;؛$#vSԋ> 0NJ-<ǔtf*ߟg:RDL^7z+{-j-j6/ 6[8+Z΂j|ic^r>iᨆG^k8#\ U5k]M)hEq|p5wM7 xeʏKS<%j%V)5)+r;X4^VPaʕ^Mi4slz„[EWj~5$ӽ]DJDAO_ٯ}>@h,x[tK̻"(.rΛ2jwWQ_sȑcM{JA"VA a~}dڀEiaQqG[$*i1m-8^UيKL . KZ/묄oDMgٗ뮃 (+O Jψ ΠgbѽpqlFP7~QE}G ޒPI_uW+i Jf+Ӕ,Ղ_`O:̢ASs0],G\5 ߮C_R>sg&/+.H^[Ir+4HWܩ6c%n}j!,h<-zQJQ9y`A}f!tոJ|ͺ"xZѮq^jD²ZU)[vmq5yyEe8ĸ uqMɱm2Pf'Ѓ\4K|*2}u@ү j|Ô[oCfu;F|-n}7ӿϩ-4>d?ROۄi 9zsWӏ>H4i(jW>.`Z/yUyl(*^J_rIycdɐƑkϾ1jgqG;ǛVGZE] {EΓO&GP̻Le5QPc(7MMY;Pt8~536=&#.76$|KJEp`@᷶C=5oˑ=8jx5QnТM]\s﵊JdlB^*VGM˶&eJgf#ב!oKK֑OIq]Ot?t z E^hJL J JLv JIR||#ݣ3]ٵN7*#FTK+}eb~x~If 6l(zxB[y-dKNٖ+V-WNLwş-K&8FV[Paֽǝwm~(y!cZ?80]Ҏ3?e429uk%wgM_kwqiMX(dž* W::!Evᅕ᥵6U56e*R222XƴWR3ǜ1u<7W(|yPp!U]tf}eĽVo뽧.L".// 72]gȧIaA Is:ԴԽ6$97|K֕C]d"=bv߉;}3ڶ52&SvQZTg^h& _o_g!2ͻ*7Yz,]]#TbP KWr{BQ^AnsћEAfő·MgjdF(/z~X邨_ŵu^.5T" ͒6/a qPnݔrfioʅѦ}ő zrevͲĄ:ؘ:D֬dqI(YvNGsPgC@l\FcBA%iN43xGNck[RS}YP~RTZg#,iU8ܐ_Fq uM* H>xM(?yGyP|%%U&Gt{-}vjhuPNPMpU hNPQ~ޣ., /#o8EWFޭu,j Omt>s'w̨'s\L8UGVėzDeyF9TEEiH:ې}%[*&ļT)T)H/x!u~=l\u9+tKv‘wb>:ic/7[]:H-yCQgi2x~_c^[CU8o[׷Mj4]?yQBɲjlXGl\̢7^gsb>N1zWΚV~"|qkDQ sD-v5~[&:DDU$f5Ŧ{ Ml}Mr1#ɥ:2Ѯ*6F[H8J+"{ -sc.$F$hϊa~Lwv: zPɋ9ٞw%66=ֻ> Aş@u~78}{;tbg*TZSV.EuOz]]y9#Ңz$?6|c^}:XǝxϚĻo\/K#s߸nuC[i;]E@} }YZPrVim`Qrg}@ .ZwHMٕF瘢KaQ!AUPHy]yƩ;LbVUb=Ě*24LШ4/.e/}d7^{FEbdiҰ;nʊ~3鮌8~'2Էޱ%+bni1?m1NV* + b.1Jgf/!Z"9M4t\b1 ,b1Yn61s1wRBiZbĊC+boϹ]z՜5;$xʴ4gL[NeO9E&UGGyT&W&$]rLDO'RKt_CSxLmІ֋!hœ?ܵ99=t}md= :AsN*LjJ눅3J 5 &b,zLB?) %iJĺmF^pyKƫh4 plM {MoQOG7c.WſJ+^{!Ey1*KY1J{go\ ]" K"ReQq--n/I <љ;g E="av˖*,'iy]UȜ~N~|%b21M"Ft]s!Ǣ~ύGLXA($vQros}EgQ?it_TQ>B+QwݣJ \#rbW"eUN??On[c^v1,%@78|rS6 +9|060?>!~b԰)DbD b- n r(GZ^*,p|= 嘈ENផfyAl>|y睋4+ʲ=+Jkk {sSH\{됈H߹enڣK(a4~#;'k"n*_? W= }؍E 4W=AP%U".b^BX$ac+OBBc V S߂F\;)ZB,\OոDu>[&$~U8=qKw./ ܢ߼t~OVR\#ˬDIz%2SfxmU5]NnڭLI8wƜ8NH^<Fq(N fSF,&('$i4p.'A9EnQSeˀW"凾FEkϑ9%7ڄa]:X\)"Ka͚{ǿ^_|mG;3ݡsCu(1x)LHaI<~k n 9z/lUz/ӍQ %h \߸'7$Ԗ;EzSMP-Č >ӑs4Iĩ &Q=<Ϝƛ>Id^xEx-=%Y[l^kTJԩ"2 QK}YJjuk+oB3ߏyd'qTiδ\Ĭ{9Kԉy YxĬņub-b2XFrj['z9yp-o|J6{JΌqJJ޸D)rB(a"hNT['yr4 C9phhd1Cn&1krb֔uĜ{%kIJ-ÒRHYH3 Eubun 9M>yVA OJy5H(.pO@5>u}s@cL}@cbms`Rx՘1ڤqzmzu 0r1gbԵ(7 Ao1knBqnb.7%. ם$Vhݕ=E%[۪;r`g/*SGC>q 1kH3χ 뛱7_)#n)흶={;.=ǿbjbj;k;-Rm0lSprʞs,+uh.qtI-q#4;L߉1?k9' cQsS Wk4)[bE81o#7vKsz1bw--5nVQ;=+'{ĭWV-R nQPiq: _6s wbML$`l]c hCBKoz* leaRT! ekIob5yX' #6Y^\;qUn 4>Uܖ}Ul=%N@lD qڈ=eNS:w#n#'t~L ^`ypt-i((9/|(uO}~Tٜ |7c|6%j Z~'"HE(?]{6u7( V jk{6SIJb+8lGvݗ՜v=g˙_;[t~~w {V=j:׹zeA)GWrfƁlS#Ph2ǎ@nƸ~g<=C+B=+Ւ,Toĥ6=so!ah_3Sۤé攻DVK]k#/ݡbO%M@9a̙wsg:_=TM,T7m'5 8G ɴ&:}\ѩ)Et:*&qs>KQ"hꍆĜ K/?bS,&-'oMvO3/ s' ?quQ.Hr- 8sgoŝ0(XCiC; R{6*8L}p}l9Kݜ?*'m~>@?dy1Ȱ[黵F¼w"qyYCAq4Y53f/=Aea^X'%&GL-Ă::=[bۉ÷T}│Uq|28s⁓cu]+4 {%!@N30R48}t9.^ueyt8mAwhx/ZBBpkK^ŷ ?h?.%j>ɾh7gZNJ.e_NfuQW> ?H9S.{܂e{1׏f^'vT^L_ũ|$F "CTw/ܩo(7h]]Eغcou~¦w.gZRmcɨn@;Zr*8}΍O>qz"/L㙜1lꞍ[,`f\q?}ϸALGum&b6>]8LE3[9Z۫'x@o6"VO"a"h𔨮C\ H$UBk17/l_1~ nS7JE䟶-mUOKޔښyIםv9mdV~2t /BQam w0 WT#VXn[< =:ޭ=4BKה8#M 4;hi?-e t`1mlb9nxMhFO:Y^t|$=B2gƥO;u =8{q\jޯz9eØ_ԍkt1n*:9sM3c-fr<ΉNm?&t=՘wWmލaKMxFT\J٥;_?vv>m`I~Ec,+YohAVľڮy D.rU$RTgR&S UԸí|G(~XqsnWB.0 LgykAZfv_ SgRbI3ikhsSiڨ^"_b&Gnl%lbn'Bf1YY_%ϣh7)t3xhRZ"ί]TsCt >=fh[~.1A6C7 T] '7s?p ;k1Ω:M7: '+)ϔy( OyMA=uBc6B_Y0֎s^dj1S`#׍Pޠ=璱e[eemj1]ug0˨}t|n*Z~G5qN-P(i.0wU{^|& c\g:V~ol.zvJ#rZr&$4EG7fzX)Cc3{ x\'&/YE]ߧJ]pjqy3.%37`Q)aL|4˿6 YD4}4c7>n]8reHrCG69I[_0Hjiء{[uq5 Hsntuq:/9b5xBYـ4K&=bBSEPYܳȋFpZNCSPݽR'x!˛hꞺ 8$v g٫fw ~V;E+PW~TK7N_SErK.v ptOMYdR5k_d lտu~.²EQFEct,4Ìo;?28($! Iuݝq!n2 0ݣ : :n>rN=z>uT_otU&LNek]7޷:̖I >r[4,XQs;>,g4f٠gH.-v*nWt F~uڧKiBf;SX3>_ӣߵ3W7]S#\Y>y'2Rw?*b{.o`M­J~!8z{^'~]sm0g5?]u7zq +nՅU],*p̠bp1Qy{w {gNqAh@/<0N/qrNNgc ұy ӭ'ueW/±[K?o}/z_nן+w'O">ޑmS~qwçS&Spfj7d~'LtA{efInZ0Kw>ޭ5ޤC7 ʼn+GZ콂b.!>^ai!õ{F.'5vFsVkV/0ۏ5~J(ɧMNχv w7_kҿ|Oc\mѹI;| f;r{\̕ꎤ[{<۠+B^ b͆ ]zv]BmSn^̧̋y]3Ĕ|J>Q?u={+ph_Po::Mў{b;O)?[ 78l_ >W7]|W]fecg34mX.<70Β N-wٯ΍[%T vڀs 9&VM*u fTXc)G%@+A>GD.˕St ?BPH gM54$ahu'A3hRBMB%bi3p{Psq hOcg|3;hT;O:a~V/ߦپqeA6 s Wh:j揝Y>~f?_uQ.LR~%1ZEFBxqt:{X._vݤ?;Q+Ɓ7\ugc.+@nj ǹMWi^ٷo퐗fAX~+iܽޚ> }j_0 Eh|9e 6'~7J}] #3ϼ )]|x: Xٯʵ U877?\1Ʒ=܂k(O+:>]/\WMtV^ܧMnՕe#Ǚ|XruL-k6iVZٶau!7u0" YlNpנCBި4mY 1G,!yP9Sl/^!M*nFMӟ֐`%[ƛ+s u.%\ɇ^4 = o5ȜtZZ|jgf-}2jtFYm?ͰՆ[AI/AV|jTyc94}jLntRCSG(R!4Ƙ7Wl ZO[&#s';Gős, E9H'\|Ս==[ GO[ώg֍<- spōfI__xV8Knrz۩u Ω+s)-]\4VqH'X_:blNC)D&f*%b\ߝrrx)6N.j7\%X7wuC?Z R`m bƉɈbnTIg` g9-SIK2iaڑNśsR.4sCJw$sۓ*-^̼t~3]`'tMzѝ^\pޯyC*) 5h-& kKO K I7P2!n['won㟭{O=1b>\-?#u*[k, 7 -*:搇*KesM)fIJir5Ef%Zj-m@JթRkOҸ QfB:]l=nNFlp3yg4~q>x7UDOLakwpC.f]}T=nz˯'t@.z`~ېndB1g! *Xgi|0PDf\MТ@due\=](`q"BfV(dwX}T;AHs'c<BP5\Lmp|+ nxHݳUTO7/>`3AcHL* ܷOUW:ЌF4*.K73`NOٍ;W]mX30#D O,>?]_Vˠ&H, m5'C]l矞n"/@C L ;fAG:@BtX'bKB\=$fƮLhAӕHCHKN-UVJEwSd{WW\\p`Q{-]y&}k拲o>ǬJ EǠo~{ 7~ޡzg6x^e5n&͸1#6ĘNd~3P#ZC{*}wvZD-Zȇ'B6qxR[KM%u¥?k cP|i4*S6ZL!KCE];m mhXhr5u9g؉Q%W8ЛLkMd1P/iL5fOXAK!m8Rr89|"tA\~vX s1id ΅ETCh} `Smyt>>?̂4qbf1e+2(!iC֩|R8(bH낢:ynN:3#xpENqsx+i>ar3}PX=A"HHV~vd|p>wA7Qswx} iվN3y?1۩~IuX#lC-6khRtX 7V=riC*aA/?`CGG"@6?`8l8\XNڅE3{oo{+ (O:;`uGws`iC3]ݴE┱<@̬g1=lN>8īdM(oGXƒƋl-MEJrhpU\]V_X].0İkԉo-o3F/^7|g[ž{A3ٹ'CSD1x\x,mncTh iBT>( )1KjM,gh֟'AW`zW N#La phեc1-qBJDbuTK/&=)9P(7.e=ssb.^\]RVN`;lF~[Ssxmn$jb;.yx-bg%e8Qf0Es0T^ZC-C-?p^8Ғ8%sSqNA i1/؊9[Zv?+-UX?.78ppK68+1O:9=)_ygb󍫡!CCBݝ`!*ՎRalhBGo,ϤRg}߸z*m4Brt7t|G+j(+0*Ԇw7-ʁشlZ'>,瞘y)Ȟ,ʳWblٿg^_+3+d9B[ g9C'],DK!V~gs'fÏy%31"nBo ZHۤ϶ QbCRy#@gL(:=GLIcŌ{vOd]v@'=Υg wvzǞRQ+{Ժk{.ᇂu?0[+u'Gܫ7(?xȧfTrqKO#}/Wo<>XIز1u}Y t :RbD~ґ3ٝV 5?tPGz`@PuuxpX9AdN;R{>^fM&-dW]ͷLŝdyمo|돃HS-{+v(^=a MѶxY@5f =XZbnx ]|bᥕL?ޤv<:]iXq%ƌ WWF q2źSK_( 3Y \5^xwߝ#Omō.VC h=wV,%"3xoMo(ꛏX@|T]`Ks3sqYzfrhQQ{y)!lK'EW;7v>uS˯-G|3q+X\R#':@]okp Nv:z7VBG{Hcf.Y H Gn~= g~ώY]ӡw7|F(PjKŊK' 7޺dy_V ;ǂ9}:1k&z#@>pOk\3Xo7g-BbW5߉aiu&䍓Y*tWW#-4=,;H.0lYi#̡m)7فqB%ҴCdž"d<8cƱ%-,T5?:LXWZJBKW[^tq1qZ DZ~`๫|:"b18C ;K{QbGULb$K? ϰW,}r}dlk(s=-IȧxMRh9 |yCۣ}rx~N 2#~ # cH2z~J}/](t>bs ?t8`<0۹coP44Ojpb‰6 NֱruCcosBIbppDTCujz}$\$Հ`D1Iq2ܓYھbgUؼjЌ5d;;K,ӲL3=?w&4ab Ք c t<𢺩+3ϴ{;o| g/^*i`hY3k$飤xpf޼3/7#ϕ3z![3V0;$ѢqbO.4$כxmX./E{C9 tj`gA1˨گe%6acKQG!i&>uN45e&fxO vm7C[U3?TmIBP2xfSYuS!"{_r}>x{.4ه\-YdV;Agb]X( z@:`ǂGg=ʱ&z%X=/ONx:E#vD?KjĖ?X\R)<$hyi51Qd,:rb"_`K-=f&5^~7$VNT EQbh?b>Y."j;׬N*)MN^g0*/#>r*hsX\ b 1JYޑ1CJa\,ߺǘ<k4/Ë w3eE3 %~Y٭`gYx`-1RLhu 'U`bg󊝕4J DV[,oG v|nL{,0Cr)[MV糺Ce 3p3ϯ>`yIxhʮkG|Q`~+-SO~ C?yZꄨ|@!7EYM5 ?itrz#?{w bOɩRK^ Ò?nV,˗Je2sY-#筸g.C΂FzdvVD#έToWJfxmcԐ8E9ܯg_B8>>J!-{ M4ENcbۧ{Owmza8CL3ޗZhܣZ~e9#/ ~HKcx-fH-mG&Zė4bg=)|z3Ȩ7 M FbgzWu)9Kug)7_Zv=gŰ71u9ǯ59YOܘvg,bWՆc9uSK{bB;K>͈oe1ߐ:rMlA>,^gﻴg\;X Ԧm&-\J&sX}_R~'JCZT!$J9 = Cy6?H|'VcQQqeNG['yk41R HFG˷UH5$W8J_C,z'<|}Xg-4`o  4֐:.|rnL07⡹1>Sy"˘l[9.w 0b0[R.,~1ޣNJA)#SJ.-O~=o.߈"q` Ả%Xpr4UՐZ9 Xf5} /*qٵ<4>t+^^zkpQ콿Gke Q8_!*CagMﮣ-u\} q}-!iz)mN`)8Yl;kFT-bLwjApFIW71"5K9 N- 6\ { owQv)<;[q{jtn25w|.'!n^88tW迻C.xEjvLv/{`׾oκI9 fnUIktS:-l\/~,7itZFIK8 Kzr3˓-oV8DL+osL9s`,zQbhX[J͛7-ep8Kp\XD|}68kmcLw=y&Rp y8#56喴*X{~x\mл3R+e؈㭔I8#pkE[l=!wjR;ղE4|V]XJ``oZ?ހ]7ӬcdŤsKK)E(O:>PL{B̿7pZ:ye~1UX\!W҉3,Gl݋,?gu:Z' qLz~ @}뎻a- ~'{pS= 6|ufrV^1^%xO8@q+t@^X~!8 g2 H?j'1!$ݍ崊F>{)M<7W*g=HJ|=1XFf(9Hi{}j%Rj$mTp,j8ee0p'Φ}lv / #ĭx`Qρsrbt~"<=Ԫnw=w<T\\%K+ާ.81ث'WR=Ag-JX^ 1 ;oo=;`;lmi<>Ք#9cʝ\`pU93Xi,Syj~t+kFl& YRwŲgM_!s:֘Tם[u}kh#wE#3mRmćr8Qvj`*`i|T`>2$` )%6NV3QkV4ȣQuGV٬fC 4fJA,呣3mU6 _O lpv JI'#X@gOudq̑A^d5:5 w65wI<1CF} Wr"ٔǞRX%;,:a.uuXtj,g+` _r;gQ\=KǺ璝ko,㫮/S{ùϷb=c+4 powK:4ƒ9HM|?vZ`Ɣu}m?_?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?^?~,X?:h_@BX[X.nWGz/rO꼕&z9ou^|( 58o:%ۜYǞy9~vʵWi"~3w|XhX4.0 2݆]yͺ +׮YyV_is}}ڕVo/__7ī}_~ϑX豶cm8/^,]<6s ,2xk~z:vվरཞȮڙ?+O~5ײG?>ȫgizlfYgftLlܸk7ۃnf^O{sf^f!f=d́}Zꏘs1ɲևdZk|8.ޚ]jH/>g0?.jj@p\|7 ւʷՇzYyh4އ5P&X GiS,=|oirc_)8~?fƇZCĐV5 jFܶY,)Fa^VN)&q*٘B$8R4P"3lKӗ5WcberT-SJx P",њ'usI6Noԏ`?&Vͬ^b흍)e_5LLҡLa&QvL`h6MH,j'JBhh_C]؜1ur*'5 tM0U{rpNCŁ/‚͡c56}C|f>jL:L-HyHxtpPdNгk*`BX-Vj?bUoo(zhp b{4L p5{\5| HI Ĩ1z1_c9P7^Ԋt~I!RIVs Q9cĒ~JFNe\IsT:zr`Hrr#)];~d>,ZMoƮt'gͷ(7g$f;Rt H&Mjma~i Sqc )v GZ|{IGL/B"Ȉ[1>{ &-Y'f`XN(WBlH=(tLc)Վrdp5hJ>m)YA BIaT2s˔+ ǝl;1&v ?(aJ&Rh"p lSMX?,َ G)ۤ"!ؽ`@S ̞1[7* Dzδ)"C^l)t.W5#e0,%5NBmtx (V`:YȳbݟpL񙦮D :Z /ӫ:QK%OD/gbvE^i11$NT+M&c``.~hr5dˆʉjB%>w,~)fgTT)M\`(:kM-+<+ꝭπ 1h-(匑sf` &K*HvT9~)C;2ۖ2B>SlrVd%17_W ٽ=b '+(+LA1v~[~H^dxx2j2{>I|`bC)`?p >8Szd.[ a96P߆Z(:p!`:zݸ9 2N4 m Y/R:f %/rj9L5B1 MP2>(12-C YS X.X ѥcJ%H)$KijI?uPg&td ib90?)Y`b7{/˘ը; D9 |d ,'mA }{Af'BP!vr*MUXZDjMEդ򉤌l>o<L b eJPJ-u0tQ 1Klb]B}X7PfQH}^')@!h1&aL_X EeSC1 PgLĔb^LLd%5J@Uj,&3ٵ`5b|XeuLJ"ߓcbl lR)k cB }PŴ}>[c>b BgO8: %N0Fxt({ 7Wb5|#7=6r[+Ϸuo"kKi1^Jo"{sxTz)[ ?a58)5VWWaj]LCaTAbe",~ff,_#:KPxw|lSkʱPDLvt*߰OФ5&jqM E ѹvL%(ܯ |)cI)X@5LN_MT3!%v(#;΂j)K^Ylfe6֑J)r"hPC! @E]3H#Ȟ_\8EByrBR fK5זc2Yg/4{4^o0  TCբyRl=|*7h=׶qj-T\!V2[d%|3-*jW2ײK jBRk٥ @-Y~L(] V jbV@SŜi೺sPt! jb\X<swH(PQ&Xz%sGRyzBwX Dv[Xx'gPCnjY5,n}"ORY7@EergY|Y|2Khʛ-XA*nH\N TM4z{搒 T@񜯾dX;X;P/lHeM(XiQdqSCۦ֣t>q2"+$!Tkc`ѪJ:cGj $xmHsps(߁D}gg!&\F) R|8R.eaɅZ,)-DžZC  ZV-ћ xDKJdz /ꎤ&t),s4?jPH5xg$ւzY\p;}Z~qִ~@ڴ^ 1"rm%S PxD 'FAO85cu/i|t~_9Ќ'#v3*z*o>!iXzƘE{(M}Ȩ;X|T*no $fd5.3/=ŋyor=XǨuF"E8bB8">m o=8Jxޓ1}6rQoz}( 4Cu\KbK3itF^dHk0).fO|ouwQ+&I%sEB{RP;#J ւ~ÅepMR̖)P$Z j@YF/oz EYLE~bIOR UE@AOwcr?#2R+ %G(CXLsRY|lbrx(~u=Ӑ ~!NHז , B\3ڧMozT?GLqYKdyNq3ցvExzCjh)D>*9uS+A€)A ^?z}ϳm6m+B.^Gdyz)JmDZ!ȁ qVST>z"^@eZ.H{{\~u|I Iq6czI]]5TnAr-zdzVc(62^gڡ_CBˤy#D8 *ݰM}i|o)W]!Xx5|qːy5QcoJevHVP\,uVRD+7WWX][R2cQcᵑc^LldPݜIj"PT[^>odX* ?lp<H(Rt,ꛃD MW5? Έ i]+Ѭ?=G=8M$P8 Meu%PUӫqG0ߣt> r zN5Ů7? @o['㞁J~{nU#1kzlGے&rJa=󠺈Jԯ: &LubJx'7H1㨿QKuo7XȁL:KiG؉_^\5 Xbw.O2e/WZLG3-bdso2|'x "5bxsX ^0ڟ0M^GN1ԓd~I7W(g'f(TP5XFCD=:>a׃l:Tjuא6C BVPXNbE zv1hʿ"@KrgrV4B@ﴈJ"uAPbvD7 91fE(\g{*XE2c<· \I]\@1ZENkVtv[hDnC'>$v%}*>p:H]Τ>uk_\{>-t"RaBqcb 3Uq3GCm HނQDo׆CÙRo_$U6fDCDJx̦@J-"ʺETQmRGhբ}!`="6r*ldRDڧCmNz蹭3+KM}!g̨vfrLʄa͒/DGr#mH}9<%τTsk#rq!l1#VT-i8!)E4>>l 9PϰAﴈE_"B2G/Yo(:Ha),KKA):&6\[ ~R\˃M Jf_E{ ȻY=3(C1[g7K*u $Ҟ 7;ն,!(z§ca}p.}9h|X(#p@֮<'(A.@M5TQ,mW*o$2fB۸.\[t}v OC҇^nDгZ]ApoޕA{H!"!Iԛ9lj(eIQ:ʴc#J{Q^t`!)YM2)'|1ЃTb24ĔS P>tBzRZl$7-^2-BoL A2z{"pEh,ٍ1@xk/uFHD|r{PTw =߻ ﭡ~b8~}XRbX?a'V1"i4 ,(}w::NQ G̽}5^|47CèJ{EE }[=4{vԀ^. '}7~r`REb& @ zb&rr ԼPu!ρ{uckjh٠ExA) :AҀΈDp4Y-Hv4;g3䬎@bبp>}E3hg[7E]]ENHm ZPW&ckZp ych(ڴA#T&J=\ ̇2wȍl28~|Z5jųϽgNm0rW+w'xw#|8]y(V^:7^"DE|S]~͏ >-${H5^h!?ݮ ~CY,-^V\XFy0;lWB'{{;{/w,4~{7 r_o>Z-^](Լ|TK@+,DNG9!P84_j]긿5~ uQ@.s{&6+ݏ#x.? 0{. 7 iz.{XK_̗)jl̅_F/ E?Gʯ4.|haBr\::π=;Hu$U b[k@PNR=921-0T]]3{&J*@=PS h'}pV m+-0,~|ťy+Q9Do\@\,mڟXREUO:jh1z^jalEhʉ77Aj,7$z ǙlN%a}h?'=\gw|F8LtΠss PMo[}*C{B`/5:ziFR?ncxA.X B+ԮPGzV'_9*Bww;DQ;jtqtшQ*:W6 dl(Ce2C !%B(%Ί ?YO+G#6JbWn# hY*8v ꫣob rvt$EἏ_JdqjFNwĽ冟3^"?_O 6Qo,Vf?B]RӇc(󈶋=щ1Eci_h<_i_s6'm_lq*"K혍/.)V99K~E@y +6 fG {_|h.>?w+g' w8Ik #f_}f QXǹCЉT|v,(e6O&~{=vLx*UYDtǢsAS;YkY!$]pdˑG)O=d+ɡ8h,΁t1R=ЏM&ΪQT+OhrvΠ38Xuuht> G9l}*ao= UP \9؃EQ)5QtFC5`YmAC֐nvПo;ꛀ.s}d"PV^YRR:Ӈs8Sva>yWO":_򲲑fX ) _hm`5%AgX~\tĞNqXLMg[g`* '!t,ި@Y.7,~y7bsLXڏ7DZPaxHJt^wPZv~W$?V,΢eهZsmRyu-WOT 1~!_84B3eX!N ? zauWIts#ruJÕ5LĶ ċ#߹s}v('81vx,"TH]yOW^~o'Bv͕kKP|5}腊E~gBr\}{ y=۔V[b"w|yac\vbiQh'Q˳Y~31-b,3梳m4kA0zfN~ kd2Vכ똏E^D~YfO8"սt OEL׌3HU7W w7*KNv_{4|m,fm>*ףLjz Pyw*K£(ށbpqUlxrQ"'~Gx r:1ׅ{ȇ/(t>xЖfUUsg Q@d,x{5gssŪK"gMku&Y]Sӳ;3;(Kw޿p7I87no?.So> 58N}i86Үƨ ;%*fAuHy{tc>`r.{G~ʼnƨ+·џQjoù vPd4!qgb7{o=%l'rR[?o÷]w L-?zt^1|J.nN|nl02[zrHxsN`|ﷻqvD8xiw[8 wG?}k>*xm#ك٣:xJA>5V*&I8X("o4GM(Q;"F+W焏Ȭ~z!,_jȈې]"#u󵂜d,In#.]+ 5jQsXUƠ/oL'ncF;{ | QL<&|g! ۘߍ HD:,G"֘y Qa/ U]DUufo̞Ic2{P6*hL\XP8 2Ft( ,nQݚ\ ; :%:jZI^X0`*(9]8dvXԍ*FvE]-XKH0 EQ"ydnaV0>1OvCƸ E#MXx'r/1[i@%G="vs~+Etb7z5]lڣȾ%ϪOu~f^7!zf.xmj4tcxa{܏㯆%DWkl=GV&k?'z/GE~&= wv+󂠯=t"Z4 فlD>Q0Cu:r֫Q 7)(849*kD{DʿYC=E*BEcO_ZWa?hU̸ z᣿yÏ~x 3;C=DS#O{ z̚]Uj7+<<.x3xx0E6'0QUm뜸Y\YnV_|YXqA^^TvzkCjXk'.<#*;}ɵ{>MIud>BvU0qU4Bt}pU͜WV -ᣫ`5P>ҦQS{Q,z@BbcQoM{ {6k$%VSɃzKzsqzA=裡ם6ӢWͧDOlOz,أQ. /FT[*lj]5/9!?Ůfʱï aUf،:Cu4x zN}Gf⅖Dĸmi]9qEؠGѹHe獥xU"wԀ>b|]|K9%czGXvI͛J{[ԷK<+V. LA =n/6[Z뾛z-+˶QiKy k\f",(Hu#)D~i9ٝm.!?.28٠@AXqӻGRf)c9^Yqbhw#uᢑqd3!m|$!3{x^^S)}xiP}Grb,VWBK>?ɲdm~cdq†*W_uvrGPeцߏuސe$$&4^Mm O9ߑb A6J+L;D+jQ칶]yqOy ?qIv8?+|(݉rW2g;ł[0ىhӺ #x|D>=A(:){{7W\G4\8ߑ}ݪEx4zE±ģw;c" ݤMQ%Noڜ"ǢfȢ&1peyeU{ǥԅ$H>h'r=/VX[u5,5k- 5)o;Į krwm_76gx6H3̻Jح x)-{_tȧCBA{υ]wR͆J/,7.}m(%KhMNTDP޶I~-&/zht׹h8RIQC2\7!+nVӥ,T%{lVZv߅P\Yd,'ΦWqmj4H Gh0-0I1+}}VO}Ǿ|0EFk9h]+Qy%) 5WRnT.2u!6/E\-j ?z-ճ>&R,vo1N-gIFj-Jm :R32SNvg'_&z{mwD Y8~jOkK)x%}]S;{o]oҬ2x>cKQ| =+E@UY15'IsM݉P~1i%6= M:T.CwRȯ/h5[ c ZfD`uس_أ: 6Q*.tv4:OWn. eI#C/t[L04h_};_Ȫ <7Pk ӏEQY^q{u)^S4qާl'LMC!ظhX1n.X E@,2|`@CCEf"̇5LS f/-&˔vUn=иZ;G%}и?ۛIs%w~_]\=&'>*@v.$ŧ."9}@]fL}e+[ =b\$]ۢ/Ft:91hzylsd|mG\вey_}#AB5-Xl+X1o%X6wl0 LS$03+0,SV)/[#fQ j_LUO[NrЧΦ#/#C1_a@h'ÝIb37J_QC-zO,ޭVYnMv2i:m~F^?wڶV/]f`"8ۥr@;Sa'ÿ_)0M%փm; ,u(. ^JŁece%WJcľ,>,y;&{^\օ$Q_{[_>y;v'1123^f6=_P ~&_%ϴx_*>7y5/QLf`tj7kز h¸1F{@e-9ySS[R}olNO,1ѯJݣjdO#m>~_)ǞΎBXBxtg 7N+s`&2<4ئ3\sd́sq㑓@-kmzk>FHz,;_v]lɜ޼,I4wW8{]ɌOb[={bD˃gcKSa$;_A`ـYp_P_?l` آs񮟡O៪].T'/YW"<_{ǿ{;6,P]^Vs%F-jܥ<+ +;y#q(/Cu%̽bx<)z?+-NQ?s]Ȕ&op"ϟm=^??LL=4g0Gl$f͝l8~WQ6?@;Ywޏ<[/}ӭE>%^p [JWx&7Vǿy3iw\ri@-ޮ*s)3s vO7ԦIxxȴØ ,_NQbϴu+/G;'3EaWlzԽ&&>a0K|Vw# hÍkw ߬Oc*gS}<0Ga1!72I a_ WV +Iz`8p쭢z1*ybj"EBLG_l&>&0 _rзI;/܆5SGLwZ'Úb0Oael_i+6L\ M >+*sJi [Ҕ-@ =̝ n:X 5Qʣױ{i[v#QnV?6ƾwYzʼ3V{_jHsKHAuF gDCy /e`8jEa_}R0g:[~.lr0oJx8fCzVn>D|) 0~~-I9T\ ]K^TUFWŎz6Vx$b_4=+@_Ird(3V,h6pg& lr{8ns;*&{?qŧ㶺RP=ywp݁-SwMT4_4'f&mzZX\Uʵg 9*0.*8` `0NnQ{8˸Mz1P| Ky(h4>,K][CO̩1-2v/n+4o"eWخ/PXfN\ /un|!j 3n}f}'kK=F^T:d{ˉ$ch/xfbUاc0?(JR@Ouq./ iߎ`7æ-\}>Mے*8)r4=¿Mį<`}0|Ii˙|~*HN :Z#-1L5Mq`ſ|Aߠ)w>5]gv?h`HOVy3;é]f508ͮ7>n1 |1~CX;8pßa1eYC>$'N{/&Z7$o%%W8%*z,X>t?RTqmNv/쓄ȩ ,PIolJK?>tRAN?i{,;%jjWuxRGEإԹ@~@H&U<.'l+btP! y|yQPJVu4t6*l:%( Xv& |Ttmi?XΝ,٠ 6ڃCw&hݧ7/5:Q2FY+=M0 382;} 0h3ˈ ._Zc`]7ljg/x;~>xsyްsM IxĒj uȨW;~Mv ,m?M zW/&Z}N-zRi,}r:~"oG3*|Lkq<hUNB6N֗}I#&R[-;.|=]`qdKs./@L hmEnǿpynyEXkc3h46/R$"wIHbNU̦]W1yC2:pp8gc 9SлZ>nmʞgh Ռa~U ۻL"ovy<]s2'hO:iih/yYvه뛱 10UќBn_9+aqF+ =Gf ƈ}sF| ˚s>E<~WȤ̸T=6fi޲GQU t9b_T:6{5MaZ4:,~HkRt3U~ O"Ǒ62ϯ;&, ~/g}TK˷cʼ!SPu'f˥dzk擼N__IoirIb6=ܯY0-&4zAl8eεo#k'5A)y1rG`-g?ػz8m0!1Pر[~}FA wxDΰ>h3ᕴrC/$\M]Z!&Vk&|x{˽MQEx4HP]gE]'y7kM'.OǼ-⦴%^Jm%S}ޜW4f o2xyԙ&./qeJ*mUۤ໖Iޗ#+~\OLAb8BC[>\] +4al1 Exb2C qψ [#:hoT{ަewh8)W"b2~1l~I: |Ψ/a5_B㯇̨و{W 1e.1;o9ϚּTTĜ,vU`*qRk{i<&ga$Ʃih#scO'=pmQv,rhF:O,O9NBAn+GtUD`pP%^Vz.Cf "TfM2g޶^V'=hq/`=y9czvo=ssqʷ*qo,Z;/ ]=@0Zɡ}ܓv VN VMSf.a+SˆhO͔i@zq\!8?S}H^{қv?SqHG84.Q϶`!=f[G\M2!woz.kI?c7g1$6~B^W:jlF{[و[čm<& [;NgA[XB#x ڷBk~S |0n.,# 7b V!yfxwYڧOo?ďy7Z]MƼz~$"`-?{T>XȽ5X|i6nέYxx#(߁X`gњ[d%pZdU;M{q&fN4Cz.Od)ϷTe2qHaX9*N1৛q]%sEG&u$G&I3WU 1p<0gzHoT#s: >W*:3ԅyĽv./gH{dl?FgrZ++IϘyXd1}f?Xw49Fc#aU l'e𔪃k &UK\&r},iEY,izߛr %5dsk^U Ji}/ye,;+\TGiķa9k=Fk 3!3Kҹ)tueGwy CXDLtƐ:ba {", NºWBYX_Wҹsl5v.#YCq!rT4`tCP)y)j6ߊecYjA-a`#+ۋŐ>EL1D:@ vQHT"n7PhaZG^N[XOĞA 8Q},oLy0YϩOb`H;+ ePM4+"v}+F>A1OxLĽF])XX#D0KEoG i<E]C r/#bg! odX*JA`jAȽ +%Z,vFSZVfyTV>ãcM=h'D%-+Ehb6h_>cKo\9xb-DMu8qЇ5b:1qT#G,>-ϱ8?ΐm % -#쭁ibN;;n bNP߯X<8AE=نt$GDJİ'B`N|l"Cp{%Yع+#6wL)uAJětuT461OIf4֠=!+!C?5N!gR22v!TZxu0dd]_XwHaF9FCgA,Sy]TA'3Y|3[OFX\tɛ7rCHw|!pԎѐY14L̎3 (F"/u\g|9a\'u2<V. .x SD!V{ x}U7֤GרQя3̻f'l[x{s'۵ f'|]( ^tXJ;O}zGW c4i3Z0F|K9CF`}@[p.* v\B[F7CLnğFR-+9ESl"Z --$ 71B^C.S/=Z`5w>lv켢 ,W4G]sNHH=&#mN8d*}!&'ʼnqfg\H\H2WdxUa[Ew7#.Ҭ"mOG:R~ F7o1UtL׍5df&3_8{B»$XaMDJ8G&.(" !D6%Î;gҗs`~bcbc2b|rW2z3EHtEu b#.Ho8wuq1Z0J],|gÓB1 2kuD79´RlK<9sω}dZ:],,MrK=iSZc9usڱ\6}-8H@d"<%8NpTgS{7i!1?;F)Wo"Bg!NSAGA1zMbf|Y 9K>4pnNM~-O +f f#)F i2KBFiשIE)!TrHFCx+k"⃑rU2VB><a{E--G:Mu'4p>]|܍Hw2 r Xծΰn"m&'<&cpqx 4t3zHU␎3D)7[#}!B%w һuFf#"B:Φ|3"!ߘZA7{YVWx\"I\"\ *AkR4mer2חX 41d!;d-:)AK+7W#o ԕ)Cf2 ;gđMg;}a5]xy2|fpϚKldd S琸2q+ko@ډKOٜR4u]$L]&[j0qS9C#cMB,nƭ(2+oRCH1G x~ 4y)ovS0Qv#GXܒ JRUg"Y!n|!?yw::Fi)(7Gke ~yK 6#=3f".1N56 ~ԅ .YVwռH3 1pˑ͋St j 1׉HiiժÈD͕DJqZ>A ~_q$BU(shޣ5'QDv"V]]1n uxb~JElF;JF¬>CAq6} Y?u%5֢mxD<ș55 ]gS UH"hw\򨼑#m/n__C]%)t'SUEzd]"+]4Ψ?x5[1L5ig< NGLD^{(@/F ӊ(.2YgBf!hغNBNtk AXE\nF; z]an#1t cy㐶,:'O#tq0e-S k*TJH1`&F:3&chLgt }o2ucvc:T^\[xc ۥ+yRvԬ;@6c?u!] tg-]A^z Mhg  ,؊v?&-J?F4Mh3\ڬ%l/,QR Cc8ǹ<ҚG!KasP>-I_~uce:ˋ]:H?RGZ1-H3<0g 1 14o#l0^qu.]x$RTacX_>qaekOэf6zg=ntn,uMDܛh-k}ab `^8]orNF"MD`f{|gBLo{j7F:[0NH5rj:AL> r"+э6ʑѹ,Ll gi>#5a6#f-ﵻ4:3!99iGNNi6D냔#Β8N@:] CqHdwqYv+K;u-m0.Og dF%q4XK_ }!Wƾ#_A߇p{[bĬFMz,լ5U,nʬ<wf;s[4w^]{%D1 ihܒ ^$/M.)tX7#5ߛ+QP+pI_í.fr\@;谞h;y&,;FkCsj"M E{ 9g򁑶ţDr|?5", `isa|GIl 0%7M>dxpuSmZ~2{E;kgAKΑR"!E `h)wŐ5 $-  R3P?,%=<Փ%r/ET4ŀ1닸/ dm?@Pni @F +k-ELArr>x1WmG t6ᓏ̈́^ 62xsEq)v:|)$q[?%>2O:~+yUjawtg~OE-v 1YiܡRh)elȲ;©5GS>+^CХ\+Y4NF (6gȿ94)uK㳡K*n1XY;R9|mW#0Or},jg,Tu{:Lp cf-wE; %hP}ز)R9RXX GfCRtb㨛(CKS {9.,1хzx-b=qgJicEC/oA?+y 5-t{գ#sպW 哰~"w9X{EqN9[M&b'ſMacLͶjp~.1*FC>O=3Pt21ߪa=?$K!)15'۰? Ilp/Cfoh\0q")1_ȾX*Ў. t~SmB[&ƢBUO&I-V5MO't hIu#K'ccMcº`]ͼ@WYʽ*hgqf烏5KkgP,hH3\^hgEhg ٧pWGV)$~-lB:|T)>Tk.;I~ =BYzEYO"Y)'fA:{NUa\PӐ?PFe*yT߉X4H8>[(scpP[yFGTGG+a_zoEy ՒKP|Ԅ2b۬УA]b0s .|BHxhnQcBL{&qW/݂taTؒth3ƻk@ƛ}`014. DĨF戏+QsAdXB|'q$`&c*dMr4}c\UǑ{Os#$vY} zt6jґǒH+oZ[ ֯FMH7T :oa.h=៴Kh?NH?x\Vܼη`|λ@Zibg-Ny<Yx̩Tc]=s˿=\:Isˈ-.QBkVI{f36\4{o\2˛W %+kR⩹tߤO`sSNu>tNUhV6!j3|T<%rc+`oW>8W*GM`jaV-l\9hd3f*|bso.A]}J I[1 VؿD5U]h>ˢ;kCk SL9=K>6 |h!\ :XCM(tT6zɄKfE5QÄ]Ĝ)Ejeh=ؒΣcs`tQoWx] -=C ⮌j2{ ' q+ŷWçҵi+[-佈|M{2P Ng]̢G?g44UpMXc{o&Vd.:G\1q P (zX$F#ܔ{Y>#F#'dĞ%HG%|o'EhٻGRȼGT?Z[І<#lDrρsrS\ExgEQyb"UBM=2GQ޶Zm6N at j`:Mp-3t˛^x!sG߸`,]D={`o@^|b'!fG[ܮ\UЄHQ*vK'p%u?+˰NZ65H,ғZϧ5BbQz%wVo,^[^T919~bl=$aGC]K>9U(BKQ>Ѓ`$7M1]IÅ ⣊:əhAއ{}ic3\G#7AV,ۏ64=K^5@GB<:xzZgKW8޹ȝ῁#nW0Zީ#HA<^O}tL_1jvK>йE/~8j> |کSbQg'sLE]83IͺL\X* IĠ ayP'JJ &>X}t7KM[ީТzeXO< u>?E'쟌M! b~Q@-2[̡҉N')RR$yg׆}/wW`>Q-{wm脛ys#~sC@r`k7CMN3|[ zt^z|=_z|=_z|=_z|=_z|=_1ezWuV;pLYyyj[ρ:F)y=wsj飷>no^Bo+[O -f7}-;ogk]Xo#3twp%O[[9~~oΜ,]8weK_l% /s//^6we=?W|u\Y7}G~=hm&V;~~v-t}Z^o19۶XoOs =I .XfMYfZCf!hx [5VFv f:3F@dd4m{Sf[ff䡹~1M ÜYr3jƘ^-[,kLy Oop(}FIR-8KClO>[Ic6RsPV^"\krt>SK'P.Ut'%cx(G ^^m}U{% 7 ؟rD6GoB!5Cm={3L3r+g-3u(^K\dS@?K\fa.lKDWG H% )lSA)Jo#XOϸ)x^T =ۑBO`C*]_˻!c~x5P~.} Gaᤥ-5i8M4L̬4 L$S)1&>ZsEKFGaM)mag ~[!JG# sc[128@sSZ{h ̚ƌ!||z ɃC92MZZ6G8pf2ًUb{K!.D!A鰹 .sFHEceztPJJ?;p[+߱"9rIAc%p3L[fQy TzzWz'w6vm0GaZjS~L`3hJU9,$\I!c{&y'um{$Wػl=}!z=su[eBO Wҥ`RH}{!GsA=Gs% b{g!GULյs С=7Ôx!㮾dh_6P:w o"jnXO|ƌ%M%X%'3QH` -αE漵\ŀwZ&X"m4LY{ 'M}X?s9Ћ-:?G,wOO_1Lr2p%:F*=I.%'~U&~_> ́;d|tFS8B? =SpgH:NByDO:zrEr_A|/f+SO-T!QNp >ϞeⓉD璱|61==6UDtR{#~Y3q#f2~E0ɴ힢3sM >ǚIO.|\8CIo#xR0=w;bFeGRd;Pʹ\8={B`(+l07mWsUXѷD|<6z`o1ce%-nR0[TL '>Ia-SiP{>f֥z e)gf<16z1+F9'p}nĝI~!p;p󺍌\r?d#Kb/ >BrW1c@?fJ1п }_ycOb޿/QەF{UQSi87?gL.( EWN&`<)RMRE] ٹk52-}У+%' |G0@T[B0+xo 7SV&%犉GgˋЗ>:{PΠl@d1`UQ (Fa.Kp}QhLQ\a]ɽwA"ׂBnNoG A<x9&8tZo ~)p*_K/? <(Qu@գ]C.'X@nͺ wd}t:忳ޡ_J{dɜ%+W}fl5)񓜥BiONqٛ@%?헥םK1 |7A䍣 {= }..UC{!IR.@|u)7WigpEl>_Ob3菄 C{3L^^>fI+%6ѿyZ~| &v?G5aՍ?4N?88PЏ𙴷=oKHCv# b_yF {&}{{@YR$63is;adL91\ X}po/!tʕ _E:y%|n[$oFH<3ͻK;?r,'I8b~3G?w.Ƀঢ়D ]1!<{YxG9BW/|sQ _YnK1໸H$>);n8i*G ڋK6 Wa2?( BkHRN(gK> v%C~/T 4h:pa%(Og z}уi|3<;EO΃Xbx>lasdb p~A.tW*ENއf7I8v++2}FWN24H,7W{SEӌ_2GrC|Ǎ=9Ŵ7t7t"~:\?K>= \`hA}"d 4sA G@h4ICAr2v~}9$HN G_52rZto?ʋ"l>,Ӄ !qk08?t9HnD\z4Β"?L1eK{ nq` L'?EH??OeE/l~N~ U"]5zwW$ .6wp5/#Fxm1('ِY 9#G2>` rYh/>O0@b,@rX'2l}z+H<ߞ47\EaZp!΍@iۓf2vr@9#SˋOL;)?*q |MtV`]@n:W.;Hͯ!^àsAqA`xʹM08c5u \mRK悄|_I\ؼ,}?C_gԆe&)f$C4|rt\Bv[`_9ɫMINcbn _<m#ky/=Q.CooC^t%|'zG|@hoѨ'G% \'I . vC;s?(2/18css. ӳ16o+Z .[ԞT!EL>6ԇ\4_^o: KEcQ3Rt=c(^(ij@Jz&Nƪo-QT>Yz\O܎SZh@ xͽO |::wog- \`qF;5˩_=Z%VĕЂqK);QG1y 'f)rٷ2`|#!y?wxCDI'pѹIuxA[ώp|+~Ӂ \LW&ւ{eԄ_<朵&O"m8T=Y.wd t!ng`=#|0 endstream endobj 69 0 obj <>stream 3,V^x{|G}šF귫؀?IuYp^Q.{s'(>_Vz飆o'O7FE]j}^Au16"1/gtO*Awxr!_w /2b$F'$7UnWS3L'n A`Axr[|=^-_8:=_^x%t︝)$yUy 4fZ~Tīo,3bph!\~_ȁz[,+kr9[ݴs' nB ?R>#< c ,y$ {Ch\ pj 1i 'f rt9;>= &Fڙ N_Vhj'I 521_D{~XRV~^Ckė5hWp6>kc(m576oܗ"z{/ta[ʀ\B~)!4gxwࢥ~QD_Kzȱpn2`[;3hDƯk81 烯I<09tb6|"2.<. 61DAno_Y oExDEͥNcݓ!v-;lwB^=iK>7辱$$1r2C ZYӒ ֈŏB3~ x5.ĮKk[Q3@Sg?~ׁyT"_NdλP>QoSň=)tɃ'c^}ˋ3 }k\ DbL%[`ZiB 7tU`|%?xG؉EhD)$w׭H} 2]3xnG !at:ƨ"5k\Ͳ[˩66#k)$OXsu`*䏈+ ]gDAH>=GL?C '|=9|5DC$sy1tP[Gj\܂5D|a4+ & lCUTC'm h!5\XΰV1^6sꮄT| L_ [V %kq}JG J5pBgEQ@rJN7(yzǖp"OU)#6m(Wcέe\IJ >ϬӋxYG9MKjް9WS?0 k4|ܡis.>VO5rMW)B㈘ܺr+_m-蕤 蹡p$)?xMA T#D H)@/1x(B|DlH X;u:~t>zH8>zd>E>8uC~t Z(BUfEm).C/O6JNsH2[omcs; ,jW8>˒9 Kԓg8 Zi@Ny785/ Υ: 䞱~Wu_n^pj&omL1d$W7WCCkWFJtHj\.ifvۤy5xAQ<<ʸik.=.eLT6oyg_V꟢_bJA~ؚrjкg ~ .$֣L߽m{aoekŊYQ_1dZfPO |m =$Qm b7*l={BhT#)<0ڝ[ h^b˺VWzW`0OyЁXEuzHlvФxVQ.xp"Rl461f0$@i#ˬ[ai-YZi bͰ_ID}T@/6yۉBM:LhCx3x-40gyZM1YfUAkZM5]W;wm+љW~b3K+?R̉Z'2-r./_$9w5u4]G(:*<~=m|/-,V4nRVKU]MSm 2OSר6o9 3[Y0F&:*3T#GCgm /^YK-I.քIgso/ 5Gh=J:4+{J_Q~5bIB`Xkth pKFT33r1y9GՑB54λ-v0 ]6>h8Kt+v }I3nd6o4eyG ɖ>X ]𸣆eGoOZ=_QvWoҸv~#y}Db& =yiO|T#l،>1vURms- ښ9O =!XS7VP}Pk3+ns/iWHɏ=U`6r!2UhwhhH%,;;a,n7Bcڂ3qsi)|WH\Ԩ] uM;yo}6ßbcEmXQl #[6[D2)%t,RU2!l!b),H{{XEekٲ0=bFw?(2nbNLeSϦ>* hor Qlu}FDTO䋚V!art7`yطGlBȹXڲ}jkYbl5TZ^aP_ 6| hY& }^z荲+KŸ#3ĨIT[k~P"5P EO; YeSDȝcE]l "shc N`?^ڡ9l%ʨ)~_4])7mKֱ~na9Eʓo"DO(QK.qU}ӨeVdPfD{aX^X3H,+ Q{  G+I4Q@=6ճWzjSmX!(g`vg=˘tb 7`e.mSa}kCQ`QGCkpL'8;e8벣#C!CV/%웉,aЁU=[I(F CQuvĘ_1=gAr] G*5O΅^^sMaqG+[fĞ]&3խj(l >pd"yΥn--A#S㳡?>p]܉=4EQjPP:>pYl3, &yK_:*rJ{3օPpX{b͏qc:{{[Jab4stY0GU#ҡ5zBjb!bnzY0W^w{p7O̢.aN?{HE~M!bRb9[YcjhK uꉴ.5S{Z>jXxwPGfhکT7tsEO:mg 'LPTj+WBRؙ2s s&8' i;Gk ڶSyYJU5sK<4O%yq1O9><79A\'\Z({Q}Vȋ///ui27_6ŹIcYFϘ-eu^4;}YVܲ\ؑuPEAMfسڭjKnZ]t>l<~m!{tH^iN|,p1R->B RK zATz؃tn.nX ] >QI4/ ɉŸS=`R9|֍fO,P&Вoa/|E$KbNN*56BT9&uGԌ&PD♢l%t-z4߰/zqie7RìOXGb`\ gPL &%Acu&YUJ.;CYIǏXbn,@"/l^.Twկ6)[vz wK ?~$?^g2blqjBo{_aW=j^VMl*^QZe[=\ƭEwοx4o[tXnxZoD_ry^[ܶګ\9{ȨJ'>8S_80K:1CC.0o+c"d4w\]H&[#}k'OO^KWyHW\]Wj#w)*KнAiB|YZ՞G qkEܪL̿4{P{RQGgԋ/CQGh ќ`{Wv=Wt Mns+Yh,ϫui>WYVd W].{N8H#-vx\ń s]ѣtM+lcZ|ϸ1␜{ߋg`⑉Xj3jP\̱$͆֌gLGhRhɱ).{w;jm>5@x<6ouƽS5ԇK-A7v"{$]|:kUUy&}=?`\ifs%OVI;L-w?R%O7"W / Lc=zED!kǗnLNfxgʟx':G¥vg E ?Ȫ^?3>82G~3|4UyoyƲG_;EXXW<_)~|u잷/ oQh8ј;NşC+^q񣒿zxV#O*TVT}a e'~3}7KT`yNsw\GTܞCfym1b+).}T '^)wx K5ej ZX ~Gu]4V]f^["ƒy^D|/V<̖Zk^jYfdV&7fN-{,{'oMc0出TԎOI'ZRQS{µWRc?VOHRu}X=Pk~]/+~B\ue\`9 5Fv?Yj8@|x-TumdwI'-KZ]dGE~W{JCґ;FŞ~ Yן:r>ٲ7s^ypw߸s~qP˿ /ݕOƋM ϭ#elҧ?ɫ>|ugt݊?sO ]k'ƪӍoչNN=Ҕe(~J۬O~ӗh|*Wxf.?RV^͖ʝߵҍk|kT\|/q'_rMoDű22X^owz /ڣ-͔>:ZwqW*~f;y4/'*sZDRyaݙK7pgc˿pYڿYj^ fUMhm_a[ތv_<.L)Vf#49f J ZNi"ݚ}Kn^yxSkXH}}Z[GENtCrAm]s*mO~<]3Y=}صOw;[YkW)/[޸:(\ymνm>u)R}GpE{]yWy9ȲzxKyx롻t͓e^}Uc=FyU/W'b߲7;m^|8Z~ms-Nx'jKb<7VR~O;Y‡xtO)lsO+<|6q<P~G/ >|jozy;b'8^`rA-ַWZwxB-_ʲys)";x;=ͱx-:R٩#mO.TOP=_y~߆% 0RƇmnY?zx#Ѷ|Mו\_v+ݫͣ.L4mo|;#k+9.OxUV:t*x\P{L>]ѵՕvN~6\^ݨ{AWG->\P~f:dB+Fw*ھ<`]S#-?6ʊ_Eu幖ʳ]Y'O;,yIs]ׅmZi:[å㶾|ќun|0?7W g񉗬mGgs'Ѹ"ˍ}ѵn9tV75F$E(+{yn.?qhW7 g_[jFU7Ozs<rmٿPOD[|V\0$arqisX~reg],wwaer3[sCԵ-Af6$$MNj~,H;7{+VgVwa*~lK0"֥cogR=%.K]غ_Rwyӿ961ԽWw.եuW•̃g݄|xE%ilpͳَO{WT$f>NJiΪnU~uOz}ۮ~735=I'?74fܻy>(>,;>>߽"ݕ4}K˳j0?m8͹SoDtVaGҞ,wwVک|Ӟ"_]O5L20ӽZ8^N۪VA憺.ubNBCBnDCz~hsz~I]d^RCb1unsnm?܏/̿[y;2'Q6ƸGrnB ou_6uvi;\֜7A^'^[;"WcuAPVeChіۭ>A)|fѽKǧwgS EdWߎhx\,ױVz}3yu[y[IpOŁ3.ik^^SQ[dH7m^>>/U{s}ס뷧զϺL;>سw{ѵ+F5/1J<;ȷdqP o^9ؓ_ l63ݭy۽϶OgGOhJBy=4̕#dn U}> 3)+^qOa:stdWzn{HF?Y82L'v8?έ9+Mz3`IJbzk"?dF]bìn5{OƇ`lINkEf߸Y}+"Nx61neD6[>u?yfp֑;!l5ŸI_R {fvde]q~ I/= @rM# #{v5РW׭Aat$sq̪'#i{:Z)źBC|9yW,Klc36xJd!tK\n %}K$g7ylGV1C>p|tLa&N4bnf~ke&ŧ^JR.'{zhkygo{zXWe݉W54T7!H}>$>2n W>4b漹Kњ gmN-j_{sgj\_?PQ?81K*47< Eի{oe%8wVg#vo-.C^IWv<גt@0^0, 5j>nj?^9\\wozgt!Q{|kGN CtϑZ~3nHQ+Bs}朽St;:CrJ%3rp:w~z|݁kyL{}&HLnjH*{/vcK.{jxaEׅ\Fhvٍ(uPCV6)$s"6/w̚|=P?'jfFjgkqN|X'0õ0{MfiMb͌\ʬvU{yI<@LmHϕ>'Y^&>&e$&F];9}:r P|Jf֠a_@pMNaFZ|3b3f̨aK3#c : u meZvO7vk;Ҽ;Ũ"܌UNX;_zZ%)>yך/~ 54""?c/5g63fĀq!Yȗj,5Hz5nk ܹFh~Ͱ{wn߼NhuO/ 9wkv9oZM|/#>?(7d_̌]̌33vzf$f$sfdf63qt懠΁nuϓ_ μMq͸37BE Eq:/ݽfH[~޺)UsҢ$.ɾ39C`fhftfy?3S(i߻2ۑ3v/;kT (^PH/k֚u:tw(Rl55&jػ5;md s{?YʜOs<13t< %c{2ÆPle=;{}TēcU_tmf[]*~$Ʒ\ZE.~^omGN^<7hmc_3b`9N|$n420֋{ŌRzn#&2#5̘ $j%тO\~]?/}Lj/oɚm8ݻY͢6̹/v[QnZ~ɸ)Ƕw ?3kCڈTHd^ِ9gk4<7"c8I5MmTm!sEKnot~XLJ)v!֒6>˜[f/Xs!ه$i;3ɗ0ʃeP?Ik#3Ç-eݘcd3;蹆df~ګ6hv/iN,Da`2Nv2I<7+͌s`MR0cF-an=<0#'9=gFT3SAutqY솯-F+whk}15&<ܳ5 Ot]\qi]Ka]\֭o4]/󽞛?)=46b9đ #|gMpbl1e$?N9g!KG-H? wa6_ ^PrrAK1~ҊzS'I?] ÍO6CM\4j+%[>V|F~ 6]qVşG;iG,}"371x:3f?3;0'Uf:{fs??#&s+oϭyf9ke_Ӗ?/^vPᙝ>zoGzUK:^Rge֌絗wx9OC{ĝI%+?ws/[Tp=F35n&KJnZ-~n+NgPo2ğ|jo8l~:Q^u"wwt4ǿ?է~ &x՝y*;]ijl縇4I?`FO e]^94E3'$1z2'z1SI<`~~ r/1^w~aOEyQ*/d~-^~;^M?w nym}$Ƀ{k"_5Յ-V|תJEy7soony]j#gR˫WPOF'4yGo0 SG}xP)}0Zc>Ғ{GܗGڃ䁌g"4ξȻ2+bENVdFڻ2)IqMh2V ; M^~-oЯyмi߭ۥJmhVP5?b{^ާ.>^0+}_mjm)[PH'>JcdMgv$6O:{/|ћ/;4Z?rfZۦɳH5p"3vĸt.oŏt'O>1l-=>PHz F/}^Nuu}뢼(J?/q~'>`.;Q,T<`ka>|&v[!4v>!|*=PV^ߞ9F0;2VI==ٟø2v]C1~O2 %>}J\{ Oȋ@'OT߿ o%4N7WXl9pU'zR!>y^ ::Wf³*y*",YiמR+/l땇SQ*]}i*+ƋӔ~㮼ΐ}w_+/^=n_?S=ל4R)׸}s~q2W3=?͗{48un a7b[8$jĂ2Vsvÿ*<7OUkaxݣy#{*k.r{" M&T,)!f -TԞ'~7/~%'k g$6Ƹ7oouT?~e8N~wxm6Z.wtpmXYYw ObrlĜ|~G>>f/x)#J!g40C.̐/mveퟸp>~i.p}DUk-֞*5_\ qX{^r;OUͶ~e{x;4h"2ORN)c܋ |_^~{b%|@./j ^IeFU\y#|b%n\W&h'# qWJ:f7 dJƇ> mrs.D~ c="Պ[o.7A_{hrbt<5ݫ=U|?UÕm7g !OWl93Hܲ.'00T;.ÜckY9 '&D8'2Gb'h'm/:\,tĞOiRt\֟jp/W~gK}x02ns7>Qjlk m"c O5Ճ2nT{Ɋ>-);q_ b2Q"RBKƆNBoqzޗaGTJCUՎ+5RjYlVeRjn҄y뒻cø5#TG]G֛3e; yA ^˂oS|B,Uroew b<*wUf`e6o:n"d<&;.?zfVۀ6{Z:@>CO}٦SbNs8FmgbC՟ObOPCeޟū/R/]J[oŧWX%;G(iݭvkA[Xt~yP,ǧeu >V֝I1TD䙨B*Cd`|X?Hw̛ 1 pdc]FfGs>\M7Uݥ>`@*}Uu⋶{F ⺝D|z qo[ʓ/w$~<_wn;kIbo[ec(Y 6,C/6_g$2 -֊ V˂1l!na=XX QLjj㌨.NAx+_tVniSXI) О9\6^c7}6KWqx xCتpZn_g_WiEAGe~URcr5|bv\lz잭<2}ʕ$i:ӈ/>Z(=s7<#:Sx."vwv3sħ%#z.k`.wj3{ߺ);MuJJ]x*^2=F8wZqoل @1@b-nڳW|7 P$l2j?2`9 ElrUipD1eԥ-dtBƦXhC ))\QeM5bsĈ$c)! \s䱆?M0[:ˮV<\z !U;X*{zh\zvMBLwFXzx +_w|P5^o82 ?)\Zf0yygeZ`OR/,b`0HY*+\OcmlF0KH*dhuӮ;5Ml$r$)4XAgLYH.m.n>5l"KO+[(+Sz: |]Ng?\v<\$|C#;G[o?x>yŝ~œ-먌/3qq^<&cdǖRq=⢋X; M-c'ѷN`rK#$blNLa;n-;-|/J֓ ?V> UŪs޸,|)w[hlE\v@UR_slj[wv׻fGƳSm6SB_)3[˜9f2l0cg0ffVX1+|Hl#_񌏗3$#Uv5؃/k?0dQT?nyb\3w0 fXa jخPY,n&tJ}V:\N7z¸{ p 5 \.gk.ٗCV]9U5&r)Oi 2fMref,^@F$'j;yZ 5p+TtLgfqz}>RFvGUEw 7k:;7>?ؑB!g hrÇT;n,@o%!ړw"󷓤KWrG Vm|@bj㇓Л5җ}?+ ;iMT=#{~qSY|rޟI5LiH9--7(:rEÂC/gO]XCR)9F0TE2y%gI5%eDfpͶb͙`ld1Sژl3ݚ1BE`=na/; {U?vq &˧ըNMfkRU˸\T돍UǨٸ1]% tHLγʷ9rgggs2e8`+V .Vb8)osL\Rf\l(heI4̸2 YD3~0y}`T)W晢O=qIRGӹ2`6 HR c8rCo.gTu>["=<lwp `=mcX_{{^ G/E7;졿6_v9`]Mņ%>l۽H̵#6kKMW1e%Ry1#$6X3\K;1X__nH4fv{!zRN> xq]= Q&Bzeb2[NZ>ϵ\$}{ny;x{$2D{/Ozg|>[?j[s'ѧΥF֮1`A22l1Ch),T/A%{NǁK]c 5bCtX&R|!sL`,G9C.z<$jH+#uYp*C(rD@$.<ENxV.! dr)ΐn0O)QNV~aXk,ۗ(|w~&6Ew?NhiW|)=G!o(QU%rgIC +F|*#>#ԺX١FPE-`Lx. dY&Jm/]=|$&9:oUa`r? ~)\D1WHlCm6_=@KuLQ/B轸Ѹ}4,3U0TB~EŤzľ)%3ReR\*j=N\fC &W MirAJM2NhlTwp }EԵ } Br30Cnv`PZ6K%tSLslJ Ud 2Č& ülS%TįR;yRX`ֻי͔tthu)Iz@>Ɇjt8jM<)s6!u/W%l:;v)#.vpG="~L,h%ש2 ؽ?z9x[;Z*j‹'*,U%fDC6:۔ǵ4񕉤`\eLxn 72uuKgV[k 7z 5gWGA[H3M[ )0_l˅k0'W`0 'U Н:Ndօwjn7eD'[YflX e(]Ym\p욏N3Lzuq}_b;km2|1t%5;FC@[st*X\ܞoUVxcs^}zc {^iyNYL B\9K柂bݙi\RMW⠣1ZD)7BA0s87|<]M|||b)ubY( ~Gs?9Y|} ,B?d.OW7 S7-t^_. Js2FX7u<^"y/ĺI+FѸJ>J\ke4Yɵؕ92!} fe 1r _zH]+W ` MyW^kMi<ǵ|6_*2 y1܊wm'yW:)ǜ{$^)ۂ(S"OONh'K/F'n+poqD ƅÏ2*1Bg.z{BF|z+hhg[I^v\sa$ev(N#1LV{c6 T]VG`kS-RgB[nQ-J+]a'C+$ YfT|/mv[$z W_;= ,n_w?&(cqw"X~ uueq|гD=Y]bņ܊T{7`k˻"փȯ;6KXo4Aue ,ycq a[J1|{'S(`.̀G܀H\OкGJh %ަ5Դtpq qb MZ@rvoH 0wyC.Tc8\%\g HMut$vc7홛eh\8΃k87xeN},4pNXu=# z1ޞį*D7M.⣓LnVJ`h`jaiJJu$ .7"뮷 >aW~N@;ke2"ڲ*1H%ǭM*ƖX@2e3MEʴ-Lu{JsC"rt3 +T8ҊQ;$4 *ucdqwg{_xN_ ~P<3}:MۆB@v>=zHY$fSaRi#v_T~@}[A,͕*VնI+m O=#i{Blc2B r7 A>.$Q/mB|.7T T{Pbݾ)bYu]Opu`W~H*ȵS;Y$K.Yu<+,$\b81PВ 7#LZt6W^k>ctM$r L`zSs):[$NT5zu! 4z'J͗`q+{2ȸ瓜)BcqS )g\{o82 ZG f}9TCWl (MREvV?Lhg z&Ӆn C$d5YWvVT~]s.}5$Q5T+uP[o Km&GqUǖYPn8?'p`K^_f5[H"U5Xg|HMwh}ܟO+wrpu1 #%=T1YXP'oFnVn B TQ+,5ޚjgV osf6aί;6~DX_T29O5*Fc1Qc<$D">irkc̴f~RtNhhqS}amBR=ջ Vz?OyLl:xxdV:u {oV ' }3;rRc5E7BʻGcju;ITˉL#qw}k)jg!ުm`R^-ʠdfUڧ#~h1.c)2s :k@m#Y&]AC;~T{>$s^ub0frMh;.yTퟬίzT v、=v,Izݮ}Jq+eT3r1#ֳ"BY%0&0g 1ʷ:rmSuh"lq`cOjVwbӅ9ЛvVJ!R"C;8%G~צh2Jg[Ɩ Fl*D&IvRuXh BCC׬R軪t]NШ:oy"}T`sS}uc-T#%GYɷn.n+nv'u={PWw?s`'qYT}x%XH [e䏹I2w9MYZ'C;O;KYIjgeCbXԖ#v|vG𽡿Z`*2?C[R y}*#4.rמB yIxX b OmO^v:ڕBKǺI|jv>.T7 ءW݉uG&kx}x1s/u:a}s`I񽛆jlsu[$Uw9#Tr̔B*$`{ L"@5&TY |M@Aƽ*+BVd$WȱRc4FFuvI6Ozi~g43C<:"TR=>CMjUh`}OSκOP䩍g\3Wzq>յ="R@ïwq]u\m'AzOks9 &҆S9pC^D6zṃNƢSkK-W"O)Na,ebG :lsmz[q /TK&G`9UĶy- #C4:–B'w8BsC==&tYb2\J)DF5`-kO fE}`ʣbMD]=߈quE=JbЬ}.WRZͮB5 I&5}cI מF!IMcS9H=z['tY.$WTi2K/YB9n[2Bj85 SV;h$uǣ?;FCHĜvjkv9oHC]wplrmН"sT#|eCw9Wlͅc{Sҡ{ʰSWWE<qh|I= _)lw$cI΁\M)꯮<4-s씺U<ɩ'n ~`*!P !Q*t 1΋\KzP-OYз%IT{f:s ,֢xhmz7|8C` B3Vb eCWW@Q^hRֶK&5w=+y5LEթɚC-7 }%G{kk>c&qڵ}ߏbj)6LO5Qg6 GjG2"ك5;}b󥚵{'PMshޒ欵'a!|dph` v=`[>L{-hL98~:|0S 6Ӗ;{BĿs-沛O:y:TS*۱e y2e HC~{&~ @ۿX,l8sKX,x{=5B%퐳}!c{¾v;|*7e1G%`O¡S$6Q*B4 UƁ~$U3jbǜѦO{թVThHn s>$G$1iD lX*h8}R/BAk py[Φ B zy G!lLjρ{TBh5CJ94 KwkH.]%ڍGq]O5{*{T+ښ=Z#U(Vo'.w]j|>lzO'c}ƭ}@G`pfu$I36QiWnrh y$lH)aUq5{eN:/7]t}z>T&2`WXVӉmO{(n9&V8q'-W[/U7>m^sՇ5{HH MXcbB5I>*$>$,q zS au:F*&>}]#57p/-W0JA.;$o͊9fԶ1Mc$Hs@O li*zw Y[P;##hgm%q̖y"4Aә cba+ -hsmV΢:X3!y(XA8sX9$׮OI 4ox9!z@Y$^Jr-:WtymQ'As^ǧ~W&B1h@-}$KGQMprcVv6՞$d5"}/m/|[1& W~TWAbW܆LS #c7:=$LڃIUV{y}rx?x?x?x?x?c8aia}熐gaӢRBfHMJ KvZHXN &eG q i﬙!䷓ogN4C4d1IeDX|7|Y.Ξ4ty f9%?7{칳g9 ̃/p8I 9=jyW+6>j^EkEz=|Ɗ؈(@I WPDLi_]q:͚7il?^ǏN.g'7|q+b:̚7o>g_s_d|y&Pi c  elAPpA,_bV(?5P4PFQ]`7UDf5)2fbKd8 ]a*O`V3>^rd4v"jIpX\\cae hPʈ4cUTY?Ehpl`-y%̗T0b!!s= MkEgpͩu$:K%脦/k]ؑ.MmY(tK O1Vk$R%cAv${FWnE[b9@)֖ӫ2tÒq]z&bbB\2r#>ҋQdi3RJ#cf̒BZe$1AB.шd2ɜ0:V|?P\~*-AH`>ƀҕ9Yhc֘)F *Й+-*tu\B $!.zUJl?d^BU?DZcIȷeCUSg'F"ݯbFA:S 2ړUcIFG"%e4㔿iTwz: ѡUu6 Sߋ.mڍfkퟤ/>Ͼn^ⓉD vr6,VڕҝcCV+S{#~YQcIN-?,y^(vӖ\T U_g5V5JS6ݚ@;H)[GvAWvQ"RnJ;МPq#:ؤ{uߠ¯XC| !&pEd_I%[O"RMThCJ#oV2/S1B!kvu6ƅfs S)|皁/RQk h; aA]ͰxC5ibJcP;(^J >Bcr:l |#ª|3t*jv8%$I ]bL^Jˬi57Mcg,AҬ9:ID"mZkdEr )vu?tjrQ^?Xn:px hѨ-%nYtCpF !'U5ǦNܦ sХ2t?!xoPщ*#R]D]lŵ;ǂج;N.|YK|+@ 򮮰1={= H}R9:O%46,JJ A^q\Pѕ B, ACҌSЖ@_d5_ZL тut~+-)`P!z0:Y QY&|b%T⺣ԕ&R\DH|)%s2yȌvjW&DRBh usA\Fw7Ϣy&Ȃvn9 |d$',631{A 4B}TVH7r;!%<.i2m(|f-9TفvfJ]e-1ZSᄮ^H+%üEM)m#=)=jbюƒm{_Շ' 2DвAAw"~gNKt(t9vU[QDqXHgėkAdX!lUʨu]-5uHm lF5%)⹴쪂|} ٢~ c|Ēǭk| u$^/.ˬ3|3"5|#owmm/?Aõ''ӮƤVbnPq݇ևKĆk.bBL?giSo8:Mj81ڕ|( $L'NtW+@FR稉mj@{Zg"$u4Xt8)Rv7d!_Lah7X br|*x ډ^kd/ov 7[lDt |%bD?`!@AbLC~Z Ri@()Ե''K^5hs&ɏ7HU uNZ(6j_Pl :9:HBJ(y(tII#5~@QP; QC /AK,r7RC3wZјHƗ~o!\>(tA^ r+R!qk y"Ty.2 8KD 09-S咂F;MHA n5S Jd&h'|*:GSn;@so09; #[qt3JX Z*!F8VԲlH hg:~TX1$&qdDer$Cm )E \gtUVB ߍAocH;uggI.l>6 dX1u@J-%!gF'"Si/;v=PJ|IeWr`Ȼ;Xڂ'_uV~4ANh ;R5q@P>Gj(PJkZ@>s I}, I₯?qWf~l0:H*1P+6OH4g$Ct-vd._YП%uu0i&X0I<|nT)AgթF EbBW9F|,-;IgLuȨ;H**/̥#?P3d~@%{\-m`)uT*-?*U D,"gXE* X{B. 0/,m]ݍKnixw[(v.P.FB^{<9?>5s?хwqԥ񒽎6pgORgz}4b w}<`=hrmaH+H]G7e3SL. L݀^fw8O|Q.ʤ5KWzDPj}gׁj38~6B+$l7 }|qQ`~t<lMqr<;8QTI,ԁW6y`A/o2&:QuK .n:`5\^WlDyg0LUs -`⫷щ۹؇S4q𭕠lCU ݀]r8'+~"׋Î#=LJ@Bq&zOur0{g6f _?=υx 1AOVsENe 1̺HFM[P9AboF&9<~]L3_R+ľʜGj?3 6PS)f W/3?_Jpc˟CN'9p"-}(A~))Cll?ݒ3+aZ/xº'#X 0Kح1ck#̎.y ɛ 0SM"5^_ 9/g9D:p#rl}<0: 03ĹtkUPa,bNk1{f;g@&$n*hL +qF5"(G4b$VDc`<'56ǮWlDa$6F A@RtNAz۶uBLs~80R6C0<! 1ǾK};EȆ(!BXM0*T~_HJE 8bsO`M[#~$ҧ-9Oy][: {Hs##a% ,;!Fyc؏9}KL\Uqiypx|B66ͪ3 <(EȐ~a`8TTJ6_JV.y\[$؅)Ή9e/2&x+ Lw󹿔jR,؉^Ez 1^('>gBm0ԁ:5鹁28^Nyܖb<lS@)f%N9?{Rq>,w~j5OPʦ 3POQA(0BDzPĘ-&}{oқ4Ӡvi񶑎.Q\]HS)B|e@B-uI6sMWK恳à%!J+TI@Kv!}!a>4e}p Jcv);5 % )nj`?*'8CݙH=1fCn\)Ie좕RO+:{ uW5΁gJ .I!w$jA_ ~TNu&] yx/wsʝq'8RBj arjPh,` S 3:0B.DP061FF& ρÐ'}ǂ_U: ڵEܾ*ZA+z*B zXwY_q̄z!eB^jԀc&`r%ެ)ѣPc]` 7(3BD)BA4"פ>ypoװ<6|:1?n{~,C[> yEPk3=|p i4GuS>*am ]e;?mȭ/<_Z[Q/^n3f۵MD)B*6(E01śRΟaB I+ZBe{:!W)EʘT%ޅ0LLV.p3q'\[ ~䜶JRϛ].=:O3vmPa#9/0bCa" <Ɠ)CruAФVˎ_JVY&2ukӧƃ} t1E!$U -C KH*ɡ$fFgr8KKt RH2,3PI۹6]lRJˈRč/=}qք<0{!z f7?? jmJ=GKM! 0s>|+C|84o%Y(>E8EяVךŗaAq5YV@T| ͪff]y`9^yгK)%J5;zc:Wܠ]Ȝ=0!)E0q ۤ8/?%U+en$X&\d2Af{b 5M&TjLhZH@B*n+R x(߻K@0Ї* m\|:) ,&jQ/2֣Q[P}og~.!I(# г?{ *?Tt6PD`H=Gv!u/gt `Yu'C I sO{#=Yl$h@Ύ-wZ*J[5{:Iоʎ\@jY^à쨯c@̲W/WQy#(ic>0X~Nau O(sSåir(E:9:{?69p<(OI$X 5/{l1!| jIc&U6as.BK"IrL@CNjwZ0c$`ɜAl 51e꒔&` B48Gܨ-<.{PWA|%kkBD?'9a03)͚`z2  8K9Ceg#sPe’ #-쓻L>zB:(f>U=IqqLΣΗ=Z(0R(/08r6>uy|nP;τjQ0cv>H8TŒ#-ٸK~xykNTz"kPeGKAImM&^ W\D9(B6T jtq1/J4_I_#a6C>!-jsQԑ (J4QwǹJO⿔" N<^LԳ eY U_%9wB64B[XI]vU;$g G k%D ;e"ym gDJCL M:ED\P#&S0m3Cg&Ʊp$A_"Ԟ(~Gq3P/6Pא (K4D}rP y_[Jf`f\N%1{[Dk@U pŬ8gX.E|0+Y BN y]\d??cے{9?̶:&)Cr4("GNeN^ސ'(uciLq`zbTe!xEÎٍxHXɼ;V^9ˈ+́V8B~ ;>k$9+`og z(uL_Bf|1ԅg}/C ?3&? Ik @=\)jG%!@7PO l{=*Q g&Gk8f;! L .m؟RjPW!krƯ T>[OԱ-[9̇j ޼lքZ(qy6瞦sVPK7_!ui|6`^ms/^1Qm|6<"o,_Ne}^i<Q%To@[$PS5w[% 3bm43Bs#>d2QxM}e $S&??>;I.2~e$̢@Mdvh``- ͎+B͘:8o3AsIeJ7YU2+\ DeSA RkAt5 LxFP%<`0'j4䥀A ĒKˠ8P<>+UYل*[Fpԅq$~%'.:P"Kl.PPPc%=~i HMzBwglpiѧJ7=)}p}.eӻt[.$.u 2(AsHd5ܠ)RK[dIQ)%ILQ->8YO1tB6H :j(c{.AMbZwB.P1"~.IДTt KsW3ڴM9`gRKI-̋^~ >r^0!W1T;ƝLFnIV8~vvMs{I 0{(e ]}e&)|3I~^ +/fܭFV#Z(IN9woWSY՘N,,b2>2[4 W$5`# 7Kw﵈[]"6bˀhB6y(j1w3IMjfw+ݮǤf^u\ӕD-V.=\; | )TJpHd&0"O5vB pw!Ο1.+)ܹ&kLZ'?Do2oL7+ѻL{ql'GI;yYQۊy'aJ5Se)O*d]l}/g[ԥL/ҒVm㕐+ϕ9N7k{q('P>GZ1{הi帜f1mq~V+6Ӧ궊;ԹkmN+=S?ҷLm sS=hH6Ie{͟,_aΦikQiRc^c.wh[_+j4_lz6ҨK/Q zT{5*Nav.J.sӐg@hHh>sOge${$7o:~~!WCQW#g_ԳbqIiI˷g=&]!g4tqy!L%Rz9 \-2[5{*Z ʔ 5m-ZvBrL-hȲZhٕ:Fڤ'228@銻tg^JEC6~\蘪P8!*͊}f׫o2mZBzsY i4<9${^TtwW.~zRy}-gpm\~!6>u~$A}of_t' 󄬵䒬흷Ԟ}ނAdRI۩O:.c]4ˠI|9ƥ^%Z!wMqNLdq5luE/>ԣ>F([Um$_WLYܩ<$]hcVRkwb;#IV)*u Ocpzu1&T_%(ń*ftv~z//z-T}xHJdoJ* -}F$1p{1]¥emLM9|?ODwR} ' J_~ǝRkiIUQIQϲ Yqyeɻ35'$ojNHNq/ڭW{=T>4sALZh ta~Ik4HS$l$i$jcZ f!,Ü*JT [2ت~ScSK^6Bެf^#jT{Vf/ʟݮ7߫4]i>hr˩'J_\QA6KwC~{b%-/T+.Ytz;hՄbUyK˽$%s]IżMQ[oğhJ=S{&6TCRᖬH #BGs$sl:sOܫ bl䏪lA7Ay5ڟDm%l~0k=jgJAt}4Ҳe֛g6O0+l%WL%9>zwּ6Ggjf v5+\t;Hb(}]w"Cd^Y~n_Nl2%NsD;MQ2l:s"ވVJ{vdl]GйxeӲG?vQV *W~c->VOc=3 7׻I;.z!cڏ > n"zEo[-gD.'{;EJJMs~1NZgٷ5<^_1)en~՗ݫN7%'Xuދ})~n j|ku?C-ّ=CU?]Xӂ|2.p`W6Kܻ256Sf"YR_zJ_#}rԬMVR$~BNQX** AU~JVS~O%^f%ag>|`{O,dO^ԟ:'}RpךL%| ѦSMN4]I,(LT UCox缶qjH޶(roH=[q-n;Aiz @rZ.~[vʼ[{Ejp15ͮ!<ƫ7¡.0,+,%VCX^upIùJېrj렊*uYMHq}hncXFkD@w̉hޗAj_GT'x}B7!{["yоG| UKza~c%geݍf/㽇&X,&#-1g;OROS#weAoݪ.nʼi{_cwވiS^XcRPo:5WkWc>, ȴRȤ2H h@^lRDxHs{vZJ_72/.r7/h+ i8)Ӥ{4Y"} g8&b)+Mq Oh) 'L(E}-76iHJ>r#Ѽ¼(0׺]9 5.15 '3dZ׃=|cbk\¯W:u!!ާϋc9E.v )8Ԗ!'nkWU^XK[K˪l]vS^RXWt|p1}  ?zzEzD:F`JL .x6 oh75}? híJl-7ҭ:r2[qYi '^T؅]r K+s SmVXoRv4Ki? {:VU\+v(􈰯:Yq.9PSV@ˮ' A _/~>ƒS)ǛYO.Q~a$*ߌyn6mϼ~7Ƶ.Ym㗼Q Ff$N4vLlԸƴw xJLp{Ll[Up_ӆ^{x^/_S?3ܷJO{'勓a3/5h\drס+-j5>|'*"9bBF[mCLO\նIj+\e+l+bG>xf]}yoYeWAUgN٦ZЄ#ovGqWeV]G[b6D׹xƋ?5НovҨ7ҿۿ 8f~`n!~LKEr"p¯{mLjypulٗ8khw:v;Σ* kr^Fz_ozD10OoNE!YgW7 BWMno/Dq8yվ!$|P]@|=nz_Vv6Q&}ӝoUڅꂃh*4w<2u>^4B4_WJh2RQORA6!矎ֈ럥| ~mzI;} ./iW7/TƽH=ňȇEN9^.r8kWΡCSJ"#ʽb'$ߑPû^4=^M.f&ZP-_iYT2U=cA[Ux4 G4RŸ_W=P"hӘ%hZ J*/? yBDLȴψw"廄滄=|v. #ޔ؇^㾶{?yS|r= sQQ;yf鋱Nį^0*`oF ^ o@V w` 6h8 UMXVn؋vyUN;aOwjLVGDAshnDŽ>/t ((س40lkoc<#fFi~kqj|&097W S?B| ^dlqg6_=ލo >vA>-SK\/y[EeӰّcbk"_X$a닑9/="_8}_0%)!L=+v36x-FVhޡoF?wȟlh\#Rw8Zt=.t (<ҜHeWb?VGDlgs +Ø:dZ'ԸXc|!8Hϵ ohhˡC+D]*Ң\"vx>%:-]KT-úBnIK^q52+RQ)c&_`M#ӡ}8Y8ch"Z~& ڞ2[q1wQ_żw/wK.)rN|Z[\X[y@Q{;o_c*׬/{:ϟ?' (BM4 8F,@Gc #iSwj.hˁWC4U\w-8@Lp) ~,3{p1=W&00e[ ›χ]9uSXw~v[dhޠ+1+/@ƮC3&oA'mBJS67cVVV5hh{S5{F,]bvUMyc_k|)o=.(uMpIvJnp/)qJkg:N~) QA+]ȏLKf)IÖI#VɣעiʻМi;\Ҡ ~] WN1/|">65%k|YSׯ]bu[H~;pV^c*Z#F>χ?2}T24szr1>a9mZBm:殷a4s͜Ki )4m1fM~J9Ռz,\8Q7Gl+|xc^:/v+wqH.vL`3xF'zyp~6t:t:9j>z)R%hmF'nCJɓv)/6Ghh7Z 9EG~+ހA>wTUZg1)>M%C4k ms`ij DE!s5 ɊfxkҰyhxmk>5Mk,hNG-:|-)j% ס>aUvSCJ#[K;cZb^;G zo>nƿo7&+*!sf`{?G?SPFJ#cn*7ףSws)4oap5hj6h-I-f [Ʃ?ĝ~.Jw yrRBSϤWiyy.3zǜi)yB]=CJ>~_0};&X 0"^q,}<4x.EN!9 OV7M5M5F|_NRYaTVZ9k۝|04GѫfԎ\z^ࣲgǫR_G|^589qCJO5vqMvIU a?ήX_l,<(|&=NɊ?!q^)6f`;i >͜fh 9Hi99Sm Ac\᧫k5&_8bpwoh\H;_b,m41!!s}bWsr{#Ԓuyy*}S8?`1z RIQPGgkb_NcF39gMy64s4KI)5F1hڃh+Z)JF*u+&i䖇ORYEZ{y |^VX[㧼=_|õG ')?k H B@>Mx+T-h,Y_Μ_!04Fs3hj Zq 4G+ŵ7=ghjFq7㹿F̨Ž6dŤṞ+"\jRJKmzm<"vچ!yJhT+9h' 3eU~~1ImI%{Ҧ ]JGo>pv ]5''KEσS qANX!.O:ۇ6s+wN~K}itt~7 |6G>+ 'Ds:'b- Ar~3tϻ< _uUχl*iWţ|·56<"^GF^,ϟٹ"$ژ1A;iȮ5/"c3[Kgק(a<mc$J6{ ~ҝR~Ve;&,<9,-ܥ* L j(z_uwƍ?)^*}^찂ƺMHO[ s0H63/HҕB&s1Ys:9BL%}+aךcZئ"Yc[of Z'=&&'>/)R2x>δ?b\sF&+L3sAd}à6{05=7Q/Ǥ5 &g.OJ&NG[6#V"ĕ7y}sТ輵TV6sG( ry&$I]Ŕl3ˬe䯋mK =jsڤٱ) >WthM< r%觥h čat? /@N :yI5onxo[ 950G5T`8\aaі Q9+ hhh\Kf ^F寡O#=d&z(pɊڵɝlLJz#Vv62~E\!U.u5jj'nޟ@mh}8-Gvg}],sUH<fݹ$&{;LNضMRΜDuОc'GZ:Npa<'fzA/zj-9N3ҷɌXHۦMY:Z":xjy%QIsԳ>Vn~Uz.SwJVBg,SCs5,=!4o+t^;tu oL91TӠ+sLRfݜoZʇ-€K(iIM4,2swnM]mx%0ARHnF篧ſ@etkZ9iU^ú&͢W2+)w,{gV\,˫:#گUPa^9E;,oД1*hpZ'M K!\jDNt/ F' suTn#!:͞h7Zѵoڂu؏k7Dmc#)”̵>*O[XAjqjI.mrec\k[tzy#_xN?oW^EN,\)&e's^Stg,ss,咮,H< 5U^8q?u5y=ᵌ"{:*4: FǛ:B 'vCDЇ4h a aXҲMtuːvL9L8$N158"cI ԱAR;EcA?P3BsMBSp޴jOHs.e27&<"A"9yqdߑ!4^+ȏy-)ױa.@[n),B^%N߬dӞ7VmUۺGzYF_ [Ÿ΢m&w u8-_L|ee\YB)^`_AD|lSi܅߱`׭\P}eH$9ȸ*ӱu[ظ&u>#'t]Նg *IOa\AhɢԅULP/;NۜkO 7hӏ{%kz2,TϺǵ޸ߕ82ϻe&9>G˕ecfHۀEClZL;?T(?3X}ځ-D:;9v=Xy7Yir<ƹݜ˄Wod-a/!/V3`Dp勺 h]Dk c&hj|aVMUilٍ {s#^#/\捜揙WF1|e4Gtg<'tS+{`HX0N{"c%oXz0bg]Zxy;(0|Ɓx%_Jʦw&g=bb*d{Ŕ"e^[-臝 [(Y## : V7Fse8}*h<6xh+aA;)?N㎯ sO:4:1qIƃSJ,$7dY]ZofsKižds@7W.L.{Bu+~s"Qfu'fR~Rw߮vm1]Mx.fZh5Z1y.8ںz-ڵk50Bv؆)[3A&E֡{ < \Җ jяzʥ4S4{l4 8C)8sUS@B*5W+ TbAAeregV[vnv{{?9N%N TծkZ{}ַu(O_u/|¹xdl`Ů1'VkC}Q|TyT3 ԅ< ޻"Ǻ@9~^[>_sm{sWT73:xkT7.i}̚;p񎒉_S2Y./~K%Mw bDbng`Z݌k̩֗%k9Rze{}?gziޭ?+߽|ϥgS^_ymλ-o3Wz7xy/}/{lxe,˨OR7<7 AϭGaN=c=wie.o|u_}gyxeHObi;ҿ慱O|gvo]l%迆|w>N<SoD?:M|h3̽lkW}}h,w?? vnz84MC)OˮĚ;^<玎a7,Wɔɷ)ѡ1[{uȚaAI9^v0u_܎.>=hZ7{^d1<ٷ[Ow;>x'=uYܾq?ײWB E9:}bT 7_.鞃\@Q5]DCoڽ;~Gk?X[־x5bmxl_'+r E`>|cQ.;~M-9ݛZ=lxz_9KO\XUyKFsҘo/ ?{[W14d'jT`Kp y=Gcjoo lxy |X901s_|?w7wFc,z^, =ϲ_Af&!<1?ta57P{7ywZ]}ӃVR93Xl:;U2vAnhVM?X=(u?0+^G)6 Eo8?9{>|~tߓ{/y_%}xZG~NG൯B(s}֮{,w{ыN츥3|\?_̳ŵ_v-:1[J0 \5]&w9W Pտ 1/q.;s{Z<}\tYKgVķ ,/ +|KwX҇т-x\_sUgxZ; :qq7p@ɡmcVϡyVXr*z9>p !./b3a!5gaR|p/=F lɻ=s 6Igc>d\3,3gV=~->ſ;2'C Ƨ9943P2 saNWo$= s)Sc) o8zMpq/]OR6twxy_?ś_;y7fP> O/r$~|.jw^ {'~pM~m͝kO(.zg `N'қw9RC3fVEAnFKю{i/no);mQ+ qK0c NE]770/TzO5W]}&־<s6MgcC{~,YW0mhilwr9U- n:7&ﺰvf `dX8V{`.!C tcXüHb.|uXWa;-Q <7#a"wE|GM{FS20f/}-`=%pn1)S+5 sN~n8zep`fL_⛿vΕ %z;FxȋgT`SQF.q*%S0/gHm{j߂-`x̥J8 7g+bxUC%0?W<:s RI69v&Q!cτ1t&fvǻvӧזv[U ],|` Nb2Gb9p;8syS3NDڇSNy߿n{~:絯93˿[0W`瓭N܈8 u+]^J0סwӟxymasBqGz_g?MbZGz`x`^7KucpG8j8fKD40OAsK^uEooF,Pǖ1\G3`~cCͱiJo;iPz򓙘?ֲ=ju+^aypG07dm[wJu(^r㙈M#8Y@?);p4 ώCo3&7.~uhϼ#!e7M)q-%;1o׷b_kk%XpĨo{Ah%lZXȋ+\ŘG>Ys&;W?v3C#唯勵U~Woͳ·1*t'6sk|6IoxZ y ~^[G.=xÐJjw |71|])䆣Bbr`ׇ7".+% x ``Kӽ=9מϪ~)irCp;IC_L ώ}__yrA 6=|\>IuÑO}bRkKWLa.e̮\?V6sד)7)s 9p3=`[K؋uk^{o˦3хq߃%U\Z아qkVEdGyX }^}O0๘=q {_O|=3M;Q1O0>kx8,[rf4x6<ψw9%Eg%;ػ~žMLֺ7?j>WVxm=D{H" z){2c%ӧ\ z ouՙpԋus+a_z:pfY-1*&,_>:Y AyG !lm qJP]Zsf]|(8 G(3(}Gb~nĀXlF}B6n]w&~tGrZ.Ƨ~z̽~SKNc".µro?M&,ل3tňU[DYavV3UCoͮİVadFl †.84_N v cX50k~th+OOĖu?4=noAO_2 nyOb^cGߞoGy=r_?iu~S_T0+ K~-{=}5a8v9_Ty+9 qp1<n"[rsϻk"^ A7eFZ`,z` >=,Z հG,ZW襘3n =;˟X;YSjK:WC)hp̵쯇y'>1d֝9 07~rq#iאZ65,zq;~ `.MGESV,RkF,7xEgs~RYәx1a|_qbGSKG1b& ; L8]wC0CE#U ;jYַ߳U\}Fyw$v-}1a(.4q,V s-YE{; }xտe?sus;tMޏn"ԉUKfO<S]lius^8=k?5ؼ4шMw\^e(?ŧ' mwC7vkl}ׅw=bi#̶dA_),x\f=M>P|pb(<7BXk^]~2_}gya:tOoC_6y8K6A2BdܛeV1zߑ~? 6-ks۶6ܺU]NxfwH.x!`t񩄽>x>|w&>5vU 럽.t vËmZ_0,b"6݉>߮I_p+1Y`IU06t;TRh{GgvK;2ÿ<ڒs#%*}%kJ|sO[rkqq_Nئwֿ0}q_f+"qi`ЈGv^Z7Ũ;:v\԰;g? ڋwAY5DY]DYv!v)3q-SC+_ ;;kΪ3bg4x ݎ6/bǯx2h X>w\ TP;Ox . 7z=CL KX㧮/C-+F>YT-}"$;枂˽jOhi?R9#TR=yS՞w}[Ơ߰]a  {(!^bsϜV[2sFm B. ozz&b,%]tM݊3pnx]g3#G D\Y?}b.kߞ@Ya~?4ag 'ί[25A#f þGߒ[ =p%aͯ=2.M9{NµŘKf9a~,S?#| Sxŏ]kn|ѧ~S/E8ͭI!|'c^cOn#OB;&R_0,Y4}>=qP;F-4& ~_MX2wo=m/T~涯1ox4 pN[R=_ps#3::֏e#w80€ 佣MG,k~0 }"Bo~q-|(U^˶e Z0P:a0ؠzhh Ek{!b橊>:+7O#ẗ?Cy!9&X+¨YbB7ZVAv;"uip<{>qyZvXi*'`_а{0ëezR+Ygl-@ q`^'^}O3={?g0u;XqVOݑ}gkoF_UsS}9ʰ(\c 47gsZ5g0=dC-? %_S>F|~ O !,OWhohv#s19ˢ/?71~:ѿף/u?tO]Gcu/^K(ELǯ@5mdH"CaXu5ώC꺕lx&]f[::rM?.yOc&Zr]~v;o{ rt0tczxhs]◡/>L=C W9x777<}-a#-|dn~q/DZ%-{ Ϯ_x3=X3t_rmPǚsNVQLw׻7&"gPPį L+$3,n #X-Ϗ}퉚'C}sƳg 1~7w'Z@thWx3>_H$>t>ڬ.K<{xOx.p߿e(S)6^Աؾ/g28E;چk&G.DL cc;ͺ}ش` 1/z2/t?K. ?qb0VOX_ 6KgO׈g6>?>Z7(w'7ӻ]b:@w܁5w_Bq@G_lݗ9Ϟ_\jOcxm])@*9ο!3;/Vw%+́90N3*pO,=1-6<9 ɽO_th˽\X!{4I/\s\g` MZ?3pyUAF|gC!t̚9nO Ѹ7.$`OЪY`r0oh VxxvšE{ghGnzsb/zp 1dJ`ә݄FqnG{dOyyE ءb#+ĊE?;B*g?A Dߎ8hv\ >m'?~/ZJ&B|Г_|Ƴo=s b^l$ĮõM|@Oϻ"n"byA\_d#oQ^խs9/&8oU4O7>5{7>h6TH 3RDL,dc0rgh/660CiNEVw=ѓ_ %n@cσ/NHxp;!YœE"?^i.UB DZcH&.l~^`T[Al@sGjZ;蔡G!gPJҳ [Xn/e#-3QcbE" ($4*mNb 6 S7Tp"h{K{A#y:EdHևDMV/1ONmSS<_`PFXʤL(O"c dE#,(*l~^q-=]_DE #>I3 X"+FLg"./ 7өZMR$o1o8^iM#%=kNҀߚE%?O."YIRt0\:iR!GK쒉5Yd:np]*.KPYJEsv):x. :d].KIwvɌ *58.E%>:TDgL"{viE&4Cb`˱?xV,=7,f`5<'|xkڙБõlFL;EVaI >xybu,C3$ ጖8 Nf~#ɖ؟c)Cp!dB70AL"|)JĂ'k2[lr0U@Ι╄şQ9J5FiIHtd+JFL$n0]_S uE-egrt^+ FvO"ۤm^)b0 ʊTKk-n.C@fsMDʩ_sg͑h$ʅzJ薅 J ЖFZ;/j M6XɶL$iBvhӏUf;IH3\hPX,T:68IJS!gHT:L|6ؠKZcD$]^glTn7j 79NO]ԚJBneYZ?h}vb3W,:&E49Q9 &V~\`{4"(21FPɡH* z;CJkP6/uI3ZbVj9TGm-< t V$:لtuEM bQ}[*RɃ@%6-sE8nkgy_]Ơ.%Xy{< ?u|>Q"Ţ#[/t]`ؤ ̓)4OK>-C9Q޷~!_UOQ gW'l,0 ?ȉaAܸ vY28NM= ,K$` 4qJ['z`g@G#kƂ3Ji EDCdx06pdŌ~!o=B;EȠPnED:"bVB"V)Yӎ+.R)d}b2VQK$R &3}vos33ޥbq"Q}f MF_<> p)˫hy«hFAZE˵8\Z\ǵ&cdfc MM^O%bXT:؂swM)-K7sGC~),gzu~Z~v_MӖmpRCJ*Ÿ&'iP_G]l>Ђ;̻ ?4SִEEtҊC%>Y4$8g#BN:Jg=D'zŢTTV8:Yl+`LV6dwZ]fqeC+f"٩ W^(yg OfXl\9{>#miHdĩjO+|lo endstream endobj 70 0 obj <>stream c"1rgh/>xym6MFl,6zd;~?vt'-IYPgk#KVe[ie?]eo r{%|cEɾ z֮^y.c+؀m2~wf XɦwLH`y{d/jOKȭN_ޕ7|IiMG18ԅĆH[S^^%8D(|%;e胿%c9 oM\H (d:]3N#]60LbOɜ kyfsY>a<3^ʝM {dS #TXke{?x[Y+\x\ Jqx$8`%)Q ) ;]3]̋ q噘Dh+ThJ.4SdԬJs+fKky V^ `+drmq Sm<6X:95iLĦǛT#c\gL/%cX4!1?֡^.ڝ ΃(EM`oHĚX$1+ |Vȹ˝zM3e~0\]-&[Wbtp  (O}FCAUy5~=Jڢd&(K躾;UcZqN19 Qak J2~K/yV*u6A#]JU*|P{~#LrQM+%ZU쩑 uLQR*#kLDu!8<i HigkJ*S]l%աޜu*"`ʊupYq>YixN,_b4&TAK:k/"A+yՒݞk 0ݩOvo2 :OW#8-d<ØF0 6eYeѝF8Ut?B,/O1; %z/HV&GAf ?t2)¡ŰKo)مV]iQtӠ"GPq2KU+$6<<ܿq,] >$ 8RQ%N j J(;0`P";EY˔ 44kIsnTy ["{ TUm4SȵY؍TK + S6E|:Jt9$.fቲ)(8uQ䘻 6!k]Ut l-ȪN6lY^C~kʃaڄlVQ R6@yՎ5(Pi=4O.waa!gn^7yT*'FjcMakB%[`i(_==^=򂹔#n5޷䎉Ah՜Te.iVap>hS4"lh&: Yhmk 3^/0TP{ܯLt+ImHK+H&֫JKZtI8$NJN]0vOyK`%9xXɸB/lxWv+h#gޡ:UcT?8wz;!@ʈ OPN@FP>@.utdbw'PO66Wwmy?-$㬣r]1fً#g{ymlGŲ/[r8q <<꫙]HfxÙѡ-V #l]'>),r4w836^tjD7_&&($ *ŜJ.Fn)zEb.Sh$[;c݂^PyZ<ғ:u?E"Z ],T]p@e2 :\LHu69.,P b(sx(Rl"fVR~#X@Y@)|S^&%z"\$Ȋt DD~BS`cB%NC ,0],!!uyED(H'* t 3/I0좬qM]P?0E(ivIp h ΂iSvKCaDA?`J)p/4HN.nv0rNЊD7;fe #6ytilG+iڞA ˸[5qVm~'Q6# Ě:H[[At.oC]￉{\C;GBAJ&HDأ OyөKAٝ;lXWB)yOFEy=\EBӰ$vd4:4%L#8GY_ݾlj[[ ュBJl Jkv\iwPZH:gMhPe<9_ᆮM2&Hݘ&teUEg[vSt`i{K]q 5C:˶4fLWPjѠ[`k@ i4m}B q 'քpbq 'Ԍ;,Ȑ04`iyt1׈3!U6V֞I٘x/eB)k@QK/55~]Ֆ+J`%SIKp5{G+=3 0N %:e9O?DzڹnXt( g5_^JxwrL8T{ANP%X sDi jcj`ah酢z^h%ߊT#*[U[oPB3m?Sp(R^KBּV/;y|y.=:U것r%zﳅ6 k5N^5Kں@.Ւ2N3 3fMkFeZ:Z9V%&l56[]k'bjvv2N -1LմeYˈ>i ӺiFV$dIkl̟\5H#N3455Ͷ20M">Zվ8ef("V5u-H'Zm]VgsniE]N]Q05;-՚20K3" վee("V5xu+gVSNڨƫ\5 Ҋ44G_Ydf=YXz-[Uee(byUnuv-Fjƭ|7Di џ:|[争a-$tH?8C,_d3JǾogg mYK6hVZBRIm-(@u*6@P8U Tl"DuQiAx#: A|"*K*v 喚e]FTܧQ>|Nf"JP5_LU]JMD%*St){dzSni'A1U:@DBýy/:[Zx|j\C%C uRBF<\X4T@%GrK g!A]ZXڇVluzy]Tڇ--8E$u{QW fb32X٦cc--<8 ^*y͛ Z<93\)~fsyܧZ֎qhyV > s.fZɹK`8rO<<+h$)3̹S4`2O9IV%*oY9LC`!poA;qʯ!5sxۇ^k{Y[8}uSAvpSm!tsxj> 5~sXڇP`W.d水Q¬ћ>D mO-Z9LCİ+zdu'y~}Ns <:UV`90_S;`HVCij:LSW$SYAΓ)dqRoE+ncb I5L`I+)"z+RyU166>OGaB00P~̝M珀T!, &  %AA'smKB>HvK)u h hDN0 cYJzBCQDL\h@9֙S0V<4a$[0B.(.{NF3o~S62$T":@hhg8) DM$s"Avk?+Mm[ONX,;<Ȍt%.N#)KM (ǔ7.P\pXB3"ah+(ъ*EІ6V 'ˊ,!JaKxs"KK}'Cp`u-ڡη*ܙ`i:Uj$wMsFT"F!O@*I:U E}T8{lcfaUHӂlG`C&g 8'ɮlQeHp02OM~%QҒ-U;6ǨʮReۗ a4y﹍$kW M!^illk]DVT*PZ'ti9,b%9:.ezCAyd 9Z "YVEaY:@,f̪J}]y2v-#Ȧ Wƕy֪3[m:b҉cWܮɑ-AP weq*S]@3; lQ vUDYy B0aWYvͽ l6LW ]Fgٍ$,p ^+*h;{<%^NPi+Y'cdgVQDil1kSӪ%{ǐ39'k]WNlRC2VeVx}3kw:]}0Vܻ٩H9 `P:`.0:Ɯ%KcO\ IڪVcSބzÞDओHrU\,tPmV;E`%N:(Vee _.sIbJUY? jس:/ܘv+rBҤ"ɚMBWly23")dI1KauMT,'q\dBUͼԬL擆 D%+̒͋9 N*\tfTw%38"'"?0@g(qIsNz]N68!{ӈDeHTe&tZS`9cDIevS++̛LڄV]AY1 tțPvRn8m l !#ғ. C,JE! UD08cM8Ļ@Mz G+[sm bLDIP} c .X@+e rP 'B- Ä-34ҩB y-,\}fx-<>J4֙>4vR\CE L>I7'?=އ it*zIki?6r 1ˋCf@)​KQ_sȿ,KZin631\ycG2&g eKCm<₋È /+D2\v4XWhc!SI@糃 {˷$jE]%9A.̟KfOxZF̃"CCj,ؒp-¿ B=~7Qа6 -b'>HPH/}I@ I. [bB`Bat H cxHtðe4EBk[LQ;='9)O+•(88ȣ Y! :H(gE|.(%ƀ$/,}ig孂A'y5$J:; R6h+S FgGUhEq'*lFS?I'v)&90 ]=&|T2fk2EXC;1Rگ䅫!qtA#(xA`'V1nC). s˲c(ZMjG {5%,4xSU;~H-<&)gN(c)t1SF@ǚSKiOoɚkL_M_j1dѣmjwev!WkZ# ݙ4|-h"mjanBE4TSY*H"OXp;G;;%Nq8yN^e +祄9y1͔w܇lƠD끛cPXG& qTlrޑ]8){`f$Ih?9ڃ)3H Mhf ĨHoុ[{hs# A֟Yf$fnnnov&l`1>尼dYQb Y,yuWޅ#d8[2l-~?K?bg9t ,H8.nIM(t̍zRR qj6cb|;&0 =Fؒʑ#7sf kX- tD_኿" Y tku7RʪʼMcV_Է%s)M)?u[@y ĎE+\L4u_R'0)Im3 :lݣOowEs R8IN)%x yEnf_z/=5Q~'=%KDrL,0=,r_C71&7pX"~?&/DgoezGk1su6n+omK|5sAz{Kt-LO$ƋHnznjqqGymo_!w8 9 r*BGǙD,C13\"G]c}CG1_`7bt1qNofb2.*qZc]8Q*%(^HR⊣Hi ,t=aLyBMsH!ba'/%4(:XK0|<ci&Dt=$&N9yLhTD2<1;ƴ9LD K[ !0e(R+,u4aAiC.X`OqF,` n,R }A.Y""QD`PEǢ{|C@,8 k0pħS!(308P@Ĉ8:9#);ٶD *B!2q, t[R8ZI H#&kW)*dqـVM<ǢT_i| {M|f `ICkqAEB7 u4Ʊ ;EP$jñfigȿi:J!' 8P`"LH0 $| c( P БnEBF$/1(1 _V40L4΁sXWUĐ1]Af?Q2`<(b>Nc8'P(Mtb%ƋxWQJ0x)< G4I (@gDM8J~8~Ƣ),̮Bw&#E*] ς` KI{J@cS-h?XnA-rc߃1,<?(Fb4 9hX8*1:-b4bi 08 VڪhaEc,%`XX8E -=B$tf& pYS>PTa$xEWb!TɸEb j 4L|L1\H ZYD`rEb$h_Pe) A  `݁ 5Sb((`,G O EH\J ȁ`~1UKցVμb= /ȠQ REPі/!KM8H&$4YԂ V15a 9 .3i&gN󀒪o"jQx$A$ ld`Y K2MC7u=:КIΠrt6IP 4Й 0 p&S/ɜPKBb 8t/l;]Yc6o"k]ؚ C x͸Dڑ&2iw4X= ^% pLC6$;>0Ah,fJ dk0& H KGXp,juul jB̒7IxYEp1s8eF%jLVBi&i6<ŁA 1,Frax4>.˓.FTn&TJ18q. @Bd L@oaethHFbK~qoZq3݋b"6ǷZJ)p3NZlw'tͥNmnpҼT~NJr[\>> 1%Y sqpCIqtK$t$%xpඃbB^] 9Tӭ/W( l-8wQUT D`bh+'-Phy?GGR fӝ@(WÏqZ":0:Ym n_dx, Q' t|F]m 1x,0"K f@ubR#s'ң x=¾/H9Š8":+ c/ j V8 f ϣ T:AYJ,|)99 9Efylqz0MUX13-T:p<%&`_l'/ ^k<*e$Fn$} @"0q(hg&!JAf |ja8*A`>AtC7#wquL*.jFP8ljW1vϢh%')';PX{ g$D ,^N0@ك.LCbf$)TnjI ǐ݃ 8`OQ7&LhƤ痼ƀ%<($ Ct9򃜡_Hm},f?#Aa/GU!Ѵ.NM>ɒC[KYd X%gQRK [ Vp_6 +~<,> F#vPrx^(.pZ^iۻ&jR![nf4+"ka{◷%L~xE=MIړ! xOok2/Eb3CUmQ~6hos(}\@0ԁ8 DK3`u-lI=q$ {ApI?߾n`^ 7+ds۟݉ z)Dd _~9MH =atԴ b$v--ПDv1 } Ԛ~{1\qhֿ A!ځ4XnS( ?goZȀ"j jc`fdlf?j]6R@҆04qA.y1dlnIg t] RiIX=!up3哿PHr/P?qvd+&g-ts,ҡ hsc4PZ <|6wsĸo9d&|%#/Zi9ܿX>.11AjAG9dj1rܺ, *EcV+:vchQ{8JG.l㧸Vrw}E ټ5(Ŭ_Fr٘0pkgrkGсWxn=D$N.N>C*(,7&2GyEuο211{J]N[7u}Gmg;̑J_`v!aͤ_#Z۰񩲎vƂ=ẎWgm^&}rD[0! (-C%-4 OMD3\U[b$EP-D e8L0:і(@coe"1WH3Ǒݵ'ⴍ("z}5rS pm1-g a-mq|5t}Ol2j-G߄1 0_LyRDܘ(\[3XM`}-(`UFֽrOsMQ.W.P!w}2]LM9R+r%/NYQhI5fA|lb(:U; Wx+-t' 2nZ8C׉^ ÛɵRmY_Uf%(ENH'-[>Z!kْJҠ@YYqB6dl3mhge))mxK~8:3o39e.=.g\lg՝߶?A,lE4ؿۃ3Y '*#ւ ih5Z`=Q]rʀ ICD8=mMA#y-ZwM pLc`y%o@nyKQ1v|k5kTBL(QQy8it1$` 6z({X4n;hB uC@EaiSɐƃûFש2AůSP5-64׈4z`f9"4Q66MwqփDv Z,,m~M. ו^rpuO\NLGD#2&niP32ǻ=yLqh`FMBb X>+!߰EyaGKgrL3 C0j%7[5n xPK8CN;ffN-45iOsIjG>/G HoFh1rB-؈ 鲍iio{|⃿zzwPvɗLjPz$gQ_|*]. /|n>$?r=pGZGB}gR'{#@z|iԓ ſXB]ė/)vbW|/vE={oKyaq;u:?j= 4MEZ{O_Ϻ7$Z 9:;{d(p|~G}>ج9$v)rWY#-d !_Ich3}1~ OnO^Si~}R;EsWcDtnB2uk{^R%OQD`8sҥ-u_JdN@:] 2cQϦ1w)`ULEEC_VB oavN(|DV˻ڷWm2>K͛7\Frчeuqg)qH <ݝhQ5{Y; nUBki OWַ44oen;ٛbypP&A(]5`],>v?I*=gXT<*bL ]~G`\Rs\˞0] b05r${{؃>i18`J!){k/9.Pɢ_V8wғDbHtP}aK$ h>{ߙdoa(Ji*>B?^Hn!D7MEy OC' (4GߝX^ 4}Ϥ*04yyP;яlcq՞H/IHSF.T56$yڥ){HSUSWTI>sʃ.Rg|{J#0ڛϾV\·ϼ+/u59k^+]OI|LK,5@o z?9 wlD]0 +8iHM0T ԕDe>` FIDCcXLRAt. Q D~v I ]ivF/f^Um]~џiTF[uJZڜ"M`<  6R#`BEaFV43/&ГF%>Bڰ< nLZ$Y=zjS N.AymH J9Z< f_*55<7<GtU )?}&M!bH!Ă]L#XOdJe>Dʙz0{sW2^\T Z,y=Jh'{0":};ɼ ̼ؼnq`x>CI#~KLfD~,T9rH7!{=.\fbI^P÷T416Zwb'xqA&DxtY9[$4s)bqGDbX|XBs!_*h<vgO~{SX% Ws8Jo{E0T;Rht .WJjG|pT/ޙ(.Wp/;U='o.dTEEE/VvMR݂OA+lYʈb6~YxZ fĝJܺ4EK7fRq*p}P/^6UB3ݜi<ŴSW7r%[/c*b Y-TleL`18쓏| '0WyC(r!2W1K!n㞋YgM+Mq[ABv J.4RFYDZ~ Ȥ#a~cI^_oO'{UT1H}ۑǾ޲ GYd^:6ʜSOEz~(>NzF}+q>᳻At٫g&P*_܀Fn#ӧ!2Bq+թ񛃽FmY`i&l[|-;G{ FPYg!A;4_ӷkno>WA`?=ܼVn!:}*ˆP8~{ fKflpv٬ 2VwEHxp3yy/'4mJ/Ћ}IfvgX${(/w'D0әol{@)޿2MTw%Ub,뮧x;{1ev>rҙ&?"t2YfrS< \-ˈIL^>0?04%zoxmf'CVTMfg }@1ǚqIb-d'' W$2dd+|峔|^1}MDYVïi* t@.dg&>߈hABjMx,kd;J@/W2ߏGMuXbAa;͂<͝- n(;|p;q^=SwF u#=($E*Bu6+ۥbʿ ΍.ӱe6x hH>p7Ǎx9>FX2hjF}>&b؄oG?h8a U{#%B9/ݑyq{TvCAHME(0C?R*e/ ;.(u#D,ȥol,TB"6M0%F:Nl<ȤBa Yq^yhֳǒG`ոMB>́Ւu򎇲uBa9ߌsRz+d*oe~dqC!&G蠗ܐ!Sy46GJT*+XyO_bJyIr~V[VEmTzR]ŀ,T5};; x:T_#o͠`u Gp8d A~VL#YHG7d| Y6vsX=] ۂϤ%fְYĻ`ҳDŽ&+}W&r_."d ۺ$6p 0a,f2J]͎F}'AGysȆ&W c!FA<9,D7H N4oJO⦋yؘ1&΁0RRF0sy860hyCd'rtXE.wwrO|嗢L}-TuQuP܂9_(&D'iz׉Cf)TXXtU0b Dž .\>7^̔RŔ"d6}A8p>`I<{ .H۹I2:6!0⵽(,z(Ƌ8x]sjޒf#ٿes|eFX+3~}] ({?70ѽ.̉(~:kJͲTbJR1rM餂j..P#=*E +d/D`t8]퀮ZB_*&&CdO#k^>}¦VzM˝}~|zXa_-p^B{j?s{6D@5)jj'Dž~s`7 uBG54ꃽ2Pt7s[Usl18!oLDbĤ#'*]V) ~WLzŽS/^( g@Pr%n0$ێp8>dKM%@` kfV+t/q[|K|ދXïٛ^gP_i-RX5nSC|s2es 7ȐjhˠykmNno\>XX`dʲkD؂Rʈ-&9t=Nvz1*l..N/ĕX+2loa&c#BN!d7hGnuCAm' }g]tjho|ݧךNT hS\; YsD }h3FŽǭ oڂ1ټ?z/C|驌@>YjӹrK^hji"xࢭ;,p5}%:,/FZ@@(ĤVK+yo!lg2$rqqx't$iatR(cT[S6/,U zr[9d'#Othx.r#*'~s>dK*Qv%}ڳ Vn\0/߈jzZ %4HMāN[t.ﶛyJOU@bbjvTT=Ys'ۤAgCDՍ%@ub|ZR}o HX "͍ $7l ܳ'BZsᦷAi Br= QaBLrj,s4"['DڔYxHZJ؏/FVZQK]X3p:(۞ ; vqnkx>1g~girCzmyڅy{bSlT[Rm>SnOȰHa~@&psXFԖ6P qNF1;FGkTwem3%#%!914ΞnwqWUjH-|EoՁI- j>bLxT"Sń#ZO#c,wб'Kű H:etNs_QKucsȂ]ITNHO@/eU~r86:ah*QٙƶY0:2LB%5i1ÖܩT }KaɈqeP^h1m%&s٤bd};m˥#=,xikcT1Q ~p2 FqGM̦zR{3w JTif(|9⸑(D\3ĦbXwuP#dzw4өv&Z,C[[!GvJX$0J@>SzshGu4|sp8R>EPEVf?_Wxչꮸ DcX(fXKR'N'RAU B;rҜD' FCalU;4l]igN^t֙EMSM,8K;ZnK=/6;յGgCjg :s8h1vN-:3((Z&Zvpz.EFbVLwESqIsi`Z߲To[LB"ۅշ6Wa$23Hg*9ޜn[$XfŇWNC-Hö|D[IdH;ڪ ;bD[ڛpQu(׌}QS Kۙv30Xa8+r/:ӡbS$k =džlԪ3L2 S2lMöK @R+NoHX0Zw Ǽ? A8截]Or1DS#9Ul̶nIj .:9.z?pw FScf{*цAV]홝! ݴiʳtEñ"$TX;`BZٽVW[t;xc,JF)iކatv~Қk_֟ۿ+Dž[~Ї*JmjAy 2W-B,&Qr\o3ګz)f&:T 9HR,}If)qM. _ma 9o͋-\uh{X[[?QH];BEIo΢oL4udW7= {}B%6i)8z'xz`?A<} =Gߞ'ekCRcW3;< {8ȍq)Oi&E1w_U6C}f+Its}D~6* R5ߋ÷Gكh~zs[J_ Yj3Qdf-43OTjyBz Q48O҉-{Ao/LW‡猟 XEf*Oq3*.%B< xc4s)fkE ]h$0,^f6RR݃fh T$aL42Û<1A9 +`t1;/[ 6w 1 Rwi{cn*}t*PhhKb1%rߴX2ԺkWV0T0.bC#r/ZZ 5y֏r?Ha=t}OXP: q0:̒m`M*JZsqo|fIQρSonfOaJT 2SVc/詑yioʍkt,/~jݿ<'D+6s}N/r#tIٷ-hO9hՙNT4|$Te_zD{{07< VG~sŰ x0jd0@ t<>@#Bݍ~vx==7 BM^+c\&~IQ5ԝkhɀe\! `fjȀ˞pe\!* YZ)jvZG*sM@jPo`5C<&9\=ԝ'e P] ;M?heL%-bCUZ72`dhZ9h7üA 0|MeŢkTnw+isy1 mO4j w>"Ȳ;U,/_^σ ur-&WU)/#ѺIz"\'Ǯ ,N<W 5au*tq_@,b2wE|+MkHSg}8BHBy H nDm<@s8tiff-tGHT3#$᭨?o}֜F?Z96͹4e|Z!"iD/͓6nܛ>-.M֞bIz =#?\AzWW{czP38RH`y-ŗYY%)z.Wdc̈́|˹-:XǓu%q*`̀N8j5@l&,4_ʲHl;JL)!_/3ҞsڲHo861L1qfl@A`gbM >5L {+]ٲ1DVRhSPS$=-첑`$ B[M֨K5%4䞜GJX⤡c!!۵B+-^7sz4Xo GC'C4W(aPҨUvQe:93 D7V%^5LMhrLf7& Z2EZ.Z|ڋ=ًG8E۱+\,y-,}e֣] 7XnNW|]w):>feXQW􊭢=_N-\qt o"xf\+ G9ؽ$ 'I v;3rW.rINs(H(a6_}HzFd$bQa,Ԛ#mUk 9K ~q8Y(z8iU-N/j&yU"i@P+ޝv:fOndԁA[Q0՟({˴q03suxw CC[} ]HA)F}Ȟ-\?T"n9J6 @b0,'\ $SF~R4E69l;>֋i+B;&Eoz16Z7KAlVV?V'ftВ7ܘzNH[ & F,!b/fyBfkt Pyp;n2 Ci?^nsGJFd^2vD6"s|!g̐H%Uz,έ-,Օ-%iۺ6Y6Ru)q>KUOCWk^BFNiGY^cב+q^7f'OӏAxoM/1 ^FsB].9ͅ~,#D4{Fi{j#)ֹxoݫ{ֿZ߈oɸsX\#6% q)N9R?>G2/KK0 ^-V5i@I_I+'/Ou\f4q@̖]~bzbju5%DS57ƵgxRSH#4Bי/Bj/ۅqBm^nC[m,'Uյ'Gl2}I E&Ǐb5BB75阛=@ez5t˛r>Z>EI]g_˷O@9TO%ں||[r|3#mkq|[j||@9}-".3VD|&*DD4b ?,*$ا铲qvU>u[?L5ِdpNua觤:a:fSfPyliN! 6U+33">#J » Ͱ2Uu֍Exos muℲSXtb_Z45]!WLHPWNhaڻ/A5wK ?,sH$p .Ҧ#pO K12z3)sn" r@oY\w`7ܬdVJ!W{mܖSb,U@vcMM[\#*fjhqӳ\ԣ}Os3[LXhe9kmi~rfy|j'{UUUbu粝~չBo5 [`Jt[^-;'2L9&!Yh58MɋKyT Owm˕yfڕU+kv{PeVky'qWO]2Lm,Ř6Vg;ъ:hyDydOD\Tm:Wͦ+p8o}!n-%Buڛ#WM)-b )pkfܛnz@oHqS\$9퇠^Ž,#׵69P+|Hk^(z/ܸ\a\I_pi=&}Ƿ\?-ʳPk.ʳ 婑[ŷ?*ʳ&FV=-<%Z?.3MYQŨ&Xr.6VV/s.7}P0FQo.dtWFlB.@ھ@ JǭP\YOrJGOjCfb[@Xkd"\(t>9/ gIqs>]f cþ>la 17Vطv]aobkU-]_gVGo̻&S7TgPa:>>>]f3}f37Xg>3$0-3-^ط<}Gj>TM,^otD1@4¾Ո¾3/ʊ`}"T m-p4j>aN. TaE x w6Pg6K[e[V3za~mTI ȱ%cI ̆er*}GC /)~}:Eg7 J*ԨlSע.Ը/e096z*wE8xoI=0=z;}ij8 \QNz2KwM*'xLMV+$ J6Od=:4徧lSN@7zo(7 -V/3nq=mH?vm`wMV7Wqr(@[0ojiUEMuVɘj,ݯ`TO 1ӞhZA.a.pܔ4mwE,W5Gz臚ͅ{k?,T`UcVunX?4_^#XhB_Eˎ3VCҿ=LýmWƱ}I*o2tS1nZ_a(| I8Kfny"Coچnr,RKֽM^x7wO0@g7TytݶoZZ:'HipGkm88H_e/7} !fCa2\PmS?¿\oK-ZoŒ&{V4zRR꿟.#f:Lm>iVb%llsͽ[⺭wiL[lgNkUokk8K'ͽ) ]վ!颣ENԑvYLիC&sݭǤeŌNY.+fIDH7tzt͈ wԛB*wDshsW]T;S1YpZJ[1-YU:ѐAl(efr=$V͇YG;}m>쪐]:iYwAKB~\w۴"n݁^i΃e:BftP*ބ(R ,<7ǢV|.s*mLE?\"/cv:|2Kyl.JInzwtQGKӒ@jgbUh]8)u#PxՌP P!jPj.P5rч^Ȣ qXw:l 5:Y_grF7'BđiL͍%TsPz]@j⩬A2MGdݽFWK kT4cG>\04.5g3ɃPVpi14*SrFw!y iv1S1TyM$N&Y[,,`k橰z▹6{=+$\ړJoW甸ByS2#Wi]i A4BW9`ءRf N[JY*i`&z,fpNlpq_ktmyiܺ , n-l^kap݆i0k㈴Qtt]ñ$q'u m"sn34Q\\jw'lbc1di4\=x5tn}9 ]j^dguvҞrw1Ƀ|6֩ΰeu`z{SD WmИ- BZ*y(rܛubvmEˁ׵Imh+ͱ6i%9t~Q;-U1 ͪ%\$ 0bIzD8DSDeD[Vg+ItKR+$m=KOڪ$m=-vȥ`*ټXJi 9tѻ3csQ Xu;<ŏ(_oϼh 0U_;f;ӐGDPE5KQ2zi!GisI{Xûl]eS*HFL/P{d/TKʨѤ613AhZZyP ^=,"IO MЦFߋC[_[i|$|F0ڤ+{J6JĢg4*ѕky3 0㓲هi$"99?q֐-v}lZB̒d#tun<;B">䴯rۥY2t]^Վ.sy}O(Tq+SS$l" ¢UĭLũfeF/ݷdÈr3 r볜}bW|+JӈΑ/-HR\R̶GwM|JRM'Өg#3tC_){5CS@*9<R o98 w%:wSŤ$ʵ0S=H9@sx.i5^#V~Yk*֮"IrAI+\M뜑~kEӐFuQR|gX*h}򙢃ZG:EU_^ J1D}{8a4/yLa:&كv~i`IVIX'H?}[D}6i&[l p+$mȎ~XC `XA/}vjҟ2"' ak<2gS$Z`rP"˱Y:itMdV[X-6؀[1m0Li $$)`Ǜ@3܁L 0#yk߈!mUbԅ@Ot}L<qKͺtQfl|VٸI>Uz9 'iœ䴟1iw5994}Eg.ys@zf>X:P溏曋uk@gnB;$SjѸfy#5g9^XRsK:wy 5bX쬷Fww](ifd*-|kJڒH, 411!:ݩ%6.vK$,Eg{!<#uDg?? cd$} ݖa|>xӚ'xp)YfEA*iz2()(Zϣ1%Lr<;IEm;V-BdmyK;&(|g帲C0m+7hɴn9F=_r,__~s]j/SK0Wg KG-Ri#/#pԮѻG!GMB+QG)@D8;M4|"09 gSw}3QaB SFaf >`=<_l.ƏrwfpRM5CW `$ҏ%moUrS ;J0L8(^*ihsL2~~lRe*_%҈RUEMJN[G~j] VdԀE@]8NLgpGJ9pUEi)TJ"{6`*w\E>VvXA?b6sO(ܞ+"ʞJ"4'x ʃ|w=ޞ(NUUJU7q\i}װu"LhBqBQrʣU@YlOiԺ e}[X|( wE˺N(^t񉖧Y Dv#mo2~.ބMv7t}4OZ77) "THҷы,; /'Fwm/u1hؐ#{cAo[FxzB)[o73:I=fPa|\6{H$ȝT{d}ǣ .61{Ol%m^vq*(P_"Rs+큱GO1['^X(k2R* w:gmZHw?]kf!(.,u2b a]}2IH`3=5}z:<]zv@JId/ҌGP9M=#_Ut $IM|،=!O!;r|w_bZ]tYpeΘ dac6UB*gaw@nw,0biM1k5%]ԹK+(j/f|%BV^\1 Ί6V8*SE{{W`/oSu/ ޿h+Z}w{fwfWW,m]N۷{[I;q5}7EVtMqȊ۽_U囍+Imyfik,ןeN/6?:ͮZn>CT1i|ˬ܇YyYis1+д`VjZ#fš,VrĬd4l%GJe1aV<ʢ?l%GP<0+Y(2fe8@-7p'fVrĬ<6.fLa+9bVY x4dH>ΰ+''E^+.9‚|/ųbz{ǮRJ~ŝ'[bC\H:aՅnZ yGUr']oTI#K)MoL*/feؙ<[矮ݸD%z}PVqvKKdݭ fFsà- E7z罀J{y7K9ӌCQ_,7_V^no4ݜPJOftYSyJru*^$6+SAjvQf.OXtGgt,a)hiӝ9\}ݏQ,U ӘWuwU.Pm-M^|$qON'/yfD) v/寪R_mWMvSmQE_*U> Oo^wd}e~n~ƧggN5y`̟TCe״n%دEe{څ7q3j<ۛZmh)8)byM.v"{[u8% .i3T- *铭xOIs72 ӧ &d<igh4fu!\\2ﺄ •_١68}Jʣao~T>Mӫ~~MZ۴fMxEIʑȓ܉% Z( LJH[̖7Iv5}RZkw6gF]YFa^:Kf7rz9 sڇ W]w\P ϥhpqxQXJUx@&REJU׈;jKDr5pET'sLl(L(ɵJG(TM@eF шxEQ7')-W\pmQ h T":dTx*)9'huQޙS-bh6Fh)Mz]Ü/%d9 "vxjՉmŎ!q8B =(_q VFNj`b% KB0h 3H5!,ў DA,*i %"`BGЌJ*Rb+%1TWO$jQ<ᶟJk#TiB4)p0AfT [NQA'riF M`0F00esۋ* X˹PzIQ,Tcf!~~X* =P?G0@DDQC!m)XɰJ e/DJŠފ =Da>K N=8a #101}:a$!:(1j$3/@ -Mhiἳ0m7hq"7Ѭ2X PX"`)%HH0Ô`*QYvHA}( "P"ckO8/ZkeVV*ACRB)TJq~Qo1I50 {mM4FW+n Id c?I[8PpmL|P^D= 0S{HN$ZF&PAx,(|d:gq`-ҚKD05pma6؎L5Ga)(@NDQ)C]#A'a:|jT İC&4DqEf 7Ce͐7_/h&0QSQ1`:p 5V5%fZ*?L4^H$3bE?<T荆װ>k;+cjTK C2E50R6NJ`=KNf1F(@p(xn Gf40~>NH> endobj 29 0 obj <> endobj 37 0 obj [/View/Design] endobj 38 0 obj <>>> endobj 15 0 obj [/View/Design] endobj 16 0 obj <>>> endobj 52 0 obj [51 0 R] endobj 71 0 obj <> endobj xref 0 72 0000000004 65535 f 0000000016 00000 n 0000000173 00000 n 0000044987 00000 n 0000000005 00000 f 0000000007 00000 f 0000376207 00000 n 0000000009 00000 f 0000045038 00000 n 0000000010 00000 f 0000000011 00000 f 0000000012 00000 f 0000000013 00000 f 0000000014 00000 f 0000000017 00000 f 0000376466 00000 n 0000376497 00000 n 0000000018 00000 f 0000000019 00000 f 0000000020 00000 f 0000000021 00000 f 0000000022 00000 f 0000000023 00000 f 0000000024 00000 f 0000000025 00000 f 0000000026 00000 f 0000000027 00000 f 0000000000 00000 f 0000000000 00000 f 0000376278 00000 n 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000376350 00000 n 0000376381 00000 n 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000000000 00000 f 0000046864 00000 n 0000046676 00000 n 0000376582 00000 n 0000045394 00000 n 0000051735 00000 n 0000051622 00000 n 0000045941 00000 n 0000046114 00000 n 0000046162 00000 n 0000046748 00000 n 0000046779 00000 n 0000047036 00000 n 0000047305 00000 n 0000051809 00000 n 0000052071 00000 n 0000053374 00000 n 0000073302 00000 n 0000138891 00000 n 0000204480 00000 n 0000270069 00000 n 0000335658 00000 n 0000376607 00000 n trailer <]>> startxref 376814 %%EOF Turing-0.11-beta/src/media/icon.icns000066400000000000000000001272561331472757200173200ustar00rootroot00000000000000icnsic12!PNG  IHDR@@% sRGBIDAThZMHTQvt1 lՔB[KseP@w(eT;BB@HWARaUCh?}˛7s}fx|Żr' co f-YV}\9|F?Ɠ4tˏOӐ@"^5ۦ;Ր@mu> -@OteJjfP8T3G@hB#-כW2!hG`hQ!څ7*sBT]G;_eO7hH?klr.*N O;Z%vGNh)#I dx10O[,@$*Y [-&o]b8w^ލ>$vk74,@/pNGEA ZV< }&B^,ֆkUyH"<~ %k+`7d&Z3`$<~n1-{lA{4:k= :0BҶ`c`Aߨآ*]eڅXp=Jh)f6 aw+%XAp8!@p'ӦDH8f{ϋ[>ۏX#X`EG,jylCk{*Y:yX `_k  ;*~r2OA:/K< dpz:B- "@BVQH0M.c Kr VZ̅ZB2zbJ0c6 v|^Hf )T`@lYB-<`tPL/#@&h@:!ߑc f d{G袒@x'UM:oBjׂjz$w#'UmTԙb7cP0"v$Jh(%86;=f`\i%m&Z؜4x bIENDB`ic07 PNG  IHDRL\sRGB IDATx]KlUEꣅtS`LW%eE1n&.Hti qAKt% k@cRDjAyLNuΝ9LӔsse'>S~.+8PhY 9E -sZ@ (́/2f^՗=@-Of.G"7<1P Y`i9z(mW" p}ǕcЕFmxV ƽE("5`w̧w짂kY h ! =gHvѭG=>`6SLin ]_r >*PRuxrC3iY9O_ClEh^4@<= @9 };V']5_ǯo~_;jGo{::5Es+S+M])]ǐdѾ 8> Eψ Μ{$.8Z`7~_IYB퇧c&t{h")؉ 6 lO:ӆ;8iT-'icH?:a7` ]zȶ'H"`Q"Cqu1`*g/9ju9&Q0ǿǘn`Ðǀ_d).W0© -_hķp<~ԼE` ,2Rl*JJuЀג9$:p꓄oޚ $j*DSƜC@e|օ25ܸ!l:aZ| K<⋠a P/.J78i ۆ-H A?;&];@-ͨL Y9PCë:HKO*psz1uPחp@UR7W 1YCM 3wZ$-PSl؛6b:)s*FTnGpkz?dyiyD.dCZ0"'2ܚ)jpaGbplyP\3 1Z?A X> k/#@m`WKDcu[-\ d Fi}vm}}2)T,UwD4I-ƙLR9ԙx|48wj%V 7M"I$BmWTrlQZ`wG49g`~d_H_@fm[7:=a^jlPpFg _DD=b*CG@-sQh` Oa4eC]+Q0[_}hVb3j$: @xM(Rt٪1E+i=! vC@QڋsxAnxFF&F`n[}X4A"d`3`Kb3֯J2s|=}Pa|׶d*`u}W8\W8p.PY$XQk`D2S71 Vp ) eoeƠwb419#7| _銝=)kV0Ҋf8 vZw)Io52hAj" %qT{<d"zɜpN 0->d>!PND7};_p! 1?iU Z>wާ` @22TZ}Ŝxs8l~< WlB'-r`>ym."Qex8PegZd˔xOȐSh} Jh5\tqL@&F)8Ѿe >dj/dbo3 [L@&F)8Ѿe >dj/dbo3N ߁^7IENDB`ic13‰PNG  IHDR?1sRGBtIDATx]=]6Q$sG (!HAw1@tHDA4(D SB (+H_ 1w3z2|3{>DU*8&ԃ ~ OPFh)< @h$uiH“ԁ ~ OPFh)< @h$uiH“ԁ ~ OPFh)< @h$uiHgNUsͷ?Tl 'Pv8 + p @ؒ3tc._N|fPcH7-cX 0 8&Lh'v PC:mOpvhP_lE'ԗ,S<+$ P+-hC{> ^!<#I@w%0݂f8$gI QnI3Ag7fB4JZO!@&E)o8}=`@M^Iut# ?oBORBL PM]NgzIJt7@SCwa04I3!nd.'U^@=X 7]:M9r .ʿR,-WK1RR&CtB%R!,B&Bwa,lƜ tA a9wH$fpY4~Fudr.$@fz$P?֬ ={tA IQ|%y ]k % R:+@Yh4p'<. &EPTp#B@qMnW 'V w *&ݷA:3=AfTMwạ'< x&wVmY3;IxԬMDsE Pz}_S3@k1p<YTw w{@y7Y$0+JN_?(]U% P%ڛ]-& .锷s^ߺcR={#1s_|G<%@80%@u}θyTj}RNhrOVejw} ԐU2oMVV42'X}qT&7?(pnK+#=)h맏v ÁL .ehKOOZ+_t7\bFނx^g5&̃"j5@vfD? d8~$ ),9AWOy~'IMP,I?( 34jqH]n" q෧vsbTCu'/?sdNy<<5Jɝ.9P ߅,тE!0`?Y>gTP?#fvd7{n@?F^u@}u9ag?M'όZ Af*7 WtA: M?}q󹂐W?}m ܇{ma0N3fPzԶ:KW>W@kʍ~}_hFBz_|%WD?P-IU"$Oea{ubKN>uG_T%<#Ph+Y%ac[d/ P] R?޼&5|ٖܲB՘qs0u- "B@@A]x#.8ԣݓ|p<4h^~p܎-o$uϤ*CW2}4[8fcmS$}EB.fȰ~&nY6'Pwu1?B.l7@H2YB."fJ!PAő -Μ۱C~(qF `sKf|bdG۔l< sj[^ho۞ϸ' f[ @ ;i(ڟSE`)?bh~WQ(da~Y\U Ut\5 Zjh|0Q> b#V- .%@|7.fQG .s7FRD:q@TMXk7G|*vu߽kN/x5*o9ிvJ 6C$!G+3'dS|F֏Amå&;ډd;\r(& $#B#l@2E)3f&8@qBշNAcb~@|Q"1#(k BYS5#$-L3`pߝG[a7Uz-̠[9Y䔓w'į*sx~?K |x݄t-Na02y~_Ng#!@eG( !,'=)gIwLHbu nR7/ VMfpBf7Du Y֔(JV~o9}T%|Fmf<͔"Co*`) ƷDQOBWT`ĔӪWƧV-cE@گ+CT#f^F+(ɟ ͷXh?n:*Y{E‰%<('"% ${(#O@K]( V'i?՞/|=BcF62n+N3M80cfR\ZT*Oe6}FU Ch鈰K*- `؛録B.-@aLL <BβL/ahD痉aXG 22 !3r%R A(<\> dޖ3uAce|%i!fHQ?XIrWUH^<02(A!}u++pE)sE /M#qu5}AhWXA$ DPS`#1ۯ@ |w0!M+HN42-P"`щcr8PUN a`@; WXnV!PtfO-RxRa2~B_mw6g0"im3|+!=N:켚r=7gd}SHFp $*|'X"+20,Ec3BfYQ8oVt/0#"9GXzLx4<׉Zk`?!whY'><~{)6@HO,8 dGUo]u,?XA0e"_u`D aj tyXa B|KM@qA/h +m55v:3@#IS)s)JM%0dg!@ګP x+:^\[Ce"R04"\E*dPTCX>tr_X>솰&PFXAw  NpBFf5@Nzqru$ǛMMh^lj73jGexg`^|뚛7j:x/y St/Spi Xqr펄KDU*8&ԃ ~ OPFh)< @h$uiH“ԁ ~ OPFh)< @h$uiH“ԁ ~ OPFh)< @h$uiHgNUsͷ?Tl 'Pv8 + p @ؒ3tc._N|fPcH7-cX 0 8&Lh'v PC:mOpvhP_lE'ԗ,S<+$ P+-hC{> ^!<#I@w%0݂f8$gI QnI3Ag7fB4JZO!@&E)o8}=`@M^Iut# ?oBORBL PM]NgzIJt7@SCwa04I3!nd.'U^@=X 7]:M9r .ʿR,-WK1RR&CtB%R!,B&Bwa,lƜ tA a9wH$fpY4~Fudr.$@fz$P?֬ ={tA IQ|%y ]k % R:+@Yh4p'<. &EPTp#B@qMnW 'V w *&ݷA:3=AfTMwạ'< x&wVmY3;IxԬMDsE Pz}_S3@k1p<YTw w{@y7Y$0+JN_?(]U% P%ڛ]-& .锷s^ߺcR={#1s_|G<%@80%@u}θyTj}RNhrOVejw} ԐU2oMVV42'X}qT&7?(pnK+#=)h맏v ÁL .ehKOOZ+_t7\bFނx^g5&̃"j5@vfD? d8~$ ),9AWOy~'IMP,I?( 34jqH]n" q෧vsbTCu'/?sdNy<<5Jɝ.9P ߅,тE!0`?Y>gTP?#fvd7{n@?F^u@}u9ag?M'όZ Af*7 WtA: M?}q󹂐W?}m ܇{ma0N3fPzԶ:KW>W@kʍ~}_hFBz_|%WD?P-IU"$Oea{ubKN>uG_T%<#Ph+Y%ac[d/ P] R?޼&5|ٖܲB՘qs0u- "B@@A]x#.8ԣݓ|p<4h^~p܎-o$uϤ*CW2}4[8fcmS$}EB.fȰ~&nY6'Pwu1?B.l7@H2YB."fJ!PAő -Μ۱C~(qF `sKf|bdG۔l< sj[^ho۞ϸ' f[ @ ;i(ڟSE`)?bh~WQ(da~Y\U Ut\5 Zjh|0Q> b#V- .%@|7.fQG .s7FRD:q@TMXk7G|*vu߽kN/x5*o9ிvJ 6C$!G+3'dS|F֏Amå&;ډd;\r(& $#B#l@2E)3f&8@qBշNAcb~@|Q"1#(k BYS5#$-L3`pߝG[a7Uz-̠[9Y䔓w'į*sx~?K |x݄t-Na02y~_Ng#!@eG( !,'=)gIwLHbu nR7/ VMfpBf7Du Y֔(JV~o9}T%|Fmf<͔"Co*`) ƷDQOBWT`ĔӪWƧV-cE@گ+CT#f^F+(ɟ ͷXh?n:*Y{E‰%<('"% ${(#O@K]( V'i?՞/|=BcF62n+N3M80cfR\ZT*Oe6}FU Ch鈰K*- `؛録B.-@aLL <BβL/ahD痉aXG 22 !3r%R A(<\> dޖ3uAce|%i!fHQ?XIrWUH^<02(A!}u++pE)sE /M#qu5}AhWXA$ DPS`#1ۯ@ |w0!M+HN42-P"`щcr8PUN a`@; WXnV!PtfO-RxRa2~B_mw6g0"im3|+!=N:켚r=7gd}SHFp $*|'X"+20,Ec3BfYQ8oVt/0#"9GXzLx4<׉Zk`?!whY'><~{)6@HO,8 dGUo]u,?XA0e"_u`D aj tyXa B|KM@qA/h +m55v:3@#IS)s)JM%0dg!@ګP x+:^\[Ce"R04"\E*dPTCX>tr_X>솰&PFXAw  NpBFf5@Nzqru$ǛMMh^lj73jGexg`^|뚛7j:x/y St/Spi Xqr펄KN>|ȵI⒀cg`<-2E!po_t;Lҁ7@|?u/[@=`VO{'T p6 k@w@  8a G5gڷC 8qc AV6p 6`E]XvM Y-POY0-n]XHX hyU@p#w9Q%"UlzfCKF쨗PglZebta?Z&" N9!ņ&UE]1 @>y65!O>q}$閥F9c ti#@*>@rL9%@ 3,@"ݲ(?1_ ЏЏW?]@A!TJ+xܲ eg:-6.@`8`8;'/`IԑX 5yy\pM@wєT8P9w`МF^ 5y"6)X@ ^c#@SMbh%Jk%`+VBQv9`j"C!T+盀SMbh=j|v90&R1@HTPI@U@p)@o'@U:uȞ: Mc%iw@HSPǜC*SLP[s=Tb@a@*p@VX'9?M@+QLP8'a"*$4žj ι n$@|(L({Χž E{O>GPʥ|9#(z Eyhhaj&=@*= E;1Pt|b\r=wk_zn )c@w@aIJQ@u`6-74l,r=X6@~trCB(ԓWX\hhbֈ :05.@t>q F&fP7wq dqY"ObMD:KTb\b %y˷ĸĦ@Jt)@L-1(i@OAMc$U|P..(1h|.FJ(αWM 1s#+&cGgSF8&#lN(.~pqA%[1\VDbͨ e PVDbͨ e 6-+f<&e#֌ޱ9_ܓ=6ژ~Q[^s#i5%6]@9yOAHc ippvџi9 u9 `}68J@$@YZj0Oij _ć*)#^ b;;ڎ=9/#,󷵣;k^dMf Qc SҵO{`<<*ٯ1y idMf Qtf``לw ܸ5?2@g@gT)ot~ dJieo@``;wngifN~ A%Z=I_w9-{$@_t;Y$ @(s @e&)eq$hP@; qr0@?LO8ÒS`@68Xlٳ Db$D0 Mc u 5H )'%]Ҏ@qp!\0_\roe0ǒ~HϘ A'`#;HKfĀI> I `t?@>B,1C%ceL&A |! ^(GX-3Y2f8 f2 " ycB,@ k f"33! Ih=pEl*`}Fmʕ\'oÌFW:@nB@l€. Yr,$ ľIH6 9"g970 g̒*o VSlW065+K_t;Wn @a;A*;@#,@&(2}1Δd' p8`8aO0nxk;!Mtϯe@*_'U`IwyiҀ4  wX*ۥoUTp[H2+ n;@)VDM>q6I"I3LPhڿ_3cBz$Н4CVD ?yj@@w>$Q5ѐڿ1DŞzިFXn@|*9sӭ'E UxPu wJ\S+ ?3,vr<zap%URX75Hɝ 8gJ1DTH8 @C_;{ [b0DcWHv@r'D&1D%'^8XG!\ڿEʝENM@Xڿ)4>PYBXgOǎX8Ђ|oJWQl1P';&`A X@LzmğCs<Ĥd Px KV4% 0@L_yt $ƌ6q$gAO#1^cSpZ7i 1|1)8-ǵՀP`'NFض5Z1xI5u~$"xh,Zт)RBFe>U֑Hf:2JG/ ^Ux ThdOh5!>Lf=s dܸ5i60@QFGM'> tgrmp6@0; 8ĉ|ozgOJCc p$Tg% T8dyf)@q)Q*Mt 4?>6{4TR3nߣ7 j+O~@|@ d0j^Z^E?ruz?/-J'|¿w5b%`20 20;#sͩp}4b$<Ӭ2f 7c ]Ls6^tͰZ~y^|f'_\K ֪`ٻ܆a?S@ĭ"7 '+4֫%Q:Hwȁj$߿fMJY@xY$@|{/4(ʓ y ` |=Qմ :%!?|UgvǤxN 5u]Y@NZ< 笽_ 2J|qi{ޫ`' h , YU^7kKD+3$-״zE掛㾡H/~LjZ3a&|oҩjUk?X\NoPm7`OORz p${2zoLKU!hkj W[$}ߔVyEGc 5'r8j̹lIVBM0RbrBL;|C{wO>ąģ5ӷ/~k2BUU2#Wɯ'^x zamk}0JBaz H QsĊW Wjzx]gPprk6fW 38` v=5丣rb&N~w5sNIGXE`#(\y&<[P hDW[q-y |@`'?ɯum}Jb*ߏ?-J o+l=cٸC,~d6umE_rSD %LKvܔ ?Bf[YglO X@)^5t|V_2-N!Ji:U2,Y|K5eX\ nءİDןOF?$*@o_˶N# 4E_6U>]a-B{-);o;fkHڣÇޓmݸN]HzJ6Nf; ׏yDžt Q:u$B 6[ 7^<~g`~ٔbFkXy >*F8Y)T?҃GkQ2A׸sx -mϤh> - ˾:?e7 5- MQ}" d_@mr6oDb,,b~3SaM7 yhi t wrg{Ԧ)d٢b6 ]0Z]c%}^Jfh۵ +g2""9aws# fiss):c%IMFv3gZEv@W79 TWRܗVB,Vf&/&/s2)@ó%Lؼv{[GڛW JW}9Qj'5Nnvj:-N&:x <+(t@-NrtݻM0;/;?rz&N0|*&trc Y)J @V{L?en^mz;hDI2(WsWG w@Bj91L^% Vw@Nj9_@IX7c ЊgTKX:FZ" j +\|M@W?Cf 9b{Z1)kkw#> n@es_Ar2:q2:TNX@-37N#!zP@:Xġ&9g)! }|qa lp~{2?of @bٺ} s:>^5&L@5g[:=WrBb%B>ǎYu/@g;u$zIZHx- }ShJ,Jk_hzxkQKn&g^_PH;\|i"4mS|L<  tZfg|~\ז$ܽnO҃I׎ ހ|؊[-sQvdtߑ.^)Mb]D,}ݑ,RJIF%m Nl_䆎4ZN#.] -fʤ{}֌W>^S9u< zcr ROfNvGJO m[iP?R IG"j<% wf8a ?!s9Z(Eκx-k {&':}Ucjɔxؿ9Dŵw;o6ߖ_9v Z_e P2(F@62ݶ/@l8i?'}6ekQ_VvF> (}]z)pߜp A#gW~J=b(XpPZ6@4pmQ>5l7 5qkJ]8 M5a_iwt~]*CJ_4"2ib}F̪_HlY%嘱|d ;[:^kQY +;ÍB7n.{n01.PotW4'0%+*Q/r(TcLxB7A U=%n ưy@)(+ N(W_niy1\'zX1S'3Z ٩^U?,W\ kdk/Gay)k-\ (oXvS+h4{ 盀j`-0zx̶f3\Nٱd0{fZh5CI < feKrqK@[&svn=~ SH h۟o3 #  l5^Aj2[_ C#`+:©(O7F3F{O<m^1 W7('%VdjoZ@a\NwV4h@XM-%:.""Z 3O@|ʡZU~¯VaFOG@U?ř f_'$.'' aeAsEΖyjCoܫ7-/o KR2%МejM5@ʦG` vmi@Sgnp^#5§8i -! @? weEEt` +n2)/@}1fБ9"&p4=[RC KJbJ0O3AM0i͚"/(M9&Ivy<-Ѹp$lljrX$Iq[(9Gqhb?Q0DPq#qR@h"%\ Bg!"HT?*?_"1u k 'Ko -'1+z% J/P(frJTMU|zj97v?.wa&"! DZ/jrqBȯNĻ#+&?#s(1'Qh0X=OA` oweK%`ź*%TT|k* Z*sO/'?dJImF9a _Pm{)1(GL9Z] |+4 7ad]\ \LSY WU+]@U #"lK_fL5źê&u~ժ9Vnk( ;kWǎRF p&vf!m4vcOc&w̅ (_ck{g/ %@@$ Ӛ᧿Snl@V\+Ŵؿ[Jf>DjtQX?+J:$ - ˾N@7==kG;񵽇ރ,ۙa 4 00ʫ+p2[,ǎ9 ,Ύ'!O<ǽlБmÝ\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!,rIENDB`ic095PNG  IHDR{CsRGB4IDATxKՕmld( F  -YxN5t(L3<aBF (;CQ!.su^UkZ_dsT~]_)1 l@@N NO!  bSSSl@1@))6  @ @pJpx @  8%8u<ņ @:bC@@N NO!  bSSSl@1@))6  @ @pJpx @  8%8u<ņ @:bC@@N NO!  bSSSl@1@))6  @ @pJpx @  8%8u<ņ @:bC@@N NO!jٍ7?Rd&d$< I$oݨV̄@I6 [[|U!(  f)A zG;2Kzs@p끜3W`E>N>|ȵI⒀cg`<-2E!po_t;Lҁ7@|?u/[@=`VO{'T p6 k@w@  8a G5gڷC 8qc AV6p 6`E]XvM Y-POY0-n]XHX hyU@p#w9Q%"UlzfCKF쨗PglZebta?Z&" N9!ņ&UE]1 @>y65!O>q}$閥F9c ti#@*>@rL9%@ 3,@"ݲ(?1_ ЏЏW?]@A!TJ+xܲ eg:-6.@`8`8;'/`IԑX 5yy\pM@wєT8P9w`МF^ 5y"6)X@ ^c#@SMbh%Jk%`+VBQv9`j"C!T+盀SMbh=j|v90&R1@HTPI@U@p)@o'@U:uȞ: Mc%iw@HSPǜC*SLP[s=Tb@a@*p@VX'9?M@+QLP8'a"*$4žj ι n$@|(L({Χž E{O>GPʥ|9#(z Eyhhaj&=@*= E;1Pt|b\r=wk_zn )c@w@aIJQ@u`6-74l,r=X6@~trCB(ԓWX\hhbֈ :05.@t>q F&fP7wq dqY"ObMD:KTb\b %y˷ĸĦ@Jt)@L-1(i@OAMc$U|P..(1h|.FJ(αWM 1s#+&cGgSF8&#lN(.~pqA%[1\VDbͨ e PVDbͨ e 6-+f<&e#֌ޱ9_ܓ=6ژ~Q[^s#i5%6]@9yOAHc ippvџi9 u9 `}68J@$@YZj0Oij _ć*)#^ b;;ڎ=9/#,󷵣;k^dMf Qc SҵO{`<<*ٯ1y idMf Qtf``לw ܸ5?2@g@gT)ot~ dJieo@``;wngifN~ A%Z=I_w9-{$@_t;Y$ @(s @e&)eq$hP@; qr0@?LO8ÒS`@68Xlٳ Db$D0 Mc u 5H )'%]Ҏ@qp!\0_\roe0ǒ~HϘ A'`#;HKfĀI> I `t?@>B,1C%ceL&A |! ^(GX-3Y2f8 f2 " ycB,@ k f"33! Ih=pEl*`}Fmʕ\'oÌFW:@nB@l€. Yr,$ ľIH6 9"g970 g̒*o VSlW065+K_t;Wn @a;A*;@#,@&(2}1Δd' p8`8aO0nxk;!Mtϯe@*_'U`IwyiҀ4  wX*ۥoUTp[H2+ n;@)VDM>q6I"I3LPhڿ_3cBz$Н4CVD ?yj@@w>$Q5ѐڿ1DŞzިFXn@|*9sӭ'E UxPu wJ\S+ ?3,vr<zap%URX75Hɝ 8gJ1DTH8 @C_;{ [b0DcWHv@r'D&1D%'^8XG!\ڿEʝENM@Xڿ)4>PYBXgOǎX8Ђ|oJWQl1P';&`A X@LzmğCs<Ĥd Px KV4% 0@L_yt $ƌ6q$gAO#1^cSpZ7i 1|1)8-ǵՀP`'NFض5Z1xI5u~$"xh,Zт)RBFe>U֑Hf:2JG/ ^Ux ThdOh5!>Lf=s dܸ5i60@QFGM'> tgrmp6@0; 8ĉ|ozgOJCc p$Tg% T8dyf)@q)Q*Mt 4?>6{4TR3nߣ7 j+O~@|@ d0j^Z^E?ruz?/-J'|¿w5b%`20 20;#sͩp}4b$<Ӭ2f 7c ]Ls6^tͰZ~y^|f'_\K ֪`ٻ܆a?S@ĭ"7 '+4֫%Q:Hwȁj$߿fMJY@xY$@|{/4(ʓ y ` |=Qմ :%!?|UgvǤxN 5u]Y@NZ< 笽_ 2J|qi{ޫ`' h , YU^7kKD+3$-״zE掛㾡H/~LjZ3a&|oҩjUk?X\NoPm7`OORz p${2zoLKU!hkj W[$}ߔVyEGc 5'r8j̹lIVBM0RbrBL;|C{wO>ąģ5ӷ/~k2BUU2#Wɯ'^x zamk}0JBaz H QsĊW Wjzx]gPprk6fW 38` v=5丣rb&N~w5sNIGXE`#(\y&<[P hDW[q-y |@`'?ɯum}Jb*ߏ?-J o+l=cٸC,~d6umE_rSD %LKvܔ ?Bf[YglO X@)^5t|V_2-N!Ji:U2,Y|K5eX\ nءİDןOF?$*@o_˶N# 4E_6U>]a-B{-);o;fkHڣÇޓmݸN]HzJ6Nf; ׏yDžt Q:u$B 6[ 7^<~g`~ٔbFkXy >*F8Y)T?҃GkQ2A׸sx -mϤh> - ˾:?e7 5- MQ}" d_@mr6oDb,,b~3SaM7 yhi t wrg{Ԧ)d٢b6 ]0Z]c%}^Jfh۵ +g2""9aws# fiss):c%IMFv3gZEv@W79 TWRܗVB,Vf&/&/s2)@ó%Lؼv{[GڛW JW}9Qj'5Nnvj:-N&:x <+(t@-NrtݻM0;/;?rz&N0|*&trc Y)J @V{L?en^mz;hDI2(WsWG w@Bj91L^% Vw@Nj9_@IX7c ЊgTKX:FZ" j +\|M@W?Cf 9b{Z1)kkw#> n@es_Ar2:q2:TNX@-37N#!zP@:Xġ&9g)! }|qa lp~{2?of @bٺ} s:>^5&L@5g[:=WrBb%B>ǎYu/@g;u$zIZHx- }ShJ,Jk_hzxkQKn&g^_PH;\|i"4mS|L<  tZfg|~\ז$ܽnO҃I׎ ހ|؊[-sQvdtߑ.^)Mb]D,}ݑ,RJIF%m Nl_䆎4ZN#.] -fʤ{}֌W>^S9u< zcr ROfNvGJO m[iP?R IG"j<% wf8a ?!s9Z(Eκx-k {&':}Ucjɔxؿ9Dŵw;o6ߖ_9v Z_e P2(F@62ݶ/@l8i?'}6ekQ_VvF> (}]z)pߜp A#gW~J=b(XpPZ6@4pmQ>5l7 5qkJ]8 M5a_iwt~]*CJ_4"2ib}F̪_HlY%嘱|d ;[:^kQY +;ÍB7n.{n01.PotW4'0%+*Q/r(TcLxB7A U=%n ưy@)(+ N(W_niy1\'zX1S'3Z ٩^U?,W\ kdk/Gay)k-\ (oXvS+h4{ 盀j`-0zx̶f3\Nٱd0{fZh5CI < feKrqK@[&svn=~ SH h۟o3 #  l5^Aj2[_ C#`+:©(O7F3F{O<m^1 W7('%VdjoZ@a\NwV4h@XM-%:.""Z 3O@|ʡZU~¯VaFOG@U?ř f_'$.'' aeAsEΖyjCoܫ7-/o KR2%МejM5@ʦG` vmi@Sgnp^#5§8i -! @? weEEt` +n2)/@}1fБ9"&p4=[RC KJbJ0O3AM0i͚"/(M9&Ivy<-Ѹp$lljrX$Iq[(9Gqhb?Q0DPq#qR@h"%\ Bg!"HT?*?_"1u k 'Ko -'1+z% J/P(frJTMU|zj97v?.wa&"! DZ/jrqBȯNĻ#+&?#s(1'Qh0X=OA` oweK%`ź*%TT|k* Z*sO/'?dJImF9a _Pm{)1(GL9Z] |+4 7ad]\ \LSY WU+]@U #"lK_fL5źê&u~ժ9Vnk( ;kWǎRF p&vf!m4vcOc&w̅ (_ck{g/ %@@$ Ӛ᧿Snl@V\+Ŵؿ[Jf>DjtQX?+J:$ - ˾N@7==kG;񵽇ރ,ۙa 4 00ʫ+p2[,ǎ9 ,Ύ'!O<ǽlБmÝ\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!@]l 69@`Ý\!,rIENDB`ic05ARGBK{KWKWKۗKÁ×KKcKÒKKۆKÁWKmKooKmKWKVxxVxKہK mVKޱKہK bxKWKmKbK{WKxbKۂKxbbbKÁK bVKK bKKӱKWπKNJKKmKoKWKKK{{{{{Ӂӗ{{{Ӓ{{{Ӂ{{{{{{ʁ{ {ƈ{{ Μ{{{{{{{ތ{Ӂ{ {{ {{Ɔ{܀{֊{{{{{ʄ{{  ic11PNG  IHDR sRGBIDATH V1hSQ5Ic[%ߡM딚EPiɡvl EQѭh tiqbED3H B[h%'m o>xwlO{Ϲ_yH+?V;-'hkR8=Wѝ 3yx7]2C-AdAwZt^TܴL"T".4e A.{?.&w^,@xW&$7A(-PڧwICha}fM%thqmC;PW-J SZ~fKA֧PIG,DQ<ICi rpyrPf|Κnwg'f/V)%ҧռr"qhqTew&k]>4ОJA4[1pőlW"24|]6uMCMgFC:2[ W.yLKEE`?/3XޟO=` "~],o'0hxW"|6h6R2Pi>W@gS{8ǵ1˃_wD d6(9a[gs#w܆B uaݏ;x<$0d@KMyMRz|?s}8ɂҲIENDB`info bplist00X$versionX$objectsY$archiverT$topU$null WNS.keysZNS.objectsV$class TnameTiconZ$classnameX$classes\NSDictionaryXNSObject_NSKeyedArchiverTroot#-27=CJR]dfhjlnsx}Turing-0.11-beta/src/media/icon.ico000066400000000000000000001575571331472757200171450ustar00rootroot00000000000000(LhLR X@@(a``,wVX(({KVbmxƱμ                                                                                                                ( {KVWbmox{Ʊμ             (0{KVWbcmox{Ʊμ             ( @{KVWbcmox{Ʊʷμ                          (@{KVWbmox{Ʊʷμ                                         (`{KVbmxƱμ                                                                      PNG  IHDR\rfIDATxOLW&fA+>ڷT!RsJ8&95R[r۴Z%{VJj/s DjpL9hGnʄ3!{3c{ϥUI&w~"rRv@D ra "1 ra "1 ra "1 ra "1 ra "1 ra "1A?B$|? 1LrqhЏV9G (i""Ơ0 Ut6R `D221qWmpЏ@ !eV  +EThA*?h6P4 J̠#5@HMRt Y @)   @zS5 3 -bOgdOjg@ b`T1z{)NaTH:=@H= pt0z`l@8xf`?ibe_Dd'&)fX&) b; .X+]p\`b@(kx8e' rbTpb2-VCGo{EgP| H;PMF`cYWcer _jЏAXA`bA0%11p11f"K ,D\ :D\ .``"b`&؜.?6 J`?18 ؜,`&T`|N`&b@9Tl 9#Loq0;8,  lxXx8h'0{8= vŤp.^;cvq%\vq.8+8 ]OgavA˸;vStʞ|? 9R)WkS \lCTbgiid/V?w۝TɵKV?A?,gimz+roM28t;r 3Vor)5;P) m^F̞As"BvPmTND\d} o6Pq*'^OeR@".ǣ =mI4=XWHP} ˵K5ma}A*?hImR%OV`VlHV襍MXHƋzVW:>~AHzgd&v`\+V`uJ [|ȯc+YYJs29ɣOw߾KR7c\Xيgi%9xV&νɱ/d"彜ܽqAgE(BL>32r' +v-cHg P|tӞnj A+kCM%yM*{JTy|Z? ֠j/z@V+ Y:0Z"H2A6S9@gWt}罌<8Qw%%pZ/Otƈ/iV^vnuG#U=\=r;Pu @y!~Jd?EȃyylGg_܍zS=5BjC.A@.c"nRVu݌4VgUFũ\-@{㏵npJzgkR!'~Yt-E迈HjnJB#?{uGma!uTͯAhrN्}H`&A+:^F>7ꈿ8d]B$*@g]yNhkߺ:nti  "LţG}:oY2 Cju bYHCzA?hJ;~Um"w*0SoGkߕPΧ:M3LUvdi\!%[M{c$A'7Z?tq+ŜL|jh]:d(:߬ @6^BNJ1bQ*lӃNS*r7ŠNA(p(H3Aq0zwl|tݓ2ߏۡ"f+o6n0݈AS ˸Г;0N"^;Amm7ekJ(Ud.[ʛ y`-p<Ro Ê@h " ]?h x/8H >JS8K]\Df#wp:]@--C,F/d+r0@t6@ofLK4n]7F}(ASʛםQt Dku-l6\=ݖUV?t UЯ.Fe w&mE~ o YN:juӇ@ @NU*o|_3a(\Td8C$RW>yِD ?JD; o~, St_'~Y(em[aXjaeOyԿT77>~߫9C8: R *Ն֔߃GrqHqvoٍtI#ҕfZŏ;Fgg~7;Nڈ=Kd  W_L.z>~R`m 0i,ZXӾ7ovB׆2ʃ"[P$pP*`[IjC{nr<۳/%>8;1UpOtM%V W?Hϰ =~|W _Փ 2Y_M"][qi@ ^8^/}@$i+#*Ũ'7cxwxob.&'wbU?.)1tq  MV߆i`!)3֬A|T7xڿg;E73R5WGV9^xӐ`g>b#H]T1@[*(u q佌ܽ1;+ՆWd~%IiQU 8mO`K8y+ Em&^069;( ,m4Vp [)m;n)n7@vw K_$D]s8+]HRuOIT. qSȠ,l37ur< zy%}n:D^FQn]َ߯hY2Ψ<3*٪fj)oIT`(hYHGus8$oyM?o>H9|U@ R -7#2>SGaG~=h]H}a` XB `_m D@dOriPݜ~ВƟ eVaB _g }@d'M5OYgO-5.D"?h_*W}Lc 26UML0,ZaPtFWT<__&  Vh ?h14I`r~E8I "?G T/^`pT[MYXѿz'2@} ܽO: `k)?1?=y>3&D P ϿK^; ]p ~?>sk~yOTɭ2]%z< .+ZKy!ny/#BNC29ɱL1b'5@N~Вň"HDgb9@0Dc9@0Dc9@0Dc9@0Dc9@0Dc9@0Dc9@0Dc9@0>b 7IENDB`PNG  IHDRx IDATxAlUW'c l U’JBJ-SaSӭ "dV)M2K&Y˄HcnBn"|D@|}@P@vmvf p P%]i@@v WTJ`׎ؔ S&+Xm0P-]q HA`WTs @ )WC ؔ 7T$ƦTf@|nRK3NMH'8c_ Tb?>7) )) g :vlvf2t;q) j@J;@|%@Z;0gplv-vD*@j;rJ&#*T2ؑy A`Gzs*)9l@0A`Ípge=c-$msE`ۜ m Ħm_ '\E?Z 7r?Rr9 lKO : 'Z DhF Prx! MhnqI ?s& <@4W \?P-u;n>ْ5J %WA`KNħB`K*)xٙI7V`@jJ!LGc/)x9 0(3@$O1< (Oq?>7x @|nJccў\v?\z?c@+D 88=jmZ'OP''TUɐ $@Zt;Fi#dR"%?9qN\\ DrD>Y;?}U$'40jv&g^qz1-#'@2@?77~W+|" f??қ ?;%4p! ة.#o/:މDl@C_Z FǠFb-# '{ 4g'b/#s ~ho/ L(cSgZGν{@':F` #نL @ /bEh7@^$?LH4@[\r,#iB%̤ (Hon*}? ;3N<6]d98=N؟m|3t|BcդfFģ?ppzQ(5vq߮S;ҵa6nK7_ۗk{'fR};LO{5k?J3>oYūy%4S5bP5Mܙ7ьC{|ay5mҵF vlϓzs$Ԉttpz2:rr(PIoGz{¹w'L֘Fg<}Nx9KCpփʷ!Í"_?7}6pnhR &X 'Ƴx{- Em{@ɿū+_N>xޞ7) u!Ԅ5n>J8y6o0~ Jy/]ƞa~*||,_{l!5pIiLo}h2υ?D8nLx1@ҎZ5u(u `%}[\뭥l#?pRn5J_gޟ}pW;}bwVS]s><)8eon*:^͐gnؾpD Ʊې&p][^]w(:<}b}pcqğ}a~}>JM+VĦ !'>ԣ*j7ΎXיW䴕p#|״=5Y}[H%]TURVv2ҵR{@Ni)W.U%T O9mo':w\/Fj`*aNٙ?ÍmMpǤo Sw7Jҵf@|7 D@3Eթv&§zŤ/>PDsB`uT]y$Cozf{Do_UH65W]Guޞ};zR}[SEWC(  i ͆Sǫ~wڳ]CS;l !M' Zu/Wxgeɀ˫դ_u7B ZV.s :YNж0?>>JUuo 4;3YF)WUý=7^Afo?NP duRVYν{…?_ޫ댜{@mBpO @oyu1.]2hu;̛NrAp$%owsſz@M?;+?߭eF߼d[ uP 7‡ aXo'* SqO ӄ7$Nk cnGz{d88R8ڛ g^*jޞpؾZWj7p0oGz{B3Kavf2[ou}P7բԸMjS6ˁ9 SdX 3avz-ng"}[?w?ѿt c__ha;6@*G'_r끷4%ŗ̝c}rᥰ0RO/~b=r% &j<261*1n`' pxEivf2|ޫ#'D 6 `0j@<8RtS[%9}b#:C[{ MoNW_Z q %i0>Cn_ޫݑ˦bX3@3}ݰS0B(7n4f 6GΑ" D?,9SؚP\1hoyub pD`t' O@p4V i /&df >7Q3 hx1OFb@F * d@|}?w/lMLfg&Xv&,^s dbo5 JۙNט-|pփ܏ ertA?67up˹#@3ν{ ,), EdaN`lifأp!Clavf2|ޯ'p#oťlg\@&5F-(ngXsqcޡng"ygpguQ`T9Io0aP:M 7G[ 7/ϼpoO8~޶/;+OT hoqtzJrA؛ vzX^)\=Nh ~x_*CioE7=W7]QӓS!Y}y5Z%ҵc Muwg`,w[\MmI?F y/c PϠ~D)WC &UKk_[g_~ڪÅ?y(BHI%QjL)!v~Pƶks?XNx90;cw>|xrbRM |F mlon*Z'cXSOt2_k>gԷԉu $L4”4-.Pp$_HoO0bx\oYMub5J %k^rAAux'|ޫ᏿UK?z{s?B+ óD!$ yPi-qng">_<9\G^g[9ߩp#|:ϼS\|6 '!$Դi%p?VFZgg&oxd/hc?RtԴoIE{xnu W (qU tv:C=г^?7K:ycgK'Mn!ҵG͞9^3W 8ۣJ\3:ua}/lL 7IBf7=]2t>_c[M%~ݰV[Gs@PH.?ÃF䋿%/}>U6o 'j8N]fXۙѢ0zxpz N'P:SY 갅낟_ỳ!@Utr}jISkyПH B}n [SkNfa7[ ỳ!@t)W:%¿|,_yC#G.73$@ J :G7g;R7P1NCX:+'U>-ngϋh 7:9F RS] )=ev&5g;rlP)doOu0ZVE ~~^h [OgujhLr\َ\U\iY*zѥ&Z>|sT8|k])i/Ͼ$zrnƽQ3`_ tT UOo=gL= /#]:n|7k o/w c[ctc 4;_+T0>n2nOLT8',̽߃p#|y?νsl} _7 o[ *_ 7zf:8e#=.f\~᏿UkKJYJT5g;r7wg^y*-E|t1oRU@|KSП9q7?&Qv.HLL3DQzd04 ԭ#QHdFaXӣQFF v_74?\~Zd0~[ j!ҵr? e R9kҚşJ v/Rb/|7cp@ImQ Bh/Yh6 3HMc|%?) LӾnH`'5+.'5jrvIo/e 7/vhO -iF:d!쒻IbN!On.h$ҚRqbU?%zRG`.Dj|bO?G i.'1G~ㆀ?|u/\zaCHſ; J$i%l7X)0&q܏5vL4 .`L=M$&1@R/ @\,4n;+h` fR_TA¹s0#n$x TEeRq P &lUPUP@1&?g@18M 7*$,US$Tb4hQ%?_@19M cMLj Tb0cTN؅W~$ •[r? t ` :%@ .}0#0B%K˫cyu] ?~BHE@XLR"9܏@"Dr0\f.c HEo:z 7r?@DF88cQR"[>)) @J@EvPk}Uc /gHM؝O_s? @ 1 pSg&$tge=|wHm*эÑޞpؾkr? ? 7g ^??jPp#\z?\z?t;_ Gz{‘ޞpp.M-.) y< dMp7μ$4E =pwVÝʭcHo{ap3BBB͘ hjqk"-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ B-$@ BS.?IENDB`Turing-0.11-beta/src/media/icon.iconset/000077500000000000000000000000001331472757200200705ustar00rootroot00000000000000Turing-0.11-beta/src/media/icon.iconset/icon_128x128.png000066400000000000000000000037521331472757200225520ustar00rootroot00000000000000PNG  IHDRL\ pHYs,J,JwztMIDATx?LX_LLdI`t6$@0&vmYN'*]Gv8 tF6*QL2TbI8Nn]DmI߳SUU+ޗ/#v BOxʯ4;z| ˷+œs\0Ap/x*dft(j4ȡ[}D!"Mci?T@rsFZf&(tK%8<:p/B(w`ɂ UEа:J cZh@py!LJ=x?n nsY\Zu8n1An#@, 5O7o`AC< A@:ɉB4cHw,dXy` PfLIJP'+jpS@cȲ܆ <\"/rv6Q5jɔa0o[=s8o#W'1$F $e;3Ɠ)d;CT:1߆H* *cH:sk.aǐtrRY5mP)Xǵ}K('kyh,h.ꄍIs;˶-Bkr#'q;m. m/(j쪝]e=h?D`6s'4mպ+]7R^Q\\ߝ^}ֻ~uNYSܢܹUD!md! ٱո_y :uo^Jܫ'Sq_0 B$5ֳ+6&,Ae(W݋;E)Do&a[ll/lĭYq4 RM~) {WSZ"*$"`ŏD> wq}wq}I..H|*5*W㧗A qB9JAePZ;E!4yqɨ uHNbQ+ Je͚y'd|c F1ipDZ#3wB@a گ=9Y~N"juTѫuTKeͻk 8͠\ќ7g*;FZN bRUޑ⼝Tniv9)6?'BonqH:axQ"k-͎Y(Cm":s)쿹ں qivԆUwVk Dc(UZ1hv|Daq.]&6D&:'1,\lrx߆VݼcXb4cTգi MJp=<[DQ*kqXfLGN]+ޑ8(sZw6BmMck=5)վZ]wx1: +d}SuchB':=Ծg늽(@OոqrKs#Kz<[ Q]QN3rhn i WrEkБpm[rE{LD7+c `$h>'8bQ];e8h=&Sq^j1AA |(\k@>!|gBC(G\Q8ys((_h]Q;evB7~3B&Jؽ_+'H3a  N ڀIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_128x128@2x.png000066400000000000000000000076021331472757200231220ustar00rootroot00000000000000PNG  IHDR?1 pHYsXXm74IDATx?L[Y 3,J8.D P4HIf&jFIfbDfKvJ $@KWbp2ś8s+Xeqw9,LUB B B B B B 頄 䓻C?X:2'I_ipp$Ž: T~m@a7 bJb#Ò]@C?[E,z^DrʋZm9' ~m"`@8P##`,pMdkʕ69a #0O@`1S5I @(P n@Hl},k1 0 x$0H"Pd.?p ,4NL@6 ,  y-0ZIX. @ߢ. d40ʕmaTD6ŋA ͟ص?bt :`7 E)1\ )g8)g F"`d0R3a)00r@-<!SfmW,T'w2d0 ȶA^v8>feh"`- k$4F2j6H F` ]x']W,`CX  @|Y 3- qW9m $Y $agGt(9)l(9)S`, @pUf!-WN73QIrwZ0:HD2'u߿=8;:J6 gNC*՜~O@keU`q(ƒ0a8qcAC1vܦްoS16H"މޭ} 5,=rG e׷횶/HA,Pmn-=-17ZZsÀ/?KϯwzSwҧ|r,~ma3}S7?3QUW6OǾ] 1\g`(Nm&Ĭ>um(Jbn8TKkGm(WV`~]?_92kIw7o)FىƤ6Xd3q6HA;W>vǗ+ q!Ni .bI & {A\=MO X.hqGpF{n:2烵q;vM#>3b}X0Ѧ5m y%)% >00}F@#-OsN?;#YqȦ1XTONǻx>yvD[3#~uwUf⏺1*\i7c]3FÎ\٬Zï?tq`UA|LW. ꛯ{ܻ6uC/°,〟d,Ha@ӒIZ vaoNH[eg h> ۶eYk"rB'#Z>uq6fU9$PU3u:N(#qTt"F^ir0\Ž|q>!ٳ4.M?h4m4Wj?EQ3zC#@F. d.@F ](\/#`2va^0va4OCc*6X: R WmS55 D@dˮ;nwMnK.{p@VF#ީ6ztrxܶkIHh`tZZsg'`L:G- _4@^{#u9sTϿݚ&ȨƖt^s5'?.W6*/?\xgŽulG~ CWRvyﳁ|ReEŶ].2#Avt_<Տ}əV| h/hhRt~zjM:_KX`m(哲:ӭ gىVWg. :^ŋÀE C&?` le>psnqOb2G& K:(Kugl&AG ,ky`d8xǢk???3G1zbd?&\á6px>fĹ8-K8X1 Wv:c; mKzCa˲\ߏX-rrmvIN]|k B.1O){#59Ba "Bяq+E3JŽeU[R!3OzнGJ-tJ](jYԧ. UhۮyR tJ տ7grjaq}؅#|t:PGBQT߱k˛K :0V#e I:nSùS163N6M4cm;^+ Pw~|{A5?tG_e+q cKւ>hRuy0ua( xĿh SZ ?l<.Tw~^֌ڥfe$˼c7+b{vC>3 ?)-waa rNN!r0( I3`"~Qb48t!Jô/ @ U!St*)?π7N 2&~K*4"107ݿ{lI3mJ J'| pVU#,0s`lN?,M!0d|#Ч U( : h >]r2NcPXZ; ^Њ B.-o]iqMTO ?(~uXQ}2x@g |ݫP~Ư}aNOWkFuyZ%f' 6hԭ+zl&dzBd6m(Qc!@!@!@!@!@!@B BP"=҅oIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_16x16.png000066400000000000000000000006071331472757200223760ustar00rootroot00000000000000PNG  IHDRh6 pHYsmh9IDAT(c~@ `AUD200,m͡X50!s$! w~E;jÖ--p5p2 0Pf0\W*.?c7~͡wQdQdIXw8ړÿ5BV6@||ٟ/3009dP4} h'NEI200YrBB!v/&e uپ(6}lfö`׷#W~100,_XBS ;lhHjjeb ~:K\IENDB`Turing-0.11-beta/src/media/icon.iconset/icon_16x16@2x.png000066400000000000000000000012731331472757200227500ustar00rootroot00000000000000PNG  IHDR  pHYs  ~mIDATHc~@K@c@s Xȅq"s x8Txrk/8C\4Pf . Mvº/^}',B&ѓF|9sϹ$Iȕ_;NUW3Ms}8T|IENDB`Turing-0.11-beta/src/media/icon.iconset/icon_24x24.png000066400000000000000000000010161331472757200223670ustar00rootroot00000000000000PNG  IHDRo pHYsMM!!IDAT8c~@ @%U"F ^ۚCtBdzQE /yL Yl"MFBȆniS>x |^Cߤy59X Bv΋R$KM4o!5 qA&]EVqA&+1& M6.B2x*\{l{п+i_[QE\T/nE ?|TX!}ٟ/C} 7qo^SFp_g[qF9q~eg4o.1{`K2a<>[gگ~8]dŠ;NH +--<M@XζaI v} NXLG,ǚdfeh"`- k$4F2j6H F` ]x']W,`CX  @|Y 3- qW9m $Y $agGt(9)l(9)S`, @pUf!-WN73QIrwZ0:HD2'u߿=8;:J6 gNC*՜~O@keU`q(ƒ0a8qcAC1vܦްoS16H"މޭ} 5,=rG e׷횶/HA,Pmn-=-17ZZsÀ/?KϯwzSwҧ|r,~ma3}S7?3QUW6OǾ] 1\g`(Nm&Ĭ>um(Jbn8TKkGm(WV`~]?_92kIw7o)FىƤ6Xd3q6HA;W>vǗ+ q!Ni .bI & {A\=MO X.hqGpF{n:2烵q;vM#>3b}X0Ѧ5m y%)% >00}F@#-OsN?;#YqȦ1XTONǻx>yvD[3#~uwUf⏺1*\i7c]3FÎ\٬Zï?tq`UA|LW. ꛯ{ܻ6uC/°,〟d,Ha@ӒIZ vaoNH[eg h> ۶eYk"rB'#Z>uq6fU9$PU3u:N(#qTt"F^ir0\Ž|q>!ٳ4.M?h4m4Wj?EQ3zC#@F. d.@F ](\/#`2va^0va4OCc*6X: R WmS55 D@dˮ;nwMnK.{p@VF#ީ6ztrxܶkIHh`tZZsg'`L:G- _4@^{#u9sTϿݚ&ȨƖt^s5'?.W6*/?\xgŽulG~ CWRvyﳁ|ReEŶ].2#Avt_<Տ}əV| h/hhRt~zjM:_KX`m(哲:ӭ gىVWg. :^ŋÀE C&?` le>psnqOb2G& K:(Kugl&AG ,ky`d8xǢk???3G1zbd?&\á6px>fĹ8-K8X1 Wv:c; mKzCa˲\ߏX-rrmvIN]|k B.1O){#59Ba "Bяq+E3JŽeU[R!3OzнGJ-tJ](jYԧ. UhۮyR tJ տ7grjaq}؅#|t:PGBQT߱k˛K :0V#e I:nSùS163N6M4cm;^+ Pw~|{A5?tG_e+q cKւ>hRuy0ua( xĿh SZ ?l<.Tw~^֌ڥfe$˼c7+b{vC>3 ?)-waa rNN!r0( I3`"~Qb48t!Jô/ @ U!St*)?π7N 2&~K*4"107ݿ{lI3mJ J'| pVU#,0s`lN?,M!0d|#Ч U( : h >]r2NcPXZ; ^Њ B.-o]iqMTO ?(~uXQ}2x@g |ݫP~Ư}aNOWkFuyZ%f' 6hԭ+zl&dzBd6m(Qc!@!@!@!@!@!@B BP"=҅oIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_256x256@2x.png000066400000000000000000000205241331472757200231240ustar00rootroot00000000000000PNG  IHDR{C pHYs**a, IDATx?l/0$?#P%PP\tMtD[H9^6$l;8Pa $ĶV^-&0c3_ϧX |g?gx@ @ @ @ @ @  yTrr7k/k/ "pƫP;T 1`k =fA 9j BFB@e(@|gyp5tWu2x8 R<  l L;덖@= #`@ zXPqZX  $E@,)OAPa7Z;f#\  Ѣ"^U'; (@*  @"9a zPS@ ~@PFA)  5VA|h0HPGk 0A_P@\Wu2x8 $@Z3@P-ZVk w U5F@(\#`@D9@<@*-@ R5  Q&Kᯁ O@@__Pq`a 0^`A_V@}O@P"^) ?˫ME@AFh1xP5@ux*Om& Q Gы* E@A(tS#ȔN:ߛo_}oK\96RqksϽd) >{ַD5GfrK#2 O g7S@:wԸF@~AБk  pN0Dn=4` Mh@\{`CNC"7ZK+M@?:_on9FE_gN |S# H[)2Ѣk s#|#?@P1 lE#?y# #F` \`+k l'`@'VF:ܪ7ZF:2cDQ<h@G2p:R4Js@nUS@GWN W@L{`@S@jhy5 Bv5 ?g@7*@ ؊C9f@G`7Y{X@1,C?:q dλt` `@' 2\`+̱2`Y7+:k 53C25: ?ߪP3:P5$AS9#LR~ - v' @P;P[ $? R1-@@)@>4ӷN:P=7'ضE@ݓտ_ oΗ`.L&#P~c`[C9h72Z`AWK+MAZ |CWoN=+?@ZҹaOLu_ 8lHbP.[ 8{ ޡȼmNWN X _ =דR `otn1lf @ p@LE@AZ pHXjE+Z? O#.x v )pC SW덖"1[ >cAMM.Q3o>!ak  ^0 (NW|@{@P(TO[ Fa,6͎zj<zX?S>z! '! m&@j `CѺ}oG qZVeniX_-ZȢ=w{ T_YԓX_H[iiW  V3vwgf Xz7Ȭk-jk Uotf. ~ "wN Kmq](חɒk ^7S)>z3\x^[\O_u@ 8uʏG}W/+Kn[p:K'@/y_yv+?>Z3o}+v)N؟{kNxi9[?@"Qb;^wxy~#47ZN~E] @9P)ǩ.TNW{zځ~dn9w.,=聽}R˫/fqY]uL%+" z-H})Ou:x {׏S}) Kjhuދg*[W(^>[|P4oZo6to>I'߾TܼH_ oAa zI Pwm{Өsы;.]ej_L0ăz7^:7F!ϻ^|~EFnw@tmz P"]NJyW~'oyBax}u q1%0H~~|ZӾ&l7oSmF/Nt P(j /عb"bV"r4Vo_q}N,U'JՉR{ < k ,A#ɷKu`E6??VG  h,ГE S9٘ӹ`_Y y LOU$)Y;~~K*Vv@jCφ Ke_E{{ޭ/'WFo6;E@ܫͯՉdo}KuO>vPj3n~>FëM\柩R7tzS*r%n~߭ 4|w?yW#a J/G?GMvׄDn/b`'Ԁs @@['[_.V bool8}"AJP?;{<>ؗhmq*xfy,"׃;|}c7P)$s$xewV?%o;y}]50聽 j_v_?zV@kpLs6xt1 ] Po X)=o{l?BU`dg4}b_RK+O/6B^]#gS@j=r)4O$:BﴼH?Y &|ᒭB|06z(27tn83sϓ%kÖ~ d#˫^7{8ΟLlG/f%8=rL7 D"^'ɀϏ3;9udcL*~ [o~y_~k<3pPȥ6s^OƉ=7KFFt#CH6w|CU >) BaH&KS{G魈^8]->`|dil85Y-Z.$ggݟ`7|@s}О5jO&N~6tZj)^ ~ T-4V8ڬў=N_<z5JH͒l!bqڑDrۻbv E7 v;k5F$ o0#<6gK]3}b6 + ]mC/<{ʪHlΰ/_]@ghv zyY6Z?uKh15xwZR$C >SolTk Wk 4@`O'`5#ȿj6jA 0 l_ 8[@dzGPqR@P@"VA|`@Xꍖ#[jZF1= 3WBv4>Z ^OT .5-<^W @:} es{~腏 [B('e_85YIT /<~ji D`?4}L_~26R}ڼZV)%zX{lcP:p^z'={/_>Suc&"v|U|C_WwwxX{AsuT(>w\^y";V[پ[|O_~Hqlz`H;vNܳ +.'Y"O;̞ |X{y,Kni;;','_F}{zWrg-O.u L.<^{}|2>FۙREkg0gegAutXlzfLзd؏7fvʯxmok {k {k/[##Ϫ:Q ^WW~'/?}I g˫Y٭ӽ^cЗ.7ZNټ%SGjnOo#C HٜW'}vOoF_$%.er >T5 ̎۵ޒmG&bOK5Kk 6up| g'i2;A@*`8#niG:zd@B=X3ڢһY_Kw]oY)$gO *FkC!oi;udv@  _i'kMj_RkcfՉRCw=:<%@d镨7Z_=ɓ$>( Wnxp2ز=lzW"Zo{ė (:6RTT"pJ0Zo"$(B`haZkol{Ҙ*Pu`бH+zٛRpׅB@oS@-z;O~uBk6E@'HoO;O~m_NToC( -24ψM۫Oҋ-N~uRpBmek ݯ㍧-ü^[R*Phud3xh5^-Qv|𔖂 = ~˃?+ueJ^# WB`:P?To>i d/nrK)!o<髑.4o~ >GT)LMU&u4x|hg鷽 UP臟NHjH45Y ?/jg[M|-V'J&l-J.}1rx9%ww聽@ )ʋۚ,|imС`" k{)8[~n~p> ',V /ٟԏ:{ަvmSe!Fo3;'&KF  %dRpP{vnKoad#`]Ҽܳ.;>LB Z "ށɯ-f9s7  I) ;.O~mUJ{gGM6V⫧[FsW +F9˓_[RЮ×ノoۖyHre'RpPz-6W^Vp| 5ɯNR=zӿiQNUEJy@P߁uh>RRpJM9l,osiFtʓSG3 E@{x17VS3]U ~ 8{|_. Fk|Cn^.O˘}ENLތ`OE_U +&K29LDoF:q9p@;bBWp.RQϾ݉;uds_{J > /b8ٛC~}?G Qog2 g [Й#Mc_ _8]\x]"B7ZZvKπ||k /^W×w?fﯥz3 q O.B^x'] i%Q|d@w p /Yw!2WT3@/@^>! 0ӆ6ie@Ѻ|yȼrf- 7Z^}b%rB6yBb8j&( 9m,$Z0fCH6*0?xjQ]иY +GN\}y:xφ<#b`ʯc=z`{=33F*c=TZN&K=gʟIDAT =@dJsiG/f'wjrpyP(Ȇs@ֵ: S@ @ @ @ @ @ @x@ @ ],-nBIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_32x32.png000066400000000000000000000012731331472757200223720ustar00rootroot00000000000000PNG  IHDR  pHYs  ~mIDATHc~@K@c@s Xȅq"s x8Txrk/8C\4Pf . Mvº/^}',B&ѓF|9sϹ$Iȕ_;NUW3Ms}8T|IENDB`Turing-0.11-beta/src/media/icon.iconset/icon_32x32@2x.png000066400000000000000000000021621331472757200227420ustar00rootroot00000000000000PNG  IHDR@@% pHYs%%IR$$IDAThZOHP~iS\/<֞LpAyԣ 0P ؛1ӰukNjӦMLvxZLż6iB}}~ ?p/ T?s#!|b8(La1r98f2r)v$BJ&3禶Q(X%$3:+y TAa S)xϰ v'0ޝj 8 NxQV=5G})X )(XT2n޿l}0Bu/#VVE.7+V_y3&}R_H9!hv+6@[hk{mHnrWv:j@K#Xn>Aif\xT9(W2<22v>ʈ,'EKc$I+YCC+ ԁB=XA,'Dzv7Kp{RӨM ,>zNᙤ[t9 v uFPh'eAt6u3AWNZrNg * kʈL4>FKq!d" XTFF(M w1kj9,}20`B*#Ί $QrOow忤"Lݺxg{Sa.0w1li#}VjW MT'vf>/롫C.2r 7hH_s?mrp]hA4KVOC;a夥\k?1J &)\ӯf (SØ(_ߏ|a -VE>}BcڮCBBM侯R5*.F{y̭.LBK9՛^ wU4X1wYEߵ TE\j#mVбG$,y6FQmV:SN< |27UR:g_" }9M*"tEY` Ĵh1CTTɥ児}^⚎v6=飡#Cì_C|\ :> VZ Xb `|28E|hcm2imЎx`5GUUɳJA +* ڮW\B "~To}iWEU/sԫ DfgוF2uw_9<ټguQqlqI,Țv8$lkDsɍZNIWFK/*E|Zu#slջNNȟY N# hɨ) E$rγ:F ">7G[4Bddi>tW+z5Wose "碭䳽_l*d3>OlJLAvբ{|QƫOF9\c2^M)kԫxZ8 .͇2:y} @mVN~2;{_9,5}{$,,pb~Kjӯa=7児]hnZң u  ~KUe{穉w]낪"UKDTiǚ $!UN36Ǯ. xLV7DpK'+c%U2>O6vֻ%{hz!"0Q/v|mt*nk& @" e9tGb "R3:(uBfMޅ(  A1{ <0-64t`@_X9B;rh0~W)yJd ~Bo94BHϴ{q@q@p 7KHIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_512x512.png000066400000000000000000000205241331472757200225400ustar00rootroot00000000000000PNG  IHDR{C pHYs**a, IDATx?l/0$?#P%PP\tMtD[H9^6$l;8Pa $ĶV^-&0c3_ϧX |g?gx@ @ @ @ @ @  yTrr7k/k/ "pƫP;T 1`k =fA 9j BFB@e(@|gyp5tWu2x8 R<  l L;덖@= #`@ zXPqZX  $E@,)OAPa7Z;f#\  Ѣ"^U'; (@*  @"9a zPS@ ~@PFA)  5VA|h0HPGk 0A_P@\Wu2x8 $@Z3@P-ZVk w U5F@(\#`@D9@<@*-@ R5  Q&Kᯁ O@@__Pq`a 0^`A_V@}O@P"^) ?˫ME@AFh1xP5@ux*Om& Q Gы* E@A(tS#ȔN:ߛo_}oK\96RqksϽd) >{ַD5GfrK#2 O g7S@:wԸF@~AБk  pN0Dn=4` Mh@\{`CNC"7ZK+M@?:_on9FE_gN |S# H[)2Ѣk s#|#?@P1 lE#?y# #F` \`+k l'`@'VF:ܪ7ZF:2cDQ<h@G2p:R4Js@nUS@GWN W@L{`@S@jhy5 Bv5 ?g@7*@ ؊C9f@G`7Y{X@1,C?:q dλt` `@' 2\`+̱2`Y7+:k 53C25: ?ߪP3:P5$AS9#LR~ - v' @P;P[ $? R1-@@)@>4ӷN:P=7'ضE@ݓտ_ oΗ`.L&#P~c`[C9h72Z`AWK+MAZ |CWoN=+?@ZҹaOLu_ 8lHbP.[ 8{ ޡȼmNWN X _ =דR `otn1lf @ p@LE@AZ pHXjE+Z? O#.x v )pC SW덖"1[ >cAMM.Q3o>!ak  ^0 (NW|@{@P(TO[ Fa,6͎zj<zX?S>z! '! m&@j `CѺ}oG qZVeniX_-ZȢ=w{ T_YԓX_H[iiW  V3vwgf Xz7Ȭk-jk Uotf. ~ "wN Kmq](חɒk ^7S)>z3\x^[\O_u@ 8uʏG}W/+Kn[p:K'@/y_yv+?>Z3o}+v)N؟{kNxi9[?@"Qb;^wxy~#47ZN~E] @9P)ǩ.TNW{zځ~dn9w.,=聽}R˫/fqY]uL%+" z-H})Ou:x {׏S}) Kjhuދg*[W(^>[|P4oZo6to>I'߾TܼH_ oAa zI Pwm{Өsы;.]ej_L0ăz7^:7F!ϻ^|~EFnw@tmz P"]NJyW~'oyBax}u q1%0H~~|ZӾ&l7oSmF/Nt P(j /عb"bV"r4Vo_q}N,U'JՉR{ < k ,A#ɷKu`E6??VG  h,ГE S9٘ӹ`_Y y LOU$)Y;~~K*Vv@jCφ Ke_E{{ޭ/'WFo6;E@ܫͯՉdo}KuO>vPj3n~>FëM\柩R7tzS*r%n~߭ 4|w?yW#a J/G?GMvׄDn/b`'Ԁs @@['[_.V bool8}"AJP?;{<>ؗhmq*xfy,"׃;|}c7P)$s$xewV?%o;y}]50聽 j_v_?zV@kpLs6xt1 ] Po X)=o{l?BU`dg4}b_RK+O/6B^]#gS@j=r)4O$:BﴼH?Y &|ᒭB|06z(27tn83sϓ%kÖ~ d#˫^7{8ΟLlG/f%8=rL7 D"^'ɀϏ3;9udcL*~ [o~y_~k<3pPȥ6s^OƉ=7KFFt#CH6w|CU >) BaH&KS{G魈^8]->`|dil85Y-Z.$ggݟ`7|@s}О5jO&N~6tZj)^ ~ T-4V8ڬў=N_<z5JH͒l!bqڑDrۻbv E7 v;k5F$ o0#<6gK]3}b6 + ]mC/<{ʪHlΰ/_]@ghv zyY6Z?uKh15xwZR$C >SolTk Wk 4@`O'`5#ȿj6jA 0 l_ 8[@dzGPqR@P@"VA|`@Xꍖ#[jZF1= 3WBv4>Z ^OT .5-<^W @:} es{~腏 [B('e_85YIT /<~ji D`?4}L_~26R}ڼZV)%zX{lcP:p^z'={/_>Suc&"v|U|C_WwwxX{AsuT(>w\^y";V[پ[|O_~Hqlz`H;vNܳ +.'Y"O;̞ |X{y,Kni;;','_F}{zWrg-O.u L.<^{}|2>FۙREkg0gegAutXlzfLзd؏7fvʯxmok {k {k/[##Ϫ:Q ^WW~'/?}I g˫Y٭ӽ^cЗ.7ZNټ%SGjnOo#C HٜW'}vOoF_$%.er >T5 ̎۵ޒmG&bOK5Kk 6up| g'i2;A@*`8#niG:zd@B=X3ڢһY_Kw]oY)$gO *FkC!oi;udv@  _i'kMj_RkcfՉRCw=:<%@d镨7Z_=ɓ$>( Wnxp2ز=lzW"Zo{ė (:6RTT"pJ0Zo"$(B`haZkol{Ҙ*Pu`бH+zٛRpׅB@oS@-z;O~uBk6E@'HoO;O~m_NToC( -24ψM۫Oҋ-N~uRpBmek ݯ㍧-ü^[R*Phud3xh5^-Qv|𔖂 = ~˃?+ueJ^# WB`:P?To>i d/nrK)!o<髑.4o~ >GT)LMU&u4x|hg鷽 UP臟NHjH45Y ?/jg[M|-V'J&l-J.}1rx9%ww聽@ )ʋۚ,|imС`" k{)8[~n~p> ',V /ٟԏ:{ަvmSe!Fo3;'&KF  %dRpP{vnKoad#`]Ҽܳ.;>LB Z "ށɯ-f9s7  I) ;.O~mUJ{gGM6V⫧[FsW +F9˓_[RЮ×ノoۖyHre'RpPz-6W^Vp| 5ɯNR=zӿiQNUEJy@P߁uh>RRpJM9l,osiFtʓSG3 E@{x17VS3]U ~ 8{|_. Fk|Cn^.O˘}ENLތ`OE_U +&K29LDoF:q9p@;bBWp.RQϾ݉;uds_{J > /b8ٛC~}?G Qog2 g [Й#Mc_ _8]\x]"B7ZZvKπ||k /^W×w?fﯥz3 q O.B^x'] i%Q|d@w p /Yw!2WT3@/@^>! 0ӆ6ie@Ѻ|yȼrf- 7Z^}b%rB6yBb8j&( 9m,$Z0fCH6*0?xjQ]иY +GN\}y:xφ<#b`ʯc=z`{=33F*c=TZN&K=gʟIDAT =@dJsiG/f'wjrpyP(Ȇs@ֵ: S@ @ @ @ @ @ @x@ @ ],-nBIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_64x64.png000066400000000000000000000021621331472757200224020ustar00rootroot00000000000000PNG  IHDR@@% pHYs%%IR$$IDAThZOHP~iS\/<֞LpAyԣ 0P ؛1ӰukNjӦMLvxZLż6iB}}~ ?p/ T?s#!|b8(La1r98f2r)v$BJ&3禶Q(X%$3:+y TAa S)xϰ v'0ޝj 8 NxQV=5G})X )(XT2n޿l}0Bu/#VVE.7+V_y3&}R_H9!hv+6@[hk{mHnrWv:j@K#Xn>Aif\xT9(W2<22v>ʈ,'EKc$I+YCC+ ԁB=XA,'Dzv7Kp{RӨM ,>zNᙤ[t9 v uFPh'eAt6u3AWNZrNg * kʈL4>FKq!d" XTFF(M w1kj9,}20`B*#Ί $QrOow忤"Lݺxg{Sa.0w1li#}VjW MT'vf>/롫C.2r 7hH_s?mrp]hA4KVOC;a夥\k?1J &)\ӯf (SØ(_ߏ|a -VE>}BcڮCBBM侯R5*.F{y̭.LBK9՛^ w wq}wq}I..H|*5*W㧗A qB9JAePZ;E!4yqɨ uHNbQ+ Je͚y'd|c F1ipDZ#3wB@a گ=9Y~N"juTѫuTKeͻk 8͠\ќ7g*;FZN bRUޑ⼝Tniv9)6?'BonqH:axQ"k-͎Y(Cm":s)쿹ں qivԆUwVk Dc(UZ1hv|Daq.]&6D&:'1,\lrx߆VݼcXb4cTգi MJp=<[DQ*kqXfLGN]+ޑ8(sZw6BmMck=5)վZ]wx1: +d}SuchB':=Ծg늽(@OոqrKs#Kz<[ Q]QN3rhn i WrEkБpm[rE{LD7+c `$h>'8bQ];e8h=&Sq^j1AA |(\k@>!|gBC(G\Q8ys((_h]Q;evB7~3B&Jؽ_+'H3a  N ڀIENDB`Turing-0.11-beta/src/media/icon.iconset/icon_96x96.png000066400000000000000000000030051331472757200224110ustar00rootroot00000000000000PNG  IHDR``mo pHYs!7!73XzIDATx?LVǟq L IEJҪSzRojՅӍdJ -!Qդwqptz)yO,DN|}{{q@q@͆C+moQjзjN 1_((s{_SP U"a/ì}@s irhʀ&EU"u\2z.hX|Q4-2"CV|!~n7yjKn2)vQA=LR43P Df}x[}:P}ZXP& m^qh:_]wh:ŗi̡6~輌zdJ1 N>U4X1wYEߵ TE\j#mVбG$,y6FQmV:SN< |27UR:g_" }9M*"tEY` Ĵh1CTTɥ児}^⚎v6=飡#Cì_C|\ :> VZ Xb `|28E|hcm2imЎx`5GUUɳJA +* ڮW\B "~To}iWEU/sԫ DfgוF2uw_9<ټguQqlqI,Țv8$lkDsɍZNIWFK/*E|Zu#slջNNȟY N# hɨ) E$rγ:F ">7G[4Bddi>tW+z5Wose "碭䳽_l*d3>OlJLAvբ{|QƫOF9\c2^M)kԫxZ8 .͇2:y} @mVN~2;{_9,5}{$,,pb~Kjӯa=7児]hnZң u  ~KUe{穉w]낪"UKDTiǚ $!UN36Ǯ. xLV7DpK'+c%U2>O6vֻ%{hz!"0Q/v|mt*nk& @" e9tGb "R3:(uBfMޅ(  A1{ <0-64t`@_X9B;rh0~W)yJd ~Bo94BHϴ{q@q@p 7KHIENDB`Turing-0.11-beta/src/media/icon.svg000066400000000000000000000014331331472757200171470ustar00rootroot00000000000000icontTuring-0.11-beta/src/media/icon_128.png000066400000000000000000000037521331472757200175340ustar00rootroot00000000000000PNG  IHDRL\ pHYs,J,JwztMIDATx?LX_LLdI`t6$@0&vmYN'*]Gv8 tF6*QL2TbI8Nn]DmI߳SUU+ޗ/#v BOxʯ4;z| ˷+œs\0Ap/x*dft(j4ȡ[}D!"Mci?T@rsFZf&(tK%8<:p/B(w`ɂ UEа:J cZh@py!LJ=x?n nsY\Zu8n1An#@, 5O7o`AC< A@:ɉB4cHw,dXy` PfLIJP'+jpS@cȲ܆ <\"/rv6Q5jɔa0o[=s8o#W'1$F $e;3Ɠ)d;CT:1߆H* *cH:sk.aǐtrRY5mP)Xǵ}K('kyh,h.ꄍIs;˶-Bkr#'q;m. m/(j쪝]e=h?D`6s'4mպ+]7R^Q\\ߝ^}ֻ~uNYSܢܹUD!md! ٱո_y :uo^Jܫ'Sq_0 B$5ֳ+6&,Ae(W݋;E)Do&a[ll/lĭYq4 RM~) {WSZ"*$"`ŏD> wq}wq}I..H|*5*W㧗A qB9JAePZ;E!4yqɨ uHNbQ+ Je͚y'd|c F1ipDZ#3wB@a گ=9Y~N"juTѫuTKeͻk 8͠\ќ7g*;FZN bRUޑ⼝Tniv9)6?'BonqH:axQ"k-͎Y(Cm":s)쿹ں qivԆUwVk Dc(UZ1hv|Daq.]&6D&:'1,\lrx߆VݼcXb4cTգi MJp=<[DQ*kqXfLGN]+ޑ8(sZw6BmMck=5)վZ]wx1: +d}SuchB':=Ծg늽(@OոqrKs#Kz<[ Q]QN3rhn i WrEkБpm[rE{LD7+c `$h>'8bQ];e8h=&Sq^j1AA |(\k@>!|gBC(G\Q8ys((_h]Q;evB7~3B&Jؽ_+'H3a  N ڀIENDB`Turing-0.11-beta/src/media/icon_16.png000066400000000000000000000006071331472757200174440ustar00rootroot00000000000000PNG  IHDRh6 pHYsmh9IDAT(c~@ `AUD200,m͡X50!s$! w~E;jÖ--p5p2 0Pf0\W*.?c7~͡wQdQdIXw8ړÿ5BV6@||ٟ/3009dP4} h'NEI200YrBB!v/&e uپ(6}lfö`׷#W~100,_XBS ;lhHjjeb ~:K\IENDB`Turing-0.11-beta/src/media/icon_24.png000066400000000000000000000010161331472757200174360ustar00rootroot00000000000000PNG  IHDRo pHYsMM!!IDAT8c~@ @%U"F ^ۚCtBdzQE /yL Yl"MFBȆniS>x |^Cߤy59X Bv΋R$KM4o!5 qA&]EVqA&+1& M6.B2x*\{l{п+i_[QE\T/nE ?|TX!}ٟ/C} 7qo^SFp_g[qF9q~eg4o.1{`K2a<>[gگ~8]dŠ;NH +--<M@XζaI v} NXLG,ǚdfeh"`- k$4F2j6H F` ]x']W,`CX  @|Y 3- qW9m $Y $agGt(9)l(9)S`, @pUf!-WN73QIrwZ0:HD2'u߿=8;:J6 gNC*՜~O@keU`q(ƒ0a8qcAC1vܦްoS16H"މޭ} 5,=rG e׷횶/HA,Pmn-=-17ZZsÀ/?KϯwzSwҧ|r,~ma3}S7?3QUW6OǾ] 1\g`(Nm&Ĭ>um(Jbn8TKkGm(WV`~]?_92kIw7o)FىƤ6Xd3q6HA;W>vǗ+ q!Ni .bI & {A\=MO X.hqGpF{n:2烵q;vM#>3b}X0Ѧ5m y%)% >00}F@#-OsN?;#YqȦ1XTONǻx>yvD[3#~uwUf⏺1*\i7c]3FÎ\٬Zï?tq`UA|LW. ꛯ{ܻ6uC/°,〟d,Ha@ӒIZ vaoNH[eg h> ۶eYk"rB'#Z>uq6fU9$PU3u:N(#qTt"F^ir0\Ž|q>!ٳ4.M?h4m4Wj?EQ3zC#@F. d.@F ](\/#`2va^0va4OCc*6X: R WmS55 D@dˮ;nwMnK.{p@VF#ީ6ztrxܶkIHh`tZZsg'`L:G- _4@^{#u9sTϿݚ&ȨƖt^s5'?.W6*/?\xgŽulG~ CWRvyﳁ|ReEŶ].2#Avt_<Տ}əV| h/hhRt~zjM:_KX`m(哲:ӭ gىVWg. :^ŋÀE C&?` le>psnqOb2G& K:(Kugl&AG ,ky`d8xǢk???3G1zbd?&\á6px>fĹ8-K8X1 Wv:c; mKzCa˲\ߏX-rrmvIN]|k B.1O){#59Ba "Bяq+E3JŽeU[R!3OzнGJ-tJ](jYԧ. UhۮyR tJ տ7grjaq}؅#|t:PGBQT߱k˛K :0V#e I:nSùS163N6M4cm;^+ Pw~|{A5?tG_e+q cKւ>hRuy0ua( xĿh SZ ?l<.Tw~^֌ڥfe$˼c7+b{vC>3 ?)-waa rNN!r0( I3`"~Qb48t!Jô/ @ U!St*)?π7N 2&~K*4"107ݿ{lI3mJ J'| pVU#,0s`lN?,M!0d|#Ч U( : h >]r2NcPXZ; ^Њ B.-o]iqMTO ?(~uXQ}2x@g |ݫP~Ư}aNOWkFuyZ%f' 6hԭ+zl&dzBd6m(Qc!@!@!@!@!@!@B BP"=҅oIENDB`Turing-0.11-beta/src/media/icon_32.png000066400000000000000000000012731331472757200174420ustar00rootroot00000000000000PNG  IHDR  pHYs  ~mIDATHc~@K@c@s Xȅq"s x8Txrk/8C\4Pf . Mvº/^}',B&ѓF|9sϹ$Iȕ_;NUW3Ms}8T|IENDB`Turing-0.11-beta/src/media/icon_512.png000066400000000000000000000205241331472757200175250ustar00rootroot00000000000000PNG  IHDR{C pHYs**a, IDATx?l/0$?#P%PP\tMtD[H9^6$l;8Pa $ĶV^-&0c3_ϧX |g?gx@ @ @ @ @ @  yTrr7k/k/ "pƫP;T 1`k =fA 9j BFB@e(@|gyp5tWu2x8 R<  l L;덖@= #`@ zXPqZX  $E@,)OAPa7Z;f#\  Ѣ"^U'; (@*  @"9a zPS@ ~@PFA)  5VA|h0HPGk 0A_P@\Wu2x8 $@Z3@P-ZVk w U5F@(\#`@D9@<@*-@ R5  Q&Kᯁ O@@__Pq`a 0^`A_V@}O@P"^) ?˫ME@AFh1xP5@ux*Om& Q Gы* E@A(tS#ȔN:ߛo_}oK\96RqksϽd) >{ַD5GfrK#2 O g7S@:wԸF@~AБk  pN0Dn=4` Mh@\{`CNC"7ZK+M@?:_on9FE_gN |S# H[)2Ѣk s#|#?@P1 lE#?y# #F` \`+k l'`@'VF:ܪ7ZF:2cDQ<h@G2p:R4Js@nUS@GWN W@L{`@S@jhy5 Bv5 ?g@7*@ ؊C9f@G`7Y{X@1,C?:q dλt` `@' 2\`+̱2`Y7+:k 53C25: ?ߪP3:P5$AS9#LR~ - v' @P;P[ $? R1-@@)@>4ӷN:P=7'ضE@ݓտ_ oΗ`.L&#P~c`[C9h72Z`AWK+MAZ |CWoN=+?@ZҹaOLu_ 8lHbP.[ 8{ ޡȼmNWN X _ =דR `otn1lf @ p@LE@AZ pHXjE+Z? O#.x v )pC SW덖"1[ >cAMM.Q3o>!ak  ^0 (NW|@{@P(TO[ Fa,6͎zj<zX?S>z! '! m&@j `CѺ}oG qZVeniX_-ZȢ=w{ T_YԓX_H[iiW  V3vwgf Xz7Ȭk-jk Uotf. ~ "wN Kmq](חɒk ^7S)>z3\x^[\O_u@ 8uʏG}W/+Kn[p:K'@/y_yv+?>Z3o}+v)N؟{kNxi9[?@"Qb;^wxy~#47ZN~E] @9P)ǩ.TNW{zځ~dn9w.,=聽}R˫/fqY]uL%+" z-H})Ou:x {׏S}) Kjhuދg*[W(^>[|P4oZo6to>I'߾TܼH_ oAa zI Pwm{Өsы;.]ej_L0ăz7^:7F!ϻ^|~EFnw@tmz P"]NJyW~'oyBax}u q1%0H~~|ZӾ&l7oSmF/Nt P(j /عb"bV"r4Vo_q}N,U'JՉR{ < k ,A#ɷKu`E6??VG  h,ГE S9٘ӹ`_Y y LOU$)Y;~~K*Vv@jCφ Ke_E{{ޭ/'WFo6;E@ܫͯՉdo}KuO>vPj3n~>FëM\柩R7tzS*r%n~߭ 4|w?yW#a J/G?GMvׄDn/b`'Ԁs @@['[_.V bool8}"AJP?;{<>ؗhmq*xfy,"׃;|}c7P)$s$xewV?%o;y}]50聽 j_v_?zV@kpLs6xt1 ] Po X)=o{l?BU`dg4}b_RK+O/6B^]#gS@j=r)4O$:BﴼH?Y &|ᒭB|06z(27tn83sϓ%kÖ~ d#˫^7{8ΟLlG/f%8=rL7 D"^'ɀϏ3;9udcL*~ [o~y_~k<3pPȥ6s^OƉ=7KFFt#CH6w|CU >) BaH&KS{G魈^8]->`|dil85Y-Z.$ggݟ`7|@s}О5jO&N~6tZj)^ ~ T-4V8ڬў=N_<z5JH͒l!bqڑDrۻbv E7 v;k5F$ o0#<6gK]3}b6 + ]mC/<{ʪHlΰ/_]@ghv zyY6Z?uKh15xwZR$C >SolTk Wk 4@`O'`5#ȿj6jA 0 l_ 8[@dzGPqR@P@"VA|`@Xꍖ#[jZF1= 3WBv4>Z ^OT .5-<^W @:} es{~腏 [B('e_85YIT /<~ji D`?4}L_~26R}ڼZV)%zX{lcP:p^z'={/_>Suc&"v|U|C_WwwxX{AsuT(>w\^y";V[پ[|O_~Hqlz`H;vNܳ +.'Y"O;̞ |X{y,Kni;;','_F}{zWrg-O.u L.<^{}|2>FۙREkg0gegAutXlzfLзd؏7fvʯxmok {k {k/[##Ϫ:Q ^WW~'/?}I g˫Y٭ӽ^cЗ.7ZNټ%SGjnOo#C HٜW'}vOoF_$%.er >T5 ̎۵ޒmG&bOK5Kk 6up| g'i2;A@*`8#niG:zd@B=X3ڢһY_Kw]oY)$gO *FkC!oi;udv@  _i'kMj_RkcfՉRCw=:<%@d镨7Z_=ɓ$>( Wnxp2ز=lzW"Zo{ė (:6RTT"pJ0Zo"$(B`haZkol{Ҙ*Pu`бH+zٛRpׅB@oS@-z;O~uBk6E@'HoO;O~m_NToC( -24ψM۫Oҋ-N~uRpBmek ݯ㍧-ü^[R*Phud3xh5^-Qv|𔖂 = ~˃?+ueJ^# WB`:P?To>i d/nrK)!o<髑.4o~ >GT)LMU&u4x|hg鷽 UP臟NHjH45Y ?/jg[M|-V'J&l-J.}1rx9%ww聽@ )ʋۚ,|imС`" k{)8[~n~p> ',V /ٟԏ:{ަvmSe!Fo3;'&KF  %dRpP{vnKoad#`]Ҽܳ.;>LB Z "ށɯ-f9s7  I) ;.O~mUJ{gGM6V⫧[FsW +F9˓_[RЮ×ノoۖyHre'RpPz-6W^Vp| 5ɯNR=zӿiQNUEJy@P߁uh>RRpJM9l,osiFtʓSG3 E@{x17VS3]U ~ 8{|_. Fk|Cn^.O˘}ENLތ`OE_U +&K29LDoF:q9p@;bBWp.RQϾ݉;uds_{J > /b8ٛC~}?G Qog2 g [Й#Mc_ _8]\x]"B7ZZvKπ||k /^W×w?fﯥz3 q O.B^x'] i%Q|d@w p /Yw!2WT3@/@^>! 0ӆ6ie@Ѻ|yȼrf- 7Z^}b%rB6yBb8j&( 9m,$Z0fCH6*0?xjQ]иY +GN\}y:xφ<#b`ʯc=z`{=33F*c=TZN&K=gʟIDAT =@dJsiG/f'wjrpyP(Ȇs@ֵ: S@ @ @ @ @ @ @x@ @ ],-nBIENDB`Turing-0.11-beta/src/media/icon_64.png000066400000000000000000000021621331472757200174450ustar00rootroot00000000000000PNG  IHDR@@% pHYs%%IR$$IDAThZOHP~iS\/<֞LpAyԣ 0P ؛1ӰukNjӦMLvxZLż6iB}}~ ?p/ T?s#!|b8(La1r98f2r)v$BJ&3禶Q(X%$3:+y TAa S)xϰ v'0ޝj 8 NxQV=5G})X )(XT2n޿l}0Bu/#VVE.7+V_y3&}R_H9!hv+6@[hk{mHnrWv:j@K#Xn>Aif\xT9(W2<22v>ʈ,'EKc$I+YCC+ ԁB=XA,'Dzv7Kp{RӨM ,>zNᙤ[t9 v uFPh'eAt6u3AWNZrNg * kʈL4>FKq!d" XTFF(M w1kj9,}20`B*#Ί $QrOow忤"Lݺxg{Sa.0w1li#}VjW MT'vf>/롫C.2r 7hH_s?mrp]hA4KVOC;a夥\k?1J &)\ӯf (SØ(_ߏ|a -VE>}BcڮCBBM侯R5*.F{y̭.LBK9՛^ wU4X1wYEߵ TE\j#mVбG$,y6FQmV:SN< |27UR:g_" }9M*"tEY` Ĵh1CTTɥ児}^⚎v6=飡#Cì_C|\ :> VZ Xb `|28E|hcm2imЎx`5GUUɳJA +* ڮW\B "~To}iWEU/sԫ DfgוF2uw_9<ټguQqlqI,Țv8$lkDsɍZNIWFK/*E|Zu#slջNNȟY N# hɨ) E$rγ:F ">7G[4Bddi>tW+z5Wose "碭䳽_l*d3>OlJLAvբ{|QƫOF9\c2^M)kԫxZ8 .͇2:y} @mVN~2;{_9,5}{$,,pb~Kjӯa=7児]hnZң u  ~KUe{穉w]낪"UKDTiǚ $!UN36Ǯ. xLV7DpK'+c%U2>O6vֻ%{hz!"0Q/v|mt*nk& @" e9tGb "R3:(uBfMޅ(  A1{ <0-64t`@_X9B;rh0~W)yJd ~Bo94BHϴ{q@q@p 7KHIENDB`Turing-0.11-beta/src/media/if_block.png000066400000000000000000000014611331472757200177550ustar00rootroot00000000000000PNG  IHDRabKGDq} pHYs  tIME  1qrIDAT8˕MHTaq:4Qi~Pjc_QF&PQB?mǚhSaSVETje5#5s=--:pV=Ũhv "ȰJӚDweBY}M7ɹȷ;I>}}ҷv;ozwE _ Msiܓv3}W+e"zP0q,&ˆCTOOffW^^H|x!&\` ދ+e4r{ t/hYS)h A7@3@t i{\e;In($Ҽk&񩗂`"{@+m2&7H; MC\5IP 4ŧK8c/7Hl(=2;#_(FG6Q7 ˢl9ŭ t tE"6dX Kq)"b=Zea=So ,8)ݭZzWW#"E΁*yHg4CBŇ5 Gxai>O ѰQ 7d'O!5c!޼~5,`qU%ʾEUvD^ZdQx(E#"h yƀCd̰[S I\dYw}!|6|k+g@c,Gar6J2 s;mZԯMC*b6ss\\G1x@v`ϑ1| 0%ߨTIENDB`Turing-0.11-beta/src/media/input.png000066400000000000000000000013701331472757200173430ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATx|[HQƿ3n^X4 |I^ʲ"AKDP=hAC%"BA]e+WҮ̬s:zp 79;ۓޛ4h@3]D4#n7B⫽k$mJs-UJЍt7ޠAr#Nr]b0\gѵ& %3Sp "&u<$(]n>VYvD8M*J ~fSޙ@Z̕ K bEiJ>Sbb"uM'Q\Rjc*|!LHif4J43F -#"h9rd,f*#9DYۯə1™(cdnoSu G(F;ƈgW9tg79#˕[>|߬l;.5kЅѯOc[+n瞥FXjs7^C^u-'0GȾvܝzڪ׹i\IFqJ ҘP7BwR jbdF ;JMAJDԲ,bTŊ H|dy%Y.hǻle% -s1 Uk{e9=[$ щ R 7IENDB`Turing-0.11-beta/src/media/lang/es.png000066400000000000000000000007771331472757200175460ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڤKA?3;u!ppHae#!uӥADN+ bu? ,D;FǞG 3=F.ί}}* B<,QVgߠە-PJ(k0lً+C)~AaYx 4Y-P=$cڲN1}kFƴkA{|n1&/r;͠Fkr8C M:DZC$J9oi&9A' *PT|5L$T>MIk0"O'֨+UU#Aۑu#2q.EJ\~`|cb!]륨tWADs* ѹСMPFoy3IENDB`Turing-0.11-beta/src/media/lang/fr.png000066400000000000000000000010421331472757200175300ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڤNAϝ]`l%e<@p*R*$Z*#bi{1m6O- ?eBĨco Obex̲4k?0Y<Y=?n Bф sPh(IWcTtVs"L6dif!Ofxu* âI` R1 LK>IdC߆&[Z߹32`Y[p.%1B \VN:S^DϨ6rD F,khw,hF3܌/y;F昷5k&)KdMz]nmA zߟj=i? 9)=-ǧ /_ue{,IENDB`Turing-0.11-beta/src/media/lang/zh-CN.png000066400000000000000000000006651331472757200200520ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<WIDATxڤS=K@}ˇޑVAD-Z6k-Xيp/Of|$a9"2;oNh)Ș8o<ҿoZ0N˱ǔZ󹱣/'g pyD"RC*<W:dD&mkd~}+f툝w.`!e+0 H3pM,€ -MYAP3i ޏ0ٝGܥ? dvE3ZSe@,iU'>X0OMVP3nP[#SyoOLIENDB`Turing-0.11-beta/src/media/language.png000066400000000000000000000015161331472757200177710ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATx|S]KQ~_VnFVMvQD 7EJ¤ !o Z%65S1ZѲ@{g靵3gyyk 2r%aB qHגM3$P 8L9ö N$pd!:0xt  #jtpAݲto$ٜ%`@vr83 {ez&H%ɤj "h%gEV d"e$6ի,/:$$1 JNe!)bPuʞB{`:\LǷpÚ(OGó>S$^P)h'z*3hj^?kw"8v0A`϶T,|HNU2gYnM=m{>q&0 &"dM$V3 (j\p(\yQ&- x>eNKT66[XU56yUғ$*A# :fOF>Дb9Yz{T6?)PrxdwYŊqԁ$eϫn-ߑ7>~`<65znA& y[/Х@,Vq[x{o 4׵qBʆ4H1PEn^W|_0d?I23~0e)8-IENDB`Turing-0.11-beta/src/media/log_clear.png000066400000000000000000000013451331472757200201350ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڄS[HTQ];ScIe:NC)iGPF$i_}MO}䏄TH 'FIesq|4gνΘT 6묽9,Mմ ,116^[Sc3^h4J+`p|B,]]t<~$RRbADA0嫪N'0v8PU^^ , H($ U[ i{ Qg [ˡL.)1- ]@E4d,m *؉6h+m $IĽ!^فfmUǛYFs0cxxtùF ݧ؉c4n1 ʥL;9E $tEix.XYXYlb!\e%ٕ i3؀Qƛɭ/c8t;xUM`2j[E`b ƊQv yr8 4 u McׅOutg 6t,xܥwHZq4V\ '[>Bml_gU.2f6.O) LJ-ok-21H<>]ǞsìD0PoDY EUK3V-znaԼliX,P!KJbߜ pT) wIENDB`Turing-0.11-beta/src/media/media.qrc000066400000000000000000030526571331472757200173050ustar00rootroot00000000000000GIF89a؈]ޔ'V('j[h iMh)3f/H|S}y:h%ّ2_jj!nh*+h8f%0tO)%H;8Vϫ bﺎ[ڮ}Ehzjox(L(1.R+oV<U|"rQ0\y7hg&Yx5Nzy\8/ר{NY5xxXv7+8gxGZz 3Wbqy'zxrYSܗ{7}Z! NETSCAPE2.0! , H*\ȰÇ#JpGPȱǏ CdK. yƑ0cʜIsfYn`ɳ./k JHE%ճ7,JTERJӯNHJىX`Qf'طOq:K],߯}LxEE]#?h˥7}3 7Xɠ +9*ΨSuݥJ˨:FG2;f98ZHd!1/)RLQ3cؿl;ENfr㛱f>\Mp;]Nؿ^ 8L} t_~eV^}a#| ~fY]`̅-ހ!s)S<$hVJ)xHNz 8=9YpUJNMI$g2))ތ= U΀%j"!Bb6d[<s7IŚN"h|Wz6 YWڼRM8SNg:ӫI}E:r48D? ] 3ʋ>.,+" l<818sTC1/ѫת+xYTv^[SST 9}sY's"~r+y~/L6*FЋC{Ck!*lM".@5 âR*VQ4{xUgYp!WCr0[x!9,ap6,Ў9Dbeh}cs:8gqT[ ATDRM##"jZ>C<@ CecV쌄Yū%хKX@WuQRBH|=&jL;CQSЅ@ ["0*Ek:>) %6KHaR]ӻISI@\"'ԐBL@ 6IC ``T?d!Ic' x0H< P6U^DRy,AVZ IGZ[4u5'=3PajtM P@B|'   U8 `hQeTn2 B9M&TEK n bc+;tHJ[Cubc eTL阚^ %F"\j6 5MQ a<7:͂4 KU7\[e~`Yi7zkڅOaH P8ZjQZrHF M Ыp'j07AM%5xºB*\Z3Y.k- ybCVCh]wI*&)4rtAD)<I$zɿFYdyiL _ZQ$IMS%o汻!mF3y/qiwgӴJ\lkդW*eu5ѝjY2&W^j ?tuRϭ†A1H4f}zFT_J!`j-o>,/T. ;xqLb3NsP<HU23dyGZ3=~MPd2:.tk2s;R&'D `Lʯ=31c3H.m`g^A1a Kǀ^ꈀx5< mRy3 +@tGO'_ pO(A\o5b$ry_5z5I*ܬ{a Ó` (VtF'b@*g_g5@w#\ye[y$f]WjdIF~e~f'epM;'8XfH>?SR{$w"0~3|^g|_Xxwpv# ^te\]Pe]dnҔ }'煜zRFwvP7X2$[Jt$0[}ǃK17PGKs.X,*4#Bt`AP(Tj]8]]an\7\ii8achaHEWws=ZK0(KxtDV{(R3 J3:ԄQ \HoTu8 QԤPi>`eUT@X G_0b: WS ˠ̇Gg|b:LxIr2@r$b8]U]Vjvj(T%e`~'yZ$ZOhВ]wqZP2c-V -1/j  ^$x#@sGX u X`Wۗ}U؅#X%fW(TI~ZenhR c +;> :h\{DEhlH)#rtT$IPEc\h]0Yaވn v"~S$Ox OscSP Ձ!{jxsE=8LbMD8y2 %רVnpPЕ\/ ʥmIXmr2Z<cp8H R HDOxe(|JvZv0d[v`ٍPU Y]e%uyP 5Xvov_pM)2b` 7` /&.w!7VcOp7ףpW.XQe\%fYP@cP`fZTnyV6(9*HsbEZw#,"| 鐶!FEac&~APUpFġ 8\}Un%f?XhM)cpG h)$<$'˲9 ^$22b 0# hDFdTEF EU8?4[`PTeu+u[~-  H'@rp8qqJ:V ZZ8ЬZJe@Rjf`bp3>`Tk\ m/?,?Yƣ*p1΂A*xOr1Vu}X3X| 3FKXJ$i:c<:KRWsz:β,0yita gja լYU0#^4S6rE$`js7F)31oY-*TtGɱc",:h/[; ` ȉմ~ sYh;`4ӥJ:3<< E{y:RZIV"H8OQ1 [e!&] vrB듼 7=Nz f . [:+.ꪼDzOUkGt#@ Ve ^=F430lw?& Z-`7#Ck.04@,P +2h׿"A rZT&.\h0ϻX .P5^p?!o4(#7 ! !l '\`c01% 7"5 ' aҩu1ukPN[Q o&33"`>\?1(,pԠZ@!¥|4*k<4 P#t\O+_LrOR=L*G<޷g[jKyc8 Pv|;oT v>B\c\ dl7 .[䋮@j|@LL=zS:j![ӬȆT | UaTeF+V^,NBuy!՞!+ g1:`:@0ꪮ@CKͷd4[HҬ X)TOPS'$M$rSMʱo:jJɹI,< tmb|4 & p<@kil ` `NŇRGM:-lHՇP W-ZR 4FeKs;YPo Yz'1o\p``6M ר<@;9,pDkl!9;GEQ !9SMMj͊PM+31{sBрi!,-]:-=C# 滾˄h)2UKs ="5nǎӅ!1] Y uӔA["oy!\@}M ȝ\k`܍@ ™(tL=*1X`[g Ađ[yEF5~T? gopOR` G^ ~#7z+,-?G`V.~L ȍ$] E`b~F/LI%Lh+>pdO .m}^/$}X+vq@ɲ18V"{cҹ ^x=Xp\pw8mN TNø'e[$2vn[*I vXS :J C220aFRCRԂ0Ӄ735mNSN:mϜϾ] Wx퐑?2tRI5V]~F7bUW^I-4f Fb0FBLW?J!)A41mv#چ5M" WEPщ :F0E Wf`hQ MrD8K4`!ⴙN{&"I9P\6-Y+3$ rqlr3;Qr!3~#"+,+(qy@ cl8*1wHy" #C[cm"s IѦ)J88W8Fp"#;(R˫eF\-llrE)<@ L'0ᯆXGG\-FhIA dgHڴ` zzP&Dl},AXLJOcZJ"gbB*4$u(70gFXp\zuAY ] BpD*xƐMzgL1HD-0LғfFiz)Eh %u ىR:MO ZS($k\scl''02mE/*?~1HtWb A bu0&y&ǣJZod5 Q(灻t 6X7"MYq{)⚆Cff D:H0DWG?yw@?8;xeB4xweYE#^S ôL)ҁFұ JD%!>YgBؤH8hf|^dE܇ĉ <j8˛^Y < `9KB%y#)6^V@e®+"gvielGH5}0]C ;T`=IC%xy[,I5S{7Г59;sȣ2wß@!Ss :?dú8AŒ ֈCq8M=`,a<9E`OW,3,H*!C @@R)PR:8"j8 6@6A :֘* Ȩz <͑%X;4N azB ,-HqypSC5`^~x`111;,ꡑh) Dk,=ˀ1_3=Id#p`XX5yH>HJ`S2E>!TyE^л%x%(q6o30gh{SF4 )-j`?7 9:TGӻ @G`?i{ Q:5d0},-[;D0S ,PpȇY,TI;n,%XiN _Z): D:D*a(.:R5SD ;G90#GG3SJ†E(Q0P tV10!Y8KgLc:u4e<[LK7`3;0C.< yy9`Lʚ*,Ͳ0x`M*P,'Kp(PtͅM9XZ.'di\h,5PDz,g|C2a:DʠA3aͻ S3r1x" HpH5hO0ǧ O« ?Sɉ{|Ȃ) 'BIL1230 Ń4 ;6~ Z,5<`>5PC`D-@hlN'EP .`P"PTaͭXh84OVܡ1ٲJU<٫j9 ]]1^4OUM2Ѿ5]3-uei|Ք&jZ_#\GXMUh՜ j{- ŝ`}d(ٯH\P ȇԋՒDɿNNƛS2MXC|\S$ g8餿"1KlˬQIoVyhRUo Ks;? *0{MLS5ݼ0[}$`ØSp^YvN0k o-Ţk؝S1 'B ȇ DIKm~2}[U^>\1Cc4&efn;ĸCm#<|elKŵB hC;4H>X>ؠxc^d`!@!qJս.hfxߔd 5h$=>tXۜ->`^hHdHXfMODRh;SN!HUKwvue^MDg qXd "0+;,(>H>@*X,j@!0aWWKޭjފګ%T3JՐc 1WCTVk\HR ԍG>=Z1G>0X`&@jlZjNX9N3NxUlʾ^5^MZg_<BW;oC?sk=Xz4-*H0HX nlP2Z^!e; h]n) SUhiz:zZYj2I9:lzփ6;RoܧFplPpopP\YNJPI<.p+,[]pO[fhSn^GgԀɉe|[mkD}t8am`AfB̜,X@pEN0&dTEqՅp]p<7.gs _\G7s ؏]ne"SS\1Bmل`ffhAgh&OHck>Hy`UHU.8n,L?ŧV@r*. .n*Nn{_wFߊV{\7Wh`q8^uLU<vQ;BNx=kHf_lI6,vy`noZ&ohIh E@Ivw*Tw2w2wrњ_:Tfxgq mɳj0?x50Fh9Dy8ym?ynJOs7OA{ [QN`u2g nw_]~ۆO6os%kN:79m1)$=NghNhg>š6_dž,Hsg>{g{.{+R-|'|4/WCV.X}|Q^=1O!p*]3K¦s vgovf>!C҇ OXIf@,pH[-,x#Ȑ!t&ֿ*WlR.]xtu3fM]/pt֩N3~:G1J:eZQU:eIX]%X?~+R]&խT-=+rƘen07Rh\ƍ[8Q`b`'O|ʃ[Ukd}X$]\ҮRL_'h1S):e\SUxf%Ǝ f+j-1cHuh[%Y!.fc98A8H<)p'ɰ E ~<#ضbK0mĽVva[QIAEucpܹ&rSrpA^zwHaXRD1\s%} ! H`4!9(AuB(!f|#D`'0v"Pod"Ij"(q#Q7rJ>Rc,j`E.ɘ"1IYEC+ZERA2~yF؀&f@w"*&%bb8b&l>h*2d5 iq邔H&j?@NQ΀8awskҚX\aWSc59T\,!K:&6,4B rRK>B,&:PKpkn71MY_*\3I{RPU5*/d.>lDGkYci_E]U=]'RH1!6s5QqQ2,("8duJSELb*TPƄئl3Y)g ",9G7p21Gym!ǩkDXES@6 >FëMܔWشvm 84*$-\e8]庞'Zls k0 R;,d2uW%jo+S^< SL&I@.^X3,(VQNQ5hEaY.yL 봿ͥ`"",p.&NQ4H1ƆR`Khَ}7!R9ǖB¾섯S=8=,bf9O$'c:䂪S:cdZƲaN QLb9щ2I'sYTa.u(QfD#mj$8z;9ґRC={у0A&(1FdF\zh`T""# rr |rrE8&ϕ]E L45zΈK\un9n Q<"e =8H=f-yAVʠЅcO"̱"2n~h =& ƴAۻ+!9k0QLT@10HZEd3O(E7UFdubՕ$c_ &: 9$#aor]Uju/D {:l9O"aQm-kLDX'nlA.#z}s]gʅ^!1C@ ܩD*AŜ=3O22ҥ, MyeTFE0/JuB$æ-Av.b|_F:f1<3 0X( ZC ok"ta9#"N ;8V01)V|r!aѹVRu xf1B]7 8Яu,iBֶ( 5z t-,yk 0b}Cqv&(I⫝̸LۆR5P C.==Yq!FW󄬕G'bLPw27؏7xl-E9a'`կk` O4#lDAYxvX]"4i6rS3Nժ#&5br i&;7'*qo`S =Ā,Qf&gF?ZC+>Yڎ/1ǭ^`E]ukrd-Tav;Ǣ`s}}9`tbs=j>$c [ ԭ k\|>f9<ʊ] $i s;qzuop<'96`tD,Qސ1シ)J2(t,壭:`&X){{,RuGOci<)GA:LlYtBP_EiD]Ћ j}W9aƛ^A]BYZ흯FL]d\_'AJXQG(38YŁWP@/L  K`|v`ǒ$̴^%̟ ZQMO ϳ5 ^Q<2-J b'@,ih<{h!2Qo,v|0 QU*[ş "]'.!n Gl:CPp0_)d5rpJkGI ! НG"*5bE^Q-DF NΉԅ22QiCm©e޸]#oȭX&!+*\  (1A9>J'M- d!N8 A9H$#@_Ԅd%8Ԅ{)dyi]JW#^YMd>¤?cJJ"N2Q$O.8-BAN7KO̒pSF vGLrAzzi十 d8@(dJ:#acƔ^[*d)bC>asa?.$ E $bxyk %cF`HԄ[}Lp[XQm0 1i6HI2gk85ŝfc$Lp$ 8%6hcÉX|k0S>Mh"]Ee)i_utGP~*'ppidMef2{ M +=9DP2dkt|<"!bގg=M/ƙC9ČBr.CVfe0ҎE'T,nr`*mJĖ"=f8z:dDBQF@P܇5M 8!ԴNl/u{ѫ{562>mz풽} $,pB:jpfy&=*_-뮢f,k9*>Foޡvmϒ.^d@B m\|W*J',뀯"f\Ϧ&nP4-)ҒoZˍcY2A:$,A(d&zBx?djcJ&o7L /NlDմ O*jDi*A2ȯ~)措xyʊoBNeMp20' jF(h~Bq9Q91 ?&FBޖK;eABI=&y2'L'p"m -Һ/"C2-ђX%zoF2e^{.jkfr,ܦ oDГ$:bhE-F(FMl ܁'?sA,C@2@6xFi-CghvNՒ}k,R,3.<2g"jHnp/ ;4X5'8,2#08)þj'X鄌 Is2m`@ DKA$?+ft2@0vA-2.&1HfD|H^,j*P/L1p,.eӄ/.ӄ.0Ts>`Crf FbKI?gf t T'`C<ƝmB%rBa&lthDФg@HvDSt Z11k kx2b2 /P4?_XcZ&>H犃Y.ND MFסkQ'pdcnYW xh&jzqn0C{-;4XX+Uɚb@б0r;Msxmx&VraK7ZnjNkM G3<8#6?oD(`6d)(|jf 'oiSv.C7 66=}k5dD1 yR+6M/P,nCӨym(B`xs,-[8.vXƋ,Lyv>Zv-¡JZ2`&,!nf%ju6luE4g˂7j//C改2Q JBV8|3$Av'{vDNM,P׍W&6%tq(h%oh?JfasAvSDD;C۶y+{ Sm-C妚0ҥ `:C9rHeW^5ԳdNU6׸sE/|2 0 2,s 2LTyCWYE' @lM@-D^xmgE`9I={IH=Ĕ8Lɑ:0jNfpf7ZdJ=֚ʽ&-3T+o۫˯ Kk,*±2&1p)#EH Ă(IJ,za^4ƖB9|(R_8H";.H!O%!AR+S+2+W34k5ɏ@k0<,lU}#Ȑ[B3"RuiRPt N;uѓH"IUVU-Hz*`]Ph;g,㻨"x]kȬX؏=v{SOg#0ZbZVI[l CeAq,AuYh5FYT1U$ w6ECU3MHu;wF&iK6JUFjXVȮڔKAcج< 4d>E-6C dc> w2t uϛ!a'xQw1zGLhgX T,9CB5d: ~cp摌yLX"Bn g[YƂ9XBY/p, &0o4\v&""P\&9_[M qv`tصn GTp'".b d[ZL,^ h) 2-U0 s e7c I/JԹ4C:!a#(؏(GbNs~b~8GMC;SK_iE a 7l?I IUP")d- Sqd%I%trϐF9)`+ks #88rKR0v },]'阱kSA_-ƻ?6l{h TpQ8yr~Z,dI*Pghpz3I>$Ys3˯PLGwc*tQ '|'^eKMb~|~HJd/s!ILZ,Frq> J0Cq9S"U5 TVdHZPCUhujF}` Sn ! a\OxVyT`C40؃֢Y| Nr XlNzNMl>?O0U"!!f']Xs@Rz6% :!);XVkZu>¢+Z6RP螵lSMV`f1vVqKVBu' dГ ا(/II*YNp"GpIKѓ)7]֜.ms^Vjv8z}&^c6ioZ7YLZvcƢ]ŏ^NǓ z~s IQ/Ћ<i0j(!3L^"C! BOd"  !#V.M~L ˨W٥@$OMnV8"6)&+^xѼ AMˁR'B$7_iGEA'3K eΠ[q]!l镲U7Dž|Ps)[3 Et;NG[r :+Ma£4hn5F,]Z`(ǹIݸQut@ iAjmUSv r#ply,h'iep}1]k\Nx馡/]sp@Op Ii>WT`#AX]tQ%v9r ?q\L%0fKgysc4t,,ۉ;.X}PcO |U3hTCJ_/p!~U1'<{pjF8E0h o⎏\.ΐ4d/ivf҂Q Dsh%s<"46B"^b&`&N'lH:(j 0ȍILn@g<C{qbHgi/`O\nJ(M]j`J.E~4zSˌ:p)>a^Ehjz@ȍH4o,. ^Ze5кm K [ ,޶LsDUd{! E7v%QzάUuk(8HX쪐c?pʰK P^l `ƼMppl ~nR-H@(2pbB3{Az#i#Cqw$*QJkUf qhm /n!-psѼI8Dp#Dm?>4r#/&'Ck*Hjf`Ǐb!PpR( 0)Ѯ  R]2Bl(~Qj]l l G.:n:lI/g&m@C {+{'V8khNiLp&O*+齜!EC"Rv,9D%GVgu 'FnIa& ׀@NXκ3 4撳)װ k9r\z я] (퉾3<5rh -8J9# u~5O^!x2ȍa4tm.K8ʼn4AͰT `BK0gPv.CtRn"#h5H6QEeu'c'x UTHdIGv$Ud[E!` :Gk1 fq1g5Yu1U1ut914 3"ݾKRXej^;-6&UTGHE?kWf cэ`? @AR5?Z[;JDT% T5S#G~R#>LaVm:FOwTHXӁZjh 9&sxA7h>QRt %uSZSO\߰BU]G;yIR)Hq4G_oCrL29⠪͈k+':26yi;c@PݨHb@ 30 +8@69Si8uBu#'C_6Cc6,{@R%gVgj-TK>RT'N׬-*i A0nP#VYIj7387u1s`dCpd 5Y-movFTM5n"^A.:5oxlWJ8_)؋:'FratEɞx¢?I?!WNAJ@?W8r9g :^ ?cq?EA; ! ,Eǐ׈J6^_?ޓQ'\緝d('hV*ẈMh"EfHtz|oDy;ِ)^JK8V.Vmh8d)+ btάW[~hڮ2I}F(e/-2GpYpQaVo2aǕzXxxll*{ɤ>K,ޖ6Wvbx7YvxLXdi{-9';WA#R}~n~X6x H*\ȰÇ#J}ycd˛8sdYQ33fsѣH$HQ Pg**իEވM?XÊ𥍮]m%˶ў?}֭ݻ(>W޿;<=u+^lI I̸]{dFan-Ԇ_ШŒqALM[ӽsy湶=[hMA6uB9ɣgtr3[I.؝#N!Së]w#Ș/#sъZ) #`]{1FB%WX 3 E^ n/0eA` ,XXh 6E}Ff@ cX+P`d2L"q 9Feژ#-ddbXT`&=}ZV_ " Ơ`|@ b&3X@j36"Hu#X'[IVJ$Ei*()H*6.3΁f3vU$BBjV(+3)cX``S;#d֜l珿3Mx{칢:f6h[H+_f)*EB fу,je*&H3#܋(QS$lF\¦ƈMY~Ko-6-J{ j7X7 |ҡ 3R`CEJZxjQI  ʝh#Y WH`Ǯ(FSK2UU ڹ16l_T{htgnlz?0ˁ3T!-`X0AGy \.f9<;z0t[h9Lr)Xa;:; 6#3kBӚBɪ3~ #f-ȁ"/ [PFxKRӳ^D g fb@~gΖɀj a0H>lPC΄MURJB60TKydb=")B%^PB%h. b|Q&f,bG< =6Ye#il 2>qa`nlSIyl`/#!0FPڨD[ 834QB*;dI|7x\ @ L4(9O8B1Y5┅w̡<BO3j}i178cSҏZ"Ef&`@#x"Sw4=JcBV|V)/Ӕ˕Zi HMH`魐ЃTAB)#y +SGz A3fvFc2;]B0|b@ll`[#%]uY/۩p4=Xw\hY 20 Pd'C{%Ds1Ԥ,1\fя l;R# !#abV$/e,0@, YѤNbdÁu;$Saֵ31 "q&Ad?$aW8W٘q<Τ+.dƞm-lG2OsōQ1;ԊXD 矰ѡ1}ClC *y!Q W 5 ҧ6S`6͙x0=6,g7L.Y5MAgP| w@Ÿi/<[YB) {n42˪/K';Ͷh5r~4@q cέ;I |&Czw8r`34Z5!5ns+J.J@ ¨'Vzhwb'%/z ,CՁ>}j|އpwdE2ṿ;1 c0˅RȁT ` I #"7Q v`6V>sv޺{͈pߪ}= # +2x!+s07 FB"^+2" 􃻅(9wpa6 5 6P U}<v>=F?2xhzȠu2U!U,"<&S>2Bn:rwXo~PF}Vxytf yhxtxd:'LB,g a {2A<A@[4 ,3mmsL(W=e w AftytV V tjj}&gf~|xΐj:xx|20ߑ^z{c R 0 Wh9)mbdn=&fSGGcg|8Ax}$ȁV2ws0h~kh5jr9X2uyPmPfnBF|*(s` 8g~O}h0|X` 狿(=x؉ܓ(>z0 2P}|~|W6ݨn 9kntx;7~|6x֋(HĈ x=0(90r71&rusqBh0#Xy/ A3 Vs wsk5WxǑvf 0HD; I:m"G",V3hcB 0~~wy-qkؘ|)r.xs6x@pӇtfFNj~&ْ )m A>C|rwDT;HP)@ȷ)V y(wyٔxogPVxy7v5tn,=+lLsqr,~bmSnBQ,Ǘ@~ƐvKճs,hIg7$9gP?9pI *J` njcHgEG;Gxysg`AextFt hQp u:Y7$b;`Qx%x}% e$Ptɑ+k' #9稤.gӧs}K0`vMs7)&̂“9.Eb!=P:(Fqn.$n6אXgTz7kZsjhDOr0wC(. .p7 w`=jg ykJX&guReR[fa3gP^p =)R`ِ # 1q{-ۭtT`lhE7%;cP` ׳@;<Ѥx]R'x6\rgF0u`))E@zytaH0=xP ѐG<10k)KЭZ 3w` #mC< r;I eA^ Uêw  Dزpd[a^`kJ .ptK*JJV_]U( bDQo :a"YxysWxQ^0fhV1msvXPtoTS{X^2`e)5 ~& _}=}]ζn'3/~*đ$ ,y;d|YnߧsCi^!q"c r0pج}_L IL ܡ|ʅ-<*k"ؠݤ *f0@P=]Zx6s^NM\-^7P .-" :>K T˭͵"3/‰'?0^2Zz=z##8D2 xƈ 2P%HB$bM̘+S|L7S)TpCwNttUPt]~ *&ɘVZmW\uޥA^Yod:H0 9Æ` ( ;"C 6)XYF~^F`L˱0n!t$4.cPf46_Y鑩L})4ft,IS)TDEJe^ l~ok\ݣVwqB_l@ʻ+جcK,)g 20B# P ֠q ܐ)6FmݐC7*( !.;,),Q nJF@,HͨUzE@mB<4J9zԛJrVS uTw" s\큌z sB$#\xt-;cCͧh\4 zba4b]I_xr vuWY 'qJW BtewJ e #l<*)7MCN̋@WcH6Mn(а&4 8F6^dF %4e[p$lPtv&19 :hT-QE;@gS03j#ufWa8 ddG)!NeduckYIR:lt8VP0!taˊ\2 ZjD \LA%. )n`mYkfÚm HփXzW5)I_!PGCï `_Q.Z{؃ NЊ~<jzˣ&w, 1>ep<+7^Cq2nU1i2R &&=l?xYqԳ D\ɛ,ڠ?TM"̀Id6*L =g,f9q&wXݲR$c0in4j=$)@gl QuTMxl` fƴc<:R4) r j$޻f6D d5Ỻ%Hi'͔k[aP7OQ& |?x%pD=WPHȄ^`\$5Z ERH^hwǁp=7rB S@ܔQ<*'5M \VS:&+Xhe`|A&>X>/yNX.{.O|%PCA% $H tM ^ oM3|6cO9l[Ҟ)W'.v|Fw_J@xq~C7^W>Z.poVOڗֺP/겥@2 /3=2ꑫ3:qihj>0At~  j Nyˈ"1?F0 p WX2X1 6 :ZA@9-rx.:5ADhˢVAaXPokxA|=x;-gpB0&[`Fpт?#,HD+ɤɵMzd+*0 Ӳ'<a /7l7l&gh/9aXhC[A@d g,7OFAA 28 pwx, HrZ #$щJ $(8ߚn+L*8t"sBD!) hZUh6#`m{mۃ8rhÍHOh!1:OXP0Ĩm&)}Їw P,%2(+*4I:/P"$$rJMb0ĺUXmj8Զ1cQVȍ/0=8O FDBFDz*-X!$wȀ(-Ц.I"5? J$ :;8z8Ѕ!6* >=/gjk3li-vFmq<` HpJ@ m} >_'Jͩz`#0τJмLøSECzJhA9,Kڬ͉lbM0~0\i;%J|}lp $l+8$.0+Vr& 8z4.JiMЄL::Hl*&gXX@P!P"'upWȗ Fl-x5xʴsJ&"gBPb),N&8m9,}ȳ 1=`gE=Mۃd$/K78'J4dٗ;U  'Y{LDT9½I.(QuֿmiRO6UR}2op13`Ot}1 %I\Uq-WA "amx+>B?N@ nmYӉ 63RDRDuJ\\R& P%76*{A CZBB,5UĪ(}a9 :"ϸ3FB}Vԟ)hr _tYD(0Xx>R~Xжr Ŝ>=|SyNğmԶ /tL )2LE!hJĊ)mYgT*>{ܟ;\`Q@lƀFtLOOu\9\M8'hԥ3UpUXN PmJFՈ]E8&27S W%<̺ 2 TtJP⁍ ϳ|L/+](Nu՟U_=$U]&hNM??Ѕ!2)ͺoެ]- 2Yb 4:`O=e]vK_idDȱ mВz6Kc\0A$>G*HuڤL}F60$[lY-K+}R-UYJcK 3`ȹ!6\˰Z\sdNugk[Mj.؋@.V;K g3MRMoaQlY^2GP@A@@AgEIf(>}^'}Rf̊G0L3c+c:(P@TRpp/30MmgW=h{Jw+:C‖^~FkZwAֲͭl=&`n2E)mj~R'TO%ׇ^ٕMX:)UiUѶMr۵jJDwQ< ڧIg#2h,)#plfl/-g-W('nj"&c12TVqaTzu`?Ռeq=FJ)}j%lnLt+Wj)MTN,r 2'2&/24Wspw_ua%2lwh—)|O@$veP"}tIf imr* ? ԴW&q%U__^cXI;\_xePFWkOv8ɬvnz81*}Co?c7{/R:@؄Cu}ykمuU=qϓ nNLΓwQ?v]? ƴ˵Sm''Om:Pr&{Q>?7tL8wlo@WҮt}_W_%lQޛo2dp!‡yi 8u#Ȑ"G G)SzbiE'y8uj ?x9$BxAR&61FңLQԆ &Z:k#_Ȉ:szDiS#Zb5b!CL6Bw64J@lPdvxc1bQ,$Jr9ОP\aQ̊tN>І29F2I+#Ub:t`u{mLs>W~ָlj}38Kmؽq`c7r䄏[L2f86{_l6ZKԚM6ѤKE;6U6\X x}MEV;,ֱg!\5^{ww}] EL A5IY~ ŸUI '2M7 O<PԱo]3\XaieM" %vq ފ2S75ގe6 f TR XEJRQe/e?TZG$ܰZ\4S6Vj=4mA1HaTρU']xn}H",$uΑ7O1Ƿwe]5Fc:f -e @z IAYDeLR R ʃ4Q̠LfIMm@ƛz"rR\˵2Z-s-:whW2nV:׍F_-8"2e0Y/ |PEA%*l"FkJ46c`M8F[d1fnm2r tx ,MD׷s,rb5 Gp>Ojcf]fWRGvѓ1'[+L 5,ص׎la{:Zѭ[|[42Msޢ >nոn]_\D wr~D J7S]F_Z_+81XNNQ vg `zһ?@^jQ0 V,K WMeEPrոrY%r[o2es-d ,d} 1MGRU [U 3H`jjbϠ *4B͛&H7 9+ڠ8o^WnAzո \@[Jbh7hӂ ߩG(P͈V5J)ۯh$vR_U2Mp ZRF n|{cz;0y4S@-HA F !Jd"19+4)Lrōm BeI؆lP2ZErt?,9-E229>#Q&Yr]}J4ks},`{ZL31':CRAJfrSvb41΁8sGeK9-l|Fᨷ7_tsT^i#D"+3a 0RYi)J)IU4 pΘx (CIqƀ|O#&A_qt֕Ʃї|g\q+/ l;'8]yK 7ҥ @aЛ'fW)_; ľSA)1Hjr:WbPX [,@αj 9j-P=8 ^^u̙ۂ"g5H>tsF0x"1.K4DrvBLXRK;IK( k;:qrDav*}UV]DaOw$/fj)6ZPM )HegI !05Oȃ7ŕH %:ɮ@v\᥃%:u'[S#=AU'\y.)NH-'  rJh;d" =\.՘Ufnf8)eLU=;;ګ>z8h\}q>Z.r3?'>|n"]_%0WRa\V5(@d5hb).hb A ٰD0^P'/zq_ 7<#[@rFX|S)Y^[Њn H/S" "YMjXn~uRgNzȀ BUJXq@`M*:&<eGuVK6~"x `e"ѕH:@%t8`b jlQ oú:c@+*ɁMO| Q-{>~k*.|H|W93k~c/ɰ4o?~?zKdnZ|r@Q֎?M\[ LXiP5y 0ֱVEhRRxCŞ5A?xC+H a|\ dkVqX YYWS4~ (\So ]]ϖ`%W(S]\W`h!= _܉VEVtpR܅ x BE3<1SVʑYE_`@ɖ C͈`E U^)HCVWmXOR_T@)Z< 3\qLwP`AA }B@+G0\!ɡala` E C%`C%d-DyB\!ƊM 1HD)DM]8)P xIvM57@UEŦ(FT|*>'| xC?hU`I-Pu ՜ 1z !hÐT(Ի}J" :N$V)+$8!I4v5]R, I0JV+ L? =-ޢ00CC3]~`6,#u%Njd'J)]S4 9j7YbZ;4 3WUxC.T 'i7B+6߶i C><0pC=EjZXΙ 4Uyh6@\95܀_v"(J98 &M'?٭!B(\PAC*@\@d7#  gi ܀ d $mV=-`m~m&nʖFϦeڡ-,,xaEͩGK9c|Bu" b@;聧)fT ػ&ngɎ.Ȏ,Jp] X9Nr ̬N0]йb  kn\f >+>_AH  B@? D P}dP?TB8@+mi$BP]e'F,24z>ƈ;0*x (!.n mϮkq f.>6$R@+ 8jҪRmǭf9,`Me\?ƾmǾ>LޮèW=x] , X[Cnj*.r.|֧,M2("3|n?3+0 왚)l2D6Į7`Ěd8tlA݊lQ xcA[ `nf޸ho onO.jnn:.ԪΪ/lCzh3,@mGRl:pxb.s1Bh\K;Ej}p0&i g>^O.퓾0~p$-ʫrvmBm*")X%H@py3}8 fْx^ǮB(-v'ƞcXޞ݅).a뒎0;"ߓ"qnfnRh}.1{bd+i*r6!dg.f”dr8c(7k惟68}J充DN̪Ͷ1. n) I= :^+o aMf04ݎ^d7S, B$+|26w3O];_q.ňlIc@T,Q3n@S mYɰpC1Kv)/^37(TCJޒZ@ ,q.q>xg>n5Lcd3c9.dZ51.bo)|9.2Bp?tܰDwLZeڧG A : B[n_m,1]k3`On1D6kIDnlb \rQVd{R-9ufdBwx" 焏ch.rsG,ɦ[Gxڮm(,)lLڄmCʙkO"h:MvR&^e 2xgsN?(4loFs{p+qggr1b,md`S0Qs*RjWe7:蔶RCRiTx8v69CFd'[v`C|:Tnqux6s7:Pr5TC tO7u6u,`ʑ/I*x߰y.B-yB6[I.3|q)#vY9:(B^ n ;_+W\oC0Co:hzsu8@+ ԤP3w#*'K0wgN@ TgizuW.mj C18W0 ͞”(Xđgql_OCKBO5g{vChZwZ70xHa:}K_1sx.]=Z. A A (A՟F>W8@_~|:É3-hh71fԸM H7dI'QT%K7N@QgJʧLS8|*P `QVBL5g|C 9)^P3̀'Mۂ->- #ݶt +[VlVn50?}RDD@"GF1/$AR՞,uW PU 8ϬsTjh>T()޽]Xy֭}oܯ8PP !;4#lp `W "|,0(|;*5Ԉ锟z*aRpN-+ NF eQ\gLiWyX`̠('l{XNzŦl%&gs :<C(1] m~[vI;Ի]v] 5]2qkSNE\Od_ML., aJ<<ЭI1H13&yK&g{y]ZGԐ(ӍK]u<=D,TD:`*=5{D9t Z{VOl c v%KX($@SUJT lX d\@ FM`.89ksæ5y[(H pTʇnh@) W`RW1Hc 2?(w*Rbj Ip@J!r@8|(ivV5Xk\ =` PU29=h%_Bp= -(>-N$'B5PPYLRW&L6tRY))+|0Ճ2N=.B (z@/ MBH` 4(.P!CTkRM0jxiXwUH+W $7A"R X )"z:H G{$;K$Y-U )jv&QF*BJJ8j%CB!S$b8BYE6V- 8e# yó v'WS .dMW Wqe>v/ LXYႫ(x;gguh C*WZ FpwDMY@V\' $<$]W!:O}HUDW'4v;$@+T)5 ' ~6 m&r;rYʆ K,X}e[ϤvdAc@1E>sRSNf)wDck{C804RVb]MWJC.MN\q4H)c{ UAшf=ᐹ)FAsm-\ׂ~b,~mh/_EamI 5wײP\芶gK?{7k`ޚ  B wzt>FX$͆6g'8LvəTPvRQ[4Q\]1Eyb='^8qpAdEY)U{k}u`Mj)43xh~xcUJ.w8,uy; =u<_?Cc0-r}ՍnrӸ, h;pW `7KOR osl*QY?W"q}R9;D={p,0~?P}E,$tHIH{fq]+a4(7 FM,:N0O. P9$`I%} Y$Ve0e! ,׈I0^_?ޓTg\+hih)޷Nh(FxVhQhv؈ z>}*+9WtICgKL7f':X b[ȫ};dڮh7Kxlۘ64s//hhGo7XSxPtG4Mx)zP:Tx],丸שD:t7Xvx,8hzH[qxxYrZPޗv~[W1~zhد H*\ȰÇ#!ŋ3jȱ#CFZQHɓ(S>1B7xFI͛:⦧8 JԡN>{`Tӧ3Y藴*PjݺRVկ=rKV`Z[,e M[طxEݿ@ K +^0t2L/=R0f̲4svIjc ujٸi`qӒs 7IqÓWd׸(+pw]wų>a+ߩ3.޵.cƠO/|wُ_|q_|8z7C*^ 3bk @uid: ИANO>X x.[:TE"<)QvJ3̓N:dDGsąڥ_|x`I.H ]TʓAUǸ+RJ4\"u2<@!Hg„ȕ'dLb*`>4?r *GzA'H?c $RlCy0uc(CR>9F;qOHsRV2s!1MR e`6E)C:$/ç1)JW*T24F $rL1Б ұ'Cx ]KW9T,< IՑp.GABJtc:tCbaV&X͆)Y4Ju:YSd_<V, z24xOZesv>tͅGFR;,C`5t Ɵ ۓ (:d/A, t|xCؓ+rnSir\6p[Sf@P_D&F*vCu 'L#OjT`31{N-a«H IGR ʄJ\f4<ϋZ:Xp}Jcv: Kf8e.I.8,ȾB:09d50 ubfSixO1\ Br&A 6 <.^[sE4eݚ(ptp\Yc$h :vU Oc u!נ8mB DŽ~⌜TV[%z63>`Y"8@́n(^8{omEq H(<.[Ŗ1(hCn0Iy4)ߜ9d`Y<x&%&zi,t(:>$<ܢ;@f( ܩAv WW(4\!* {@m)r*@!и$Vjqf>0=-Jڡ+X7B! Ӣ^B܏\CEggރ;\[?]zOH5 {=Ne|ݯ$! !cO9/!PT.,pW00+iS~[a`j! #\] WZ 1\ ѷW'k` wŕN:  4"0 6 X ːh -\i,؎*9+⣎ `hxN`^(&$\4\znhxNB@ui. y`l0"Yenc\(y89َAr2#w%wwWŨFWFOipfڰR]yl 0"鎶6 8(iV0 iՀ؎<)=^e=r!x)K0x)axYe}Y;y[ ljl0`"ََ")iwyl!\i 0 ` y9 tS f8 gg g,WY)$(/@.!ؐ͠ȉ :i hyH  5/ :Y+`Wg6iZ{g^ԧF,w~|7hz}QDE[COpW Iڜ éɠ W  zqI߸"!+9@)1YNDƨqjR~ETOt%O>W`!+ Z"jYȩ\:.iJ-VVgwPj:@Ji,| b dDTDQ ֓֠j YyM V wٮخݘ.); ezOUi}3ZzPH`G,Hbb*GToOj{QʭN:DʩV0-ך6؊ :P rs6 67xpjztB`Kt5z d$\keObgW u $[0x՚z h /+\Pݚ.钞 )Pɦ Kx ;%d3pR[/N `Wz j ;e)h 6i 5gɥuʒP 0fiz/ظL۴`qtJpT%ZHN_55` _lߪVJJ *ghII|';XPwR0р) :Ʊ.(Yttn6q ۥ_\Cjv0yhiڤ e+㪱Iț!)h :,DOƓ0$ 3dHfF,ZB _|>T;_U+i#W Qp;(춓 wl^6@O,s +Q r/~lJ3q7P-,eP.V\EO=R"ЬD|,‹ +νXeZ <*"h RD0)"|6q\舘/ztuedp&Z티%Nj+y ίs- fm  )r~sƆ=&OGpJTS%g`ͭۺg((\a5}lŚZg Ll` w]!%r+Ic"s8‰[NVhjtUL/|tv6eդֺ|w ;qࢌJ߾b;W r@/P ٝAum`?$Grv\#;*tL{w%K'AbO;:% U 9ؚ*VyW \ǝps+W r 8 "$z ٧t~4 $`q.5|rjGgGEGg:GKUDUYE*Mn\O|Ξᬩ: %LkpU X>n53#L*Z tëVM m$_vWY@0R G.{1 X'0@瞨g\<+ ymί μ]i s mʝ~߯0~cReѰ4p z z || KM3,m e wp&u\ WP=s "%"bVo\[|CJbN̽ۜΠ^\Ӫʯe00u[ E+p}$@[ @0)@j ,IWDzGG p'\g2#N%9#a"v$>""x :OҬm*﮲ 錥 ^;iF]ג.o"p/m # sI.|^4qNFDVVe1/sU 1w ՔTR3O \4쓢6'b;:qVy=^<팜G͘3'+˖YaC d6yޕ˒%Of086X71<nYAcEŹxI002 dgϠ@5z #R͟(XSb֫!Bi@tNfÉ'7kš4#l'š̲ԮXf$ͱ<`lH\`A'v̆f AH90gΡh;Qi/(vJ =-g|Ԛ%48+WjyBm#@B< /ꠠy(sb36L$DF(*,lFKSt3yf[F4/Wّ?Ï;)0`rV~  Y<T(#sڪ+)x,m ij\n"=m/؈Mt NČBk$k `LM3Se3 IGl]]ĸ^U?x!\郅sUdPA OQX(Pt:Ygof !\yL A5'[ eѼ࢙( aF#Q>Ɔex2TIx4.bB"LG@|xbPALE'eXÈdS c-ąAPvRq5j`<㐐g0pg'i8UD\E5*9o}2Ѓ P-}eDy` <@]d:`c6xh TјzW 'H3 `  i[ xJTը$>T'S !tY@ ,EUfq21% 'Rj4!mv!HIfF@4L{9(4StQJB)ȹAPDr>ZKgVp(P+ d+D;@09)b)RbtZr3̝fe ` }9NJ}6 ֟Sia *(d d[/ijPCҚ[@p" \8C*.XwkOPSx=hpl2c7hd=?%U)H \'0V'VJG BL.<` ;`)Qi(.Їf`Fg]YBọd.!BQzQB%ADlE=/8Ə3*դ,%gʆ3M%^W%ӗقC\( \31EXh@.t 7:dIC'?azPi_d@eQhDBi U&Td_i*[(atòDm|\hb&AV#k]DXy$yIm6 dl=4X4^G6J]%Bx.w\p,[*| ⺁%9'8ԝ=)k62ۣ8TCqyyCJ \K*!UW(L@S(ӸQ[ [0A#389t<0ڝBSvJ )-n3hP CXSI52(CEr`6@P.&0?&ҡ<'[aP3ZljS(Ny/0!lTh/Gժ*}= ߝ)mat(\xT I5`OQP(Cj &jPe}.: ^µ9x9x [T8(^B#ͳ[6P@0^{a#\ ?[3L9ىz'1`8KP$_ 1Pհr(<HҤy:i[%r*'* >4=1pcc 5805k+ jAM$2H; %pwz'<;E5 F;y .  6;z94hX۹Bh(=Gz$ tL1"H!#{SC;J:P' D X4,98DHm BM#)Ȁ4*9 r ++ lU+eRe7T(f )CA|L;(ȽES DH|'B/=}0)#d1Kp;0 =@Ra?0 " +R `8 ȾðA ͘/Q-S;a/5}Z/XkzU@ :x/:_"#PwœԸTɵ<0^Fe/[8(K8 ڻ^tauD(j6X[}ȉȘ'0KFd2I3-I8mβ" +˼t!Vbsph R'(hX9P *v±d=W u;xg#VQ90Qk0QFW<'לW^GB]#pk~8V0 :Bآ-郏'xWԓCHĐyP;PO\ W]W}WE>YY1WҒq4˳D$V-%)H0:ICTͳ*F˦pAfJHtRQRYH1ȘgcW٘}MU½Y9M?P u ;b-\=x}`b Rr:;IQ@Ht?ȀS. z$!P؀ui 1!T] ` .S9"ٌ%S:a(,lTV(Mp9>5$ .o4 `$P؁ %ԉ;(SÓ!0c &? ^8U*͉HƊS:S.H)`>TIr[ 1#C'*i` H`MǶH  #XYW?`nckVʈcH:*-t"Ӊ2c@fAV ռ+Ci9޼+MAnVFii(RF9`X36 X2Tug0Iaʆ;+@"(Li+¯-sdX - CTK15)I\pq6 |Q%\lٷ$1a|)c'"g;eGg_F`<xhz~PY!ɑȅol}fRVVP 1(@oKfۉ` It|(TN,$e4znv~gjƻFa~2 2=v~B ^(]chqt]]r9L!ri X%Qk<pXEPپmeW`3n]n"D(C(Ҏ<<ЯN敩+0^m"fA)ZrD#fnfFgO[s:$^@ {\87VEVnno;؂F%!N{V=}8eE.]mPiLovrMn \ѽ iz>\~zne{nj;@vjv!xf>)$톆Zj< cj)SrEdka@ rA䙮[fS]il8@n3p@o7_puo~q;l\+ȓY .s؇8y`׫͈m<#nqitPտy upTWWn;5gsYwEXF;$sKj=<ӾA>8|@2(e0ZrԺHnp_yw9 [[zpYX™[u;Ȅ}wveWu_GGo%rd>c&d=}hn44T+{KeL&.n[M$W`]YYNuwuɯZ!|VHWQjIeC }(F/G&K6 M84sr(7~qRM]gVHHnQTV)%R_ v_c%썇^[X}{G)~haGh`CX@nAjp&vx(G#8l$$ۋ,͔kR)8"'?IPaWaXF$S_a7 xYrѥeV\_~qe__eئt^Fʝ Af j4+f"/^*&tn:č9cs [I%USF%eD $XxY0,¥B il^_aQ"眤|J&σ 94@h4#NDl&I/>oO=qc\6GJ.F=1XEnt3T1{GJD/pN[\z^_:Xih37S~xgD! (( >4ҸҡӡP`՞fԫ`/^8M&8ɿ01 ^$Xm[V%9Oڒ>CaWR9 >@W+ ĜdiVTZd6.PB HDlj)Gp5΂ZTfKHA[6&)tV~  oS(4)ByTʖ:HC!0DcPDJ~LzOzO}@JOrLl 0 uDַKA:2)v,:I`h]e14<2PLx"CMq ^6A2P+'eBX[򂊼iK& J}>.l`1`dGKdK !+/bpOIy1 Mإ7 "_d7bc]3zB5oOiM[ ^>5pa1"TpTJ($+K)ARA '~ ,@.CZ]"dœp^O6Ӳ[d^ /̡hIP@@Q-ò nuG𻌠 WFu*IJM¼3yee,xȽÅD&6hӝlŷIu8|jdɔ'dĔ@3"dkIdkaubIpk3_@Hp^ {γtf*-GjV :έ<{YnmEl h+XkPS-O. 6k3zGɞAY=9Q| Q~QhɜWdW4n4|}UT!|mфpd?CX/fyF%<!y {ԄCN==hQnBB34]IKxrĠmAV܏Qe )(_ݠ^ݛ:KE5+H^IrIgƿqz`Y, ݒ?9POE,hu-_!)0 >F@E+(] 4HlFH-bQ_$9 ,V+*!  [m1H=^#!RD`p ȁmDzbUĄߔ9 !)S͞՞c H.b0ʚvHJ`kÍ Ćg`aRlL6^zl${T&-ޤ@B0"+$#2ΒQJHFY h! 'r!!{GS+:BYbGb잼"/$ a#A_#2*WQN@I<ؔ G~!c20撨^#)V=89`ۑeY1',Mʥk "0B2++AP**YaC2$Hh@Xz5fcfəZ^W$lf::>:>,ڀgjc+k/̄,amJO2bKC%~Β^ԐDDtTv'bcB(^{XZ ˍ%Y x^[vjI='@#FhmeA8_j%_Qp\eꕜޣEey[0f%=$xMi鞈&k("B_@,@m*0$ @xU#,Ufm=9!%EY #KJUzi6d}i M5+id0M @e`:gȹ&)j*N>*Ej}g"~qj^NhnE]}6'м+h>~+ñ~JĪd@Dc;,(hWE^}$\ajmij/*OHb.h2\k֪Q*4U(@6{Wa`JAY"iަ|nlB:*䥩(D|mˮJΪȢ@M%ERj[D9(kƜA}'])i>Yi=쥒_-Eb |BC+\,~!jBʂN%Ex[ iS),>'x'0>V^&Z|V^ m~l?Ƭ^(kոF8%TzPE띯?a&,$]~'iJU1B;*o/jnvA,̪>H«)jNmkq& ,Vn@Ŝo]E+0%'Īt@/,@2\^jCZRcПr{Aܗ/nrq0 g\MBt@*!k0l#$ƨhl4e OȨ`)b .nq&VJZ?l㢱'['&4To^O6qjB*od@hC HA"+2E % ͹3Z22w a&n'24&@$ 40'+*^PMDJX6/opp}>@="/% i!o4r ,Nj3`P*#8A:.op"'[jm2"=W+o,k"AФ+©+B KgFh6R@";KL>&&\C P=OpJw34L3ʒ麪}Npn1ҪO.&PRg..!6PU2_4Y|3\65榌*@]?ұ^K:KRC .kCakUVT&X2&mK ]d?BZmR.:|'PwX\2\6V Fkvu!k=AFKn6kcnO6ʜ&pfqn|/|(䕲*KwɺK+T+CȿDI9A!` 6>vHA5{wpnV.r庵'Dwo~˪ز:7ql@ _<> mJKC6o6g_ طx6b•l)냉G_1m?jnh41o^x{2?< 7y䔋@w[Swn"q,o/tK Wzx@zLtV;Mk7`ߺgEkVpg!zvx6[ o^J BN;oB?gW-c0Qd۟gH*R,hju %/}HP 1Z?^nOҞx'a CE!hE!\HDM+KK O!AJ@!r&̭X48 N6ʢwhUMe6,RɌYKDQd5OR6SOdsnЊNJfV8XpaKęXTK-IDA y[^vRH I(ae G6-F%D XP;t6E0d+)LEp4 5x $c3t3s NoB@$8I~ =hE;g[S}  !}:ӟ16 Y;ӐYP1OI3@$Htt,d0nt58~Ee%ѳcǒ9=TA",}TFD3`-%JQZrź|ɳc+UX=Tk@bk)4[Tik}3> jtz ,j"S]*@J} 8J+~SEd!SԀ=lLŃH8̴1$ bG%Yomnҋ&pE//+8";88!Gar!EAaz¦DŷŔ"Q3ǂQf~._b]$0ZA8GXA cW5O&\0482z@ ‚RcC@N8% | `ʼn°Î@"|}N$d"S`qKaNut`Tn="aSdXnC@֩nzxX}q@wj-Vh!$A!D@a"HʷtS a k1?^ ?M -ҜlXB-`?Z։ rQk[^8x`y 5Bh},(x'=)D!ܣs@MYMa;N5-EOQ{z M@xfRA,5~s]qmo( ԶU;3CVҔ?@wS!!p@?찀SA.5{PHv [CRF#T( Qo [ԭ 1 U1d|v".w?˲MZs-) C<5F{R_#$?Մw.B.Hkk}ppέ_nJBgMc qxQ1$ I/R3Ըp  Xc2 ?>1!֔p2'Dڐ3`0% l. )9oq(?D1%Ġ0 %SFuS{X$U")0PyUɈYHؔN96Z<*ט Y9> 0y;po)bu0 b`ֱ.[d6HPJ n8DS3ŗJGQt;PJt07"p7$٨Yи<锔xxxYY^0 Gcp@CruP}`[# 7XUHGlZJJS{) 22I xB$JZV}2C ^G ʈح9"x/8 9iyI Lϸo@Pzi"u@b``y,Ǝ4A' MOy9㐗mʗ?OԗZA'n" ^yںꭆz6*.{<: `ꭙ:pc@ ^+!/bp(%0 0SX`{+֖2q'pSzhCkÐ!WXH'"^U^Q@L 9@Ꞥ AJ~.гQZU 9K 7>˴M; P % [#hi k`!DJ6ĶyykʦziUZQKID2B1 ʨ0{:K蚳* *: @ ZX #B뺮3Gz j z#@!Q ;e*D Qр@YUHLԻvF .p 5^uɐ;Ú+ٲ7A'$b)Lv#'@( N\;@r|s|IKND {D`C P.,xc?GrJP *Z)Z9kk ۸YK'\(c@7 CGp( < H f{AQ_lSƽmZJ>H2E2!C}" >@l1c=1f@=P6Ti<\\@ZHX5#"A6e+)7Tz! "`@hyi ~)Θ")rRn*)'ݣn9cf,`XQ@h\ra!:ŋiO"(x2P5PKLB']hBRH,Q$V"$`$A5#GNqd`{qG6%NA$`)f=؃8N▝GхҦF˫.`({*zNUY2Q/>rCS8SϊpP=(LAM:쐡*5zR 5N$8E qdqqbwrE6"Q&JfXa $)?!yI)X]J21S3 ">?od3 zAP=cY~%#6HBY;F%XVmYpguu՝&~D(`ڜe $"(\NoA碛jɭʮnC*#y ^DWm8[0$x 3ž4YaY ]#!#T=NP`dwPUXp,E#5Pǀ++0 HJۙ27ۑkNso1) s1fA/\p6 M!pp%C ۈW4a 7wĉp~D pGƬ "hWjrΠЌtC$ +pk-dYG(;q;݆28U'PC-Ƒ ZLk%u8(| !QF0N5.P [DD!q,!KUV?#@+GB8LoW@,skSЃ$:!ϓ9)2- ļ &1T :/9D >.0DT&Ni)DE^RʊoQJh8 %ZqB q0cl]A7ttiRh:{^dRn-6=)-P SYLAdԉ-J!za3Ӭ4q@D Ɣ s,FЈ$'Tc(( uA >) K8 t]570=~)Z3EdR)-K! h4 Aƽn X$` IEa3~3!|γ,IHiim,KGVLwd$iƯF.  #Wj )S)Mnw;6Mq v)CQ0=R% qQ첧xYK3Ȳ)ni*ˡ N/QSɆGZCr(UEU՞[e-%y!."c_\?@3z[֭̈oc i[mY^$W>}UFd`UJR&ȕE)"|@d= XG>2|20£ (C>xEcjc<(&@j:q.~}4AMe4ߙZA"n?ܪA2"N!"J(Q,7 RÂcWYxuga[ImiߒXr7F |Y6P 12lW@MAݾH8,Zm@7/m "M=t3 y: PRJMxH %_n+9 7SslL"* 4S!W8+0V"{]P'Y!j-_[ {t ^02@>wkҒBj]} c)jyu LdWmu+^JU; S7 -3 Ax1y[+8!+Z@1):o ɏfِ:5]+C#[+GWxY0 h&k'єHq =$J0P+U B0b@{@,[ ꫴC f H ;ÓI"ih[G/-2?P]GY#tz$!^XB& BT!Dz0~37@2x<28ڙipj/LH q6ȩU(hS4 Dz*=Ed0z۳)BL;X\H 8H !i`2Cx11p3]+ )i>h AJgL eAD@(0@"LL{:?t۲Iǒ(3x~Q)!!|LHELxѵ1Ȧ)k[8h}YJJFXeAZ(MSI俹2,+t$9Y0x2@<ֺ8|^#=ܵɱ|8*u\l}>; Ka<*+״ȋH?P`ZRsGxRzX4Ɨ < R;SߪX@aqAٙf5T3ӡʃ:ӡR>;}#:4,FDG"RJT~AG^8ruAmDZ鞆QrL(>W؁:#G0ʛ_P<*}d4̹ 4QLȃb52;S5:hD rs#3H WJ u0^8" "@ )"+ur$;*5w`-"A2pz@+)ʠg,̑\XXRBX|r2H!(EŗgTTMd:H uU 8sX*H3/ݛD cUX#`ZZ"3Y\4_Q69iebeX!0bz;EX!ȃCѽۿ5'LGVq aRʀuXA0z@2J4QcPMAK譑W`kYzHy„zJȨi A{:e[%rB^U$䬷̓E۳^!^edOvZSő:0_P8_d '%I2p""M=q27)*2`2/XACP"$:ҙ93`^ Y=cS^D^Y[Ϻ^>(>8 ^Vٳa\ LubQ\$k10 GI9Y}ahQ<FV  G 3 F T 3T7[9ؾf[= >g>@}FB\U-\ڔ&OV+!QS0ۛ+MXM%tPSp"wb`533+3`i#H1=9s: hUMS fn̓^sb>Pd!iH."@4y%d0axBY Z0l,垹tThS Y^3;S^z~ _\ffC Q> >Rv &mľ黽=gr.g4"Rt] IđH("0+e8I&8EB Bcc&sQ/q9)ʏuE ACHހ ÖVnlGFig )R|`I]\'"T\(mF;"Z *j٦mS)3~ZerȅcC]cLx8C)J:nfi6l΃v΃#[ar d.A#E_R\BPp)DN!@`ޢpɓ,*@, = ܑ%vn~imOlRC^q ov:I:A_jюy.,P j" '[=auH Wo#mJ_3@K']:S܎](*uSnUM@:X1vVQ&vnl>>q>7gv9hx P@m_'|¤#O(!bS(h73B[<#fwYpjzx"07{k yGyPq{ߠ{p_A(C(VZBMV`Lt&>6D'dÞa!hl!8Yn8f{D0'%Gq>{'GgjJwj8=@G"y B *ji=;Vi!0>*j]FS[Zz# !fQhxI*M'SKS KBMC 9s|\Vwr,HGl VX!t3 sQPz0(W}W%%2BKj5m(m>mg|Sr""JVWYRUV*3xcvmug@ ߉gW\}@/|da:9B]e"uQ ֢jZ54ӄsNa}ŧT:X%YV7NX\ 4ڈp?iWyK |9N>C(ؔ*j kd Kf 'ɔ?̦SLp6qFBqoGR%L\|-zB3hc㍫pChx/ ۗ{# (ؿ=&pB|0כʁ䰱.@,LlْRHĝBuG spW)RR͢71`Xuu]pDeqK.9*B+*EH׭oI }&1v.&qh[mwf82S'7Ք|2 D|+ P #t XBHG_K*N,p:YK摋6%ik^\onͳ`̠ nB bX*UYt=3 _#8AH5D@0ȿ寈K$&KGi%pIdp .ʃر`\"=Ņݰ;e4S z#(4e"!֞B1VS p?#R2#$LN $lsSrE m"@!'8O(K:x\ŕbτ:;G+fA)iCcyC8ڳŒQTqf$a"T4WĆo$ ޢҭ xdB<8*eA P(;?* fx㙙pxH$I릿aRaL$:Iң*N!EP*"AeZJXmi&Zdah@+)B8 c (z5caw Y6DJb>4|w|E\ց1s $$ =D@Q%!q\ыjt (8]Kk1y"ZYC5A;LhZbS(G>h! lTVmE*·=DH` (q̝⛌ ]ɥ/Xu3Mp>B8,x!Qf S]ս!Kl0Bmj!_A2 !B\)ac1aTtM*e- % ﮂHC_5S}V>23R`[2;A%&urIpv%@JhDI:IQA#bLH4a&J\t9PUeoxrMiJS"WЈD6jK"fV+i SI P^0QM Co(S\֢g,lm:ׁ+8ھ-}?TţD`wm k1o?\Ԭi=U&/ְmբ 4΋|!v5Z[f/<>%NmdR Z~ Lrfh^Sjҭ)- 7o{}n)f:׽(6iV}M6LuT!Jo2 $={GL>#WҴn- Dx7Yzg.f\8iԞNKc=x x6KNk?X-YNP'M%&1MhdwWo9.!@̺ryT4e+~c ntkm#|j#A9!Įtխ'݃?p]ȉ(Hٌb \$2۽_0ӯX1 U~Wi{GɠퟓR(1_ù=1p2 DL:YI\Hc]YUئ[lRY9 h ۲%6 JULMQ2C 0D LU.H+]xXŐ} j!~1 J !5`)f- ^LTO| %^E9b k dA!UbYGP"4y٨Iy??T0=L Vy޻ !"z I>%ސ$бP}"4RLME`Xq !MDW8͙-]I$ͦF@1K ]S+?daʆ$b8:q;IMCy+D"#" #"$K^")G?֤QŘMe-R6j1C[ %]M^]IY =ŝL+ԛEҤX#б!ZaI. |#-@Q[-ܥE]H^S !Z$MTc!} "!r֖fnf&5hrk]C ?;]8 %)[ aguJece&6hCs:gh1r]wr#wkl1k_.) e-&)ԆQ^QF d }Jve>(D &1$hw. g8f CeP *%x h9IQO>tqdqe% t aȥA%j[[A .Dl 9Bqʨ411~i~FiAZhx)_: *)bAij LSЃF^)Wɨ##!$>3*rh".j& 圢L%rw&4( P|f}^N 8@ :d5IZM*N(V?|ô(&ž O=@$ +8D80+  @& ",4MQguVY(Lòvڪ%k4~F>WF+J#W`@,’LI1>ٸ5N^*drg Q^>LA+k=PC«"뿒}BX,n&C (ޥ-[j6vƦzҧ1=>(jmƲb1+,x~F,M^mLnjJ3C\w*6.D. L8<D. *&,ՂB oM81x1yn(2V^B"$rx6ijؘ(1=L현=0%nrXY ( r^J6^i[j+k)_R3CRa4̲mkrB0Z(*@̪6i w6RY(`)2t0Bc(x2@ӡvnVҺf$j6( p~'Z(ޱP&L31 LP1pi P騥Zlf0i#K tާVmӪ' p)x6wg*jѦ4?(ׂj1.8o'"m:Bکj ar3361 MU63 A7)ƪ3j;R() 3rr+4CiN Pr>2 Â':'[^ #0~s:t; @4VtsOA/,F[+ji /m!i+otu64LC3M/@;Ft6V!Q{riB5:uScHC4´[/=`Vo,4Xtжxn e6Iq_2DWDC[ߵ"/:m-re74yS775*b;K<ۏd6DpB_2JO(k(`?r6*E;@d2e573QﶠZD_6p(O0>5ĺ1vxH{+ogwE۵w5 H^S7U6_WgX[vsM;F }o2wMTsOO? J|Hzaq[I'`}[,at=xqq2h]&G`D~"9Еb x]Aΐ~ً?޴孨$m6)Vadmcn{ V%IiZNƑaV %pʙ hn!(a2*_~#i:D *@ DqQŚ Xn:ed@Niߔ&F`t`enD~1 !ۦ$9&W8ZeDʪ nADeHǂmU-;/WqBMdž .wŅ.p?8Tqn 5310ڊ&۱ GE&˴RTh5'_~+Z呼* sx3-ԍ e諚T?t\ ?TWߧώ \ ~A C>=@Sl%AXuE3Y4k*1 s'ۖt10|]2 ʢ&5BL!01NqƐ|@lDJ3s6 Rͬ%`M-F:Q3JQ%Ve^tP(#WQ16hEkY v!rP*-?% ]XIbg)5+6',i러E`~0DrWh eo5۵ eSS: r 9^!X6"uŲ?!=Ji(k63a yX[> D<JI wN>l߈ 6Dx݊}N 5U\D`#`G@ƳcZ[#!Z+|4d4:6׳ ~dcq&D×3fh t7ͅL+β}FOvFSt:\d"4ig/o!Nu69S?J2}՛V{lhX/1(4k$-‡r ;C؉#ڞX@aa,!1rYB?5VA\REq-gY-odS|.xMA^0]mWO1TN#h0^qG(*j ɛTs0 ڨҼcDimZ`/3dF<bpABn:D^1 P[WTZg*0Zv'(;^`LhC-.ntlr v,~p'ɶp[Κ-c#'k .0VZ:7ʀeAC=^t3ㄫ;ixW0K9@V ׽~<2S ;>NA ceZEtCJT>+x8@p n4APM@siw*yxfzK{XV5 @"7wu68P 0v@p hudwe>,/)uw\PAT<pWu'sVGw]<0vMX  M*W0ugHyEuG>Xu (( 7g>1P}> sm| Ap=Xg}w!5HP lX+ )* M@tTDp{D:IdX ~u 踎PH.u uSr0rrs> 0qzE *@2gJsw茑zM, bi{G1Պ#S c2  xh> V VPr @P1) 0 rqx3q7se)wdɨv$J$ Pۨ,a23?1(kH)Hi` F bhV`hV hPP sPy# ِSi @d o}{аRV-ؗȓFD~ 09٩u 0S0YFɓπřM}&s10|` *py5 z7 ) ه{Dr r0e@&~ֵY ŠE%j'Z@0m Ч2 0 Ѐ`€M 2fU p|` !w?7Wy2m_K g0gZ6j9SPixZ ٢0zZw-؈o8MPz*GZА%YuD8A| H5BP2``upY:I8-ZF6lʦ.*P/:iX+QwpY` ( E#x͗C)T'(/xd$0!N1Y jg/zF92NKVmڰ.ڧ;ƀP2M@2: xzܪ|\Wǐ11i;ANOR:Q&ddj4ɦI[ %ZY MٓWۢ%2`GvMPe0 A*( s#p r` }GP'0i ?ECsL40%va.X;~:+,ڢ]K` _~e@jP@`]( }RyQBJA Kfu ˻}\v< vH 4C3;D 5%`Tژe? *:/Z식  P~h eZM0O10 zzp|0R'c9s$Q8qF &ܫE9鋵 ID S Ks0ʇ\0 砕I 0'[-;i'p K6Jt& @ Q}\"FY ? ˦좼j=N[˧Ħ)XR B \{z|Zp0 Dwiu h>U09vlu;5L%<7wQ +ymƚ{Z>l} I 2@1! <EPmPp\ Y{XʷpV &H CwFxF{lev= ۢ.:}?>l 0lfԫw(5P|pvȐ# |@aɛuL qQ pZ 30NnQH4#L W Ěͧ+3 ěe h @ər]*`z0Yp[ňl̛uQѥgdjC% Mm$,,yyuP~%+ݽ"|ˊK"/*e` .CKW*¼?g|j}w\S\4uQaQ -=WFQPS%" b   ]1ju ;/z9] ΄w/ u8NP-mprLE eǸjƳ i` QgǽFEO Ť>C? V B3}ް-^nZ{;׉Đ;m煆9V` (I=-ު;(?0-Nqi zy;@hNI$%y0N#CO)@@CQ`@̧ qj^ɅYY2P MHI@پݞbЮ18߂| ?8@x@huW Sj;39=9U21T@=sh  -^6qz1* ~*8`K\^x,&? H VʷzjA!\]`0FqYƋkWYH_qNa;Ֆ°\~;&L?61@ym9Fl sEq́}h~em~ 0}jXszuoN_PPcMUCGC~Ak]a9,L S,֙â1c3aL"ǎ$qؑ":-M32/ލhҼyEc0A zəSgJ6Rdre>vʞimٶ'2śݽ'%WCXŇ=5dZy:c ]hPEVZ h$+ƠQ mJ2;Z8%ɔ=xȕ_¨sfgIF_/~%N1I"i"ah~W^k;*UiK㭸ޢK/;LNp01:,4ట03Z6 H2հ ^ z%R7(8Hn''4S%}CD*#~ 4Ш(^ yꑣ9 /4ҏ  tζ‹Ak **(4,< *Zxxa7@F>R 2ׄrK-*H"&Cx!緼.Gf)hAY>Tf6fޣ<+yCI@ZA 5T &C~k~@hm3  t1Gw5&!q͕Ռ*"xd&EJ˻)&Ta\0Ϫ*pp0}"#^ >%0'X-Ĩ@F2j;<-R# ܐM{K( *J9FUNC͊FzI(xNJVR2Hf\2#d:%PAe$ 2@ѐ(D{DxG a׼AhцRg[96٘ mq :e@GĜ q" 2X91vKT c#B@PXΒf%|LWtAf`:< P&ʱ21VwzE2Q@ؙ R3פ]p¡ X:2@Nr x4 \[p1hDN YO?~U`Qb5 Oz:#0rZF:X2 PI H͔-L1SB֑pϸߦ(хhuC8U}Y=rHX1ODk\DY^``?q׼A7Brx} םְsЏj Q?j~|',V 7B}!@hAÎ&(msH $̆H91yFT `-s*{(Z,Ph6,ckX@np2Q룸b%10x`g۲:z@Q0{vp)9ʖ9 .<~`+?.s8X0Z8y2: 4ڣ=3`$#@(I)I&p-A>*h3.iژ3)R9$ vx8 !렊9x%/o0.kC( (8!~C> ;D0_#S ٣ک;5 ~@*sM>1:@9JB')03QȎ:: s9h1qB 134[I6F8{;a`CqAD/kX/&)s2;};~hX(Żى IB+T`dsw: 3Y*E*ذ(klI?C &6`/n-I"r< aX~p&[̘,t>뫃Nb 9KE@H'$!1#pЛN|J(9H?@4c?XƊZIk0$<'HD¾8&,C TZhV)awIr CDl9[!Ay0+@:ڠPTYˊ0kTeeΚB?e?0ZiT0B=H 88raOA8'+(=T)Ux {N,,ҢeYfiƾf\xRXbCKiʃ> =-`3ƌ(>P> TQșQOs+8\MC) PX|\:W~+ٰ&Ym(IbJZڦmٽZ8h f۷%<僵>[CмEFe ü5R`YeF%Ye" ؂-FHUUJ+X;gSE ]խU_c9%",f]U ^EI mQeTƱhԕ`{^2ܟa9kQ;R `PSW\pXm Z u9z]h eٝN]b촼Q&W|Tv"Mc61}؇EjMAH$"J;c=be 1VyzXHv&`8KgepdR6(LSPgj\Luw?6eK=U s_؂+e<<. H$͖TJPd8hݧxfە>PE6I ڝbeuMv,PtVSPjtucYzVW|. 2`~.ȀI R!3 bj諭ǹݲ VPhof`]p~k,LxW0>PgSk u>6@cfW` zCp\*وɳ&چ[7VT$lsN:UG]jP`Ppf hzhh۶] g~k7L+~iVgr)`]7=lnU(C(vɁZ ;Vl)C Vʎ@.-VL(N(1! PofmoPVsr@T7 pubUuUp a7WW.<@}H!`i]pXr= |=O~i?>@0Gu 99YWgzz]Yz8> A؂<<8Ur~~FLP2xЪՃ_ &dp&" {{8=0Qzk{׃}w~Ί\Z~ٜiw{ ʝ㌃Ӭ ;%~~\ Aș _IS4܈W34iBM yH>s`ٲH fʛ|Xœ$DEtB  TE?QPqNs Z+JZ?~Juץ¸ y\g.޼zU*L ZЭkX9a@DqR,sXĻLxH5QYe}bּg<81s郲O,zѡ>rGERpjs\8PiدLJ˯ {r! >u!B:=NA@eWP! 5t N&/JD8i55FI-f[ 1O5 q#ysW 5#\vAY9yE*]V[|tiy!yX-/h/,A[@vTPCD`QYPj'ΑlE$iJYMpRO8D,1]Ad"2 GՕUaew]Txz%_e{3cj*,`\\2rADITE6 ;q ;i0kMҋ;hoSp;T$0BH]G,^/c'9@d g\~a aDi m7M[JOn7j 1p lArnt`ҤLIbŮtyBpY4p D@ ↸""Dؑ.h"Qn^>?8r| 5(=Ӕ:)NAzwesu<}ey1K1z%csqk @:PE!7Dr CP9r.DL9'9 HQ$mIjwOq+F ИƮ!=Uӳ#Ќ @C85'¾dD >BJ^Rrm67[ۨLŒؘ% y^Nj< *rxX얥,^*ޓ,eR?reqJ3!Hӕ!}|G\C&dF֭mmpMɃ""A1mtx1 /Jiϯ=D|gb)("@4! (cUX]l91f u jxo|1yYZkw8k#홇C8 ڈXPLB9|<C檓{^,NҤ > B%6[W%-I5h6ܣu1 FC)d!9x<;q`Yunπ̚'sv$5<}sxU]]K/jw`A"hNP_GχhN{P/;ԐB wTb'wչ$b;,xzsO^_!}?}CokM|A $yHC`$XɁ܇yah_v@ XV * Lz^%Z#אAly lH9(C 1Ee8EH VXxBeꁠܑB ۪P4!߇^YAC>C'lёKBv\ \uau$Q !0fa _ngO} ⁂Z 1XF$ QϪS$!USCB"ih%"j 9D6q"gCq@>)Z& 6ѕkDMuQ IS<@U խi ]Xb/j*<ZH1^ЬUù(٠p"p> ȖHl\ b%mpTi:\# Cn90#yDt2K56=_ڗ4~H(X ؉$Lb`+tLtb:f yXH$B}^Õ?"A'2#VANZu!ZR`@ǝR4L, B:Lt Oy]SzSJ%bڅ|H2}c ,3b?g^Wd 594  !ESpRx]@ScT&T^@ M[\%āe*'%lVdeHd4jZW%x% &u !h&of?F>KӁ,'!CA Q\'Wf%(Cƭm@@Ij'y\Yu`:Nmq;-fa!M=?b&&*h'1ܨC@(4:dcCra ]W @ئv`WЂ9]t &2LZAz!uBAY):T^%O$8®Li -()piΞdaC32`~*d'pB\%:0ij"v* 0:ân)|>"Fg%IibL' *a3pf1i@&h' ơȪ0@+JdaCĀ"})5?gәcf©.A3eZjv$DAGCd*fC(X$Īi+ :c#.>b,J}}j2`, *9º*Vјl̮ʆU`2j"(>C3,:m3)©Mi:B0A4F4ٞ-I6.mjx*1IJar@3D&4}JAddE ~G@Y\. 0.,C'n.)-@d3C3p:#J]@:T~ `:hU-'Fon:cfo3B,gjR91hhg,sU oNeJ624/B,* $&m>9h6 pob $3a /Jpj*p C[v&hbf)ђ^'*L23p'A?((!Ol#Wk'1–KGuBݾ:rq>@nZnr/"0A뾩|GF2$z#Ϣ06fYjVq6m@msF7c,.r''Bm2nA"0 ǭUBk Gz/rs//뎁/)3(_f-0;:s!0--jnErt9A[q75B*h0p^/Erdk#ksZ1Ht/@4CԪJ-0x2 PpӾF2Co61jrPGðR4Q_kB7'OB2s-°+ǰr j-Y2c,QGm85\!L@-Xkjq.m5ߺ."2;Ƃ34[Ycut($js fu^m,mV^65[rԎjj`F+Y6_--8c&w8ZXw377qkG2[q2+w;mUph_%_7[4Sow|@NY^psv5{h5o4+};p2lAx?b1݆w jZqsp7?m_rpKrAvss+V7kwtTq +3 %_+G+xv3sol^s/8{P8^2&67|G9G,unkw6{8 qx.8GcWyc1IvOxPx2zO9:pC 3MW+A{8OxO:7?:>6.gr+7jzv8S&y;ozG:6gjw91uy2ۭ6`C;Fzw)ǶjMI÷{8{xxWq2c;rY_6W8ns;3m{#<}?u)1+S<xzv;<9.[< rwy ;.J!(jկ`"̪UbӪ*fٲ(ЮK88oᵮ߿l/ÈNX#KF8TcpNތ8F3̹tWeifl/\=lLnM/~Ӷ-ǣ‰K~mgͽ|H^]kPWŀ6' y%8V̀|Sx)?N9X ~caDnYje^TSaUs*'n=Û k57pꨓy;"ߐ{DÁAdix9YV}|S FV!&v)n[e^eŔ](^5t旦QgVu=`srWEz'^e1Ah J%!zXJ^)c5Aq^Tj_i骨s~C.ohpXZ3Xю:* ;,Z~v39(r"aJYt[ 9.k[5x":JjaV ~c:"(u6kE!ڻz,Քb`d k̢p`.&WU P2pzQJ)cV 85zQ`ao!3GgKZ<oͰ|k(%⭻"M8Lg5X06QK=XX"Ta d4Lɷqmt8d]|}~^kbI!,s ė|,q3z85r^k<:v6~Jz,\ t@ly;cP h'8蒃'dW,"cWztR)*0 Yc{ܫ8^`NdƮmל(2\?4KfA!}@`#rc| ڧ:PA ܿ8>Ӊ(k!Bbh(0]ElA6 ݦ^x~8]dlyh9J4ŋ:TDEma>@YjTg*KF(LԻr~A&)aX M0Tm1U`)eѤD$[6U] )D;ڃ|;;*O ťHk[RK>pvu-.091Wt3C|Y. M92CCѵcũy1'1d 8.JO~}"fg-oZ S硌8'5ЀkХ˴X򗌲ѐ8E 0|fOAtKo4s rB6:.΋<_ k.`^Yx>3eMg g8Vxפ|}oQ x Ab-yLf)#@yK=`".|Y v|I Z8*.;~T~ p-`ο{8X z@A Jcÿٗ?t3|QHqnUۆ_v ~K0@y#} Ѐ z ""@v7eFfbauh rF>3F,X[hgjx6| ķ rqn~1Jwz}8w wobu[({hhvs) @.>w5Vw5tWWp_ PC8V ` d/TfjV~Sׅ iV=pe; BL\{8Y-^8(1@|΀ ,nrvUw! Ih @ , }jR^ȉGdP{ q'!{^d*L0sx r̠̠ix0 p@H K $ |vψ@o=Fipbsu^. C ;X0Kgj0L30+c0q:1`ć;:055Pv@_c(U,| nw6ׄX?gnanTal p-y?YCd pT cX yX 71SXSc050/hU0݀ JHqgS0$@u.ْ2z7di+A{eOQHic I)-9)YdPIK( pgX~tmȄ(66 JXWflyh0f6]$v H@ bn1]U4dgW@:d DJ1P 隫I5^L`Vd>q~@ vj0 "np1ՍFiw6 CP+ИHx@c|`ec1^pc5 Bz8I|̀OL bT7ؠO 0D(s@+z TGs8gSGp/nV@QV +p@+gۺK>_P(JZVKIښb9)y L9b8:Uǥ+|C@' ! d֘huIdȁ\'x X<1 u+{+ʖ-kK`LL@m`{xȣ`W0xxS xЯ1ddpd S@K8p|0:27s,  K@6@笄iݨaQ& (( ȖGq6 >SV9 R""x`ٹ7Εimҝ-]=Uڹˇ`5ߥ  u|pPKƻ 0{a}h 47q VOp&3 t9*Ψjk?Ү٤w-o i=,tYE>ľP^z;_1.hu P 2sqgݚ/|"ႝ- c [4%PZoסK1E5jSǍX!Mn4_w 0:rwMr9AzVK79ot.kْx<5 M Ld q'0Q Y)\Nrdȟ"$4> ?E삠Co'A(CF qÜ,CZ%CS.\\x'd,i$6Z +"2-l:yX4dÌ|l5l*2B0jo&8L&2+ZϖV>n% wpR]]R].'CqwG'iִ[K#&*"f抧̽rW )A!5ӪLcw&OLfP 8kܻc`#UU }D]ҋѬ@쿰m$Zldq@xzC0`㉉o&Ke(]cH盍8>,>t)r'k45bb_7p=h6 /dik2FYvaCA8?s +HR7^Tk 3qA !Ms)vȥp63 ˌ+h#᳟6 !tY`L1fRԒ}r F9lAi^"o| "ZRV'DcgKN$VT{/g:niт\[! !9)Dq$hoSZO7?%|nPK펗0 CºR1JMxܼC; Nq =U9&Ē=zG F|䤭AUBOϕk"yrvcܪ9`It1@ svo7lj s-ˏ@RxEzG.ݳ; b2 (܎ &:cdBJцqd-x 1dI岑G$#Wȳ?19o#D~?^ul^cN aQ=D BBbBXb;["3)P`p曻j +Ә4C3.|n>(%8P ? :9$LB;*&۹#a&:B *-ܭ-)k)=h"3]s@Y ЅILRRBLARgD>KEKk;h<"|8<ǃTD hHjBJaEW5hWc.!"3[uH:Ѕ orFg`zR8 q> A<$hb Iwbg2@D |J/z%J,3R#pŴ&dˈ&`bBAKY-Y$[&y3OX XT)hR;h1r+@+0Q집J ||JlJP8JLMp܃={U,H{V@NWlxňԃ*ޡ] ²Ԇ\*9.7K"3t %ƝL/k `Ә1F 3CXM!jZ{`Ą{<{MPTHzB*FY ~Z/0G͗pS ]66{nddş 4Vvq=TD ȻܭGd)J8f=r32~4Y+8(=MRsԹ4x< /PL(فT=XӁS J@:UYhhY✠ٜ-TYD#^l Q'4)3{ovHF2Z(%-oCJ!1KX\Sb͒շE| <ٓV@Eӆ|_zN55p5ThQeEH!h4x +? ҍM]LlQ>A,-1PݶY{gTlV[E^ \KXDNVmќEܝ;WKe |@^=I="-);UY긫D bU{mց[݃n`P`?XK&|[NV .FsᬓW 0v_$휇>*ӡXPV|-Pേ=e0$c`TjY2>Tme:pa]t>!+LE߻hNWar XE@p>A!D ]܃JHQc9unTf%zf^VlE5Htc5TІ(]T:bTXSH FY=Ff\=Qm޳v$n!ʓWLKKKbPdu?{PufgT֜g{iV~fVUU }8 Fb&_!vD6k}!O%YvT_E@'Д e`=HPbTlL0M8Y( c0}EN&t%]aEdThj6_]!(h )8Xb.34'F\du3廽05MzY(W64V[*TTv֤.hh>ehr臆QKdQj#Z9һ_my?񍼎u&FYeSɫ&އ6n0XX?5e]ouhWe>fajf@H+Y ?kVrXA!KvƉκOL(VUp/P}l?)#LqUmlMT;Ю;?C1|fRQ[$:"wd$_i~'/K#7+9\7vePkVcnJ84`(nWE]fq$9=T@g!`8꫶Pj 暴  L278b+'//P/"ˑ % 'H pMn Iw4~NN)CMjxmp^s@ jYfj>- iĻБFNyҜkx}VgwM™h ( IVpsn)?TlUf@/&¡ rn?jf, j 1& ҹ1I(\[7L7I=upxMc!jxbW/ q({/87  P_:FaĤ|)gˍvY ć?SLHǯSf`Xxu*Txwx^}8faqؗ:Sj:UHtp$ϓ'RV4Zad yjÇɘzcNszi Ɓp^qǏ @^ioO{&S`*F#<ʒ `$޹WiIx,*(Ѝ:"VW!E!ί!3n1Ȓ'Sއj 悅jThZ*>9KZ99f #KI$Ť7+p'PB6=4)S`̧>GMV]E+,x^5`;PzoW +?.&uD f'L1CI_̰<ۅ<6~"ppXNCO5LAt~HEI7,@uGF:PX$$x A^y| zw:~Wy!) US DiFCCj&l30maAJ4ű pOqFc7<>H9Q9MWPdwUVZe^Y{'_"`Y&:+8PB Y.7E*C|3 ccĹm38jmLȴ" jX{Ѓ==$;5,P,$ @DxwGyr]6|6(WbϺc1s& XKrmfc4nm$L~=|\\#Tұ 0Pq@PIWTa|Yn,eu`]%z,̍? ):YζUç.,TS#%JJʤRM]zoP~ı_KḆcJ7plLbPa޺J {n;"@_W,ˎ,:3+?*:BC9ߔ.nuyk c 5onql!,BF#a;xfE=U{`{#`CDʹ[I!4c@>pdu&qW:wvd0ġkRJt)"Jx"L+Xj=pJ"Y@|Lic?"`# 3gC?k7< rI3mL`&hJqe=9M*QE>#T~A7 MPba#Šdޯau{(4<QBEdП 4]Df X%C4X(%B AAݲk /S1/bnIPb;r&CNj-i盄 8}>D'N%#:r 8:sN'"3h壜~bDqn0q rQ_R4 B(BXD Mbh)5Ґ{+XnMsLj` .ɅsNCi 5lU^5NÈ{qFGݪkr; ҴIӀk쐡^`j?{2}nb+ V@āPzkQY Ӏ l+9Zw UmZq#AAbAHЀ샙$܃݆tp_ m\>2ӝn洎7]+N(@/|@Ju-ʀ>lZU#>_MmMw0XE7`HeN0 #\&A y2Cd4 H3GןrM, ee `_wPh" A.M ٹ;Lb<\AtC"2Tc(va!+A?q6mǯbD($Kp8(iX e($餋r{XPUݦaTj2A6 ̇]uTvށ:~ps$.j~ `Oa0*[s%wKzL,=>lq/7!3q;ަn%B]8ŞRtD{Jn*_zPt[82´K+f 9Ƽ펑i6-,{=3+9oREjE~# 6{Y\#Thڡ, -['!x,do"Y)?Uno bMDd߫lωQC(^~{Iv(ݏ]@G޾dyߢ,"Kzc UCN!J" Y$EڏT$ ܏<$9TB%b8""e%=_h\?")$aZ8ufJV-AMd/ l JH^F& $%+5 {y%{$)+âN Q檶i%6hBfFjF*.䞮J[JWY nW*U^ekV @"jj/() f6h R@-aЭj )trBliXb,kj-"F/+'¬Zlm.$j~-|lK*f"f@!Rz%h·"Jhߒ+/(6hK*i%&)m(A/ i;m!Ia [H6Wmmf*),ΪZkЍ+t,oZ.Ž`;+@ m?|/J..2d/렾+O?ȯ?B:+/A,(K~Imܾf+-fo+wk?/p0"Csm?( sᒺp¬.Ȣw""Jn'¬rl jBo'q:p6qs.jC-(1tGlpK(8q*)o/-s0p#-"_(Cs 2 @"U k.9#-2/@ngf.ݪ40-q-3 )4Xvo"+Bolfr6n4.DE#@~rqC> T2R#@Km 2 2"n*0s¢3r43.@5&Y6!WA 頪o\ڵ*ܒ+Td/o3ױqb4v@Ժ+o5"mVt 3m..u428nX3b6}90r0C\CkpBK-w-28q]k13sa!(ݫ+_"][0/,*3-~J1g/zt{K,TtmKes2j/Ap pd;qr?x;zG_?\mkE8~#2tg*޲/S@xþ)!ˮ\onGhwy/*3yBFyU߸RK4xhB[`)3tCjR2/Bi3-.v9+ǖr\E8nˮk'szxXyNCB:%k9+J6sZ 91:k)x+noj{뫓7xn{෈t#K&)/ wª3zo4A4.?p)dhzy4n滾LwqnoǮ׮E:[q(;sp{kNk|h7n'v.;6vN:ˮ1|&|nvw_s7Ӓ8W;qѪ#} y[=ps ;۸53-y?;>=Wjm=#>DyՃ95K60\:9ug>ҧ8y~'C-~Kۇ=#u6~G~5g:stz7 _9W?ҏ#@-¼## Y'vC??k@! ,؈J2]IRh \('hh)Nh(FpFzkڐ]g{t38V9eniIK btW[sK4뺇9c}ڭЦ7Jmhj-h*--pX6mpzYxVXv$w7XvWz,9XZ^,NޗUx~W5x H*\ȰÇ#JHŋ'x4"Ǐ CI2;:\ɲ˗Gg0s3c@cسѣGG H8JJc,XԼYׯ ȚU(WhNQ,٧gʝrD[nKߌW-bG̸u|K/0cpgb/3ܥ:ȟSe+ZҰMGVMւAĆyv: nا;_rn?~S9 -C:t꾱z[]>|xw<^kca 'AV]i (aB]3 {ȅ7|Y;m;X B>d;0n#"[8fDz~C6ݕ$Sl {߹zNTN6Yy僥m:cX&be\bәL<ם'EaA ϥC&iٸhS?fƐN^ rGLҬNaZ50c iAlTÌd>n5O^\is{fl,o2 .4U7Qe^m8[j~-!ж{3ЄWסWde300 %63" g~0. G4[pbهh׶ M>:.`GA.3Е/#;;ԷYE篴}L=r2 1CMRbl}@70aj7Tf "9pf„)Kx w6%mu0|且mw|İa+DFǔ"Cosا(cOR>{>Ѐb\ǔ%E["xIЍ :YF#B' C B8~#ŵBhaM`|(` LPq*")щi|嗒 ?@IX`%65qmmT&l'.`w<|mI_&Îy`Hhyf~M_`4uD['8L}G'pѠlabaЍpG"FUf=s% ]U0ĄRI\aј##q9+\hp"qӥp'))`+1Ғ`PEƢnVRCIcL*]،se}~^1;"ڲ]FT%-i|_s?QNRi( &i/S7w9ȬF|䪨ƒp)HִȾ3 X wz*|iÀ0i<Xo^pZ8 _Ĭn&a\@ 4I Vdj[0{gʩ &0Am` ?︃LqELQ|\Yi]CoJ ^XY1 WIY Y r! ˜rؗkFvnjE e9Yg lGbc(\UGuS#K`Tǔ)1 i{` {@X#UY3@`p}w}wjlf [¶cޖS{lw_/BxƔ] -pPi 2`ى 2pddK ְ9B4X|`0I (p3Qyp9J}wY6(n4FiK6:2Qi ifod`\@ `1dYjuu4|`=y}h%EP?.Jچŗh5N]R:ouu(WְVd0{ *o * d@mY C63/l/~*Z8)`-[5cƶcq@@ W`TEyʮOFZ ioP3d W/ɞkfND(?UbFժ{ @c jG&pd20jjVoЪ`]UYɳ[P} 5Htyp6ibGe;l?Vqp~T7i,("ќd170(pa$z*3K77;d* 1`0X %@`z!zwŠl?ۥo?XU^IM̸,۸N!w mv i -i0Ww`$~?13xn׎o%8/~ /;6˫ZܹM9?+jYN^6ź3wq 7ܒ_樠z.k/#3A*'wp1AKqj :ny?fj3R]̋ p3ޝ-ə 0>ɃLͲy m} k/nd1. yp1v1g_^Dx:~ 9o ~3DȉLȐ3PSNՖ\ 'r}'@U/#Qp*F<iҧ…YfoC =tј7zhL+VbLYb )oߙK̛dž }dRǓ =XWFUZ=x0V0~*V<O9TTA{Jܹj޵c?}XpTzxw@^T7>kzhh C~(Wdc5IȐԗN}pWL%Yi“-ͪt0 ;"iRⓆMr}{ݺrMh|QJ~1A/w"K w@ ^5%"%$+jZ@KY+.o_I M9)Ə":@ g6hQ~;Z-e%W//-s,6tf&ڃ=R#Id׭v>iĒpϘ #|;;^v ^!Vq+?zrAˣͫ*">6 3y't.HLʐύ"<$ E`bԦvÊ6%[y޶)w1o:{WWf`t0}K  tf1A#mJho%,QYRn.m1ƒ()pTV΢8(A)rJ]WvЄ[ No!4 ?[C o@(n"v:Y16=x JqҬH6<ŒgO x$F!bLwxnXC Cdɇ@ >gHt%8Co~zW0m2Q]K>g>Oŧ]M< F3tE.!gs@Exl+AvB==u[ߡ=Ǣp\~&hlaݸC^&uQybBk{hD竓AЅ٢$7ob34{oWjGF:գ)`G׻ΎX|={, vX.m)x0Whq^\tNW ga*oFI[oAހH/1J;Nvx:_)#g'E E^B/A з=>`:P@v`5}c=0$V=KYk8 [;4" 64S>*u 9S p;닁wX*@{!dX/)**(䈁۸l!(܉81A:2~ L/:d@!p@5@tC`8$x3VY/+]+ C烫KD Ӆx`3H !@hN$Aݘ(1I, $o9:ysበ+n|ț~P54{@/y1RS2CP9LFڛC <8<|#%6@G0ۀ~+b.ED3_+/{z*.l6V37a.|xGңD2DEux 3QJވ B.8/ FS dER&r;+x Q{E5 &Ig|N LKP0@heY.>ݮ/B$ڌfGP 3;M_J3DdhC.8ȂXz,Q0i$ߌNEN+Ob)MJj`0l p.[]U(e_>`V،7X] U>3T(^ͽP@n#dwIlB.DmCeb̦v%lb>4IUj~m6 ̺1{e4~̂=XhlksP&`Eiշ;.ށyrJ&<8wPlaX<"4xvQOVba/lOT)~6Z4$VFP.oDO#|:%){iI rZoUI0g^j26#Gtc]}%x #20lj__Arϖ~HִL3KlpX'rVr~H5~ەD#ux@U0h%kwX< g;a:(<0lqqC2~7KlL VW~K^r7@'*{- $؁e.GXU GlfD\]``ecy, v9<(Ac,#"vLeEqe<8rusN@`7X ee@vL8 28q;6aryGUK``/ 0V 3/C= h_>T z#z:6ZG>T c<^>S|E~xkȂ]ie$6p8/2!B ̖-I "$I IHK<bG>|B)إH J~iG#-j(ҤJ[:n0ӫ /6Ƌ uft1$"3dak.޻ֲ닏L+d,3<63n0< 2:@6_qѡ&f£@,MM"|u`($HM.2e v(S'N=Хҧ+:]QUmkSDwҒwfx !/~0-oxxqF9`cs iVfyZiCI E(mƇG!ђIpLcDGԍy ]UVM]TMrX ăgF0fA|xзB~a%>y! C& gR il&PECXb@):5)ᨣ&q14Ӎ8!;c*T-UU$i5U0}ޕ`DVXxȘ9>Gb1抈3V ^xFzv@}igiꨣ" >* *QZ4tN8pzpR8VRU`xe:(c+}0[?.Fu>1G3qX =8fO? ${Q6(*=N2r:攓>"Q#XǝVW=TZa)UMEY}Pه[L ^yY;>la#G<ρ2\ @fQݹ@%}Pjiȩg%N[d½|ˋ,[%wO@65 i߭֔RLlopq_zcyg >>3<2aE.-, I v$L b@t] o%'_r 'g0zðX%I\ *% !RȘw!kߘ܁/( Gi-0 r`@gP& z2JC1l&`nŢ _(IA<Ķ!WC9С%j@Ͳx\EV{ü@$Y`vI >o@hG![j4 !c@(j $2x-"[䤭d GCg\Ҥ轰*3xb[H'fTaegmKYbJH :<\|@WE`l$Iyݜ$%+ɃKgl;Nh)X]*oхR!L8<`)k1Z)31bY_t_$J! Iii$(d#vnk6GwjICMHIɿYF=0 G\ {Xq$-u!I׻;uXw (pV?}leH 8:>ؗ Ac¥}fO(u-2lf&ISHU8;OۇF2Sv@bTip%/'C͊p%LK]V4x ̲!;mVAq-\807af3ZqLșHwpr*c@[) ӱS@I DxA3C<A"Z@\Lyp*}D]`Q HG f!5| ¸!yTG5W80Nɤ81tbGVbf^PO=piw QƄ1EM}`rC581-~xh `FEr3mR $-ba$ًd1WB~9QӤl b) S32w$ :4%˚ 'e1Րz-q#C̉#`3nR#vK]it>irv\ٶŌHP" Ku z ftZ< u{'$cF52u:4dF PCv^{= FCMՁhI aێ1| ,~pxT+e1}YȪ+ SB ן53Q;!!gGCH$DJYI7A 54 ш;->B4ƍQŒ\@;]X,Ʋ`EVLOd̟QKlS M@u[J= s\L\ ; \%AL&. `+A!R%]`0a܏A.D`Lu DeTF`  [IaTJ \;P]ߝ!=“EHSIvtL< xU( "u>B[ uiǙPKР¹@HA=L6zd[a׾LB.8I[0KV}M;ؐ]PG bD M R&=^<@ L@TJq`YcYmv]хeăC-GJ m]㾍 .5]e}H ]2 BM"˜IPaJb=G%ܤԢ?>Td,gg"0X<1ЛVuZ}&ݠpfcB]''q(l'_rљԁM# J@,eudJ?;(l @;`_%#͓ B΍ΙH_ō(03KLJ "C.%"eK%~悴hߕ*AM^hC`(::削H|f\Agrl%]R0H0Ch$Vlb#(2ꢎZ$">*)|&*ߔU@@dNT)e:ƢR@RJa@a\?pWwA0SYL fg52d`# 6>jLk^zdB]z$QKHƌ;_(%w"lvLLKpN* ԩ!UR?y0&h.+" ElQ "br&pҥ.6(A -rf> #ё '|  A k:.C-%m*N=ipeƊBky$-݂k.>)p.n>!qܲ (歝 ;dIǓ -[rlJ)e=l<'NkPz,kW^0BӡAp;mǺ۾-ڮg~C'GN /pnRlpj.ޫ.~B2D+@*Kֶ.d/]lXʪ"-[vQpK_hߴ~nZNjb* |Z/l+ ,3Ckե~BAC'C@8$#drk. #(6Fΰ26Cr-6.]&B6~άp ;H..r0=Gr8t{#B遞pjH(~%*Gp10pb*!7p,@۪ۆA_/LTcr&'_W΀k6"o^^Jn7(4dl ~!!s4oo.0s r-7;rD@ǁ~B H41'{#N#>~l#b(ABB- gl!mr:@9/ _*/=4p0 T14#.0tC'A46ǂke~9JIR,)30k Zt4צo-7?O#4!33?3P5B&Ap,">k~!42HCj"CW^;.J=4m~nAM4[WN33%53P5z. _c=go* g,>ӃBq~u1'sYd7v ״g6O7si[_j_&rD[+H^~“Gtp1?p6p^/XWJ2#q gk16gOw\s1v8"ղ6BZj+E֖NG@~MB!3cv?7x{1 .@ti5gW_-2wZZ{:(r43H3t:br8%0;p.X38=@jx>B8lBlN+^,m+n˷Ԏ53?s#/-A$K6e4= ÕsxA7z%6ݳ63oWk/:3]tW3{2w00P2C;zRcZR)B-09zzs80JW: v700Ors(;#L[:6ZaV_//{8 :܎(w?43AkV0s59]:v2s_o |-t33N/3)38/n2!:Jy:{G2cg0Cy.#|N}7 d"=t rtۻ :td{q/V"zG<82s=w$4X<'Wt}&>20 \#{13svG#s~uM<3<.8{uj8cy|zKK6g;314]>xԫУ8h̅+cexzzGJw x`&3kDr'OOһyrCM2iB}i lcǏ!G8bv1J5M}yJa*O +Xro߿c "Mr"fa&eM-J X; 4|y_Gu$-=r5#0lBٶ.HyȐk3AHI.Tjb VL!80Âk#<` r.)r  17 [b!+l<ʖ6ʭ/:b=J#E'LG&(& g @j ) * C0vSC '&NIjjCJ𠿜ґ)oCTQJORjZNRrhm ]TlKz$_=̇^mKT;ZS # iZS@59?Yhz8uM5V@)p2xxG]v&5wlK EY{-4=+[#0Q\YkMS?Q5b<@D&4G0-Ld qc˔oNpȠ i@i]X̃߬UBkt zU6tˎ,pȟ jvPB4r_BpFλ=q'ձ^,˙aZƚ17g nQQ3yaLsu^6 ! ,ĞوI3^ޓLJٮZl (Vi)ṈNhi/H oCIacs|ّhkj"$_6yr9V bHs8g엱Wt[ڮ~Цox(qoh}F嗲'$b|xoBq7Yh*iXXx4M4vzاUu(xVwg7Xv+7jxi{>(X8Y}p[rZizPޗw}xZx H*\ȰÇ#JHŋ i,Ǐ C ,X\4\ɲ˗ԩ&0ssd@4BTeϣH* әmLIQիXAzʵNzxJYdvƪgEc]1˷=M n3-\S,Ccu"oW v|7Ƞlx4=aӰڜzm atή}r&Mw;_[g 4/O_kTd1tㇴ3.[*žv'`EշqWzܽw؀6]bb Z'0_dX]P _ڂ(CU,j0r24F 2'xbz'(E-؁5)%9 $ܥ_n".9\:%pT@@f{9x.R^wV\݂ ڠG`-tBbjQT̰穏9"J-axr\~q"`xBH-x @)rZ %"{֤Eb0#G8h-R c礒JÌDP@EeY[r7-R9ֻL;PPI #uzFc)B.Rx/!? 3 )ٲNH Z(XBrFlLئB,?҅72PlhY_GУy{u?NcBj"^S01ܚJk@]!#>Jٵ5ѴӉwTWM1FP2Lb#E` T] rKxQ׵m7xٴ/BrggB0mHGuu ݱ?WvZDa(T!2 TzjW;%A֕?Fc~@$ e*iCUeRgbeh IPl)h|jX`A .DȁNH yBKd]]'"PrN2D)Rid.r HHRgP;J_rC3h'r\ 6m `PQ81y*]Q\1njǏ[R ,+ldtBuLaPOmJI^"Z;.= 1rKtD ʦ=L `k 8f(JZUY[10} p yԥ8X󗑊clbBrCO3v22 Dce."Nt6hM0O"'w ÐLUKp-$Q&,:٢=w碟rZǐbE5@D@ .[J:q)xXj .m4{fO լO(GGBGnk\]¡\y*8=1>`K醱q\FJ{:D% ? (RLNܒ] '&N!$u;߫2`0C1<װj Y )II^D`tt*fRN :8+on9]S ݱt qOV]h5v{ ;ƷSR 3C)n+mma('iA|\qv[S13obD?.3.(f̰]LUEpr ^'\-rhN`ES~5g[XR^7? Ñ!vMLZYJP}cjr6f\ +_oҕPt]pa`c-2?" 8eݯs6F6?uz8'B:`vԨ^蟷bZuRL0 ?z&>{Zf&`|Kvq3o= FKdBuժf8 t*R_MweqTj#>r7p@J4m ܮMm)T-Nڥ%}$iJ8[l]Muv7\'Gf2#+][W8 sl{-tOb(\`먙؉MCͩTH'd׻^׃;6_ eD ~BPҦԧӝ&Xʌ2̰Pdz6gVÂybw8糨1x*@W? CJuIOv̡g2O## xE3T`~v} ѱ6PJC7[w]gP=tt~`ߓen`~MFp p6Ybb%|geT)Xvgp8<TTz!w}36]& 5P5 iZj4Q pz~r+bPb7j rv6yvF|E'ǀ1nk8`a@FBi"12TXOaT|Za'|SPev!8X^Ff6F7 OՉlG qq F TH)[7WgօyaKd2[ xZF6r?ckFr FD.dMKgxe}v37sp9f!t惞fTf~xVGx L@q HMWxjWvwd7/@Z؏c$n6~_uhT*p'2|0b2pxXh xey-Pױ֌،C`@SffLF%x{Y'*` z0 ~xfO{{{Ϡ\` Og`eVuWtxwV9cX'z*Y$x&j&FmaXp|Ei} LL I7fkOcc 1w \` ɘgÒ*$pŷčsF9QㅗPSIyVc]4}=u y٘W81О1P7j'8R7p7N6\ e:AJYuz9Tgu+q{^ɒgSmС dxMemd/0R!`N=@gUh )  Q@ӂ޹}FLe  p \u]an'\?ð!2桀g`]>) S{:ÞϑA_<L`S`~]1=@0򽦦ةzq/P 5]\OAQ9n\v2< 1Bq_\_ De1,ʕ"o˱l1ʱ^g@>l BP̡=.ZѤM&u4 0UvL]$FxRH1 CRJ-]#r 35męSMz43g-<FeZ"hA U qIkPV-˖WL4-.`!Z&E01mSށIDX`6&U ;1R}ĎT/=~9rLMYmPkr]tYU-P'F*ԫXXjTPg`ZjXIH֍a}ޗb L` q*'RlG Z?h5iLآ9N)k6xCʷ.Pq[nG9@. 0 Nxr 4ѢcO6/bɆqдR+54,<N7Ңh$*ܲ-zXV:ʞ}CW뻿dN ګFӣ5H.r"GR!?%/MFj1iJժå\ƬM6"#eZ,3_IS cL?gnPBi̋ASTPFG bH="r& Ka+Jc YZ(e*.lUaAm] cW-1Cdb:!@"z6Zi+ Z&. i& i\sg]-m  "RJoʃu' iփN z9q q ;VaC&! LGo]f8S.)vb l`fy蠌27vz֦[mZj8( ChHD;DM^ YUmGw=ݖ0HU7oC*oˆ i EԳ`+9kW3WfiZ'+ 2& Ka I&' !U`“`:ps[DvSL˂$LfKR!`&z8 l Gж9<*Z9Zv+__JBє,}lZ`z(~웄&aPhKvF@=$" ̝"2txD0Bxg WN 6 ߑTv|MҞe$ELLk ^rؠJA%jB ']`lqFvaǴ(HH޸ 1 ~j49xƐq@+MsXG1ibPj0|8 3d( 2 FMs '/j'ƴ1=bG@ҭTNRlJW1d H:RAD & ؍/4Z ҢmWp+|GH0\]sГ9C۵"݉4 :1h!p('t̙ў"]`"dj9eE’ea~A6-A !:vN5椩DDT^<^O}Ꙑs@ 6BZTD6Br+l؊eϐfNHPh.vM\;֢cXl)n fG`kFu\b H;ԡ a:F ̸OXޔrEg A(6`GX`H~k#(Ġ:9XJjEGi\}^qi*wZDM1Ū~BdfaP2|]E GJy9xj%->wReZ@,dXƪ Kpv0rػ!(ceXOJUا\CZ l@xu&X$7( NGCo^e-9fzUz[FJ=V{C! ա}@&>!֣j!V-9+1dhȥ}46h K<3QéY|?64q&~Q 3&븝"*,ȓ#=C",aDFD=Ƚ)2=Dt`B<.BP4` & #3 7tAJ6eK//q51A@<k"(/9 !dA=!8lDmDF r8GIGt`L4(4(5‹8E.d@ڲ7z#À@56c2ȁX0 9꺊ԺT鬋b  \!+k=IɘIYln<t̞L0tpLLL4g|BE{$E}0T l ]8T(y> 5Z1-芮[ ءP0N $ِ\9kb 2sDmƚtlTxwtGLM|khOLѬ½3@~J3Kʭ1h]ۅ Z6#q9 DND&  0h %ܩ"58QhJL;'EtHQI G4@L'tO.O(TP{d0T=جʘI ȷ+ ق]zAK@?I༱A h0N1Mίb[iN8CR 20UC  0FS=dBDtBмB8zG{\J*4R)$5[Xf`1U>;6e qp甍j k˓wc9D=C'mCGDqtL܃gDCD-UJP˻GHWj/ dR@0um8b&e& 0 #2!XBC2Ib0) EVD<ɓmFI<=D3X=@u|dj-ԑz ֕ӑ (@R(fܿ&kU1[leD4h8!n]ScJ$µX&kV([kOm RrB1`at]W՛5U\B^+[2Ԃ!jB|+;]>e]uյmL[OKܿ9G"7m̈́B^k G M]ٿI%䋙[2YdRCíbSb՟1 -;;؊Y?!+2;120_صm݋ O8q$BS )" 06tߍ`-TE}ϥ\O֙yzʛT(zQܚE,d0] @u7A4Ι!Λᬹœ왭9 820ɂ؇BԄ;RYb>Ȇl_)~lLxQ"S`hGie VOےmcs٧)s-\)ȀIzhS~U 7GH.SJ֊I4!2 Nއׁe%ITNe(Io9vQ /s0T3NEǔ.]f㍮Y) P hׄ3,fuաf:$غQzi,wg}j>$e_T^TV"0O>x*.(耦)[vRv^fhE%'|ԈM! &`)q wA  x"c<_J,`P˱AZ-jR,i}x>y]={0jUV{^"(g8ljD[̏^j%Y6@G0;k<N.h^J*\e ᐶZ 4 fЯ1̆gMPbZv""p.C}[0۫7t4 ~OfLARqمs8?xkmsz6hZ9/ P8(S ?̂ewˆg98e}`]5e͆%صNe+o0IIm% c2jQp%ѠII]#s)hFqzVdnΉt́!548fZ9I 耎3xg9Q98rS_Z}Pj-OHk.=o$B;tp΄G(DU5OW `>s( gfd8*{6Z!1i eMָLw.9l%w{~])..؀BOWMuٶCG^wϏҐ=Լ#b-qXs~NnGXw9(2^1\5>qp߻˯JׂvvԵ&ceIRVx֤Ll+KN;[OvO' v&؅#e~?x=i0 u8-cCc!Y hx}"\bPʎ>יO֥n%%uÄb{X "=p,{G){`2^3DM^K;s8ƃsd | >}chdˇG0#PLNygFr$!˶dI6> [Bd,E.d|m!O2PJX3e С4N7srB-j(ҤD 5S':MR8w?ZjUKʰRGs˝1m@!F`hkW ]-@35)E.`[mcȐr4q"g>}i'Ǟ&}|l-}KpHf˶ŋTd Ne+MT%M68Ϟ ,$T)IDmjsYpO?J?"eW}5U\(8]:F_RQO .x2uU gS6DeCX2ZsFymȈ&6=-!ێԦC|p9@!0' 0GsQiJeL.2JSw:4x橷&^Tvr|pE_W^ѓVm4ф DD4:( xp `fiE9D;mV=(gFj2jR O# [6xMP] RN¢8K`L]NcmSpJuKtruǟX@dP@F͢˄22YD8p %2g C=~ b{6q1(Her|B2G5KĦm n&jQ!l>J[: L`>5=tN7.F`nЃWVhbs M D*{ Plޚ*lmU6*6tb;9|HYd!ըVBkm ,DnBȜ-Hц-[\ ;sӮT](=8fyfPQ5.GX0^{ua-rF(,SOcQѰE '9L|;T;U~?Ƌ5L2m6[6޴V'@Izc 5`P<,e!YUYXR4h r- \2 kGpP'Ȝ)=vR,P-xp'JNr"IRrMPAa +Y9ѩVv!z`|l 3_sA(Z1ԃÛ8EԠr9r_ʯmi1Kc2Pc6̱jJ؜nlA@[4pxHE A!Q*Ufe)`n#'&. ETOzNh@C] ü8 ( U(DQAā2LnsKf\E.W35 {lb!\°6auSfAY,]LPi;j$;H F'uРv@纋Z@znA8B p]q1Ll:SM( J#k.a j/F1PH(jx iIͰ~:8\g+HsZ| Kl6< yr==)PEw A]WniT4 X"QěVƤ {d&hQ-!`3=i7iBZL]p&mf|`iV_ڎ;!3!RHx?4];U-+^YF\.)Ʈ|Pl. O~r .af p\Ȁy`ЦB NVmN晸Z4MЃȖX+k-\:'\`akB,Ug FI!$7;~1 H0fV;7EfAHO: ʶvtUco'iGwYYHyB')?Z{p/hr2З@Z , 䍑,`ɗ\K[#f~=DUBp>8Ut3{ӠڀXd8ajS,$XGVv=HvQ)\g)NXk|N|b kFg!ҐCa12oF_TARj ^p'|Hjf ZSS`Qݩ*ftS[βA4iyBmn.`ljC!HtLFD|}˩hYohӁe (XITa-d`IdKIL`_ -HAV(M|\%BU 0٠M`D{eF] cU IA؆6i\. qojCҤ3ZaQ= |,.U()MTMCH8ڤ&r3 =FlA) &@ƭjX&ؚrtXL=T4yFBP %@ -X袒k+mTh=80-J3,YBb9nLV&gƇ)`e8$0Z 0o-S ee=䀇`$,fiHb^?C<Ƒ/Vnhs ::m/}51.uUMնrZREB|`62QeSAHL'dL`!fb,Aґ@38@I8Z 8k :\b<_ڽW!V 0A@iYy*у#|)қn3G:֗ ;}tR̩\:WE5 N0 8>´ G|r?SA ͚)g(©HL&5Z.@`-}`S}r&|#A|U  S X3告h3$ĜJAeL/Qf=#Qwaf ;0*ˁ9rXPr@qó:@_ ]s&%UPP*3HA33`Ga3y4@0QtBz ^PsPחx}Am;ˁT;L5>'xIsTc+C_p3 Ť5{' n}z. ]y)YC)Xz Z3Mb wc3Lݨoc ¾ k 7yMLSC(X [df8S3u3K؂vs͢+/uo?pC05{jf\;E׵ 1#iw33D/ED.d0z ?zsT|P]z#Uy zZ3y,;IJo#2@:*l"vd)D@o!A42c;zC=<y~<Ã|@ZpG}04XW+S#ڌɗ<8߫y2VЉ;SK6 /@\E _¢ù'KoAЏ7@t]'?9 Q%!B2 (hԣr|;Pd(<e`8 (7ɸˢHO d!CdaZk΂2ҤYBfպkW_rmXRG 3ZGIU'U]PʚYxjՒ2L^(m))-+FLh6dQq" "ХÄ9(V<ǥ‡ 7,;;Ci9l`3D̈́6#.. ulwߵ-vnTs#FV1u  dA􊠀4c 4t+DM7-CQxD2.(%fm2a$x$)pXI(q5k K.k9GإTB 8Z=3pM1p0)ԉA12wƨ@UtB1 6%8ⴌP<-E}$2qQrɳtn QN#;p` ZU׏f.a=޳+j'-zj [xkB*"@/|$x|[QN׷{CR?M!Zبa)N~dԱETDpʈ]C:$:u<Yo'BؿK 梋?J[ >fD xy(%_l3?-MZ(5<ҧAz(=m_Kk Oz`Z=jG1m'jnXa!アw[ĥ?Ja ?[ۥ|l }'DE25B$NFDyEJs(مBFjQL{[*mw^8p'\VLiAƤY%{-̕x.Q c Y8~ҒBY!(.| aNw̷!I(C;>iygZ/MiF+A"uD)M q#`)MyT8z.cwf†ieŌ<`-P? "ˉ#FG`)2L)ǣƁu(`@(h`"lMz)X6T!dsУKRxV`;@ ~2*$5Qvt53ZBb4$8J^ÎuH7Xb"z8VM&$!cYʧ8"N<4 2! %!ͤpc jk#BڥKqv[YG. n:B@S gT\8zC3&ъn5d8̂uZpd(uZ|V a89rc&^"*Qj$]=O,11-Tn^rY8UqXE\5-WZzO#[H? dahvsȯT83Æzǩ`x@% N/*dE0\܀`uGYx.AYI/PG2c$),Gv:$2"eX׈-^L۽b aNUchd J/yJRZ7dd/)vΫ0LD.vSa"MOS ͜@::Zz. \ʁ*8e!?^F5%y<+:XP;" pTgն(*RP\%̖Ÿf0 *, \Xɝ.EFHٶ햤6B )wbʦ*P@:OnO daU>iq/C uTuE2ǑG"'P `{Ud|in ,S0:SQeb)6] aaC_,Fhq܌`qLdQ/X-5_4*QgT=UUfiy6iW@ raU(vlKUeSh>ǵ sl6 5 o_6oV<5?rogvp}v:6 wq.j wr_ ,-r5wo=6! ,DӇJ3ȚV>RgP('hc> h)Mh.HpE^6t:miӐ8V8g -ɡ:drhgЯyppox)wn+4Wn(NoaSsurpvl$U1Xv%Wy6x6Yv-8fGZhz;+ة3VeYqZoZl9KӗyvkX7x H*\ȰÇ#JHEPixǏ CY(Qȑ˗0c8G!8qaœ'f J(H26*M:G'ԨիX\u)jY2ٳh)>ʖNrcڻx͢Z۶R Lݼd己M- <᪊3kvر!BP=y˘7Vs_[G&Mٴësm-hqE>4pҶ/^nwoCP3َ ,v09 @G<2_ǐ}llټA*@y {B|}uxeCwY]]6D` 02 `-E(Aȝ2&t;%KW֌3lb~]}AiD34h ;dFC+Tňenrٕ_g_xL`Ŝs_sLDNO~6f5 L0F&evG隘< LʰC=Cj__βneO >kD. '(Lғ0%BL6_Q sDmDR _0ʄp&"ˤ9c`ԩ0(DLl a=3PJKs0t(sw"BĔ݊ܡ;/x٠K,!J*ܣ6m)=4z3{d0Տᓟ?)#GH( (ӯxlM=RÏWvQ(|+5D8nEcNpV|qvvA(pG@"ɩo}ab:&Ẕ>hA{`>O i Fdq ¹@+5uR԰|O͡^*6'/ݘeJI|ټ|c2J seMcU0 <ĩe- 2ʱ5CG>01J^.dC$}а>^0x1@ &DFJ O)F(OMP1Qi! %SVvv᧑H/IϝgCzg KB 0V~H/5Q RLJ10g+%2*6J8A j|a∆:;CdqE_ӥN"`K6 x`=O~?m PyMF#iT}xTGZ I d;v!S8-^lP+CPC)T>uwLjDP`"#"ՆA1)qJI ëqʊ3)Ere9Bh ~3wkC XR?G L:TloBа+YqJEB`ӲQm]wQ-zlSWrs >z[le   ){ٮ'hemuS]5un5# 1Uh; 7"`/E%vuVBN A~R`h.j]Ca 6޵]ٖukq O@ :Z5چ_Pٯ0[Pi[jf ĴBD܈{&~eR i4cw~:/cyUsD3 ,Yԗ6'1hˆu~?{/$CSۼ+f*PjQ. nԁBChlT\%lװvgo+Y}{3pWlPb]!`2~G#KB D= Ap.+ ep[0?/ᄡqL屉Mr6'%"g?j8p,3d[گWae{2 tJl\3eq [Իa7jU6qs =ӁmQ6C'jGVћnve0aTY+&y ۡ\v?8=6.F|V>|3qQȈ] rj2.kE^JTJA -F :sI'= =wogjqт-}>fO5Cν(^PE Qנ يc6E.?ttGԗz& `s60 Pw0eoo:o~ro F 0 P+Z 5n7z͇@73uj zʀ7Q`0.VxxrJİ*h s-`pa48 q|t @zPt W9zCp0p;TuvCgGd iHC#ǀ”H_6w@HeAS7[c1FWXT/<&bs AuЦ雺ෛ.Z9 ]62Wc+jHܹJ|S`-%`dPrZZ _p E~ ?%[Z2eHfH+ta3Z&j)ڣK9 T- -YT >`5.( R06ow~|E:3  1j\>#PR P"`z0- UV gjgXPO5o\޺2:cE]L7;W) >* %@h> ӡ jJ4S8X(kL*5NVR)jطg![Л퐛=Q9b@ӰYc=LL&)H݊by%nwajP|Nӆ s@` 7*@ƊzdPPV/>`!0p%avLsS4GG <Ɉٷ 0 !@s ' jaצ~X"  jXmom! _ )>j}j>wt!P-P[`% 88Uc\/_pE}sB1  (mKRejy hzWz [Ⱥ{ ` g1 pڐ I_ہ(kmAF;2 "%S| YV% 0zQƒke޶{ -Jd@-ra1| 1l0 1 ù0& sj`G#ʁI_(0 0cPl (x^Xsy9`_ lL>T@m P 0.l-P 9'м6(`*jCBLRN<9>tm% zWY˿m- ;fz~+[k9R uԜ\u_-иm27#BsWnƚ4}Yk0-P g@{p˵/鹛mS|0LLX"um0s5X}i qiɇY'ͷ4z ӿ2#U2tm<*n:ԈE_081>}(@|л@J]/teͨ n}pm=U9L͋9mӝSL~BL/' c6//@ʛRY4z 6`ۆ Pf`-tp(/]ϸ̾ݡ}{x/[5BSm X .0-YՍQEuڽq=` 6 O= R `6`];]Գw>-<}ԓ'@.܄=,? _|[2,-c!7Lҟf  >Zp,T>/s=/;~ P uB2,S }5M`hfM&\IΝ=nDWjbO:ZO ,TK7as2*!63 NQbAɄ-3Xlʔn-Y z PP=0,氎^qׁ=F;' >-M^xRy p =^Vr) j@fPm̶ׁ/?Q'1=Nc?Bʾ oR1 r1rrTV9ϴLUsx.]=/.BOK&jnR PP[ob{b`' OfmSujoȳ^s䚬2]Hʆϗw6hQ P iPΠۦ66\n+2OpɅM:M =B Aÿ}ȟT3>GA ~Pf63|⋘!C8RcȎbLDYReG!Ǹ81U.<2fL!T 14RR1PUTU'9ĚUV]~z-ć&alH4iEf㚰<f6k\ʵ0s1Ə ER)ST9E9Ʌ97wFϨI'/lQƝZaΞ [a6K.r=iŰI?,wI*#{(?YH<ĉ1g_}h꣫_v6ҭ@qJ,l(8搉.7p7:K\$h$#%8b%co UgxR0<eXn e7Өu᥻v{T dnY+8,AN7TdYRMgh;/={m~V^לvԤH᠊Pn\g:NZ˭뮽FF\S&;c=-yb"ֺcl:õwO'ލ$ꀼ!y[Kp1%aA+N  1,30BAn5kx+@'.O}0VhBR 9X@Tတ Yne1Z840ņgP(kL1@X=6d?Ǎ ya'="u(x059#Bj/Lbrrnmbsg5M<iYBnk׽6a5U _P<ԉ˜A6dXEd:k*[$pKLɽP$?G%1 fzէ:ɧ +nH1r'ҧ-Z!R xH Ǔrh$QzrzCئEmbԤؠ1\h 3LAʛNxtF B.a o9Cl fbp(DH3hX~h ?8`83@׮}3L\tc u20 h`: A (p .ѡ*P]bҖc_Ը,*g&Ġ *Z>t M{S|8v {+O3qX1Ֆ5#iGuX*t)yjP 60g̅~hR &b+t x$~}u%-yS?G` f5j)-J(Nރ:O+)]I%ͪE]|! vn.oR0qh-H Y_Ѓo|MhRaX_ ~м~ĄC{FW߯gfC'h-1CUFcEdLfz*T3qi/}f4Gf 7XQYԻbp`@f\{߻}qyÌ:I:B2LSc1ɅF.TXȻ4k)P+#:GR^)oFKWwY3v4 oSEsG< lS|@ڱN}W簙h쮅3![)J_Fp>> 2hw\>C<<ƣ5>1 0P#ky$+pZKAӇ6 x)DOx ዹ4@8>{{3@{s*CVPP s@}(ȆPCA%1* A1xH DK2YB#""l6hDh0>+>c'0x)@sBx-'@z'heE.`[[< Ô4 d \lD$$B*hnDoľ+,w;PE+DuLQ<<~>#A{ʰ-+(*&K-`:<+8y?lƥ(F?k,@*8*0@,Gq4>㛃&DG~GTxxKSxT\Ǭ=(776gɰHE1+A iy9Djd*(4˳TK$ɒƾkhz0>L \@DcG+BIǥ58JP{Ɓ뇳+pa 2HaSAË @ >ft7Ї`M#}hFH*(2MkD*0>m0K$ǕwD7TTEx< D@aLj-~^_ʺsʨtʆZOO 2ͭ4 [}Ѓ'h؄չȎDK$kdDEvLD20dNxsN)؈7S,:Q -mų8+,:`ڲх ඎO7㨮#H?ރRF,@"LB4K+'zcuƔKɘ(4Ӣs-@s0`h=hѭP8ͫd+`:U"+Q"m1=#lʞlBHjcM968VaV=FɈ,'ֽIw)1dׅX9`u6Xe%-ݼ^ѕЭ8wZQ88h}@}ѮTM}C-Ѓ܋-Xa~]A C6cEz~DZɅM,˵IxVR䪨50I@)nTn[4 X4XᐜuJ zL)* ,ӃGv}QP;h.܇fam&d$daK+ 鞒ٕz؋R+Su<95gRV6P[5H[/(@2=(YV(! x+d }PWAJJk ܒ.:((JJ-=([:P}xn?kimm&dÞK6zlV_Nsk=wZg`-(R1lEUN'I!a(/a[:`N  D6d8+=p\McgqMHMd6d6lVtTU_uvxd@G u򩘃"ͩh1T[|os'hUgEd ޓR[巨-1Xbp2ނn9h6Zg([dSYڼHlf6xI;oɶ vX_r<[ mu -nhO -hųH$U*ׂ(eT'_UG_}h1WnL:1υF(Zx58EcBa٤!)jsIjb >H@4h?f[ ?#>8pGnT\ ($r*5OW ܹPTPEy'Qȁ0¼)_ 3!2j5vzXlL?Z؅X_=aPlq_68ad$?m=#;Yh V-ˎ+MIa^w%'_:8zC 5x3Pd>\Nߐ8tFNЀ]`Kd:ĐN(~0AjPa0`Sb'$ʈPah Opb"|oX'С}hn,G1)tEQ&3?ƕfcӬM$T,7*+ъ)IP$@ɂIUJxcWڀ5Hk0*5{hA>gxO^= ˟ʕ \xя"vyD/}97MAp X=X3Ӣ675c=,TEMYQ}Z$9l-, ȭneU1О8#ЀTd g?  x{<+T[!=BZЂ-;B>~)u2&үh_1Qc1@JasU>5,+ c$#&XH$t݀Wh 4(iV1P3A; A֐\5׽z ,1x~,?3% f1왇mvDȴQ:xE 9Ʌ Hm1hB$8tjz4 0he<8ni$=&[}2.4+Xې \TR˽x~Ըxz]gyL1C1S3-PhَOYܴAJ$}Lgj[A^ifg0BywZ04ug QP=>nY˭]`1[7KV^ dX]{ėz`Eg?_m93 ZԐf_ ?6 AE5{s'ȭ<X:&Qnt&t( GL0"{ǭ[`$hƜJ4Ps wF1?P-B[X wX#fX~Ok lyU4ϟ܎]A(Dh%Ьݑr6@(0mM9t=^#̀ B ء]X?@A\qEMQyͅ-=& yAW@i pQH O(6*L7Qۏ GRIqX B byn 9R reR&i=9RX<@B% bCLE] ]]^ ,hƉp!Q؟6l5aTV VqVG@Ih@^Д#!^U( B+B=j0dYC &  @_~[bi?C Fb D] aFU|epQdIRLD@O ^ 9=BN+@-I @ zG 9*5>^0= =@SA?G.@ad`VH C@A[Bd+E`Bz^eZAxYX ƱQ ؓ D#BH۫MjfVXD6LBpb f jk*c54";T(ET>e.VghhFR͉D őʜg6dL%f;@jPlV :bU<>xPc(gw˹]N\ 5(DWemvlyvyaLU 5m`GC%Ձ]r$ë~w%ÄW  L>bh @<Es"(ܩ?НNc4Ey!*nOQhǏM*ΥnJ!yN*0iYboPN9` ޗ:K |G%L(Rph@#>";0Ů)>+0GA tb=0؀@9`enFKQB*NYmNaG T}+P=P+q%/`%bG>t@AjcB+e4u?D+$J?,3^E)̵,>Y,ky3&J5fc+Cݲf@K<ٵp?^h^0\h):E=hREQHv̰%i}ִmpmH@n7aDDp h~>v`pmTFZj$6@ln[3GBwD^O`\q_8@ܔYi4ƤF@JB,qqֆ0$ .ј _lijk`t(ڼA Vxi2u]֝'#&o@PYіB+G͆,/CF-MJ P&;.HFln -4A ۄ&+ X?"?`9I@J x=eNvH)O%|\E`O bM\혧ءb^סĺ(M\Y1H(u lLBJWlmQS b kA-F&wW-nJ_c,;l` 6?qC0d=$?6%3>ՉA?&^eR tv}`ϰAL eFCdnD/x sTT$Ā{5_.>Wd2(l󬎢H)){++O ̔ř\9vnmwLnȢ-*C P8[7ÆRց=-.ottK3_7DH&4-`K ؃3..[.zt5ڝeWDKQc/TNeR\f+QASQw\>^]Z==X(Q>BN @5("#kWEsI5@K]iAvrd xu3tUL1:\@Αq\vD=诽Աe 6he-#x֢  7i5I>gӽ*Q=TC;1|ޱRhݾ&ЃՑGl=x+_6|; b;``ôQ0qzΏ(x>;m sNcg}9C )(z)ޫ@p#ĻN5ŊS,ɫpopl=]AU(lU@ӣߛ~Vh!޼%Y =٧G6t㣍*T1Ce~ I*Zla@}BfhQ2@ gĜ4EΪZ`E!&LW*(9Бx ^iн ]b6#iКH ŒHԼP!^av+oUhdoG5bzel7ErCэZ 'zSP %^yJa8ed $0('ApZ0V`W@giha dFDbk8BSy0YIU , G0O[$гl*B* S-;&2Ss8dFB_b3#ByP`!yuRʰ=h 9luWNhά6Cpv&TL/Š|*Gꕑ_ɟ{BG1QOբ( 3}5@$b" jRSi) cQ`:Cyp$1U ~ - U6J_{ħGE`,Rt[*{TT %ͮwi Sx@?TXacȊB-Rǡ27.l-,]n:26՜3vc Quh+!%2h%̔6"&#z0żB)ҊQ茟hhfźM.发Rn>EkAr eC̿ WOc_(<81xj!50nȆH (*lfvUe-sYKsb{DBUECk+x`,5OI^5YcC9hc͗bBfAB0@a7ߥ>TrE !6Õ>Dc ׸qlES(65ḍRŪVJ d:9߃(˧z-5WE J,з,˨a 1ᣩx$sb(zSr=P0vsTF6mVF LLh0 qfbBr܉`DC40E-j|aGjR6XdamXBsL# 7׸91ɦcxoAD3H0gIlcU/lA\.V"sb,eH{+CfHwܶ,kUK 2"Y\xd#R ȴٺƧ{ 1T|`HSPC#ty!@AC=v:q~!".5_ jJX*-TBL!G K`̾ etM.BaD^a4@BA( /m8mȮTap + M--bբ|LM0p>0j  H A28%S.،Jr1x04I ! AJ_lE /jF*幌d!h梚犮(Ȱ h^m,0-Ы?qԡ:?B҈ $,gRS C(/hxPd^!p U OVO޶PLP|El-0nkPnn,pfB%;Pb#ؼSB4e($qC!0*j<,F`rL%H* h mRT ꭱӆ|ؐ<ʰ<FnHBeP/g2P0~Dp Scq,qv*f0ROA /Ôap R 4*UĠ0epdC3ćrRL%Bjh1#JO~7Nʶ3:.|F;YRKhh~(),C^=p1*4=vL^FFK[6V|β5-V2@ K@O%+9AmB?$Ke'r?#U%5 q ,uo.0Sקa行u GR^"3@v4 >` gbSbmw{{|8Ny=@,-O.Ђ"0U Ri}}#!~4 Hd7>R7Pmpr!3Uô21ŧ&aq GOF!")*T1! |&.͗~ކQo[|5|׎D13#&28~D4zI ؤw5_W9Dыc%AcR!Iچ+b?8-q$G>D'0dpKNp00nڟ`&!~ug3WU1r~M p ̮2C2n6GfdR -mi^QPBcZPO7kM3TǮH苐ERmԂZV2 ^TMRPqY%;Y[PPEgSڮi'\n\ L~<%svy.z̬gWi܈l_FCϏjqo_wz-_+Z{W0D`$>琤YVʛZB&25@4&a d}}CN/^Ab 81qhI {!rK6z(z/Kd7*LDݰ0Iŕӥ\Qd ڨ@2|ͳAAH tGZL[ .jh:9J6g6Je!wZod{p0%6ݞs?]ʕzJ\à42 %3l+D"|G5tjIvT̰BX); O}QeYtx% 0'?Ͻ;\D=` /O>ݕ1!s]4Z3@=M--aGӜ $"oOUղW) UUk4e4`@gp\L1xe~hdiym劐|aL2hb%KEјYhj5-CkE~:O:nTYHu?a@I=6OxPD 5,I[NJMf*-G1PNDӼn`6"GBF=Elvj v㒢 ŨOm끴 64TDv.oFʪ6ov^lY$Sp(p MHfn6:o/#cr^ ͅBk1!R07 N(FO>"U5PwLg~ y!276z|J!(!|$> ґez`eLEm(y'"*oo&QhO*}@z0m>Sҧ:kwZ>ec^($&~e=j@Ѽo!,1`,IP XP2.qA{PN50}`qB!mA " Ht|T!0cK@vLV(2up͂y]Ddnr.8n>ieۉgP5Ԥr)9%7k챾/[s:%>5HqQ[k|ʃHJR+"3oJ,tE$N'h)OyM#aF*F@Q@Z#f L%% s!9gۍ/Hɣ/9IT-P9a;*:p3 SNb<@7H@2&*(Fe,sL)e;mħ?{~( ! ,<r_8guw4&|7ԯrxDNXW.D6Vv5xWvcWvuwGZ':xY3Wb6VwX1WoZHaFtp!Ň DDʆRnKR"Vf_TF %s\SAzX2(;y-JhA.)0`Vj&XTOs9tT֭X It+VԘ7ž2SePBB Yvz~I6i׀PZ7҂eۖ*REOt+*ۥhn*uVnM]Umj:kCQļ|1uƯ.[mÕyoB6-ЍBT)gUO՝ӬԪA=|UZcQQfQ&{-Ar9EAt5JH7ERx7 Ezg N@g66("ȁ@Ma`oa햠j!yUm1֕z~Y  Mc0s&Xc L; :Z,#3n;@cna-[vUS.5RZiU\uaBi1^y13F;53慌17tcqO725*(! UWUP PQ2 0tWF3+} P¨Ҍ:g!)iClVl2XlRo@1ܩraki!1YNe&0.:0!ac }q'5L;"Ru̢ |r{v9|h`|JS)2Xui#KYSUVKەe6sȨ/0Xbb60Z:uqXhj6>[ ZFe.⢡Z@Sqg:f~R3z}/b't0GEl)pozZR92Q6gvT!rԔ9+ua{)O04J?:PTLbC:53 ҟp%M1څjBb $NV Lx 0or! ŸodT%4dDFH;X0}$!CԅB !,,(& ]eH;:Wha%P1 R!peU\Īj|+XnP|J+.0kOtɌ( 1|ȋ؃^@grQm TecKaG4 p5`Cтt҉/mȨӌp.P׵Qq&x}I~sDIEzFDcuu._)΄&ٰAFqcC:Jc)i󘶸4m22k!Us2>եc ]6թ`AYv`YYwy؅ 4dxah۳47L*\h^[,*W{Wk xF37j>mS,uMh͐Sդfz)iϣ #'cq@ܖl J' ɞ%\m<VWAݮu"Mκ9c؃yWB>!Tmi1b@Wň~> )I0))p9UlWJwЈiɔ)8Bp7/%d)|`2 ) Zh8#n}q@Xz%Y]"ʁ`!vF#Eg`CK+ʢj.;0A52gJq2@5$/])Id58 It׉z0g yٙ^U:E#]"rGeCNbհp8r#s[KH7Yr7 I*ID7y0ٜ`oJ'*98o_ _Pq)3? q@)+"5tq9ƛ]Il'ziÊy)"c;;06 ʅxA.bw$fxV_ȁiаRq N0Wz*8@,gP `?rQ #\yٱ˪сY.)Yv%P #@#0Y" 9YW>;` peo` q0q#27|M:d&$kQEУ+SZ97ɍ5; =ԑmqU+"I] htR;L# %@g00pg@ 5I|@IY}1;;-j}bC#x4'~-Ʉ9pxOf[9 %YJ-\8Y)[!,! \ǜ̌!@T8'[/ܼi|nklsgMxδYty %s 9͆*¢RAJ@ɘۍYM[.}̴-iz3ykIgXkqյٿ9#|Kl08Rѥ}%^XLE}$,H](Zuѓgmz̵$랇+U+ۍՔ=q #P2ϼL+"|ל9P!lڟl"4m2GqhIgÈa%PKI٨ .ύ%P˝q ˻L֌-iޝym [s=E-ߞ|ߜ< tFvxɛ{;fݵ, S?Ʋ#EPLiĜĉ iܥ\׼=ѵ:Сt{[pɮ ^( #N#Pw%/[ E` _J.6"i2: ڼB}ͳ]7r2]FJ+ q8CX{W ^XP )N? ]%N`N?P`]** l 1opf96]mڂ?2BWw[ڄ뜧 N0^a ~l^ ?#e[mH+}i`ۦxM99ezB{}Ȍȷ2F .(v ܰ^! a0>2g#`filM@ >oZ{φpeS[˛V2PqcWPNda%9-#@-=BܦdZ.AGՆpX09X[X>a<*˝/ooˢ JKbޣyo{G{7`2ZPUݻέb{牏Bpa%qj>`]ii/Tuo#oYBAv/o?cK8ml̳v DAƒ >̀PbT;x8&F)Iad|sɛ%5mR'L7gƤ5x' -[ܘƖZ} `IXe͆mC :t >C5Dt!5hb&L51݇ zCEP嫆Er%!J-bLN9qRL2 Ҧmv7VN4E |Wgo'V^kElcƴ@wij vx:#ԭ0`됊ncPq3ƭIMhϟÈ4Ƃ (X8 )5kKP:dj+ t"E鼳n!;패:O< { HB ,a1@@s"F;-,b P"m25|vêÚ0ĩI1#1oCGT0"&X#Hl"7T w3+քs˟J-J3dMĮ:` TDHO\ܱO5b=OoG#z,rJ0(xȣk OK ShM>-kV0-׈nh]];ޔ 4}D-x*ZN81NW_#̊ה%E MѸxqlF[nyg\&&4Ǹ3n2w_\U6߃ uV|,mC8`LYgmϼ-p󱦛] &p#TW=qr1|Tb%\{.{S[P2P xx.%`J`;h'SMk|a kM2W5ti!>p8Š0yLCfh6xЦ,<%:䝟|WKb[=jAs R0J9&00B*PV_%.UT3踡ժ{0e~I xB"~y&F+Q9z$nӤ-x-ЂPJpGbٽ`)A )HW$$4 jJS1(X, `2io % %Q*M*CwfBOY#_bW ) j:NYg*QU-&]I`p.x80N^A\-k%V3PZW!V5]ؾ87܂9;n|MM(oٱ'!*ڬj;Y-< P@m V3Jg>̈e_*Q5vt3iKlVOP0 ѫ8`M7ɼi3;GXxMj=aa.닐"7<"ĕp-ISY6(Un`>VBB2R- 6bɻqەOeooٻ[|W0]=t7V҂3^7UKԶoj`G򄵜 -WhஂKraZud<@b8p`;0( |Nw5-{W4:ӃҝC=B~WBs$p&Cj}.9lB=-fb٩M+&9huK~͟s£߽x+*]!%UOr`HB?͖1 tz>> 8/fwV=t!vK1)#"<\c[7hsq[->)x1, 16'2=؍$8 ?dH[;#;଺D@p9{z7kPr^s.,2Q3D¶ƹ1pIIHY@tʵOEk. ZlDP.}h{ÎՀDJa1,jMy8͇9$OJj&0L7`Q.XǓQhTWR  " Jjt C&6NuHDЎ*HH9w>O*)Q8ȇBZ'a.]$6@)7%΋󯩌$* jNP-%$Uć$W$;L(X2h?W$4ƺdzrIc_և} d%)l.؅#hV&`7hYlogS!- MD<Nm|dW+]UHzP٬&& l /5+I:qǛX+qOTؚR-0J7&В%::$9^=[tO 0W'pPDH\H}W$KWLJ ΨE3EZR)ǮUL^[=/)(߽ H`\=0"\+Y"F\4R~+P\+>V>n/ՊL[!iC. V4+۫9TN>Z3,x\zACtFća~c3})DóXc%\XMG 3R]`6MF]hR%F/ůOF( f'=Fp>,P9&p> ͗,z]ƄNy^+\VX+@_{L&NCm]X 0Ftʥ~fhniZj,HH>amՂ:ic-G8ᷪ Qe>I&T G^YA[A(LM#apN.1ؚs+eE-}kើk % Lډ+ gV ;:nVl=J.czMW؜H ljs$ SLg7f+)l噆ӿk/ ,6C킴Cm*VQ~Zjʬ.cd56SݤZ7J)*7Dxv]->v8o>o3JL^,((j(=/e쁝UU9V}<QkH E=VQu[ULjufMffAz^7Z@\^2`9=]ٹG5orb]~vҭE<;5Jm`nj [и)6rWyr 8^(A.^dKsuyA.hOwQPC0"빉B*f/q1djSԚkmCe7˚g93mC(-qavYRZH_ 1©0!Gq ~GɨDiOd­ nQYpr2t[rNׁ܌YUjW&kD+Q&t-hBɐ҄jƋ P.) M70lEA7 92ۺ(EM!#\䇸Qɦ#@H0WQ'Ț xk!IKX$ׁօVXNG r)ߙJcwk ɓ5 Oҭ-O~pB?"̌/88C)%0rE}& q2'/5@6v⿜ ?KX'X0 xe Oz&;@47nGH*v % Hh~a^Pr'`?NG) ASӌB9Yґ{\5(BD8/м _C }VV)CM}qDPpD=pe}1}A<:@6T7`٫D7߰Hj9MSG5^>^p}TxRl2OP`T"+)c[ OB8a!H A_Ed."|̥\FdDRd5|*|]*u_%T14O7U.^Q4 V4ܤRXhfGa7A Z^Φ'Ř+U`UuVvDp) )% I5Lz%ĄCGgH\FY5JwJ'|A M'7e 9Қa>7POA~vYtñMEV%@(az=C)*pgQ|7P/ aš~ pd6$. ^P .Ulr& yԐ̚pWœuk~&f>Cm6;k 㡒h $'@Gs>ڪHz}!1!-`VCU-ņv (`3EDv&I. YBXRȌʜrvž22-CRa:P*؂8͍wicV.x'T tH|"CܪRG-Ro5"r d1^t@.RɝЀϐS4kpŁ% VtvHK\;eR^'-\}₀ Wށ- *b\v%f)}Mq&rvm9/؀z-%\.,+GڢGUЕ B@HGKroP$1 g |vS?s˞ qZ0 _* ~\&YC>LpR:\[R Rm Mb$]ab>|r. Dp*,g-2(1X 41_̲ ĥ RK1E_Ta64< 54J^NWn@UPBE:~S'];&APo$V ߾@`. mh\x0~_F1ET.ﲐ<t^o*sZjP4ؤMr GZ ؉?5Bik4W"ty( ~רU[] g,%TKܼTYjAxĘ**)`Itt^6uuHw$Κ"IH=#b/˘Ɍf$9ŝ HVYő8-t=S;+$#KFdO1ؼHV6 F# t8BHB@4nй @9znO_"wAɂ::':4d5QI< Ͳ|w8Kъt"gPK[ԉbA8X&@>*g] Vf2@;}?ҏA v6{ {}\dP,F P0DO ^}g5è+{\Y$ŴSA|E8#_f)!b BH򲥘0#a(M0 7jh/&fjiGW-p#n@g(r ~&AkQpW<"ha6*ku.WΪ:WL9p4| FhC&x%iasOD{ Hr%9 ,2 hˆ<0 4es/AV:5g>0cU&(mSW\B0wr][S)L%z0!If<$2` z<4j-B gHJ)FMPeJr2BcK咥bPX@Q|tʄ(`3%4yJ#Iu_#87pqD:1A3 ( €7p!z/֠ T! \0 t&.<(`i.-)iSB @fav$Ё~B~bA NVϢ`N#A/xFJ@#h.J&+emNx88IڌA*Q BЛ# HncIJ,7 Gv. `>FtBndbA4Gd)4RⰗ({2Dm R)FK"KK, ""{d'x+`66 r鎖b)` 2H< IP."o1;m␁",Ho 6)h t?1k֌ A$2#G6\ [ AJM+{If (l{;rBm(('IR)P8`HS*4k*8 "p; ㄡJ`𲁢Hp%\N  E0yt (Lo#K,ؔA(O T6e8+ޠIRzzV# tdl` bnc.`VESs|F(GG,ePGT,ĂZ D0`E+J?6`w,0C0a>YJIvHδHp#M5mzCNe*dJOazRo @A6 I,AbR-`9Nƶdc`,(z( G` vfA/Ts~Az` V@OW=p 42T授b=[5mA?PNQNoC6g-"AI5bĀRt @r`@,Gɸ_UFVʳGG/r;MalU` @$KlFhւf[`J`S`|J;` hJb Eð(,&zhnfk\\ӳ`B-t vƫЁG/d>Q4|W%w UP95Z(jC0" Jh[,ڲu7r?@#\ p@N@2w,,㩄Т@;$RKsbЀe6|y4`5M[,84莞8uaA@vAQ@`) V҄Owv9r@YzCzMU,zKA,qB ߀XJ[f#x 4H5]C?a粔*5p))̴%-))yR @ (R9Rة蝐si9Ȅ.m6TK$O ó4 213bYk>Q vQ&J$Y6 `]'|7\(-QYR(B5 2R2 vٝ!9_N؟V/r;+Tsr,A. rQp<1@ٿbA<4iO*#3l-gәҐr3(/b2]."<.v.L_i(e5AW⁺B.R^r`򛃔>dd/7@b2d/ Y$ӿ/{MfFD X)Egt*Vn擔+;uni!$[rjq-jEvR)[XLNгO`?r1wR OCFahl ]1a }'Ml!5% f ؙ J$=H>Nq`Ge!X1d8uEiV<'F *j!)=)NAמ6ykzՓmb f0C(>f^ chRdJnv1ڀE Q<0%;RO=D'QIo#ջ\+hJZTiN(WAæOv^ E}ū-uI( P&6>AnO gFq,Ì\VII.:+;.o(T.h;.Mj)mi]Zxz )ښ4 (y.sps^ ABn4) PQ] !1)f"T$@v\ua elRses,m0BlH#QC^k1T6,-\}˷L56mߚE碗Yf6ī]j^U4HPL0-{@@͜r Ed401ctEa jZSg&ư$r+%#(ʳ: &:> =J& Z /4Bli-V|*kk2iXX/bd5T_ R`j.=͔38:A k!Q4{OlqLaEެW;Nc'bBx .61S>ⵙ@iArE 1/>vH mM), &k!&5N4_qyrMh]+t6͑X#ɲҽo0>>A.yZt[f":Z\mW^חG t@0 ^Q_X 2J@|JpkFr̤9& hzĊ,6^a6K"Px% ޷'1QB&7A ! d _}Qݧ"RB  _ZoQl!ɖ+=Y.AS$"g9wgH I1B_C%4`P.IY.&&fu/i=2/w9]P 5#HW wW~łCR  * dƃ1d0}W 3zWw%z&%2EA-k"5-`-5-zoUJqOfhECA=cqqhU "/{WdCj87D |] w[1 c X Ldٰ y`¤@qdw,Afv,r$Hf r#5wv-M 4BZgh)9%3.U^%\t(haV5/1!]VQ~!X[BQ7)R1` qK#_ ruc@YqfU`5'UBS`tzGNJkOA%d;f&/t60 2'΃Wuk/6p2)J_(}zW38%:o8&d7!p *@*`d(*CR% dZFitJ8lĖCaTTly!yh-& ֗bRDž.n}'+ *7R ҟ 7Д!jc˧@!w%LdQ*q+Bj`xxA%e+nWH &hb<_V ITwI&VVT`ZEH'/H dq7!b|&cV1CWvե*P y [q(¹q@` !Wp!Q ,yDB۳sAN ;C-L;2B>*D'io5bn;/wr.NZ'jCQmp@MQ3fjQ?|D >a7Eke=#9~!;wfE1 > t,1Gˁ.H1;46kIr\9kaoǥ‘{\'j6V&|vD{II1H&EIX̠ ~>"_@!XxB60v=%?@$kv4 ٿr5!Z6\m 5+,Yha(oa8UjLihLJ{cj ȷa*)[] ,p eE58@0xq^i @L<㑮3T?r]QHcJc-êl!yX [U4rqpf\Ztj8J+ 7͍a|( <}, 6P ` &LXׄ_! L7X@x^ɏn`~\;^Gr%!3&BǴ&pner6I:o%<PlH'H B̰-]v7(8460!@J: cm<ΆJ԰Enze_eK`1Y5,k@orT:t֣&NU]wtgr8P2)')' !sJJHXrp7^_v?%BG캭Mg4;r> %̍?f?q31K<1`pNFWXW kv˂mfѥZLCz~.)g+̪tSBQk}J2]ȐAOl{]WB[ ueY%JEvuՆ.P Av TH]%q#ds͕7aռ4kH\ ڕ+Оy$Ǩ'XR=@dQhZx0IXhHW$gj]-y5@O3=!#ܬȘe`L_!܎[~ YODd[}F)afj&x0 -QZ,d}xqax]mDb\*(jbf-qDlxZՓ<5N+jꕱ{`+ݱ̐+OnÌeK. @|P v 3vа ߘRCH#4@iDȴ%4vZS0URl0؈k.Ѕ:h&nΦ+ӏ <ӓ5Ĵal+Ќ+=Nʡ9*אָK kkˬ FB+Qhb8l Db .jl \ ۙR*ĴңHuf/x $XI'Ei:k;,s)a3{ &B&&*B =KBq -5ŀ;FR  Ų)k#!T ,U#6:$LN?`dwbh]VIL;Cצ1 KL3J?R*=ͅ?w߫|U-5R%48=xGcM5 R5{#m^Q_T5/j tP^ +nwQN$04yDt [ܢ-1$=`AK~`AB=*݉+ g<)jAW@! ,وޓ`>k ('ihhPi_)Nh(GIR{hy:ّ%^)(mh'*8V 8h:d bsWۮ[gХ7{D}Hf6JR,j<U3`y&Xx6N\*{wy]vn,̙9&AݗXXv$5xx7Xv,8fxGZhzyNYf<. [xXs["Rox)} H*\ȰÇ#JHŋ3jȱcA^ CzIɓ%CçщyPʜIfJ͚Ӟ?1IѣqZt@իq H0M YS]V+*#F, ` U*Fl 5YXl^u#ܸoY3kV%gNXru+﹫iO0cv˲?q^iǒ5[wײ֊I{xu^M;\ݻȕ/0%^ hq7.7Xޯqd/ذ ,^PqX'uٷofYu[ Za4" u`wA`o-7!4gnչa@/|̲8l7rwcqnR]MțR] 2?`g|,%,ݒc ]a _WfdƵawۅZT0K`9V,5W }{hdl^Vvg_VꨧXp>FO:.GSs(h9rqMvT 'A(6L`$}uycUXL^_]{L20{,F;ӫ `m{z%eU_ko{j {/N+r޵L>6+mnSQ5RƜJ*=d lt*ZHXNw'ZUa΢,AģO6 lת'{i{N]\j-4 c?u5CCOP@(wb (m|9Րkk`cGdH?gD,|aL1(8@2+"pm#?rYj2+O}tǩ{ݫ]GAPEQxƨCLAC.9=rзre5۪Y, 9pL^*HwF<Bx $)`>co xx{XBnqz1jY.i{6 pdHA >.$ܝp'E~"'pE!pd\jV7iڟXh6~q I ~wcQ c㌱Dϊ(DYH'GܞD T6JP/Lh%`;&3/@#['AYANvCeV0⛯F! FVFf* ׯcv9F XpQ‘ dhfV PJDb픘Qnxg 1NP^@N]G97_JDUhK >;O It(>CɾPL$vFHys RHp`گ#dß%PP8ꔩncc7h?~Uj OUQ>zO^$Q0pV  ai6ZAԠho͊I`P[B#-Aؑl\C2V\: ԟMGۉ]LằD,lJ[<T,eT0:w€ff6S+ ><㺿#` S /XRh-a:'ޅ$fAԷE(3T|Mb1` é ɐ PHzK+ s8&Oq5 cps'| d0`p7*/I= F,?f yp;I1P$0 <f>[5,UZa F%y#4 l@\D"nF ;bбHP5発lyBz3ᅨHY- :b7((WHU;<Ѕ-8_GYƦ*T=E0b/NgN ܡ} t; CnfC6pm"@R!y+OmnꤷXpQT0 M1m;!@ DoE6LP C1P>hDF |䵌^Ю9,DX<;@#(Aq (2 1}F&cB|s~@>fC +@6`u,t_8$i`i?s2gY?w|Y7xpWdNWM~>Wdև Ѐ T}6P?'JPzl=@ Bf'=&$B,>" w23GkS(qِxF8xG'tVǗ}ۗV}I0+OP| Dt8"cvlE1(fXH(c6|D& Рz L EpBׁw@yЁpdmVAF(7[h$=$O0' ' 2EKG32foTа~5 'p|Wt Wjhp|IPg"%+α*8."6C7^4#$Ȋ# q^6B#H(}?LXHOGjĈ}xP p v`J -% Y-cՉ$^`^y]z+7p&P%9B'ي:he#(VEF5ex6e6x(ݶ b/u1''[7/phfpmVHbaq #hf/q&cggxG~G}DɁYhYx#s*2 cf,ZC9ib4 h'9E))2v 8ђ26gxSٗE|y PiID=1,PP(v Jؠעp8Wp#H2= )yi)2і ^ywԧV{Id@h`?L/% ifJ ISP'>G`^c P$hu@lsUx&JķwviYX YqO/ c J sy[ ,0 ۰LsZ'0  ^  %"uP4*j4% ^s6E9|xI>i ̸ %`Ky"3t* $8Нo\/ Щo`$"m &6ؠspo@$٣dp G z , |ਆR׈78*2PYrє\/oJz9q'Q5gh5p~w֓{ʗ5E]  ,+ԲOb7vQc !Z^@\!$J  &i*Z"%dP YhSpw Ep  /bOQj!ciڔuk k n NuV& ȣGp\Яvg$W[Gs "N;j9#A#7gd O)IDzk- tȶ8= b`zO-~{4N K4Gsi{ #c[{{jj(Vptl>[DPl'`1 w"rxvlj K."&[Vˊ;2PH^pK|WDYpsZy8ix9ڎ,kӠ=j鎳D ]ܽ㆝vK˃U荾K#*`-20j.6XY]N.kPZӠGq[?DpJ@{+RΉ锻NJɭR {T]K+#>`ڲ>]6߮y+{ 7jpiG- *" "܈)LȂ,Lm#S M4KQyǁd]/ZcG ٠Z Pjp߻D{Ԍ9{bGL؟gkx!,KH-Y"kI:"(-^ĘQc=1dLY,&SfL2AN0{ΔIRJ*nI1ʈ#RVDy'^iD ;O8MhKPAr#?vgk!N"*ĦS""o-/d/ca3@YhD!h $C>0ۯʊxyi.L%{IBڠq ' 4521 ,)\ ~F2: ƺ;p /̲1XQC$eYŲO=űFx>VJ+y#| dV|jӵ% {͚fv贰3(#8BWCjEp` <`#Gq$,JyKL#Ff12Q?EuSR"'yqu?Xk<‡ `j$bݴ drvsYdk(d!/ Juʹ®;՝Ksc0噅! 0Sxh95 T%i߷fI h ܈5bdLcM6 A~8h6]p'MW<2`^f~I;=2:3?oX 52XisdӅjnP ~~Œs+N,epK#\Lu [h݅i^R+ӷszZu-7&֦ӆ$ p15xWZk<,pEmKP[sً2(g)A  "{|$^.I}8g`I\DS0NA51͘ T^ΈA?1lA _3jo4BP.RB&53l\`  ɩT©&$ET4G9 kDQ:(̇3".V @.pп!'X$^%P-Á.RCм3-3V3 +awp/Q/4FTE 4i2\'d*"OPtYIP\5@: ʝT)MpŨ/T'x0q"l. PH/1 y2y%xa׮6GB&IP$Mu5p%(9 :ЌnoF%~`i:`#lF|>.GgQ{Om~9U.ttFůZĆ@6@u5 f-@kR(’0]k 8|%ټRNV)t/ZO ղL F@nq5A5U:3z W^#84%0EuC$mGz?'B&]z [~uB?0l;16؁uOz0Jhf_nOE,7K#VkLep&mִׄM6Cms}]A63YP \IAsDS,?C|Y7x2րƱr$x^z iq|O5>vUOIT 񶼺&G<<5*iծΨA gNعD*Q/pۑ٣3%MmÛm"sMxK>q%-ю«>mlLنk\+&u)͓!':I;R7>?NBNv-6E4OdtBF vMCYmt] gXT$k]c~pYdT0}u tęmH- q[)0IѲH[Yyu乻fҗi0ԛ[Q}2a Që ]T^# 82ΩtZ֭9/c޻P2} ZUڀyn.Fm/ul QT0hzdZyk4 FLfc>s>3'?>$358#恥oqk ZY5 c/: [~Bi 4p2 ; Tr*)*1*\ -8QiS6PKY=;[ۿ_ꁄb!=@P(7 @*l9ODࢤ2h*|ྶ)?2p?y/\`%\A㧗! ӿ3CDD:# ); Kt9Bfɴ>L, E'R5?pW3[,9TY5`"[=s9je<;AL&I>Jt&t@Nܻ-p1r"0?0Ɏ3 2CݩXQ"<|} aDDBLHҲiD@kskjߣ4JHfčE" ?HE|䈔u,/'KYD /xK R}Ejk6Kʈc8њ C\jLF2 5l (2M"C 2Ͳ9TAHQ [żA:L!#wчFO8^% )TǔȌ+dg˄Pΐt><  q$|ȏ&Pij%?T:OXpUe@0W„eIOuW45j̺`Qd$m|;H΁ =ԑ$$ 'qbE]TT*;KE[AhP-n peH1sUU⃖MYV]lXWͳD,ĄӄԞ`ZIm[9 dupJ*VR]C\[OnW եIs]Y>ٝYV!3 y8ђwQ}SxÅ$jTCD Ib&^^̈́"$֊ZZ%/rSr8}]=s>Mu>x[uU!ٛ[^SVY;SNehb%js&IH`L3έ5-%# Q_uU(,(TUY`U_W8Z! S|M@^Ra`;K 0ԓ&݂j;/:Y.m?:Pč 6]$%!S1^\ߔ1 0\jk fHq*tN-VJy14ER[g:s ճ]Oa^u-YrF8=y9v@b=tj9&vT$B%kw3C\PP"MO:,[ei;5]S<@Ywi^}XlGXjlmNtsTvS)NRT+9)@S䁴Vk.b6Y峈M: yp ?yO&nLd~&HonB4v30<2*PP!75rEIQu(M( 5AXլ^Ih;=xЇl882$^8sdչJ?D}[H"*$R>3ؘvLElE|) g7C#*:M0R;,ϋzڜ;6>{pD `8T0rW/6XGjLdCjgC)yGX4۾»geyN1m%p'hMHTn@!l#%Z/vW #wy8`u4bCevy%T6K<85hdrgކlQp?i^;^F}?bQYB,`œ|(hb27ퟍ9R2ߩ9_Ui9ule(HG@)8RZl| xyˮ^˧d׈MFoqzsZ-f~8xPRhqJiGh`rDiXNm;y>RswGUœ׫:i~۵Z +w]xfde93?f8SM3]seSM e5TVjTц!CD5Ev<DmtL3$I#̢64GDy$,hO%_4רO6eXiV-Y_}W~GYYh3qyጁw%E;f?YHHB(Mv1uˤ:-[o)# 24SL,:rsUÓB*U*yთ\ZM5l!ELzaF[5V|-tЂ}5l~v (` `P͞5RLGf6$ZD$³Ѧkk2:!J(*/$L,:/ߴOI&Y<=KXC6ZJE6 TӍZ{Ո!.[5s"J5e0L -YÀB5` ո?0|gzh Di\xbZ 2T p`Ec97L>޴/MPх.?M%/،ZfMՁ<*VfM5]喋 2v|.~bw(iQ`~4p8]es?(<8 9D%xJFNJLF֙ hD@Νs+Up^YnW' ʀPpBg.Bhnsx*9Τ8h@;M7R0 8!VtJ%aXt+pVi(EQ@>KE]fH2a*SJT0Lx1Q+ Kac'p3ޙ<2ΫqA]ˏA -HhA%Vh׆) 5Mi\͉4Ey"NÄyg>e9 y0e!  _a cEb;bZ(a/ Z4C{c-ʣ^5ldեH[ڞI3 4LvZ(fY0rd MmC8mREzgOvJP Y"?hxF$,n1`/c^(bpdUꍒ 4(==P=a0G)s fO42bkE qAʒ/7(oŢ㗘 >׆P.8I%~!{B-8 is%M%Xn:64@A˰C쁐.О/['^9&|s@2t `Wt(\_IчTaMܻ( IAޔ T_^;T%DM$aiLp47L!6x֙2 `)o^8EXN ^=̃tG5pP IK4F\Aϱ%Y2hݑYfDt|n@@lp.Xy0 аԁs,R2%SǜnD^!a}hT2, ` G(`-w%2VXphA I$] Č3kmfL="p8 "%c.r+,NB2a8B?(uz6!Tж.XU_0D&2\U CMEl [Aux5 &rT*k]773ģt -!zO5W(A/>`#u>M2!'8ws!eAJہ) gϷN$4B6v+vWHYY̅oBAAe--{7ldnk"ųV\k@arPM"4Ms7B+$NH66h?xBE3=ϳx6@dd6LZUFZP5 J900oxX†SBKB<?8xSns(쩮A24z8&Ћt,:_B  :L3D`H~X_$M;*nAJ } NU d\wNQTW8{ϸ&!5۴)NK] B2#,Iv󣷰3j6!GJC<pO<@@R0xtF]$JxJX ;%u)&pBg⠎[u X/#u;}.y-.s}@-(©Bqg5@W|'|bQx3d_PgA+3 fNzBЪsAA[G|>@< >V81ȑ2̸#F"5,NvM˟'OTFfdIo-T¯Ĕ9fM|8xٰʑ#H"jU𧗏884Ӫ +>M_uS7k΢k 7<8}.NrB&rM5v! \#P8iK1Dn\%)RbWGmL;9)HGg@ƙ2{Bs@ -I١撥(ݪK 1yI˪֯] ^ +/[.Ϸ\O+mQLP)lM/<`ⱃ&QgU;Vg fdU= U~uTKݓjTc /#n+ұGizP6DZDx=;Ubz.X@!-zӤni-%FOr^|`(}EHљxfT DV` 8`U-21 @K \|(J@ p` h9!SPN LnS-w5`'/ϝ6 y` ~E,FZJ?K7x/Et1U1CW4FEx!Aa VчO>F0H$A:vUlF*5&8g@=.qG=C{z7Uxo[(Ki/̩,c`ҽ^ as0#/Kb&e0ɩOaG0Fh +Fa6(.H>4X^Te@:NՀ#eG?ԠY~0tZw>hk[;{G'GCCX bV z(΢e/x1W"/82W b}!x0-590F^fUyTu/3-IѥhA Q -hK:y%YB%%궺E׺v͞΅5Ķ"b_E"ze!YR@CB_*D,`d*hAc,OaS#8%Br A~M@/Z0{{Zr-2-̬^zCn žɴ,Jk~Fa/f!" *F@@%z sr4 $'+]H2ckĪcɪq?dk1nO.l-8q//̬pRQfN AFRQ O~Brܦ*rN'#-g 2&:8*iN/*mBdⰱnD2+{*DQ"mo2anIA`.8 Q0t5m*B \g2.ɀg0 TjC$KHry^BN"ʀ^N0̠İQ @Bnħ& Hj`8aⲸ'oHQm*o O D  Y`V8 s&n:2Hj=,da+0S^.Solr 1>K_.׎/00{{ʬ0e DR*Q59k@dA)-AF!TJ'*b`xCYFJdk|P4&L2N"'%m8lj :Цsa(n10NzR ,0#*&x0|4o@a$E͊dD Ҧ /7#S>-r=4X" !3:ffZ>*0NԐGNK@DkQ5mnTĽ,^I/kRB @rrU)`{*mB@UдTLc"T=ԋtZGDTH08 ^Z@# Kf::1Po?PE]iZ l]Wz*[/@GLgm˿ 6`L`?cR ``AOB B m#YVOcQ'҃=%@0P^X+l"Fa @fx8rrgU_8J@"h]cRR]j>5hSalAua?3p0  mղ-Է)aD%NSt$d$"voNQ@4_j0pR &]Oa3a+/aj׌jr2 L_W+/'H lw5*Y*3U20^/nOD[]f4-B(f){0OU㤧aaR@&2F+ ra=L 4 .юW`D boO뤌ՋFkĢmB0"RTq0n" -ox'q0}SNjTo9K>rl@O~j1 l!ѣ 26*0O V kcyx+e;WHmv\ m `,Pt0扸7Ex?/1zɆ/x)'+a4 m*afL1l 6&#*8 pTY`4Ȁ-eb+^^ryF+«-`A@?B I~$nXAq1* YM&@)uڸv^ 0 Z@D|JE9a&JȊX1y8-D>Gƾ@jƆXz W02onϿA#G&HaaW 'Ga"5f%M5 `: [cX9>GVU7PGkzN^h:g+qf0K^4s1Z,mϦ`''aTfa5Td7칲 5ގ&Nc-B[^jTzE!/_,H\6j0Q/n0?I;_>d> :θV :F6ꠋnjL&50=+LƧFW&k.cGpPJkf]MHiMd%Bsh+K'enw-Qb.fbVIa `9k`B|& G! a=4T, &ƂEF7^:j^RMuse[5j ȤO0l8z] *OJ9믷m)|N[T:ft:V-N ){Eu| HύL;NN ?so]8R#Or($,$\M"K/7! TY=Vmj aIg!ebVa!okrXH:gDW0>F 8:>>yp۫y_{^{)n|Fu"cЏRaW:-JK }-9|:<zړGec0`|]yo>zë%[o\mr!)k_OthOT.Fu|1נTz%&6IHA1` t.'-tI N@bȾ >1*?tߚP4ŃP.JX+P* @Ѥ .]ִj Ԛ5o0"ۉ'3Ν<{IC7X HG/^H1TF r"ȋx']Ί*8 ܹtB1Oߊ|Q 4 mcH 2nca+,32aG2lJ'%C(]"I\k"(jn4ݼs %PlN"gLU^՚ΈXy+֬>d 3GoG}sΝQ|ĴuP/6 b$,J F҃'ڲiaFA#t&=/b9BVC>S2FLTRG,; etb(=8C6~8p '+1З|ž/=QE|%TA\0xc񰠕)E])w|}W6+>#ye]P0G`W}00, :A|iٞ|r !J6 i%PXr#x(AxQmsB,vPc62G<_w\wAdŕPAAT`Uρ<0+9GeUP`1`Da>yx 3AlcT=,2U<=$T,C1(IA,8`yP8бD}Q56^^xC*ԟHq`dL iA ВO/vUShϋNU5UT6~uP)OxQ6P40l aZ` >8x9{ Hlfv3 Gd./nLh%S6SIMwR1xTAB+;! bC|rHw&Sؤթz $YH|$,Nx!"ͯTT朢V^T#tfؔ郁p1wm>'xY_꒍0z1Ud,p&D!B E8NJ掓n#W!Ԉ5]L}C7(%; Bغ0 rZt1l\8e(b$' is[!4վIEjSU6CyM}3^v0Ee:bMA<F=Xx< $> h#KIN;}K&A5zH~:Te a)(^4J/ y>dgvYQ8yaxv.i 4Dr:49G:@AP O*JCŞ[`aMq‹F`-L(R"jo@s2WԬ3+T5ցҦTT.PF0XLtdEHIV 1.% ̣8iYhm#8֬!hTg^>RT,sX뻰ÒNhbXJWQqH0dș%nux)) Z3;@;95\_pTktWIF71+'MK`z]ᆪ0,bQW!? 4bq.kPdh,,,! MQv>ȉOau,D.dBI鋁˧)|CvFa˳reycu UƏ` gYnh ̀! ,وJ5^ޓGW''gh)ߺNh"Eh Gq}y;[ڑ)'^hkj"JKzs$Lli 9V b'78gtΫ9c\{ڮ|E2I5Wh '%hVyuRnsx`Xsl'{zC8,7NYwYwb7XvG[hz4XcX6Xsy85Y`rYQݗox'w}xqXeZx H*\ȰÇ#JDHċ3jȱǏ Eɓ(S\P$>Ȳ͛8od JQӟpqxCK9(@EP āq@@XNHG:040'()q&{b8lcQ%XaCN4cI$܁|dKMbbQٴf(v +`dDH$h Bx#;p6Š3o1|Т@ z"i%@ ! b:QR30$JR]zI[A!ԗAb(Z 8a!\A`{HEŬl48*LaFWpwJ RX=ⅳx`@d 'ܡE'1kt/7W:2s;NaW^]2=:OXBO# ~6N{ _vxbeC)m[/>uǏ^ >"K' gË[(bװ8yAr`6~;f17Aib#_(ƀ;ʋ#=>xJ鶴@=+$$=HؾﮌakF~y0`k:ֽ~P+[XK20h–?PGPS@LASU`id${I`]XlbuFlv{hl7|Wwu`lkeRM # zpxgg3z0 z0vx4/ .A ~?XTt&eP'&(C0fF7lfhjIgK]Ik :p Gl]:M0+p`+`j.gg,x7E8uuP 'Ht4pXkH7JJXMHzD]8?nSPuaeGW'llwwdȁ` Ow|pX+ 'px`juz[ GSgwfgeK7kgoWWA2WBUg ivwh^ |uxu 0=}Pz` )x"X Ќj0GgJB6kBFHGe-b,?vt ۰Caw ԏpk7Ɂ؁P.z}`^@x,1}nINmHX`gXkGhX7 %uWh{5]hH{oEkƁy 0L`(h7 n]E[懄QwTK7t)呢וe+A$HPVp vhX3y pvx]]+0'bjE0 } zxjI,̒+zqGHSGGJxb\uz MChcnف]`|oFǷCh>ɛ l:Ǘ:I fZ+P5 }mIg+ jy e jJ_8J\bi FWw6px]p y J<j/`j;xPg #Tz$eib%ziwsu[8{lYk]k8:ٵw/PjjpCgԡYxH(&xIQfe`\R֙Gg T8ze),VTkǗؓujlh=G}v/砇 ~H?%Hy7zZ%JcztI` se4斵؏:8q؛xr&~.&E?-hnJ7/wȍZzۨIp[{>pH||3*)~ݥ`zxͩ3笁y݇*IggZj ;JIeչI0TH{|tizz B cJ$7`E:{j=kJB+-笕Vʩct;iqeYd 77vdj`ZuhQ@$r{gPrmx|h*ۘP[@Z8*Bk/uǹ\#ۛ8Yz*6j+`nԈ׽7vpHݧWUZ}$[A&٢/,k꺓ꊲ;p}Gjݫ%Wg;;cҨ8;Sy8+ARZ۾{יPy˛ZpГyٛK(pZ{]L  +D{j9djT VSIR °w.̼yy [8[~ЃvPK罅 B苷OQśKb{SH1D'{Yk.0k<\ =k`˳>˂ڛmgzZɂd+pיJ},`F,\} %y|pW璿x{h|-.I@/C0quuz,vutzi|Rj'̾v@,oE`n!ZjMڱ,o r-M2>}-z}BuG װ]WzN  vpL=C'mg-E,+.n 0nM}zҗ'j×ت/LЉp= ۀ G0Gf{  .g;[27Tՠ~ ~>,ʯ ⣆Nؠw}=?G8юuH`IQppk=`2ӭC𽪬ۇp+4:c'83Nf$U+> pml. ~:IH[T byЛ L0}N%Mmd} {Xjs渏A ]8;&xjgޟg]ph[@T#wMOP?}r'B9{i궷~?À@l\ [ QOD-^8=~|Ӥ.Q>|̇.%S˖8Bl 6l3#'0~#AJ;ͧp)AH;Ã86d룫Q=%OV|v"6%9 '3V3,9=L,8:u C2=4 "d^7 86Dus`VNP  [6eIqIJX}v@_j`޽-^Z'|&!p! !B8dhao: \= xZmlhAzxk+DH:% I{O| ؈b~쓰*V_bt|QЉM3aP63ApȐ M8|B pTG>vLJd%hSV|8Y< [ز$կtD'bT9I^LQ Dy ]`J't,|y)ʞ|  c2@1h &fr\lshsDW08AHw HyA"!Ȗ{ 7Ajʐhɿ^*,1Xf@9X M#F|W)R/$~.#᜞8/s O51܍,6YüǞ8"puyMWU ؠvWY ZihBEi9“jBv!nsf~Ye`$|fql+<BX%~@qН B#^D_di iܧ=u &L8nvW)=;y;%A>:\r߮#N],Ej&pc j-cez)Hi-Óak:" =0( c|Ŭ8?vj쵽h | 9#x2Ϡ<e:D?e絀j;XRWT/#a 59 ?||0n83 kc#1{;A!yTCS 1 -IA !-p#x(./8q(*~(~k(H5 Ngyg 1 1ҌÁC.yn!@@?&qX/X @Oh;0cЁ/83 Ƀ *DAg!7z& !ih5j5iH;#;#b=?=dG&05 z BqЃ | ,3C ?{ @j#6:ౘ{ XHF54K4DI?V00$py RD|pGvlIxc/ RY@4Mɗȗخ$] E~t`zI(?*ۉ<2ڛۯgِ k–,5s 31 .;:?(̆ ?|`Rx R9S C ZDHj{cm`v884}HJh< 90"eY +ɔ#9ɔ+LĺEi~`ll̫3ӊx ӳ;T/;Tu.$9d|\1 BK Р9<{̲(M0pܷ#.ĞN4L&(@&X?/LNG Wl6g *@#A@&t0՜OPy:(>ϵO[BQR%%e&KDK5 eGd\l@@nz(GF:QKOz <#~Q~8M0GH,T9U ڜ"% ' mdD'LP8)ҎI@-?lx!ȆUGR Rdt:3 ;=M&|y̚>&ARV1p:[؄Mx:cU*"Ж 8qV1+ %[AkdD,5 90:qrQ |si=GY!03)K9ؤs,<ӜT[?[^bU˽or\ͥ0 ;A N|#U0Eo5|dž 0ۂ ~_%v`lhDSGڰt ʹ{:=M-%Ec śvԨTXh1D#0|dJ(݀_UU\8/UpzW[ӭ4MvMOTR:Ƞe4I& V(UT%0H2䬂MŠʍtd4%.?8jǛZWr T OVDm(YTWvHc" QR`-z&*~&J=8hтi77M $UCadrY ͅGI*kj Awq`5%^|qʋT͂HXhWFRxe.ؓiTR4᯶b0 i-Sk1E `?ȅ~pdI,oz\nL3| 6E>pEͰM`6ڃ8֏-ld =4_*70(эyͅfd}i])/Ye Z9{g7ŋ#0؝~ʖ83jheX9nmD=VKFГ?[IgP_.͊_T}b(UU qsʻ8glVl8XOXlΆ ^Z:,&b"9-ز.+i#B:Eiv]~pdy| g)]6OPU 5iw yS$ \;0؆Y\v8f82c5rDVG:&g#dV{DR?ؙ ͇\ GidRTeUX~< 0 ZuVT9we='ɦPvQ I˶K;]vQC(]$9:9h`CUq`ylL(4@ͅT׃I)Wu"Px@g{uuE ~:2Xsbx;燍WA8Kq@Gٰj[R |x7*2ih<ंCyRO+&RU.T55Y|.,op4|WPʟv5 fГs[HWOhb@ՔHfPkta2m-&Go+30Ifq|Fixfw̆^t}YOpWGOًRS$\g_}R(h „ F`COa^klbKIgcX[w]`o$6iƖ))܊4w/ 2!b8wMZ8u8ϭOWv'VB;eEpVѽZӋ^V%kaAð8|]W ^-` j `_< TF&]#hpFIv|[*&%~*(I߭`Tp%1#K`0!C05=@Xpv:0N-BX! * {Bl BkG)6O>"7#o#7́5 u4XIsxnù̕t24nvT # Z>?iL*^N~jE"I/E /07M[H^BP+m^4D" {>h& b" P[Eq銘LJ˒,) aPq̤94G#$T08-9NqAOkHբ ~z I/"\Þ/d 9 P4(!)T>$ \1Hlp>Ucxh+ܒXlj'X+Rx L8 zVi2uk dwon<T@d`1a(Ɲ<'r HJ3/jmh 5VNz2!Cva#@T["g  0B{uF.HYJ1$9E(Pֲ/ ټ(ժՁnl'RQ';j~Rd .: R+ q'*I yP%@\hBM 8Ĝqݗ!7>bBu`%b_J2l7 Q8X,˄ a E;G ΃AA ۑsDP!6sjjS#U_I;_C?  qz]~#+]i,'|)qSN6l<=B֐@;I12=li*AQ.m yj]%a'cJ} ךEsD9p6 G[ ` Z`Q6DTq0iv_#Aq[1 gh]JiRJ.p"6ކeltJ wo i;EI7{ϥhkLQ7nvnmC3@o:c힋A ]s~BH1͡(+ts LgIوSO_1HI]bFoD ˭\˷ uvx=4Ey$@y0ީ=P^.,vV sC 1FiKT(zmFW%%@\K\TG F[mW1Č]5^hjV рA_ivԠ̀WlAWрẺ8RN cS 0D g q\\lR=AhC\KOFHtFTqXJF Oԥ! bXl\v`! QSY@!B  8 l5յ8~5|B$ !Y2MHD)U uG!lhAD oE ,qcN8b\YPY%jS:!'2HHX|B+\S_S ],"n"pc"i8ۼ `2zRLpD A)QĄyKp8L9nGUXlq@\%Y^}_RɃB!Vv:!lA.Bj" 7AP' :C@CCHa GW-` "KNiRMTYlGS,E])8jҼm<&p\ߝpPbB+h%Udde}~%fC6|0"N![" P2|$C9]Ɂ4=6қ` Ah$J\e`O% ID01]fuDaI-/I.)mS1j-Pf'P>9է|Rf CU~lm۶R &%`/@@KHݐU]AXBO[ئt 2qZILF5ҠQ%b"g}&A ff VfffF:bAAېvNk&)nv^B< e^5; ƱFC1Ր@UIR]ݘ5"E<3tOaiқEuɅ#~e<#PS"TBM=g!!TNFP!Tj jdbZ6ChmA|4 @UpW*FF"CڨM߭m. a P2"((FXk6O!> UA¢e( 6P-Dx61/؆vI3ޥ( ܅8>f9EVrg!SPB %(6a UĬޟj~Vd kD6Xhn/ 8ACeR20 OJVَaӸ)I\o>V&]aB^٭-@kRS-,кo6_ ;,Wl\iX|PRByxRrp׿E$ R뒟iYݭ9N-2jPe&b"aE#)bU6@khʦEXA\?MmC ]fBA]C=qlXmDɁ3غxŝ";ag}SЮLra偸rg8fbVR֜(-, utEBD&^:aZ|@|UQXךl@nr)JVmz9Y7anOʦ<qPfq+ iOAbPPW%c /dC*?D3M=ࠒ/~^"U2 ,IhGЍ(Ag`6 1V{݉㫙T\+Pq{vT2cɖ+!g+V5x%6d?xo 745/C(0 Č]H"$Q's&3񰾝I=%35Y*('OAcΜ>\|%0Q#nfkG]Aْdx"B7tڎ'/M5lC+\0@xD ,hHot4`;&W-5\LA/k6Ӕ+d-t+^ ,hw}C6u88BM5̃/wp)2Tmgk|v&pPlļq%Z>ɝЎ60͝ZK,O\" l)cum"+vBB)`?A=z_1y`F])qR4E +_)D1m˥muj'XWgfArqpw uhiBRcdPLi4-7iWK@yx:?z;;܃^.lAU|&Ɂ:P4TDER`Wwр@k5Jݩ%q5 Ty>̉>:\H%)4t%R!S du~ZVXAx7CU5;\Db?L "1,hI4lAMuFLva$y2L*0fP=PAAX+9";lc""ߵb8? |y6yCSq=0>֯ KyIhzEk܅|:2M&P6[z>@X9'el摊 5b<i!& )<_cowE. 8>@^ATPN̑0~QA 2dc."yCJh_C$cpqJ1#@D $bpn#OT1向T~cKRiVWS8jjVOtPۡ0Z0n|ZІkoa&|x5E G|'W[5+W)lYOj- 6ګ" 0  Ƌ.+DJ J2+4CH{hm|{7i`Bю溈£cz;ꐠz#6AbjL l**Xc V:*˒@:H  B L 7$.*a/9O٬f CJqCG(x܎#ib/hn9(?z]s/؂$v2h(y݄(44ϖČͪS?d*VxA>r C )C´0H!Ӆ-S:FkBSI#pTM5cGuLvJ|CC .[fXgpHZ3ϋJM+s*ޤO]Xa T߭E=` CT-Ӱ4 R`](  V5fUY{ &hR$i,jE&x"a#pmSMgnÓ'loi{SN:^K7- Tm1 ^GLZ>t8U%oQ&)p[+'' vقQiLEcֹb[@ ( '" fLOIV@vzS{Ÿ>eOX_:6,@B ZW0Ƭ0-jKlC"8 =!Bu(:Pbbpcg:c< rbt=FU !u2l.MѪ` N~ BO (t6O-`{’"м՘ q +" pE)[+3-d `_` @c*e]zh@;n+if<)PÚ9* [LHX,`)@Y’EMr0c;L'8)ZWH,F}+c)KcRr;J17~QȣjG=uLɷ¡-'I`LᴕC*`$}ʼn@8$:ROAy /!U"7TVc=#+ (fLҙ/D0juԣ/r͈Qy#Gb>u St71q=\t]`ѕ6K.nidZSm(jUW` @G:j)8Y~"@H_B5~Ӫ>~Øu\<`m $MdhuSV'gjRI.we b! /1fƠiKWH|%M\tЃ,lY dF0n:`#QEAPi ! 5aE4g\U/yp_rg ! 0$?d@4|M B1 t4`\4#m 6$55Śz T7Mh@N- ^ A6nq_%O:2%*SS9ק`+t&8 [%NG5옆M |28%rK&ފ,6!].+YLRP96.܄ Y\.I*X#( `e2O)gZY1|\;"Օ!x`hYt"x W@ Jx-z2]g3!@Ѓ t%>iGwUj;g=וĵ`o'JU|l-:3REִ(t(Q$ĕ;meݖ)! @ ~!鶠6 fBUaC\dLc쬏hƎ*Cءܯ)a(E!Nhf DT~(mծAoƥ,R@$H *I*~-*,p RpL-",Xِbj čtpE⇉m z = ! 7LMUZ#f v֣)ʢ C&w41ٮjZV IQ#3 \5  h LDjvo|Zg Rc940 M:P/&*ZaRaگ0N䀀]r HHe9GvG>0p DPZL-2QFZhӼMppbGaZ@` هGNRj$Oec> R "(F $gjOж$g'ԺM ;nDl#?QR')*"b* n/-FJ.$?m1kB `%%~p GRլtu BC'Ġ\/ 0i#oLd mΑ `oҁ'4 TC`* 1c؄iX6е>R*WU@p A4ݶ!O -Spz`L-;R#M$*A*`)0ET*%A,@  }z`*83f*U,3ch ^/)BiP$U7tC !Q5hp5衾G`3ͬ!UC:1GNg-!QXnatN-{HIc `Uҁ FUPE-- EѨ,,o \dj.$^NM2 (bHU[cD Ma  8 3 $5f Q-tUA'd[7 N5[-`$6FUMHn5v5%Q5&@H50 p 4ƒ0oZT[VUe5hbyUV8k4*SG RY_U_ V%GDc&ANf'## JY#bgVH4J QC35ɄDp jU^iuF(^@p6l+\#B#U(bˠhE|>cl` Vp 4 a> dRVR `uor5 x[z%䐍[S#ڏnJZ4ˠ1zAߚ!*ڑ9n\QZU? &5;2n[[LnA)7aQ[ TQ[37g{o-!2@H{ZG4 ! ,p%d/ U}%hQHdNIv]/҅a?:6 R$gEڅDl&ؖ0E #GT VanM8z%adIT$=byppֽ(vM}gvGeC((rn!DGYfdJin0*Q-|2`e)M%vbGhBp+$lk+ ] BJdxЖ(mpZ [+v<[^7yEgH`Vz,5zs!`a1p.[B+1q[cՖoG %1*z!,KƬ^8qBKy5[[sKslL0pvYp,a>-QH|⾔:ٰ?L=s)B75.2# ~>TKղ̽L#+*#wx`_)Ȑ/XR0X e# I(riyv l$G .2QmO6 *M-Vb;{`n6 ;+ِH([ <8) "** MC^$ #"v[l w6Za6xeE,.V.fB7`/X7"YYT X%*ёءس~` d iȶqqkb#׺EB؃sDÊd'%%!d(wY> %/;F'Yr'.쀗>MmA04d2T5y~tB0f,E[".| )&~+a8Od Y\I?~` cԣ<Fp^<@ NP“a= W@Gؔ(/?J+! C*xzs"2sWЅ,d\xNDZ!1X0pP>()JP8m+91R1Q\t^<0xa] ( Hy5%M(RNiS0"6U >$0c tDjB/+Tz3"$I:tB`.`Aw=m~d.{~/wGn $଺Iժڗnq9\ *P,MYdq Pu@VGi!v`B΋p`1lQ5I_vS sS{G=F0=SUxD>d=G'\qWtH Za9` f5&dȰ'lQ,3Kˢ$(Bb0 CΫ:1Sz-F-m? :!`+Nmqǜ8 | Yz8 F}p[ hC*w( C)]3Ϻ~]'H,4Bc0C`+seWx7C,0<KxCE~gB7c깍-Ѓ^3hyjiKCP61x8<_8*-5cu@̈́`-J=0b! 89 <>; yW$ov0 "!?+FeA~.TfO  }Al`$'7OzX8fs@zMsy&w5Zy 4(vK\ѹA^t z H醭 8b b1<`X6ܝ%r1yCcV,.t\LЃQօ*W5fek$#|t.cI?{zЁhG`d\ ؂`[G?L qj6 =wj#wrygwV^f|8fT %}F}&txDF^eG;hcpQ1xQ wgcahqFfSgajVgETwYgW g'}tķ$#8-}c9u W]_; Ȁ{_}%v@B( _6ffsֈ"jTb %j.aYkx^ȉ+cf'q(c 0[`@[dev8yV\` #7{^D0{,15Gfu74Ȉ ajC%TpgX}yG|荛Bwc388{` 6St9_7 \u Ѡa``{)jD|7jt'jgeaZxV)vɧw G|Pґ,= ` @^Yrja8CeawrfkgoK$=]C'398vq;__Pp:x{ uٖu afjxXs )cvV Y|$.Ց (Gs%n)qi'~@ ɠ)hpEV  z@gw{DL84֌֘RYWkx}h1a pGW}08mɀ;)_=~G~YbplfNp ^O(^8j sww`)` p%Kro8<[bh1 w8 iV`iYlieHJS.7j{v ya0wve _i` _e!J^BwZ z8Bz&ƣ_1~_py8أ;\ $fyDvPix8GiV&y_֡JakqA1 8)tٖ=h:0ɣ>jR8 鐆Ƴ-fV(j(ɨ0Yꡘڕ:A$."t%8vyࠇqު9ʃڣs5 { iEiJf*zaIi*z*W>#`7z:7ȪG+Юh𚔹 fa ʈhr|PگJǚȺ'XE$BkPxhnyt8K76Ƀ9zZlLS &ՌG90y`NJɺ$^* G$; hI7X'tP;fDPHw&a*fۯy@m fiVNVZn{JeK}iyح4zz~˸UpD뜏Fʲk7a2+m۽=y𕥫e*QT1jrحHbGtjk gˤ +_;jJ)H٘ʽ)IůyJۡ$vD1H{kH뗾+˼ Y*- )+&) \DZ AP oX|{~d\Uf +g[ͩ %KE,$aʉVկNP8= [.|Qx%Ƈ\Ɛ;@ n ;qt, ĉ*jLD%L yV`NQ<|OMgzi*|jail ^@g eV{ΒۼLص^aL/ xgV݋eܡ,SkIKG@{͗\b fI)Pp9@ \ <njXa{A%ۼHam }aZXRiV,̉lm 0G%ƴnjVp-+ [Dg ( ƽ-k3MKkl{p)M[MSlQHvɦ;9jm>"H >@ +pKHu,({B`);Dh(zZXŧ̑P|[h)}k>\k+plհ|jϯmǑyӶm{צۃXMLm j <sJ_~n+0  \7 2 #[Ky@Ay@0 {VjPL|^=P U@Hܵpј=݃뿔pU 0k@ /ʩ|n);ymj69W KlD~H\/1 KBW [}+󉱺P)@P`{K[:Z6jv~JB kؗޓ& Hs'+Q>[ p-1oLgf:np.x*vEK5DnID^vܼ{`юpP ɐ dIk@wkD2$p$Pͻ7O/nf \|Lp ~D kGo=00dp [2O %M ) и\3/;oL(NVӺ$ ?R=/;V=:gs 2@[@ ^1@ % ՠó=A1>:~ș%IMƮ%`PM/JPߋǸ7Lշ?{02pS@1 l0Қ0-%+Fwz G@ ;xA[y-]<1c?n!yoE%MDRʓS̙B3 +<T(P+V:EsRIlh6'[9Ȧ!3 -[ac%X`PFiM6c ;/e•K$ A ߅@A;R@4`F8/ڋu^܊Rjbф {ΜE*e4mAq. JٲI3Ggɫ@֡Ylf䂭!xሰCS } &/$"6 B+xYB#P$$5\0IA {H*7S*4 n餛dF)Rt9렙,&(bK/k fI`/ !2r2//?,:3Ϣ1h hd0N^6~p=7 o+ >{07*ql8g+9k1jȐ.T8 . /l zoǛdز!,VBS(YLJu8$)h$/pEP 0X{:p9@ׁЄDf3xQJs)`U 2ЁdYmgSt&1 TV* aCdBoDvV;'PA7% 1"׏u#@c$)kH  V܃@ԁ=ht KRエ j0+4z]CLj !y)R8{Om*%N򧆎 :+@m -kd?17Cސ&>2jN1Н@ H1j, ~ :Htް^SS%7~$Y^l[0|b 0>'Bh R~ [ˣـ]+*] Ř Ys1ppI(/ANpCxR1Ĥ0)r #TBH`G 1`Y>2W ('\'fT7MrKMm!ڝjb|]L3H2VތaH` #=$j4>dB'2| 9Zvng[Jj]aQ`(C0P)zԲ[J.pDKזqeQrEx$ر+AT0 7$nn₋NR)NrV4ni].;X2&1ɢ9 oh/W9`v9ОӞ 8t<_PAò~мT2xp0bsaۙ]丿<83Rg㳛yBk)xN$ϊ/wz`-:2ۺ2˻7)?U:*0cf㠄@HE=c.f3|M L>?$oÁb0u*<HYÁ>~{äsx&RقC\oA +D0D)XDj8l-H3J~Fo61C!Q"q3EĈvEQ7P!z$#LWC .9]+p8b=BD$hĊQ)%? mokpD6"获 RHEJ@`냂-TZTZd_K3[Ȣ8DJpDyXW9+{C ?YA++F ?сd4Dٿ2Hg0&05n$K,EH,M춖c.!|IጄH+d@A1OHP̠o̥>dL=! LDC4e3M9!b"j2|p@h9\94 I!iG=xy, pT7CpALUZXr( 5LlHC\E)jydb)5)xéƺ#:*ERڼMT9TP|$$H d1t@;ѤSAiaіy<5b5{+pwYdReK2fYgc;٩\C4&hy};*]P+EKPMpH$w,Nw| Uӈ%THSxSKL\T~ӓ8Ss@-) 4)8le3j2R?38jʠEQ,Mp)QR3!ZP SH 4N`dX:dhô<2H|ka0:ԫQSdGy:;SbFVI&:؁؂'z e cGф3xAĠB~p &,yË xPՖ]aŊX_}S,7y0Q\SxLUE:Fhj0F ZL+ڱ-H4jlA| Kjㇵ6n˹tG,TxpdWH1% nU.Hmn.^gRp2BԿBpQ MATqIHp @8 h͚CQRtHpjVmpZfM*wMŅLWAyn+sԊ ܕ-#{F}9ȝ Mjh2'InLK)Rt@o* X l" 8 {q<Ro׽y&¤ yvd2?mKf\HIy^d7埚n).d FUD͗x_ϴzm{^qU9ټ@"64!kbĀoQ 4c'|a!\"}CL5f\Ѭi&Μ:mFbO0@-j(RAvmϜ=ͤ6kE3sp!Ù3Sժ%KxPXŚml52re(PΜIS"v 0D0^8pnj#Ž7GEB %B(T@r:D\B*3i%۸,luF7TϥI/W9ȚMN+ \|K,xgd%sē{ Jrϟ3PlA?eX`Dx 0MAuIjUw@PieRƵ\^5nAfg<v杉Q6 weȮgg* ڂC!jQ2+h$MIV)9rkV@LGfU}vʰ]eS!#_+gR)QeL=ВB)opX >`v O.`H-PH.d܆'da 8#լvCxbSFjbr%lʓv62aN3f`~pz$|uL'Uٌ 'uwV(4wmï+̹z##v`&dz.׷(EJӳHL %#,vͣ/$IFR>id Aɠ )ϧ O} $bOW4:biJ\Wg -tif\. 5b}ŷuD'{ŜFP|cd֛ rMzw$GilS5 ,_ @"PAEyȀQ€xV\A@ 4́ K  VLL*i t0JCK,eDHF8NQ$դC5PСN6ҍ `U[eƼU!5(%A'J8j\- 1 +<#܂eLB11|A2ă=&dTƊ=N5PE D"nnyd K$DmBuƮ0B?0_š0 lgȭJ1$,p,DC 8 Cf' yHL^ Yu\要eQ碆G&Ftrl -D٭܊^+0@##1C2:xiG2X(CX/r!5SLy0׵ 4n*AJ ./C7T$X+KX2<$Cj1p,ڮ^@+&gʅ3\^Đml@5CNfĀ}K^fq].gP䲹j@"j d3Ĭ6[ H&d$ל.B:)HrA΃:==΃^1C._^^!+&GB6^hLV੪5s"'i6' *2C:ia#2tFB,,"A,#"R >K@o?=q?9 !!:Ǘ*<$턊O  OA>AegFr$6XϨ48fi\uA_+.#dP= 6PC=C6`J UcMڃ?IVi'm"Q%yKkט ,j)v\- B= P?k=@d"L<pw@5O=g t`=H75 x/V_P-wF#Aouu?8:#):<<0u308A@w%8o͵H% 4WءjCl:x. v51h@++#+t= 9y ^R .s E^w+AeBNp&ayLoϸV1߸+@21 n=#lASC\=<̃5 pJ=mGxV=:A+~B:00#<Sp0 1d#zx$C4D;)D>+>ǁ: ?k.{n@ ʚ-$TA8L p^ :tFBިQtJL-;v_M7qԹgO?3RS6n<%$)#zԩjUcfK0Cd\|aۆ|Ǹ$$xA N oiqHC!Gaxۡ0+i)mB=\18P*/\OFt隷` (N!DحNВHpwDQrG HR4 $@[O];7NYuYXc6VUhy֙' Cە({-㬯0PeBz2CYmYd  ]9@cط[ȣ0I|QNy'}: Øր<ʍQ*S ҍ:#ޢuu#^dƺ U%0&ĨFG~@Aa$S"0$h : J!Q 1RzN BנRQq.gz Yd #dQYGrVA! e<ԳCuS2t!yh沮=%DÈA$8 .Wqml҇,ʅiDSk)oj:NY d1z1L{Kcan"ag$ͧi#NOA:x#Tb2=T14P]‚p JlRhJTRKi˙ 5?Χ\$#؇HJ8XLubXH(EzzH}!-Z@/Ѕ|8>/?a"7G311=*NBik2Hc1PG)R t fDM㠠U]X tDqʨ|GAM:TXϲhүiNfؔ,ҜgY;E]ኜnUJpԑMdx[O>h?"jln]gw8q)oO|8! ,؈^ޔ[7`k5M۴;sSzvdMkG+=3cw-o4u6LiǮywՁvn WP^h%$j,0ւcJuERGdw5nZJ("O|1<(&goqF)!h#DTDn*2Gj,Aa~7&IL΍#oԨUbu!swg]ZryIM^gc" m)"Jqfk]١"駟\i"-oNۨfX٧u.Vؠ5h*!e|5 uኔj&XGe(zu?ukI)k,=-ju$<4=fȆ֩F-pڛO򘫵W3niD[ ykSj* slA9ܒl|1&hj\`-טaWBoFn܊b;W_1FW =͙vE'í*RGƌh/#>ak&8I}Mcg L؆gyT‡&N&>w 썃m ;[~*ѳxb9$A#Ŭ̱98*ܣOk2ͤbnXGʶwRL\Rs_poCXH/#`gp bPrrg8p$+\tAz9fif{;!CA|Y7D )0;B(FsGBa),f1g[`r!CFͨC '\#F(;pa`F$#,0*1 +?0Jt%m w$%yILj/OD6)NҐP"5+W-@LJj';Z6D_4"6ñc RiIb^R{<|b,w15v in:HD 0)`z"{3җh$f0vBc)}U)4QFTne#JRө, @XauSg>Ms8U=,HaI7,4 KH]¢ÓC͋ƴ:)e~Ư3< 2sLTJH^2U=~FTUBOI@EAkE#R0 iM$o1PHmMa@S>FѮ*Owӭn$*ojn;>J#IVt`P̪ZDcJ̎rl"ڒ:E>iaop+0zhvuٽvD)H'x upFp2w`*_5L%!ʻbU<ͮ^7ỲyHCaZ{>޻Zӥ' &zWbܦl)InֿppIܝfջ\mRqLh;2Ǯe_€t 49ܼ^$'2Xn9W|@?dq$P`m\:0 `\# 0{d$W!"6sKW˔ f bTLDacGt+; >VjP\ss ы vFp=Tamc[OSf1_)i5%:`ux1MB'jVEͅ 0!htרlN0HQI5zʆv4% 4gͥ -n![d+HTY z>>/ƛ61myt- >4Õl-D_1Q0oL.^ skz!'bSȡЕ֪ЃniTv3+(j8*t^A倂9zPc|l|r0 `o~3 nw!|O["@),q c6ı7L{ JЋBoɯr Czc7k_a|Eb?{W>z70{if|tt`(#L  p5$E~P}uwy5rzca2W>v0'['od$'7ws u"f c&bt 2e0@ g0Ph6OA qVgGg)H0v&~gbWhr'6X|b5w7tL0q"#3 v P GF2<0HWIur %`hwucsaZ$7[ysۄ,%qXx5fև~Hq5uXuðm" WS0Le  IP}T( rF$eikfGgy5n, ȋo1x8{׋GhmLmPֶK3  0؉Ipp`HotVg4]1ǎtkg?I&iW)wq|B8he`W㑓"9?W@{`g9{qu39#X=vdy׆=rh0rH9X iŨ| q@t"0t ɵ ) y7s ))njrv$GhTv0~lw` j W u(zs>iFŐn𘅅0Й[ ڹ0^F%g7uz>ƞ4Z=~,@ɏ~)G9 zMH͙9Őm`|ș|ɉZ InC0onfxvɊ]3rPq%/Jye$:Iz:Ay)7 PXؑ[Tȑ g" a7|ir(b8z| u(ejzXOH鑜R pVJr?$ 9ɞ x'h[,j | 9:-tI駜8aIzaig#((APy{PXy/scu8*s0٣ZN Czʉ館5%':vh"8ZyX.0Zxfyp꬜ꁊjh@{*NzI@@yF"zcr+xgy騺Iȁds6Oyj9 *Le ? r ߨdఠ)E{ dvzwND-hPf_Wyku)4̺H)1Q#yk˙\ٰbɰK .PDpH{#ڞd Y;f]((v~h,e)9/T0jMz6Ф>9K0x6@;cgrЅD@ʓˊnؓ=ɸ'S ʩWpCdJrː  S00(Ng}ۮErN@y{(ւ`j\[&ټ{dת * 9aE. DDuZw\r&计oȏʛFsj-;ph5<I1QG7 ;]ܙ蝠i#9a` p߹ A0k6I ]+[yN{!-JyɼiuK7Ka̜E: ฑəð @#In t^b̑!LDkBqM[{i,6܂h`ڸ[ة" LwuEFp ՜ȐDR  ۪߸ڠX#Sn@ 0<.pDM ˅:%ugOaZyXr8 ʸ_WњV.0K3l `s YX"S# ,щ*>M ׄ- ^K =_@ @&Hgv+D)hqVMě OM nF.:t >zt ` PS 0KOH@ O[=o/<)n@p蔧Xyq! @W_TYI > O 13O d@`@ FrgI=vq;)w{P?vN/Mw))B9`1 b .14fI`طr%z-!G zWp߾rzHb@=3@7#[ϟ=c2hRhaD ›E P&(`1K fh^T8ix '?h庇HFސMKOhW.&8ȝw5Ḛ*bfΌP8 -AјH鵙Zk )E٥ͨxa84jy" j{ N;jXrc+='Áqr؏3L1"Z94?P0MXB`rA&;c@ 4<̭Ġ&{a` k1b|`#XFu,MҦ>% )OJ.R͋/Yz p>a;HYa2K~o2c 5Ӝa\I6u)@x!)@ =qcf)?i8 |i RTNmԕܐB"(KWRqv/\@1e6gIZlUp™W"5ApdF4D 7x1Ԙ!|x~+Ў;m4;4G P(+VWsUH҅Xa396E2Y앗G3@pfo9$?4.4*]iRLCF5$&7> NH! $@ fT)0,+߳xAY2<< G?_$#q#g^fT:J644E'iHD}BTZ'؋ R;:h l6"rT°Hy`G;T" }| G%dc*e,BOv(|TN<2 (%E&< ` 7la. ^z1Ǻ̱rkUVʅƚɸGlp8 =\C2g6,fTQ* >XwEuŀ.DtBm``::Cx҆,:ЁY0̼P,JUjxD ñʘd"ŧHFr4nB!Il .''E˱; #a( vxtX'c9bB00L$h1ac4#%B.9oh‰ ~[\ qe _>FYUVO6,AR2#TnvTy#p4cqi{<R/@ FҦ7O{uIs)Bc^&D-  HgG`@Ӂ c4kAvWv I#퟇,o5"{gf^2$4kʕy'9 2ǡLua۫xF>`;`wJAuF }%X˄BB*# #8gw&RfR/aFP/ Tj0! P鬦\~u NoثÝ}\8ib#w&av@A bhaHsg"5|*S[~X?߇y_д6X / D:=& _QMU)Hd 3; (/#hP K,QYp&ҭ >d L zS0E2VP80˜uM2qT`3 y$@d6@ 414 "9r +~q,D!y ]%}H (EbOa@60r˕T_]6,s eT#Ɣ1-j<iقt5r3=ITI\rd=rb0@|%p",'}3 H>M0ҁ%"  Ћ[th"닌 :C ڀsFfQ)DI ə8GII<=v @Ix$f8=}x.SRJmpU<٬0B\\(vyr0Q4:NSeCe|sJiJ< Lʵ J< {24( k.@T6 "01"P : p^pUt# |FR TMPhڀ_h|ZI4iBq@una("<<"dO0xi8;9< Guu4 ȝrNNp%p )Q( Ha8|<ыu N/A43yAV#uu90xyte4H|E ˳(UCWbE[㘵H(g6`I\mSQdU:3N=C郮ԇ вsp J)J gL`NXb4[eAe gCkNmi08-طI%o͓Qv  ! ta)xܟNRL1 "Js8E[hʁ(7zC:9& :G늮xOe!@j9_\P؍p NaYbhd+ed4A3]g幭5H㞬DΤ^0\iXC1SOyݠym %g頱0XCn#? E`_ eL%Hu{Ta4)CL y0jgq[CoVO0‡3kO}}8_h{ g맒, &Hkdr>-,AS:7unɛ:C9]y }EpED";.qm7'C0]F 6k,p۟]v:B2f>ϑJxJq,O,F1""u!atCUQPƴbB>9p\ 爏W}n"1q͵u:%_i;.yɚ'"O\0buvªFA*_6_r gr֏JRra 3Ux(Xaؑ>G\ʵVLWd^_ P|,buD/h%\`y&,"Fo3̀'1"rxqi [G)U9qbw)~@~Pcp/ lpeAci:0JX";ᶢv*Ա=qƓ5ҤU4΀նKѨP^Xzf,́I!BGAd0ҨLiN6gLca4LLTK[S'U<~DauUʃ^祧(uߥLBqBA!oҕĴӼfy$PzRF,a 5\sfUOPb;t*C&EwK|XhG >?c9 yK&K!'FaQC50<q8Ut3qj{KO\bwR!8P T )PA'"21(W sK r4xh'NX?J€dPX#[BU}]2R6ԥ$ZoJ3Pa0@Z9V5:ZԌf h?1 nejXHc9ֱ1rXjHY\Hu[|72l@Xh3BHpE,OL})W0la9 KY=P'69x*B+KWbt* ;M̻0; $=f0їr"6}/ogs4$Cq#bO2Fs?>ܨBQVQfU wt!Wbé(;$aR_϶L /q*e`M!_tXZXyjXk`Ԍ%Y6~d"R VT22\}<Ԍ7J.R,( E% fUqg<7,DZ'^Iqs+ dx0(fMZcC ` OAގ(#bQ mR4 J{w]]dfRX S~K]7-1y(VG_ľs$v0kQO`I! Ǡfp)D7;.GR`G,sZ9&b;km?M;°B5)YDq Y N n'Hm.2P)aU Yѯ~^N^@ҋek(n`}Sҷ$ ,BUWH1PE\9,B!!@QqL#AfERiDFg(S+PG8I-_PɲD(XH-AL4H}Ɏ"}חȕeuYځۈ^T (u 0K"` @%E <YXJ@  Qa+sO]K4}`^ b-Za bЈ }28򹂈 P1J@ RsQ}[_$$e^ޠܚV("&_Y"!Jtc a!eЩ>*,qQZN]\ŗ$[Ub2vVޠߒEARW8xX#D,0Bx~<(,"`P-bMK1ݤ JT At8HR\A8|8"008B&8Ā0P#Ykx'W<\Ad[$I?ID_EPW a`;M)0xCU d%B>%L0lSAsdZH` 5?[&Z͙f` &E*eɘf`U&UHC;X‰x8ȥ A0唑\I^v블Z^<|*Y:,Dei:|щCpY,DJ<(#.S/xCbkbAG6DyRy]B.-(a0 ):A;8,]AƆ8܂iJCbAP׋eAilW0֬+pCH<.AcmLɖܨUX^Il*X)ځzy$Az--q:N-7]̓Q4,00vV7TEI ԁŸTS©B+(YiB@q..<@;Tn0˷L`C?Vilm5I, <ۛX܁Bҗ8DoB麒 Εʫ.(@cف)i j.pr@,q1 J<(px#Ciev':ǥ8uo-AB:A?p?plSJ\8e͕F+ЖA?,«#Gal@XjA<@#?o܊DrwV g  rY-]'  Y_"{:#C$GrC`/|VΘ)V浞rY8 5Oc@,O/17B `/A/x0HrŢV8Zs%@f/2p: Wq"ixj2B2$TvKrA[dD(wpqo졌:\5CwK/8C7B>@r:ףsڰ< 0K#aRrr*tKw7A܂mO.ҷzC?v0ඈ҃47*`nܺ01U00xK:ATo12E&r:$ 9:7/6]2/v$ϸ-}J7w[nA 6v$#0yx9 t!Ŕky3B4h:Q o=1pvcz,XGxi78{Wl-k',DUx=9|^r3,S㩰/o&h$+$_5 ;*|_;񶡂rKrjshKk9³;jm?{cS :"#2.)0S1VǹV+K||hx W9G) (/*l/_9`_#-<t-;1:šT39g˃$p$Wѳ@;gybO_93:xA{U}=:y67sk<;0_UC};#0VAs뵖=0+789:k_~ok6Bjqxh۰7}==—,ʾ97 7_2cuOx$2*j$st=Kzt%/xw~g8G~C7Sh|"<@q:z&TaC!F8bE1f|FnA*5"8!bq3lI5Plfߟ?:hQȄJQRj˦jĩs]G;lFL&Q1iaL7*obIgY&J u8 +&JU9`u: +}sgEKM"ޝa2knm\2ο l: 1$ @TЩ_*IXN8PJlEʼǮPqdN<1#s$H$tP! ,H׈J5W_܊ThDW('i i*Nh(F؉h8V a [ڮtzqjb7Kۘ5hϣhߘQ+(dtFTh(hzoX vX4Y3>UM:zՔD|w7"Uv(5xx7XvhzXtxtXQޗVzvL~o~x[yy H*\ȰÇ#JHŋ3jLiǏ CS t-H\ɲK&1C͛81Ets J7=HYӧLJ.E gAjQUCJٳNMڲj*bOdEK.KIJm;*Yv .hvbkǐ%®r)J'ȠC# $1;3C%fǢcCV"qe2|uee ۩E͠fA1N}+C%o&[<ɕ-_191m[[BMZՎ\ume`(o-̅߂+bHvpq_zꅂZ(ht(DXQ[% Ӂ(#F&!vb3)Q'Sv^ ۉ&x( }>[U.R)B`R~{c8~dcYP HnqnH1ו|x}(% ٓnKbdP meerIZO(fbb(Wj]ʡpt! ZI6_ȥfny~y/\TޡMhf\ t*ʆW{5{hemxB /hZ{-~j:T80>|~x(a\ڞ/+w#%Z [a r> ǎk3:²i텋Yʟmk(/pβKɅkz{i+dh 96W,|"M]٤Gj3(O'v{'kKs83ޔHjķQ(0. >âݧ}-xhGñnݹ۴}b}c_or#6ͻ} l]*|!|x?rW 8Zꚾ.i:A-y K`3e$THiU!KKN kTg:"p?ND,LojsC9@;:a>d_}cOlf.!FIta>ኆܒDXp;WFl] Ԑt"!d9tc)BgLE6PQo(8BAGD.1$4)0ьhTA\!2Ѝ$}tȥ&?e hJCR(%ZK,i ]zq:9JA(#FlG*GT#a@2<yE1ҌtE i5nrJհt*Pa0F})pb7MC1D# qʤҤBtq@<^E+ڽN&cGXRC AǰfSQ ݐ `,]焀Q2ч~%,rQp;VH"2ё#[(;D\EzE Qy|Caf,#`0Se[Q]8P@V+ TMa.G>b*@kT4 i 8B{żda6s²z<1tXI{+&MHY;2usnhu%C.EQGuE*k\.Ե! !U^'^ץ[e&oӮz Gۂ4WDg~9G[p0Dz(R~ cwoKm~7*!t8^1L! bKeUԞ-7]a2qg|a9q<%e|@Wi; XwtU[^02?:3+?7A]t(#7"N֥ \kPzyq:ˠ fʩ+.=^ų;` =ԮsA:ІpgdXK5rwk]$يs&nلvv?{78u VZ۸t馻9b.ඤ[+zܖuq^sU[ uBΆ=rcrJ* N W(9~t[qw]:u BDٍq][Uvn܋uY4klBBhA%܁𙇠C.\ܻVy.taƻōgSx0r;w0-a&9 vY6d' jN' qwKzs(f>~L79pw:>;olx'T)eTGa  p´=\P@`!H8ϱ-n4Bx{.t P8lϮCENV7Fe8vG|B u'adK5pGEz8Gkls?`}K&0`n0 Lx6hV| ` ç+ q_Ff p}Eg`D7_3'wlm=rE,Ri@RF@bt{Oo,_p@w0,T rFgd0f#^sS aưU`cVn9]xivw&ssddnFo'TNEQ0 6b` ]T '^EfBHs`Jyv´mަ[v=iR6{xE^h{(qFulw '`H-P " GP]0 % vFh``6qĸvHwks}Ggn n&H xNg (WG1@110 `p 2`+2 ];ـpWtibj7pH}HUvSKfxIh're88Hh! 9 8- NB q78D`hĖtt]w stKg`@1W%w OwlGhn1 ڀJGk3-\s0 `\{_Bɰ{p`W Ė{DT6h f9s}͸i&`9{WiY)rn,e,JPT`]&y-00\ s0 H_yʹy10@Y07dJIkȝsw.UxR){R~v{ Zȉ*gpr rC& 堊Л rq2X W 8IfD p6' d#۹vQzX&♢wn 灴7{%IVWe1pJ8|` p,i pS yð8-o@ehJ~$j@`rzGw*H{j-Fl Y'p2Da * o{ПW05 j vD`iv mix.HgVth!`Kq(q q !a @ڟ\7p{窜\*(M:w:GPiD W)깧_hq谲[ pq%pp蒘j 7pвy Z_9)z9Ǧ;GEn`#(ȕ8w* DYY[ q!\ @Q.Q9\P`   :Xʠ{4k`zNsBK{$:فEy!ptWIwg/H[z p; b`&?O-E**`- WP5;5z@ٝ #<GsyỽL|~VpQ bp&* ;q zk 1m`zJ~i$**<$ :K l•XE9 ;G[=b{2- Eo\ʠsŀ) mxEz!z Zo\el tȴpVl`t˪ GpkͱF]c9Yo YwV  Bp]$zgd$ZWd3G<<܁$\޻n 6fEY )X̃v1@Y42 Ԍ 9؜͹H yp8Y\^ڌ[k 6=#\l@ٰ۫D7 Xفż!Tp+Ap[b!5||P-O 0w+-M]0 m`ʦo5#̯ zhf H-Pyi\(\tiqVIZ m!g ҝ +Ţ_s y1ʫ\~@ Ge@`<#*Բـ{X%빞0:Gp"Mͥb c!YU]]ð㜥R| vM]}l$Սl$ʯpj!tP yj.'К'b\;]-MP!a N\0ɷ @y_s { 0ͭmph];#}m?#!r@&N !P(i~&Lۙi7bD@~{vv W<م*P~P j ސpzP&%}gp1;`j!@t^>ԋ t ٚm`- DQjͭ ~J࡜ 0hY > 0 V amiL ` ۝ :n(^=Hہ(Ϫ\ JkLj8ۗ ڲ ʋJTv+`P/ hP#:<~e' IXpsݠwnΣ }Jd@?ΙO]pC/ט<]`Ŗ Ǜ !pB_*nî+{]mz_)E_`|ۙvt H]pJ Sp0pAh1p =hYZx懈?ƲHYhУg-C̙$9&bl:mIP1 =C .?U^ŚUkN-F._Grk6,v{ s͎WݳtxCR6iMJ2ŋ<2R *B8-ٲ[}R* CҦDJ-cN茡 =b= S7N uԭݽg5o_qw.]ϛM?:%m{D-`<,2U^dPņ6O !ZH8)0f6Y* A7=Z]ѥㄞvB=D0;:+j)=/Tk4b SLA#:ŒAh|3!2445C̆Jq 2Y! B%TS D)8Op v5~RI';*J~i=:k˻~ @23LR26#.PO2B!+zcP*HW k -@̈R/ͦ?\Jn %Tml5iq5rҥ'bajt(ZCGJd _CK.-s o=J1nUiqXu8Jɔ 溢eV>%љfr ܂cڛ=K<j=LU`ЦAhu>a8VŒ5.@H J鞅?Ԣr-F L4TƍUu"!9嶰\ jQ LhNe F21E).NTN ؙ=h9{( Z8ɝx6\[y! a!Bj 5SH2|Eψ6HAzCSڨ/%衊<0G7f}3CdT'aHDPNH@pWb:+ptՑbM*("8 $l=n|60! dӠƦ+2:"/@F`/ @@ B=' Y mЃIEyQ"L0TlqN`@''Hǜ  L:Y SƤːTi(8F!Ȁ x$YʣALx +1!(s[NXe2l+@yXe`РU* KIp%S jC,Evo x@ slMW 0UCo^)h@@1Ăz'QyOD3)%,_E,!P} x)?I.կE dؒ἗%-@l 9 b%71vt]%V1_@:tD"XbC'h M'#C[F_WK !}wFa##6 2Mh"e8Mha?3BTX Ў)3RDЎuzs0xb!wJY\%h؃#žqiި+X<0a` 2?aE24DirkǵB-U0mUw/2gc6Ţk<  6qQUd'p嫡-cTvseLQtUb\:Dž|#}Gא X]5 ,=4{Ѓ?hD-@OyL8x0ˣªj˾+[1t +54qz Z*sd[sq=I:dJ ?@!@ "(-9 =04-1Jp*# #v œs;$2s ?J.+C;<@% Brw1P&t9&"{lx8֘9()* 0]a2 +-\ȎtCң)i?l.zTT:(,’Q~'5H㗪sB? WeJ QEhX$[آ@zҕ2'ZB3v h'^.dXpƟ1.jADLļn|?"TCpJ=G{8CYB^+;(tyGн0Ut@@XOӡz6T <\1 *ΡH,șkTN蔐l,*ڙB ݡ7j "X=K3"/!؞#8YB?T؀TGТ18Ԙ`H|)*v @ʰ^@JT> ê!c?#YN<ܧ%L=O!S([Rs|F~155\zȔNjG"6hˑ">D̳P A>b܂ Y }A4j̤F!!UJ5L_ b$K.=ܩ'|@̃"Ѓj0ba*'McHC Mpm # qA먰!"!P!?B}{r,炬qp 5肘2T2/J[y Q9 uOE(5 ,88CҜ1S̹'H<-,A= S8((Pj1 -D #"P95ӷ45OhPZ*\; OòdҸ ` 2d:Cһ{A;ͪzB #I24bpB I!pQa -1 FSpM"#ؗ_ق%?YLx)))̆6 ˁ:+;Ӂ@1ȳ4|`Ry ?7,:pK(4A75^%7h5Yj[5S끆; YIĨCYGVX) QєW `)29tUW5HzM9=YЭ15K$˯LuiDB"qz }(mu sV&:)2,B Hi/BMڃ\AMblC8l G/uAmxkCjQ]15+28]be[N@B '~A!2v]`,#/r&b$XƽO_y tau"pc,7b1!e4$0L|=Ұrn^@p˸k Xua[ g]Fp('@Yd@206(TD&Ze)5r={- E ;7@^)fۭdd'bFpf.t#նƫM(5&塑ZZ4|Ɍ ߂{`6HcΘY^M,ͩ-j3 hj0sZrCto4Er3%DOO:(52&Аf"^%T58ehB, V`hs:5 F\D#鈾fpkCO7uE x V|(핮Q+WiU!ezwt!,2H4[ksZ@3 P:0 +ܰ=j(qŒFPlf!%=p&W["lbvP"K zfy(𛘢,*7VH :ClζߢRxo@Gt);gkD{zS(ne閮%&Mqמ)0"&nN"w 9 X-E: Q@4#x5 Ldh͗D/Æ5]H [˷6*HA LIq*8X5b%2B@QF #GܸqbE~u)V,~JQLLb'f1f SpРB-jNt2mjF=ކbZrk֫`=V6Oɒ1 d6UfK=5jA;"D/^[J(vW [)\r1օP;f(M[dm%j*GIEUTF7R^ }$hMS," FIr\,$s@ZkQU>R`dJ"2^u@[]GJоJlAkbX-ZGtvQѶƮTI Tӵ!cS2hKUW<.N:W Z2D2Z@Öxo#;[L^2r]HYDk](mkWKb|xqm"M\MAG;a).s@2 Fnw{޻kE^[Sԓp5O LC&hA=57l`jI'b(d*B$}վ};Q{8gxwYZ5w7X7\;qVw/N#]h[67x"'kj$g"7f 7AIe xS0aq!ϒ*yQe0߃h<ǏaDG$HDp?p'87Xv@,fʂv5INjyޥmape9`K{`Bn#hJQt.fR1b@&AEF0~[b$,R-ͅ-C+poF x5#ljV_N$X_B2:q1od"eZT<*C`< _Dr%x╨ H#ˆzP:lke9S*ə,i]1ˆ70g$37\HiHP6BVB IiGb`@lQaDRGtj߸PК`yrhټ%!ҳcdBi "TS$=a/DW)*n2NfҐ^`8-q Hu.pVBSEiQB髅 X;[m7[,E!+=s GIc{ B!}!ni\eyKKyM 4AG-K,`Q6܀\&IЏ7/Bȸ-䃵Ьs?GCleðIi# MKb9ȑtΜXh@^`m.V@(h1q L%=[ѐ^yt'afQCsJfϫK"k*T4 FLhRd%}Y4cze,cYrДWֵn-|N\Mq@ @ٶR}8:+JAk˸Uk6#_V`TaAg bDV2#ĶKj-oE@DS.R:<qc=О-$1hZzupl+{uz~y[!+ 8@8AO9w4-KqvIAFŇ匲lEF9Uämajђ' !B-$y@"Q'ȞWp `t`FE D ~PpDPl6hcVzXڤ@#?NcNa'LC7HxS:\Q7A6~إ3Ux61F<ԍA(RA?SEe5@ 8[J#9"U$_t⨇{)PXE&hCbՀ:/,0@GldbZj)|h (YBZ |^_] dh:70En.dC@Rqj!1Vʄwjō 7te(x-~|`2lĘtxC</\(O6 IPp|1 aCU00hte=&QA6{ Ă_P`al ÅVH9Zۍ("g0iWz7@8€(bH;fhh4hC'7@h\ R0aA(d&&d:(AW)bP DÅ:n/A< &2*Ah)bN Sm68/  ɁoN/$.|@JDl6x_kB*nš-z:,p.&GA#h8Á3lA/k0C& z::o;tV<‚2q0@+~pj0T-- he9}@jC>0WHp , R0 !j7x@h@6L2.P2%:B.؂3-| hkb*gr<*,2,g9h*yr@(L%^s9A9d2 |ˀ3P@$ 4.uB<38-L>i*|Cw9A \&@W;k#0"G2w*&{tWAB';C! W/S5A$s4%3\ȱ- 3DÁ3ծ&zA9ȴ!PARS37t(@uSP;rr0X_6ZIڂ6TlRjWROl f3r)|K9MŒoyҁ]rOR^&s9q;7r#rrs' 9w xw0kqc#p7.C:xvYSX<r:wy9;Ȃ, 9 71C0o#:}5;{rGmz\4 غ,o9!s-B{}R*е:B0(i7't(T.CѪX ~.4!  ؓD5 ;YlQbj0!)qN4,C8A,N`,3P;|J(]&D$J/ґ`,s! , وJ5^ޓ'sWThfFi*Nh؈{rg_kj%pi9V b[}ڮt2I|EЦ8iۘhoXhzXxql){h@y:0ޗ9Wv'Txxz7Xui{G[,9X8Y^rYe6vjSy~7xD}x\x H*\ȰÇ#JHŋ3BGǏ CI߉x':\ɲ˗9 8s܉יg2pIQ>NʣPJx":ׯ[zkbR]6ꉲ)RӧmeHݿX%"È3ٳuJAV \k.2C gB̹Fnܘ4ʸfPh]{il5Էb;Mz X0W:'9Y\e,>T;:<=k} _y6]uUg!@pS*h@5aq xy"qdy)XIw!b16c/EMʶl!;N^;:D2ȀĀ*zAЀ\STԧ׃E)mZ[6!x:gAL-Y1B}CEPE2ye$ClOjpc* aGg{z+ ]ɪг89/(뽥1 JW+1,YxGIPXi5 `^hAec C5Aza͝! `A%Kq|GRD4 ].;Z'z q6~.J3)$NL5Xl$N)ۏ4YM=s^ti^Cbi2ǙeAgj0/ DPMsea  dFifwQz ]`[<mHe0 3jC<$7^̊tżF7wQt˕1WrrR8H7\܍+k«}-CT_1N4@n.sqW9ӓ^,Xc01sq=,f Ca%14I]kxC<ܻEnd7+nlih=İ V:zBp /~t| @N&15ncIoˏa1pͤbf\l0S5rnIjw4f?׳NFye-؍v.!'NN|G?xUzaw!\}y|xw{K~g=XcrKpa_2 W)7gzmet5˕w~&n 0~tdn/6i,cl0-Ey0JkbsyG1qvGt/m{Gf=}{dy0uFZx6u pyM,84%ೂ}1`&1!}w}vw(@~Ewdd~ixrbLH222P`v-h1@;A3pɒZav3(*$FF=hgXh~UChe^" 2` hutqA`mea}Y{W~Gbw}~~0d+5`i`!p~pd%@˕𰋰0qX?!慈m h|{8~W(+G h&zy0y ]@e7dE&=;dy\'8itFXM&WШx8b 5P/ ]l kldu$Xh@V xu5&wg&Di8eH |b  y cwC_׏?ٷz1 w9;b и9x{WM怒cP@ `  )ukas,%y 'YHVbGw4w} tl{wWnt0~$g9c@ j p@ )H/! MF Z&ʞZ%8 0ٚɌ v =j@{|Vx{FYVHPdKOܱ Рpз(PdwtЛhqXy6(̈(Y0Z{9h<=;ɐd&qBx٨1lf^ `g}'L{1@nkʦ0ɢ Y]8b|ګDo%{$.bdv *p NPD KJ ʬ*I4Q|0/q9nЛ; hW\4oj}Itת0*(~=ڣ˧ڛ2kZ>f,~ܙ̾N-#P_znc@1 z0 p{P 3_ ݝJ}ل ,p@ګ=*XmPu o`ѲK rJ.kÎ*}Žٙ<ZiO| Pu< pam[$hB Fn rH;B}a6AȐ&F@N˔A$;Éq-9p!$L5*.\'pcS k.88Ƨ ]6![[ŊIXtʓobП?Y?8\Ýtf#z֬WIw |pr$g-E! 6eelZ$&͘6s۹ON!~ E &;aiTRQSXdpdL 8)h y6X y c0".tKXb&C* D`B@3 aEtY 2ccrшQ! k4r݌$2|)I&gTbc5^ `.t} !N La֐k= ' %Pho3Э'1RHQ eB[9aC?D,D 435RoF\ hC >TP-TBH}aR~ .!$NZ#S&vcSo;  )i'CDrOdQE0[ CQXcp9SPA! aN`U5o5փt6(7VW&I; &!fP b ;lu%xgK,Y[W+rv,RJ+ 0 0J ަPb8ab崘0=@xu nQ@f06JC-آlAt˝hC 'dO6T&kq;fj3p|xOo+P>6a ѳ EnGݖnо 4 ;OEE-Q:`?՚=H9!6x@FUDGeP# -Џ7Yk@P;fr4pyGt`ɛȓ \E+Xs L}p( HK(@fB1 ^2U7p0Q!QDˈ&h um@΍4adH D4: Au nkqvmb!L[zV piM*3O78P?b6%na `J%08E.50rՄQ#"F"*11~#E4x渌z  h|h!CP$X)PL2Ұc R(!B M0XfH-?]R7k(37Q?6҆) QId(0.i7S/ 's? _ȏI3:M2&p %1u|@:’ r_ h7 ](' :`Pj|tU.%1:1.7LӰ0gC~d$9N 0 i5?9 oa *Kd&ԤKt&>0bBBUS"$S(Q-GFdrG ~an֪/+1G,8t}Gn2/KȍFf06OBc^Rj56j.׬ ГY j$Gc1ڤz /\1 '";LYܺ&"Z4Eo狔*LjCtU%cH F"5SٌG2PHFQdTxX'8@ }:'.mH: y-ms:MSS,!j'Bze\ʹiYha ^1-jFdQ 63ӕn @k֘˲9e` ה@ ^S _ qӦB+8d%3ٚs*,B;zpqG!vHK -~Hv?U:6;n8TI^`_c/2dPx4 ~5/ >T&[l޹;*C:U+ΦAkp-@aA DN{Z^jn!F)0e3kְ@avo,20_rNXRʵ&jPΧa[~@aK bA1Z{2tC/Mמ!D.FK]*W jiO P@;YB BQr4} Lk7kpY4Px':n_4V6 {iQ`"kߟ-r(AнVi͉6:jH`_s{Pฌ@j{3sw{>S[y'ik9)!0$(#M2S?—qў` yPv?W0?,X= q5+lK4@'y2,C* {x5-5@j>| 25LC0?0hkFA2B/돳 Bɞ C)y!.E)|4", AI:8,y[# |; -CÏ<5l{6 ǛYDl0 2/`;p!  rk3ZY?R5 ):#BXdб+{(ظ^a7|b! [Ca?؎if<kmAv jWC?$dգ* 2b&~%{T8[ \8ⓣCt'B _̸Ñtڹ-m sрPiId>F һ=(=aG~r!% kxHG*WL2 YD;*6+Í 8l8,/l2LFr_O05B1$-2+1kPEzjK!(#<< O"DIu!LsF%@ :O+PDa` BGH@̀+2;,37T5@4>Ik !>TI# ɡ{BBt?WLybpNrM5QVAODͪ-22: T^$lD)^-t6AJ! xzFnD+=L. Ѯz0EI9B+IMA}5] F"Hۼ@TM6` 8ɝC I֞;ZN8?U" RT :U4 1")h-u!S`SQQ8|DO9e`MA;bͲ_24; KC- h֔,1Tʄ( K? VvV aD2N.pNK$UwԡL|XzyÅ8y/ hc@- aS^ǐrʄ2/2;̈́LVeJflēX[ÌDF=V6[Koqٗmz;ļQ:˵UŔb IDX@ @^ 64È \иx1ؼ{2])"~6[TET> 弶R5 `h:q'4X3ah@L;ta:~2,M5z2*#7ih. 6iIU$HF;0!(3{CZ|Z44dc'ȣe!ˍdl}"F#)YS7uΙt451…R c^Z4ʏ1*]' raF Id ҏqCmv{aa(EAZNd)7(aUc@OO: 2tlk)Z3w`ya7tC u1|yR v'? k"׶@"gSDM: y"lO?(cngt_m.\/Al(O~WP舻2 @&*@ g~wS#vց?Qxq PAfSq1)Pcx`+y)aXEtǢR׸:^> :Φ<38p*j[y7=3gׇʪ7i{ekv]tH{=xrT;;Pl5a3C8ӼE۵B77Z/5XڏŻ;|c^Nm~GUHx2bQ2FcS9rUyǑv\d_8ӦA#i-ҤiaorOZ ȐH"E_pƉ6 !pe Z2kaKPԆ: ?2m)T`j Xږ-[ǒ-5,Xª]v-]&- jT2P^쥖7 # vZPN{ kc+%G H*O|&1k| t(WAJ<Q>4r1$ +0kޚgR/K~K|Mcip|7 5(rd1 iaH-jppBMlM1AXKۄTq!+@x"^ugw+f[Ř\T^~ aTqy9bDP~ 2(щ)-xmX IYLD6S(I NR+ 8 x'qpbr@35{ b[0wܹcX8&s5X^v _˸XBNP4Fc7J&r1fjq 6-YK7aæLZ(+{Oă Ǟ|֎5g:0{Lg:V[sIZ%$-{oHa!;2TħeCR.K.ykenk( -j[2p,18{pk0m(x(eMYd{i Z~; jV&'jO+N'h5T14F@dZb6wۮvΥ{73 F==JyVp+ j Yc e&B\bu5B(UֱqI뛏2 dvw1pBqɩ{j,0%i;eNRժV K^$d>pEr_R:W ov `5DΗw|a qO89ߑA jnMCB=!ulqN?~x8f_<3i0YW4Y ,zRbƄ5D̑,"'>0`jKCIgd(a2F)^2X7E`TR8VMFNmB63y* +d4#6ttDW=cA8&qMsG%,V= `@*Ph iAEиl'FFC pl<} 5{l4 8`ī!~L%IRPqzk9 CfM]d[;ZeH  @.R2@ Q%Nq28JA$-%z0ǐI6DrNrC5e: P{C`TTHh+YIV1 1aQ8Y\!9_T(~kϡ ]*?ֆv Zk!ʗDPq)+F ]d AG@CM^svh& 2C{T<a,]ܓbJ>6n@r8) ^e ӹVZ1,{ك7- <mwzg0Šku=OJJ*bf/[Y 9bQY+5rZd;.DK0o̔@LӟD_Td#],Ed^KH7|VB<S<-˄I|B0LjxȪnKXThf %7'60.z6P^3~B ZӺl|mΣ`iA8.= yy16DŽ1E׌ڜE0kۭelaNzr#ިC+ & \e7͜HQ/? ]5kگы#ekޫL5"8JK;нP%SWi>fdBk<мH _? 3n:L^ %d0 h>;-)%k"yS)LPsc_H5e% C u;0@"Lx}8!IP$B/ h!N0}\sa\u|6 ;? wN2zDBxoPUd1dUBe?]l8-YA٪ ޒDKu+ۻN7H^(! !ĺ8F|Rh ^DmNLLQ@%`MiwY=Pw8̬HD {GDڨC.`J\ J#I u ~ˣ k R!4bD#jKDWU]DL~lvGZa@{Lm^ ލޠC(QZAtD<8,s44܊0y':mNE}5O2!!\+"`x DuAY*ZHG1n0d"ń3*1"i(IF,P] kFb\h$:D0 2V2J@!T]$R! ̋E H``TJ1Ib@n9 A Ԁ0$JJ@1J0#2D;L& 4YV C0Ǿ-dX!V(ͻL_лx c9Fd0pp945\% JaZffM6Rj#PCY8 EzFadT0leW0(fXR}d&q,[0A<aT=Ǻ9f+`\B A;dp0WUsX]dqr'gf[Qd, 5 Z |PŏTnCpl%0 Dfs+gquhm$8ew ,ɴQIC#0@(rWVC<<މ}%&j  ZDA/A ǡT֦0pZJa'qRiZ :h:1 j ^$YXP {|ZL$TM,: AGd@E1^? 08|4|[r@"iJCj@ 鷉tP :0ăb1tDnI+eck<`JG,͞NC;n-Yޮr뾂k;G/m0@|m}F|)v`/!Br//V C+Oт%Ʈ0Bú Uֶ ,|b03 ,kyl4EA; 0 L?BТZ+1nI?a clcgs,C3) b+6[2q Z0^ 90A=&c:| gc4Tς$vy2.\Xvw{1+8Z 4Z9s8|8 &q:.Gw=pXb(7fcvoNB$?Çgbsqs7?1#t:f.{ԃwuxgv:s &7kj,t$be8Foqq9p71t%i:) 23z@ ytkz;@sKzqo3d=`)wb065{:v 9EAbM㺣[z3끯@)A=aC=lvtSp20;ߴ7ZkK6'o 20\z:;E._lm_Ww8';y=$zt'<6{1Sē6]ʴ숒'x:ʵPE:#zkbN)N‘e_TNF숚^YumGsIiߌL|E%TL;{^ʎ6Hbzk'SLnH_\.Ɏprp龮GeE9ݣ-n7!VS[ *BX[OLrKDp<ӖΜRk+X 9(0'3:߬3'MRME0qovg려'L߬P댊ի܊WꫳF|H'(pyhJ{H5ōqċ׸U}Cz͂ GdڄFUo[8?}̓PN@HLE)*k F3<%Cd8E[˿ v=&fL0c$PЌFLwmu~0!@G::L X?t;|9/ .+>&B"o|Y&OH9|">7Mт0" B` K6̌Q7mucDNn 1P/s rT yJC@Eaɉ0mR*BŒ&8L? vKfD@3=Qbr 0XPD56mY%I`ӝ|&y2$;DELbc vH(/FP#IL/ !(;kS#r-"8ȗ!rl QI**]`Y^lFJԝ>ŤXKh5CҊ`kF0Ai}/T8yI:ԝd"*qb`~f,EUT`N{SNږ9N3dsJG 'UodIp)P Giʂ-A,u&۴+NYj&'ԧV?\/+10 T:>&/ }.&"efIs3/WpĀx?}ɢڜ#TR2,Q=X ΪkfŀP0X&鞮(0qlj]3N WC? !j~;uB8v9 fel| \ .s:ЫVfTLv *gxNجRTxKFY B]S+uld;+f*̱ ]8ZQle GFcGfBr x_9lC[qV0N-'V8dWHdnyh'K$~9w)+(i"XzwG$zt{mpN0NGr@aʗ @NQR*7#3.F6dzc)Z\&K䈊gh)؊b"H*s@wz {O% |xdv1pʡ (+~h(TP ₅T\F&~eip~Ikw`9Gs{ǃph!@CЌkQ7 MPyr29!h't'9kizsP;f{uggr 0@yA h'pE"vq`{B3yr4wlh)ZU@&oW`99%rF2 x101? Y ppY8%D0ϙr ZYI rjY~y[)p"*8byi ZNPvPFyx :j 403x` Pa84rAiiB ΚePʰZ9(E|`0ˑz4 pPFH *~%9kcȳ糂zbIz꬐( %Pƪ{ywb&ɇy*c+4@EPkk5z7 &xy[+*Z[F?Bz +':('\ !0 4pyxZ k ,Z 0 Z ٟ,`~x0K+p2KLCDڜ I@+`?RP3'mG*.<!s]9Z~7+ Pkl"~MBs|( 9 `sw Hm N*q`'nM΢]]>jTP*ؠ3GdTp(32 ÜU}(trsL.P.g`ji|;Fx3]3!X  g>] ~pKZh3 w8i n /x^O ~ǩ+LɓIɏ-@}1Cϲ 2B~مڻ e@np?} .NKDn2eeqp*"Pŗxt bbLnk&P2S 3μj!D<YCP(C0 H%e:ÝGSR@ʔ)Q~q|`&U[ I(ByxZJPDKcEr2UV}VXejVZmH\uB$xQ 65 lfqXcGxG2t q806;D08¾Ã/>i|.ͥV&>p;x C ȸE8(q(媫hѫ~Y#[#o ='ӫ1l0 "l2?˪/6 D?@L 6 mhb["E2VL4ae82r*J2T _$rB5@IY0 .,L^L:m!0:mM .Ē _z@ x0tO{^Tji{J<ԓ{ͅ2N7`c aN0 (8w $cV-b5=!8|E8- &C0Lb6kM3h D0ccC\2(w8d`sq'KsPK(Ok΅G&ÓK9ј 6cb98/>yV֛K V\հcro <#PM $j#@5 2r;5C_\]I݉]IJ._Ҷv*a#>'c%Ug|)Aml:dqlKNsbfc !"ݲ,=@Dd&ɊFd!$t0 5$$pjМ dbv((B`kZ;J8`6 L)I SȂGR+.uTφ?:":ԡub‡pP 0hHN|b$ 8HIS 1Lg!"Hh09|HKy$Gn&@8l8(B;jD`v/| RbѾp"yC' "/Ix9 P Cx=>^R%Kxc_@rE@`!LV@D35FgDP3 M&|`2q ~Ff%8洒5-+`LFb'Dm5"& _'rzBrP`Hz!G w0x(*}g.^(<=a #u"`Exbm*:c ˤMsS58Ka`BNhd%$LsaC 섂\U 9׵E׼xr n+OBTJ^v+(+ 0ׅ*QΥk<Rqv"+Z!H{#`k9YLT6H\=h";@l҅r&_/}^hǷ z.uX(C k' P܉ZǦH@e U)96HT-ẋaOy@Xx.{"^a+a Wddgo؃ + 5a1uP lMn;KMor6h $-.ơ@p$EZWpThcx('N w ~~ o?eHd5IO Hx 󼝓1yP=K 07J Q-ψd*I@V*8>+wa1!>@8>;8s"[(#Xpr/?/ H| ik~s1l 2|=ϊi Tea{4LJHr+O([Xx.A|;Z!NY+( d /, S0`1#0h.Cj1P64X%3&x  |@:Z*H 0b<"B08蓾㔭1UA 4:ax(}LBx((Hd碑_I&bR/&x1B0ŠS0@uXb$  9z#;ѠDXp+KKDCH:tLvJNy I X<"(9^V+92Ci7`Kj+\x1a*ɣ@Dxi\fI4fؑ@9cAK˧Pi锆+(|CUk,:IȺXZa'45,'(=;U=03i k6h˴@=y$ɒ_X j/訏тES, ,9oE1+9Ş#7=Ѵ'pNgdœz0xLQɹ0PuBq<q9@ $*8')HS#JQh,xT-D]?hQDtLeT{0&$H+G"sҰ(ZKZ1Ź0͌al+0΄dgUux3Ի,7T &8X8B+A~3Ĝ w9;Pe噱H}asU.VE,PU[M)sh؃=HXlS{8XhsaeVXĈx "n"Qnr#)+tL3$i*8 ;+'B'/ŲMVdXpZypT׃,-4; 39Y l]8r[[Kv9B i8{z|e\ZPMM^HgP3iK^\MyX4aجuNa R **ŀMbaBRA=!v!DC㠱waw|R=ZI S}?U(ZlcZTT5}V:iAuTX VЭpYi$H!LkI!yۃ[zWY/h^\'=΂9 _i%Vuֹ<4/B P_14uJۭuJO_h[W{'xB&&\Yi:Ee-L.Xl9^H6i%fQ8ycXt{pDOحGxv_z[>׷#Tt5)vE\UE$]ZnfX Nu-Ve85C* :~t܉-H񗄑H48OY) Rii.H/䫤dBI\Z71_mпpg=^]nN}1+O(QcRͧ$'YG)h͛[9TTEdhVk96ub3"$y⩅i`&5*gJ<>e|i(@/fV@ߵdf\;<^ jœSFmao\H]7S$Vcbe9 9lcxiaƼ-1\;jtL^WԂ}?Uigʂ׍BU\ٞmVZlma`ceU' ?kXcz+T߁X] ~`gӗ mE>/WX`Er4=O䷞Zܖ.@Ȥۃtk= 5V]a_P2O[Ǿc1@8xGQ9;4VE`EEH-DCKj8r6n^Ur(Te66&T~ 1 @ 'QqusNs>xV0o O]^ZUEz\BtTEe&VX~i քc_ihXOo+`:.$1o^ x&=5u[ [eʞN3u_Ǜ$Yf)xM\ރ9ik^N؞{iLX,vpq=vpnHU˳Km,5PɘW[ks;f~vӱЉFdE.Y>5`Z+EOk+mdjWX2,naT8+6U83/1Ԝt QevTgqywjDoj_j5zI␙d53mNW.Nm{hhp%)'=hd(y -c+{iiυ=\: vPA*磟OY_'xqy8dߕz-P❋./ifW5Hn}ٷH+{f W^s2e{f y) eňQ&5+Q3&`ƀ.iCJ0) T0 cT&4vNH b~y@UdPDJCZiņHQ){i#1`_ ]x8ilYX(U.QJX0)bGUA7p*I!|Vjxzv 3h# f >/,"m52*h7򌧑*W`@q:'dJv B[u(BdC?t#JQ!``S鐤Aj !\R("frCނb`hr#~A+ g5E]J*f4 %C=C`SOJJcW"A./H\s@]/KD)CBt47g"F4[~CA9طc@9,wcX?dpv@A*/7Nc5͜Ұ2499޴oA9@)\o,FF9PD"Ͼ,<B~PԪ(R髢I<l+{M;Ek:"˙HLC+RlM_{-;C2pr;m^$Vc7*кibdpLhYyQ WOW4*?ӭ:lc+,b cK0 ;w}Z H>39gO<804}w*DD)8Hֿ=,C}o5M`$Ypm w39@P9;HonsA)P;ɳl2|sӽ> Cu3A9H3@;3A)Dς=@acw‡ D4)xV tW:' (rrP R.(%)MTbr"ʈh.:TMjq8#Y9N N.͍CUW. J(*X&FġȼKigds.m;r$Zcs}J0ψmlyt6:Hz0xYm(`# Ѭ -GK.݉)Q* ɈCJk „ߓ #JԡY:kY s+zQ77 c{QaiG7:I"~[lNP=b0J&k>AMN Dh8k)8:lgI SS3T1G8lį7!8$e$FuOX"QJ t0~C}/sZy֜w$xTB^P4́{ sۀ_%nJ@9),kO8 {':Y? (%r_YdPewO9&uXp T2GL" 7 fNhe]+l*pb'8H9ڊ%)!Y$uH6-%]@6uUJCMsR& f6ܛUiO)-E9&JmJNBf g1 b\,Jt ٌ % L$8=nuI$)c3D(Ҥ.jO \?aUHJE-ΎiũT[ ͇|zt|G} D(o2]\>:e v-aʂIQRPZg6*46pIMK8P^`#y$&S24A5Jxq`Y”ɣ-=s"C(9 fQ8p00 KQςО.1TOIxYfvTNXɗASRVPy0TU-U]?ِII_W'swdu] L]Cc1 4F-alfA֠ iETvEks?%Mh ϖ2 ! ,H؈^^Aޓ\W('hhQh])Mh#EIRhy;ّr_lj#zomi9Vt[뺎 D'(nhdzڮϦIgh2I|EN)gǔ8r'%xiUv':coidwZ9rإD~A|| Xv(5x6XvxH[hzx}uWh~Oޘ}ox(~ZW2Ty1z H*$Ȉ‡#JHŋ3jh!CIɓxΝ(cʜIfHC9ɑ.G6 J$#C钦[Fw,JUH)] kSIdIJّ8tEo#utٻx#Gm:msȕ+]\>˸1QC.u֭7ՂvϠQ2zԶtۥ }V^v gRr< Zق˯:7?'/2g/,TK{8s3!7I;ʭE U_M6&w)2Sy«1!ow>WURd XMOkLC5'c}kȀ!5Ft:f (@Ma L vd3@nQij8W> Mh3G<.:,;8>DHV() zD؀v 3+(80(`(&1#ب0 i73M"x-,1H!83)h" 6AH.$AĎpXD(lAV Gj'2B0X840tG8gY<%'p9 IҗaټmNlZ>@R\ag_mMj8|d3 g7MRH$HN%xT pg(hTrmnҎPr#D(qrA=zu($*5Lf9sp;+Ju;}L![ "HCZ*@ʱP{K@WC%D©ԾV,Og40±hέ'|زhM3БVzvLs5<_ I123|m>'6%EKZ+*Yx'cNұlw^Y5}`8h#2)ԉnLkITr`; n8%VCPtXIOdŝ|b@S^02JAq`pEgԾ경K; %U4oG,Y0UP9SL.@`6`,Ȝ*Pmɻ̓J\tEBsI]ZԲ` Պzjeu؝(ۤOd0ھQww|˸' B={}'@mĽЈԣW4fYmͽ |0r^1ގO_d]cq8yQ{tJ k;k4աػd  | Fi<sik|SMt9s:D׺ )}ʋ⼚ꃍ5 D0{՘@ A~żA{ ʼn>H`w4|u:p]8#k  MZ=G;W9 .|nDHȍ` uiܪ .̮p٤y|i+tx+Oh^n@ݦn~@M𽫮D@D|Nз2-n GM}G~R{0 OIZ\7f,5a*ݑ'zE"1n D|OI}@:؋@#3H_Ѿ.E.9~6|x)tNa/ zd؜ Np"suu1]]~CAK `[-mNuXsZ'5-+l7Vc`_0` bWd+ 6`N iD#\qQE:G<1@GP!@<$ṳ 5tl m0eJ&L(QERI6I(k)"0 :3橫.zĬ\-ȸN.j3ƟKF0ѯɐ;Zt0ba)R%. %<0 Cu8433SH\$z`Ȣ wGa+/ /Ms˟.21/V"*A,o/w 0[I!tB!5c؈BHB#\%;l n]kIY Pk= JJM5z 9@"OԢf5T^ʁ%Ւ=UOM5U* a۵K#acAAA`b* À7UA;uڈ4*?V@A ICÓWC0eM9 3>瓰8-Y rɡgVWbvlڐ'b J$4ZYcy$0D[״(fD4S(9 {GkKaYS,?ի`5ֲo74l0m\G`VZ? ;S4#CGEE\lt$=ȷ;`4P9o7. -Ë-^A5*]1@ܮl\ڝc\d!`P`-o3ɦw(DYkA՛рO$'x P2H6r'Ȝ$Nҹ2| (ޠĭd+]5c(_T`fG%V#8A:g3؊@HAlzq W;a5iC[փI p a$s)eh $“oy򣻔 f@+c2Jn 1RRD[@H2xpiF2҆޺s0:a%ZTHN‚2 HxC:=DWmttqg)R5Sz=1-RΩNzYs 7$ ]sj+XF#)1R՜2dLWl ZSg#jQDKN' 9z;( ! ':`^j&4%cCtwO'^lVvT$u ` )CpN^ _@ت jP{hX닊-a;ó;oxA J'U fAڈ#Y'[r"]!Щo|SIeJUӦ텞TK[êp`6XEq{;xX&<7k(CJ/G?^sQ@R1E"цKlD+ȃL"_we€XXCUi!C>@0" ;Zxn%6ƻo qKS zĤ %+Hwӷby(`SPrȽc8(Ipܻ{=mps4Pj${Е9>#8i>9EXX3M"\HBB/X U? CBH0x$2,@<<m=IІ,8h>\hgh:ep!4{%(7,P3hAR4mE)ƹKԾk E;n$ ⊳RB^;?@v+¿0Ryx39#@0Ah,r;AeFEPpe9h707(38ĩHđF8I9DĄGġ۞hғCCNZ"`(vʰY3؊R|VG3[cS88p~ȁMzŰAH`a$FlA(_g4@+0>ȂtIt #29 ĸ6E>hS$l*;D V (V?K:xſ`h0p^0GFl9++ ˔,0,Xe@oԕot2Gy;CɔYlپ{#8t2E,# J0!^pKc]l n|Ƞ*N` aK"0p+_KDix?4F L";p Ծ 48ESw(V7[ DždØMMr2NBƜ#{+IKC$ЕIEn,,QɔL[G>= 2:z1"0鎁t01cCp6aMcH^$(_ @3lr能K=I>X3YQBDE{Qm;!s2jJ$;p ɚQ8Hb URZ4VuaS"jyˠ˼,88΄cl3%p+ @=N>hܝB@8E4IE̓e:+Ԧ+Y *"ՠ2CXz(K|U\Ӱ9K,+pˬ{`dKdUViԂQ{T?V0+O"V+ n}AtŸL]W~ءRz UtjS?F][QHlU/^k\eS=Iгgä@j(Et=-eO@^+ˁ$A @A ܳՐ1jb#L:MȋeX*3 x5(LU?ЅD(54K_$TSU_7z C,X>ίŁ>0A܅ё˻ړ=+&{b$![ Gܥe9 0`D8s Q%52Re{Q0^ P㰘+Ů,]rUA6a_dG^@f˻ LwڼSگU۲uֈhDi: Lj%3s Rq25RO!\r=Xy wׯ|ba)wpWhFf㣻%vOjԂeQI]NVP@BA |[$LlXVᚗ\"qe[MiyZ9u~U^53VS%[mI{0~zpX/qP4\ud \6gnǾn3g,TNh#tj#<.IBaOo6ܞN0amk,)p O Q.e$”I@xVTb M1MzO9R0B@QmM "օ^Xݜz\&7m fpk]0.Q&[3$+0Wi4;tS7pqgn苊e=uvH8!%F Go˄I/}Sp,iTUk~ }w4/&gO>B@"$uKٝK@\AɌD"uЌ+`G#vAeTXQewי0^^v:k^qt3wDž*7eT/̼Qp-؊IҴAGg%hehݘwun"ZX:`{ +hq$c`$%&gl h|߫;8O ]@g#;Z dew>j.k>V7ke AY>Ѵƌ8E209̲e#eȰ$G409if 3ES .?hˢ$K%GfB $JjʇJ&U$frlOx-7r䪛ls0/Ȑ[(AT`ABТ9jH &QfTK2F3 09u.\WdqVƨW3YnO*M\)Xj3V-{kۂ*Oā6ƲeƏECxPFqQi %Q K(AoN}([X }C\FTaPUs4SPUgq+RXj}2V{kn'Oyn! \ge}QJ})TL bef\ XC`1-HK(8ԖmZo1ٳ\j2DGPќhT,ČUE׆4DrLE*Xf|"wޡUVw()nYh}rv 56ٖ(jQgcnoR8l 4J4ќv[d,Q#yRsj ZdoJ0Vn)cYY\sHw*QjB D"d[f+CD+hVTim9ohŴp[[[2 o)9?}RVo]uYd.Nywo<-)0CG5Ec 2iX'-Oh|ZFc˄.,fr$^/} jAeWY0}9bO Ԃ1NfkNPoTGŮY,E^FZ\Θ5wߊ6os=du[*AiZ_oOc@ T=BY{2@$QްGsKki2x؇LROl(nr#6} KzxS<&*C#\)؋,L ҾJbiߛR9Na 0>gMdmH $D}T%co7fv`x]cR;dA U9Ja@ &?$ Rg,՘c UIydHyH\;Ҕ%dK(K Pt-[Ű)z$6p)[KeB7X(IqPQdv$OI{9%㕸Hbj`Yʒ <+>#}e8E"e@dlVE{NdXXҖpMS:oMwdy'Aѻd;eJ=c: 6X23lCwC ZSR>5"B $ `oEȫ̐苊[΃AnNZҕ/IdDGpc6iC5Ux4sJEłC$-<@@RcA6s7̀_nbӸ Ëh`N V$˞ǪZg ]-,NFUd9AA2 R_!%,i"<oS3j(!:T{U6`@( :[ 4!w?\-[}5.%4DS{XQNeIEQL``\jWFZ KGy(2xcpIeiF}y')% yK &:POX#M p=c\ȍYec]+A\aޢ*]%p|4鞆0eKZ෺uI)ǵ/Rm52Pg$\D%"KRi9dbf0vSW]]]w q #`>CD, cڕ P/O;)%:ڢGPhPhTPh'qQ M<;tfgBLAydNysȠ^ĮɳTd'C(%͈gT)F^f  @nf#&o~(]hfH{E(szl_.Z OD{=O-UXt zbzvqE h!#×&< FcaU*&f>١-vĦYl|!I)&){XLA0+Clvb 'Dށ`(<!i QN hąLAn8Lp( <\Ej @ ݑBLH,}Z98+VFxM+/_Pe1 cEĀ! b@[J l dzEy@4CgО@^4@SWf..Uؔ VKPD70tb/#?fc6Q&rrjATA`eю. S@ʼVz֌˲HE";x-8'CUCkywŀW( ̃co<ϹÌ<ŋÄr9~+*e`.̃RXVC'_\9 xW"($:y`S,@OfUHt脎ilbt#f;;<)Šf2e)Zp8C?r =2h#8SiC#<+mXW-$T(҂wD6v3[GF  xY'ԗAZHuPueCBXg w# i>`ǝkEtӦ+0?ZG]n\q[QcּP[HunQW#Ca29a,Ey Q2+{2m!p|'h-{173EX;dO70:3h˘B:b,H S@rP E &RV[\T( 2H6}QLUѣ8#ot6t#̂ ]>eF $u ̈́*b |&uMeK QOQ\Ǒh=hKe;mGyx4Lgc,rQqN N"С"k"=UAzHt)L ,NxPT3yuz!eԮjNvvu`V-ˮ*i+ ap(&Ϊixq ܫzHl\A<5s}*_tQ51{4Nb#)RN5ё^50Y{]:І.륈 RU[)TIw0!M`AȮݑ3kL!u hj骊*@~f5aҭ9! 2ދ`]S2xEp=(HWKw?R^j9 Zvmdma #1wNҟ2mPFPҩa ҋY^Z1OtѝO:p\܌E,Y;<j~P䌰*ΎbSfda|X0 4Lްx''\:0v Mט%}-=WΒ?F^ږ|0B=+[=#TOo_ن! ,DӇI5ӑș^'Qg(P h'hgFb<䱊Nh)/HqoD[6ki#nit;ӏ8V fJ;d9h(",pif/HdЮh𒑮ϡrvI'pWUnbpR4Z8*|o5MOlm4uԗX25xXu6izzXX8KT4XGdox(ky HC)\Ç#JHŋ3jlnz-dɓ(S\)1T@0ٰnEFbɳϟ@3:SRHK500AJJUc([1&[GsgճhըV\jL5xSG$T (׮gU׮QB򎿃3kF ]ںun].Eúk9ur,kv%C7ҍ~MKu ?VAFjk" 2foK?n!gjW!ˀ捔ހ2 RZVCpF éZ~G^Ȣ)DRFRVX Cx1 V⋒Gu䒓́IYRl@}0&=LҐG.y!9heKw6adIHVG!䘬#M:ɵˍ])'A!#x$48=l.Wޡ%RNU9gzuj)YNb qç"GeYB,wZ$2JkhC !;:^lHqrHb"x h*={lh/bSyg `wvB. I7O\r;*Qb[A&։2!YkO&pgv"lnH!U 4Hn7F'K5}/)2^`Vi k)ǔB JlrMj/q/?'7BӲ-<{0 -eRj5Ybz $@e\Y+k^+gp~L.曫,mƻ;駟hѩJ+2M+>xʡ\ 'C@ #m$ǫ^5y$> m)v7lan;$dQal]21Ɨ Mg8*vCVZVbJa^W&Debd#)({ {ɩBb$nb/J/Y7F~r`x8`%-dZ~gp_~H_4Z5D@2G?!꙯qI.t!kJ㦢8&bAy.Yp(ia|BHØ|~g XK" L*RdOkpEDRXQNjĜF1m9xLYRl) AiJ1[bOGe*P`//5TZR{R#+$ ryhfHVIc=YQ hd闊 r"$QsLE>' e `2TŪ$*d~|#v qfzAZG8 UM\![@+jrdmm{4z+b,>Hץ d\W .=*PX"Iba^64'G k:@ePi!iĄIX#Ա)mXJWgp*bT(aJX063(4*LY:3K!e]NQ@k̆PX' Ŏh5Tmw H%̫N)GlkrӨF2_o;ia&A6^a+0;Za t~)jb*[8@D©\'"{45 [%ls ,m7'R[-"^}N<L7?l6E]JaZӨM&>(<1aغQabjXYo[%_j6fƚtT#ٴ7-|ݬ:`bNtAliAr6uMq/T%/F1&'_{خvaPybCڭE0ᵬ9$[MAMJW.>yGMTuc\a6Նt`2EqËjO{~o@p"wf))1S8@*:<y4L!]wXLj-8x[0>Ӱ{-qԅ'spnTEwowrG|wwv|ǀyb|+G8UU2 BR $ITn2&sք.FAV~!rF>~JpJ150BG@"FmXufbdrjGqo'|X|(c7ZlTZE+l~fBIZB9Q2,w wB@~Vv:75X( (`K7jP xeuc?Op x0ArX]A%Knĉz8^Zxv["2v^pQwq%ZpQ !4;W DuP#HLr$',yx/`Pj(pǘ 5R7#yE`6> + l l Tx BldKUYDkSw q8qwwnoF5h6#@5nR`R}ł,QFԈ ȍ8789(>5`>`WWc^5l-g GpSHlPi|?#&PjRPsyXX`whRtJ788( 3٘:٘wpt  FTOS:EXGllךVv8Ql1mvoW e0^8UV$w RЍgHطs%y&3ޘ3jB?EG?A4jƘ() uɞ~AVX+PbPSp}fvhwpw[yqPngʛ8U_xDβ8C xi}m2~%AY%D*P9p:Y( 4 e 7iv luw |{Y8`$="D l j%#x乗i $#Y#,(QPyXǘY!Y5%᳤ J`^%KXwW { |Z (G'#i~'X_bĈ'}**p5ht8ا+Z )7y3 03Nf0P h'nwf* A2TULPrd' 4X)~ڭzJ;ZHjY7{@ቮꪮjN*Pj^EcC 'YP''P jç{ a&b%HPc! `J '#(AP"#;zјz|7ɍ49ZٳZyNgvk@kiY,ƉvE^]Z簻@|ҋ7%{IqyzI誷>+왇˩!*۳?4[jPA{+u O@X=%G]9cl&( {gZvicSeP|;O4(VӜ0;ϊ+v˼YYty˼ⷨ˳A뼕6A+J~pkC?mcCP9,&װꀷ׺ Pe'%|>Z'w:u+9?8x(^2ʲ,!,[BkٞɫKkVX[Va)Pq$g=܀WvTvF#%[2 38".;_lzu,g,i% K۲=P(@! l [@OFT}K `(wլA,gv^ ɖrU i[U2 P'*pj ͩ*@|h̷j骍f< ̳,;ɻlkF`ѥF!^ǦlJʼnDlm'kG&&͹3'!x7}dY;;?˼ۛm i@ K{ҠfsA0uA]l ^jv ,}$#O0F( wRt[A9(|MS"uKjy˲:Vտ\%pڦz+]xPرh֔5]l!^{栮z{w2%́A<  RwA1CjtjُMS볤Y ̧]>J/洴FtѺ]qC֟Xþ}( 6GP%JC7Dԩk, 8 pӔjMzy,X}==V|8 iJ va fX0k̈́zpPǐx ())a'O3d +a}ʍ}\]MéHԤm<˽*l3ߒ+=5Ai 9OalYYk=0qK$k-^ O%|hc ;-:]5@ λYԍ)ɩH- K̄. 5 d 3]2Sí{&hFS %겲r 0So []w!2BҽiLZR|.Ƚ0γYp5J|#Z$vEOȶtqkKghS pL|7) 2PuKT~]+hyK(0E=:7.6콀=o u#c]^Yqpb6ۢg۬PhVt0^vgN~kE`N{O03uwE`RPPdZ pK싰HDMoϟOj߽ 0Oq1 *SZ9 *TL]x-[6ljeE[ ƭ? DlęSP.]TPE)h(a<ݴBP"jjRG ="4|GX_ zm{PW 5oP衢^pՔ(a ۈlDQb=J8 XqbQ-'N PС;;LBE -9֑M}pPGԩ~~Ff͝ō r̟l)DJYf` Vmڵlxyn_mEQBĩ Άq'װ20ی[ਣR|#0H#n!KhxDb8y9_S*2:!rWKs=!l8Fl?ZL1(3Jc :`Al(Rd!4;n!OxSA36cEEkFG#";@v<~,;:P!. 5S#舲NLL˸s $0@1IER(6Hr$(tV>O,f>I&m9 U4^)G J[|qȵ#ۑ-;uT){RK%C=j21i .ƈDO< -ӋAejCA6m0\-FђRjN4٤u]D+2Ld`|.. :gn[ۙo7'jRt-A\sXBgୄ* 蓒MhMdF6y . <#D7-Zw 赬e`BәML<249t=!|UAb%a 1yTb؝lVzbR7 e(Hvcp nqz`3`#!OBq D* r~w2Hzi^ K ~+C6XwDpBV>ۄD1I aQT&< e0lc (njY<貙T+%E.Ց(DP<ǡ D$!q=j 2Y:N0/U> 1M40 Jchp7!ЅHgֶ@˕N[I/nŕK)Jy13SdY?*aMDjd8QO1SY inⓘ)6?Ӄ'-n&!$C(m040) ŕ46Ѵxs#%_4e:E/ :'s]6``*BQ_RNk 6`X\ oKڬ"vm Z0mCoU$G&YϚ3aji5h>pǤxSa5ǫ`)5wKY@ *RQgYՔ׳oTϋ<%2X{P( JF.E@TukNh'aԶY, th #ؚ{pŦ=2MOf)ϧD5qP!N+AS̗BVO᭞l8R F[\FVB>a5]vz NgK *M6S+ٌ6cȈΐn#m‰H)ڢw m )pv&rK"q_h҇/^J IZI>JB SZZ%LBPDG]A 0/#S^2K$mދ3&)@θ 1P@59S){=:A6 Fz0qFj'T2)*>bzK8b#;Ӎ/< /e>B 5:;?DD|P dt9,3 T@@y iP1\{/5 p qa6YG\3U*hŪ81KMD͓6!CA`$;n@IJHfcЁf5LbZ*7LDZ ސᢆ/ū>8< Ӿ:Ȇ :|܁k 5@;?Z&CA2aܰ/˫ӫB|hB"T !lĜԂ֡DDZ$6C TT0J @P0"ʤ :(:؂TsICHx!š֋HCDKhLeL X+媒i&(,z`*vtǥClOĖRv ATKMQa[ H'Y|72)a_zbHo cJsHHTW2cq #8SrM̬R܈iQ Qbhqnp6|T`N8ÔL> S&fBbLidμ?hl=cϔOxO9"@1L G51 Ԑ i%YPAcBKG!Xxù

MhO k`#-BP=fX!>xߐ 9'F wrgW`nJ;+I슞I g)׏NJqXOc6.E58Wc+*Paޚ`9gz7Ђ;u4'aEB: XWsඞDg[@U4!?7uݴm`Tֵ]#'*E;;\)/yX*~qu40,\UWB@(̀uXhwjrLs[:Ι@pOpBNN;h;!0I aݿrHf=1(Ew Xh6;>  k Z |0 IOg\ v("M[dךb( i0i<<*|{8>ndRɸwF"smOA"KR(e1np)nPfh Pǰr[ 7 fvlo ]cu芄gDN`X?vZ^& UtEEF$J7C?%QR|3qPGX%A r E`!V, [yfuyfVd]E]l׆Ȃ+~ut\G#U!mB J(rv39F@P' p@kfP\hV'wrVaz^ra&k8lRtYCt5bGN V#YA Ow$mPEf@В>x =t/_}. iy VoV`Л0)PeYvbYkYGudg]O JeH` z=u!MvX1!nl@W" YsI( fy/)aOwd(k1gh~$V/^5p`#5RwZs* P a b#FcQUو#Ԉcs!/ܠ\yN-y f V" syؗɁ`gϐ])VyfVl*w}DRsuZIg )a`a `^wteWJ(,em # ٤8sy"Lڤp yG}(i 6}Fy6goIv@ٜr@Rgx`OSHtfq0]^0]P0Z;s"<' F;C9}}꿐k>[Hu`кz ߈Vf}g˹uS(i{p}SNNjlDa}\_(lLz=Y 0 vWaVSQ&وUHMpSʛ8 ,j > Ճa^`Ecp xB]!6CTDśW^}j]cƎlfc 0C"Au-Ɍ hӳQW?{6SDb0-%qc'b6nR= QƦ{&:WMJe+4'+cT,qqQOԩ>j+K 9+ y2(-xb$+B r}GɎ B3"+1u[Ǡu`)-0#0,(TFq5dd"4B%'B8H04.9 j':/Q2Iƒxr8cʊkq - 'B%(g6 RK]`}2a ѱK\C3`P0,g`Ep4zmXcq,B"d2,8:`;3TĐs9j`Jcʾ3'$I" Tk 6bqR#t4FTPD>!T0x5ZmĈ iUdG^Sup+H( N'p=0j)7' L;,=9ἲN<مWOp'KB* ,g Tf*5Q*` M! )1Q 9 2bB;G.Z7^펕GL@ 6Xew&'z>!¸袿%fip 6%&# F/`7v?P'#x%&{0PB=a,OecJ5| R-[V{~=B"&f{h,fI7wtdLkq6'O f,PDbl!x#TQ6@{s: 9Fȇ>TQb5 <#؇׹=eu$DiҲPC&Aji3=Z4QB<GNƺƌ|pCyb!ܰ [0vBZ(JD`2"4V4,J5;R=せRb6sBxcZ9:t` u&(Ԧєt(#|f",|M*X C9'cPY^$2$Тws@SB2p"\fcUfd;LC1m0ײi=3 pT`n3̡I'm]Q&m4~†'X 3'tͤ)VC!C70i%=0}j- 8#>Ft_jˇeqjd/Vg: CBtF$(7(%MLGA=xA`lOmJ%$!/hNawRg4 pD#Z@a&ՃU*Dp !:e!LOo2CUD Պg%lz%F)$JҒ؆htú^yְѱcҬfk"E (Cv+Οʤ)!c*C2u~%4Ttn@)NB}mg[@"[G>#XbnZg܀txmu=pwߥgzQmnKhJ|j\V)3-K=Rp n ӊ] \)W|j%m[dE~N&EÊlb8<_W\NuzU+7dWaRN'! 0PFzȅSZVNÕv1D xx ب۔ EE!#^(3@k3]m 5׶uK%sHCWf".Lz<561w)TfL/?5|h~l%p]uksdT;2Aq֤24 Ml~wMsv6_AuR'o/qd%-P*1&2CT1 ٕ֫ݻY;J)k{gˮ;ˮc@83)22-8Ip-+٩9I<۩ p<+8' ʀQ@aӿÐIҘ,9 `3`Q`.9zdkЫx7 ü@ekA<`)Yf0 qi @(DAA$Lp22h¾"0 8S j_U:`iA B6_EKK3:3 : hHG1DỈĩsG Џӓxũ[-P~'Q( E`44oVp2$8973$8h)Q HD: r#!L3?J-cs82=OxǿV+G-J ]נ|08 _LoxoYV 8t ;{#36 iIPLP/A  Dǜ( gx2Պzl Xʿ8Qu85-S23+z ^bY==x!7HKhh)0 <ƻ8cFqxL) **4LJcPGʎ"0Dɇ`&̛MؔI a9lXH38l0V V2x†6@=.81hjfBԃi8D̔41I$ScH?@fH %P+%`Vʠ2J2dQ'K?ȋl+hB-F8ɽ6bZI1))H ji趒jjD9L7!AkRcG@y|cּ̓*  x5}P32 Йz܃p! P=soא6;;BL 5IT)HS=Z<)zD 9p9'/V%إȿQV1522;MyEIyxS@ُĆ6%o#Bs=2xu-L1I je`JD̺LTT2՞ 7ؤ)e4-\LJXU*EYMLS IPxS 6AyͶZ@ nhU`^͇!1g²ʇgX!Ex85>@]Y[HMLQ!XeBmْ+>_ _uMKMM3ȂKɬ=79& ]V`W` ;LܝXB^ sȗEWKH[Qs^![7b4\kGUWL ݣ 2e0t C1צP(UU=`SR'(*f`M 9h-6XXȇcpPsK=XPs]c_&Ko=UaKK;eԞ dF%OH3, *S܈sbVņlnK ѫ$!> I=J>+hjPmJ; efDYQ1GhnUdžnhba;:L=wsP1ֹs vqy"6)Xw,\`Te`M36Fhf*xV쓴caK?;B2lUe T!d'hx˪qc&ʼn(Tnt 9hȗZcQw$xUccnY7q;67:oܘcݻbf D!U(m g 9#Usqtjzp`Tgi@1 `;l {['hdfj39>kBczޱNWaT DGK㹘}mF$ $&|\ZtxBe3eɗ`@Y=ط[o5gXCCKoʼ(!{ڴ0Z4/bߝwpRc0gLNjYQR4)f¨&8YԜ'iz>X)j(ҤJ25RRj*֪0q53s 3́{À'@pązv6!z\rm$oysEHW R|P6o>R޻MYKY1ͬ&7[1<4-nQ8V*0-4*g3&O1ŭ[.zI|bVݘ3F+GN&FATFY7эCEYfPYhIj l.e3l?JM0ap(1E9cW\X=CFNNxu]y_%qX1ߕWb7QFPiD^xON(>x^P" 4+oᆵ 2:jOxbJ=<ܡ]8V-5^.`zRR{^ji%Iܗ%\_e"Ti)F4p uNxV a0(3n~țVN9e3)Nc̋TRVUl҃>#d|G 8Ā7WyO'@zB"9I D l7m DmDY(]%fJ0N1)hlD}% #(lA>X` %bN,)W^z {]X+HLޕ oLfd{`Y"7h2Fq1sq |SPCsC[lVxQSr@<\k{^ &D%fve_ !BN=A x`IXTa5U%Kg08|Zqn|K`*Hc  ypW3w tz27yC=9ocI=HX)WAHBb07dH5.<`C$k 6dYgB` P&C p&ӈEx! m̸QFme!9wT<29|H!y$rU|#sdR(qbxĔtB.I@4Z:Vx1€X2G0t ws}D$3O$gznUY1@̆ ĉ{؃(SMY5XH'^"3Fm,S{0W~O3 P,3q!Xt8GbFٟc \fXdZJG)N4 :ex-!z p增ڲ=:!8*aǩ0jC h HjW4GXIʐ4X(MkJK֎)CEKᦂ-K"ђk(gz|5B s0p jcRsXd HN RIWԏ-"i$䤧=?rǶ5~lsFwP+RO6 pZb8^SmhTQ 0Pe]վL ++\?ѾTac.EC kd+jQ:yF//k.BeưP8Xk G 2Щ6uR$q*h1);'"LIO}~Bgn-((5խ]`%'7¬r`ή LJ` Lŭ@,> *ԆN` * > C1!r $(xq="?\ׄՂ v!N@c[BM*JM\4( Lj׭dL*C|ƛ<\Dq^ 1ڵBr8߄(#V-(F(- "C}cH ZBޫ"JJ:ڎLM%_^$(Cy?dKП(ZDZȣ|7 $ɞ1ăTN]`VV"T T]X%^&Y]\k^ߝ^N`d:}\_:>A$L DBO(_^*CH >H[^C=c"rC}@<,frfd"Tgve]c-0 6jjJƸ{ ~(Nib D LAL]'_](rMm`!8e2fS7Ą'qCp'4bJxj%?FyUChX竐|'E}BXmm"oFB$H]>gعLt Z(D 7D7P'S&l=ݓ-t'aJ*CUB%z'jgY>IŎ(}p@v*i znԄ, 't8ږrCGPTbQC ib ?hhcERJ;h;h jd}p*eC8Di"b53B nx\1SyBjQx>蚊7h4F!j j$0kEeiӡ,D7DC l4^.Aj0xOJMa^}5dB%8,e4j1fn_X⩫AjM[EVV{+Џ, AAǼM4 9qEo9ڧQ05`"4LS\)ig+?&jjߩ) \leY*#CvV$Q<Ԁ(4lnH!\"V&Pe9!#iE~UyaUyą+z@ɰx`tC$\5RxfE5LCnI$E&>!dv@K.m`b#j"["=ꝇyX]o~&FAoztm JAgTh Rdviyɚ AV7AEn\dD9!\8h &m*(*~,RĄHDD>f$Σao}M$b%[i\id ߚ̮A7;ExA*bӂ^C!md"oЗ *a"kx(67$E*\2IyL֋ﮝҰYh{܊DB<C4H%Dom-\﹤%H.bNZ1Y4^% Pg.q',ӀC701HA4CADC DC$DAnBz*71C(",h*$cd-T$íw"^(p~in0&G /88;҃9b_prp`kgb&fUWuvuG~3nn4еxr!/-<G9*EpO<l5-0`jo/~$Kr&Gu6c5[fF~{-9rIA dA t673\/BuA(|nwxNG2V"S5 (z*rW*d҉%\gǵ"^M-ɂ4P#(+?A663ChL6}Br{G's?B,lME$Xl/%wcJ9%4@m7Zt#jQ9?u؈.B,h "77q|rteOL)$zH92y$$R\7[5Wexh:VVsz ~c(x7gc]8e:"Xw&zhkΒGbٴG0L*D{H1iB|?27-:ExګgzʱݙadGw[w B$(#GdY:{s\A"S;?T#<(D<z|ky,(A5Siz nb> ~2w<@GT!|Sxlvz[=aADf,ۉh÷í[?G>"(ӕ|ZmJ%3M%\"eDi&숸sq[xڄWdF}mpXn0_4+j BvnjKjaex(xJ[`VQ}3ieŢG]ߠࡋ,s03D3u)b}-gG0+{0`'X' :@P@25*zRqq"K4ĆCؐP$5g `>L* PXMD`]+`ll8Aa|t 5P @>Q\(w|R h#Ln;]r(ł#C-ЏVXG p8!!XoVox5mXc'p;C>p\ƇLv4 BMA.%yhU$Y=ྍ<р xCbG Q!mػ0-4^J=M&-Ub!% q^P]0/V 㰓kfr܃B"h@p~hPṣvPFꮸXrmB+ֲ6\=aH / VveqKŊϻO/Gv@!MlTi&]kE?}"st(ܰt{ "(U6WԸztnpYno{vݧ{q5wof;ʙ  p xЛx Xp|Fkk.|?Ƒz:/,Pr*Bjd po Q(^t_E&mJxX:WjDz[. BsqTh|oO  ;Zgá_]6SqT;f0<]O΋ *H8?wzpaz;B027d]}4Sf~YZ>?ewԂRM!q_=po ^> Cҏ* ~`G4/]V9 *HPŶ-p10q?|`N~Ľ@OVPMӯn,@2n0,J + n%(4 8o|oA/N\k 0IP= B/ >/P,Ś,1\dP:0Ь.G*qC>61mI1I *JNc q @u1q Q1V]0눑>0}/Q [M5M P11PK0}O [MnHRm21ɏ@p\1 ;X1PN"OAE!Q hn"NqQb-:N!S2%  D%q\&["{1#'rԜNc-P#'"Y9r$7r&Nr-ǂ.en,+5,=2)a*ْ-]!:2n%/p |0=!)A I0&/#/ R "0=6G5ב `)ꎲE ) >E-q9|S7 rR8151ёR$C@ l9!/5-1 +25U%E;c "13 $?"=3/`; r@"; 5<@]!Ա0a BU>=D ja0Ba,^֡@/:T8)D4)] @FbH FY 4A)"ӰG4H.3K]D8oSEp9M FE"Y1BM7Nu6 J)Kp)JSMuRÂԺ18 REU,@;c>) $uTa,j5!A !4Va:8s;"W}5VT4kUU-4YPQZ Kĥ[\4HBY]O0D{TE5_6[U_Rk` V?`q0 ! ,׈I5J"]ޓJI\()Nh(GpE׈sz>49VmiKK8e byo;d[|ڮsХqii6Jpۘ-jrxnIw$LWntS5MQ8Xx%{ޗv8קuBXv)x7Xui{GZ5XdX~;v9vgPz6}nx'X7~ H*\ȰÇ#4Iŋ3jȱDž&D9`ɓ(S\ӧ~#V͛8s(2JQ&E)JTQJ*K=syKMsݻ󤖝KviӈX[.dؼXejW(?sӼ\s+SV̨Skew}Gs՟L2n(k~ 9!\Kc~N޲nqQϞy%tA(`ȑK>{;r@] .k\eU8';Ec.<ȝSݖ.ł0 D(䂋·^_5b,k;M.A1F8Ɗ'mOTVӒnܓlvI%yɇˎKv9x˔n4mO,!nyV_2mJ Zbϖj2jD.rRY% x arՇDqΙƪ2A!!F[cV~5zYg %%?p@A 8]Fs<_QW-P_i7Ü[.r'`oS:ZŝHJ,!_',oŒ,,%{r2O?ˮX!\2 k #kHb-E do.Zl D#ö1ez.0@2 ؑ(DB v{ `݀].0RPVgE|) '6(: 6SL$΀H/ClSr6xINqU4YĶq9!J[ZuHy `NmgdҘ'H4qoHCaO.AWa3 h:ő!&f9T#%f)mQb#$2KiElj=#oW!eB:Pf{ )ᢞ1,H9 q Tx< DZ,2W9&Xǫ?W r߫n(v9y"a@( }2T"П /bYd#&P>z=z{qBEXDAFV |TÞ3xU$*:w ! S/BH*\ˆ|,>LE F1ccJa=~s(R&2q DڋŅu7T!ɀDuؑFvj 0bG`4@@oG!*Rs"B <pc?ny~[xsU#1I x7>m<1IKU3Ifd!.q8n ta0F\>Eb[>8Z[vl@u``ZOTvSTd!`H [WaP:GV p}ujD'_RfƅxE_"QkPp_W@``0P q^h]=8QN FFݳ[3 ۀg Ow8ȁƅwt8ƅPV)h)sy `Eld`0u W?(sCF&;%36w\xN(wPtv &_x'_}_\~a(u8QkPdlЊJ@`@fP ^W LV{8H4G8dTG%ĸX,g H~WngUq kSxe`r?E_OTkhW\r` P ^pvA5'$Ei`.v;` RR wTX\Gg ^(Q`H_Ķ >7Y0x0[ qu1Os?_DGx14e`,gAG ) 8)ǐ VzWP㷅VɅ=5u0us^teq?Tfjɖ`|!;פ9ɕjsaΙ H| a,p XfUXH7Y)z`X 2:ī-k̀ w̼^rXȃ,v 2:: mqGǠ | \ R Xf Ɍg`~fGXlPYk˕JL1;ZL-ʀnf… *)yLUDv"vG^0NPw | p* ΙC R`Sی` *_Nwԙռ|Yĺ@@hl\ . Z-Fjf{P@ 0ƒW` s ƩA-ԼҐ W˿+pRg^Eh~َ sr\)Q2ڎ*l^P_K,tT r~0[U=AHgSYK _Ր«Xjg5f8D20 8ǜm][\ǃl܂|s2 T `7ZT8Yڐh:YbS԰Z~N(Vxd<}'̅j\r۪J8vT`pnWTҥ[LwiJج @KّjeqJhg7ƪm7蕶 n% MjʀXٛύ瘴G.-ĈB?E_ٰl8k둿I< N?|f!P:J? ǜrכ~a3TPP={dt 3%JF(=~劒DRJ-UEc5kΤiX*^y4n\GHu&VR9J*ql=jUpJ̪U8RLE(P@  m\XF}Ψ_Ae- Т044 *A#`Hd 0LDE\ڄc3mJIcҀB :nAqg|G TdS:S*Tj8ɮzJ}[uW>_{3 Rp luđAa'22L{r# 0!I9RCmmb1ē@17o ߀Z ~nZ'x!;Nȯ{-%ނޠ !:Hˍfد8c0!7< :sA" KC0ADC]2! @J"ݘ;( )h¹|:[da" 'd#*! ]Ø!#/A8`p0l B f.cS,3935. /+iC]ip[Q)xY*ݥEKo䥬UZ κqxaT[؊IN칪,b5bCJ*4Hc L0L7M3BNi PCB/PO%OPwy"x z[QWVɩG!V, 9a"fU85ؠZ24> vX "H#Ȍ7`20: Tp@hrF2*2sܱ* Ֆ▣'$U^՞!o$ ?ވє¿” 0%(!3Z&rH9)@AW0AGP5a]^jץl?FuVa,(?Ynl9ت qMl'"/>P00C FplH@cF5g(@V "xA#J·'M m:upuJ)4yפ.%0BJQp)$!,xf* !x IPoDؕ*'7|l#uA}!{XhX т*!fq#3tj(N1hb> K) vn :IڬF1'`cW6 Iiyyp+I,yS|bXe-Ha2?OB 8TҒYf4#.5gJ+4,wS_"@NFIOs:IڹN& !rqY2/7?o&fJs1] P@d.m]ěq" ` ɕU :J) ;ԏXJc0G ﲉ,Zyj9" T#.IAQG5Jx̚o@i2fRyT A 0Bw7ń";#6`C7 8fMfڤ=? OX(TțPelw~YҠZ'TQ\*%>!8qs/  PXLB㤂Q ybg>>˓ $%-"Nʠ& `L569>T‚KĐ Wuk3O׼^HfM $s6'{|w 4(!ug_dYm/c)^ՋJs6TLbR6`=IJnIP\ zy[ .`62Wc:T qfv3Q/DMcOx%QqآOɒ[S~;_&w pAW|#q缺n~r.s ©@ 0a(AgC*ʗ8NO.3)6EF(Ǯ]) ;y ;"̣1n LoG<}DPOJ\ad=̅Mq:y/=6chbUZ8)=y ]5*-Zwc)`.< ؆%1nnJ˩>56$O d-6+-lN۩d{0>@m,9hǒQLSof xjCOR#4OahzЇmcܛ6'%41gPXw9)@AO   dxʐ6!v|?SkW8D$\(6aB~ AJXn @0 /1}SZPwlGC;fn ST"׌IC<0,omPҺN]U B63ڊ!o4ȣx`p6؆\K!򃿛w >3s0Pj.2#R,"A-h/>#OiC4Zi*@=i ! | <m8K 4rhJAKz3AkSÀe)ǹ$t ǰ$h)B?uJYXš0|Ȁ h'k@x(p p?䣻M[>˜2ĄK9Ą+8Ð jF"K"*k$qi)bO`2 %(AqU`0xE(YԃY,==@*؆ \$7sqC F9'4S1/Êƣ)( Щ#qFDI\"{9)R XG>a 6ȅd=x=@Z4="? 9 K,27.+!/++ H5$!t :D򡅰ԨɓS6Mx(0Y P&X̲"C\Y2)!!bc2Q+0,0C-)ZI-8$*LL%Gҫ?e;=ܿsXy.0tD>PHX@uXM:CkM CD0>)Ӵ7M/8 "ΐ|ŊUF3*"Em8L!BAcɗG , WhEt@=MmO[\DCӻϽ;,R+`` hL:) :%@J$9q$SWѩ$0 ]u@(6\d tDXRK!>7{A<:lXF0pAfX8`⩡qCv/N* LoTSmX"p7"XI;G'QSDEV|@фTEMX؛4([M\ ÆI*骆$:¢+qI9!RnUUZ{@8O0Up_=^DcT%}d|XtOO\8CVaqK>J\IYp`+<5R$b4 eKJՈ )H7у@3u1G|9P[pVYC R^@ؤ`ݮ ʓ4tL* E'x"كW`0Ј뼺,Bm8#[ |Ƚ:(+ L0/܆-T=C C  u@S[ؔ>Mw35l`/&=w.U)T΃ SdM .P7Ճ_q5XX_mvX9|\P[MiYِ[3ш4PH3H@Ms* q.I0<3wZ"* )rU[_iӃ59P8_`m|49ۆޝ[C MI,rӴ0276( k.^ !D!N?!BؤJW=1 VߚDK_Kiq_P m xW@9߅[])$J)1Kp^<Zc3@$`i.qJK 5𒬕$lP"dQ(؃FXX_5 0+j }\J@uO"mۄ$<-2gb$F=:h,Za)S=A2u'Y%d.hNefk(m]2PJ pQ@ eMPiBMescm(cs"5FÂQ+[AtNj@!"""2$N ݆3h`_SRfH[?E.@(2MHt7פ{m<} ?v2Ijtz'Jf  _Ad7i戥f-0XJT%peDMJ?@$dcmk^:XJ:J2.35_| vӨ%b: T&ʁQM=.$7`~g Y³9R~A"֮aL.`v=p@ƾ1:}Grx@[)t K]k+&%M`A]K,4ޖ0 mhFfd]RvEpNj=KH&sH&=) !]S!*oP^,Oh {H]cJ9҂@Mo_qZej./cK.bHG( qH`p?uJh[3)Vg)@p )H )|N˅Nop?UmUm6DĨH>8k@Y7GR=M7?X; t9# ho91!Mvi/./ISO[%q4 ( ywzs|uA5HMbKYC<4L]t)me1n'}[ej(u/1qL2ȓÉ2uW|QD>Zۈ M de tn(&!עjˀ;zqF0JWUq@ ^XI ]!W}"7>mв@ TL&^iG?/:YSx͗Іq׆+@y$ 8E> tʜumW\HmmB ~% u"ƌg(J%1aVܣ]fvI&Μ3;D'M."HpJ/~)ԨRRjߣq٪U2ěciζ~sJ p+n"$%nM(HPai"MR7uao)F{9YD$͜J^:'>_m7aV*?mcQ`Wٴi P{W[A/ p0A  ucoqJH%RjA 06!O6LB]fЛFi4%%=pqJ<ۈrs u \_дQz %DB1aD}g!30Qg (4 bZFBiMo%:\nسhuA}q@bzv]oSpsVۍ}Q^`3G58K,U;ʴ ! ݓVs@sOYBly<B]65N[<#n* ~`8ELmV^fe.\q J2`ɠN\Rnjj l'pA3C'"YrFG?rC/Re/p$DLSP,2!B5o-~P{LA8Q4KKd;A.j;ӷ>`ZY:%!SѥD(+s02G8 ʉUJn#cC!l8E d@X]h/[K``|L! ǚ[%|x$rb> `bt}0U:$"qLD)ޠ)( ר'H@+_)1TVo(cS$z<(M"$ ݣDOSĄh$O#Cæ2l d?lTq":6EW)G!q 0B=&)iNqJ?!a@. q0iv4iӅTpN"*jQ N:~N"1-ےB6P&T( 3AM&G;*#ZW 'ZG1HV"({uPK^N V1/zX`XiX-%(q / t:]3؈w S6޺Ґ^xe3 RNaSBr["y`y֪9,0q L mlt 0D WV+|] PKfY{ -j)Ke*Gub;w4\tKQs? K^\>36=u[hLsͅVDuDL.Go ՆFg`XPeLl%|M?_Bp_a41uN<5C a1Q:S0uWL^A =zuFv' ||FIK[ʘ?†Kt @ na ^8LP4Zs@Z:u-\I";..6:m" Drwh809ԅ4D{fP‚1?\ O<"D%qu@Nv  aFZJ)m+.ذ JCYP(0 lr+XBݡ 12yT>#dJ439-C{?詹`b޹RC+>=g 2_BB.x }J3B˗{ƯX"9Zӹ;"yUsCMH^+aa%6qyLS2Їn;b-//%p{$.KT-Cq[s^<9R,_YL^hbD1D6D`ELDe.Rћ C NY~՟F@`$]=\̊bZu%\LX`LPM^4mZFц8 T|%@ _՞ )aM0Q%A ba 8Q`Є.D RxZ!#NhxR:Ō ^\-~Z B &]4M` Y!66tD$͌$v %V&j!$ (α!'PGN ZH_YAI:`!EDŃnt-#F^3X z"4VȎ`Q ґ#𬣭QC%TMXڕ^Ph6l!Mz_@4[ K͝OQcߴb.4}]u Fq;m] 5 H žZڔ8bbsePYtAUNHmdjC, Ќ`X%9'ޖY&ZVx@]+a:&]bb YNkZL(G[$'8&ܙ@<#`Ath[lJPƀ0~(id?Y nPIAkքLEMLhCYj5Bd$qYq˾]&t*+b!\V!%aHxIJ† e>P c0 f& $~( AFhen&|njg B&NfM֧O\ ZiatO0~'aЄh;yBW:ph>E FBBc ZZ(ƀ8Eb  ĥO̦`y'>(i# 'B3e N)e:s50 "Q%h@”n*UJ.jCi&NpAo)Z)驫|g}B#zbϱ]@*AFܴh9߹@ Ι 1`m@+l()PC hFlT+:Z^s:*\.aJ!Q&Mǽm%4kPkZ%v!6lT)p *ƪk\6mPZAM9^`A`zJkf m(N,Ўn҄-'-~hݢ+!='ᾫ"nY,xc$PT.P,xʦf Ln.|ޞm^*`["s6.F2Ug py h?/lZrxN`NOB/p.*-Vj- ႯȒP=9^ :|M?pDZ xx\Mꑒ 1L(ެ(NDq,C kKH*!ϱ b]s UxM_L2 +  ;M3 XD$#td#;qD1!.<0r, .12F qtva"sJ2J ET߭$'Tk2$RЄC1.s>s&޳{&"ps\_,@g$a2s3/EPJvW8@NE UbE,21A,;Ä8/4`#0.E 1,OO5%*'03!;j xM_z #G1@jF}T8);IXτ(;+[55O@/Bvv/d4vVmKG{B?,d X@A;Cl6!xv Iv+K3j 1*0z]/rkv/GA+h@%8@p*XB[pe> uc(CC,.<*G%7JO^t^Ϸ`_'O;9r4msC|jQ|Ǚ-ډ;C'OyuDIE{,{˧ <; |0WuN#lese lWN?O9]95c}{Fp pBF =؇}ЄA?C}y?Kƽ-t} } U=|Ļ@rEh}{z-ݧ+<'A$K|tKp}г,~k/4fE\؊羻\~ФHҔz |O_=g/J<~o}\Ím^f֧?@8`AQ$_C!F8bE1fԸ'AӯKQDc.k@N3c¬9pF  9:hQi0 ɒ( ʼi&UV]RչTNK0hYgru@"63#j˩Yjug[UlZÇe["J *-Vfߚ]6FħQO[\2T]b+SS$bjǑK@H?D2^ѸԻ7eN4]ppѣx9Eyi9og_g aP0- , )J#\"xɿߦ:βx"μI,K0:iͲ52>Rэa ( r"lm2q-3^FJ+Y3ɮ*㑳 oL7R5%h+욱I*Ñƪ? \61Č53-yժgLP~⑿,N(h@f0A| H%A q5B|xEB|*ta\! ,‘وI4ȣޓ\W('ifF)Nh(F~J}ّkj!h]8Vnh&) azp[9eszڮ{ojc7K.kro{DP1pYxH[)hh7eezv5MPqM9ޗANXVv(5x6XuH[izNYf4WeWqYجSLx}\xx9VTy:} H*\ȰÇŋ3jȱ#F=%豤ɓ(S8$FI͛ '& e8 J$;sdѧPR՞HȔʵW zO_Ӫ]kPRp)=+WU e0R"2ͥ$N*^տc&aViak޼J&󳟺I̹녨HaUstlzPmmfqѫ3*زKW'ؖ-<-zTi GG.&ѧ DÝ{Nrs #%>HR|]L'^0ɐ haP.WN$1\v!eV0˥\IF^J%QҀh1u\Y;CD* xiNjHp2 ^*~dY> e0ƗD&Qu[Ȉߗth_.猗D]=KrpHǏ~lSH2'MHx&{'G_mX "6 vjBz0j56ezZK]"Efs f*DzrrڀuUN\aJ!EYSK*(lJ-zf&!‚rxT.t3vׂL+| RU«!$$"90pYŲJތ_1zeZʩ*\ɑ;x99pXNLvκ%/'9Ѫe& y |e`H 9rW6|LKJg.QJ9fIBYFA'du5_2CvN`%0Qgc V@8ֵ;\$N.3dۦZzra>[ aHqcvI\7nCj*o埯r%ݘ =;G>gZKTfg*+.Oڒ VY\4Eds|]+ND 4nv>~_iN,H#Tr \8 EZw@g%- E9Oր&3\W,.,0 B V)/m_b+M4!\Ȁ01mHKl)\r7NcTU PȀQ'A.5FZl]*# a"U GJA7 (br 6!d@AH`21xr!R309ƴYJzL 'f7(pAJ (P lhEctҟ ͳJ+  \ F(ᄣ ;>@a` c ) :*KDhɟ&PDw*| Phgʐ)TCcGO̭?0g с2Y@glEvULAG}id O3̫HKlCί܄KZ ~nFYi`b`b ש%A m `x (tңx G?=x7Zry7ۉ^l,X 01`AP qQ%!Wav\薡A'Կ80r{u7y_|`)Gv{'A"i0T@~Gw w' EDhCw630>  68k Hygyk_V}Ev%p=&7wdPYUo7 hETs >^[q `y& @}ZGy%Wr^mB9`pOV [8wdppUІnBC~g^N y0m>cq{)?HЇPkD8!hv'2VETT^PzdЁpd@XU{ qJU հNpO5x8=H `@{|Z'bvȤ4`Gg= = T Z8 P t'{gL $[@G>%n5.yQ̖)e|}@%7r(oi=ֈ&UU&ii =@UDhHG3YiV?I^iYO0ZSO6x@y>Iؐs'`mDO f ׈R)W XP 0L_ p卐si؆P 5+x"pz9 ~ٗh)YiU0yPPوS2GPI o~0zN#$H &߀ 9dBFԚd@Ioُho@ l9s`ЍsȜ N !P@`0@I 5d煻4:8=z@@&}@؏ٟ^FsO@UYXРL J1P T`xz s=0IX${@݈62sAJ0`ZIP`10~㧧S v>sU$2zТ)(`DؗFm %zs;v tp [1i*J٤ بT Qv@dJ3ӢKZ@ƛ懐7i)o=ЃbTU,ⷣ  рWzopM8 D`8vc+1zpo v(dk/ʏi@6`:~ʠ`:vdq* p᧤wzelՈnT= UipUr )K-C׮i|门84dЈM ?X   ZƊE WU d[)۪P Aآ%ʷ/-f8J+o`𬆹kP0؈0p:˫K IK K Qv&Y``C=O ڠJݺ-dp< ͰțH9r5ۮϚE 7eTi,ȻZ6`Jj|HDz&+ =6^ovyB)`o}`9e iڃɘ  ~˳ϻHڤT[;aUR0&z  |6+ )c y}؃@,`Jpmi ȐNUp~SӰEF2l$e?TBc1lʭ۩=ǐ֮):ˇmڋ+ d n$;pP j5TyGZ Bea܌Rl`+[)7}/ ʀys/voҗl {Ƞ VʸH:j vDtjjN{Rקl^r| r|;?H>XEms' 7e`T}9*{J ФTNT` ;5vD^g0 k a0,̧7w9iԮƛ4e{=M`V󠅒I*Ȁ L QNizY &20 pqz [n ۊkf <\J=~͋) M >;vtzzJ׌TPh@f QVG`eҶ] -k .oP m]0ھb*sI;sƈcY bl\Л,pڻLɫe>@el(0M í˾M̀ ; a1) ʐH؋;wK ـI=PkZuz}bȚבʧ1P3.zP [ h{8Nk>rIɽه6; KՇe`lzam[ښ'>[;}jqDs~P :~矐D.˃^bdʠέX9>W@zN Kgݱ}a K=h^pPppf53Dw 0a=+kٮ>mps ڿZ~J:;TZ.^樮o^{ @cz'ξLκuˣPrKI{smI}sFCOM OO]4k֯( iگ=Pz7nڴmAn22dW4DB!=2Dĉ3j$Ƃ2b ;ĜYsozl~:IKiW0<.RQU6>\U>e_Eicr(O>ӮE#Z/"Ge,GJ\K :LjcD>{c U}QWc5BM 1z`׀M*qJ@օnGcY풡mKLj뮕e(dp4 2ʝ r&P&SÔ&}!>P5bRcj) `a fMup N`\j ⯚Od|zYSd :쪃. ʕy&Fr`!i*'hsr>b>UkQC%ku;)3 b(KJ}٧fPi -|2 0RaAނ2- lGJ%!B:Qi "B(03׊a;cle r2%H)J@1b6 BAUR=[2>@LEn \S ȥ:ϹG!XYB d ,Ұnrb* _S+fD0FABETl z0\xEA@Y⹍wMM1,hqó12V[z8ANІ*DHbњD*@qx6,6=Q}0g|XQ&mՀ A1quCl4p66t[ ?!AA ^K⃓OBHR>ʐD'rLGUK2cG^zba*&oCSv 'M@ rx׃4Y/Q]dвFs)% ӒG%T2D>ȀQas{J]s:E"`(D (jP5=q*@q4{G4NISXnA!S'OkzS:򜒤΋ {3B<;`G>Q*tQrjc ::X^$jeX4NP@/3@k E?iؚ~cFeC Mr4U8)U ot {EDxQ-HxO'f`WMEB}|Fj>x^ZBQTT÷ uI!ٚ!' .gv\KNrO|L LPvyY$V*N) {"@g"\*Q}Z IP540-ȓY%U^nܠCyJrY1oq;}ólȍ%nZخfb.D$1Hh #`4hBm&rdǾz&b(y'!FՖ\km[uWb٫V:hLXctK2ܰ-IL ^H|TxYC; M)%*ÑCR0[UPb|i/IsZ(VlAAԊ,<0tȢ6` X*gHNpXm{ٝ`gP;0)&ϒgnS$xY垖7In1T;rA^&[z% \]dR[0%b Ƴ3_|mSʠp̃ D#<.}@zC ]4frSR* b͈=#3;.ox7CBe+f'iOS4RZd\` |FO4 FYDpD>%"D'1u^7L`fa a}a ;> +*:%8n8TP%`%X;iS1#/|i(P0( 0(Y9`;>Pb CYY5a24pܐ ᨘy."4 @@p%p80x@@|`nBA1jAÂ|R' *;`xy7йh hh +0#2(?8@As? <Ո?Q}`ȑ hwp@#h6F c˄fB/BZH6$c1,A<2xp>*99@WZ *H k$m?)JE$=8eZ-~?Q21ԣ)7p'DF2(k %f. C6K 3JكA0)A9Xb%?İF%bx "}~{İ-AٓȀ p#p<0EeTQ]%x86=8R;/VZ@a'{H*DWGK U,MsDb 3,)9} ܺ)\Zȇg#{PdT)T0ه/PRx5W1RS'<((9;r?ԝ"Q(JlQ'ѭL胰u֌[8 8Pύ33{h[}TVJ'Q»}(0<+կSTUmW9pܾdU\ C4(({X>QQA6Xk `V.¶#'!˾[K4aכA- y=\mTU9ْۖe]]zS٦;%d]_5O8u2̇:3,*xO&׾;# Z@jh^ @b\Z Z <&Ƽa1oٛBu_AQT<9] /_ k 耎m+ÁP'xo b h\1 85 24 N)\>8]eʹ6*jEQrJJi|xK6U}楒1W-c=(eZcNv7o{>_U+TThIDE,h$QKn0$s: V@ q1΋3*Ԟtj(}J! *n-R@ I`c2W~ }^}>dU_c;6ϴu Z0d3 NFFRxlY$B02C)F}IU^ E;#pLȇec@8X'HF>62[l?M gГ#I0k˗\2qeMW o\d||ZB OQo=HE\ia(Q *1?tه2p+erS#cΠ^̳!w؃'HaU UdsӤm;_'@|JکB/Sє%ƀ:>xrh tg.thi,se,;Ԙ^aSYWEZLVn6QȸųfƇ-tc;"!)D4t6t >왖{(IFc`- `Rq׋ շ|6U&WY'pvZBX9G"a|pCk,ZDSfS'})C20E P @\2 ZTE2k:Y"=.\ K#CF.ab &_OdfaG 3n|`fG$ؑnTyPE2LpSF8ƂZ6 Dnԩ'(G XX"UhL#CU(MUTMTX17Ft" { d z Y$j!Ǔ ^.C?'$Qš`@-xԂB-瘘0Yܔ KfF̉HyaJ!jDhj/UK_W;T\J0תѪ^ L-$iQqaa~cR,}hfh>cd!"=kn$LUZ/U1=X4Ӏ4s"q:Tb pױUBR({9KM:P cNބ hsЦIVD>-&)g߼AD>ps2=GcUctB6R71ȁ\(հ3NvzE1 HpOp>%pG-J< r@67% cB 4|)6 @Dj>qACR<yBH5vOgYtJ,wcCjQ4Kvtq `_` ˭((J1HbRD7:f"|?I__ n@fK[T\*Wy$ީY:v  \ }d -*$nxS:3娍W2;ŦZ&ZPӗ0j]BTU<HnȘιR̒ZKP0>&ܶbq܆5~+puݲii`/z]ӮQR^yMU\@;RR rLK,X܀Jw9']žn!uUUjTkY/NXϺ?Ja,Na/pnju em~n㫹i 6,JWuϒBQqǯ\LZ$`~"u?apqsݑ>,2 Bt)z Y7`_lXmLMݙZm_BpC>A5LXVDhTğ*ߑ F)_ߧ}Zٕ]B-PS ֏I7=QĬ1шTCybIv0:CRC jY 6[X } 䁐XNnuS a)D!0ah)UATTq@ȁ0CVğ$̟bݿ塕 כ^baNedߏ5 7Ơ)bxy@%%r@B49$TecW(_)bG歕ZǨްVq 8E\bPb DE5^RV@!4 09Xb$V7vRb&_2#:ܨ cEH9齌-P֝d ĕl P`@"2AN'8`x!f@.4@.`6FrdGI_z8Z*^̯U*Lݝc@xd̗ dWhDHE'h%%0^0!a VNؑW}UnXY9ZfZ@ MeDVt6%b"cS j5 HdURfVieHtZa vYomiv^aZ` A>CvA d@LT.Cgu:@' A.PTŽsN.fGFhdfjg`睦H %mm/FpDrl3`\N1G4^PuJȀh;s¨4uADNc5wgH7e*t` 2۶y[cS-@D0\Mwfg6r+Xdw7xs5AYw5f5J+4h5fsrT1wjsAtDo6J'wPxU 7YÈ  *ԂTptweg8gv ,76T)k77wr87yRyߵ?$s.Bwx9pyu\r˜#yx_vfoEA)R6v=y츒Եgl;Ρ g:g_6f:s:c^+=I:!׸ yuiT'7oegW;i8Ƹux8;D:{4k{7Gxwz+B.;;Ck7cC#;4\{rǻg>x#|]uwc9<|3|BK':>C3υ;ꛊxD;;w>??@7:B8S?=Duz#䂮KP.$4;w?@)1  = F8bE1fԸicGAQCxE #aƔ9fM7ZRo:hQ2ˣOF5)%@fպkGsٕlY\pzm[8ƕ;nݨ! ,Dž؉^a>ޓFl ( hVk)"ENh{ Hrّ5\9Vmi g^)+[t8fLU^|޸/Herq2IڮSox'()tL(4oJ(ghyx4WX0+{zTyתU=X76Xw)x7X:Xui{6WsxyޗV0}|4:ԓ[xxTB~׬ H*\ȰÆ7 ŋ3jȱNJ +ɓ(SLy~PQ\I͛8/gKWr Jǖ`LPJR)0_NʵW úǧȗ]Vaıc{"%Bi۵)`EkOS<]8gK[",[w=l̹sBVGZ'Ú:̺5Ɛq޲,[,5]ǵ#)S$m=:D+pS[BVmN)|nV9tFH0deKq{\«3Zu| mW`Rlğ- F"_4fJAw+GabQ7RlpY00rX xt+SXV|)ȶn -'gXԒ}\pAշ O˔dB_p~ܓ툤\<F|9 _\@xqq& 7ǔrƗiO$tV҂o*jCubcLywB/ O vie"zq-[XQ\cKcԷ甄f#`ڷ:V_Ć{g2l< -WKb?ٗ\?RXG^Kn6ŲKحhZ8rj~:n~g /ʳ!8i{h YJ~ C$3 ia2Z)lB0-Hcn1Gm e+°-z K>w"P_b\i0K$]E-҆vk sաp,?+[\ isyˤY{=ѲpC\6|g{`K3p&W]*outXF:k3ʔJ*?ٸ\Vj۶O!ƣbLɴ|ӫ׭=oBp(ևn: +no;d>bZ4-P/ x@)*: gp|d)2%|ԣ0֦IJ/\p g/`9 :ZFGr$qVҜEq/08 +g0?8^)hJӖJh/:JxxG gۣD`Z70SI dG*1YR[ )NQibBAZɯPPY21HG`puߘê d@ 2`ZcA%}"౉ A?W̢s?mAil4p Xs [hU2@GIX3;'4FE yU 0 1Ր01p &AEh*WT=qt8삌Kg, ,؆ ~`vhC(C &0N.fso\cxPuFUqB8[F-/y&@ahc :(|]lkAp\ ?(y\37ȸ8߰r 1w napAn6t ~U7Nҗp0.دdSnI2`8\"gځ;ѫ x!ڱs!MӌH#ze{iZG~&~u\_'۞ՓBnAy 0~Cg* t^B*/ԣfj%*Ars QQwqPqbd/ vuz9w"HeG stw}{0P: P 6q? w{T c s9GnLp|MvO}?~@ GPh4b0[Pgp^ ˀ'|S0Jm"ش}f@-eMJh[wsMdozn@ ZX~X%crEPJlw`J : 0G np{tSs @wV z{w0Xs0? sVLu0 ԸvX%0X|EÐYM˜y Vv^ ::ptg\_@ _`mH@t $Xmv!hԸרz0bd]Sv@P?@ oxYPt9`)8ƈ^|qhUu zvhXVezLYS@%wp( ^ 9(p0H8mw:]Wx(`"pl _ gbi VɆ?Q+R Е0 ep6hSp{mpg_@ Ő#CIHڸztO*DSBd9iRar !퐙+ Ж& 0!B7i5 02 n'BM S $qؕi.Ix9TFǝ 4.e ɗ{8G'PcXvMxV"PTlX_y91Y& ѤlPضwB#8B(yy؅l$Z&np.q\ 2{PR=*vУ+ْyr°/(N@YSٚmZJ~"aZGЄ&gq0lS&^O9xɧ.=. e MGpPפN q)Cyꐩ#Xm5e\Ʉ.txz.Ч ؒ(ɖ&hqxf 9鬕 :wI 0@ʉv$٭g`v e`q])Sg-:hG-+j 9Nng%@W&@1Úڬz{Y +`v$\︕. v-qڮ,Y$`iӔ`HY1Wp9C;Sָ xiY\^p w+"Pvp -ۧ.ْxi_ ^wHvgRF[_ûۅ YӤ&ʧZ;.md+)p cV' PЈYҐ T:F+[ vahdɕ˪+ LЛwʶ~z+)gsjڭ)5y rD9].I۴]x9vٜ:'|(6{iǰmb;V&` FMUiY"IˉÓڿ׺K+mgO+4|ڭ& |~<+u=.I.KTlg&Yokѩ `A]@9Ȱ]S{|J~ v! ȱ~,+*{, RL۫X <3ʺ]Dȉ{ʭ|` q9M | \0~TV, vy& \ͼ{V@P?) @0Bم眗S #ʉf#jy!Ȣ+g`+yQ Tltlݳ& `+BL<]~Æz䗙9.]%`iۧ ˲X{ +'g¼2 -7LʩP F e`~H˪g~,r,l89 p i 9 7 ɩ2WM P -#x,lb=1ٵ+ X{g@ ^$Y_h M!ˀQVjvU|S w(=]@|m :* ,Ю-l@TѬqDԕD @ y1<ʕz\~'\+ٻSP6:J)Y}װ ۲ z}ˆ$ ؗ7݌9ㆍ}4,)mz]-+e0)t(8zQ +3+-iP!P O-,Vj9|jy) 'H~=ǡ۱i\kq}گЧڠ{=ю)SAD T M M}< >~J˷|l|ݍxs=R~Z"k 4_wL2󁚀ஏ};i g/V]ٵXg}y~ڑ`Ian/ 9] ! NMYΕ`xZ',Һ 옻 V^8ؒ<׎ v lŨAp 2O YOŐ2~ 8X ΅ ڸ nO*io%| PIQB^Dӄ,Mg- RHԲxS;"DtʑcY1m86"a$РLQwPRMaY2S8s$˼NCe8fGX;R.2aܸuZ{W^rah#L?fxTtQSǍ]R9IMn(S6}-jTkJQ:2rmXE ; ;eՊmV6vW|߻Z),1nz#Y|.L#ͳHX b0C M@mH &M` tcB;;D6~{+b-)Qe,1G&H,/8І 1le颓.jM?:I42)IeŌ0X6CE 8|7svƭp BQJ*9&-,H$ ϯ[9&K[G$,.~d`3;pL4˜j80?gaA r#b'7MFEc8 IuxnQtH%”+H;TS"[O.aKV5:䤖gͺ4PL}M1m0;fy[}:Нz /th~c6V3x-+W_}TK 6/I69Yxk3c,Ì.<%{c= ా*PB8`& \X/P1s]8 ~^HXxqJ,\v@V.`|QՒÁ&1,H2DXJj ! $p3LQ\8ED\dhN[0z_˘¾bT_6`%R"AmЬI@)Ħ6{QȘKY e i#L6!rc@yfAA JT;%(!Dkh<4GIK(U ;d`G;zF6YA [?*H00=d-HF?$ ЙtC2Nņ%5w`*SڸQ%S֣\E-1E#ϊeݑ0/mHA0ɔ+@/ThQ2 h|0#d,ýmʛ QLVGmz'{Wg?1DEASmkԩ%TRBJ H#Or&j :Lꑏʈ,1ҀIMUM3UofiYR)| b9~O<;Y z4y B0WEq!+xCP9-u5X℩4n4LT蠮A&1jiW' !"ifh@%{锟)3o=k!ӓmEh2U*lT[ƕmú+a9lm]N ˻L'pNE7We^PN'0=! iҁDֶJXҝ`GhG#/7s\0]UuZJ=K}Cx,x=W^*&lvm2?,TpU~F|嶹_zSbF=[iA.ڋYg EիFp,ws8d!Aؒ_ Xu |%.IPi28֐~DyY{4\-= pMӼP),'M[׌ujjQ aV- Ea  >&WI k /};F =r.hN[6m%`Ad:o'(!TUm=U)r9BEOE.Qo13Á 1!9r=Bꅘ 9;qiÈ=F*iC4Hp>; )7pӶ!Z2[-ʨȉЁϩ-K07Q F51Y3E*4rРڋxp Bj@|+ 6a+14*Ίyq3r>{H-K3<h8eRvQv8{1#;5]*(D#%qFY[.@W)+؂캈j&0t/C2 ? 74 p*C˺>PB(ryNrʾKAy'J(Lʁ؊J9<}I#FH#q=TD%F`EB\/,!eh’ћ@c!z>+8rB F#,yFp4NwL8 σ0T?W=TYFY亅\ ڃ\En"^01CʇIy!Yx jKx0rnoFzI"!k|5(XɁI Z`jAaX2{B|EB+`VJ*/&Bb@`2Лᣤ384wx28@I++K+Jy@>żId( EH aP 3 56L >oNKKIIX|nt;Q-˅Q> Na&&+L T1b8)GTӝy"ыYb=^,e@ 3 R @;5-:]6Cm1*8>N;I YLQHm]*'1DE'9[tX-]NXK  A|ɗ' # h Q^J hVL=T-\g3Hw.8KeMAh}~:;!j cEQzJÍ&*[\imإIGaꚂD.i=MTa=tPnmcnSfLq)[D[؁ۓ.I%'$aepr-Xt瞏-l=پu3t:ƍVUj_˕mQ;!|~Ifn! brK -Ћ1)Dȶ І2l7LEZot)l[iC0Yn"˽uj/&X.\5l 0o E?or0Dѿ>!'rB\6M,ș3[F۴hs:r)ݐUdKV֋+hÂ9p6p,y|CڕVE@ɞȀP0+^qFtl`f2t`9PHZ2ЙcL8̡hFbaL ^$;hE r#. 2_LUsb?Gvx [ђ`!_N4@2Xo1XNZsFH7J _X;owSR ":x)xE O&8ZTs '/+Z4Ws13 `UVUrbUlew0+z@|%7zl$!@>-7I_$&HAؗWYֿeh t'/`J V)`dp N󿧝'Ek?H2Q勴;q/[6cq?z"szx y(m$F *;LD9s z\Bh:ic9# )L EWZi鲥 _f/*3.勶9&^m D[/ 24tԨRRZF|],kfuWj ]o`աw/`%)LP9xg<!UDAː+-#DȌ;q4(d&Lqc;WSic7j%̙8܄iEsfK`@N$*nZ>hfҤiA׮h&w/A a#c$`,Q0Oe a AxZCABGp%`Ydm-lQ7Ѩ=qQO=?n\Q%wq9O&Q_sLMZxa WW!mjFZ]tB7}C},} !(mjV]P:ܩ]<)';!ŕS$>*!3hJ%aALS=\PB0ȒiÅ'$d?2|3QCt$]}|tlKJ{UhZ ?Z@#bd`.AZ^!MH)dZujP^ZLA% #7#v joq+c9ZQ8M?5lOͩݔA2l3ΙKu2 Z_- 4]M L,]D.կ_}ua/sYfcSXIm l8Gi=,";6(n:?X-XeН:` OP^dJsXJɰ5){bT=aq{f:u?  pI]x` .AAk BlwBhmY!!A0c7S(rH@HP/CA6sRƠ &%UАEu:21g\`c¸ P@( =`Cm1AXli!" c)C^2WxcrG$'8|A˚JiɩL~J8e[ p!եЅjBBP W1#Hkf@g+ 9!\`7!#at81A:bxʳ)x6>m,rd b4tjǤ2*ZQȘmL[zdd6 RBja!4}CdAnu*Sxǟ'ft 0:芃Zݺ5;>ݮ/~he3 2m8iUm$X~WY<$p }Ƒ9b G)$Og_aY#"P+h+jQ~aVBE ҡ+iY苼nJTA9p ėL#_ OeFJ` G:{ 'j"08 R5*ge!] tנm,ҺS$k h#r(hrn}eB(0+lêi@^x58> ƛ]_.ƽdax!Ԡ Kfdq] KM;{.L`i~p eʐvHqu/z.wЃrhȅI2iS)MA(8ugNf  WԠ.ʗOJ hKZ")`݉fb*QFj!FqLQ}1*HjW: /|܎A6A}e9hH!aCЂ{tK]jyp{Ƃ7[Kל0qPb XeC dRCUiDcH0n+h t0S#<0 QĐ8(1xBY>b|a7ÿMLY ; ,;2GGe-Xxaֶd1y~z{ULu*Xzu6N-yG>Smi@=68ݦЂ--4=2: \D&ݚ *0e դ LtڰY\~`<=@ xdqhC$NH)d)=J^< L$+=_62bS8Q)bA=MM _ 1]1~ݡM S/с2| MZ7:@J-8L]%++POc ͢bp" % W BlYũ b: \HKj-B7r7fme#A` 12ڗg vbfM֭ H AA9A@gH>8 m焕AoP'A.S@?tsC`ԁP?Ձ )!8!BC 'zr>@*׭d*Q% @_S\A,**hU)-r.g&)\@Ǎ`tDv 1f$a*6+*ș`ޣ2~zaQʩ>&jC_( AgŖ1A2¢,<\i諱/ۦveYlP,acrW%diiuܬR,|**l (r^*(R^`V)r!%qTieFmdDB!(WF֎dz9)l΢mPm]N ے_Ri#ݧdeOlaf',ަ&.p",'w *\@]R) mb5Ƈcnn*ZE VZTw @b+.?A_/f/n/vk V60*$&辯uڭg'A2B*o\/62poo )&*l̀, n0o0-ٖ0o'?2f?c~,*|gAko/"q)njno$(qC .hw0O1 P$>.V+R(@0)"m.#(`+؉4HJn%q].1W-S'2#3*2nq" Hn2^%r:±. 11,ʲ4 W҃ms37s8s: 0 ./(q rApA+E-$#D^0ѭ. .nsՂJ?s$FD{E LEh G%H'QG!B:?0L_VJ rb<* <Õ$+tRfI358.U's2_1]57`4uF.-8:5Z+(bM[5S1u)ǰf(sFϴAHDNw--bZ5n<.5e2 k#r2ww6V_LߴMJfur:.d?ƶbC6mm6nKuowVc5_oq;3gX3Vw6[Wׇ^7vg7"tU2r_pó~'wL/SlSz#uw|(uǰL }7t5AQ -wHE6/8s7ô~Vw~K8+hk x{xttM8Co6O6WNo16A |xjҏ{>o˴cD?ȫk”b_bx@w^j*yphϣb!၃h"4*hx4qyqoup۴٣ 68K7HjC6Wzkx d=:tC6)b @zU9xtwy#Af:xè<{;hxc?szABKzc/z|ZS::,9a7ǹt55/<\;MlWg<) ?4 ȱ<+AKk[|Uye-q̓|H<:uZ6-Δê'm/}^AΥ|t  ƒ7| [ʫ倣}k==׽2ϷDdyOR|OჽG8lޓzSЯk=+A|}/s0{K|>G>)+K>'[8AK}_ [ 0Akxиˣ@GH{o>ӽoQWw{c&@#LAg%$! QȏDW7eԸcGA9dI'QLy/a!U0!II\4#^hQG&UeL/Yˆ?]\kW_Ot™06$e'`ƕ;X̉"MV+{Kpat>]kS`ONk:pe˗&mMKsiӧ?ji* tPԷqNp,׋cKvvZs'WN_h[Zk/׾] TƩ>ϗle͝}{#/D}q^Yg{Sm~NB!d zE&:3 4faDt(2=Y@a(j/Dղ LCIQ)άB-ì&HJ.T&5q@1]dSCQ9,MƟOD&? sBMÀ! , I؈J5_ޔfߗA{7XuY[ Utiz3WcX47VtZg8vj}pQ|x~xsZYwy֖ت H*\ȰaBMJHŋ3jqlEHɓ(ShƏ#UʜIMiț@ 1 .u$ʴS"4ӫXvhOtfٳ5N:IEKnSMu-\ LsO}W[?(L oةS!E~plFgŦS^h4s#e]lYFh'?Riyg(MݨK'ΖG h9?fsȦ)J5o͌'v""ӨA=)%[W̖\Wyz߄Ai u["V)R:=HQ"Q'fցf~Ԙ߉"@{Eg=a[vu <ȕ-DXEv}X[^s&Wf)gQm9֗HzԘIUc>Gďs&:G h .Acc[W(y/XiBȑR`bI XV9;P ǥAJ?|amB[~EϚIyv;9x؏ihS)nu):G)OՎKi-hoODHa䌧: I){`ցƪ^GL>ן k"ce`3JϬ<.^9*5F^Fh&m0ꉎLY[IfvH)=kxpK~kFb*"sѡoi2x~Z-s|uO/I yDH9z8ʦ+kF?D,(;ek[ӑA8`/Yo*?`)v1(b)[83XSK8Φ Ͻp󪝳!f?6\09&/2#E-8G(ĕQl ` X[? 6%1PL9D E@K_6?ةCF; 8{0gQY1D\xgC"A 9súAq^20QI <̠#,%:XbGe@4\`Mj0@X1f}f"ؑx0,ܙ!I-z"^=pSƹW~!v|t1Fj!d\xQrۀ8F{6T|L %\4ĎƋ!pnhf˦kt h)dEVT#hFчpF1M lc2Dxӕg?x-Acx J7mreE !zT&<]c fvd``G bJf>XY(rr4[!6#!%x@0GKM!G]PW9Cg$$3A&0W59b@1<6[LK~x3 [$;²X3(SC)1:+eP ֯pp%HtLs^JI(q_"̀nadrd5LPղl"qbc:k>b-#s],t0LÕf HDLm~3?'k8)d+A7VR!N[v0{nbj7$i=i1-' >X;?jm9`늣RuBg?N lQYbpЩQz^6p6qA[)̬)0WM[v`hƹbD%r"kxW=e+ 'A? b#.VW[ ̋t NFwd ǖ)s " ?FҢa((rYnLÿC7f!s֛ؑB` `y;xG7ZlE03 vaR!xd`ca ~=Hk{X\jg,83AأnV}@u~Z 7y@v/mǀy10з `ac`VxUzw[fgD'e  l0հ@Qa6b4(f l5 5kUb]PXN KX r}] }E],3`O+dc d!RAV5l3 JX @f cDaKNxx~XF51 PT'7OzOFݐtc0lN3gv0EFE} cfqDODCDP ȉI/kXpp0c aGHIU>PxaVVjTepPx jjaP H lp'MPe1 !x~^%P@>~kRhe~h[x0IKji0\6hq;ـ p E 7(fYp$ 0fW l6&y0Qi 30Lt1 H6: pp U(1P-@m璝h燆y'is0(ʐi3`UpEc0ky^> yc)yr D̉g[ Ac>PuЙ-8Ș s3 IE0]М- @Q ) JrI;W8p \g`uti]0yQ09֌U biV3p o٠B% t:sڠr:jt6pHWaRa]0ʘ+zQ 6h0lj{%z7P%P sZ ꪦI*)Y3`uHQ.;ՠWsȊ86Z0rw0fD+'L˴ZoY e']h0Z03 nsuۚ@LPeh 2cpkj@YjGu.0hۼs Ș5 a v, jcc ;Xpkˤ0еۼZ XعKq۬kvx"7!7 p : )li+7Ĉu-MH8.vr6p{6˽sнl08KtPy;I+̪{ǹXXdV;wGl.x OҪSE =:k)µ[ *bl;70t.kH,X|۬묇`6\L9"|Q+bl(̣ii7XȤ\ ͊%J<Ь5*  Ž ̦9 ϬϜ։\몥*,7+̬]-ֳw F!,\m, i0 \y9.0U ol j <8"b un{ō4!/2=]pB8]*s[ۼ]c謘 Km'tQ,] zi`4 |mdY 6T ͋3PчM ]1dDy!rY$ة#ҏ‡뻭: r>,-YZ H\\:/o 67 뫾[Iͭ\ViޡXIY -Fz(z`u+{>ՅVL0KL(ܛ _ 0۬ aض,؅YRmi]" :^ia fk <^iխK ppݩͱP -:nL޶|Q _QpS7 Ld1P#)?iX9E}`{I8GKݛlr -^) Π }4=rڪ\H;@iUk"^1큘 `ϗ-x)LjRtM[)nL7.ȵ‚z+E qQP 鹛n؞輥M>HmB L I衠 !E~:6΄"Hrl.Jhwޘ*Ǔع,zS.S ^!>LL˴j'ӮZcl7n.zPM}W U*N(Wh/M~'uR;bdY XР'/֩ܟmnu0zl㛮بE4 ˆIp+Ҵf3!R@Z~WY̴+ɜܔ|`s'Y%ĸh%Z 체?r˶՟ m?^dXYqCPB qB8En8'cԩ1"1|2 v$ beQ`eL̨&^0f,[6@}Fa3CR]t@ETU^z0ݺQBXe_VZmݾə*&L4ԧ d,!7BFȌ!$E; xʝcqzNqe KsgvK\&< *0hɋp_԰*5 XE:aw:[~n+4`*Q` eh,A:k7izZai 3ۂC-xÌ7 0c9L1a6@d"bfQ6t&nfP[/釐,ĉB!j"ȿK\aݡɖ¤΄ct7Xx U- fZF 94iuTFR:(HN'i_$= #<(0aQA VdC `0 0INR 6)dGZe&2aveN ޟ\֭iD ZB :(/``$jA(ex?3|f9K)/QB#1f p/AsҚ9FBPE-Zc&o7* qZ)U8MPX.;Lw4 3ʓ]8$1pw% ^Oϲ7`<:R8aY[HITr;}(X!O*\bCh{;ra#wHIɵCrN֭XAu3Qإ7{=5~60ܤ'K*=jnֵ.މbAe3hrЮ :wuSr0cS\1y[9<E#)9a='E(N᭎kaCC0MCX-%%+7PveqM 9!u[J\Z`R_ .Y%Frڵc  XK(btk_=r-)`{\'}xFA0M:9)uT) aD)J~ OsSʱۤVEKWOm6 H8fPdC9r5Zjn+A^ctّ6bB̊rdK _T?*x;Kx3U%8D$AcRUtЮ[[G@%S o=Pŗ2q>;h2M#MY. ;? 8X?33r)J/RZ{:%5x3rwZKjXI[CsS 9IߛHP(l(1sр>0bA"J}31YЁ),R /ϣ'y#w øhc*d;*ԭ?  lh&0lnC8lgp5Ӳɩ@,.&b"PA&?!ЄJ <_M,_"!gADXq b6YDxS+N̐ RR l jVtt#aCYL1PЫ ^JhVYPAԁA"Ɗ<)A>x%%FD I8 fA0tl!; ů@1 3 < cy^+@XR'&Z?Y:0V 䃌>Y΋Ȏ~j8v`jDoS) ;lx/Jx.腾j$Q@xɫ[. {5d,`J>0MVzhM>lK)3O8@d =q̬(@HũXšDR7ɂ(*Oťc=g@hHK*y@ٜAJ"X*"(1ũX0 ]h- )x4̟D{|#"z.Z'E.U /r  1ݓ47M3.ͱ 5 qZEH y5''p!Rj֬?όtVG}TB"%Eo9$o#@ @-ѡLX0+UN0 ժ ֮<_5p֔<"*Rbw*zp%0rkNB4ˠ 9 w lU+^(7-CȚ.U0;xQ*ʮ@X_2T1L>eb 7,? ?UϽzi@@ <8%9(K RAC,,>p) A8-ЍeeXj`$ $Ƭ1@`Us;xJiZM-ʫCd4bE(_V8 p!\Vf)A_aȐ! 4h1`{e IP{XR Š|q(>=CM?;Sԇ7@Zq,ZCmMB}CMF_ϓ=t?CqKMhs19pi4/bPl!CyYsCc^ﻎ 9Zx @˫Ȁ v0TDՁ͵ɲFf/TyZ[ , ,5q8ezyXVt cŖM)M8ecu>7@9<wx Jx_(M8dՁ=5>ďZ*ա)YM:xO@.HpZz{X"q)qx[RWe04n,$azvpf~<difj>V(?fIz,")K Lx@"XqX(lx =Yh7ֲ9hL2Qc49-.d9`@uAfM<Mg p IB,;i&BJ0x  u-VWkRM/4k8Vʛh5Yό=Pv-_kH &#$ߋ pha˙tQ0,ߘk"QekiP3ڵoYSN窤,P"`kETjnnV D[f>^{썤Hء-b-0IVjIZ2YRXL|m @ :q=^mu3ZSb~Ock.j~M`n>Y<-3zºnpof!xU K4WR I _j 1K߀K3(7H3,!AB(aCV!'Jzx.ʳQ 0w=PypYtQ u$r'3^"7ސ: eu[]peX_$ 89r_010ni>l_?K\GϠjj4O Q{I[.BbA@HXG/ 1ā/ !'<^y ܝəlm7mTk]&\čcpv0mvӄM ׄBヘ6T>BK`o!ɿ{z9jxC?`?HA՜/w(xxPEx03v#qwsEh>J0fMH_xpy-F6nhTc,RC(CyjzheG?Bi CEX|rHMNxw76}\^N+}RR : 5<ӨSG9JuQG=X!Zr.[A(L =hkF ~׏?EU/[[^L3 ̳@%bd0$ʒECg}oTg+d0*+JԸ1<R:*2d!qAs*S t=RGΛ/$^AVp+z f` mVlʱ3] d-@!䕍&x DZb5LdR0fYT pܐj8QEl2ыdđM:`o[gp:P(ǜNDtD EDQI ]NAȁu(u s^zqVtaVV"d@9z@qK깧a dX1ae :0Ze)rZj+dp2l*EXBZ&9rq|,$LܕA9]tΥADA)Ӭ)%TI^{[a~?5'l:}YbfY, (fL p؍2e&ʘ*DGA RWJ 9$5޺kPBFv:$GROɀluC\"Yfןs)gJ@뮡=A"`J'`0fj*LpGmpV)9kB8&uܭ&y$% xǮVشE TA;k1HV'Й9+Gʮg,0L3* l*v +\:&|4²G7dexŮ%]u3˼CǑS38?TK )|/XETJ郢!3z<@l/5ԉP`*v\+I;hT&`l\Mmj]7Ly[ܔBTo 6H18џ E;$7'ͯD6.A5(1@<4Ai@>V/x$Py@~qvuM8#" 1H1 7wD7zDNdp0=>0aqqT.}hI"萺8(Go$(('cx;`w)8 ¨T 'p/sǜ)'Rwэ'sWH = ppQ~haf]oH9,4"d_@0t',Yz^Ԛ.5AbcC0=Il^2wc+ VqAf,(5u-VgNJV\:OsCPQ/'S20/bʀc,hiǩdCE 1HkL$-[+”e)eЋh-09fsjJ[ws(%*"\lV!X:5%}ll5,AAE2cc^x$bԘ pZ1H8_ou1`Vwr{kE!@51YO4d'-U1rvdt`. 5 u"Ё"k]#ZBTCzg"S2pbS+`Go=pךM]]9fH^E h!b^CEWlkkvjS;_, *.l8aJՊ)"W KX\N a A{T}WUiZ@=U,r1nP莝V3{r,Tk@%YC` gdT>"VA s3apA2` 5.6-bA d c7e C6P~ɡ"k^|uh^X(8eCLMV.ROS25r50J{nl@vδu+sm<(ؚszQ`Zu1,A&VDGctz<ƅDzEA)ΩU84;&w2pnt; ʰ(L]☵yo\:R Ģ`?{<}NveZ1> GRK!XD4ʧ36"(c>@ޠ'I$:lRTE/6]L*~LחJ=589 O9d[g;9v!u;(D18|7diR8sf}m2㝊liG;c^-i=x&bX:i3zkarELwO ʣF}mȿ;^əĂCR%9k򨐡ѴQA1@ l0 9_iB@W Ԇ*0 )읖׿\\}BFvyPM YaH*@P ^6ڥ t"8C! eXڔ,t\ԵIk-IŭLE}¢`2I? h@ 3ƈԘB֑\%!u5d9%IaY 1 ( ɭ@Y@ŀO")bt@A]68[߿ !_)d/JB]AI=55bO6Zub@9C#G ;`.e /%XMUXMPH#Jk!dFB.dEB [mA8Eլ YF!k4.Iӿ^M?UdaJ1 N$OjQޖ3(R#-fI ;[J2`Z L lXXtZBb p HѾ9YC¿т<"Ie,%_Jf!2O?0U)f A25m<&oVDQYŬ͚RjHqm#eTA)daH TlB)HkD?aծ [Efo*T8jCæ@$@FesB'5Dy%௭0&tlsVNZ@JB5gJzfBgҧ}fggNhht:%dIeme_!AE)xa,}т8h ,fYBfhVDca6']n-e-& 6-!k%1^hn-Dˈehbk<)~vr&d*dt [fP|aZ[ 4*V*ؔ%ɩVCÝR9B)ÑW~._,4'lkeHz>LV)lB^[Bj*7"鿁mjJq rf+mB6*¬bA?(*cw2kh<_;BO +[fn2+6cGrkg~jy [s_iҁ32l93G$ %VkNkjVllB)Th.6)pe@lҫd"첚6FCl,em6xrz^e?T Ev f'%ӎ,!k"PL-զ,ZkضlݬΪ:þl6pfܚ;oэ .-ݴY-rj~m.' n:j4n)聭IvfkCt ;kJ+6kAbr.؂nkNNoΪ)ev'C&zl%VO.NH.nfm.N/] mO.O湖 C`F0"Up~fPDƂ-clB*;2mBF&Wrm0 #ήCE-}V  PU3qʰopH n;A{T@} J G1mARz6_p/T2,~ )Iٖ¬O|tS1RJ1!;]I2:ξf6DBO5)$G߱00.O'r 3-p"D*1&s:a,$).02 łq[5q*IF3/8B/93*r":Q5pE[6tOC$ X":B'ڕuY/g>S[?3h]u+נ9I!*ě <4`nOb3bZKS/CBBIB;-j߀fo6g[6n6 K$tA-Jw֝9*7C6ssFN Dnpuކqϡ0svETCtwAV\+5]uY6Bl k^Hw Z{gw;cfysD?@Vc2+n7kz76mTjo!kXoBv_oqOevx)Z$;h\8XuwӲ8xE6bkAi sqK3Áysk*8B=j㵏x6Pʐx;0WB|,)dE$x9 #B۹} Ђu9jc8J6O9BomJ}q x A9yG2b929z9Zj9H9Ӻ4v2y9;WĢB7*s#Bߧ젗u7W;[bw";y+0Cu_;-rw;['G[v];x_oujk{+|`k5(Sc7*;ħzE`x dG;{<<|'K¡<#)[e3:o|!O:sw@}gC:;-}{JC=Wǒ?)cʜIfE\$ɹn@H@ cNH$ʴӡB *=^|ʵעWngRz>]6aTЩiu/uT&Av[ʷoލ!B!**/Ciw{ܦGScש۸#2)%sI= ƹG?ަ%D ߃CbN#[YC$uY%1@TuHwasU1D#*h$Mo$b=UICؠ}Jx1NyX YȒtq%#W&֘u!c\L'AP$N!؅$<i90@q1gwѦe6[ءFY=曡,AO$`oLN:T@ !Fr'5c`>iaV(`(~e%.[q}F 6kxUEi ;.!V0>u mu{ %kM+c4y,f`x@8O㉁@/n)v!0 EӪ.NM Y,3᰻u,jȖmC(ءCByP4t:à0䮞8" lv) `wV8X!=TV)Va;1Ɏ!AA@c! .Wf?ʈ(/FI qb!wC$!2Pk5-ψg<ߦUa߃c!?D3,$aRX!8KBߍo ڷ8L"&wwf"fx l\)|(Ю;s1AbX=CO6,.C ɓ=3k;E T`wWB宜`hwaS#ָ^,s ݍaӆaH6-ĞflB ;.lhOjp<2x0,xȵCO懔rDV*澴 G>Jdn;k+yփ &>Gksc8c-s&V-CqE(&ax0 cHW?\뚩+җ#C`c^v8`8  WÓ Q~yXHoڀM7%9V V):Z͹*쪫`/zv~ ڲNv :`gK4׈IJXbCp}'v\' $tHiW캥S@ZtЇ`kqȴzp; :df| rM*g&ʠ]h{lKPB@\ǘA:zk̆~z!;g `*,i*+ßLt [Z3 p/ \\D ۻ\džgI<8iH:L*jt |i7;C =qѻ@A|NxfZ-L FvPizɠxK,bL^:g{PF '1 ` u,{T؜kĨ{ي2:@fH˄\ZSp۔9zr]Ya Х׵ ']хP=+UH \ Sz틌ymT*Gv'Y0+ClCl]2+ĞVi^]Zmj {̗}Cz0L O7ה^0#NQ풘gfы ч*%hjx:?g}'PhZ>N=明1زL8 $)Q\몯xR >װiޠ )]}m^ ]^an]-iXIJvIӆȄ xLz,ÎjyU~ 黮ҟ[*.ܞ]7~/Jҷ: >^,|n`X8 `2 ZNTm &yx`+:-:ZNjg` ykn2f0O돾U ڲʇ"͉8_8d\ޙA?wGWQ\SORmi2.ϙ ',o 85xȺÈ=ENQy*늉^pp%Q?ْؾ> ٯ9%iRʗx(J ystOר(=ղ_j{dH*9.gY(τRʚ򻚻;KkPd1N DhP;j>QC8]ĘQF1"IYf$&LvH\I<-O$&fїOEizΠ0ߌ)=c-hLLlWSlk2kTxP\17ENb`q9rKvXeIRc3mԑOfYÞ/D1ɧ=ǎ֐I2=3<3װjWܸb/hAƎĖtl2&_2!>?cFhj09f8#@kɪ+8B./12\n ,; GO( %>!I|,D}>/?3򱃨d8 5c?Cz:P5ƱA.J)jx53/vp0͏Il2ZBl9M3xqP?2,P3d=,_dM-52pսx0x(h2&蠃x6l K;Q9j2CL/PFnԌ|-TM0=kcd0%.I=Mݼ*KK9WKpRf3Y#SY8!PfYEYuiN_4lybz :ү (޳TI9fЁ 3ԲJ^3TQ䂪qvJR ]U揁 Z p FEXNlK"o2#iVc&УuJ3 ΅3fy]?U;`RK-ԣM:LU\NzXk73뒐M,SDuy|x[em!"IC'}fF&~jKkT-yhqL\ eZ:!p眩Z6ؕQ\,$S }rLQmO" IB\9MNՃ e5 {hjv3{ CV,!Sa'DZC[n&Cxn1;ԔBu}ԃ643SMAAUqw)\{;y|]h,64Hr\8  81 };*ڄD$p57@1!00!tR3ĊG<xg`O h LhzD8q!>voy aHȂ$I\HkZ(ٵ9DKI>֬a,)򞢄eK "5iH+K *Zg0r`k.02I@2Y'Gx}7]紦%2D2C$Oۄ]SD%)NQp= ]mB3Q?8CkOAQQK_:Ґ:Džsatq0e+nG)^,m:{ @8 p,R4CM8-juٌGKUXDh 't% 1{IBx1^!E#E Ks}esE2֬OodO}Z Cz TRC3H;լAQU@S͠u )[f)z\t.ɝJWjk_pEr X Ժ,#n3w{`XFB*c0WF}Gi3=$Cf3t)iXx<5Icr ` S똚[a +CCڽdW*L8Qlel2X=2#[, YIq@3 (b {3M, EM-w9V@ 2Q1k,c#uJSvޏt"~zmƊa٣3~Cu2aべ0)5 LR62gA,Ѓ.WW/E,r 2WcD@'9-0aZ7,X$- >:,lƁ@hdw6X04@wN4JT| ^rҼ?p" OG9k lIDZ l˶Ĭr샎O\l+~L B:NRt)4?K޿woYL^ b0 'L_-Ǽ; @6K 3F6eyYHbֻ=`}c!MBѴM:+giQ*8N` .to/`1,qyHI0X/zb4Gڒh}(kUgGhjS*#QSG ['$E8"5. 9}ۜ}S q [@)a@KP:gy<1K "ɢJ?һC82X1+f(!ɇQ6cQ kH7 Lk>0CpW3Xpcy@ \²)@K 0?ԋc;K?:8.J ѰO 9BLBz $ ?(@>;K >xl靧*3\Cgk1g1?cc&@(^sqq!Ѵsˍ؊޺~zS`DX>'D80iB\0t>싉z%CA4LCK5:Bӳ ?J0,gli;B +˱/0ڣz\Pc87<$2Ļ&$3yHKJ0WH:D|LČT ieJJ1|*ͫ"pGLX 6 H 449$nS[Lp5q<;P6F*9뚔D`;A&?+pLJsi;(+- :HM0B0,[0pәzh$ .8(G.?.7)y3)P83 Âa[9KL Йx `4qCP>ӉEVpΑLIO :hv=BYඥbtf0WfTW+&|uHPPxqU5|!}5:J)vrP@O2sCV5ӳL}}N#>Cf YljBv93,r*[qfOv=(Zv : W˥`:\Ȱ[<ק$)])JLГ=кqpc`-%<0[N:m@dADAψ6헂I]pXW  uXM_QHߣ'ZUeU~W6Cч6Lzǰ h]G^G@pѲS%[ } `1 Qnp93""+2pV+NuH) `_Q݋ҨtZ _/ \-{hXMu, b-۲]?au LD8ڡ` 2GSHm1Ba !TǴS`|ɥz88Fu\_HZ~=!C3"0\0 |d[Z\GpK#"(B]8v:En:T4dN$#POM8Sp._H8"芮aI@ƨsaB5 uHS[ƥʨ+/ !7b<<m8emep;/uaR:%j@-kzp(lAp(BFUYdl5<.]/ m9uł><0VPPae0fhmN '\Ϣ"=ӳ (ճq`)( i?A;xW(EG&"ҮS^OD3#<O]*8_T 6,/Ev"G(-GUvph8 0xdH8ãurbIZ5idNdLRK#m1vwjb /^Ww@O88^c-I>[XtTXշ,UJ?UEӸ8\f8y1EX$3Q#?lդ>my":2Og2(聆z(`>Y2jK[qÄ vuǑtƒk5 [GZ c%HqȖpk9 M4'kel߱H!kħVDj 8뭷HJ0 qQS.W(x* ZݞD 5uX)6cP1 !qf z:kx0e$)ˀ̇(HTߖk.RNRCV`GtZkBy5F8\4ȗuGPu k t##{HOo`N mo 1W>g U)LW:xGYP*zz@*֕@њIҟiC@d( xnۄR<ɠby`8رܑ-+ !{)Aħ(6W*#vqG=al=nImƺ'?sI``AwZ7, it) vA³^ ]H07*p>p3S-)zW0a츇8YAJ{#-iyJFql~lLYyT.XRW˃1OG=d|OU.EhGE!W`C,R: "ɄJP#CB5]M=hi(MGhJqDz;RMPEYDIT\ H "vZҖ NJA jp _[[Q6q0iJR;jLʔB85gQ[bo'6i3-^+N2;Xj *8X~ąr% 9THg S֡.C87Ogs[-*{l콱IƒG2vr[պ{uQ-TiTxȳ9*RA Uݻ.N֜5N?C4.c9^@$t%5o 6M(g.6v+$u`IKs%Fvt?*49x¼?[(܍W\Iv]ФrTMv̔ |T&ޡ.lRE܍0aYm Ս! jH)oU%` V#- XѬȃ Tx9 ZLDB FuE ZVYY }J$ zm܆ȉP\>-uh99&ByXY%DaNOֱ`٠V@ a T,A@b#2F3QX3WE( i)v#әDF?_z $N‘P1YcB`c%T8jUU \GDlCG dH"sVzS#m_KG0383QT% 3Ƒ&OҞ 6AT`D$^_-JTZQ.jveq P#9e?#:% $iYY)d:@NvmcNd A(I@:@eCßbTbvT:: E܈V^`#q%WU8@g>Yh3.K[:{fqBca]:ɡ(*pE)0#0<"tm/F薁A/ X|eg~YYy[]BnF%&}lfLDDD_ZI:Ԗ@88€Jebb</6aD#Be~&?01c:Qk&Qh5TlR#i1'H] &`9<lr&0X-3mCm:og&뢓EQ#])Z:in2ƺZ,2Sanކ %YmϦeޢSZ.+?VkFBolJVDU2ﮦ 'He8g&kZ*lC=&u¦V0y﹢A:Co4I@+mxA; NZoZm*,:W0,Wo&nT< rN l m.;>-? έ@+?qDi:؋Hv c1qdpr%N$'a,nJLa.kVTj#N'+?֭/'#jp,*8o_z8ÏirV0"Hr#G3.1:cv='xEEE-@[D*A 9 @3β8Gn~3-p:y_[>[po . {po8PE8"7*(ApFrz2>HBu4ys*t4Lt:80"+Y#O"7W.'u;>4>?z3/rmt@ǨWof_9Tv 3sDGnsRuFI2^C5uI2- tK)۴A/5M8;&<['reu,'"bB\{vnt%1b2_hkjʂ:m@@t*wmA96Z- jlCqqot>]"(ۄMvJO@Ok6ZsAw o:Au-lD5 `{{>M3D~W]`4nAgw[CiV.n[j31t_8_}v`{kw5@8K@j*grҫ8,WTZvGݸDic2_O7ao949p#fv+!7Z{kI+@4'kv6,xضZOᕗsz/'xc.h﷨K4bӶaF#9,BHȹig+tsyyv97SHNcN6#"W9hc5(zk`3zAH.s9w+"Z`_CO]Jw {I(o&ͻ[`r Oó;4zLD:k{|‡|볇tWKW(Áge8#ҹ‡:6ut{ůkCx,?z#|c7=P$ڙ#dPOe[2~9.,bBѓ7zC?N0?[y2BfxD3@`$\&TaC!F8bE1fc 5Av>i#5lr<o ! ,@PG؈^ޓ`=HW(h'hMh*ฉ"E3j|KThiOّ_kj$kh9Vzt b8gHDxt*-ڮ\{h2I2GxnXg4\<uXoexqEx]A]t~[81׫OZWu&xXu7yizxsx[xX2X~)~Pޗnx(Y4~ H*8ህ#JHŋ3j8qD>'gn=Hɓ(S8]ƍ͛8srw>rѣHKK'NkիVo9u)T~e$ֳhrGwh :R˷߃# PPqM<5L9|¾#-BiubP7Qҥ5/s}'!\+pnIԩĊeG|XnT9!..٣Aחv77۪3ij .&q s:]~[S9!K@C X "&ɻ/G{*1D |b%\PTWEЋ jaLfnad@+b;vG\ף^P!r=^Wz!M45YJѭ A/H < z׭niȆ![gEi)7BC*%JA6Y[(Zv7d6kC^t ԂG~Ѫ:l22!DvY4Q! Qh vâ22vMopna AA.SSc#N f ژ6έG$R[4L7mʱ"T&D y c?ځf0rf` 9 ΀Z`IM`f@YfK4X' J긒⇔2-Q`C"K[_Nq!XwCNKkUTpq ` ` ^޳}`{MJMX%Ȑ6tpt0YЗ **(+}:ŢJNoetbA N^^ 8 Y`{d`NGOΉj.Ie].,[rAZyWLd8;,8fΛlssL[6Y9=f蝶t(unFw1d&hdݲh햕}۹ȦXTP^\kN0a+͝ۿeԠ7o6g@z J)RH)ۘʍ7 {j9~bY)49ˌiÊ-騣k:(C.° o0b1*zO2>#9 dگl{)JP)~ʆ&n):@ߚEr+ϻo,̃EƇz$ ɫHGS )/Tkb(״ %tScM!X!Nx#ˉogO\^c28''V`nl3 IaDS؎UNFtn. L9yfuzvFvUE^Fѳ#0$)$NijS=)_Mo`%, O T`{Yq'uD "iЦ}K0;M ;Yx7Jī,Kzm{d?q W6K1v@,bJcAWs3d؁-ZVDY[Z y_r'mdf<vx{tRN:Lڔ{.xB! ihB@@>Ah@CMh{6gWҦ"g!CU~W3AimuV*MWjv a;!3(&xNbÆpvƊ4݄eE}LGMF2It+`NH%6fp&3:|˗咝މtwZW$gBVUoi)g\#$5@+eCh32>Cڸ*F,XaJ#\Q_wY• 0@'9yqEk<'2qA5gip~ vnpC쪏4d\4MKm/WhS-{gr8 h"+00#z7>?hz=\:ֹ,q!,/t.x"-7\&qI>!K;;p+ӥ >E_+57ȢѼ%@6#< "Ã04099mhmȿ2.."Ph9>4%9z@A'|QwL")5IɳqR/_%S?L"X ,!="B#%dB(B9P0m:ڒU9JE@?QCk>swȀx\ \F=Lr< x ((:3$K4«kīB$dsS6!& 9"YyIP# ;FB F`\HcІȫsLAdyK#CknKF\t[%|I׋!Gz& ࠰0sh A8mggXV|`ȇ8"4"ʇQMٴ22 PǣHTC"j ,hI$#P$dļln|P3.ž@s!ꊂH % ̪KnQp$`$MZ֬@pqf_۳^d0Љ2 ~C Σ4 eD mDDBnD%D(俉P+Q`L=U;pt‚d@,m&@m^:6 x 8 xDHLMxhRf_s_H,MdK+R :6tI oA]cB_H3;Bꬤ/~8AEtZ8rvϼ`%J"B WrM̈́H<|SRQ5PRk5Bt٠\2U#4!\Β,ca\Lջdtt+Z !*͹p8]#pE Yц*p`*`O`Ҙ=Ec-C[XH[>?]9P& dfv؆rU~IO Q@WI*Y@i^vXO񈍨m ` `&k8GffPfv¨F .c}i}eU^ *vDM>-iCd@sg"|c H5>YFh[X s02cc6>>$dBK-ffnX? VgKڨ  7@Pip,Y,)ȈYx玑Yx}lv]6Hh>(1<бa#sfeFffvkddLČ6eGX%jLᠫAsf.>fBfef7}4@;1$[BZg:I>J;FeE3{^Xl 8},oX>ncQǫeJH8 :nLB `~mh 8GnµotINܖK%Cs݋ "=삝G`܆(POmICissG'Dfñ[)20d˂%C#;g؆s4':#(9Hے0}^gV,ZS\6o k({ֆym6Nׄu7(Z/dc}ķNG½t]m'y }Z.-KfV_hfD/5)7',6D#sl6aDFM1Moh͛$ASd$4ܸe1-s``k(ҤJb#%ԨRF*֬ZrGl#ա(YdJ+\R k-:"eÖD'4 À>5srn8gr1"AQLB,5ti2gjҽBAXsԨn+֖ ^%4&Hl/cF?YF vP!IAEYH2ݔSjɶ[K.mXc>wT+>pqJZs-Bt( |PK-ͥY=cxm V\-{+4v ~F]T DIQ -YTI*"R('g Z(.G18)W##iy|u@GE J2yO1!% FdD,~XfE]CeɦNH'O8I;HuҙlFT+0H88 ++Ѩ=G)[)[d/1e+u|З(%zGGNT5'LFaBplibn 'Ն>جoamkxX (cn~u;4T{?[8/6bW\_JMdИM}ah 'FtFlFgwg_^sͭolfTԚ)s硣9qB{԰NtT5H4UK(ep-ȬcX5V:X 5ƱCF%fʺ}&pM5xt-UU>PV+'1p rN>6xhٿoFI*X-V ,`  TŸ-!7Xfam$! ܖE8PFZkT`&\Ǩl} _,N{6I`ߧ:MI PE€y!zb݀b5$hAm5[D"` 817[YZ9N\qHTQ"r T:]Ro- mCAA[YƵ.-#g_m3o^olNCC*C$,G-xChbuvdQhuiWY3㽨6p.s]PcC>arP5_$(t;nC数tՕPygĻr#V:. R[}PL ]J]d&6_F8zr[H& IDHJh-X a6c 8͞DGO2]9(,"c@dXeGӔOYrh9 F6]b_3BЭ<_Ra %=$~ J5.ЉS N0 8ndՁfhdjy& Z (eydmjT!'rJ$# %'3&#Tj9бPuJ9Qh0Z{xFB(:';fJXf:kz] -g]'UI$.oBT\$SEΌTQ8Jh%W!w:-gP:c:OyYFͦgNԧ6~'#J$>e_Ne+@d*(`i5%%VDPU>Ri`W"c`Ιh'|!\a}%ꁊTi3*zSR]NO8gZE%5iHlG~?x| T$jiv^- }ڥ.'t*%/CZaIP%NL= N熤BA;@R E'Ccd+JƧT#]}€]R⨒bNN eꠞjʔKYI6dK&BlHc7=RG\/sS;v^e)4B{6EV;-4((YnI@' C'c*ҭ4!T=aCdK 3v(uJd@Y//TυzTW,y]& Lkvk vJmnIvIG/EoC.J2Kn3ls5lMaI!6< @;U7niyJM6r/B%zeE5)t*4[7Ƒz؀85"HHk'"Mwv'L1p'0MSX<<3D"Ć<<3GRV whr8rwwOJ/(0R(c9;3,r#7.س.:(`u~w1|}w9'B/wd3[:떜k~W='"c@7,%k: d".+Sz;~;1ܧo<7һ;zϓK6/w6;7>p| `˒6Lwec={>/9d|o5w׀>۾v:}vz-8Sv{E?>@,%K9XбEƊ =2Cq>0b\Nz]|8F 4M/DP,rTQY~[ljŕ%x\6RÀ3("ފ@DîJKQk[| k읏&`)4FFvM=ZBF 1Ah>d/<,sYSN9]RH/Gވ`xhȌi"<2n)FG)kr6\bJp(\ŧ쪫#n+Cd8*'<2fa]t2 hIeAjT% pqҜFNLTJq|V F\Us[W0[`{x`XS2@R}PA,lJp5K\|p 2˜4q\b@ Fet>z)rb FzcjGӸʭlwDX !e΀֛ᆻ[SXxV@f%YyR ۬ykiz9y;4Mvي] (G";͖\2I[ΠI?6ީ" 'ĊLtld^E-]Ljgcݿg,(NIx,,|CWYu3ft[EwQ$bъg8#բցvWm%%rTF,r™XǼz ?Z9`(6RֲTjT}k( 㸅7SyPybA_}f2P;m(I pEBS5,cҦ??fu DZp."7 wCpq xH<D#)i+~Ґj^'Y-q%-=MTRN8'A-fʹLu .&4;hּ%6%)R8|W8,XA:יP(&u10Fj&->ERWMsUIW47Z+Ƌⓖ#LVy2+@OK94w̘=9Sn$6H`&UU"VRx1 E `KUaӠ@!4Ci[/SCL`r]9Ә>(M4՗\*UBAC N&egjYk](fY= F*/, Hj[X꟰Ί'eu\~\龥NPAlkܽf[fb/] g\X]Η#5Qoe%œsG$JN.0 /!\+S7t-d9LhIlvdgk]4 azM?BxiU]XA5 Yzey l^#gJaТʶ۠j-*s1w=f;|K>ν6s5}䊼Fo߾CàC UtࣱyEIcc߾ K3^xy.uJNewQ? ͝^o|w_.t4,Nűw%( 9H Ս[D#t9`|1O@;=fy Sdp$O4[Ag4c䉧4>Lt}D`e)p  `xiDdDM4:A|2уH\QlI=רCm\@nbz\ܓB `fJ!ه]sڇVEmIWFa:^e6 k& l!^gA$mUEV+kLZ=^6CŘ͠zxPYzA Q ʗPAeđS, UHL7E#dme(=xÅ"dzN!v2f`F&t̢ɼ"{M _EGh#:s fd7)Ѓ=i-ئYCI㐿 vU0ŤH 25wEe305VZMiw{ DZ@7N=o8wCB5!39UESt 56M*"ŷǺ B;7K`d7!i4D$u\C#1v-h2\He|C0=4LZAPGf@=C-Ā 5"D1󡙌@11*(̓Af R6D@a V3ɐ qHG!!o@ (B Q"ħ1G$IA5e[MX"༦hDڵm8V B#Y0:ڒxcgCHl%2RT4JNI%@m٤ @ M*WU!D!P[sp.u'< ~S`Tԍ(05$ؔ_Y 5- Y+$^p,3oVP&i\A Ζ搗c~ɏ`/\ )bpOӞLAҬsf*NLcu/PIR~Lj;kR%=s|YoOdj3Hvky d6G4,tOͦR2hxk*uʦ wXQo0%@Z~j)jXE8F y8tB+)Qr+69NFAAM'0cu,@@=ЄvY;l(MQ80 >㚜}dIQ$хT`$u4j8IFห"nzABfWv + [&h -DæeBHkD#1z[Pvϡcy~ 06L5} I#+;&[xFy7QW;RdiPOwnd x-@"O&'n28d+pRw`rMr}FOFrTCn~z)q1PQc( 3!Kb(6Geb1"tqxlPxjҗ']W qtS8Ou OH ,Uf1i>Vb}}0U4B.sf!2 A);׆Mtmh(Cg4Q#$z ;Y8t` VxCk[+!?#l/F(m؇z38%|GCpvH|(JU/B2X(NK ȅY CrPv`dvh%O#ǀw ~Q7}^a*"1)tebw!}|#`Fu+|!b,w$G Z?:wt@ (6ePGVOo!?|YiѰ$lw&$bFXC 8;#>Jv3pT"]ThY t`ؘ'Kx$Gk2!ʶ^#$urG_WK~t~Y@Y9Ypw0Y`]y$G*1?dlAf^`+h҆>PQ0k-;1 ]`kNs`xN>lp?rK \rP GP l qDVg:Gh#v162X(7Y/X?JK )3T)`wL < $+V$lPΠG#op-rMb?"h cI2Vpo9nrC@F@4a i1Y[yudƢS'2zz@$"#>@YB*c RxfYKYwVm$K,]W<&CVh` :wph @] 줞o:8-0tZK*cctjcg@YfFј%E@QVgdHkt4ZjI''`qEIc3*PS$p LiW  ŬG]I]R֊C5M Ɠ'`$+ed:'u P馨 (@ )1 % ϠY;t\ΐL & Nv$zGZr,EQ""@0nDZn醥w`jzŢEM F[LW/*aNr(3NB5cm5]kA1B08dǫFJX) Iljv{FGnˡ| PJJZ۸Dl*3)QWq+P'fGw$Oe@|V G1P1zǷ۾1PF໷KyKk0f'd~f@^Ax` x+p ;ƾ }+[&\ Հzȿ+ryP(A`6`9l` Mz }{(EkE˾'LZ\Uy/ o0ZG2<Ùd ,G?[@ " Y! `# U``U&ܾb)\jlK?&h՘l@\ y6Q` yI &Y;%1 U0U0b ,Y6yp٘ƙ OhV Gx%`(c\Ii% ]ˑF',<$?!3`IP+`2 z01ЬXpZY'<",(ؖ^}X=L9r^O2%6S?8|o?PKgQoZǾ}2K^ypZC 1"|(^^n(ܝt]xT>d-Ff¢#FBTEU"G2Fh"bN7S0duD&Z%<9:W\4ך>m\L }Sv٣27 6lwJ*1q(B:4sf' *qʘzh.|(Neb'[S UAx յtmZ).cﶢk[VOo*fquF1"jGK<>Z]&>ZIcE}2biZMb[g:a[]<1Q==9lw7?K[֐Ԙ*LkŽ!C%܁CJ>^gkċ7Jb!3DZޖ%E)Z>׸H i!_"mu.F#Ġu DiVbJm'g"SlG2*r&};z/.-AQ֪E. ҆:nbNp! *fLPkԚA34FfW{M~,ַŴgL SWx\ ɟVݚ xn6ܦkRxIXm9鷺2`cΉPPRU*kJ{{f#1ns)*Q7Y.U8S͗L`O# [ Ӊwe֞U\;)ti )jY\ڡhpŊh-P_ Guiڏ{0ySkNDH7ش؛|i6]^^!dKO! d\Ori= u'n4;VYxEUPޗ7մ&'Uط=jA`Dr"nk{ 6 )q,C3-q@y_tm=qIrͦfKf4KūNslwUP0uu4s~V;XX7}!_I  *'V +ӹ)[7½o\}HAWD! =J|w;=q;R{1;k&К3@#0$б94I:L R!,۲X!%CpD e770r@:=u[9cf>Ej &;0+Ýߡq.ܑ` >i8%w׋@oCDC5EF*B73W9㪵:b@,k鳲i 4쒘X 5)8t c>$<`$BKrS$LzDtJR# 89#CZ2Xs g?+2H%D>0(<f\ĸ[9"/AFtƬj]#=D5#6hrq >c#cHv*$TǙ 7  ?D > [=LșRD7sD*tb3kqJz 4>p/5ӸNL\xфO(͑gP&> aQ("1$ckһ9 ߀/{@kșy@LL[EQVUXR4QUUԳGĨJSZS!uu04ƗH'ɚ*:pt&j!oB:DݴKv1АkoD(ΠD}PWuTXQ]U0廾Q )4gj03Mpr96P:jjU?{*:zmWx !҉$V+Bki&huT z "V8PLU8@O]Pճ{MU~ ~5,ERi`=<âZ(OU#=3Vs.8:X ۙ &xDH]X+W~ tSmE\վWt3[@aX %I:*|H (n>hO('&};ZAmr P2X^m4hЍ(-hq1Dž׫\}S+5sU[߹_MTO^`.b5&(YL2mG6(ΓFxm}_ȑ-EWf"\Rn;;@K%A]~,ݫ%Ln=G25U&>juj"{ E  U @P^muXv(i>7.`j؂ IQ~n~ eEX{%d}aV1/;Uv,jv6n..r^>QNգf?!4+2OUR(~^vP76% 63Bfa?,E^}%dc%aa{;Rih.PiflONl^>qk@܉[4?2 &zXgXz86hhewox%-Ȉ}}hΙ*E#Af3iD3-dMi~朠^x5lNldjKEV+[p&B{O@l'qxK6WڣB~hVdk=USdScf2+*NnXl.F6x>hoq>lJ\F ךjo&v9pFoW+n$Qn:ۖqOqim>]m>&U68^Nhe`ێn8p6.Bpngֻ#Bs1DN0~No:!joqxtstdp< tӧ NZuf5nvh@p 鴩?uXBЬ=Ļ5[Xfj\Gom=s`vb?Q]u/&tO K qejivЅn!hq/BV=Cd/eZX8홧GzZ'ux| *W 7hXoomv*Җ8 wU}1Rk1ʒĎ'~]Oo>X^u>x'!B˰4gi_F-ڂ&%q.drfڱw,"'Xyܞyֿw_̦l^gs^%!Ox`6`|wswͷWk3n#'/w{>j_ovOyW産 qGa\.hGQeP՝ iUƒޙar6C6@ڔyb?~TA ؅.ѬB eL3 ݈)>zVx\Ay$+(d_ZJe$YjWwf@dRhg"8l6I3!Bw RwTQE C=#UytE뤨tRZO1|i\KjR\(r*F+\`9&_ydE|ZQ`x@fK> &5AxJtBmtX˥oňD i F-L>qpsZĠ3DEHX{/^{e<Ö<Z,e4oYTQ1jYQDrTNX'} .@ؚI, i-cymKuz@Up2Z<]Ƕai FO%tsye򝚄^Nw`ACDNAT 0  `BKmP#B-< !)^VWhA,2;-!f+1&л@cN,6 94lYV7EꄇneܷNdJ~Kd%ю@ а zܣ /X :iv v#<5$0Q 618g b$'/>lNeh4{Ch3|pT< ,(cBLq:`4p#S@: dv;  VCbfHVI6GJGCINH'ƬO&W#&P+)SJѿ~_~Dc2pL| g 4ΧsYHrj$+Ԧ>%5sk~AVg2@F|@UM'_,BY[\^&^ G(ͰK,.]Й_fUVPAHP@VMRͅm-Wr)hT>+ pB&L` `q`e[a[%{o09 [MMKhd]4XmU[,2t\A@Ƀ8ߜ=X`(0^U5^!N81A0j `F 4.< 9}X" ʘl^}ح'%< >A) p+bR, ".ᡡ*BT+L_50k 2:щCfQ4 e1bO`B#\C!$C^K=t"8 C >BW?*)ޒ_a\A[Ma9$ܱE2tbåXih6 %N*T3Qb%^mQ)遂F>*,b\f[`bbABLu5I$UIALcE.C3bahhG'  FJ _7b$i 8jL"!mUXUPq)'`f?"a$&f+!bYWc|[e0Ә":y$xk&e"^\\_N qWp}ca"eefuuc0FoWIxf!FOJe'|y9(lh[#n_D ]9`>1!2Pfd/aA>(\zE4@ap ICl @r>0ԚFGBځff{!|%hXh;|r>\)x@v2(BNY,钐6RʡRCZ028 бB)>$9y)XbکL5_^k6c8Kn^mŽ7L\q<2,š60>CٟYcBN&RNfclg|9"p!g}FrcqdXJ"H>cmږ9hea(Pپ]J aJv.\O4.fB)Nx."dj*J*ߘl*]FV^'aFx(TB&Yk@)uLBz,"Rm]r+X[z&x'iTb"iKީmm ύ+.QB&c$v@ab!DnnR}AKWݛB),C2Օ+;no!툚Ӝꮟ88ڕM-&P:*fV= L cV n 9$ Oi"+^.|nR1Ri?v%K9i47uNz3+3}voٙ/߂BKLÎ0`^ EK2Ţ%EßQzrT C $Jo<3 Zϫѭ5ri%ٖ)jި#3fYtCWR0m(q6jDCZ,:'XdwDC=A==Ny;Y5N""t"crNﱁ|)p"ˍ"ؖ Z3'T$_w'ɪ Y􆷵e,BIA X?ڥ_++=T#|saa @AT{U>]*Bu<9SVT_},tk6ƗTOt); =3r:pٯ7}"'=[!I/7pPd}p@4A0pD"g;l3,AHfs6>w޸ @x&zu(OߟEOaÄAQ"LE?.fD2}&e⇞/@A2z´AK.\2tf\zGP.h^_NUkEƕ;nv\Ra^^zUjH+eʴtW-xwpC"٠e)ZIEeJ!C5$9RvG ezP̤Wfp}*<]UOP :=6+;~lY68]ۙuǏbV󺿟/mR쳬L'"B zYf#C8T#.MD>$$}vxiZcJ깞RDx6<ȋkV/53kWXJV$ނsq\vF4Z4EG{\Þ{zM^:x4(!rI*ɵ", 30\%oeLiP@/0凍< %g@jܠ3:P X^L~9~l.~3{.$6lᲘ|,ΫR=oX{nF1=NLٕ 3L3 GY3,zRAHx"RD6P$^ V҃tP:'C葂x@aiYYEIAܜG]ozԋݢwf2!Ĵ2\2E/Z tZBu! &@t;"pX0bR&_G] (ye=*ZjVRa1/@a 1ZOۂ!pHYdؙ<֟XfNB3zQrT64.]BsEtr&a@ E/&)y`(!)G:kc RP6WuFج>X<'K7.|Bc@p9, nv+tT`g˙ 0uTM :%;c/P=Sxʌ23f:߰H16Y2)yf͌y*CiuH#1`ŌDR0I.u8gگ eufS[FZ%+uJ$hY6 H2H󤉜1Cc_Z hLxahu-ݬ& ɟ'IHJC&$8Um%PvJ*@̥:@FD^E1=VbVU JLt&)$C[VU¥bH2G?eL-d+ӂ ӝ#F RRK%hYԻHRnRmTP=k>po*/T!7-+t)(/-d'GDDƌآilc2dx> {#Ji  ġP@TnBnU^rxpӘ)B(̠a`f&j W.B¨Y Idvl`0c&p:I! pZ@JгKfD  zb⴮H<@*FգS+ PKL`HPqp#WrR/$Σrb:nJi $on)A$"pʚls'l :H 0I1.q~rF?d W ' Ч2H # C-oT!w,QNwo!nRxbnEΣNQ>Gg$I)C)Ӯbds%3h*?V"IM^S@or- .qND@*~Sn%lr/Ha \0'f1#K{&o%8?13ezMLLfQ0|D!)  A? `s=27R6O pAA*JE֍/`r/`!ƀ' s\MA;S = o̎8 ¹\ +oήdެ=2L0N/e<?M?IaII Q- B-8 HCQuP9:ly/ŁE!S @ d4rd^J0ήƳQ N>! lRUsU @ @ fS@gEڀLv(CwMT9ts J1L1)ol`E !2I{8oDQQuFQS|ha|~( V@@ ,tI t,ErRU.U%/RVwpWuUN JY, MAB5cS  q+2P0g)Qs(  #3>|`s6@,'SA IgAb.&8eVCyU3T7M :6QMb(bb!csUEL)[Obu<=3<@B>mԄW?gINJQ7 QUw UTCSp+SM/Ք`DWӃ^bl.bYr%fLjq |i364H ? wI9pBnUߒ $B01vW+ t:Qm)OWYma씲nE0xae&-@ fs6@S gq4$7$TB)7{;t_Wb`7|~ukUDJV}YE16)m+Aȇ-&QlSU]gTKWUz/8i_/9X"jC9Q ~5PD[t-uY4yf2 -g-tUmE7'7L`9%=<67‘ W(f <19u/N xW8.EA#qAW{1{*W9+AN x\em΢}@+؀}07yb*:B'7{}LC+6VpJpöNw*٥][fp=r7]Y-8UIB7{C)QDITN EX{ua|UW-4_)_co%b5 m@;[i)x )7۱/b0(< v.jbZ}~/6 YB}K'Bٚ.aۣe`~|hx'K~;øu6E9BL v(P7-;٫jz[ Wc7U̻Mћ8bjF+5l6!KhaMH|YlělSFLy`[Y#46[GǟRǁ<ʃ\P]e4 Wr\ rʥ|[qN" F3 JLY@ɼIѫ U_% iNpac  ꀋ bpL*fҁ"Ӄժ:5AN*& , ˬ$p8l@Lo! ̇Ɋ1 ׉}[N'a؋̗ٛ! Rbڵ؃=oŽ'! ,FӈI4^V;Tg\(PZ'hgV)䱩Nh/HI&s)hpkj!JK^Ӑt:imi08V8gЯz crUhϠox(oNw)*j1Gj3NautbR9{֝D9z:Xu#7xx7XvvxGZyiz3Wex86VXpXoZ4wbs7PԗU7O)wF[ H*\ȰÇ#JHbB=O= Aj#Eʇò˖Kg,̒ŦMK`qӥP| \e0"THJժ"Y֩=rrmJٳK dI=E2;jlzc,ڙnyCi,~j <|H{]zSQ#b͝7o]"W&^W%5wH==Y= .yutlP|-\ԧWlST^ysϞIͺ{ak6>EYÐZ|B2DYqC }PLuCK;El9u,`D@C0MՁ9jN04MLk>EE'"x2U.f':|=xG@zx;z'?G 9"͆XZ8}\n*RВHͅ{L3 ь+S̕bB<"Ǝ: scZ".Gc4 3Q>}E?>nDG!0)6&A茏kP `, o:m< #rE"rPE2X?-r_&9rl xf,  uLYc `gVoɮZ[$P -:'953z'"N@q"Pf{dM*paPݜ|c:zDE1Rpмd7C@(-JΎ@m<ʁR| 0ԪxOVcFod,۱vm`*=!ڵ5ʖ>R5x\Z x1mjJ d8Cچ\U[3p~%6 *0F̳e^hJu<7h>)}:e8Ά8kUj[e8=mh@\'/ٹҽ }נ5+knL5* @~G}qx:G$KsD˒4ĥêW#0.^ 6i\Hme$T]`KN!7n~QKr !&("%R]{$@"L%fAte|T|~GbbLFN%qs2,(n2iiEjOWC0h'j"6 +b"PL%)Q@B`T3,$/$F0bMD 4PfHyB fUuGò EPb)v&ٱ@ ]GFz8?o zx}Hb \] SQ#$񈈖#$H h'70ղG^UH/_rqi{yw2d* W0W@1&w>C{|toBhvTLd1rZ"ϐr1` jFm xH`mUh"PGir4AW ӌq1Sf|4= 29CPCz)0=}Զ1#`! )]^0xOp:̹>n]qp)ݑ@ccpAc8sA0K,Y0zF%<Q.@ M ﶒpJ@\(CK`L5&BY < 1L )CyES Cs5481=jvW'E8"D3 zpCrJ1 rjC™,>)ZO*倥MgKUh7h!tCpL!,u'0j5q4@pfp FP>AISAR^@7E6R@x@H,8!MT7(W@ᝆ,jW <Ё"0zIc@*pvqs"T#<y2LcZiD4|':35(P6S eSszA9 \J˱VFjp]|%*oK L_7Xr1q@}$\ U9j#'qq5qBL5wXޑ2B{VA焊g{wSQ@ 1 $z7p<78A M6"NN<&YYR<ccp8O]{6ߡUKdg^`HKCp,CEWb-ʰ 줗l†9>3 ] 7gOͪ R<Ë*wH&h-#R/ѿT,Tr69Ӄ iKiN<kP Tm@l| \ D* \  L\qKM",_)C<{U8H}N[*vs>K̆,Tз$ 1 ˬa I J`jp$gf'Bjra}37Ep-򌐏 s<ƛ|KfOTOG}| U  l }FMFG 6bmFn: oѮєN7$Ӛ2M15v1&`0?mrPmpK/p  = =,+R\ Oܬjnz&/*GҹF/+@p*M 5>b-mRȌ̊ʨаP ]}j4ŰlO/3J71}nBOl~9iQhM0pWb.]r5mr/@ЋM*/'~\_^ݒWj0 g \OPJm-ASa"p}Ԇ@^e/&T:L- 1wLςFJ6 =P^~-p+zPY1wJ*4W8h){}ޟ =eb+b. yLzmp} ̣`\'̩~Y qٴ.4pNяg~j}F"sBoO}Ʃ*=E^RЅUg ~q>͛/S^\ \naF|٩Y _j̘}Gg"4fbrEm&KH !$N"1fumÇib& T0 מ Ʃ`4` F v^}- ﰰv.Oo5SDS'&C9WɊM_(6S<( c0]-!wɆ6*,Van9+kNmP G` pN$SK?2i7|h+K7y] ,a0i3~kO sOؽ-3 +)+l`b48X#GQF=~FX#EFJxedv犡lпCh}!)h%JKp+gNŮ1r]ile/^pBCڴ4ںb,Z HxP/B >8Q9c:LE":Rl#qN}9mż(ָ_!@ Ӑz|pOs"@T5#K8-c͢ -[lFguСXcnOֶ#&S,'anEID =G>mCoݲr*,Kk + "h;!SqꋰFls3$S=h)TIZL[MrPZvq#/D븳cNi 2qZq-fK:I}avҥ3PDB>J6>h9Wa&x0 |,D쐹6<.Br" RQ67{:6Q$P'ѧ SZ.\9,W]uVoUXONb&ѵu*>Fϣ.m|,8b:8b+x舛_hfX޻մ*B"SQM.}qHZ6>+j)xh\VWӹ.c烨ӫ;m{.\G-Hhi3S|1jC19+K25}N\(N-יn&VsHx:4a$ K4qر"шۜ)0'PGAk)KęYut,R\eh^#d5`g3 `F|I1HGr%؃xJ&ޢ~|#dC>1̔T0TUev7[q&Bd!mf3ͫ9^ǹ#HaCoDQS#OwC)35DV bcC h Mu4@2W9TH8_P]J4ҏ^gmί^uV_TSRhU2tcq-H}β-hPހ>qCBt/8U)#c0L=P!Vs:Hfg]^RWEd`(Ҹq4zIH 1Im帧ѹZ(V} iq CYQAhC.v6m +kgbHO "n_ުAGȤPܿԎxY <K-PX[1Ա'rxBr"[puR.d2; vhS_!p\g[ |)^;a{\ HAh>nHѨad Q~"g C3ÉuWl+Fe 9qcHYzf[H/ŅM &Z * z6]*ɶxƒ.4QcG(> ~j(X@Վ_>-0>64#vA*X&AleM+"\E 2:,8~NNgꝥ+"!atbD hQk)2eAl90]|+AK?i|=X6LjD? +JíR pTr@a¼$vZK9 р{O ӈrHv@(4mPk^| :DӁCy9E",xe8y'ȅ߈3ɠE|q, BJI|iuP:XǠzLw[{x)캐>G|a)<кY s{@胊,.i)F@8tK%`$g8190\8[ZI3zIU(Z gD?#BiJx9 x?Sx#=*)@`M)R,H#a\( 9 9xٞk .PF4ɛ$x)8e3$LzEVԂLo ,̬3:SGOw?P̍a.ZgD|vH@^<švHCƘy>>BNP} #(,6iC:4'"Tי45QֱL ߱v{x#X.X3TP ݈;:Xr+;mx6,'<5ɷIA@w5 Cs1D pIV !J:!9ɕOnP&t%qv yr2C{eM a?gxvT}mHw3AK,>hTdĨb %zKjNTI9 L"JA a0z QRˣȅ5.U֔ |x7|cA@0=}wK"cDF؞% jϷڬR q8/̔w9@pvL/{HINLY"}aEˠq '*h6%ېp ȿʼnc'ZZ)B[M(XAMNk\ [Ai+ҡSjXY 6P8sI{Y p_^5'3hrVc]Vg:$T=,uNes3njS{=6k(͕_F ۢbHbX% ʐhaMVb/,({㣬_c5`yfcT6w㖎Ce$D}<*蓠) C( .jb{茈苳8X8 ` {؃{ DSk6i88V!shueUa度wHܛi蔃=cY\LML CL1 ;MCsh[ *phhf8x"0؆\~iw \HPHێ_ƘD^~FaZv6k]۵ 1kD{pDl E~iR̼E?Nhns(6X8 Ѷth(hB}+׊/_npneV1N^3$ Na> >TElIVN8Ll^>Kqh(8(@s {烍Walkw\xt)}&mkkn|~FIwG-S=0k ^Ư(Xl;86`'p=!zGx P՗vܧ}_r_vNB J.](‰Ĉ'JtENe/^H[vʵ lc9F< iOrHd PDyŌtɅPaJ.MF.ʸu(F *TQq XBDt={*ֲm U"޼G3W(E8aBl,@W?eS…&ȹ3DN9#l3J# yeY+D:F{1xkˤbLm<ȕ+ hWd];EXe- x`s@l1e HPd%Rrv|ф2IsDjG( L1Iq*%F/KX&n))R,DžTSu@j(3"'K֏ AylўҠ|uX (@HQvFE(8A)J,w:Lh-Mق! \gFh=fvim0]x 8 Dځp,F `EFyF&9 jPG_Q4fec\ZtB,1C4uADP@5Ҧ$i-4,{rV|d7]mI# *ż]Y4񶰆 r$I G%} %dcu"dr 7^q/j^!)ڷGT5kZ9@e^_a,`9bnIjQMHԇNvO!64k@1 0ىEOdQUKҤmKαō\E{jسA ru4bgAui1 OPF!eXck(E1EG5cqkhq-$'#2Ū)9zӔ,Ŕ!£+S `>Uީw18֐&*Oh") 5-p:;;~' .\ 0GXpG '*Sf '׹uDž g w%~d :>tX!.fd󚪅2D!\jl+QB `yX^toD CBD M'勠 uм[IMv鲲vۮ[0Kh7T 9FAir\ %.km'XPO7 c/-Vp'1/]sẇ(5OI8ۇp#yѩ&ˋl?;[,,. =hvz;252EHAml 0QH.Ws- A JCw4@{EtL2TaPm:y_Q=PBɃ<0*5XC*L! )NI<]A_Y뀀߁E Xt\ 9]UfTMxƐDItUyȁ4DLPϧ`ZEU;.<@X!xBZ?|Na\Nԙڇ1B˥ Aʍ\ Y ZZy #]4F5h U`Z@p'Ү=M=E bURd\ ]"ۧQ!x%"b &ʵO{LDvD NLƯpDb "\LcS5+Z "٥##<*9=dx3!`a'* )4N#Y`%jXۧݘ7gI^$P|@@F.lP&_T#UY! @vWPCB.^C*$.=C/m$3Ҕ eeNA@A )j;V+A XC5 nڃ'piன;gI@Mkh&[XUE%egc(kǷf?">gث~׍Xx9 @*2OTPLG'LҖ*eS-)[aFl!bkAUdF-@E`@w XD.ZCZgT)˪XA*"55Ԭ'xm&RP-.=1`]:;Yr\B\v5o&g~%pHf1E-=D~!X~0pQ Ñd\bh_B,^]\\ e4e9>.겮#?2$xj֞ MFaK bW]k-"1X^-Boƒٽ\R%^r0:ѝa~ͻvFL2ߞn-C$oxd "pkK.[(r(*ع._*69gPB.O䖠q4a1:e0 `EsGWE5D5P֮.$3qi'N`@f8* YaU3-sD%Ϧ tfhb2ԡsPTI6_.&Zxvn-Vc9.H?6o_uvj}k5bdVsLSִm*L1<Wa$  m`_1NT_5Je% @4ZeW VoEfsu6ypJ47h*u(s[٦m&nD NOAqlϕpB_ l2b 7uưq5wAaO^!Ese[Ce6WhwvWcVU{_@qDPZGjR)A1CB N3o_ x(@ BPB_0#ur7v22`2$]n$JNM薸UxfTs4W7zCe;18dX7ܦTʷYe2uT*Dݽ޴5oGƁg x3FqOnyNtS  `x'G^²d4mӭ@b7gWE[ퟟXG3sFi4ڲoCL2r?&76ns[dhP^/Ccwlb:A:Eg`(C$W4x7rz粷x6Kbl W%ɰQD0?ly61ǻ{fgƓq)XFgwcwe4j&eS4C3+v'B }ok:{9;o[8ƺmy2҉gUs4Eo5Wy9"g4}cyYzߢ[0}~btO7 43/a.fM7ofM2w¢ePGr⣔P5jI߿=d%Bde`ytJDVZ ՔnӥK]rQaO 94'Ҡą;1bʼn-yؑ9!A,y2M+9$Q8qusϖe AFnl:WKV<ˊ5ka@%3mҾuָ4W\S%w{D!ORa$bG1PJh !~Z\ 6d6Ղb(0G<;1:vNS&hpFG¼+8B=0\p0ss8>4! kCJ PhT5 iB^i%8sH DN.N 8OjkK.rKP#KJ0 1*a5!L3VAhn"iZ5y3ϝ|[BTGk"3Ƙ"N)*4Ar$*l4LQZ=;_JIn5HXW5ꡇMph#+$ [b]5K,KFބX(dd;Wc6CܖDV杚*1c r)}ѧ*ӨԧՔ(׀&c^5#DZS(" Ƽ(ľl?$fiYFF Ozw^VÅE;/ `EN7m)ϝ~xjJ([KAӢx֬k0mĮ袇A&v8.+A<8Dv ђT Xwu,t;@=ݵQC"Co,r?K_N8apS 0U}!٩6H26 O%l"%6d's 88,e0  .T c8pga@2N6ܔӜyQO &  p5:YB2`L=4|Dvb;ݕF2ɺOJ6'oF S<.!b[vQ:ay(L*^64UK/ X xaldºI LE&@+eT_HijT%anZJsIJ{H,BΑl=.@5* t=< .pS V,!fH݀8FP0 9Cui0\V|kI ?!Yq$flp"(_JlGQ9UZ.Q{KX&)^%]Ґd&@' X$JV1LƛRRi6) 'cZ:'Y[,TOGOi9rĹ+S# 8DO$YzLGM^Ƕ,pѦה+t J,C?5кLn> . 4 | cL!ՐQ[4݅C,{G" 'H. 3#H=!_c4tMD[FB3WzK+!z^ i{1zf;d U~yaF셙'21`O@Tfy =VZǺT\uXBˇ"J#6yF{4xoL݈ZMsݔ?ioH.k`LkٵrMK+Y,3PVouUAhE8G-"ߞGbaǫls%vt/m`#:Nu_@N`n > j%Pv6o*l.|~kϰ6td %lrBO)Z `[ث$99h$N/]Sr roh=xi0 Kn p j\ Kb>x'LPS&KRb0F.)K \zQ%Q p qJ^8EG#;/0nwP RbjWRKvgʼ01PG"fOb6iR;QAxZ v.PB!9 Jjb[EX*DŽi&+R-``=`z = Ib|qʪkdMͼdKFJCaHQW.5-T! ZR&@ Jtvpn%:d(5,& V冖 :A @ GK p!A= P\e<"J~+w82 ܉O@6rj. \NaŲ}'<' Q+x(EQ9`) s(3I I+P  wGJ20",bBj8.+-븜Qjc Q O@ZNZ@@B"MZ*j]2INQE\qE O,<2g>sOR"wg`+,p l  2-G@8\8qkd YZ ! d@;w)B<]B,T 3+ҥn&f z&\" ! Z,>+zLRa!Z^qȪ#6e!%t8n ,* 8-C7#9KDk>9oMNϬ30gp˲tFH2/rTIq%gvF`v&|&En2됀 P3 ,*74 eq!$蔡p |CRCqU @6PnDm/nRbDSl\D7Γ1FG] Vo,ErTU`{`EQJձm]z(38RM0 #8V4Jp4TR|:OMb6I." #)N-ZF:L&Za! $!imy$xItKMHS47in [kv#CPEuu[uVk`kgWvoPfl*;n-tIORnļ4ŒW!+)4 nA!c1fk3cO"7D_O[͒w }[9sX uj#x7 t*D=4=u(EtU8B FFxL;VyU$nߔY/ cK#s{wd e`v#G |#7 / R\L~(-/H1SͳV5UskV,C<]XF*770 1=r6pwqمr|uf.26@V<7a7"}vqH?h(OH;USيgz>Go")q@~04b6kMro7f@ZBq9rCZ;9Î ,a%@7&)ܡ}fl_^8 t=Tq9 )'<:mY򄍹e9*MVs;Upٮ#aqUVڮa0o@Eo`RoAZ͏s<3_YWx*kg(|:QJEV%^CR>(+T2 [qCz򬑕/̤1Z{K̙YafM#7q4GLٸ0g:[nu~K~y _;[@FqX`>\v^&릠ok*[f6xh Tz1!9N@S.EpIC߷;13 s/g=9,o8Ƙ16jC2U;<ހF] eV QL|ڰtW+ĝ9[:Mڝ;y WUܑqZ;[Xy&;(8#xJ)hYdzˉ2)IEh`K/ x^bSL45#-הWZGCS=<;p\_Ģ rY`];u}]# =jvyh[rԥ?Q83J43m-pxq;T{oV?H=97i;<9wښ|SO@79\Y7[jLG78!T* 'cS+TiZ`,r~|w| 2xxOMNr+ך@;0WLq+Rw]M5 &@2>sxn A>jG7T(|hߒΖ6b9P\xH)R;̩ s#6Uگ8~;кaֱ "Tij52p ^⹹10;%rU|}Gwpa_=<8Zt~[ , ߓ瑔G2 !I(6PH?Uz݉uTe2d&%LҎT&RRёFGIY"ݨN+od' Gzܝ÷$ΝvɇP5 iB cŌ8\V#کSp: khDٳv,tmܵі".ZN4O4>焐ƌ+3(oŗ)N9O2g ~4CCdhNcEIz$ɐ'S8~cɒ!uqB @ymSPHq4뜞4՘1,.,О +u㥻VX5^%e9F!cVhbb}YgȚ@,ԱZ'âB ͳD@2XJoY!tI%rNK TSR TLaדP@E'Vevŕ c)ZVrW[_ ?;X[*7&>+l#%okLu${tW>: PS ‡Lw. ee?Nr'X*؅ė.%0j cEd C ` 4["5>nG#bDǣT!D"W~5̲GdT`0ю59 fa<\tC' RMiE; g*H+- R8џ.y0:P x蓞L  ;Q0rM$azԳ GdG?)M !zbmsT 6ف XiC˒@>A)Qjdn Yܘ`7,AE]DISŌdTFF5xLmQ=z` za3MgLœb=MSVC)UAzG>3pg}>d_@:>-"hPrG $q%|Eda*SA H ؒjn;̈́iNS͗t3Mos=uZdVɖX*ǧtx#f==CB@ Ap<Cp *V6bWi>h%9 JQ]芋Nn2PHʥрl\ ĂW*mT>&lEDHrdZ_J6pCd,? Tjw`v-ឈ@#om/3~"NRt2{xJU4Fm1z8T&M텢2Zt4.ƕXMZ|FA(N]e p@`|v0jf(CVRdWJ[? Ľ:m$%X~MmwCU,yF51yټ9]ŧp% :;85!v`T৆>b|Fd,k"7c͟]y|0P$(FiqV) K<)5c G</d_ңUM^M)!‘crv`XO;:`MVo2oЉ K":"言?aU,zX)9dIs?ڦ7gz(~5\AWP{ao~{^ֺ;!^qrzU#WB UudLX JmGcsFluGYIN2y}L{y@5P=σ'G G}˪2;?q#WeDW$t@"֕,tLD|P|0^VxGBxGxC-1;Gat'Z B~}}0P~w=z8Xu=8~kwkUIpAj\5QW,coWK Py x53RW|3m9nNs;dpt `vS&XI &Gx(5BopP~~=~@Hfz[8 AwquPaE^4CЅ"9gA (8ꃉMk%QvH1W|[9LrMNn&oAtSxxA'v{HmcrAAdÃZPVBPjxkd Q\;E Վm1W" b.vL}˄3D1M:S^~caGR}^=&F 5"墖7<@ R eCe)JehzelaB?r6zGGEgq Ms:5G;N|di\A4"xAx>78#|'&<C 63H 7t@xz֒71guk1*;QFE, Hm~32HΧY!B/s7|P^#|%TBGcfA'S(V<-`- uoo(q> WfqLHvGE!{ '@m~35pۦMyHc2s=֡ٞDT+ʢ(d``5R.-,/xsp<U20e$pziv#Isj|V|'r.IxtuS8iw}ևb.rWFxqI5K>U3 qJVK\O\ʰׅ3x5.%Ap7wH(D5tZ]s?w&xfba1t_ " UC@>kJk7\AK(k8 rKFY}dB4B&`cAcڐZbiZ}MAF`k66a=CQZvKxae`&s+ayS9驵x!{4|44}d NasgZikob]dK&j`.pAV Qi4Nh 7i#sɋ(7]p5+Pqpz|!,#L# p'*(L)1+\5Lk!܄ PII QCX%[u;JI"S-pO\3ZDP ]|qv_ a,cLelgikmo q;Turing-0.11-beta/src/media/message.png000066400000000000000000000012671331472757200176350ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<YIDATxڌmHQy~*"!pdDѢ>!BFAF(,65Շ m)<"=\sHGU0&LIAUO$ne!aCV р3'iNvl$O6eW1JU+\kp77 |Z-up]zi5ְf%:ͫd*S)5ְf#gPʔEʧqiX TD#Oqd 32ìÄT< `3gumvhp;DTyqg kaVv'3vURG΀RuiiC˱6Ujst3Hp7f3;7 ފ= 6!'n Lh;w< <[PYiPwyڼp:{}}A n] ~|{g UQQ*D/X#Zx'T9=[ BeIENDB`Turing-0.11-beta/src/media/new.png000066400000000000000000000006401331472757200167740ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<BIDATxڤJ@g&ɽMKP|x/mR'"L͸&,ҁag&;ni4z^[eP7qq s 8A Nut|<_%{p]}Euv)4OlK*hF"X,y\m8:|%Vei 1Ȍ{=_ J M҈>:5dȾ[5!ILJˎ었_$An)\x^Zv>3Gia֬K坋ձ,}s MK ;CmѱYMX;we"/oW/c|4bI@pIYfDmxU(kG*^(7:y**tsCE "|ڻk1!bB KJs>cg~c ׫3AF S'^16peL]x`yŰKev6f2$ړwߌ^lD3n[ο˿CIENDB`Turing-0.11-beta/src/media/paste.png000066400000000000000000000012071331472757200173170ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<)IDATxڄRSAv߾EW,T<,B8]i)Xp6^!`e+FD9?`N%^qv{$rݝ!)Am wOa;X:#ش11{o9VVV=&KK̞Nڍ-c*ǯ^4jM_z }ηFC͗p~i0;G&5DMDB !2IŰBMl. 4ϻRﵑfwSz=3 /-]3Ƽ# -#5aCXHhHX%|B+Kh;8́pohd ދ~~nC=@=IZHDcgE-~]X3҃@a%\w`AL&pxeKprưΫD ^8*pΰr6fHgRńκ1d "ViIENDB`Turing-0.11-beta/src/media/plot.png000066400000000000000000000013671331472757200171700ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڔKHTawΨR8(s@)rEFڅ H@GBHZQP=Xs&$GZ3z}wf.ﻗs9Rkkk(E`Y+**VɊUTVi&IAeƅ-]c?N"7r,M v 0P ܘL O^=6IO 'I&!nNJdԐ-# ^K֌ưIvgұq=)WkH&AP>TPdxwxNhS$[0 *LUuΛǨ`]]lčc4~v YN)A';ho̝Y (\ɚXA]2e`{\*c'U܇_g6Fd2F(@B 2\\kflˏ RֆK[-$Ȕ]\"/oAN, ^&h\W:TJW8H[V 52mFx%Caj˖&'7w18/'gB`+Y\ C ljng w>`X@zIENDB`Turing-0.11-beta/src/media/plot_function.png000066400000000000000000000007371331472757200210750ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxbk@<ʾ D&(ˇ, 813022h1sp.#a02}w{@hp 1^H1.ͮ w{BЀdP[d^obdfQ hPɯOoK\Qʴ \؀.tGP8@/5AWۧ,\@Wb175_lgT&P` _a翳r@ge b&6LӣkL, p' opqf4((`U~r!rf{"7Wz"Db; 2@-䝏IENDB`Turing-0.11-beta/src/media/print.png000066400000000000000000000012711331472757200173400ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<[IDATxڌSOQ-JA)  V/& ēѫ &=HEQx=`Dt>gYI&o2}Λ7+W氜(R>BaTDc2LӸ`:Wx3 -߽TW@@+E۔PBjN@H R+K&ʗ,SS6jKJ5REqƘ@"e h´`QK#f.󵶔rAΪrAn߁%M 0 H` GuT*qVW000D¦zh~\4g`[r#O a kKk3Dh6?@q1=E`gˁm[8;:VAKsd49bW`{ۥYȏm}]ߟ(urhi0>zGP=Ï(LNPQP% Uat:IVO& foi|u4 "ƋZ\!?WMSj:ǜ~,sER_]Z2d!<7n}q+;:  ayIENDB`Turing-0.11-beta/src/media/python.ico000066400000000000000000000353561331472757200175260ustar00rootroot00000000000000 h6  00 %F(  @5BGE8?L9/&{;ND:0&@  XND:0%A5, !<5bXN=4*!yA u@os=p:KlbXNC9/$z4}CרyAt=K2[olaWMC9.$AF}Dx@g6NnjaWMB8.$GJG|Cv?i6E1\LHGAEkA8-#FMIF{Bu>p;j7i6h5`2OEB7-=ÏPLHEyAt=o:i6i6i6`2CKA6$ƑROKH}Dx@s=m9i6i6i6HUJ> ďN~LH}Ct=l9f6l8i6i6HIF{Bu>p;j7i6ALEyAt>o:i6( NJH~Dx@q94/*% |D!OMHC>94/*%s{z3 WRMHC>94/*:[VRMHC=94/;`[VQMHC=83/*% , e`[VQLGC=83.)%'$7AF6je`[VQLZNHHHHHHHHHFA6!  v>vzBبy@xAv?Hoje`[VQLGB=83.)${C!}DFE|CzBx@Htojd_[VQLGB=83.)${9HHGF~D|CyAIusojd_ZUQLGB=83.)$HIJIGF}D{BMuusnid_ZUPLGB=82.)$ud-KKJHGE}CuR+otuusnid_ZUPKFB=82-($8M׼LKIHF~Ep=a؃uuusnid_ZUPKFA<82-(#ÏPOMKJHGE}Dp:bF#eLIHHHHHHHGفMKFA<72-("<őQÏPNMKJHFE|CzBx@v?s=qs=p;n:l8j6i6i6h5dF$pMKFA<72*.ǓSǒRĐPOMLJIGF~D{ByAw?t>r* ̓U~ʕTǒRĐQŽONLJIGF~D|CyAw@u>s=p;n9l8i6i6H^YTOJA̖SkǓRƒRďPOMLJIGE}D{ByAw?t>rs=q;o:l8HONLJIGF~D{CyAw?u>rrm9ɐOCƐPĐPOMLJIGF~D{ByAt=ǛXĐRO˿MؾMKJHF~CتzBw?\(0` % #.6:=BEA=:3+!  3,s.,+&%#ݞ oL@. 9C<<:730-)&# `|Z>BPFC@=:730-)&#  r>K3LJGC@=9630-)&"C$ a~Y+ RPMJGC@=9630-)&"^ݞ9VTPMJGC@=9630,)iAZWTPMJFC@=963/,^G]ZWTPMIFC@=962/,II`]ZWTPMIFC@=962/,)&"Id`]ZVSPMIFC?<962/,(%"7 gd`]YVSPMIFC?<962/,(%"+-?GIII7jgd`]YVSPMI\PIIIIIIIIIIIIIIIIF;'j;+u>zBzByAw@v?t>Imjfc`]YVSOLIFC?<952/,(%" ӓL2nD%}D~E}C{BzAx@w?u>Ipmjfc`]YVSOLIFC?<852/,(%! O+ EرFE~D|C{ByAx@v?Itpmjfc`]YVSOLIFB?<852/+(%!ڟCDoHGFE}D|CzByAw@Iuspmjfc`\YVSOLIEB?<852.+(%! a~Y+ IضIHGF~E}D{CzBxAIuuspmjfc_\YVSOLHEB?<852.+(%! ӓ=KKJIGFE~D|C{BzAKsuuspmjfc_\YVSOLHEB?<852.+(%!JHmKJIHGFE~D|C{BS<Yruuusplifc_\YUROLHEB>;852.+'$! yc)LLKJIHGFE}D|C_4juuuusolifc_\YUROLHEB>;852.+'$!Ւ2LؽMLKJIHGF~E}DwAPruuuusolifc_\YUROLHEB>;851.+'$!:N㿋NLKJIHGFE~D|Ce7J`ruuuusolieb_\YUROKHEB>;841.+'$!<ŽONMLKJIHGFE~D|Ce7<{Yjruuusolieb_\YURNKHEB>;841.+'$!<ÏPONMLKJIHGFE}D|Cv?م_4QKIIIIIIIIIIIG9YLMKHEB>;841.+'$<ŐQÎPONMLKJIHGF~E}C{BzAx@w?u>t=r;841-*'"9ŏPĐQŽPONLKJIHGFE~D|C{ByAx@v?u>s=r;841-*%1ƑQőQďPŽONMLKJIHGFE~D|C{ByAw@v?t>s=q;741-%)ǑQǒRŐQÏPONMLKJIHGFE}D|CzByAw@v?t>s=qt=rs=rs=qs=qt=rs=rs=qs=qt=rs=rs=qt=rs=rs=qs=l8ǐRƑRĐQǕ[ܿƧXLKJIHGF~E}C{BzAx@w?u>r<^3F ǛXŒPƑQĐPŽONMLKJIHGFE~D|C{ByAx@t>j7e ǛXőQďOÏPONMLKJIHGFE}D|CzBw?؝ngX,>ڂ4̜ pznYD^NdSS=xg R\\:h] 13t6fIvtI2xjE\*0#Um{wVfq,m#_moGI^}F9RgmO^&6$u~&;A.Yk5ρzg8$gŻsc7nm<;/MefnNӄ]4Š~zqyQ(o%vork$YTHf'jg&BNyؠryTD'nض7>>YLb}-LM7ؑ]WzjIENDB`Turing-0.11-beta/src/media/recent.png000066400000000000000000000014431331472757200174650ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڤS]HSa~~~P3]$]Qy.RBS Mr*Y^PTfDw,gZ5Kln岋z<?!,ie:P\{8#D9OLk"VvjDp XܱdaSl,k͂IOs1D"PDG,g(ڐj˾̍A^jP$0~lutٲTV/ jh5p:AIserd2. =l^C~~6g/L@s3p퇣 Ep8hhޞXZZw`%ؿ-tD נCa?ݎx;R\0qNp+xPp85 ɣ(rC! Gxm *q~!7R18367HO3aԔ!X9Kݲo $e$Mz'1a||5.@a.*v\o7)j" Hv?{p}3A45|[Uyd #+0, njm2_]gD'MK`75 : 0id n83IENDB`Turing-0.11-beta/src/media/recent_clear.png000066400000000000000000000012771331472757200206400ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<aIDATxڌR;hTA=]!)T ?Vv6V ʠXPh! bPbb)EĈ &}vgfwޮ,ـ̛ݙ{=#̼0d`} j_8x\c'wGAiM ϕ?3 m4JaQ c<"R+GwAS[A PJ g\} Ŗ{/u Tc(ޮ@(akD)j2"e ! Ǿsr⸈,,C$ 1XXE9rK׍o.!f ,2j[udriӤ Ul/gGQ@yFDYV!}{]~?!O@%)ꆝB8挹6:now,1҃/_)x,c-KH?lCW`68ؿ=q #t !ZCNH˩4^s0Ki#V-%BEahgb4^GR)~y~T\Zh7] S:py,4ä?[;/ԋ(Bnn/v?i/`e0 Q`IENDB`Turing-0.11-beta/src/media/redo.png000066400000000000000000000024101331472757200171310ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ݵ|IDATxb?%B0xt3@A 8Cm )>7r QW O~\>e8ʀ1Z <׀,6P34OA@>XkP;S8߼ $bgE '`J1L W2j7Uad*9 JR34]#@;L39tB*5ef2Ļ`X;ƐSCEto-8o픱"@c_YxQAU7QWL༵&jcJAr k#O)< HjZ2#FWry:LWkikEEIjc 4[X, mWkV 8ȝ)]tƷ|p6oT'8Ąc"CL@;vd= ε׫Lat&'wZ}fm|_a~c+9WKphNr?0,NlT:ܐ,㳁ۑث׳J?-SP"-BgH$6u14V;`ҧ5ʽP헐xo&LH:,lnh4h&#);DIENDB`Turing-0.11-beta/src/media/save_as.png000066400000000000000000000031331331472757200176240ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp 8qh0IDATxڤS[HTQ]fB5Ch>2# ( ̲,zWI*bO,"*"Sg;{O }{^y{ @bgQ"EJ5jT}x|B^m&E?x@dz/)Z#) F4 R&! r;cag$ښj2;@+pv]#2 4pt 'y3"0YPvmMf7AKf9n:Mcׇ=U6JKۍ- E 51Ûoa;PhS{TxURtv飇ynWV%DgL;S{9hL;w,0g2^[(jB$ @Kp CX܍kH={p5ܟnXܴKobiN6mنcSpl"(GH̢vC(.V7Zo *UT_7x IKT:Cr;!/Fm(bHBsZ¿N}Hc/"qY&9IENDB`Turing-0.11-beta/src/media/select_all.png000066400000000000000000000007271331472757200203200ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<yIDATxڜRMK@MT(U)=zwUĻx ?z-TMEZ!M6ήڴoξyYͲ,@p$@P(l@A){U\P "Q1BB )2N rByXpDb(+Y DJNNmWk}%psCP RiX_DbB:Ѣ:-| a ]'8irj5 HA29 rޚMPU ӆ$?7-(JwoA~y|t V@Y]ǽ}xZ>sv~ak& !_]— (IENDB`Turing-0.11-beta/src/media/settings.png000066400000000000000000000012241331472757200200420ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<6IDATxڌOhAƿMRHRAmj!PDK`E[A0Iփ F^ ?4X,ԈUd5dw=i[oB+RhQkˬV@H%D ,ө^5,/f_@}{Su7X\OYҠK IENDB`Turing-0.11-beta/src/media/step.png000066400000000000000000000007011331472757200171540ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<cIDATxbL !l@cs@@;.?- @qmg/^dg f%uU~TTɯog{ +Hh,F6 SC/_0|xZayr{cǦgD~~~ã[ˎO\޾"0? 0ةm}Uκ@Wn{^YF#ddH|vnIJ+L@Cā@?(!B40;{:Ztұ Gcgx~At L0t5vmyfw;85b ` 1hIENDB`Turing-0.11-beta/src/media/stop.png000066400000000000000000000012121331472757200171640ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<,IDATx|kQƿ{آVM hSE݉ZN>p ЅRkI]h6⣏yunɯ ]C$M0!P Юs O[,")_PyIy)=u8rsӀxX|,&S76 4I+Φ].\{ٹ}r,YH ߺ ckP.P }s׳%z<邲ذ(@X>ncpucFYzRTzCub*lBPBA,6,Х-WJ7"!KE\%&b@u HI3t@J>h|Io7I|G}qD"ar Zkx[ܾw7TGAF 2zzV,P՟wii11d6>xTOt{$mI6Re{N#5>AbIENDB`Turing-0.11-beta/src/media/style.png000066400000000000000000000014221331472757200173420ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATx|S[HTQ];NdioK'T}}~)Ff~J DAٻFGt(S|]s{QǬulaE IQhJ(M S9W7+ )cGpA-= %cnmQY@\l>xG٭Ν7Fzu| S2|EJC ϧ@:+nCukNn<=q?BVb4$*>)K!JeZW&d 9&Pwvj|f Idtâ8xؿ{h~b~ 6wѮuY̱hţ w/ p#khMOKBjtF=Yd3g WWHIDATx|SMhQ5fi=Xs)DcxIo=TE@Km$bAbնcMK7!c|3Y&c "w0hL r ggG~+~&9=j+s+G ##8كF36)&Pn*Ό%lV ٶ \9(p? ,|^B| \V ( 5tcW UdCMmn(qP'TeM>0?.e:uc S½o? s'IIt?)&/[ goDkuu{H|-p7 hy`0`#L >-5tiWj kI0TFfI)4 E. \y( =0dOMi 1g 9*dL#ԑza}ue=(Yp%9rKx5-Ҏ6qSe(jm~02N=]. .A!d6эf]{Wm?s+c3GIENDB`Turing-0.11-beta/src/media/time.png000066400000000000000000000014541331472757200171450ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxdS[HTQ]93@S4 ɔ ?F`HGD?G!dIaC:IL:4Ggqd{^k}݇?+RwiU3t_'j"S8ҮdoG\dId~18̲puDfyJQ„1l2-Nkj0߈aO768!&Pӥ[.9*<*e`P*Lwl'R1Jmd!?݇NTl AekfLD~'%UMHOAɖi2 Fg`6[ Jfp̐f < VIe$Pt pZz&3$C$9 < zQTLCn.l:*Dvumhj8‚38"^Z 2UhL\eU6AQ4Df<3'@>w9؆Y)cpnj7DɈChP|>wNT~14~FhuW?(xƇI\*9pRcv9gY`(t4޴'? Gx+PVN*nMC% uZS,py|(yAnwcZgXO@ s?ߕ|ڻ8IENDB`Turing-0.11-beta/src/media/toolbar_text.png000066400000000000000000000011141331472757200207060ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxēkAٝ NAA(؈l-lEK%~ ,$"`#pw^nfgw|g/`#!~ͻ39VZ>{&+57TyMc92D:WΏT.T3 ;-JJʑj/V%>8~=[3昼W{(lmbc‚r.\|v*D)dб~Y+䴳w4&7ҤL_4!4Kmi @)EbrN?KJ 4++W^,/=Hන%@+fZ,CCc}V-O]a-^3?XdxX Jf .~Q:Yg/R4>>T.77{*.M. < YIDATxSM(DQ}o23LCOX0)+ eXX YX(;%J6# ;?Qِ?1ӌ޻S_twN߽M2^@o^rAy,gK=^DMPH#:E}f%$gp9k(VXW틠iZDe׶9Cg{$prRPdBkU1G]7lޤEl eyz0qwk35b|sK ,%<{_B'Ɔr8 iisk6Ychǁ:(“ ] aҨF @p D0{F& ,~Z&џ?1gA4.dr\\@@&bD8A&ـ.^ ct(ĂP{ -;:αsIENDB`Turing-0.11-beta/src/media/up_double.png000066400000000000000000000006261331472757200201650ustar00rootroot00000000000000PNG  IHDRabKGD pHYs  tIME.yy#IDAT8˅JA} + AT‚;(A >@ lS Xl 5p-vcuzߙ33(n!q AQ%`Ԗ-aoGMax%e>jBU^"3NIفݍs7'Tq_Зm\wIy<k9>` e`-}4n|I/J e  f$ʾWf ^ 4n& g2'AO.K_,q ZQʿݝ}MJ%IENDB`Turing-0.11-beta/src/media/variable.png000066400000000000000000000010051331472757200177640ustar00rootroot00000000000000PNG  IHDRabKGDq} pHYs  tIME IDAT8˥MK[QE(~.BͭK N*B[wE u_ % Q{ue bMn+ztѓbÕH809g>I6'`1[3*c@ZY}=^Jwx`b8C67@쇲[pw!A ģzmL+ )K==0\9@c5J;u˪}o؊jW1WCyN$]*ۈ4JuAI%xI%Yփ`"T+  Rxr BҺuq8awEfnܕ칰x ,,70jgTxͧ\i|€[IENDB`Turing-0.11-beta/src/media/while_loop.png000066400000000000000000000026641331472757200203540ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp )w(IDATxڤkSAƿ}۠bQ ЈU(b zAz5gZ{Q(? H&PRZiRSI]gKjE,fgvWcS#"jL55kKNӠ,BT1SAR힀 ެUͩ 5]ԛ6+y//8)Pb ?Jk< @V`;㑢0(3m,"RV G;}YEU2K 8}mɩ|$:2,\_@)H$ ]ԀuZeʦXfM:#{@r 'bgOԱy' ޓ0oe7p)cKC8sf]ffˮ(0[xb>sEKWF[juaɜ|,qu}} 07-y 0$!o8y~% t f&g& ZG7i~XϵCs:|IENDB`Turing-0.11-beta/src/media/window_size.png000066400000000000000000000014061331472757200205450ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATx|S[KTQ]65$ IK2 ꡇL |pde&3,"G(4{BsoGo{YP$cL5q.ɤ-K= l,GID+ǶaH&i'eYD)Gc!-͡*lf@)4G-A_ڃIީ 5AvNkq //Ћ';[b+|49j 0Ys{.e="?z†aHOs,ݹh\ܹC-4|mL r)[;22u/'h^n rB^'vpkt] n],GK)lvu4GQŸT|W"Ŕ1\G:f~@l( ]ՠ)Q4hlkHccD0:7?bLS}BqS]gچiu|c4Qi߳k'o {2:ۼ2Ǟ=KO4L uJ= ->{}P]Ha&q%QwYbK 9BǴ<=#$ vtq47$x!1AzH/^)x?uWea- =[$IENDB`Turing-0.11-beta/src/media/zoom_in.png000066400000000000000000000014301331472757200176530ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڔ_HSQǿSWk1,eiPD"z_*ȞFA!TBң/PPLFQlڜWVjSJJ\=C mRT )ښ$azG3v$I ήCFDoR3z=sEMoL<>k>VnL̩#g yc`5.o csMr󶳢MeXQ|{qnZ ZF wf.1wD"­evPCek3 X# x%C/e$QT2:-(LOFj16MBz9DXڑ@JC.6Bݷ!D~z9@ X#yxa v7!?E.B;J$,* W YK 9ffO z`an`f);>ƕn,W(lltg +A *p`F$~O[GқrG &  0^$vx1_©{P \a3Ho1TZ`yN'5 0vm7"E+zfOM3B%D#H!lF YWm &cJm}679} Zk\;p} O,렧IENDB`Turing-0.11-beta/src/media/zoom_out.png000066400000000000000000000014261331472757200200610ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڔ]HSa9g;T6] X* C ))"@/ d7u D H%.d;lAa9*a.BHH*q(h #br3_qC/S.nY\AIENDB`Turing-0.11-beta/src/media/zoom_reset.png000066400000000000000000000014201331472757200203660ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<IDATxڔ_HSQǿ;77ʦa DVa|— I ꥐ MpPԛ/RPP(RH:[zh36vw﹝;T$~p}~hAEC O^jSdm 9ٜ3 Vzʜ 03c\XiW鰳VtgJ[5B#t0 3: # add alias names = names + function[3] name = " / ".join("`%s`" % x for x in names) # check if any parameters args = "

" # replace {{x}} by `x` for markdown desc = re.sub(r"{{(\w+)\}\}", "`\g<1>`", function[2]) desc = re.sub(r"//(\w+)//", "*\g<1>*", desc) result += "|%s|%s|%s|\n" % (name, args, desc) return result def doc_consts(): result = "" constants = maths.lib.get_consts() for category in sorted(constants.keys()): result += "| |**%s**| |\n" % category for constant in sorted(constants[category], key=lambda x: x[0]): name, symbol, desc = constant[:3] actual = getattr(maths.lib.get_modules()[category], "c_" + name) if is_int(actual): # if integer, only value is needed value = str(actual) else: if "e" in str(actual): # if exponent, add pretty html sig, exp = str(actual).split("e") value = str(round(float(sig), 15)) + "·10%d" % int(exp) else: # otherwise, only rounded value if type(actual) == complex: value = proper_str(actual) else: value = "%.15f" % actual unit = "" if len(constant) > 3: # add unit unit = " (%s)" % constant[3].replace("*", "·") desc = re.sub(r"//(\w+)//", "*\g<1>*", desc) result += "|`%s`|%s|*%s* - %s%s|\n" % (name, value, symbol, desc, unit) return result if __name__ == "__main__": path_docs = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, "docs") template = os.path.join(path_docs, "expression_templ.md") output = os.path.join(path_docs, "expression.md") with open(template, "r", encoding="utf8") as file: markdown = file.read() markdown = markdown.replace("{{{funcdoc}}}", doc_funcs()) markdown = markdown.replace("{{{constdoc}}}", doc_consts()) with open(output, "w", encoding="utf8") as file: file.write(markdown) Turing-0.11-beta/src/tools/progen.py000066400000000000000000000016351331472757200174270ustar00rootroot00000000000000# -*- coding: utf-8 -*- import glob files = glob.iglob('../**/*.py', recursive=True) with open("../project.pro", "w") as file: file.write(r""" CODECFORTR = UTF-8 CODECFORSRC = UTF-8 """) file.write(r"""RESOURCES += \ turing.qrc SOURCES += \ """) file.write(" \\\n".join(" " + x[3:] for x in glob.iglob('../**/*.py', recursive=True) if "pycache" not in x)) file.write(r""" FORMS += \ """) file.write(" \\\n".join(" " + x[3:] for x in glob.iglob('../**/*.ui', recursive=True))) file.write(r""" TRANSLATIONS += \ """) file.write(" \\\n".join(" " + x[3:] for x in glob.iglob('../**/*.ts', recursive=True))) for ts in glob.iglob('../**/*.ts', recursive=True): with open(ts, "r", encoding="utf8") as f: orig = f.read() orig = orig.replace('', '') with open(ts, "w", encoding="utf8") as f: f.write(orig) Turing-0.11-beta/src/tools/tests.bat000066400000000000000000000000361331472757200174070ustar00rootroot00000000000000@echo off python -m tests.chatTuring-0.11-beta/src/tools/tests.sh000066400000000000000000000000441331472757200172520ustar00rootroot00000000000000#!/bin/bash python3 -m tests.chat Turing-0.11-beta/src/turing.qrc000066400000000000000000000074461331472757200164500ustar00rootroot00000000000000 media/accept.png media/calculator.png media/clear.png media/copy.png media/cross.png media/cut.png media/delete.png media/duplicate_line.png media/examples.png media/exit.png media/find.png media/find_next.png media/find_previous.png media/go_to_line.png media/help.png media/home.png media/indent.png media/log_clear.png media/log_save.png media/new.png media/open.png media/paste.png media/print.png media/quick_start.png media/recent.png media/recent_clear.png media/redo.png media/replace.png media/run.png media/save.png media/save_as.png media/select_all.png media/settings.png media/step.png media/toolbar.png media/toolbar_text.png media/undo.png media/unindent.png media/code.png media/python.ico media/style.png media/theme.png media/edit_line.png media/down.png media/up.png media/down_double.png media/up_double.png media/stop.png media/debug.png media/plot.png media/feedback.png media/algobox.ico media/zoom_in.png media/zoom_out.png media/zoom_reset.png media/backspace.png media/draw_line.png media/draw_points.png media/erase.png media/window_size.png media/message.png media/input.png media/comment.png media/function.png media/breakpoint.png media/variable.png media/for_loop.png media/while_loop.png media/continue.png media/break.png media/else_block.png media/if_block.png media/plot_function.png media/time.png media/color_wheel.png media/language.png media/media.qrc media/download.png media/icon_16.png media/icon_24.png media/icon_32.png media/icon_64.png media/icon_96.png media/icon_128.png media/icon.ico lang/fr.qm lang/de.qm lang/es.qm media/lang/de.png media/lang/en.png media/lang/es.png media/lang/fr.png media/lang/zh-CN.png lang/zh-CN.qm media/lang/it.png lang/it.qm Turing-0.11-beta/src/turing_rc.py000066400000000000000000176054471331472757200170140ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.10.1) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x28\x6b\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x03\x48\x00\x00\x05\x42\x00\x00\x23\x42\x00\x00\x05\xba\ \x00\x00\x03\xc8\x00\x00\x05\xca\x00\x00\x03\xf1\x00\x00\x46\x24\ \x00\x00\x22\x86\x00\x00\x4a\xc4\x00\x00\x19\xad\x00\x00\x53\x44\ \x00\x00\x23\x1e\x00\x00\x54\xc7\x00\x00\x1c\x56\x00\x00\x59\xbe\ \x00\x00\x1e\xe3\x00\x04\xa6\x79\x00\x00\x19\x80\x00\x04\xcf\x04\ \x00\x00\x1a\x68\x00\x04\xd0\x44\x00\x00\x1a\x93\x00\x05\x66\xbe\ \x00\x00\x1c\x82\x00\x05\x8b\xaf\x00\x00\x1d\xe9\x00\x05\x97\x95\ \x00\x00\x24\xd8\x00\x05\x98\xc5\x00\x00\x1f\x11\x00\x05\xc4\xaf\ \x00\x00\x20\xf2\x00\x06\x16\x5d\x00\x00\x21\xd4\x00\x2a\xbb\x04\ \x00\x00\x17\xdf\x00\x2a\xd0\x25\x00\x00\x18\x15\x00\x2b\xcf\xc7\ \x00\x00\x18\x7c\x00\x4a\x61\x75\x00\x00\x24\xab\x00\x56\x8a\xa5\ \x00\x00\x1c\xad\x00\x57\x90\x54\x00\x00\x1d\x2f\x00\x58\xbd\xc8\ \x00\x00\x1e\x20\x00\x76\x11\x75\x00\x00\x00\xef\x00\xdb\xc9\x5d\ \x00\x00\x06\xf9\x00\xdf\x75\xfd\x00\x00\x17\x90\x01\x0a\xfe\xf5\ \x00\x00\x05\x62\x01\x0a\xfe\xf5\x00\x00\x06\x95\x01\x65\xf6\x9e\ \x00\x00\x21\xff\x01\xa4\xb6\x1e\x00\x00\x16\x7e\x01\xe8\x81\x9e\ \x00\x00\x14\xe0\x02\xbb\x66\x33\x00\x00\x18\x43\x02\xfb\x35\xf9\ \x00\x00\x17\x09\x03\x09\xc6\xb4\x00\x00\x05\xc7\x03\x17\x7e\xfe\ \x00\x00\x09\x01\x03\xac\x25\x3e\x00\x00\x0c\x0e\x03\xc8\x4a\xce\ \x00\x00\x00\x00\x03\xe7\x7e\x93\x00\x00\x1d\x5f\x04\x50\xdd\x0e\ \x00\x00\x0a\xe9\x04\x54\xd7\xae\x00\x00\x0f\xaf\x04\x65\x01\xf4\ \x00\x00\x1a\xc0\x04\xa6\x36\x5a\x00\x00\x02\x28\x04\xa6\x36\x5a\ \x00\x00\x02\xb9\x04\xa6\x36\x5a\x00\x00\x03\x40\x04\xac\xab\x5d\ \x00\x00\x24\x3e\x04\xcb\x8b\x5e\x00\x00\x09\xe4\x04\xd3\x4e\x87\ \x00\x00\x23\xc0\x04\xd3\x6a\x87\x00\x00\x22\xa6\x05\x04\xac\x54\ \x00\x00\x1b\x9c\x05\x04\xaf\x94\x00\x00\x21\x23\x05\x38\xa5\xba\ \x00\x00\x04\x1a\x05\x38\xa5\xca\x00\x00\x04\x50\x05\x40\x05\xba\ \x00\x00\x04\x86\x05\x40\x05\xca\x00\x00\x04\xbc\x05\x8b\x46\x55\ \x00\x00\x00\x93\x05\xc8\xa3\xf3\x00\x00\x1b\x08\x06\x5f\x70\xd4\ \x00\x00\x22\x47\x06\x67\x79\x75\x00\x00\x02\xef\x06\x74\x2d\x34\ \x00\x00\x03\x77\x07\x0e\xa2\xae\x00\x00\x0a\x6d\x07\x21\x9e\x93\ \x00\x00\x21\x70\x07\x4e\x94\x3e\x00\x00\x01\xce\x07\xdb\xd7\x07\ \x00\x00\x04\xf2\x07\xdb\xd7\x07\x00\x00\x1f\xfc\x08\x23\xc8\xe4\ \x00\x00\x06\x40\x08\x23\xc8\xe4\x00\x00\x18\xb6\x08\x3e\xfd\xeb\ \x00\x00\x01\x4c\x08\x97\x65\xc5\x00\x00\x19\xdb\x08\xc7\x27\xc5\ \x00\x00\x1e\x6c\x08\xc7\x43\xbc\x00\x00\x1f\x3e\x09\x07\xc1\x2e\ \x00\x00\x0d\xd2\x09\x73\xe8\xd4\x00\x00\x1a\x21\x09\x8c\x74\xd3\ \x00\x00\x1f\x7b\x09\xa3\xa0\x35\x00\x00\x1b\xeb\x09\xd4\xed\x6e\ \x00\x00\x12\x21\x0a\x64\x3c\x14\x00\x00\x00\x58\x0a\x64\x3c\x14\ \x00\x00\x19\x4a\x0a\xa5\x09\x9e\x00\x00\x0c\x9e\x0a\xbc\x8c\x74\ \x00\x00\x24\x7b\x0a\xc6\x13\x42\x00\x00\x07\xe4\x0a\xc6\x13\x42\ \x00\x00\x19\x09\x0a\xfa\xf7\x6e\x00\x00\x14\x17\x0b\xa3\xdc\x0c\ \x00\x00\x1f\xb5\x0b\xc2\x58\x6e\x00\x00\x12\xa7\x0b\xec\x62\x8e\ \x00\x00\x10\x6b\x0c\x63\x9a\xcd\x00\x00\x1e\xa8\x0c\x97\x75\x1e\ \x00\x00\x08\x25\x0c\x99\xa1\x53\x00\x00\x17\x48\x0c\x99\xa1\x53\ \x00\x00\x1b\x54\x0c\xbb\x01\x73\x00\x00\x20\x67\x0d\x03\x4c\x7e\ \x00\x00\x0e\xe6\x0d\x4c\x62\x8e\x00\x00\x10\xf6\x0d\x7c\xca\xde\ \x00\x00\x02\x5e\x0d\x7c\xca\xde\x00\x00\x1c\xdf\x0e\x15\x49\x3e\ \x00\x00\x0e\x5d\x0e\x79\x28\x5c\x00\x00\x23\x61\x0e\x95\xdd\x25\ \x00\x00\x1d\xa2\x0e\xbf\xbc\xfe\x00\x00\x0b\x7a\x0e\xc4\x49\x9e\ \x00\x00\x13\x1f\x0e\xdd\xd4\x5e\x00\x00\x15\xee\x0f\x18\x4b\xfd\ \x00\x00\x20\xa6\x0f\x55\x9c\xfe\x00\x00\x0d\x14\x0f\x6d\xb6\x6e\ \x00\x00\x11\x7f\x0f\xc1\xd2\xad\x00\x00\x07\x61\x69\x00\x00\x25\ \x02\x03\x00\x00\x00\x2a\x00\x43\x00\x68\x00\x69\x00\x61\x00\x6d\ \x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ \x00\x66\x00\x75\x00\x6e\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x61\x6c\x6c\x20\x66\ \x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\ \x43\x61\x6c\x6c\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x10\x00\x43\ \x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\x74\x07\ \x00\x00\x00\x0f\x41\x6c\x67\x6f\x43\x6f\x6d\x6d\x65\x6e\x74\x53\ \x74\x6d\x74\x01\x03\x00\x00\x00\x2a\x00\x44\x00\x65\x00\x66\x00\ \x69\x00\x6e\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ \x20\x00\x76\x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x69\x00\ \x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x65\x66\ \x69\x6e\x65\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x07\x00\x00\x00\ \x0e\x41\x6c\x67\x6f\x44\x65\x66\x69\x6e\x65\x53\x74\x6d\x74\x01\ \x03\x00\x00\x00\x2c\x00\x56\x00\x69\x00\x73\x00\x75\x00\x61\x00\ \x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\ \x6e\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\ \x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x69\x73\x70\x6c\ \x61\x79\x20\x76\x61\x6c\x75\x65\x07\x00\x00\x00\x0f\x41\x6c\x67\ \x6f\x44\x69\x73\x70\x6c\x61\x79\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x46\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\x00\x6e\x00\x67\ \x00\x65\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x27\x00\x69\ \x00\x6e\x00\x74\x00\x65\x00\x72\x00\x72\x00\x75\x00\x7a\x00\x69\ \x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6c\ \x00\x69\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x18\x46\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x20\x61\x20\ \x6c\x69\x6e\x65\x20\x62\x72\x65\x61\x6b\x07\x00\x00\x00\x0f\x41\ \x6c\x67\x6f\x44\x69\x73\x70\x6c\x61\x79\x53\x74\x6d\x74\x01\x03\ \x00\x00\x00\x2a\x00\x44\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ \x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x66\ \x00\x75\x00\x6e\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0f\x44\x65\x66\x69\x6e\x65\x20\x66\ \x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\ \x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0e\x00\x43\ \x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x3a\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\x00\ \x0d\x41\x6c\x67\x6f\x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\ \x00\x00\x00\x2c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x63\x00\x69\ \x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ \x00\x66\x00\x75\x00\x6e\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x6c\x6f\x74\x20\x66\ \x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\ \x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0e\x00\ \x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x3a\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\ \x00\x0d\x41\x6c\x67\x6f\x47\x4c\x69\x6e\x65\x53\x74\x6d\x74\x01\ \x03\x00\x00\x00\x26\x00\x54\x00\x72\x00\x61\x00\x63\x00\x63\x00\ \x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\ \x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x09\x50\x6c\x6f\x74\x20\x6c\x69\x6e\x65\x07\x00\ \x00\x00\x0d\x41\x6c\x67\x6f\x47\x4c\x69\x6e\x65\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x0e\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\ \x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x6f\ \x6c\x6f\x72\x3a\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\ \x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x24\x00\x54\x00\ \x72\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\x72\x00\x65\x00\ \x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ \x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x50\x6c\x6f\x74\x20\ \x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\ \x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x04\x00\x59\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x3a\x07\x00\ \x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x3a\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x02\x59\x3a\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\ \x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\ \x00\x4d\x00\x61\x00\x78\x00\x20\x00\x58\x00\x3a\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x06\x4d\x61\x78\x20\x58\x3a\x07\x00\x00\x00\ \x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x61\x00\x78\x00\x20\x00\x59\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4d\x61\x78\x20\ \x59\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\ \x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x69\ \x00\x6e\x00\x20\x00\x59\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x4d\x69\x6e\x20\x58\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\ \x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x0c\x00\x4d\x00\x69\x00\x6e\x00\x20\x00\x59\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x06\x4d\x69\x6e\x20\x59\x3a\x07\x00\ \x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x42\x00\x49\x00\x6d\x00\x70\x00\x6f\ \x00\x73\x00\x74\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\ \x00\x20\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\ \x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\ \x00\x61\x00\x66\x00\x69\x00\x63\x00\x6f\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0a\x53\x65\x74\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\ \x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x32\x00\x56\x00\x69\x00\x73\x00\x75\ \x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x72\x00\x65\ \x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ \x00\x61\x00\x67\x00\x67\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x44\x69\x73\x70\x6c\x61\x79\x20\x61\x20\x6d\x65\ \x73\x73\x61\x67\x65\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\ \x70\x75\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x48\x00\x4c\x00\ \x65\x00\x74\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\ \x65\x00\x69\x00\x20\x00\x64\x00\x61\x00\x74\x00\x69\x00\x20\x00\ \x69\x00\x6d\x00\x6d\x00\x65\x00\x73\x00\x73\x00\x69\x00\x20\x00\ \x64\x00\x61\x00\x6c\x00\x6c\x00\x27\x00\x75\x00\x74\x00\x65\x00\ \x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x52\ \x65\x61\x64\x20\x75\x73\x65\x72\x20\x69\x6e\x70\x75\x74\x07\x00\ \x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\x70\x75\x74\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x2a\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\ \x00\x20\x00\x64\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ \x00\x72\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x42\x72\x65\x61\x6b\x70\ \x6f\x69\x6e\x74\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x53\x74\x6f\ \x70\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x32\x00\x56\x00\x69\x00\ \x73\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\ \x73\x00\x73\x00\x61\x00\x67\x00\x67\x00\x69\x00\x6f\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x11\x44\x69\x73\x70\x6c\x61\x79\x20\x61\ \x20\x6d\x65\x73\x73\x61\x67\x65\x07\x00\x00\x00\x0c\x41\x6c\x67\ \x6f\x53\x74\x6f\x70\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x36\x00\ \x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x73\x00\ \x63\x00\x6f\x00\x6e\x00\x6f\x00\x73\x00\x63\x00\x69\x00\x75\x00\ \x74\x00\x6f\x00\x3a\x00\x20\x00\x7b\x00\x63\x00\x6f\x00\x6c\x00\ \x6f\x00\x72\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\ \x6e\x6b\x6e\x6f\x77\x6e\x20\x63\x6f\x6c\x6f\x72\x3a\x20\x7b\x63\ \x6f\x6c\x6f\x72\x7d\x07\x00\x00\x00\x07\x41\x6c\x67\x6f\x62\x6f\ \x78\x01\x03\x00\x00\x00\x4a\x00\x54\x00\x69\x00\x70\x00\x6f\x00\ \x20\x00\x64\x00\x69\x00\x20\x00\x76\x00\x61\x00\x72\x00\x69\x00\ \x61\x00\x62\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x63\x00\ \x6f\x00\x6e\x00\x6f\x00\x73\x00\x63\x00\x69\x00\x75\x00\x74\x00\ \x6f\x00\x3a\x00\x20\x00\x7b\x00\x74\x00\x79\x00\x70\x00\x65\x00\ \x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x6e\x6b\x6e\x6f\ \x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x74\x79\x70\x65\ \x3a\x20\x7b\x74\x79\x70\x65\x7d\x07\x00\x00\x00\x07\x41\x6c\x67\ \x6f\x62\x6f\x78\x01\x03\x00\x00\x00\x18\x00\x43\x00\x61\x00\x6c\ \x00\x63\x00\x6f\x00\x6c\x00\x61\x00\x74\x00\x72\x00\x69\x00\x63\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x61\x6c\x63\ \x75\x6c\x61\x74\x6f\x72\x07\x00\x00\x00\x0a\x43\x61\x6c\x63\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x86\x00\x52\x00\x65\x00\ \x73\x00\x74\x00\x69\x00\x74\x00\x75\x00\x69\x00\x73\x00\x63\x00\ \x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ \x65\x00\x72\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x73\x00\x75\x00\ \x61\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ \x72\x00\x65\x00\x73\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\x00\ \x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\x00\x65\x00\ \x20\x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\x7d\x00\x20\x00\x28\x00\ \x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x73\x00\x6f\x00\x29\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x52\x65\x74\x75\x72\ \x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\x20\x69\x6e\x74\x65\ \x67\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x7b\x7b\x61\x7d\ \x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\x7d\x20\x28\x69\x6e\x63\ \x6c\x75\x73\x69\x76\x65\x29\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x8a\x00\x52\x00\x65\x00\x73\x00\x74\x00\ \x69\x00\x74\x00\x75\x00\x69\x00\x73\x00\x63\x00\x65\x00\x20\x00\ \x75\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\ \x6f\x00\x20\x00\x63\x00\x61\x00\x73\x00\x75\x00\x61\x00\x6c\x00\ \x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x65\x00\ \x73\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\x00\x20\x00\x30\x00\ \x20\x00\x28\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x73\x00\ \x6f\x00\x29\x00\x20\x00\x65\x00\x20\x00\x31\x00\x20\x00\x28\x00\ \x65\x00\x73\x00\x63\x00\x6c\x00\x75\x00\x73\x00\x6f\x00\x29\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x52\x65\x74\x75\x72\ \x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\x20\x6e\x75\x6d\x62\ \x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x30\x20\x28\x69\x6e\ \x63\x6c\x75\x73\x69\x76\x65\x29\x20\x61\x6e\x64\x20\x31\x20\x28\ \x65\x78\x63\x6c\x75\x73\x69\x76\x65\x29\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4a\x00\x52\x00\x69\x00\x70\ \x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\ \x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x61\ \x00\x73\x00\x73\x00\x6f\x00\x6c\x00\x75\x00\x74\x00\x6f\x00\x20\ \x00\x64\x00\x69\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\ \x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\ \x74\x65\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\x6e\x75\ \x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x3a\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ \x61\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x72\x00\x67\x00\x6f\x00\ \x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x69\x00\ \x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x29\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x28\x6f\x72\x20\ \x70\x68\x61\x73\x65\x29\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x50\x00\ \x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\ \x6c\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\ \x20\x00\x61\x00\x72\x00\x69\x00\x74\x00\x6d\x00\x65\x00\x74\x00\ \x69\x00\x63\x00\x61\x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\ \x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x28\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x61\x72\x69\x74\x68\x6d\x65\x74\x69\x63\x20\ \x6d\x65\x61\x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\ \x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x52\ \x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\ \x00\x69\x00\x6c\x00\x20\x00\x6c\x00\x6f\x00\x67\x00\x61\x00\x72\ \x00\x69\x00\x74\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x63\ \x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\ \x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x74\x75\ \x72\x6e\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x2d\x31\x30\x20\ \x6c\x6f\x67\x61\x72\x69\x74\x68\x6d\x20\x6f\x66\x20\x7b\x7b\x6e\ \x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x50\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\ \x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\ \x00\x70\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x20\x00\x63\ \x00\x6f\x00\x6e\x00\x69\x00\x75\x00\x67\x00\x61\x00\x74\x00\x6f\ \x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6c\x65\ \x78\x20\x63\x6f\x6e\x6a\x75\x67\x61\x74\x65\x20\x6f\x66\x20\x7b\ \x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x3e\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\ \x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x66\x00\x61\x00\x74\ \x00\x74\x00\x6f\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x65\x00\x20\ \x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x52\x65\x74\x75\ \x72\x6e\x73\x20\x74\x68\x65\x20\x66\x61\x63\x74\x6f\x72\x69\x61\ \x6c\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x6e\x00\x52\x00\x65\x00\x73\ \x00\x74\x00\x69\x00\x74\x00\x75\x00\x69\x00\x73\x00\x63\x00\x65\ \x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6d\x00\x61\x00\x73\x00\x73\ \x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x75\ \x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x76\x00\x69\x00\x73\ \x00\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\ \x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\x00\x65\x00\x20\x00\x7b\ \x00\x62\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x37\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x67\x72\ \x65\x61\x74\x65\x73\x74\x20\x63\x6f\x6d\x6d\x6f\x6e\x20\x64\x69\ \x76\x69\x73\x6f\x72\x20\x6f\x66\x20\x7b\x7b\x61\x7d\x7d\x20\x61\ \x6e\x64\x20\x7b\x7b\x62\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x4c\x00\x52\x00\x69\x00\x70\x00\x6f\ \x00\x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x20\x00\x61\x00\x72\x00\x6d\ \x00\x6f\x00\x6e\x00\x69\x00\x63\x00\x61\x00\x20\x00\x64\x00\x69\ \x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\ \x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x68\x61\x72\x6d\x6f\x6e\ \x69\x63\x20\x6d\x65\x61\x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\ \x73\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x4c\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ \x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\ \x74\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x6d\x00\x61\x00\x67\x00\ \x69\x00\x6e\x00\x61\x00\x72\x00\x69\x00\x61\x00\x20\x00\x64\x00\ \x69\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x24\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x69\x6d\x61\x67\x69\x6e\x61\x72\x79\x20\x70\ \x61\x72\x74\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\ \x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x76\x00\x52\x00\x69\ \x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\x27\ \x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x70\ \x00\x69\x00\xf9\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x64\ \x00\x65\x00\x20\x00\x6d\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x67\ \x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x20\ \x00\x75\x00\x67\x00\x75\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x61\ \x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x52\x65\x74\x75\ \x72\x6e\x73\x20\x74\x68\x65\x20\x6c\x61\x72\x67\x65\x73\x74\x20\ \x69\x6e\x74\x65\x67\x65\x72\x20\x6c\x65\x73\x73\x20\x74\x68\x61\ \x6e\x20\x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\x20\x7b\x7b\ \x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x6e\x00\x52\x00\x65\x00\x73\x00\x74\x00\x69\x00\ \x74\x00\x75\x00\x69\x00\x73\x00\x63\x00\x65\x00\x20\x00\x69\x00\ \x6c\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x6f\x00\ \x20\x00\x63\x00\x6f\x00\x6d\x00\x75\x00\x6e\x00\x65\x00\x20\x00\ \x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x6f\x00\ \x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\ \x7d\x00\x20\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\ \x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x52\x65\x74\ \x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6c\x65\x61\x73\x74\x20\x63\ \x6f\x6d\x6d\x6f\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x6f\ \x66\x20\x7b\x7b\x61\x7d\x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\ \x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\ \x4c\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ \x20\x00\x69\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\ \x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x73\x00\x73\x00\x69\x00\ \x6d\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\ \x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x76\x61\x6c\x75\x65\ \x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\x2e\x07\x00\x00\ \x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4a\x00\x52\x00\x69\ \x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x69\x00\x6c\ \x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\ \x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\ \x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\ \x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6d\x69\x6e\x69\ \x6d\x75\x6d\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\x61\ \x72\x67\x73\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x54\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\ \x74\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\ \x76\x00\x69\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ \x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ \x64\x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x6c\x00\ \x73\x00\x74\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x35\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x70\ \x6f\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x74\x61\x6e\x64\x61\ \x72\x64\x20\x64\x65\x76\x69\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\ \x7b\x7b\x6c\x73\x74\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x42\x00\x52\x00\x69\x00\x70\x00\x6f\x00\ \x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\ \x61\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x7a\x00\x61\x00\x20\x00\ \x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x70\x00\x72\x00\x69\x00\ \x6d\x00\x6f\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x2b\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x70\ \x6f\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x76\x61\x72\x69\x61\x6e\ \x63\x65\x20\x6f\x66\x20\x7b\x7b\x6c\x73\x74\x7d\x7d\x2e\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x40\x00\x52\x00\ \x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\ \x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x65\x00\x20\x00\ \x72\x00\x65\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\ \x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x1f\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x72\x65\x61\x6c\x20\x70\x61\x72\x74\x20\x6f\x66\x20\ \x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x96\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\ \x74\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x73\x00\x65\x00\ \x67\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x7b\x00\ \x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\ \x28\x00\x2d\x00\x31\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6e\x00\ \x65\x00\x67\x00\x61\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x2c\x00\ \x20\x00\x31\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x6f\x00\ \x73\x00\x69\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x2c\x00\x20\x00\ \x30\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x72\x00\x69\x00\x6d\x00\ \x65\x00\x6e\x00\x74\x00\x69\x00\x29\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x49\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\ \x20\x73\x69\x67\x6e\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\ \x20\x28\x2d\x31\x20\x69\x66\x20\x6e\x65\x67\x61\x74\x69\x76\x65\ \x2c\x20\x31\x20\x69\x66\x20\x70\x6f\x73\x69\x74\x69\x76\x65\x2c\ \x20\x30\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x29\x2e\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x72\x00\x52\x00\ \x69\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\ \x27\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6f\x00\x20\x00\ \x70\x00\x69\x00\xf9\x00\x20\x00\x70\x00\x69\x00\x63\x00\x63\x00\ \x6f\x00\x6c\x00\x6f\x00\x20\x00\x6d\x00\x61\x00\x67\x00\x67\x00\ \x69\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x75\x00\ \x67\x00\x75\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x20\x00\ \x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x3e\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x73\x6d\x61\x6c\x6c\x65\x73\x74\x20\x69\x6e\ \x74\x65\x67\x65\x72\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ \x61\x6e\x20\x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\x20\x7b\ \x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\ \x01\x03\x00\x00\x00\xa6\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\ \x00\x74\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x61\ \x00\x64\x00\x69\x00\x63\x00\x65\x00\x20\x00\x71\x00\x75\x00\x61\ \x00\x64\x00\x72\x00\x61\x00\x74\x00\x61\x00\x20\x00\x64\x00\x69\ \x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\ \x00\x2e\x00\x20\x00\x53\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\ \x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x3c\x00\x20\x00\x30\ \x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x72\x00\x69\x00\x73\ \x00\x75\x00\x6c\x00\x74\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x73\ \x00\x61\x00\x72\x00\xe0\x00\x20\x00\x43\x00\x6f\x00\x6d\x00\x70\ \x00\x6c\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x2e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x4f\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\ \x65\x20\x73\x71\x75\x61\x72\x65\x20\x72\x6f\x6f\x74\x20\x6f\x66\ \x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x20\x49\x66\x20\x7b\x7b\x6e\ \x75\x6d\x7d\x7d\x20\x3c\x20\x30\x2c\x20\x74\x68\x65\x20\x72\x65\ \x73\x75\x6c\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x43\x6f\x6d\ \x70\x6c\x65\x78\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x52\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\ \x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x61\x00\x64\ \x00\x69\x00\x63\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x7d\ \x00\x7d\x00\x2d\x00\x65\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x20\ \x00\x64\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\ \x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x7b\x7b\x6e\x7d\ \x7d\x2d\x74\x68\x20\x72\x6f\x6f\x74\x20\x6f\x66\x20\x7b\x7b\x6e\ \x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x4c\x00\x52\x00\x69\x00\x70\x00\x6f\x00\x72\x00\x74\ \x00\x61\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\ \x00\x7d\x00\x20\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\x74\ \x00\x65\x00\x72\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x70\x00\x7d\ \x00\x7d\x00\x2d\x00\x65\x00\x73\x00\x69\x00\x6d\x00\x6f\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\ \x73\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x20\x74\x6f\x20\x74\x68\x65\ \x20\x7b\x7b\x70\x7d\x7d\x2d\x74\x68\x20\x70\x6f\x77\x65\x72\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x1a\x00\ \x54\x00\x72\x00\x69\x00\x67\x00\x6f\x00\x6e\x00\x6f\x00\x6d\x00\ \x65\x00\x74\x00\x72\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0c\x54\x72\x69\x67\x6f\x6e\x6f\x6d\x65\x74\x72\x79\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x1c\x00\x53\ \x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x20\ \x00\x47\x00\x75\x00\x69\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0d\x48\x65\x6c\x70\x20\x43\x6f\x6e\x74\x65\x6e\x74\ \x73\x07\x00\x00\x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x20\x00\x64\x00\x69\x00\x66\x00\x65\x00\x74\ \x00\x74\x00\x6f\x00\x20\x00\x3d\x00\x20\x00\x7b\x00\x64\x00\x65\ \x00\x66\x00\x74\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ \x64\x65\x66\x61\x75\x6c\x74\x20\x3d\x20\x7b\x64\x65\x66\x74\x7d\ \x07\x00\x00\x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x12\x00\x26\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\ \x66\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x26\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x46\x00\ \x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\ \x46\x69\x6c\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x26\x00\x53\x00\x74\x00\ \x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x06\x26\x54\x6f\x6f\x6c\x73\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x16\x00\x26\x00\x56\x00\x69\x00\x73\x00\x75\x00\x61\x00\x6c\ \x00\x69\x00\x7a\x00\x7a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x26\x56\x69\x65\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x50\x00\x75\ \x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x69\ \x00\x6e\x00\x74\x00\x65\x00\x72\x00\x72\x00\x75\x00\x7a\x00\x69\ \x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ \x42\x72\x65\x61\x6b\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\ \x43\x00\x61\x00\x6c\x00\x63\x00\x6f\x00\x6c\x00\x61\x00\x74\x00\ \x72\x00\x69\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\ \x00\x43\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\ \x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0a\x00\x43\x00\x6f\x00\x70\x00\x69\x00\x61\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0c\x00\x54\x00\x61\x00\x67\x00\x6c\x00\x69\x00\x61\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x03\x43\x75\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x1e\x00\x54\x00\x72\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ \x72\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x72\x61\x77\x20\x6c\x69\ \x6e\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x72\x00\x61\x00\x63\x00\ \x63\x00\x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\x75\x00\ \x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\ \x72\x61\x77\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x45\ \x00\x73\x00\x63\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ \x45\x78\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x72\x00\x6f\x00\ \x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x46\x69\x6e\ \x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x20\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\ \x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\ \x00\x69\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ \x46\x69\x6e\x64\x20\x4e\x65\x78\x74\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x54\ \x00\x72\x00\x6f\x00\x76\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\ \x00\x63\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0d\x46\x69\x6e\x64\x20\x50\x72\x65\ \x76\x69\x6f\x75\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x6f\x00\x6d\ \x00\x6d\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x20\x00\x47\x00\x75\ \x00\x69\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ \x48\x65\x6c\x70\x20\x43\x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x2a\x00\x49\x00\x6e\x00\x73\x00\x65\x00\x72\x00\x69\x00\x73\ \x00\x63\x00\x69\x00\x20\x00\x74\x00\x61\x00\x62\x00\x75\x00\x6c\ \x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x06\x49\x6e\x64\x65\x6e\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x42\x00\x4c\x00\x27\x00\x65\x00\x76\x00\x69\x00\x64\x00\x65\x00\ \x6e\x00\x7a\x00\x69\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ \x65\x00\x20\x00\xe8\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\x00\ \x2d\x00\x73\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x74\x00\x69\x00\ \x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x74\ \x63\x68\x20\x63\x61\x73\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x4e\x00\x75\ \x00\x6f\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ \x4e\x65\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x08\x00\x41\x00\x70\x00\x72\x00\x69\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4f\x70\x65\x6e\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0e\x00\x49\x00\x6e\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ \x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x61\x73\x74\x65\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x24\x00\x54\x00\x72\x00\x61\x00\x63\x00\x63\x00\ \x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x66\x00\x75\x00\x6e\x00\ \x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0d\x50\x6c\x6f\x74\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x0c\x00\x53\x00\x74\x00\x61\x00\x6d\x00\x70\x00\ \x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x72\x69\x6e\x74\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x18\x00\x46\x00\x69\x00\x6c\x00\x65\x00\x20\x00\ \x72\x00\x65\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x69\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0c\x52\x65\x63\x65\x6e\x74\x20\x66\x69\ \x6c\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x18\x00\x46\x00\x69\x00\x6c\x00\x65\ \x00\x20\x00\x72\x00\x65\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x69\ \x08\x00\x00\x00\x04\x4d\x65\x6e\x75\x06\x00\x00\x00\x0c\x52\x65\ \x63\x65\x6e\x74\x20\x66\x69\x6c\x65\x73\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\ \x52\x00\x69\x00\x70\x00\x72\x00\x69\x00\x73\x00\x74\x00\x69\x00\ \x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x65\x64\ \x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x28\x00\x45\x00\x73\x00\x70\x00\x72\x00\x65\ \x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x72\ \x00\x65\x00\x67\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x65\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x52\x65\x67\x65\x78\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x16\x00\x53\x00\x6f\x00\x73\x00\x74\x00\x69\x00\x74\x00\x75\ \x00\x69\x00\x73\x00\x63\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x07\x52\x65\x70\x6c\x61\x63\x65\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x52\ \x00\x65\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x52\x65\x73\x65\x74\x20\ \x7a\x6f\x6f\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x73\x00\x65\x00\ \x67\x00\x75\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x52\ \x75\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x61\x00\x6c\x00\x76\x00\ \x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x61\x76\x65\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x16\x00\x53\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x20\ \x00\x74\x00\x75\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x08\x53\x61\x76\x65\x20\x41\x6c\x6c\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x14\x00\x53\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x20\x00\x63\x00\ \x6f\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\ \x61\x76\x65\x20\x41\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x65\x00\ \x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ \x74\x00\x75\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0a\x53\x65\x6c\x65\x63\x74\x20\x41\x6c\x6c\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x42\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\ \x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x69\ \x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x00\x20\x00\x64\ \x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\x61\x00\x66\x00\x69\ \x00\x63\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\ \x74\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x49\x00\ \x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\x00\x69\x00\ \x6f\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\ \x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x75\ \x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x20\x00\x7b\ \x00\x66\x00\x69\x00\x6c\x00\x65\x00\x7d\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0f\x54\x75\x72\x69\x6e\x67\x20\x2d\x20\x7b\x66\x69\ \x6c\x65\x7d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6e\x00\x6e\x00\x75\ \x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ \x55\x6e\x64\x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x26\x00\x52\x00\x69\x00\x6d\x00\ \x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x74\x00\x61\x00\x62\x00\ \x75\x00\x6c\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x6e\x69\x6e\x64\x65\x6e\ \x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x3a\x00\x49\x00\x64\x00\x65\x00\x6e\x00\x74\ \x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x73\x00\x6f\ \x00\x6c\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x6f\x00\x6c\ \x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x57\x68\x6f\x6c\x65\x20\ \x77\x6f\x72\x64\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x5a\x00\x6f\x00\x6f\ \x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x5a\x6f\x6f\x6d\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x22\x00\x49\x00\x6e\x00\x67\x00\x72\x00\x61\x00\ \x6e\x00\x64\x00\x69\x00\x73\x00\x63\x00\x69\x00\x20\x00\x74\x00\ \x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x07\x5a\x6f\x6f\x6d\x20\x69\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x52\x00\ \x69\x00\x64\x00\x75\x00\x63\x00\x69\x00\x20\x00\x74\x00\x65\x00\ \x73\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\ \x6f\x6f\x6d\x20\x6f\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x02\x00\x45\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x03\x41\x4e\x44\x07\x00\x00\x00\x06\ \x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x3e\x00\x54\x00\x6f\ \x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x65\x00\x76\ \x00\x69\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x7b\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\x00\x7b\ \x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x1f\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x6b\ \x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\x29\x20\x27\x7b\x76\x61\ \x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\ \x00\x00\x00\x06\x00\x4e\x00\x4f\x00\x4e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x03\x4e\x4f\x54\x07\x00\x00\x00\x06\x50\x61\x72\x73\ \x65\x72\x01\x03\x00\x00\x00\x02\x00\x4f\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x02\x4f\x52\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\ \x72\x01\x03\x00\x00\x00\x36\x00\x46\x00\x69\x00\x6e\x00\x65\x00\ \x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\ \x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ \x72\x00\x65\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0e\x55\x6e\x65\x78\x70\x65\x63\x74\x65\ \x64\x20\x45\x4f\x4c\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\ \x01\x03\x00\x00\x00\x42\x00\x54\x00\x6f\x00\x6b\x00\x65\x00\x6e\ \x00\x20\x00\x69\x00\x6d\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\ \x00\x73\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x7b\x00\x74\x00\x79\ \x00\x70\x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\x00\x7b\x00\x76\ \x00\x61\x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x21\x55\x6e\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x6b\ \x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\x29\x20\x27\x7b\x76\x61\ \x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\ \x00\x00\x00\x1c\x00\x50\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x6e\ \x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x74\x00\x61\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x75\x73\x74\x6f\x6d\ \x07\x00\x00\x00\x06\x54\x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\ \x0e\x00\x44\x00\x69\x00\x66\x00\x65\x00\x74\x00\x74\x00\x6f\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x65\x66\x61\x75\x6c\x74\ \x07\x00\x00\x00\x06\x54\x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\ \x0a\x00\x46\x00\x41\x00\x4c\x00\x53\x00\x4f\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x05\x46\x41\x4c\x53\x45\x07\x00\x00\x00\x09\x55\ \x74\x69\x6c\x69\x74\x69\x65\x73\x01\x03\x00\x00\x00\x08\x00\x56\ \x00\x45\x00\x52\x00\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ \x54\x52\x55\x45\x07\x00\x00\x00\x09\x55\x74\x69\x6c\x69\x74\x69\ \x65\x73\x01\x88\x00\x00\x00\x02\x01\x01\ \x00\x00\x0c\x86\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x01\xc8\x00\x00\x05\x42\x00\x00\x09\x54\x00\x00\x46\x24\ \x00\x00\x08\xb0\x00\x00\x4a\xc4\x00\x00\x03\x1c\x00\x00\x53\x44\ \x00\x00\x09\x34\x00\x00\x54\xc7\x00\x00\x04\x8e\x00\x00\x59\xbe\ \x00\x00\x06\x49\x00\x04\xa6\x79\x00\x00\x02\xf5\x00\x04\xcf\x04\ \x00\x00\x03\x42\x00\x04\xd0\x44\x00\x00\x03\x69\x00\x05\x66\xbe\ \x00\x00\x04\xb4\x00\x05\x8b\xaf\x00\x00\x05\x95\x00\x05\x97\x95\ \x00\x00\x0a\x80\x00\x05\x98\xc5\x00\x00\x06\x6f\x00\x05\xc4\xaf\ \x00\x00\x07\x6a\x00\x06\x16\x5d\x00\x00\x07\xf8\x00\x07\x2b\xd4\ \x00\x00\x00\xa4\x00\x2a\xbb\x04\x00\x00\x01\x66\x00\x2a\xd0\x25\ \x00\x00\x01\x96\x00\x2b\xcf\xc7\x00\x00\x01\xf7\x00\x4a\x61\x75\ \x00\x00\x0a\x5b\x00\x56\x8a\xa5\x00\x00\x04\xdb\x00\x57\x90\x54\ \x00\x00\x05\x03\x00\x58\xbd\xc8\x00\x00\x05\xbc\x00\x78\xfd\xf4\ \x00\x00\x00\xc8\x00\xdf\x75\xfd\x00\x00\x01\x21\x01\x65\xf6\x9e\ \x00\x00\x08\x1f\x01\xc5\xe4\x27\x00\x00\x00\x00\x01\xc5\xe4\x27\ \x00\x00\x02\x57\x01\xd6\xd1\x33\x00\x00\x08\x74\x02\xbb\x66\x33\ \x00\x00\x01\xc6\x03\x8a\xac\xb3\x00\x00\x02\x27\x03\xe7\x7e\x93\ \x00\x00\x05\x2b\x04\x65\x01\xf4\x00\x00\x03\x90\x04\xac\xab\x5d\ \x00\x00\x0a\x10\x04\xd3\x4e\x87\x00\x00\x09\xaa\x04\xd3\x6a\x87\ \x00\x00\x08\xd0\x05\x04\xac\x54\x00\x00\x04\x2c\x05\x04\xaf\x94\ \x00\x00\x07\x91\x05\xc8\xa3\xf3\x00\x00\x03\xc2\x06\x5f\x70\xd4\ \x00\x00\x08\x49\x07\x21\x9e\x93\x00\x00\x07\xc2\x08\xc7\x27\xc5\ \x00\x00\x05\xea\x08\xc7\x43\xbc\x00\x00\x06\x96\x09\x8c\x74\xd3\ \x00\x00\x06\xc5\x09\xa3\xa0\x35\x00\x00\x04\x5b\x0a\x64\x3c\x14\ \x00\x00\x00\x3c\x0a\x64\x3c\x14\x00\x00\x02\xc1\x0a\xbc\x8c\x74\ \x00\x00\x0a\x35\x0a\xc6\x13\x42\x00\x00\x00\x75\x0a\xc6\x13\x42\ \x00\x00\x02\x92\x0b\xa3\xdc\x0c\x00\x00\x06\xf1\x0c\x63\x9a\xcd\ \x00\x00\x06\x14\x0c\x99\xa1\x53\x00\x00\x00\xed\x0c\x99\xa1\x53\ \x00\x00\x03\xf8\x0e\x79\x28\x5c\x00\x00\x09\x73\x0e\x95\xdd\x25\ \x00\x00\x05\x5e\x0f\x18\x4b\xfd\x00\x00\x07\x1e\x69\x00\x00\x0a\ \xa4\x03\x00\x00\x00\x10\x51\x73\x4e\x8e\x00\x54\x00\x75\x00\x72\ \x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ \x41\x62\x6f\x75\x74\x20\x54\x75\x72\x69\x6e\x67\x07\x00\x00\x00\ \x0b\x41\x62\x6f\x75\x74\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0e\x6c\xe8\x91\xca\x00\x2f\x53\xd6\x6d\x88\x6c\xe8\x91\xca\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\ \x74\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x43\x6f\x6d\x6d\x65\x6e\ \x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x06\x8b\xa1\x7b\x97\x56\ \x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x61\x6c\x63\x75\ \x6c\x61\x74\x6f\x72\x07\x00\x00\x00\x0a\x43\x61\x6c\x63\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x02\x5d\xe6\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x04\x6c\x65\x66\x74\x07\x00\x00\x00\x09\x45\ \x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\x00\x00\x00\x02\x53\xf3\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x72\x69\x67\x68\x74\x07\ \x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\x00\ \x00\x00\x08\x5e\x2e\x52\xa9\x76\xee\x5f\x55\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0d\x48\x65\x6c\x70\x20\x43\x6f\x6e\x74\x65\x6e\ \x74\x73\x07\x00\x00\x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x16\x7f\x3a\x77\x01\x00\x20\x00\x3d\x00\ \x20\x00\x7b\x00\x64\x00\x65\x00\x66\x00\x74\x00\x7d\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x10\x64\x65\x66\x61\x75\x6c\x74\x20\x3d\ \x20\x7b\x64\x65\x66\x74\x7d\x07\x00\x00\x00\x0a\x48\x65\x6c\x70\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x7f\x16\x8f\x91\ \x00\x28\x00\x26\x00\x45\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x26\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x65\x87\x4e\xf6\ \x00\x28\x00\x26\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x26\x46\x69\x6c\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x5d\xe5\x51\x77\ \x00\x28\x00\x26\x00\x4f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x26\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x89\xc6\x56\ \xfe\x00\x28\x00\x26\x00\x56\x00\x29\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x26\x56\x69\x65\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x30\x6b\ \x21\x53\x39\x91\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x30\ \x20\x6d\x61\x74\x63\x68\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x51\x73\x4e\ \x8e\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0c\x41\x62\x6f\x75\x74\x20\x54\x75\x72\ \x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x06\x8b\xa1\x7b\x97\x56\x68\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\ \x6f\x72\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0e\x6c\xe8\x91\xca\x00\x2f\x53\xd6\x6d\ \x88\x6c\xe8\x91\xca\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x43\ \x6f\x6d\x6d\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x59\x0d\x52\x36\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x04\x52\x6a\x52\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ \x43\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x04\x90\x00\x51\xfa\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x04\x45\x78\x69\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x67\ \xe5\x62\x7e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x46\x69\x6e\ \x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0a\x67\xe5\x62\x7e\x4e\x0b\x4e\x00\x4e\x2a\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x69\x6e\x64\x20\x4e\ \x65\x78\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x0a\x67\xe5\x62\x7e\x4e\x0a\x4e\x00\ \x4e\x2a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x46\x69\x6e\x64\ \x20\x50\x72\x65\x76\x69\x6f\x75\x73\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x5e\x2e\ \x52\xa9\x76\xee\x5f\x55\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ \x48\x65\x6c\x70\x20\x43\x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0a\x63\xd2\x51\x65\x52\x36\x88\x68\x7b\x26\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x06\x49\x6e\x64\x65\x6e\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x0a\x53\x3a\x52\x06\x59\x27\x5c\x0f\x51\x99\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0a\x4d\x61\x74\x63\x68\x20\x63\x61\x73\x65\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x04\x65\xb0\x5e\xfa\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x03\x4e\x65\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x62\x53\x5f\x00\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x04\x4f\x70\x65\x6e\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x04\x7c\x98\x8d\x34\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\ \x61\x73\x74\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x04\x62\x53\x53\x70\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x05\x50\x72\x69\x6e\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x08\x8f\xd1\x67\x1f\x65\x87\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0c\x52\x65\x63\x65\x6e\x74\x20\x66\x69\x6c\x65\x73\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x08\x8f\xd1\x67\x1f\x65\x87\x4e\xf6\x08\x00\x00\x00\ \x04\x4d\x65\x6e\x75\x06\x00\x00\x00\x0c\x52\x65\x63\x65\x6e\x74\ \x20\x66\x69\x6c\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x60\x62\x59\x0d\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x65\x64\x6f\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0a\x6b\x63\x52\x19\x88\x68\x8f\xbe\x5f\x0f\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x05\x52\x65\x67\x65\x78\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\ \x66\xff\x63\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x52\x65\ \x70\x6c\x61\x63\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x60\x62\x59\x0d\x9e\xd8\ \x8b\xa4\x7f\x29\x65\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ \x52\x65\x73\x65\x74\x20\x7a\x6f\x6f\x6d\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x8f\ \xd0\x88\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x52\x75\x6e\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x04\x4f\xdd\x5b\x58\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x04\x53\x61\x76\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x51\x68\x90\xe8\ \x4f\xdd\x5b\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x61\ \x76\x65\x20\x41\x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x06\x53\xe6\x5b\x58\x4e\ \x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x61\x76\x65\x20\ \x41\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x04\x51\x68\x90\x09\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0a\x53\x65\x6c\x65\x63\x74\x20\x41\x6c\x6c\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x1e\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x2d\x00\x20\x00\x7b\x00\x66\x00\x69\x00\x6c\x00\x65\ \x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x75\x72\x69\ \x6e\x67\x20\x2d\x20\x7b\x66\x69\x6c\x65\x7d\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\ \x64\xa4\x6d\x88\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x55\x6e\ \x64\x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0a\x52\x20\x96\x64\x52\x36\x88\x68\x7b\ \x26\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x6e\x69\x6e\x64\ \x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x0c\x4e\xc5\x53\x39\x91\x4d\x5b\x8c\ \x65\x74\x8b\xcd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x57\x68\ \x6f\x6c\x65\x20\x77\x6f\x72\x64\x73\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x7f\x29\ \x65\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x5a\x6f\x6f\x6d\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x04\x65\x3e\x59\x27\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x07\x5a\x6f\x6f\x6d\x20\x69\x6e\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x04\x7f\ \x29\x5c\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x6f\x6f\ \x6d\x20\x6f\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x7b\x00\x6e\x00\x75\ \x00\x6d\x00\x7d\x6b\x21\x53\x39\x91\x4d\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0d\x7b\x6e\x75\x6d\x7d\x20\x6d\x61\x74\x63\x68\x65\ \x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x02\x54\x8c\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x03\x41\x4e\x44\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\ \x01\x03\x00\x00\x00\x2a\x97\x00\x89\x81\x76\x84\x7b\x26\x53\xf7\ \x00\x28\x00\x7b\x00\x74\x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\ \x00\x20\x00\x27\x00\x7b\x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x45\x78\x70\x65\x63\x74\ \x65\x64\x20\x74\x6f\x6b\x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\ \x29\x20\x27\x7b\x76\x61\x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\ \x72\x73\x65\x72\x01\x03\x00\x00\x00\x02\x4e\x0d\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x03\x4e\x4f\x54\x07\x00\x00\x00\x06\x50\x61\ \x72\x73\x65\x72\x01\x03\x00\x00\x00\x02\x62\x16\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x02\x4f\x52\x07\x00\x00\x00\x06\x50\x61\x72\ \x73\x65\x72\x01\x03\x00\x00\x00\x0e\x61\x0f\x59\x16\x76\x84\x00\ \x20\x00\x45\x00\x4f\x00\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0e\x55\x6e\x65\x78\x70\x65\x63\x74\x65\x64\x20\x45\x4f\x4c\x07\ \x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x2a\ \x61\x0f\x59\x16\x76\x84\x4e\xe4\x72\x4c\x00\x28\x00\x7b\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\x00\x7b\ \x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x21\x55\x6e\x65\x78\x70\x65\x63\x74\x65\x64\x20\x74\ \x6f\x6b\x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\x29\x20\x27\x7b\ \x76\x61\x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\ \x01\x03\x00\x00\x00\x04\x81\xea\x5b\x9a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x06\x43\x75\x73\x74\x6f\x6d\x07\x00\x00\x00\x06\x54\ \x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\x04\x7f\x3a\x77\x01\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x65\x66\x61\x75\x6c\x74\ \x07\x00\x00\x00\x06\x54\x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\ \x02\x50\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x41\x4c\ \x53\x45\x07\x00\x00\x00\x09\x55\x74\x69\x6c\x69\x74\x69\x65\x73\ \x01\x03\x00\x00\x00\x02\x5b\x9e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x04\x54\x52\x55\x45\x07\x00\x00\x00\x09\x55\x74\x69\x6c\x69\ \x74\x69\x65\x73\x01\ \x00\x00\x54\x09\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x06\xe0\x00\x00\x05\x42\x00\x00\x4b\x3e\x00\x00\x05\xba\ \x00\x00\x0f\xfc\x00\x00\x05\xca\x00\x00\x10\x25\x00\x00\x46\x24\ \x00\x00\x4a\x7a\x00\x00\x4a\xc4\x00\x00\x39\x24\x00\x00\x53\x44\ \x00\x00\x4b\x16\x00\x00\x54\xc7\x00\x00\x3f\x0d\x00\x00\x59\xbe\ \x00\x00\x43\x6d\x00\x00\x5b\x2a\x00\x00\x0c\x69\x00\x04\xa6\x79\ \x00\x00\x38\xf1\x00\x04\xcf\x04\x00\x00\x3b\x52\x00\x04\xd0\x44\ \x00\x00\x3c\x3e\x00\x04\xf6\x35\x00\x00\x3d\xee\x00\x05\x66\xbe\ \x00\x00\x3f\x35\x00\x05\x8b\xaf\x00\x00\x42\x25\x00\x05\x97\x95\ \x00\x00\x4c\xde\x00\x05\x98\xc5\x00\x00\x43\xa1\x00\x05\xab\x60\ \x00\x00\x46\x52\x00\x05\xc4\xaf\x00\x00\x48\x24\x00\x05\xd8\x04\ \x00\x00\x12\xc8\x00\x05\xd8\x04\x00\x00\x48\xfb\x00\x06\x16\x5d\ \x00\x00\x49\x92\x00\x07\x2b\xd4\x00\x00\x32\x1a\x00\x0d\x20\x0e\ \x00\x00\x1f\xd6\x00\x26\x84\x60\x00\x00\x2d\xff\x00\x2a\xbb\x04\ \x00\x00\x34\xaa\x00\x2a\xd0\x25\x00\x00\x34\xe4\x00\x2b\xcf\xc7\ \x00\x00\x35\x4d\x00\x47\x69\x5b\x00\x00\x36\x96\x00\x48\x89\xf3\ \x00\x00\x15\xe4\x00\x48\x89\xf3\x00\x00\x36\xcc\x00\x4a\x2b\x82\ \x00\x00\x38\x03\x00\x4a\x61\x75\x00\x00\x4c\xaf\x00\x4a\xb9\xb7\ \x00\x00\x39\x5e\x00\x4d\x96\x0a\x00\x00\x0b\xfd\x00\x56\x8a\xa5\ \x00\x00\x3f\x64\x00\x57\x90\x54\x00\x00\x3f\xe4\x00\x57\xc7\x90\ \x00\x00\x3e\x6e\x00\x58\xbd\xc8\x00\x00\x42\x68\x00\x5a\xac\x3a\ \x00\x00\x0c\x2a\x00\x5a\xac\x3a\x00\x00\x0e\x6d\x00\x64\x1f\x3d\ \x00\x00\x07\xb4\x00\x71\x3e\x6d\x00\x00\x08\x25\x00\x74\xaa\x80\ \x00\x00\x13\x99\x00\x74\xaa\x80\x00\x00\x48\xb2\x00\x76\x11\x75\ \x00\x00\x0a\x97\x00\x78\xfd\xf4\x00\x00\x32\x46\x00\xc3\xb7\x0e\ \x00\x00\x33\x1d\x00\xdb\x41\x02\x00\x00\x45\xfd\x00\xdb\xc9\x5d\ \x00\x00\x13\xe5\x00\xdf\x75\xfd\x00\x00\x34\x03\x00\xe5\xe0\x6e\ \x00\x00\x1f\x32\x01\x0a\xfe\xf5\x00\x00\x11\x8e\x01\x0a\xfe\xf5\ \x00\x00\x13\x39\x01\x1b\x64\xdd\x00\x00\x02\xbc\x01\x65\xf6\x9e\ \x00\x00\x49\xbd\x01\xa1\xf9\xad\x00\x00\x05\x9b\x01\xa4\xb6\x1e\ \x00\x00\x2c\xf0\x01\xc5\xe4\x27\x00\x00\x00\x00\x01\xc5\xe4\x27\ \x00\x00\x35\xbb\x01\xd6\xd1\x33\x00\x00\x4a\x34\x01\xe8\x81\x9e\ \x00\x00\x2a\xca\x02\x13\x44\x8e\x00\x00\x2b\xde\x02\x1e\xa0\xdd\ \x00\x00\x06\x87\x02\x7e\xe3\x0b\x00\x00\x45\x2d\x02\xbb\x66\x33\ \x00\x00\x35\x14\x02\xf9\xc5\xc5\x00\x00\x00\x42\x02\xfb\x35\xf9\ \x00\x00\x2d\xc0\x03\x09\xc6\xb4\x00\x00\x11\xef\x03\x17\x7e\xfe\ \x00\x00\x17\x49\x03\x2b\xa4\xd4\x00\x00\x41\x2d\x03\x31\x56\xac\ \x00\x00\x38\x70\x03\x87\x76\x3e\x00\x00\x29\x80\x03\x8a\xac\xb3\ \x00\x00\x35\x81\x03\x9c\x41\xea\x00\x00\x0d\x61\x03\xac\x25\x3e\ \x00\x00\x1c\x30\x03\xbb\x8c\x29\x00\x00\x46\x83\x03\xc8\x4a\xce\ \x00\x00\x08\xf8\x03\xc8\xef\xe0\x00\x00\x37\x3b\x03\xe7\x7e\x93\ \x00\x00\x41\x87\x04\x47\x32\xd0\x00\x00\x0b\xbd\x04\x47\x32\xd0\ \x00\x00\x3b\xff\x04\x50\xdd\x0e\x00\x00\x1a\xe1\x04\x54\xd7\xae\ \x00\x00\x24\xba\x04\x65\x01\xf4\x00\x00\x3c\x6d\x04\x68\x6f\x17\ \x00\x00\x30\x28\x04\x6b\x24\x8d\x00\x00\x01\xf7\x04\x94\x71\x6d\ \x00\x00\x01\x26\x04\xa6\x36\x5a\x00\x00\x0d\xa1\x04\xa6\x36\x5a\ \x00\x00\x0e\xeb\x04\xa6\x36\x5a\x00\x00\x0f\x70\x04\xaa\xc9\x93\ \x00\x00\x3d\x2d\x04\xaa\xc9\xda\x00\x00\x09\x48\x04\xaa\xc9\xda\ \x00\x00\x0d\x25\x04\xaa\xc9\xda\x00\x00\x0d\xd5\x04\xac\xab\x5d\ \x00\x00\x4c\x3a\x04\xcb\x8b\x5e\x00\x00\x18\x2c\x04\xcf\x68\x44\ \x00\x00\x3b\x83\x04\xd3\x4e\x87\x00\x00\x4b\xb8\x04\xd3\x6a\x87\ \x00\x00\x4a\x9e\x05\x02\xad\x99\x00\x00\x2e\x2c\x05\x04\xac\x54\ \x00\x00\x3e\x1b\x05\x04\xaf\x94\x00\x00\x48\x5b\x05\x38\xa5\xba\ \x00\x00\x10\x4e\x05\x38\xa5\xca\x00\x00\x10\x84\x05\x40\x05\xba\ \x00\x00\x10\xba\x05\x40\x05\xca\x00\x00\x10\xf0\x05\x6a\x9a\x6e\ \x00\x00\x40\xf2\x05\x8b\x46\x55\x00\x00\x0a\x01\x05\x8c\xbc\x8e\ \x00\x00\x12\x89\x05\x9c\x2b\xa4\x00\x00\x44\xb3\x05\xbd\x60\x70\ \x00\x00\x0b\x56\x05\xc8\xa3\xf3\x00\x00\x3c\xad\x06\x1d\x00\x2e\ \x00\x00\x21\xa4\x06\x32\x83\x35\x00\x00\x38\x35\x06\x39\x8e\x9d\ \x00\x00\x05\x30\x06\x43\xc1\xda\x00\x00\x09\xc1\x06\x43\xc1\xda\ \x00\x00\x15\x48\x06\x5f\x70\xd4\x00\x00\x49\xf7\x06\x67\x79\x75\ \x00\x00\x0f\x1f\x06\x74\x2d\x34\x00\x00\x0f\xa5\x07\x00\x9f\xf3\ \x00\x00\x16\x43\x07\x0e\xa2\xae\x00\x00\x1a\x57\x07\x21\x9e\x93\ \x00\x00\x49\x2a\x07\x35\x3b\xb4\x00\x00\x44\x5d\x07\x41\x3a\xa9\ \x00\x00\x40\x55\x07\x4e\x94\x3e\x00\x00\x0c\xcf\x07\x5e\x35\x19\ \x00\x00\x30\xdb\x07\x71\x8c\x2e\x00\x00\x20\x74\x07\x93\x7a\x59\ \x00\x00\x15\x8a\x07\x95\xe8\x2d\x00\x00\x00\x75\x07\xa4\x77\xee\ \x00\x00\x33\x77\x07\xcf\x81\x0c\x00\x00\x42\xe6\x07\xdb\xd7\x07\ \x00\x00\x11\x26\x07\xdb\xd7\x07\x00\x00\x45\x77\x08\x23\xc8\xe4\ \x00\x00\x12\xfa\x08\x23\xc8\xe4\x00\x00\x36\xfe\x08\x30\xb0\x8e\ \x00\x00\x19\xcd\x08\x3e\xfd\xeb\x00\x00\x0a\xe2\x08\x42\xa9\x4c\ \x00\x00\x3b\xba\x08\x5d\xf2\x65\x00\x00\x47\x18\x08\x68\x02\x45\ \x00\x00\x2f\x03\x08\x97\x65\xc5\x00\x00\x3a\x90\x08\x99\xc0\xa0\ \x00\x00\x30\xa5\x08\xb0\xc4\xed\x00\x00\x06\x1b\x08\xc7\x27\xc5\ \x00\x00\x42\xb0\x08\xc7\x43\xbc\x00\x00\x43\xd6\x08\xf7\xee\x0a\ \x00\x00\x0a\x59\x08\xf7\xee\x0a\x00\x00\x0c\x94\x08\xf7\xee\x0a\ \x00\x00\x0e\xae\x08\xf7\xee\x0a\x00\x00\x12\x4c\x09\x07\xc1\x2e\ \x00\x00\x1e\x93\x09\x61\xa0\x69\x00\x00\x00\xac\x09\x73\xe8\xd4\ \x00\x00\x3a\xd2\x09\x8c\x74\xd3\x00\x00\x44\x19\x09\xa3\xa0\x35\ \x00\x00\x3e\xa8\x09\xd4\xed\x6e\x00\x00\x27\x70\x0a\x44\x98\x3d\ \x00\x00\x07\x43\x0a\x60\x1a\xe2\x00\x00\x34\x54\x0a\x64\x3c\x14\ \x00\x00\x09\x84\x0a\x64\x3c\x14\x00\x00\x38\xb9\x0a\x93\xcc\xfe\ \x00\x00\x1c\xca\x0a\xa5\x09\x9e\x00\x00\x1d\x45\x0a\xbc\x8c\x74\ \x00\x00\x4c\x7d\x0a\xc6\x13\x42\x00\x00\x14\xc2\x0a\xc6\x13\x42\ \x00\x00\x37\xcc\x0a\xcc\xf6\x2e\x00\x00\x32\xc5\x0a\xdf\x89\x4e\ \x00\x00\x23\x26\x0a\xfa\xf7\x6e\x00\x00\x29\xf5\x0b\x0f\x05\x23\ \x00\x00\x2d\x87\x0b\x11\xcf\x15\x00\x00\x3d\x69\x0b\x14\x09\x7d\ \x00\x00\x01\x81\x0b\x31\x11\xbe\x00\x00\x18\xc1\x0b\x66\x28\xd2\ \x00\x00\x46\xda\x0b\x66\xf3\x20\x00\x00\x02\x70\x0b\xa3\xdc\x0c\ \x00\x00\x44\xe6\x0b\xb0\xfc\x65\x00\x00\x40\x18\x0b\xbc\x15\xcd\ \x00\x00\x06\xd1\x0b\xc2\x58\x6e\x00\x00\x27\xfc\x0b\xc8\x4d\xc4\ \x00\x00\x35\xfc\x0b\xec\x62\x8e\x00\x00\x25\x96\x0c\x11\xf5\x4e\ \x00\x00\x39\x92\x0c\x2d\x62\xed\x00\x00\x31\xa9\x0c\x40\xd3\x8a\ \x00\x00\x08\xb9\x0c\x50\x31\xfd\x00\x00\x04\x01\x0c\x63\x9a\xcd\ \x00\x00\x43\x2a\x0c\x63\xcf\x49\x00\x00\x16\x10\x0c\x97\x75\x1e\ \x00\x00\x16\x6f\x0c\x99\xa1\x53\x00\x00\x33\xc1\x0c\x99\xa1\x53\ \x00\x00\x3d\xac\x0c\xbb\x01\x73\x00\x00\x45\xbc\x0c\xf9\x87\xb5\ \x00\x00\x14\xf9\x0d\x02\x17\x04\x00\x00\x40\xb0\x0d\x03\x4c\x7e\ \x00\x00\x23\xeb\x0d\x2a\x4a\xce\x00\x00\x37\x7e\x0d\x4c\x62\x8e\ \x00\x00\x26\x2d\x0d\x62\xb0\x07\x00\x00\x3c\xf9\x0d\x7c\xca\xde\ \x00\x00\x0e\x12\x0d\x7c\xca\xde\x00\x00\x3f\x98\x0e\x15\x49\x3e\ \x00\x00\x21\x19\x0e\x46\xd4\x0e\x00\x00\x19\x4a\x0e\x68\xf3\x69\ \x00\x00\x47\xb8\x0e\x79\x28\x5c\x00\x00\x4b\x63\x0e\x84\x76\x03\ \x00\x00\x3b\x19\x0e\x87\xb0\xad\x00\x00\x04\xeb\x0e\x95\xdd\x25\ \x00\x00\x41\xd4\x0e\xb4\x64\xbe\x00\x00\x32\x75\x0e\xbf\xbc\xfe\ \x00\x00\x1b\x86\x0e\xc4\x49\x9e\x00\x00\x28\x7a\x0e\xdd\xd4\x5e\ \x00\x00\x2c\x5a\x0e\xf3\x4d\x5d\x00\x00\x04\x89\x0e\xff\xd7\x99\ \x00\x00\x36\x35\x0f\x18\x4b\xfd\x00\x00\x47\x6c\x0f\x55\x9c\xfe\ \x00\x00\x1d\xc5\x0f\x6d\xb6\x6e\x00\x00\x26\xc4\x0f\x81\xd3\x6d\ \x00\x00\x05\xd6\x0f\xbb\xfa\xfe\x00\x00\x22\x68\x0f\xc1\xd2\xad\ \x00\x00\x14\x49\x0f\xd9\xe1\x67\x00\x00\x2f\x57\x0f\xe4\x5f\x1d\ \x00\x00\x02\xf8\x69\x00\x00\x4d\x08\x03\x00\x00\x00\x16\x00\xdc\ \x00\x62\x00\x65\x00\x72\x00\x20\x00\x54\x00\x75\x00\x72\x00\x69\ \x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x62\ \x6f\x75\x74\x20\x54\x75\x72\x69\x6e\x67\x07\x00\x00\x00\x0b\x41\ \x62\x6f\x75\x74\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\ \x00\x4c\x00\x69\x00\x7a\x00\x65\x00\x6e\x00\x7a\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x07\x4c\x69\x63\x65\x6e\x73\x65\x07\x00\x00\ \x00\x0b\x41\x62\x6f\x75\x74\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x10\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\ \x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x72\x6f\ \x67\x72\x61\x6d\x07\x00\x00\x00\x0b\x41\x62\x6f\x75\x74\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x46\x00\x28\x00\x5b\x00\x62\ \x00\x5d\x00\x53\x00\x43\x00\x48\x00\x52\x00\x49\x00\x54\x00\x54\ \x00\x57\x00\x45\x00\x49\x00\x54\x00\x45\x00\x5b\x00\x2f\x00\x62\ \x00\x5d\x00\x20\x00\x5b\x00\x63\x00\x5d\x00\x7b\x00\x73\x00\x74\ \x00\x65\x00\x70\x00\x7d\x00\x5b\x00\x2f\x00\x63\x00\x5d\x00\x29\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x28\x5b\x62\x5d\x53\x54\ \x45\x50\x5b\x2f\x62\x5d\x20\x5b\x63\x5d\x7b\x73\x74\x65\x70\x7d\ \x5b\x2f\x63\x5d\x29\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\ \x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x67\x00\xfc\x00\x6c\x00\x74\ \x00\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\x4e\x00\x61\x00\x6d\ \x00\x65\x00\x3a\x00\x20\x00\x7b\x00\x6e\x00\x61\x00\x6d\x00\x65\ \x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x49\x6e\x76\x61\ \x6c\x69\x64\x20\x6e\x61\x6d\x65\x3a\x20\x7b\x6e\x61\x6d\x65\x7d\ \x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x40\x00\ \x55\x00\x6e\x00\x67\x00\xfc\x00\x6c\x00\x74\x00\x69\x00\x67\x00\ \x65\x00\x72\x00\x20\x00\x56\x00\x61\x00\x72\x00\x69\x00\x61\x00\ \x62\x00\x6c\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\ \x3a\x00\x20\x00\x7b\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x7d\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x1d\x49\x6e\x76\x61\x6c\x69\x64\ \x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x6e\x61\x6d\x65\x3a\x20\ \x7b\x6e\x61\x6d\x65\x7d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\ \x03\x00\x00\x00\x42\x00\x55\x00\x6e\x00\x62\x00\x65\x00\x6b\x00\ \x61\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\x41\x00\ \x6e\x00\x77\x00\x65\x00\x69\x00\x73\x00\x75\x00\x6e\x00\x67\x00\ \x73\x00\x74\x00\x79\x00\x70\x00\x3a\x00\x20\x00\x7b\x00\x74\x00\ \x79\x00\x70\x00\x65\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1e\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x73\x74\x61\x74\x65\x6d\x65\ \x6e\x74\x20\x74\x79\x70\x65\x3a\x20\x7b\x74\x79\x70\x65\x7d\x07\ \x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x22\x00\x56\ \x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ \x00\x7b\x00\x76\x00\x61\x00\x72\x00\x7d\x00\x20\x00\x3d\x00\x20\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x56\x61\x72\x69\x61\x62\ \x6c\x65\x20\x7b\x76\x61\x72\x7d\x20\x3d\x20\x07\x00\x00\x00\x04\ \x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x18\x00\x5b\x00\x62\x00\x5d\ \x00\x53\x00\x4f\x00\x4e\x00\x53\x00\x54\x00\x5b\x00\x2f\x00\x62\ \x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x5b\x62\x5d\x45\ \x4c\x53\x45\x5b\x2f\x62\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\ \x01\x03\x00\x00\x00\xa0\x00\x5b\x00\x62\x00\x5d\x00\x46\x00\xdc\ \x00\x52\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\x00\x5b\x00\x63\ \x00\x5d\x00\x7b\x00\x76\x00\x61\x00\x72\x00\x7d\x00\x5b\x00\x2f\ \x00\x63\x00\x5d\x00\x20\x00\x5b\x00\x62\x00\x5d\x00\x56\x00\x4f\ \x00\x4e\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\x00\x5b\x00\x63\ \x00\x5d\x00\x7b\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x7d\ \x00\x5b\x00\x2f\x00\x63\x00\x5d\x00\x20\x00\x5b\x00\x62\x00\x5d\ \x00\x42\x00\x49\x00\x53\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\ \x00\x5b\x00\x63\x00\x5d\x00\x7b\x00\x65\x00\x6e\x00\x64\x00\x7d\ \x00\x5b\x00\x2f\x00\x63\x00\x5d\x00\x20\x00\x7b\x00\x73\x00\x74\ \x00\x65\x00\x70\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x50\ \x5b\x62\x5d\x46\x4f\x52\x5b\x2f\x62\x5d\x20\x5b\x63\x5d\x7b\x76\ \x61\x72\x7d\x5b\x2f\x63\x5d\x20\x5b\x62\x5d\x46\x52\x4f\x4d\x5b\ \x2f\x62\x5d\x20\x5b\x63\x5d\x7b\x62\x65\x67\x69\x6e\x7d\x5b\x2f\ \x63\x5d\x20\x5b\x62\x5d\x54\x4f\x5b\x2f\x62\x5d\x20\x5b\x63\x5d\ \x7b\x65\x6e\x64\x7d\x5b\x2f\x63\x5d\x20\x7b\x73\x74\x65\x70\x7d\ \x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x4a\x00\ \x5b\x00\x62\x00\x5d\x00\x46\x00\x55\x00\x4e\x00\x4b\x00\x54\x00\ \x49\x00\x4f\x00\x4e\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\x00\ \x5b\x00\x63\x00\x5d\x00\x7b\x00\x66\x00\x75\x00\x6e\x00\x63\x00\ \x7d\x00\x28\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\ \x29\x00\x5b\x00\x2f\x00\x63\x00\x5d\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x25\x5b\x62\x5d\x46\x55\x4e\x43\x54\x49\x4f\x4e\x5b\x2f\ \x62\x5d\x20\x5b\x63\x5d\x7b\x66\x75\x6e\x63\x7d\x28\x7b\x61\x72\ \x67\x73\x7d\x29\x5b\x2f\x63\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\ \x6f\x01\x03\x00\x00\x00\x32\x00\x5b\x00\x62\x00\x5d\x00\x57\x00\ \x45\x00\x4e\x00\x4e\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\x00\ \x5b\x00\x63\x00\x5d\x00\x7b\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\ \x7d\x00\x5b\x00\x2f\x00\x63\x00\x5d\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x17\x5b\x62\x5d\x49\x46\x5b\x2f\x62\x5d\x20\x5b\x63\x5d\ \x7b\x63\x6f\x6e\x64\x7d\x5b\x2f\x63\x5d\x07\x00\x00\x00\x04\x41\ \x6c\x67\x6f\x01\x03\x00\x00\x00\x1e\x00\x5b\x00\x62\x00\x5d\x00\ \x50\x00\x52\x00\x4f\x00\x47\x00\x52\x00\x41\x00\x4d\x00\x4d\x00\ \x5b\x00\x2f\x00\x62\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0e\x5b\x62\x5d\x50\x52\x4f\x47\x52\x41\x4d\x5b\x2f\x62\x5d\x07\ \x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x38\x00\x5b\ \x00\x62\x00\x5d\x00\x53\x00\x4f\x00\x4c\x00\x41\x00\x4e\x00\x47\ \x00\x45\x00\x5b\x00\x2f\x00\x62\x00\x5d\x00\x20\x00\x5b\x00\x63\ \x00\x5d\x00\x7b\x00\x63\x00\x6f\x00\x6e\x00\x64\x00\x7d\x00\x5b\ \x00\x2f\x00\x63\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ \x5b\x62\x5d\x57\x48\x49\x4c\x45\x5b\x2f\x62\x5d\x20\x5b\x63\x5d\ \x7b\x63\x6f\x6e\x64\x7d\x5b\x2f\x63\x5d\x07\x00\x00\x00\x04\x41\ \x6c\x67\x6f\x01\x03\x00\x00\x00\x16\x00\x5b\x00\x69\x00\x5d\x00\ \x66\x00\x72\x00\x65\x00\x69\x00\x5b\x00\x2f\x00\x69\x00\x5d\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x0c\x5b\x69\x5d\x65\x6d\x70\x74\ \x79\x5b\x2f\x69\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\ \x00\x00\x00\x20\x00\x5b\x00\x6b\x00\x5d\x00\x56\x00\x45\x00\x52\ \x00\x4c\x00\x41\x00\x53\x00\x53\x00\x45\x00\x4e\x00\x5b\x00\x2f\ \x00\x6b\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x5b\x6b\ \x5d\x42\x52\x45\x41\x4b\x5b\x2f\x6b\x5d\x07\x00\x00\x00\x04\x41\ \x6c\x67\x6f\x01\x03\x00\x00\x00\x3a\x00\x5b\x00\x6b\x00\x5d\x00\ \x41\x00\x55\x00\x46\x00\x52\x00\x55\x00\x46\x00\x45\x00\x4e\x00\ \x5b\x00\x2f\x00\x6b\x00\x5d\x00\x20\x00\x5b\x00\x63\x00\x5d\x00\ \x7b\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x7d\x00\x5b\x00\x2f\x00\ \x63\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x5b\x6b\x5d\ \x43\x41\x4c\x4c\x5b\x2f\x6b\x5d\x20\x5b\x63\x5d\x7b\x63\x6f\x64\ \x65\x7d\x5b\x2f\x63\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\ \x03\x00\x00\x00\x22\x00\x5b\x00\x6b\x00\x5d\x00\x46\x00\x4f\x00\ \x52\x00\x54\x00\x53\x00\x45\x00\x54\x00\x5a\x00\x45\x00\x4e\x00\ \x5b\x00\x2f\x00\x6b\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0f\x5b\x6b\x5d\x43\x4f\x4e\x54\x49\x4e\x55\x45\x5b\x2f\x6b\x5d\ \x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\x3e\x00\ \x5b\x00\x6b\x00\x5d\x00\x44\x00\x45\x00\x4b\x00\x4c\x00\x41\x00\ \x52\x00\x49\x00\x45\x00\x52\x00\x45\x00\x4e\x00\x5b\x00\x2f\x00\ \x6b\x00\x5d\x00\x20\x00\x5b\x00\x63\x00\x5d\x00\x7b\x00\x76\x00\ \x61\x00\x72\x00\x7d\x00\x5b\x00\x2f\x00\x63\x00\x5d\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x1b\x5b\x6b\x5d\x44\x45\x43\x4c\x41\x52\ \x45\x5b\x2f\x6b\x5d\x20\x5b\x63\x5d\x7b\x76\x61\x72\x7d\x5b\x2f\ \x63\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\x00\ \x3e\x00\x5b\x00\x6b\x00\x5d\x00\x5a\x00\x55\x00\x52\x00\xdc\x00\ \x43\x00\x4b\x00\x47\x00\x45\x00\x42\x00\x45\x00\x4e\x00\x5b\x00\ \x2f\x00\x6b\x00\x5d\x00\x20\x00\x5b\x00\x63\x00\x5d\x00\x7b\x00\ \x76\x00\x61\x00\x6c\x00\x7d\x00\x5b\x00\x2f\x00\x63\x00\x5d\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x1a\x5b\x6b\x5d\x52\x45\x54\x55\ \x52\x4e\x5b\x2f\x6b\x5d\x20\x5b\x63\x5d\x7b\x76\x61\x6c\x7d\x5b\ \x2f\x63\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\x00\ \x00\x40\x00\x5b\x00\x6b\x00\x5d\x00\x55\x00\x4e\x00\x54\x00\x45\ \x00\x52\x00\x42\x00\x52\x00\x45\x00\x43\x00\x48\x00\x45\x00\x4e\ \x00\x5b\x00\x2f\x00\x6b\x00\x5d\x00\x20\x00\x5b\x00\x63\x00\x5d\ \x00\x7b\x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x5b\x00\x2f\x00\x63\ \x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x5b\x6b\x5d\x53\ \x54\x4f\x50\x5b\x2f\x6b\x5d\x20\x5b\x63\x5d\x7b\x76\x61\x6c\x7d\ \x5b\x2f\x63\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\x6f\x01\x03\x00\ \x00\x00\x54\x00\x5b\x00\x6b\x00\x5d\x00\x57\x00\x41\x00\x52\x00\ \x54\x00\x45\x00\x4e\x00\x5b\x00\x2f\x00\x6b\x00\x5d\x00\x20\x00\ \x5b\x00\x63\x00\x5d\x00\x7b\x00\x76\x00\x61\x00\x6c\x00\x7d\x00\ \x5b\x00\x2f\x00\x63\x00\x5d\x00\x20\x00\x5b\x00\x6b\x00\x5d\x00\ \x53\x00\x45\x00\x4b\x00\x55\x00\x4e\x00\x44\x00\x45\x00\x4e\x00\ \x5b\x00\x2f\x00\x6b\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x27\x5b\x6b\x5d\x57\x41\x49\x54\x5b\x2f\x6b\x5d\x20\x5b\x63\x5d\ \x7b\x76\x61\x6c\x7d\x5b\x2f\x63\x5d\x20\x5b\x6b\x5d\x53\x45\x43\ \x4f\x4e\x44\x53\x5b\x2f\x6b\x5d\x07\x00\x00\x00\x04\x41\x6c\x67\ \x6f\x01\x03\x00\x00\x00\x14\x00\x50\x00\x61\x00\x72\x00\x61\x00\ \x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x3a\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0a\x41\x72\x67\x75\x6d\x65\x6e\x74\x73\x3a\x07\ \x00\x00\x00\x0c\x41\x6c\x67\x6f\x43\x61\x6c\x6c\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x22\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\ \x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x66\x00\x72\ \x00\x75\x00\x66\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0d\x43\x61\x6c\x6c\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x07\ \x00\x00\x00\x0c\x41\x6c\x67\x6f\x43\x61\x6c\x6c\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x12\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\ \x00\x69\x00\x6f\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x09\x46\x75\x6e\x63\x74\x69\x6f\x6e\x3a\x07\x00\x00\x00\x0c\ \x41\x6c\x67\x6f\x43\x61\x6c\x6c\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x12\x00\x4b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x74\ \x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x43\x6f\ \x6d\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x43\x6f\ \x6d\x6d\x65\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x14\x00\ \x4b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\ \x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6d\ \x6d\x65\x6e\x74\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x43\x6f\ \x6d\x6d\x65\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x26\x00\ \x56\x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ \x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x65\x00\ \x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ \x65\x66\x69\x6e\x65\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x07\x00\ \x00\x00\x0e\x41\x6c\x67\x6f\x44\x65\x66\x69\x6e\x65\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x12\x00\x56\x00\x61\x00\x72\x00\x69\x00\ \x61\x00\x62\x00\x6c\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x09\x56\x61\x72\x69\x61\x62\x6c\x65\x3a\x07\x00\x00\x00\ \x0e\x41\x6c\x67\x6f\x44\x65\x66\x69\x6e\x65\x53\x74\x6d\x74\x01\ \x03\x00\x00\x00\x1a\x00\x57\x00\x65\x00\x72\x00\x74\x00\x20\x00\ \x61\x00\x6e\x00\x7a\x00\x65\x00\x69\x00\x67\x00\x65\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x69\x73\x70\x6c\x61\x79\ \x20\x76\x61\x6c\x75\x65\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x44\ \x69\x73\x70\x6c\x61\x79\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x38\ \x00\x45\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x5a\x00\x65\ \x00\x69\x00\x6c\x00\x65\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x72\ \x00\x75\x00\x63\x00\x68\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x66\ \x00\xfc\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x18\x46\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x20\x61\x20\ \x6c\x69\x6e\x65\x20\x62\x72\x65\x61\x6b\x07\x00\x00\x00\x0f\x41\ \x6c\x67\x6f\x44\x69\x73\x70\x6c\x61\x79\x53\x74\x6d\x74\x01\x03\ \x00\x00\x00\x3c\x00\x42\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\ \x00\x65\x00\x72\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ \x00\x65\x00\x72\x00\x74\x00\x20\x00\x53\x00\x63\x00\x68\x00\x72\ \x00\x69\x00\x74\x00\x74\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x75\x73\x74\x6f\x6d\ \x20\x73\x74\x65\x70\x07\x00\x00\x00\x0b\x41\x6c\x67\x6f\x46\x6f\ \x72\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x18\x00\x46\x00\xdc\x00\ \x52\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x69\x00\ \x66\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x46\x4f\x52\ \x20\x6c\x6f\x6f\x70\x07\x00\x00\x00\x0b\x41\x6c\x67\x6f\x46\x6f\ \x72\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x08\x00\x56\x00\x6f\x00\ \x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x72\x6f\ \x6d\x3a\x07\x00\x00\x00\x0b\x41\x6c\x67\x6f\x46\x6f\x72\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x63\x00\x68\x00\x72\ \x00\x69\x00\x74\x00\x74\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x74\x65\x70\ \x3a\x07\x00\x00\x00\x0b\x41\x6c\x67\x6f\x46\x6f\x72\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x08\x00\x42\x00\x69\x00\x73\x00\x3a\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x03\x54\x6f\x3a\x07\x00\x00\x00\ \x0b\x41\x6c\x67\x6f\x46\x6f\x72\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x12\x00\x56\x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\ \x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x56\x61\ \x72\x69\x61\x62\x6c\x65\x3a\x07\x00\x00\x00\x0b\x41\x6c\x67\x6f\ \x46\x6f\x72\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x26\x00\x46\x00\ \x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ \x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x72\x00\ \x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x65\x66\ \x69\x6e\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ \x0c\x41\x6c\x67\x6f\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x12\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\ \x75\x6e\x63\x74\x69\x6f\x6e\x3a\x07\x00\x00\x00\x0c\x41\x6c\x67\ \x6f\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x14\x00\ \x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\ \x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x61\x72\ \x61\x6d\x65\x74\x65\x72\x73\x3a\x07\x00\x00\x00\x0c\x41\x6c\x67\ \x6f\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\ \x46\x00\x61\x00\x72\x00\x62\x00\x65\x00\x3a\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\x00\x0d\ \x41\x6c\x67\x6f\x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x12\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\ \x75\x6e\x63\x74\x69\x6f\x6e\x3a\x07\x00\x00\x00\x0d\x41\x6c\x67\ \x6f\x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x2c\ \x00\x50\x00\x6c\x00\x6f\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\ \x00\x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x46\x00\x75\ \x00\x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0d\x50\x6c\x6f\x74\x20\x66\x75\x6e\x63\x74\ \x69\x6f\x6e\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x47\x46\x75\x6e\ \x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x63\x00\ \x68\x00\x72\x00\x69\x00\x74\x00\x74\x00\x77\x00\x65\x00\x69\x00\ \x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\ \x74\x65\x70\x3a\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x47\x46\x75\ \x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x12\x00\x56\x00\x61\ \x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x09\x56\x61\x72\x69\x61\x62\x6c\x65\ \x3a\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x47\x46\x75\x6e\x63\x53\ \x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x46\x00\x61\x00\x72\x00\ \x62\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ \x6f\x6c\x6f\x72\x3a\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x47\x4c\ \x69\x6e\x65\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x26\x00\x50\x00\ \x6c\x00\x6f\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x65\x00\ \x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\ \x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x50\x6c\x6f\ \x74\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x47\ \x4c\x69\x6e\x65\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x46\ \x00\x61\x00\x72\x00\x62\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\x00\x0e\x41\ \x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x2a\x00\x50\x00\x6c\x00\x6f\x00\x74\x00\x74\x00\x65\x00\ \x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ \x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x73\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x50\x6c\x6f\x74\x20\x70\x6f\x69\x6e\ \x74\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\ \x53\x74\x6d\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x02\x58\x3a\x07\x00\x00\x00\x0e\x41\ \x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x04\x00\x59\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x02\x59\x3a\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\x69\ \x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x61\ \x00\x78\x00\x20\x00\x58\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x4d\x61\x78\x20\x58\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\ \x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x0c\x00\x4d\x00\x61\x00\x78\x00\x20\x00\x59\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x06\x4d\x61\x78\x20\x59\x3a\x07\x00\ \x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x69\x00\x6e\x00\x20\ \x00\x58\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4d\x69\ \x6e\x20\x58\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\ \x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\ \x00\x69\x00\x6e\x00\x20\x00\x59\x00\x3a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x06\x4d\x69\x6e\x20\x59\x3a\x07\x00\x00\x00\x0f\x41\ \x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\x03\ \x00\x00\x00\x3a\x00\x45\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ \x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x73\ \x00\x20\x00\x47\x00\x72\x00\x61\x00\x66\x00\x69\x00\x6b\x00\x66\ \x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x00\x73\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x77\x69\x6e\x64\ \x6f\x77\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\ \x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x2e\x00\x45\x00\x69\ \x00\x6e\x00\x65\x00\x20\x00\x4e\x00\x61\x00\x63\x00\x68\x00\x72\ \x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x7a\ \x00\x65\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x44\x69\x73\x70\x6c\x61\x79\x20\x61\x20\x6d\x65\ \x73\x73\x61\x67\x65\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\ \x70\x75\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x2c\x00\x42\x00\ \x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x72\x00\x65\x00\ \x69\x00\x6e\x00\x67\x00\x61\x00\x62\x00\x65\x00\x6e\x00\x20\x00\ \x6c\x00\x65\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0f\x52\x65\x61\x64\x20\x75\x73\x65\x72\x20\x69\x6e\x70\ \x75\x74\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\x70\x75\x74\ \x53\x74\x6d\x74\x01\x03\x00\x00\x00\x12\x00\x56\x00\x61\x00\x72\ \x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x3a\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x09\x56\x61\x72\x69\x61\x62\x6c\x65\x3a\x07\ \x00\x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\x70\x75\x74\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x16\x00\x5a\x00\x75\x00\x72\x00\xfc\x00\ \x63\x00\x6b\x00\x67\x00\x65\x00\x62\x00\x65\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x06\x52\x65\x74\x75\x72\x6e\x07\x00\x00\ \x00\x0e\x41\x6c\x67\x6f\x52\x65\x74\x75\x72\x6e\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x0c\x00\x57\x00\x61\x00\x72\x00\x74\x00\x65\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x69\x74\ \x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x53\x6c\x65\x65\x70\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x14\x00\x48\x00\x61\x00\x6c\x00\x74\ \x00\x65\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0a\x42\x72\x65\x61\x6b\x70\x6f\x69\x6e\x74\ \x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x53\x74\x6f\x70\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x2e\x00\x45\x00\x69\x00\x6e\x00\x65\x00\ \x20\x00\x4e\x00\x61\x00\x63\x00\x68\x00\x72\x00\x69\x00\x63\x00\ \x68\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x69\x00\ \x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ \x69\x73\x70\x6c\x61\x79\x20\x61\x20\x6d\x65\x73\x73\x61\x67\x65\ \x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x53\x74\x6f\x70\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x20\x00\x53\x00\x4f\x00\x4c\x00\x41\x00\ \x4e\x00\x47\x00\x45\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\ \x65\x00\x69\x00\x66\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0a\x57\x48\x49\x4c\x45\x20\x6c\x6f\x6f\x70\x07\x00\x00\x00\x0d\ \x41\x6c\x67\x6f\x57\x68\x69\x6c\x65\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x32\x00\x55\x00\x6e\x00\x62\x00\x65\x00\x6b\x00\x61\x00\ \x6e\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x46\x00\x61\x00\x72\x00\ \x62\x00\x65\x00\x3a\x00\x20\x00\x7b\x00\x63\x00\x6f\x00\x6c\x00\ \x6f\x00\x72\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\ \x6e\x6b\x6e\x6f\x77\x6e\x20\x63\x6f\x6c\x6f\x72\x3a\x20\x7b\x63\ \x6f\x6c\x6f\x72\x7d\x07\x00\x00\x00\x07\x41\x6c\x67\x6f\x62\x6f\ \x78\x01\x03\x00\x00\x00\x40\x00\x55\x00\x6e\x00\x62\x00\x65\x00\ \x6b\x00\x61\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\ \x56\x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ \x6e\x00\x74\x00\x79\x00\x70\x00\x3a\x00\x20\x00\x7b\x00\x74\x00\ \x79\x00\x70\x00\x65\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1d\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\ \x65\x20\x74\x79\x70\x65\x3a\x20\x7b\x74\x79\x70\x65\x7d\x07\x00\ \x00\x00\x07\x41\x6c\x67\x6f\x62\x6f\x78\x01\x03\x00\x00\x00\x0e\ \x00\x52\x00\x65\x00\x63\x00\x68\x00\x6e\x00\x65\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\ \x6f\x72\x07\x00\x00\x00\x0a\x43\x61\x6c\x63\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x22\x00\x45\x00\x72\x00\x67\x00\x65\x00\ \x62\x00\x6e\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\ \x20\x00\x4e\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0e\x52\x65\x73\x75\x6c\x74\x20\x69\x73\x20\x4e\x6f\x6e\ \x65\x07\x00\x00\x00\x0a\x43\x61\x6c\x63\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6d\x00\x6d\x00\x65\ \x00\x6e\x00\x74\x00\x61\x00\x72\x00\x3a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x08\x43\x6f\x6d\x6d\x65\x6e\x74\x3a\x07\x00\x00\x00\ \x11\x43\x68\x61\x6e\x67\x65\x54\x68\x65\x6d\x65\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\x00\x67\x00\x6f\ \x00\x62\x00\x6f\x00\x78\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\ \x00\x61\x00\x74\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x74\ \x00\xe4\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x41\x6c\ \x67\x6f\x62\x6f\x78\x20\x63\x6f\x6d\x70\x61\x74\x69\x62\x69\x6c\ \x69\x74\x79\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\ \x00\x0e\x00\x42\x00\x61\x00\x73\x00\x69\x00\x73\x00\x63\x00\x68\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x42\x61\x73\x69\x63\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x12\x00\x47\ \x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x65\x6f\x6d\x65\x74\ \x72\x79\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\ \x0c\x00\x50\x00\x68\x00\x79\x00\x73\x00\x69\x00\x6b\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x07\x50\x68\x79\x73\x69\x63\x73\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x84\x00\x47\x00\ \x69\x00\x62\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ \x20\x00\x5a\x00\x75\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\ \x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x7a\x00\x77\x00\x69\x00\ \x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\ \x61\x00\x7d\x00\x7d\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ \x7b\x00\x7b\x00\x62\x00\x7d\x00\x7d\x00\x20\x00\x28\x00\x69\x00\ \x6e\x00\x6b\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x76\x00\x65\x00\ \x29\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x52\x65\x74\x75\x72\ \x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\x20\x69\x6e\x74\x65\ \x67\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x7b\x7b\x61\x7d\ \x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\x7d\x20\x28\x69\x6e\x63\ \x6c\x75\x73\x69\x76\x65\x29\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x8a\x00\x47\x00\x69\x00\x62\x00\x74\x00\ \x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x5a\x00\x75\x00\ \x66\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x7a\x00\x61\x00\x68\x00\ \x6c\x00\x20\x00\x7a\x00\x77\x00\x69\x00\x73\x00\x63\x00\x68\x00\ \x65\x00\x6e\x00\x20\x00\x30\x00\x20\x00\x28\x00\x69\x00\x6e\x00\ \x6b\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x76\x00\x65\x00\x29\x00\ \x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x28\x00\ \x65\x00\x78\x00\x6b\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x76\x00\ \x29\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x52\x65\x74\x75\x72\ \x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\x20\x6e\x75\x6d\x62\ \x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x30\x20\x28\x69\x6e\ \x63\x6c\x75\x73\x69\x76\x65\x29\x20\x61\x6e\x64\x20\x31\x20\x28\ \x65\x78\x63\x6c\x75\x73\x69\x76\x65\x29\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x56\x00\x47\x00\x69\x00\x62\ \x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x62\ \x00\x73\x00\x6f\x00\x6c\x00\x75\x00\x74\x00\x65\x00\x6e\x00\x20\ \x00\x57\x00\x65\x00\x72\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x76\ \x61\x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x50\x00\ \x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\ \x20\x00\x41\x00\x72\x00\x63\x00\x75\x00\x73\x00\x6b\x00\x6f\x00\ \x73\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\ \x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\ \x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x20\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x61\x72\x63\x20\x63\x6f\x73\x69\x6e\x65\x20\ \x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x4c\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x41\x00\x72\x00\x6b\ \x00\x75\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\ \x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\ \x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x61\x72\x63\x20\x73\x69\ \x6e\x65\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\ \x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x50\x00\x47\x00\x69\x00\ \x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x41\x00\ \x72\x00\x63\x00\x75\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ \x65\x00\x6e\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\ \x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\ \x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x21\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\ \x20\x61\x72\x63\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x66\x20\ \x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x48\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\ \x64\x00\x61\x00\x73\x00\x20\x00\x41\x00\x72\x00\x67\x00\x75\x00\ \x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ \x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\x00\ \x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x29\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x28\x6f\x72\x20\ \x70\x68\x61\x73\x65\x29\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x64\x00\ \x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x61\x00\x73\x00\ \x20\x00\x61\x00\x72\x00\x69\x00\x74\x00\x68\x00\x6d\x00\x65\x00\ \x74\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x4d\x00\ \x69\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\ \x6e\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\ \x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\ \x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x52\x65\x74\ \x75\x72\x6e\x73\x20\x74\x68\x65\x20\x61\x72\x69\x74\x68\x6d\x65\ \x74\x69\x63\x20\x6d\x65\x61\x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\ \x67\x73\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x68\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\ \x00\x65\x00\x6e\x00\x20\x00\x44\x00\x65\x00\x6b\x00\x61\x00\x64\ \x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x72\x00\x20\x00\x4c\ \x00\x6f\x00\x67\x00\x61\x00\x72\x00\x69\x00\x74\x00\x68\x00\x6d\ \x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\ \x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x7a\ \x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x29\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\ \x65\x20\x62\x61\x73\x65\x2d\x31\x30\x20\x6c\x6f\x67\x61\x72\x69\ \x74\x68\x6d\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x5a\x00\x47\ \x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\ \x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x78\x00\x20\ \x00\x4b\x00\x6f\x00\x6e\x00\x6a\x00\x75\x00\x67\x00\x69\x00\x65\ \x00\x72\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\ \x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\ \x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x27\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x63\x6f\ \x6d\x70\x6c\x65\x78\x20\x63\x6f\x6e\x6a\x75\x67\x61\x74\x65\x20\ \x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x46\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x6f\x00\x73\ \x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\ \x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x1c\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\x7b\ \x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x48\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\ \x69\x00\x65\x00\x20\x00\x46\x00\x61\x00\x6b\x00\x75\x00\x6c\x00\ \x74\x00\xe4\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\ \x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\ \x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x1f\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\ \x20\x66\x61\x63\x74\x6f\x72\x69\x61\x6c\x20\x6f\x66\x20\x7b\x7b\ \x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x7e\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\ \x65\x00\x6e\x00\x20\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x74\x00\ \x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x69\x00\ \x6e\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x54\x00\ \x65\x00\x69\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\ \x6e\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\x00\ \x75\x00\x6e\x00\x64\x00\x20\x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\ \x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x67\x72\x65\x61\x74\x65\x73\x74\x20\ \x63\x6f\x6d\x6d\x6f\x6e\x20\x64\x69\x76\x69\x73\x6f\x72\x20\x6f\ \x66\x20\x7b\x7b\x61\x7d\x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\ \x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\ \x60\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x61\x00\ \x73\x00\x20\x00\x68\x00\x61\x00\x72\x00\x6d\x00\x6f\x00\x6e\x00\ \x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x4d\x00\x69\x00\ \x74\x00\x74\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ \x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\ \x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x68\x61\x72\x6d\x6f\x6e\x69\x63\x20\ \x6d\x65\x61\x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\ \x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x64\ \x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\ \x00\x20\x00\x68\x00\x79\x00\x70\x00\x65\x00\x72\x00\x62\x00\x6f\ \x00\x6c\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\ \x00\x4b\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\ \x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\ \x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x68\x79\x70\x65\x72\x62\ \x6f\x6c\x69\x63\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\ \x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x60\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\ \x00\x65\x00\x6e\x00\x20\x00\x68\x00\x79\x00\x70\x00\x65\x00\x72\ \x00\x62\x00\x6f\x00\x6c\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\ \x00\x6e\x00\x20\x00\x53\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\ \x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\ \x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x68\x79\x70\x65\x72\x62\ \x6f\x6c\x69\x63\x20\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\x7b\x78\ \x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\ \x00\x64\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\ \x00\x6e\x00\x20\x00\x68\x00\x79\x00\x70\x00\x65\x00\x72\x00\x62\ \x00\x6f\x00\x6c\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\ \x00\x20\x00\x54\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x73\ \x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\ \x00\x7d\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\ \x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x68\x79\x70\x65\ \x72\x62\x6f\x6c\x69\x63\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\ \x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x4e\x00\x47\x00\x69\x00\x62\x00\x74\x00\ \x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x49\x00\x6d\x00\x61\x00\ \x67\x00\x69\x00\x6e\x00\xe4\x00\x72\x00\x74\x00\x65\x00\x69\x00\ \x6c\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\ \x78\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\ \x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x52\ \x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x69\x6d\x61\x67\x69\ \x6e\x61\x72\x79\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x7b\x7b\x78\ \x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\ \x00\x7c\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\ \x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x67\x00\x65\x00\x6b\x00\x65\ \x00\x68\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x68\x00\x79\ \x00\x70\x00\x65\x00\x72\x00\x62\x00\x6f\x00\x6c\x00\x69\x00\x73\ \x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x6f\x00\x73\ \x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\ \x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x2f\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\x20\x68\x79\x70\x65\ \x72\x62\x6f\x6c\x69\x63\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\ \x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\ \x01\x03\x00\x00\x00\x78\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\ \x00\x64\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x67\x00\x65\ \x00\x6b\x00\x65\x00\x68\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\ \x00\x68\x00\x79\x00\x70\x00\x65\x00\x72\x00\x62\x00\x6f\x00\x6c\ \x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x53\ \x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x20\ \x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x2d\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\x20\x68\x79\x70\x65\ \x72\x62\x6f\x6c\x69\x63\x20\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\ \x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x7c\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\ \x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6d\x00\x67\x00\x65\x00\x6b\ \x00\x65\x00\x68\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x68\ \x00\x79\x00\x70\x00\x65\x00\x72\x00\x62\x00\x6f\x00\x6c\x00\x69\ \x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x54\x00\x61\ \x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x73\x00\x20\x00\x76\x00\x6f\ \x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\x20\x68\x79\ \x70\x65\x72\x62\x6f\x6c\x69\x63\x20\x74\x61\x6e\x67\x65\x6e\x74\ \x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\ \x6f\x63\x73\x01\x03\x00\x00\x00\x7c\x00\x47\x00\x69\x00\x62\x00\ \x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x72\x00\ \xf6\x00\xdf\x00\x74\x00\x65\x00\x20\x00\x67\x00\x61\x00\x6e\x00\ \x7a\x00\x65\x00\x20\x00\x5a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\ \x6b\x00\x6c\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\ \x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x67\x00\x6c\x00\x65\x00\ \x69\x00\x63\x00\x68\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\ \x6d\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\ \x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x52\ \x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6c\x61\x72\x67\x65\ \x73\x74\x20\x69\x6e\x74\x65\x67\x65\x72\x20\x6c\x65\x73\x73\x20\ \x74\x68\x61\x6e\x20\x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\ \x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x8e\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x61\x00\x6d\x00\x20\ \x00\x6b\x00\x6c\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ \x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x69\x00\x6e\ \x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\ \x00\x6c\x00\x66\x00\x61\x00\x63\x00\x68\x00\x65\x00\x20\x00\x76\ \x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\ \x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x7b\x00\x7b\x00\x62\ \x00\x7d\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\ \x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6c\x65\x61\x73\ \x74\x20\x63\x6f\x6d\x6d\x6f\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\ \x65\x20\x6f\x66\x20\x7b\x7b\x61\x7d\x7d\x20\x61\x6e\x64\x20\x7b\ \x7b\x62\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x58\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\ \x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\ \x00\x61\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x57\x00\x65\x00\x72\ \x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\ \x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\x00\x20\x00\x7a\ \x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\ \x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x76\x61\x6c\x75\x65\x20\ \x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\x2e\x07\x00\x00\x00\ \x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x58\x00\x47\x00\x69\x00\ \x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\ \x69\x00\x6e\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x6e\x00\ \x20\x00\x57\x00\x65\x00\x72\x00\x74\x00\x20\x00\x76\x00\x6f\x00\ \x6e\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\ \x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\ \x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\ \x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6d\x69\x6e\x69\x6d\x75\x6d\ \x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\ \x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\ \x00\x5e\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x69\ \x00\x65\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ \x00\x72\x00\x64\x00\x61\x00\x62\x00\x77\x00\x65\x00\x69\x00\x63\ \x00\x68\x00\x75\x00\x6e\x00\x67\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x6c\x00\x73\x00\x74\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x70\x6f\x70\x75\x6c\x61\x74\x69\x6f\x6e\ \x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x64\x65\x76\x69\x61\x74\ \x69\x6f\x6e\x20\x6f\x66\x20\x7b\x7b\x6c\x73\x74\x7d\x7d\x2e\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x48\x00\x47\ \x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ \x00\x56\x00\x61\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x7a\x00\x20\ \x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x6c\x00\x73\ \x00\x74\x00\x7d\x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\ \x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x70\x6f\x70\x75\ \x6c\x61\x74\x69\x6f\x6e\x20\x76\x61\x72\x69\x61\x6e\x63\x65\x20\ \x6f\x66\x20\x7b\x7b\x6c\x73\x74\x7d\x7d\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x46\x00\x47\x00\x69\x00\x62\ \x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x52\x00\x65\ \x00\x61\x00\x6c\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x20\x00\x76\ \x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x72\x65\x61\x6c\x20\x70\x61\x72\x74\x20\ \x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\xa4\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x56\x00\x6f\x00\x72\ \x00\x7a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\ \x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\ \x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x28\x00\x2d\x00\x31\x00\x20\ \x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x67\ \x00\x61\x00\x74\x00\x69\x00\x76\x00\x2c\x00\x20\x00\x31\x00\x20\ \x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x73\ \x00\x69\x00\x74\x00\x69\x00\x76\x00\x2c\x00\x20\x00\x73\x00\x6f\ \x00\x6e\x00\x73\x00\x74\x00\x20\x00\x30\x00\x29\x00\x20\x00\x7a\ \x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x49\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\ \x65\x20\x73\x69\x67\x6e\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\ \x7d\x20\x28\x2d\x31\x20\x69\x66\x20\x6e\x65\x67\x61\x74\x69\x76\ \x65\x2c\x20\x31\x20\x69\x66\x20\x70\x6f\x73\x69\x74\x69\x76\x65\ \x2c\x20\x30\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x29\x2e\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x42\x00\x47\ \x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\ \x00\x53\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\ \x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\x7b\ \x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x7e\x00\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x64\x00\ \x69\x00\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x69\x00\x6e\x00\ \x73\x00\x74\x00\x65\x00\x20\x00\x67\x00\x61\x00\x6e\x00\x7a\x00\ \x65\x00\x20\x00\x5a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x67\x00\ \x72\x00\xf6\x00\xdf\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x64\x00\ \x65\x00\x72\x00\x20\x00\x67\x00\x6c\x00\x65\x00\x69\x00\x63\x00\ \x68\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\ \x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x73\x6d\x61\x6c\x6c\x65\x73\x74\x20\ \x69\x6e\x74\x65\x67\x65\x72\x20\x67\x72\x65\x61\x74\x65\x72\x20\ \x74\x68\x61\x6e\x20\x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\ \x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\xac\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x51\x00\x75\x00\x61\ \x00\x64\x00\x72\x00\x61\x00\x74\x00\x77\x00\x75\x00\x72\x00\x7a\ \x00\x65\x00\x6c\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\x7b\ \x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x7a\ \x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\x00\x20\x00\x57\ \x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\ \x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x3c\x00\x20\x00\x30\x00\x2c\ \x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\x00\x61\x00\x73\ \x00\x20\x00\x45\x00\x72\x00\x67\x00\x65\x00\x62\x00\x6e\x00\x69\ \x00\x73\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\ \x00\x78\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x71\x75\x61\x72\x65\ \x20\x72\x6f\x6f\x74\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\ \x2e\x20\x49\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x20\x3c\x20\x30\ \x2c\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x77\x69\x6c\ \x6c\x20\x62\x65\x20\x43\x6f\x6d\x70\x6c\x65\x78\x2e\x07\x00\x00\ \x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x46\x00\x47\x00\x69\ \x00\x62\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x54\ \x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x73\x00\x20\x00\x76\ \x00\x6f\x00\x6e\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\ \x00\x7d\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x52\x65\x74\x75\ \x72\x6e\x73\x20\x74\x68\x65\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\ \x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x58\x00\x47\x00\x69\x00\x62\x00\x74\ \x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\ \x00\x7d\x00\x7d\x00\x2d\x00\x74\x00\x65\x00\x20\x00\x57\x00\x75\ \x00\x72\x00\x7a\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\x6e\ \x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\ \x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x7b\x7b\x6e\x7d\x7d\x2d\x74\x68\x20\x72\ \x6f\x6f\x74\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x58\x00\x47\ \x00\x69\x00\x62\x00\x74\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\ \x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\ \x00\x64\x00\x69\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x7d\ \x00\x7d\x00\x2d\x00\x74\x00\x65\x00\x20\x00\x50\x00\x6f\x00\x74\ \x00\x65\x00\x6e\x00\x7a\x00\x20\x00\x7a\x00\x75\x00\x72\x00\xfc\ \x00\x63\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\ \x52\x65\x74\x75\x72\x6e\x73\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x20\ \x74\x6f\x20\x74\x68\x65\x20\x7b\x7b\x70\x7d\x7d\x2d\x74\x68\x20\ \x70\x6f\x77\x65\x72\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x16\x00\x53\x00\x74\x00\x61\x00\x74\x00\x69\x00\ \x73\x00\x74\x00\x69\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0a\x53\x74\x61\x74\x69\x73\x74\x69\x63\x73\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x1a\x00\x54\ \x00\x72\x00\x69\x00\x67\x00\x6f\x00\x6e\x00\x6f\x00\x6d\x00\x65\ \x00\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0c\x54\x72\x69\x67\x6f\x6e\x6f\x6d\x65\x74\x72\x79\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x0a\x00\x20\x00\ \x75\x00\x6e\x00\x64\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x20\x61\x6e\x64\x20\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\ \x61\x74\x6f\x72\x01\x03\x00\x00\x00\x86\x00\x55\x00\x6e\x00\x76\ \x00\x65\x00\x72\x00\x74\x00\x72\x00\xe4\x00\x67\x00\x6c\x00\x69\ \x00\x63\x00\x68\x00\x65\x00\x20\x00\x41\x00\x6e\x00\x7a\x00\x61\ \x00\x68\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x41\x00\x72\ \x00\x67\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\ \x00\x20\x00\x28\x00\x65\x00\x72\x00\x77\x00\x61\x00\x72\x00\x74\ \x00\x65\x00\x74\x00\x20\x00\x7b\x00\x65\x00\x78\x00\x70\x00\x7d\ \x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x65\x00\x6c\ \x00\x6c\x00\x20\x00\x7b\x00\x61\x00\x63\x00\x74\x00\x7d\x00\x29\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x72\x67\x75\x6d\x65\ \x6e\x74\x20\x63\x6f\x75\x6e\x74\x20\x6d\x69\x73\x6d\x61\x74\x63\ \x68\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x7b\x65\x78\x70\ \x7d\x2c\x20\x67\x6f\x74\x20\x7b\x61\x63\x74\x7d\x29\x07\x00\x00\ \x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\x00\x00\x00\ \x28\x00\x41\x00\x6e\x00\x67\x00\x65\x00\x72\x00\x75\x00\x66\x00\ \x65\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x69\x00\x73\x00\x74\x00\ \x20\x00\x4e\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0e\x43\x61\x6c\x6c\x65\x65\x20\x69\x73\x20\x4e\x6f\x6e\ \x65\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\ \x03\x00\x00\x00\x7a\x00\x55\x00\x6e\x00\x67\x00\xfc\x00\x6c\x00\ \x74\x00\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\x62\x00\x69\x00\ \x6e\x00\xe4\x00\x72\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x70\x00\ \x65\x00\x72\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x27\x00\ \x7b\x00\x6f\x00\x70\x00\x7d\x00\x27\x00\x20\x00\x66\x00\xfc\x00\ \x72\x00\x20\x00\x27\x00\x7b\x00\x6c\x00\x65\x00\x66\x00\x74\x00\ \x7d\x00\x27\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x27\x00\ \x7b\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x7d\x00\x27\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x39\x49\x6e\x76\x61\x6c\x69\x64\ \x20\x62\x69\x6e\x61\x72\x79\x20\x6f\x70\x65\x72\x61\x74\x6f\x72\ \x20\x27\x7b\x6f\x70\x7d\x27\x20\x66\x6f\x72\x20\x27\x7b\x6c\x65\ \x66\x74\x7d\x27\x20\x61\x6e\x64\x20\x27\x7b\x72\x69\x67\x68\x74\ \x7d\x27\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\ \x01\x03\x00\x00\x00\x42\x00\x55\x00\x6e\x00\x67\x00\xfc\x00\x6c\ \x00\x74\x00\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\ \x00\xe4\x00\x72\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x70\x00\x65\ \x00\x72\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x27\x00\x7b\ \x00\x6f\x00\x70\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x1d\x49\x6e\x76\x61\x6c\x69\x64\x20\x75\x6e\x61\x72\x79\x20\ \x6f\x70\x65\x72\x61\x74\x6f\x72\x20\x27\x7b\x6f\x70\x7d\x27\x07\ \x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\x00\ \x00\x00\x10\x00\x50\x00\x61\x00\x72\x00\x73\x00\x65\x00\x72\x00\ \x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x61\x72\ \x73\x65\x72\x3a\x20\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\ \x74\x6f\x72\x01\x03\x00\x00\x00\x76\x00\x54\x00\x79\x00\x70\x00\ \x65\x00\x6e\x00\x6b\x00\x6f\x00\x6e\x00\x66\x00\x6c\x00\x69\x00\ \x6b\x00\x74\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x50\x00\ \x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\ \x20\x00\x23\x00\x7b\x00\x69\x00\x64\x00\x78\x00\x7d\x00\x20\x00\ \x27\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x7d\x00\x27\x00\x20\x00\ \x28\x00\x65\x00\x72\x00\x77\x00\x61\x00\x72\x00\x74\x00\x65\x00\ \x74\x00\x20\x00\x7b\x00\x65\x00\x78\x00\x70\x00\x7d\x00\x29\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x79\x70\x65\x20\x6d\x69\ \x73\x6d\x61\x74\x63\x68\x20\x66\x6f\x72\x20\x61\x72\x67\x75\x6d\ \x65\x6e\x74\x20\x23\x7b\x69\x64\x78\x7d\x20\x27\x7b\x61\x72\x67\ \x7d\x27\x20\x28\x65\x78\x70\x65\x63\x74\x65\x64\x20\x7b\x65\x78\ \x70\x7d\x29\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\ \x72\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x6e\x00\x62\x00\x65\x00\ \x6b\x00\x61\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\ \x4b\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x79\x00\ \x70\x00\x3a\x00\x20\x00\x7b\x00\x74\x00\x79\x00\x70\x00\x65\x00\ \x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x55\x6e\x6b\x6e\x6f\ \x77\x6e\x20\x6e\x6f\x64\x65\x20\x74\x79\x70\x65\x3a\x20\x7b\x74\ \x79\x70\x65\x7d\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\ \x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x6c\x00\x69\x00\x6e\x00\x6b\ \x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x6c\x65\x66\x74\ \x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\ \x00\x00\x00\x0c\x00\x72\x00\x65\x00\x63\x00\x68\x00\x74\x00\x73\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x72\x69\x67\x68\x74\x07\ \x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\x72\x01\x03\x00\ \x00\x00\x20\x00\x3c\x00\x68\x00\x32\x00\x3e\x00\x41\x00\x6c\x00\ \x69\x00\x61\x00\x73\x00\x65\x00\x3a\x00\x3c\x00\x2f\x00\x68\x00\ \x32\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x3c\x68\x32\ \x3e\x41\x6c\x69\x61\x73\x65\x73\x3a\x3c\x2f\x68\x32\x3e\x07\x00\ \x00\x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x26\x00\x3c\x00\x68\x00\x32\x00\x3e\x00\x50\x00\x61\x00\ \x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x3a\x00\ \x3c\x00\x2f\x00\x68\x00\x32\x00\x3e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x13\x3c\x68\x32\x3e\x41\x72\x67\x75\x6d\x65\x6e\x74\x73\ \x3a\x3c\x2f\x68\x32\x3e\x07\x00\x00\x00\x0a\x48\x65\x6c\x70\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x28\x00\x3c\x00\x68\x00\ \x32\x00\x3e\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\ \x6f\x00\x6e\x00\x65\x00\x6e\x00\x3a\x00\x3c\x00\x2f\x00\x68\x00\ \x32\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x3c\x68\x32\ \x3e\x46\x75\x6e\x63\x74\x69\x6f\x6e\x73\x3a\x3c\x2f\x68\x32\x3e\ \x07\x00\x00\x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x1e\x00\x3c\x00\x6c\x00\x69\x00\x3e\x00\x4b\x00\ \x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x3c\x00\x2f\x00\x6c\x00\ \x69\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x3c\x6c\x69\ \x3e\x4e\x6f\x6e\x65\x3c\x2f\x6c\x69\x3e\x07\x00\x00\x00\x0a\x48\ \x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\ \x48\x00\x69\x00\x6c\x00\x66\x00\x65\x00\x74\x00\x68\x00\x65\x00\ \x6d\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x48\ \x65\x6c\x70\x20\x43\x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\x00\ \x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x22\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ \x64\x00\x20\x00\x3d\x00\x20\x00\x7b\x00\x64\x00\x65\x00\x66\x00\ \x74\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x64\x65\x66\ \x61\x75\x6c\x74\x20\x3d\x20\x7b\x64\x65\x66\x74\x7d\x07\x00\x00\ \x00\x0a\x48\x65\x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x20\x00\x41\x00\x75\x00\x73\x00\x64\x00\x72\x00\x75\x00\x63\ \x00\x6b\x00\x73\x00\x2d\x00\x45\x00\x64\x00\x69\x00\x74\x00\x6f\ \x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x72\ \x65\x73\x73\x69\x6f\x6e\x20\x65\x64\x69\x74\x6f\x72\x07\x00\x00\ \x00\x10\x49\x6e\x6c\x69\x6e\x65\x43\x6f\x64\x65\x44\x69\x61\x6c\ \x6f\x67\x01\x03\x00\x00\x00\x16\x00\x26\x00\x42\x00\x65\x00\x61\ \x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x65\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x26\x45\x64\x69\x74\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0c\x00\x26\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x26\x46\x69\x6c\x65\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x14\x00\x26\x00\x57\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\ \x00\x75\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ \x26\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x26\x00\x41\x00\ \x6e\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x05\x26\x56\x69\x65\x77\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\ \x30\x00\x20\x00\x54\x00\x72\x00\x65\x00\x66\x00\x66\x00\x65\x00\ \x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x30\x20\x6d\x61\x74\ \x63\x68\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\xdc\x00\x62\x00\x65\x00\ \x72\x00\x20\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x62\x6f\x75\x74\x20\x54\ \x75\x72\x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x45\x00\x72\x00\x77\ \x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x74\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x08\x41\x64\x76\x61\x6e\x63\x65\x64\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x2e\x00\x41\x00\x6c\x00\x67\x00\x6f\x00\x62\x00\x6f\x00\ \x78\x00\x20\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\x00\x65\x00\ \x6e\x00\x20\x00\x28\x00\x2a\x00\x2e\x00\x61\x00\x6c\x00\x67\x00\ \x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x6c\x67\x6f\x62\ \x6f\x78\x20\x66\x69\x6c\x65\x20\x28\x2a\x2e\x61\x6c\x67\x29\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x12\x00\x56\x00\x45\x00\x52\x00\x4c\x00\x41\x00\x53\ \x00\x53\x00\x45\x00\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ \x42\x52\x45\x41\x4b\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x61\x00\x73\ \x00\x69\x00\x73\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x42\x61\x73\x69\x63\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x48\x00\x61\ \x00\x6c\x00\x74\x00\x65\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x42\x72\x65\x61\x6b\x70\ \x6f\x69\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x48\x00\x61\x00\x6c\x00\ \x74\x00\x65\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x3a\x00\ \x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x42\x72\x65\x61\x6b\ \x70\x6f\x69\x6e\x74\x3a\x20\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x22\x00\x46\x00\x75\ \x00\x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x41\ \x00\x55\x00\x46\x00\x52\x00\x55\x00\x46\x00\x45\x00\x4e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0d\x43\x41\x4c\x4c\x20\x66\x75\x6e\ \x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\x63\ \x00\x68\x00\x6e\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x0e\x00\x4c\x00\xf6\x00\x73\x00\x63\x00\x68\x00\x65\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x6c\x65\x61\x72\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x14\x00\x52\x00\x65\x00\x64\x00\x75\x00\x7a\x00\x69\x00\ \x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x08\x43\x6f\x6c\x6c\x61\x70\x73\x65\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x41\ \x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x72\x00\x65\x00\x64\x00\x75\ \x00\x7a\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6c\x61\x70\x73\x65\x20\x61\ \x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x12\x00\x4b\x00\x6f\x00\x6d\x00\x6d\x00\ \x65\x00\x6e\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\ \x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x18\x00\x41\x00\x75\x00\x73\x00\x73\x00\x63\x00\x68\x00\x6e\ \x00\x65\x00\x69\x00\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x03\x43\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x44\x00\x65\ \x00\x62\x00\x75\x00\x67\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x05\x44\x65\x62\x75\x67\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\xa2\ \x00\x4d\x00\xf6\x00\x63\x00\x68\x00\x74\x00\x65\x00\x6e\x00\x20\ \x00\x53\x00\x69\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x6b\ \x00\x6c\x00\x69\x00\x63\x00\x68\x00\x20\x00\x62\x00\x65\x00\x65\ \x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3f\x00\x0a\x00\x41\x00\x6c\ \x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\ \x00\x20\x00\x67\x00\x65\x00\x73\x00\x70\x00\x65\x00\x69\x00\x63\ \x00\x68\x00\x65\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\x00\xc4\ \x00\x6e\x00\x64\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x65\ \x00\x6e\x00\x20\x00\x67\x00\x65\x00\x68\x00\x65\x00\x6e\x00\x20\ \x00\x76\x00\x65\x00\x72\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x6e\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x44\x6f\x20\x79\ \x6f\x75\x20\x72\x65\x61\x6c\x6c\x79\x20\x77\x61\x6e\x74\x20\x74\ \x6f\x20\x65\x78\x69\x74\x3f\x0a\x41\x6c\x6c\x20\x75\x6e\x73\x61\ \x76\x65\x64\x20\x63\x68\x61\x6e\x67\x65\x73\x20\x77\x69\x6c\x6c\ \x20\x62\x65\x20\x6c\x6f\x73\x74\x2e\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x50\ \x00\x6c\x00\x6f\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4c\ \x00\x69\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x09\x44\x72\x61\x77\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\ \x00\x50\x00\x6c\x00\x6f\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\ \x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x73\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x44\x72\x61\x77\x20\x70\x6f\x69\ \x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x12\x00\x42\x00\x65\x00\x69\x00\x73\x00\ \x70\x00\x69\x00\x65\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x45\x78\x61\x6d\x70\x6c\x65\x73\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\ \x00\x42\x00\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x04\x45\x78\x69\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x12\x00\x45\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\x00\ \x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x45\x78\x70\ \x61\x6e\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x41\x00\x6c\x00\x6c\x00\x65\ \x00\x20\x00\x65\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\ \x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x45\x78\ \x70\x61\x6e\x64\x20\x61\x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x46\x00\ \xdc\x00\x52\x00\x20\x00\x53\x00\x63\x00\x68\x00\x6c\x00\x65\x00\ \x69\x00\x66\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x46\ \x4f\x52\x20\x6c\x6f\x6f\x70\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x53\x00\x75\ \x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x04\x46\x69\x6e\x64\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x57\x00\x65\x00\ \x69\x00\x74\x00\x65\x00\x72\x00\x73\x00\x75\x00\x63\x00\x68\x00\ \x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x69\x6e\ \x64\x20\x4e\x65\x78\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x52\x00\xfc\x00\ \x63\x00\x6b\x00\x77\x00\xe4\x00\x72\x00\x74\x00\x73\x00\x20\x00\ \x73\x00\x75\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0d\x46\x69\x6e\x64\x20\x50\x72\x65\x76\x69\x6f\ \x75\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x61\x00\x6c\x00\x74\x00\ \x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\ \x6f\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x46\x00\x75\x00\ \x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x75\x6e\x63\x74\x69\x6f\ \x6e\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x1a\x00\x47\x00\x65\x00\x68\x00\x65\x00\ \x20\x00\x7a\x00\x75\x00\x20\x00\x5a\x00\x65\x00\x69\x00\x6c\x00\ \x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x47\x6f\x20\x54\x6f\ \x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\x00\x48\x00\x69\x00\x6c\ \x00\x66\x00\x65\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x6e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x48\x65\x6c\x70\x20\x43\ \x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x74\ \x00\x61\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ \x48\x6f\x6d\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x2e\x00\x5a\x00\x65\x00\x69\x00\ \x6c\x00\x65\x00\x6e\x00\x65\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\ \x67\x00\x20\x00\x76\x00\x65\x00\x72\x00\x67\x00\x72\x00\xf6\x00\ \xdf\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x06\x49\x6e\x64\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x45\x00\x69\ \x00\x6e\x00\x67\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x3a\x00\x20\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x49\x6e\x70\x75\x74\x3a\ \x20\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x3c\x00\x47\x00\x72\x00\x6f\x00\xdf\x00\x2d\ \x00\x2f\x00\x4b\x00\x6c\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\ \x00\x68\x00\x72\x00\x65\x00\x69\x00\x62\x00\x75\x00\x6e\x00\x67\ \x00\x20\x00\x62\x00\x65\x00\x61\x00\x63\x00\x68\x00\x74\x00\x65\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x74\x63\ \x68\x20\x63\x61\x73\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x06\x00\x4e\x00\x65\x00\ \x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x4e\x65\x77\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0c\x00\xd6\x00\x66\x00\x66\x00\x6e\x00\x65\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x04\x4f\x70\x65\x6e\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x10\x00\x45\x00\x69\x00\x6e\x00\x66\x00\xfc\x00\x67\x00\x65\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x61\x73\x74\ \x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x20\x00\x50\x00\x6c\x00\x6f\x00\x74\x00\x74\ \x00\x65\x00\x6e\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\ \x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ \x50\x6c\x6f\x74\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x10\x00\x41\x00\x75\x00\x73\x00\x67\x00\x65\x00\x62\x00\x65\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x72\x69\x6e\ \x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x14\x00\x50\x00\x73\x00\x65\x00\x75\x00\x64\ \x00\x6f\x00\x63\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0a\x50\x73\x65\x75\x64\x6f\x63\x6f\x64\x65\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x2a\x00\x50\x00\x79\x00\x74\x00\x68\x00\x6f\x00\x6e\x00\ \x20\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\x00\x65\x00\x6e\x00\ \x20\x00\x28\x00\x2a\x00\x2e\x00\x70\x00\x79\x00\x29\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x12\x50\x79\x74\x68\x6f\x6e\x20\x66\x69\ \x6c\x65\x20\x28\x2a\x2e\x70\x79\x29\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x53\ \x00\x63\x00\x68\x00\x6e\x00\x65\x00\x6c\x00\x6c\x00\x73\x00\x74\ \x00\x61\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ \x51\x75\x69\x63\x6b\x20\x53\x74\x61\x72\x74\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x16\ \x00\x5a\x00\x55\x00\x52\x00\xdc\x00\x43\x00\x4b\x00\x47\x00\x45\ \x00\x42\x00\x45\x00\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ \x52\x45\x54\x55\x52\x4e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2c\x00\x42\x00\x45\x00\ \x4e\x00\x55\x00\x54\x00\x5a\x00\x45\x00\x52\x00\x45\x00\x49\x00\ \x4e\x00\x47\x00\x41\x00\x42\x00\x45\x00\x4e\x00\x20\x00\x6c\x00\ \x65\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0f\x52\x65\x61\x64\x20\x75\x73\x65\x72\x20\x49\x4e\x50\x55\x54\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x22\x00\x5a\x00\x75\x00\x6c\x00\x65\x00\x74\x00\ \x7a\x00\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\ \x6e\x00\x64\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0c\x52\x65\x63\x65\x6e\x74\x20\x66\x69\x6c\x65\x73\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x22\x00\x5a\x00\x75\x00\x6c\x00\x65\x00\x74\x00\x7a\x00\x74\ \x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\ \x00\x65\x00\x74\x08\x00\x00\x00\x04\x4d\x65\x6e\x75\x06\x00\x00\ \x00\x0c\x52\x65\x63\x65\x6e\x74\x20\x66\x69\x6c\x65\x73\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x20\x00\x57\x00\x69\x00\x65\x00\x64\x00\x65\x00\x72\x00\ \x68\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\ \x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x65\x64\ \x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x24\x00\x52\x00\x65\x00\x67\x00\x75\x00\x6c\ \x00\xe4\x00\x72\x00\x65\x00\x20\x00\x41\x00\x75\x00\x73\x00\x64\ \x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x05\x52\x65\x67\x65\x78\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x45\ \x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x07\x52\x65\x70\x6c\x61\x63\x65\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x1a\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x65\ \x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0b\x52\x65\x70\x6c\x61\x63\x65\x20\ \x41\x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x74\x00\x61\x00\x6e\ \x00\x64\x00\x61\x00\x72\x00\x64\x00\x67\x00\x72\x00\xf6\x00\xdf\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x52\x65\x73\x65\ \x74\x20\x7a\x6f\x6f\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x41\x00\x75\x00\ \x73\x00\x66\x00\xfc\x00\x68\x00\x72\x00\x65\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x03\x52\x75\x6e\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\ \x53\x00\x70\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x72\x00\ \x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x61\x76\x65\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x1c\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x73\ \x00\x70\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x72\x00\x6e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x61\x76\x65\x20\x41\ \x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x70\x00\x65\x00\x69\x00\ \x63\x00\x68\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\ \x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\ \x61\x76\x65\x20\x41\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x75\x00\ \x73\x00\x67\x00\x61\x00\x62\x00\x65\x00\x64\x00\x61\x00\x74\x00\ \x65\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\x00\x69\x00\x63\x00\ \x68\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0b\x53\x61\x76\x65\x20\x6f\x75\x74\x70\x75\x74\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x0e\x00\x41\x00\x75\x00\x73\x00\x77\x00\x61\x00\x68\x00\x6c\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x06\x53\x65\x6c\x65\x63\x74\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x1e\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\ \x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x6c\x65\ \x63\x74\x20\x41\x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x46\x00\x65\x00\ \x65\x00\x64\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x20\x00\x73\x00\ \x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0d\x53\x65\x6e\x64\x20\x46\x65\x65\x64\x62\x61\x63\x6b\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x1c\x00\x47\x00\x72\x00\x61\x00\x66\x00\x69\x00\ \x6b\x00\x66\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x77\ \x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x45\x00\x69\x00\x6e\ \x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\ \x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x65\ \x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x53\x00\x79\x00\ \x6d\x00\x62\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x69\x00\x73\x00\ \x74\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x69\x00\ \x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ \x68\x6f\x77\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\ \x00\x42\x00\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x04\x53\x74\x6f\x70\x07\x00\x00\x00\ \x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x26\x00\x54\x00\x65\x00\x78\x00\x74\x00\x64\x00\x61\x00\x74\x00\ \x65\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x2a\x00\x2e\x00\ \x74\x00\x78\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x12\x54\x65\x78\x74\x20\x66\x69\x6c\x65\x73\x20\x28\x2a\x2e\x74\ \x78\x74\x29\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x18\x00\x53\x00\x79\x00\x6d\x00\x62\ \x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ \x72\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x24\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x2d\x00\x20\x00\x55\x00\x6e\x00\x62\x00\x65\ \x00\x6e\x00\x61\x00\x6e\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x54\x75\x72\x69\x6e\x67\x20\x2d\x20\x4e\x65\x77\ \x20\x46\x69\x6c\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x75\x00\x72\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\x00\x20\x00\x7b\x00\x66\ \x00\x69\x00\x6c\x00\x65\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0f\x54\x75\x72\x69\x6e\x67\x20\x2d\x20\x7b\x66\x69\x6c\x65\ \x7d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x34\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x2d\x00\x20\x00\x7b\x00\x66\x00\x69\x00\x6c\ \x00\x65\x00\x7d\x00\x20\x00\x28\x00\x67\x00\x65\x00\xe4\x00\x6e\ \x00\x64\x00\x65\x00\x72\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x19\x54\x75\x72\x69\x6e\x67\x20\x2d\x20\x7b\x66\x69\ \x6c\x65\x7d\x20\x28\x75\x6e\x73\x61\x76\x65\x64\x29\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x14\x00\x52\x00\xfc\x00\x63\x00\x6b\x00\x67\x00\xe4\x00\x6e\ \x00\x67\x00\x69\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ \x55\x6e\x64\x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x30\x00\x5a\x00\x65\x00\x69\x00\ \x6c\x00\x65\x00\x6e\x00\x65\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\ \x67\x00\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6c\x00\x65\x00\ \x69\x00\x6e\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x55\x6e\x69\x6e\x64\x65\x6e\x74\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\ \x00\x53\x00\x4f\x00\x4c\x00\x41\x00\x4e\x00\x47\x00\x45\x00\x20\ \x00\x53\x00\x63\x00\x68\x00\x6c\x00\x65\x00\x69\x00\x66\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x48\x49\x4c\x45\x20\ \x6c\x6f\x6f\x70\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x57\x00\x61\x00\x72\x00\ \x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ \x61\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x3e\x00\xdc\x00\x62\x00\x65\x00\x72\ \x00\x65\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x69\x00\x6d\x00\x6d\ \x00\x75\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\ \x00\x67\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x6d\x00\x20\x00\x57\ \x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ \x57\x68\x6f\x6c\x65\x20\x77\x6f\x72\x64\x73\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\ \x00\x5a\x00\x6f\x00\x6f\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x04\x5a\x6f\x6f\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x56\x00\x65\x00\ \x72\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x72\x00\x6e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x07\x5a\x6f\x6f\x6d\x20\x69\x6e\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x16\x00\x56\x00\x65\x00\x72\x00\x6b\x00\x6c\x00\ \x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x08\x5a\x6f\x6f\x6d\x20\x6f\x75\x74\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x1a\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x20\x00\x54\ \x00\x72\x00\x65\x00\x66\x00\x66\x00\x65\x00\x72\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0d\x7b\x6e\x75\x6d\x7d\x20\x6d\x61\x74\x63\ \x68\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x06\x00\x55\x00\x4e\x00\x44\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x03\x41\x4e\x44\x07\x00\x00\x00\x06\ \x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x3e\x00\x54\x00\x6f\ \x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x72\x00\x77\x00\x61\ \x00\x72\x00\x74\x00\x65\x00\x74\x00\x20\x00\x28\x00\x7b\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\x00\x7b\ \x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x1f\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x6b\ \x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\x29\x20\x27\x7b\x76\x61\ \x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\ \x00\x00\x00\x0a\x00\x4e\x00\x49\x00\x43\x00\x48\x00\x54\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x03\x4e\x4f\x54\x07\x00\x00\x00\x06\ \x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x08\x00\x4f\x00\x44\ \x00\x45\x00\x52\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x4f\x52\ \x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\ \x2c\x00\x55\x00\x6e\x00\x65\x00\x72\x00\x77\x00\x61\x00\x72\x00\ \x74\x00\x65\x00\x74\x00\x65\x00\x73\x00\x20\x00\x44\x00\x61\x00\ \x74\x00\x65\x00\x69\x00\x65\x00\x6e\x00\x64\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0e\x55\x6e\x65\x78\x70\x65\x63\x74\x65\ \x64\x20\x45\x4f\x4c\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\ \x01\x03\x00\x00\x00\x46\x00\x55\x00\x6e\x00\x65\x00\x72\x00\x77\ \x00\x61\x00\x72\x00\x74\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ \x00\x54\x00\x6f\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x7b\ \x00\x74\x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\ \x00\x7b\x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x21\x55\x6e\x65\x78\x70\x65\x63\x74\x65\x64\ \x20\x74\x6f\x6b\x65\x6e\x20\x28\x7b\x74\x79\x70\x65\x7d\x29\x20\ \x27\x7b\x76\x61\x6c\x7d\x27\x07\x00\x00\x00\x06\x50\x61\x72\x73\ \x65\x72\x01\x03\x00\x00\x00\x22\x00\x42\x00\x65\x00\x6e\x00\x75\ \x00\x74\x00\x7a\x00\x65\x00\x72\x00\x64\x00\x65\x00\x66\x00\x69\ \x00\x6e\x00\x69\x00\x65\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x06\x43\x75\x73\x74\x6f\x6d\x07\x00\x00\x00\x06\x54\ \x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\x10\x00\x53\x00\x74\x00\ \x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x07\x44\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\ \x06\x54\x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\x0c\x00\x46\x00\ \x41\x00\x4c\x00\x53\x00\x43\x00\x48\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x46\x41\x4c\x53\x45\x07\x00\x00\x00\x09\x55\x74\x69\ \x6c\x69\x74\x69\x65\x73\x01\x03\x00\x00\x00\x08\x00\x57\x00\x41\ \x00\x48\x00\x52\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x52\ \x55\x45\x07\x00\x00\x00\x09\x55\x74\x69\x6c\x69\x74\x69\x65\x73\ \x01\x88\x00\x00\x00\x02\x01\x01\ \x00\x00\x31\x63\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x04\x00\x00\x00\x05\x42\x00\x00\x2b\x74\x00\x00\x05\xba\ \x00\x00\x04\x93\x00\x00\x05\xca\x00\x00\x04\xbc\x00\x00\x46\x24\ \x00\x00\x2a\xba\x00\x00\x4a\xc4\x00\x00\x21\xc0\x00\x00\x53\x44\ \x00\x00\x2b\x52\x00\x00\x54\xc7\x00\x00\x24\x88\x00\x00\x59\xbe\ \x00\x00\x27\x19\x00\x00\x5b\x2a\x00\x00\x02\x90\x00\x04\xa6\x79\ \x00\x00\x21\x91\x00\x04\xcf\x04\x00\x00\x22\x6f\x00\x04\xd0\x44\ \x00\x00\x22\xd7\x00\x05\x66\xbe\x00\x00\x24\xb4\x00\x05\x8b\xaf\ \x00\x00\x26\x2d\x00\x05\x97\x95\x00\x00\x2d\x0e\x00\x05\x98\xc5\ \x00\x00\x27\x4b\x00\x05\xc4\xaf\x00\x00\x29\x2e\x00\x06\x16\x5d\ \x00\x00\x2a\x0c\x00\x07\x2b\xd4\x00\x00\x1e\x75\x00\x0d\x20\x0e\ \x00\x00\x11\x71\x00\x2a\xbb\x04\x00\x00\x1f\x7f\x00\x2a\xd0\x25\ \x00\x00\x1f\xb1\x00\x2b\xcf\xc7\x00\x00\x20\x24\x00\x48\x89\xf3\ \x00\x00\x08\xb2\x00\x48\x89\xf3\x00\x00\x20\x9f\x00\x4a\x61\x75\ \x00\x00\x2c\xe1\x00\x4d\x96\x0a\x00\x00\x02\x65\x00\x56\x8a\xa5\ \x00\x00\x24\xe1\x00\x57\x90\x54\x00\x00\x25\x57\x00\x58\xbd\xc8\ \x00\x00\x26\x5e\x00\x76\x11\x75\x00\x00\x01\x6c\x00\x78\xfd\xf4\ \x00\x00\x1e\xa9\x00\xdb\xc9\x5d\x00\x00\x07\x8c\x00\xdf\x75\xfd\ \x00\x00\x1f\x30\x00\xe5\xe0\x6e\x00\x00\x10\xdf\x01\x0a\xfe\xf5\ \x00\x00\x06\x2d\x01\x0a\xfe\xf5\x00\x00\x07\x36\x01\x65\xf6\x9e\ \x00\x00\x2a\x37\x01\xa4\xb6\x1e\x00\x00\x1d\xa1\x01\xc5\xe4\x27\ \x00\x00\x00\x00\x01\xc5\xe4\x27\x00\x00\x20\x54\x01\xe8\x81\x9e\ \x00\x00\x1b\x95\x02\x13\x44\x8e\x00\x00\x1c\x9f\x02\xbb\x66\x33\ \x00\x00\x1f\xe5\x02\xf9\xc5\xc5\x00\x00\x00\x4c\x02\xfb\x35\xf9\ \x00\x00\x1e\x36\x03\x09\xc6\xb4\x00\x00\x06\x84\x03\x17\x7e\xfe\ \x00\x00\x09\xaa\x03\x87\x76\x3e\x00\x00\x1a\x63\x03\xac\x25\x3e\ \x00\x00\x0e\x29\x03\xc8\x4a\xce\x00\x00\x00\x83\x03\xe7\x7e\x93\ \x00\x00\x25\x8b\x04\x47\x32\xd0\x00\x00\x02\x29\x04\x47\x32\xd0\ \x00\x00\x22\x9c\x04\x50\xdd\x0e\x00\x00\x0d\x02\x04\x54\xd7\xae\ \x00\x00\x15\xeb\x04\x65\x01\xf4\x00\x00\x23\x06\x04\xa6\x36\x5a\ \x00\x00\x03\x0d\x04\xa6\x36\x5a\x00\x00\x03\x94\x04\xa6\x36\x5a\ \x00\x00\x04\x13\x04\xac\xab\x5d\x00\x00\x2c\x6e\x04\xcb\x8b\x5e\ \x00\x00\x0a\x81\x04\xd3\x4e\x87\x00\x00\x2b\xf0\x04\xd3\x6a\x87\ \x00\x00\x2a\xda\x05\x04\xac\x54\x00\x00\x23\xce\x05\x04\xaf\x94\ \x00\x00\x29\x61\x05\x38\xa5\xba\x00\x00\x04\xe5\x05\x38\xa5\xca\ \x00\x00\x05\x1b\x05\x40\x05\xba\x00\x00\x05\x51\x05\x40\x05\xca\ \x00\x00\x05\x87\x05\x8b\x46\x55\x00\x00\x01\x1a\x05\xc8\xa3\xf3\ \x00\x00\x23\x4e\x06\x1d\x00\x2e\x00\x00\x13\x1d\x06\x5f\x70\xd4\ \x00\x00\x2a\x77\x06\x67\x79\x75\x00\x00\x03\xc8\x06\x74\x2d\x34\ \x00\x00\x04\x48\x07\x0e\xa2\xae\x00\x00\x0c\x82\x07\x21\x9e\x93\ \x00\x00\x29\xb4\x07\x4e\x94\x3e\x00\x00\x02\xb7\x07\x71\x8c\x2e\ \x00\x00\x11\xfd\x07\xdb\xd7\x07\x00\x00\x05\xbd\x07\xdb\xd7\x07\ \x00\x00\x28\x42\x08\x23\xc8\xe4\x00\x00\x06\xeb\x08\x23\xc8\xe4\ \x00\x00\x20\xcf\x08\x30\xb0\x8e\x00\x00\x0c\x00\x08\x3e\xfd\xeb\ \x00\x00\x01\xbd\x08\x97\x65\xc5\x00\x00\x21\xee\x08\xc7\x27\xc5\ \x00\x00\x26\xa4\x08\xc7\x43\xbc\x00\x00\x27\x7c\x09\x07\xc1\x2e\ \x00\x00\x10\x52\x09\x73\xe8\xd4\x00\x00\x22\x2e\x09\x8c\x74\xd3\ \x00\x00\x27\xbb\x09\xa3\xa0\x35\x00\x00\x24\x21\x09\xd4\xed\x6e\ \x00\x00\x18\x55\x0a\x64\x3c\x14\x00\x00\x00\xdb\x0a\x64\x3c\x14\ \x00\x00\x21\x57\x0a\x93\xcc\xfe\x00\x00\x0e\xb9\x0a\xa5\x09\x9e\ \x00\x00\x0f\x28\x0a\xbc\x8c\x74\x00\x00\x2c\xa9\x0a\xc6\x13\x42\ \x00\x00\x08\x73\x0a\xc6\x13\x42\x00\x00\x21\x18\x0a\xdf\x89\x4e\ \x00\x00\x14\x6b\x0a\xfa\xf7\x6e\x00\x00\x1a\xcc\x0b\x31\x11\xbe\ \x00\x00\x0b\x0c\x0b\xa3\xdc\x0c\x00\x00\x27\xf9\x0b\xc2\x58\x6e\ \x00\x00\x18\xd9\x0b\xec\x62\x8e\x00\x00\x16\x9f\x0c\x63\x9a\xcd\ \x00\x00\x26\xde\x0c\x97\x75\x1e\x00\x00\x08\xdc\x0c\x99\xa1\x53\ \x00\x00\x1e\xda\x0c\x99\xa1\x53\x00\x00\x23\x98\x0c\xbb\x01\x73\ \x00\x00\x28\xad\x0d\x03\x4c\x7e\x00\x00\x15\x1a\x0d\x4c\x62\x8e\ \x00\x00\x17\x28\x0d\x7c\xca\xde\x00\x00\x03\x41\x0d\x7c\xca\xde\ \x00\x00\x25\x0f\x0e\x15\x49\x3e\x00\x00\x12\x94\x0e\x46\xd4\x0e\ \x00\x00\x0b\x89\x0e\x79\x28\x5c\x00\x00\x2b\x93\x0e\x95\xdd\x25\ \x00\x00\x25\xda\x0e\xbf\xbc\xfe\x00\x00\x0d\x95\x0e\xc4\x49\x9e\ \x00\x00\x19\x51\x0e\xdd\xd4\x5e\x00\x00\x1d\x13\x0f\x18\x4b\xfd\ \x00\x00\x28\xe2\x0f\x55\x9c\xfe\x00\x00\x0f\x9e\x0f\x6d\xb6\x6e\ \x00\x00\x17\xb1\x0f\xbb\xfa\xfe\x00\x00\x13\xc7\x0f\xc1\xd2\xad\ \x00\x00\x07\xf2\x69\x00\x00\x2d\x42\x03\x00\x00\x00\x20\x00\x41\ \x00\x63\x00\x65\x00\x72\x00\x63\x00\x61\x00\x20\x00\x64\x00\x65\ \x00\x20\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0c\x41\x62\x6f\x75\x74\x20\x54\x75\ \x72\x69\x6e\x67\x07\x00\x00\x00\x0b\x41\x62\x6f\x75\x74\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x4c\x00\x69\x00\x63\ \x00\x65\x00\x6e\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x07\x4c\x69\x63\x65\x6e\x73\x65\x07\x00\x00\x00\x0b\ \x41\x62\x6f\x75\x74\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x2a\x00\x4c\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x64\x00\x61\x00\ \x20\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\ \x75\x00\x6e\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0d\x43\x61\x6c\x6c\x20\x66\x75\x6e\x63\x74\x69\ \x6f\x6e\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x43\x61\x6c\x6c\x53\ \x74\x6d\x74\x01\x03\x00\x00\x00\x14\x00\x43\x00\x6f\x00\x6d\x00\ \x65\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x69\x00\x6f\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\x74\x07\x00\ \x00\x00\x0f\x41\x6c\x67\x6f\x43\x6f\x6d\x6d\x65\x6e\x74\x53\x74\ \x6d\x74\x01\x03\x00\x00\x00\x20\x00\x44\x00\x65\x00\x66\x00\x69\ \x00\x6e\x00\x69\x00\x72\x00\x20\x00\x76\x00\x61\x00\x72\x00\x69\ \x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0f\x44\x65\x66\x69\x6e\x65\x20\x76\x61\x72\x69\x61\x62\x6c\ \x65\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x44\x65\x66\x69\x6e\x65\ \x53\x74\x6d\x74\x01\x03\x00\x00\x00\x20\x00\x56\x00\x69\x00\x73\ \x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\ \x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0d\x44\x69\x73\x70\x6c\x61\x79\x20\x76\x61\x6c\x75\ \x65\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x44\x69\x73\x70\x6c\x61\ \x79\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x30\x00\x41\x00\xf1\x00\ \x61\x00\x64\x00\x69\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ \x73\x00\x61\x00\x6c\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ \x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x18\x46\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\ \x20\x61\x20\x6c\x69\x6e\x65\x20\x62\x72\x65\x61\x6b\x07\x00\x00\ \x00\x0f\x41\x6c\x67\x6f\x44\x69\x73\x70\x6c\x61\x79\x53\x74\x6d\ \x74\x01\x03\x00\x00\x00\x14\x00\x42\x00\x75\x00\x63\x00\x6c\x00\ \x65\x00\x20\x00\x50\x00\x41\x00\x52\x00\x41\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x08\x46\x4f\x52\x20\x6c\x6f\x6f\x70\x07\x00\x00\ \x00\x0b\x41\x6c\x67\x6f\x46\x6f\x72\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x06\x00\x44\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x46\x72\x6f\x6d\x3a\x07\x00\x00\x00\x0b\x41\x6c\x67\ \x6f\x46\x6f\x72\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x04\x00\x41\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x54\x6f\x3a\x07\ \x00\x00\x00\x0b\x41\x6c\x67\x6f\x46\x6f\x72\x53\x74\x6d\x74\x01\ \x03\x00\x00\x00\x26\x00\x44\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ \x69\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\ \x75\x00\x6e\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0f\x44\x65\x66\x69\x6e\x65\x20\x66\x75\x6e\x63\ \x74\x69\x6f\x6e\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x46\x75\x6e\ \x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x6f\x00\ \x6c\x00\x6f\x00\x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\ \x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x24\x00\ \x54\x00\x72\x00\x61\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x75\x00\ \x6e\x00\x61\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x63\x00\x69\x00\ \xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x6c\x6f\ \x74\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x0d\x41\ \x6c\x67\x6f\x47\x46\x75\x6e\x63\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x0c\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\ \x00\x00\x0d\x41\x6c\x67\x6f\x47\x4c\x69\x6e\x65\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x20\x00\x54\x00\x72\x00\x61\x00\x7a\x00\x61\ \x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\xed\ \x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ \x50\x6c\x6f\x74\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x41\x6c\ \x67\x6f\x47\x4c\x69\x6e\x65\x53\x74\x6d\x74\x01\x03\x00\x00\x00\ \x0c\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x3a\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x06\x43\x6f\x6c\x6f\x72\x3a\x07\x00\x00\ \x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\ \x01\x03\x00\x00\x00\x1e\x00\x54\x00\x72\x00\x61\x00\x7a\x00\x61\ \x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\ \x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x50\x6c\ \x6f\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x41\x6c\x67\ \x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\x00\x00\ \x04\x00\x58\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\ \x3a\x07\x00\x00\x00\x0e\x41\x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\ \x53\x74\x6d\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x02\x59\x3a\x07\x00\x00\x00\x0e\x41\ \x6c\x67\x6f\x47\x50\x6f\x69\x6e\x74\x53\x74\x6d\x74\x01\x03\x00\ \x00\x00\x0c\x00\x4d\x00\xe1\x00\x78\x00\x20\x00\x58\x00\x3a\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x06\x4d\x61\x78\x20\x58\x3a\x07\ \x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\ \x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\xe1\x00\x78\x00\ \x20\x00\x59\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4d\ \x61\x78\x20\x59\x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\ \x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x0c\x00\ \x4d\x00\xed\x00\x6e\x00\x20\x00\x58\x00\x3a\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x06\x4d\x69\x6e\x20\x58\x3a\x07\x00\x00\x00\x0f\ \x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\x77\x53\x74\x6d\x74\x01\ \x03\x00\x00\x00\x0c\x00\x4d\x00\xed\x00\x6e\x00\x20\x00\x59\x00\ \x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4d\x69\x6e\x20\x59\ \x3a\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\ \x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\ \x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x61\x00\x72\x00\ \x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6e\x00\x74\x00\ \x61\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ \x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\x00\x6f\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\x77\x69\x6e\x64\x6f\ \x77\x07\x00\x00\x00\x0f\x41\x6c\x67\x6f\x47\x57\x69\x6e\x64\x6f\ \x77\x53\x74\x6d\x74\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x6f\x00\ \x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ \x20\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x61\x00\x6a\x00\x65\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x69\x73\x70\x6c\x61\x79\ \x20\x61\x20\x6d\x65\x73\x73\x61\x67\x65\x07\x00\x00\x00\x0d\x41\ \x6c\x67\x6f\x49\x6e\x70\x75\x74\x53\x74\x6d\x74\x01\x03\x00\x00\ \x00\x36\x00\x4c\x00\x65\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\ \x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x61\ \x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x75\ \x00\x61\x00\x72\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0f\x52\x65\x61\x64\x20\x75\x73\x65\x72\x20\x69\x6e\x70\x75\ \x74\x07\x00\x00\x00\x0d\x41\x6c\x67\x6f\x49\x6e\x70\x75\x74\x53\ \x74\x6d\x74\x01\x03\x00\x00\x00\x20\x00\x50\x00\x75\x00\x6e\x00\ \x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x72\x00\x75\x00\ \x70\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0a\x42\x72\x65\x61\x6b\x70\x6f\x69\x6e\x74\x07\x00\x00\ \x00\x0c\x41\x6c\x67\x6f\x53\x74\x6f\x70\x53\x74\x6d\x74\x01\x03\ \x00\x00\x00\x24\x00\x4d\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x61\ \x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x6e\ \x00\x73\x00\x61\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x11\x44\x69\x73\x70\x6c\x61\x79\x20\x61\x20\x6d\x65\x73\x73\ \x61\x67\x65\x07\x00\x00\x00\x0c\x41\x6c\x67\x6f\x53\x74\x6f\x70\ \x53\x74\x6d\x74\x01\x03\x00\x00\x00\x34\x00\x43\x00\x6f\x00\x6c\ \x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x63\x00\x6f\ \x00\x6e\x00\x6f\x00\x63\x00\x69\x00\x64\x00\x6f\x00\x3a\x00\x20\ \x00\x7b\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x7d\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x16\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\ \x63\x6f\x6c\x6f\x72\x3a\x20\x7b\x63\x6f\x6c\x6f\x72\x7d\x07\x00\ \x00\x00\x07\x41\x6c\x67\x6f\x62\x6f\x78\x01\x03\x00\x00\x00\x48\ \x00\x54\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ \x00\x76\x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\ \x00\x20\x00\x64\x00\x65\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6f\ \x00\x63\x00\x69\x00\x64\x00\x6f\x00\x3a\x00\x20\x00\x7b\x00\x74\ \x00\x79\x00\x70\x00\x65\x00\x7d\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x1d\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\ \x6c\x65\x20\x74\x79\x70\x65\x3a\x20\x7b\x74\x79\x70\x65\x7d\x07\ \x00\x00\x00\x07\x41\x6c\x67\x6f\x62\x6f\x78\x01\x03\x00\x00\x00\ \x16\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\ \x64\x00\x6f\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x07\x00\x00\x00\x0a\ \x43\x61\x6c\x63\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\ \x00\x42\x00\xe1\x00\x73\x00\x69\x00\x63\x00\x6f\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x05\x42\x61\x73\x69\x63\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x78\x00\x44\x00\x65\x00\x76\ \x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x75\x00\x6e\ \x00\x20\x00\x6e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\ \x00\x61\x00\x6c\x00\x65\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x69\ \x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\ \x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\x00\x79\x00\x20\ \x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\x7d\x00\x20\x00\x28\x00\x69\ \x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x64\x00\x6f\x00\x29\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x52\x65\x74\x75\ \x72\x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\x20\x69\x6e\x74\ \x65\x67\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x7b\x7b\x61\ \x7d\x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\x7d\x20\x28\x69\x6e\ \x63\x6c\x75\x73\x69\x76\x65\x29\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x7e\x00\x44\x00\x65\x00\x76\x00\x75\ \x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\ \x00\x6e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x61\ \x00\x6c\x00\x65\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x69\x00\x6f\ \x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x30\ \x00\x20\x00\x28\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\ \x00\x64\x00\x6f\x00\x29\x00\x20\x00\x79\x00\x20\x00\x31\x00\x20\ \x00\x28\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x64\ \x00\x6f\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\ \x52\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x72\x61\x6e\x64\x6f\x6d\ \x20\x6e\x75\x6d\x62\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ \x30\x20\x28\x69\x6e\x63\x6c\x75\x73\x69\x76\x65\x29\x20\x61\x6e\ \x64\x20\x31\x20\x28\x65\x78\x63\x6c\x75\x73\x69\x76\x65\x29\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4c\x00\ \x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\ \x20\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\ \x72\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\x6c\x00\x75\x00\ \x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\ \x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\ \x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x76\x61\x6c\x75\x65\x20\ \x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x44\x00\x44\x00\x65\x00\x76\ \x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\ \x00\x20\x00\x61\x00\x72\x00\x63\x00\x6f\x00\x20\x00\x63\x00\x6f\ \x00\x73\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ \x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x20\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x61\x72\x63\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\ \x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x40\x00\x44\x00\x65\x00\x76\x00\x75\x00\ \x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\ \x61\x00\x72\x00\x63\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6e\x00\ \x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\ \x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1e\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x61\x72\x63\ \x20\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\ \x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x48\x00\x44\ \x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\ \x00\x65\x00\x6c\x00\x20\x00\x61\x00\x72\x00\x63\x00\x6f\x00\x20\ \x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\x00\x65\ \x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x61\x72\x63\x20\ \x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\ \x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x3e\ \x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\ \x00\x20\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x72\x00\x67\x00\x75\ \x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\ \x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x28\x6f\x72\ \x20\x70\x68\x61\x73\x65\x29\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\ \x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x52\ \x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\ \x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x69\ \x00\x61\x00\x20\x00\x61\x00\x72\x00\x69\x00\x74\x00\x6d\x00\xe9\ \x00\x74\x00\x69\x00\x63\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\ \x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x52\x65\x74\x75\ \x72\x6e\x73\x20\x74\x68\x65\x20\x61\x72\x69\x74\x68\x6d\x65\x74\ \x69\x63\x20\x6d\x65\x61\x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\ \x73\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x52\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\ \x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6c\x00\x6f\x00\ \x67\x00\x61\x00\x72\x00\x69\x00\x74\x00\x6d\x00\x6f\x00\x20\x00\ \x64\x00\x65\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\ \x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\ \x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\ \x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x2d\ \x31\x30\x20\x6c\x6f\x67\x61\x72\x69\x74\x68\x6d\x20\x6f\x66\x20\ \x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x50\x00\x44\x00\x65\x00\x76\x00\x75\x00\ \x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\ \x63\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x6a\x00\x6f\x00\ \x20\x00\x63\x00\x6f\x00\x6e\x00\x6a\x00\x75\x00\x67\x00\x61\x00\ \x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\ \x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x27\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\ \x70\x6c\x65\x78\x20\x63\x6f\x6e\x6a\x75\x67\x61\x74\x65\x20\x6f\ \x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x3a\x00\x44\x00\x65\x00\x76\x00\x75\x00\ \x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\ \x63\x00\x6f\x00\x73\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\ \x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\ \x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\ \x01\x03\x00\x00\x00\x3e\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\ \x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x66\ \x00\x61\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x69\x00\x61\x00\x6c\ \x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\ \x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x52\x65\ \x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x66\x61\x63\x74\x6f\x72\ \x69\x61\x6c\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\ \x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x64\x00\x44\x00\x65\ \x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\ \x00\x6c\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\ \x00\x20\x00\x63\x00\x6f\x00\x6d\x00\xfa\x00\x6e\x00\x20\x00\x64\ \x00\x69\x00\x76\x00\x69\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x64\ \x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\ \x00\x79\x00\x20\x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\x7d\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x67\x72\x65\x61\x74\x65\x73\x74\x20\x63\ \x6f\x6d\x6d\x6f\x6e\x20\x64\x69\x76\x69\x73\x6f\x72\x20\x6f\x66\ \x20\x7b\x7b\x61\x7d\x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\x7d\ \x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4e\ \x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\ \x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x69\ \x00\x61\x00\x20\x00\x61\x00\x72\x00\x6d\x00\xf3\x00\x6e\x00\x69\ \x00\x63\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\ \x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x68\x61\x72\x6d\x6f\x6e\x69\x63\x20\x6d\x65\x61\ \x6e\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\x2e\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x52\x00\x44\x00\ \x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\ \x65\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x65\x00\x6e\x00\ \x6f\x00\x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\x72\x00\x62\x00\ \xf3\x00\x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ \x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x27\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x68\x79\x70\x65\x72\x62\x6f\x6c\x69\x63\x20\ \x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4e\x00\ \x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\ \x20\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x6f\x00\ \x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\x72\x00\x62\x00\xf3\x00\ \x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ \x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x25\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x68\x79\x70\x65\x72\x62\x6f\x6c\x69\x63\x20\x73\x69\ \x6e\x65\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\ \x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x56\x00\x44\x00\x65\x00\ \x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\ \x6c\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\ \x74\x00\x65\x00\x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\x72\x00\ \x62\x00\xf3\x00\x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x64\x00\ \x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x68\x79\x70\x65\x72\x62\x6f\x6c\x69\ \x63\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x66\x20\x7b\x7b\x78\ \x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\ \x00\x4c\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\ \x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\ \x00\x74\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x69\ \x00\x6e\x00\x61\x00\x72\x00\x69\x00\x61\x00\x20\x00\x64\x00\x65\ \x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x24\x52\x65\x74\x75\x72\x6e\x73\x20\ \x74\x68\x65\x20\x69\x6d\x61\x67\x69\x6e\x61\x72\x79\x20\x70\x61\ \x72\x74\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\ \x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x62\x00\x44\x00\x65\x00\ \x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\ \x6c\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x65\x00\x6e\x00\x6f\x00\ \x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\x72\x00\x62\x00\xf3\x00\ \x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x76\x00\ \x65\x00\x72\x00\x73\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ \x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x2f\x52\x65\x74\x75\x72\x6e\x73\x20\x74\ \x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\x20\x68\x79\x70\x65\x72\ \x62\x6f\x6c\x69\x63\x20\x63\x6f\x73\x69\x6e\x65\x20\x6f\x66\x20\ \x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\ \x03\x00\x00\x00\x5e\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\ \x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x73\x00\ \x65\x00\x6e\x00\x6f\x00\x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\ \x72\x00\x62\x00\xf3\x00\x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\ \x69\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x20\x00\ \x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\ \x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x52\x65\x74\ \x75\x72\x6e\x73\x20\x74\x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\ \x20\x68\x79\x70\x65\x72\x62\x6f\x6c\x69\x63\x20\x73\x69\x6e\x65\ \x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\ \x6f\x63\x73\x01\x03\x00\x00\x00\x66\x00\x44\x00\x65\x00\x76\x00\ \x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\ \x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\x00\ \x65\x00\x20\x00\x68\x00\x69\x00\x70\x00\x65\x00\x72\x00\x62\x00\ \xf3\x00\x6c\x00\x69\x00\x63\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\ \x76\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ \x20\x00\x7b\x00\x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x69\x6e\x76\x65\x72\x73\x65\x20\x68\x79\x70\ \x65\x72\x62\x6f\x6c\x69\x63\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\ \x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\ \x63\x73\x01\x03\x00\x00\x00\x7e\x00\x44\x00\x65\x00\x76\x00\x75\ \x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\ \x00\x6e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x65\ \x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6d\x00\xe1\ \x00\x73\x00\x20\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\ \x00\x20\x00\x6d\x00\x65\x00\x6e\x00\x6f\x00\x72\x00\x20\x00\x6f\ \x00\x20\x00\x69\x00\x67\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x71\ \x00\x75\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\ \x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\ \x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6c\x61\x72\x67\ \x65\x73\x74\x20\x69\x6e\x74\x65\x67\x65\x72\x20\x6c\x65\x73\x73\ \x20\x74\x68\x61\x6e\x20\x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\ \x6f\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\ \x6f\x63\x73\x01\x03\x00\x00\x00\x66\x00\x44\x00\x65\x00\x76\x00\ \x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\ \x20\x00\x6d\x00\xed\x00\x6e\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\ \x63\x00\x6f\x00\x6d\x00\xfa\x00\x6e\x00\x20\x00\x6d\x00\xfa\x00\ \x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\ \x65\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x7d\x00\x7d\x00\x20\x00\ \x79\x00\x20\x00\x7b\x00\x7b\x00\x62\x00\x7d\x00\x7d\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x35\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x6c\x65\x61\x73\x74\x20\x63\x6f\x6d\x6d\x6f\ \x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x6f\x66\x20\x7b\x7b\ \x61\x7d\x7d\x20\x61\x6e\x64\x20\x7b\x7b\x62\x7d\x7d\x2e\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x4a\x00\x44\x00\ \x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\ \x65\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\ \x20\x00\x6d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\ \x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x61\x00\x72\x00\x67\x00\ \x73\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x26\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x6d\x61\x78\ \x69\x6d\x75\x6d\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\ \x61\x72\x67\x73\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\ \x01\x03\x00\x00\x00\x4a\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\ \x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x76\ \x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\xed\x00\x6e\ \x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\ \x00\x7b\x00\x61\x00\x72\x00\x67\x00\x73\x00\x7d\x00\x7d\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\x65\x74\x75\x72\x6e\ \x73\x20\x74\x68\x65\x20\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x76\x61\ \x6c\x75\x65\x20\x6f\x66\x20\x7b\x7b\x61\x72\x67\x73\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x56\x00\ \x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\ \x20\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\x73\x00\x76\x00\ \x69\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x65\x00\ \x73\x00\x74\x00\xe1\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x20\x00\ \x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6c\x00\x73\x00\x74\x00\ \x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x52\ \x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x70\x6f\x70\x75\x6c\ \x61\x74\x69\x6f\x6e\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x64\ \x65\x76\x69\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x7b\x7b\x6c\x73\ \x74\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x40\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\ \x76\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x61\x00\ \x72\x00\x69\x00\x61\x00\x6e\x00\x7a\x00\x61\x00\x20\x00\x64\x00\ \x65\x00\x20\x00\x7b\x00\x7b\x00\x6c\x00\x73\x00\x74\x00\x7d\x00\ \x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x52\x65\x74\ \x75\x72\x6e\x73\x20\x74\x68\x65\x20\x70\x6f\x70\x75\x6c\x61\x74\ \x69\x6f\x6e\x20\x76\x61\x72\x69\x61\x6e\x63\x65\x20\x6f\x66\x20\ \x7b\x7b\x6c\x73\x74\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\ \x73\x01\x03\x00\x00\x00\x40\x00\x44\x00\x65\x00\x76\x00\x75\x00\ \x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ \x70\x00\x61\x00\x72\x00\x74\x00\x65\x00\x20\x00\x72\x00\x65\x00\ \x61\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\ \x78\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1f\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x72\x65\x61\ \x6c\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\xb0\x00\ \x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\ \x20\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x67\x00\x6e\x00\ \x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\ \x75\x00\x6d\x00\x7d\x00\x7d\x00\x20\x00\x28\x00\x2d\x00\x31\x00\ \x20\x00\x73\x00\x69\x00\x20\x00\x65\x00\x73\x00\x20\x00\x6e\x00\ \x65\x00\x67\x00\x61\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x2c\x00\ \x20\x00\x31\x00\x20\x00\x73\x00\x69\x00\x20\x00\x65\x00\x73\x00\ \x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\x69\x00\x76\x00\ \x6f\x00\x2c\x00\x20\x00\x30\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ \x63\x00\x61\x00\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ \x74\x00\x72\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x29\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x49\x52\x65\x74\x75\x72\x6e\x73\ \x20\x74\x68\x65\x20\x73\x69\x67\x6e\x20\x6f\x66\x20\x7b\x7b\x6e\ \x75\x6d\x7d\x7d\x20\x28\x2d\x31\x20\x69\x66\x20\x6e\x65\x67\x61\ \x74\x69\x76\x65\x2c\x20\x31\x20\x69\x66\x20\x70\x6f\x73\x69\x74\ \x69\x76\x65\x2c\x20\x30\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\ \x29\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\ \x36\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\ \x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x6e\x00\ \x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\x7b\x00\x78\x00\ \x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1a\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x69\x6e\ \x65\x20\x6f\x66\x20\x7b\x7b\x78\x7d\x7d\x2e\x07\x00\x00\x00\x04\ \x44\x6f\x63\x73\x01\x03\x00\x00\x00\x72\x00\x44\x00\x65\x00\x76\ \x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\x65\x00\x6c\ \x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6f\x00\x20\ \x00\x6d\x00\xe1\x00\x73\x00\x20\x00\x70\x00\x65\x00\x71\x00\x75\ \x00\x65\x00\xf1\x00\x6f\x00\x20\x00\x6d\x00\x61\x00\x79\x00\x6f\ \x00\x72\x00\x20\x00\x6f\x00\x20\x00\x69\x00\x67\x00\x75\x00\x61\ \x00\x6c\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x7b\x00\x7b\ \x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x3e\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\ \x65\x20\x73\x6d\x61\x6c\x6c\x65\x73\x74\x20\x69\x6e\x74\x65\x67\ \x65\x72\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\ \x6f\x72\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\x20\x7b\x7b\x6e\x75\ \x6d\x7d\x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\xa2\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\ \x76\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x61\x00\ \xed\x00\x7a\x00\x20\x00\x63\x00\x75\x00\x61\x00\x64\x00\x72\x00\ \x61\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\ \x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\x2e\x00\x20\x00\ \x53\x00\x69\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\ \x7d\x00\x7d\x00\x20\x00\x3c\x00\x20\x00\x30\x00\x2c\x00\x20\x00\ \x65\x00\x6c\x00\x20\x00\x72\x00\x65\x00\x73\x00\x75\x00\x6c\x00\ \x74\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x72\x00\ \xe1\x00\x20\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\ \x6a\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\ \x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x71\x75\x61\x72\ \x65\x20\x72\x6f\x6f\x74\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\ \x7d\x2e\x20\x49\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x20\x3c\x20\ \x30\x2c\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x77\x69\ \x6c\x6c\x20\x62\x65\x20\x43\x6f\x6d\x70\x6c\x65\x78\x2e\x07\x00\ \x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x3e\x00\x44\x00\ \x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x20\x00\ \x65\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\ \x6e\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7b\x00\ \x7b\x00\x78\x00\x7d\x00\x7d\x00\x7d\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x1d\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\ \x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x66\x20\x7b\x7b\x78\x7d\ \x7d\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\ \x50\x00\x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\ \x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x61\x00\xed\x00\ \x7a\x00\x20\x00\x7b\x00\x7b\x00\x6e\x00\x7d\x00\x7d\x00\x2d\x00\ \xe9\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x65\x00\ \x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x74\x75\x72\ \x6e\x73\x20\x74\x68\x65\x20\x7b\x7b\x6e\x7d\x7d\x2d\x74\x68\x20\ \x72\x6f\x6f\x74\x20\x6f\x66\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x2e\ \x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\x00\x00\x56\x00\ \x44\x00\x65\x00\x76\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x65\x00\ \x20\x00\x7b\x00\x7b\x00\x6e\x00\x75\x00\x6d\x00\x7d\x00\x7d\x00\ \x20\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x7b\x00\x7b\x00\ \x6e\x00\x7d\x00\x7d\x00\x2d\x00\xe9\x00\x73\x00\x69\x00\x6d\x00\ \x61\x00\x20\x00\x70\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x63\x00\ \x69\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x52\ \x65\x74\x75\x72\x6e\x73\x20\x7b\x7b\x6e\x75\x6d\x7d\x7d\x20\x74\ \x6f\x20\x74\x68\x65\x20\x7b\x7b\x70\x7d\x7d\x2d\x74\x68\x20\x70\ \x6f\x77\x65\x72\x2e\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\ \x00\x00\x00\x1a\x00\x54\x00\x72\x00\x69\x00\x67\x00\x6f\x00\x6e\ \x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\xed\x00\x61\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0c\x54\x72\x69\x67\x6f\x6e\x6f\x6d\ \x65\x74\x72\x79\x07\x00\x00\x00\x04\x44\x6f\x63\x73\x01\x03\x00\ \x00\x00\x12\x00\x69\x00\x7a\x00\x71\x00\x75\x00\x69\x00\x65\x00\ \x72\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x6c\ \x65\x66\x74\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\x6f\ \x72\x01\x03\x00\x00\x00\x0e\x00\x64\x00\x65\x00\x72\x00\x65\x00\ \x63\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x72\ \x69\x67\x68\x74\x07\x00\x00\x00\x09\x45\x76\x61\x6c\x75\x61\x74\ \x6f\x72\x01\x03\x00\x00\x00\x2a\x00\x43\x00\x6f\x00\x6e\x00\x74\ \x00\x65\x00\x6e\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\ \x00\x20\x00\x6c\x00\x61\x00\x20\x00\x41\x00\x79\x00\x75\x00\x64\ \x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x48\x65\x6c\x70\ \x20\x43\x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\x00\x0a\x48\x65\ \x6c\x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x64\ \x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x20\x00\x3d\ \x00\x20\x00\x7b\x00\x64\x00\x65\x00\x66\x00\x74\x00\x7d\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x10\x64\x65\x66\x61\x75\x6c\x74\x20\ \x3d\x20\x7b\x64\x65\x66\x74\x7d\x07\x00\x00\x00\x0a\x48\x65\x6c\ \x70\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x26\x00\ \x45\x00\x64\x00\x69\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x05\x26\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\ \x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x76\x00\x6f\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x46\x69\x6c\x65\x07\x00\ \x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x1a\x00\x26\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\ \x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x06\x26\x54\x6f\x6f\x6c\x73\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0c\x00\x26\x00\x56\x00\x69\x00\x73\x00\x74\x00\x61\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x26\x56\x69\x65\x77\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x20\x00\x41\x00\x63\x00\x65\x00\x72\x00\x63\x00\x61\x00\x20\ \x00\x64\x00\x65\x00\x20\x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\ \x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x62\x6f\x75\ \x74\x20\x54\x75\x72\x69\x6e\x67\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x42\x00\ \xe1\x00\x73\x00\x69\x00\x63\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x42\x61\x73\x69\x63\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x20\x00\x50\x00\ \x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ \x72\x00\x75\x00\x70\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x42\x72\x65\x61\x6b\x70\x6f\x69\x6e\ \x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x16\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\ \x00\x6c\x00\x61\x00\x64\x00\x6f\x00\x72\x00\x61\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0a\x43\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x14\x00\x43\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x61\x00\x72\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x07\x43\x6f\x6d\x6d\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\ \x43\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x72\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x0a\x4d\x61\ \x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x43\ \x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x03\x43\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x54\x00\x72\ \x00\x61\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x6c\x00\xed\x00\x6e\ \x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x72\ \x61\x77\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x54\x00\x72\ \x00\x61\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x70\x00\x75\x00\x6e\ \x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x72\ \x61\x77\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x53\x00\ \x61\x00\x6c\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x04\x45\x78\x69\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x14\x00\x42\x00\x75\x00\x63\ \x00\x6c\x00\x65\x00\x20\x00\x50\x00\x41\x00\x52\x00\x41\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x08\x46\x4f\x52\x20\x6c\x6f\x6f\x70\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x0c\x00\x42\x00\x75\x00\x73\x00\x63\x00\x61\x00\ \x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x46\x69\x6e\x64\x07\ \x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x20\x00\x42\x00\x75\x00\x73\x00\x63\x00\x61\x00\x72\ \x00\x20\x00\x73\x00\x69\x00\x67\x00\x75\x00\x69\x00\x65\x00\x6e\ \x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x69\ \x6e\x64\x20\x4e\x65\x78\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x42\x00\x75\ \x00\x73\x00\x63\x00\x61\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x74\ \x00\x65\x00\x72\x00\x69\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0d\x46\x69\x6e\x64\x20\x50\x72\x65\x76\x69\x6f\x75\ \x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0a\x00\x41\x00\x79\x00\x75\x00\x64\x00\x61\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x48\x65\x6c\x70\x20\x43\ \x6f\x6e\x74\x65\x6e\x74\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x75\ \x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x20\x00\x67\ \x00\x75\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ \x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x06\x49\x6e\x64\x65\x6e\x74\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x3e\x00\ \x43\x00\x6f\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x69\x00\ \x72\x00\x20\x00\x4d\x00\x41\x00\x59\x00\xda\x00\x53\x00\x43\x00\ \x55\x00\x4c\x00\x41\x00\x53\x00\x2f\x00\x6d\x00\x69\x00\x6e\x00\ \xfa\x00\x73\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x73\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x74\x63\x68\x20\x63\x61\x73\ \x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0a\x00\x4e\x00\x75\x00\x65\x00\x76\x00\x6f\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x4e\x65\x77\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0a\x00\x41\x00\x62\x00\x72\x00\x69\x00\x72\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x04\x4f\x70\x65\x6e\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\ \x50\x00\x65\x00\x67\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x50\x61\x73\x74\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\ \x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x54\x00\ \x72\x00\x61\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x66\x00\x75\x00\ \x6e\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0d\x50\x6c\x6f\x74\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x10\x00\x49\x00\x6d\x00\x70\x00\x72\x00\x69\x00\ \x6d\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\ \x72\x69\x6e\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x24\x00\x41\x00\x72\x00\x63\x00\ \x68\x00\x69\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x72\x00\x65\x00\ \x63\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0c\x52\x65\x63\x65\x6e\x74\x20\x66\x69\ \x6c\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x24\x00\x41\x00\x72\x00\x63\x00\x68\ \x00\x69\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x72\x00\x65\x00\x63\ \x00\x69\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\ \x04\x4d\x65\x6e\x75\x06\x00\x00\x00\x0c\x52\x65\x63\x65\x6e\x74\ \x20\x66\x69\x6c\x65\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\ \x68\x00\x61\x00\x63\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x04\x52\x65\x64\x6f\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\ \x00\x70\x00\x72\x00\x65\x00\x73\x00\x69\x00\xf3\x00\x6e\x00\x20\ \x00\x72\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x52\x65\x67\x65\x78\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x14\x00\x52\x00\x65\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x61\ \x00\x7a\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ \x52\x65\x70\x6c\x61\x63\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x52\x00\x65\ \x00\x73\x00\x74\x00\x61\x00\x75\x00\x72\x00\x61\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x52\x65\x73\x65\x74\x20\x7a\x6f\ \x6f\x6d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x10\x00\x45\x00\x6a\x00\x65\x00\x63\x00\ \x75\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x03\x52\x75\x6e\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x47\x00\x75\x00\x61\x00\ \x72\x00\x64\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x04\x53\x61\x76\x65\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x47\x00\x75\x00\x61\ \x00\x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x64\ \x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x61\x76\x65\ \x20\x41\x6c\x6c\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x47\x00\x75\x00\x61\x00\ \x72\x00\x64\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ \x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x61\x76\x65\x20\ \x41\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x20\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ \x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ \x74\x00\x6f\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x0a\x53\x65\x6c\x65\x63\x74\x20\x41\x6c\x6c\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x42\ \x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\ \x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x65\ \x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x65\ \x00\x6c\x00\x20\x00\x67\x00\x72\x00\xe1\x00\x66\x00\x69\x00\x63\ \x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x65\x74\x20\ \x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6a\x00\ \x75\x00\x73\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x0a\ \x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\ \x00\x54\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x2d\ \x00\x20\x00\x7b\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x7d\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0f\x54\x75\x72\x69\x6e\x67\x20\x2d\ \x20\x7b\x66\x69\x6c\x65\x7d\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x44\x00\x65\ \x00\x73\x00\x68\x00\x61\x00\x63\x00\x65\x00\x72\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x04\x55\x6e\x64\x6f\x07\x00\x00\x00\x0a\x4d\ \x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x2c\x00\ \x52\x00\x65\x00\x64\x00\x75\x00\x63\x00\x69\x00\x72\x00\x20\x00\ \x67\x00\x75\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ \x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x08\x55\x6e\x69\x6e\x64\x65\x6e\x74\x07\x00\x00\ \x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x2e\x00\x53\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x70\x00\x61\ \x00\x6c\x00\x61\x00\x62\x00\x72\x00\x61\x00\x73\x00\x20\x00\x63\ \x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x74\x00\x61\x00\x73\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x57\x68\x6f\x6c\x65\x20\ \x77\x6f\x72\x64\x73\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x5a\x00\x6f\x00\x6f\ \x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x5a\x6f\x6f\x6d\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x1a\x00\x41\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ \x74\x00\x61\x00\x72\x00\x20\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x07\x5a\x6f\x6f\x6d\x20\x69\x6e\ \x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x1c\x00\x44\x00\x69\x00\x73\x00\x6d\x00\x69\x00\ \x6e\x00\x75\x00\x69\x00\x72\x00\x20\x00\x7a\x00\x6f\x00\x6f\x00\ \x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x6f\x6f\x6d\x20\ \x6f\x75\x74\x07\x00\x00\x00\x0a\x4d\x61\x69\x6e\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x03\x41\x4e\x44\x07\x00\x00\x00\x06\x50\x61\x72\x73\ \x65\x72\x01\x03\x00\x00\x00\x3e\x00\x54\x00\x6f\x00\x6b\x00\x65\ \x00\x6e\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\x72\x00\x61\ \x00\x64\x00\x6f\x00\x20\x00\x28\x00\x7b\x00\x74\x00\x79\x00\x70\ \x00\x65\x00\x7d\x00\x29\x00\x20\x00\x27\x00\x7b\x00\x76\x00\x61\ \x00\x6c\x00\x7d\x00\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ \x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x6b\x65\x6e\x20\x28\ \x7b\x74\x79\x70\x65\x7d\x29\x20\x27\x7b\x76\x61\x6c\x7d\x27\x07\ \x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x04\ \x00\x4e\x00\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x4e\x4f\ \x54\x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\ \x00\x02\x00\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x4f\x52\ \x07\x00\x00\x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\ \x34\x00\x46\x00\x69\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ \x6c\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\ \x20\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x70\x00\x65\x00\x72\x00\ \x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x55\ \x6e\x65\x78\x70\x65\x63\x74\x65\x64\x20\x45\x4f\x4c\x07\x00\x00\ \x00\x06\x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x42\x00\x54\ \x00\x6f\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x65\ \x00\x73\x00\x70\x00\x65\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\ \x00\x28\x00\x7b\x00\x74\x00\x79\x00\x70\x00\x65\x00\x7d\x00\x29\ \x00\x20\x00\x27\x00\x7b\x00\x76\x00\x61\x00\x6c\x00\x7d\x00\x27\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x55\x6e\x65\x78\x70\x65\ \x63\x74\x65\x64\x20\x74\x6f\x6b\x65\x6e\x20\x28\x7b\x74\x79\x70\ \x65\x7d\x29\x20\x27\x7b\x76\x61\x6c\x7d\x27\x07\x00\x00\x00\x06\ \x50\x61\x72\x73\x65\x72\x01\x03\x00\x00\x00\x1a\x00\x50\x00\x65\ \x00\x72\x00\x73\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x69\x00\x7a\ \x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ \x43\x75\x73\x74\x6f\x6d\x07\x00\x00\x00\x06\x54\x68\x65\x6d\x65\ \x73\x01\x03\x00\x00\x00\x16\x00\x50\x00\x6f\x00\x72\x00\x20\x00\ \x64\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x07\x44\x65\x66\x61\x75\x6c\x74\x07\x00\ \x00\x00\x06\x54\x68\x65\x6d\x65\x73\x01\x03\x00\x00\x00\x0a\x00\ \x46\x00\x41\x00\x4c\x00\x53\x00\x4f\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x05\x46\x41\x4c\x53\x45\x07\x00\x00\x00\x09\x55\x74\x69\ \x6c\x69\x74\x69\x65\x73\x01\x03\x00\x00\x00\x12\x00\x56\x00\x45\ \x00\x52\x00\x44\x00\x41\x00\x44\x00\x45\x00\x52\x00\x4f\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x04\x54\x52\x55\x45\x07\x00\x00\x00\ \x09\x55\x74\x69\x6c\x69\x74\x69\x65\x73\x01\x88\x00\x00\x00\x02\ \x01\x01\ \x00\x00\x4e\xde\ \x00\ \x01\x25\xc4\x78\x9c\xed\x7d\x0b\x7c\x24\x45\x99\x78\x65\x37\xef\ \x64\x13\x96\xb7\x9c\x60\xb3\x2c\x9b\xec\x92\xd7\x2e\x0b\x42\xd8\ \x5d\xc8\xe6\xb1\x1b\xc8\x26\xd9\x24\xfb\x02\x17\xe8\x99\xe9\x49\ \x9a\x9d\x99\x9e\xed\xee\x49\x32\x1b\x97\x53\xc4\x03\x11\xdf\xa0\ \xe2\x03\x45\xc1\x3b\x10\x4f\x54\x44\xe5\x25\xa8\x08\xf8\x38\x14\ \xb8\xf3\x89\x72\x27\x77\x10\x45\xf0\x44\x10\x1f\xe0\xff\xab\xaf\ \xaa\xba\xab\x7b\xaa\x27\x33\xbb\xf8\xb8\xff\x1d\xfb\x23\xf3\xea\ \xaa\xfa\xea\xab\xef\xfd\x7d\x55\xb5\xee\x8b\x89\xa3\xbf\xf1\xec\ \x87\xae\xfe\xf6\xf1\xaf\xfe\xf2\x85\xd7\xdd\xf5\xd8\x46\x42\x9a\ \x46\x09\xa9\xda\x48\x2a\x0e\xfb\x17\x78\xbd\x9d\x90\xd7\x8d\xc3\ \xeb\x37\xe0\xf5\x62\x42\x06\x96\xc3\xf7\x87\x12\x72\xf6\xd7\x08\ \xf9\xcd\xeb\x08\x19\xef\x83\xcf\x37\x11\x32\x71\x3f\x21\x2f\xff\ \x37\x21\xbb\xee\x26\x15\x95\x9f\x21\xe4\xbc\x55\x84\x0c\x9d\x4c\ \x2a\x6f\xb8\x81\x90\x5f\xbf\x97\x54\x7e\x22\x0f\xcf\xb7\x93\xca\ \x7f\x7a\x2b\xa9\x38\xe2\x39\x52\xf9\xb5\x7d\xd0\xe6\x54\x52\xf9\ \x50\x25\x21\xbf\xfb\x15\xa9\xfc\x4e\x1f\x21\xbf\x7f\x98\x54\xbe\ \x70\x0a\x21\x7f\xbc\x96\x54\x25\xef\x26\xe4\x4f\xc7\x93\x2a\x27\ \x01\xaf\x9f\x21\x55\x6f\xfd\x34\xa9\x58\x3c\x43\xaa\xde\x77\x35\ \xa9\x38\x6a\x25\xa9\x7a\xff\x7d\x30\xce\xcf\x48\xd5\x27\x2f\x24\ \x15\x75\x6f\x20\x55\x37\xff\x86\x90\xa9\xb3\x49\xd5\xd7\xe0\xb9\ \xc6\xf7\x90\xaa\xef\x43\xbf\xe9\x57\xe3\x6b\xc5\x92\xfb\x48\xf5\ \x91\xbb\x49\xc5\xd2\x66\x52\x73\xd2\xa3\x84\x3c\xf9\x16\xb2\x44\ \x6b\x22\xe4\x93\xfb\xc9\x21\x63\xff\x4c\x48\xdf\x9d\xe4\x88\x77\ \x0f\x13\x72\xe3\x0a\xb2\xec\x87\x6f\x27\xe4\xb6\xb3\xc8\x8a\x4b\ \x2f\x24\xe4\xc7\x8f\x90\x55\x77\x40\x3f\x3f\x5f\x49\x56\x7d\xe7\ \x44\x78\xdd\x4d\x56\x3d\xdd\x05\xaf\xef\x22\x27\x3d\x04\xf3\xfd\ \x45\x3b\xe9\x78\xf2\x1c\x42\x5a\x32\x64\x93\x79\x1e\x21\xcf\x3c\ \x4b\x36\xbf\xe5\x0a\x42\xdc\x47\xe0\xf5\x39\x42\xf6\x1b\xec\xf5\ \xd9\xd7\x90\xc1\x4b\xbf\x04\xf3\x7e\x27\x39\xfb\xe8\x27\x48\x45\ \xed\x7f\x93\xb3\x4f\xba\x84\x90\xff\xfe\x16\x39\x5b\xcf\x91\x8a\ \x23\x5f\x26\x67\x5f\xfe\x73\x42\xa6\x27\xc9\xd9\x5f\xfa\x02\xe0\ \xe9\x51\xb2\xe5\xbd\xf5\x84\x9c\xf3\x3d\x32\x7c\x08\xc0\xf9\x4f\ \x6b\xc9\x78\x25\xfc\x9e\xff\x29\xd9\x7e\x05\xe0\xf3\x4f\x6f\x24\ \x3b\xde\x39\x41\x2a\x48\x17\xd9\x71\xff\x3b\x09\x79\xe9\x7a\xb2\ \xf3\xae\x07\x00\x3f\x37\x91\x73\x6f\xee\x06\xbc\x57\xb2\xd7\x6d\ \x5d\xe4\xdc\x87\x00\xcf\xfb\xde\x41\xce\xbb\x20\x03\xeb\x77\x23\ \x49\xbc\x66\x3d\x21\xdd\x26\x31\x8c\xe7\x01\xef\xa7\x92\xc9\xcc\ \xcb\x84\x6c\x78\x91\x5c\x74\xe7\x73\xa4\x62\xd1\x75\x64\xef\x86\ \x34\x21\x67\xdc\x40\xdc\x9b\xde\x40\x88\xfd\x20\xbe\x56\x2c\xb9\ \x98\x4c\x2f\xcd\x11\xb2\xa9\x97\xcc\xbe\x04\x78\x7e\xf2\x0b\xe4\ \x92\xf6\x09\x42\xfe\xe3\x50\x72\x43\x1d\xd0\xc4\x9e\x46\x72\xf3\ \x25\x40\x1f\xfb\x8e\x24\x9f\xfb\xe0\x2e\x42\xd6\xe6\xc9\x97\x5f\ \x84\x7e\xdf\x91\x21\x5f\xfd\x02\xc0\xff\xd4\x3b\xc9\x23\x4f\x00\ \x5e\xff\xe1\x27\xe4\x47\x3d\x8b\x60\xfe\x37\x91\x1f\x3d\xb8\x9b\ \x10\xe7\x30\xf2\x93\xf3\x01\xce\x19\x97\xfc\x34\xf7\x12\x21\xf3\ \xd3\xe4\xf1\xcb\xe0\xb9\xef\x9e\x45\x1e\xbf\x67\x03\x21\xdf\x3b\ \x96\xfc\xe7\xe3\x00\xf7\x8d\x77\x93\xa7\x1f\xff\x67\x52\xd1\x74\ \x2a\x79\xe1\x96\xfd\x84\x9c\x76\x02\xf9\xed\x21\x75\xb0\xce\x9d\ \x15\xf5\x2f\xc3\x3c\x26\xc7\xd8\xab\x65\x54\x34\xdf\xd7\x41\xc8\ \xfb\x6a\x2a\xfe\x2e\xf1\x18\x21\x6d\xcf\x57\x0c\x55\x9d\x00\x78\ \xbe\xa8\xc2\x78\xe1\x5a\x58\xff\xee\x8a\xc9\x07\x5c\x52\x71\xe8\ \x85\x15\x6f\xf9\xc5\x33\x84\x7c\xf5\xd9\x8a\x0f\x3c\x7f\x1c\x21\ \x1f\xfc\x44\xc5\x75\xbf\xfb\x14\x21\x5d\x56\xc5\xf5\xb7\xc1\xe7\ \xef\x8f\x55\xdc\xf5\x6e\x68\xbf\x7a\xbc\xe2\xbe\x27\x5a\x08\x39\ \xe1\x02\xf6\xfa\x4c\x75\xc5\xbf\x34\x5f\x0a\xfd\xbd\x5c\xf1\xf0\ \xc3\xf0\xdc\x57\xbe\x5b\xf1\x6f\xdf\x3d\x19\xfa\xbb\xb3\xe2\xa9\ \x37\x5e\x4b\xc8\x37\xde\xb0\x68\x89\x0e\x74\xb4\xed\xa3\x8b\x0e\ \xeb\x83\x79\x3c\x74\xf7\xa2\x23\x3e\x7b\x3d\xac\x53\x62\xd1\x71\ \x1f\xa5\xfd\x7d\x6a\xd1\xa6\x5b\xe1\xf7\x7f\x3c\x71\xd1\xc5\x3f\ \x6b\x20\x15\x35\x3f\x59\xf4\xf1\xef\x02\x9e\xee\x7f\x6e\xd1\x1d\ \xc9\x93\x81\xae\x7e\xbf\xe8\x2b\x6b\x80\x7e\x72\x1b\x17\x7d\xff\ \x4c\xa0\xff\x7b\xc9\xa2\xdf\xdd\x77\x1f\x8c\xff\xe9\x45\x7f\x38\ \xe5\x77\x40\x8f\x9b\x17\xd7\x7d\xfd\x56\x98\xef\x93\x8b\x8f\xba\ \x18\xda\x5d\xbe\x73\xf1\x49\xd7\x3f\x0a\xeb\xb6\x75\xf1\xea\xed\ \x37\x03\x9f\xbd\xb0\x78\xd4\x82\x71\xbf\x3f\xbf\x78\xc7\xe5\x67\ \x01\x5f\x7c\x66\xb1\xf9\x07\xc0\xf3\x29\x2f\x2c\xde\xf3\xf3\x97\ \x49\x45\xf3\x6f\x16\x5f\x36\x0d\x78\x7d\x70\x68\xf1\x15\x37\x7f\ \x0e\xe8\xd7\x58\x7c\xd5\xc9\x57\x03\xbd\x5d\xb1\xf8\x43\x3d\x40\ \x5f\x5b\x8f\x5b\xfc\x91\xeb\x3b\xe1\xfb\x4f\x2f\xbe\xf9\x44\x78\ \xee\x43\xf7\x2e\xbe\xe3\xca\x95\xa4\xa2\xfe\xd2\xc5\x0f\x9c\x0d\ \xb2\x60\x43\x6a\xf1\x03\xcf\x3e\x0e\xf4\xfc\xd5\xc5\x4f\xac\x03\ \x7c\xff\xea\xd1\xc5\x4f\x64\xff\x13\xf0\xf1\x9a\xc5\x4f\x5e\xfc\ \x1e\x80\xe3\xd9\xc5\xbf\x6f\x04\xb8\xbf\xb5\xa1\xb2\xf2\xd3\x40\ \x0f\x73\x5a\x65\x6d\x16\xf8\xeb\x8b\x2f\x54\x1e\x39\x0f\xeb\xbc\ \xef\x81\xca\xd3\x9e\x3c\x02\xda\x9d\x5b\xb9\x69\xcd\x77\x80\xbe\ \xaf\x61\xaf\xbf\xbf\xba\x72\xf4\x31\xa0\x93\xf7\xcf\x54\x8e\xdf\ \x0f\xf3\x7a\xbb\x59\x39\xf1\x3d\xda\x6e\x55\x65\xe2\x8d\x3f\x21\ \xe4\xaa\xce\x4a\xa3\x02\xe8\xee\x0f\x75\x95\x53\xd6\x51\x84\x3c\ \xfe\x83\xca\x3d\xcb\xdf\x06\xeb\xdb\x56\x99\x3e\x0b\xe0\x7d\xfa\ \xae\xca\xf4\x2e\xa0\xf3\x99\xa7\x2a\xdf\xb3\x0b\xe6\x91\xab\xaf\ \x7c\xcf\xb9\xb0\xee\xcf\x6e\xad\xbc\x6a\x2f\xd0\xf3\xca\x2f\x56\ \x7e\xe2\xd4\x73\x41\x56\xfd\x91\xbd\xee\xe0\xaf\xe7\x3d\x58\x79\ \xd3\x83\xef\x81\x7e\xbf\x07\xaf\x3f\x84\xf9\xdd\xce\x5e\x47\x1f\ \x67\xaf\x13\xc9\xca\x9b\xdf\x74\x1c\xa9\x38\xfc\x2b\x95\x37\x7f\ \x12\xe4\xc7\x11\xb7\x57\xde\xf1\x00\xd0\x63\x7c\x4d\xe5\xd7\x0c\ \x90\x8b\x3b\x4f\x85\x57\x98\xe7\x4e\xb7\xf2\xeb\xee\x31\x30\xee\ \xdb\x2b\xbf\xf9\xd6\xf3\x09\x79\xeb\xd3\x95\xdf\x1e\x02\xbe\xf8\ \xf2\x27\x2a\x1f\x9a\xa2\x72\xed\xf8\xca\x47\x86\x2f\x83\x7e\x06\ \x2a\x1f\xb9\x08\x5e\x0f\x5b\x5b\xf9\xd8\xdb\x81\x5e\x36\x9f\x55\ \x39\xff\x00\xe0\x25\xbf\xb9\x6a\xd1\xa7\xae\x81\xf5\x7d\xb9\xaa\ \xf2\x66\xe0\xab\x97\xb6\x56\x55\x7e\xfa\x2a\xa0\xef\xaf\x55\xb5\ \xdd\x0a\xeb\xf0\x7c\x6d\xd5\x29\x67\xdc\x4a\x2a\xaa\x6e\xac\x3a\ \xed\x06\x18\xf7\xfc\xbb\xe0\x15\xc6\x3d\xff\xf9\xaa\xb3\xa8\x7c\ \xbe\xa0\x1d\x5e\xe1\xf3\x05\x46\xd5\x05\x6f\x83\xf1\xdf\xfd\xa7\ \xaa\xd8\x99\x30\xfe\xd0\x35\x55\x17\x7d\x20\x03\xeb\xf2\xea\xaa\ \xd4\x17\x40\x5e\xff\x69\xb4\xca\x3e\x19\xf0\xfc\xd9\xa7\xaa\x5e\ \x7f\xcd\x57\x61\x9c\x1f\x57\xbd\x75\x60\x1b\x21\xbd\xff\x5d\x75\ \xe5\x9d\x40\x37\x17\xf5\x56\x7d\xe8\x24\xa0\xd7\xea\xad\x55\xd7\ \x1a\xb0\xde\x1f\xfd\x65\xd5\x3f\xfd\x04\xfa\xbb\xe3\xd8\xaa\x9b\ \xde\x42\xe5\xf5\xef\xab\x6e\x8b\x03\x3d\x3e\xf1\x83\xaa\xdb\xbe\ \x03\xeb\xf4\x91\xf7\x55\xdd\x7e\xd7\x6b\x08\xf9\xd9\x07\xab\xee\ \xba\x30\x0b\xeb\x39\x5c\xf5\xc0\x19\x40\xbf\x7d\xbd\xec\x75\x73\ \x35\x7b\xbd\xe8\x91\xaa\x07\x3e\x0e\x72\xf0\x0f\xdb\xaa\xbe\xf5\ \x0d\xc0\xdf\xc5\x67\x56\xfd\xea\x69\x68\xff\xf1\xbf\xaf\xfa\xed\ \x06\x78\x7d\xfe\xdd\xd5\x35\x8f\x80\x7c\x79\x31\x56\x7d\x2c\x01\ \xfe\xfd\xec\xe6\xea\x35\x6f\x02\x3d\xf0\xeb\x7b\xab\x4f\xbd\x0d\ \x9e\x7f\xe7\xaf\xab\x4f\x3f\x1a\xe0\xfe\xf0\x19\xd5\xa7\xbf\xfd\ \xc3\x84\x74\x1a\xd5\xbd\xf7\xc2\xfa\xf4\x1c\xc6\x5e\xa7\x5f\x53\ \xdd\xb7\x16\xf0\xf4\xa3\x47\xab\x07\x1a\xa1\xbf\xcf\x67\xaa\x37\ \x9f\x0e\x74\xf8\xcf\xf7\x55\x0f\xd7\x01\xdf\xfd\xe4\xe1\xea\x0b\ \xb2\xc0\x27\x4b\xb3\xd5\x93\x79\x18\x67\xe7\x67\xab\xb3\xb4\xbf\ \x8f\xbf\x50\xed\xb6\xaf\x05\xb9\x58\x59\x7d\xf1\x56\x18\x6f\xf6\ \xb3\xec\xf5\x77\x99\xea\x37\x7c\x02\xe4\xdf\x8a\x9a\xea\xcf\xaf\ \x9e\x27\x64\xcd\x2f\xaa\xef\xbc\x02\xe4\x66\xe7\xc3\xd5\x5f\x3f\ \x0e\xf8\xf7\x9b\x57\x55\x3f\x85\xfd\x2f\xad\x7e\xe6\x10\x90\x03\ \xd7\xbe\xab\x86\x7c\x04\xe6\xf7\xa6\x7d\x35\x4d\x1f\x03\xba\x7d\ \xdf\x93\x35\xc7\x5f\x0b\xfc\xb0\xe4\xc5\x1a\xb6\x6e\x2f\xd5\xf4\ \x74\xdf\x48\x2a\x2a\xf2\x35\x9b\x40\x26\x92\x9b\xaf\xad\x19\xbe\ \x0a\xe0\x1d\x7d\x67\xcd\xf0\x4f\x00\xef\x5f\xff\x5c\xcd\xd8\x3b\ \x80\xce\xdf\xf6\xbd\x9a\xf3\x4f\x79\x15\x21\xff\xd9\x5b\x93\xbe\ \xea\x17\x80\x8f\xdf\xd5\xec\xbd\x12\xf0\x71\x73\x5d\xcd\x7b\xf6\ \x81\x5c\x7d\x7d\x73\xcd\xd5\x4f\xb5\x83\x3c\x78\xa2\xe6\xea\x9f\ \x7f\x1b\xe4\xc5\x97\x6b\xae\x9f\x01\x39\xf6\xd4\xcf\x6b\x3e\xfd\ \x11\xe8\xf7\xf6\x57\xd5\xdc\xfe\x5b\xa0\xab\x97\x2a\x6b\xbe\x7c\ \x38\xd0\xf7\xf4\xc7\x6a\x1e\x7a\x63\x23\xe8\xc9\x8e\x9a\x1f\x7d\ \xaf\x06\xe8\xe3\xc3\xf8\x5a\x51\xbb\xaa\xe6\xf1\xe5\x30\xfe\xb7\ \x5f\xae\xad\xf8\x02\xac\xef\xd4\x97\x6a\x4f\x78\xe0\x09\x90\x9f\ \x1a\x7b\x7d\xf6\x0d\xb5\x27\x75\xc3\xb8\x57\x3f\x5e\xdb\x75\x0b\ \xc0\xf7\xb6\xdd\xb5\xa7\xb5\x82\x7c\xec\xfe\x46\xed\xba\x1c\xf4\ \x7f\xcb\x75\xb5\x1b\x5e\x02\xf8\x36\xbd\xbb\x76\x63\x16\xc6\xfd\ \xd8\xf1\xb5\x1b\x6f\x1c\x02\x3a\x9f\xa8\xed\xfd\x2e\xe8\xd7\x5f\ \x9f\x53\xbb\xfb\xd7\x06\xa9\x68\x38\xa1\x76\x6a\x51\x3f\xe0\x3f\ \x53\x6b\xae\x06\x3d\x19\x7b\x89\xbd\xfe\xf1\xa1\x5a\xfb\x6d\x30\ \xdf\x1f\x25\x6b\x2f\x71\x81\xce\xee\x5b\x5e\x7b\xc5\x43\xb0\x8e\ \xa9\x9f\xd5\xbe\xed\xf5\x87\x83\x3e\x7c\x47\xed\xfb\x0c\xa0\xb3\ \xdf\xfe\xa0\xf6\xfd\x97\xc0\xf8\x1f\x7b\xb1\xf6\x9a\x7b\x3e\x0a\ \x74\xb6\xbb\xf6\x96\xaf\xfd\x12\xe4\xf4\x7c\xed\xdd\xef\x05\x38\ \x3e\xb0\xa5\xf6\xfe\x16\xb0\x03\x16\xbf\x50\x7b\x7f\xef\x9d\x80\ \xe7\x57\xd7\xfe\xeb\x4b\x00\xcf\x4d\xbf\xa8\xfd\xb7\x1f\x9c\x02\ \xfd\x1c\x57\xfb\xd8\x7f\xc0\xfa\xdc\xbd\xaa\xf6\xb7\xcf\x80\x3e\ \xed\x7b\x3d\x7b\x1d\x7a\x1d\x7b\xdd\xa6\xb3\xd7\xa9\x7d\x75\x35\ \xf7\xc2\x7c\xff\xf1\xba\xba\xba\x0a\x58\xbf\xef\x74\xd4\xd5\xdd\ \x08\xfd\xbf\x79\xaa\xee\xa4\xa5\x4b\x40\xcf\xbd\xbf\xee\xe4\x6e\ \xc0\xd3\xeb\x27\xeb\x36\x6d\x81\xe7\x1e\xde\x53\xa7\x7f\xd4\x24\ \x64\xf9\xb1\x75\xe9\x35\xd0\xff\x35\x37\xd5\x39\x4f\xc1\xbc\x5f\ \x3c\xb6\xee\xcd\x5b\x01\xde\x1f\xae\xac\xbb\xec\x17\x75\xc0\x27\ \x4b\xea\xae\x04\x5b\xa0\xa2\x2a\x5e\xf7\xf1\x8f\x02\x5d\xbd\xbc\ \xa9\xee\x93\x9f\x8a\xc1\x73\x9f\xab\xbb\xf3\x1d\xf0\xdc\x73\xb9\ \xba\x2f\xff\x01\xe6\x7f\xed\xdf\xd5\x7d\xf3\x36\x58\xaf\xdc\x7f\ \xd4\x3d\xfa\x4b\x80\xff\x2b\x23\x75\x4f\xde\xf6\x7b\x90\x97\x13\ \xf5\xcd\x15\x30\xde\x67\x96\xd5\x77\xdd\x0c\xe3\xbf\xf1\x7d\xf5\ \xab\x1b\xe1\xf5\x0d\xab\xeb\x37\x2c\x5f\x0b\xfa\xe3\xed\xf5\x67\ \x3e\xf3\x66\xe0\x9f\xed\xf5\x67\x3d\xf3\x3c\x7c\xee\xae\xef\x7b\ \x3f\xd0\xe9\x6b\xbf\x58\xbf\xf5\x31\xa0\xcf\x4f\x7c\xbc\x7e\xfb\ \x08\xf4\xf7\xc1\xe5\xf5\x17\x1e\xf3\x1f\xa0\x5f\xbf\x59\x9f\x58\ \x77\x38\x21\x67\x3d\xcc\x5e\x9f\x3b\xbd\x3e\xfd\x63\xf8\x9d\x90\ \xfa\xb7\x5c\x08\xf2\x6b\x57\x05\xbc\x5e\x04\xaf\xeb\xeb\xdf\xf3\ \x2d\xe0\xa3\x0f\xff\x73\xfd\x75\xf7\xc2\x3c\x5a\x57\xb0\xd7\x9f\ \xfe\x7d\xfd\xc7\xda\xfe\x91\x90\x7f\x9f\xa8\xbf\xa1\x0e\xf0\x73\ \xfd\x64\xfd\x9d\x57\x82\x3e\x3d\xf2\x81\xfa\xbb\x9b\xa1\x1f\xeb\ \xc5\xfa\x2f\x0f\x00\x5f\xfd\xf8\xb2\xfa\x7b\xe7\xe0\xf3\xbf\xbc\ \x58\xff\x95\x8b\xef\x02\xfd\xa3\xd7\xdf\xf7\x5b\xa0\xd3\xb7\xee\ \xa9\xff\xfa\x61\x60\x5f\x3a\xbf\x61\xaf\xbf\x7a\x4f\xfd\xb7\x5e\ \x80\xf9\x3d\x75\x6a\xfd\x4f\xdf\x02\x7c\x75\xeb\x37\xeb\x9f\xff\ \x1a\xe0\xe5\x33\x1f\xab\xff\xed\xc8\xdb\x81\x7f\x8e\xa8\xff\xfd\ \x6f\xa1\x9f\x07\x3f\xd7\xd0\x94\x00\xfc\xc4\xee\x66\xaf\xf6\x65\ \x0d\xcd\x54\xaf\xff\xe0\x99\x86\xa5\x0f\x81\x3e\xf9\xe3\xd2\x86\ \x43\x5f\x0b\xfd\xbc\xe9\xa6\x86\xc3\x9e\x06\xba\xfe\xd6\x6f\x1b\ \x0e\xaf\x03\x3b\x61\x55\x73\xc3\xaa\xaf\x80\xbd\xba\xf4\x86\x86\ \xb6\x73\x81\x6f\x5a\x6f\x6e\x58\xbd\x14\xf0\x72\x65\xae\x61\xa0\ \x03\xe4\xe3\x15\xdf\x6d\xd8\xb4\x15\xf0\xbf\xff\x5d\x0d\x89\x04\ \xc0\xfd\xee\xb5\x0d\xc9\xd6\x87\x41\xdf\xfd\x7b\x43\xf2\x39\x0d\ \xf4\xcb\x8d\x0d\x99\x3e\xd0\x93\x6f\xea\x6a\xc8\x5e\x0b\x74\x71\ \xd3\x68\xc3\xe5\x0f\x02\x7c\xff\xfa\xc3\x86\xb7\x9f\x05\x74\xfd\ \xdc\x37\x1b\x3e\xfe\x63\xe0\xaf\xea\xcb\x1b\x6e\xf9\x23\xd0\x7b\ \xc5\xba\x86\x2f\x54\x80\x9c\xa9\x7e\xa4\xe1\xce\x23\x80\x3f\x57\ \x3f\xdf\xf0\x95\x9d\x00\xff\xd7\x5f\xdb\xf0\xc0\x16\x90\xbf\xcf\ \x6c\x6b\xf8\xd9\x55\x80\x87\xb7\xbc\xb6\x61\xde\x01\xbd\xbb\xfc\ \xcd\xec\xf5\xb1\xfb\x1b\x9e\x8e\x41\xbf\x5f\xba\xbc\x71\xe9\xf3\ \x80\x87\x17\xbe\xdd\xd8\x1e\x03\x3a\x7f\xf2\xe8\xc6\x0e\xf3\x57\ \xa0\xc7\x7b\x1b\x4f\xf9\x15\xc0\xb9\x2b\xdf\x78\xd6\x23\x20\x4f\ \x37\x9c\xd4\x38\xba\x1a\xec\xa5\x8e\x53\x1b\xcf\x3f\x1f\xec\x20\ \xf2\xb9\xc6\xf8\x07\xbe\x0d\x7c\xee\x36\xc6\x1f\x1a\x24\xe4\x92\ \x97\x1a\x2f\xff\x11\xc8\xbd\x35\x7a\xe3\xdb\x7e\x0d\x7c\xb6\x35\ \xd6\x78\xf5\x52\xb0\x1f\xfe\xeb\x55\x8d\xef\xad\x86\x79\xde\xf9\ \xae\xc6\xf7\xe5\x80\x6e\x2f\xcb\x36\x5e\x73\x1d\xd8\xf6\xf3\x6b\ \xd8\xeb\x1f\xcf\x6d\xfc\xd0\xbd\x00\xef\xa7\xf3\x8d\xd7\xbd\x00\ \xbf\x3f\x72\x51\xe3\x8d\xb3\xa0\x5f\x26\x3f\xc9\x5e\xad\xbb\x1a\ \x6f\xbf\x14\xe8\x64\x6e\x5f\xe3\x1d\x15\x0e\xc8\x91\x5c\xe3\xef\ \x2e\xfb\x3c\xd8\xbb\xa7\x34\xfe\xf1\x3e\x80\xfb\xfe\x5d\x4b\x16\ \x1d\x05\xf6\x76\xc5\xa3\x4b\x16\x53\xfd\xf7\x05\x7d\x49\x53\x1a\ \xe8\x29\xff\x91\x25\xab\xa8\xfd\xf0\xab\xa6\x25\x43\x74\x9e\xb7\ \x5f\xb9\x24\x76\x0b\xc8\xa3\x3f\xdc\xb8\xe4\xa2\x13\x36\x00\xfd\ \x6c\x5f\xf2\xfa\x6f\x00\x9c\x13\x37\xb0\xd7\x3f\xfd\xd7\x92\x37\ \xbe\x05\xc6\x71\xf7\x2d\xb9\xc4\x02\x7a\xff\xce\x3d\x4b\x2e\xbf\ \x02\xf4\xcb\x8a\xdb\x96\x5c\x79\x14\xac\xc3\x87\x9a\x96\x7c\xe6\ \xa7\x40\x9f\x7f\x7f\xdf\x92\xef\x5c\xb0\x85\x90\x13\x5b\x96\xfc\ \xe1\x49\x98\xd7\x3b\x8f\x6b\xaa\xa4\x7c\x33\xf7\x9d\xa6\x23\x06\ \x81\x0e\x3e\x75\x79\x53\xe7\xb1\x40\x17\x9f\x7b\x57\xd3\xea\x4e\ \x98\xcf\xc5\xbf\x6c\x5a\xd3\x04\xcf\xad\xba\xac\x69\xed\x52\xe8\ \xe7\xbb\xb7\x37\x9d\xbe\x06\xe0\xfa\xe1\xb3\x4d\x03\xe7\xc0\xef\ \x57\xfd\xb8\x69\xe0\x51\xf8\xfd\xca\xa7\x9b\xb6\x6e\x04\xfa\x4e\ \x8f\x35\x4d\xfc\x06\xe8\xe5\x8e\xbb\x9b\x5e\x77\x07\xe8\xbf\x93\ \x7a\x9b\xa6\x9e\x33\x41\xae\xdd\xd7\x94\x6f\x7d\x1d\xe8\xf1\x67\ \x9b\x2e\x9d\x5e\x0c\xfa\xe2\x4b\x4d\x97\x19\xb0\x2e\xe7\x5f\x02\ \xaf\x30\xfe\xf9\x9b\x9a\x2e\xbb\x05\xe4\x65\xe7\xab\x9b\xde\xfe\ \x9f\x77\x01\xfd\x3d\xdf\x74\xf5\x63\x27\x82\x9c\xea\x6e\xba\x35\ \x01\xfd\x3d\xf9\x5f\x4d\x5f\xbe\x13\xe0\xbf\xe6\x90\xa6\xaf\x0d\ \xc2\x38\x0f\x5c\xd8\xf4\xd8\xa3\x30\xcf\xef\x7d\xbd\xe9\x17\x1f\ \x84\xf9\x5f\xff\xd3\xa6\xe7\xb6\x80\xdd\xd6\x71\x77\xd3\x9f\xbe\ \x07\x76\xc1\x33\x97\x37\x1f\x7d\xce\x4b\x30\x6e\xbe\x79\x65\x0d\ \xe0\xef\xd2\x33\x9b\x4f\xea\x02\x9f\x2b\x5f\xd9\xdc\x36\x0f\xf0\ \xff\xdb\xfb\x9b\x4f\xbe\x0f\xec\xa3\x97\xaf\x6a\xee\xfb\x30\xb4\ \xbf\xeb\xc3\xcd\x5b\x1e\x85\x7e\x6f\xfb\xaf\xe6\xf1\x6e\x83\x90\ \x5f\xde\xd6\xbc\xed\x43\x30\xde\x0d\xff\xda\x3c\x35\x08\x76\xc2\ \xcc\x61\xcd\xe9\x3e\x68\xf7\xe8\xeb\x9a\xd3\x54\xbf\xde\x7b\x6f\ \xb3\xd5\x01\xaf\x17\xfc\xb2\xf9\x8d\x8f\x80\xbd\xd4\x75\x53\xf3\ \x35\xdd\x80\x8f\x75\xeb\x9b\x3f\x79\x12\xe0\xe3\x23\x47\x35\x7f\ \xea\x9b\xd4\x0f\xb9\xa5\xf9\x8e\xdf\x43\x3f\xb7\xae\x6e\xbe\xfb\ \x1a\xc0\x6b\xcf\xae\xe6\x7b\x5e\x00\xfb\xe1\xa2\xd7\x37\xdf\xfb\ \x30\xcc\xd7\xc9\x37\xff\xe0\xdf\x27\xc1\x3e\xab\x6f\xfe\x49\x1f\ \x8c\x33\xbb\xa1\xf9\x89\x0b\x8e\x25\xa4\x7d\x35\x20\xed\xa8\x71\ \xc0\xd4\x51\xd7\x92\x75\xe4\x78\xd2\x47\x46\x48\x2f\x99\x20\xbb\ \xc8\x28\xe9\x27\x1a\xd9\x0c\xef\xb7\x90\x21\x78\x37\x4a\xb6\x91\ \x8d\xf0\x6e\x10\x7e\xd7\xc8\x32\xd2\x4e\x3a\xe1\xdf\x0e\x72\x32\ \x7c\xa6\xef\xfa\xe0\xc9\xbe\x40\x8b\xb5\x60\x31\x74\xe1\x6f\xfd\ \x64\x18\x5a\xd0\x56\x53\xc4\x85\x7f\x59\xd2\x8d\xdf\xcf\xe0\xbf\ \x0e\xf8\xff\x64\xf8\x6b\x11\x9b\x4c\xc2\xb7\x13\x64\x0c\xfe\x8e\ \x41\xab\x5e\x18\x85\xb6\x48\x93\x14\xf4\x46\xfb\x72\xe0\x93\x4d\ \x4c\x12\x87\xd7\x0e\x92\x80\xbf\x09\xe8\x75\x03\xa9\x07\xe8\xc5\ \x93\x1b\xf0\xbd\x41\x74\xf8\x8d\xbe\x4f\xc3\x7b\x17\x3e\x69\x24\ \x03\x7f\xe9\xa7\xf5\xd0\x66\x2f\xef\x87\xb6\x32\xc8\x2c\xfc\xa5\ \x10\xc6\x01\x8a\x0c\x7e\x43\xff\xd2\xe7\x56\xe3\xf7\x9d\xd8\x13\ \x1d\x3d\x0f\x23\x18\xf0\x0d\x7d\x97\xe5\x7d\x89\x1e\x3a\xa1\xbd\ \x03\xff\x18\x44\x59\xd2\x06\xcf\xa5\x60\x14\x8d\xcc\xc1\xff\x33\ \x30\x96\x89\xcf\xb6\xc3\x33\x59\x80\x25\x0e\xef\xbb\xe1\x97\x2c\ \xc0\x42\xbf\x9d\x81\x57\x1d\x3e\x9d\x01\xdf\xed\xc7\x39\x75\x4a\ \x63\x6e\xc0\xcf\xf2\xcc\x62\x00\x6d\x02\x7e\xd5\xa4\xa7\xd6\x23\ \xbc\x49\x3e\x8f\x76\x78\x47\xe7\x6c\xc2\x6f\x79\x18\xab\x05\xd6\ \x66\x1c\x7e\x1f\xc7\x7e\x52\xf0\x4f\x83\x55\x4b\x01\xde\x35\xb2\ \x06\x7e\x3d\x23\xd0\xd6\x81\x76\xfb\x10\xc6\xd3\x00\xdb\x6b\xc8\ \x29\x00\x9b\x1b\x7a\x66\x06\x7e\x37\xa1\x3d\xc5\x63\x37\xae\x52\ \x57\x41\x2f\x02\xb6\x6e\xf8\x86\xae\x72\x1a\x60\x4a\xc1\x53\x62\ \xe5\xb2\x8a\x19\xd0\x67\x28\x3d\x98\xd0\xa6\x1d\x7e\xb3\x90\x6a\ \x56\x03\x14\x59\xc0\xf5\x19\x05\x4f\x50\x5c\xb8\xf8\x5c\xba\xe8\ \x73\x74\x84\x24\xc2\xda\x15\xf1\x84\x2d\xcd\xc7\x7f\xa6\x1d\x28\ \xc6\xc5\x71\x52\x30\x46\x9c\xec\x81\xf7\xf4\xf9\x04\xa7\x95\x6e\ \x3e\x6f\x41\x0b\x85\xbf\xb2\x9e\x96\x71\x4a\xa2\xeb\x9f\x29\xba\ \x72\x3e\xf6\x67\xe1\x1f\x85\x9c\x41\x69\x14\x5d\x81\x53\xf9\x0a\ \xd0\x71\x26\x48\x0e\x67\x93\xc1\xf5\x9d\x23\xd3\xf0\xa4\x8d\xfd\ \xd2\xb6\xfb\x39\x7d\x31\x48\x18\x75\x65\xff\x6f\x45\x8a\xac\x48\ \x34\xa6\x7b\xb1\xad\x8e\xfc\x94\x40\xf9\x90\x20\xf3\x88\xef\x14\ \xe2\x89\x4a\x8a\x34\x1f\x59\x43\x9e\x0f\xe2\x7e\x0e\x25\x11\x7d\ \x9f\xc1\x36\xfb\xf1\x89\x18\xcc\x5c\xc8\x1e\xff\xfd\x10\xf4\x38\ \x89\xb2\xcb\xc4\x67\x99\x8c\x89\xa1\x0c\xd1\x50\xd6\x51\xfc\xe5\ \xe0\x5b\x17\xbe\x6f\x87\x31\x28\xe5\xb8\x88\x65\xc6\x7d\x0c\xbe\ \x16\xf8\xd6\xe4\xd0\x3e\x8e\xbd\xb4\xa0\xf4\x61\xd2\x28\x83\xad\ \xa9\x34\xd3\x91\xe6\xc4\xbc\xd8\x53\x54\x62\x58\xb8\x2e\x2e\xc0\ \x4d\xe5\xcb\x5e\x18\xd1\x1f\x5f\x3c\xab\x73\xe9\x46\x21\xb6\x51\ \x12\xa5\x11\x16\x46\x81\x1a\xae\x48\xd2\x93\x09\xae\xd7\x4f\x47\ \x91\xf9\x1f\xfc\x5a\xd1\x15\xc9\x4b\x54\xa5\x91\x15\x28\xf9\xe9\ \xb7\x67\xa0\x24\xec\x02\x7a\x3d\x8d\xcf\x76\x1e\x61\x32\x71\x0d\ \xb5\x10\x4f\xb5\xc2\x6a\xcc\x43\x4b\x8d\x9c\x0d\x7f\xa9\x8c\x6d\ \xc3\x67\x28\xcd\x6b\xa0\xf5\x4c\xc4\x9d\x4b\x56\x16\xe1\xb5\x1c\ \xae\x61\x70\x26\x6a\x5e\xd3\x22\x39\x24\xc8\x6b\xd1\xcf\xf9\xbc\ \x16\xfd\x8c\xcc\x6d\x9a\x82\xdf\x52\x48\x17\x85\xfc\xa4\x01\xce\ \x04\x37\x31\xad\xf7\xca\x4a\x90\x85\xe7\xf4\xd7\x93\x1f\xbd\x9c\ \xde\xc3\x9c\x69\x20\x0e\x28\x3f\x98\x9e\xed\x12\x83\x15\x9f\x47\ \xec\x58\xf0\xce\xf1\xf8\x24\x85\x2d\x69\xef\x71\xec\x6d\x0b\xd8\ \x5a\x13\x1e\x47\xe5\x90\x3b\x18\xee\xd9\x58\x06\xd2\xbb\xcd\x6d\ \x9a\x19\xe4\xa2\x3d\xc8\x37\xb4\xb7\x29\xe4\xe2\x24\x62\x5e\x58\ \x5d\x4e\xc8\xee\xda\x8b\x56\x14\xe5\xc5\xce\x05\xa5\xa0\x8f\x05\ \x8a\x81\x38\x8e\xe6\x73\x72\x37\x42\xc8\xb0\x63\x23\x94\x19\xae\ \xa7\xe2\xc8\x17\xf4\xe9\x6e\x72\x02\x72\x21\xfd\x97\x84\x7f\x0c\ \x73\x5b\xa1\x8f\x42\xde\xd0\xe1\x95\x72\x7b\x29\xb3\xa1\x38\x65\ \x9a\x2d\x86\x3d\xec\xc1\x31\xd3\xf0\x04\xc3\x19\xe5\xd4\x0e\xfe\ \x5d\x27\x62\x9d\x52\xcb\x0c\x52\x88\x81\x7c\x98\x47\x4c\xfc\xf5\ \x70\x40\x21\x88\xc6\x43\x07\xbe\xa3\xfd\x31\x79\x51\x0e\x6f\x95\ \x26\x2f\xfe\x96\x39\x6b\x1c\xde\x53\x6e\x19\x84\x77\xc3\x28\xa9\ \x27\xb9\x0d\x2a\x7e\x61\x9a\x63\x0a\x30\xf2\xe7\xc6\xd3\xdf\xb6\ \x0d\x33\x08\xed\x7f\x83\x34\x47\x65\xca\x0e\xfe\xa4\x05\x94\xee\ \x84\xa4\x4d\x50\xce\xf4\xa2\x9f\xb5\x11\x7c\x3e\x0d\xfd\xb0\x2e\ \x84\xab\x18\xe7\x05\xa5\x48\x12\xf1\x1f\xc7\x91\x7c\x3e\x4b\x62\ \x3b\x03\x21\x66\x5e\x95\xf3\x57\xe3\xaf\xa0\x76\x1f\x90\xe0\xa5\ \x78\x32\x00\xfb\xd4\x6f\xb5\x10\x1e\x26\x2f\xd4\x9c\xe8\xd3\x17\ \x7d\x97\x43\x5f\xb3\x3c\x6b\xf9\x7f\x3e\x3f\x1e\xac\xf5\x35\xc6\ \x2d\x61\x9b\x6b\x49\x61\x15\x3b\x68\x17\xff\x9f\x95\xf4\xff\xb3\ \x95\xb4\xb0\x2e\xa7\x7a\xd9\xc4\xef\x28\x85\xf8\xd2\x24\x01\x2d\ \xa7\x81\x76\x5e\x4b\xd6\x02\x26\x4e\x86\x5e\x0f\x96\x16\xff\x7c\ \xd2\xa6\x0f\x61\xa5\x9e\x95\x06\x10\x5b\xe8\xd9\x19\x11\x12\xa5\ \xcd\xf3\x8f\x92\x28\xb7\xa9\x6d\x97\x43\x4f\x87\x79\x50\x59\x68\ \x9b\x47\x8f\x3d\xec\x5f\xb5\x44\xfa\x4e\x6d\xf8\xbb\xc5\x7d\xcd\ \x14\xd7\x07\x71\x94\xff\x36\xbe\x37\xf8\x2f\x3a\xd2\x80\x85\x63\ \x31\xd9\x47\x47\x10\x2d\xe7\xe1\xef\x3c\x1f\x2b\x87\xb3\xd7\x24\ \x8f\xd1\x44\xfd\xc1\x9e\x65\x3d\x53\xff\x37\xc6\xed\xd2\x2c\xae\ \x7f\x02\x67\x2b\xa0\x28\xe6\x13\xff\xef\xd6\xdc\x07\x2b\x53\x7b\ \x70\x2d\x69\x6b\xd9\x3b\x0d\x52\x5c\x1b\xf6\xad\xa3\x1e\xd6\xb8\ \x47\xab\x71\x0b\x80\x51\xe0\x45\x9c\x2e\x32\xb0\xde\x14\x66\x26\ \xbf\x0c\xe4\x0a\x13\x7f\xa1\x7d\x39\xaf\x80\x16\xfc\xff\x23\x66\ \xe4\x00\x2d\x67\x71\x5c\x83\x4b\xac\x7d\x88\x3d\x61\x67\x31\x6c\ \x69\x1e\xef\x50\xf8\x72\xd0\x46\xf7\x7c\xb8\x0c\xce\xd6\xf0\xf4\ \x1c\x7d\x15\x31\x5d\x11\xed\xe5\x31\xed\x5a\x9a\x0c\xac\x26\xa4\ \xe1\xba\x75\xc7\xf7\x8d\xf4\x4e\xec\x1a\xed\xd7\x36\x4f\x6c\x19\ \xd2\x46\xb7\x6d\x1c\x1a\xec\xd5\x96\xb5\x77\x76\xee\x38\xb9\xb7\ \xb3\xb3\x6f\xa2\x8f\xfd\xb0\xb6\xa3\xab\xb3\xb3\x7f\x78\x99\xb6\ \x6c\xca\x75\xb3\xdd\x9d\x9d\x33\x33\x33\x1d\x33\x27\x77\x58\xf6\ \x64\xe7\xc4\x58\xe7\x58\x7f\x6f\xfb\x94\x9b\x4e\xad\xed\xea\x74\ \x5c\xdb\x8c\xbb\x1d\x09\x37\xb1\x6c\x43\xfd\x3a\xfa\xe5\x86\x75\ \x53\x86\x9e\xd8\xb0\x2e\x6d\xb8\xba\x96\xd1\xd3\xc6\xfa\x65\x7b\ \xe1\x99\x29\xd7\x98\x75\x97\x69\x71\x2b\xe3\x1a\x19\x77\xfd\xb2\ \xd5\xcb\xb4\xce\x0d\xeb\x1c\x37\x9f\x32\x34\x37\x9f\x85\xa7\xe8\ \x03\x9d\x71\xc7\x81\x8e\xb2\x6d\x5a\xca\xd4\xe6\xb4\x99\x29\xd3\ \x35\xda\x9d\xac\x1e\x37\xba\xb5\xac\x6d\xb4\xcf\xd8\x7a\xf6\x0c\ \x6d\x7f\xfd\xba\x4e\x6c\xb9\x61\x5d\x27\x1b\x2c\x66\x25\xf2\x1a\ \x7e\xb5\x7e\x99\x96\x84\x31\xda\x93\x7a\xda\x4c\xe5\xbb\x5b\xb6\ \x8c\x6b\xe3\x53\x46\x2a\xa5\xf5\xa5\x26\xb5\x35\x2d\x67\xb0\x5f\ \x1d\x73\x9f\xd1\x7d\x5a\xc7\x9a\x53\xb2\x2e\xff\x66\xc6\x30\x27\ \xa7\xdc\xee\xb5\x5d\x5d\xe2\x11\xda\x5b\x77\xc6\xb2\xd3\x7a\xea\ \x0c\x3a\xb9\xac\x37\x40\x5a\xb7\x27\xcd\x4c\xbb\x6b\x65\xbb\x57\ \xaf\xc9\xce\x9e\x21\xbe\x88\x59\xae\x6b\xa5\x83\xdf\xa5\x8c\xa4\ \xdb\xdd\x25\x7d\x61\xe3\x38\xf8\x4d\xfb\x5e\xb7\x3d\x96\xb2\xe2\ \x7b\xda\xcd\x4c\x02\xb0\xd2\x0d\x63\x53\x2c\x78\x1f\xe1\xa1\x65\ \x80\xa4\xac\x9e\x09\x4e\x8e\x03\x7b\x2a\x00\xbb\x6c\xc3\x44\xce\ \x36\x33\x93\xda\xdc\xb4\x61\x3b\xa6\x95\xd9\x0f\xb8\x81\x06\x80\ \x9a\xec\xdf\x30\xd0\x63\x46\xca\xd0\x1d\x43\x8b\x4f\xe9\x99\x8c\ \x91\xd2\xba\x35\x0e\xf6\x1c\xff\x66\xbf\xb6\x2e\x66\x53\x12\xc1\ \xbf\x03\xb6\x61\x68\x7a\x26\xa1\x59\x59\x23\xd3\xee\x58\x39\x3b\ \x6e\x68\x8e\x95\x74\x67\x74\x1b\xe8\xc7\xd2\x74\xc7\x31\x1d\x57\ \x73\xa7\x0c\x0d\x3a\xb6\x33\x14\x23\x56\x52\xd3\x53\x93\x96\x6d\ \xba\x53\x69\x07\x5b\x67\x6d\x6b\xd2\xd6\xd3\x69\xf8\xb5\x23\xd0\ \xff\x42\xe0\xf6\x5a\xd9\x3c\xe2\x40\x6b\x8d\xaf\xd4\xd6\x74\xad\ \x3e\x0d\x87\xe2\xa8\x4f\x18\xd3\x46\xca\xca\xa6\x61\xfa\x80\x0a\ \x3d\xad\xb5\x0e\x7d\xf5\x46\x4b\x3b\xdb\x4a\xe5\xdb\xb4\x09\x2b\ \xad\x0d\x9b\x93\x86\xbb\x32\xb0\x30\xb9\x94\x18\x4e\x5a\x18\xad\ \xab\x70\x61\x02\xdf\xe1\xc2\x68\x85\x2b\xa3\x79\x4b\x93\x02\x34\ \x88\xa5\xd0\x56\xd3\x95\x00\x4e\x2a\x91\x06\x0a\x46\x3a\x28\x12\ \x98\x98\x32\x1d\x7f\x8d\xe0\x7d\xc2\xa4\xd2\x22\x96\x73\x8d\x84\ \x96\x83\x27\x6d\xc4\xa1\x6b\xd8\xb0\x3a\xb0\x56\xf4\xc3\x96\xc1\ \x09\xe0\xfc\xb8\x91\x71\xd8\x72\xa7\xf5\x3d\x86\xa3\xe5\xe0\x13\ \x7f\x60\x9d\xae\x4d\xd9\x46\x72\x3d\x0a\x26\x87\x4b\xa6\xbd\x6e\ \x87\x69\x75\x86\x89\x0e\x21\x4a\x18\x71\xcb\xd6\x5d\xe0\x8b\x6e\ \x36\x66\xca\xcc\x18\x67\x80\x18\x4a\x59\x76\xf7\x09\x5d\xf0\x5f\ \x32\x09\xb0\x6e\x75\xbd\xc5\xd1\x37\x68\x9d\x85\xc3\xd8\x26\xb0\ \x57\x4c\xcf\xec\x89\x5b\xe9\x6c\xce\xa5\x04\x04\xef\x3a\xc5\xf4\ \x3a\xb3\xf9\xbd\xee\x41\x41\x90\xcd\x07\x60\xe8\xd0\x92\x40\xa8\ \xc6\x8c\x65\xef\x71\x3a\xd6\x75\xa6\x4c\x20\x19\xf5\x42\x2a\x48\ \xe6\x95\x5d\xc7\xde\x71\x6d\xc5\x24\x88\xc9\x2d\xba\x3b\xe5\x94\ \x0b\xca\x2b\x2c\x56\x76\xc0\x27\x6b\xc6\xd1\x4c\xd0\x23\x0e\x27\ \xa2\xde\xde\xf6\x8d\xbb\xb4\x93\x3b\xba\x3c\xca\x69\x0f\xae\x1f\ \xa7\x92\xa4\xee\xc6\xad\x19\x5c\xb6\x24\x88\x93\x76\xec\xe3\x60\ \x96\x8c\x8a\x82\x01\xec\x54\xdb\x61\xc4\xb4\xcd\x96\x43\xe9\x42\ \x5a\x44\x44\xd6\xba\xce\x5c\x2a\x4a\x10\xff\xd9\xd7\x6e\x21\xb9\ \x36\x9e\x35\xe2\xa6\x9e\x02\xd6\x02\xd2\x76\xb4\xee\xff\x65\x22\ \xaa\x80\xcd\xdd\x19\xd3\x05\x81\x84\x44\x92\xd0\xa7\xc7\x5e\xbb\ \x76\xf5\xc9\x5d\x0b\xa1\xb1\x2c\xa2\xe9\xd3\xa7\xcd\x84\x36\x66\ \xc5\xa7\x0c\x89\x52\xda\xb4\xec\x54\xde\x31\xe3\x4c\x4d\x31\x19\ \x03\xa4\xed\xc4\x4d\x23\x13\xa7\x32\x52\x87\xe7\xed\x36\x30\x88\ \x2c\x87\x6a\x38\xc7\xa1\xf4\x8f\x12\xd2\x4a\x18\x00\x98\x36\x63\ \x80\x90\xd5\xb5\x98\x39\xa9\x81\xb9\x93\xd5\x12\x4c\x35\x51\x99\ \x29\xa9\xa7\xbf\x32\xfb\x2e\x44\x8e\x3d\x29\xf8\x99\x29\x55\x8e\ \x1c\x98\x32\xa8\x6f\x2b\xe7\xd2\xa9\xa7\x71\x3a\x1e\x76\xf2\x56\ \xae\x05\x26\x9d\xb2\xac\x3d\x74\xaa\x3a\x3c\x63\xe5\x52\x89\x4c\ \x8b\xab\xc5\x28\x2e\xdc\x29\xec\x67\x01\x1e\xfc\x0b\x18\x43\xd9\ \xd4\x3e\x6d\x12\x14\x08\x28\x32\x00\x6b\xd2\xb2\x12\x1a\x98\x21\ \x09\x83\xb2\xd9\xba\x4e\x6a\xbb\x52\x43\x96\xda\xce\x35\x60\xa9\ \x37\xf4\xc4\x60\xbe\x4c\xd2\x55\x2c\x86\x2f\x96\x93\x7b\x3c\x47\ \x2b\x8b\xa1\x46\xe1\xe2\x4b\x2e\x9b\x30\xf2\x49\x23\x36\xe7\x58\ \x54\xf6\xd7\x44\x86\xe4\x30\xae\xd7\xb2\x66\x88\xc9\x4f\x65\xa3\ \x43\xc9\x68\x28\x17\x2b\x35\x1c\x65\x76\x95\xb2\xe1\x5a\xd2\x4a\ \xce\x03\xd7\x64\x37\x74\xd0\x43\xc6\xe1\x7d\x27\x7e\xd2\xe0\x5d\ \x1c\x5e\xe7\xb8\xab\x98\x25\xfb\xf1\x37\xfa\xdd\x4a\xaf\xeb\xbf\ \x6b\x3d\x2f\xb6\x7b\x7c\xa2\x7f\xf4\xbc\xce\xd8\x6e\xed\xbc\xf8\ \xee\x39\xc7\x35\xb2\xfb\xcf\xeb\x8c\xef\x5e\x49\x87\xab\xec\x01\ \x0b\x0f\xc7\xb9\x10\x66\xa5\xa3\x5b\x6a\x7a\xa1\x04\x11\x7e\xd0\ \xb0\x60\x26\x4e\x9e\x92\x70\x97\xf2\x9c\x54\x16\xf2\x60\x6e\xea\ \xcf\x89\xcb\x93\xe1\xc2\xf5\xf2\x9e\xf3\x60\x5a\xd9\x63\xdb\x7a\ \x5e\xd3\xe3\x71\xe0\x43\xcd\x05\xa2\x30\x5c\x2d\x9d\x73\x90\xec\ \xa8\xd1\x89\x3f\x53\xa7\x26\x08\xe1\x3b\x8b\x40\xc8\x02\x24\x49\ \x0c\xe5\xd0\x02\x25\x39\xd1\x5d\x0c\xba\x69\x74\x5c\x4d\x29\x7c\ \x42\x5d\x48\x8d\xcf\x7a\x1e\xbe\x9b\x97\x8a\x07\x12\x11\x33\x7a\ \x6d\x0f\x98\xcf\x93\x19\x66\xc0\x06\xe7\x63\x00\xfb\x01\xaf\x4d\ \xeb\xb6\xa9\xc7\xc0\x57\xb3\x6c\x3e\x3f\xf0\xcc\xd2\xc1\xf9\xd9\ \xb0\xba\x23\x64\x0c\xa8\x72\x10\xfe\x6a\x1c\xc2\x2c\x86\xa5\xc2\ \xd0\xfb\x09\xc9\x79\x1e\x52\x68\xf1\x0a\x09\x4c\x84\x76\x1e\xe7\ \xe5\x87\xb4\x7c\x3c\xc5\x70\x8e\x71\x3a\x5f\x6f\x06\xcb\x37\x8e\ \xf5\xf7\x9c\xa3\xc5\x41\x7e\x58\x99\x54\x9e\x42\x0e\x56\x63\x42\ \x33\x33\x8e\x99\xa0\xc2\x00\xa4\x44\x36\x08\xee\x2c\xe9\x05\x70\ \x87\x11\xdc\x61\xb2\x8d\xf4\xff\xc5\x81\x6e\xe9\x1d\x19\x9e\x18\ \x1c\xde\xd6\x5f\x26\xdc\xe3\x08\xf1\x08\xe6\xb4\xca\x85\xd7\x44\ \xde\x9d\xc7\xac\x32\xab\xec\xf0\xc9\x43\x47\x21\xf3\x94\x17\x79\ \xd0\xbc\x58\x07\xcd\x98\x0d\xfa\x70\xf7\x0f\x8d\x2b\x60\xd6\x93\ \x54\x2a\xc3\xb7\x83\x03\x1a\x0a\xc5\x20\xdc\xc3\x00\x75\x06\xc7\ \x65\x91\xa3\x16\x60\x7d\x1a\x11\x9c\x05\xc6\x6f\xc1\xb8\x09\x13\ \x70\x1a\x97\x31\x19\x8c\x82\x66\x79\x84\x50\xce\x74\x07\x89\xf7\ \x35\x83\x20\x6b\x67\xb5\x96\x39\x33\x31\xbb\xbf\x05\x9c\x41\x0b\ \xb5\x60\x52\x50\x6a\x10\x8a\x9b\x60\xd5\x83\xec\x17\xc5\x76\x74\ \x45\xa7\xb1\x5e\x45\xc4\x2d\x5b\xff\x7c\xac\x48\x56\x12\x56\xdb\ \x33\x47\x44\xa5\xe1\x7e\x6f\x86\x83\x83\x99\x69\x3d\x05\x66\x83\ \x5e\xc0\xa6\xad\x25\xf1\xe9\xca\x6e\x6d\x8e\x86\x62\xf6\x07\x71\ \xb1\x0a\xd6\x84\x55\x9b\x14\xce\x35\x0a\x96\xc3\x05\x2c\xb4\x3f\ \x75\xb7\x1b\xbd\x6e\x13\x11\x88\x29\x7d\xb8\x63\xc5\x70\xde\xc4\ \xa2\xc7\xdd\x87\x85\x9f\xc3\x64\x3b\xb0\xc6\xae\x3f\x33\x3b\xb3\ \xd0\x6a\x5c\x90\x8b\xaf\x1b\xc6\xfa\x27\xb6\x8d\x0d\x17\x61\xe8\ \x64\x2e\x13\xa7\x56\x62\x10\xf6\xab\x40\x37\x18\x3c\xc0\x6e\x23\ \x84\x22\xe0\xee\x60\xb8\x75\x9a\x87\xc3\x0d\x2f\x21\xcb\xc8\xc8\ \xc1\xe7\xa6\x91\xac\x72\xfc\x57\x96\x60\x90\x35\x5d\x8b\x57\x62\ \x96\xe7\xe1\x43\xff\x17\x1a\xac\x64\x65\x5b\x8e\x57\xde\x47\xd7\ \xa3\x9e\xd4\x7b\xb3\x5a\x37\x01\x76\x57\xd2\x4a\xa5\xac\x19\x6a\ \x69\x19\xb6\x6d\xd9\xe0\xb3\xc7\xe3\x39\x1b\xa6\x36\x33\x65\xc2\ \xba\x64\x75\xdb\x11\x16\xa7\x31\x9b\xb5\x41\x37\x52\x5b\xb8\xbe\ \x3e\x38\xd1\x01\x90\xb7\x79\x5e\x0f\x25\x32\x11\xac\xba\x25\xe7\ \xa3\x93\xc8\x39\x82\x0c\x72\x11\x23\x10\x51\x39\xeb\x13\xc8\x71\ \xdb\x32\x7b\x32\xd6\x0c\xb5\x2a\x75\xa0\x74\x64\x0d\xd0\xbc\x40\ \x21\xf4\x25\x44\x21\xcb\x80\x36\xc2\xb4\x38\xc7\xe9\x93\x96\xcd\ \xad\x27\x9a\xd7\xf1\xd2\xed\x82\xe2\xe6\x80\xf6\xf6\x6b\xeb\xb5\ \x60\x5f\x47\x73\xab\xc6\x17\xc6\xdc\xb2\xf1\x7a\x68\x00\xd3\x85\ \x4a\x4a\x6a\xba\x04\xdb\x7e\xc8\xb3\x88\x46\x40\xf1\x8c\x29\x6c\ \x22\x01\x93\xb0\x88\x34\xde\xa2\x0f\xe8\xba\xf0\xe9\x18\xcc\x84\ \x05\xaf\x0b\x5b\xdc\xa3\x78\x9e\x25\x58\xe4\x67\x25\x2b\xcc\x83\ \x7f\x14\xe0\x1f\x18\x19\xf3\x2c\x2f\x8a\x06\x6a\x78\x69\xf4\xfb\ \xb1\x91\x2d\xde\x0f\x31\x03\xcc\x62\xef\xa7\x89\x11\xef\x07\x23\ \x93\x60\x5f\x33\xab\x2d\x88\x84\xb3\x39\x80\x03\x88\xbc\x5e\xd4\ \xc3\x12\x1a\x25\x70\x93\xc8\x76\x71\x00\xb8\x15\x3e\xb1\x48\xbd\ \x03\x9f\x56\x8a\x09\x78\x20\x9f\x48\x41\xdb\x36\xdc\x3b\x31\x38\ \x32\xec\x41\x41\x39\x6e\x7f\xeb\x1c\x08\x4c\x67\xff\x4a\x0a\x4e\ \x10\x8e\x0e\x69\x21\x0b\xc7\x66\x34\x28\x21\xcb\x1b\xeb\x28\x18\ \x6b\x70\xc0\x1b\x25\x6e\xf1\xc9\x86\x49\x8e\xf5\xde\x03\x0c\xbe\ \x09\xcd\x23\x5a\x99\xb5\x99\x6c\xf1\x17\xd2\xeb\xb1\x09\x7a\x1c\ \x1d\x1b\xd9\x34\xd6\xb3\xa5\x90\x66\xba\x79\x47\x13\xd0\xd5\x30\ \x16\x77\x6d\x45\xa3\xa5\x1c\x90\x8f\x81\x01\x76\x6c\x1e\x1c\xea\ \x5f\x08\xea\x9d\x45\x09\x71\x0f\xbc\xae\x20\x27\x60\x8e\xe5\x74\ \xfc\x7b\x1a\x39\x03\x9f\xd8\x53\x40\xc4\x29\x14\x4b\x85\xa0\xb4\ \x05\x29\x6a\xcf\xee\x15\x27\xac\x5e\x73\xfa\xea\x35\xa7\x9d\x71\ \x5e\xe7\x1e\x41\x6f\xa9\x9c\xa1\x00\xee\x48\xe8\xcc\x84\x01\xa6\ \xb9\xf6\xa0\x5d\x9b\x52\xd7\x8d\xe7\x99\xbb\x8d\x74\xd6\xcd\x9f\ \xd7\x69\x86\x9a\x1e\xc3\xa1\x97\x0d\x55\x0e\xb7\xd4\x7c\xcf\x6e\ \xb4\x26\x29\x20\xc1\xe6\xa7\xf1\xe6\x3d\xc0\xb9\x74\x93\xc3\x10\ \x6a\x99\xc2\x89\xc7\x79\x62\xb4\x70\xda\xaf\x82\xce\x7b\x7b\x86\ \x86\xbc\x49\xc6\xc1\x7f\x57\xcc\xb1\x8b\x8f\xd4\x0f\xec\x31\x00\ \xe3\xf5\x72\x7d\xb6\x09\xfe\xd2\xd1\x37\x03\xe8\xfe\xfa\xcb\xe0\ \x2f\xa5\x23\x0c\xf5\xf7\x8c\x69\xa3\x43\x23\x13\x85\x73\x10\x0b\ \x58\x68\xfc\x86\x7b\x6a\xa6\x3d\x71\x0b\x35\x1a\x17\x7d\xe4\x41\ \xe8\x6b\x08\xa0\x1a\x8b\xc0\x46\x88\x84\x7c\xdf\x0e\xfa\xef\xeb\ \xef\x1d\xea\x19\xeb\x97\xd6\xdc\x56\x60\x63\xc8\xc3\x3b\xc5\x06\ \xdd\x46\xb2\xb9\xc8\x58\xa9\x90\x64\xa3\x1a\x7b\xc6\x4b\xc3\xef\ \x97\x84\x05\x8c\x3f\x38\x3e\x3a\xd4\xb3\x4b\xa6\x39\x2e\xb1\x32\ \xc6\x0c\x8d\xe0\x84\x84\xd6\xef\xbd\x59\xf7\x03\x11\x31\xd9\xcf\ \x56\x86\x6e\x6f\xd9\x84\x9f\xd4\xf4\xc0\xb4\x72\x21\x23\xf5\x05\ \x5a\xb4\x06\xbc\x62\x8a\x37\x97\x5c\x80\x26\xb2\x68\x77\x46\xc8\ \x73\x16\xcf\xe4\x65\xff\xd9\xeb\xfd\x1e\x65\xdf\x4c\xfe\x47\xf7\ \x2b\x7e\xcf\x2b\x7d\xf2\x39\x8a\xb7\xb1\x9e\x1d\xda\xd0\xe0\x70\ \xbf\x44\xc8\x29\xcb\xe7\x66\xa6\x1f\xe0\xa7\x56\xe6\xb3\xeb\xb6\ \x7b\xc1\x2c\xfe\x7a\x86\xe6\x7f\x93\x67\x8e\x3c\x6d\x40\xb5\x86\ \x78\x1c\xd4\x46\xe0\x61\xfa\x39\xaf\xf2\xf9\xaf\x8c\x5c\x0d\xaa\ \x59\x07\x91\xbe\xcb\x5b\x0d\x35\xbe\xa2\xf0\xa4\xc6\x4f\xaf\xc0\ \xcf\xe8\xc8\xe0\xf0\x44\x04\x82\x7a\x26\xfc\xf9\xca\x73\x55\xce\ \x73\xa3\x27\xb6\x7a\xb0\x98\x71\xb0\x14\x3e\xe3\x06\x13\x4b\x46\ \xfb\x54\xdf\x0d\x83\x0f\x0e\x8f\x6e\xf3\x01\xcb\xda\x16\x48\x4b\ \x0f\x32\xbe\x12\x01\xf9\x3c\x47\x83\x5a\x41\x56\xa8\x10\xb2\x74\ \x02\x45\x92\x10\x50\x2a\x6d\x5e\x1a\xfa\xa9\x48\x4f\x0a\x61\x8e\ \x9a\x5e\x4c\x68\x25\x33\xcd\x24\xf2\x64\x26\xeb\x42\xcc\xb4\x90\ \x79\x14\x5e\xf0\x68\xf3\x88\x3d\xeb\x07\xb0\x82\xcf\x17\x04\xb0\ \x3c\x64\xbf\x03\xf0\x49\xc5\xb0\xe6\x1b\x25\x0a\x6a\x30\x77\x27\ \xa9\xaa\x6a\x45\x7c\xaf\x04\x4b\x13\x89\x1e\x6c\xe8\x42\x76\x0a\ \x9b\x5b\x81\xe5\xf2\xcc\x2d\xf8\x9a\xc5\xcc\xf6\x84\x62\x66\x6a\ \x11\x1e\x76\x9b\x16\x14\xab\x92\x41\xb1\x67\x37\xf3\x78\x0a\x24\ \x68\x90\x58\xa6\x25\x6d\x31\x80\x9c\xc9\x62\x44\x74\xe8\x51\xf2\ \x00\xbe\xca\xc3\x52\x12\xd8\x89\x9b\x43\x32\xb0\xf4\x82\x28\x7c\ \x7e\xbc\x80\xff\x56\x48\x42\x3b\xb1\x58\x62\x36\xb2\x95\x1e\xe0\ \x66\xd1\x6a\x57\xe4\x58\xf9\x22\x63\xed\x8a\x1c\x2b\x5f\x64\xac\ \x9d\x3c\xc0\x91\x88\x80\x51\xfc\xaa\x1a\x2f\xba\x65\x5e\xd5\xd2\ \x5b\xa8\x2f\x50\x92\xe8\x9f\xd0\x76\x0c\x0e\xf7\x8d\xec\x60\x8b\ \x65\xee\xde\x99\x36\x33\xeb\x29\xe9\xa1\x14\xba\x20\xed\x91\x15\ \xfd\x49\x9f\x95\x7f\xd2\x67\xbd\x9f\x76\xc9\xad\xf2\x81\x56\xbb\ \xe4\x56\xf9\x40\xab\x9d\x34\xe4\x2d\xf5\x48\x3f\xfa\xed\x02\x3f\ \xe6\xfd\x1f\xd5\x56\xd1\x38\x88\x97\x11\xa0\x9b\xd2\x09\xf5\x68\ \x64\x89\x91\xd1\xe2\x64\x4a\x2e\xe5\x03\x6c\x47\x73\x66\x10\xfe\ \x6e\x44\x23\xaf\x14\x61\x2b\x64\x04\xe3\xa6\x3e\x34\x09\x7a\xe0\ \xef\x76\xb4\xfd\xfb\x8b\x38\x7a\x51\x36\xf2\x06\x00\x7a\x7b\xcf\ \xd8\x60\xcf\xc6\xa1\x42\x0b\x09\x79\xbf\xe7\x9c\xfe\x71\x6d\x7b\ \xcf\xd0\xb6\xfe\x05\xad\xe6\x9d\x9e\x0d\x35\x01\xff\x18\x88\x61\ \xae\x8b\xb2\xa1\x04\xd6\xfb\xb9\xd5\xc8\xf4\x6d\xd8\x5e\x6c\x01\ \x88\x76\xf4\x0c\x4e\x14\x1a\x53\x48\x7c\x60\x4a\xf6\x8d\x17\xd8\ \x91\x15\xad\x11\xdb\x6f\xc5\xd6\x2d\xbf\xa4\x29\x8b\xe5\x6a\xac\ \xf8\x2f\xc5\xbd\x77\x16\x14\x0c\x45\x63\x30\x94\x39\x8d\x21\x3d\ \xbf\x88\x91\xb9\x8d\xb9\x40\xd1\xb0\x83\xdb\x00\x68\x3c\x3e\x09\ \xff\xcf\xc3\xe7\x0e\xa9\xa0\x2a\x8b\x1b\xe6\xa2\x5b\xb3\x60\xe0\ \xb4\x17\xd2\xf3\x63\x4b\x34\xa2\x94\xc5\x36\xf3\x5e\x39\x97\x28\ \xcc\x74\x30\x22\x66\xf2\xfe\x18\x74\x1d\xe5\x94\x71\x91\x1b\xa4\ \x3a\xab\x4e\x56\xfb\xb4\x61\x5d\x76\x43\xaf\x9e\x4a\x39\x18\x7e\ \x11\x21\x26\xcc\x9d\xe1\x37\x0e\xcd\xf3\x26\x4d\x1a\xa4\xb5\x27\ \x73\x34\x4a\x42\xab\x0a\xb2\xb4\x19\x0d\xed\x88\x2f\x35\x9a\x9a\ \x65\xa1\x7f\x9a\x1c\xa7\x1f\x68\x3e\x83\xa6\xdc\xd2\x7a\xbb\x63\ \x64\x75\x5b\xa7\xd5\x1b\x29\xf1\x4b\xb0\xb3\x82\x54\x56\x23\x5d\ \x65\x0a\xd7\xb8\x9b\x76\xb9\xef\xd6\xa3\xc0\x64\xb7\x37\xb7\xfa\ \x1e\xd1\x65\xb7\xba\x03\x4d\x22\x01\x03\x91\x1a\x15\x8a\x5b\x42\ \xdb\x05\xc2\x6d\x85\xbd\x1d\x0e\xca\x28\x4c\x3a\x3e\x30\x75\x03\ \xbc\xb1\x1a\x96\x8a\xb6\xb2\x48\x77\x1b\xf6\xce\xaa\x92\xc5\xe4\ \x75\x24\x04\x56\xcf\xd7\x82\xa4\x4c\x03\x53\x0e\x5a\x48\xb9\x40\ \x64\x9e\x46\xc7\x58\x24\xd9\xe0\xf1\x6a\x3f\xfc\xe7\x07\xf2\xe6\ \xf1\x29\x39\x75\x94\x23\x85\xbb\x28\x8d\x02\x32\x1f\xc4\x0a\x79\ \x3f\x4c\x2a\xef\x65\x37\x71\x84\x0c\xcf\x1d\x64\xd1\x72\x63\x69\ \x33\x1a\x32\xa5\x2c\x50\x1e\xf9\x5e\xa1\x26\xdf\x1e\xa4\x32\x4a\ \x84\x53\xba\xa3\x65\x2c\xcd\x48\x26\x8d\x38\xcd\xfb\xea\xae\x63\ \x19\xd3\x86\xad\x01\x45\xb3\xe8\xa2\x11\xcf\x21\x7d\xf3\xa2\x20\ \x5e\xd6\x25\x28\x7a\xd0\xc5\xf0\x2b\x2d\x35\xd4\xcd\x8c\xa6\x67\ \xf2\x98\x09\x8e\xa0\xd1\x66\x5c\x56\x36\xb4\x44\xa6\xbd\xaa\x75\ \xf2\x33\x9e\xbc\x41\x64\x07\xc7\xa8\x3b\x08\x90\x57\x2d\x6f\xd4\ \x1d\xd5\x4b\xc5\x27\xca\x94\x8d\x2c\x82\x3b\xe9\x65\x2e\x75\x1e\ \x7d\x4f\x79\x31\xec\xb0\xc4\xf3\x37\xf0\x8a\x67\xe5\xe8\x68\x98\ \x4c\xc6\xb1\xf0\x57\xfd\x6c\x61\xf1\xaf\x5f\xc6\x9a\xf0\x8a\x87\ \xd9\x93\x6c\xc3\x72\x1a\x93\x3d\x3a\x32\x5f\x8e\xb0\x4d\x8f\x2c\ \x65\xe2\x3f\xcf\x48\x7e\x2f\xff\x9d\x91\xa5\x28\x67\x97\x7b\x61\ \x12\x96\xe1\xba\x0d\x99\x44\x68\x08\x87\xb0\x32\x64\xfa\x3c\x95\ \xc7\xf3\x3c\xf4\x5c\x1a\x44\xe5\x91\xf6\x43\x11\xa4\x8d\x69\x1b\ \x27\x24\x89\x51\x51\xd3\xda\x45\xfa\xb5\x48\x6f\x78\x34\x9c\x0c\ \x7c\xad\x25\x2c\x83\x32\x85\x0b\xc4\x4f\x65\xaf\xc9\x38\x21\x9e\ \xb3\x6d\xca\x31\x4e\xdc\xca\x62\xca\x87\x91\x3b\x8d\xc5\x7b\x5f\ \xb7\x69\x26\x30\x91\x09\xa2\x30\x06\x0d\x6c\x03\x05\xb8\xaa\x7d\ \x04\x7f\x34\x51\xc2\xec\x33\x92\x66\xc6\x90\x84\x70\x1f\xe0\x31\ \x89\x56\x31\x13\x0f\x21\x6a\xf0\x63\x48\xac\xa5\x37\x91\xa8\x1e\ \x0f\xc1\xc8\xbc\x4f\xa7\x3e\x97\x54\x6f\xa7\x78\xea\x8e\x6a\x78\ \xb8\x22\xa4\x2f\x49\x70\x11\xc4\x8f\x6a\x5f\x71\x4b\x99\x2c\x96\ \xc4\x69\xb3\x7d\x19\xc1\xdc\x9f\x0f\xbc\x47\x5c\x8b\xeb\x3d\x03\ \x85\x92\xa6\x6f\x20\x24\x38\x69\x32\x59\x6a\x12\xb1\x6b\x3d\x68\ \x7a\x14\xb2\xaf\x2a\x91\x95\xf0\x98\x4f\x25\x9f\x19\x5b\x89\xbc\ \x49\x14\x6b\xb0\x3e\xd8\x6e\x0c\x97\x27\xb8\x74\xf2\x24\xd7\x22\ \x8c\xed\xd8\x3e\x59\xb1\xd3\xc3\xc0\x5f\xc4\xfc\x6d\xf4\x7f\x99\ \xb9\x23\x04\x9e\xaf\x85\x44\x10\x22\x27\x8d\x2d\x4e\x0b\xb0\xf0\ \x2f\x13\x45\xe5\x31\xdb\xe7\xd4\xcc\xd6\x67\x3a\xd9\x94\x9e\xa7\ \x95\x36\x8c\xc3\x38\xad\x5b\x39\x37\x4b\xcb\x88\xb0\x32\xa5\x43\ \x93\xac\x1f\xf6\x18\x55\x19\xbc\x7e\x23\xc3\xaa\x37\x02\x9c\xa3\ \xe7\x5c\x2b\xad\xbb\x66\x1c\x0c\x80\x3c\xd5\x2d\xa0\x90\x28\x27\ \xd1\xda\x63\x2c\xf9\xc9\xe9\x29\xcd\x36\x68\xde\x0b\x38\x0a\xeb\ \xc0\x8a\x29\x1c\x0e\xa5\x47\xc6\xc7\x85\x48\xcb\x0e\x2e\xbd\x6f\ \xd4\xf0\x86\x0c\xe8\xc8\xee\x4e\x83\xee\x2e\xf2\x56\xd3\xf6\x04\ \xa9\x8d\x76\x83\xc8\xa8\xfb\x82\x3f\x25\xd4\x86\xef\x30\x0d\x60\ \xba\x0f\x66\x18\xcb\xd3\x32\x04\xca\xc4\x31\x90\x1e\x7b\x22\xc7\ \x2c\x89\x85\x55\x2d\x2b\x5e\x28\x8b\x07\xfb\x25\x3b\x47\xe6\xc1\ \xa8\x4c\xa2\x5f\x41\xe0\xd3\xb7\x10\xfc\x4e\x88\xc3\xe4\xa4\xa9\ \x5a\xc9\xc9\x8a\x43\xa4\x89\x0d\x4c\xc1\xea\x12\x5f\x05\x95\x6c\ \x58\x8d\xde\xe3\x29\x1c\xa1\xca\x4c\x9e\x6c\xf6\xb9\xa6\xad\x08\ \x0c\xe2\x64\x00\x96\x23\xb5\xa5\xba\x02\xa1\xdc\x72\x92\xf2\x0d\ \x43\x43\x03\x9b\xab\x03\x4e\xc9\x3c\x72\x3b\xc5\xcc\x4a\xa5\x1c\ \x62\x78\x8a\xa1\x64\x11\x7b\x84\xfd\x14\x34\x83\x22\x85\x3b\x57\ \x98\x3b\x54\xae\x43\xf3\xa2\x9a\x93\xfb\xd1\xce\x33\x98\xde\x34\ \x33\x8e\x6b\xe7\xd0\x1a\x77\x58\x6d\x07\xf0\x25\x32\x81\x57\x3c\ \xee\x29\x4b\xce\xf1\xbe\xaa\xb5\xf5\xcc\xa4\xa7\x5a\x7b\x40\x89\ \xea\xf1\x29\x5a\x18\xc1\xea\x35\xdb\x82\xad\x05\xc7\x9b\x19\xd0\ \x96\xd4\x1c\x63\x3c\x80\x3d\xba\x46\x96\xa6\xbb\x69\x6b\x47\x4b\ \x18\x49\x3d\x97\xe2\x42\x60\x75\x40\xa4\xc4\xac\x5c\x26\x01\x22\ \xc8\xc6\x6e\x52\x39\xc7\x9c\x8e\xd2\xaf\x0d\x94\x23\x06\x2c\x5b\ \x52\xae\xa3\x7c\xe5\xb2\x84\x9d\xb9\xc3\xb2\xe0\xba\x28\x56\xf0\ \x13\xcc\xbd\xe0\xa9\x59\x69\x04\x4b\xd9\xd5\x91\x64\xa3\x5f\x76\ \x44\x34\x91\x6f\xf6\x2d\xd0\x81\x91\x31\xaf\xc2\xa8\xa0\x75\x2d\ \x68\xf9\xa0\x3a\xad\x1a\xb0\xad\x74\xb7\xf2\xe1\x7a\x0f\x6a\xe9\ \xf1\x71\x00\x4c\xfd\x78\x35\x32\x81\xff\xe8\xe2\x09\x4b\xfd\x60\ \x39\xfa\x3d\xdc\x78\xd1\xf5\x65\x09\x16\xd9\xa6\x71\x25\xc1\x52\ \x18\x5d\x88\x58\x18\xae\xc6\x05\xc3\x30\x06\xa3\x56\xe5\x53\x5c\ \x59\xff\xf9\xa2\x06\xc2\xc1\x8c\x86\x97\x99\x0d\xcc\x46\x9e\x86\ \xef\xf3\x5c\x31\x30\x8b\x3b\xc3\x9f\x54\x19\x34\x41\xa3\xc1\xef\ \xcb\xf5\x8a\xc5\x62\x68\x14\xb0\x2d\x88\xcc\x08\xa1\xcf\xfa\xee\ \xab\x11\x10\xd9\xf2\x9c\xd4\x42\x9b\x09\x18\x21\x68\x13\x1c\xcf\ \x7e\x4b\x8d\xe3\x88\x1d\x54\x44\x85\x26\xc5\xbb\x98\xbf\x2b\x41\ \x5b\x0c\x17\x3e\xe6\x75\x2f\xa4\x30\x1f\x30\x6e\xfc\x0a\x21\xb1\ \x19\x75\x21\x65\x13\xcc\x0c\x97\x25\x06\x2b\xd6\x44\xc4\x75\xd0\ \x66\xa7\xf6\x4c\x9c\xb1\xbb\x08\x69\x74\x68\x54\xd4\xd0\x98\x4c\ \xda\x00\x59\xe6\x78\x35\x9b\xd1\x01\x1b\x93\x56\x25\x53\x99\x68\ \x7b\xf1\x9f\x1e\x3f\x5c\x94\x06\xbb\x02\x24\x2b\x7d\xa1\xae\x86\ \x6d\xb8\x39\x3b\x23\xec\x28\xb4\x86\xa8\x91\x04\x86\x0f\x2d\x37\ \x07\x21\x89\x05\x4e\x2b\xf6\xe6\x2c\xf7\x8c\x84\xc5\x5e\x59\xd1\ \xb5\xe3\x55\x6d\xa3\xdf\x3e\x69\x4e\x63\x81\x36\xf4\xe8\x80\xc0\ \xec\xd0\xc6\x73\x20\x41\xfd\x52\x28\x61\x7b\x51\xdb\x8a\xee\x0d\ \xf2\xea\x88\x68\xa6\xdc\x2f\xec\x29\x16\x64\xa2\x91\x9a\x22\xee\ \x49\x54\x8c\x48\xb8\x27\x05\x51\xa2\x40\x7f\x65\x47\x89\x02\xad\ \x8f\x46\xc9\x58\x28\x08\xfc\x1e\x1a\x46\xbd\x35\x54\xf7\x51\xf1\ \x40\x99\x82\x4c\x14\x73\xc9\x81\x00\xb1\x8b\x3b\x56\xd4\x62\x9f\ \x96\x7c\x8a\xa8\xe0\xaa\x1c\x75\x3a\x30\x0b\x68\x48\x82\x48\xf6\ \x9b\xa2\xab\x2b\x99\xbd\xf4\x0c\xff\x94\xe0\xdf\x31\xbc\x52\xd8\ \x9e\xf2\xf0\x2a\xc7\xae\x82\x7b\xc8\x33\x81\xb2\xc4\x94\x12\x06\ \x26\x0e\x55\xa1\x93\x31\xb2\x09\xd4\xa9\x86\xb8\x9f\x45\xec\xb3\ \x19\xa6\xf9\x53\xe5\xd9\x3c\xb7\x44\x78\x2f\xb6\x3e\xe3\x08\xdf\ \x7c\xda\xdb\xf6\xe6\x71\x8a\x15\x36\x6d\x4c\xb0\x4f\x6c\x60\x50\ \x39\x9c\x8b\xb9\x45\x49\x1a\xd0\x6d\x77\xc0\x51\x3c\x20\x26\x98\ \x8b\x3d\x45\xeb\x28\x29\xd3\x8f\x6d\xda\xa8\x4d\x19\xb3\xfc\xd9\ \x08\x56\x5b\x42\x09\x73\x53\x80\xba\x0f\xc5\x40\x97\x8c\x41\xc9\ \xee\xef\xc5\xcd\x2f\x11\x2d\xeb\x81\xab\xcc\x10\x2f\x55\xf6\x67\ \x12\x51\xcf\x97\xc3\x85\x8a\xe6\x2b\xc8\x04\x27\x16\xdf\x21\x2a\ \x56\xc9\xb9\x64\x34\x05\x32\x50\x16\x0c\x8a\x4e\x9b\x50\xd2\xc4\ \xb8\x42\x91\x66\x3e\x4e\xeb\x1b\xa2\x67\x5e\xcc\x56\x52\x4e\xbd\ \x74\x23\xa8\xb0\x79\xc5\xfb\x0f\x4a\x7a\xc8\x1b\x21\x44\x68\xb1\ \x30\xbd\x42\xf9\x88\xfa\x07\x42\x59\xcf\x7b\x7e\x42\x38\xe0\xa8\ \x4a\xb2\xfc\x6f\x97\x06\x1f\x2b\x26\x0d\xb8\xf7\xad\x48\xe6\xc4\ \x2d\xcb\x4e\x98\x19\x6a\x1e\xfc\x05\xf9\x7f\x48\x8e\xbf\x95\xc5\ \xff\x81\x96\x47\x92\x9d\x84\x25\xd6\xd8\x29\x6c\xf3\x21\xb2\xae\ \x06\x59\xa0\xed\x8c\x6e\xbd\x6b\xe1\xd6\xbb\xa2\x5a\x2f\x0f\x51\ \xb9\xad\xa2\x73\x9f\xc1\x50\x14\xd0\x45\x88\x44\xc2\x4e\xee\x48\ \x17\x8a\x82\x5a\x14\x05\xd1\x13\x39\x14\x27\x52\xb4\x6d\xd4\x34\ \x2a\xae\x3c\x68\xc6\x66\xe1\x11\x53\x4a\x33\xcd\xfe\x1f\x33\x1f\ \x24\x33\x5f\x57\x9c\x99\xb3\x16\xe8\x6c\xba\x5b\xf1\xaf\xcb\xcb\ \x18\x0c\xdf\x34\x4a\x81\x29\x97\x99\x55\x4d\x97\x45\x70\x94\x44\ \x60\x7e\x92\x17\xf9\x09\xf1\x10\xd5\x5d\x35\x72\x94\x3f\xfa\xa2\ \x9d\x91\x23\x57\x23\x03\x49\x8f\xee\x8a\x7a\xb4\x22\xea\xa8\xef\ \xd2\xe2\x01\x8c\x72\x58\x2e\x4f\x18\xba\x2c\xd4\xc6\x8c\xe9\xa7\ \x88\x7c\x8c\x6e\xd0\x84\x0e\x87\xff\x69\x2b\x96\x90\xcd\xe2\xd1\ \xde\xfe\xd1\xb5\xa3\x5e\xb8\x72\x13\xaf\xe6\xa1\xfe\x77\x17\xd1\ \xbc\xdc\x1e\xe3\x3e\x83\xf3\x2b\x3b\xf0\x26\x78\x00\x6e\x39\xd4\ \x9a\x8d\xf0\x3a\xa7\x68\xcc\x8c\xe7\xac\xcc\x7d\x9e\x25\x9a\xa5\ \x4b\xc7\x82\xe8\xd4\x6d\x9b\xd6\x9d\x0e\x6d\x00\x68\x6e\x93\xad\ \x27\xda\xb4\x2e\x2d\x6d\xe8\x74\x67\xb2\x88\x96\x17\x8b\x81\x6f\ \x62\xbb\x44\xa5\x00\xf2\x4e\x0f\x2b\x89\xc0\x92\xd6\xd0\xde\xb9\ \x08\x8d\x68\xba\xab\x68\xd3\x5d\xd1\x4d\x9b\x70\x54\x56\xab\x15\ \xa0\xf7\x2d\xfa\x6c\xb1\x21\x9b\x70\xc8\x88\x76\x25\x8c\x17\x36\ \x7d\xab\xb7\x98\x99\x52\xc6\x53\xb6\x2b\x32\xde\xb2\x02\x67\x38\ \x25\x39\x80\x4f\x05\xd2\xda\xf5\xe3\x86\x58\xdc\xa8\xfe\x2a\x1e\ \x2e\x8b\x87\xb6\xf3\x3d\x54\x82\x62\x1d\x29\x83\x2c\xf6\x29\x98\ \x01\xd7\xb2\x30\x3f\x2d\xc2\xdd\xd3\x84\x1d\x27\x55\x98\x97\x1e\ \x22\x6c\x8b\xa5\xd8\xac\xe8\x27\xb6\xe4\xc8\xd3\x3c\x17\x49\x82\ \x4f\xfc\xf8\xd4\x42\x50\x15\x42\xd0\x46\xfc\xcc\x31\x33\xe5\xe7\ \x51\x8f\xcd\x4b\x7a\xa9\xbc\x92\x0c\x5f\xbb\xd1\x95\xca\x79\x33\ \x90\x77\xa4\xa9\x22\x4e\xc1\xfd\x61\x02\x2a\x81\x8b\xf2\x64\xc1\ \xe3\x51\xb2\xc0\x88\xef\x71\x34\x33\x59\xa0\xb2\x32\x09\x13\xdd\ \x52\x13\x04\x85\x9d\x33\x64\xc5\x85\x3b\x40\x59\x30\x5d\x6c\x84\ \x63\x85\x1b\xd4\x69\x4d\x72\xad\x15\x6a\xdf\xa6\x59\x74\x17\xe3\ \x8c\xe9\x18\x72\x61\x07\xeb\x85\xaa\x3c\x33\x93\x93\x0c\x61\x29\ \x27\x20\xed\x4e\x73\xc5\xe0\x11\xb2\xa7\x9e\x52\xf5\x60\x32\x54\ \xeb\x11\x5e\x72\xa9\x24\xa9\x57\x80\xd9\xad\x6a\xde\x04\x96\x83\ \x6a\x93\x6c\xad\xbc\x0b\x36\xd4\x68\x51\xf9\xf1\x9c\x34\x61\x3b\ \x62\x0d\x89\x24\x82\x01\x4a\x57\x32\xb6\x18\xab\xb1\xd3\xc2\xcc\ \x80\x75\x1b\xce\x26\xb1\x53\x04\x73\xf8\xa4\x86\xa4\x2c\x97\x90\ \xc4\x89\x38\x9f\x2c\x6c\x32\x45\x17\x8d\xa8\x98\x38\xcc\xb0\x23\ \x24\xeb\xe1\x3a\xe3\x85\x6b\x05\x43\xb6\x79\xb6\x43\x9a\xdb\x14\ \xe2\x1c\x79\x75\xf0\xd6\x4f\x9c\xce\xf3\xfc\xd5\xc1\x9e\x89\xe7\ \x12\x71\x8f\x07\x83\x31\x78\x1e\x1e\xdb\x8d\xc8\xe6\x1a\x86\x50\ \x88\x0a\x81\x6f\xd5\xf6\xca\x36\xc2\x4e\x43\xcc\x70\xc1\xc3\xfe\ \x4e\x13\x71\xfa\x1b\x3b\x6f\x77\x8a\xb0\xb3\xf3\xd8\xd9\x70\x7a\ \x41\x7a\x98\x09\x12\x91\x5b\x67\x41\xe9\x14\xd1\xbc\x5c\x9e\x7f\ \xba\x9c\xcd\x4d\x11\x39\xc7\xaf\xf1\xf9\xb1\xdf\x26\x91\x02\xfc\ \x55\x70\xcb\xcd\xe1\x55\x9c\x1a\x55\xfa\xb2\x87\xd9\x10\x39\xc7\ \xb0\x59\xde\x8e\xe7\xdb\xe9\xe1\x25\x3a\x2f\x8c\x31\x5d\x51\x07\ \x23\x97\xc7\x04\x2b\x62\x46\xb2\x94\x05\x69\xf6\xbd\x0d\xfa\x48\ \x1b\x8e\xa3\x4f\x7a\x59\xfb\x04\xcb\x28\x1b\x89\x0e\x6d\xa1\x33\ \x46\x76\xb0\xd3\xc1\xf8\xf9\x22\xdd\x38\xaa\xe8\xcd\xa4\x67\xaa\ \x48\xbb\x57\x69\x66\x30\x87\x82\x2f\x6f\xe5\xb4\x19\x3d\x83\x70\ \xf2\xc1\x30\xeb\x8f\x3f\x64\x0c\x96\x03\x34\x32\xf1\x14\x3d\x9f\ \x85\x06\xbd\x59\xcd\x99\xd8\xf6\x4b\x63\xe3\x46\x54\x95\x24\x3a\ \x76\x83\x99\x6c\xce\x95\x82\x55\x85\xe5\x00\x0a\x8e\xf0\x37\x7d\ \x89\xb2\x00\x0f\x33\x11\x1d\x1f\x4a\xb6\x84\x08\x56\xf2\x36\xb7\ \xb0\xa6\xdd\x11\x6d\xd7\x80\x7c\x93\x45\x8a\x20\xa0\x79\x12\xde\ \x4f\xed\x09\x23\x3f\xd0\x3e\x06\x74\xc1\x88\xc0\xa4\x9d\x46\x0c\ \x51\x4f\x26\x04\x3d\xfb\x31\xc1\x09\xc0\x73\xc4\xf3\x65\x07\xc6\ \x82\xcd\x5f\x2c\x4b\x0c\x8f\xf3\xd2\x9a\x85\xc2\xe3\x72\xfd\x98\ \x48\xd8\x07\x73\x6f\xe2\xb0\xd4\x62\x42\x30\xaa\xb8\x48\x47\xb6\ \x17\x3b\x0c\xe5\xdc\x15\xb3\x00\xca\xd3\xf8\x56\x54\xea\xdd\x74\ \x9d\x40\x89\x98\x17\x81\x66\xa7\xf0\x09\x5e\xd4\xb2\xc0\xc3\x86\ \x5f\x6c\xc3\xd9\x18\x33\x39\x76\x31\xcf\x73\x0c\x93\x4b\x92\x01\ \x3f\x46\x02\x99\x49\xdf\xbe\x65\x4f\x46\x35\x5c\x11\x6e\xa8\x46\ \x9c\xbf\xc7\x76\x2c\x90\xd5\x8a\x86\xa7\xd4\x7a\xb4\x60\xc3\x8a\ \x35\x65\x92\x54\x0e\xf5\x0a\xdb\x71\x74\x20\x46\x63\xe1\x69\xb9\ \x3a\x7f\x5e\x30\xa6\xca\xa4\x6e\x25\x2c\xc5\x79\xb0\x9a\x92\x1a\ \xda\xc2\x60\xa6\x62\x25\xa8\x27\x57\x96\x49\x8c\x6f\x52\x13\xe3\ \x0e\x9d\x12\x23\xd5\x1d\xa1\x52\xf6\xb4\x95\xcb\x60\x5a\xd3\x35\ \xd3\x86\xd6\x0a\x7e\xd0\x42\xc2\xdf\x31\xa8\xcd\xe9\x70\xe1\xbf\ \xb2\x98\x40\x1e\x4f\x19\x46\x36\x10\xe8\xf7\x51\x2a\x89\x98\xbe\ \x1c\x3f\xf4\x2b\xa2\xe1\x21\x92\x35\x91\x08\x38\x5b\x95\x74\x5e\ \xea\x56\x15\xeb\xfe\xc2\x54\x74\x11\xf6\xe0\x1f\x81\xc1\x4e\x68\ \x11\xd5\x49\xc5\x6c\xcd\x38\x7e\x27\x9e\x14\x99\xc1\x15\xbc\x36\ \x9c\xde\xb6\xd0\x1f\x4a\xfe\xcb\xbf\x69\x28\x52\x83\xcf\xb3\x8c\ \x8a\x85\x36\x49\xf8\xf9\xf2\xe8\x69\xaf\x9a\x9e\x46\xf5\x9c\xc3\ \x23\x1b\xc2\xc1\x00\x3a\x32\x53\x3c\x95\x3d\x96\xcb\xf0\x5c\x36\ \x50\x1c\x7b\xd7\x67\xc4\x72\x93\xfc\x4b\xb0\x11\xd0\x3c\x00\x5b\ \xa3\x48\x3e\x7a\xdc\xb5\x7c\x1a\x38\x06\x83\x3a\x22\xc8\xca\xce\ \x9c\xa1\x71\xeb\x9f\xcb\x31\xb1\x8d\xb4\xb8\xce\x8b\x89\x15\x76\ \xf2\xca\x98\x04\x85\xfd\x96\x6c\x11\x14\x34\x2d\xb3\x3c\x3d\x5c\ \xb7\x27\x32\x47\xd1\x25\x20\xae\x27\xd5\x7c\x4a\x2c\xdd\x45\x0f\ \xfb\x1c\x3d\x48\xe3\x0e\xb6\xfa\x4d\x99\xbd\x32\x9b\x9a\x9d\xb1\ \xde\xf6\x8a\x38\xf7\xc1\x1c\xda\x5f\xc6\xbd\xbf\xbf\xdc\x3a\x3b\ \x76\xb2\x8b\xd2\x55\xf7\xca\x47\xe8\x19\xaf\xd4\x2c\x70\x0a\x9f\ \x4b\xea\x29\xc7\x68\x0b\x30\x9a\x70\xe2\x9d\x83\xf5\xe2\x51\x68\ \xee\xa0\xf0\x1d\xa8\x23\xaf\xe8\xe1\xb8\x50\xbd\x5c\xe8\xac\x0d\ \xbf\x27\x3c\x44\xc3\xab\x9c\x53\xf4\xb4\xb6\x20\x92\x1e\x3c\xd0\ \xc6\x20\xe2\x48\x1b\x69\x3b\xb4\xd7\xff\x91\xe2\x50\x1b\x76\x7a\ \xa4\xc6\x77\x0b\xd3\xb1\x6a\xe8\x58\x31\x6b\x96\xef\x0b\x97\x0f\ \xd3\x51\xb9\xf7\xa5\x1f\xa4\x73\xac\x18\xd3\x2b\x84\x0c\x9f\xa3\ \x13\x18\xfa\x68\xbc\xb7\x2e\x85\xf4\xcf\xee\x88\x63\x77\x62\x4a\ \xc1\xc4\x5e\x3d\x15\xcf\xa5\x74\xd7\xb2\x6b\xc4\x47\xe9\x5c\xc0\ \xa3\xc1\x70\x0b\xd6\x70\x69\x08\x61\x4a\x36\xd5\x68\xb9\x10\xa5\ \xa4\x61\x8b\xe5\xde\xc2\x9d\x2c\x07\x14\xe8\xc4\xe1\xfc\x94\xe2\ \x1a\x26\x43\xe4\x5a\x16\x9f\x00\x9a\x7b\x52\xae\x61\xd3\x14\x8b\ \xb6\x51\x77\x98\x54\x5b\xca\x02\xdd\x13\x53\x46\xda\x90\x3a\x6e\ \x94\x3a\x96\x92\xf4\xa5\x34\x13\xc1\x20\xc9\x64\xdc\x48\x09\xb9\ \x58\xbb\x63\x7c\xbf\x87\xeb\x54\x9d\x3b\x59\x7e\x2f\x8d\x1b\xd9\ \x09\xd4\xd4\x1d\x2a\xd6\xd7\xb2\x40\x5f\x09\x2e\x2f\x2c\x9e\x2a\ \xc8\x84\xfa\xcc\xb9\x2e\xf0\xdd\x42\x7d\x1e\xc2\x19\xa3\xb0\x87\ \x1a\xd6\x43\xf1\xc9\x95\xb9\x17\x2a\x12\x88\x71\xec\x27\x56\xd0\ \xba\xaa\x4f\xb7\x8b\xe2\xf7\xd4\x05\x70\x52\x8f\x29\x3f\x87\xbb\ \x6e\x2c\x9f\x2c\x0f\x70\x04\x28\x53\xca\x13\x89\xfa\x12\x11\xd6\ \x8a\x46\x99\xed\x25\x93\xe7\x17\x1c\xe2\x30\x6f\x88\xcd\xb0\xcc\ \x29\x34\x5a\x8b\x0c\xb0\x36\x30\x23\xa7\xcc\xc1\x8e\x29\x1c\x0c\ \x0c\xea\x72\x29\xab\xd8\x08\x4d\xde\x08\x0b\xf5\x7a\x9a\x62\x6d\ \x82\x09\xb3\x85\x66\x73\xa4\x37\x16\xeb\x16\x27\xa2\x15\x9f\xc9\ \x16\xd4\x95\x22\x31\xe1\xa7\x45\xe8\x6d\x60\x4f\x05\x4e\x37\xad\ \xef\x4f\x98\x98\xac\x4d\x1b\x45\x7a\x3c\xbc\x60\xc1\x03\xaa\xa7\ \xa4\x35\xd5\x8a\xae\xa9\xdc\xdf\xd2\x72\x96\xed\x50\x9c\x2c\x75\ \xe4\xe2\x58\xe1\x1a\xe0\xbb\x73\x8c\xfc\x8c\x65\x27\x8a\x0b\xb5\ \x21\x22\xea\x7b\x25\x9e\x1b\x32\x33\x45\x79\x2e\xda\x85\xae\x1d\ \xc2\xda\xfb\x54\xb1\xd6\x4d\x64\x44\xc9\xea\x35\xe3\x53\x3a\x3c\ \x53\xbc\xa9\x8c\x46\x09\xe2\x85\x10\x25\x6b\x13\xf9\x96\x9c\x18\ \x2a\xa9\x70\x74\xa9\x69\xc2\xb2\x52\xda\x84\x99\x5d\x50\x99\xac\ \x08\x51\x78\xe9\x3d\x2f\x0c\xf1\x42\xbc\x13\x90\xf6\x12\x7b\x14\ \x27\x98\x81\xc8\x3e\x6a\xd8\x73\xc5\x9a\xaf\xe2\xf2\x3e\xcb\xd5\ \x70\x8c\x3b\x8e\x2c\x03\x47\x2f\x9c\x99\xc4\xa9\x5b\x64\xd6\x17\ \xb0\xdc\xb6\xc0\xd3\x9d\xc1\xa1\x8e\x99\x29\xd3\x65\x47\x77\xf6\ \x59\x71\x07\xfb\xfd\x00\xdf\xfa\x2d\x3b\x9c\x73\x81\xe3\xe1\xe8\ \x19\x7e\xcc\x7d\x95\x37\xd7\xa8\x8f\xde\xa4\x2d\x53\x68\x72\xb3\ \x76\xea\x18\x5d\xe8\xd0\x51\x12\xae\x3c\x67\xd5\x28\x1d\xde\x3c\ \xce\xe9\xc9\x66\x53\x26\x98\xb7\x73\xec\xd8\xb9\xfd\x18\x17\xa6\ \xdb\x4d\x8c\x14\x3b\x9d\xd0\x4a\xc2\x6f\x29\xc7\x85\x9f\x68\x28\ \x8d\x15\x59\x33\xe3\x99\x95\x47\x53\xeb\x97\xd6\x6b\x77\x04\x67\ \xdf\xc4\x89\x93\xcf\x3d\x60\x93\x98\xf1\xe0\xb3\x53\xdc\x12\xf6\ \xb7\xec\x89\x8c\x24\x85\x78\x92\xa4\x3c\x0c\xcc\xf2\xd9\x8b\x7a\ \x7c\xfa\x3a\x49\xc4\x0e\x04\x71\xe9\xb3\xef\xac\xb1\x04\xbb\x49\ \x58\x6d\xbe\x3f\xef\xf6\x5e\xb6\x23\x8e\x06\xd0\x27\xe9\x99\x89\ \x73\xb3\x30\xc1\xa4\x6d\xa5\xb5\x84\x31\x69\x1b\xd4\xbb\xb0\x34\ \x5b\x4f\x98\x7a\xc6\xe9\x78\xa5\xa0\x0d\x42\xa3\x82\x57\x9e\x4f\ \x49\xd0\x72\x10\x31\xce\xcf\x00\x0f\x41\x7b\x49\x04\xb4\xc5\xcb\ \x20\xb3\x68\xe5\x0b\xcb\xc7\xaf\xa5\x62\xfe\xbc\xe9\x3d\xc7\xa4\ \x6c\x26\x60\xe7\x88\x2b\x49\x53\xc8\xea\x32\xb5\xad\xf7\xe6\x11\ \x8c\x8c\x65\xad\x94\x6e\xcb\x15\x45\x6c\x9b\x22\xe5\xad\x94\x31\ \xab\x65\x72\xe9\x98\x61\x87\xe6\x75\x9a\x72\x5e\x14\xeb\x94\x57\ \x2f\xf2\xb8\x84\xc2\x37\xce\xcd\x7d\xbc\x1e\xd5\x3f\xcf\xcd\x83\ \x66\x6e\xce\x8a\x5d\xc4\x68\x7f\x9c\xd5\x20\x05\xc7\xfa\xb1\x14\ \xb4\x65\x7c\x56\x70\xda\x36\x51\x57\x7b\xb9\x5e\x92\x4c\x60\x5c\ \xc6\x95\xbf\x7d\x6f\x2e\x70\x3a\x1a\x83\xbd\x95\xc8\x5b\xd5\x56\ \x72\x59\x31\x27\x1d\xf8\xc4\x9e\xa2\x58\x96\x9f\xf2\x1d\x75\x51\ \xd0\xa4\x2b\x46\x62\x07\x40\xed\x97\xf0\xb1\x77\x93\x91\xa1\x5b\ \xcc\x0c\x56\xc2\xc9\x0e\xd5\x10\x55\x5b\x74\xfb\x1a\x5b\x07\x46\ \x77\x73\xec\x48\x34\x40\x5a\xab\xb7\x63\x6c\x25\x45\xe0\x1c\x1e\ \xeb\x04\x5f\x1b\xb3\xde\xd7\xe8\x3b\xeb\x6c\x3b\x1a\xca\x13\x3c\ \xe0\x69\xff\xff\x28\x2c\x87\x9f\xfa\x1b\xc1\xb2\xf4\x75\x69\x58\ \x3e\x94\x6c\xc2\x6b\xbc\xd3\x78\xe9\x1d\x9e\x17\xec\x1b\x3a\x9b\ \x0c\x2b\x6d\xb8\x76\x48\x91\x2d\xc3\x58\x94\xbf\x13\x44\xdc\x71\ \xea\x2b\x14\xc7\xf7\x59\x47\xf0\x5c\x67\x7a\x1c\x8b\xab\x67\x5c\ \x27\xd8\xd3\x21\x64\x34\x78\xcb\x9f\xaf\xa7\x47\xd9\x85\x12\xc1\ \xe7\xb7\x07\xbc\x76\x8a\x58\x7a\x73\xa2\x81\x7f\x99\xa2\x34\xb8\ \x75\xed\xe7\xf7\x45\x75\x00\xdb\x04\x15\xf7\x96\x83\x3a\xeb\xe9\ \xd0\x62\xac\x18\xe3\xea\xac\xb3\xd3\xe8\xec\x14\xd9\xa0\xac\x35\ \x43\x4f\xef\xa0\x28\x84\xc5\x28\xc0\xe0\xad\xaf\x20\x9d\x06\x75\ \x7d\x90\x7e\x64\x6d\x2f\x1f\x2b\x6e\xf0\xd0\xb7\x81\x4f\xa8\x6c\ \x0a\x45\x70\xd1\x9b\xf2\xeb\xc4\x94\xd5\xd4\xc7\xd5\xbe\x23\xeb\ \x7d\x9a\xca\x60\xbb\x48\x3d\x2b\xc1\xf6\x3a\x71\xed\x9c\x3b\xc5\ \xf7\x77\x87\x10\xf5\xf4\x01\x23\xaa\x7c\xf5\xe4\xa3\x8d\x29\xdd\ \x36\x6e\x1c\xb1\x3c\x83\xf0\xc3\xe4\x74\xa5\xa8\x87\xb0\x30\x0a\ \xca\x3e\xb5\x22\xc2\xf2\x38\xda\x4a\xe2\xdf\x1e\xc9\x22\xe0\xf2\ \x31\x40\xf4\x59\x5f\xdd\xaf\x94\x19\x3c\x1a\xc1\x8c\xb8\xc2\xba\ \x0e\x31\x0d\x0a\xbd\x8d\x1a\x54\xa0\x13\x5d\xe0\xe6\x14\xdb\xc0\ \x9b\xb6\x12\x39\x60\x6f\xad\x95\xaa\xf9\x9c\xb3\x92\x55\x21\x88\ \xd3\x8f\x5a\xd1\x1a\x58\x19\xc2\xfa\x98\x12\xeb\x85\x66\x25\x4b\ \xcc\x4e\xa1\xd8\xd2\x11\xc7\x32\x16\xfd\x53\x8b\x65\x7e\x69\xf1\ \xe7\x66\x03\x28\x20\xa1\x84\x99\xc8\xc5\x15\x1e\x5a\x1c\x66\x98\ \x77\x47\x40\x14\x34\x1b\x44\xfd\x8a\xc1\xd3\xc6\x29\x2c\x4e\x73\ \xb1\x4d\xd0\xb0\xb0\x79\xf5\x8f\x5c\x11\xc2\x60\x96\x4d\xe3\x39\ \x3c\x49\x51\x2d\xbe\x25\x93\xa4\x60\x46\x74\x87\xd2\x24\xf0\x7f\ \xcc\x70\x67\x0c\x23\x43\x27\xc5\x6d\xdf\xb9\xb9\x58\x50\xe4\x86\ \xe6\xf9\x0f\x25\xcd\xb3\xdc\x99\x75\x29\xd5\x0f\x9b\xe3\x6a\x85\ \x01\xe0\xcf\xed\xac\x82\xb9\x71\xdd\x22\xa6\xd6\x15\xd0\x1f\x74\ \x8a\xab\x65\xbd\x1d\x9a\xde\xcb\x91\xec\xec\x12\x9b\x0b\xdb\x29\ \xc9\xb1\x0b\xcb\x30\xff\x0c\x77\x93\xc8\x17\x2b\x94\xa2\x95\xdb\ \x48\xb0\xb2\x30\xd8\xba\xb8\x3d\x24\x8a\x96\xc2\xc7\x0a\xb0\xfa\ \x7a\x5f\x71\xb0\x9a\xd3\x60\xb5\x84\x2f\xa8\x7c\xb4\xbe\xc9\x47\ \xab\x43\xaf\xf0\x12\xa5\xc6\xbe\x3d\x4b\xf9\xbe\x8d\xb1\x84\x89\ \x97\x3d\x44\xea\x71\x7e\x0d\x82\x78\xaa\xd0\x74\xe2\x59\x64\x83\ \x56\x31\xb0\x61\x14\xbe\xd6\x44\x81\x9a\x8c\xaa\xf5\xd8\x88\x84\ \x23\xea\x34\x8b\x31\x8d\xe4\x7d\x8c\x49\x3e\xdf\x46\x7a\x4d\xa6\ \x5f\x5c\xe1\x86\xd9\x23\x04\x59\x5f\xc9\x90\x6d\xe2\xc9\x27\x19\ \xb6\xd9\x10\x24\xcb\x65\x48\x36\xe9\xe9\x74\x18\x94\xd9\x02\x00\ \xce\x8e\x00\x20\x5c\xa4\xe2\x9f\x62\x16\x24\xe0\xa2\x56\x03\x05\ \x43\x8f\x39\x56\x2a\xe7\x8a\x63\x59\x22\xad\x86\x0d\x0a\x40\x98\ \x5a\x89\x73\x01\xe0\xf0\x64\x9b\x4a\x9d\xf9\x83\x6b\x81\xc1\xed\ \x38\xa8\x12\x87\x6e\xb7\x12\x5a\x24\x34\x6c\x77\xd1\x61\x4b\x1b\ \xf2\xb8\xf0\x90\xc5\x06\x3c\xab\xe8\x80\x2e\x57\x9a\x06\x57\xf9\ \xc5\x86\x3d\x3e\x3c\xac\x4b\xa3\x37\x22\x24\x51\x38\xf2\xe8\x01\ \x8f\x9c\xe7\x3c\xd0\x19\x01\xc9\xca\xa2\x90\xe4\x81\xfe\x3b\x95\ \x10\x7d\x20\x02\x22\x21\xf6\x59\xfa\xd5\xe1\x06\x4a\xb0\x1c\x36\ \x81\x92\x67\x6f\x80\x20\x7d\xe3\x84\xc1\x29\xe2\x09\x39\xae\xa8\ \xe5\x2b\xb3\xc3\xb1\x08\xff\x73\x70\x6e\x63\xc1\xb9\x19\xba\x90\ \x33\x71\xd3\x8e\xa7\x40\xaa\x81\x41\x42\xed\xbf\xc2\xdd\x7c\x73\ \x73\xcc\x2a\xf1\xd8\x1f\xcd\x91\x02\x24\x9c\x5b\x12\x12\x0e\x64\ \xba\x0a\x2d\x1e\x31\x89\xa2\xd0\x87\xe0\xbd\x78\x41\x78\xc5\x77\ \xac\x04\xce\x24\x59\x2f\xa3\x97\xf7\x2c\x58\xdf\x60\xf7\x67\xe1\ \x78\xf3\x58\x5d\x20\x74\x6d\xb2\xa6\xd4\x39\x19\xa9\x94\x99\x75\ \xf8\xa4\xe8\x24\x4c\x3a\x99\xd5\xde\x32\xd8\x6b\x0a\xe6\xf4\xfd\ \x92\xd6\x40\x1c\x00\x92\x42\x0b\x25\x55\x50\x13\x20\xcf\xcf\xbf\ \x27\xca\x8f\x40\xb3\x7e\x2d\x24\xb4\x9c\x47\xce\x4c\xa5\xb0\xa7\ \xe4\x59\x8b\x1e\xa6\x88\xce\x6b\x2c\x64\xf2\x57\xf7\x43\xcd\x0b\ \x51\xd9\x15\xc4\xd6\xd6\x28\x6c\xd1\x23\x25\x52\x29\x23\x25\x2a\ \xf3\x15\x84\x10\xd3\x1d\xc3\xc3\xde\x14\xd6\x5f\x15\x60\x30\x55\ \x12\x06\x6d\x22\xee\x65\xf2\x99\x4f\x6c\x10\xfc\x0d\x06\x94\x05\ \x0d\x38\x0a\x1a\x70\x0a\x68\x60\x20\x6a\x56\x36\x70\x25\x8b\x05\ \xe2\x8c\xb0\x68\x37\x65\x64\x26\xdd\x29\x1a\xcd\x72\x7c\x62\x70\ \x0a\x89\xe1\xd6\x12\x89\x81\xaa\xc3\x3c\xc6\xbe\xc5\xa1\x69\xf3\ \xfc\x34\x17\x61\xa4\x3f\xee\x01\x6e\xf2\x18\x27\x9b\x92\x3c\xd9\ \xa8\xe5\x14\x56\x1c\xbb\x15\x43\xae\x3e\x65\x76\xa3\x81\xcf\xd3\ \xf4\x56\x10\x25\xf1\x68\x94\x4c\xe6\xa8\x6b\x05\x0e\x56\x7e\x52\ \x7d\x98\x2c\x37\x7f\x59\x70\x04\x50\x26\x44\x17\xa2\x0f\xbc\x5d\ \x44\x60\x01\xbe\xc6\x4a\xc2\x17\xdb\x01\x6a\xa3\x65\x19\x5c\xf2\ \x20\x8e\x82\xb3\xd9\x18\x35\x1b\x67\x6f\x8e\x9e\xc6\xa4\xa4\x57\ \x0a\x2e\x40\xce\xc0\x0d\x01\xfb\xfe\x92\x80\x65\x06\x3b\xdd\x4e\ \xb5\xaf\x08\x8d\x46\xfb\x53\xc1\x2d\x83\xe5\x71\xea\x78\xd4\x94\ \x5d\x5b\xcf\x1a\xfb\x2c\x33\xe1\xd3\xb4\x53\xe0\x7d\xd1\x77\x8c\ \x45\xa3\x79\xf5\x1b\x25\xe3\xc0\x0c\x70\xea\xdf\xb2\x7c\xeb\x8b\ \xc6\x9a\x29\x09\x82\x20\xa9\x50\xc1\x26\x61\xac\xc0\x5d\x3d\x78\ \x34\x89\x40\x4d\x78\x3a\x8e\x92\xa8\x94\xfb\xb1\xbd\x29\xf6\x1c\ \xc8\x14\x65\xc9\x17\x9a\xdf\x70\xa4\x3d\x18\x0e\xe4\x58\x5c\xe2\ \x4d\xf1\x65\x5c\x59\xd4\x2e\x0d\x59\x83\x22\x18\x03\x46\x52\x76\ \x0a\x10\xbe\x32\xca\x3e\xdd\x19\xe1\x8a\xa4\x79\x29\x78\x86\x88\ \xc3\x2a\x6c\xcc\x66\x4c\xf1\x18\xad\x19\x32\x8b\xa2\xc3\x33\xad\ \x41\xc8\xe8\x45\xf2\x86\x6b\xc6\x71\x93\x2b\x83\x4a\x19\x9f\x51\ \x01\x26\x68\x74\x32\x00\x8e\x0f\x84\xcf\x17\xab\x31\x42\x51\xdc\ \x63\x0a\xa0\x8c\x52\x65\xfb\xea\x2e\x0d\x54\x32\x83\x31\xda\x69\ \x3a\xff\xa0\x20\x93\x25\x56\x71\xf8\xda\x0a\xe0\x63\xd2\xa6\x04\ \x10\x2f\x8a\x00\x91\x7a\x74\x86\x57\x01\x6b\x7a\xd4\x16\x43\xcd\ \x67\xe1\xce\x58\xda\x4e\x06\x6d\x8f\x17\xed\xa5\x53\x4b\x63\xdc\ \x82\x81\x1c\x04\x77\x22\x00\xae\x99\xb1\xd2\xf4\x52\xec\xb8\x65\ \x24\x93\x26\xbd\x82\xd9\xe5\x3b\x97\x9c\x5c\xcc\x31\xd0\x4b\xc1\ \x2d\xd1\x73\x73\x7b\xb8\x04\x85\x9f\x02\xdf\x67\x0a\xa6\x35\x10\ \x31\x2d\xd9\x63\x8c\xf3\xb8\xa1\x49\x32\x05\x53\x09\x33\xcd\x09\ \x32\xc8\x71\x1d\x83\x9f\xa9\xa2\x8e\xe4\xda\x08\x76\x89\xf3\x88\ \x70\x71\xe7\xf1\xef\x02\xe3\x4d\x59\x76\x22\x6a\x9c\xa9\x92\x43\ \x14\x09\xb4\xf9\xfd\xeb\x0e\xe5\x54\xa7\x1f\x59\xf5\x05\x68\x54\ \x18\x63\x4d\x00\x36\x4c\x72\x52\x11\xa2\xdb\x79\x76\x55\xe1\x82\ \x41\x0d\x95\x53\xef\x87\xd2\x69\x71\x3c\x95\x70\xf3\x45\x11\xd4\ \x52\x08\x04\xad\x66\xc8\x5c\x94\x9b\xa4\x05\x87\x11\xc8\x5a\x57\ \x64\x51\x1c\x94\xed\x22\x25\x54\x72\x40\x21\x6e\x81\x8b\xa9\x47\ \xbb\xf5\xa7\x15\x99\x6c\x69\xf1\x8b\x57\x87\x86\x2b\x42\x74\xaa\ \x28\x8d\x98\x5f\x39\xb1\x8b\xd7\x04\x87\x5c\x20\x72\xb1\xb9\xc4\ \x29\xd2\xcf\xa2\x66\xa0\xf8\xf8\x27\x06\xc7\x9f\x36\x6c\x07\x37\ \x40\x17\x9b\xbb\x2a\x56\x57\xc8\xf2\xa5\x42\x70\x82\x12\x82\x62\ \xe3\x7f\xa3\x20\xbe\x2c\x12\x7a\x36\xe6\xf4\xf5\x50\x65\x4e\x1c\ \x05\xb9\x28\xe7\x0d\x1e\x05\x27\x57\x5f\xc8\x85\xeb\x3a\x57\x1e\ \x54\xb2\x66\x50\x90\x88\x33\x53\x44\x4b\xf5\x29\x98\x9f\x27\xeb\ \xb1\x4f\x3a\x9e\x64\xe4\x2d\xfe\x2a\xff\x9e\x6d\x42\x4e\x73\x93\ \xd9\xc7\x82\x13\xc0\x42\x2e\x4d\xeb\x8b\xe9\xcd\xea\x59\xdb\x8a\ \xe9\xac\x68\x08\x65\x35\xab\xe8\xf0\xec\x9b\x8c\x65\xa7\x41\x3c\ \x26\x4c\x7a\x24\x4a\xcc\xbb\x3c\x40\x3a\x3b\xf1\x2b\x9f\x5f\x3f\ \x37\x97\xce\x71\x79\xfe\xd0\x9b\xd6\x53\xb7\x60\x32\xad\x17\x60\ \xf5\x8b\x7f\x65\xac\xc6\x49\x70\xdf\x25\x7d\x4d\x60\x8a\x96\xf1\ \x50\x2b\xe2\xb6\x2b\x80\xd1\xd5\x81\x34\x46\xfc\xc0\x70\x48\xf3\ \xcf\x09\x50\x34\x4a\x64\xb6\x02\xfe\xba\x04\xea\x56\x87\x33\x1d\ \x6f\xc0\x4d\x3d\xac\x38\x9b\x9d\x60\xe1\xe3\x2d\xc1\x4f\x88\x10\ \x47\x38\xf9\x98\x09\xe6\x60\x5b\x71\x13\x06\xe3\x25\x71\x58\x61\ \x92\xb0\x7a\x76\x76\x90\x61\x9c\xb0\xbd\xa9\x7e\x80\x8b\xf9\xba\ \xf2\xdc\x37\xc8\x73\x4f\x18\xb6\x39\xcd\xe6\x8e\x2c\xc4\x73\xb1\ \xad\x62\x7b\x23\xdd\xe8\x13\x37\xe9\x46\x60\xea\x1b\xed\xdf\x1f\ \x9e\x56\x54\x2c\xbc\x14\x4d\x57\x52\x48\xbe\x34\xed\xa5\x8e\x84\ \xb3\xac\x4d\x39\x5a\x24\x10\x09\x37\x66\x17\xd2\x23\xea\x48\x38\ \x1d\xf6\x00\x15\x97\x31\x5b\x7c\x40\x55\x24\x9c\xa1\x9b\x15\x06\ \x5b\xac\xfa\x82\xa4\x02\xf2\x67\x41\x6d\x92\xd4\x69\x40\x96\x1a\ \x7c\x11\xe3\xaa\x42\x00\x06\x09\xa7\x21\x65\x3a\x8e\xa6\xe2\xe0\ \xb2\xbf\x52\x54\xdd\x2f\xcf\x87\xde\x9d\x65\x7a\xca\x91\xd3\xb4\ \x20\x9d\xd2\x89\x5b\x15\xb6\xa5\x7f\x47\xc9\x26\xf8\xa5\x0f\x61\ \xa7\x86\x1a\xd3\x63\xf2\x95\xed\x22\x0a\xe5\x84\xcc\xba\x34\x62\ \x22\xe8\x0b\x2e\x9c\x2d\x7b\x6d\x70\x6e\x78\x16\xae\x8b\x07\xdc\ \x02\xe4\x09\x73\xda\x74\x2c\x1e\x81\x2a\x96\x37\xdb\xa8\x24\xd6\ \x29\xc4\xbd\xd0\xc0\xbe\x75\x50\x9c\x7a\x02\x96\xde\x94\x5e\xa2\ \x35\xa0\xe6\xd2\x20\x04\xa5\x8c\x7e\x62\xc4\xe8\xc5\xc6\x8e\xca\ \x67\x86\x3d\xe5\x29\xee\x27\x51\x5a\x2b\xdd\x4b\x5e\x11\x84\xc8\ \x86\x85\x59\xd8\x47\x8e\x46\x47\x79\x8b\x11\x42\x47\x49\x4b\xa1\ \x96\x5c\xfe\xd8\xa5\x8c\x7b\x82\x72\xdc\x62\xa3\x16\xd6\x5e\x45\ \x9b\xfa\x53\x7c\x7b\x96\x8d\x65\xd2\x29\xe5\x62\x14\x0d\xa3\x4c\ \xe5\xb3\x86\x1d\xb3\x52\x66\x7c\x41\x7f\x40\x15\x8e\x55\x19\xcb\ \x07\x02\x53\x4b\x34\x4c\x45\x30\x15\x15\xd8\x51\x3b\x0d\x07\x02\ \xd7\xaa\x48\xb8\x16\xf0\x2c\x54\xc8\xd2\x89\xf6\x8a\x2c\x60\x14\ \xb2\x8a\x2f\x9f\x2a\x2a\x17\xf6\x32\x0e\x04\x9a\x13\xa3\xa0\x39\ \x00\x39\xf3\xca\x2c\x5a\x6b\x04\x44\x0b\x2c\xd9\x95\x11\xdc\x9e\ \xc7\x94\x0c\x35\xd2\x19\x9a\xe8\x2f\x9d\x1e\xc8\xc2\xec\x36\x50\ \x39\xb1\x2d\xa1\x26\xaa\x36\x5f\x5c\xb2\x80\x2e\x33\xdb\xfd\x78\ \x74\xab\x04\x7c\x1b\x91\x13\xe2\x91\x2a\x1b\x26\x63\xb9\x46\x26\ \xe7\x18\x5a\xa7\xd6\x9f\x8b\xa7\xcc\x04\x95\x9e\xd4\xd0\xf6\x2e\ \xb7\x60\x69\xe3\x56\x5e\xd9\x86\x59\xf2\xb0\xca\x1e\x8a\x74\x4d\ \x74\xe2\xdf\xdc\xc3\x8e\xb5\x9c\xe4\x51\xa6\x60\x16\x76\x41\x8b\ \xd4\x4c\xeb\x93\x66\x86\x46\x56\xb2\xf4\x64\xd2\x08\x94\xa7\x22\ \x01\x61\x22\x45\x36\x8c\xfd\x5f\x83\x25\x24\xec\x64\x3d\xb3\xc0\ \x9f\x8c\xd6\x43\x9d\x01\x40\xb1\x02\x08\xe0\x4b\xeb\xb3\x66\x3a\ \x97\x96\xcb\x49\x94\x0a\xe9\x95\x81\x99\x9d\xb2\x77\xd0\x30\x9b\ \x99\x92\x60\x56\x67\x1e\xd9\x41\x03\xf3\xdc\x26\x2b\x84\x23\x68\ \x89\x16\x06\x74\x4b\xf7\xbb\xc2\x16\x70\x0b\x7a\x79\x3a\x72\xb6\ \x9f\x98\x65\x55\xdb\x4e\x01\x0b\x9c\x17\x9c\xbb\x6b\x80\xe5\x9a\ \x0a\x58\xad\xa2\x08\x92\x6d\x25\xe0\xe5\x82\x9e\x01\xeb\x67\x1f\ \x69\x61\xb6\xd3\xcd\x2b\xb4\x9d\x42\xc6\x50\x5b\x7f\xc1\x5a\xa1\ \x52\x5d\x96\x15\x41\xa8\x51\xf1\x2f\xa8\x63\x5f\xb9\x22\x9e\x16\ \xf5\xf0\x0b\xc8\xc0\xd7\x95\x8d\x80\x03\x11\xd0\xab\x55\xb0\x95\ \x61\x89\xa8\xf4\x7e\x74\x49\xd7\x81\x40\xd8\xb9\x30\x84\x45\xd4\ \x9b\x2a\x7b\x12\x84\xef\x95\x51\x74\x6b\x16\x84\x72\x81\xe5\x2e\ \x8e\xc8\x57\x62\xa9\x17\x42\x64\xf1\x85\x56\xd9\x09\xea\x22\xba\ \x03\x81\xad\x7d\x21\xd8\x8a\x2c\x71\x54\x71\x55\x14\xa3\x1e\x08\ \x7c\x5d\x0b\xc0\xb7\xc0\xe2\xce\xfe\xd9\xf2\x2b\x26\xc9\x04\x82\ \xd1\x42\x45\xe4\x43\x13\xe8\x51\x4d\x40\x14\x88\x2d\x98\x7e\xc9\ \x97\x84\xf4\x52\x67\x54\x2a\xcc\x27\x17\x81\xb9\x34\x28\x8b\x17\ \x9c\x96\xae\x40\x96\xab\x20\x29\xce\x2f\xd3\x11\xf1\x53\x16\x5f\ \x57\xc5\x60\x82\xc5\xff\x6c\xbb\xf1\x3c\x8f\x8f\xc9\xa7\xa1\xcf\ \x63\xda\x37\x25\x21\x4e\x95\xce\xed\x96\x41\x4e\x81\x29\x62\xe0\ \x1d\xa4\xac\xae\x3f\x65\x38\xf4\x07\xea\xed\xdb\x9a\xb1\x97\xde\ \x83\x88\xca\x5a\x95\xdc\x8d\x0e\x2a\xd1\x62\xd3\x2d\x24\x18\x54\ \xa2\x8c\x25\x36\x22\xca\x21\x24\x8d\x07\xd4\x5d\xac\x15\x64\xfb\ \x45\xca\x0b\x2a\x9d\x12\x98\x90\xa1\xfb\x11\xa5\x34\xdd\x81\x0b\ \x14\xbc\x70\x48\x49\xbd\x2f\x44\x78\xce\x59\x22\xdf\x93\x99\xf6\ \x44\x9a\x98\x79\x78\x6b\x5b\x11\x2d\x4f\xaf\x61\xb4\xe3\xb4\xf4\ \x84\xd2\x0a\x4f\x5d\x80\xad\xa3\x80\x28\x3a\xcc\x7e\xb0\xc6\x75\ \xc0\xec\x29\xd5\xa6\x5e\x17\x61\x53\xa7\x31\x67\xc1\xaa\x60\x82\ \x83\xfb\xfb\x1b\x22\x82\xc4\x69\x83\xee\xcf\x95\x76\x53\x1d\x04\ \x0e\xca\x35\xd6\x83\x38\x28\xd1\x46\x57\xf9\x15\x06\x11\x1b\xa5\ \x0c\x24\x79\xb6\xf1\x2e\xbc\x95\xca\x67\x84\x24\x46\x82\x99\x66\ \xa1\x4f\xac\x5c\x10\x67\x81\x14\x6d\xda\x4a\x18\xd1\x18\xbb\xb4\ \xac\x9a\x10\x76\xb6\x4e\x0e\x25\x70\x0a\xfc\x65\xba\x87\x2c\xeb\ \x89\x96\x0c\x4e\x27\x5c\x37\xe2\xef\x31\x0c\x02\xae\x12\x35\xa7\ \xca\x80\x67\x74\x78\x0f\xf2\xa4\x15\x4b\x48\x70\x4f\xe1\xca\x52\ \x6a\x48\x3e\x7a\x10\x53\x2a\xe6\xdf\xa9\xb7\x35\x1c\xcc\x0e\x8c\ \x71\xd5\x74\x03\x33\x54\xef\x89\x28\x7d\xc3\x86\x2a\x28\x60\x44\ \xf8\x6e\x32\x15\x06\x05\xd4\x44\xb1\x58\x8c\xef\x88\x79\xbb\x1d\ \x4d\x9a\x55\x98\x28\x00\xe6\xa9\x92\x80\x51\xd7\x7d\x97\x97\x60\ \xa5\x40\x67\xff\x06\x12\xd6\x73\x0a\x44\x61\x4a\x35\x22\xf1\x3a\ \x37\x97\xfd\x33\x25\xae\xff\xed\x6f\x1a\xf7\x07\x9f\xd6\xde\x73\ \x70\x98\x3e\x88\xf4\x76\x32\x42\xdc\x08\xb9\xe8\x53\x92\x5f\xdc\ \xcc\x72\x1c\x32\xdd\x95\xbe\x3b\x23\x50\xe4\x0c\x6e\x83\x89\xa4\ \x70\x10\x5b\x34\xd4\xe1\x89\x79\x5e\x90\x46\x4f\x0e\x12\xe7\xc5\ \x2d\xa4\x77\x02\x86\x55\xd6\xca\x22\xe2\xad\x8c\x8f\xdd\x84\x31\ \x6d\xea\xae\x67\xc4\xa8\x14\x52\x54\xcd\x90\x7f\xb6\x9d\xd8\x86\ \x5e\x1c\x96\x93\x22\x60\xc1\x03\xee\x32\xf1\x22\x2a\xf1\x13\x65\ \xd6\x78\x14\x56\x1c\x46\x91\x7d\xb8\x5a\x71\x21\xb1\xe3\x57\x2b\ \xca\xe6\x6c\xf8\x0c\x84\x0b\x02\x33\x2d\x28\xe3\xd8\x23\xd3\xb9\ \x57\xde\x58\x44\xa6\x60\x01\x23\x37\x7c\x0b\x4f\x3c\x28\xdc\xaf\ \x5f\x2a\x76\xfe\x16\x2a\x88\xa6\x8a\xe3\xea\xcf\x55\x36\xf4\xb1\ \xbf\x18\xd2\x0e\x5e\x92\xee\x2c\x03\x45\x07\x21\x36\xfb\x4a\x4a\ \x57\xb0\x69\x94\x59\xd3\x61\x1b\xb4\xc0\xa1\x48\x86\x42\x1d\x10\ \x2d\x26\xf1\xc4\xef\x53\x5c\x3d\xb2\xeb\x12\x7c\x71\xad\x92\x40\ \x81\x80\xa8\xa3\xd3\xc8\x48\x59\x92\x30\x2a\x30\x12\x25\x09\x0f\ \x04\xc6\x16\x05\x8c\x0b\x4b\x48\x55\x11\xa9\x2a\x0f\x5a\x62\x11\ \x69\xf1\xf0\xc7\x15\x45\xc2\x1f\xf2\x6d\x25\x2a\xcf\x82\xd2\x7b\ \x3b\xee\xeb\x77\x38\xb7\xb0\x90\x07\x4b\x63\xd0\xfc\x9c\xff\x9b\ \x9c\xea\x49\x06\xae\xdd\x62\xd7\x63\xcb\x3c\x32\x18\x00\xdf\x9c\ \xcc\x48\xde\x88\xd6\xda\xbe\x9a\x5e\x1a\x91\x31\x26\xd1\xec\x68\ \xd3\xf0\x63\xd6\x72\x4c\xf6\xb1\xcb\xbf\xe7\x26\xcc\x14\xaa\x2a\ \x6d\x83\x94\xba\xb3\xf8\x98\x20\x54\xd1\x71\xce\xd2\x22\x4a\x72\ \x00\x26\x18\x51\xa2\x27\xa0\x65\x0f\x22\xa2\x14\xa8\xc3\x73\xd2\ \x74\x47\xa1\x14\x52\x62\x65\x3e\x76\xa9\x51\xa5\x9b\x23\x88\x91\ \x5d\x20\x28\x26\xe7\x6f\x28\x8b\xa2\x15\x7a\x77\xcc\x38\x31\x15\ \x34\xb4\x0e\x69\xc1\xbf\xf4\x29\x7c\xfd\xb8\x7c\xe5\x14\xeb\xd9\ \x17\x1f\xe2\x30\x3c\xda\x72\x56\x42\xc1\x48\x00\x05\x6c\x7b\x9a\ \x6d\x59\xae\xec\xd6\x6a\x83\x3e\x51\xad\xd3\xba\xda\xb8\x70\xc3\ \x63\x71\xf1\x52\xa4\x98\xa1\xf5\xb2\x5a\xf3\x10\x4e\x12\x91\x0c\ \x2a\x8e\x62\xf5\x21\x2d\xe7\x10\x1d\x75\x64\x24\x10\x72\x77\x72\ \xe8\xb8\xd2\xd3\x6f\x70\xb7\x91\x61\xa7\x9d\x32\x77\xcb\xe8\x44\ \x9c\x7f\xc9\x92\x8f\xb2\xe5\x9c\xe3\x37\x58\x97\xbe\x29\x70\x73\ \x10\x3a\x3b\xa9\xc7\x43\xbb\x9a\x73\xb1\x57\x68\x6b\x60\x31\xc0\ \xf3\xa8\xde\xf9\x35\x00\x25\x9b\xfd\xc1\xcd\x81\xe1\xcd\x6f\xc5\ \x37\xb9\x6d\x5f\x70\xe2\xf9\x14\x4d\x3a\x97\xb6\x1d\x3d\x62\x77\ \xe0\x15\x65\xa1\x61\xa1\x3d\xd1\xc5\x76\x4e\x8a\x6a\x8a\xe0\xae\ \x49\xfa\x4d\x3c\x34\xf1\x1d\x0b\x4d\x5c\xb1\x8b\x39\xb4\xe7\x57\ \x67\x65\x16\x31\x6f\xfa\xf1\x92\x77\xba\x14\xce\x5c\xfe\x2d\x8b\ \x27\xcc\x96\x43\x02\x11\x55\x23\xaa\x79\x39\x59\xd0\x2b\xe5\x39\ \x7f\xaa\x6a\x38\x75\xd1\x4e\xb4\xde\x39\x56\x86\x6b\xc1\x12\xaa\ \x72\xe2\xe6\x3a\xbf\x9b\xe2\x00\xe2\xe6\xb9\x6c\xb6\xb4\xb8\x79\ \xd4\x46\x8d\x70\xc6\xf9\x00\x36\x6a\x94\x54\x8f\xa8\x72\xbf\xc3\ \x3a\xbf\xb4\xb1\x8f\x57\x8c\x5d\x6e\x4d\xa2\x41\xd8\x5d\x64\x29\ \x92\xf3\x78\xf2\x40\x25\x6f\x20\x52\x31\x6d\xa5\x72\x69\xe3\xe0\ \x64\xee\x7b\xcb\x02\xf8\x2f\x2f\x71\x47\x8b\x4c\xf8\x15\x90\xb5\ \x97\x97\x31\xfd\xbf\x8c\xa4\xdd\x1a\x3d\xe1\x57\x44\xc6\xfe\xa6\ \xc4\x19\xcb\xee\x63\x9e\xcf\xd3\xf4\x16\xdc\x3f\x68\x41\x48\xde\ \xbf\xdc\x51\x0b\x07\x43\x4e\x7b\xa3\xb1\xeb\x1d\xcf\x90\x07\xec\ \x8a\x3d\xfe\x41\xaa\x52\x1c\xcf\xd0\x16\x3e\x9b\xa1\x38\xbd\x45\ \x45\x36\xa3\xb1\x7f\x70\xfa\xed\xcc\xe8\xf9\x1e\x80\x66\x53\xed\ \xcf\xf1\xad\x7e\x3a\x72\x3b\x52\x84\x48\x03\x85\x13\x22\xfd\xbc\ \x9d\x2d\x41\xb8\x4c\x86\x10\xe3\x64\xed\x00\x50\x7f\x2e\x05\x88\ \x56\x9e\xab\x1b\xb5\x9f\x59\x0d\x84\xf0\xc8\x0a\xd1\xea\x07\x70\ \xd8\xf7\x03\xc4\xc4\x9a\x93\x0c\x9a\x19\xd4\xcd\x89\x48\x54\x7a\ \x40\x0e\x98\x31\x2b\xa3\xc7\xe3\xa6\x1a\x50\x55\x21\x71\xa1\x17\ \x25\x83\xfd\x54\x00\xd0\x28\x57\xef\x44\x25\x30\x61\x4f\x67\x21\ \x9f\x20\xec\x91\x95\x77\x56\x29\x0f\x98\xaa\x50\x24\xdc\x2b\x7e\ \x56\x29\x06\x3c\x29\x80\x78\x68\x69\x41\x5e\xb1\x07\x5d\x48\xff\ \x96\x99\x42\xc0\xc4\xa9\x7a\x41\x7f\xb9\xd0\xb3\xa6\xbd\x88\xf3\ \xfd\x68\xd9\x71\x2b\x51\x9f\xab\x27\x9f\xa0\xcb\x2e\x12\x15\x95\ \x99\xe1\x5b\xea\xe5\xb3\x1f\x86\xc6\xac\x5c\x26\x51\x30\xbb\x8c\ \x01\xc6\xa2\xe4\x68\x77\x6a\xad\x66\xd2\x67\x25\x7e\x14\x2e\xdd\ \x19\x04\x6d\x12\xf0\x2d\x78\xe6\xe1\x63\x20\x8e\xc6\xe3\x9f\x59\ \x04\xc5\x21\xfe\x71\x0a\xfe\x99\xb5\xf5\xe3\xae\xee\x9a\x8e\x5b\ \x70\xfc\xec\x34\x79\xd0\x8b\x4e\x4d\x7a\xbc\xb0\x90\xcb\x29\xce\ \x30\xa4\x82\x73\x96\x14\x56\xe4\x2e\x74\xbc\x8a\xb4\x97\x68\x7c\ \x46\xcf\xf2\xcd\x66\x81\x73\x59\x5d\xb6\x45\x0a\xf4\xb3\x19\x2f\ \x3c\x24\x45\x61\x30\x97\x7a\x52\x36\xbd\x36\xc5\xc2\x59\xd2\x39\ \x4b\x45\x40\x13\xb6\xc9\x8e\xe5\x8e\xb3\x43\xb3\x35\xe9\xcc\xec\ \x8d\x96\x95\x32\xf4\x8c\x22\x32\x54\xea\xb0\x43\x7c\x6d\x24\xcb\ \xb0\xd8\x80\x43\x85\x47\x20\x96\x73\x1c\xf8\x30\x92\x7f\x2c\x24\ \x29\x4f\x28\x36\xe2\xb0\x4a\x02\xd1\x5b\x70\x6c\xd4\x84\x16\x97\ \xc6\x85\x47\x2a\x37\x42\xaf\x93\x56\x46\x75\xac\xf2\xf2\x00\xc8\ \xfe\x9e\xb9\x40\x40\xc6\x3f\x58\x79\x22\x9f\x35\x38\x68\xd4\x39\ \x08\xf6\x55\x2b\xe8\xc8\x7b\xbe\x0a\xe9\x81\x3e\x55\xd7\x4f\xd3\ \xf0\xf4\x5e\x23\x5e\x8f\x37\x5c\xa0\x39\xc2\x87\xa2\x88\x7b\xce\ \x58\x39\x81\xb0\x38\xd8\x99\xb7\xfe\xed\x80\xfe\xf5\x4c\xec\xd6\ \x60\xff\xd4\xdd\x27\xa5\xdf\xd8\x66\xc7\xfd\x64\xa5\x5f\xdb\xd6\ \x23\x0e\x4d\x89\xe3\x8d\x88\x69\xd3\x49\xeb\x6e\x7c\x8a\x1e\x7c\ \x49\xcf\xbf\xa5\x3a\x12\xde\x81\xf2\x9f\x04\xa1\x3b\xa7\xc7\xdd\ \xfd\x2b\x15\x13\xb9\x10\xc8\x86\x6d\xb3\x31\xbd\xdb\xa3\x12\x78\ \xf5\x9f\xb8\xd5\x34\x0e\x22\x5f\x36\x8c\xfc\x43\x87\x13\xe8\xcc\ \x05\x2f\x66\x2e\x38\x9c\xd8\xdf\xaa\xd4\x63\xdb\xf4\x66\xba\x78\ \x1c\x6b\xc7\x68\x41\x19\x40\x9d\x03\xc1\x14\x43\x7d\xaf\xe3\xcf\ \xf4\xe2\x29\x05\x98\xa7\x71\x30\x55\x17\xaf\x8a\xab\x50\x83\x17\ \xc7\x0f\xe3\xef\xfe\xf0\x4d\xbd\xd4\x2e\x35\xe4\x8b\xa5\x42\x63\ \x4c\x91\x41\x8c\xd9\x59\x84\xdd\x18\xe7\xa3\x83\x91\x92\x8d\x31\ \xb3\x69\x4f\xb8\xab\xef\xc1\x66\x01\xd1\x42\x38\xe7\x50\x69\x53\ \xda\xf0\xaf\xdf\x6a\xe9\xd5\x33\x19\x58\x9d\x24\xc8\x20\xff\x0a\ \x2e\xb9\x2c\x71\x2e\xa3\xa7\xd9\x45\x5c\x21\x60\x87\x01\x58\xf9\ \x04\xd7\x16\x18\x80\x92\x18\x75\x0e\x5b\x3c\x70\xb3\x24\x58\x21\ \x28\x9f\x80\xad\x2b\x57\xe9\x35\x83\xb8\x1f\xa1\x65\xce\x4c\xcc\ \xee\x6f\x01\xae\xb5\xb4\x98\x39\xc9\x8e\x42\xa1\x0b\xa4\xe4\x85\ \x11\x1e\x16\x96\xef\x88\x64\x49\x4f\xbf\xce\xb4\x05\xa5\x48\x96\ \x83\x17\xe6\x0b\x19\xb4\x16\x6e\x4f\x27\x91\xe2\x5b\x3c\xe1\xde\ \x82\x56\xa4\x6f\x33\xb7\x78\x40\x9f\x3e\x98\x01\x88\xc0\x1e\x8e\ \xb1\x6d\x2a\x56\x96\x1e\x0e\x0f\x20\xb7\xcc\x59\x59\x98\x45\x12\ \xdf\xa6\x8c\xa4\x0b\x1f\x28\x47\xb7\xcc\xe1\xb5\x5a\xfb\x5b\x14\ \xd3\x39\x4b\x39\x9d\x5c\x60\x32\x85\xe0\x4b\xd3\xf3\x03\x24\x02\ \xac\x9c\x0a\x2a\xc5\xd0\x59\xe5\xd5\x6e\x7e\x29\x52\x31\xac\xcd\ \xf1\x5f\x7c\x65\x48\x0d\x12\x4b\x31\x15\x15\xa8\x5d\x02\x54\x7e\ \xa3\x2f\x15\x93\x98\xf8\x83\xcf\xfb\xf9\xf5\xbf\x0b\x41\x3f\x0c\ \x36\x82\x21\x45\x6c\xfc\x57\x21\x32\x44\x7a\x81\x71\x51\x26\x24\ \x3a\xe6\x25\x99\x28\x5b\x16\xc7\x8c\x64\x52\x79\x3c\xb1\xd7\x11\ \x57\x7f\x83\x60\x03\x98\x8c\x84\x02\x8a\x69\xe5\xf2\x05\xa9\x2f\ \xe3\xc9\x0e\x76\x17\x18\x3b\x31\x7a\x3e\xc4\x20\xc1\x88\xbe\x6a\ \x3d\x54\x57\xea\xad\x1e\x09\x11\x1f\x65\x70\x9d\xde\x70\x08\x12\ \x99\xa2\x54\xc2\xb0\x7f\xcd\x5e\x68\x12\x47\x83\xcd\xc9\x8e\x03\ \xca\x4b\x3b\xaa\xbb\x25\xcd\x54\x3b\xaa\xdb\x8e\x61\x77\xab\x94\ \xd3\x3a\xbc\x20\x28\xe3\x19\x6c\xf2\xe9\x13\xfe\x3e\x6d\x21\x98\ \x58\xc8\x40\x23\xfb\x10\x69\x96\x37\xc2\xd1\x13\x76\x1e\xcf\x5b\ \xb7\x70\xc7\x35\x38\x90\xb1\xbc\xb6\xcf\xb0\x2d\xc5\x88\x6f\x28\ \x32\x62\xb0\x6c\xd7\xc4\x94\x4c\xb0\xb8\x5b\xe8\x0c\x61\xc0\xf8\ \x30\xf9\x47\x7f\x67\xc0\xf5\x08\x5a\xd7\xad\x12\xc9\xfb\x6a\xb1\ \xc3\x87\x9a\x57\xf5\xe6\xd1\xd2\xa1\xc0\x67\xac\x4c\xbb\x30\x82\ \x5b\x91\xb2\x55\x1a\xb1\x3b\x40\x40\xf2\x95\x9c\xb6\xaf\x56\x08\ \xdb\x52\x17\x52\x16\x1e\x14\x87\xfa\x50\xd0\xfd\x7d\x11\x0a\xe7\ \x62\x89\xdd\xc5\x8d\x8d\x36\x11\xc7\x5f\x06\x89\x51\x75\xe6\xda\ \x09\x92\xcc\x67\x24\xce\x9e\x61\x44\xbe\x90\x99\xe1\xe3\xac\x1b\ \xad\x22\xcf\x80\x60\xb2\x9e\x1b\x17\x27\xa0\x22\x00\x5a\x86\x6f\ \x80\x98\x43\xc6\x85\x0a\x7f\x1f\xf5\x66\xe5\x48\xf3\x92\x6f\x86\ \x12\x82\xa1\x5b\x12\x12\xbe\xa0\xca\x78\x86\x92\x45\xfc\xbb\x9b\ \x1c\x89\x19\x1d\x4e\xc7\x49\x5e\xdf\xee\x9b\x5b\xad\x01\xd5\xe1\ \x7b\x05\xb2\xda\xf0\xe7\xdd\x13\x98\x77\x37\x13\x71\xd4\x81\xa2\ \x5b\xbb\x81\xe8\x93\x49\x03\xaf\x41\xa7\x5c\xea\x00\xc5\xa0\x02\ \x61\x1e\x02\x53\x1f\x6a\xf2\x09\xcb\xf0\x4c\x05\xbd\x25\x2e\x41\ \x4a\xbf\x96\xf3\x55\xe2\x5a\xce\x0c\x2d\xe2\x0d\x5f\xc9\x19\x1a\ \xb0\x11\x73\xaf\x39\xe6\x57\x7a\x5d\x54\x52\x60\x95\x4f\x27\xd0\ \x32\x30\x03\x5a\xbf\x0a\xe7\xa3\x78\x5c\xc3\x1b\x7e\xd7\xe0\x4d\ \xba\x29\xb4\x73\xd8\xc2\xb1\xbb\x66\xd7\x48\xf7\xcc\x2e\x5d\x37\ \xb5\x66\x43\x4f\xca\xd4\x1d\xc3\xe9\x5e\xd7\x09\x1f\x68\x77\xf5\ \x9b\x8d\x54\x36\x70\x45\xa2\xdf\x5f\xa1\xb5\xac\xea\xf7\x30\xec\ \x97\x93\x63\x49\x3d\x0f\x84\x6c\xaf\xa2\x3d\x0f\x70\x4b\xab\x48\ \xcf\xaf\x86\xb6\x74\xee\xec\x36\xe1\x38\x0a\x25\xda\x1b\x7e\xe7\ \xf5\xb6\x64\x5d\xca\xdc\x40\x19\x7d\x5d\x27\xbc\x51\xf5\x73\x34\ \x38\x86\x8c\xfc\x4d\xdc\x35\x46\x23\x66\xc1\xfb\x5b\x96\xd0\x16\ \x5a\xaf\x05\x32\x8a\xdf\xfa\x12\xee\x63\x85\x27\x1a\x13\x78\x91\ \x14\xd3\x60\x1a\x59\x8f\x94\x94\x10\xa4\xef\xf5\x78\x48\xc2\x48\ \xea\x34\x71\xbc\x5e\x9b\x4b\x50\xf2\x55\xa3\xee\x41\x1e\xd9\xf0\ \x8f\xd7\x6c\xe1\x72\x82\x55\x5e\x71\x6d\xe1\x2f\x76\xff\x2c\xde\ \x87\x4d\x4d\x54\x23\x61\xf2\xdb\x5e\x0f\x19\xcc\xa4\xcc\x8c\xd1\ \x0b\x44\xdb\x67\xea\x29\x6b\x12\x7b\x3f\x04\x80\x16\xfd\x07\x7b\ \xa9\x5a\x41\x6f\x59\x44\x88\xb6\xe8\x66\x26\x70\x8d\xe0\x0a\x8c\ \x75\x51\x9a\x46\x79\x2f\xb5\x19\x30\x53\x86\xaa\x4d\x3d\xde\x96\ \x8d\x86\x91\xf4\x34\x9d\xaa\xea\xe9\xc3\xe1\xe9\x51\x12\xba\xb2\ \xd9\xd7\xae\x2b\x46\xd9\xdd\xc5\xaa\xa6\xf4\x96\xc2\x15\x44\xdc\ \x8d\xee\xdb\x29\xd5\x2b\xe8\x15\x7e\x4e\xd4\x68\xf2\x4d\xde\xc1\ \x5b\xbb\xab\x56\x6c\x37\x8d\x19\x55\xbb\x65\x58\x8c\xe2\xeb\x05\ \x07\x75\x02\x95\x90\x22\xd4\xe5\x0f\x5f\xd7\xa5\xa1\x1c\x33\x94\ \x10\x5c\x4f\xb6\xa1\x1e\x4b\xca\x58\x25\x62\x47\x82\x7f\x9f\x83\ \xce\x0d\xb1\x79\xee\xe8\xd3\x51\x27\xb9\x5e\xb6\xf9\x13\xcc\x68\ \x4a\x73\x79\xce\x02\x41\x82\x8d\x3b\x60\x1d\xc6\x51\x6f\x4d\xa1\ \xbd\x4c\x69\x6a\x1f\xe8\xee\xe9\x40\xc1\x01\x0b\xcf\xc7\xbd\x7a\ \x12\x06\xcb\x99\xde\x5c\xce\xe9\xa1\xfb\x17\x58\xa4\x37\x49\xaf\ \xa3\x9e\xd2\x1d\xb0\xfb\x8c\x8c\xa6\xe7\x5c\x0b\xa6\x69\xc6\xc1\ \xa4\xca\x6b\x0e\x08\xea\x44\x47\xfd\x0e\x2b\x97\x4a\x68\x79\x2b\ \x07\x56\xe2\x1e\x03\x2f\x9d\x33\xf0\x8c\x14\xcd\x74\xcf\x54\x61\ \xe3\xbd\x88\x0d\x11\x00\x66\xe6\xa8\x08\xe7\xab\x23\x09\x13\xc8\ \x19\xec\xf6\x33\xdf\xc9\x64\x07\xae\xb3\x35\x11\x9a\x8d\x62\x60\ \x3b\x11\xf7\x40\x87\xe7\xce\x92\xac\x2c\xf2\x15\xe7\x67\xaf\x4c\ \x16\xcc\xbf\xaf\x47\xcb\x18\x33\x72\x0a\x73\x22\x47\xaf\x54\xa3\ \xde\xab\x3e\xad\x9b\x29\xea\x28\xaa\xe6\x0d\x13\xcc\xa4\x2c\x3d\ \x11\x35\x71\x7a\x0b\xd5\x00\xfc\xeb\x27\xbd\x30\xa5\x7e\x32\x56\ \xe8\xc3\xfa\xc1\x92\x9e\xf1\xf1\xc1\x4d\xc3\x9e\x63\xaa\xea\x6f\ \x39\xb9\x87\x88\xc0\x26\x33\x86\x14\x08\xf3\xe3\x38\x3d\x31\x2b\ \xe7\xf2\xb9\xa8\xba\x6b\x04\xf0\xa6\x39\x6d\xcf\xfb\xdc\xd8\x93\ \x98\xa6\x95\x69\x09\x55\x93\xb5\xde\xe5\x92\xc1\x0d\x1e\xe2\x5b\ \xbc\x72\x12\x4d\x83\x55\xb0\x34\x3a\x7e\xeb\x9b\x00\x87\x8b\x2b\ \x28\x91\xca\x5a\x57\x75\xe8\xa9\xc9\x95\x6a\xc8\xc6\x81\xed\xc7\ \x60\x5a\x83\x64\xcc\xe7\xdc\x8d\x63\xfd\x3d\xe7\xa8\x85\xc4\x42\ \x37\x37\x16\xca\x2f\x71\x8d\xb4\x24\x52\xf0\x12\x69\x25\x43\x1f\ \x03\xe2\xcb\x22\xa6\x67\x22\xb5\xf0\x4a\x27\xf0\xa7\xfc\x98\xec\ \x46\xdb\xd0\xf7\x64\x2d\x30\x7a\x55\x5d\x68\xd1\x5d\x84\xbc\x8d\ \x46\xbf\x23\xe6\x71\x14\x76\xd5\x83\xfb\xf9\xfa\xc1\x88\x67\x54\ \x15\x8a\x80\xf8\x3a\xae\xb7\x67\x68\xc8\x0b\x70\xa8\xfa\x3a\x14\ \x68\x73\x04\xaf\x60\x1f\x84\xbf\xdb\x68\x7f\x3e\x29\xf4\x8e\x0c\ \x4f\x0c\x0e\x6f\xeb\x57\x35\x2c\xff\x7a\xf2\x82\x59\xf4\x4a\x81\ \x6a\xff\x9c\x69\x07\x6d\x34\x99\x37\x1a\xd9\x2d\xa8\x9a\xe3\xe6\ \xd5\x8c\x11\xd5\x55\xe1\x55\xc3\xa2\x2b\x57\x5c\x36\x1c\xee\x6a\ \x0d\x88\x13\x56\x74\x17\xbc\xb7\xd8\x21\x6c\x3f\x9b\xc3\xdf\xd3\ \x84\xc1\x45\xcc\x65\xf0\x15\x75\xef\x94\x11\xdf\x83\x26\x7d\x2e\ \x9b\xa0\xc7\x68\xa9\x89\xb5\x1f\x95\x13\xab\x5d\x91\x94\x6d\x6f\ \xca\xd0\x95\x98\x5a\x16\x6c\x41\xfc\x94\x95\xc5\x23\xc7\xf2\x04\ \x69\x2f\xda\x48\xce\xcd\xe6\x94\x74\x58\xd8\x19\xd3\xc9\x59\xd4\ \x53\x41\xfe\xa9\x67\x9d\x65\x53\x96\xb2\xab\x5a\x0c\x07\xcb\x26\ \x40\x25\x35\x47\xd4\x93\x1e\xf3\x8a\xa4\x6d\x59\xf7\xf7\x5a\xa9\ \x94\x9e\x75\x94\x8d\x8e\x06\xaa\xb4\xb8\xcd\x65\x2b\x9b\x37\x8a\ \xe6\xd4\xe9\x57\x75\x71\xa4\xfa\x66\x74\xaf\x83\x1a\x7e\x2b\xba\ \xaa\xed\x8a\x82\x00\xbd\x4d\x44\x40\x7e\x14\x48\x94\x52\x57\xc0\ \x4e\xe3\xb7\x73\x52\xd5\x30\x9a\x77\xa7\xd4\x0c\xd7\x51\xa4\xd7\ \x2c\x8f\x3f\x24\x50\x32\x05\x51\x7b\x84\xd4\x3b\x4c\x38\x97\xb0\ \xe2\x11\xb8\x6e\xc4\x11\xb2\x21\x5b\x0e\x96\x26\x9b\x8f\x7e\x3c\ \xc7\x36\xd9\x7b\x8f\x2f\xee\x55\x93\xcf\x71\x5c\xa7\x0d\x42\xab\ \xcd\x92\x4e\xe3\x71\x1a\x5f\xf2\xf4\x0d\x8e\x8f\x0e\xf5\xec\x62\ \x11\x18\xb5\xd9\x49\x0b\x64\x63\x68\x14\xe6\x82\x9c\xd0\x67\xc4\ \x72\x4a\x95\xa5\x61\x1b\x76\xed\x15\x43\xdc\x00\x4a\xaf\x5e\x94\ \x5f\xf0\xce\xd7\xa7\x7d\x46\x92\x96\xe5\x0c\x6c\x1b\xee\x9d\x18\ \x1c\x19\x56\xcb\xbe\x71\x9c\x37\xbb\xc5\x2c\x1d\x80\xa1\xa1\xcf\ \x48\x19\xae\xa1\x0d\x99\x19\x25\xf4\x0f\x47\x9a\x1d\xe2\x0a\x43\ \x3f\x74\x10\x27\xac\x26\x36\x18\x64\x61\x86\x90\xce\x23\xd8\x41\ \x43\xf1\x4c\x50\x50\x82\xf6\x83\xf1\x3d\xd9\x84\x94\x83\x3b\xe2\ \x0a\x51\x16\x3e\xd1\x79\xef\x6c\x2b\x66\xc2\xbb\x85\x90\xd5\xd0\ \x0a\x57\x9f\x1d\xab\xc0\x23\x80\x52\x5e\xe9\xec\x3e\x0b\xed\x1c\ \x5a\xe3\x0f\x76\xdf\x0c\x2d\x1c\xa7\x49\x26\xac\x19\xd6\x74\xb4\ \x96\xa8\x0a\x3f\xb3\xbe\x27\x95\xd2\x72\x19\x34\x0c\xb5\x38\x4a\ \x56\xc7\xab\x9a\x4d\x59\x3c\xe5\x15\x46\xdd\x2d\x65\xa0\x6e\x2f\ \xcf\xca\xbb\x7f\x13\x88\x59\xaf\x46\x8c\x31\x0b\x06\xe0\x81\xe1\ \xe2\xd5\x40\xd0\xc2\xe7\xcb\x78\xc2\x9d\x17\xdc\xfb\xde\x46\x9f\ \xad\xcf\x68\xa9\x08\x52\x54\xf5\x91\x15\xb6\x86\x2f\xcb\xb1\x8f\ \x48\xf3\x64\x39\x74\x92\x23\xf2\xd5\xdf\xc1\xc4\x45\x10\xa0\xa6\ \xbe\x5c\x36\x05\x6e\x41\x11\x06\x39\xb4\xb0\x43\xda\xbc\xc6\x99\ \xb2\x6c\xd7\xb0\x4b\xec\xe5\x70\xcf\x4e\xa3\x85\xe3\xd4\x44\x91\ \x99\xbc\xbe\x7f\x68\xbc\x5f\x8b\x51\xb3\x4d\x2d\x61\xb6\x48\x44\ \x21\x73\x77\x1d\xf5\x85\x23\x07\x5d\x16\x6e\x47\xfc\x08\x75\xd8\ \xa0\xa8\xc7\x9e\x22\xcd\x89\x43\x40\x44\xce\xa2\xc7\xc6\xca\xd3\ \x7d\x6b\xb3\xb6\x7f\x16\xb7\x82\x44\xd8\x08\x5b\x65\xc2\xf7\x85\ \x78\xff\xac\xda\x87\x6f\x02\xaf\x5f\x44\x1f\x65\xfd\x56\xdd\x8f\ \xc1\xfb\x85\xb4\xeb\xbc\xb2\x71\x3d\x6b\x1c\xad\x5b\x37\x62\x07\ \x62\x93\xe5\x28\xac\xcd\x36\xd9\x7c\x1c\x18\x19\x03\xca\xb7\x22\ \x42\x02\x63\x18\x7a\x9d\x22\x6c\x9f\xe6\x54\x70\x9e\x03\xa6\x1a\ \xe8\xe5\xaa\x66\x44\x54\xef\x30\x6f\xc6\xa7\xf9\x3a\xda\x8d\x36\ \x6c\xcc\x2a\x71\xd6\x1a\xd1\x97\x38\x15\x76\x1e\xad\x48\xb9\xbf\ \x25\xd8\xdf\xa8\x6d\x4c\x9b\x56\x4e\xb9\x70\xb5\x80\x05\xca\x34\ \xbe\x55\x50\x33\x60\xa5\x12\x11\x1e\xd8\xa1\x85\xe1\x33\x09\x76\ \x11\x2c\x8b\x72\x01\x52\xbc\x74\x4a\x2e\xcf\x29\x64\xd5\xfa\x4d\ \x96\x36\x61\x45\xd2\xfa\x01\xc5\xc9\x0a\x88\xaf\x07\x53\xd7\x94\ \xc9\x4d\x92\xf2\x57\x71\xb3\xa5\xe6\x8a\xa6\x20\x57\xfb\x14\x33\ \x38\x10\xcd\xcd\xcb\x40\xa0\x88\x6b\xe8\xfd\xad\x50\x29\x62\x28\ \xfc\x9e\xc6\xc1\x8c\x36\x0e\x0a\x3c\xd2\xed\xe9\xc0\xf0\xe2\xa4\ \xa7\x69\x04\x93\x8b\xbb\x3a\xe5\xfc\x8a\xdc\x71\x35\xcd\xd8\xaa\ \x25\x28\xb5\x26\x74\x9e\xec\x09\x27\x90\x6a\x06\x33\x60\x8e\xab\ \xbd\xb9\xd3\xb8\xf3\xe2\x87\x26\x84\x4a\x13\x9b\xf4\xe2\xde\x37\ \x8c\x30\x79\x0c\xd7\xf7\xab\x87\x68\x10\xc2\x36\xe2\x34\x7e\xae\ \xdb\xae\x19\x8f\x10\x2b\x8c\x7b\xfc\x0b\x86\x65\x21\x1f\x47\x0f\ \xda\x91\x29\x67\x0b\x66\x28\x68\x7d\xb7\xaa\xb3\x2e\x98\x6f\x08\ \xff\x92\x0a\x13\x61\x27\x69\x0f\x8f\xaf\x3d\xb0\x63\x5a\x38\x8d\ \x4b\xa4\xa6\x90\x61\xd9\x44\xf2\xcd\xd2\x61\x75\xec\xae\x11\x64\ \x4f\x0e\xed\x07\x53\x16\x23\x23\x59\x43\xb9\xfc\x8d\x18\x36\x0b\ \xfb\x4e\xd5\xd1\x5e\x13\x33\x92\x39\xc7\xf9\x86\xea\xa8\xee\xb8\ \x11\xda\x6f\x53\xa4\x57\x55\x39\x1a\xe1\x4f\x1d\x87\xd5\x39\xbe\ \x63\x16\xe9\xd5\xd3\x0e\x8a\x7a\xf5\x87\xf0\xea\x8a\x42\xbb\xb6\ \x6a\xd4\x8e\xb4\x00\x42\x6d\x8a\xfb\x99\xd8\x4f\x11\x3f\x73\x28\ \x18\x53\xf6\x7c\xf2\x6c\x38\x0e\xec\x85\x8b\x68\x59\xb1\x86\xef\ \x5c\x7c\x5e\x15\x42\x3a\x8e\x87\x8a\xbd\x10\x52\x36\xaf\xad\xea\ \x70\x6d\x2d\x3a\x98\x74\xb8\x2a\x66\xe5\x13\xf9\x68\x51\x5f\x6a\ \x55\xc1\x2c\x24\xcf\x2f\x00\xb9\x0f\xe3\xa1\xcc\xf9\x93\x40\x54\ \xc2\x75\x1c\x46\xed\xe4\x43\xd5\x35\x4e\x32\xc1\xb0\x7a\xc3\xd6\ \x9c\x19\xdf\xa3\x8d\xd3\xeb\x78\xd5\x6b\x3d\x06\x46\xc6\x30\x18\ \xd5\x23\x64\x57\x20\x7e\x53\x3d\xd6\x3f\xb1\x6d\x4c\xe9\xfa\x2c\ \x03\x06\xe8\x81\x05\xa7\x36\xd5\x18\xf1\x2b\x89\xa4\x8d\xcd\xbe\ \x2b\x35\x66\x80\x78\xc9\x39\x86\xad\x0d\x0e\x8f\x6e\x9b\x88\xd2\ \x47\xa5\x09\x2b\xe8\x6d\x41\x39\xa5\x85\xb0\x1e\xdd\x5b\x23\xef\ \x8d\xe2\x3a\x42\x37\x8d\x85\x1b\x56\x6e\x31\x32\xb9\x92\x1a\x1f\ \x82\x8d\x5d\x1e\xac\x0d\x48\x96\x31\x23\x61\xa9\x8d\x8a\xfe\xc2\ \x54\x0e\x51\x54\xc8\xfb\x1c\x39\x66\x4c\x1a\xb3\x6a\x21\x32\xe6\ \x99\x8e\xe1\x68\x51\xcd\x98\x91\x4d\xe9\xf1\x08\x87\xa0\xa0\x1d\ \x11\xbb\x10\x7d\x29\xdc\xc0\x7b\xd0\x7a\xd4\xe6\xdd\xe1\x40\xea\ \x05\xd9\x2f\x9f\x6f\xc6\x0c\x7a\x21\xd3\x3e\xcb\x52\xa6\x6d\x98\ \xdd\xcb\xb2\x0e\x41\x13\x76\xf1\x58\x4e\x29\xb2\x8e\x84\x16\xe1\ \x0c\x48\xc0\x24\x1c\x07\xcf\x4a\x4d\x2c\xca\x86\x8a\x19\xd7\xd2\ \x2e\xa2\xa6\x1b\xdd\x8d\xc3\xfc\x53\x1f\xf5\xac\x1b\x25\xc5\xac\ \x8a\xec\x25\x5a\x94\x36\x60\x7f\xd1\x92\xf4\xc0\xfb\xb4\x22\xfb\ \x3c\xb4\x50\x79\xfb\x62\x63\x3c\x52\x2d\x2f\x2b\xa2\xf3\xc3\xd8\ \xae\x67\xdd\x44\xe1\x7b\xed\x82\xe6\x43\x1a\x0d\xd2\x40\xa9\x92\ \x6f\xf2\xf0\xce\xc1\xb4\x37\x68\x6d\x92\x36\x63\xd9\x4a\x87\x61\ \x55\xd1\x61\xd4\x26\x73\x03\xef\x3c\xca\xe1\x5e\x51\x1a\xe8\x05\ \xfd\x45\xc1\xa8\xf1\x74\xa1\x38\x81\x2f\x7c\x6a\xa4\x9f\xaa\x5a\ \x32\x4e\xaf\x55\x1f\x30\x8c\x44\x4c\x8f\xb6\x92\x83\x11\x32\x61\ \x8b\xd1\x23\x82\x83\x92\x07\x56\x88\x6e\x72\xa6\x6d\xa3\x52\xaf\ \x59\x85\x67\x52\x0b\xcd\x5c\xf0\x68\x94\x0c\xf0\x6a\x4c\xc5\xd8\ \xc4\xaf\xd4\xb5\x14\xd9\xdb\xc6\xf1\x29\x6b\x86\xd6\x3b\xa6\x62\ \x51\x21\x6f\x5a\xe3\x34\x4b\xfc\xfd\x18\x54\x07\xc4\x78\x67\x41\ \x78\x96\xca\x9d\x69\x6e\x84\xb7\x77\x28\x8a\x33\x87\xb4\x83\xb7\ \xd4\x8e\x89\x7d\x19\x1c\xd7\xc8\xb6\xc7\xf2\xed\xf4\x74\xe3\x28\ \x0f\x47\x24\x6b\x82\x42\xc9\x55\xbb\xb7\x6f\x00\x9e\x95\x0f\xd1\ \x14\xa9\x8d\x3c\x5f\xda\x59\x6e\xf7\x48\x05\x29\xde\x3e\x84\x10\ \x59\x12\x0d\xeb\x6c\x58\x6c\x87\x15\x2c\xb3\x8d\xf6\xac\x4c\x59\ \x6c\x04\xa2\x25\x77\x34\xae\xbf\x3f\xe4\x7a\xac\x1d\xcf\x67\x5c\ \x7d\x96\x1f\xc1\xd9\xca\x2a\x5b\x56\xd2\x5a\x7c\x4a\xde\xda\x1c\ \xfd\xbb\xbf\x4d\xb3\x92\x49\x2a\xcf\xe7\xe0\x75\xbf\xda\x4f\x69\ \x53\x28\x65\x57\x5a\xa4\x56\x6e\xba\xd1\xcf\x92\x31\x34\x01\xeb\ \xc1\x34\x2c\xb5\x85\xdc\x59\x57\x69\x0c\x95\x46\x36\x35\x13\xd1\ \x14\xb3\x22\x94\x35\x6e\x47\xdf\x52\x38\x8c\xac\xbc\x5e\x26\xfe\ \xa5\x3c\xc9\xdb\xae\x81\x4b\xa1\x45\xd5\x39\x1c\xa7\xe8\x75\x0e\ \xd9\x8b\xb2\x95\x5f\xfa\xd1\xec\xf5\x36\x47\xe7\xba\x5f\x9d\x5a\ \x2a\xda\x17\xa2\x30\x58\x21\xe0\xa3\xf1\x55\xa1\xfe\xb5\x56\x1e\ \x6a\x54\x62\xb3\x2b\x22\x4d\x1b\x1c\xbf\xd5\xb3\xb5\xfd\x71\x8e\ \xe0\xe3\x64\xb9\x99\x4d\x97\xcc\x56\x8e\xd1\x84\x55\x93\x19\xb1\ \x81\xcb\x67\x89\x6d\x19\xb5\x65\xb4\x2a\x98\x02\x2a\xc9\xdd\xae\ \xdd\x96\x31\x23\x1d\xee\xd3\x40\x6c\x32\x0a\x31\x79\xfc\x56\xf0\ \x4e\x86\x58\x72\x77\xe8\x4a\x89\x1a\x00\xd9\xb2\x3d\x74\x1b\xcd\ \x1c\x01\x63\xcc\xd0\xc2\x51\x3d\xca\x9b\x3a\x2e\x14\xe8\x9a\x80\ \xa9\xd3\x8c\xa9\x46\xb6\xd2\x8c\xa9\x2f\x4f\x77\x6c\x1e\x1c\xea\ \x8f\x0c\x79\x1d\x02\xcd\xfc\x1a\x41\x99\x16\x2b\x77\xe8\xea\xb0\ \xde\xe1\x18\x89\x0c\x1d\x0e\xe2\xeb\x95\x1d\x53\x16\x3d\x87\x0c\ \xd4\x8a\x4a\x16\x57\x1c\xc3\x03\xed\x2c\x96\x90\xe2\x01\x77\x0d\ \xd1\x60\x49\x91\x8a\x9c\xb2\x58\x45\x94\x25\xf9\xc1\xcb\x7a\x5c\ \x29\xb1\x03\x4c\xf6\xf2\x59\xc0\xdc\xc5\x5e\xd9\xda\x7e\x12\x61\ \x9e\x45\x27\x2f\xeb\xb9\x04\x77\xe0\x09\x20\xa3\x5e\xa9\x25\xed\ \x6f\x9a\x8b\x36\x56\x5a\x4f\x5d\xe5\x16\x5c\x54\x0d\xdd\x41\x1d\ \x47\xf5\xe3\x3e\xac\x9f\x64\x48\x12\xb5\xf1\xef\xc2\x09\x85\xc7\ \x79\x1b\x71\xc1\x2f\xdb\xf3\x22\x87\xf4\xdf\xbc\xcb\xca\xd1\xfd\ \xfd\x9a\x8e\xd5\x12\x34\xcd\x31\x65\x59\x78\x09\x31\x18\x17\xec\ \xb0\x1e\xca\x71\xf5\x78\x52\x3e\xdd\xd7\x74\x21\xff\xda\xb9\x50\ \x4b\x98\x36\x5e\x1a\x91\xef\xa0\x21\xb6\xc9\x1c\xdd\x6b\x31\x33\ \xa5\xbb\xa2\xa5\x43\x7b\x6e\xab\xa7\x29\x03\x5a\x4b\xcd\x1e\xf0\ \x3a\x42\xff\x90\x6e\x39\x70\x94\xa9\x81\x2f\x4a\xab\x97\x01\x9c\ \xfc\x9c\xf8\x55\xdd\x3a\x5f\xd3\x70\x45\xf5\xe3\x68\x2e\xc5\x59\ \x18\x84\x8b\x52\x81\xbb\x39\x54\x1e\xf5\x18\x52\xc9\x11\x73\x41\ \x7a\x60\x01\x51\x76\x74\x8d\x5f\xa8\x23\x7e\x65\x63\xb3\x31\x82\ \xab\x21\xdd\x00\x2d\x70\x2b\x57\x65\x03\x86\x67\x6c\xd3\xc5\x02\ \x9a\xb9\xfd\x6d\xf5\x59\x7a\x38\xb0\xe1\x63\x1d\xcf\xed\x61\xb8\ \xc9\xea\x7c\x77\x7a\x61\x94\xf5\x5c\x42\x77\x7d\xa5\x7d\x0e\x3a\ \x37\xd2\x11\xe9\x91\x36\x65\xc8\x2e\x5c\x0d\x6d\xa2\x99\x4a\x8e\ \x8f\x4c\x57\x63\x1b\x4b\x6d\x53\x2f\xe7\x66\x97\x7c\x56\x94\x21\ \x79\x41\xa1\x20\x0e\xb5\xe4\xac\x64\x11\x1b\xfd\xd4\x52\xfa\x83\ \xef\xcf\x43\x2b\x82\x05\x6d\xf6\x93\xdd\xde\x08\x47\x06\x46\xd0\ \xce\x9b\x73\xcd\xb4\xb1\x7f\xb7\x5a\x36\xeb\x4a\x85\x61\x7a\xc1\ \x51\x9b\x97\x15\xfb\x26\xf8\x61\x42\x47\xd0\x2a\x6f\xdb\xce\x65\ \x5d\x75\xcd\xd0\x2a\x69\xfb\x66\xa9\xe5\x75\x4b\x70\x53\x65\xb1\ \x12\xbb\x4a\x30\xb0\x26\x7c\xa7\xb2\x67\xb8\x8f\x3e\x55\xcd\x0a\ \xf5\xf1\x89\x75\xe4\x6c\x62\x70\x63\x51\x2b\x28\xcf\x2e\x34\xbd\ \x5a\xa4\x12\x77\x7f\xaf\xc6\x6b\xfa\x45\x0d\xb6\x6b\xed\x31\x32\ \xbe\x01\xd5\x82\x35\xed\x2d\xe1\x51\xab\x43\x29\xaa\xc5\xc3\x23\ \x13\xe1\x67\x2a\x69\xa2\xc4\x7b\x62\xd1\xc8\x58\xf8\x81\x0e\x34\ \xb5\xe4\x95\xf7\x6d\x41\xb6\xd1\x47\x9e\x8c\x94\x96\xdb\x96\xf1\ \x4a\xc6\xfb\x47\x86\xc2\xdd\x9e\x15\xc0\xc8\x02\x18\x50\x0d\xe5\ \x0d\x74\xbc\x34\x50\x69\x78\xd9\x77\xb0\x63\x13\xb6\xfb\xcc\xe6\ \x1b\xe4\xc4\x91\xc0\x2a\x06\x89\x2a\xa4\x3d\x7d\x41\xa8\x35\x3d\ \x49\x4f\xc5\xe2\x8c\x63\x78\x75\xb7\xe1\xd9\xd4\x63\xf1\x13\x85\ \x2b\x2f\xd5\xef\xe8\x99\x04\x56\x58\x54\x4f\xd0\x74\xa0\xd8\xcb\ \x3b\xca\x25\x27\xf3\x12\x75\x6e\xae\xf8\x05\x77\xd5\xbd\x39\xc7\ \x65\xc2\x4b\x6e\xc8\x42\xd4\x7c\xd3\xa3\x2f\xe7\xfa\x74\x7b\x4f\ \xf8\x51\x96\x24\x35\x02\x7b\xe1\xfc\xfe\xeb\x68\x13\x2d\xc6\xab\ \x30\x82\xed\xb6\x73\xbd\xad\x6a\x57\x8f\xed\x26\x6d\x83\x85\xd0\ \xe5\x86\x47\x82\x78\xb4\x30\x7f\x62\x28\x9b\xd6\x62\x53\x9b\xc9\ \x83\xe0\x88\xc5\x62\x4a\x35\x7d\xac\x7e\x3a\xdc\xaa\x16\xd8\xa1\ \x07\x2c\xad\x9d\x3e\xae\x07\x7a\x86\xc6\xb1\x2c\xad\x6e\x9b\x4b\ \x4f\x4e\x34\xbd\x47\xb7\x03\x6c\x3d\x52\x4e\xa9\x72\x62\x6c\x5b\ \xf8\xc9\xcb\x29\xdb\x2d\xae\xf8\x7f\x9d\x03\x91\x19\ \x00\x00\x01\xff\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xa1\x49\x44\x41\x54\x78\xda\xa4\ \x93\xbf\x4b\x1c\x41\x14\xc7\x3f\x33\x3b\x1e\x06\x75\x21\x95\x70\ \x84\x70\x10\x48\x61\x65\x23\x01\x05\x21\x75\x10\xd3\xa5\x89\x41\ \xec\xd2\x44\xb0\x4e\x2b\xfe\x09\x62\xad\x75\xe2\x99\x3f\x20\xd8\ \xe6\x8a\x04\x2c\x44\x91\x3b\x02\x46\x11\xee\xc7\x9e\x47\x20\xac\ \xb7\x33\xbe\x99\x3d\xb9\xd3\x46\x2e\xf7\xd8\xef\xce\xaf\x7d\xdf\ \xf7\x7d\xef\xcd\x2a\xe7\x1c\xa3\x98\x1a\x99\xa0\x0a\xfb\x42\xb1\ \x3c\x2c\x8d\xca\x51\x56\x67\xe0\xa6\xcb\xdf\xa0\xdb\x95\x1d\x2d\ \x50\x8f\xb8\x4a\x28\x6b\xc1\x18\xae\x96\x97\x30\x99\x6c\xd9\x8b\ \x84\xab\x8f\x2b\x43\x29\x98\xde\xde\xc3\xfb\x9a\x97\xbb\xf2\x7e\ \x9f\x10\xbf\xeb\xeb\xf2\x41\xb0\xfd\x80\x61\xee\x06\xe6\xde\xf3\ \x59\x9d\x78\x0a\x34\x1d\x59\xa4\x2d\xc2\xe8\x11\x1f\x50\x3d\xfa\ \x24\x63\x19\xda\xb2\x4e\x84\x31\xd1\x7d\xf8\xbd\x6b\x8f\x46\xf8\ \xde\x04\xc6\xb4\x11\xd8\x6b\x7f\xa0\xbe\xb3\x41\x7b\x7c\x91\xd4\ \x6e\x31\x26\xbe\x2f\x8a\x72\x90\xa9\xbe\x82\x3b\xa4\xcd\xa0\x46\ \x07\x99\xb6\xe9\xa9\xf8\x6b\xe6\xf9\x72\x38\x43\xed\x20\xe1\xe9\ \xcf\x4d\x3a\xe6\x15\x44\xbd\xb4\x1e\x5a\xb7\x1e\x06\x43\x24\xa7\ \x4a\x14\x14\xe0\xe2\xc3\x39\xf3\x6f\x8f\x69\x26\x13\xfc\xba\x39\ \x41\xaf\x27\xf0\xd5\xe7\xec\xf2\xee\x0c\x2a\x50\x12\x54\x7c\x35\ \xb1\x1c\x4c\x08\xdb\x24\x54\x3e\xaf\xf2\xfc\x4d\x8b\xf3\x85\x88\ \x7f\x49\x8d\x1f\x1b\x6b\x30\xe5\xeb\x22\x1e\xb1\xed\x81\x1c\x4f\ \xc4\x27\xd6\xa8\x13\xe1\x2b\xbe\x9e\x83\xdf\x55\xa2\xc8\xc9\x55\ \xd0\xc8\x23\x41\x9c\xb4\xdb\x91\x75\x23\x32\xab\x71\xf7\x2e\x91\ \x45\x97\x4a\x5c\x7e\xaf\x60\x7c\x8a\x63\xe3\xd7\xd8\x62\x21\xef\ \x9a\xf2\x5d\xba\xeb\xa5\xa8\x74\xaa\x57\xa8\x41\xd3\x44\xe2\x13\ \xca\x73\x2a\x0d\xd1\xb9\xd0\xa1\x4d\x12\xea\xf8\x50\xb3\xe4\xb5\ \xfe\x1f\xcb\x46\xfe\x1b\x6f\x05\x18\x00\xb3\x79\x9a\xd3\x33\xf3\ \x00\x96\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x23\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xc5\x49\x44\x41\x54\x78\xda\xa4\ \x93\xbd\x4e\x1b\x41\x14\x85\xcf\xdd\x99\x59\x23\x0b\x43\xe8\xa1\ \x27\x5d\x3a\x4b\x48\x54\x88\x16\x2a\x44\x11\xf1\x04\x79\x8d\x88\ \xa7\x40\xa2\x45\x8a\x12\x91\x28\x45\x3a\x44\x83\x28\x78\x04\x3a\ \xda\xc4\xf8\xdf\xd8\xde\x99\xe1\xdc\xd9\xb5\x65\x0b\xaa\x78\xac\ \xd9\x9d\xd1\xde\xfb\xcd\x39\x77\xae\x25\xc6\x88\x55\x46\x86\x15\ \x87\xdd\xfd\x2a\xd7\x93\x02\xc7\x3e\x00\x81\x62\x06\x05\xf0\xfb\ \xf0\x1e\x83\x69\x97\x7b\x9f\x82\xa2\x31\x08\x9b\x9b\xd8\x6d\x36\ \x11\x96\x4f\xbf\xb3\x9a\xfc\xeb\xcb\x2d\x0a\x3f\x65\x42\xc4\xa8\ \xe8\x63\x6f\xa7\x09\x4f\x62\x88\x65\x78\xcc\xb2\x34\x6b\x3f\xbf\ \x01\xeb\xeb\x80\x30\xd5\x59\x3c\xee\x1f\xec\x59\x3d\xb9\x3f\x6e\ \xe1\xfc\xe6\x0c\x42\xe6\xb0\xe8\xe2\xc7\xd1\x84\x0a\xda\x73\x05\ \x50\x05\x1b\x1f\xb0\xfd\xf9\x04\x68\xd4\x28\x95\x49\x97\x57\xa5\ \x05\xe1\x63\x54\x74\xb0\x56\x73\xc8\xc4\x22\x4c\x1d\xe1\x0e\x36\ \x9a\x64\x69\x66\x21\xcb\x1d\x4f\xe7\x66\xa3\x0e\x78\xfa\xec\x75\ \x2a\x00\x09\xc3\xa2\x85\xdc\x49\xaa\xe8\x04\x11\xd6\xf0\xd0\x60\ \x20\xb3\x0b\x52\x05\xfa\x31\xb7\xe5\x0c\x4c\xea\xb7\x4b\x80\x3e\ \x14\xa0\x49\xc2\x64\x43\xdf\x86\xc1\x26\x5b\x00\xe8\x5a\xdf\xb9\ \x94\x33\x32\x60\xd0\x59\xb0\x10\x5b\x70\x2e\x89\x25\x31\x42\x92\ \x02\xbb\xa4\x20\x01\x5c\x56\x4e\xd5\x3a\x53\xa0\x1f\xc6\x5e\x15\ \x44\xe8\xcf\xa8\xf1\x04\x10\x02\xaa\x36\xa1\xa4\xb4\x72\x15\x44\ \x93\x86\x0b\x16\x46\xfe\x1f\x2c\x6b\xa0\xd7\x68\xf4\xd4\x77\x14\ \xa4\xa5\xab\x2c\x68\xe1\x46\x33\x05\xdc\x8c\xe5\x2f\x8b\x18\x79\ \x3b\x01\xb9\x46\x8a\xe6\x98\xb7\x80\x35\x92\x6b\x26\x29\xc2\x4b\ \xb7\x04\x64\xa2\x4d\xf2\x8c\x7a\x5d\xd2\xf5\x86\xe9\xbc\x6e\x94\ \x6d\x96\xfb\xb6\x41\x0f\x0d\x9b\x80\xf0\x15\x80\x12\x7a\x17\xdf\ \x9f\x1a\x6a\x3d\x04\x8f\x1e\x01\xa7\xc3\x07\xbe\x9f\x69\xa9\xa8\ \x14\xb0\x3f\xb6\xb6\xf0\xf1\x0f\x9b\x0b\xed\x39\x8f\x29\x3d\x2d\ \xc7\xa7\xd2\xf5\x7f\x0d\x2f\xab\xfe\x9d\x5f\x05\x18\x00\x75\xb8\ \xba\xe7\x65\xf0\x7b\x2c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x01\x9a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x3c\x49\x44\x41\x54\x78\xda\xa4\ \x93\x3b\x4a\x04\x41\x10\x86\xff\xea\xee\x69\x1f\xf8\x40\xbc\x81\ \x18\xb9\x89\x83\x98\x79\x00\xc1\xc0\x4b\xb8\x37\x58\x31\xf2\x00\ \xa2\x07\x10\xd6\xc8\x13\x68\xe6\x1d\xc4\x33\x28\x82\xe1\x2e\x32\ \xba\x33\xda\xd3\x0f\xab\x46\x03\x23\x67\xd6\x6d\xe8\xa0\x29\xbe\ \xfa\xff\xaa\xea\xa2\x94\x12\x66\x39\x0a\x33\x1e\x93\xe7\xf9\x8d\ \x73\xee\x30\xc6\x38\x9d\xb2\x52\xb0\xd6\xde\xd2\x56\xaf\x97\x86\ \xc3\x2b\x84\x10\x40\x44\xa0\x16\x50\x0a\x96\xb2\xb5\xd6\xe8\xf7\ \x8f\x60\x1c\x3f\x8a\xb2\xc4\xe0\xf8\x04\x59\x66\x38\xdc\x9e\xa2\ \xae\x3d\x2e\xce\xcf\x20\xac\xd9\xf8\x78\x47\x18\x8f\xb0\xe9\x2b\ \x68\x65\x41\xea\xef\xb6\x24\x2e\x35\x78\xd7\x30\xc2\x9a\xd3\x97\ \x67\xec\x8d\x1f\x71\x50\x3f\x71\x78\x8e\x0d\xb4\x38\x90\xa9\xd5\ \x9f\x00\x33\xab\xcc\x9a\x4a\x04\x7d\x09\xac\x2f\x01\x3a\xe3\xee\ \xb4\x24\x88\x9c\x20\x64\x0d\x23\xac\x09\xd2\x7c\x3f\x01\x56\x16\ \x19\x36\xdd\x1c\xc4\xac\x61\x84\x35\x9e\xdd\xa0\x72\xec\x9e\x1d\ \x28\xdd\xa9\x89\x88\xa1\x61\x84\xa5\x74\xad\x12\xf6\x77\x80\xe2\ \xfe\x07\xee\x34\x48\x76\xbc\x0b\xdc\x3d\xc0\x60\xc2\x85\xd0\x2b\ \x60\x59\x3d\x75\xfc\x98\x14\xbf\x19\x66\x0d\x12\x2b\xae\x8d\x80\ \x05\xd5\x41\xfd\xd7\x06\xcc\x33\xc3\x2c\xf9\x4b\x5b\xe8\x88\x65\ \xc4\xe9\xb7\x28\x28\xbc\x89\xe4\x36\x5f\xfd\xcf\x5d\x0a\x34\xeb\ \x3a\x7f\x09\x30\x00\x2f\x21\x82\xb8\x08\xe0\x18\xcc\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xb5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x57\x49\x44\x41\x54\x78\xda\xa4\ \x53\x3d\x4b\xc4\x40\x10\x7d\x9b\xcb\x87\xde\x91\x56\x41\x44\x2d\ \xce\xfe\xd0\x5a\x10\xfc\x01\xb6\x36\xfe\xb6\x6b\x2d\xf5\x07\x58\ \xd9\x8a\xa5\x85\xca\xc1\x81\x8d\x85\x70\xb9\x2f\x4f\xe3\x66\x7c\ \xeb\x24\x61\x39\xc1\x22\x19\x18\x32\x3b\x1f\x6f\xde\xec\x4e\x8c\ \x88\xa0\x8d\x04\x68\x29\xe1\xc8\x98\xeb\x02\x38\x6f\xd8\xfd\xc6\ \x3c\x03\xd2\xbf\xbb\x05\xf2\x6f\x5a\x06\x30\x4e\xcb\xb1\xdc\xc7\ \x94\x5a\x89\xf3\xb9\xb1\xa3\x10\x2f\x27\x67\x08\x7f\x9d\xd3\x09\ \x70\x79\x01\xd8\x44\x01\x12\xd1\x22\x52\x43\xc7\xf1\xac\x2a\xcb\ \xe2\x3c\x07\x86\x57\x3a\x82\x02\x64\x44\xec\x02\xef\x99\x26\xed\ \x6d\x6b\x64\xf4\x06\xf4\xb7\x08\xe8\xb1\x10\xa2\x7e\x7d\x02\xb3\ \xcc\x03\x98\xf3\xb0\x11\x01\x2b\x66\x05\x8e\x01\xed\x88\x9d\x0e\ \x77\xe9\x17\xb5\xab\xeb\x2e\x08\x60\xa8\xf3\x89\x07\xb0\xe4\x21\ \x65\xe1\xd1\x0e\x83\xcc\xec\x89\xde\xc7\xe3\x2b\x30\x20\x48\xec\ \x33\x70\x4d\x98\xb3\xf0\x19\x2c\x08\xd0\xe3\xb0\xc2\x80\x0d\xf4\ \x12\x2d\x13\x8f\xf7\x81\x4d\xda\x1d\x59\x03\x90\x9a\x41\x50\x33\ \x88\x69\x86\x0c\xde\x8f\xd5\xfd\x30\xd6\xd9\x9d\xc6\xf4\x47\x9e\ \xba\xdc\xa5\x3f\xc2\x07\x0f\x09\x9d\x05\x83\xa7\x07\x64\x03\xfd\ \x76\x45\xef\xe4\xcf\x33\x06\x5a\x53\x03\xac\xa6\xa4\x1a\xea\xa0\ \xe2\x65\xaf\xef\x40\xf5\x8c\x8e\xa1\xab\xa9\x01\x2c\x0f\x69\xe4\ \x55\xfd\x27\xe5\x3e\x58\x05\x30\x4f\xdc\x02\x96\xa4\x4d\x56\x99\ \x50\x33\xd7\x6e\x50\xee\x5b\x13\xb1\xa6\xed\xef\xfc\x23\xc0\x00\ \x53\x79\x6f\xe1\xf4\x4f\xdf\x4c\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x02\x22\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xc4\x49\x44\x41\x54\x78\xda\xa4\ \x93\xbd\x4e\x1b\x41\x14\x85\xcf\x9d\x9f\x5d\xdb\x60\x6c\x25\x65\ \x94\x3c\x40\x70\x91\x82\x2a\x52\x2a\x24\x5a\x2a\x1a\xc4\x23\x80\ \xa2\x3c\x51\x52\x22\xa5\x80\x14\x91\xd2\x47\xa2\xa1\xa5\x20\x12\ \x4f\x10\xc5\x16\x1b\xf3\x63\x9b\x9d\x99\x9c\x99\xf5\x2e\x0b\x65\ \x3c\xd2\x68\x77\x67\xf6\x9e\xfb\x9d\x7b\x67\x24\x84\x80\x55\x86\ \xc2\x8a\xc3\xc8\xd1\xc9\x29\x4a\xbf\x0b\x4f\x92\x48\x33\x0f\xb8\ \x38\x7c\x85\x62\x11\xe0\xfc\x92\x4e\x6b\xf8\xc1\x00\xaf\x47\x23\ \xf8\xa7\xd9\xcf\x4c\x0c\xfe\xfe\x71\x87\x8f\xb8\x15\x30\x5d\x00\ \x9b\x6f\x33\xdc\x2d\x3c\x5c\xed\x4e\x29\xb8\xb5\x1e\x86\xdf\xbe\ \x02\xeb\xeb\x80\x30\xd4\x1a\x5c\x7d\xd8\x7e\x6f\x62\xe6\x62\x5e\ \x62\xff\xcb\xaf\xca\x10\x33\x6f\x7f\x7a\x89\xeb\xf9\xa3\x40\x50\ \x1a\x6e\x63\x80\xe1\xc1\x1e\xd0\xcf\x41\x34\xe0\xf3\x71\x65\x01\ \x02\x4c\xf8\x33\xba\x9a\x02\xfc\x50\x01\xbd\x4e\x86\x7b\xb4\x04\ \x68\xc1\x75\x3b\xcc\xce\x0c\xfd\x1e\x05\x4a\x60\x5a\x2c\x05\x38\ \x26\xc4\x45\x26\x24\x13\x04\xbe\x5a\x6b\x61\x98\x45\xfc\xa3\x80\ \x32\x19\x90\x33\x49\xce\x10\xc7\x44\x37\xd7\x2d\x82\x99\x63\x14\ \x37\x25\xae\x04\x64\xf4\x97\x51\xa0\xac\x2b\x16\x09\xb8\x06\x2b\ \xd5\x34\x24\xb9\x6d\x13\x3c\x44\x81\x65\x47\x8d\x87\x36\x96\x35\ \x72\x0d\x41\x14\xd0\xa6\x16\xd0\x55\xfd\x1b\x82\x24\x10\x20\x46\ \xa7\x2e\xa4\x15\x5a\xb0\x4e\x3d\x11\xf0\x69\x5d\x92\xd5\x84\x7a\ \xd7\xb2\xf0\xa7\x74\x50\xdc\x4c\x6d\x37\x92\x5a\x64\xe9\xb3\x2d\ \x90\xea\x59\x5b\x10\xce\xfb\x86\x40\x30\x29\x49\x40\x34\xe1\x41\ \x0a\x2e\x12\xe6\xb0\x59\xb4\x50\x1f\x24\x53\x09\xe4\xaa\x2a\xa4\ \xe6\x73\xf6\xb7\x26\x10\x8c\x03\xab\xdc\xcd\xd8\x81\xf8\x5b\x52\ \x60\x0c\xe7\xf3\x73\xdb\x37\xd5\x24\x11\x5c\x23\x80\xe9\xf8\xe7\ \x79\xbf\x39\xca\x33\x8f\xcb\xad\xdf\x18\xcf\x62\x17\x96\x04\x2c\ \xa0\x1f\xbe\xc0\x9b\x1f\x05\x49\x8a\x46\x8f\xbb\xd3\x58\x91\x77\ \x11\xf2\x3f\xef\x92\x93\x55\xaf\xf3\x3f\x01\x06\x00\xe0\x96\xb0\ \xed\x7d\x9e\xef\xf6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x18\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xba\x49\x44\x41\x54\x78\xda\xa4\ \x93\xcd\x4b\x5b\x41\x14\xc5\xcf\x33\xcf\x46\x11\x05\xa1\x2a\x08\ \x1a\xec\xc2\x6e\xdd\x5a\xa8\x41\xec\xa6\x0b\x15\xd1\x2a\x05\x4d\ \x29\x74\xd5\xe2\xd6\x6e\xc5\x7f\xa0\x1b\xdb\x8d\x1b\xbf\xb0\x0b\ \x29\x68\xe2\x5a\xc8\x53\x5a\x90\x46\xb0\x11\x8d\x82\xb1\x4f\x6b\ \xea\x47\x91\xa8\xa8\xf8\xf1\x72\xbc\x13\x27\x98\xa6\xb8\x48\x73\ \xe1\xf0\x7b\xf3\x66\xe6\xce\x99\x99\x3b\x06\x49\xe4\x12\x79\xc8\ \x31\x4c\xe3\xd5\xd0\x14\xae\x9c\x56\x38\x09\x69\x66\xb8\xc9\x73\ \x01\x0f\x8a\x70\x38\xea\x43\x5c\x9a\x4e\x5a\x97\x71\xbb\xfa\x57\ \x53\x4d\x9e\xec\x6d\x41\x47\x7d\x25\xc6\x82\x5b\xe8\xf1\x56\x63\ \xcc\x12\x36\x54\x63\xc4\xda\x46\x77\x43\x15\x5c\xcd\x0e\x4a\x5d\ \x6e\x3d\x4d\x41\x58\xe0\xc6\xe6\xf3\xb6\x27\x40\xd7\x47\xaa\x40\ \xe3\x04\xbf\x47\xe3\x44\xd3\x67\x86\x34\x17\xa2\x47\xc4\xb3\x2f\ \xbc\x94\xfe\x3f\xa2\x7d\xad\x03\xd1\xa1\x28\x10\x89\x88\xe5\xae\ \x41\xf6\x4f\x6f\x31\x64\x9f\x10\xcd\x7e\xfe\xf8\xa5\x18\xd0\x9c\ \xa1\xb5\x73\x4d\xba\x41\x16\x6a\x15\x88\xf2\x45\x1f\x06\xf8\x33\ \xb9\x67\x49\x90\x48\x88\x83\xf6\x59\x86\x77\x4e\x89\x17\xb3\x5c\ \x8e\x9d\x25\xb9\x14\x3b\x27\x3a\xbf\xf1\x2a\xc3\xc1\x7e\xca\xc1\ \xca\xaa\x24\x78\xf9\x89\x9d\xe3\xbb\x0c\xfd\xbe\x24\x7a\x42\x5c\ \xda\x13\xfa\x52\x5c\x64\x50\x8d\x2e\x93\x15\xcb\x45\x15\x9a\x0f\ \x45\x7d\xaf\xb5\x03\xdf\x08\x6d\x75\x06\x6f\x63\xb4\xe2\xc2\x77\ \x77\x0c\x26\x79\xc0\xf3\xfb\x1c\xac\x46\x68\x1c\x49\x96\x92\x37\ \x4f\x01\x6b\xee\xee\x7e\xd2\x43\xdd\x6c\xea\x86\x99\xf6\xcf\xeb\ \x85\x3d\x1c\x84\x39\x1f\x59\x83\xf7\x71\x2d\x2e\xfe\xad\x82\xbf\ \x72\x64\xf6\x99\xa2\xf0\xfb\x75\x18\x6a\x1f\x9e\x16\x0f\xb0\x6d\ \x67\x57\x82\x55\x1e\xd8\x7e\x1b\x66\x78\x23\x8a\xd2\x47\x35\xb8\ \xce\xb2\x84\xa5\x46\xb1\x1c\xdd\x84\xb1\x01\x1c\xcb\x77\x71\xb6\ \x4f\x4a\x1f\xd5\x89\x62\x9d\x4e\xf8\x3f\xe1\x18\xb9\x3e\xe7\x1b\ \x01\x06\x00\xf2\x00\x37\xae\x88\x1c\xa9\x84\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x02\x00\x00\x00\x6f\x15\xaa\xaf\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x08\x4d\x00\x00\x08\x4d\ \x01\x21\x88\x21\x81\x00\x00\x01\xc0\x49\x44\x41\x54\x38\xcb\x63\ \xf4\xae\x7e\xc3\x40\x0d\xc0\xc4\x40\x25\xc0\x82\x55\xb4\x22\x82\ \xd7\x46\x87\x0d\xc2\x5e\xb0\xeb\xdb\x9a\x43\xdf\xc9\x74\x91\x84\ \x10\x42\xfc\xc2\x9d\xdf\x64\x7a\x8d\x87\x93\x51\x45\x0a\xea\xd2\ \x2f\xdf\xff\xdf\x79\xf6\x87\x4c\x83\x0c\x94\x59\xe1\x6c\x22\x4d\ \xc1\x1e\x46\x12\x42\xcc\xc8\x86\x6e\x69\x11\x86\xb0\x53\xfa\x3e\ \xbc\x78\xf7\x97\x04\x17\xc1\xfd\x85\x0c\xbe\x7c\xff\x8f\xc7\x14\ \xc2\x5e\x43\x04\xf9\xdd\xdf\xa4\x79\x8d\x87\x93\x91\x87\x93\x11\ \xee\x8a\x35\x87\xa1\x11\x8f\xdf\x39\x58\x0c\x42\x76\xce\x8b\xf7\ \x7f\xd1\x52\x90\x92\x24\x4b\x4d\x34\x6f\xcb\xd2\xcf\xf7\x9e\xff\ \x21\xe0\x35\xe4\x00\x82\xa7\x20\x71\x41\x26\x5d\x45\x56\x71\x41\ \x26\x7f\x2b\x0e\x31\x01\x26\x0b\x4d\x36\xc2\x2e\x42\x8e\x32\x78\ \xdc\xeb\x2a\xb2\x16\x04\xf1\x5c\xb9\xff\x7b\xe9\xbe\xef\x16\x9a\ \x6c\x7b\xcf\xff\x98\x9c\xc3\xcf\xc0\xc0\xd0\xbf\xf6\x2b\xdc\x69\ \xf8\xbc\x06\x0f\xe0\xcb\xf7\x7f\x5f\xb9\xff\x5b\x51\x92\x45\x5c\ \x90\xa9\x7f\xed\x97\x54\x2f\x6e\x45\x09\x96\xaf\x3f\xfe\xbf\x7c\ \xff\x17\xbb\x8b\x54\xa4\x58\xe0\x21\x7d\xe7\xd9\x9f\x2f\xdf\xff\ \xc3\x43\x7d\xe9\xbe\xef\x0c\x0c\x0c\xf7\x9e\xff\xf9\xfa\xe3\xff\ \xd7\x1f\xff\x37\x1e\xfb\x71\xf9\xfe\x6f\x9c\x5e\x53\x91\x46\x70\ \x5f\xbc\xfb\x07\x67\xfb\x5b\x71\x46\x39\x71\x7e\xfd\xf1\xbf\x65\ \xe9\x67\x06\x06\x86\x34\x6f\x2e\x31\x01\xe6\xbd\xe7\x7f\xce\xda\ \xfa\x15\x7b\x60\x4b\x08\x32\x61\xcd\x1c\x3c\x9c\x8c\xaf\x3e\xfc\ \x9b\xbd\xed\xab\xa5\x16\x5b\xb4\x13\x67\xff\xda\xaf\xdc\x1c\x8c\ \x7e\x96\x1c\x38\x5d\x64\xa0\xc2\x8a\xec\xcd\x10\x3b\x4e\x48\x0a\ \x9a\xb5\xf5\x2b\xc4\xf2\x2d\x2d\x3c\x10\x0f\xe6\x4d\xfd\x88\x1c\ \x40\x58\xc2\x08\xce\xb6\xd1\x61\x83\x14\x49\x0b\x76\x7d\x83\x0b\ \x4e\x58\xf7\x05\xc2\xc0\x4c\x47\x2c\xc8\xee\xc7\x9a\x64\xef\x3c\ \x45\xe8\xd9\x73\xee\x27\xe1\xbc\xf6\xe5\xfb\x7f\x64\xcb\x49\x2d\ \x49\x18\x07\x5d\xe1\x4f\x35\x83\x00\xb9\xa8\xbc\x5a\x9e\xac\xa1\ \x14\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x02\x00\x00\x00\x90\x91\x68\x36\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x89\x00\x00\x05\x89\ \x01\x6d\x68\x9d\xfa\x00\x00\x01\x39\x49\x44\x41\x54\x28\xcf\x63\ \xf4\xae\x7e\xc3\x40\x0a\x60\x41\xe6\xd8\xe8\xb0\x55\x44\xf0\x32\ \x30\x30\x2c\xd8\xf5\x6d\xcd\xa1\xef\x58\x35\x30\x21\x73\x24\x84\ \x98\x21\x8c\x0b\x77\x7e\xe3\xb2\x01\x45\x83\x8a\x14\xd4\xc2\x3b\ \xcf\xfe\x10\xa9\x01\x6a\xc3\x96\x16\xe1\x2d\x2d\xc2\x70\xfd\xd8\ \x35\xf0\x70\x32\xc2\x9d\xc4\xc0\xc0\xf0\xe5\xfb\x7f\xac\xf6\x20\ \xcc\x30\x50\x66\x85\x30\x8e\x5c\xf9\x05\x57\x2a\x2e\xc8\xf4\xe5\ \xfb\xff\xaf\x3f\xfe\x63\xd1\x00\x37\x7e\xcd\xa1\xef\x77\x9e\xfd\ \x51\x92\x64\x51\x92\x64\x49\xf3\xe2\xfa\xf2\xe3\x7f\xcb\xd2\xcf\ \x58\x9c\x04\x77\xf1\x8b\xf7\x7f\x19\x18\x18\xfc\xad\x38\xda\x93\ \xf9\xee\xbd\xf8\xfb\xea\xc3\xbf\x95\x35\x42\xfe\x56\x1c\xe8\x36\ \x40\x7c\x7c\xe7\xd9\x9f\x2f\xdf\xff\x33\x30\x30\xec\x39\xf7\xf3\ \xe5\xfb\x7f\xf7\x9e\xff\xe1\xe1\x64\xfc\xf2\xfd\xff\x89\xeb\xbf\ \x50\x34\xc0\x7d\x0c\x8f\x81\x68\x27\x4e\x45\x49\x96\xbd\xe7\x7f\ \x32\x30\x30\xf8\x59\x72\x9c\xb8\xfe\x8b\x81\xe1\x1f\x42\x03\xdc\ \xc7\x12\x42\xcc\x21\x76\x9c\x2f\xde\xfd\x9d\xb5\xed\xdb\xd7\x1f\ \xff\x26\x65\x0b\xcc\xde\xf6\x75\xd9\xbe\xef\xdc\x1c\x8c\x28\x36\ \xc0\x7d\x6c\xa3\xc3\x66\xa3\xc3\xb6\x60\xd7\xb7\x23\x57\x7e\x31\ \x30\x30\x2c\xdb\xf7\xed\xf8\xb5\x5f\x58\x42\xe9\xce\x53\x94\x20\ \x87\x3b\x6c\xe3\xb1\x1f\x68\xf1\xc0\x48\x6a\x6a\x65\x62\x20\x11\ \x00\x00\xd3\xf7\x7e\x3a\x4b\x5c\xc8\x15\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xbb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x02\x00\x00\x00\xfc\x18\xed\xa3\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\ \x01\xd2\xdd\x7e\xfc\x00\x00\x02\x6d\x49\x44\x41\x54\x48\xc7\x63\ \xf4\xae\x7e\xc3\x40\x4b\xc0\xc4\x40\x63\x40\x73\x0b\x58\xf0\xc8\ \x85\xd8\x71\x22\x73\xef\x3c\xfd\x73\xe1\xee\x6f\xaa\x59\xc0\xc3\ \xc9\x98\xe0\xc6\x85\x2c\xd2\xb1\xe2\x33\x35\x83\xc8\x40\x99\x15\ \x4d\x84\x0c\xe7\xe3\xb3\x40\x42\x88\x19\x25\x7c\x9e\xfd\xf9\xf2\ \xfd\x3f\x35\x2d\x50\x91\x42\x09\xbd\x17\xef\xfe\x51\x39\x15\xa1\ \x05\xd1\x9d\x67\x7f\xa8\x99\x8a\x24\x84\x98\x79\x38\x19\x91\x45\ \x12\xdc\xb8\xe0\x71\xfe\xe5\xfb\xff\x88\xd6\x77\x14\xf9\x40\x45\ \x8a\x19\x8f\x1e\x92\x62\x9b\x89\x98\x08\x40\x03\x24\x05\x17\x76\ \x0b\x0c\x54\x58\xf1\xe8\x79\xf1\xee\x2f\xc5\x71\x20\x88\x12\x44\ \x47\xae\xfc\x42\x76\x35\x72\x10\x59\x68\xb2\xbd\xfa\xf0\xef\xde\ \xf3\x3f\x24\x58\xa0\x22\xc5\x82\x16\xc3\x6b\x0e\x7d\xc7\x1a\x2c\ \x16\x9a\x6c\x35\xd1\xbc\x5f\x7f\xfc\xaf\x9c\xfb\x09\x97\x1d\x2c\ \xc4\x84\xcf\x8b\xf7\x88\x30\xe1\xe6\x60\x54\x92\x64\x61\x60\x60\ \xb8\xf7\xfc\x0f\xc4\x1d\xdc\x1c\x8c\xdc\x1c\x8c\x24\xf8\x40\x42\ \x90\x09\x4f\x1e\x16\x17\x64\x6e\x4f\xe6\x63\x60\x60\x58\xb6\xef\ \xfb\xc6\x63\xdf\x53\xbd\xfe\xdf\x7f\xfe\xe7\xf2\xfd\xdf\x85\xc1\ \x3c\x4a\x92\xcc\x97\xef\xff\x99\xb5\xf5\x2b\x81\x48\x56\x91\x46\ \xb1\xf5\xc2\x1d\x94\x44\x79\xef\xf9\x9f\xaf\x3f\xfe\x33\x30\x30\ \x44\x39\x71\xf2\x70\x32\x9e\xb8\xfe\x6b\xe9\xbe\xef\x2e\x46\xec\ \xce\x86\xec\x8a\x12\x2c\x16\x9a\x6c\x04\x7c\xc0\xc3\xc9\x88\x96\ \x46\x31\x43\xbf\x72\xee\x27\x25\x49\x66\x31\x01\x66\x67\x43\x8e\ \xfe\xb5\x5f\xc4\x05\x99\xa2\x9d\x38\xaf\xdc\xff\xcd\xc0\xc0\xb0\ \xe1\xd8\x0f\x02\x16\x60\xe6\x00\xcc\x6c\xc5\xcd\xc1\xf8\xf2\xfd\ \xbf\x97\xef\xff\xbd\xfa\xf0\x97\x81\x81\xe1\xe5\xfb\x7f\x15\x73\ \x3f\x11\x1b\x07\x68\xe1\x83\x59\x88\xea\x2a\xb2\x42\xe2\x80\x81\ \x81\xa1\x65\xe9\x67\x06\x86\x3f\x0c\x0c\x0c\x73\x8b\x05\x5f\x7d\ \xf8\xf7\xea\xfd\xdf\xfe\x75\x5f\x5e\xbe\xff\x87\x2f\x0e\xd0\x7c\ \x80\x16\x01\x10\x0b\x20\x8c\xd9\xdb\xbe\xde\x7f\xf1\x67\x52\xb6\ \xc0\x97\xef\xff\x97\xed\xfb\x2e\x26\xc0\xa4\xa3\xc8\xea\x6c\xc8\ \x41\xc0\x07\x04\x0b\xd1\xbd\xe7\x7f\xbc\xfa\xf0\x97\x9b\x83\x71\ \xe3\xb1\x1f\x85\xc1\x3c\xdc\x1c\x8c\x2e\x46\xec\xcb\xf6\x7d\xd3\ \x53\x64\x81\x44\x21\x3e\x0b\x78\x38\x19\xd1\x54\x78\x98\x72\xc0\ \x6b\x9e\x17\xef\xfe\x1e\xb9\xf2\xeb\xe5\xfb\x7f\x2f\xdf\xff\x84\ \x88\x38\x1b\xb2\x43\xfc\xb4\xf1\xd8\x0f\x5c\xd1\xc0\x82\xbf\x9a\ \x34\x50\x66\x85\x0b\x2e\xd8\xf5\x0d\x4d\x76\xc2\xba\x2f\xa9\x5e\ \xdc\xcb\xf6\x7d\x27\xb6\x2c\x42\xab\x26\xd1\x93\x13\x46\x7c\xec\ \x39\xf7\x73\xcf\xb9\x9f\x24\x94\xa6\xf8\x8b\x49\xe4\x02\x83\xcc\ \xe2\xfa\xc8\x95\x5f\x3b\x4e\xff\xc0\x55\x07\x90\x57\xe9\x33\x8e\ \xb6\x4d\x07\xdc\x02\x00\x73\x7d\xfc\x38\x54\xed\x8f\x7c\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x42\x19\ \x00\ \x00\xdf\x6f\x78\x9c\xed\x7d\x09\x38\x95\xcf\xdb\xff\x9c\xc5\x71\ \xec\x5b\x96\x50\x4e\x0a\xed\x69\xb5\x54\xce\x49\x9b\x94\xc8\xd6\ \x46\x44\x45\x25\x24\x2a\x8a\x73\x4a\x49\x11\x12\xad\xb6\x8a\x14\ \x8a\x92\xa5\x10\x11\x8a\x8a\x8a\x90\x2d\x22\x5b\xf6\xec\x9c\xe7\ \x3f\x0f\x29\x5f\x0e\xf1\xad\x7e\xbf\xf7\x7d\xff\x3e\xd7\xe5\xf2\ \x2c\x33\x73\xcf\xdc\x73\xcf\xbd\xcc\xcc\x99\x07\x00\x0c\x20\x02\ \x1a\x0d\xf4\xfe\x9f\xbe\x01\x00\x07\x00\x00\x37\x77\xdf\xbd\x31\ \x13\x00\xf7\xe1\x33\x21\xa1\xbe\xfb\x17\x04\x00\x04\xd4\x01\x20\ \x91\xfa\xee\xef\x10\x01\x28\xda\x02\x00\x85\xf2\x3d\xbf\x00\xcc\ \xbf\x13\x00\x7d\xfd\xef\xef\x67\xc3\xfc\x47\x40\x2f\xd0\xfb\x67\ \xbc\x00\x68\xfb\xff\xbc\xdf\x32\x1d\x00\xc1\x28\x00\xe0\x3f\x40\ \xeb\x7b\xd8\xfb\x7c\x38\x7c\x3d\xb6\x1e\xd4\xda\x6b\x83\x3a\x67\ \x03\xd0\xe0\x71\x00\x34\x7a\x1d\x05\x4d\xfe\xf6\xa0\xf9\x9e\x2b\ \xf8\x16\x71\x0d\xb4\xc6\x05\x80\xb6\x94\x07\xa0\xfd\x4d\x2c\xe8\ \xf8\x90\x0a\x3a\x8b\xde\x83\xae\x8a\x22\xd0\x53\x5f\x05\xe8\x6d\ \xdf\x00\x82\x20\xc3\x96\x3d\x8e\x71\x8c\x63\x1c\xe3\x18\xc7\x38\ \xc6\x31\x8e\x71\x8c\x63\x1c\xa3\x01\x13\x0b\x3b\x17\xf7\x08\xc0\ \xff\x5d\xea\x9c\x23\xd1\x46\xc1\xfc\x37\xc9\xb3\xfe\x8a\x3a\x37\ \x37\xeb\x5f\x24\x4f\xfc\x35\x79\x6e\x8e\xbf\x47\x1e\x33\x62\xc7\ \xf7\xe3\xef\xd1\x67\x1e\x0d\xf9\xbf\x28\x80\x6c\xa3\xa2\x3f\x7c\ \x48\xff\xbb\xe0\x18\x15\x7d\xb6\xbf\x46\x7f\x54\xe4\xb9\x39\xff\ \xcb\xf4\xb9\x31\x7f\x8b\xfe\xa8\xc4\xff\x2f\x0a\x20\xfb\xe8\xe8\ \x0f\x2f\x80\x04\xb6\xdf\xe2\xcd\xe8\xe4\x7f\x78\x01\x24\x40\xed\ \xf4\x3b\x15\x18\x8d\xfa\xe3\x1e\x5e\x00\x09\xe8\xcb\xdf\xa9\x00\ \xd3\xe8\xe8\x73\x63\x87\x27\xff\x5b\x15\xc0\x8e\x92\x3e\xd3\x08\ \xe4\x7f\xcb\x40\x8c\x72\x00\x30\x14\xc0\x9f\xaf\x59\xfe\x35\x7d\ \xc6\x02\xc8\x45\xc4\x33\xe6\xf8\x3f\xf0\xd3\x71\xf8\xf7\x0a\x92\ \xb1\x00\x12\x46\x95\xf7\x07\xff\x19\x77\xcf\xa8\x80\x1f\x7d\x77\ \x0f\x45\xbf\xf6\xf8\x31\x3c\x70\x63\xa6\x8f\x19\x7d\x77\x0f\x5f\ \xf9\xfe\xe4\x2c\x68\x5d\xd8\xd9\x89\xc4\x31\xd4\x83\xa1\xf7\x37\ \x52\x7f\x62\x09\x2c\xec\xfd\xe5\x7f\x97\x9e\xef\xb2\x82\xfb\x91\ \x7f\x0c\x1e\x23\x43\xff\x6f\x38\x7d\x83\x23\xf6\x79\xca\x5c\xdf\ \x29\x62\xff\x51\xdb\x9f\xc6\x7c\x14\xc2\xdb\x0f\xc6\x1e\xd0\x30\ \x05\xfc\x30\x17\xfd\x2a\x87\x65\x80\xb4\xfc\x14\xe5\xb1\xd8\xeb\ \x31\x09\xe0\xcf\xd1\xfa\xbd\xcd\xa8\xff\xf8\x9d\xda\x00\x55\x36\ \x26\x75\xc0\x90\xfe\x30\x02\x48\x1c\x42\x83\xf9\x47\xda\x01\xa6\ \x74\x4c\xc3\x91\xa1\x0b\xc6\xce\x38\xed\x40\x66\x7d\xd7\x11\x9c\ \xdf\xfb\x6a\x60\x3f\x8e\xc9\x1e\xb0\x30\x64\xc0\x30\x89\x07\x26\ \xe9\x73\x4a\x98\xfa\x7a\x02\x3b\x40\x91\x0f\x53\xf9\x61\x40\x18\ \x4c\xba\x17\xc3\x8c\xe0\x81\xcc\xe2\x1a\x98\x66\xa0\x1e\x1f\x9d\ \xf6\xec\x07\x6e\x30\xe9\x91\xca\xf8\x07\xb3\x06\xd8\xdd\x7e\x3b\ \xce\xce\x3a\x2a\xcb\xf1\x0f\x30\x34\x81\xc3\xc4\x7c\xff\x64\xd6\ \x4f\x29\xe5\xe4\x64\x67\x61\xc6\xff\x3b\x3f\x80\xa1\x0f\x38\x9c\ \x49\xc7\xf7\x82\x89\xd8\x8b\x3f\xe3\x96\x32\x36\x81\x7f\xcd\xe5\ \x1e\x02\xc6\x3e\xd8\xdf\x9d\x74\x18\x08\xc6\x3e\xd8\xdf\x8b\xf9\ \x86\x60\xcc\x26\xf0\x0f\x83\xa1\x0f\xc6\xf5\xeb\x7c\xb8\x9f\x02\ \x8f\x63\x1f\x80\xb1\x7a\x83\x8c\x05\x70\xa4\x61\x8c\x27\x10\xd9\ \x21\xd7\xb8\x7e\xd0\xc7\xfc\x43\x8b\x8f\x51\x76\xc6\x64\x02\x99\ \x7a\x29\xf7\x61\x80\x9b\x31\x50\xff\x8e\x51\x01\x0f\xe3\x83\x0d\ \xc3\xc5\x01\x29\xfa\x74\x04\x9e\x79\x68\x23\xc6\xa8\x02\xc7\x60\ \x02\x07\x92\xe9\x63\x33\x1b\xd7\x50\x03\x38\xc6\x19\x33\xc6\x73\ \x70\x0c\x93\x0e\xa0\xd2\xc7\x20\xec\x0f\x6a\x03\x4b\x19\x1b\x03\ \x18\xfb\x60\x0c\x4d\xe0\xcf\xb1\xf2\x5d\xf8\x88\x3f\xa9\x0d\x60\ \xe3\xd8\x86\x00\x63\x13\xc8\xd0\x89\xfd\xa9\x2b\x08\x3f\x1f\x7c\ \x67\xc0\x80\xc9\xbc\x31\xce\xd8\x30\xa4\xcf\xa8\x13\x7f\xea\xca\ \xef\xe2\x81\x1f\xc8\x2a\xdc\xf7\x0a\x70\xb1\x8d\xcd\x05\x18\xbd\ \x09\xfc\x69\x2b\xbe\x93\x64\x1d\x58\x19\xd4\x3c\x73\xb2\x12\xc6\ \xea\x00\x0c\xe7\x83\x31\x30\x81\x3f\x54\xd5\xf7\x0e\xee\x1f\xba\ \xfd\x1a\x07\x3b\x76\xda\xdf\xeb\xcd\x00\x0c\xd4\x18\x06\x35\xfd\ \xec\xec\x5c\xfd\xae\x4f\xbf\xe4\x8e\x51\xe3\x0c\xc6\xbf\x36\x81\ \x9c\x23\xd4\x75\x2c\x60\xe8\x83\xfd\xda\x04\xfe\x1c\x38\xbf\x39\ \x45\xc9\x50\x00\x7f\x6d\x02\x07\xa8\x9c\xdf\x63\xc0\xd8\x4d\xe0\ \x20\xfa\x5c\xff\x4e\xf0\xfa\xc1\xd8\x07\xfb\x65\x1c\xf5\xd3\xec\ \x8e\x7d\xe6\xe1\x9f\x05\x31\xa4\xff\x6b\x2d\xda\x5f\x81\x31\xea\ \x9b\xa1\x60\xe8\x83\x8d\x62\x54\xf5\x55\xe0\xb7\xc9\x0f\x33\x0f\ \x36\x8a\x8c\x68\x05\xfe\x80\xaf\xca\x58\x00\x47\xd3\xab\x18\xb6\ \x7f\x3f\xfb\xf7\x13\x8c\x7d\xb0\xbf\xba\xf2\xf7\x4f\x30\xa4\xff\ \x37\x57\xfe\x06\x81\xa1\x0f\xf6\x17\x57\xfe\x06\x63\x14\xeb\xa0\ \xbd\xf8\x13\x9d\xcd\x08\x8c\x4d\xe0\x7f\x8e\x25\x8c\x7d\x30\x06\ \xf8\x4b\xf4\x47\xbb\x14\xf6\xd7\x02\xe3\x51\x2e\x45\xfd\xb5\x31\ \xc9\xd8\x07\x1b\x8a\xbf\x35\x26\x47\xbb\x14\xf4\xb7\x04\x70\xb4\ \x4b\x41\x7f\x4d\x00\x47\xb9\x14\xf4\x7f\x56\x00\x47\xb9\x16\xf9\ \xd7\x66\x66\x18\x9b\xc0\xa1\xf8\x5b\xab\xf1\x8c\x7d\x30\x06\xf8\ \x5b\x53\x83\xbf\xdc\x08\xf4\x1d\x7f\x4b\x00\x47\x6b\x02\xff\xd6\ \xd4\xe0\xe8\x36\xc3\xfc\xdf\x15\x40\xc6\x26\xf0\x6f\x39\x1c\x0c\ \x30\x96\xa5\xa0\xbf\x81\x31\x2d\x05\xfd\x05\x8c\x69\x29\xe8\x2f\ \x60\x0c\xf3\x60\x7f\x07\x0c\xe9\xff\x07\x83\x80\x31\x2d\x05\xfd\ \x05\x30\x36\x81\xff\x39\xfa\xe3\x4b\x41\x8c\xe8\xff\xb7\x97\x82\ \xfe\xde\xf6\xbf\x21\xf8\x97\xf3\x60\x7f\x0c\xbf\xb5\x1d\xe7\x0f\ \xe0\xb7\xb6\xe3\xfc\x09\xfc\xb7\x4d\x20\x43\x1f\x6c\x14\x6b\x91\ \x7f\x0a\x63\x58\x0a\xfa\x2b\x60\x2c\x80\xbf\x3f\xbf\x38\x6a\x30\ \xa4\xff\x1f\xf4\xc1\xfe\xdb\x26\xf0\xfb\xd6\x8a\x41\xf8\xcf\xd1\ \x1f\xc7\x38\xc6\x31\x8e\x71\x8c\x63\x1c\xe3\x18\xc7\x38\xc6\x31\ \x8e\x71\xfc\xaf\x07\x7a\x4e\x18\x3a\x99\x4a\x02\xa3\x3b\x27\xac\ \xf6\xd4\xe6\x1f\x67\x85\x35\x78\x9a\xf5\x9e\x17\xd6\xe8\x73\xac\ \xf7\xcc\xb0\xa6\xc0\x33\x3f\xce\x0d\x6b\x79\xec\xdb\x7b\x76\x58\ \xeb\xb3\xe0\x9f\xe7\x87\xbd\x4f\xfa\x79\x86\x58\x79\x3e\xe8\xae\ \xad\x00\xf4\xd6\xe6\xf1\x73\xc4\xc6\x31\x8e\xff\xf5\x60\x16\x82\ \x18\x30\x2b\xcd\x8e\xde\xb3\x03\xd0\xff\x63\x70\x16\x21\x21\x1e\ \x76\x16\x3c\x4e\x90\x95\xa3\x77\xea\x10\x2b\x24\xc4\x09\x00\x9f\ \x20\x17\x97\x50\xdf\x62\x0a\xbf\xd0\x04\x00\x08\x1c\x44\x56\x8e\ \xbe\xa9\x4d\x1e\x21\x21\x2c\xe0\x86\xef\x05\xd9\xfa\x0b\x64\x02\ \x78\x3c\x1f\x2f\x18\x50\x20\x3b\xc0\xf5\x2f\xfd\x63\x51\x82\x02\ \x03\x6a\xc4\x3f\xa8\x46\x3c\xe8\xa1\x8b\x03\xc0\xfe\x8f\xb7\xbd\ \x05\xfe\xb5\x59\x65\x54\xcf\xa2\xd4\xa5\xc1\xd8\xf4\x6c\xfd\x79\ \xc3\x91\x75\x6d\xd8\xc5\x91\x75\x6d\x41\xc6\x0f\x7d\xfb\xe3\xdc\ \xc6\x71\x9d\x3b\x8e\x71\xfc\x9f\x07\x87\x48\x2f\x06\xaf\x54\x62\ \xfb\x1e\x8b\x0c\x51\x42\xdf\x9f\xa3\x0b\x1b\x6c\x03\xd7\x77\x05\ \xe0\x43\x5e\x0e\x0e\xd6\xde\x24\x80\xe9\xc7\x56\x2b\xae\xef\x89\ \xb9\x85\xd8\xb8\xf9\x99\xe0\xab\xef\x60\x47\xd3\xc3\xff\x9c\x22\ \xc2\xcc\xcc\x82\xc2\x3f\xd6\xea\x09\xf0\x39\xaa\x9f\x31\xcc\xcc\ \x18\xc0\x3c\x60\x0b\xc5\xc4\xbe\x5a\xe2\xf8\x85\xd9\x58\xf8\x44\ \x84\x7f\x10\xe0\x85\xcf\x21\x55\x36\x11\x7e\x66\x61\x9c\xa0\xe0\ \x0f\x65\x8d\x12\xe6\x82\xe9\x99\x71\x3c\x22\x03\x17\x82\x59\xbf\ \x13\x00\x80\xe9\x1f\x9a\x1d\x6d\xf1\x44\x8e\xbe\x16\xfc\x03\x13\ \xfb\x5a\xcc\x3b\xf8\x39\x6f\xdf\xf3\x89\x83\x9f\x7f\xe7\xa8\xc8\ \xe0\xd5\x7f\x94\xf0\x84\xc1\x89\xfb\x09\x33\x78\xde\xcb\x52\x46\ \x0b\x68\xbc\xdf\x59\xfa\x3f\x16\xa8\x1d\x23\xc1\x3f\x0a\xf8\xc3\ \x76\x8c\x41\xcc\xd0\x96\x16\x35\x6e\xcb\xc6\x31\x8e\x71\xfc\x3b\ \xf0\x88\xf6\x41\x90\xf1\x6b\x56\xd1\x7e\x30\xde\xcc\xc3\xf1\xe3\ \x3d\xe3\xbd\x0e\x3f\xf3\xf7\xa9\x6c\x36\x91\x7f\x6e\xca\xc1\xf6\ \xbe\xe3\xff\x61\x78\x44\x45\x07\xd9\x08\x61\xf4\x7d\xdf\x3b\x1c\ \x1b\x3b\xe0\x15\x65\x07\x02\x02\x03\xb6\xb6\xf1\xa1\xef\xfb\x36\ \x9a\x70\x8a\x8a\xb2\xe3\x44\x30\xf0\xdf\x00\x83\xc7\xf1\xb3\x71\ \xcc\xf0\x8a\x05\x87\x13\x9d\x28\x30\x60\x5f\x08\x71\x40\xe3\x98\ \x99\x99\x87\xec\x18\xe9\xab\x60\x5f\x05\x98\xd8\x38\x39\x01\x4e\ \x40\x40\x60\xe0\xbe\x0a\xc1\x9f\x15\x10\x11\x15\xc5\xf1\x32\xb3\ \x89\x8a\x0e\xb4\x67\x3c\x3f\x2a\xc0\x04\x2b\x86\x81\xc6\x97\x57\ \x68\xe0\xd6\x3c\x8e\x1f\x15\x40\x6d\x3e\xcc\x3c\x68\xdf\x24\xe1\ \x1f\xdc\x65\x11\x15\x19\xbc\xab\xa9\x97\x43\x7c\x90\x83\x1c\x68\ \x21\x2c\x43\x36\x3d\x09\xfe\xe8\x02\xc6\x3b\x22\xb9\x06\x75\xd1\ \x60\xfc\xec\x42\x3e\x86\xef\xf1\x3f\xde\x0b\x33\x7c\xdf\x57\xc1\ \x11\x2c\x36\xdf\xf0\x65\xf7\x62\x40\x17\x8e\x50\xc1\xe1\x37\x9b\ \x0d\xec\x42\xc6\x04\x50\xfc\xff\xb7\x57\x04\xf5\x53\x28\xa0\xef\ \x1b\x08\x7f\x6c\x5e\x93\x41\xac\xfd\x2b\x1f\x05\x9d\xe3\x1c\xf7\ \x53\xc6\x31\x8e\x71\x8c\xe3\x7f\x36\xd8\x27\x88\xfe\x03\x63\xdb\ \x63\x8e\x15\x10\x1d\x04\x81\x5f\x67\x1a\x48\x7d\x70\xf6\x91\xcc\ \x3e\x03\x0c\x21\x3f\xc4\xdb\x1a\x19\x42\x43\xf3\x8f\x69\x36\x9c\ \x41\xfe\x21\xf3\x2a\x23\x61\xc2\xd0\xfc\x03\x7d\x2e\xbc\xc8\x2f\ \x7e\xf3\xc2\x39\x34\xbf\xe8\x4f\x7f\x11\x2f\x32\xa2\x97\x04\x50\ \xef\x73\xa4\x8e\x13\x41\x9f\x8f\xf8\xa3\x0f\xa6\x9f\xf9\x19\xfc\ \x3a\x65\x22\xfa\x7c\xe4\x0a\x08\x8f\x44\x1f\xf5\x03\xd1\x09\x36\ \x3c\x0f\x07\x07\x81\xf1\x8f\x1d\x79\x19\xf2\x8d\xc0\xc1\xd7\xcb\ \x39\xfe\x3e\x47\x5e\x70\xf8\x76\x0c\x60\xe0\x00\x3f\xbb\xf7\x9e\ \xd0\xeb\xaa\xe3\xbe\xbb\xab\x22\x0c\xb3\x0f\x64\xe0\x00\xc1\xe1\ \xef\xcd\x01\x29\xf2\xf1\xf7\xbb\xd3\xc3\xb8\xc3\xd8\x9f\xf9\x07\ \xc7\x38\xa2\x13\x31\x00\x47\xf8\x5e\xd8\xb0\x6c\x64\xc8\xc0\xbe\ \x18\xa8\x8f\x26\xab\xa8\x20\x1f\xc7\xf0\x27\xd4\xfd\x64\xa0\xe8\ \x80\xa7\x84\x5e\x8c\xe6\xf7\x3e\x03\x46\xf0\xbf\xfa\x75\x06\x63\ \x06\x7e\xaf\x05\xda\xe7\xb8\x5e\x67\x9e\x63\xb8\xba\x30\x66\x20\ \x8e\x95\x83\x7f\xa2\xa8\x08\x9a\x1f\xd3\x17\x2e\x31\x9c\x91\x44\ \xf1\x53\x85\x0c\x60\x20\x4f\x3f\xcf\x05\x61\x1f\x88\xf4\x8b\x03\ \x43\x30\x64\x60\xaf\xe4\xf3\xa3\x02\xc4\xd1\x2f\x00\xfc\xc3\xe4\ \x67\xc4\x40\x4c\xef\x2d\x0e\xad\x07\xda\x06\xd6\x91\x1a\x30\x60\ \x08\xfe\x60\x60\x6f\x88\x09\x29\x63\x60\xd5\x79\xe0\x3d\x07\x17\ \x71\xd8\xdf\x0a\x33\x62\x20\x86\x40\xe0\xe0\xe8\x27\xfc\xab\xdf\ \x5c\x30\x64\x60\x1f\x7a\x59\xcf\xf3\x8b\xfc\x03\x86\xe0\xe0\x57\ \xfc\x23\x49\x7e\x3f\x46\x90\x40\xb4\xef\x7f\x45\x9e\x21\x03\x7f\ \x16\xf0\xcb\xec\x03\x87\xe0\xbf\xfb\x81\xd6\x08\x0c\x1c\x15\x18\ \x19\x81\xb1\xfc\x50\x84\x85\x41\xfe\xb1\x58\x41\x26\x06\xf9\xc7\ \x64\x05\x85\x87\xe6\x1f\x66\xe6\x81\x31\x78\x87\xe6\x1f\x93\x32\ \x62\xc4\xc0\xb1\xfc\xd6\x8f\x11\x03\xc7\x22\x0a\x58\x06\xf9\xc7\ \x24\x0a\x3f\x19\xc8\x68\x41\xe6\xd7\x60\x6c\x45\x47\x8f\x3f\x68\ \x04\xfe\xd5\x6f\x2c\x19\x1b\x81\x31\xe0\x77\x87\xe0\x7f\x9b\x81\ \x23\xe9\xb0\xd1\xe0\xbf\xce\xc0\x71\x8c\x63\x1c\xff\x21\xa0\xf3\ \xc4\xfa\xf0\x2f\x01\x8c\x7f\x27\x77\x1c\xe3\x18\xc7\x38\xc6\x31\ \x8e\x71\xfc\x0f\x07\x86\x79\x98\x0f\x64\xfe\x99\xb5\x7e\xc2\xb0\ \x27\x2f\xfe\x91\x93\x7f\x46\x38\xd8\xf2\x8f\x9c\xec\x33\xd2\xb1\ \x7d\x7f\xe0\xa8\xc0\x11\x0f\x66\xfd\x03\x47\x43\x8d\x78\xea\xde\ \x5f\x3b\x59\xf9\xcf\x75\xf0\x88\xe5\xff\x81\x0e\x1e\xf9\x54\xc2\ \xdf\xef\xe0\x91\x4f\x1d\x64\xd0\xc1\xac\x63\x3b\x90\x6d\xe4\x63\ \x2d\x87\x76\x30\xeb\x58\x4f\x7c\x1b\xf1\xdc\xd4\x21\x1d\xdc\x7b\ \xc0\xd1\x98\x08\x8c\xf8\x8d\xc6\xc1\x1d\xcc\x3a\x5c\xb3\x86\xc7\ \x10\x01\x62\x1b\xe1\x13\x4a\xfd\x69\xc6\x50\xfe\x90\x0e\x1e\x29\ \xf1\xf7\xfa\x8f\x65\x5f\xf6\x90\x0e\x1e\x69\xe5\xe0\xfb\x77\x5a\ \xfa\x56\x55\x98\x98\xf0\xa3\x39\xd9\x69\xb0\x82\x63\x3c\x55\xf6\ \xbd\xa8\x5e\x6e\xf6\x7d\x1b\x04\x3f\x8c\x08\x0c\xc6\xe0\x33\xaf\ \x86\x4c\xa2\x63\x08\x2c\x1c\xfd\xed\xea\xfd\xc8\x47\x9f\xfc\x70\ \x8c\xb2\xfc\xc1\x23\x78\xe8\x82\x57\xdf\xf3\xbe\x0f\x7a\x11\xfa\ \x29\xf5\xcb\xc5\x2f\x0f\x9f\xfa\x65\x07\xf7\x27\xe8\xfb\x6a\x05\ \x67\x5f\xef\xfe\xd0\xeb\xbf\x5e\x79\xff\x65\x07\xff\xa3\x65\xf8\ \xbe\x1a\x0f\xf9\x38\xe2\xf0\x18\x7c\xe8\xd9\x90\xb5\xfc\x1f\x87\ \x52\xf5\x32\x9e\x15\x6d\xc6\x0f\xa6\x8e\x62\xc9\x63\xf0\xb9\x9e\ \x43\x86\xff\xcf\x04\xfd\xcc\xee\xff\x9e\x10\x07\xdb\x28\x24\x74\ \xf0\xb9\x9d\x43\x9a\x3c\xc0\x05\xf8\xf1\xdd\x94\x31\x7c\x2a\x6d\ \x88\x09\x1e\xa2\xf5\xf1\x3f\x30\xba\x12\x07\x61\x70\xf9\x7f\xfa\ \xc4\xc7\xc1\x87\x8a\xfd\xe9\x3d\x9a\x83\x55\xe8\xaf\x27\xc3\x31\ \x7d\xdc\x1a\xa5\xf9\x1c\xec\xc2\x0d\x73\x20\x1e\xfa\x59\xac\xef\ \x4d\xc3\x8d\xa1\x2e\x0c\xce\xbd\x1c\x22\x18\xcc\xfd\x9f\xbd\xea\ \x17\xc7\x9f\x4a\x65\x34\x9d\x35\x58\x85\x0e\xd6\x29\x3f\x1a\x88\ \x8e\x26\x6c\xdf\x28\x1b\x4b\x03\x06\xdb\xc8\xc1\x83\xb2\x7f\x80\ \x71\xf5\x0d\x5d\xb4\xca\x63\xfa\x76\xc9\xaf\x3a\xb8\x5f\xc0\x08\ \x7d\x8d\xed\x1d\x80\x3f\x3e\xc7\x34\x0a\x6b\xff\x2b\x15\x3a\x90\ \x2c\xbe\x9f\x4e\x7f\x1f\x8f\xe2\x78\xc4\x21\x36\xf2\x9f\x9d\xd6\ \x5f\x52\x2f\x27\x50\xc6\xf7\x69\x10\x54\xaf\x8c\xf2\x7b\x4a\x23\ \xab\xd0\xef\x0a\x8a\xf8\xb3\x2a\x7d\x02\x40\x18\xf5\xb7\x9a\x06\ \xdb\xc8\x7f\x1a\xbd\xbe\xcf\x22\xf5\xfd\xfa\xb9\x8f\x16\xe7\x18\ \x1d\xd3\xc1\x36\x72\x78\xab\xc1\x31\xa0\x2d\xa3\xc7\x90\x0e\x1e\ \xae\x7e\x63\xe8\xd4\x7f\x60\x70\xf9\xc3\xad\xe7\xf5\x97\x3f\xd6\ \x5f\xbe\x8d\x5a\x85\xf6\xf1\x7f\xcc\xdf\xc4\x1e\x6c\x23\x87\x1f\ \xf5\x84\x7f\xd1\xbd\x43\x6d\xe4\x08\xfc\x25\xfc\xf3\xd3\xa6\xa3\ \xc3\x10\x1b\x39\x42\x11\x63\xfe\x44\x29\x8a\xc1\x61\xc6\x9f\x3e\ \x13\x74\xe4\xcf\x2f\xfc\xbe\xc5\x1c\xf9\xf3\x0a\xbf\x7f\x18\xc0\ \xc8\xdf\xef\xf8\xfd\x23\x64\x7f\xf1\x7d\x8e\xdf\x3f\xa3\x78\xe4\ \xcf\x1f\xfc\xfe\x19\xc4\x23\xc6\x91\xff\x0b\x3a\x78\xe4\x89\x82\ \x3f\x70\x46\xf0\x88\xe5\xff\x81\x0e\x66\x78\xb6\xf2\x0f\xfc\x7e\ \x07\x8f\xfc\xfd\x8a\xdf\xef\xe0\x91\x67\x82\x7e\xbf\x83\x47\xfe\ \x04\xd3\x5f\xe8\xe0\xbf\x1d\x66\xfc\xe9\x2f\x17\x0c\xb6\x91\x7f\ \xfa\x60\xf8\x5f\xc6\x91\xbf\x89\x21\x2a\xf4\x4f\x7f\x49\x66\xb0\ \x8d\xfc\xd3\x07\xb7\xff\xcf\x8b\x23\xc7\x86\x51\xc6\x91\xff\x1a\ \x63\x9a\x8a\xfb\x37\xf8\x55\x1c\xf9\xbb\xf8\x55\x1c\xf9\xbb\xf8\ \xe5\x54\xdc\x6f\x62\x4c\x73\xad\xff\x06\x83\xcb\xff\xd3\x2a\xf4\ \x97\x53\x71\xe3\x18\xc7\x38\xc6\x31\x8e\x71\x8c\x63\x1c\x7f\x01\ \x67\xd5\x36\xae\xe5\x60\x15\x46\xa7\xed\x39\xd6\x29\xad\x52\x47\ \x77\x2b\xf7\xee\x58\x46\xbd\x4d\x1d\x8b\x3b\x7b\x00\xe0\x75\x5c\ \xb7\x6a\x85\xe6\x51\xaf\xda\x42\xd5\x0d\x22\x9b\x27\x33\x37\xf8\ \x4e\xe2\x93\xbc\xb2\x67\xc5\x2c\x8c\xc2\xc7\x28\xcd\x29\xea\x87\ \x94\x65\x25\xe5\x16\xab\x5f\x78\xb7\xdd\x22\xff\xd1\xe3\x90\x6d\ \x12\x51\xf7\x23\x8f\x05\x67\x4d\xd6\x56\x7e\xb4\x6f\x5e\xcf\x21\ \xf6\xa8\x55\xd7\xf7\xe5\xf3\x99\x6f\x90\x3b\x81\x37\x7e\x9c\xb7\ \xd6\x39\x82\xd7\x34\xed\x14\xc6\x39\x8e\x79\xe1\xf3\x29\x29\xaf\ \x8e\x2d\x34\x8c\xaf\x3f\x56\x9c\x11\x10\xa3\xb5\x4e\xd2\xa5\xf8\ \x88\x5d\x3d\xf5\x4b\x6b\x31\x92\xc3\x2b\x6e\xa1\x7e\x38\x93\x8b\ \xb2\xca\x3e\x09\x90\x2c\x84\x70\xb4\x17\x3b\xd9\x81\xf8\x99\xf9\ \xc0\x51\x34\xe5\x6f\x3c\xb8\x24\xf2\x0d\xe7\xd7\xf1\x85\x9e\xbc\ \x82\xac\x38\xad\xbc\xfa\xc6\x71\xc4\x89\x5c\x99\x4a\x4a\x9a\x0f\ \x26\x6c\x10\x3c\x53\x66\x71\xd0\x38\xd3\x95\xe7\xa5\x76\x9c\x5c\ \xe5\x5a\x12\xf8\x8a\x9d\x7e\x85\xb0\xb7\x5b\x5c\xbc\xfc\x75\x8a\ \x9f\xd8\x09\x20\x0d\x26\x78\xb0\x56\x10\x7a\x88\x17\xee\x69\x09\ \x01\xcb\x25\x04\xda\x49\x75\x4c\x60\xea\x73\x56\xda\x4d\x7d\xb0\ \xca\xa3\x6d\xc1\x82\xf9\x0e\x8d\x07\xef\x6d\xe6\x84\x49\xf0\xd8\ \xcf\x22\x07\xc0\x1d\x3a\xb5\xc5\x3c\xd3\x95\x42\x12\x02\x3c\x53\ \x3c\x91\xe0\xdd\xda\x60\x02\x07\x8e\x74\x73\xd6\x6a\x2f\x70\x47\ \x33\x0f\x09\x34\x86\x2f\xf8\x57\xcc\x04\x64\xe3\x97\x1f\x96\xe4\ \x00\xb5\x45\xec\x34\xa2\xf2\x69\xaf\xb2\xb8\x57\x7e\x62\x53\xdd\ \x17\x73\x02\x77\x2c\x81\x82\x57\x6a\x46\xca\x55\x38\x81\xba\x25\ \x7c\xeb\x46\x00\x5b\x31\x6e\xac\xf0\x69\xc0\x0c\x7f\x56\x1a\x8e\ \x36\x61\x12\x8e\x84\xf5\xe0\xa0\x44\xd8\x68\x74\xfb\x2d\x86\x8d\ \x21\xb1\xd3\x16\x92\xe6\x00\x83\x0e\xd5\x20\x21\x60\x94\x20\x0c\ \x76\x75\xa8\xee\x83\x57\x14\x61\x50\xc6\x0e\xee\x1a\x00\x2f\xcc\ \x5d\xac\xbe\x20\x4d\x73\x3e\xb0\x79\x71\x6c\xe2\x8c\x8d\x3b\x35\ \x41\x01\x46\x49\x5e\x08\x2c\xa7\x78\x22\xf0\x4a\x18\x5e\x91\x5e\ \x03\x73\xe0\x66\x29\x0d\x6c\xf4\x11\x5f\x93\x54\x50\x89\x09\xc0\ \x7e\xe2\xa4\xbc\x4b\x06\xb2\xc9\x65\x47\x05\xf6\x30\xeb\x9f\x2e\ \x27\xef\x85\x65\x61\x77\x7f\xd3\x5b\xb5\xcb\x53\x0a\x5c\x94\x24\ \x24\xcc\xf0\xdb\x03\xb6\x60\xdc\xd0\x2b\x37\x17\xf0\x19\x90\xaa\ \x60\x8a\x93\x4b\xc1\x4b\x26\x76\xda\xdc\x2d\xf4\x8b\xb3\x84\x80\ \xae\x39\xdd\x57\xe7\x19\xa8\xc4\x06\x63\x3f\xf1\xea\xbf\x83\x25\ \x1b\x5c\xc3\xd1\xca\x88\x04\x8a\xe0\xf4\xfd\xe0\x28\x86\x98\x0c\ \x49\x60\x76\x77\x84\x12\x43\x41\x60\xbb\x10\x90\x22\x71\x00\x0b\ \x02\xad\x14\x16\x44\xd3\xc4\xc0\x3a\xf5\x5e\x2d\xc0\x7d\x62\x9e\ \x03\x99\x29\x82\xf3\x5b\x59\x94\xfe\xe2\xb9\x50\xca\xda\xc4\x49\ \x34\x0f\xbc\xb3\xd9\x31\x5f\xbf\xd8\x9e\xd5\xd1\x38\x37\x77\x48\ \x84\x96\x8d\x18\x01\xb5\xe3\xec\x34\x4e\xa5\xa5\xe0\x31\x81\xe6\ \x9e\x00\x2a\xd5\xf0\x55\xd8\xac\x6a\x95\xc9\x98\x35\x67\x13\xda\ \x53\xda\x30\xef\x78\xf4\xf9\x0c\xb7\x76\x64\x6c\xa6\x4e\xfe\x66\ \x18\xbb\x3b\xce\x82\xa4\xd7\xfd\x6d\x5f\xa6\xeb\x8a\x73\x5b\x30\ \xa2\x2b\xaa\x91\xeb\x8e\x6d\xbc\xfa\x06\x40\x74\xc5\x35\x8c\x34\ \x0f\xb3\xc4\xfc\xf9\xc0\xc5\xe3\xb6\xf9\x25\x70\xdd\x31\x86\x17\ \xbd\xf1\x13\xc5\xec\x11\x2f\x5a\x4f\x73\xc2\x90\x66\x23\x9f\x4b\ \x83\x56\xe9\xb0\x83\x67\xf2\xe0\xf9\x2a\x1d\x4f\x47\xf8\x2c\x04\ \x94\x96\x02\xd2\x5c\x02\x4d\xdf\x1b\xa3\x2f\xce\x09\x60\xf5\x89\ \x6f\x78\xf4\x25\x4b\xe3\xf0\xb9\x5e\x5c\x60\x2e\x38\x77\xa6\x9c\ \xbc\x84\x00\x70\x24\x01\x1f\xe5\x53\xaf\x3b\x80\x3e\x42\x9e\xdc\ \x8a\x3c\x98\x0f\x64\x71\xdc\x6c\x31\x20\xd7\x8b\x93\xf6\xb2\x71\ \xf6\x2b\x98\x25\x48\x53\x44\x14\xe0\x2b\xbe\x45\xf9\xde\x42\x1a\ \xc3\x10\xd7\x8c\x2a\xa0\xdf\x21\xc6\x95\x4e\x3d\xbe\x91\x19\xc0\ \x66\x48\x1a\x30\xd1\xe0\x33\x8a\x1c\xf6\x95\xa6\x17\x26\xa1\xc2\ \x04\x78\xb0\xca\x5d\x99\x9a\xb0\xe1\xd1\x9b\x14\x33\xa6\x33\x38\ \x5a\x33\x72\xb0\x81\x28\xbd\x54\x56\x14\xc0\x9a\x7e\x02\x7e\x93\ \x0a\x38\xc0\x64\x8c\x00\x1b\x33\xa8\xfd\x64\x02\x1a\x88\x61\x47\ \xb7\x60\x72\x9f\xbd\x04\x9f\x08\x7e\x47\x65\x81\x31\x97\x14\x0e\ \xca\x57\x23\xcc\x72\x4c\x56\x18\x88\x02\x67\xfb\xf2\xf8\xe5\x5e\ \xec\xe0\x30\xa6\xb4\x24\xd9\xbf\xd5\x7c\x2e\x68\xda\xe1\xb0\x14\ \x18\x7e\x9a\x04\x0e\x1f\xbc\x2f\x11\xd6\xed\x7a\x26\x9d\x5a\x5b\ \xaa\x03\xd0\xab\x66\xe4\xf0\xc1\xb9\x68\x1b\xb8\x66\x81\x18\x59\ \x41\x00\xf9\x50\xc2\x4e\xd3\xf5\xaa\xe6\x56\x75\x31\xda\x79\x18\ \x74\xae\x48\x8f\x5e\xda\x76\xf8\xa4\x80\x2b\x08\x77\xd6\xc0\xd0\ \x2c\xf1\xb9\x89\x69\x3e\xdf\xc7\x63\xba\x5c\x36\x53\xb4\x7a\xe2\ \x0c\x64\x73\xfa\xd7\xfd\x1a\x9d\x5e\xac\xc0\x7f\x12\x4d\xc7\x64\ \x65\xcf\x27\x4d\xe0\xf7\x15\x94\x19\x88\x54\x0b\x1a\x61\xc1\x5e\ \x8c\xdb\x5e\x7b\xea\xae\x79\x5e\xda\x3c\x7c\xef\xba\xc9\x47\xf2\ \xbd\xef\x69\xbe\x78\x19\xb1\xbe\x22\x40\x9b\xec\xd1\x51\x1e\xb7\ \x82\xcc\x39\x1b\x4d\x46\xf7\x75\x3a\x60\x33\x8b\xdf\xa2\xa9\xa5\ \xc7\xc9\x4c\xa5\x6a\x01\xfe\x9b\x6c\x16\x53\xc2\x5d\x10\x9d\xfb\ \xc5\xb2\x50\x18\x49\x5a\x7a\xcb\xa2\xa6\xba\x01\xf8\xb2\x5e\x5e\ \x88\xa1\x3d\x24\xf8\x69\x9b\x59\x3c\x78\x3d\xe3\xc9\x62\x7a\x26\ \x7c\xa5\xf6\x79\xd9\x6d\x73\x71\xb0\x85\xfe\xb9\x26\xbb\x7d\xa5\ \x5e\x71\xfc\x0b\x6e\xb5\xb2\x55\xb0\x8d\xa9\x02\x01\x8d\x4e\x8f\ \x32\x6c\xda\x3b\xe9\xab\xaf\x8a\x1e\x29\xdd\xef\x4d\x94\x52\x40\ \xc7\x64\xfe\x81\x62\x81\x88\xc6\x33\x4d\x3b\xd6\x3c\x8d\x6d\x9b\ \xfc\xca\xc7\x75\xc5\x21\x71\xe0\x96\xa6\x78\x18\x53\xa4\x76\xa0\ \xfb\x46\xa9\xe6\xc6\xa7\x1d\xab\x7a\x2a\x74\x76\xd9\x02\xd2\x24\ \x4c\x4a\x79\xbc\x59\xe5\x12\xba\xda\xc1\x99\x52\x48\x74\xdb\x8e\ \x44\xd5\xdd\x62\xce\x97\x78\x70\xea\x1d\xf1\x29\x4c\x14\x71\xde\ \xf8\xc6\x33\x73\xa1\x66\x7a\x9b\x7a\x8b\x65\xb9\xa7\x77\x08\x17\ \xf0\x6f\xf2\xc5\xd1\x0e\xac\x5b\x44\xcf\x7c\xcd\xe5\x30\x11\xbb\ \x7c\x8b\x18\xd8\x7c\x4e\x09\x93\x80\x49\xa8\x2a\x55\x2b\xb5\x6d\ \xbb\x2e\xc6\x9e\x0e\x59\xc0\xd7\xb3\xf8\xc0\x4e\x5b\x30\xa1\x57\ \xb9\x3c\xc0\x72\xaf\x3b\xc0\x33\x41\x5d\x22\x57\x55\xbb\x57\x54\ \x0a\x30\xb9\xda\x45\x26\x4a\xf7\x7c\xba\xb5\x2b\x03\xce\xf7\x3c\ \xa7\xaa\x88\x6c\x99\x04\x94\x70\xb4\x02\x4c\x7b\x8a\xd3\xe5\x98\ \xb3\x74\x9b\x1a\x4f\x9c\xf6\xe6\xc0\x30\x79\x58\x73\x05\xbb\x15\ \xc5\x4a\x36\x46\xc5\xef\x93\x77\xe1\x92\x25\x0f\x33\x83\x4c\x1e\ \x7d\x1d\xf0\xcd\x41\xec\x11\xef\xac\x3c\x41\xed\xd6\xf6\xbc\x56\ \x7d\x2b\x00\x07\x42\xca\x24\x5a\xbd\x72\x10\xeb\x95\xed\xc7\xbd\ \x5f\x84\x1a\xce\xf2\x12\xde\xca\x93\x8e\xd0\x89\xa9\x5b\x95\x4f\ \x1f\x72\x6f\x7b\xb8\x40\xce\xc7\xf3\xe5\x2d\xcf\xcb\xaa\x82\x47\ \x22\x8a\x9f\xae\x17\xe9\x52\x0f\x96\x31\xbc\x57\xaa\xb3\x25\xef\ \x73\xde\x39\xa3\x84\xbd\x12\xe7\x6e\xcb\x21\x62\xf9\x65\x47\xb5\ \x25\x53\xde\xc4\xb5\x64\xbc\x7c\x10\x52\x36\x6f\x97\xb8\x77\x68\ \x43\x79\x9c\x57\x77\xb9\x6f\xfe\xc7\xec\xd7\xdd\x4d\x3e\x05\x71\ \x07\x57\xd4\x18\xad\x6e\x6f\x75\xc5\x06\x7a\x4e\x57\x0c\x02\x1b\ \x6a\x6f\x29\x3c\x59\x28\x1c\x2c\xe2\xd9\xb6\xc0\xa2\xfe\x8b\x63\ \x2b\x93\x14\xdb\xac\x13\x87\xc1\xab\x39\x75\x4d\xb5\x62\x27\x22\ \x0c\x81\x92\x11\xb8\x22\x0c\x3a\xd8\x1a\x73\xd4\x8e\x5b\x16\xbe\ \xf7\x71\x29\xfc\x68\xba\x8f\x83\xd0\xb9\x62\xd6\x85\xbb\xcf\xf7\ \x5f\x7e\xb3\x52\x45\xa2\x26\xc1\x5a\x65\xe6\x8b\x63\x6f\x95\x35\ \xf9\xae\xc4\xe2\xc2\x62\xad\xaf\xbc\xa8\x68\xff\xd4\xea\x78\xbc\ \xb5\xb6\x7e\x1b\x39\xe6\xd1\x83\xd0\x58\xe7\xb6\xe4\x74\xd2\x07\ \xbf\x7d\x77\xdd\x2e\xce\xab\x8f\x6b\xfb\xd0\x9e\x64\x53\x4e\xd1\ \x9e\xc5\xb1\x35\x58\x54\x48\x24\x57\x5e\x7a\xdb\x59\x71\xff\xa6\ \xe2\x2c\x7a\xbc\x52\xcc\x82\xc7\x1d\x2b\xba\x93\x96\x38\x69\xc8\ \x5d\xf5\x6e\x2c\x4b\x4e\xa7\x74\x18\x55\x5c\x6e\x2b\x7b\xcf\xd5\ \x7c\x61\xb3\x65\x8a\x6d\x57\x45\x9c\xf3\xb2\x4e\x59\xe4\xcd\xa7\ \xcf\xe5\xa5\x99\x9b\x8e\xdc\x29\x94\x78\x20\xc1\x6d\xbe\xed\x1c\ \xd6\xff\xe1\xeb\xb2\x79\xaa\xee\x25\x96\x6d\x29\x8e\xaf\xe6\xd5\ \xef\x8d\xbb\x0a\x19\x5c\x76\xab\x66\x87\x3f\x72\xd8\xb4\xd1\x2a\ \x24\x0a\xb9\xe5\xba\x76\xaa\xd6\xf2\x42\xec\x0d\x9d\xe5\x1e\xd9\ \x16\x4b\xb9\xd5\x6e\x5b\xdd\x63\x07\xfe\xf4\xf8\x97\xfc\x14\xeb\ \xf0\x29\x76\x99\xca\xbb\xc8\xab\xa1\x52\xb4\xcf\xb7\xb6\xee\x36\ \x59\xdb\x61\xa4\x17\x5b\x70\x7e\x02\x80\xf6\x21\x38\x8d\xb8\x3c\ \xda\x3b\xa7\x68\xb1\x10\x41\xb1\xdd\xcb\x73\xdf\x4a\x9f\xb9\x5f\ \x85\xe3\x99\x9f\xa5\xad\xa0\x84\xcc\xa5\x3d\x36\x04\xe2\x2f\x4d\ \xd5\x9f\x74\x3c\x0b\xd3\xb6\x8a\x8c\x28\x74\x5e\xa4\xcd\x6b\xf4\ \xb1\xfe\x43\x76\xc9\x0b\xad\x35\x13\x92\xef\x7a\xe9\x50\x8b\xbb\ \xe7\xbc\xf8\xc0\x44\x39\xf6\x46\xf8\xb3\x6b\x84\xa9\x79\x87\x98\ \xb2\xcd\x45\xf7\xba\x12\x51\xa3\xb8\xbc\xfd\x2d\xb7\x5b\xab\x9f\ \xa9\x4f\x91\xf2\xb5\xbb\x92\xd3\xb9\xd5\x52\x68\xce\x6a\x4c\x5a\ \x65\xbc\xa3\xd2\xe3\x7d\xa6\x30\xdd\x13\xc5\xab\x42\xe9\x69\x85\ \x22\x53\xd3\xc8\x6d\xf9\xd4\xb6\x63\xad\xc1\x56\x39\xc2\xa7\xd6\ \x9e\x0d\x7c\x70\x40\x74\xe7\x14\x77\x2b\x0c\x4d\x93\x1e\x7a\xe9\ \x75\x28\x78\x27\xe4\xef\xe5\xdd\xe8\x91\x51\x57\x1f\xb1\xc2\x38\ \xce\xc2\xaf\x30\x67\x63\xcd\xb7\x4f\x01\xe7\x6d\x1d\x4f\x2b\x7d\ \x60\xea\x55\x73\xa1\x18\x62\xc7\x8a\x59\x8d\x38\x79\x38\xc2\x82\ \xcb\x14\xee\x89\xf8\xc5\x14\xca\x54\x3b\xc6\xbb\xc8\xda\x5f\xe8\ \xd9\xa5\x8b\x6a\x88\x6f\xf6\x02\xcf\x45\x14\xa7\x79\xcf\xa4\x18\ \x79\xea\x5a\x87\x37\x6e\x34\xbe\xbf\xff\x4d\x52\xf1\x13\x79\xaf\ \x17\xc2\x67\x4c\x2d\x7d\xf7\x72\x87\x40\x9d\xd2\x24\x56\xce\x26\ \xee\x5e\xb4\x21\x19\xb2\xd4\x33\xbd\xfe\x22\xce\x56\xde\x0c\xa9\ \x2a\x75\x5b\x16\x7b\xb1\x68\xdd\x33\x84\x60\xdd\xe5\xb4\x45\x10\ \x78\x21\xaa\x2b\xb7\x65\xc8\xcf\xbf\xe4\x99\x37\x31\xe2\xb5\x82\ \x37\x26\x0c\xca\x82\xa8\xff\xc5\xcf\x5b\x3b\x16\x24\xb3\xad\xdc\ \x67\x15\xd7\xc3\x66\x6f\xb0\x15\x84\x61\x95\x56\x5e\xcb\xb0\x69\ \x4b\x61\x0a\xc0\xac\x80\x06\x3d\x51\x79\x29\xde\xae\x5d\xeb\x40\ \x59\xbc\x58\x1b\x41\xdc\xb9\xfb\xc8\xc3\x99\x20\xec\x0d\x90\xa6\ \x82\x30\x8d\x6b\x66\x11\x6b\xcf\x95\xb7\x17\x94\xee\xef\xe8\x8e\ \x29\xf6\x4c\x55\x9b\x5c\xf0\x26\x50\x5e\xe5\x2b\xf3\xbd\xe7\x19\ \x0b\x37\x5c\xd7\x42\xd5\x10\x68\x24\x86\xa5\x66\x1c\xde\xb5\xf7\ \x56\x9b\x4e\xec\xfd\xf4\xe4\x29\x01\x12\xd1\xdb\xf3\x55\xca\x41\ \xdc\x31\xc3\x69\x11\x2b\xe2\xb9\xd3\x5e\x50\xa5\x9c\x05\xf8\x30\ \x32\x20\x20\x9d\x6b\x5b\x53\xf6\x7b\xb2\x0b\x82\x58\x1e\xac\x6c\ \xf7\xf7\x9b\x95\xec\xb5\xc1\xd9\xd7\x29\x02\xdb\xfc\xac\xf6\xf8\ \xbe\xeb\xc6\xf7\x75\xe5\xc5\x6a\x76\xdd\x98\xee\x2e\x6f\xef\x57\ \x1c\xc2\x02\x42\x30\x94\x90\xa6\xf8\xeb\xad\x4b\x72\x5b\x11\x9f\ \x9a\xf6\xb6\x92\xec\x1d\x01\x8a\x1b\x95\x4f\xb7\xce\x37\xd8\x34\ \x33\xfc\xec\x03\x93\x90\xf7\xf6\x1b\x35\x66\x96\x75\x5a\xc8\x7c\ \x4a\x3c\x57\xb4\x31\x75\x45\xf8\x74\x60\x4e\x9f\xae\xb4\x10\x04\ \x25\x56\x7f\x29\xbb\xb2\x02\x8e\x81\xb3\x0f\xbe\x1e\x94\x76\xb6\ \xb9\x7a\xe4\x83\x09\x1c\x54\x17\xa1\xc2\x7d\x8e\x5d\x50\x90\x5f\ \xec\x9a\x7f\x83\xbb\x98\x2e\x2e\xc0\x04\x62\xc0\x9e\x59\x66\x4b\ \xfc\x63\x3b\x4c\xa5\x4f\x15\x3a\x42\xce\xb6\xaf\xd0\x88\x8c\xbc\ \xc8\x96\x5a\x53\xef\x5b\x9f\x1e\x9d\x79\xb1\x62\xa9\xb4\xd3\x93\ \x8d\x0f\xc5\xfb\x2c\xc9\x8a\x03\x07\x64\x76\xef\x8f\xb9\xaa\x3c\ \xfd\xbe\x16\xe7\xae\xb9\xe5\xdb\x4f\xa4\x5d\xe7\xb8\x63\x8d\x5c\ \x0c\x21\x82\x3b\x4d\x62\xfa\xcc\x7e\x73\x22\x23\xaf\x9b\x37\x37\ \xf5\x38\x34\x7e\x5c\x06\x55\xa4\x19\xf4\x1a\xf3\x92\xce\x01\xca\ \x47\x8c\x71\x33\x20\x95\x3c\x10\x07\xe7\x48\xba\xbd\x0a\x8f\x74\ \x2b\x81\x39\xa1\xec\x68\xe4\xbc\xf7\xcb\xd6\x29\x35\x1d\x5f\x7e\ \x73\x5a\x02\x33\x48\x6b\xd2\xbb\x50\x96\x91\x33\xf5\x1c\x9b\x02\ \xb8\xef\x21\x0b\x94\xfc\xe1\x85\xb2\x86\xec\x7a\x9a\xae\x0e\x58\ \xb5\xc7\x9e\x0b\x78\x4c\x4d\xe0\x3e\x02\xdc\x7b\xcc\xe5\x33\x75\ \x29\x73\x00\x76\x0e\x12\xe8\xb4\x32\xad\x66\xf6\x9a\x79\xbb\x3c\ \x66\x85\x5b\xb4\x48\x37\x9e\xa7\x58\x2e\xf1\x12\xc8\x62\xfa\xc0\ \x49\x89\xed\x40\xf2\x26\x86\x9a\x09\xee\x81\xbc\x5e\xbf\x08\x98\ \xea\x4e\xba\x14\x23\xb3\xc6\x3f\xd2\x76\x7a\xb0\xa7\x03\x6c\x6a\ \xda\xf5\x33\xa9\x39\xde\x9b\x44\x2c\x01\xe9\x1e\x58\xf5\x15\x69\ \x6b\x6e\x6e\xb1\x2f\x73\x9d\xec\x2b\xb4\xbf\x98\xd7\xea\xe1\xf5\ \x4a\xe6\x39\x77\x4d\x96\xf8\xc3\x71\xec\x5d\x78\x29\x44\x8b\xd3\ \x5f\x9b\x7c\xaa\x30\x93\x8f\x19\xa6\xd7\x02\x8e\x98\xcc\xd0\xb9\ \x1f\x5e\x26\xad\x71\x6f\x28\xdd\x4d\x8a\xba\xcf\x79\xc4\x5b\xf2\ \x8d\xd8\x81\xd5\x76\x7c\xec\x66\x9c\x6c\x5b\x43\x45\x5f\x6c\xcc\ \x94\xbf\x2f\xb0\xcf\xaa\xe5\xfd\x19\x37\x0a\x6c\x9b\x30\x38\xc5\ \x46\xd9\x58\x5d\x31\xc9\x89\xda\x55\xa5\x35\xd3\xac\x38\x35\xe3\ \x78\x47\x8e\x1e\xe2\xff\x6d\xe1\xce\xe9\x3a\x31\xdf\x5a\xe3\x43\ \x35\x45\x4a\xeb\x23\x77\x45\xbc\x93\xbd\x2f\xc0\xbd\xb2\x67\x9a\ \x33\x6c\x86\x7a\x87\x6b\x2e\x52\xbf\x39\x5a\xc1\xfa\xe9\xc5\x8f\ \x22\x91\xb1\x79\x6e\x8f\x93\x0b\x57\xb9\xe0\xd8\xc8\xae\x6f\xea\ \x4e\x89\x3d\x72\xc9\x50\x5e\xc5\xb4\x94\xc3\x71\x02\x70\x34\x3b\ \x67\x37\x3b\xac\xb3\x23\x8a\xd4\xa2\x61\x59\x21\xa0\x27\x65\x17\ \xb1\x75\x7a\xfd\xee\xb2\x67\x07\xbe\x6e\x3f\xbd\x13\x07\xee\x22\ \xae\x5b\x30\xfe\x71\x09\xfb\x76\xee\x56\xb5\xce\x8a\x87\x96\x58\ \x46\x58\xa6\x43\xc1\x2e\xf2\xd6\xb7\xe2\x60\xa2\xab\xdc\x4a\x26\ \x51\x20\x2b\x26\x5f\x4a\x52\xbf\xc6\x16\x32\x33\xdb\xe1\x83\x47\ \xb1\x3d\xd7\x5a\xe8\x73\x2b\xdd\x8f\x17\xeb\x21\x1e\xbc\x70\x98\ \xa9\xb5\xd9\xac\x6a\x52\xde\x79\x4b\xb1\xe4\x75\x6e\x98\x84\xa9\ \x09\xef\x3c\xf7\xb4\xa5\x41\xd1\x4e\x76\x0d\xf5\xa8\x28\x0d\x5c\ \xba\xa6\xd6\xc8\x68\x59\x79\x71\x5b\x95\xa2\x8d\xee\x89\x1a\xd6\ \x23\xc2\x57\x08\xb7\xf8\xbd\x69\x59\xc8\xda\x02\xcc\x15\xed\xde\ \xa4\x51\xbe\x59\x22\xf1\x8e\xb1\x56\x8f\x8e\x1c\x9c\x19\xa8\x83\ \x81\x1a\x3e\xc2\xd3\xe1\xb2\xab\x8b\xe2\x5a\xfc\x44\xe8\xf6\xbc\ \xf7\xd4\x4e\x50\xb0\xbb\x2d\x53\x4a\x85\x16\x7f\x29\xbf\xef\x46\ \x7e\x38\x9a\x7d\x3f\x3a\x2e\x7f\xb7\xfe\x2e\xdf\x2e\xd4\x1e\x3b\ \x44\x13\x48\xe7\x69\x3d\x25\x9b\xf5\x82\x1b\xcb\xe3\x36\xe4\x94\ \xbf\xc8\x99\xeb\x9d\x63\x53\x03\x1b\x72\x31\x4d\x5d\xdf\xff\x40\ \x95\x37\x09\x07\xaa\x88\xd2\x8f\xca\x03\xf6\xce\x06\xdb\xb6\xe4\ \xbd\x7f\x2a\x63\x76\xf8\x8b\x62\x8e\x83\x4f\xdb\x82\x34\xfb\x13\ \xe2\xb5\xf1\x7c\xd9\xdb\x4f\xdf\x52\x7b\x9c\x9f\x39\xcd\x1c\xa3\ \x36\xb3\x4c\xbf\x73\xbb\x63\x33\xb2\xee\xf2\x43\xa8\x72\x8f\x09\ \x9b\x5a\x2c\xcb\x0f\xcf\xca\xa9\x22\x38\xa2\x0a\x5e\x42\x41\x76\ \xe9\xfc\x4b\x5a\x4f\xbe\x14\x4c\x30\x57\x7d\xd5\x81\x58\xaa\x38\ \x4b\xb4\x75\x68\x07\x71\x74\x94\xa6\x6e\xfe\x48\xa6\xb6\xa5\x28\ \x65\x84\xe5\x4c\x64\x67\x5f\x6e\xe7\x73\x7c\x33\x78\xc0\x0a\xd8\ \x81\x73\x93\x1e\x3e\x1c\x7b\x27\xfb\x22\xcb\xbd\xd6\x05\x5b\xf5\ \x62\x2e\xa8\x08\x9e\x11\xd7\xad\xb8\xb7\x9d\xc9\xff\xe0\x5e\x62\ \x29\x85\xb4\x03\x00\xd8\x10\xe8\x7c\xed\x08\x8c\x98\xdc\x1c\x54\ \x17\xea\x43\xe7\xa9\xc9\xa0\xce\x2b\xed\xb4\x2d\x7c\x46\xb9\xd0\ \xea\xf2\x6c\x1a\xf3\x5e\x9e\x59\xc0\x2b\xa7\x8a\x07\x4a\xfc\x4c\ \xad\x57\xf6\x52\x89\x32\x86\x47\xcb\x8f\x1c\xbd\x6e\x06\x47\x76\ \x95\xc1\xdc\x77\x92\x37\xa4\x32\x8e\x18\x68\x91\x61\xeb\x5d\xbb\ \xdb\x44\x39\x09\xd5\x75\x33\x32\xf3\xe6\xe7\xa6\x5b\x1e\x24\x06\ \x35\xd9\x43\xf5\xc9\xcb\xf6\x00\x29\x56\xe9\xd2\x2e\x76\x70\x8c\ \xdd\xab\xff\x3e\x79\xca\x0c\xfe\x37\x93\x7a\x16\xb6\x7d\x08\x59\ \xc1\x2b\x72\x5c\x53\x26\xf7\xd5\x9b\xa3\x1f\xe3\x8d\xdc\x97\x12\ \x56\x7f\x94\xe1\x5d\x08\xd4\x4f\x2e\x06\x8e\x9b\xe9\x6b\x23\xb4\ \xe5\xdc\x22\xd2\x9e\x35\x66\xed\x28\x4a\x17\x75\x7d\xfd\xbc\xa7\ \x29\xe3\xcd\xd1\xb4\xf7\x6e\x25\xfa\x7e\x75\x46\x0a\x51\xed\x4f\ \x6a\x0c\xa6\x4e\x52\xd2\xd5\xe4\x09\x9b\x0f\xfc\x31\x94\xed\x33\ \x69\xd3\xbb\xfd\xac\x44\x59\x0f\x96\xc5\x39\x17\xc4\xcd\xbf\xd9\ \x12\xfe\xc4\xfe\xc4\x8d\xe8\xa5\x84\x59\xd9\x0e\x21\x9b\x39\x77\ \xd9\x49\x14\xd6\xbe\x5e\x97\xb4\x77\xd3\x49\x2d\x0c\xc9\xf3\xc4\ \x6d\xd9\x03\x6f\x55\x27\xa0\x85\x45\xaf\x97\x6d\xb7\x7e\x38\x8b\ \xfb\xbe\x20\xd1\x95\x85\xef\xc2\x67\xfb\xd5\x07\xa2\x6b\x78\x24\ \xa1\xb2\x21\x7c\x21\x4a\x3f\x9f\x44\xb3\x5f\x22\xe7\x73\x3e\x9b\ \xcb\x75\xa9\xd0\xf4\x77\x75\xac\xb3\x0f\x7c\x75\x12\x5b\x54\xa2\ \x6d\x5e\x7d\xb2\x0a\x4b\xf2\x44\xb6\xcf\x38\xb0\x34\xe2\xaa\x69\ \x55\xf1\x0c\x53\x19\x8a\x7f\xcf\xe1\x23\xd0\xdf\x03\xd0\x04\xb1\ \xd3\xd6\xeb\xf9\x4d\x5b\xa5\xfb\xed\xd0\x25\xd9\x59\x38\x5d\x26\ \x3e\xa0\xd4\x43\x55\xe7\xb3\x82\x54\xd7\x69\x62\xe6\x9e\x60\x01\ \xfe\xac\xe0\xa0\xc6\x0b\xbf\x3b\xb3\x3b\xcf\x76\xd6\xdc\x30\x11\ \x58\x88\x79\x2e\x63\x65\xb1\x8c\xad\xe5\xb2\x4d\xed\x3b\xeb\x4b\ \x37\x79\x24\x6c\x83\x4c\x2b\xae\xe1\xe5\x45\x56\x01\x3f\x67\x7a\ \xaf\xab\xf8\x94\xba\xc9\x54\xf7\x7c\x71\x68\xc4\xa4\xb4\x3c\x97\ \xc8\x93\xc6\x5b\x1d\xcf\x42\x79\x6a\x6a\x78\x73\x67\x59\xec\xc2\ \x99\xd0\x1b\xcb\x0b\xe2\xda\xb3\x6f\x46\xd5\x24\xb3\x75\xc1\x9a\ \x22\x67\x09\xdd\x89\x69\x93\x73\xf4\xa7\xd3\x8c\xb7\x2a\xad\xa5\ \x59\x1d\x7a\x2c\x3b\xed\x32\x73\x43\xd7\x87\xea\x97\x66\xd6\x2a\ \x1f\x05\xc9\x4f\xdd\xcd\x14\x1e\x5f\x51\x22\x3e\x97\x3b\xfe\x5c\ \x8b\xbb\x45\x30\x8d\x93\xf2\x9e\x14\xa2\xce\xe6\xca\xe2\x1a\x33\ \x47\xa6\xae\x64\xea\xfd\x05\x0a\x80\x3b\x9d\xaa\xe1\xf7\x75\xad\ \xa3\x08\x76\xe7\xe7\xb5\x05\x76\xcb\x8d\x01\x26\xa1\x83\xaa\xab\ \x64\xbb\xb3\x90\x5b\xff\xb3\x2b\x33\x09\x46\x73\x95\x8a\xac\x80\ \xa7\x05\xbd\xcd\xe8\x06\x20\x5f\xef\x00\xeb\xf3\x2e\xe2\xaa\x9b\ \x67\x28\xf7\x8a\x76\x7d\x56\xa5\x35\x62\x68\x16\xcc\xb4\xbd\x6a\ \x9d\x48\xa1\x17\x3f\xd6\x2e\xd3\x1d\xca\xda\xb3\x14\x5f\x70\x0b\ \x47\xaa\xdf\xed\xa7\x0d\xae\xe1\x77\x12\xfc\x2e\xbf\x57\x24\xc5\ \xea\x71\xf7\x64\x18\xb1\xde\xc2\xd1\x7a\xa8\xb6\x2f\xf8\x29\x95\ \xbb\x88\x61\x8d\x52\x19\x95\x02\x29\x2a\x8b\x3b\x33\x09\x40\x95\ \xcf\x21\xe1\xeb\x2b\xa6\xad\x1f\x73\x8d\x3e\xab\x5e\x79\x8b\x71\ \x2b\x9b\xb3\x78\xee\x83\xda\x55\xe2\x64\xe3\x89\xf1\x37\x79\xf8\ \xf5\x1e\x08\xcc\xdc\xdc\x98\x4e\xad\xe6\xba\x85\x03\xb6\x5c\x09\ \x7e\x61\x1b\x6e\xdf\x71\xe6\x04\xef\x0c\xa1\x11\x68\x61\xc6\x25\ \x2c\x58\x22\xaa\xa5\xd2\x93\x04\xc2\x36\x9c\x3e\xef\x3b\x41\x1a\ \xcc\x0e\xdf\xb6\x13\xa8\x59\xae\x61\x06\x19\x39\x9b\x53\x9b\x7c\ \x35\xaf\x4c\x02\xcb\xf4\xf4\x26\x56\x4b\x92\x84\xd9\x6f\xe1\xfc\ \xb4\x2b\x8c\x23\x59\xc9\xc6\xf3\x17\xad\x3b\xfb\x16\xa3\x9f\x6e\ \xf1\xc1\xae\xa4\x62\x75\x90\x33\x27\xed\x5e\xed\xed\x2c\x59\x4e\ \xee\x89\x15\xc8\x3a\xcf\xb7\x18\x92\xf8\xc3\x47\x0f\xc8\x95\x6b\ \x69\xcf\x58\x69\x9a\x13\xc5\xc0\xbc\x1d\x75\x9c\x9d\x3c\xfa\xe6\ \x84\xde\x3b\x68\x90\xb7\x6e\x79\x1b\xdf\x5c\xc8\x1f\x61\x73\x51\ \xaa\xcc\x6d\xc1\x67\x1c\xc5\xdf\x36\x86\x23\xbe\x20\xae\xb1\x56\ \x55\x9e\x84\xd5\xdf\x1f\x33\x83\xdc\x5d\xcd\xd5\x39\xdf\x39\x85\ \x4e\xae\xa2\x11\x01\xcf\x85\x8e\xf2\xe5\xd6\x4d\x5e\x39\x0a\xde\ \x0e\x0b\x81\x3f\x4e\x12\xac\x12\xc2\xc6\x85\x61\x49\x93\xd4\x30\ \xa4\x77\x9c\x27\x32\xe2\xbb\xbc\xd7\xef\x58\xda\x10\x4e\xd2\x35\ \x87\x0f\x26\x37\x74\x7e\xcd\x2f\x2e\x7f\xd9\x3c\xc9\xae\x03\xc6\ \xdc\x55\xf6\x0a\x87\xf6\xdb\x59\xab\x7e\xb9\xdc\xe6\x0f\x55\xec\ \xbd\xe0\xa4\x05\xba\xaf\x24\x6c\x72\x96\xb1\xbe\x01\x6e\x73\x67\ \x6d\x5b\x0f\x5d\xc0\x62\xe4\x9d\x29\xde\x7a\xde\x54\x68\xd2\x6f\ \x3b\xad\xec\xf5\xba\x1f\x84\x40\x1b\x75\xf1\xec\xfc\x17\x06\x52\ \xee\x8b\x7d\x30\x94\x6b\x21\x44\xda\x46\xd8\x5b\x11\x69\x18\xe6\ \x64\x47\xf1\xb0\xb6\x08\xa5\x55\x46\x06\x80\x5b\xce\x19\x43\x29\ \x93\x26\x80\x0b\x49\x42\x60\x15\xa7\xe1\x7f\xfe\x01\x9d\x2b\xe6\ \xb9\x02\xc1\x80\x43\xa6\x11\x9d\xb8\x5a\xb7\x7a\xe3\xaa\xfb\x8a\ \xfa\x27\x87\x4e\x60\xa1\x9b\x57\xb0\x7d\x13\x58\xdf\x8e\x66\x75\ \xa2\xe7\xca\xf7\x4f\x60\xad\x30\xd1\xda\x7c\x4d\xaa\xc1\x30\x35\ \x81\xcd\xd5\xdf\xe4\xfc\xa9\xda\xf2\x66\x17\x5e\xd2\x69\xad\x44\ \xf7\x30\x65\x7f\x45\x65\x81\x39\xcf\xee\x6b\xec\xd4\x78\x7f\x8f\ \xf4\x5a\xfc\xed\x2e\xed\x49\x33\x22\x2a\x79\x02\xae\xd5\xa9\x04\ \x2d\x88\x09\x5b\xef\xef\x21\xb9\x15\x93\x7e\x8a\x5f\x89\x76\xce\ \xbb\x98\xd7\x30\xe2\xa3\xe9\xb9\xcb\xcb\x12\x1e\x18\x95\xd8\xe0\ \xb1\x84\xae\x8e\x82\x43\x6f\xe2\xda\xda\x2e\x6e\x2b\x5c\xa7\x55\ \x9a\x9f\x62\x57\x41\x8d\x6f\xf6\xae\xdf\x10\xdb\x43\x46\x0c\xa7\ \x02\x70\x6f\xc1\xd5\x2e\x0c\xa0\x7d\xc3\x03\x60\x3c\x05\x03\xc0\ \x36\x25\x00\x68\x02\xbc\x00\xf8\x9d\xfe\xbf\xfb\xc8\x78\x66\x1b\ \x2e\x53\x27\xd0\xe5\x88\x62\xd4\x54\xc3\x14\xcb\x5b\x88\x74\x41\ \x25\xf9\x55\x8f\x10\x05\x47\x04\x9a\x5f\x7a\xa2\x9e\x3c\x16\xbb\ \x71\x90\xde\x90\xad\x5a\xb2\x86\xdc\xa6\x01\x54\x3e\xb5\x38\x2b\ \x8b\x56\xd5\xbe\xec\x21\x9e\x7f\x74\xb4\x2b\xb0\xc0\x15\x2c\x3a\ \x05\x28\x12\x78\xda\xbe\xd9\x45\x3b\xd2\x7b\x88\x94\x95\x30\x9f\ \xc1\x4e\x7a\x40\x81\x6b\xa6\xac\x4c\x6d\x0f\x8e\x87\x05\xbd\xdf\ \x71\x6c\x9d\x49\x4e\x57\x11\xfd\xc4\x51\x3c\xb8\x59\x73\x58\x32\ \xf1\xd9\x5e\xf2\xb6\x07\x33\x10\xdc\xfc\x0e\x0f\x49\xf9\x2e\x24\ \xbb\x72\x1e\x0b\xa0\x2c\xc3\x82\xb7\x33\x90\xd4\xa8\xd8\x27\x93\ \xeb\x42\x42\x2a\xec\xd8\xfd\x56\xc0\xe4\x4b\x3f\xf2\x01\x03\x0d\ \x3a\xb3\x01\x1f\x70\xbc\x1f\x88\xe5\xf6\x6e\x46\x28\x26\x58\xb0\ \x69\xce\x2b\xd5\xd3\xa6\x46\xe2\x6d\x86\x8b\x5c\x1a\xe3\x7b\x9f\ \xc8\x21\x7a\x1c\xdb\x41\xef\xe5\x5e\xe0\x1c\x1a\xff\x48\x80\x90\ \x74\xbe\xc0\x15\xb3\xc8\x19\x50\x34\xd9\x0e\xcd\x04\x0f\xf2\x10\ \xe6\x20\x12\xe0\xce\xde\xb9\x10\xdc\x84\x45\xa2\xd7\xe7\x31\x94\ \xec\xe8\x9d\x78\x69\x35\x0c\x86\x66\xbc\x08\x68\xaf\x64\x02\x77\ \x4e\x02\xca\x22\x61\xf0\xf9\x10\x8e\xa4\xc6\x0f\x9f\x9a\x60\x9e\ \x47\x45\xfb\x63\xb8\xef\x38\x00\xca\x04\x53\x10\x92\xd2\xb2\x9a\ \x1f\xf8\x09\x2b\x3c\x38\xab\xd8\x11\x2f\x6c\x0a\xf0\x41\xe2\x80\ \xfb\x74\x13\xf5\xb8\x7d\x89\x83\x08\x38\x91\x46\x04\xab\x4a\xf0\ \x94\xe3\xb6\x85\x08\x05\x72\xfa\xa6\x1a\xc6\xb1\xfe\x49\x73\xef\ \xf5\xe1\x03\x87\xf7\xbc\xe3\xa0\xf1\x9b\xc3\x92\x25\x30\x34\xdd\ \x9a\xd7\x7b\x41\xc8\x49\x0c\x85\xe2\x09\xdf\xbd\x66\xa1\xb5\x5f\ \xda\x9c\x53\x08\x88\x9a\xca\x40\x3f\xc7\xa5\x15\x4f\xcb\xf5\x40\ \x4e\x04\xb1\x80\xaf\xd7\x44\xc0\x67\xb4\xbe\x92\x20\x6c\x56\x1a\ \x92\xbd\x25\xf6\x00\xac\xf0\x1c\x58\xc0\x41\x7a\xbc\x70\x24\xa0\ \xa1\x69\xce\x35\x23\x8d\x8f\x31\xdc\x4a\x2b\x80\xfe\x66\x4d\x50\ \x0a\x2b\xef\x76\x12\x24\xdc\xbf\x82\xe1\xf6\x25\x50\x48\x4c\x18\ \x1a\xe4\xf7\xe6\x95\x7d\x4f\x61\xb9\x9f\x45\xd8\x65\x34\x01\x6d\ \x1a\x1e\xa4\xdc\xc6\x72\xfb\xc2\x7a\x6b\xc2\xcb\x3d\x04\xca\x71\ \xd8\x20\x75\x1e\x20\xb4\x3e\x6a\x21\x0f\xe7\xc6\xae\xc6\xb3\x2a\ \x1d\x62\x4a\xc9\x52\xb2\x86\x8d\xad\x7a\x1c\x38\x1a\x0d\x4d\x66\ \x80\x90\x15\x64\x00\x76\x06\x0b\x70\x4e\xe6\xa0\x35\xc2\x8e\x44\ \x2f\x03\x8c\xd8\x48\xf2\x15\xc8\x09\x0f\xd8\x18\x93\xc3\x7b\x16\ \x58\x2e\xe5\x7b\x2c\x76\xeb\xe0\xd7\xde\xb7\x5f\xaf\xf4\x20\xfb\ \x88\x80\xa2\x8c\x05\x4b\xbf\x40\xee\xf4\x48\x74\x21\x94\x6d\xf0\ \x26\x52\xda\x08\x6f\x6e\xd2\x8a\x9c\xc8\x82\xd9\xbe\x86\xcd\xa1\ \x55\x7a\xf4\x5d\xaf\x82\xcc\x9d\x09\x28\xfb\x60\x1a\x8b\xe7\x1d\ \x88\xf2\x15\x0c\xf0\x87\x0c\x98\x3a\x13\x34\x16\x6a\xd2\x99\x17\ \x70\x83\xdc\x0b\xa7\xad\x39\x68\x0f\x60\xab\x5f\xc0\x56\xaf\xb5\ \x41\xbb\x18\xd6\x45\x8e\x08\x4c\xae\xc3\x6e\x95\xc6\x01\xf4\x79\ \x3e\x9e\xd6\x0e\x05\xc1\xdc\x68\xf7\xf2\x36\x43\x30\x67\x1a\x08\ \x3b\xd0\x8a\x7c\x3e\x44\x17\x7b\xb1\x1a\xbe\xf4\x02\x8e\x19\x1d\ \x54\x92\x20\x86\x76\xe0\xaa\xf7\x55\x76\xe6\xc0\x9e\xe8\xe7\xb7\ \xb1\xa0\xac\x94\xcf\xfb\xc0\xdb\x1e\x3d\x0e\x29\x40\xd3\xc1\x83\ \xc8\xd5\x1d\xe4\xa7\xf4\x77\xdb\x84\xd8\x65\x2c\xc8\x84\x4c\x75\ \x2c\xc8\xb7\xc8\x22\x7e\xaa\x84\x6d\x93\x63\x01\x26\xeb\x55\x99\ \x48\xf2\xe5\x54\x92\x14\x86\x26\xb8\xed\x8a\x2f\x6b\xe1\x9b\x55\ \x75\xa9\xc6\x5e\x22\x6b\x00\x6e\x22\x0b\x88\x75\x6b\x46\xb2\xd5\ \x30\xc0\x82\x17\x1c\x9d\x02\xd9\x85\xd6\x57\x05\x7c\x3a\xed\x62\ \x0c\x9c\x4d\x0f\xae\x83\x5d\x72\x19\x24\xb0\x5d\x85\x1d\xd5\x44\ \x76\xbb\x0e\x12\x0e\x3d\x06\x77\x84\x25\x01\xf6\x31\x0b\x58\x76\ \x99\x90\xd0\x5e\x00\x88\x1e\x14\xf0\xe9\xf1\x22\x90\x92\xb3\x99\ \xce\xcc\x4a\x02\x0d\x3a\x91\xa0\x34\xa6\xae\x9b\xac\x06\x30\xb4\ \x39\x56\x4b\xf9\xa0\x54\x42\xcb\xec\x87\x57\x28\xcc\x73\x6f\xa2\ \x2e\xf6\x02\x40\x99\x04\xc2\x24\xca\x91\xef\x12\x35\x01\xf2\x61\ \xfd\x46\xf0\x3c\xb0\x9b\xcb\x43\x11\x5e\x42\x1e\x42\x46\x05\x70\ \x83\xa3\xb7\xf3\xae\xae\x93\x01\xda\xfa\x8d\x91\x3c\x09\x94\x89\ \x78\xe0\xf3\xb2\xbd\x78\x5f\x2e\x16\x28\x4f\x01\x0d\x1b\xd6\x0a\ \x7a\x20\x86\x35\xf3\x60\xd2\x72\x34\xe9\x69\x39\xc8\xed\x42\x69\ \x40\x9c\xee\x08\x12\x16\x4e\xfa\x00\x84\xbc\x09\x14\xbf\x69\x58\ \xa0\x3a\x1f\xd6\x58\x18\x9c\x70\x27\x82\x65\xc9\x1d\x08\x64\x37\ \x07\x1c\x21\xd3\xe1\x8b\x83\xf4\x5e\x49\x09\xe0\x01\x47\xcf\xb1\ \xf6\xca\x96\xb2\x61\xf8\xe5\x40\x28\x95\xc5\x2f\x0d\xbb\x12\xdf\ \xfa\xd4\xd7\x38\xe9\xc4\x1e\x26\xeb\xc4\xda\x90\xdb\x0c\x29\xb3\ \xda\x57\x95\xb2\x40\x09\x97\x95\x5d\x5e\xb5\xaf\xfc\x40\x7b\x69\ \x93\xeb\x63\x31\xcc\xb6\x24\x29\x5e\x55\x35\xba\x94\xd4\x79\x77\ \x37\x17\x90\xc0\xa7\x09\x5e\x24\x6b\xbd\x74\xbb\x04\x2f\x5f\x01\ \x92\x60\xdb\x34\x54\x90\x5c\xa1\xb8\xb5\xde\x7d\xb9\xa6\x43\xec\ \x5d\xd3\xde\x8c\xa9\x69\x48\xd9\x2e\x75\x71\x7f\x09\xd0\xe0\xd8\ \x44\x96\xcb\xc3\xd2\x1e\xe1\xc1\xe4\x83\x1b\xbd\x75\x74\x3c\xd9\ \xab\x20\x63\xdf\x69\x60\x48\x7c\xe5\x54\x25\x55\x40\x3a\xc5\x9d\ \xf8\xf5\xd5\xae\xca\xc3\x92\xb0\x6b\xe7\x04\x74\x73\xc1\xd7\xa7\ \xb8\x17\x01\xf7\xcb\xd0\x4d\x96\x02\xdc\x8a\x99\x40\x69\x87\x0b\ \x50\xb4\xc1\x82\x29\xa7\xb8\x05\xbe\x38\x03\x49\xd7\xeb\x69\x88\ \xdb\x69\x40\x21\x4e\x39\x95\x14\x09\x5e\xec\x3a\xb8\xae\x43\xcc\ \x82\x1b\xc0\x2a\x06\xd7\x38\xcd\x04\x6e\xf6\x80\x22\x5b\xda\x4d\ \x9e\x78\x15\x03\xac\x61\xf4\x0b\xdc\x5e\xeb\x47\xf3\xf4\xe9\x34\ \x63\x38\xee\xc3\xa4\x43\x31\x6e\xcb\x3a\x9f\x20\x53\x44\x30\x7e\ \xe5\x4f\xbc\xcf\x66\x5e\x87\xb5\x71\xad\xb1\x85\x32\xc2\x03\xb6\ \x6d\xec\xf0\xf5\xf2\x42\xce\x1c\xc7\xd3\x2e\x2d\xc4\xb8\x79\x39\ \x03\x07\xf4\x32\x1c\x51\x9d\x9b\x1e\x5c\xb3\x53\xba\xe0\x45\x8f\ \x50\xe6\x36\x2c\x25\x3d\x0f\x4b\x12\x2c\xa7\xbe\x58\x0f\x8c\x1f\ \xe4\x5d\x7d\x69\x6e\xfe\xd1\x15\x58\x47\x03\x62\x53\x53\x55\xb1\ \xc1\x13\xe4\xe5\x4b\x3a\xb9\x4c\x02\x3c\xba\x02\x9b\xcf\x02\xa0\ \x88\x65\x1a\xac\x3d\x0f\x24\xf9\x3e\x53\xa7\x90\x31\x7e\xc9\x05\ \x40\x69\x6e\x2b\x82\x5e\x06\x78\xc0\xb4\x2c\xe0\x85\x2a\x30\x9e\ \x51\x81\xbc\x5c\xc7\x04\x9a\xf8\xc0\x36\x65\x26\x9a\xd7\x22\xa0\ \x68\x87\xa5\xac\x9f\xf4\x16\x28\x49\xca\xcc\xa1\xab\xe1\x61\x62\ \xc8\xf0\xcb\xc9\x12\xe5\xd4\xe9\x27\x40\xa6\xe2\x5c\x20\x2e\xc5\ \x41\x53\x23\x60\xfc\x4e\x43\x7e\x5d\x24\x50\xa6\xdb\xc3\xa7\xc2\ \xe0\xe5\x6e\xe9\x02\x35\x0c\x4d\x91\x08\xe6\xec\x62\xa3\xe9\x74\ \x0a\x50\xa7\x3b\x80\xcc\x05\x85\x6f\x4e\x89\x80\x97\x5f\x6c\xf4\ \x00\x4d\x7d\x0b\xcb\xb6\x35\xb0\x9d\x1e\xc8\x0d\x51\xd8\x94\xe9\ \xc8\xc5\x8b\xeb\x69\x7e\xe8\x65\x34\xc6\x4d\xe7\xe7\x70\xa5\x4a\ \x81\x47\x1b\x32\x04\xc0\x55\x21\x84\x6d\x37\xe4\xcd\xae\x7e\xbd\ \x62\x7f\xc9\x82\x2e\x96\x26\x0e\x1e\x39\x36\xc6\x97\xf9\x63\x01\ \xfa\xb2\xac\xf2\x24\x81\xd2\x74\x10\x0b\xd0\xe7\x2f\x12\xbd\x78\ \x12\xca\x1e\x40\x63\xd2\x67\x05\x96\xad\x01\xc6\x17\x92\x5c\x80\ \xfb\xd9\x28\xea\x74\x57\x90\xc9\x0b\x1d\x96\x8b\x3d\x7d\x97\xa6\ \x60\x9a\x94\x14\xf0\x5b\x06\x1b\x7b\x05\x28\x6d\x9c\x09\xd4\x26\ \x63\xfc\x24\x50\x31\x6b\xd7\x9b\x7e\x11\x26\xd8\x03\xdc\x9c\x9a\ \xc8\x1e\xeb\x80\x31\xa6\x9c\x6a\xa1\x4e\x3f\xb3\x80\x05\xcc\x21\ \x01\xb7\x8b\xac\xa0\xf7\x61\x17\x94\x36\x42\xdf\xe5\x42\xf0\xa2\ \xfc\x76\x13\x79\x02\xec\x96\x68\x68\x9f\x44\xbd\x5a\x53\x37\x4c\ \x76\x5a\x9f\x86\xa8\xcd\x9c\xb5\x32\x29\x0f\x91\x92\x82\xcc\x83\ \xbd\x61\x0e\x25\xb4\x0c\x0f\x3c\xd0\x74\xb7\x96\x63\x68\xcb\x7e\ \x36\x7a\x3b\x37\x10\x86\xa6\x8e\x22\x69\x0b\x93\x5e\x03\x99\xfa\ \xe1\x0b\x2f\xde\xc8\xbf\x0a\xfb\xfd\x51\x56\xcb\x53\x00\x24\xf8\ \x80\xf0\x06\x1c\x49\x6e\x2f\x38\xf5\x90\x05\x70\xdc\x86\x42\x02\ \xbb\x2a\x0f\x4f\x23\x6c\xbf\x02\x25\x66\x19\x1c\xf3\x49\xfa\xd1\ \x17\xba\xe6\xd3\x2a\x60\x49\x50\xa7\x82\x05\x9b\x60\x9c\x72\x97\ \x47\xc6\x03\x2a\xe1\xee\xaa\xfc\x13\xe9\x07\x22\x77\x5a\x67\xb7\ \x11\x95\xa5\xc0\x22\x0f\x36\x5a\xd0\xc1\xc6\x6a\xdb\x80\x03\x7e\ \x3c\x26\x98\x45\x1e\x50\xe3\x7c\xdd\x8f\x53\x11\x87\x6f\xe0\x88\ \x6d\x8d\x38\x21\xc9\x03\x84\xef\xe4\x5f\x25\xc6\xc9\xf1\xd3\x72\ \x45\xf7\xe3\xae\xad\x02\xc6\xa4\x72\x64\x9f\x31\xbd\xef\x52\x0a\ \x04\xdd\xc0\x82\x45\x67\x41\x26\x05\x2a\xd6\x9a\x79\xd0\xca\x5e\ \x5b\x0d\x9f\xf3\xd3\xda\xa1\x2a\xbf\x0d\x73\xa7\x70\xd0\xb2\xd5\ \xe8\xcc\xd7\x60\x17\x08\x15\xf6\xea\xc2\xde\x4b\x98\x71\x27\x01\ \x64\x2e\xd2\x76\x72\x90\xfb\xd8\xbc\x56\x38\x5f\xa5\x9c\x2a\x2e\ \x6f\x6d\xa2\x27\xdb\xf1\xf1\xe9\x5a\x6a\x4f\x72\xb9\xd8\x81\xf9\ \x17\x4e\x67\xdf\xdc\x59\x00\x84\x8a\x5b\x9e\x46\x51\x4b\x65\xe1\ \xdb\xf6\x4f\xde\x38\xd5\xee\x38\xd7\x8c\x0d\xa7\x5d\x15\xe2\x83\ \xd3\x56\x59\x44\x02\x61\xd4\x5a\x28\x5c\x39\x5b\xb2\xd5\x89\x4a\ \xbc\x7e\x71\x29\xd9\xb6\x5e\x2b\x3e\x7e\x1a\x6c\x1e\x0c\xde\xa1\ \x25\xa0\x15\x7e\xdc\xd7\x28\x56\x05\x5d\x8f\x54\xa3\x1d\x07\x4f\ \x9e\xf1\x87\xcc\x6a\x24\xf0\x14\x37\x55\xdb\x44\x87\x3f\xf4\xe9\ \x9a\x7f\xe7\x81\xe0\x1c\xfa\x54\xe6\x40\xa9\xa4\x7a\x6a\x57\x10\ \x37\x65\x01\x96\x62\x2f\xfa\x16\x6a\xb8\x26\x72\xcc\x83\xc2\x64\ \xaa\xbf\x8c\x0c\xbf\x1d\x92\xbf\x79\xd6\x71\xf1\xf6\xab\x20\x93\ \xb4\x07\x3c\xaf\xe8\x26\x7f\xfe\x58\x55\x4a\x7e\x77\xfd\x3a\x6b\ \x45\x51\x61\x07\x99\x79\xa9\x04\xf4\x87\x1a\xe3\xb3\xcd\x97\x39\ \x1d\x74\x8e\x69\x77\x8d\xed\xf8\xa8\x30\x85\x96\x06\xfb\xe8\x06\ \x26\x0c\x1a\xea\xdc\xbb\x85\x73\xe9\x53\xcd\x9e\x46\xce\xf3\x92\ \x2f\x3a\xdb\xb0\xaa\xc1\x04\x4b\x59\x79\x07\x3c\xcf\xd1\xdb\xc6\ \x66\x5f\xb2\xa6\x2e\xd5\x6f\x8d\x01\xac\x45\x7d\x7c\x36\x87\x94\ \x6b\xed\xb1\x46\x2a\x4f\x0a\x09\x96\xc8\x07\x1a\xf3\x10\x23\x29\ \x83\x79\xf4\xa9\x62\xb1\x87\x48\xb1\x76\xc6\x66\xdf\xa8\xf3\x88\ \x80\x23\xb3\x76\xc3\x29\xfb\xf7\xf4\xe9\x86\x1a\x74\xa3\x98\xa0\ \x6d\xdd\x6b\xdf\xc4\x1d\xa3\xbc\x90\x92\x0f\x5e\x83\x6b\xd7\xbf\ \x93\xc2\x31\x95\x96\xe7\x10\x24\x88\x70\x6f\x60\xf3\x17\xc6\x52\ \x70\xb9\x48\xa8\x03\x2b\x98\xe7\x6e\xd0\x28\x36\xf1\x34\xb0\x3f\ \xe9\x08\x7b\x09\xc8\x80\x94\x0a\x02\x65\xc7\xb4\x72\xd8\x90\xda\ \x0d\x57\x04\x94\x16\xc1\x94\xdf\x3c\x98\x6e\x6d\xd7\x79\x07\x5e\ \x7c\xb0\x98\x4d\x9f\x7a\x6b\xef\x09\x45\x10\x23\x01\xb2\x0a\xbe\ \xbe\xf2\xe7\x3a\xc9\x3a\x1d\x09\xf7\xf4\x72\x42\x94\xcc\x4c\x67\ \x7a\xd9\xc6\x5c\x6f\x99\x78\x07\xaa\x91\x2f\xce\xc8\x3d\x07\x16\ \xda\xb2\xf5\x2c\x4e\x88\xe3\xde\x13\x5f\x2f\x01\xb5\x43\x6b\x05\ \xa1\xcd\x5a\x22\x64\x0a\xc7\x74\xa0\xc7\xa3\x5e\x7e\x3c\x35\xef\ \x7c\x4e\x2f\x70\x5d\xa1\xc2\x02\x16\x47\xf5\x9a\x7e\x28\xe4\x76\ \x37\x9e\x27\x53\xcb\xbe\x9d\xbd\xac\xc2\xb6\x6b\x36\x96\xf2\x7a\ \xd2\x61\xbc\xf4\x93\x9a\x37\x48\x33\x5b\xc0\xdc\xde\x36\x53\x88\ \xfa\xa9\x78\x9a\xf0\xc2\x09\xfe\xc2\xad\x88\xb5\x8e\xee\x17\x93\ \x58\x44\x3b\xc7\x08\xbb\x54\x1c\x64\xe5\xf2\x54\x20\xb3\x4a\xf0\ \xc0\x35\x78\x3d\x80\x4a\x3c\x31\x2f\xea\x1b\x2e\xcc\x16\x4b\x39\ \xbf\xae\xab\x71\x4e\xe8\xfd\x18\x8c\x9b\x14\xbb\x83\xb0\xe2\x5e\ \x49\x8c\x5f\x8a\xc0\x97\xc5\x20\xe5\x4b\xad\xaf\xde\x13\x8b\x9a\ \x15\x75\x6b\x69\xca\x44\xb0\x18\xf5\x79\x5a\x91\x8e\x80\xa5\xb3\ \x6a\x22\x58\x30\xc5\x39\x65\x72\x33\xec\x81\x9a\x86\x55\xde\xe5\ \x90\xeb\xc9\xf9\x6b\x40\xf3\x23\x79\x3c\xed\x99\xf9\xd4\x3e\x13\ \xa5\x36\x15\x4b\x81\x75\x87\x32\xfc\x69\xeb\xdc\x1d\x71\x7a\xc7\ \xcd\x5e\xe4\x14\x73\x38\x51\xd7\x40\x9d\x93\x05\x87\x57\x7b\xe7\ \xfa\x56\x24\xef\x63\xc0\xfe\xf2\xa7\xba\x5c\x0e\x22\x25\x35\xf5\ \x76\xd0\x9f\xce\x72\x86\x25\x42\xfb\x7b\x04\x86\xbb\x3e\xb7\xca\ \x98\x3e\xe4\x93\x3f\x73\x83\x7d\xe8\xa8\x82\x1e\xc7\xdb\xe4\x2f\ \x78\x90\x71\x08\x0e\xfe\x82\xd9\xe6\x4e\xc6\xd6\x56\x71\x95\xe6\ \x8a\x8f\x43\xc4\x17\xef\x42\xe2\xa1\x59\xb5\xbe\xe0\xc4\x64\x8a\ \xd3\x89\xee\xb6\x8f\xa2\xa6\x40\x2a\x6e\xd0\xc2\x6b\x82\xa3\x17\ \xea\x91\x4e\xbf\x3b\xc9\x87\xad\xad\x74\x2b\xc8\x86\x7c\x60\x5f\ \xe5\x1d\x9e\x84\xb7\x9e\x5b\x3e\x06\x2c\x83\xb2\xb4\x69\x2d\x76\ \x9e\x0e\x7d\x4a\xdb\x54\x35\x43\x2c\x85\xa3\x45\x13\xdc\x84\x1e\ \x61\x7e\x4b\xcb\x91\xa4\x02\x57\x6e\xc5\xdc\x65\x11\xa5\xb5\xbe\ \x85\x61\xee\x59\xaf\x12\xbb\x35\x7b\x4d\xdf\x9a\xcf\xd3\x91\xcb\ \xfb\xb3\x9a\x1f\x4a\x23\xea\xf0\x41\x92\xe7\x76\xae\x87\x74\xeb\ \x39\x45\x3b\xd8\x7a\x02\x22\xbe\x5e\x94\x25\x77\xa5\xe4\x93\x63\ \xa6\x82\x2c\xe7\xde\x01\x45\x72\xdd\xe4\x37\x69\x4e\x1d\xd4\x4c\ \x3b\x0f\xdb\x2c\xb0\xd4\xf3\xc9\xb5\x38\xb1\xdc\xb6\xb4\x3c\x0c\ \x2a\x5c\x7a\xa3\xde\x66\x5e\x72\x6d\x06\xe4\x8f\x58\x11\x75\x56\ \x71\x6a\xc5\x6b\xfa\xca\x95\xc1\xb9\x8b\x31\x7e\x7b\xa0\x40\xf4\ \x39\xf8\xd1\x8d\x73\x22\xdf\x96\x2a\x2c\x5d\x38\x91\x73\x63\xfc\ \x04\xce\xd8\x65\x3c\x02\x5f\x96\xe0\xbe\x96\xe8\xfa\xec\x92\x93\ \x5d\x3e\x71\xa3\x6f\xae\xef\x01\xae\xe3\x0b\x81\x65\xf8\xf1\x5a\ \x6e\xc5\xf6\xd2\x87\x86\xd4\xaf\x3e\xd9\xfe\x7b\xd6\x88\xf9\x3d\ \xbf\xd5\x4d\xf6\x39\xdd\x71\xd7\xdc\xdc\xa6\x69\xd3\xf4\x49\x8b\ \x03\xeb\x0e\x1f\x2c\xbe\xaf\x91\xba\xb4\xe4\x5d\xc4\xce\x4b\x0d\ \x50\xe0\x4e\xad\xcf\xa9\x3b\x23\xa3\x97\x7f\xb9\x7b\xff\xb1\x2e\ \x29\x01\x48\x57\xdd\x36\x3a\xf2\x6c\x33\xb2\x34\x07\x0e\x19\xd5\ \xe2\x63\x8b\xf7\x93\x95\xa1\x83\x5b\x44\x0d\x16\x51\xe8\x28\x35\ \xdb\xfa\x94\x9e\x1c\x6c\x8d\x4d\xe8\x08\xad\x93\x40\xae\x2d\xba\ \xa8\x01\x16\x1b\x00\xb5\xc5\xb1\x2a\xb5\x05\x57\x65\xda\x04\xdf\ \x3a\x77\x76\xde\x88\x2b\x69\x59\x79\x0c\x56\x46\xa4\xe7\xcc\x4e\ \xeb\xc5\x07\x5a\x20\xb1\xae\xc8\x60\xc7\x35\xe0\x0e\x0f\x54\x6f\ \xdc\xe0\xf0\xfd\x53\x50\x88\xbf\xe6\x17\x9a\x64\x5c\xb4\xc1\x87\ \x1e\x42\x9e\x4f\x03\x59\x8e\x50\x9b\x5a\x22\xae\x81\xfe\x99\x96\ \xe6\x36\x0b\xbc\xe4\xe9\x16\x97\x42\xbd\x2d\xa6\xab\xad\x33\x43\ \xd6\xda\x1c\x4b\x7c\x7c\x84\xeb\xd4\x7b\xa9\xd6\xe0\x0d\x1f\xae\ \xf0\x07\xac\xe9\xbe\x99\x6c\x84\x50\x97\x05\xd8\x16\x6f\xf4\x3d\ \x2a\xb7\x7e\xe5\x27\x6f\xcf\x16\xf3\xf2\x0f\xf6\x69\x51\x53\xa0\ \x71\x10\x2f\xa2\xeb\x91\x1f\xc9\xc0\x11\xd7\xe5\x94\xfe\x62\x49\ \x52\xce\x6b\x7a\x92\x79\x5c\xbc\x80\xa9\xb1\x7a\x08\x07\xc6\x4f\ \xb2\x00\x6c\x81\xde\x6a\x4a\xf8\xd1\x63\x73\xd8\x1d\x44\x56\x1f\ \x60\xf2\x3a\x56\x41\x69\x6f\x68\x8e\x79\x19\x5f\x97\x1c\xdc\x36\ \x8b\x0b\xe8\x51\x2f\x57\x3c\x4a\xfa\xbc\x71\x72\xbe\xa0\xc2\xd1\ \x8a\x84\x4b\x48\x47\x49\x91\x4f\xbc\xcc\x0c\x36\xbc\xd5\x14\x90\ \x75\x0a\x8a\x95\xa9\x10\x66\x59\x24\xbd\x36\xe2\xe6\xc6\x00\xd1\ \xba\x5a\x96\x50\xb1\x8f\xd7\x8f\x6b\x23\x50\x14\x12\xa1\xa2\xdc\ \x8d\xb1\x85\xce\x87\x5d\x61\x7d\x62\x77\xd6\x21\x41\xc4\x88\x87\ \x98\x66\xa4\x75\x97\x05\x5a\x82\x3b\xc0\xb9\xde\x26\x3e\x04\xfa\ \x4a\xc4\x8a\xa2\xe5\xdc\x68\xff\xbb\x17\xe7\x1e\x81\x55\x6f\xb8\ \x2e\x23\xef\xd9\x1d\x13\x4f\x37\xbd\xd2\x42\x48\x7c\x7b\x21\xa3\ \x90\x97\x98\x06\x85\x08\xd5\x69\x8f\x31\xe6\x47\x94\xd9\x55\xa1\ \xb3\x2c\xdb\xfc\x85\xde\x90\x27\x63\xef\xaf\xd7\x06\xc7\x4b\xc8\ \x34\xe0\xd1\xd0\x8a\x74\x15\x6b\x2f\xac\xdf\x19\x4c\x09\x3b\x7a\ \x6c\xe1\x04\x0f\xcb\x5a\x0b\x0d\xa8\x32\x6e\x60\xb9\x8b\x4b\xd5\ \xb7\x9e\x37\xb1\xd2\xa8\xde\x9e\x6f\x56\x54\x79\xca\x69\x73\xbd\ \x14\xc7\xf4\x23\xda\x1f\x92\x20\x3f\x2a\xf9\x2f\x90\x6d\x97\xbe\ \x78\xc2\xed\x73\xac\x8d\xf2\x70\xbd\xab\x1d\x27\xfe\x7a\xe7\xfa\ \xfd\x25\x6b\xa8\x73\x74\xf4\x8e\x4f\xe7\xd6\x5c\x05\xee\x9c\x80\ \xce\xd2\xcd\x6b\xf7\xae\x95\x76\x1a\x5c\x65\xdb\xa2\x0b\x79\xe5\ \x59\x67\x5b\x9f\x92\x17\xd5\x2a\x65\x46\x8c\x3d\x5a\x6b\x97\x05\ \xa0\x10\xfb\xb4\x3c\x29\x86\x12\xb5\x55\x72\x92\xcb\xb7\x2f\xb7\ \x15\xcd\x4c\xab\x37\xed\x5e\x4d\x72\x0c\x8d\x2d\xd6\xf1\x71\xef\ \xfa\xf8\xf6\xf6\x02\x9c\x7e\x9b\xf2\x3d\x2c\xca\x26\x29\xd7\x00\ \xdd\x58\x54\xd8\xad\x36\xa5\x59\x7f\xad\x57\x32\x53\xfd\x90\xee\ \xe2\xb3\x7b\x02\x41\x41\xa1\x59\x59\xb6\xad\xee\x8d\x30\xaf\xf5\ \x12\x8c\x1f\x01\xc6\x1a\x66\x28\x07\x43\x82\x58\x94\xbf\xe2\x84\ \xac\x91\x7b\xdf\xf8\xb0\xf3\x74\x9d\x9a\x53\x7c\x9a\x6b\xa9\x3b\ \xed\x66\x1e\x3f\xfe\xc5\x73\xb6\xde\xb1\x18\x93\xb3\x29\xb0\x43\ \x12\x2a\x2f\x2d\x2e\xad\x12\x8c\x35\xcf\x5e\xb7\x17\x77\x62\x32\ \x2a\xb9\xe1\x66\x81\xb6\x4e\xe7\x23\x8c\x7d\x91\x05\x19\xa7\xc9\ \x28\xe7\xda\x4c\x9f\xbe\x4d\xcb\xcf\xae\xdd\x70\x74\xfe\x39\x0a\ \x6c\xdc\x3b\x97\x6d\x8b\x9f\x59\x55\x20\xb7\xa6\x5b\xb1\xe9\x97\ \xbd\xce\x69\x95\xb0\xdd\xae\x13\x1b\x17\x59\x73\x2f\xc0\x2b\xa7\ \xe7\xb6\x49\xe7\x54\xa8\xab\xcd\xd5\x4d\x17\x2b\xeb\x45\x57\xfb\ \x7f\xfb\xec\x61\x54\x5c\xe4\xfb\xad\xc6\xb6\xa7\xd0\x7c\x33\xd2\ \x2d\x78\xb9\x59\xb4\x6b\xa9\xad\x01\x35\xf2\x3a\xff\x91\xa0\xf8\ \x47\xda\xdf\x5a\x35\x74\x89\xe0\xf4\x21\x18\x67\x2a\x2c\x2b\x9d\ \xd1\x23\xbb\x1b\x55\xfa\xf2\x3b\x5e\xbb\xf9\x18\x75\xd0\x43\xb9\ \x52\x4c\x09\xaf\x5a\x5a\xa9\x4d\xb9\x50\xaf\xaf\xf2\x61\xf3\x4c\ \x79\x90\xef\x96\x0c\x35\xad\xf9\x35\xdd\xd2\xed\x3b\x74\x8f\x9c\ \x9a\x7e\x53\x5e\x34\x70\x19\x2c\xf1\xa1\x6d\xed\x33\x73\xc3\xaf\ \x07\x9f\xfb\xda\x5e\x7f\xda\x0c\x5b\x1b\x14\xed\x82\x54\xbc\xb4\ \x5d\xf6\x70\x1d\x9e\x96\x78\x17\x8d\x4d\xc4\x36\x4f\x72\xd1\x30\ \x5d\x12\x15\xb0\x54\x7e\xc9\x1b\xac\x55\xd5\xb6\x8f\x25\xab\xa7\ \x98\xd8\xe9\xa1\x6c\x6c\x54\xa1\xba\xce\x2a\xd1\x7e\x7e\x9b\x1b\ \xb0\x06\x4e\x91\x52\x28\x47\xa2\xeb\x42\xb2\x6e\xdd\x6c\x82\x03\ \xf3\xe5\xcc\x7d\x32\x9d\x5c\x49\x4d\xd5\x6f\x5c\xae\x7e\xd9\x92\ \x4b\xcf\xb9\xba\xf9\x9c\x68\xd9\x23\x4f\xa8\xb4\x8f\x23\x39\x8f\ \x2e\x2f\x5f\xbc\xd5\x96\x5e\xb6\x5d\x09\xba\x08\x12\x62\xba\xc1\ \xc1\x4f\x34\xb5\xd4\xb5\x31\x87\x17\x24\x21\x70\x08\xbf\xac\x50\ \xf7\x82\xc2\x52\xbb\x51\xa8\xfc\xa9\xd0\xdd\xbd\x78\xda\x49\x18\ \x27\xdf\x9a\xeb\xa4\xe5\x9d\x25\xa1\x39\xc9\xcb\x87\x3d\x50\xd5\ \x5f\x8e\x3f\xec\xe2\x01\x5a\x96\x19\x02\xad\x72\xba\xfc\x97\x23\ \x3a\x8f\xe7\xad\xd9\x27\x8c\xf1\xd3\x87\x71\x54\xf6\xce\xf8\x27\ \x2e\xd5\x13\x82\x36\x4e\xaa\x3f\x95\x77\xb5\x9a\xdc\x09\x87\xea\ \x01\x15\x42\xac\x79\x47\xaa\xbf\x19\xc2\xd6\xac\x51\x62\x7f\xa4\ \x5a\x46\xb9\xed\x5d\x44\xf4\xad\x4b\x3c\xe0\x1c\x6a\x6e\x64\xd8\ \x41\xd0\x2a\x6f\x2c\x25\x6a\xe1\x85\x90\x9a\x9e\xd5\x5d\xd9\x77\ \x43\xbb\x6a\xa1\xe9\x0a\xac\x8f\xbb\xf6\xb5\x26\xd9\xbf\x63\x9e\ \x02\xc6\x4f\x0d\x76\xef\xbd\x6b\x87\xaa\x15\x71\xfa\x56\xd5\x9a\ \xba\xd6\x3d\x99\x45\xd3\x56\x9a\xdd\x2f\xb0\x69\x28\xd8\x93\xe0\ \x71\xec\x23\x7c\xdd\xde\x63\xa6\x77\x4f\x2b\x15\x51\x72\x99\x7c\ \x76\x49\x58\xe2\x84\xb4\x7c\xea\xe2\xea\x87\x9b\x75\xd7\x5a\x75\ \x15\xf9\xd8\x2e\x7d\xfd\xaa\xeb\x9e\x0d\x46\x3d\xbe\xc7\xd7\x36\ \x66\x7b\xbe\xc6\xea\x37\x3d\x9b\x57\x82\xe9\xa8\x91\x42\x03\x34\ \x1a\x6b\xf6\x5e\x11\xd2\xa9\xd7\x0e\x09\x1a\xa9\xc1\xbe\x76\x47\ \xaa\x3e\x86\x07\x7e\xd0\x8d\xee\x5e\xf9\x30\x0a\x81\x92\x1f\x61\ \xd2\xc9\x36\xa5\xbe\x90\xa8\x22\x05\x26\xa4\xf5\x46\xad\x61\xdb\ \xac\x82\x61\x64\x94\x58\xc5\x37\x6f\x73\x11\xf7\x51\xa3\xdd\x3d\ \x77\x5f\xd2\x60\x48\xf2\x32\x25\x6f\x72\x55\xed\xdd\x6c\xff\x78\ \xbd\x34\x2b\x19\x45\x11\x28\x2f\xd5\x79\x58\xc7\x37\x50\x2b\x6e\ \x8b\x8d\xd3\x4e\x9f\x5b\x7b\x88\x45\xbe\x94\xba\x35\x71\x63\x76\ \x66\xa4\x34\x99\x1f\xed\x4e\xf7\x50\xad\xd3\xe5\xd9\x56\x66\x08\ \x3f\x2f\x60\x5d\xb4\x74\xe1\xd6\xf4\x35\xde\xef\x20\xe3\x43\x5d\ \xb4\x2e\x25\xc5\x2d\xf7\x94\xc1\xef\x78\xdc\xd2\xcc\xb4\xe2\xee\ \x9e\x3c\x33\x17\xf2\xc6\xf7\x15\x6a\xfc\xde\x48\x36\x4c\x8b\x9a\ \x44\xab\x6a\xf5\xd0\xe0\x27\xda\x5b\xa1\xb7\xe3\xd7\x74\xba\xa9\ \xfb\x72\x5b\xe2\xe9\x74\xb2\x43\xb3\x5e\x51\xf0\xb7\x1a\x67\xb4\ \x37\x0f\x5c\xa7\x2b\x9a\x57\xa9\xb2\x62\x29\x27\xd0\x41\x67\x6d\ \x55\x38\xff\x26\x7e\xae\xae\xc8\x87\x05\xc6\x30\x5a\x2e\x79\x75\ \x3d\x7b\x23\x31\x16\xba\x00\xd1\xe6\x1d\x67\xa6\x49\xd4\x86\x9b\ \x1d\xb9\x28\x7a\x28\xc4\x3d\x39\xde\x06\xe6\x40\x43\x3c\x17\x95\ \x0e\xf2\x79\xe8\x11\x94\x24\x91\x8b\xef\xed\x26\xb6\xbf\x16\xf1\ \x5e\x73\xaa\xfe\x62\x6a\xeb\xe9\xe2\xd8\xb7\x2f\x7b\x84\x62\xdc\ \x3b\x1d\x77\x6d\x67\x01\x4c\x41\xf9\x4c\x93\xac\xd4\x52\x39\x5b\ \x9e\x08\xb3\xcb\x24\x9e\xa1\x3e\x15\xa1\x7f\xab\x25\x75\x97\x77\ \xed\x8c\xce\xa3\x6e\xb9\xfe\x25\x21\xdc\x2c\xe0\xb1\x94\xdf\x4c\ \x28\x08\x11\x75\xed\x62\x07\xab\x54\x85\x5b\x5c\x63\x38\xde\x9f\ \x92\x71\xe3\xad\x9a\xb6\x71\x7f\x33\x47\x5d\x95\xa1\x29\x6a\x0b\ \x60\x0c\x2a\x2b\xdb\xa3\x2e\xfb\xf1\x3a\x2b\xb3\xd1\x8e\x99\xfb\ \x4a\xcb\xa1\x76\x36\x87\x23\x6b\xdb\x25\xdf\x18\xef\xb3\x0d\x8d\ \x57\x37\xef\x2b\xfc\x26\xf3\x30\xfb\x2b\xbe\xf4\xe1\xc7\x09\x5f\ \xa0\x63\xeb\xc9\x0d\xd2\xcc\x7b\x27\xed\xcc\xe8\xc5\x82\x93\xbb\ \xba\x60\x39\x8a\xd0\xac\x09\x7c\x09\x4c\x4c\xec\x5e\xbf\x13\x06\ \x4b\xdb\x71\xf9\x5d\x66\x56\x49\x6d\x54\x5b\xb5\x18\x99\xcc\x62\ \xa4\x35\xfb\x66\x62\x56\xb4\x73\x8f\x4a\xea\x3e\x0d\x21\xe8\xa1\ \x57\x47\x8b\x15\x2e\xb9\x45\x6b\x4d\x3f\x21\x87\xca\xea\xa7\x6f\ \xbb\xb6\x5c\xf1\x65\xed\x33\xeb\x0f\x9b\xe6\x3c\x84\x21\x0c\xea\ \xe3\x85\x6c\x27\x3b\x3c\x39\xd2\x4d\x7e\xf3\x36\xde\xf2\x5a\x23\ \xdf\x7b\x12\x5b\xb3\x30\x30\x0c\x47\xf4\xf4\x9c\xa2\x72\x12\x4b\ \x6b\x03\xed\x9f\x19\x8b\xec\x7c\x14\xc0\xbd\x54\x08\x3a\x79\x5f\ \x96\x50\x26\xcd\x5c\x0b\x07\x4b\x70\xed\x95\x62\xd4\xd7\x3a\x11\ \x85\x9c\x82\xa3\x7c\x91\x44\xf2\x65\x7f\x4e\xb1\xd2\xaf\xaf\xbc\ \x3d\x5f\x1b\x7a\xc7\x77\x87\xdb\x5a\x88\x94\x04\x84\x49\xb7\xa9\ \x57\xbe\x56\x3d\x1f\x31\xcf\xae\xb5\xb6\xa7\xc4\x97\x5e\x1b\x6f\ \xb0\xdc\x42\x02\x6d\x05\x33\x8b\xe4\xc4\xdb\xee\xfb\x96\x2d\xb8\ \x1e\xb2\x84\x09\x9d\x65\x98\x09\x6a\xe7\x0b\x99\x76\xc7\x65\x7c\ \xca\x7b\xa6\x2f\xc5\xe1\x18\xf7\xf8\xae\x79\xf5\xd1\xc0\xdc\xd5\ \x7b\x61\x63\x8f\x77\x16\x05\x3f\x16\x9b\x2a\x7c\x99\x0e\x03\xf7\ \x09\x50\xd7\x3b\x4c\x04\xdd\xa2\xec\x4b\x90\xce\xcb\x1c\x8e\xb7\ \xf4\xa5\xf7\x51\x96\x41\x0e\x47\x5b\xd6\xd2\x35\xb6\x73\x49\xc8\ \x41\xad\x34\x55\x9e\xbe\x32\xb7\xbb\xb9\xe3\xeb\xf6\x63\xc8\x5d\ \xd8\x9d\x0f\x10\xb1\x62\x15\xb3\x09\xb1\x09\x9f\x9f\xf9\x6d\xbc\ \xf6\x70\x73\x11\xf4\xcc\x2b\xe2\x45\x89\xd5\x13\x89\x80\xe9\x20\ \x96\xf4\x14\x8d\x7d\xaf\xed\x95\x0e\x51\x00\xdf\x2e\x7f\x48\xfc\ \x94\x5a\xed\xb2\xb2\x48\xc4\xf4\x14\x2a\x7b\x85\x17\xd2\x6f\x87\ \x95\x4e\x30\x08\xff\xba\x05\x59\x18\x1b\xf0\xf8\xe9\x1d\x2c\x65\ \x21\x54\xac\x61\xb9\x74\x7c\xf5\xb3\x73\x1a\xc4\x42\xd4\x71\x02\ \x9f\x60\xa0\xa6\x38\x1d\x49\x95\x11\x32\x5d\xb4\xc7\x77\x02\x09\ \x5a\x06\x6e\x18\x99\xbb\xbc\xb9\x20\x4e\xbb\xc7\x02\x4e\x57\xde\ \x05\xab\x60\x68\x91\xf0\x01\x4f\xc3\xce\x76\x96\xbb\xeb\x5c\xa1\ \x81\x01\xb9\xd7\x80\x1a\xa8\x40\x82\x4b\x74\xe6\xf7\xbe\x30\x06\ \xce\xa8\x54\xe7\x19\xa0\x21\x1e\xab\xf9\x2a\x9c\xbe\x65\x1a\x02\ \x32\x60\xab\x13\xd8\xd1\xb0\x0b\xe3\xa3\x0a\x5e\xbc\x62\xa2\x64\ \x9b\x63\xc1\xa7\x0e\x3c\xed\xd5\x22\xa0\x9d\x24\x00\x12\x9a\x59\ \xc0\xd5\xbd\xc0\x39\x83\x83\x06\xe6\x49\x82\x5d\x7b\xd8\x48\xe8\ \xf4\x4c\xec\x15\xe0\xb6\x29\x6a\x61\x09\x21\x81\xd5\x18\xe0\x8f\ \xce\x0f\x56\x5d\x93\x86\x64\x67\x02\x62\x83\x01\x96\x02\x2f\x1b\ \x39\x1c\x44\x66\x02\x90\x4f\x02\xbb\xca\xd0\x99\x4d\x27\x72\x42\ \x24\x11\x4c\x84\x4a\xfb\x48\xdc\x3c\x00\x4c\xce\xa8\x54\x6e\xd8\ \x63\x24\x59\x08\xb6\x60\xca\x91\x2f\xd5\x87\x25\xdd\xbf\xbd\x9e\ \x5d\xb4\xe3\x90\x2b\xfe\x1e\xcc\x62\xd0\x6d\xb6\x98\x1d\x28\x07\ \x43\x67\x37\xd0\x25\x5e\x14\xba\x1f\x39\x57\xf8\xe6\xf8\x1e\x6f\ \x8c\x42\x9d\x1b\x18\x9a\x7b\x86\xb3\xee\xb6\xb0\x5c\xd1\x41\x5e\ \x22\x03\x6e\x5b\xc1\xf8\x00\xc6\x08\xe9\xb0\x1f\x9f\x40\x1f\xef\ \x26\x0e\x6a\x49\x1e\x38\xd2\x49\xb3\x8b\xe8\x33\x66\x87\xd2\x27\ \xd4\x85\x84\xb0\x3d\x75\x5e\x0d\x5e\xec\xda\xb9\x11\xa7\x6f\x92\ \x86\xec\x8d\x6b\xac\xd9\xe3\x90\x7b\x2b\xee\xae\xf9\x94\xb6\x95\ \x26\x3b\xfb\x04\x21\x34\xf1\x59\xd5\xcb\x86\xce\x1b\x52\x48\x38\ \xb4\x03\xdf\xcc\x42\x4f\x27\x07\xf8\x26\x7a\x7b\xfa\x42\x69\xf5\ \x35\x31\x6a\xd0\x81\xf1\xf5\x99\xc5\x60\x4d\xc5\x9c\xe9\xde\xa6\ \x46\x37\x1f\xe4\x6f\x89\x3b\x59\x71\xa8\xa0\xeb\xa0\x61\x7a\xd1\ \x0d\x34\x70\xaf\xab\xb5\xfe\x62\x94\x8e\x3a\x59\x46\x56\x3d\x9b\ \x22\xf4\x35\xe5\xfc\x0a\xd3\x7a\xd6\x99\xc1\x60\x32\x68\x27\x50\ \x93\x57\xe9\x99\x38\x19\x0e\xf9\xb5\xbe\xc5\xaf\x7b\x84\xb6\xa3\ \xa3\xbf\x63\x5e\xfd\x69\xd7\x8c\xd8\x87\xb7\xa8\x75\xe6\x66\xaa\ \xb2\xdd\x95\xa1\x76\x45\x91\x55\xf3\xee\x9d\x86\x8a\x44\x55\x93\ \x0d\x5f\xd5\x6a\xfc\xc5\xec\x60\x89\x17\x0c\xc3\xb8\xee\x5b\x5e\ \xb3\x39\xd5\x02\x55\xd7\xb9\x62\x65\x34\x18\x81\xda\x42\x28\xe0\ \x5c\x2e\x0c\x25\xe3\x1e\x37\x64\x1d\x46\xfd\xad\x2d\x3b\x3a\x66\ \xe8\xd4\x87\x2e\x0f\x12\xc8\xdd\x68\x3c\x19\x43\xb2\xbf\x6d\x77\ \xf4\x4b\x96\xde\xcc\xae\x95\x31\x7b\x5d\x5a\xaf\xb5\xbd\x6d\x0c\ \x34\x63\x5e\x2d\x83\x2c\xaf\xeb\xde\xdc\x96\x28\x46\x95\xd1\xcd\ \xdb\x54\x6a\xff\xfe\x22\x1c\xc4\x65\x1a\x53\x3e\x6f\xb5\x25\x44\ \xf2\x55\x07\x5b\xc7\x27\x2f\xf6\xc3\x72\xfb\x36\x51\xb7\x49\xd4\ \x5f\x74\xfd\x0c\x4d\x1e\x0c\x4a\x1c\x1e\x8b\x19\xe6\x43\x4e\x9e\ \x61\xbb\x4c\x25\xc2\x78\x53\xa5\xd3\xea\xc8\x3b\x23\xfd\xd9\x47\ \x3a\xae\xb5\x6c\xd7\xe1\x53\x39\xe0\x93\xb6\xae\x83\xec\x0d\x3b\ \x60\x0d\xc7\x83\x27\xb0\x6e\x6f\xa8\xd6\xf3\xda\x0c\xbf\xe6\xc2\ \x60\x27\x49\xe4\x4c\xab\xc0\x7b\xb5\x90\x0c\x3f\xbb\x90\x55\x67\ \xd1\x59\x65\x26\x92\xb7\xa4\x56\x18\xea\x68\xe9\x3d\x6d\xdf\x5e\ \x97\x2a\x94\x6f\x54\x4c\xe7\xa6\xb7\xc7\xe8\x95\xdb\x39\x57\x7c\ \x0c\xca\xf8\x94\x58\x2e\x96\x04\x75\x74\x99\xf5\x74\x45\x62\x1d\ \x56\xe9\xfe\x3a\x31\x1f\x89\x4d\xfb\x36\x04\xce\x98\x72\x38\xfc\ \x96\x9d\x5a\x4d\x4a\x64\x72\xfe\xfe\x12\x98\xea\x10\x39\x65\x0b\ \xea\xfd\x76\xfb\x22\xf4\x60\xe9\xa5\x86\x13\xd3\x92\x8f\x28\x3c\ \xb8\x7d\xfc\xe8\xa5\xb2\xdb\x16\x06\xea\x2a\x2c\x0f\x50\xc1\x59\ \x83\x4f\x85\x15\xbf\x73\x80\xcf\x04\xba\x23\xb1\x1d\xdb\xa4\xda\ \x0c\x1f\x5d\x02\x6e\x5b\x34\x32\x54\x2b\xca\x08\x09\x96\xd7\x16\ \x80\x4a\x2e\xbd\xc2\xfd\x59\x0a\xdf\x8c\x8a\xb3\xa2\x3c\x8a\xb2\ \xce\xba\x5b\x91\xc0\xb4\xac\xda\x0d\x8b\xbe\x24\x7a\xb8\x2f\x2a\ \x99\x73\x7f\xee\x35\xb5\x67\x9d\xe9\x6d\x49\xe6\x8d\xd5\x3d\xd3\ \xf4\x6a\xa0\xd7\xe6\x9e\x49\x85\xca\x14\xea\xee\x4e\x2f\x83\xa3\ \x3a\x66\xf7\xb7\xaa\x04\x58\x19\x2c\x56\xbe\xc3\x02\x2b\x1b\xb4\ \xbf\x23\xdc\xa5\x7a\xc7\x33\xb4\xaf\xda\xbf\x5e\x5f\xe1\x1e\x6a\ \x55\x7d\x54\x0a\x55\x38\x25\xae\xf1\x5d\x5a\xee\x4c\x75\x4e\xeb\ \xc9\xa7\xca\xb3\x6d\x7c\x52\xa9\x9f\x73\x8e\x1d\x22\x2b\xce\x62\ \x01\x2c\xd9\x3d\x49\xe1\xab\xec\x4b\x1c\xa6\x4c\x63\xc9\xb6\x06\ \x6a\xd4\xbd\x73\xf2\x0e\xc6\xa3\x2a\x55\xe1\x01\xf2\x56\xcf\x77\ \x59\x64\x68\x53\xa8\x9c\x30\x9f\xce\xda\x1d\x2e\x4d\xdc\x80\x37\ \xa8\xf9\x8c\xd1\xdd\x6b\x8f\x5c\xb7\x33\x07\x78\xc9\x15\xdf\x45\ \xfd\x97\xf6\x8a\x98\x97\xf2\xf4\x8c\xd8\xc7\xc8\xd9\x28\xba\x46\ \xea\x7b\x9d\xeb\xc7\x6f\x21\x61\x4b\xde\xb3\x8b\x49\x81\xb2\x29\ \xb0\x45\x8f\xaa\xf6\x4a\x98\xd3\xc9\xde\x4f\xb4\xc3\xd6\x08\x76\ \xfb\x6f\xeb\x36\x32\x92\x4c\x32\x2b\x3a\xfa\x30\xbc\x07\x2a\xf3\ \x87\xf5\xc5\x50\x2a\xb3\xeb\x8c\x0d\xd3\xea\xb9\xc8\x7c\x80\xf7\ \xaa\xf7\xd5\xac\x4a\x75\x0c\x3f\xcd\xd2\x25\xeb\xd1\xc9\x16\x28\ \x41\xeb\x44\x56\x47\x09\x67\x1c\xab\x3e\x7a\xed\xb3\xa9\x55\x21\ \xeb\x9d\x9a\x8c\xcd\xde\x2c\xe0\xec\xf4\x83\x5a\x49\x2c\x34\xcb\ \xea\x76\x87\xc3\x25\x4d\xae\x2f\x7b\xf5\xe4\x72\x6a\x4f\x66\xb8\ \xc8\xc7\x1d\x30\x0c\xc9\x5b\x9f\x50\x99\x92\x20\x6f\x6d\xe8\x54\ \x2f\x92\xcd\x03\x78\xef\x7e\x3e\x63\x54\xd5\xb9\xfe\xbe\x94\xca\ \x5d\xd3\x29\xad\xa8\x5f\xb5\xf6\xb5\x8f\xdc\x83\x96\x1d\x54\xe8\ \xe4\x3c\xca\xef\xe9\xde\xdc\xf2\x91\x55\xb6\x20\xff\x96\xf2\x35\ \xa8\x6c\x5e\x24\xea\x2c\xbc\x1d\xe8\xf9\x9c\x4e\x95\xb7\xba\xbe\ \xf3\xc2\xc3\xcf\xd4\xb2\xb2\x07\xb6\xf3\x4c\xdc\x37\x44\x70\x70\ \x27\x66\xc8\x10\x3e\xac\x2b\x54\xdc\x53\x98\x5d\x21\xf3\xe4\x4b\ \xf5\xc7\xe5\xba\x0b\xca\x11\xcb\xea\x6f\xcf\x62\x61\xe4\xa8\xd0\ \xdd\x5c\x58\xa6\xd7\xd6\x68\x48\xdd\x5e\xf5\x5a\x45\xe2\x1e\xc1\ \x0e\x6a\x58\xed\xed\x98\xb5\x82\xd5\xcd\x87\x3e\xe0\xb1\x14\x6c\ \x1a\x3a\xc3\xa4\x14\x38\x97\x9c\x04\xe3\xe0\xf6\x32\xa7\x78\x89\ \x79\xb6\xbe\x0a\x0f\xa8\xf9\xfc\xee\x1e\x5a\x34\xee\x25\x66\xec\ \x21\x4e\xf7\x3a\xa5\xee\x38\x00\x37\x5a\xdd\x87\x7d\xb2\x18\xb7\ \x8d\xba\x7b\xb6\x94\x45\x7f\x0a\xcc\xbf\x9a\xfb\xf6\xa6\xcf\xc3\ \x89\xd2\xa7\x6c\x0a\x85\x8e\x9a\xdb\xbc\xab\xa5\xb1\x74\x6c\x94\ \x52\xbb\x1c\x15\x28\x7f\x57\x63\x6b\x38\x4b\x75\xd8\x69\xcf\x9a\ \x93\xbe\x7a\x9c\x3d\xd6\x17\xb2\x5e\xd3\xa6\x64\xd5\xa4\x50\xb4\ \x68\x96\x78\x1a\xfe\x9a\x85\xed\xbe\x75\x02\x97\x3d\x10\x8d\xbb\ \x49\x74\x24\x60\x7f\xdb\xc5\xc9\x6d\x22\xd6\x1f\x32\x7d\x6b\x95\ \xe2\x38\xb8\x15\x6d\x4d\xd9\x43\x92\x32\xb6\x6b\x10\x01\xff\xfe\ \xb4\x96\xbb\x01\x6f\xc1\x95\x8d\x55\x98\xd6\x3d\xc8\xce\xc8\x67\ \x32\xdb\x39\xfa\x8b\xab\x48\xa1\xf0\xa3\xc5\x9d\x83\xa3\x2a\x09\ \x32\x47\x22\xfe\x42\x0b\x34\x33\xf1\x50\xe4\x67\xeb\x75\x59\xaf\ \xa4\x46\x4e\x5d\xcb\xef\x37\x57\x86\x70\xa9\x7b\x61\xce\x34\x2c\ \x25\xb9\x9b\x94\x5a\x41\x48\x78\xa4\xcc\xf1\xe0\xb1\x3c\x7d\xad\ \x8f\xcc\x37\xa3\xa5\xea\x32\x38\x07\x35\xdf\xf9\xcf\xee\x33\x6f\ \x5c\x09\xee\x6c\xa9\x2a\x7f\x2f\x5f\x3d\x0b\x91\xd2\xaa\x06\x7e\ \xae\x0a\xf1\xd7\xe7\x10\x4d\x8d\x2a\x33\x9c\xca\x8c\x09\xec\x37\ \x26\xcb\x10\xe4\xe5\x3c\xd7\x5c\x8d\xcf\xe3\x50\xaf\xce\xd7\xf0\ \xd6\xad\x67\x03\x33\x3c\x73\x97\xd3\xcf\x84\xd6\xed\xae\xc1\x55\ \x1d\x96\x8c\x5c\x0c\x4b\xb4\x30\xc1\x9d\x52\xa3\x9f\x3f\x11\xf7\ \x78\x46\x2a\x86\xaf\x61\xd2\xfd\x4c\xe8\xab\x3c\x30\x53\xb5\xba\ \x8d\x91\xbe\x57\x8f\x6c\xd3\x8e\x5f\x5d\xcd\x66\x67\x57\x95\xd5\ \x78\xf9\x56\xcf\x8e\x8a\xde\x92\xb7\x63\x22\x55\x83\x8d\xac\x82\ \xdc\xea\x90\x7d\xc6\x60\x43\xb0\xff\xf5\x72\x0b\x9d\x86\xe6\x68\ \x6f\xce\x9e\x3c\x17\x1d\x2d\x9a\x3b\x5d\xc7\x37\x79\x2f\xad\x7a\ \xeb\x8d\x99\xfe\xdd\x62\xe8\x3c\xdc\xdb\x80\x74\x49\xe8\x2f\x0a\ \x28\x74\x1f\x3f\x14\x49\x4f\xec\xd6\x94\x7d\x97\x7f\x7c\xbf\xee\ \x15\xea\x8c\xbd\x2f\x6a\xa1\x12\xcd\x78\x3a\x71\x5a\x97\x4d\x86\ \x45\x6b\xad\xe9\xb7\x94\xb8\x4d\x0b\xf5\x5d\x7c\x6b\x9a\xf5\x0a\ \xd9\xa8\xdd\x85\x96\x17\xa2\x1a\xee\x02\xcd\x0c\x56\xad\x1b\x4f\ \x9c\x55\xef\xf1\x95\x23\xb1\x02\x66\xa1\xcb\x1b\x8d\x32\x6b\x37\ \x74\x2f\x9f\xf0\x95\x85\xad\x79\xde\xe9\xa9\xfc\xba\x55\xf2\x42\ \xa6\xa7\xb8\x90\xe3\x32\xfb\xdb\xaf\x7b\x5f\x65\x47\x27\xe2\x3a\ \xe3\x8f\x64\xb1\x5f\x31\xdc\x6e\x68\x69\xf8\x29\xba\x99\x3d\x68\ \x51\x67\x5e\xd3\x52\xbd\x49\xb3\x34\x4f\x57\x4b\x2b\x44\x98\x7a\ \x20\xe9\x0b\x60\x1e\x18\xf3\xab\x76\x3f\x7e\xf5\x66\x83\x43\x51\ \x81\xa6\xec\x93\x30\xa9\xd9\xaf\xe2\x1e\xd5\x14\xdb\xa3\x23\xf4\ \x9b\x75\x51\x32\xf9\x14\xf7\x9b\xb8\x43\x7e\x0f\xa9\x6d\x77\x3f\ \x7b\x9b\xd8\x72\xe8\x51\x65\xd8\xcd\x44\x3f\x6e\x2f\xab\xc8\xae\ \x39\xd3\xca\x0a\xa0\x97\x3b\xf3\x66\xb7\x1e\x87\x0c\xb8\x54\xff\ \x26\xcd\x26\x3a\xbc\xe9\xd3\xd9\x5b\x7b\x62\xf2\xe4\x65\x91\xdd\ \x4f\x5d\x90\x0b\x53\xa1\xcb\x3b\xd7\xed\xd6\x9e\x04\x1d\x84\x0a\ \x7d\x20\xae\x5e\x9d\x72\x29\xb4\x67\x99\x59\xb7\x8d\x6a\xb4\xb9\ \x5c\x9b\xc6\xa2\xcb\x5a\x41\xe2\x6f\x50\x5d\xeb\xe7\x93\x52\x28\ \xdf\xfe\x3e\xca\x5e\xfc\x4d\x88\xaf\xed\xd2\x37\x0f\xe2\x2b\xe4\ \xac\x62\x2f\xde\x5b\x48\x85\x4d\xa8\xd2\xe5\x94\x39\x77\x4f\x46\ \xc6\xf3\x1e\xf9\x26\x07\x94\xa3\x3b\xe0\xf9\xe6\x52\x6b\xcb\x94\ \xe6\xd8\x7b\xf6\xe8\x8c\x09\xd4\x6f\x30\xe0\xcd\x2b\xee\x5e\x99\ \x2b\xda\x79\xf1\x66\xde\x7c\xa3\x85\xfa\xc4\xeb\x32\x84\xa7\x8d\ \x35\xcb\x93\xbd\x77\xa4\x65\x8b\xbd\x25\xb8\x60\xb4\x9f\x4f\x0b\ \x6e\x37\x15\x02\x59\xc6\x68\x5c\x8d\x86\xff\x50\x77\xa3\x4c\x58\ \x3d\x9b\x3e\xff\x0c\xdd\xa4\x62\x7f\xf9\xe4\x13\xdb\x4b\xcf\x9f\ \x60\x0e\xd4\xd2\x08\x16\x07\x9a\xfe\x8f\x26\x14\xe2\x25\x66\x13\ \x1f\xad\x7f\x75\x83\x9c\xdf\x65\x63\xbd\x07\xeb\xec\x71\xd8\xf0\ \x93\x7e\x34\xcf\x5c\xdd\x59\x15\xd6\xd7\x52\x66\x6a\x61\x2a\x36\ \x07\xdf\xc0\xb8\x79\x04\x09\x75\x36\x8b\x3f\xbe\x8e\x59\x99\x1b\ \x3b\xbf\xa1\x65\xe5\xb1\x8b\x4c\xbe\xcf\xcc\x3f\xbf\xed\x99\xec\ \xa4\x8f\xe1\x62\x03\x80\xc8\x87\xee\x05\x58\x4f\x3e\x7d\x8c\x6c\ \x7a\xea\x99\xf9\xf2\xef\x76\xbf\xac\x34\x94\x95\x05\xf0\x67\x82\ \x2d\x1c\xfc\x40\x3d\xc8\xa0\x32\xe3\x70\x99\x09\x81\xbd\xa4\x62\ \xfe\x33\xdf\xa7\x6d\xd5\xf7\x91\xe5\xdb\xe7\x7c\x9d\x62\x42\x57\ \xd8\x5f\x97\xbe\x1e\xdc\xa1\x11\x12\xda\x95\x27\x6f\x55\x6e\xd6\ \xec\x95\x60\x38\x26\xc2\x1e\xf3\x37\xbc\xad\x38\x92\x94\x6a\xb4\ \xc3\x7a\x26\x7e\x4e\xe8\xfd\x33\xe5\x9e\xaf\x57\x1f\xb7\x9c\x9f\ \xf3\xd9\xac\x5a\xa0\xb5\x33\x4c\x5d\x2b\x41\x80\x72\x1c\x9d\xaa\ \xf7\xd7\x28\xcf\xf4\x15\x7c\x29\x37\xb1\xe1\x20\x1a\x58\x92\x91\ \xae\xea\x5b\x92\xcb\xd6\x9a\x5f\x5f\xcb\xa7\xbf\xab\x77\x15\x63\ \x96\x5f\xb7\xea\x4c\x2d\x2e\x28\xcb\x05\xaf\x69\x53\x21\x97\x7c\ \xe5\xef\xaf\x3b\xb4\xe5\xae\xb8\x06\x3d\xd4\x61\x0d\x49\x5d\x0e\ \xc6\xe5\x51\xc8\x05\x9d\x1c\xfc\xfb\xb9\x58\xca\x2e\xa8\x92\x1a\ \x08\x8a\xac\xd0\x23\x9e\x75\xfb\xe4\x66\x65\x7e\xda\x97\x99\x9f\ \xa5\xe2\x56\xa0\xd3\xda\x4d\x41\x51\xd4\x20\x18\xdb\x4f\xb0\x9a\ \x55\x74\x67\x22\x77\x90\x38\x58\xf5\x41\x23\xd2\xc9\x34\xeb\x20\ \xbb\x96\xbc\x55\x77\xf9\x4d\x81\x02\x5e\x49\xdc\x3b\x13\x2c\x65\ \x15\xf4\xca\x57\xdb\xd2\x40\xfe\x42\x18\x2f\xed\x7a\x19\xf7\xdc\ \xe8\xa6\x1c\x9e\xe6\xe8\x8c\x9c\xb6\x91\x87\xae\xec\x85\x12\xdd\ \x85\x24\x2d\x5e\x20\x2e\xff\xc4\x0f\x13\x06\x63\x88\x0d\xda\xfe\ \xf2\xd0\xa7\xcf\x73\xa0\x9b\x9c\x99\x09\xb4\x78\x80\xf8\xb6\x2b\ \xe1\x6a\x5a\xd0\x3d\xf0\x8f\x22\xcd\x3c\xd4\x7a\x6f\x51\x54\xcf\ \xf9\xf5\x30\x0f\x7c\x93\xb6\x7c\x99\xff\x4b\xd4\xee\xb6\x4d\xcd\ \xa4\x48\xb0\xf7\x58\xf3\xbc\xa6\x69\xae\x06\x8e\xcf\x45\xf6\x45\ \xa0\xea\xde\x6b\x99\xb6\xe9\xd5\x4b\x36\xf2\x1a\x17\xf5\xe5\x84\ \x53\xd9\xe6\xb3\x80\x0b\xd1\x98\x30\x1b\x74\x3a\xda\x4b\x61\xd3\ \xe1\xc7\x02\x7e\x73\xf1\x34\xa5\x0d\x60\xc3\xe7\x6f\x67\x2f\x27\ \x21\x3d\x62\x0b\x83\x30\xab\x36\xd9\x74\x50\x77\x49\x2f\x62\x77\ \x6a\xcf\xba\x37\x75\x13\x46\xa9\x02\x1a\x24\x74\xf2\xbe\xa4\x27\ \xea\x49\xc9\x1a\x64\xe7\x96\xd8\x9e\xf7\xb7\x36\x3d\x5b\x43\x08\ \xe7\x83\x9a\xba\x91\xe3\xf0\xe5\xfb\x85\x5c\x70\xe8\xbc\xea\x11\ \x5a\x94\xf9\x3c\x1f\x69\x26\xeb\x14\x88\x3e\x43\xba\xca\xe2\xcb\ \xed\xf0\xdb\x76\x49\x17\x10\x91\x86\x97\xd4\x2f\x76\xce\x1f\xb7\ \xc3\x18\x05\xf6\xfa\xbe\x07\x53\x3e\xa1\xfe\x0c\x74\xa3\x2c\xc8\ \x04\x8e\xdd\x6c\x24\x6c\x39\x55\xbd\x26\x66\xb2\xdc\x39\xd4\x9d\ \xb8\x95\x51\xef\xf0\x2c\x2c\xb6\xcd\x8f\xfe\xee\x5a\xb2\xaf\x32\ \x0b\xe0\x21\x02\xff\xc3\xd0\x63\x7d\xae\x6e\x40\xac\x84\x2a\x05\ \x55\x05\x6d\x86\x99\xe6\x58\x0a\xbe\x15\x59\x77\x60\x13\x13\x29\ \xc8\x5d\x31\xc1\xb8\x71\x5e\xc9\x56\xe3\x25\x18\x12\x76\x21\x50\ \x52\x09\x37\x3c\x2e\x71\x0a\x38\x91\x67\xb0\x80\x98\xac\xde\xf9\ \xf6\xa7\xe7\xfd\xc3\x63\x9f\x98\x9e\xb8\xa3\xf4\x86\x5b\xbf\x51\ \x6a\xf1\xac\x9c\xb9\x79\x88\xd4\xe2\x72\x64\x5f\x39\x11\x23\x40\ \xb5\xe0\x06\x87\xd7\x75\xf8\x66\x09\x98\x21\x1e\x5d\x3c\xc2\xf3\ \x76\x13\x85\x7a\x7d\x43\x66\x01\xaa\x3b\x1f\x38\x5c\x65\xac\x0a\ \x48\x73\xba\x90\xbd\xfe\x44\x0c\x6a\x9f\x2a\x9b\x63\x82\xe4\x77\ \x4d\x01\x5f\xdd\x63\xaa\xd7\xbd\x36\xb8\xb0\xd1\x73\x4a\x42\xa9\ \xaa\x29\x36\x61\xae\x31\x98\x16\x01\x6b\xae\x7e\xd0\x40\x0b\xad\ \x80\x44\x98\x4d\xed\xc9\x1e\xaa\x7a\x38\xe2\xbb\xf6\x15\x24\x1c\ \x38\x01\xa6\x11\x02\xab\xf6\x09\x9c\x3f\x6e\x70\x9a\xa6\xfa\xb4\ \xfd\x3a\x79\xed\x39\x12\xf8\x7a\x92\x15\xdc\xbd\x0b\xca\x22\xf2\ \xb9\x1b\xa0\x1e\xdf\x5b\xea\x2f\x04\x13\xbe\xfa\x88\x48\xcd\x77\ \x5a\x6b\xf7\xd9\x81\x46\x3e\x6e\x35\x4f\x27\xd6\x26\xfe\x66\xe0\ \x49\xef\xf0\x93\xb5\x89\x3b\x57\xd2\x94\x2a\x6f\x27\xc7\x0b\x2d\ \xe5\x80\xd5\x57\x9e\x06\x9c\xef\x66\x75\x25\xed\xbd\x0f\x43\x1d\ \xc4\xdd\x44\x06\xbf\xa5\x7b\x86\x27\x90\x96\xec\x42\xfc\x6f\x1f\ \x0c\x59\x36\x8f\x15\x4d\x24\x09\x9c\x5f\xb2\x00\xf5\xf7\x60\xcb\ \xed\x7b\x8a\x09\x7a\x4f\xc5\xb6\x75\xcf\xb8\x06\xa4\x6f\x9b\xa6\ \x46\xb9\x3c\xd2\x04\x69\x2d\xe9\xdc\xe6\x55\x1f\x7b\xd0\x49\xbd\ \x57\xaa\x4c\x19\x81\x2e\xcb\x25\xe1\xa8\x7d\x07\xb6\x3c\x45\x3b\ \x46\x4c\xa1\x23\x03\xfa\xfd\xf9\x5f\x16\x1f\xde\xc0\xbc\x08\xe3\ \x9e\x89\xae\xed\x90\xe6\x62\xf4\x37\x2c\x57\xa1\x4d\xf3\xef\xe6\ \x7a\x8e\x96\x3f\x9f\xa2\x5e\x8d\xee\x0b\xd1\xc1\x26\x08\xcd\xa6\ \xfb\x2f\x82\x7a\x18\x3a\xd2\x8f\xc5\x70\xc6\x42\x18\x7d\xf6\x3d\ \xc0\x4d\x5d\xaf\x43\xec\x0e\x0d\x80\xd3\xef\x01\x51\x73\x05\xa0\ \x25\x3e\x06\xc4\x3b\x27\xe1\xfd\x21\x2c\xba\x89\x43\xda\x61\xaa\ \x29\x66\xda\x85\xf2\xec\x96\x07\xf5\x3e\xcc\x47\x27\x63\x00\xeb\ \x97\x5a\xb1\x3b\xe7\x00\x60\x0a\x47\xb8\xa0\x74\x0b\xd9\x73\xed\ \x56\x3f\xd8\xbb\xcb\x03\xb0\x4a\x9a\x60\xe1\x40\xf0\x53\x4b\x41\ \xb0\x70\x10\xf9\xa9\xa5\x21\x14\x4f\x3c\x6d\x7e\xe5\x2b\x49\x26\ \xb2\x51\xef\xa5\xec\x65\x15\x56\x19\x67\x40\x98\x09\x39\xf4\x92\ \x3e\x5b\x0b\x86\x65\x41\xe8\x65\x4b\x88\x66\xd5\xed\x3a\xaa\x9f\ \x01\x36\xe1\xca\x22\xe3\x4d\x01\xc9\x12\x64\x3d\x4a\x04\xcc\x20\ \xe7\xab\xe2\xd9\xb7\x83\xc3\xb0\x09\xa3\xe2\x89\xdf\xe0\xb7\x0f\ \x26\x21\x24\x71\x9c\xa7\x69\x1a\x48\x17\x64\x1a\x62\x35\x37\x82\ \xdc\xd3\x4e\x9b\xeb\x2b\xec\xf0\xc2\x77\x42\x9f\xe0\xa7\xc1\xee\ \x4b\x84\xfa\xd6\x82\x8c\xe5\xb0\x2c\xec\xa0\x92\x30\x18\x7d\x41\ \xe8\xa6\xe7\x13\x48\xf2\x3d\x12\x14\x56\xd8\x91\x30\xa0\x94\x86\ \x83\x54\x5a\x51\xc2\xed\x24\x08\x5b\x2f\x18\x5a\xc4\x95\x1e\x2c\ \x1c\xe9\x68\x68\x6d\xa5\x8b\x23\xb9\x9d\x02\xdc\xcf\x50\x47\x1b\ \x16\xa8\xd8\x21\xa6\x04\x87\x30\xf4\x28\xb6\x6c\xb8\x82\xee\xe9\ \x10\x97\x43\xca\xe3\x0a\x5c\x29\x38\x21\x80\xf7\x87\x7a\xc6\x02\ \x5a\x03\x9d\x27\x7b\xe6\x82\x18\x43\x36\x80\x26\xad\x0c\x37\x23\ \xc8\x47\x4f\xcc\x87\xd6\xf8\xfb\x4e\x07\x5e\xa8\x76\xa0\x94\xca\ \x22\xe5\x09\x67\x64\x0d\x37\xd1\x99\xd5\xa1\x82\xd9\x8e\x5a\xe9\ \xce\xee\xfb\xdc\x09\x2e\x7d\x5b\x3f\xf8\xb9\xb1\x42\x67\xf8\xd0\ \xcd\x1d\x94\xd5\xa7\xc0\xe1\x34\x01\xe0\xe6\x0e\xd4\x6e\xa0\x5d\ \xed\x8b\xd8\x6a\x19\x92\xe6\x95\x19\xe1\x95\x54\xc0\x9d\x5c\x6f\ \xcf\x96\x06\x55\xa4\x55\xaf\xcf\xd5\x67\x65\x8a\x29\x21\x50\x48\ \xf3\x31\xa4\x0b\xbd\x71\x48\x4f\xbd\xa7\xb9\xc6\xd5\xcb\x46\x30\ \xf2\xf4\x97\x04\xd3\x2c\x8d\x76\x2f\x3f\xde\xde\x51\x88\xaa\x6d\ \x26\x8c\x8f\x1f\x86\x5b\xe9\xc0\xcc\x36\xdc\xa3\xb7\xe7\xe9\x49\ \x0d\x25\x15\x5c\x49\x17\xfa\x26\x48\x1a\xbe\xec\xef\xb2\x20\xf3\ \x5e\xbd\x0b\x00\x8c\xe1\x27\x16\x56\x92\xd9\x51\xb5\x6d\x54\xcc\ \x9e\x28\x12\x5f\x24\x02\xf5\x57\x07\xf9\x91\xd3\x3e\x6e\x37\x7b\ \xa0\xd6\xbf\x92\x83\xfe\x59\x2e\xe5\x2b\x39\xaf\x57\xcf\x81\xce\ \xbe\xa0\x45\x99\x7f\x9c\xab\xf2\x7e\xce\x5c\xd8\xa6\x2a\x18\x87\ \x5b\x2f\x63\xff\xbe\x33\xe0\xb5\xca\x69\xd4\x76\x3e\x92\xe1\xe7\ \x7c\x13\x3b\x6d\xc2\xa2\x57\xe8\x06\x20\xd2\x72\x8c\x9f\x39\x6a\ \x1e\xbd\x3d\x99\x4b\xd2\xee\x31\x97\x24\x1a\x52\x11\x25\xb3\x0c\ \x3e\xe4\xd8\x4e\x7a\x80\xb9\xdf\x42\x1e\x45\xa2\xa2\xe2\xeb\x2b\ \x18\x50\x46\x02\x59\x59\xc6\xfb\xbc\xaa\x0e\x02\xe7\xa4\xfd\xe2\ \xe0\x91\x1b\x00\xe8\x3e\x14\x40\x61\x63\x01\x20\x53\x11\x0b\xc6\ \x1f\x8d\xf8\x28\x13\x61\xd6\xf8\x30\xb7\x2c\x82\x7c\xc2\x77\xe0\ \xbe\xc2\xff\x07\x84\x95\x97\xfb\ \x00\x00\x07\xea\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x02\x00\x00\x00\x4c\x5c\xf6\x9c\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2c\x4a\x00\x00\x2c\x4a\ \x01\x77\x7a\x74\x4d\x00\x00\x07\x9c\x49\x44\x41\x54\x78\xda\xed\ \x9d\x3f\x4c\xdb\x58\x18\xc0\x5f\x1c\x07\x4c\x4c\xb9\x64\x49\x60\ \x74\x36\x24\x40\xa2\x13\x30\x12\x26\x90\xe0\xd4\xdb\xc8\x76\x6d\ \x59\x4e\x27\xf5\xa4\x1b\x2a\x5d\x47\xa4\x76\x38\x09\x74\xba\x89\ \xeb\xdd\x46\x36\x2a\x51\xa9\x4c\x90\x91\x32\x81\xd4\x54\x62\x8b\ \xc7\xfc\xd1\x49\xc9\x15\x9c\x38\xc4\x4e\x6e\xf0\x5d\x44\x6d\xc7\ \x49\xfd\x9e\xdf\xb3\xdd\xef\x53\x55\x55\x14\x2b\xc9\xfb\xbd\xef\ \xef\xfb\xde\x97\xc8\xc6\x2f\x7f\x23\x10\x76\xc2\xc1\x12\x00\x00\ \x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x20\x00\x00\x00\x80\x00\ \x00\x00\x00\x42\x4f\x78\xca\xaf\xb7\x34\x3b\x96\x99\xc1\x7a\xd1\ \x7c\xa1\x09\x00\xdc\xcb\xb7\x2b\xc2\x9c\x14\x73\xfd\xb8\x5c\xd1\ \xf2\x05\x30\x41\x18\x82\xb3\xfa\x08\xa1\xa2\xac\x81\x0f\x70\x2f\ \xf3\x78\xab\x8f\x10\x2a\x95\x01\x00\x86\x64\x66\xa2\xd8\x00\x74\ \x00\x80\x03\x00\xcb\xe5\x28\x6a\x0f\x34\x80\xa5\x06\xc8\xa1\x5b\ \x7d\xaa\x00\x44\x21\x22\x4d\x63\x69\xc0\x07\x19\x00\xb0\xb3\x3f\ \xa1\xf4\xc0\x54\x01\xe0\x87\x40\x72\x05\x00\xb0\x73\x00\xb5\x46\ \xb7\x5a\xef\x02\x00\x66\x26\x28\x94\xf6\x87\x1e\x80\x74\x92\x4b\ \x25\x38\x3c\x00\x3a\x00\x70\x2f\x98\xf1\x0f\x42\xa8\x28\x77\x00\ \x00\xcb\x10\x08\x00\x60\xc9\x82\x84\x05\x20\x94\xf1\x0f\x55\x00\ \x98\x45\xd0\xb0\x3a\x00\x4a\x00\x20\x05\x63\x0e\x00\xb7\x08\x5a\ \x94\x01\x00\x68\x40\x70\x01\xcc\xe3\x79\xe0\x8f\x21\x8d\x7f\xe8\ \x01\xc0\x4c\x02\x4a\x15\x3d\xc4\x00\x78\xef\xb7\x3f\x6e\x0d\x6e\ \x73\x59\xd8\x5c\x16\xbe\xf4\xa9\x5a\xa3\xfb\xfd\xaf\x75\xd0\x00\ \x02\x1e\x38\xdc\x6e\x83\x02\x00\x9e\x11\x00\x1d\x00\x90\x31\x41\ \x6e\x23\xd7\x0e\x00\x40\xa2\x10\xc1\x2c\x82\x82\x09\x0a\xa4\xfd\ \xa9\x35\xba\x8a\xda\x03\x00\xcc\xec\x4f\x80\x12\x37\x6f\x01\x60\ \x16\x41\x43\xef\x00\x3c\x07\x20\x41\x08\xc4\x10\x40\x3a\xc9\x89\ \x42\x04\x34\x80\x19\x00\xfc\x63\x48\x77\x12\xac\xd3\x1b\x0f\x01\ \x2c\x64\x58\x79\x60\x1d\x00\x20\x84\x50\x66\x1a\x8a\x10\x4c\x01\ \xcc\x49\xa0\x01\xec\x00\xb0\x4a\xc1\x50\xd0\xfa\x27\xbc\x03\xc0\ \xc6\xfe\x04\xae\x7f\xc2\x2b\x00\xec\x6a\x70\x01\x03\xc0\xfb\x53\ \x03\xe4\x8a\xf6\xe3\xef\xff\xa0\xaf\x40\xbc\xd2\x00\xdc\x63\xc8\ \xb2\x8e\xbe\x0e\xf1\x04\x00\xdc\x86\x0c\x3c\x00\x9a\xa6\x5c\x14\ \x22\x2f\x72\x0f\x76\x36\xc4\xf0\xf8\x00\x12\xd7\x51\x35\x6a\xab\ \xff\xea\xc9\x94\x61\x30\x6f\x5b\x3d\xfa\x73\x10\x38\x6f\x00\x04\ \xa3\x11\xe8\xfe\xea\x23\x84\xb6\x57\x27\xd6\x1e\x8e\x07\x1e\x00\ \xfe\x31\x24\x9d\x46\x20\xd3\xea\x1b\xf2\xec\xd1\x24\x65\x06\xe4\ \x01\xe0\x3b\x80\x0f\xa5\x0e\x93\xd5\xef\x33\xa0\x99\xc6\x93\x07\ \x80\xff\xee\x29\x64\xb3\x3b\x1b\xa2\x43\xa0\xfc\xf2\xf1\x54\x3a\ \xc9\x05\x15\x00\xe6\x31\xa4\xa2\xf6\x98\xdf\x86\x14\x85\x48\x2a\ \x11\x0d\x2a\x00\xcc\x63\x48\x3a\xa5\xb4\xe3\x73\xd5\xe1\x7f\x6b\ \x8d\x2e\xb5\x8a\x1e\x61\x00\xf8\xc7\x90\x74\x72\xe0\x52\x59\xab\ \x35\x06\xea\xd9\xde\xd1\x6d\x50\xf3\x00\x12\x29\x58\xc7\xb5\xdd\ \xc8\xcc\xf0\xc6\xdf\x7d\x4b\x28\xcd\xf0\xb5\x86\xfe\xfc\xf5\x27\ \x6b\x9b\xd0\xf1\x79\xeb\xe9\xba\x68\x1b\x04\xd3\x2c\x68\x13\x06\ \xc0\xf0\x2e\xc6\xd6\xca\xc4\xf6\xea\x84\x8d\x49\x9c\xe6\x73\xd9\ \xf8\xc1\x3b\xc5\xf4\xf3\xd3\xcb\xb6\x2d\x80\xc3\x42\x6b\x90\x72\ \x23\x84\x88\xfb\x27\xd2\x00\xa6\x71\x8b\xa0\xae\x3b\xda\x1c\xc8\ \x6d\x2e\x0b\xa7\x97\x6d\xd3\x2f\x28\x6a\xef\xec\xaa\x9d\x5d\x1c\ \x1f\x65\xfb\xaf\x3d\x1c\x7f\xf6\x68\xb2\xef\x1e\x8c\x3f\x44\x60\ \x10\x06\xc0\xf0\x36\xa4\x73\xf0\xba\xb3\x1e\x7f\xfe\xe7\x27\xab\ \x12\x98\x00\x1c\x9c\x34\x6d\xd5\xba\xaf\x2b\xa9\x04\x97\x5d\x1c\ \x37\x9e\x52\xd4\x5e\x51\xee\x5c\x5c\xdf\x9d\x5e\xb6\x7d\xe1\x84\ \xd9\xde\x05\xab\xd6\xbb\x0e\x7e\x75\x4e\x8a\x59\x53\xdc\xa2\xdc\ \xb9\xff\xc8\xd9\x55\xdb\xfa\x06\x44\x21\xf2\xf2\xf1\x94\x6d\x64\ \x21\x0a\x91\xa5\xd9\xb1\xed\xd5\xb8\x5f\xa2\xa0\x79\x09\xff\x3a\ \xbc\xe6\x1d\xbf\xa7\xeb\xa2\x75\x1d\xef\x6f\x5e\xdb\x4a\xdc\xab\ \x27\x53\xce\x71\xdd\xc5\xf5\x9d\x5f\x00\x30\xbf\x0d\xe9\x1c\xbd\ \x88\x42\x24\x97\x35\xef\xd6\xb3\x2b\xb5\xbf\xfd\xad\x36\xfd\xa7\ \xef\x26\x87\x9e\x2c\x1d\x9f\xb7\xfc\x03\x00\xcb\x03\xe3\x17\x41\ \x87\xba\x90\xcd\x65\xc1\x14\x28\x57\xeb\xdd\x8b\xeb\x3b\x45\xb5\ \x29\x44\x6f\xad\x08\x26\x0f\x61\x15\x5b\x6c\x6c\x00\xe0\x8f\x84\ \xc3\x2f\x82\x8e\x12\xbf\xef\x6c\xc4\xad\x59\x71\xbe\xd0\x34\xad\ \xe3\xbc\x14\xb3\x0d\x52\x4d\x82\x7f\x7e\xc0\xf9\xc7\xfe\x10\x29\ \x82\xee\x1e\xde\xe4\x0b\xad\x8f\x9f\x7b\x57\x53\x5a\xb0\xb5\x22\ \x98\xb0\x99\x2a\x13\xe9\x24\xf7\x22\xf7\x60\x14\x95\xc5\x8f\x44\ \x89\x85\xa1\x3e\x19\x09\x77\x71\x7d\x77\x71\x7d\x97\xbf\xf7\xae\ \xd2\x49\x2e\x95\x88\x2e\x48\x7c\x2a\x19\x35\x0e\x2a\xb6\x57\xe3\ \xa7\x97\xed\x41\x09\x87\x71\x42\x39\x4a\x41\x65\x50\xca\xc6\x06\ \x00\xa6\x03\xf0\xa8\x08\x5a\x94\x3b\x45\x19\x21\x84\xf2\xf7\x34\ \xd5\x79\x71\xd3\xc9\xa8\xd2\xea\x0d\x75\x48\xa5\x8a\x4e\xa4\x62\ \xc1\xfb\xc4\x04\x51\x2b\xbf\x0c\x0d\xb4\x4a\x65\xcd\x9a\xb2\x79\ \x27\x64\x7c\x00\x8c\x84\x63\x0c\x00\x46\xc2\x31\x06\x00\x03\x69\ \x18\xfb\x00\xfc\x91\x70\x44\xae\xf5\x5a\x23\xb1\xfe\xf1\x80\xc5\ \x33\x77\x42\x05\x40\x9a\x61\xdf\x09\xda\xaf\x18\x8f\x90\x3d\x39\ \x59\xbc\xbf\x7e\x4e\x22\x84\x6a\x75\xbd\x54\xd1\xab\x75\xbd\x54\ \xd6\x4b\x65\xcd\xbb\x6b\xdf\x04\x00\x0c\x0d\xec\xe8\x38\x80\x11\ \xcd\xa0\x5c\xd1\x9c\xab\x37\x07\xef\x94\x17\xb9\x07\xa9\x04\x67\ \x2a\xad\x7f\x94\x3b\xd5\x46\xb7\x5a\xef\x16\xe5\x4e\xad\xa1\x93\ \x0a\x9a\x89\x00\xf0\xc5\xf7\x62\x8c\x52\x8b\x55\xd4\xde\xde\x91\ \xe2\xbc\x9d\x8d\x54\x6e\x69\x76\xcc\xf4\xf3\x39\x29\x36\xf7\xdf\ \x3f\x27\x10\x42\xfb\x6f\x6e\x71\x8e\x01\x48\x3a\x61\x9f\x78\xe0\ \x51\x22\xb1\xdd\xc3\x1b\xd3\x6b\x2d\xcd\x8e\x59\xab\x0e\x7f\x9c\ \x28\x43\x6d\xce\xda\x22\x99\x06\x3a\x8e\xce\xd6\x73\xae\xa8\xd0\ \x29\x84\xec\xbf\xb9\xb5\xda\xba\x9d\x0d\x71\x69\x76\xcc\xd4\x86\ \x55\xad\x77\x87\x56\xd9\xe6\xa4\x18\x91\x6b\xe8\x1c\x9d\xad\xe7\ \x20\x44\xbe\x17\x63\x28\x80\xb7\xef\x55\xab\xc5\xd8\x5a\x11\x8c\ \xfc\x31\xbb\x68\x1e\x89\x76\x7c\xae\x0e\xdd\x19\x44\xae\x61\x71\ \x14\xb6\x1e\x05\xfb\xe3\xec\x87\x2e\xae\xef\xac\x5d\x11\xa2\x10\ \xe9\x9f\x26\xda\x36\xe4\xee\xbd\x19\xd2\x1d\x44\xe4\x26\x3a\xe7\ \xe9\x27\x1f\x31\x2c\xc1\xff\x18\x93\x83\xad\x81\x5c\xd1\x6c\x1b\ \xad\x72\xd9\x78\xdf\x86\xa4\x12\x9c\xd5\xeb\x56\xeb\xdd\xbc\x63\ \xbd\xd3\xfa\x08\x13\x00\x58\xf6\x87\xd4\xf7\x62\x1c\x9c\x34\x8d\ \x63\x00\x93\xf3\x54\xd4\xde\xee\xe1\x8d\xd5\xa3\xa6\x93\x9c\x69\ \x12\xa3\xad\x12\xe4\x0b\x4d\x87\xfd\x91\x4a\x70\xf8\x3d\xbc\x3c\ \x5b\x13\x44\xaa\x02\x51\x2a\x6b\xa5\xb2\x96\xff\x7f\x71\xe7\xa5\ \x58\x66\x86\xcf\x4c\x47\x0f\x4e\x9a\xb6\x80\xad\xa7\x5d\x86\x2b\ \xb6\xfe\xf2\xde\x91\xf2\xdb\x0f\xdf\x38\x28\x81\x73\x9b\xa9\xb7\ \x00\x08\xdc\xc5\xf0\xa0\x08\x5a\xad\x77\xab\xf5\x36\x42\x6d\x87\ \x4d\x63\x6b\x3d\xb2\x8b\x82\x35\xf8\x29\x95\xb5\xb7\xef\xd5\xbe\ \xba\xd4\x1a\xdd\x5a\x5d\xef\xc7\x0e\xf8\x77\xd9\x78\x86\xf6\x07\ \x31\xaa\xc1\xe5\xec\x3a\x18\x0d\x2b\x64\x1b\x7d\x1e\xbc\x53\xac\ \x8d\x75\xa4\x84\x63\x68\x7f\x10\x42\x93\x13\xb4\x27\x3a\xad\x3d\ \x1c\x1f\xd4\xbe\x67\xeb\x8a\xbd\xde\x28\x1c\x9e\x06\xe0\x86\x40\ \x4f\xd7\xc5\xed\xd5\xb8\x71\x72\x4b\x07\x80\x73\x23\x1b\xfd\x4b\ \x7a\x3c\x5b\x0d\x10\x85\xc8\xf6\xea\x84\x51\x5d\x19\x51\xf2\x85\ \x16\x4e\x33\x88\xb3\xd3\x72\x68\x6e\xf4\x9d\x06\xb0\x1a\x09\x87\ \x69\x0d\xf6\x07\xa7\x57\x72\x45\xb3\xe6\x6b\xfe\x05\x10\xd0\x91\ \x70\xa7\x97\x6d\x5b\x06\x72\x45\x7b\xfe\xfa\x13\xfd\x8f\xe3\x1e\ \x00\x93\x91\x4c\x44\x12\x37\x2b\x03\x63\xf5\x99\x0c\xdb\xc5\x01\ \xc0\x60\x24\x13\xa9\x68\xe4\x3e\x03\x86\xab\x8f\xe5\x84\x27\xd9\ \x38\x00\x62\x89\x9b\x51\x1c\x5d\x9a\x1d\xdb\x3b\xba\x65\x38\x68\ \xda\x3d\x00\x26\x53\x71\xc9\x1e\xa6\x9f\x5e\xb6\x89\x9c\x6a\xb1\ \x31\x41\x41\x0c\x81\x7c\x28\x5c\x80\xde\x6b\x80\x86\xd2\xd3\x00\ \x40\x7f\x3e\x21\x7c\xa5\xf9\x67\x42\x7f\xa2\x43\x28\xfb\x47\xdd\ \x03\xa0\xdf\x5c\x16\xca\xfe\x51\xf7\x00\x1c\xee\x38\x00\x00\x1a\ \x00\x14\xb5\x87\x79\x18\xe4\x73\x97\x13\x80\x28\x28\x5f\x68\x9e\ \x5d\x51\x8a\xa3\xe1\x3b\xe5\xed\x65\xef\xe8\x76\xf7\xf0\x86\x42\ \x15\x37\xac\xfd\xeb\x04\xb2\xd9\x7e\x33\xe5\x42\x26\x96\x99\x8e\ \x4a\xd8\xbd\xba\x5f\x95\x06\x10\x2b\x27\x18\x18\x10\x48\x88\x33\ \x61\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x20\x00\x00\x00\x80\ \x00\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x20\x00\x00\x00\ \x80\xb8\x93\x7f\x01\x4e\xbb\x9b\x09\xae\xda\x80\xe8\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x05\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x60\x00\x00\x00\x60\x08\x02\x00\x00\x00\x6d\xfa\xe0\x6f\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x21\x37\x00\x00\x21\x37\ \x01\x33\x58\x9f\x7a\x00\x00\x05\xb7\x49\x44\x41\x54\x78\xda\xed\ \x9c\x3f\x4c\xe3\x56\x1c\xc7\x9f\x8d\x71\x0c\x06\x1a\x96\x00\xa3\ \xb3\x05\x01\x12\x4c\x09\xe3\xc1\xc4\x49\x45\xe2\x86\x4a\xc7\xd6\ \xde\xdd\xd2\xaa\xe2\xc6\x53\xd9\x7a\x52\x6f\xa8\x04\x6a\xd5\x85\ \xd3\x8d\x64\x03\x89\x4a\xc7\x04\x19\x81\x09\xa4\x0b\x82\x2d\x1e\ \x21\x51\xd5\xa4\x77\x71\x70\xfe\xe0\x74\xf0\xd5\x7a\xe7\xc4\x29\ \xbf\x97\xf7\x12\xc7\x79\x4f\x2c\x44\x4e\xec\x7c\xf2\xfd\x7d\xdf\ \xef\xf7\x7b\xcf\x16\x1e\xff\xf4\x17\xe2\xc3\x7b\x88\x1c\x01\x07\ \xc4\x01\x71\x40\x1c\x10\x07\xc4\x01\x71\x40\x1c\x10\x1f\xcd\x86\ \xc4\xe2\x43\x7f\xff\xe1\x2b\x6d\x12\xf0\xc9\x6f\x0f\x8d\x83\x13\ \xb3\x8f\x14\x04\xa2\x83\x10\xca\xdc\xdc\xf7\x51\x88\xcd\x6a\x83\ \xd0\xb7\xa4\xf5\x6a\x1f\x01\x8a\x4e\x0d\x80\x8e\xbf\xf4\x31\x1d\ \x5f\x28\x28\x73\x7b\xdf\x5f\x80\xa2\x53\x50\x03\xaa\xf5\x11\x20\ \x55\x11\x22\x61\x11\x08\xa8\x9f\x14\x04\x8d\x2f\xc3\xac\xf7\x97\ \x82\xa0\xf1\xa5\xfb\x9b\x0e\x7d\x40\x73\x1a\x0c\xd0\x07\xbd\xcf\ \x00\x69\xc1\x72\x68\xca\x80\x26\xc6\x45\x55\x11\x02\x93\x22\xd2\ \x07\x04\x75\xe8\x5c\xc1\x32\xcc\x7a\x1f\x01\x8a\x06\x2e\xbe\x68\ \x03\x9a\x1c\x08\x58\x7c\x51\x06\x34\x03\x2d\x32\xfc\x9d\x22\xda\ \x43\xea\x56\x7c\x21\x84\x7e\xf9\x6e\xec\x81\xc9\xe4\x37\xaf\xff\ \xee\x79\x05\xcd\x6a\x12\xa3\x4b\xec\x6e\x32\x29\x76\x51\x41\x3d\ \x91\x4c\x52\x04\x34\xc0\xe8\x12\x33\xc1\x50\x10\xb4\xcd\x0a\x08\ \xb1\xdb\xde\x07\x44\xd0\x66\x7d\x78\xb9\x9f\xcd\x5b\x1c\x90\x7f\ \xcb\x7d\x3a\x80\xd8\x19\x50\xd7\xcb\x7d\x5a\x80\x58\x19\x50\x26\ \x00\x0a\x9a\x18\x17\xa1\x6d\xd6\x5e\x71\x68\x3a\x80\xd8\xcd\x5f\ \x5d\x77\x68\x3a\x80\xd8\xc5\x97\x1f\x1a\xb2\x14\x00\xcd\x69\xc1\ \xcc\xa1\xa9\x15\xab\xd0\x36\xeb\xf6\x7e\xf1\xe8\xbc\x8c\x7a\x64\ \x88\xed\xc7\x17\xb4\xcd\x4a\xbd\xcb\x31\xab\x0d\x4e\x8c\x8b\x3e\ \x55\x10\x34\x03\xa2\xbe\x10\xb6\xbc\x10\xda\x58\x1b\x31\xcc\xfa\ \xab\x77\x1f\x59\xe4\x04\x14\x14\xd4\x45\xdf\xb5\xe9\x20\x84\x54\ \x45\xd8\x5c\x1f\x85\x6a\xb9\x23\x80\x80\x6d\x56\x8a\xbe\xeb\xd0\ \xb1\x47\x24\x2c\xbe\x79\x36\x46\x9d\x51\xbb\x80\xe0\x6d\x56\x3a\ \x80\xa2\x53\x12\x4e\xc7\xc9\xc8\xde\x3c\x1b\xf3\x11\x20\x1f\xee\ \x95\x8a\x84\x07\x7c\x04\x08\xea\xd0\x14\x17\xc2\x32\x37\xb5\xa6\ \x55\x08\xf5\xbd\x8e\x52\x9b\x3a\x67\x14\x5f\xaa\x22\xd8\x09\x84\ \x7d\x8a\x39\x4d\x2a\x9a\xf5\xad\xbd\x22\xce\xf7\xe0\xc4\x74\x45\ \x59\xae\x60\x1d\x9c\xdc\xf9\x0a\x10\xab\x85\xb0\xc4\xb4\xdc\x68\ \x31\xab\x8b\x43\xc9\x54\xc9\xf9\xf7\xf4\xaa\xb2\xb1\xf6\xc5\x01\ \xc9\x54\xc9\xa5\xd0\xe5\x85\x90\x7d\x5e\xe2\x9a\x8e\x1c\x90\xaa\ \x08\xec\x76\xb3\x36\x3d\xf2\xe9\xa3\xa1\xb3\xeb\x8a\x23\x43\xc3\ \xac\x1f\x5f\x94\x97\xe6\x43\x8e\x7c\x5c\x09\x3a\x3e\xcd\xe5\x0a\ \x56\x5a\xaf\xda\x7f\x20\x58\x62\xc7\xe2\x0b\xa4\x20\xaf\x60\x7c\ \xb1\x32\x8c\xff\x8b\x13\xc1\xc5\xd5\x38\xcd\x45\xc2\xe2\xd2\x7c\ \x68\x63\x6d\xe4\xb7\xef\xc3\x1d\x32\x69\xe8\x14\x06\xdd\xcd\xda\ \xf4\xf8\x19\x6d\xd0\x8e\x1a\x87\x78\xae\x60\x35\xca\x47\x55\x04\ \xaf\x55\xc9\xb3\xeb\x4a\x87\x00\x41\x0d\x08\xba\x9b\xd5\xeb\xf8\ \xe7\x2b\x2a\x9e\x0d\xda\xae\xbc\xb5\x57\xc4\xe9\xb4\xc8\x18\xa1\ \xd3\x5c\xe7\x42\x0c\x9a\x22\x7e\xc8\x54\xbd\xbc\x6f\x7d\x69\x18\ \x57\xc4\xf1\x45\x19\x0f\xde\x17\x8f\x55\x2f\x73\xbc\xd4\xab\xd0\ \xcb\x20\x04\x44\xd0\x66\x85\xa6\x88\x67\xd7\x95\xb7\x87\x46\x32\ \x75\x77\xf9\x5f\x1c\x39\xe3\xeb\x84\xe2\xfc\x3c\xd9\xbc\x85\xcb\ \x67\x75\x51\x71\x6c\xbb\x71\xec\xa6\xc0\x49\x00\xe1\x2c\x06\x9d\ \xbf\xc8\x9a\xa7\x76\x38\x24\xbf\x6c\x6b\x44\xc2\x03\x73\x9a\x14\ \x8f\xc9\x8d\x5a\x88\x4e\x49\xcf\x57\xd4\x16\xa6\x46\x90\xc7\x4b\ \x9d\x89\x2f\x2a\x45\x7c\x5a\xaf\xa6\x75\x84\x23\x73\x8d\x6c\xfe\ \xfe\xd5\xbb\x8f\x8d\xa1\xdd\x4e\xfa\x4e\x08\xc8\x9f\xbb\x59\x0d\ \xb3\x4e\xbd\xd6\x23\xf4\x20\x68\x11\xdf\x13\x9b\xc9\xa8\x29\x88\ \x20\x45\x24\xe8\x72\xb4\xce\xb3\x3a\x46\x9c\x0c\x10\xf3\x22\x3e\ \x1e\x93\x37\xd7\x47\x5b\x1c\xf0\xe3\x1f\xff\x34\x42\x7f\xf9\x64\ \x64\x69\x3e\x74\xa9\x57\xb3\x05\x2b\x9b\xb7\xd2\x7a\x35\x57\xb8\ \x6f\x73\x65\xad\x13\x0a\x22\xf8\xb5\xe7\xa2\xad\xe4\xb3\xbd\x5f\ \x6c\x2a\xc9\x64\xaa\x14\x8f\xc9\x33\xda\xe0\xcc\xe7\x17\x86\x3e\ \x4f\x11\xb7\xb5\x6c\xde\x4a\xa6\xee\x08\x84\x4c\xe2\x41\xd0\xdd\ \x76\x04\x97\xd5\xa2\x93\x7b\x7c\x51\xc6\xab\x8a\x97\x4f\x46\x9c\ \xa4\x39\x9b\xb7\x5c\x15\x99\x93\x94\xc4\x63\x32\x5e\xa3\xb0\x05\ \x04\x4d\x82\xd2\xf0\x29\xcc\x6b\x12\xb8\xd4\xab\x78\x5a\x38\xab\ \x0d\x2e\xcd\x87\x12\xd3\x32\x9e\x3a\x79\x15\x7d\xf1\x98\xdc\x09\ \x40\x04\x6d\x56\xa8\x82\xbc\x4e\xa1\xdf\xd6\x7e\xde\xfd\xe4\x32\ \x1d\x3b\x7b\xc6\x5f\xdc\x39\x2c\x35\x7d\x7b\x24\x2c\x12\x2c\x9f\ \x89\x70\x03\x62\x7e\x4b\x6a\xd3\xaf\x61\x98\xf5\xad\x3d\x03\x37\ \xfb\xe5\x85\x90\x5d\xee\x68\x93\x12\x6e\x8b\x99\x9b\x5a\xd2\xa3\ \xa4\x20\xf8\x75\x09\x00\x01\x0d\x08\x7e\x4b\xea\xe9\x55\x65\x7b\ \xbf\xf8\xe7\xa9\x89\x77\x9d\x5d\xeb\x82\xaa\x22\xe0\x55\x85\x4b\ \x44\xc9\x54\xa9\x69\xc7\x9a\x20\xca\x24\xd6\x21\xe6\x55\x94\xb7\ \x4e\x88\x8f\xce\xcb\x08\x95\x9d\x33\x36\xae\xc7\xae\x2e\x0e\xe1\ \x0d\x8d\x78\x4c\x56\x15\x01\xd7\xd7\xce\xfb\xd2\x03\x37\xaa\xd3\ \x04\x44\x70\x4b\xaa\xab\x10\x27\x2b\xc1\x1a\x63\xd0\x25\x19\x55\ \x11\x12\xd3\x32\x3e\xbb\xa5\xf5\xea\xeb\xdd\x4f\x36\xee\x76\xd6\ \xbb\x25\xa6\xf1\x85\xd8\xec\xa1\x7b\xfa\x68\xb8\xb1\x1f\xb6\xba\ \xa8\xb8\x7a\xd2\xd0\xe6\x21\x05\x0f\x22\x30\xb9\xcd\xf5\x51\xea\ \xbb\x2f\x9a\x76\x7c\x18\x6d\x74\x83\x2a\x08\xbc\x6e\x19\x8f\xc9\ \xff\x6b\x8d\xb9\x82\xf5\xed\xaf\xf9\x87\x7f\x26\xbe\x98\x81\x19\ \xf3\x1d\x0b\x40\xcc\x15\xc4\x22\x0c\xb7\xf6\x8a\xc7\x17\x65\x17\ \xb2\xa6\x39\x74\x47\x01\xa9\x8a\xc0\x62\x7f\x09\x22\xda\x52\x85\ \x33\x3a\xbe\x28\xe3\xe9\x75\xd7\x42\x8c\xdd\x66\x4d\xb2\xde\x85\ \x03\x85\x1d\x1d\x28\x20\xdf\xdd\xcf\xc3\x14\x0d\x41\x88\x31\xd9\ \x07\xe8\xf3\x7b\x9f\xbb\xff\x0c\xb3\xe0\x3c\xbb\xc3\x30\x2d\x36\ \x80\x82\xf2\xf4\x97\x34\x9b\x95\x89\x74\x60\x9e\x40\x95\xb9\xa9\ \xb5\x5f\x58\x05\x39\xc4\x10\x42\x3b\xef\x8d\xbe\x72\x68\x30\xa0\ \xb3\xeb\xca\xf6\x7e\x91\xe2\x57\xf2\xff\xd3\x29\xc0\xb9\xdf\xd1\ \x79\xf9\xf4\xaa\xb2\xbc\x10\x4a\xc4\x64\x0d\x7e\x1f\x42\x6f\x39\ \x34\x42\x48\xe0\xcf\xb4\xf7\x7b\x1e\xc4\x01\x71\x40\x1c\x10\x07\ \xc4\x07\x07\xc4\x01\x71\x40\x1c\x10\x07\xc4\x01\x05\x70\xfc\x0b\ \x37\x03\xb8\xf8\xcb\x4b\x8c\x48\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x04\x72\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x02\x00\x00\x00\x25\x0b\xe6\x89\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x16\x25\x00\x00\x16\x25\ \x01\x49\x52\x24\xf0\x00\x00\x04\x24\x49\x44\x41\x54\x68\xde\xed\ \x5a\x4f\x48\xdb\x50\x1c\x7e\x89\xa9\x69\xda\xfa\xa7\x0e\xb4\xba\ \x53\x5c\x2f\x82\x8a\xf6\xe4\x3c\xd6\x9e\x1c\x4c\x70\x87\x41\xbd\ \xcd\x79\x19\x1b\xd4\xa3\xcc\xdd\x0a\xee\x30\x50\xd8\xf0\x20\x08\ \xbb\xd8\x9b\x82\xb0\x8d\x31\xd4\xd3\xb0\x85\x81\x8e\x75\xe8\xa5\ \x6b\x4e\xb3\x7f\x18\xb6\x6a\xd3\xa6\x4d\x4c\x76\x78\x5a\x4c\xc5\ \xbc\x36\x69\x42\xc4\xe6\xd6\xf4\xa5\x7d\xdf\xfb\x7d\xdf\xf7\x7e\ \xbf\xdf\x0b\xf6\xe8\xf5\x3f\x70\x9b\x2f\x1c\xdc\xf2\xab\x01\xa0\ \x01\xe0\xae\x03\x20\x54\x3f\xb9\xf4\xa2\xcd\xdd\x73\xe3\xe3\xb1\ \x23\x21\xb0\x7c\x62\xde\x08\x38\x28\x4c\x61\xf6\x00\x80\x9f\x31\ \xde\xd4\x14\x72\x39\x9b\x94\x07\xe4\x38\xc9\xd4\x00\x86\xdc\x16\ \xe5\x01\x66\x8f\x80\x32\x7f\x72\x05\x29\x76\x24\x98\x9b\x42\x1d\ \x4a\x0f\x26\x33\xe7\xa6\xb6\x51\xf3\x28\x58\x25\x80\xa1\x07\x08\ \x01\x24\x33\xa2\xa9\x01\xb8\x3a\x10\x16\x14\xfb\x2b\x98\x1a\x80\ \x79\x14\xac\x0b\x85\x8c\x9c\xbd\x9a\x54\xc2\x41\x61\x0e\x0a\x53\ \x86\xf7\x29\x78\xcf\xb0\xfc\x02\xaf\xbb\x82\x0d\x76\x27\xbc\xbe\ \x02\x30\xde\x9d\x6a\x06\x80\xb4\x20\x83\xdd\xc9\x38\x0a\xe9\xe4\ \x4e\x78\xad\xfc\x51\x56\xb0\x92\x00\xfe\xe8\xb2\x3d\xe3\x35\xf2\ \x47\x7d\x05\xa7\x93\xbd\xe2\xc6\x29\xf8\x58\x97\x0c\xaf\xb6\x09\ \x29\x97\x01\x86\x95\x91\x1a\x28\xa4\x58\x88\x19\x99\x84\xaa\x01\ \x80\x54\xb0\x8a\x32\xd2\x6e\xc5\xde\xbf\x6c\x9b\x7d\xe2\x30\x82\ \x42\x75\x2f\x23\xed\x56\xec\xed\xf3\x56\xda\x45\xd0\x2e\x02\x00\ \xb0\xb8\x9e\xd3\x37\x02\x0e\x2b\x56\x5f\x9f\x79\x33\xd5\x02\xa7\ \x0e\x00\x18\x1b\x26\x7d\x1e\x52\x5f\x00\x48\x05\xd7\xcc\x1f\x39\ \x21\x07\x68\x8b\x8e\x00\xb4\x94\x91\x76\x2b\x36\x40\x5b\x06\x68\ \x8b\xdf\x6b\xf3\x7b\x6d\xf6\xcb\x48\x6e\xee\x72\x57\x87\x85\x76\ \xf2\x3a\x6a\x40\x4b\x23\xa8\xb7\x9b\x58\x98\x6e\xbd\x3e\xd7\xf0\ \x41\x69\x66\x5c\x82\x78\xb6\xf7\x8b\xa9\xcb\x54\xcf\xef\xb5\x39\ \x28\xec\x57\x9c\x8f\x32\x3c\x8b\x32\x06\xc2\x00\x05\xc7\x13\x32\ \x76\xf9\xbd\xd4\xf6\x3e\x97\xca\x88\x2c\x27\x45\x0e\x4b\x63\xc3\ \x24\xcb\x49\x2b\x9f\x59\xf8\xad\xcf\x43\xfa\xbd\x14\x00\xe0\xf1\ \x43\x2b\x00\x20\x9d\x15\x9f\xbd\xcb\xd4\x81\x42\xc8\x3d\x58\x41\ \x03\x2c\x27\xa5\xb3\xb2\x44\x7a\x76\xf2\xc2\x37\xb7\xf6\x8a\x90\ \x4b\x70\xa5\x7b\xbb\x89\xc0\xa4\xcc\x52\xd3\xa8\x0e\x4d\xb5\x00\ \x94\xb3\x20\xa4\x82\xa3\x8c\x2c\x3e\xfd\xb4\x05\x7a\x4e\x94\xe1\ \x99\xa4\xb0\xb9\x5b\x00\x00\x74\x39\xf1\x0a\xa6\x01\x00\xd6\x76\ \x0a\x75\xa0\x90\xf6\x46\x50\x68\x27\x1f\x65\xf8\xce\xf6\xa6\x41\ \x9a\xe8\x74\x36\x75\xb6\xe3\x33\xe3\xf6\xf0\x41\x89\xe5\xa4\x57\ \x1f\x4e\xa0\xd0\xe7\xa7\x5a\xec\x72\xa7\x4e\x67\xc5\x0a\xe4\x2a\ \x01\x20\x6b\x00\xe4\x1e\x9c\xca\x88\xa9\x4c\x11\x00\x10\xba\xc1\ \x34\x1d\x14\x16\x3e\xe0\xc3\x07\xb2\xe9\x46\x0e\x4b\xf5\x71\x21\ \x64\x15\xa6\x22\x0b\xaa\x58\xda\x54\x46\xd4\xd1\x46\xb5\x28\xf8\ \xa6\x4d\x8a\xe5\xa4\x0a\x77\xd2\x31\x17\xd2\xd8\x08\x1a\xe9\x6b\ \x9e\x9f\x6a\xa9\xb8\x19\x39\x2c\x05\xd7\xce\xca\x1f\x7d\x1e\x32\ \x30\xe9\x60\x92\x42\x2a\x23\xc6\x13\xe7\xf1\x84\x90\xce\x8a\xd5\ \x20\x24\xaa\x51\xb0\x72\x12\x8a\xe4\x4f\x6f\x77\xe5\xbf\xa4\xb3\ \x22\x4c\xdd\xba\x9c\x78\x67\x7b\x53\x94\xe1\xb7\xf6\x8a\xbe\x61\ \xb2\x9f\xb6\xd0\x2e\x30\xd2\x77\x31\x6c\x69\x23\x07\x7d\x56\x93\ \x8d\x6a\x57\xf0\x20\x4d\x54\x90\x27\xb8\x76\x06\x8d\x7f\x66\xdc\ \x3e\xe5\xa5\xe0\xfd\x95\x2f\xf9\xeb\xa1\xab\x43\x2e\x84\x14\x00\ \x32\x02\xfd\x72\x01\x04\xd7\xce\x20\x37\x06\x68\xcb\x48\x5f\x73\ \x3f\x6d\xe9\x72\xe2\x70\xc3\x0e\xc9\x5d\xbf\x9a\xf4\x0e\xd7\x68\ \x41\xd5\x34\x4b\xe6\x56\x4f\x43\x3b\x85\xc8\x61\x89\xe5\xa4\xa5\ \x8d\x5c\xd9\x7f\xca\x6b\x3f\x31\x4a\x95\xb7\x0b\x26\x29\x5c\xcd\ \x02\xaf\xd3\xaf\x66\x0d\x28\x53\xa8\x9a\xc3\x98\x28\xc3\x5f\xdf\ \x8f\x7c\x1e\xb2\x1c\x99\xb1\x61\xb2\x9c\x0b\x2d\xae\xb3\x13\xa3\ \x56\x98\xd8\x45\x19\x3e\x85\xfa\x7d\x42\x63\x19\xa9\xba\xd9\xe6\ \xf7\xda\xae\xae\xb4\xcf\x43\x42\xbd\xc6\x13\x42\x4d\xa5\x19\xae\ \xb1\x11\xe4\xbe\xaf\xb2\xd1\x52\x91\x35\xc4\x13\x2a\x9b\x2e\x84\ \x46\x05\xbb\x7b\x88\x9b\x9a\xe9\x81\xe5\x13\x05\x79\xcc\xad\x9e\ \x2e\x4c\xb7\x42\x18\x4b\x1b\x39\xd5\x9b\x9a\x5e\x0b\x8c\x14\x77\ \x3c\x21\xcc\xad\x9e\x42\x59\x23\xcd\x5e\x7d\x04\x5c\x4e\x95\xbd\ \xc4\x6a\x3a\xa1\xf1\x84\xf0\x34\x78\x6c\x68\x63\xab\xfa\xcb\x2c\ \x07\xdd\xaa\x5f\x79\x30\xec\xa0\x12\x01\xe0\xfb\xef\xd2\xed\x8e\ \xc0\xd7\x1f\x9c\x8a\xa9\xc4\x8e\x84\x5c\xc1\x1c\x6f\xab\xe4\x0a\ \x52\x60\xf9\xe4\xe3\xb7\x7c\x4d\xc7\x13\x46\x76\x79\xb1\xc6\x7b\ \xa3\x0d\x00\x0d\x00\x0d\x00\x0d\x00\x77\x1a\xc0\x7f\xf8\xc8\xe9\ \x83\x7f\xee\xda\x92\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\xf9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x9b\x49\x44\x41\x54\x78\xda\x64\ \x53\x4d\x48\x54\x51\x14\xfe\xee\x7b\xf3\xde\x9d\x71\x9a\xb1\x18\ \xb3\xd0\x12\x4a\x8b\xc2\x84\x5a\x48\x10\x51\x12\x64\x41\x90\xba\ \x6a\x93\x04\x46\x3f\x94\xbb\x92\x16\x2d\xfa\xd9\x85\xb6\x08\xac\ \xa0\x45\x1b\x6b\xe1\x22\xd4\x45\x0b\x15\x2a\x87\x7e\x16\x62\x04\ \xf6\x83\x13\x0e\xe5\xd8\x80\xd3\x8c\x39\x33\x64\x6f\xc6\x99\xf7\ \x3a\xe7\xce\x0f\x5a\x07\x2e\x97\x73\xce\xf7\x7d\xf7\x9c\xf3\xde\ \x11\xf8\xc7\xaa\x4e\x0f\xdd\xcf\xe7\x9d\x2e\xc7\x71\xdc\x0e\xf9\ \x82\x8f\x10\x96\xae\x8b\xc7\xf1\x27\x1d\x97\x57\x63\x09\xa3\xf2\ \xca\x36\x76\x0e\xb7\x1a\x42\x8c\xb6\x36\xd7\xe2\x60\x53\x35\xaa\ \xfc\x92\x00\x4c\x06\xe2\xa9\x0c\x5e\x4f\xc7\x30\x36\xf9\x03\x2b\ \x8e\x73\xec\xe7\x40\xfb\xd8\x1a\x01\x26\x6f\xaa\x94\xa3\x57\x4f\ \x35\x21\xb1\x9c\xc3\xf8\xa7\x04\xbe\x44\xd3\x58\xce\x3a\xa8\x30\ \x05\x76\xd7\xf8\x70\xb4\x31\x80\x40\x85\x0b\x7d\x83\xd3\x58\x48\ \x66\x94\x08\x0b\x68\x2c\xe0\xa2\x97\x6f\x9f\xd9\x87\x77\xe1\x34\ \x1e\xbe\x8c\x60\xff\x36\x3f\xbe\xf5\x1e\x46\xec\x5e\x8b\xba\xd9\ \xe7\x38\xe7\x19\xc7\xf8\x52\xe5\x1a\xf7\xdc\x75\xbc\x01\x13\xb3\ \x49\x4c\xcd\x25\xe1\x36\x35\xdc\x6c\x6f\x40\x30\xb4\x88\xba\x9e\ \x20\x5e\xcd\x2c\x2a\x5f\x1a\x9a\xca\x33\x8e\xf1\xcc\x53\x02\xb6\ \x6d\x9f\xad\xdd\x5c\x89\xf7\xdf\xd3\x54\xae\x8b\x8e\xa1\x94\xfb\ \x46\x23\x08\xac\x93\xe8\x7f\x31\xaf\x7c\x69\xe8\x2a\xcf\x38\xc6\ \x33\xaf\x50\x3d\x84\x9c\x4b\x66\xe1\xa1\x17\x68\xda\x30\x29\xd2\ \xd2\x3b\xa5\x06\x68\x52\xec\x56\x5b\xbd\x12\x60\xb2\xdb\x50\x1d\ \x83\xf1\xcc\x2b\xb6\x0f\x24\xad\x1c\xa4\x74\x15\xbb\xd2\x21\x6d\ \x07\x99\x9c\x8d\x1b\x27\xb7\xa3\xb1\xc6\x8b\x8b\x4f\x43\xf0\x7a\ \x5c\x30\x74\x0d\x25\xbc\x28\x7e\x3f\xae\x80\x02\x79\xa5\xce\xaf\ \xb2\x11\x1f\x36\xdd\x47\x76\x6d\xc0\xf5\x91\x30\x22\xbf\x2c\x78\ \x4d\x1d\x9a\x26\x8a\x02\x79\xae\xa0\x24\xe0\x64\xed\xbc\x6d\x4a\ \xea\x9d\xfa\x2a\x0b\x30\xf2\xc4\x83\x8f\xf4\xaa\x80\xcf\x63\x40\ \xd7\x0a\x04\x4d\xd3\x90\xcb\x51\x05\xc4\x2b\x0c\xd1\x4a\x0c\x47\ \xa3\x4b\xa8\x90\x3a\x55\xa1\xd3\x0c\x34\x35\x07\x17\x11\x9f\x5f\ \xda\x03\x49\x3e\x7f\x01\x8e\x73\x9e\x71\x8c\x67\x9e\x12\x88\x3f\ \x3b\xd7\xf3\x79\x66\x01\x16\xf5\xe5\xa1\x97\xdc\x34\x0b\x93\x06\ \x26\xcd\xc2\x4c\xf8\x66\x9f\xe3\x9c\x67\x1c\xe3\x99\xa7\x04\x78\ \xa8\xb9\xc8\x9b\xee\xf1\x89\x19\x64\xac\x15\x78\xdd\x06\xbc\x04\ \xf6\xd1\xd0\x2e\x0c\x86\xd5\xcd\x3e\xc7\x39\xcf\x38\xc6\x33\x0f\ \xc5\x5d\x61\xf3\xaf\x3f\x74\xa5\x53\xdf\x72\xa0\xbf\x79\xef\x56\ \xec\xac\xaf\x86\xdf\x6b\x96\x77\x21\xf5\x3b\x8b\xd0\x6c\x0c\x93\ \x1f\x22\xc8\xcf\xbf\xed\x5e\x0a\xde\x1d\x20\x4e\x6a\xcd\x32\xb1\ \x08\x9d\x1d\x81\x8e\x47\xd7\x84\x27\xd0\x46\x83\x34\xcb\xbf\xab\ \x40\xd6\xf9\x93\x18\x49\x0c\x9d\xbf\x43\xee\x57\x26\xff\xb7\x8d\ \xab\xac\x8e\x4e\xa0\xd8\x5e\xc9\xf8\xf3\x24\x4a\x65\xaf\x5e\xe7\ \xbf\x02\x0c\x00\x02\xc8\x16\xfe\x5a\x11\xe0\xb3\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xf7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x99\x49\x44\x41\x54\x78\xda\x84\ \x53\x4d\x4f\xc2\x40\x10\x9d\xfd\x28\x26\x1a\x01\x13\xe4\x27\xe0\ \xc1\x0b\x17\x3c\x10\xe3\x0f\xc0\x0b\x51\x0f\x26\x8d\x89\xe1\x22\ \xff\x4b\xd1\x10\xad\xd0\xf0\x5f\x3c\x4b\x22\x09\x55\x88\x09\x9f\ \x41\x69\xd7\x99\x2d\x6d\x0a\x42\x79\xc9\x74\x37\xdd\xdd\x37\xef\ \xcd\xce\x32\xbb\xd5\xfa\x9e\xbb\x6e\x5a\x79\x1e\x28\x40\x28\xfc\ \x32\x06\x1c\x83\x31\xf6\x76\x51\x2e\x1f\x43\x1c\xac\x46\x43\x6d\ \x82\xe3\x38\x0a\xd7\x9f\xe2\xce\x73\xa5\x74\x5e\x78\x6f\xb7\xc3\ \x20\xdc\xd7\x6a\x90\xcd\x66\xe1\xb4\x58\xbc\x7e\x6d\x36\x1f\x36\ \x11\x48\x15\x4c\xa4\x41\x92\x21\x20\x3c\xca\xe5\x34\xc9\x8d\x69\ \x02\x5a\x34\x51\x89\x49\x6b\xcc\xb7\x66\xa1\xb5\x2b\xbd\xf1\xd9\ \xb2\xb4\xdc\x6e\xd7\x51\x4e\xf7\x53\x8f\x83\xc1\x70\xc9\xca\x63\ \xbd\xbe\xd1\x1a\x0f\xa4\x08\x29\x40\x18\x02\xa4\x21\x61\xf6\x33\ \x83\xaf\x5e\x4f\x87\x5f\x57\x05\x1f\x9d\xce\x3a\x6b\x2f\x21\x81\ \x94\x12\x84\x10\x3a\x68\x1e\x04\x44\x2c\x46\xad\x11\x09\x12\x5f\ \x86\x3b\xa4\x90\xb1\xb7\x65\x20\xd9\x68\x34\x86\x93\x42\x41\x07\ \xc1\x43\x65\xe1\x29\xca\xbc\x11\xb8\xd1\x58\x58\x9b\xf6\xa6\xfa\ \xd7\x61\x26\xa3\xff\x4b\x6a\x1a\x42\x22\x61\xf8\x4d\x14\xc5\x62\ \xcd\xaf\x91\xd4\x8d\xe6\x61\xc3\x2d\x5d\x23\xe7\x7c\xbb\x02\x24\ \xd2\x16\x91\x41\xf1\xe5\x24\x12\x73\x0c\xb0\x9a\x49\xf2\x13\x55\ \x40\x95\x77\x5d\x57\x8f\x07\xa9\x34\x50\x22\xce\x29\xc9\x0a\x01\ \x36\xc4\xd9\x5d\xb5\x9a\xff\x9d\xcf\x5d\x5d\x18\x3c\xd5\xef\xf7\ \xc7\xb7\x95\x8a\x7d\x5e\x2a\xc1\x64\x32\x81\x54\x32\x85\x0a\x89\ \x80\x85\x6f\x65\xd5\xe2\x1e\xc6\x6e\x24\x76\x50\x95\xda\x06\x0b\ \xf7\x04\xb7\x30\xfe\x6f\x9b\x0d\x1b\xb6\xbd\x4f\x45\x53\x6b\x8a\ \x4b\xaf\x15\x6d\x0d\x59\xcc\xd5\xe7\xa9\xb6\x10\x0f\xf7\x4f\x80\ \x01\x00\x37\x52\x19\x5a\x0c\x4b\x0d\x55\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x56\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\x9c\x00\xad\x00\xc0\xa7\x71\ \x7d\xed\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x04\x0d\x10\x0b\x2e\xb3\xb6\x19\x40\x00\x00\x02\xe3\x49\x44\ \x41\x54\x38\xcb\x8d\x93\x6d\x68\x95\x65\x18\xc7\x7f\xf7\x7d\x3f\ \xe7\x3c\xcf\x8e\xed\x6c\xcb\x97\xd5\x8c\x85\x13\x4b\x76\xb2\x54\ \x0c\x3f\xf4\x41\x24\xad\x58\xb2\x1a\x07\x9c\x88\x51\x18\x11\x59\ \x11\x34\x48\x09\xbf\x2c\x34\x12\x99\x08\xbe\x10\x98\x0b\x5d\x0c\ \xb5\x56\x29\x46\x88\x7d\x4a\x50\x68\xa6\x60\x4e\xc9\xd1\xd3\x3a\ \xe6\x9c\x67\x1b\xd3\x73\x38\x6f\xcf\xcb\x7d\xfb\xe1\x39\xd5\xf1\ \x5b\xff\x4f\xf7\xc5\x05\xbf\x0b\x7e\xfc\x6f\x41\x4d\xf2\x7d\xaf\ \xcd\x12\x61\xb8\xcb\x68\xbd\x19\x63\xea\x30\xd5\x85\x00\x84\x28\ \x09\x29\xfb\x8d\x52\x5b\xeb\x7b\x06\x0a\xd4\xac\x00\xc8\x7d\xb6\ \xf1\x00\x52\x6e\xb1\x9f\x7d\x8e\xd8\x13\xed\x88\x47\xe7\x53\x0b\ \x30\xb7\x6f\xe1\xdf\x18\xa1\x32\x7c\x1e\xb4\x3e\x98\xdc\x36\xf8\ \xee\xbf\x80\x99\x1d\xdd\xc7\xe2\x6d\x8b\xba\x13\x9d\x69\x50\x02\ \x4a\x7f\x83\x7f\x07\xa4\x8c\x00\xa1\x86\x78\x33\x38\x8f\x81\x36\ \x14\x4f\x0d\xe1\xb9\xa3\xc7\x9b\xb6\x1f\xdf\x20\xa6\x3e\xe9\xde\ \x19\x6b\x69\xf9\x38\xf9\xfa\x66\xc8\x8f\x43\xe1\x06\x04\x01\x77\ \x4e\x5d\x61\xfa\x82\x0b\x02\xe6\x3d\xbf\x98\x39\x1d\x4b\x20\xd0\ \xf0\xd0\x93\x50\xdf\x42\xee\x48\x3f\xfe\xf8\xf8\xa7\x32\xf0\xbc\ \x9e\x64\x57\x1a\x8a\x59\x28\x8d\x81\x95\xa0\x38\x5e\x66\xea\xdc\ \x28\xed\x5f\xbe\xc3\xc2\x8f\x5e\xe1\xe6\x0f\x57\xc1\x69\x00\x2b\ \x01\xc5\x31\x28\x66\x49\x76\xa5\x09\x7c\xaf\x47\x0a\x2b\x6e\xd3\ \x98\x04\xff\x2e\xa8\x04\x48\x87\xc4\xe2\x05\xa4\x0e\x7f\x00\xc6\ \x46\xc5\xea\x68\x6c\x74\x40\x3a\xa0\xea\x22\x88\x7f\x17\x1a\x93\ \xe0\x69\xdb\xd2\x81\x8e\x4c\xa8\x38\x91\x35\x01\x42\x60\x4a\x21\ \x7f\xf6\x1e\xa1\x94\xc9\x92\xfa\x6a\x3b\x94\x3d\xb0\x24\x18\x03\ \xca\x06\x09\x41\xa8\xb1\xbc\x42\xc9\x23\x97\x8f\xe3\xcc\x81\xca\ \x4c\xc4\x90\x12\x91\xb4\x68\xeb\xeb\x89\x24\x96\x2a\x20\x04\x48\ \x13\x1d\xb3\x9b\xe0\x5e\x9e\x50\x1b\xcf\x72\x73\xe5\x01\xfb\xe8\ \xe0\x9b\xcd\xef\xbf\x17\x59\xf7\x4a\x20\xa0\xf8\xfb\x18\x6e\xef\ \x3e\x30\xf0\xd4\x89\xbd\x64\x0e\x9d\x24\x7b\xe6\x02\x06\x83\x40\ \x50\xff\x78\x33\xb7\xfd\xca\x80\x00\xe6\x0f\xbf\xb5\xa6\xbf\x75\ \xc5\xd2\x17\xe6\xbd\xb1\x09\xa4\x00\x1d\x80\x02\x94\x05\x40\x66\ \xff\x51\x82\xe1\xdf\x68\x4b\xb5\x83\x52\x10\x86\xb8\x23\xd7\xc8\ \x4c\x4c\x0e\x28\x20\x7f\xe8\x92\x7b\xbe\xa3\xc1\x9a\x6d\xae\x8f\ \x3e\xdd\xb4\xfa\x25\x50\x31\x90\x09\x20\x01\x38\x8c\xf6\xee\x22\ \xb5\x68\x01\xa6\x70\x0f\x93\x9b\x81\x72\x81\x87\x1b\x1a\x98\x9a\ \x9c\x7a\xc6\xaa\x76\xcd\xfd\xe5\xe6\xf4\xe1\xd4\xab\x9d\x9b\x60\ \x36\xb9\x5f\xcf\xf0\xd7\xee\x3e\xec\x84\x8d\x90\x12\xa3\x35\xac\ \x5e\x87\x58\xbb\xfe\xbf\xea\x9e\x3d\x81\xb9\x7c\x95\x7f\x00\x74\ \xae\x5c\xb2\x61\x6e\xba\x8b\xec\xf7\x5f\x30\xf9\xed\x77\x6c\x1d\ \x76\x5f\xfc\xd1\x9d\x98\x06\xb8\xf8\xf2\x8a\x8b\xc1\xd7\x9f\x63\ \x06\xf7\xa1\x43\x8d\x54\x12\x11\x8b\x21\x95\x8a\x80\x23\x6f\x77\ \xc4\x09\xc3\x8a\x09\x02\xa6\xcb\xfe\x4f\xab\x8e\xfd\xbc\x0d\xb8\ \x02\xf8\x00\xa7\xd7\x2c\xfd\x66\x61\xd2\x49\xb7\xcd\x02\x51\xd5\ \xe8\x16\xe0\x8f\x5c\x79\x48\xd4\x7c\xaa\xe5\xd5\xf7\x0c\xe0\xf2\ \x60\x5a\x4f\xaf\x5d\xb6\xe7\x11\xc7\x4e\x57\x9b\xc2\x44\xb9\x32\ \xb4\xee\xec\xe5\x0f\x05\xff\x3f\xad\xc0\xdc\x9a\x79\x12\xc8\xdc\ \x07\x4a\xb8\x24\x5c\x00\x76\x62\x2c\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x02\x94\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x36\x49\x44\x41\x54\x78\xda\x8c\ \x92\x4f\x68\x13\x41\x14\xc6\xbf\x4d\x52\x48\x9a\x92\x98\x52\xab\ \xe9\x41\x11\x6d\x0f\x6a\xeb\x21\x15\xf1\x50\x44\x8b\xe0\xc1\x4b\ \x0f\xd6\x08\x82\x60\x45\x5b\x15\x41\x30\xe2\x49\xb4\x8a\xd6\x83\ \x7f\xf0\x20\x08\x82\x46\x8a\x85\xd2\x5e\x0a\xe9\x3f\x34\x58\x2c\ \x8a\xd4\x88\x55\xb0\x04\x92\x9a\x84\x86\x98\xd4\x64\xb3\x35\x9b\ \x64\x77\x93\x3c\x67\x83\xca\x1e\x9a\xb4\x0f\x66\x18\xe6\xbd\xdf\ \x37\xf3\xbe\x19\x8e\x88\xc0\x71\x1c\x2a\x85\x7b\xf0\x95\xa3\x44\ \x34\x56\x6b\x32\x35\xd5\xd5\x9a\x91\xfe\xbd\x82\x62\xa1\xf0\x8d\ \x31\x5d\x27\x4f\x1c\x0f\x1a\x50\x25\x9e\x3d\x77\x1f\x31\x19\x8d\ \x13\x7b\xda\x76\xa3\xb1\xa1\x11\x4a\xb1\x80\xac\x98\x45\x20\x10\ \x6c\x8d\x44\x97\x02\xac\x84\xab\x2a\x90\xcf\xe7\xc7\xf6\xb5\x3b\ \xa0\xe3\xf4\x78\xfb\x6e\x16\xa2\x28\x22\x23\x66\x18\xc6\x81\xa8\ \x54\xae\xa9\x2a\x20\x49\x52\x8d\xc5\x6a\xc1\xc2\x82\x1f\x66\x93\ \x11\xa1\x70\x08\x97\x2f\x5d\x6c\xff\x97\xef\x3d\xd3\x53\x5d\x40\ \x91\x24\xa8\x1e\x59\xad\x56\xe8\x74\x3a\xc8\xb2\xac\x6e\xfb\xb4\ \x35\x55\x05\x72\xb9\x6c\x26\x9f\x97\xeb\x6a\x0c\x06\x14\x99\xd0\ \xc1\x8e\x0e\xdc\xbe\x73\x8f\x4a\xec\xfa\x06\xbd\x1e\x6b\x7a\x50\ \x54\x14\x45\xca\xe5\x20\x2b\x0a\xcc\x66\x33\x9a\xec\x9b\x71\xa1\ \xe5\x2c\x92\xc9\x24\x5e\xbc\x1c\x14\xca\x0a\xab\x3d\x63\x7d\xff\ \xd4\x70\x73\x21\x7e\x6c\xf2\xfc\x21\x04\x23\x31\xf8\x83\x41\xcc\ \x7d\xf2\x31\x01\x3b\x04\x41\x80\x98\xc9\xf8\x1e\x3d\xbc\xdf\xc3\ \xd8\xf9\x72\x8f\xda\x68\xb8\x31\x3e\xd4\x3d\x12\xa0\x0f\x69\xa2\ \x5b\x6f\x42\xe4\x9d\xf4\x90\xeb\x8a\x2b\xca\x52\x0e\xcd\x68\x51\ \x6b\xcb\xac\x56\x40\x85\xfb\x3c\x21\x9a\x4b\x11\x5d\x9d\xe5\xe9\ \xf0\xe8\x32\xed\xbd\xee\x26\x9b\xcd\xe6\x58\xad\x45\x95\xfd\xef\ \xc1\xc6\x9b\xe3\x43\x9d\xbb\x9a\x9d\xa7\xf7\x6f\xc5\xe3\xf7\x71\ \xa4\xf2\x25\xc4\x93\x69\x84\x15\xcb\x6b\x81\xe7\x3f\x57\xf2\x49\ \xa7\x4e\x9b\xfa\x27\x46\x5a\xb7\xd8\x9d\xae\xce\x1d\x0c\x4e\x20\ \x25\x11\xa2\xbf\x78\xfc\x5c\x9c\x9f\x16\xee\x76\x9d\x53\x0f\xab\ \xe8\xb4\x7a\x8d\x9d\x0f\x66\xe8\xeb\x0a\xd1\x29\x4f\x82\x8e\x8e\ \xc6\xa8\xed\xe9\x77\xaa\xbf\x36\x3c\xc5\xd2\xdb\xaa\xbd\x92\xa6\ \x05\x0e\x4f\x3e\xf2\x48\xcb\x25\x44\x12\x09\x2c\x85\xfd\xd3\xa9\ \x81\xee\x5e\x96\xf8\x81\x35\xa2\x2c\xc0\x2f\xc7\x66\xbc\x5f\xe8\ \x40\x91\x7d\x10\x91\x8f\x7b\x53\x03\xce\x75\xc1\xda\x7f\xb0\x9d\ \xad\x37\xfc\xdd\xe3\xd9\x58\x5c\x0f\xac\xb2\x7f\x04\x18\x00\x4f\ \x59\x13\xff\xd2\xa0\x4b\x0a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\xd7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x79\x49\x44\x41\x54\x78\xda\xa4\ \x93\x4d\x4b\x02\x51\x14\x86\xdf\x3b\x33\x7e\x94\x16\x28\x81\x24\ \x44\x82\xd5\x2a\x94\x30\x37\xad\x85\xfe\x41\xad\x5a\x05\x52\x04\ \xd1\x6f\x70\xaf\xd5\xa6\x56\xb5\x09\xa1\x45\xfd\x02\xab\xb5\x10\ \x51\x64\x44\x8b\xa0\x22\x82\xa0\xa8\xac\xd4\xc1\xf9\x38\xdd\x19\ \x05\x1d\x67\x02\x61\xce\x85\x0b\x33\xf7\xdc\x97\xe7\xbc\xe7\x5c\ \x46\x44\x70\x13\xd2\xd6\x66\xc1\x51\xc1\xd0\x25\x74\x8e\x98\xb1\ \x98\x3d\x8f\xe9\x8a\x4c\x4e\x97\x75\xbe\x29\x1a\x41\xd7\x09\x82\ \xc0\xe0\x15\x05\x88\x62\x4b\xca\x42\x90\x58\x2b\x3a\xa2\x25\x62\ \x21\xe4\x16\x92\xf0\xfb\x24\x28\x4d\x15\xb9\xe3\x0a\x6e\x9f\xab\ \x9c\x82\x59\x24\x18\xfd\x63\xc2\xc1\xc9\x0d\x4a\x17\xf7\xd8\xc9\ \xce\x61\x63\xaf\x8c\xa6\x37\x80\x78\x6c\xd4\xee\xc1\xe5\x43\xdd\ \xfe\x93\xe3\x2e\x65\xa6\x91\x3f\x3a\x47\x60\xc0\x87\xca\xd3\x27\ \x56\x16\x93\x78\x7c\xfb\x85\x46\x3a\xba\x19\xa4\x8f\x9a\x6c\xad\ \xbf\xed\x41\x5c\xf1\x99\xa6\x31\xaf\xc7\xfc\x1e\x0b\xfb\xd1\x68\ \x6a\x1c\x19\x16\x33\xa5\xf7\xef\x5e\x01\xbe\x88\xe1\xab\xa6\x42\ \x30\x12\x05\x0f\x37\x54\x47\x34\x34\x88\x5a\x83\x4c\x31\x8b\xc0\ \x6b\x8f\x80\x11\x22\x2f\xa1\x5a\x57\x4d\x9a\x1f\x7e\xae\xf2\x6e\ \x8c\x8f\x04\x21\xcb\xa2\xd9\x99\x6e\x13\xa5\x74\x3c\xec\x60\x21\ \x43\xf1\xf4\x0a\xb3\x13\x11\x0c\x0d\x07\x91\x9a\x8c\xe0\xf0\xec\ \x1a\xcb\xf3\x49\x7b\xe6\xcc\xea\xbe\xc3\x1c\x10\xd2\x53\x51\xec\ \xae\x67\x38\x8d\x04\x4d\x55\x91\xdd\x2e\xa1\x7c\xf7\xd2\xc2\xa7\ \x3e\xda\xd8\xf7\x28\x17\xf2\x79\xa7\x41\x6e\x77\xa3\x63\x5a\x67\ \x80\x58\x4f\xb1\x40\xca\x0d\x01\x73\xfb\x1a\x05\xb8\x8c\x3f\x01\ \x06\x00\xb6\xdf\x95\x7c\x16\xda\xbb\x38\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x8a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x2c\x49\x44\x41\x54\x78\xda\x9c\ \x53\x4b\x6b\x14\x41\x10\xfe\xfa\x31\x33\xbb\xb3\x3b\xba\x06\x8c\ \xe6\x60\x34\x8a\x20\xac\x41\x88\xc1\x9b\x78\x35\xf1\x01\x82\xde\ \x02\x22\x78\xf0\x71\xf5\xa0\x97\x8d\x04\x54\x24\xbf\xc0\x08\x41\ \x76\x35\x67\xf1\x85\xe0\x41\xa2\x1e\xbd\x88\xc6\x08\xa2\x01\x41\ \x17\x89\xe8\x10\xb3\x9b\xcd\x66\x66\xda\xea\xde\xd9\x99\x95\x98\ \x43\xac\x99\x9a\xee\xae\xe9\xaa\xfe\xbe\xaa\x2e\x36\x35\x75\xef\ \x57\x10\x84\x05\xa8\x08\x8c\x01\x4a\x01\x11\x7d\xf4\xb8\x96\x30\ \xda\xc8\x39\x87\x10\xc2\x47\xb9\x5c\x56\x6d\xf9\x30\x1f\xa8\xf5\ \x88\xf6\x95\x51\x14\x99\xa8\x23\x13\x6f\xf0\x72\x6e\x19\x2f\x2e\ \xf4\x40\x12\x92\x30\x52\x84\xe4\xdf\x08\x34\xba\xbe\x1d\xbd\xd0\ \xbe\x9c\x96\xc6\x38\x71\xaa\x1b\x36\x79\x6e\xdb\x64\xa3\x90\xb3\ \xe0\x65\x2d\x64\x1c\x09\xcb\xd2\x2a\x12\x95\x52\x2b\x8f\x03\x29\ \xc8\x84\x2b\x93\x10\xc4\x6d\xf8\x76\x15\x5f\xfc\x00\x07\x77\xba\ \x18\x3f\xb6\x19\x8d\x40\x99\x8d\x9a\x77\xdb\x29\xec\x80\xc6\x93\ \x89\xe0\x04\x49\xe1\xe9\xf9\x5e\x74\xe7\x25\x5e\xcd\xd5\xe1\x3a\ \x02\x39\xd2\x8d\xae\x45\x49\x63\x60\xa4\xf9\x8c\x84\x63\x8b\x24\ \x80\x4c\x33\x2b\x10\xe8\xc8\x5c\x9b\x94\x79\xa5\x2d\xf1\x68\xc6\ \xc7\xb5\x67\x3f\xb0\xb8\x1c\x1a\x14\x47\x8b\x1e\xae\x1e\xde\xb2\ \x1a\x01\x41\xc0\xe9\x03\x5d\x18\xb8\xf9\x11\xd5\x85\x00\xc7\xfb\ \x37\x80\xea\x84\xcb\x0f\xbf\xa3\xc7\x93\x98\x1d\x2b\xc2\xb5\x18\ \x1e\xcf\x2c\x20\xeb\x74\x20\x68\x73\x13\x3c\x8f\xd2\x70\x06\xa3\ \x47\x74\x55\x22\x43\x87\x06\x78\x19\x6e\x8e\xb9\xf5\x7c\x9e\xf6\ \x30\xa3\x4c\xca\xf4\x5c\x16\x83\x28\x8e\x72\x30\xdb\x22\x8b\x83\ \x40\xd9\x58\x51\x64\x67\x1c\x0f\xce\xed\xa6\xa4\x01\xbf\x1b\xad\ \x72\xb3\xd6\x69\xab\x29\x38\x71\xd0\x7d\x25\x46\xdc\x05\x95\xd4\ \x31\x14\x46\xee\x7c\x46\x57\x4e\xe0\xd2\x50\x9f\xa9\x40\x4b\x52\ \x0a\x5c\xc5\xf7\xe0\xe4\xe0\x10\x06\xc9\xd9\x25\xbf\xbd\x57\x34\ \x4c\x7d\x96\x85\xaf\x7e\x13\xef\xab\x4b\x38\x33\x39\x1b\x27\x5b\ \xe1\xdb\xcf\x66\x3c\x47\x7a\x91\x4a\x27\x9e\xe0\xf5\x98\xc2\x62\ \x03\x78\x77\x23\xad\xf3\x9e\xad\x59\xd4\x9b\x8a\x4a\xc7\xb1\x7f\ \xbb\x87\xa5\x15\x85\xb3\x77\x3f\xc5\x74\x08\xad\x6e\x8a\x4e\x79\ \x7b\xfd\xef\xfb\x7b\xff\x62\xff\xda\x4d\x45\xbe\xb2\x56\xab\x4d\ \x57\x2a\x95\x43\x51\x18\x21\xc1\xa5\xbb\x91\x1e\x16\x2f\x59\x2b\ \x75\x69\x2f\xc4\xce\xf5\x7a\x6d\x5a\xff\xd9\x45\x5a\xc0\xff\x89\ \xff\x47\x80\x01\x00\x28\x93\xee\x7e\x84\x4d\xac\xd7\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xad\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x4f\x49\x44\x41\x54\x78\xda\x6c\ \x53\x4d\x68\x13\x51\x10\xfe\xde\xee\xa6\xf9\xd9\x34\x6d\xb5\xd6\ \x08\x49\xa3\xa6\x1a\x02\x46\xa5\x2a\x5e\x3c\x55\xef\x56\x8f\x06\ \x44\x11\x8a\xf4\xee\x49\x6a\x11\xf1\xe4\x45\xf0\x20\x08\xb6\x52\ \xa8\x17\xa1\x54\x28\x78\x89\xde\x44\x44\x4d\xc5\x16\xb5\x45\x13\ \xd3\xd4\xa4\x51\xe9\x8a\xd8\x98\x6c\xb2\xfb\x9c\x7d\xc9\xc6\x98\ \x64\xd8\x61\xe7\xcd\xf7\xcd\x37\xef\xbd\x9d\x65\x9c\x73\x58\xc6\ \x18\x13\xef\xe4\x83\xd3\x21\x6e\x54\xee\x73\x43\x3f\xc9\xb9\x51\ \xc7\x64\x30\xb9\xeb\x29\x93\x1d\x97\x86\x2f\x3c\xce\x58\xb9\x46\ \x5d\xb3\xc0\xdb\x99\xd1\x73\x30\xab\xb3\x83\x91\x08\xfa\x8e\x5f\ \xa7\xa4\x2a\x30\xf0\x2d\x68\x2f\x27\xb1\xb6\xb2\x02\x48\x4a\xfc\ \xf0\xf9\xf9\x87\x6d\x02\x4b\xb3\x67\x8f\xd2\xe2\xd5\x50\xb4\x1f\ \xae\xe8\x15\x22\x3a\x41\x62\x35\x01\x49\xb1\x3a\xa0\xb4\x7c\x03\ \x9f\x3e\xfc\x00\x67\xec\x58\x2c\x3e\xf7\xda\x82\x14\x34\xcc\x9c\ \x0a\x84\x03\x70\x7a\xdc\xe0\xba\x06\x6e\x94\xa9\xb3\x59\x83\x98\ \x44\x8f\x93\xb0\x5e\x04\xc2\x4e\x64\x53\xeb\x53\x94\x3d\xf8\x9f\ \x80\xcc\x78\xac\x67\x20\x00\xa3\x52\x82\x5c\x5c\xa7\x86\xdc\x3a\ \x68\x5d\x80\x09\x31\x83\x8e\xd4\x33\xb0\x1d\xb9\x74\x36\x66\xd7\ \x49\x76\xe0\x74\xbb\x49\xc5\x03\xe6\xf0\x82\x95\x32\x78\xbe\x94\ \x02\xab\x6a\xc2\x45\x5c\xfa\x2a\x30\x8b\x23\xb8\xad\x02\x55\xfd\ \x0f\xb8\xac\xd2\x6d\x7b\xb1\x90\xfc\x89\x13\x11\x15\x89\x77\x05\ \xe1\x56\xbc\x90\xd4\x04\x66\x71\x2c\xae\x6d\x8d\x23\xe8\x06\x5f\ \xfd\xbd\xf9\x6d\xbf\x6f\x47\x08\x1e\x1f\x89\x49\x5e\x8c\x1c\xaa\ \x7d\x05\x0e\x46\x39\x1d\x52\x97\x0f\xbf\xbe\x67\x04\xb7\x6d\x07\ \x4f\x5e\xe4\x26\x36\xbf\x24\xa1\x97\x75\x04\xfd\x7e\x98\x92\x1b\ \x26\xab\x3b\xc5\x41\xff\x2e\x81\x59\x1c\x8b\x6b\xd7\x35\xcf\x81\ \x7a\xf5\xe2\x81\xd1\xcb\x67\xf6\xdd\xdb\x19\x1d\xf1\x38\xb6\xed\ \xf9\xf7\x15\x24\x19\x86\x96\xc6\xc6\xfb\x67\xc5\xbb\x73\xab\x63\ \x37\xa7\x97\xe7\xa9\x6e\xab\x6d\x90\xc8\x3c\xe4\x91\xc9\x3b\x8f\ \x92\x12\x2f\xd3\xc6\x4d\x91\x97\x65\x05\x1f\xd3\x1a\x66\x6e\x8d\ \x0f\x13\x4e\xd3\x84\xa2\x5d\xd7\x34\x07\xc2\x8a\xe4\x8b\xc1\xc1\ \x7e\xf4\xf9\x7a\xe1\x71\x79\x51\x28\x14\x90\xcf\x6f\xa0\xdb\x25\ \x76\xb3\xd8\xc2\x6f\x13\x10\xa6\xe5\xb3\xd0\x72\x6b\xe2\xfa\x24\ \x59\x86\xea\x54\xa0\x48\x66\x27\x6a\x67\x01\x97\xaa\x26\x42\xbb\ \x87\x4e\x79\xdd\xdd\xd8\xa0\x1d\xe4\x72\x79\x54\xca\xc5\x44\x27\ \x6e\xeb\x1d\xd8\xb6\x37\x3e\x3e\xf1\x59\xa1\xee\x4c\x62\x02\x9b\ \xbe\x7d\x2d\x4c\xf9\x94\x4d\xe8\xf8\x37\xb6\xd8\x91\x96\xf5\x9b\ \xe6\x85\x5d\xf7\x57\x80\x01\x00\x7a\x6a\xf9\xbe\xfd\xaf\xda\xfe\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xfe\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xa0\x49\x44\x41\x54\x78\xda\xa4\ \x53\x3b\x4b\x03\x41\x10\xfe\x66\x6f\x13\x1f\x20\x51\x51\x62\x69\ \x61\xa5\xa5\x21\xa0\xe2\xb3\x12\xff\x82\x86\x2b\xc4\x46\x7c\x20\ \xfe\x0e\xb5\xb0\x11\xd4\x56\x3b\x3b\x1f\xa5\x18\xb0\x88\x1e\x96\ \x36\x96\x42\x34\x29\x2e\x44\xd4\x78\x77\xd9\xf5\xe6\x4c\x48\x0e\ \x13\x50\x32\xb0\x37\x7b\xf3\xf8\xe6\x9b\xd9\x5d\xd2\x5a\xa3\x15\ \x91\xa6\x69\x86\x0c\x4a\xa9\x05\xcf\xf3\xce\xb5\x56\x20\x12\x90\ \x52\x26\x85\x10\x77\x4d\x01\xea\x19\xf0\xde\x73\xdd\xf3\xd5\xb5\ \x4d\xbc\xbf\x7f\x20\x12\x91\x38\x3e\x3c\xc8\x88\x68\x94\x9a\x02\ \xf4\xf6\xf4\xd6\x00\xfc\xe5\x38\x0e\xec\x82\x8d\x62\xb1\x88\x58\ \xac\x1b\xca\x67\x02\x2e\x42\x8d\x31\x64\x21\xf7\xfc\x93\x59\x11\ \xa7\xac\xd0\x16\x95\x18\x1e\x1e\x41\x3e\x97\x85\xa1\x3c\x08\x4f\ \x87\x62\xaa\xc2\x98\x34\x7d\x94\x81\x11\xed\x08\xea\x6b\x32\xd0\ \x96\x7d\xd4\xb1\x87\x33\x68\xcf\x05\xc9\x08\xec\xe4\x22\xdc\xbe\ \x41\x22\x66\x12\x42\x21\x94\x9d\x4f\x48\xc3\x2d\x41\x54\xd9\x91\ \xd0\xc5\x8e\x3e\x5c\x9d\x9e\x24\x06\xe2\xf1\xae\x97\xd7\xd7\xb7\ \xf1\xb1\x95\xfb\x4e\xf7\xd3\x47\x57\x84\xfa\x13\xe3\xf2\x9c\x5b\ \x45\x25\xbf\xc6\x97\x9d\xc3\xed\xfa\x4c\xc2\x4c\xa5\x2c\x3f\x39\ \xcd\xfa\x76\x63\x36\xc1\x76\xf6\x87\xf8\xeb\x9f\x8f\x60\x2a\xfe\ \x71\xe9\x92\x9d\x47\x7a\x7b\x21\x31\xb1\x7f\x6d\xb1\xcb\x4c\x2d\ \x95\x59\xf3\x3f\xdb\xd9\x4f\x42\xfc\x9a\x84\x60\x98\x92\x5f\x81\ \x83\xa6\xf6\xae\xac\x46\x93\x66\x7b\x33\x10\xee\x7e\xb4\x1a\xc4\ \xba\x2c\xdb\x31\x94\x39\xae\x70\x24\x3c\x25\x97\x61\x78\xa5\x20\ \xf8\x66\x6b\x7e\x74\x72\xe7\xe2\xbe\xbd\xa7\x9f\xef\x0c\x29\x7f\ \x88\x62\xee\x20\x6d\x4d\xed\x5e\x5a\x7f\xb9\xb6\x21\x26\xc4\x4c\ \x28\x68\xe1\x5f\x52\x03\xc9\x05\x53\xa4\x16\xde\x51\xd0\x3a\xb5\ \xfa\x1a\x05\x5a\x94\x6f\x01\x06\x00\xae\xf7\xc8\x22\x22\x2c\xa2\ \x15\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xff\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xa1\x49\x44\x41\x54\x78\xda\x8c\ \x53\x51\x48\x14\x51\x14\x3d\xef\xcd\x9b\x9d\xd5\x55\x57\x5b\x0c\ \x52\xa3\x20\x05\x3f\x44\xd3\x95\xa4\x44\x32\x32\xb1\x8c\x44\xfa\ \x31\x85\x90\x0c\xea\x2f\xea\xb7\xaf\xd2\xf0\xa3\x8f\xea\xab\x3e\ \x12\xfc\x12\xa9\xcf\x42\x70\xad\x55\x83\x42\x42\x93\xd0\xcc\xd4\ \x0c\x4b\x90\x16\x41\xcd\xb5\x76\x77\xe6\xcd\x74\x67\xdc\x59\x85\ \xa0\xba\x70\x67\xe6\xcd\xbc\xf3\xee\xb9\xe7\x9e\x61\x07\xba\x87\ \x60\x87\x45\x69\x48\x13\x5b\x09\x19\x29\xd9\x97\x95\x9b\xe5\x51\ \xb0\x16\x33\x30\xbe\xbc\x0e\x85\x31\x67\x8f\x7d\xe5\x9c\x41\x55\ \x28\x39\x87\x26\x78\xa1\x40\x32\x2c\xcb\x42\xcc\x30\x3b\x1f\x35\ \x97\xe6\xb6\x1c\xce\xc7\xdf\x62\x68\x3e\x02\xbf\x57\x45\x63\xcf\ \xd8\x63\xee\xbe\x34\xe9\x80\x5f\x09\xfd\x92\x0b\x36\x68\x6d\xa7\ \xdc\x95\x56\x72\x6f\xf7\xf0\x67\xc4\x89\xed\xc1\x80\xaf\x56\xb8\ \xf4\x69\x8d\xda\xc2\xbd\x79\xf6\x3a\x9a\x90\xce\x81\xbb\xc3\xa6\ \xaf\x10\xfd\x74\x55\xc1\xc8\xe2\x2a\x5a\xfb\xa2\xf0\x08\x0e\xe1\ \x0a\x40\x15\x32\x32\xb5\xed\x65\x4c\x4a\xd8\x78\x96\x02\xd3\x13\ \xe3\xf0\x29\x8a\x53\x4c\x93\xb1\xf7\xcb\x37\xcf\x75\xd8\xdf\x52\ \x0c\x8c\x78\xac\xb8\x22\xcf\xef\x00\x12\xba\x99\xa2\x6b\x83\x15\ \x45\x25\xd1\x18\xbc\xb4\xfb\xdd\x8a\x09\x95\x89\xaf\x81\x3b\xe1\ \x89\x0c\x8f\xcb\x80\xb6\x4b\x53\x1e\x0f\x16\xf8\x49\x79\x9d\x18\ \x58\x60\x8c\x39\x60\xc6\x85\x43\xfd\x64\x17\x43\x7d\x11\xf0\x2d\ \x5e\x4f\xd5\x6e\xcc\x49\xe4\xe0\x87\x6e\x81\x6f\x4f\x80\x44\x94\ \xb2\x38\x27\xcd\x83\x4d\x1a\x9d\x6e\x32\x3a\xd2\x4b\x60\x8d\xc0\ \x0a\x8d\x0e\x20\xd1\x71\xf1\xc4\x75\x14\x65\x87\x50\xb9\xe7\x4c\ \xe9\xd1\xb4\x72\x54\xa7\x55\x60\x67\x8c\x8a\xa7\x2a\x98\xef\xc7\ \x74\x24\x0a\x21\x7c\x78\x38\xd8\x80\x91\x0f\x83\xe0\x76\xfb\x49\ \x31\x98\xe2\x47\x7d\x79\x0b\x98\xda\x7f\x6a\x6c\x01\x7d\x64\x95\ \x56\xe1\x4c\x80\x28\x64\xa7\x7b\xf7\xa7\x7a\x26\xc4\xeb\x8f\x83\ \x78\x7a\xed\x3e\x36\xf5\x90\x23\x95\xed\x13\x85\x07\x30\xf5\xbd\ \x1f\x0d\x15\xed\xe0\xa2\xf7\xc2\xd8\x27\x1a\x84\x2e\x4d\x8b\xdc\ \xe7\x54\x29\x7b\x30\x0a\xc3\xe4\x50\x45\x00\x99\x44\x7b\x5d\x9f\ \xc7\xdb\xa5\x01\xec\x78\xe5\x19\x55\x07\xa6\x22\xbd\x38\x5b\xd9\ \x81\x37\xb3\x3d\xe7\x45\xdc\x30\xb1\x71\xeb\xf4\x1f\x6e\xab\xb9\ \x0d\x6c\x60\x12\x5e\x7f\x12\x4c\x3e\x91\xfa\xf6\x33\x4d\x13\xcf\ \xa7\x7a\x60\x44\x11\x56\x7c\xc7\x9a\x1b\xa1\x6a\xf9\x05\xd9\x5e\ \xac\xfe\x4c\xd0\x14\x24\xb6\x0c\x15\x1b\x5b\x13\x78\x12\x7e\x89\ \x99\x39\x60\x7a\x16\x98\x9c\x01\x82\x65\xd4\x22\xa9\xb6\xb4\x02\ \x8c\xbe\x42\x28\xdc\x89\x2b\x2c\xab\xae\xbd\xce\x53\xd3\x32\x44\ \xad\x24\xdd\xc7\x48\x75\x41\x3f\x4c\x3a\xf5\xac\x51\x6b\x2a\x59\ \x3a\x13\x55\xea\x21\xb4\xb5\x01\x73\x74\xe0\x68\x18\xa1\xe1\x2e\ \x5c\x6d\xba\x87\x2f\xb6\xbe\x1a\x65\x09\xfe\x11\x4d\x77\x31\x7e\ \xa4\x1a\x78\x31\x80\x30\x81\x2f\xdb\x60\xd7\xe2\xff\x1b\xc1\xe4\ \x7d\x8d\x72\xd1\x7d\xf9\x5b\x80\x01\x00\xda\x61\x06\x51\xc2\x46\ \xbb\xee\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xc1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x63\x49\x44\x41\x54\x78\xda\x62\ \x4c\xac\x9a\xf6\x9f\x81\x20\xf8\xcf\xc0\x08\xc2\xff\x21\x6c\xa6\ \xff\x7f\x19\x1f\x08\xe8\x81\xe8\xff\x8c\x40\x11\x63\x06\x12\x81\ \x73\xfb\xbe\xb3\x40\xcd\xee\x40\xcd\x3b\x18\x81\x2e\xc0\xa9\x90\ \xf1\xff\x3f\x90\x2d\x0c\xf7\x04\xf5\x19\x18\xff\xfd\x05\xe2\x7f\ \xff\xc1\xc2\x40\x71\x6d\x03\x9d\x67\xd7\x2f\x5e\x91\x64\xc2\x67\ \x13\xc8\xd9\xf7\x04\x0d\x18\x18\xff\xfc\x66\xf8\xf7\xfb\xd7\x7f\ \x25\x75\x55\x86\x7f\x7f\x7e\x1f\x54\xd1\x54\xff\xff\xec\xd1\x13\ \xc9\xaf\x6f\x9e\xcc\x67\x02\x7b\x0a\x2b\xfe\xff\x1f\x48\xfe\x07\ \xb9\x02\x68\xe3\xff\xd6\x2c\x0f\x06\x46\x0e\x36\x06\x0d\x53\x43\ \xbb\x2f\x5f\xbe\x30\x7c\x78\xf3\xe6\xfd\xb1\xfe\xe4\x5a\x82\x61\ \xe0\xd4\x79\xf0\xec\xbe\x72\x7b\x63\xc7\xa6\x9d\x67\xf8\xc5\x44\ \x19\x7e\x7e\x7e\xff\xec\xc3\xa3\x5b\xcb\x8e\x4f\xce\x5c\xe2\xde\ \xbe\xfb\x22\xfe\x30\x00\x87\xfc\x3f\x20\xfe\xcb\x30\xa7\xa3\xc0\ \xd8\xa9\x6d\xef\x99\x7d\x55\xce\xba\x40\xa9\x57\x6e\xed\x7b\x5e\ \x81\xe4\x59\x08\x46\x1e\x23\x13\x90\x64\x64\x48\xae\x9c\x7c\x76\ \x6e\x95\xb3\x49\x4a\xc5\xc4\x2b\x4c\x40\x43\xef\x83\xc4\x81\x06\ \xb3\x40\xfd\x8c\x3f\x28\x19\x21\xaa\x80\x86\x80\x42\x06\x1c\x34\ \x30\x3b\x86\x7b\x3a\x00\x5a\xf5\x9f\x89\xd2\x74\xe0\xd2\xb1\xff\ \xec\x9e\x0a\x47\x63\xa7\xa6\xed\x67\x78\xc5\xc4\x18\x7e\xc1\xd3\ \x41\x16\xa1\x74\xf0\x9f\x81\x19\xe8\xef\x07\x82\xba\x0c\x4c\xff\ \xfe\x30\xec\xaa\x74\x35\x76\x6d\xd9\x79\x66\x77\x8d\x3b\x38\x1d\ \x00\x35\xbf\x62\x20\x03\x60\xb8\x16\x20\xc0\x00\x31\xf1\xf7\x85\ \xde\x68\xe8\xbc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x10\xad\ \x00\ \x00\x3a\xee\x78\x9c\xc5\x5b\x07\x58\x54\xc7\x16\x1e\x4b\x9e\x18\ \x8d\x1a\xec\xd1\xc4\x8a\x1d\x1b\x86\x26\x20\xbd\x48\x13\xd0\xa8\ \x31\xcf\x68\x2c\x89\xa8\x60\xac\xb1\xa0\x98\xd8\x62\x54\x40\x40\ \x13\x35\x06\x35\x8a\x12\x7b\xaf\x08\x28\xa0\x82\x5d\x74\x51\xb1\ \x61\xa2\x46\x31\x9a\x68\x16\x81\x65\xde\x39\x33\xf7\xc2\xdd\xe5\ \xee\x65\x65\x95\x37\xdf\x37\xee\xb7\xec\xee\xcc\xff\xcf\x9c\x33\ \xf3\x9f\x73\xae\x84\x54\x21\xd5\x48\xbd\x7a\x04\x5e\x5b\x92\xaf\ \xaa\x13\x62\x49\x08\x69\xd9\x92\xbf\xdf\x0c\x7f\x5f\x0b\x7f\xeb\ \xde\x5d\x78\x6f\x46\x88\x7b\x43\x42\x3a\xc0\x77\xea\xe1\xf7\x08\ \xff\x3b\x36\xc7\xea\xc4\x90\x66\x02\xfd\x43\xe8\x1f\x43\x77\x86\ \xee\x01\xdd\x0d\xba\x35\xf4\x16\xc2\xe7\x7a\x5b\x9f\x0b\xcf\x7d\ \x6c\x2e\x17\x64\x76\xbb\xa4\x51\xb7\xbb\x40\x69\xf3\x4c\x4a\x9b\ \xa6\x17\xa8\x4c\x57\x26\xcd\x84\x8f\x7b\x43\x37\x55\xfa\xbd\xdf\ \x2d\x8d\xda\xf5\x06\xa5\xb6\x2a\x4a\xbb\x5f\xa1\x14\xc7\xc0\xd6\ \x2c\x43\xa3\x46\x0a\xd0\x9b\x43\xaf\x09\xfd\x1d\x46\x8d\x90\xaa\ \xc2\xfb\xfa\x38\xf6\xa0\x5c\x4a\xfd\x6e\x53\xca\xc6\xb8\x06\x63\ \x5c\xa6\xd4\x4c\xc0\x01\x9f\x3b\x09\xbc\xba\x40\xff\x08\x7a\x2d\ \x81\x4f\x2b\xe8\x76\xf8\xd9\x17\x0f\x28\x15\xc7\xb0\x4f\x7f\x98\ \xd0\x2b\xf5\xf1\x96\x4e\x29\x8f\xb7\xb4\x4a\x7c\xbc\xa5\xc9\x11\ \xde\x4d\x57\xa7\x4d\x17\xc6\x6a\xb9\x61\x8a\x63\xe8\xfa\x49\xf6\ \xea\x35\x13\x6c\x71\x7c\xef\x71\x8f\x29\x95\x8e\xe1\x02\x38\x6c\ \x00\x47\x37\xc0\xd1\xf6\x3c\xc7\x81\xdd\x74\x55\xca\x0c\xf8\x7e\ \xaf\xed\x61\x2e\xd7\x36\x4f\x77\xa2\xeb\x26\xdb\x53\xef\x9e\xcd\ \x87\x84\xe6\xbe\xdc\x83\x63\x0c\x87\x31\x06\xc2\x18\xbe\x92\x31\ \xba\x4a\xc6\xf8\x20\xf9\x9f\x14\xc4\xb0\x7b\xae\xbb\x7a\x5b\x98\ \x2b\xdd\xf4\x8d\x23\x8d\xfa\xd2\x32\x01\x97\x30\xe4\xee\xdf\x9b\ \x82\x1f\x69\xd4\xc3\xff\x28\x1d\xc3\x19\xc6\xb0\x96\x8c\x21\xac\ \xa7\xc7\xa1\x85\x7d\xe9\xee\xb9\x1e\xf4\xb7\x59\x2e\x74\xe3\xd4\ \x3e\x34\x7a\x8c\xe5\x7e\xb7\x1e\xcd\x3e\x83\xcf\x7c\xa0\x7b\x0a\ \xfb\xef\xe4\x76\xe2\xde\x58\xa7\x6c\x8d\x1a\xc7\x30\x87\x31\xda\ \x9c\x67\xeb\xe9\x9e\xf8\x83\x2f\x3d\x30\xdf\x8b\xee\x0c\x77\xa7\ \x09\x33\x9d\xe9\x86\x29\x0e\x74\xcd\x84\xde\x74\x45\xb0\x15\x8d\ \x19\x63\x49\x97\x7f\xf5\xb1\x7a\xe1\xb0\x9e\xfb\xe1\xbb\xfe\x6e\ \xe7\x9e\x2c\x72\xbe\x4e\xa9\xd5\x55\x3e\x06\xfc\xcd\xfe\x44\x44\ \x3f\x7a\xf4\x7b\x1f\xba\x6f\x9e\x27\xdd\x31\xc7\x8d\x8a\x6b\xb1\ \x3a\xd4\x96\xfd\x5e\xec\xc2\x18\x2e\xde\xb7\x28\x75\x82\x31\x2c\ \xb3\x34\x79\xf0\xbe\x6d\x5a\x54\xe0\xb1\xe4\xa5\xfe\xf4\xc8\x22\ \x6f\xba\xf7\x3b\x4f\x2a\xae\x45\xdc\x24\x7b\xfa\xd3\x78\x1b\xad\ \x31\x90\xcf\x80\x7b\x94\xf6\xcd\xd1\xa8\x1d\xb2\x5e\x7d\x0b\xef\ \xdf\x45\x9b\x3b\x19\xe1\x37\xfb\xf8\x62\x9f\xb8\xfd\xf3\x3d\xd7\ \x6d\x0b\x73\xd9\x00\xf3\xc7\xaf\x18\x67\x93\x10\x39\xda\x32\x61\ \xe5\x38\x6b\xad\xdf\x43\x6f\xa2\x64\xbf\xb8\x16\xbb\x24\x6b\xf1\ \xb3\x64\x2d\x04\x9b\x69\xa8\xf4\xfb\xa3\x8b\x7d\x98\xbd\x8b\x6b\ \xb1\x7e\xb2\x43\xc9\x5a\x10\xee\xd6\xb5\x94\x7e\x9f\xb4\xd4\x6f\ \xc7\xe1\x05\x7d\xf3\xd8\x5a\xcc\x76\xa5\xf1\xb0\x16\x6b\xbf\xb6\ \x53\xaf\xf8\xca\x6a\xb9\xf0\xdb\x6a\xd2\xef\x3f\xab\x21\x74\xa5\ \x41\x25\x2d\xbc\x86\xe4\x37\x35\x38\xa0\x96\x84\x3b\xa6\x78\xce\ \x84\xd7\x33\x70\xb0\xb2\x4d\xf4\x65\x5c\x23\x38\xc9\x48\x0f\xe8\ \xb6\x84\xaf\x9b\xab\x30\x8d\x0d\xf4\xae\x84\xfb\x2c\xfa\xbc\x09\ \xe1\xe7\x80\xb1\x0d\xe7\xae\x83\xf3\x76\x3f\x78\x73\x76\x8f\xd4\ \xa7\xfb\xba\x66\xfc\xab\xea\x90\xf1\x2a\xaf\x5d\x46\x21\x6d\x91\ \xa6\xce\x6d\x9a\xf2\x52\x55\x7f\xef\xfd\x84\x5a\x0b\xb6\x85\xc0\ \xf7\xbc\x09\x3f\x33\xda\x10\xbe\xae\xc6\x62\xa8\xe9\x9c\xf1\x78\ \xaa\xd3\xd5\x82\x3c\x87\xab\x45\xd4\xe6\x4a\x11\xed\x75\xa9\x88\ \x76\xbb\x50\x48\x3b\x9d\x2d\xa4\x66\x80\xa1\xe5\xe9\x42\xda\x3c\ \xbd\x80\x36\x4a\x2d\xa0\xf5\x92\xf3\xf3\x4c\x96\x1e\x9a\x45\xf8\ \xba\xe0\x5a\xd4\x30\x66\x72\xff\x6c\xf5\x5c\xdf\x1c\x0d\xf5\xbc\ \xae\xa1\x2e\xaa\x22\xaa\x0f\xc3\xa4\x9c\x22\x7a\x2f\xbf\x98\xce\ \xbc\x55\x44\xdf\x3f\x51\x40\x4d\x96\x1f\xc5\x73\xcc\x02\xfa\x7b\ \xc6\xcc\x3f\xf0\x76\x51\x5e\xe0\x6d\x0d\xf5\xbd\xa9\x07\xc3\x79\ \x8e\x41\xda\xd8\x3a\x1c\x79\x7e\x96\x70\x1b\x79\xdf\x98\xf9\x87\ \xe4\x16\xd3\x4f\xee\x6a\xa8\x2e\x06\x7b\x1d\x0c\xeb\x1f\x69\xd8\ \xdc\x91\xf7\x35\xb4\x19\xec\x45\xc3\xa4\x97\x2a\xc2\xef\x35\xa3\ \xe6\x1f\xf6\x7b\x31\x15\x31\x04\xdc\x2a\x8b\xc1\x1a\x30\x58\x5c\ \x2c\x5d\x07\xd1\x1e\x9a\x9e\x60\xf3\xe3\x7d\x66\xe8\xfa\xa3\x9d\ \xa3\xcf\xd4\x85\xde\x00\x7a\x63\xe8\xa6\xa3\x1e\x14\x53\x5d\x0c\ \x3e\x80\xc1\x43\x06\x43\x57\xc0\xd0\x51\xc0\xf0\x51\x9a\x1a\xe7\ \x6f\x4f\xf8\xbd\xdc\x44\x18\xaf\x81\x30\x3e\xda\x64\x15\x9d\xb9\ \xd1\xc7\xda\x42\xb7\x22\xdc\xaf\xdd\xa1\x5b\x06\x3f\x2a\xa6\x5a\ \x18\xee\x94\x62\x80\xcf\x3f\x85\xee\x47\xf8\xf9\x5b\x5e\x77\x17\ \xc6\x45\x99\x84\x7e\x21\xf5\xcd\x77\xd7\x4f\x75\x98\x9a\x30\xc3\ \x59\xb5\x79\xba\x63\x5e\xfc\x37\x4e\xf4\x57\xb8\xf3\xf0\x77\xa1\ \x70\xe7\x2a\x61\xc0\x75\x70\x16\xd7\xe1\xb2\xf6\x3a\xb4\xc5\xf3\ \x01\xf6\xe2\x83\xb4\x02\xda\x20\x25\x3f\xaf\x5e\xe2\x4b\x95\x49\ \xd4\x61\xd4\x3b\x2e\xa4\xd4\x37\xab\x6d\x0f\x73\xfd\x76\xd7\x5c\ \x77\x76\xb6\x6f\x85\xfb\x76\xcb\x0c\x67\x76\x57\xe1\xfc\x93\xf3\ \x28\x15\x31\x8c\x04\x0c\x9f\x1b\x81\xa1\xe1\x49\xf0\x8b\x14\xf0\ \xcd\x08\x86\x01\xcf\xcb\xf7\x37\xcc\xf1\x6c\xbe\x77\x9e\xa7\x7a\ \xef\xb7\x1e\xec\x7e\xda\x0e\x77\x03\xde\xf9\x78\xc7\xc0\xe7\x5e\ \x53\x9e\x52\x3a\x49\x06\xc3\xa7\xf7\x8a\xe9\x00\x39\x0c\x59\x7a\ \x30\x9c\x2a\xc5\x50\x27\xf1\x85\x4a\xd8\x93\x8f\xe0\x5e\x0c\x3f\ \xb4\xa0\x2f\xdd\x3f\xcf\x8b\xee\x01\x0c\xa8\x17\xf0\xae\xc6\x7b\ \x12\x3e\xf7\xc5\xf9\x45\x0c\x21\x80\x61\x8c\x0c\x86\x7e\x7a\x30\ \xf4\x54\xc0\x50\x63\xca\x8a\x91\x30\xbe\xf9\xa1\x45\xde\x3b\x0f\ \x83\x46\x38\x08\x18\xf6\xc1\xdd\x88\x9a\x87\xed\x43\x98\x0b\x9d\ \x12\xd8\x39\x74\xf2\x13\x4d\x9e\x5e\x0c\xf7\xb5\x31\x78\x03\x06\ \x77\x19\x0c\xe6\x80\xa1\x83\x0e\x86\xfa\xbb\xef\xa3\x26\xb3\x4e\ \x5c\xec\x7b\x0d\xef\xf6\xc3\x0b\xbd\x99\x5e\xc2\xfb\x99\xd9\xc2\ \x6c\x37\xd0\x4b\xf6\x09\xc3\x4f\xa9\xbe\x13\xe7\x7f\x1d\x0c\x4e\ \xd7\x8a\xa8\x9d\x0c\x86\x36\x67\xc0\x37\x01\x43\x93\x64\x76\x3e\ \xd8\x25\x2f\xf3\xa7\xc7\x7f\xf0\x63\x5a\x0b\x35\xdf\xfe\xf9\xa5\ \xfb\x80\xb6\xf0\xb5\x7f\xa7\x49\x88\x61\xe2\xe3\xa2\xdc\x8a\x62\ \xb0\x92\xc1\xd0\x3c\xe5\x5f\x9c\xdf\x01\x75\x1e\xea\x34\xd4\x8b\ \x47\xc4\x7d\x00\xcd\xb7\x1b\x31\xc0\x3e\xa0\x2d\xac\x9a\x60\x9b\ \xf0\x85\x7b\x9b\x51\x84\x6b\x4f\x2f\x25\x3f\xf7\x38\x9e\x3d\xd7\ \xf7\xfa\x2b\x15\xc3\x90\xad\x07\x43\x66\x21\x6d\x7d\xea\x15\xea\ \x44\xbb\xd4\xa8\x00\x8a\x18\x92\x96\xf8\xd1\x63\x8b\x7d\x29\xda\ \xc2\x81\x12\x5b\x28\xeb\x93\x78\x2e\xac\x03\x0d\x09\xda\x89\xe9\ \xaf\x1f\xc7\x5b\x97\xe8\x38\xec\x4b\x47\xf6\x3a\x3b\xd2\xbd\xf5\ \x04\xef\xcb\xcf\xf6\x2a\x61\x30\x4b\x67\xfc\x2d\x53\x97\xf7\xcb\ \x4d\x8d\x0c\xa0\x29\xb8\x0f\x4b\xc4\x7d\x90\xd8\x02\xdb\x07\x37\ \xee\x93\x33\x9c\xe8\xa6\x69\x8e\x4c\x3f\xa2\x8e\x45\x0d\xb9\x3a\ \x04\x30\x80\x16\x8d\x0d\x2e\xd5\xb3\xa8\xad\x47\xba\xb7\x9d\xa0\ \xb4\x0e\x9d\x4e\xfd\x83\xf7\x63\xd7\xf4\xe8\xa0\x63\xe9\xcb\x03\ \xe9\xc9\x48\xc9\x3e\x88\xb6\x20\xf5\x49\x3c\x17\xc0\x27\xf1\x5c\ \xd8\x38\xad\x0f\xd3\x9f\xbf\x4c\xb4\x63\x9a\x7e\x55\x88\x0d\x5d\ \x39\xd6\x5a\x4b\x53\x47\x8e\xb6\x50\x79\x1c\xbf\x36\xd7\x1f\xec\ \xa1\xef\x0d\x0d\x75\xd3\xc1\x60\x9e\xf2\x68\x33\xcc\xdf\xe6\x74\ \xec\x80\x88\xd3\x31\x41\x14\xf4\x3a\xdf\x07\xc4\xb0\x58\xc7\x16\ \x04\x9f\x14\xcf\x85\x78\x71\x1f\x20\x1e\xf8\x05\xf6\x61\x0d\xec\ \x03\x6a\xfa\x15\x63\xad\xca\xe8\xfa\xfe\x60\x93\x52\x0c\x8e\x80\ \xa1\x37\x60\x30\xdf\x79\xf1\x6b\xf8\xbc\x51\xfa\xea\x41\x8d\xcf\ \x44\x07\xaa\x4f\x45\x07\x51\xb4\x85\x94\x65\xa2\x2d\xc8\xf8\xa4\ \xae\x2d\x4c\x11\x6d\xa1\x37\xb7\x05\xb6\x0f\x56\x5a\xf3\x0f\x06\ \xbf\x60\x18\x72\x4a\x31\x38\x64\x15\x60\x8c\xd5\x49\xb8\x83\x48\ \x66\xf4\x80\xd9\x67\x62\xfb\x53\xbe\x0f\xba\xb6\xc0\x7d\x52\xee\ \x7c\xde\xa8\x63\x0b\x6c\x1f\x10\x83\x64\xfe\xa1\xe0\x9b\xba\x18\ \x9c\xce\x3f\x8f\x25\x5c\x97\x94\x68\xfe\xcc\x15\x41\x63\xd3\xa3\ \x03\x73\xd3\x10\x43\x84\xb6\x2d\x1c\x94\x9e\xcf\xd2\x7d\x28\x63\ \x0b\xb6\x74\xd5\x78\xb4\x85\x92\xb8\xc6\x73\xc4\x1f\xc5\x54\xc4\ \x10\x78\xab\x50\xed\x7b\x4d\xbd\x1e\xfe\x5e\x9b\xe8\xc4\x1b\x0a\ \xcd\x54\xb8\xb3\x65\xfd\x5d\x6a\x0b\xa2\x4f\x32\x5b\x80\x7d\x20\ \x06\xc4\x65\xe5\x35\xb6\x0f\x32\xb6\x80\x3e\xc9\x6d\x41\xc7\x27\ \x25\xb6\xf0\x26\xe6\xc7\x7d\x50\x3a\x9f\x7f\x9b\xe9\x52\xea\x93\ \x88\x01\xf6\x41\xb4\x05\xc2\x63\x74\xa3\xe6\x17\xcf\xe7\x07\x97\ \x8f\x32\x7d\x7b\xe7\xcc\x8e\x32\xe7\x33\xf7\x49\xae\x99\x4a\x6c\ \x21\x94\xe5\x3d\x1c\x09\xd7\x7c\x15\x6e\xec\x7c\x06\x9f\x94\x36\ \xdc\x87\xf2\xce\xe7\x35\xa1\xbd\xd1\xc7\x50\xff\x2a\xc6\xc5\xe5\ \xce\x2f\x9c\xcf\x77\xd3\xe3\xd9\xdc\x59\xfb\x22\x64\xce\x67\xd7\ \x32\xe7\x33\xd8\xe0\x46\xc2\xe3\x50\x43\xed\x5c\xb6\x9d\x8e\xf4\ \x77\x49\x8b\xec\xa7\x2e\x73\x3e\xeb\x6a\x26\xc9\xf9\x1c\x37\xd9\ \xfe\x38\xe1\x69\x3e\xc3\x32\x7b\xe5\x34\x3c\x23\x4f\x46\x06\x46\ \xc0\xfc\x19\xc7\x97\xf8\xaa\x74\xcf\x67\x98\x5f\xbd\x6d\xb6\x8b\ \x0a\xf4\xf3\xf1\x4d\xd3\xfa\x60\x8e\x08\x75\x6d\x55\x43\xc6\xa6\ \xe1\x04\x13\x3e\x73\xe4\x7a\x12\xe8\xf3\x70\xf8\x4e\x78\x05\x30\ \xe3\x6f\xf0\xf7\xfa\xc6\x86\x4e\x69\x78\x15\x8a\x79\x8a\xee\xd0\ \x87\x11\x49\x9e\xc2\xac\x02\x13\xea\x6f\x18\x63\x60\x4e\x12\xe3\ \x30\x8c\x81\x30\x2f\x80\x79\x0a\x3c\xd3\x30\x3e\xb5\x27\x3c\x9f\ \x8a\xb9\x54\x27\xe1\x3d\xfe\x1d\x63\xe7\xce\x84\xc7\x09\x98\xf7\ \x28\x93\xa3\xa9\x84\x86\xd8\x31\xef\x82\x31\x9c\x45\x97\xad\x17\ \x26\x75\x4d\x7e\xb8\xa5\x4b\xea\x5f\x29\x9d\x33\x5e\x66\xb7\x4b\ \x7f\x99\x6d\x96\xf1\x2a\x8f\x69\xca\x54\xf5\xfd\xa6\x27\x5e\x64\ \x37\x4e\x7e\x91\x5d\xff\xc0\xa3\xfd\x75\xb6\xe6\xac\xad\xb9\x70\ \x7b\x28\xe1\x9a\xcd\x91\x70\xce\x78\x16\xbd\xa9\xbc\x8c\x41\xd8\ \x6d\x12\x55\x2e\x76\xe7\xff\x49\xb6\xbb\x52\xa0\xb6\xbd\xc2\xb5\ \x07\xc6\x26\xdd\x2f\x14\x52\xf3\x73\x3c\x36\x68\x97\xc9\x35\xa9\ \x98\x47\x69\x0a\xfa\xbc\x11\xc4\x08\xa6\x27\x0a\x68\xdd\xa4\xfc\ \x3c\x93\xad\xf7\x7e\xab\x3a\x6c\x16\xc6\x9a\x0e\xc4\x80\x5c\xf7\ \x1b\x6a\xd5\x9d\x33\x1f\xf7\x73\x57\x15\xaa\x31\xce\x46\xdd\x82\ \xf1\x5d\x85\x38\x40\xcc\x57\x2b\x31\x3f\xaf\xfa\xdc\x8d\x13\x05\ \x0e\x68\x87\x6f\xd5\x96\xbc\xaf\x3d\xb3\xf0\xb9\x51\xa8\x46\xbd\ \x21\xe6\x0a\x44\x0e\x98\x37\xb1\xd4\xc3\xa1\xf5\x19\x1e\xaf\x22\ \x07\x97\x8b\x10\x33\xa5\x6b\x73\xa8\x3a\x7c\xf6\x60\xc2\xfd\xa2\ \xe6\xdb\xc4\x1f\x98\xf3\x6a\x27\xc6\x32\xbe\x82\x66\xd2\xe2\x90\ \xa5\xc0\x21\x83\x73\x48\x7f\x5e\xcc\xee\x8b\xe7\x85\x94\x0e\x05\ \xce\x8c\x43\x32\xc4\xde\x5b\x72\xd6\x12\x1e\x7b\x57\x3c\x1b\x6a\ \x40\xfb\xe4\x76\xa1\xaa\xff\x6d\x1e\x8f\x19\xca\xa1\x8b\xc0\x61\ \xcc\x8d\x22\xad\xfb\x36\x15\xb8\x34\x14\x6c\xa9\xce\xd1\x17\xd9\ \x84\x9f\x53\x46\xdd\xeb\xe5\x35\x8c\x27\x07\xde\xd5\x50\x5d\x0e\ \xee\x0a\x1c\xba\x09\x1c\x86\x66\x6b\xe3\x3f\x98\xa7\xa1\x4d\xc4\ \xfc\x47\xd2\x8b\xfb\x84\xeb\xa2\xc6\x6f\x13\xff\x7f\x85\x98\x58\ \x8b\x03\xc4\x62\x5e\xfa\x38\x5c\xe2\x71\x99\xc8\x41\xcc\x27\xe6\ \xe6\x17\x53\x2f\xf8\x0c\xfd\x41\xe4\x40\x78\x0c\x6c\x94\xae\x2b\ \xaf\x61\xae\xcb\x58\x0e\x52\x7f\xc0\xbc\x87\xc8\xa1\x32\xf0\x8f\ \xfc\x83\xe7\xeb\x44\x0e\x98\xbb\x0c\xd2\xc3\xa1\x8f\x10\x97\xca\ \x71\xe8\x20\xe4\x33\xa5\x1c\x08\xcf\x51\x2a\xd6\x2b\x0d\x68\x78\ \xfe\xe2\x9d\x8e\x1a\x11\x6d\xb1\x89\xa4\x9b\x7e\xf9\xb0\x98\x96\ \x70\xc8\xe5\xf1\xd3\x9b\xe2\x40\xf8\xf9\xd9\x42\x67\x4e\xec\x8d\ \x08\x8f\x0b\xf1\x7e\x53\xd2\x6f\xff\x11\xbe\x6b\x0e\xbd\x0f\xe1\ \xfe\xe4\x25\xe9\x56\x98\x2b\x34\x94\x03\x7c\x1f\x35\x63\x3f\x9d\ \x31\x2a\xd2\x31\xc7\x8b\x39\xf7\xf6\x02\x0f\x39\xfd\xfb\x4e\x4c\ \x70\xef\xce\xa0\xd1\xe3\x41\xaf\xe6\x61\xdc\x80\x71\x2c\xea\x76\ \x31\x7e\xc1\xb1\xc6\x0b\xf9\xce\xd1\xc0\x61\x84\x1e\x0e\xfe\x42\ \xde\x91\xed\x43\x76\xd9\x7d\xf8\x58\xdc\x87\xf3\x65\xf7\x01\x73\ \x70\x58\x27\x68\x92\xca\x7d\x1a\x6b\x26\xb5\xe1\x6c\x35\x59\x77\ \x39\x9a\x70\xcd\xd4\x93\x70\x1b\x93\xde\xd3\x55\xd7\x86\xb8\x9a\ \x6d\x0f\x73\xcd\x65\xf1\x67\x98\x0b\xd3\xfc\x18\x83\x62\x1c\x8c\ \x31\x20\xc6\x1e\x88\x7f\xc2\x13\x4a\x8d\xe5\x60\xad\xc0\xa1\x95\ \x1e\x0e\x75\xe0\x8e\xab\xb9\xef\x09\xd6\xa0\xfd\x05\x3b\x93\xc6\ \x5f\x26\xbb\xc2\xdd\x54\x18\x3f\x63\xec\x88\x71\x13\xc6\x6e\x09\ \x42\xdc\x82\xf1\xdb\x46\x9e\x77\xf7\xc2\xbc\x37\xe3\xf0\xa7\x02\ \x87\x3b\xf2\x1c\x30\xff\xda\xe7\xaa\x3c\x87\xce\xe7\x78\xfe\x4f\ \x2f\x87\x14\xce\xc1\x64\xd3\xf5\x5f\x08\xcf\xd3\x37\x15\xf7\x60\ \x67\xb8\x6b\x28\xc6\x9d\x7b\x84\x5c\x8c\x98\x93\xc2\xd8\x0f\x6c\ \x89\x73\x98\xe6\xa8\x95\x37\xd7\xc7\xe1\x33\x05\x0e\x6e\x0a\x1c\ \xba\x2a\x70\x68\x0c\x1c\x1a\x08\x1c\xde\x4b\xca\x57\xeb\x68\xa5\ \xaa\xfb\xe6\x79\xa9\x30\x66\xdc\x2b\xe4\xb9\x31\x6e\xc4\x3c\x33\ \xe3\x30\x93\xc7\xd0\x18\xc7\x8b\xf8\x95\x38\x7c\xae\xc0\xc1\xf3\ \x0d\x71\xa8\xbd\x81\xf9\x02\xc6\x43\xf5\xf7\xcc\xf3\x6e\xc6\xe2\ \x6e\x21\xee\xc5\x7c\xd8\x6e\x39\x3b\x9a\xc1\xf0\x7b\x03\x6e\xb5\ \x5e\x0e\x0f\x14\x38\xe4\x28\x70\xb8\xac\xc0\xe1\x74\x59\x0e\x75\ \x13\x99\xd6\xe8\x0b\xfd\xa3\x83\xf3\x3d\xc7\x63\xcc\x8c\x39\x1c\ \x96\xbf\x98\x27\xd8\x91\x0c\x87\x20\xbb\x16\x83\x27\xfe\x59\xa4\ \xd2\xcd\xfb\x23\x87\x71\x7f\xf2\xbc\xbb\x1c\x07\xcc\xbf\x07\xea\ \xe1\x80\x35\xd3\xde\x7a\x38\xb4\xcf\xe4\xb5\x09\x39\x0e\xef\x4e\ \x5f\x35\x02\xf0\x77\x3c\xfc\xbd\xcf\x3a\xcc\x41\x89\xb5\x92\xfd\ \x42\x0e\x46\xce\x17\x16\x7e\xde\x6b\x51\xf0\xcd\xa7\x3f\x49\xf1\ \x97\xd4\x91\x2a\x99\x43\xdd\xf8\x2c\x7c\xbe\xa1\x67\xe2\x62\x1f\ \x15\xe6\xf7\x31\x77\x82\xb9\x3c\x31\xa7\x29\xe7\x0b\x9b\xa6\x39\ \xa1\xc6\xed\x37\x31\x4f\x93\x6b\x30\x87\xfb\x0a\x1c\xae\xeb\xe7\ \xd0\xe3\x82\x7e\x0e\xac\x4e\x04\xb1\x34\x60\xb1\x3d\xb6\xc4\x2f\ \x17\xf3\x80\x98\x97\xd6\xb5\x23\x39\x5f\x58\x3a\xca\x2a\xa6\xef\ \x9a\xf8\x61\x86\x70\xc0\xda\xe6\x17\x0a\x1c\xbc\x15\x38\xf4\x52\ \xe0\xf0\x21\xab\x33\xb1\x78\xc1\x0e\x73\xda\x98\x57\xc7\xfc\x95\ \x68\x47\x98\xc3\x3a\x20\xb5\x23\x21\x9f\xb7\x4d\xc2\xc1\x6e\xe6\ \x82\xc1\xc1\xd7\x1f\xaf\xd6\xe5\xf1\x3a\x1c\xfc\x8c\xe0\xd0\xec\ \xc4\x4b\x86\x5f\xcc\x83\x62\x3e\x18\xf3\x5f\x47\xa5\x76\x24\xe4\ \x02\x77\xcb\xf8\x02\x68\x8a\xec\xf9\xe0\x0f\x30\x46\x00\xe1\xcf\ \x86\xbc\x8e\x9e\xf1\xb0\x89\xdb\x35\xd8\xe7\xd2\xd3\x78\x5f\x88\ \xa5\x2b\xc2\xa1\xc5\x49\x8e\x1f\x73\x98\x98\x47\x15\x39\x88\xbe\ \xa0\x75\xa6\x4a\x7c\x41\x49\x5f\x60\xae\x1d\xf3\xcc\x58\xf7\xc0\ \x3c\x2f\xe6\x9a\x31\xdf\x8d\xf5\x97\x58\x49\xfd\x25\x6a\x74\xaf\ \xfb\x11\xa3\x7b\x9d\x9d\x12\xd4\x71\x61\xc7\xa9\x8b\x3e\xf1\x51\ \xe5\x67\x8a\x1c\x5c\x85\x7a\x90\x1c\x07\x73\xe1\x59\x06\xe4\xd0\ \x3a\x8d\xe1\xb7\x49\x8d\xc0\x1c\xa8\x50\x9f\x11\x72\xe2\x72\xbe\ \xa0\xef\x4c\x95\xea\x0b\xc6\x61\x92\x3d\xcb\x53\xb3\x1a\x5a\x28\ \xaf\x5b\x30\x0e\xc1\xda\x35\x24\xb1\x2f\x1b\x65\x71\xce\xbd\x67\ \xf3\x21\x7d\xb3\x5e\x26\x95\xcf\xa1\xb0\x84\x83\x19\xc7\xdf\x23\ \x2d\x2a\x40\x85\xb9\x6c\xac\xad\x54\xc4\x17\x4a\x38\x48\x74\x2a\ \xd6\x1b\xb0\xfe\x25\x72\xc0\xba\xc7\x4a\x9d\x1a\x94\xb4\x2f\x19\ \xd1\x23\xc5\x7c\xd6\xb2\xfe\x52\x5b\xd2\xe5\x60\xa5\xc3\xc1\x2c\ \xf1\xe1\x16\x3c\xff\xd3\xa3\x02\x76\x60\x7d\x8a\xd9\x51\x05\x7d\ \x41\x4e\x6b\xc7\x09\xb5\xd4\x35\x62\x2d\x73\xbc\x35\xab\x1f\x49\ \xeb\x99\xd2\x3e\xde\xa7\xfd\x4c\xef\x0b\x4f\x7f\x94\xfa\xb4\xc8\ \x41\x9a\x1f\x13\x39\x98\xed\xbb\x11\x01\xf8\x5b\x9d\x8e\x09\x08\ \xc3\x1a\x1f\xd6\x19\x4f\xfe\x1f\x7c\x41\xba\x07\xb6\xbf\xee\x1b\ \x88\xcf\x4d\x18\xc2\xc1\x2c\xee\xc4\x97\x80\xbf\x71\x7a\xa4\x6f\ \x57\xac\x93\xa6\x47\x07\x02\x87\x00\x56\xaf\x65\x76\xb4\x54\xb0\ \xa3\x4a\xf2\x85\x88\xd1\x16\x68\xcf\xee\xfd\x85\x67\x3f\x44\x0e\ \x1e\x8c\x43\x91\x16\x07\xcb\x8b\xac\xce\x89\x79\x6e\x7c\xb6\x87\ \x9c\x89\x0e\xca\x65\x1c\xd0\x8e\x84\xba\x7b\xb2\x8c\x2f\x94\xa7\ \x2f\xa4\x5a\xbb\x22\xbe\x80\x67\xeb\x20\xcc\x69\x48\x38\x88\xf9\ \x31\x29\x07\xab\x8c\xe7\xc9\x84\x3f\x93\xc4\x9e\xa1\xcb\x8c\x09\ \x0a\xc3\x3a\x2d\xb3\x23\x19\x5f\x30\x54\x5f\x48\xb5\x36\xd6\x70\ \xb1\x8e\xac\xed\x0b\x82\x1d\xe9\xf1\x05\xc4\x8f\xcf\x00\x95\xc7\ \xc1\xe2\x50\x76\x88\x10\x43\x96\xc4\xf2\x19\xb1\x03\x8e\x9d\x89\ \x11\x38\x44\x89\xf5\x66\xe5\x33\x55\x49\x6b\xeb\xfa\x02\xb3\x23\ \x19\x5f\xd0\xc5\x8f\x35\x61\x25\x0e\xce\x59\xec\xf9\xb1\x0f\x08\ \xaf\x9d\x68\xb5\x33\x31\x41\xc7\x5e\xcb\x17\xca\x3b\x53\x85\xba\ \xe1\x7a\x19\x5f\x10\xed\x68\x85\x76\x5d\xdf\x6b\xf8\xef\xbc\xae\ \x5d\x92\x1f\x93\x70\xf0\x52\x15\xe6\xf6\x3e\x76\x03\xe3\xae\xff\ \xc8\xe4\x1f\x58\x4b\x5d\x1e\x34\xf8\x54\x74\x60\x26\xd6\xf6\x8c\ \xf1\x05\x43\xce\x54\xc6\x61\x6c\xa9\x2f\x20\x7e\x7c\x6e\x47\x97\ \x43\xe0\xad\x22\xb5\xff\xf5\x57\xbb\xdc\x4e\x3d\xc0\x9a\x93\xb1\ \xb5\x43\xb4\x3b\xcc\x93\x19\xa4\x75\xf4\xfa\x82\xcc\x99\x4a\x2a\ \x21\x7f\xf8\x36\x7d\xa1\x32\xf0\x57\x58\x5f\x18\xe0\x0b\x95\x81\ \xff\x6d\xe9\x0b\xe4\x50\x19\xf8\xa5\xfa\x22\xf5\xc7\x11\xf4\x6e\ \xc6\x4e\xfa\xfb\xa5\x23\x34\x29\x76\x98\xd1\xfa\x82\x54\x42\xfd\ \x42\x7a\xa6\xaa\x9f\x3d\x2a\xa9\xa5\xfc\xfb\xec\xa1\xd1\xfa\x82\ \xf0\x9c\x71\xfd\xb7\x8a\x3f\xc2\x5f\x2d\x6a\x6d\xdd\x96\x1c\x3b\ \xbc\xc2\xfa\x62\x75\x88\x4d\x2e\xe1\xb9\xd9\xda\x6f\x13\x3f\xe8\ \xed\x6b\xa2\xbe\xf8\xeb\xde\xe5\x12\xec\x7f\x3f\xca\x29\xdf\x17\ \x14\xf4\x05\xf8\x2f\x6a\x1a\xfc\x7f\x5c\x65\xee\xd5\x37\x8a\x3f\ \x32\x30\x42\xd4\x17\xe9\xb1\x43\xe8\xcd\xe3\x6b\xe8\xed\xb4\x78\ \x9a\x1c\x35\xa8\xc2\x5a\x1b\xfc\x40\xbd\x60\xa8\x05\xe6\xf8\xf1\ \xff\xe7\xbc\xd5\x67\x08\xf0\x99\x17\x7c\xf6\xe7\x4d\x69\xed\x5f\ \x27\x3b\xa8\x63\x82\xad\xf0\x19\x56\xcc\x87\x1b\xf4\x6c\xcc\x1b\ \xe1\x10\x15\x10\x87\xbe\x60\x8c\xd6\x86\xf5\x57\xfd\x1c\x62\x87\ \x35\x09\xd4\x33\x95\xf1\xec\x46\x99\x96\xb2\xc4\x77\x30\x68\xd4\ \xb8\xa4\x25\xbe\x99\x89\x3f\xf8\xa8\x00\xbf\x5a\x4e\x6b\xef\x0a\ \x77\xcb\xdd\x3e\xc7\x55\x05\xf6\xb3\x2b\x7e\x86\xe3\xf2\x8d\xdf\ \xd8\xe1\x73\x34\xd5\x8d\xc5\x4d\x8b\xe0\xd0\xa2\x64\x0e\xcd\x27\ \xa4\x2e\xbe\x3e\x2b\x7d\xad\x41\x49\x15\xe1\x95\xbc\xee\x2b\xfb\ \xff\x55\x35\x48\x95\x3b\xf8\x5a\x8d\x3d\xf3\x84\x48\xe7\x84\x4b\ \x5f\x61\xf8\x70\x63\xc0\x1b\xd1\xc2\x75\x5e\x93\xf0\x1f\x58\xc9\ \x3b\xf8\x5a\xad\x04\xff\x6b\xf3\x56\x7a\xad\x8b\xaf\xb0\xce\x2d\ \xd8\x43\x5a\xfc\x61\xad\xff\x01\x56\xc1\x5e\xe0\ \x00\x00\x06\x7e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x42\x43\x46\x31\x44\x39\x32\x31\x31\x30\x30\ \x39\x31\x31\x45\x33\x39\x44\x30\x39\x45\x42\x36\x30\x32\x37\x45\ \x34\x43\x36\x41\x38\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x42\x43\x46\x31\x44\x39\x32\x32\x31\x30\x30\x39\x31\x31\x45\ \x33\x39\x44\x30\x39\x45\x42\x36\x30\x32\x37\x45\x34\x43\x36\x41\ \x38\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x42\x43\x46\x31\x44\x39\x31\x46\x31\x30\x30\x39\x31\x31\x45\ \x33\x39\x44\x30\x39\x45\x42\x36\x30\x32\x37\x45\x34\x43\x36\x41\ \x38\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x42\x43\x46\ \x31\x44\x39\x32\x30\x31\x30\x30\x39\x31\x31\x45\x33\x39\x44\x30\ \x39\x45\x42\x36\x30\x32\x37\x45\x34\x43\x36\x41\x38\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xc4\ \x66\x9f\x6d\x00\x00\x02\xf2\x49\x44\x41\x54\x78\xda\x7c\x53\x5b\ \x48\x14\x51\x18\xfe\x66\x77\x76\xdd\x5c\xd7\xbd\x55\xae\xdb\x62\ \x21\x06\x3d\x58\x64\xcd\x9b\x45\x45\x89\x9a\x52\x11\x84\x28\xad\ \xae\xeb\x25\xb3\x87\xa0\x1e\x84\x5e\xba\x42\x44\x90\x41\xd4\x43\ \x8a\x45\xde\x4a\xa5\x34\xec\x46\x18\x05\x61\xed\xae\x63\x24\xa9\ \x84\x0f\x59\x9a\x98\xe6\xba\x86\x2b\xb3\xb3\x73\xe9\xcc\x64\xb2\ \x4a\xf4\xc3\xcf\x99\x73\xe6\x7c\xdf\xf9\xce\xff\x7f\x87\x2a\xf1\ \x78\xb1\x14\xb2\x0c\x49\x56\x43\x9d\x6a\x34\x9a\x4c\x8a\xa2\x7a\ \x45\x59\x02\x27\x46\xe0\x4e\xc9\x41\x54\x8a\x42\xf9\xab\xa4\x81\ \xa6\xa1\x41\x4c\x10\x70\x91\xcd\x66\xc3\xc6\xb4\x34\x6c\xdf\xb6\ \x15\x3c\xcf\x1f\x90\x08\x58\x94\x45\x78\x37\xe4\xab\xa3\x8c\xe5\ \xb1\x8c\x40\x10\x84\x0a\xab\xdd\x8e\xa9\xe9\x29\xce\x62\xb5\x28\ \x4b\x79\x84\x94\x9c\x2a\xa8\x29\xc9\x2b\xe1\x31\x04\x8a\x6c\x22\ \x79\xb7\x39\x31\x11\x7e\xbf\xff\x84\x33\x39\x59\x39\x2d\x5d\x50\ \x4e\x5f\x9f\x07\x41\x12\x21\x49\x12\xe4\x15\x24\xb1\x04\xaa\xfc\ \xe0\x4c\x10\x01\xbf\xaf\x6d\x6a\x7a\x1a\x76\xbb\x15\xa2\x28\xae\ \xe5\x85\x28\x22\x91\x48\x1b\x1f\xe1\xe5\x28\x2f\xb4\x91\xb5\x25\ \x22\x3a\x56\xbe\xc5\x6a\xc5\x5c\x68\xb6\xf7\x5e\x63\xe3\x7c\x38\ \xbc\xf0\xc9\x62\xb1\xa6\x7f\x99\x18\xdb\xcb\x71\x91\x96\xc2\x73\ \xc5\x20\x6c\x4a\x65\x8f\x34\x9e\xbd\x2b\xeb\xf4\x3a\x4a\xd6\x2d\ \x2a\xf8\x2b\x5f\x51\x30\x32\x32\xd2\x1a\x0c\x06\x31\x1b\x9a\x95\ \x6d\x49\x76\x94\xac\xcb\x6d\x29\xb8\x58\x82\xe0\x63\x1f\x7e\x76\ \xf7\x21\xd8\xe5\x87\xfb\xbc\x07\x8a\x1a\x49\x94\x96\x08\x0a\x4d\ \x26\x13\xc2\xe1\x30\x9e\x3d\x7d\xd2\xbc\xc0\x45\x31\x36\xf6\x7d\ \xd2\x35\xa4\x47\xc1\xa5\x52\xfc\xea\xee\x07\xa5\x8f\x83\x56\xaf\ \x07\x45\xeb\x20\xf0\x3c\x8a\x2f\x78\x20\x44\xc5\xd7\x2a\x01\xb9\ \x53\x45\x02\x21\x30\x18\xe2\x71\xe5\xea\xb5\xa0\x10\x15\xe4\x8c\ \x8c\x2d\x59\xfb\x6b\x3d\x18\x7d\xd3\x07\x2d\xe9\x37\x4d\x52\x19\ \x13\xb2\x37\x13\x35\x01\x90\x09\xe6\x39\x6e\x97\x5a\x03\xad\x56\ \xbb\x47\x4f\xd8\xfb\x02\x3e\xa5\x58\xc8\xcf\xcb\xc5\x51\xb7\x1b\ \x81\xfe\x7e\x88\x0e\x2d\xe8\x59\x1a\xab\xc3\x14\xb4\x3b\x53\x11\ \x22\x60\x93\xcd\x82\x86\x33\xb7\x51\x76\xf3\x24\xa3\x21\xfa\x8b\ \x68\x9d\x0e\x1c\xc7\xe1\x7e\x6b\x33\x93\x93\x9d\xc5\x7a\xbd\x5e\ \x0c\x0f\x7f\x86\x91\x28\x32\xc5\x19\x31\xe9\xd4\x41\x97\x99\x8a\ \x39\x72\x7f\x13\xf1\x47\xfb\x5b\x56\x05\x0b\xcf\x87\x58\x5a\x10\ \xc5\xe3\x46\x83\x81\xb4\x6f\xe6\xdd\xc1\x43\x87\x59\x8a\x42\xca\ \xd7\x6f\x63\x30\x1a\xe3\x09\x37\x71\x21\x29\xd4\x1a\x47\x12\x06\ \xdf\x0f\x20\xcd\x61\x47\x47\x8f\x0f\x25\xd7\xab\x99\xc6\x53\xb7\ \x58\xc5\xd0\x1a\x22\x7d\x87\xd2\xd7\xc9\x1f\x93\x5d\xcd\x4d\x4d\ \xa8\xac\x3c\xb6\xaf\xf3\xd1\x43\x24\x9a\xcc\xa4\x26\xab\xe0\x50\ \xc0\x83\x83\x88\xdb\xe4\x42\xe7\x0b\x1f\xdc\xb5\xd5\xcc\x83\x9a\ \x3a\x02\xa6\xfe\xf8\xe0\x4e\x43\x3d\xb3\x68\x85\x51\xe5\xfe\xe3\ \xe3\x13\x03\x2e\x97\x93\x21\x6d\xed\x2b\x2f\xaf\xc0\x87\x8f\x03\ \x70\x3a\x9c\xe8\x79\xf5\x12\x55\x37\xaa\x99\xf6\x9a\x7a\x56\x8e\ \x79\x11\x74\xa9\xb7\x9c\xc8\xa6\x40\x9c\xa3\xfa\x41\xb1\x6b\x28\ \x34\xc7\x5a\x2c\x66\x86\x3c\xa6\xcb\x66\xb3\x39\x6b\x58\x43\xa1\ \xaa\xac\x92\xe9\x38\x5d\xc7\xae\x7c\x0d\x14\xfe\x1f\xa9\x24\xad\ \x8b\xdf\xec\xbf\x36\xfc\x16\x60\x00\x55\x76\x6f\x1a\x78\xec\x5b\ \x42\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\xf1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x44\x36\x37\x45\x32\x35\x33\x38\x35\x39\x41\ \x41\x31\x31\x45\x32\x42\x31\x42\x43\x39\x41\x44\x34\x42\x44\x34\ \x35\x36\x30\x44\x31\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x44\x36\x37\x45\x32\x35\x33\x39\x35\x39\x41\x41\x31\x31\x45\ \x32\x42\x31\x42\x43\x39\x41\x44\x34\x42\x44\x34\x35\x36\x30\x44\ \x31\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x44\x36\x37\x45\x32\x35\x33\x36\x35\x39\x41\x41\x31\x31\x45\ \x32\x42\x31\x42\x43\x39\x41\x44\x34\x42\x44\x34\x35\x36\x30\x44\ \x31\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x44\x36\x37\ \x45\x32\x35\x33\x37\x35\x39\x41\x41\x31\x31\x45\x32\x42\x31\x42\ \x43\x39\x41\x44\x34\x42\x44\x34\x35\x36\x30\x44\x31\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x86\ \x02\xd4\x62\x00\x00\x01\x65\x49\x44\x41\x54\x78\xda\xc4\x93\xbb\ \x4a\x03\x41\x14\x86\xcf\xcc\xec\x46\x31\x2a\xc4\x90\x4c\x11\x97\ \xb0\x20\x01\xc5\x4b\xa1\x16\x5a\x88\x82\xda\xf8\x02\xbe\x81\xb5\ \x4f\x12\x21\x95\x36\x82\x82\x68\x29\x88\x85\x69\x52\x09\x36\x16\ \xda\xab\xa4\x31\x0a\x62\x61\x4c\xb2\xbb\x73\xf1\xec\x04\x82\x60\ \x2e\x0b\x5b\x38\x70\x8a\x99\x33\xff\x37\xff\x39\x33\x43\xb4\xd6\ \x10\x67\x50\x88\x39\xac\xa3\x8b\x72\x67\x22\x95\x02\x29\x55\x0d\ \x83\x87\xce\x7a\x79\x23\x04\x4f\xa6\x14\x6c\xc6\x8a\xd6\x6f\xb1\ \xef\x8b\xea\xce\xfa\x12\x9f\xca\xf3\x48\xa7\x97\x4e\xaf\xf7\x4d\ \x09\x0a\xc5\x41\x20\xaa\x9b\xab\x0b\x8e\xeb\x64\x23\x89\x95\xd1\ \x69\xb0\x50\xec\x06\x42\x56\xd6\x96\x67\x9d\xfc\x64\x16\x84\x81\ \x01\xf4\x2e\x00\x80\xa1\x7d\x5f\x8a\x76\x0f\x94\xd6\x4f\x2b\x8b\ \x33\xe0\xe4\x32\xa0\x34\x81\x96\x17\xc0\xa0\x8b\x09\x01\x4d\x3f\ \x30\xbd\x30\x3d\x90\x42\x40\x03\x85\xc3\x08\x30\xcd\x1b\x40\x60\ \x54\xe3\x7e\x1f\x01\x04\x58\xf3\xbb\x7e\x9f\x4c\xe7\x36\xec\x44\ \x62\xd4\xb6\x19\x26\x19\x02\x35\x08\x19\xde\x88\xfe\x13\x4a\xb6\ \x6b\x6f\x78\x2d\x78\x7e\x79\x05\x34\x01\x43\x18\x85\xe2\xf1\x65\ \x79\xba\xe0\x72\x9e\x49\xc3\x58\x72\xc4\x24\xba\xf9\x08\xd7\x29\ \x25\xf0\xf9\x55\x87\xdb\xbb\x07\xb0\x0e\xcf\x6f\x3c\x5c\x7b\xdc\ \xdb\xdd\xde\x3a\x40\x88\x90\x9a\xa7\x52\xe3\x7d\xcb\x08\x6b\x67\ \x8c\x19\x10\x41\x40\x27\x81\x90\xb9\xd2\xc9\x55\x85\x52\x36\xd1\ \xb7\x0f\xe1\x43\x42\xca\xc7\x7b\xed\x8c\x74\x49\xcf\x63\xd8\x11\ \x5f\xf2\x1b\xf9\xf7\xcf\x14\x1b\xf0\x23\xc0\x00\x51\xf4\xa7\x10\ \x25\x8c\xe3\x85\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x06\x5b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x30\x38\x44\x36\x32\x43\x44\x42\x36\x39\x41\ \x44\x31\x31\x45\x33\x39\x33\x32\x33\x38\x43\x39\x32\x41\x43\x37\ \x38\x39\x45\x41\x34\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x30\x38\x44\x36\x32\x43\x44\x43\x36\x39\x41\x44\x31\x31\x45\ \x33\x39\x33\x32\x33\x38\x43\x39\x32\x41\x43\x37\x38\x39\x45\x41\ \x34\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x30\x38\x44\x36\x32\x43\x44\x39\x36\x39\x41\x44\x31\x31\x45\ \x33\x39\x33\x32\x33\x38\x43\x39\x32\x41\x43\x37\x38\x39\x45\x41\ \x34\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x38\x44\ \x36\x32\x43\x44\x41\x36\x39\x41\x44\x31\x31\x45\x33\x39\x33\x32\ \x33\x38\x43\x39\x32\x41\x43\x37\x38\x39\x45\x41\x34\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x38\ \x71\x68\x30\x00\x00\x02\xcf\x49\x44\x41\x54\x78\xda\xa4\x53\x5b\ \x48\x54\x51\x14\x5d\xe7\xbe\x66\xc6\xe9\xf5\xa1\x42\x35\x0e\x92\ \x43\x68\x3e\x32\x90\xd0\xe9\x23\x92\x20\x28\xca\x0f\x91\xea\xa3\ \x20\x82\x8c\xa8\xcc\xb2\x08\x84\x2c\x1a\x11\x7a\x18\x96\xa5\x10\ \x84\x14\x12\xf6\x57\x49\x2a\x62\x4f\x2c\xa3\xe9\x05\xf6\xc0\x22\ \x2a\x95\x22\x53\x9c\x19\x67\x9c\x3b\xde\x7b\x4f\xfb\xdc\x09\xfb\ \x0b\xa2\x7d\xef\xe5\x1e\xce\xd9\x7b\xed\xbd\xf6\x5e\x87\x79\xea\ \x7b\xfa\x13\x86\xe5\x9f\xd4\x0d\x3c\xab\xc8\x42\x38\x61\xc1\x02\ \xa0\xc8\x0a\xdc\x6e\x77\xde\xbe\xbd\x95\x6f\x9a\x9a\x2e\x72\xc5\ \xd4\x51\xd4\xf1\x01\x0b\x1c\x0a\x34\x45\x7a\x2c\x4b\xd2\x2a\x08\ \x3f\xc3\xb4\xfc\x87\x36\xac\xc6\x58\xcc\x40\x41\xe1\x5c\x98\x16\ \x07\x18\x83\x49\x87\xf5\xa7\x9a\x07\x85\xd3\x8a\xdc\x4c\xf1\xc3\ \xfe\xd0\x22\xa4\xa5\x28\x68\xbc\xf3\xc0\x0f\x26\x91\x1f\x01\x58\ \x9c\xc3\xb0\x0c\x4c\x4c\xeb\x30\x74\x0d\x6f\x47\x42\x10\x87\xb9\ \x4b\x52\xa1\xca\x12\x24\x66\xc7\xc2\x4c\xcc\xd8\x3e\xf3\x9d\x40\ \x9c\x62\xe2\xb4\x67\x51\x22\x45\x1c\x4a\x94\x35\xa6\x9b\xa0\x6a\ \xe0\xd4\x54\xbb\x02\x7d\x06\x78\x19\x7c\x42\x5e\x16\xe2\x06\x6d\ \x99\x26\xa2\xba\x45\x15\x02\x94\x02\x3f\x15\x19\x91\xd0\x78\x12\ \x40\x64\x8a\x19\x1c\x8c\x90\xdd\x0e\x89\x7a\xc0\x10\x89\xea\xc8\ \xcf\x2f\x00\xa7\x88\x29\x5a\xcf\x23\xdc\x29\x93\xa8\xa9\x0a\x46\ \x34\x0d\x13\x00\x8f\x52\x26\x85\x18\xc3\x21\x03\x09\x72\xbc\x3b\ \xac\x63\x8d\xc7\x61\x67\x91\x24\x8e\xda\x9a\x6a\x08\xa2\xdc\x32\ \xd1\x3b\x9c\x40\x94\x2b\x70\x76\x06\x80\xc2\x5d\x18\x1f\x1d\x83\ \x23\x32\xc9\xed\x0a\x34\x02\x88\x1b\x16\x8e\x07\xa7\x70\x74\x20\ \x02\x93\x27\x79\x33\xa2\x22\xe8\x30\x59\x85\xac\xba\x50\xfe\xee\ \x02\x76\xee\xa9\xc2\xe5\xab\x6d\xf0\x4d\x66\xc1\x37\x41\x14\x84\ \xaf\x4b\x66\x08\xc5\x39\x6e\x96\x3a\x90\xe1\x4d\xc3\x1f\x63\xb3\ \xab\xd7\x87\x3d\xf0\x55\x36\xa1\xf1\x4a\x07\x8a\x4b\x8a\xd1\xd5\ \xdb\x8d\xad\x2d\x0d\x45\x0a\x08\xc1\xa9\x12\x00\x35\x31\xc3\x9b\ \x8e\xa1\x6f\x61\x3b\x50\x68\x81\x53\x8b\xd4\xc8\x7b\xfc\xb8\x54\ \x06\x7f\x85\x17\x78\x55\x8d\x52\xcf\x0e\x74\x76\xf7\xe2\xe9\xa3\ \x87\x9b\x0f\x1c\xa9\x79\x6e\x57\xe0\x56\x25\x44\x67\x4c\x3b\x53\ \xdb\xf9\x06\x7b\x8c\xd9\x39\xcb\x68\x4c\x0e\x94\x3b\xcf\xc1\x77\ \x2c\x00\x1e\xd2\xc1\x06\xab\x30\xfa\xa2\x1d\x67\x32\xaf\xc3\xe8\ \x0f\xdc\x5e\x5b\xb2\x92\x28\x10\xc2\x1c\x6a\x42\x24\xc1\xed\x9c\ \x07\xeb\xea\xc1\x09\x40\xec\x4b\x1a\x70\xa3\xae\x1d\x0b\xe3\x43\ \x58\xbf\xdc\x8d\x6b\x03\xe9\x48\x3d\xfd\x11\xae\xd6\x7b\x70\x35\ \xdc\x9f\x6e\x95\xa4\xe4\x18\xe7\x11\x85\x58\xdc\xb4\x4b\x6f\x0e\ \xd4\x62\x69\x4e\x0e\x36\x6d\xd9\x86\xb3\x81\x93\x08\x7f\x0e\x63\ \xe4\x53\x1f\xb2\xbf\x70\x6c\xcf\x0f\x22\x28\xd4\x47\xb2\xd6\x48\ \xea\xcc\xa2\x06\xa7\x9d\xe8\xe2\xb7\x76\xaf\x43\x8c\x28\x94\x2e\ \x56\xf0\x37\xeb\xfb\x0e\xa4\xd0\xc4\xca\x5a\xba\xa9\x6f\x0a\x13\ \x2a\x55\x54\x18\x5f\x37\xb6\xf6\x78\x85\x0a\x49\x4b\x54\x3a\x43\ \x72\x8a\xc9\x3b\x21\x9e\xdf\x2f\x14\x46\x6d\xa5\x28\x8d\x62\x48\ \x42\xb3\x73\xca\x13\x5a\xc2\xbf\x99\x4e\x9f\x7d\xd1\x48\xbd\x1c\ \xff\x63\xbf\x04\x18\x00\x2f\xcd\x22\xab\x71\x59\x26\x39\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x16\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xb8\x49\x44\x41\x54\x78\xda\x94\ \x53\x5f\x48\x53\x51\x1c\xfe\x36\x37\x64\xba\xcd\xd4\x90\x42\x03\ \x25\x1f\xa6\x10\x5a\x42\x90\x98\x50\x69\x0f\x8a\xd9\x83\x14\x4a\ \x14\x58\xf6\x52\x19\xfe\x79\x11\x7b\x0b\x33\x44\x28\xa5\xb7\x56\ \xf4\xa0\x44\x10\x64\x28\x16\x45\xf5\x60\x16\x38\xd4\x14\x91\xa5\ \x2d\xd3\x5d\xdd\x18\xdb\xee\xb6\x3b\xb7\xbb\xdd\xeb\x4e\xe7\xdc\ \x36\xdb\xa4\x97\x3e\x38\xe7\x77\xcf\xf9\x7d\xf7\xe3\x3b\xbf\xf3\ \x3b\x2a\xfc\x03\x75\x8d\x4d\x63\x62\x30\xd0\x28\x8a\x22\xa2\xd1\ \x08\xc4\x88\x6c\x5e\x5a\x9c\x6d\xdb\xcb\x23\x84\x40\xcd\x3e\x6e\ \x75\x74\x93\xe4\x44\x38\x96\xde\x78\xe1\xca\x75\xd4\x36\x34\xa1\ \xc8\x54\x8e\x6d\x39\xed\x5a\x72\x3e\x99\xaf\x61\x93\xe0\x0f\xec\ \x26\x07\xcf\xa0\x57\x12\x46\x5d\x7e\xf3\x68\x9e\x86\xd2\x4a\x55\ \xc0\xf1\x83\x70\xa9\xf3\xd1\xdb\xf5\x1e\x7d\x7b\xf9\x2a\x36\x9d\ \x6f\xba\x48\x62\x31\x35\xaa\xbc\xcf\xad\xb9\xfb\x61\x2a\x2e\xd0\ \xc2\xa0\x23\xbb\x04\x41\x54\x61\xd5\x2e\xc1\xe3\x86\xf5\x73\x4e\ \xb3\x49\xad\x8e\x61\xec\xe5\x0b\x15\x3b\x82\xe2\x60\x6d\x6d\xbd\ \xa7\xce\xb0\xd0\x5f\x75\xe2\x80\xa9\x20\x7f\x1f\xe4\x1d\x76\x3e\ \x3a\xe2\x02\x59\x74\x2a\x2c\x06\x38\x8e\x37\xf1\x5f\x5f\x61\x52\ \x28\xef\x49\x71\x40\x91\x3d\x50\x0d\x6f\x7b\xd7\x25\xc4\xf4\xd9\ \x90\x83\x0e\x10\x29\xf4\xd7\xa6\x36\x03\x1a\x5d\x2e\xe4\xb0\x04\ \xf3\xf0\x53\x74\x7e\x40\x0e\xdd\xe6\x15\x07\x97\x5b\xdb\xae\x46\ \x91\x6e\x8e\xad\x3e\x02\x37\x31\x02\x31\x73\x1f\x8c\xa5\xa7\xa1\ \xcb\x2b\x86\x86\xf9\x8b\x01\x01\x87\x1d\x5e\xeb\x6b\x6c\x73\x4e\ \x48\x12\xd0\xdc\x7a\xd3\xab\x45\x84\x15\xf6\x89\x46\xaf\xd7\x9b\ \x79\x21\x32\x4e\xc5\x1a\x8c\x67\x6f\xe3\x70\xd9\x51\xcc\x3f\x1b\ \x84\xbc\x6c\x41\x98\xb3\x23\xbb\xe8\x10\x24\x6d\x16\x8e\x75\x3c\ \xc4\x8f\x4f\x5f\x80\xc7\xc3\x50\x91\xd8\xb8\xde\xa0\x37\x33\x01\ \xe6\xb0\x82\x8e\xc2\xfe\x93\x20\x3f\x87\xea\x89\x34\x37\x48\xe6\ \xfa\x6a\x08\xd9\x18\x21\x6f\xcf\x41\x89\x96\xbb\x35\x64\x67\x7e\ \x80\xcc\xdc\xab\x27\xf7\xab\x95\xd2\x14\xb2\xff\x12\x45\x9c\x65\ \x2a\xea\x34\x5a\x6d\x87\x0d\xc2\x56\x2e\xfc\x9b\x36\x44\xed\xdf\ \x10\x96\xa1\x44\xde\x6e\x43\x80\x5b\x04\xcf\xd9\x14\x1e\xc5\xaf\ \xf8\xf8\xd3\x48\x4a\x43\xa8\x21\x38\x9d\x4e\x04\x1d\xcb\x08\xf2\ \x1e\x2a\x66\x45\x84\xde\x46\x90\x46\xc1\xe7\x41\xd0\x69\x85\xdb\ \xe5\x54\x78\xc9\x4d\xa5\x08\x9c\xaa\xad\x6f\xb1\xe0\x08\x59\xda\ \xf0\x51\xe2\x2a\xa2\x92\x8c\x90\xd7\x05\x89\x16\x30\xc4\xbb\x10\ \x89\xc8\xf0\x70\xdf\xb1\xe5\xf5\x61\x86\xf2\x18\x3f\x45\xc0\x90\ \xa9\x1b\xf5\x19\xcb\x8c\x0f\x2c\xa8\x9e\x9c\xf2\x8b\x6b\x7c\x08\ \xee\x8d\x05\xec\xd0\x4b\x76\xaf\x2f\x60\x33\x18\xc2\x9b\x29\x41\ \x1c\xa2\x79\x9f\xa1\xcc\xc8\xf8\x29\x02\x46\xa3\x01\xdc\xfa\x4a\ \x0b\x27\x60\xba\xfb\x1d\x2a\xad\x3e\xdc\x99\x98\x8e\xac\x38\xa9\ \x83\x71\x1a\x57\xe8\xba\xe7\x23\x2a\x59\x9e\xf1\x18\x3f\x05\x37\ \xda\x3b\x59\x65\x33\x92\xb6\x58\xa3\x94\xc4\x6f\xa8\x24\xbe\x4e\ \x20\x23\xce\x57\x5e\x63\x02\x15\xf8\x3f\x54\x24\x04\x7e\x0b\x30\ \x00\xd8\x2b\x54\xb9\xaa\x71\xab\x60\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x02\x2e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xd0\x49\x44\x41\x54\x78\xda\xa4\ \x93\x41\x48\x54\x51\x14\x86\xbf\xe7\xa8\xe8\x66\x36\xa5\xce\xc6\ \x34\xc4\x42\xa1\xd5\x24\x81\x33\xab\x68\x9e\x95\xa3\x04\x16\x88\ \xe0\x42\x88\x36\xb5\x30\x5c\x39\x1b\x29\x70\x1c\xb1\x29\xc4\x85\ \x3b\x45\x04\x83\x04\x29\x71\x23\xba\x89\x26\x68\x91\x05\xe1\x22\ \x45\xb3\x42\x48\x91\x5a\xa6\x50\x33\xa7\x73\x1f\xbc\x37\x33\x32\ \xe1\x80\x0f\x2e\x8f\x77\xce\xfb\xbf\x73\xef\x7f\xce\xb5\x44\x84\ \x53\x3d\x06\x70\x12\x24\x9a\xe4\xd5\x8d\x27\x48\x41\x5d\x31\x00\ \x7b\x14\xd9\xdc\x9d\x95\x6b\x23\x59\x88\xab\xb3\x5c\xb1\x65\x59\ \xce\xfb\xe6\x18\x9f\x34\x74\xc9\x65\xa6\x33\x10\x6a\x86\xfa\x6a\ \x68\xac\x8a\x33\x34\x1f\x63\x75\x30\xab\x2b\xcd\xad\x74\xeb\x19\ \x12\x6e\x81\xda\x1a\x38\xe7\xeb\xf1\xe2\x9b\xbf\xe7\xf8\x93\x86\ \x8d\xc3\x18\x03\xb7\xfb\x28\x2f\x9b\x36\x6a\xa7\xa2\x47\xea\x48\ \x5a\x2f\x42\x57\xb8\x73\x78\x04\xdf\xbe\x6b\xa2\x04\x7e\xec\x43\ \x46\xd3\x21\x85\xd6\xd7\x29\xd8\x1f\x26\x31\x95\x62\x65\x90\xcb\ \xaa\x5b\xcb\x3b\x4b\xd7\x04\xd2\xbf\x80\x44\x1e\xf3\x51\xc3\xc1\ \xdc\xd5\x96\x40\x96\xf6\x02\x12\x89\x3b\x1e\x04\x0b\x9a\xd8\xf9\ \x14\x69\x7d\xc0\xb0\xe6\x2e\x5e\x1f\x43\xda\x93\x3c\x77\x8f\x10\ \x19\x62\x59\xbd\x71\xc4\xda\x91\x7b\xe6\xdf\x42\x5d\x30\xe4\xb3\ \x57\xd5\xe9\x9f\xbf\x66\x25\x92\xc8\x6b\xdb\x79\x93\x57\xc8\x9b\ \x87\x33\x48\xd7\x78\x16\x90\x6b\xe2\x9a\x69\xd3\xe4\xdd\x38\x8b\ \x9f\x7b\x09\x35\x69\x44\xbf\x2b\xca\xe1\x8c\xdf\x14\x52\x4a\x00\ \x2a\x55\xb1\xbe\xc3\xaa\x2b\xf2\x4c\x6c\x4f\x5a\x72\x3f\xda\xc7\ \xfe\xdf\x69\x32\xda\xba\x32\x1f\x5c\xa8\xec\xc9\x9b\x87\xb7\xbb\ \x73\xa4\x3e\xc0\xcb\x7e\x1a\x54\xf7\x25\x0f\xa0\x73\x10\xb4\x13\ \xbc\xef\xb6\xc3\x94\xfa\x53\x6c\x7f\x85\xed\x1d\xf0\x69\x37\xf6\ \x0e\x4c\x5e\x77\x91\x66\x6b\x39\x46\xb7\xd9\xad\x37\x7c\xc7\x26\ \xd1\x71\x7c\xfc\x5d\x40\xec\x11\xcf\xf1\xdc\xd5\x5c\xcc\x28\x07\ \xa3\x3a\xf7\xf6\x23\x5e\x17\x75\x87\xfe\x73\x17\x4c\xb5\x86\x62\ \x00\xd6\x69\xaf\xf3\x3f\x01\x06\x00\x6d\x60\x0a\xa6\x67\x9d\x77\ \x73\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\x9c\x00\xad\x00\xc0\xa7\x71\ \x7d\xed\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x04\x0d\x10\x0c\x31\x71\xff\x82\x72\x00\x00\x02\xbe\x49\x44\ \x41\x54\x38\xcb\x95\x93\x4d\x48\x54\x61\x14\x86\x9f\xef\xde\x71\ \xe6\x3a\xe9\x34\x51\x14\x69\x9b\x8c\x7e\x50\x6a\x63\xad\x82\xa4\ \x5f\x51\xa2\x14\x17\x46\x26\x85\x50\x51\x42\x05\xd3\x3f\x6d\xec\ \xc7\x9a\xc0\x68\x53\x14\xa1\x61\x53\x56\x8b\x08\xa2\x16\x45\x05\ \x15\x15\x54\x13\x6a\x9a\x65\x35\xfd\x1b\x23\x89\x35\xe6\x8c\x73\ \xe7\xce\x3d\x2d\xae\x88\x05\x2d\x3a\x70\x56\xef\xf7\x3d\xef\xe1\ \xe5\x1c\xc5\xa8\x1a\x68\xa8\x1e\xa3\xd2\xe9\xa0\xd8\x76\x0d\x22\ \x99\xc8\xb0\xa0\x00\xa5\x12\x4a\xd3\x9a\x44\xd7\x77\x65\x07\x42\ \x83\x8c\x92\x00\x88\x1d\x59\x7d\x02\x4d\xdb\xec\x99\x37\x9f\x8c\ \x19\xf9\xa8\xc9\xb9\x8c\x06\xc8\xb7\xaf\xa4\xba\x3b\x49\x3e\x7d\ \x04\xb6\x7d\xd2\xb7\xbb\xa5\x76\x04\xd0\x7f\xb0\xf2\x92\x3b\x6f\ \x7a\xa5\x77\x45\x05\xe8\x0a\x12\x5f\x20\x15\x05\x4d\x73\x00\x69\ \x1b\xdc\x93\xc0\x98\x02\xb6\x10\xbf\x76\x05\x33\xf2\xe6\xf2\xb8\ \x7d\x97\x57\xa9\xef\xfb\x2b\x0f\x65\xe4\xe4\xec\xf5\xad\xad\x81\ \x81\x1e\x18\xec\x06\xcb\x22\x7a\xad\x9d\xbe\xc7\x11\x50\x30\x71\ \xf1\x2c\x26\x94\xce\x06\xcb\x86\xac\x99\x90\x9d\x43\xac\xb9\x89\ \x54\x4f\x4f\xbd\x66\x99\x66\xc0\x57\x5e\x01\xf1\x5e\x48\x7c\x00\ \x97\x97\x78\xcf\x10\xdf\x1f\xbc\x21\xff\xec\x26\xa6\xed\x5c\xc9\ \xe7\x1b\x1d\x60\x8c\x05\x97\x17\xe2\x1f\x20\xde\x8b\xaf\xbc\x02\ \x2b\x65\x06\x34\xe5\x72\x7b\xf0\xfb\x20\xf5\x03\x74\x2f\x68\x06\ \xde\x59\x53\x29\x68\xdc\x0a\xe2\x41\xcf\xc8\xc4\xef\x37\x40\x33\ \x40\xcf\x74\x20\xa9\x1f\xe0\xf7\x81\x69\x7b\x5c\xb6\x65\x3b\x49\ \xe8\x6e\x9c\xd4\x14\x28\x85\x24\xd2\xbc\xaf\x6b\x26\xf1\xa9\x97\ \x82\xf3\xfb\x60\xc8\x04\x97\x06\x22\xa0\x7b\x40\x03\x2b\x6d\xe3\ \x32\x07\x13\x26\xb1\x01\x37\xc6\x04\x48\xf6\x3b\x0c\x4d\x43\xf9\ \x5c\xe4\x35\x04\x9c\x10\x13\x49\x50\x0a\x34\x01\x05\xc5\xa7\x4b\ \x01\x38\x63\x2f\x37\xb5\x48\x6c\x28\x14\x3d\xd7\x02\x86\x1f\x32\ \xc7\x3b\x23\xea\x06\xf1\xd7\x5f\xe8\x28\xdf\x46\x47\xd9\x36\xc7\ \x51\x37\x20\xc3\xcb\xa2\x93\xa5\xb4\x6c\x39\xc6\xc5\xad\x0d\xac\ \x9f\x74\xdd\x0d\x90\xfb\x74\xfd\x92\x9b\xd1\xd3\xdb\x45\x92\xad\ \x22\xa9\x36\x91\x64\x58\xc4\x0a\x4b\x71\x10\x29\x0e\x22\x62\x3d\ \x17\xb1\x5a\x65\x61\x3d\x12\xf9\xb5\x53\x1a\x6f\x20\xef\x07\x03\ \xb2\x2c\x38\xb2\x29\xe4\xdd\xad\x5a\x10\x7a\x57\x57\x23\x22\x1f\ \x45\xe4\xad\x14\x07\x91\xce\x81\x2a\x79\x11\xab\x92\xa2\x03\x48\ \xd1\x01\xa4\xed\x67\xb5\x34\xdd\x43\x42\x0f\x91\xc5\x87\x11\xa0\ \xd0\x35\x0c\x88\x3c\xf9\xdc\xd7\x58\x50\xb6\x62\x0d\x8c\x27\x16\ \xbe\xe9\x6c\xa7\xf5\x8d\xae\xd7\x77\xa9\xdb\xb0\x08\x14\x84\x5f\ \x85\x70\x67\x43\xf3\x2d\xb8\xb3\x87\xb9\x40\x78\xe4\x0e\x5e\xee\ \x58\x75\xca\xb6\xdf\x49\xf4\xea\x71\xe9\xa8\x2e\x92\x19\xe3\xb2\ \x6a\x97\xd4\x23\xa1\x2e\xa4\xb1\xdd\xe9\x50\x17\xb2\x74\xd8\xf9\ \x8f\x5b\xe8\xdc\x58\xea\x26\x9d\x4e\x8a\x65\xd1\x37\x94\xba\x5d\ \x74\xe9\xfe\x6e\xa0\x1d\x98\xb3\xb4\x9e\x67\xeb\xd6\x38\x8f\x9b\ \x2f\xc0\xad\xbf\x9d\x47\x81\x0a\x87\x3b\xef\x2f\xad\xb0\xe4\x28\ \x52\x72\xf4\x4f\xe7\xff\xad\xc2\x7f\x7d\xfe\x0d\x8e\x68\x39\xd2\ \x5e\x30\x15\x29\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x01\x96\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x03\x16\x10\x16\x2e\x79\xe2\x79\xd2\x00\x00\x01\x23\x49\x44\ \x41\x54\x38\xcb\x85\x92\xbd\x4a\x03\x41\x14\x85\xbf\x99\xdd\x7d\ \x00\x0b\x2b\x0b\x41\xd0\xc2\xd2\x54\xb6\xeb\xc2\x82\x95\xcf\xe1\ \x3b\x28\x41\x85\x84\x20\x3e\x40\x20\x85\xe4\x05\x6c\x53\xd8\x0a\ \xa2\xb1\x09\x58\x18\x90\x10\xb0\xb2\x08\x6c\x0a\x35\x9b\x70\x2d\ \x76\x63\xc6\x75\xef\x7a\xaa\x03\xdf\x99\xfb\x33\x33\xe0\x28\x6e\ \x21\x71\x0b\x41\x51\x25\x0f\x1b\xc8\x60\xd4\x96\xc1\xa8\x2d\x61\ \xe3\x6f\xa8\x92\x47\x4d\xe4\x61\x78\x25\x9d\x1e\xd2\xe9\x65\x3e\ \x6a\xae\x42\x55\xdc\x1c\x5e\x22\xf5\xa3\x33\x9e\xdf\x4e\x49\x17\ \xd9\x81\xc0\x83\xdd\x8d\x73\xea\x37\x27\x00\x54\x71\x13\x5f\xd0\ \x97\x80\xbd\xfd\x6d\xd8\x5c\xcf\x02\xe3\x77\xb8\x1b\x82\x49\x79\ \x02\xf8\x8f\xef\x00\xb5\xb0\x81\x3c\x8e\x8f\xe5\xfa\x1e\x89\xb2\ \x1d\x6b\x39\xab\xe4\x3e\xf0\x02\x60\x0d\xcc\x65\x82\xb1\x60\x2d\ \x00\x7d\xf7\x9e\x34\x6e\x97\x01\x03\x7c\x49\x82\xf8\x99\x2f\x4a\ \xe3\xd6\x0d\xcd\x65\x0a\x1e\xaa\xca\xf8\xaf\x09\x66\x24\x18\x0f\ \xca\xbe\x8a\xc6\x57\x13\x08\xa4\x66\x0a\xbe\xd2\x5e\xe1\x85\x09\ \xf4\x15\x34\x6e\xdd\xc4\xcc\x26\xfa\x04\x0a\xf7\xdd\x67\x32\xc1\ \x27\x41\xee\x8b\xd2\xf8\x4f\x81\xc5\x07\xb7\xdd\x2e\x07\x4b\x5f\ \x2c\xa0\x71\xb7\xd7\x16\xb0\x96\xfb\x09\xf0\x5a\xa8\x51\xca\xbf\ \x01\xdd\x9d\xab\x7d\x4d\xc3\x4a\x25\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x01\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x29\x49\x44\x41\x54\x78\xda\x62\ \xfc\xff\xff\x3f\x03\x32\x60\x64\x64\x84\xb3\xdd\xbb\x18\xc0\x92\ \x3b\xcb\x18\xe0\x82\xe8\xea\xc1\x02\xc8\x18\x06\x9c\xda\x19\xfe\ \x5f\x7e\x30\x0b\x8c\x41\x6c\x9c\xea\xb1\x19\xe0\xd2\xc1\xf0\xff\ \xf4\xed\xbe\xff\x73\x77\x32\x80\x31\x88\x0d\x12\xc3\x66\x00\x0b\ \x03\x1a\xf0\xea\x61\xf8\xdf\x10\xd0\xc4\x70\xf5\x69\x11\xc3\x3f\ \x56\x88\xd8\xd5\x67\x45\x0c\x6d\x21\xcd\x0c\x6c\x2c\xb5\x20\x43\ \x18\x51\xbc\x8c\xee\x27\x8f\x56\xc6\xb3\xff\x59\x19\x8c\x2c\x55\ \x19\x18\xe4\x45\x21\x62\x8f\x5e\x33\x30\x1c\xbb\x0d\x54\xfc\x9b\ \xe1\xdc\x8e\xea\xff\xc6\x84\xc2\x40\x0d\x88\x8d\x41\xfe\x3e\xf3\ \x28\xeb\xff\xc2\x93\x0c\xff\x5d\x20\x61\x00\xd2\xa8\x46\xd0\x0b\ \x40\x70\x0b\x44\x30\x01\x1d\xfa\xe7\xff\x7b\x06\x46\x26\x20\x9b\ \x09\x2c\x7e\x16\x8b\x5a\x06\x26\x06\x1c\x00\xe4\xd1\x9f\xff\x3f\ \x31\xfc\x67\x41\xf3\x34\xb1\x06\x80\xc0\x9f\xff\x9f\x19\x18\x98\ \x19\xf0\x02\xbc\x2e\xf8\xc5\xf0\x89\x81\x11\x64\xc0\x7f\x72\x5c\ \x00\xd4\xf4\x9b\x11\xe8\x02\x16\x8a\x5c\x40\x81\x17\x40\x26\xfc\ \x62\xfa\x44\xd0\x05\x38\xa5\x41\xd1\xc8\xc8\xfa\x83\x81\x15\xca\ \x26\xd9\x80\xbf\xdf\x19\xf6\x2e\x5e\xcc\xe0\x0c\x63\xe3\x74\x28\ \x9e\xec\xac\x04\xc4\x82\x50\xf6\x7b\x20\xbe\x87\x2d\x3b\x03\x04\ \x18\x00\x3a\xce\xb1\xfd\x03\xb4\xf9\x73\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xa0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x42\x49\x44\x41\x54\x78\xda\xa4\ \x93\xc1\x4a\xc3\x40\x10\x86\x67\x26\xc9\xbd\x07\x4d\x1e\xc0\xe2\ \x13\xd4\x4b\x50\x7c\x85\xa2\x1e\xb4\xf8\x78\x12\x2f\x6d\x52\xa4\ \x27\xe9\xa5\x0f\x22\xb6\xbd\x85\x16\x14\x4c\xa8\x82\xcd\xb8\x93\ \x26\x9b\x2c\xb1\xd5\xd2\x81\x61\x67\x26\x3b\x1f\xff\xce\x6e\x90\ \x99\xe1\x69\x34\x7a\xfb\x5e\xaf\x5b\x9c\x65\xc0\x50\x37\xc9\x10\ \x08\x11\x10\x71\x71\xd5\xed\xba\xfa\x0b\x73\x15\x0c\xa2\x88\xff\ \xb2\x38\x8e\xb9\x1f\x86\x41\x1d\x20\x4e\x75\xda\xeb\x74\xa6\x7c\ \x0e\xd3\xd9\x3c\x5f\x25\x17\x7b\x08\x02\x70\x5d\x17\xce\x7d\xff\ \xae\x1f\x45\x8f\x75\x8d\x76\x29\x34\x4f\x6c\x4b\xa4\x2a\x17\x68\ \x05\x46\x22\x58\x2c\x97\xe0\x79\x1e\x5c\xf8\xfe\x6d\x38\x1c\x3a\ \xaa\x7c\xa3\x01\x25\x82\xc8\x56\x8e\x9a\x9e\x65\x9b\xfa\x69\xbb\ \x0d\xcf\xe3\x31\xc8\x8c\xee\x7b\x3d\x01\x5f\x1b\x0a\x4a\x09\xb6\ \x4d\xb9\x82\xd2\x88\x18\x3e\xd2\x04\xce\x3a\x9d\xdc\x35\x98\xd9\ \x3c\x42\xd5\x60\x19\x00\xb1\xcf\xd5\x17\xac\x94\x43\xd1\xe4\x1e\ \x1f\xe9\xb8\x01\x90\x19\x6c\x33\x66\xfe\xb5\xde\x50\xb0\xaf\x19\ \x00\xcb\xa2\x03\x01\x74\x20\x40\xae\x11\x80\x77\x6c\xc7\x2d\x80\ \x62\xf2\x8e\x63\x19\x13\x6e\xf6\xa3\xb9\x96\x00\x2a\xa4\xd3\x3f\ \x8f\x50\xdf\x97\x03\xd2\x24\x99\xa8\xe7\x79\x99\x6d\xde\xef\x4e\ \x05\xf2\x67\xa6\x69\x3a\xd1\x25\xb9\x5f\xf5\x78\x4e\x54\xdc\xda\ \x63\x76\xef\xaa\xef\x45\x82\x1f\x01\x06\x00\x05\x7c\xa6\x18\x72\ \xa9\x6d\x4f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xb9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x5b\x49\x44\x41\x54\x78\xda\x8c\ \x53\xcf\x4f\x13\x51\x10\xfe\xde\xee\xdb\x2d\x96\x4a\x95\x80\x95\ \x03\x8d\x16\xaf\xe2\x41\x29\xc4\x0b\x85\x83\x07\x0d\x56\x2f\x26\ \xfe\x0d\x1a\xff\x01\x13\x9a\x92\xd8\xc4\x93\x89\xd1\xab\x7f\x81\ \x09\xc5\x26\x06\x3d\x48\xeb\x45\x51\x0e\xd6\x78\x15\x12\x3d\x60\ \xc5\x44\xa5\x8b\x74\x7f\x3e\x67\x1e\x05\x59\xc2\xc1\x49\x26\x6f\ \x32\xf3\x7d\xdf\xce\x9b\x37\x2b\xee\x57\xe6\xb0\x9c\x28\xc0\x52\ \x3e\x04\x42\x84\x61\x54\xf5\xfc\xb0\x18\x44\x11\xa0\xb0\x63\x02\ \x90\x86\x01\xdb\x32\x17\x4c\xd3\xb8\xa6\x60\xc2\x17\x16\xc6\xdd\ \x3a\xa4\x82\x81\x8b\x9d\x57\x78\xd3\x33\x0d\xa1\x04\xbc\xc0\x2d\ \xce\xdf\xbd\x8c\x0e\xf1\x54\x57\x40\x90\x40\x0f\x9d\xd7\x2b\x8b\ \x45\xdb\x94\x50\x42\x6a\x4e\x40\xa7\x8c\x48\x80\x83\x09\x52\xdb\ \xfc\xfd\x13\x2b\xa9\x4b\xd8\x26\xf0\xca\x97\xb8\xc0\x85\x2c\xe0\ \x53\x53\xe7\x36\x6a\xe8\x4b\x1f\xd7\x1c\xe6\x4a\x06\x84\x8a\xbb\ \x35\xe8\x02\x52\x45\xd4\x1e\xf3\x86\xd3\x71\x01\x0e\xb9\xc6\x98\ \x40\x19\x22\xea\xe6\x65\x18\x86\xd5\x20\x08\x8a\x14\xe3\x68\xaa\ \x17\xc2\xb4\x60\x51\x9c\x4b\x23\x66\x2e\x13\xa8\xc6\x18\xd7\xf3\ \xb5\xb6\x94\x72\x41\xcc\xce\xce\xaa\x72\xb9\xac\x41\xb7\x6e\xdf\ \x81\x25\x4d\x90\x20\x82\x30\x8a\x09\x48\xd3\x60\x02\xfc\x20\xc4\ \xe3\x47\x0f\x75\xae\x54\x2a\x71\xcf\x11\xda\xce\x16\x56\x57\xd7\ \x30\x30\x30\x88\x44\xc2\xa6\xa1\x8b\xbd\x07\xc0\xbf\x87\xa0\x9c\ \x82\xeb\x7a\x68\x7e\xfc\x84\x5c\xee\x34\x98\xab\x67\x60\x5b\x16\ \x72\x23\xa7\xd0\xdf\xdf\x4f\x02\x09\xba\x9b\xc0\x61\xa6\x14\x0b\ \xb8\x1a\x6b\x4b\x6b\xa7\x33\x9e\x44\xbb\xed\xe0\xed\xbb\xf7\x68\ \x36\x3f\xfc\x97\x40\xa3\x71\x06\x13\xf9\x31\x3d\x45\xc9\x60\x67\ \xcb\x81\x6d\x5b\x38\x3b\x3a\x8a\x56\xab\x05\x41\x4b\x73\xa8\x00\ \xb5\x9c\xc9\x64\x34\x96\x39\x62\x57\x60\x7b\xdb\xa5\xe1\x59\xc8\ \x8f\xe5\xf1\x6d\x7d\x5d\xdf\x9f\xc1\xb1\x19\x90\x28\xf7\x75\x72\ \x68\x08\x9e\xe7\x69\x8e\x16\x30\xa8\xe0\xfb\x3e\x7a\x93\x47\x50\ \xab\x3d\xc3\x8f\x8d\xef\x28\x4c\x4e\xe9\x97\x50\xdd\x51\xf2\x50\ \xf9\x05\xea\x8d\x25\x0c\x0c\x9e\xc0\xcc\xcc\x55\xcd\x61\xae\xec\ \x74\x3a\x8d\xea\xfc\xd3\x49\x56\x4f\x26\x0c\xac\x66\x6f\xe0\xc1\ \xcd\x69\x7c\x75\xe2\x8b\x34\x9c\x02\x9e\xac\x0d\x22\x1b\xbd\xc6\ \x8b\xc5\xe7\x5a\x9a\xb9\x5c\x1f\x21\x3f\xbf\xeb\x57\xee\xbd\xa4\ \x4d\x53\x6a\x8b\xdc\xe9\x3a\xc7\x9c\xe3\xda\x7e\x2c\x73\x45\xa5\ \x52\xd1\x5f\xa1\xf5\xc1\xb2\x5d\x80\xb7\xd9\x5a\x32\xec\x64\x21\ \x3c\xf0\x37\x9a\xd4\x6e\xe4\xfd\xa9\xdb\x7d\x99\xa9\x71\xaf\xce\ \x2b\xbd\xb7\x1f\x07\x8d\x3b\x3a\x86\xc3\xed\x17\xf9\xe7\xfd\x89\ \xbf\x02\x0c\x00\x85\xbc\x11\x0a\x61\x8f\x79\xf2\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x4e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xf0\x49\x44\x41\x54\x78\xda\x7c\ \x53\x5d\x4b\x14\x51\x18\x7e\xe6\xcc\xcc\xee\x8e\x93\x5f\x99\xa6\ \x17\x15\x56\x16\xa1\x6e\x86\x46\x56\xe4\x4d\x10\xb5\x10\x12\x16\ \x76\x51\x44\x09\xa2\x84\x37\x45\x7f\xa1\x90\x4a\xec\xc2\xa4\x0c\ \x21\x6f\x8a\x20\x5a\x25\x36\x13\x89\x35\x53\x31\x95\xec\xd3\xfc\ \x5a\x03\xd1\xb2\x40\xcb\xf6\x7b\x67\xce\xe9\x9d\xb5\xa0\xad\xe8\ \xc0\x33\x67\xe6\x9c\x79\x9f\xf7\x79\x9f\xf3\x1e\xe9\x6b\xfd\x09\ \xc8\x32\x72\x85\xc9\xdb\x25\x61\x16\x42\x20\x71\x48\x80\x90\xe4\ \xd7\x92\xcc\xca\x4d\x13\x33\xb2\x24\xb0\x8a\x07\x50\xb9\xa6\x01\ \x9a\xf1\x1d\x0a\x38\xcf\xe5\x4c\xf1\x39\xca\xf6\xc3\xb6\xab\x0c\ \x08\x7f\x4e\x24\x70\x64\x21\x3a\xf8\xb4\x30\xfc\xcc\xeb\x93\x78\ \x74\xa3\xc2\xf8\x0c\x10\x83\x0c\x93\xb8\x05\x14\x23\x6a\x74\xa4\ \x1c\x70\x41\xdd\xb2\x01\x98\xed\xa0\x74\xe6\x6f\xd1\x24\x87\xe4\ \xd9\x9c\x25\x60\xc2\x40\xb8\xcb\xe3\x76\xa8\xb1\xed\xc7\x72\x9a\ \xa1\x9b\x81\x38\x01\x33\xa3\xb1\x02\xb5\xc8\x09\x04\xa7\x01\x7b\ \x06\xa0\x65\x01\x7a\x26\x90\xbc\x06\x48\x25\xe8\xc9\xa4\x6a\x0c\ \xca\xee\x22\x68\x91\x25\x67\x45\x56\x13\x92\xcc\x20\x64\x22\xa4\ \xea\xa0\xf0\x18\x65\x24\x36\xc8\x1a\xd5\xab\xd2\x2c\xb0\xb0\xa4\ \xa2\xb1\x2f\x1b\xa3\xf3\x3a\x24\xaa\xd9\xca\x24\x31\x09\x4a\x4e\ \x13\xec\x91\x65\x21\x18\x7f\x29\x18\x8e\xd0\xf2\x8c\x62\x1a\x1c\ \x50\x75\xca\x9e\x42\x04\x12\x16\x16\x19\xce\x7b\xd6\xe2\x60\xf1\ \x3a\x5c\xa8\x4c\xc7\xb7\x70\xdc\xc7\xf8\xc3\x9a\xd3\x28\x4f\xf7\ \xe8\xe2\xf6\x47\xc3\xb3\x3e\x83\x8b\x8d\x8a\xdf\x10\x53\x81\xde\ \xfe\xcd\xfa\xbe\x9d\xa4\x24\x88\xab\x5e\x15\xe5\xa5\x1b\x50\xb4\ \x29\x15\xcf\xe7\x68\x89\x27\x7a\x2a\x33\xa0\x68\xf3\x6a\xf2\x5e\ \xc0\xdd\x3f\xdd\xc1\x1a\x06\xc6\x6b\xbf\xb4\x77\x22\x38\xf8\x92\ \x76\xd3\x30\xfc\x41\x60\xcf\xb6\x54\x2c\x04\xa9\x7c\x1b\xd9\xe0\ \x48\x84\x4e\x55\xce\xf9\x81\x32\x67\x06\xa2\x86\x59\xc0\x6e\x0e\ \x4d\x3d\x6d\x7b\x3e\x71\x26\x30\xfe\x81\xf8\xd3\x09\x26\x22\x64\ \xbe\x4d\xa6\x13\x24\xd8\x7f\x83\xca\x56\x14\xa8\xf4\x1e\xb6\xac\ \x33\x0d\x28\xef\x6a\x5c\xd1\x70\x28\x5c\x9a\x79\xf2\x14\xfc\xb7\ \xaf\x93\xad\x87\xa1\x51\x26\x2d\x0a\x92\x99\x78\xa2\xbf\x3e\x65\ \x8b\xdc\x4e\x4b\x54\x06\xb3\x36\xec\x36\x5b\xf5\x58\x55\x35\x1a\ \x9b\xef\x9c\x36\x79\xf0\x55\xf7\xf0\x02\xd2\x93\x80\x24\x2a\x41\ \x23\xc9\x0e\xd5\xfa\x87\xde\x09\x3a\x05\x66\x90\xe7\x4f\x46\x3e\ \x91\x82\xd0\x94\x62\x39\x9f\xdf\xd2\x59\xf2\x93\xfc\xfd\x7a\x7b\ \x8b\xcf\xed\xa8\xed\xd1\x54\x81\xbd\x85\xd9\xd6\x36\x14\x16\x3f\ \xa0\xf8\x29\x50\x72\x78\x86\xe6\xe1\xee\x9d\xc0\x64\x77\xdb\x59\ \xc5\x8a\x1a\xab\x71\x8d\xa8\xd4\x81\xa9\xa6\x1f\x99\xb7\xee\x0e\ \x24\xa7\x65\x9d\x19\xcf\xab\x6e\x2d\xdf\x91\x8d\xfa\xf6\x37\xf0\ \xbe\x98\x05\xa3\x3e\xb0\x08\xac\x7e\x60\x3c\x36\x35\xd1\xd5\x7a\ \x6e\xba\xef\x41\x8f\x12\xef\x26\x0a\xd6\x79\x08\x15\x5b\x2f\xe3\ \xd0\xa5\x40\x2c\x16\xf4\x97\x56\xb9\xf2\x71\xed\xe1\x5b\x78\x1e\ \x7b\x6f\x0c\x34\xd7\xb5\xfc\x71\xc5\x42\x84\xe9\xca\x86\x9e\x88\ \xf4\xbe\xe6\x10\x34\x1e\xc1\xf1\xbc\x8b\x48\x31\xfc\x50\x45\x8c\ \xae\x03\x17\xa6\x10\xf8\xf4\xa6\xb7\x6e\xf4\x5e\xfd\xfd\xa3\x57\ \x9e\x7c\xc4\x5f\x97\x94\x94\x30\xb6\xd2\x64\xff\x18\xc5\x3f\xe7\ \x49\xc2\x32\xfe\x33\x7e\x08\x30\x00\x80\x65\x29\x38\x2d\xa2\xad\ \xa8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x52\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xf4\x49\x44\x41\x54\x78\xda\x64\ \x93\x4f\x6c\x14\x05\x14\xc6\x7f\x33\xbb\x33\xb3\xdb\x2d\xdb\xed\ \xc2\xae\x74\x5b\x4a\x31\x90\xa0\x69\x42\x11\x08\xa8\xc1\x98\x68\ \x6a\x1a\x8d\x7a\x92\x70\x95\x9b\xd6\x44\x63\x02\x07\x4f\x70\xc2\ \x23\x09\x0d\x9c\x4c\x08\x27\x08\x07\x08\x02\x12\xfc\x13\x23\x1a\ \x8d\x84\x70\xb1\xbb\x69\x9b\x48\x4b\xba\x5b\xba\xdd\x2e\xec\x3f\ \x76\x66\x76\xe7\xf9\xba\xb5\x71\x23\x2f\xf9\x0e\x33\xf3\xde\xf7\ \xde\xfb\xe6\x7b\x06\xff\x8b\xe3\x59\xa6\x5c\xe1\xe3\x16\x44\x0e\ \xb5\x0c\x0e\xf8\x42\x1b\x9a\x86\xc9\x37\x2f\xef\xe5\xd3\xee\x5c\ \x11\xe9\x7a\xca\x1e\x19\xe7\xaf\xa3\x72\x63\x65\x4a\xa4\xdd\x92\ \xee\x08\x82\x40\x8a\xf9\x33\x32\x7d\x25\x24\xd9\x6b\xe1\xf1\xe7\ \x09\x72\xef\x8f\x1b\xb9\xa3\x92\x75\x97\x65\x59\xda\xf2\xa7\x7c\ \x25\x97\x65\x42\x1e\xb4\x0e\x8a\xb8\x1f\x2a\xe1\x29\x45\x55\xdc\ \xea\x9c\xe4\xbe\x4d\x48\xee\xa6\x35\xbe\x41\x60\x76\x08\x82\xd6\ \xed\xdf\x47\x4e\xe2\xda\x3e\x13\x9c\xe1\x0e\x79\x1c\xa2\xf4\xb0\ \x1b\x8c\x1e\xa4\x7a\x1f\xe6\x8f\x60\x3b\x2e\x23\x87\x7f\x20\x08\ \xcc\xdb\x1b\x53\x98\x64\x2f\x4c\x7d\x96\x3c\x81\xe5\x44\x74\xc1\ \x8b\xa4\xb1\x99\xe1\x2d\x7a\x19\x51\x92\x6d\x9a\xb2\x1d\xa3\xb6\ \x13\x42\x49\x28\x1c\xc7\x89\xd8\x24\xfb\x3e\x21\x7b\x9a\xa9\x75\ \x02\xf1\x8f\xbd\xd3\xff\x12\xe7\x69\x11\xe3\x15\x06\x89\x93\xd2\ \xde\xcb\xec\x21\x1a\x4a\x83\x37\x04\x56\x4a\x31\x00\xcb\x61\x78\ \x70\x8e\xfe\x6d\x6f\x13\xc0\xb1\x75\x02\x4b\x1c\xc7\x36\xb5\xeb\ \x13\x2d\xcb\x28\x5e\x55\x82\x61\x2a\xbc\xd8\xe9\x4e\x90\x51\x92\ \x18\xf2\x58\x05\xf3\x2c\xfd\x1f\x33\xd8\x31\x07\x23\xa4\x03\x6a\ \x84\x7b\x7f\x1b\xa2\xb1\xc9\x26\x5c\x48\xb3\xc5\xb1\x48\x3a\x36\ \x7d\x4e\x86\xcd\x9a\x5b\x6e\x57\x48\x55\xef\xd1\xae\x45\x55\x07\ \x5d\xa1\xda\xd4\x97\x2e\xe6\x0b\x1e\xde\x62\xba\xa3\x41\x38\x7e\ \x77\x90\xda\xce\x1e\xb6\xe6\x36\x11\xe9\xd1\x49\x7b\xa1\x62\x3c\ \xa5\x6c\x7b\xec\xf1\xb7\x42\x3d\x8a\x29\x3e\xae\x69\x13\x94\x63\ \x50\x1b\xc2\xc8\x37\xf0\xe6\xb7\xac\x13\xb4\x43\x6d\x6f\xae\xfc\ \xcc\x8e\x27\x7a\x29\x2e\x15\x28\x2d\x3e\x22\x9e\x88\xb2\x4f\xd7\ \x70\xd5\x4d\x05\x79\x93\x81\xd5\x1f\x89\x94\xb5\x28\xde\x24\x18\ \x8c\xd3\x78\xfc\x37\x81\x11\x78\x1d\x82\xe0\xd9\xca\xd5\x5f\xef\ \xf3\xd1\x48\x7f\x8b\xd9\x5c\x81\xfe\xa4\xee\x6b\x0a\x7d\x4b\x7d\ \x3c\x8d\x74\x3a\x10\x75\xf7\x91\x28\x5d\xc2\xce\xd6\x61\x6c\x94\ \x85\xda\x1f\x14\xfd\xd6\xd5\x35\x02\x43\x31\xcc\xe8\x97\xf3\x87\ \xdf\x18\x23\x91\x1a\xd0\x8f\x0d\x26\x56\x0f\xb2\xa3\x99\x66\x38\ \x0a\x19\x5f\xb5\x73\x61\xbf\xff\x2e\x24\x93\x94\x8a\x15\x56\xbe\ \xfb\x9e\xdd\x5e\x63\xbb\x1a\x69\x61\xcd\x48\x0b\x54\x67\x26\x7f\ \xb9\x37\xc3\xec\xc2\x43\x32\x41\x9c\xcc\x5c\x9a\x27\x4b\xaa\xd9\ \x23\x70\xf3\x8a\x55\xf5\x11\x9f\xb3\xfa\x70\x9a\xe2\xdd\x9f\xb8\ \xe5\x37\x27\x3b\x75\x6b\x2b\x74\x94\x98\xbf\x7e\x11\x2b\x4c\x6e\ \xb6\x79\x76\xb4\x30\xc6\x62\xa8\x4e\x28\x66\x51\xb7\x84\x9a\x6f\ \xa8\xf8\x3e\xd3\x95\x03\xbc\xd6\xc8\x73\xa7\x5e\x9d\xfc\x42\xd4\ \x71\xff\x86\xd1\x75\x4e\x71\xc5\xae\xf7\xf8\xf9\x84\x45\xea\x03\ \x2c\xec\x1d\x4a\xbf\x4b\xc7\xf7\x03\xbc\x12\xe5\x6b\x27\x79\xfd\ \x6b\xcd\x99\x55\x54\x36\x6e\xc1\xe0\xf9\x18\x56\x6c\xee\x98\xec\ \xbf\x50\xe3\x51\xda\x18\xbb\xfb\x1a\xff\x11\x60\x00\x39\x39\x51\ \xf4\x8a\x0a\x45\x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x4a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xec\x49\x44\x41\x54\x78\xda\x9c\ \x53\x4d\x6b\x53\x41\x14\x3d\x33\x73\xe7\x89\x2f\x11\xf2\x61\x21\ \x69\x04\x17\xee\x5c\xe8\x4f\xa8\xa5\xb8\x14\x69\x57\x95\x34\x74\ \xe5\x5a\xc4\x9f\xe1\x52\x5c\x59\x17\x1a\x23\xa2\xa0\xa9\x0a\xb5\ \x8a\xfd\xf8\x15\x6e\xa5\x9f\xa1\x98\xe4\xb5\xbe\x17\x84\x76\xde\ \x78\xe7\x95\x97\x36\x26\x48\xe9\x81\x61\xe6\x0d\xef\x9c\x39\xe7\ \xce\x1d\xd1\x68\x34\xba\xc6\x98\x5c\x1c\xc7\x10\x42\xe0\x2c\xb0\ \xd6\x42\x4a\x09\xa5\x54\x40\x8e\x5c\xab\xd5\x70\x1e\xd4\xeb\xf5\ \x1c\xb9\x93\x1d\xb6\x77\x76\x51\xad\xce\x21\x97\xcf\x23\xe3\xfb\ \xf0\x33\x59\xf8\x3c\x13\x29\xf4\xa2\x08\xbd\x5e\x0f\x21\x8f\xa0\ \xd3\xc5\xcb\xfa\x0b\x54\xca\x25\x38\x2e\x39\x3b\x0e\x52\x0a\x34\ \xdf\xbf\x85\xa7\x15\x0c\x6b\x9a\xd8\x42\xb0\x4d\xad\x3d\xb6\x2a\ \xfb\xf1\x0e\x0f\x8f\x10\xb1\x60\x1a\x85\x52\x3b\x92\x7f\x50\xb0\ \x98\x59\xd8\x40\xa3\x3a\x0e\x4d\x82\xf7\x34\x66\xef\x55\x71\xa5\ \x52\x41\xf1\xf2\x18\x0e\xf6\x03\x6c\x6e\x6d\xe1\xf9\xc2\xb3\x7e\ \x0c\x99\x2e\x3c\x92\xc8\x5e\x10\x68\xfd\x51\xa8\xbd\xfb\x85\xcd\ \x83\x98\xdd\x88\xe4\x14\x24\x26\x6d\xb2\x76\x9f\x44\x7d\xda\x89\ \x03\xcd\x59\xaf\x3f\x69\xa3\x78\xc9\xc7\x3e\x47\x78\xb8\x1c\x61\ \x69\x3e\x8b\x4f\x8b\x1f\x06\x0a\xc7\xc9\x10\x86\xd1\xb0\x80\xcb\ \xfb\xe3\x51\x09\x37\x1f\xff\x64\x27\x12\x4f\xa7\xc7\x21\x35\xe1\ \xce\xdd\xe9\xe3\x08\x63\x1c\x21\x08\xb0\xc1\x11\xde\xbc\x7e\x35\ \x2c\x60\x05\x71\x55\x25\xca\xbe\x45\xf3\xfe\x55\x76\x44\xc9\x5e\ \x5a\x64\xa4\x51\x78\x28\x45\x23\x22\x68\x0d\xe9\x79\xf8\xf2\xe0\ \xc6\x80\xe5\xcf\x1f\x9b\x43\xf7\x7f\x64\xcc\xb0\x80\xc7\xe4\x89\ \x5b\x53\xc8\x17\x0a\x49\x1f\x5c\xcc\x64\x92\x59\xb1\x93\xe8\x77\ \xc8\x7d\x10\x21\x8c\xb8\x0f\xba\x1d\xac\x7c\xff\x36\xa2\x06\x7c\ \x8d\xeb\x6b\x2b\x67\xea\x40\x63\x2c\xc7\xf8\x47\xc0\x61\x72\xea\ \x36\x4a\xa5\x32\x0a\xc5\x02\x88\x73\xb6\x3b\x6d\xec\xb5\x5a\xf8\ \xba\xbc\xd4\xaf\x83\x4d\x9a\xee\x84\x43\x2a\x95\x62\xac\x9e\xb2\ \x36\x12\xec\xf2\xf4\x73\x73\x5c\xe2\xb6\x5c\xe7\x47\x31\xf1\xbf\ \xd7\x78\xdc\x40\x76\x60\xcf\x91\x1d\xd7\x31\xae\xf1\xc8\xe1\x7c\ \x08\xfe\x0a\x30\x00\x25\xf6\xc0\xfc\xf6\xdf\xa8\x54\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xce\x49\x44\x41\x54\x78\xda\x64\ \x53\x5b\x48\x54\x51\x14\x5d\xf7\x39\xe3\x98\xe6\x33\x1f\xa5\xbd\ \xb4\xf2\xa3\x40\x53\x34\x92\x02\x09\x0b\xc9\x94\x0a\xa2\x8f\x88\ \x9c\x3f\xb5\x07\x18\x46\xa0\x60\x14\x48\x12\x14\xa5\xfd\x94\xce\ \x47\x44\x3f\x16\x8e\x8a\xa9\xd4\x47\x21\x84\x64\x05\x49\xfa\x61\ \x43\x3a\x49\xa5\xe3\x4c\x3a\xea\x34\xce\xdc\x47\x67\xdf\x71\x64\ \xac\x03\xfb\xde\x7b\xf6\x5e\x6b\xed\x7d\xf6\xdd\x87\xc3\x3f\x2b\ \xe5\x52\x77\x9b\xa2\x69\x55\x9a\x0e\x33\x74\xe6\xe0\x00\x9e\x83\ \x5f\xe4\xf9\x8e\x99\xfb\x27\x6a\x22\xb1\xba\xae\x53\x38\xb4\xd2\ \xae\xf4\x94\xfa\x03\xea\xc0\x91\xbc\x1c\x14\x64\x6f\x47\x5c\x8c\ \x64\x90\x49\x64\x7e\x31\x88\xf7\x13\xdf\xf0\xea\xe3\x38\xcc\xb2\ \x70\xf4\xe7\xbd\xf2\xc1\x75\x02\x44\x66\x79\x06\xaa\x4a\x8b\x51\ \x98\xb1\x8c\xc2\x84\x31\x6c\x32\x2d\xe0\x4e\x6b\x1f\xea\x6a\xcb\ \x30\xeb\xdf\x88\x61\x4f\x0e\x86\xa7\x37\xc0\x36\x38\xc4\x18\x9a\ \x21\xb2\x26\x90\x50\xd3\xa5\x5b\x8f\x1d\xc2\xc9\xdd\x2e\x14\xa5\ \x39\xa0\x2a\x3c\x82\x2a\x65\x60\x50\x02\xe9\x2a\x4c\x82\x86\x77\ \xae\x6c\xd8\x27\x52\xd0\x31\xf0\x16\x9e\xb6\x4a\x8e\x04\xf8\xd4\ \xcb\xdd\x6d\x07\xf6\x64\x21\x3f\xdd\x87\xa2\xcd\x4e\x54\x9e\x7f\ \x06\xfb\x80\x03\x82\x6c\x81\xc6\xc9\xd0\x20\x41\x65\xed\xf0\x6b\ \x66\x1c\x4c\x9d\x44\x7e\x9a\x0f\x84\x27\x1e\x25\xe7\x55\x4d\xb3\ \xee\x48\x4f\x41\xc9\x96\x69\x96\x32\x0a\x8d\xf5\xc7\xf1\xf4\xc5\ \x08\x46\xc7\x67\x60\x36\x5b\x20\x4a\x66\x70\x82\xcc\x90\x66\x04\ \x11\x85\x92\x8c\xef\x20\x3c\xf1\x0c\x01\x56\xa0\x49\x16\x65\x24\ \xc5\xeb\x50\x74\x09\xb9\xfb\xb2\xd0\x70\xb5\x1c\xb7\x5a\x7a\xf0\ \xf9\xcb\x0f\xc8\x26\x33\x04\x91\x04\x24\x43\x24\x39\x1e\x20\x3c\ \xf1\x0c\x01\x7a\xfc\x51\x54\xd8\x1e\xf5\xb3\x4c\x12\x14\x8d\x43\ \x6e\xde\x2e\xdc\x6c\x3c\x83\xa6\xe6\x4e\x8c\x7c\x9a\x32\x04\x0c\ \x93\x64\xd8\x1e\xf7\x1b\xf8\xf0\xe2\xa9\x8b\x2b\x2b\x41\x5c\xa8\ \x3e\xcd\x3a\x2a\x82\xe3\x44\x76\x14\x01\x75\xd7\x6d\x68\x6a\x38\ \x8b\xc2\x82\x1c\xc3\xc7\x33\xa3\x38\xe1\x08\x1f\xfe\xff\x22\xfb\ \x08\xfc\x5e\x5a\x92\xdd\x0b\x32\x12\xa3\x55\x68\x4c\x5c\x65\x55\ \xf4\xf7\x36\x1b\xbf\x41\x51\x34\xe8\x44\x66\xba\x3c\x33\xf7\x82\ \x00\x86\x27\x81\x40\xe8\x08\x3e\x77\xd7\xf7\xd9\x39\xd8\x86\x59\ \x94\x95\x29\xb2\x63\x70\x10\x98\x10\xc7\x8c\x37\xbe\x05\xe6\x93\ \x44\xc9\x88\x13\x8e\xf0\xc4\x43\x68\x50\x91\x99\x7c\xd1\x3e\xb5\ \x77\xdb\x4e\x54\x1f\xb6\xe0\xd4\x7e\x31\x34\x7e\x46\x68\x75\x14\ \x57\xf7\xcf\x3f\x28\x78\xf8\xc6\x87\xd1\x49\x07\x5c\x0f\x2a\xb6\ \xb2\x39\x70\x52\x13\x9d\xaa\x63\xa8\x76\xcc\x39\x89\xbb\xaf\xbd\ \xb8\xd1\x1b\x80\x67\x59\x60\xee\x28\xf4\x74\xbe\x34\xde\xb4\x27\ \x3f\xc5\x09\x47\x78\xe2\x85\x2b\xa0\x15\x9b\x50\x56\x7f\x4e\xcc\ \x2a\x6e\x4d\x8e\x8d\x43\x8c\x25\x16\xbc\x20\xae\x75\x5a\x53\x15\ \x2c\xfa\xbc\x70\x79\xe7\xa1\x7c\x1d\xaa\xf5\xf4\xb5\x3c\x61\x6e\ \xef\xba\xcb\x44\x22\xcc\xb2\x53\xad\xed\xd7\x10\x9d\x54\xc1\x5a\ \x2f\x47\x5c\xbb\x00\x96\xe7\xec\xbf\xda\xad\xb7\xd9\x6e\x82\xc8\ \xff\xdd\xc6\x88\x95\xc9\x2c\x31\x3c\x23\xe1\x22\x98\xb9\xc3\x65\ \x47\x5e\xe7\xbf\x02\x0c\x00\xb0\x4a\x2a\xde\xad\xd3\x15\x87\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xf7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x99\x49\x44\x41\x54\x78\xda\x94\ \x93\x4b\x48\x54\x61\x14\xc7\x7f\x77\xe6\xce\xa8\xa5\xe3\x84\x52\ \x96\xa9\xe3\x38\xf9\x28\x73\x11\xb8\xc8\x40\x29\x72\xa2\x45\x8f\ \x85\xd0\x46\xda\x85\x0b\x09\x84\x48\x82\xa8\x14\x85\x12\x82\x40\ \x47\xb4\x42\x82\x48\x5a\x18\x51\x50\x84\x3d\x11\x91\x1e\x10\x58\ \xf6\x10\x73\x26\xb5\x24\xcb\x47\x5a\x99\x33\x7a\x1f\x7d\x77\x66\ \xae\x19\x2e\xaa\x03\x87\xef\xbb\x97\x73\xfe\xdf\xff\x9c\xff\x39\ \x52\x6b\x6b\x6b\x8f\xa2\x28\x45\x9a\xae\x83\xe1\xff\x60\x16\x8b\ \x05\x59\x96\xa7\x2b\x2a\x2a\x56\xc9\x8a\xa2\x16\x55\x54\x56\xa2\ \x18\xf9\xaa\x8a\xa4\x69\xe8\xc2\xc3\x26\x49\xbf\x41\x97\xdc\x65\ \xd9\xc6\x85\xf3\x2d\xce\xf0\x5d\x84\x63\x84\x3f\xc9\x4e\x22\xbd\ \xbb\x9f\xc1\x37\xaf\xc8\x72\xb9\xc2\x81\x01\x7f\x80\xac\x2c\x8f\ \x91\x4d\x20\xe0\xc7\xed\x76\xa3\x09\xf0\xb4\xb4\xd4\xf0\x19\x06\ \x30\x50\x0d\xdc\x98\x4c\x0f\x0b\x4f\xbb\xb0\xad\x5e\x8f\x3d\x36\ \x06\x49\xb7\x10\x1b\x1b\x4f\xfc\x0a\x27\x16\x49\x26\x21\x6e\x1a\ \xc7\x8a\x64\x16\xd4\x90\xf8\xb6\x2d\x96\x23\x0b\x5e\x02\x1f\xe6\ \x8b\x4b\xf9\xdc\xd6\x8c\xbd\xae\x89\x8f\x1f\xc6\xb0\x49\x76\x06\ \x67\x1e\xd1\xd2\xb1\x87\x81\xa9\x71\x91\x04\xda\x3d\x08\x29\xd0\ \x57\x6b\xe4\x48\x26\x03\x41\x50\xb0\xc9\x3e\x54\xc5\x50\xc7\x15\ \xec\x03\x83\x64\x78\x77\xd2\x78\xbf\x8c\xae\x81\x4e\x8e\xec\x68\ \xa4\xc4\x53\xce\xf8\xe8\x24\x1e\x8f\x5b\x30\x98\x8f\xbe\xad\x9b\ \x0c\xc0\x2a\xdc\xe1\x4c\xc6\x55\x75\x9a\xce\x9b\xc7\xa8\xfd\x1a\ \x60\x5d\x9c\x8b\xa6\x5d\xbd\x14\x6c\xdc\xc4\x8d\xb7\x63\x34\xf5\ \x8c\xf2\xb0\xdd\x0f\x8a\x8a\x7e\x76\xf7\xd2\x12\x0c\x59\xa0\xb0\ \x4e\xc2\x1e\x07\x29\x05\xb0\xef\x41\x12\xa5\x27\x3b\xb1\xc5\x68\ \xec\x6f\x7f\xcc\x9d\xe1\x59\xea\x0b\x9d\x9c\x28\x5c\xc9\x9a\x58\ \x41\x5d\x32\xfa\x16\x65\x60\xca\xdf\x7b\x5c\xc7\x2a\xe0\xfc\xc3\ \x63\xd8\x27\x1b\x08\x55\xee\xa5\xba\xdc\x87\x5f\x8d\x67\xe6\xd4\ \x36\x46\xfc\x03\x64\xb8\x32\x11\xb2\xa3\x8a\x06\x9b\xea\x46\x9a\ \x28\x40\x15\x82\x42\x7f\x0b\x9a\x32\x8d\xab\xe1\x1c\x07\xce\x5c\ \xe3\xc5\xeb\xf7\x5c\xed\x6b\x66\x6c\xca\xcb\x8f\xb4\x0d\x04\x1d\ \x89\xd8\x52\xd6\x86\x4b\xfe\xa3\x84\x88\xe6\xef\xb0\x5b\x2d\x24\ \xc4\xc8\x94\x5d\xea\xe6\xd6\x5c\x22\x2f\x0f\x6f\x41\x1f\x4e\xe5\ \xcb\xed\xeb\x2c\x3c\xbb\xcc\xf3\xfa\x6a\x94\x89\x71\xbc\x13\x7a\ \x64\xb0\x96\x02\xe4\xe7\x6f\x66\x6a\x36\x48\xe9\xc5\x1e\x42\xba\ \xcc\xe8\xd1\x62\x66\x3e\x0d\xe3\xde\x5e\x8a\x26\xbc\x7f\x68\x84\ \x5c\x57\x3a\xe6\xb0\xeb\xe6\x54\x4a\xd1\x1f\x8e\x9a\xbb\xfc\x9c\ \x57\x38\x98\x97\x48\x5b\xf9\x56\xf1\x80\x85\x09\x35\x32\x6d\x46\ \x8c\x14\x9a\x8b\x9c\xd1\x78\xf3\x94\x25\x43\x02\x61\xdf\x6a\xbc\ \xcb\x96\x26\x27\x37\x77\x31\x38\x2f\x27\x67\xd9\x42\x85\x01\x82\ \xc1\x60\x97\xcf\xe7\x2b\x59\x5c\x20\x43\x20\x1d\xf4\xbf\x6c\xa3\ \xd5\x6a\xfd\x6e\x82\x67\x09\x77\xf2\xff\xa6\x8a\x3e\xf4\xfe\x12\ \x60\x00\x9e\x58\x04\xbd\xb1\x40\xe5\x7a\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x59\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xfb\x49\x44\x41\x54\x78\xda\x9c\ \x53\x4d\x6b\x13\x51\x14\x3d\xef\xbd\x3b\x13\x9a\x69\x35\x49\x5b\ \x48\x48\x45\xd4\x9d\x0b\xff\x42\x95\xe2\xae\x22\xae\x44\x62\x16\ \xba\x72\xa5\xb8\xf1\x8f\x88\x2b\x75\xa1\x31\x22\x95\xda\xaa\x48\ \x3f\xa4\x95\xfa\x17\x04\x7f\x80\xad\x35\x88\x49\x46\x33\x13\xad\ \xcd\xcc\xf3\xde\xd4\x49\x5b\x13\xa4\xf4\x0c\x97\x99\x79\x70\xee\ \xbd\xe7\xde\xf3\x54\xb5\x5a\x6d\x46\x51\x94\x89\xe3\x18\x4a\x29\ \x1c\x04\xd6\x5a\x68\xad\x61\x8c\xf1\x49\xc8\xe5\x72\x19\x87\x41\ \xa5\x52\xc9\x90\x54\x16\x7c\xde\xfc\x82\x52\xe9\x2a\x8e\x66\xb3\ \x18\x49\xa7\x31\xe4\x0d\x23\xcd\x6f\x22\x83\x76\x18\xa2\xdd\x6e\ \x23\xe0\xf0\x1b\x4d\x3c\xae\x3c\x42\xb1\x90\x87\x70\x49\xda\x11\ \x68\xad\xf0\x62\x76\x06\x0e\x13\x0c\x2b\xe9\xc4\x7c\xae\x34\xc8\ \x71\xb9\x55\xdd\x93\xb7\xbd\xdd\x41\xc8\x09\x13\x29\x94\xb4\xa3\ \xf8\xd1\x36\xc6\xef\x2d\x8b\x52\x75\x13\xb3\xd7\x26\x60\xb5\xc1\ \xe5\x2b\x25\x1c\x2b\x16\x31\x3a\x36\x8e\x1f\xdf\x7d\xac\x6f\x6c\ \xe0\xe1\x83\xfb\x3d\x19\x3a\xf9\x48\x39\x1a\xeb\xad\x08\xe5\xe7\ \xdf\x50\xfb\x65\xe0\xa5\x14\x5c\x52\x52\x86\xa3\x5b\xaf\x5b\x51\ \x7e\x89\x7a\xb4\xdd\x0e\xa4\xf5\xdb\x8b\x01\x7e\xc6\x29\x0c\x8f\ \x00\xa7\xef\xd6\xf1\xe1\x66\x11\xaf\x5f\xce\xed\x1b\x9c\x28\x0b\ \x82\xb0\x3f\x81\xe2\xb5\xdc\x9b\x3e\x82\xeb\x33\x35\xb4\xb6\x62\ \x7c\xbc\x73\x12\xa2\xf0\xc2\xc5\x4b\x98\x10\x09\xe3\x2c\xc1\xf7\ \xf1\x89\x25\x3c\x7b\xfa\xa4\x5f\x42\xac\x08\x27\xc6\x86\xb0\x72\ \xe3\x38\x0a\x69\x69\x9b\x73\x6b\xe2\x8a\x36\x59\xfe\x8e\x14\x0e\ \x63\x68\x80\x04\xc7\x81\xe3\x3a\x3c\x6d\x8d\xc5\x5b\x67\xfe\x0e\ \x16\x78\xf3\x6a\xbe\x6f\xff\x9d\x28\xea\x4f\x90\x72\x5d\x4c\x9e\ \x9d\x42\x36\xc7\x3e\xf0\x3c\xf6\x81\xd7\xf5\x81\x21\x42\xd8\x0a\ \xd8\x07\x21\x82\x90\x7d\xd0\x6c\x60\x75\xe5\xed\x80\x19\xf0\x9e\ \xdf\xaf\xad\x1e\xc8\x81\x51\x64\x59\xc6\x3f\x09\x04\xe7\xa6\xce\ \x23\x9f\x2f\x20\x37\x9a\x03\xb1\xce\x7a\xa3\x8e\xaf\xb5\x1a\x96\ \x97\x16\x7a\x73\xb0\x5d\xd3\xed\x72\xc8\x24\xa9\x18\xef\xf6\xb4\ \x36\x10\x4a\x61\xef\x75\x13\x2e\xb1\x2d\xd7\xf8\x52\x4c\xfe\xef\ \x36\xee\x18\xc8\xee\x3b\x13\xb2\x70\x85\x71\x8a\x23\x83\xc3\xc1\ \xff\x23\xc0\x00\x4a\x1e\xc5\xa9\x2f\x8e\x80\x46\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xda\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x7c\x49\x44\x41\x54\x78\xda\x94\ \xd2\xcd\x4b\x02\x41\x18\x06\xf0\xc7\xb0\xae\x05\x25\x79\x90\x3a\ \x64\x75\x89\xa2\xf2\xa2\xff\x40\x87\x88\x3e\x0e\xdd\xea\x54\x42\ \x54\xf7\x10\xa4\x20\x50\x29\xe8\xb0\x25\x04\x86\x10\xde\x83\x08\ \xba\x48\x4a\x49\x46\x85\x1f\xe9\xa5\xba\x48\x20\x45\x6b\xa2\xa5\ \xe2\xd7\xda\x34\xbb\x64\x60\xda\x32\x0d\xec\xc2\xcc\xee\xef\xd9\ \x7d\xdf\x19\xe0\x1f\xe3\x61\xcb\x47\xa2\xb6\x33\x52\x9d\x13\x42\ \xd0\xc4\x8a\xd7\xad\x56\xd2\x3a\xd4\x0b\xd2\xa5\x46\x74\xdb\xf3\ \x13\xc2\x14\x60\xb2\xec\x92\x95\xa5\x65\xec\x87\x9d\xc8\xf3\x59\ \xc4\xb3\x15\x04\xcd\x47\x84\x29\xe0\xda\x3c\x42\x4c\x73\x7d\xe0\ \xec\x4e\x8c\x8f\x4d\xc0\xfd\x79\x8e\x72\xa6\x0c\x21\xc9\x4b\xcf\ \x15\x72\xd8\x6f\xd6\x13\xfd\xb4\x0a\x48\xc4\x11\x6b\x59\x80\xeb\ \x96\x60\x70\x40\x0b\xef\x95\x17\xdc\xa6\x4d\x47\x7b\x10\x50\xc8\ \xe2\x19\x35\xc0\xbf\x01\x29\x7a\x65\x5e\x11\x69\x5b\xc5\x61\x48\ \x81\x1d\xcb\x86\x8e\xbe\x12\x10\x9b\xa8\x90\xc7\x49\x8a\x53\x40\ \xf6\x9d\xae\x16\xe0\x0a\x6b\x30\xbf\x17\x94\xf0\x9f\xbb\x50\x8f\ \x3f\x68\xa1\x02\x0e\x22\xfd\x35\xb8\xe1\x2e\x34\xc6\x65\x38\xee\ \xb4\x58\xe4\x7c\x75\xb8\x26\xe0\x52\x06\x1b\xb9\x8b\x86\x58\x1c\ \x4a\xf1\xe6\x5b\xd3\x11\xc3\x94\xea\xbb\x61\x69\x66\x2c\x05\x24\ \x8e\x27\x49\xc7\xb0\x1e\x78\x74\x03\x49\x1a\x90\xcb\xd1\xff\x12\ \x98\xb0\x54\x02\x29\x56\x68\x4c\x27\x4a\xdd\xb3\x40\x51\xa0\x5f\ \x2e\x32\x63\x29\xe0\xe4\xbe\x1d\xa7\x9e\x27\x28\x4b\x79\x40\x63\ \x80\x23\xd4\xc3\x8c\xa5\x12\x62\x7c\x09\x2f\xcf\x37\xd0\xa6\x9b\ \x51\x28\x28\x61\xb4\xfb\x99\x71\xf5\x28\x8f\xfe\x5a\x63\xc6\xe2\ \x41\xfa\x12\x60\x00\x6f\x4c\xcb\xc0\xbe\x86\xc2\x69\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\xb4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x32\x41\x35\x33\x41\x41\x34\x37\x37\x36\x41\ \x39\x31\x31\x45\x32\x39\x33\x32\x39\x38\x35\x35\x32\x31\x33\x43\ \x43\x45\x35\x32\x34\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x32\x41\x35\x33\x41\x41\x34\x38\x37\x36\x41\x39\x31\x31\x45\ \x32\x39\x33\x32\x39\x38\x35\x35\x32\x31\x33\x43\x43\x45\x35\x32\ \x34\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x32\x41\x35\x33\x41\x41\x34\x35\x37\x36\x41\x39\x31\x31\x45\ \x32\x39\x33\x32\x39\x38\x35\x35\x32\x31\x33\x43\x43\x45\x35\x32\ \x34\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x32\x41\x35\ \x33\x41\x41\x34\x36\x37\x36\x41\x39\x31\x31\x45\x32\x39\x33\x32\ \x39\x38\x35\x35\x32\x31\x33\x43\x43\x45\x35\x32\x34\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xd3\ \xfe\x29\x77\x00\x00\x02\x28\x49\x44\x41\x54\x78\xda\xa4\x93\xc1\ \x6b\x53\x41\x10\xc6\xbf\x7d\xbb\x1a\xdb\xa0\x11\x83\xa1\x62\x15\ \x51\x0c\xf5\xd0\x88\x8d\x18\x84\x82\x17\x0f\x55\x28\xf6\x62\x0b\ \x82\xa5\x7a\xd1\x14\x41\x7a\xed\x35\x67\x11\x02\x5a\x7b\x51\x14\ \xbc\x28\x08\xe2\xc5\x3f\xa0\x20\x48\xc5\x26\xf5\x50\x52\x5a\xb4\ \xa8\x69\x52\x53\xf2\xb0\x49\x9a\x97\xbc\x5d\x67\xde\x4b\xa5\x6a\ \x45\xa1\x03\xb3\x2c\xbb\xf3\xfb\x66\x67\x76\x57\x18\x63\xb0\x1d\ \x53\x23\x93\x22\xe1\x6a\x4c\x35\x35\x14\x6b\xfd\x4b\x4e\xb0\xd3\ \xa0\x2c\xb8\xd2\x42\x54\x31\xdc\xdd\x19\x53\xfd\xb1\x41\xec\x52\ \xed\x9e\x80\x10\xa2\x15\xba\xd9\x0c\xf8\xb4\xbc\xba\xde\xac\xe2\ \x55\xf6\x99\x9c\xfd\x9c\xcd\xa9\xa6\x0b\x35\x94\xb8\x89\xcc\xe2\ \x5d\xd4\x9b\x36\xa4\x90\xb0\x2b\x79\x2f\xcb\x2f\x38\x29\x87\x82\ \x07\xe0\x1a\x17\x01\x15\xc2\x50\x62\x0c\xef\x3f\x8d\x4a\xc5\x19\ \x6b\xa6\x84\xc2\xda\x3c\xe6\x0b\x40\xb5\x01\xac\x56\xb0\xa5\xc0\ \xbe\x60\x1e\xed\x3b\x80\xe3\x91\xa2\xc7\x30\xab\x04\x8d\x0e\x28\ \x33\x6d\x2c\xdb\xc0\xca\x22\x52\xaf\xef\xe0\xe5\x56\xf5\x9f\xbf\ \x8d\x0b\x47\xbb\x91\x92\x3b\x7d\x86\x59\xc5\x45\x55\xf5\x32\xf6\ \xee\x0e\xa3\xa1\x4b\x20\x38\x7d\x6d\x12\xdf\xfc\xaa\x01\xad\xc9\ \xa9\x7c\x8b\xe2\x9e\x24\x11\xbe\x3a\x81\x14\xc7\x32\xc3\x2c\xaf\ \xa3\x5c\x5f\x40\xd9\x29\xe1\x48\x24\x8c\xe1\x09\x0c\xfe\x84\x5d\ \xca\xd4\x80\xb9\xd5\x7f\x06\x75\x07\x18\x7f\x1e\x5a\x65\xca\xa6\ \x58\x66\x98\xf5\x04\xd6\x4d\x01\xda\x02\x3a\x23\x7b\x40\xb7\x72\ \x8f\xeb\xe5\xcc\x0c\x27\x07\x62\xf8\x90\x7f\x8b\x8b\x67\x4f\xa0\ \xe6\xb8\xe6\xd4\xb1\xc3\x08\xb4\xb5\x79\x8c\x27\xc0\x0a\x15\xbd\ \x02\xa1\x80\xde\x93\x1d\x30\xda\x6f\x18\x65\x37\xa3\x97\xa3\xc8\ \x15\xb3\x70\x29\xa6\x63\xbf\x83\x4b\x89\x43\x38\xd7\x73\x10\xd5\ \x66\x8d\x98\xa2\x97\x5d\xd1\xe0\x66\x66\xbe\xcb\xae\x28\x30\x5b\ \x78\xe3\x1f\xa9\xf5\x62\x3e\x96\x73\x9e\xb0\x45\x82\x4b\xf6\x02\ \xa4\xc3\x57\x46\x5b\xd4\xf0\xcc\xcc\x1a\xc7\x6a\x95\x9b\xc2\x75\ \xf4\xe2\x61\xbe\x00\xc9\x9c\x94\x7c\x2c\xe0\x71\x12\xa7\x75\x1a\ \xd3\x7d\x7d\xe0\xb2\xf0\xf5\x0b\x30\x37\xe7\xcf\x2d\xbf\x79\xfa\ \xdd\x0b\x0c\x30\x13\x24\xef\x21\x8f\x6f\x38\xdd\x02\xd8\x79\x7e\ \x25\x0d\xf3\x74\x09\x66\xe4\x81\xd7\xd7\xf8\x26\x67\x26\x20\x5a\ \x81\x7f\xb5\x47\x37\x10\x1f\xbe\x8f\x69\x7e\x58\xe4\xe2\xf7\x07\ \xf6\xbf\xb6\x91\xf5\xcf\xcf\xb5\xdd\xef\xfc\x43\x80\x01\x00\xe0\ \xf2\xe8\x73\xfb\x3a\xda\x7c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\xb7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x59\x49\x44\x41\x54\x78\xda\x8c\ \x53\x4b\x68\x53\x51\x10\x3d\xf7\x7d\x93\x8a\x85\xfa\x69\x20\xd2\ \x54\x44\x51\x6a\x84\x5a\xd4\x2e\x5a\xa3\xa5\xda\xba\x50\xdc\x75\ \xe3\x4e\x5d\x08\x76\x51\xe8\xc2\xb5\x4b\x17\x82\x0b\x0b\x2e\xc4\ \x8d\x3b\x37\x2a\x0a\xd2\xa0\xb6\x89\x75\x51\x95\x08\x35\x44\x8b\ \x1f\x6c\x24\xd5\xc6\xc6\x68\x6c\x93\x97\xf7\xbb\xde\x79\xe9\xb3\ \xd1\x08\x76\x60\xb8\xcc\xcc\x39\xe7\xcd\xdc\x79\x97\xe1\x2f\x4b\ \xf4\x74\x8c\x71\xc7\x3d\xcd\x39\x0f\xf8\x39\xc6\x98\xc1\x64\xe9\ \xc6\xa1\xa7\x99\xf3\xf5\x58\x81\x01\xf3\x83\x64\x6f\x74\xc0\xb1\ \xac\xf1\xb6\xc3\xfd\x68\xed\xda\x07\xad\xa5\x05\x5e\x95\x03\x66\ \xb1\x88\x7c\xea\x05\x3e\x4d\x3e\x82\xac\xaa\x83\xb1\xa9\x74\xfc\ \x0f\x81\xe4\xc1\xe8\x00\x93\xe4\xf1\xe8\xd9\x73\x08\x04\x75\x94\ \xa7\x93\xb0\xb3\x1f\x60\xe7\xe7\xa1\xb4\x86\xa1\x44\xb6\xa1\xa9\ \x3b\x06\xa3\x52\x45\xfa\xfa\x35\x70\xd7\x19\x8c\x3d\x49\xc7\x7f\ \x0b\x4c\x74\xef\xe4\x7b\x47\x46\x21\x2f\xe4\x50\x7e\x78\x0f\xae\ \x63\x81\xc9\x32\xfc\x16\xb8\xe3\x40\x92\x55\x34\x1d\x39\x01\x27\ \xb4\x05\x2f\xaf\x5c\x46\xdf\xf4\x2c\x23\x01\x29\xd1\xb3\x7b\x2c\ \x72\xf4\x18\xd4\x42\x1e\xe5\xf8\x6d\x1a\x18\xb2\x16\x80\xa4\x68\ \xc2\x55\xef\xa4\x98\xf2\x54\x27\x1c\xe1\x89\x47\x1f\x97\x5c\xd7\ \x3d\x13\xea\xec\x82\xf1\xf8\x3e\x64\x57\x28\x56\x0d\xb0\xca\x32\ \x58\x79\x69\xd5\x45\x4c\x79\xaa\x13\x8e\xf0\xc4\x23\x01\x45\x48\ \xeb\x4a\x3e\x07\xb3\x5a\xc1\x86\x07\x33\xf8\x9f\x15\x8f\x77\x82\ \xf0\xc4\xf3\x3a\x80\xc4\xc0\xb3\xef\x21\x49\x0a\xd6\x62\x84\x23\ \x3c\xf1\x6a\x02\x62\x36\xf6\xe3\x3b\xe4\xe0\xba\x35\x09\x10\x8e\ \xf0\xc4\xf3\x46\xe0\x8c\x99\xb6\x65\x69\xca\xfa\x66\x2c\x9f\xea\ \x07\x6c\x9b\x16\xdc\xc8\x24\x82\xa2\x80\x70\x02\x0f\xe2\x79\x02\ \x8b\xa6\x7d\x27\x5f\x5a\x1a\x6a\x0b\x6d\x06\xd3\x74\xef\xe7\xc0\ \x3f\xf8\xb4\x51\x46\x1b\x12\x22\x9f\x17\xbe\x82\x78\x2b\x69\x44\ \x26\x7a\xa3\x73\xfb\xf7\x74\x20\x10\xd0\xe9\x76\x6b\x22\x0d\x0d\ \x30\x31\xbf\x04\xc3\xa8\xe2\xf9\xab\x0c\xfa\xa6\xd2\xed\x02\x97\ \x95\x44\x2d\x3b\x59\x28\x0d\xa7\x32\xb3\x30\x45\xfb\xaa\xae\x43\ \xd5\x34\xa8\xaa\x0a\x45\x38\x9d\x5e\x2c\xf2\x54\x27\x1c\xe1\x89\ \xb7\xb2\x46\xe0\xe2\xeb\xec\x4d\x3a\xed\xd4\xcc\xd5\xed\x5b\xdb\ \x11\x0e\x87\xc4\x65\x05\xc1\x78\xad\x47\xc7\x30\x30\x9f\xfb\x82\ \x77\x1f\xe7\x90\xf8\xf6\x73\xd8\xc7\xfb\x23\xf8\xd6\x2c\x7c\xc7\ \xad\x03\xbb\x2e\x6c\x52\x95\x93\xe2\x22\x34\x70\x1f\xc1\xcc\x45\ \xcb\xbe\x3b\xf4\xec\xcd\x25\x11\xbc\x15\x5e\x6a\x78\x8d\x75\x16\ \x11\xbe\xd1\x5b\xf1\xaa\xb9\xc2\x0b\x7e\xdb\xf5\xcf\xf9\x97\x00\ \x03\x00\x50\xa2\x08\x15\x09\xb8\xee\x4c\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x9b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x03\x16\x10\x16\x05\xd5\x5e\x80\x92\x00\x00\x01\x28\x49\x44\ \x41\x54\x38\xcb\xad\x91\xb1\x4a\x03\x41\x14\x45\xcf\x64\x8d\x60\ \x25\x8a\x36\x36\x6a\x27\x76\xb2\x8a\xe2\x07\x98\x62\x23\x0a\xf9\ \x06\xf5\x03\xd2\xf8\x09\x92\x98\x5e\xf1\x1b\x04\x85\x6d\x04\x5b\ \x25\x41\x83\x8d\x85\x85\x92\x54\x11\x54\x42\x62\x2c\xdc\x84\xdd\ \x67\xb1\x71\xc9\xea\xec\xc4\xc2\x5b\xcd\x70\xee\xbb\x6f\x86\xab\ \xe8\x2b\x5b\xe2\xac\xe7\xb3\x05\x90\xb6\x38\x77\xf3\x6c\x33\xa0\ \x61\x9c\x8d\x02\xd2\x78\x39\x92\xfb\xc7\x3d\xc9\x14\x10\x7e\x28\ \x89\xa7\xbe\x0f\x41\x00\x1f\xdd\x26\xd5\xda\xf1\xef\x69\x03\x4f\ \x0d\x9a\x3c\xbf\x85\x8c\x90\x28\x1d\x8f\x05\x74\xa5\x8d\x32\x04\ \xe8\x78\x3c\xc0\x0f\x0d\x4a\x12\x02\x34\x3c\x0a\x50\xfd\x0d\x58\ \xfa\xe1\x24\xfe\x7f\x5f\x50\x80\x47\x0b\xb1\x40\x57\x43\x12\x8f\ \xd5\xf8\x19\xb4\x11\x0b\xfc\x40\x5f\xa3\x8e\xab\xcd\x12\x57\x5e\ \x8f\xf5\xb5\x25\x98\x9d\x09\x37\xd5\x1b\x50\xb9\x83\xd1\x34\xd7\ \x00\x26\xae\x9c\x43\x64\x27\x9b\x63\x6a\x12\x1e\x5e\x4f\x01\x58\ \x98\xce\xf1\xd6\x84\x13\x37\xbc\x9b\xb8\x02\xec\xcc\x01\xb7\xab\ \x2b\x30\x3f\x17\x3e\xab\x56\x87\xca\x0d\x5c\xec\xb3\x0c\x60\xe2\ \x16\xf0\xfc\x74\x89\x3b\xb6\xc8\xee\xf8\x04\xbc\x77\xa0\x5c\x8e\ \x86\xab\x7f\xe0\x91\x6c\xa7\x88\x38\x45\x04\xb0\x35\x2d\x0e\xe3\ \xa1\xc9\x04\x75\xfc\x0b\xaa\xd2\xb5\x1e\x07\x64\x13\xdb\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x6f\xf0\ \x00\ \x05\xa5\x96\x78\x9c\xec\x7d\x07\x7c\x14\x47\xb2\x3e\xf6\xdd\xbd\ \x7b\xe1\xff\xde\x39\xdc\xf9\xec\xb3\x31\x12\xd8\x77\xf6\xd9\xbe\ \x73\x8e\x98\x24\x61\x1b\x47\x9c\x71\x8e\x80\xc9\x51\x48\x22\xe7\ \x9c\xc1\xe4\x9c\x31\x39\x67\x91\x85\x84\x24\x94\x73\xce\x39\x21\ \x91\x91\xea\xdf\x55\x33\xbd\x9a\x5d\x6d\xde\x99\x9d\x15\x74\xfd\ \xfc\x79\xb4\xbb\x62\x35\xd3\x55\x5f\x75\xaa\xaa\x6e\xd6\xec\x8e\ \x66\xff\xd1\x0c\xe5\x8e\x66\x5e\xcd\x1e\xf3\xfa\x7d\xb3\x6e\xec\ \xe7\xd1\xa3\xe5\xd7\xff\x79\x47\xb3\x99\xec\xbd\x76\xed\xe4\xd7\ \x1d\x9a\x35\xdb\xff\xd8\x1f\x9a\x3d\xfd\xb4\xf4\x7a\xd3\xa3\xcd\ \x9a\x65\xf4\xfc\x43\x33\x2f\x2f\xf9\xf5\x5d\xcd\x9a\x4d\x9c\xfd\ \x87\x66\x77\xdd\x25\xbd\xfe\xe5\xf7\xcd\x9a\xfd\x6b\xf5\x1f\x9a\ \x3d\x26\xfd\x81\x66\xcd\xee\x94\xde\x97\xe4\xf7\xcd\x84\x08\x11\ \x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\ \x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\ \x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\ \x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\ \x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\ \x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\ \x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\ \x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\ \x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\xfa\x49\x80\x6f\ \xcb\x8f\x03\x7c\xbd\x41\x40\xa0\x89\xa2\x96\xa1\x88\x21\x31\xa0\ \x63\xcb\xfd\x01\xbe\x5e\x33\x99\x4d\xff\x18\xe0\xfb\x70\x4b\xbd\ \xb9\xd5\x14\x44\xf0\x5f\xe0\x16\x46\x56\x80\x4f\xcb\xd9\x0c\x2f\ \xe8\xcd\x33\x4f\x15\xc1\x7f\x81\xdb\x02\x1d\xbd\xe2\xfc\x7d\xbd\ \xbf\xed\xf6\xdc\x73\x7f\xd0\x9b\x73\x9e\x24\x82\xff\x02\xb7\x15\ \x7c\xbc\x33\xfd\x7d\xbc\xba\xe8\xcd\x3b\x4f\x11\xc1\x7f\x81\xdb\ \x11\xfe\xbe\x2d\x83\x02\x7d\x5a\xfe\x5d\x6f\xfe\xe9\x2d\x82\xff\ \x02\xb7\x31\x2e\xfb\x77\xf4\xea\xa7\x37\x07\xf5\x14\xc1\x7f\x81\ \xdb\x1d\x81\x1d\x5b\x2e\xfa\xf4\xd3\x66\xbf\xd3\x9b\x8b\x7a\x88\ \xe0\xbf\x80\x80\x37\xae\x0b\xec\x1e\xfd\xde\xdf\xfe\x5b\x6f\x3e\ \xba\x5b\x04\xff\x05\x04\x24\xf8\xfb\x7a\x1f\xed\xd3\xe9\x91\x3f\ \xea\xcd\x49\x77\x8a\xe0\xbf\x80\x40\x03\xd8\x5c\x60\xe3\xe8\xd1\ \xcd\xee\xd4\x9b\x97\xee\x12\xc1\x7f\x01\x01\x63\xb0\x71\xc0\x70\ \xbd\x79\xe9\x2e\x11\xfc\x17\x10\x68\x84\xba\x21\x3e\xde\x1d\xf5\ \xe6\xa6\x3b\x44\xf0\x5f\x40\xc0\x2c\x72\x46\xb7\x7b\xe2\xff\xe9\ \xcd\x4f\xad\x45\xf0\x5f\x40\xc0\x3c\xd8\x3c\x60\x9a\xde\xfc\xd4\ \x5a\x04\xff\x05\x04\x2c\xe2\x86\x5f\xc7\x96\x8f\xea\xcd\x51\x2d\ \x45\xf0\x5f\x40\xc0\x32\xfc\x7d\xbd\x56\xe8\xcd\x51\x2d\x45\xf0\ \x5f\x40\xc0\x2a\xae\x0f\xeb\xe0\xdd\x42\x6f\x9e\x6a\x25\x82\xff\ \x02\x02\xb6\xe0\x35\x4a\x6f\x9e\x6a\x25\x82\xff\x02\x02\xd6\xe1\ \xef\xeb\x9d\xc1\xa8\x72\x87\xde\x5c\xd5\x42\x04\xff\x05\x04\x6c\ \x63\x68\x87\x16\xcf\xea\xcd\x55\x2d\x44\xf0\x5f\x40\xc0\x2e\xf8\ \xe9\xcd\x55\x2d\x44\xf0\x5f\x40\xc0\x2e\x1c\xd0\x9b\xab\x5a\x88\ \xe0\xbf\x80\x80\x5d\x28\xd0\x9b\xab\x5a\x88\xe0\xbf\x80\x80\x7d\ \x18\xdd\xce\xeb\x2e\xbd\xf9\xaa\xb6\x08\xfe\x0b\x08\xd8\x87\x5b\ \x71\x0d\x50\xf0\x5f\x40\xc0\x4e\xbc\xd1\xaa\x83\xde\x7c\x55\x5b\ \x1c\xe5\xff\xe9\xed\x2b\x21\x2e\xf8\x98\x5b\x70\x70\xe5\x4c\xfd\ \x75\xae\x01\xf6\x2d\x99\xec\xb6\x36\x0c\xde\xb3\x5e\xf7\xe7\xbd\ \x55\xe0\xef\xeb\xf5\x81\xde\x7c\x55\x5b\x1c\xe5\xff\x99\x1d\xab\ \xe1\xf2\xe5\xcb\x6e\x41\x51\x4e\x86\xee\x3a\xd7\x02\xb9\xa9\x09\ \x6e\x6b\xc3\x90\xfd\x9b\x75\x7f\xde\x5b\x06\x1d\x5b\x7e\xa1\x37\ \x5f\xd5\x16\x47\xf9\xbf\x7e\x7c\x1f\xb7\xd9\x2e\x62\xc2\xe7\x2f\ \xeb\xaf\x77\x15\x31\xe6\xc3\x67\xe0\xd2\xa5\x4b\x6e\x6b\xbf\xcd\ \x53\xfd\x9c\xba\xcf\xe1\x9d\xfe\x01\xa3\x3f\xf8\xf7\x2d\x83\x11\ \xef\x3c\xee\xb2\xee\xfc\x7d\x5b\x7e\xa9\x37\x5f\xd5\x16\x47\xf8\ \xef\xef\xe3\x0d\xe3\x3e\x7b\x09\xaa\xab\xab\x55\xc1\xc5\x8b\x17\ \x6d\x62\xc5\xf0\x9f\x61\x88\x8f\x97\x4d\xe0\xbd\x79\x3a\xb0\x0d\ \x97\x07\xfe\x40\xfc\x77\x05\x8e\xf0\x7f\xfa\xf7\x1d\x9c\xb2\xf5\ \x6d\xb3\x86\xb9\xd5\xcf\x6b\x8d\x63\x1b\x16\x08\xfe\x9b\x11\x47\ \xf8\x8f\x3c\x1b\xd8\xbe\x05\xa4\xc6\x47\x41\x49\x49\x89\x01\xa5\ \xa5\xa5\x36\x51\x56\x56\x66\x13\xe5\xe5\xe5\x8d\xb0\x6f\xc5\x2c\ \x18\xdc\xc1\xcb\x21\xf8\xa9\x04\x7b\xfc\x8e\xa3\x7e\xe9\xe0\xca\ \x59\x50\x53\x53\x63\x84\xda\xda\x5a\x9b\x70\xc6\x2f\x94\x16\xe6\ \x61\x3d\x4b\xc1\x7f\xc1\x7f\x8b\xe2\xe8\xf8\x1f\xf9\x1f\xb4\x65\ \x85\x11\xff\xb5\xf4\x03\x51\x67\x8e\x3a\xcc\x7f\x4f\xf4\x03\xdc\ \x17\xc4\x9e\x0b\x6a\xc4\x7f\x35\x7d\x81\xd2\xe6\xc3\x8f\xec\x70\ \xda\xd6\x05\xff\x05\xff\xcd\x61\x50\x7b\x2f\x58\x3d\xae\xaf\x59\ \xfe\x6b\xe1\x0b\x8a\x0a\x0b\xc0\xbf\xe3\xa3\x4e\xfb\x00\x4f\xf2\ \x05\x01\x6f\xb4\x82\xb2\xe2\x22\xab\xfc\x77\xd5\x0f\x28\x6d\x1e\ \x39\x2c\xf8\x2f\xf8\x6f\x4d\x1c\xe5\x3f\x72\x60\x5c\x97\xd6\x50\ \x5c\x5c\x4c\xb0\xe5\x07\xec\xf1\x05\xb6\x7c\xc0\xf4\x9f\x3b\xb9\ \xcc\x7f\x4f\xf0\x03\xb3\xba\xbe\xdd\x68\x7d\x43\x6d\x5f\xa0\xb4\ \xf9\x99\x3f\xbf\x29\xf8\x2f\xf8\x6f\x55\x1c\xe5\x3f\x5f\x03\x48\ \x4f\x8a\x37\xf8\x00\xb5\xfc\x80\x25\x5f\xb0\x61\xca\x10\x1a\x77\ \x70\x34\x55\x5f\xf0\xdb\x8c\x40\x8b\xeb\x9c\x6a\xf9\x01\x6e\xef\ \x15\xa5\x45\x6c\xee\xdf\x4a\xf0\x5f\xf0\xdf\xaa\x38\x13\xff\x87\ \xfc\x3f\xb1\x63\xad\x11\xff\xd5\xf6\x05\x4a\xfe\x9f\xd8\xb1\xc6\ \x88\xff\x4d\xd5\x0f\x9c\xdd\xb3\xc9\xae\x3d\x0f\x67\x7d\x81\xb2\ \xff\x8f\x3a\xb1\xcf\x25\x5b\x17\xfc\x17\xfc\xb7\x04\xe4\xde\xda\ \x49\x83\x2c\xf2\x5f\xed\x31\x41\x6a\x5c\x94\x59\xfe\x37\x35\x5f\ \x90\x9d\x96\xe8\xf0\xfe\xa7\x23\x7e\x40\xc9\xff\x5d\xbf\x8e\x15\ \xfc\x17\xfc\xb7\x29\xce\xf0\x1f\xed\x7b\xc2\x37\xed\xa0\xa8\xa8\ \x88\x60\xcb\x0f\xa8\xe1\x0b\x46\x74\x7e\xd6\xa6\x0f\xf0\x64\x3f\ \x30\xfa\xa3\xe7\x5c\x8a\x83\xb0\x67\x4c\xa0\xe4\xff\xdc\x1e\xef\ \x09\xfe\x0b\xfe\xdb\x14\x67\xf8\x8f\xfb\x58\x03\x19\xd7\x32\x52\ \x12\x0d\x3e\x40\x6b\x3f\xb0\x70\xf0\x37\x76\xf1\xdf\x53\x7d\xc1\ \xb2\xa1\x3f\xa9\x16\x13\x65\x89\xff\xdc\xd6\xab\xca\xcb\x60\xe8\ \x9b\x8f\x08\xfe\x0b\xfe\xdb\x14\x67\xf3\xff\x06\xb4\x6b\x01\xa7\ \xf7\x6e\x32\xe2\xbf\x96\xbe\x60\xd7\xe2\x29\x0e\xf3\xdf\x93\xfc\ \xc0\xa1\xd5\x73\xa0\xaa\xaa\x8a\xa0\x95\x1f\xe0\xb6\x1e\x7b\xf6\ \x88\xcb\xb6\x2e\xf8\x2f\xf8\x6f\x0d\xc8\xab\x0d\xd3\x02\x2c\xf2\ \x5f\x6d\x3f\x10\x1e\xb4\xdf\x69\xfe\x7b\x82\x2f\x88\x0b\x39\x61\ \xe0\xbf\x12\x6a\xf9\x02\xe5\xda\x3f\xe6\x17\x0a\xfe\x0b\xfe\xdb\ \x23\xce\xf2\x1f\x6d\x7a\xf2\x0f\x6f\xda\xe4\xbf\x5a\xbe\x20\x2f\ \x3b\x0b\x06\xfb\xb4\xa4\xbd\x07\x35\xfc\x80\x5a\xbe\xc0\x1e\xee\ \x07\xbc\xf1\x28\x94\x95\x14\x9b\xe5\xbf\x5a\x7e\x40\x39\xf7\x5f\ \xd0\xef\x13\xc1\x7f\xc1\x7f\xbb\xc4\x59\xfe\xe3\x1a\xc0\xa0\x0e\ \x2d\x21\x3b\x3d\xd5\x21\x1f\xe0\x8a\x1f\x98\xf4\x9d\x2f\xf1\x9f\ \xc3\x93\xfc\x80\x35\x5f\x30\xfb\x97\xf7\xa1\xb2\xb2\x92\x60\xcd\ \x07\xb8\xe2\x0b\x38\xff\x2f\x56\x55\xc2\xf0\xb7\x1f\x73\xd9\xd6\ \x9b\x52\xfe\xdf\x91\xb5\x73\x05\xff\x9d\x14\x57\xea\xff\xe0\x1a\ \x40\xf0\xc1\xed\x0e\xf3\xdf\x59\x5f\xb0\x66\x7c\x7f\x23\xfe\x7b\ \xaa\x2f\x30\xe5\xff\x96\x59\xc3\x0d\xfc\xd7\xca\x0f\x70\x3b\x4f\ \x08\x3d\xe1\xb2\x9d\x37\x35\x1c\x58\x3e\x4d\xf0\xdf\x49\x71\x85\ \xff\xc8\x97\xcd\xb3\x46\xb8\xc4\x7f\x47\xfc\xc0\xd1\xcd\xcb\x2c\ \xf2\xdf\x13\xfd\x00\xf7\x05\xc1\xfb\x7f\x6b\xc4\x7f\x35\x7d\x81\ \x72\xed\xef\xc0\x8a\xe9\xba\xf3\x51\xf0\xbf\xe9\x88\x2b\xfc\x47\ \xdb\x9e\xde\xed\x5d\x28\x2c\x2c\x24\xa8\xe1\x07\xac\xf9\x82\x84\ \x88\x73\x36\xf9\xef\x89\xbe\x20\x3b\x35\xc9\x2a\xff\x5d\xf5\x03\ \x4a\xfe\x2f\x19\xfc\xa5\xee\x7c\x14\xfc\x6f\x3a\xe2\x0a\xff\x69\ \x0d\xc0\xa7\x15\x64\x67\xa6\x1b\x7c\x80\x9a\xbe\xc0\x9c\x0f\x08\ \x7c\xe7\x29\x87\x7c\x80\xde\x7e\x60\xdc\x67\x2f\x43\x45\x45\x85\ \x11\xd4\xf6\x05\x7c\xed\xbf\x86\xcd\x03\x46\xbe\xfb\x84\xee\x7c\ \x14\xfc\x6f\x3a\xe2\x6a\xfd\x5f\x5c\x03\x08\x39\xb2\xbb\x11\xff\ \xb5\x1a\x13\xcc\xeb\xf7\xb9\xc3\xfc\xd7\xd3\x17\xac\x18\xd1\xbd\ \x11\xff\xd5\xf6\x03\xdc\xc6\x53\x2e\x04\xeb\xce\x45\xc1\xff\xa6\ \x25\xae\xf2\x1f\xb9\xb0\x65\xde\x38\x8b\xfc\x57\xdb\x17\x6c\xff\ \x75\x82\x4b\xfc\x77\xb7\x1f\x38\xb8\x76\xbe\x45\xfe\xab\xe1\x0b\ \xb0\xff\xe7\x36\x8e\xeb\xe0\x7a\x73\x51\xf0\xbf\x69\x89\xab\xfc\ \xc7\x35\x80\x99\x3d\x3f\x82\x82\x82\x02\x82\xd6\x7e\x20\xf8\xe0\ \x0e\x1a\x73\x20\xd4\xf0\x03\x5a\xfb\x82\xb8\xf3\xa7\x8d\xea\x19\ \xa9\xe1\x0b\x94\xfc\x57\xae\xfd\x2f\x0f\xf8\x4e\x77\x2e\x0a\xfe\ \x37\x2d\x51\xe3\xfc\x0f\xbf\x37\xfe\x0e\x39\xd9\x59\x06\x1f\xa0\ \xa5\x2f\xc8\xc9\x48\xa3\xdc\x03\xee\x03\x3c\xd9\x0f\x04\xbe\xf5\ \x18\x94\x14\x17\x99\xad\x6b\xa8\xd6\x98\x80\xaf\xfd\x5d\xba\x54\ \x0b\xa3\x3e\xf8\x97\xee\x5c\x14\xfc\x6f\x5a\xa2\x06\xff\x91\x83\ \x61\xc7\x0f\x36\xe2\xbf\x56\x7e\x60\xfc\x57\x6d\x8c\xf8\xef\xa9\ \xbe\x60\x76\xaf\x0f\xcd\x72\x5f\x4d\x5f\xc0\xe3\x7e\x32\xe2\x22\ \x74\xe7\xa1\xe0\x7f\xd3\x13\x35\xf8\x8f\xb6\xbe\x75\xc1\x44\x8b\ \xfc\x57\xdb\x17\xac\x18\xd5\xcb\x22\xff\xd5\xf6\x05\xae\xf0\x7f\ \xcb\x9c\x51\x56\x6b\x1b\xab\xe1\x07\xb8\x7d\x1f\xdf\xb4\x48\x77\ \x1e\x0a\xfe\x37\x3d\x51\x83\xff\x98\xdf\x3e\xbb\xef\x67\x90\x9f\ \x9f\x4f\xd0\xda\x0f\x1c\x5c\xb7\xc0\x2e\xfe\xeb\x3d\x26\x38\x77\ \x60\xab\xdd\x75\xce\x9d\xf1\x05\xca\xb5\xbf\x55\x23\xba\xea\xce\ \x43\xc1\xff\xa6\x27\x6a\x9d\xff\xe9\xc7\xe6\xba\xb9\x39\x39\x06\ \x1f\xa0\xa5\x2f\x88\x09\x39\xe5\x10\xff\xf5\x1a\x13\x64\xa7\x25\ \x3b\x7c\xde\x81\x23\x7e\x80\xaf\xfd\xe1\x1c\x60\xdc\xc7\xcf\xe9\ \xce\x43\xc1\xff\xa6\x27\x6a\xf1\x1f\xb9\x15\x7e\xfa\x58\x23\xfe\ \x6b\xe1\x07\x0a\x0a\xf2\xc1\x9f\xf9\x1b\x67\x7d\x80\x3b\xc6\x04\ \xe3\xbf\x78\xcd\xe5\xb3\x4f\x6c\xf9\x02\x1e\xf7\x93\x9d\x14\xa3\ \x3b\x07\x05\xff\x9b\xa6\xa8\xc5\x7f\x5c\xef\xde\xb9\x64\xba\x45\ \xfe\xab\xed\x0b\x66\xf6\xfa\xc8\x25\xfe\x6b\x3d\x26\x58\x39\xb2\ \x87\x6a\x67\x20\x59\xf2\x03\x7c\xed\x0f\xcf\x64\xd6\x9b\x83\x82\ \xff\x4d\x53\xd4\xe2\x3f\xae\x01\xcc\x1b\xf8\x35\xe4\xe5\xe5\x11\ \xb4\xf6\x03\x9b\x67\x8d\x84\xfe\x8c\xbb\xfd\x55\xf2\x01\x6a\x8f\ \x09\x0e\xaf\x5f\xa8\xc9\x79\x68\x1c\xca\xb5\xbf\x75\x63\x7b\xe9\ \xce\x41\xc1\xff\xa6\x29\x6a\xf1\x9f\xf0\xf6\x53\x90\x9b\x9b\x63\ \xf0\x01\x5a\xfa\x82\x53\x7b\x36\x1b\xf8\xaf\x84\xa7\xf8\x82\xf8\ \xb0\x33\x9a\x9e\x8b\xa8\x8c\xfb\x9d\xd8\xe5\x15\xdd\x39\x28\xf8\ \xdf\x34\x45\x4d\xfe\x23\x6f\x22\xcf\x9d\x6c\xc4\x7f\x2d\xfc\x40\ \x5a\x72\x82\x59\xfe\x7b\x82\x1f\x08\x78\xeb\x71\x28\x2e\x2a\xd2\ \xf4\x6c\x44\xbe\xf6\x97\x97\x9e\xac\x3b\xff\xf4\x86\xe0\xbf\xf3\ \xa2\x26\xff\x71\x0d\x60\xf7\xca\x39\x16\xf9\xaf\xb6\x2f\x18\xf5\ \xe9\x2b\x56\x7d\x80\x5e\xbe\x60\x6e\x9f\x4f\x34\x3d\x0f\x0d\xc1\ \xd7\xfe\x82\x77\xaf\xd7\x9d\x7f\x7a\x43\xf0\xdf\x79\x51\x93\xff\ \xb8\x06\xb0\x60\xc8\x0f\x6c\x0e\x90\x6b\x80\x1a\xbe\xc0\x12\xff\ \x97\x0c\xed\x0a\xfd\xdb\xb6\x90\xe0\x41\x7e\x60\xdb\xbc\xb1\x9a\ \x9e\x87\x86\xfd\x3f\xb7\xeb\x4d\x93\x06\xea\xce\x3f\xbd\x21\xf8\ \xef\xbc\xa8\x3a\xff\x67\x18\xf6\xc1\x33\x46\xfc\x57\xd3\x0f\x98\ \xfa\x82\x3d\x2b\x66\x37\xf0\x5f\x09\x9d\x7d\xc1\xb9\x43\x3b\x35\ \x3d\x0f\x4d\xb9\xf6\x37\xe5\xeb\x36\xba\xf3\x4f\x6f\x08\xfe\x3b\ \x2f\x6a\xf3\x1f\xed\x3f\xfa\xfc\x59\xb3\x3e\x40\xed\x31\x41\xf8\ \xa9\xa3\xe6\xf9\xaf\xa3\x1f\xc0\xb5\xff\xac\xb4\x14\x4d\xcf\x43\ \xe3\x71\x7f\xc5\xb9\x99\xba\x73\xcf\x13\x20\xf8\xef\xbc\xa8\xcd\ \x7f\x5c\x03\xd8\xb7\x66\x81\x55\xfe\xab\xe5\x07\x72\xb2\xb3\x61\ \xfb\xc2\xc9\xb0\x63\x91\x1d\x58\x3c\xc5\x26\x76\xda\x81\x5d\x4b\ \xa6\x5a\xc5\xfe\xb5\xf3\x35\x3f\x0f\x8d\xe7\xfc\x9d\x3f\xb8\x55\ \x77\xee\x79\x02\x04\xff\x9d\x17\xb5\xf9\x8f\x35\xc1\x16\x0f\xeb\ \x0e\x39\x39\x39\x06\xb8\xc3\x17\xd8\xbb\x66\xe8\xae\x3a\x25\xd6\ \xea\x18\xba\xea\x07\x78\xdc\xcf\x96\xe9\x01\xba\x73\xcf\x13\x20\ \xf8\xef\xbc\xa8\xcd\x7f\xc4\x88\x8f\x5e\x30\xe2\xbf\x27\xfa\x81\ \xa6\xea\x0b\x94\x6b\x7f\x33\x7e\xf0\xd5\x9d\x7b\x9e\x00\xc1\x7f\ \xe7\x45\x0b\xfe\xe3\x3c\x38\xee\xc2\x79\xb3\x3e\xc0\x13\x7d\x41\ \x53\xf2\x03\x7c\xed\xaf\xac\x28\x1f\x02\x3b\xb6\xd4\x9d\x7b\x9e\ \x00\xc1\x7f\xe7\x45\x0b\xfe\x63\x4d\xb0\x03\xeb\x97\x58\xe5\xbf\ \x27\xfa\x81\xa6\xe0\x0b\xf8\xda\x5f\xc4\xd1\x5d\xba\xf3\xce\x53\ \x20\xf8\xef\xbc\x68\xc1\x7f\x5c\x03\x58\x32\xb2\x17\x64\x67\x67\ \x1b\x70\x2b\xfa\x02\x3d\xfc\x00\x8f\xfb\xd9\x31\x67\xa4\xee\xbc\ \xf3\x14\x08\xfe\x3b\x2f\x5a\xf0\x1f\x31\xf6\x8b\xd7\x8d\xf8\x7f\ \x2b\xfb\x01\x77\xf9\x02\xe4\x3f\xb7\xe7\xd9\xdd\xde\xd6\x9d\x77\ \x9e\x02\x8c\x81\xc0\x73\x4f\xac\x61\xda\xb7\xed\x04\xff\xcd\x88\ \x56\xfc\xa7\x1c\x98\xa8\x08\xb3\x3e\xe0\x56\xf6\x05\x5a\xfa\x01\ \xbe\xf6\x57\x59\x56\x02\x43\xdf\x78\x44\x77\xde\xdd\x6e\x10\xfc\ \xb7\x1f\xb8\x06\x70\x68\xf3\x0a\xab\xfc\xbf\x95\xfd\x80\x16\xbe\ \x80\xe7\xfc\x45\x9f\x3c\xa0\x3b\x17\x6e\x47\x08\xfe\x3b\x86\x15\ \xe3\xfa\x43\x56\x56\x96\x01\xc2\x17\xb8\x06\x9e\xf3\xb7\x7b\xe1\ \x78\xdd\xb9\x70\x3b\x42\xf0\xdf\x31\x8c\xff\xa6\x83\x11\xff\x1d\ \xf1\x05\xc2\x0f\x34\x06\x8f\xfb\x99\xdf\xab\xb3\xee\x5c\xb8\x1d\ \x21\xf8\xef\x18\x06\xb1\x39\x40\x52\x5c\xb4\x45\x1f\x20\xc6\x04\ \xf6\x73\x9f\xaf\xfd\x55\x57\x96\xc3\xb0\xb7\xfe\xae\x3b\x17\x6e\ \x47\x08\xfe\x3b\x06\x5c\x03\x38\xba\x7d\x1d\x64\x66\x66\x5a\xf5\ \x01\x62\x4c\x60\x9b\xff\x7c\xed\x2f\x2e\xf8\x98\xee\x3c\xb8\x5d\ \x21\xf8\xef\x38\x56\x4f\xf2\x23\xfe\x73\xa8\xe1\x07\x6e\x47\x5f\ \xc0\xe3\x7e\xf6\x2f\x9b\xaa\x3b\x0f\x6e\x57\x08\xfe\x3b\x8e\xc9\ \x3f\xbe\x65\xc4\x7f\x3d\x7c\xc1\xad\xe0\x07\x78\xdc\xcf\xc2\xfe\ \x9f\xe9\xce\x83\xdb\x15\x82\xff\x8e\xc3\xcf\xb7\x25\x24\x27\xc4\ \x5b\xf4\x01\x62\x4c\x60\x9f\x2f\x40\xee\x5f\xac\xae\x82\x11\xef\ \x3c\xae\x3b\x0f\x1c\xc1\x98\x0f\x9f\x81\xa5\x7e\x5f\xc3\xee\x05\ \xe3\xe0\xc4\x6f\x4b\x21\xea\xc4\x3e\x48\x8d\x0a\xa5\x33\x0b\xf2\ \x33\x92\xa1\x28\x27\x93\xae\x39\x29\x71\x90\x1e\x1b\x0e\xd1\xa7\ \x0e\xc2\xe9\xed\xab\x60\xdf\xe2\x49\xb0\x22\xf0\x07\x98\xf0\xd9\ \x4b\xba\x3f\x83\xe0\xbf\xf3\xc0\x9a\x60\x41\xbb\x37\x43\x46\x46\ \x86\x55\x1f\x20\xc6\x04\x96\xf9\x8f\x39\xbf\xc8\xff\xa4\xb0\xd3\ \xba\x73\xc0\x16\x86\xbe\xf9\x08\xc5\xdb\x1d\xdf\xbc\x18\x72\xd3\ \x12\x6d\xc6\xe5\xda\x83\xa2\x9c\x0c\x38\xb3\x63\x35\xac\x18\xfa\ \x23\x0c\x7f\xfb\x31\xc1\x7f\x15\x45\x6b\xfe\x23\xd6\x4f\x1b\x46\ \xfc\xe7\xf0\x24\x3f\xd0\x14\x7c\x01\x9e\xf5\x81\x3c\x38\xb8\x72\ \xa6\xee\xfc\xb6\x84\xf1\x9f\xbe\x40\x6b\x13\xd8\x9f\xab\xc1\x79\ \x4b\x28\x2f\x2e\x80\x63\xeb\x7f\x85\xc9\x5f\xbd\x2e\xf8\xaf\x82\ \xb8\x83\xff\xd3\xbb\xbf\x67\xc4\xff\xa6\xec\x0b\xf4\xf0\x03\x3c\ \xee\x07\xc7\xd1\x7a\xf3\xdc\x14\x23\xdf\x7d\x02\xf6\x2c\x9c\x00\ \x95\x65\xa5\x9a\xf2\xde\x14\x35\xac\x4d\x70\x4c\x80\x7e\x47\xf0\ \xdf\x79\x71\x07\xff\x87\x74\x7c\x14\x92\x93\x12\x2c\xfa\x80\xa6\ \xe8\x07\xdc\xe5\x0b\x90\xff\x18\xf7\x53\x5b\x53\x03\xa3\xde\x7f\ \x52\x77\xbe\x2b\xb1\xd4\xef\x2b\x28\xce\xcb\x72\x2b\xef\x4d\x81\ \xb9\x10\xeb\xc7\xf7\x11\xfc\x77\x52\xdc\xc1\x7f\xcc\x07\x3e\xb1\ \x6f\x2b\xa4\xa7\xa7\x5b\xf5\x01\x4d\xd5\x17\x68\xe9\x07\xf8\xda\ \x1f\xae\x99\xe9\xcd\x77\x8e\xc0\x8e\xad\xe0\xc8\xda\xb9\x86\x78\ \x44\x4f\x40\xe8\x81\x2d\x9a\xaf\x8d\x0a\xfe\x3b\x8f\x0d\xb3\x47\ \x11\xff\x39\x6e\x45\x3f\xa0\x85\x2f\xc0\x7a\xdf\x68\xdf\x38\xe7\ \xd5\x9b\xf7\x08\x8c\x3d\xc4\xba\xa3\x7a\xf3\xdd\x1c\x52\x22\xcf\ \xc1\xd8\x8f\x9e\x11\xfc\x77\x40\xdc\xc5\xff\x59\xbd\x3f\x36\xe2\ \xbf\xf0\x05\xf6\xf9\x01\x9e\xf3\x87\x7b\x61\x7a\x73\x1f\x73\x8e\ \x23\x8f\xef\xd5\x9d\xe7\xd6\x90\x95\x10\xc5\xe6\x49\x4f\x09\xfe\ \xdb\x29\xee\xe2\x7f\xe0\x5b\x8f\x43\x4a\x72\x92\x45\x1f\x70\x3b\ \xfb\x01\x6b\xbe\x00\xe3\x7e\x2e\x5d\xaa\x85\x31\x9d\x9f\xd6\x9d\ \xff\xb8\xa7\xa7\x37\xbf\xed\x41\x42\xe8\x09\x18\xde\xe9\x1f\x82\ \xff\x76\x88\xbb\xf8\x8f\x6b\x00\x67\x0e\xed\x86\xb4\xb4\x34\xab\ \x3e\x40\xf8\x82\x3c\xa3\x39\x00\xda\x73\x66\x42\xa4\xee\xdc\xc7\ \x33\xc6\xf5\xe6\xb5\x23\xd0\x62\xbe\x24\xf8\xef\x1a\xb6\xfc\x3a\ \x81\xf8\xaf\x84\x16\x7e\xe0\x42\xf0\x29\x38\xb4\x79\xa5\x11\x0e\ \xff\x66\x07\xb6\xac\xb2\x89\x23\x5b\x57\x1b\x70\x21\xf8\xa4\xa6\ \x7e\x00\x6b\x7e\xa0\x2d\x9f\xdc\xb2\x4c\x57\xee\x8f\xff\xf4\x45\ \xda\x77\xd7\x9b\xd3\x8e\x00\xc7\x4c\x8b\x06\x76\x11\xfc\xb7\x21\ \xee\xe4\xff\xbc\xfe\x5d\x1a\xf1\xdf\x5e\x3f\xe0\x88\x2f\x38\xb2\ \x65\x35\xf4\x69\xf3\xb0\x4b\xe8\x6b\x07\x0e\x6e\x5c\xa6\xe9\x98\ \x80\xe7\xfc\xad\x1e\xd5\x5d\x57\xfe\xe3\xda\xba\xde\x7c\x76\x06\ \xb9\xa9\x09\x14\x8f\x28\xf8\x6f\x59\xdc\xc9\xff\x61\xef\x3e\x09\ \x29\x29\xc9\x16\x7d\x80\x5a\xbe\x20\x3a\x3c\xc4\x65\xfe\xdb\xe3\ \x07\x22\x43\xce\x68\x3a\x37\xc0\x9c\x3f\xdc\x63\x1b\xf7\xc9\xf3\ \xba\x71\x7f\xc6\x8f\x1d\xa9\x2f\xd5\x9b\xcb\xce\x62\xcb\x74\x7f\ \xc1\x7f\x2b\xe2\x4e\xfe\x23\x82\x8f\xed\x87\xd4\xd4\x54\x9b\x3e\ \xc0\x55\x3f\xe0\xff\xde\xd3\xd0\xfb\xf5\x87\x09\x5a\xf8\x82\xc1\ \x6f\x3e\x0e\x59\x59\x99\x9a\xae\x13\x20\xf7\x31\x2f\x46\x2f\xee\ \x23\xf0\x9c\x01\xb5\x39\x79\xb1\xaa\x12\x4a\x0b\x99\x8f\x4b\x4f\ \xa2\x9c\x1f\x7c\x46\x8c\x23\xaa\x2a\x2f\x53\xfd\x6f\xe1\x19\xa9\ \xc3\xde\x7a\x54\xf0\xdf\x82\xb8\x9b\xff\x3b\x96\x4c\x23\xfe\x2b\ \xa1\x85\x2f\x98\xd9\xfb\x33\x03\xff\x95\x50\xcb\x0f\x4c\xef\xf1\ \xa1\xa6\xeb\x85\x18\xf7\x87\xf6\x8b\x31\xae\x7a\x71\x1f\xe7\xfd\ \xb5\xf2\x59\xa3\xce\x22\x2b\x31\x1a\x4e\x6d\x5b\x09\x9b\xa7\xfa\ \xc1\xdc\x5f\xde\xb5\x99\xbf\x83\xe3\x75\x1c\x73\x6c\x18\xdf\x97\ \xd6\xf0\x92\x23\x82\x5d\x1e\x7f\xa8\x35\x7f\x12\xfc\x77\x1d\x0b\ \x87\x7c\xd7\x88\xff\x5a\xf8\x81\xf5\x33\x47\x98\xe5\xbf\x5a\x7e\ \x60\xed\x94\x40\x4d\xf7\x0e\x78\xce\x1f\xf2\x40\x2f\xfe\xef\x5d\ \x34\xc1\x29\xbe\x61\x4c\x6e\xd0\xc6\x45\x30\xfd\xfb\x0e\xaa\xf9\ \xa1\xbd\x8b\x27\x52\x5f\xee\xcc\xfd\xa8\x55\x33\x49\xf0\xdf\x75\ \x8c\xec\xfc\x34\xa4\xa4\xa4\x58\xf4\x01\x6a\xf9\x82\xa3\xdb\xd7\ \x5b\xe5\xbf\xab\xbe\x00\xd7\x18\xb5\xdc\x43\xe4\xe7\xfc\x4d\xfa\ \xe2\x55\xdd\xf8\x9f\xc1\xc6\xe6\x8e\x72\xed\xec\xae\x75\x30\xee\ \xe3\xe7\x34\xb9\x1f\x8c\xef\xdd\xb7\x64\x32\xd5\x41\x70\xe4\x9e\ \x70\x0c\xa3\x46\xfc\x84\xe0\xbf\x3a\x08\x3d\x79\xcc\x2e\x1f\xe0\ \x8a\x1f\x88\x8b\xba\x60\x37\xff\x9d\xf1\x03\x31\x11\xa1\x9a\xc6\ \x13\xd4\x30\x9b\x2d\xc8\x4c\xd1\x8d\xfb\x98\x57\xe7\x48\x7c\x3f\ \x72\x12\x63\x04\xdc\x71\x6f\x33\x7f\x7e\x13\x0a\xb3\xd2\x1c\xf2\ \x01\x6a\xdc\x9b\xe0\xbf\x3a\xd8\xbd\x72\x2e\xf1\x5f\x09\x2d\x7c\ \x41\xc0\x07\xcf\x39\xec\x03\xec\xf1\x05\x43\xde\x7e\xca\xae\xd8\ \x22\x67\xfd\x00\xae\xfd\xa1\xcd\x9e\xdb\xb3\x41\x37\xfe\x6f\x98\ \xd0\xcf\x6e\x6e\x61\x2e\xae\xbb\x73\x93\x27\x7c\xfe\x32\x14\x64\ \xa5\x3a\x34\x2e\x11\xfc\x6f\x2c\x7a\xf0\x7f\xd9\xb0\x6e\x8d\xf8\ \xaf\x85\x1f\x98\xdd\xef\x2b\xa7\xf9\x6f\xcd\x0f\xcc\xe8\xfd\xa9\ \xa6\x31\x86\x3c\xe7\x6f\xf3\xd4\xc1\xba\xf1\xff\xc4\xe6\x25\x76\ \x73\x4b\xaf\xb3\x48\x67\xfc\xe8\x0b\xd5\x95\x15\x76\xdd\xa3\x1a\ \x31\x94\x82\xff\xea\x60\xcc\xc7\x2f\x58\xe4\xbf\x9a\xbe\x60\xfd\ \xec\x31\xd0\xcb\x45\xfe\x9b\xf3\x05\x1b\x66\x8e\x72\x3a\xde\xd8\ \x1e\x3f\xc0\x73\xfe\xd4\x38\xb3\xd2\x59\x24\x86\x9d\xb2\x8b\x57\ \xb8\x3e\x8f\xf9\xc0\x7a\xdd\x27\x9e\x85\x64\xef\x18\xc5\xd5\xda\ \x61\x82\xff\xea\x21\x3c\xf8\x14\x24\x27\x27\x6b\xea\x07\x8e\xed\ \xdc\x44\xfc\xe7\x50\xcb\x0f\x1c\xdb\xb9\x51\xd3\xbc\x03\x8c\xfb\ \x29\xc9\xcf\xd6\x8d\x53\x88\x8a\xd2\x22\xbb\x78\xb5\x78\xd0\x17\ \xba\xde\x27\x72\xda\xde\x1a\x24\xb8\xaf\x28\xf8\x6f\x2c\x7a\xf1\ \x7f\xff\xda\x85\xc4\x7f\x25\xd4\xf6\x05\xf1\x31\x91\xd0\xbb\xcd\ \xc3\x46\x3e\x40\x0d\x5f\x10\x1b\x19\xae\x69\x0e\x12\xae\xbb\x61\ \x8e\xbd\x5e\x9c\xc2\x9a\x5e\xf6\xf0\x29\x27\x25\x5e\x57\xee\x73\ \x1c\x5e\x3d\xc7\xae\xfb\x5d\x3a\xe4\x1b\xc1\x7f\x13\xd1\x8b\xff\ \xab\xc6\xf4\x69\xc4\x7f\x47\x7c\x81\xbd\x7e\x60\xd8\xc7\x2f\x99\ \xe5\xbf\xb3\x7e\x60\x68\xe7\xe7\x35\xcd\x45\xe4\x39\x7f\x5b\x67\ \x06\xea\xc6\xa7\x69\xdf\xb5\xb7\x8b\x4f\x87\x56\xcf\xd6\x9d\xfb\ \x88\x79\x3d\xdf\xb7\xeb\x7e\x31\x06\x49\xf0\xdf\x58\xf4\xe2\xff\ \xa4\xaf\x5e\xb7\xca\x7f\xb5\xc6\x04\x73\x07\x7f\xc7\x78\xde\xdc\ \xaa\x0f\x70\xc4\x17\xcc\x1e\xf0\x95\xa6\x79\xc9\x3c\xe7\xcf\xd5\ \xb1\xaa\x2b\x58\xd8\xef\x53\xbb\xf8\xb4\xcc\xff\x5b\xa7\xff\xc6\ \xd8\x8f\x9e\x85\x39\xdd\xdf\xb1\x8a\x91\xef\x3d\x61\xd7\x77\x61\ \xcc\x20\x9e\x8b\x68\xeb\x7e\xb1\x4e\xa9\xe0\xbf\xb1\xe8\xc5\x7f\ \x44\xe4\xf9\x60\x48\x4a\x4a\x22\xa8\xe1\x0b\xcc\xf1\x7f\xd3\xbc\ \x09\x32\xff\x9b\xab\xe2\x07\x36\xce\x19\xa7\x69\x7d\x02\xac\xf5\ \x5d\x5e\x52\xa8\xeb\x9a\x1a\xf2\xda\x1e\xfe\x4f\xec\xf2\x8a\xd3\ \x7f\x03\xf3\x72\x6c\x7d\xff\xaf\x7d\x3e\xb2\xfb\xfb\x30\xce\xd8\ \xd6\xf7\x1d\x58\x3e\x4d\xf0\xdf\x44\xf4\xe4\xff\xe1\xcd\x2b\x0c\ \xfc\x57\xd3\x0f\x28\x7d\xc1\xf1\xbd\x5b\x4d\xf8\xef\x9a\x2f\x38\ \xbe\x67\x8b\xa6\xb5\x4a\x30\xee\x27\x32\x68\x8f\x6e\xdc\x47\xac\ \x1a\xde\xd5\x2e\xfe\xbb\x52\x6f\x53\x6d\xfe\xc7\x9e\x3d\x62\xf3\ \xfb\x8e\xae\x9b\x2f\xf8\x6f\x22\x7a\xf2\x7f\xdd\xc4\x81\x8d\xf8\ \xaf\xb6\x2f\x88\x8f\x89\x66\xbc\x6d\x61\xc5\x07\xd8\xef\x07\xfa\ \xb4\x69\x01\x89\xb1\xd1\x9a\xd5\x2c\xc2\xbd\x7f\xb4\xd3\x9d\xf3\ \x46\xe9\xca\x7f\x7b\x6a\xfd\x54\x55\x94\xb9\xf4\x37\xd4\xe6\xff\ \x85\x63\xbb\x6d\x7e\xdf\xb1\x0d\x0b\x04\xff\x4d\x44\x4f\xfe\x4f\ \xfb\xde\xc7\x2a\xff\xd5\xf2\x03\x23\x3e\x6b\x0d\x3d\x5b\x5b\xe3\ \xbf\x7d\xbe\x60\xf8\xa7\xaf\x6a\x5a\xbf\x8c\xe7\xfc\xe1\xdc\x57\ \x4f\xfe\xdb\xd3\xff\x17\x66\xa7\x7b\x14\xff\xed\xa9\x4b\x7a\x68\ \xd5\x2c\xc1\x7f\x13\xd1\x93\xff\x81\x1d\x5b\x42\x6c\x64\x04\x24\ \x26\x26\x12\xb4\xf2\x05\xf3\xfd\x7f\x22\xfe\x2b\xe1\x8c\x1f\x98\ \xef\xf7\x83\x66\x35\x8b\x10\x98\xf3\x87\xb9\x73\x58\x67\x57\x4f\ \xfe\xe3\x9e\xbe\x2d\x2e\xe1\x9e\xbb\x27\xf1\x1f\x73\xfc\x6c\x7d\ \xdf\xfe\xa5\x53\x04\xff\x4d\x44\x4f\xfe\x23\x8e\xef\x58\x6f\xe0\ \xbf\x56\x7e\xe0\xb7\x85\x53\x1a\xf1\xdf\x7e\x3f\xd0\xe0\x0b\xb6\ \x2c\x98\xac\x69\xfd\x32\x8c\xfb\x89\x39\x7d\x48\x57\xee\x23\xe6\ \xf6\x78\xcf\x26\x97\x2a\x4b\x8b\x3d\x8a\xff\xd9\xc9\xb1\x36\xbf\ \xcf\xd5\x5a\x40\x82\xff\xea\x63\xe3\xb4\x80\x46\xfc\x57\xdb\x17\ \x9c\xd8\xbf\xc3\x22\xff\x1d\xf1\x05\x27\xd9\xf7\x68\x55\xb3\x08\ \xfb\x7f\x8c\xfb\xc1\x9c\x7b\xbd\xf9\x8f\x71\xc7\xb6\xb8\x84\xf7\ \x6a\xef\xfe\x9c\xd6\xfc\xc7\x18\x40\xac\x29\x64\xeb\xfb\xf0\xfc\ \x60\xc1\x7f\x63\xd1\x9b\xff\x33\x7f\x7e\xcb\x2a\xff\xd5\xf0\x03\ \x09\x71\xb1\xd0\xa7\x9d\xb7\x5d\x3e\xc0\x92\x1f\xe8\xd3\xc6\x8b\ \x7d\x4f\x8c\x66\x35\x8b\x78\xce\xdf\xaf\x7d\x3e\xd4\x9d\xff\x78\ \xc6\x4f\x8d\x7c\xe6\xa8\x35\x60\x1e\xae\x27\xf0\x1f\x73\x0f\x6d\ \x7d\x17\x62\x16\xb3\x35\xc1\x7f\x63\xd1\x9b\xff\xb8\xcf\x9d\x10\ \x1b\x05\x09\x09\x09\x04\xad\x7c\xc1\xc8\x2e\xed\xec\xe6\xbf\x39\ \x5f\x30\xf2\x8b\xb6\x4e\xe7\x23\xda\xe3\x07\x30\xe7\x0f\x73\xd9\ \x90\x7b\x7a\xf3\x1f\x91\x9d\x64\x7b\x3c\xbd\x69\xf2\x40\x4d\xf9\ \xbf\x79\xca\x20\x9b\x31\x42\x88\xd8\xb3\x47\x6d\x7e\x57\x6d\x6d\ \x8d\xc8\xff\x31\x23\x7a\xf3\x1f\x71\x7a\xef\x16\x03\xff\xb5\xf2\ \x03\xbf\x06\x76\x73\x8a\xff\x1c\x0b\x86\x76\xd3\xb4\x66\x11\xc6\ \xfd\xc4\x87\x1c\xd7\x9d\xf7\x1c\x61\x87\xb6\xd9\xe4\x94\x2b\x39\ \xf5\xf6\xf0\x5f\x4d\xa8\x91\xab\x20\xf8\xaf\x0d\xb6\xce\x19\xd5\ \x88\xff\x6a\xfb\x82\x2d\x8b\x67\xb8\xc4\xff\x6d\x4b\x66\x68\x5a\ \xab\x04\xe3\x7e\x0e\x2c\x9f\xae\x3b\xef\x39\xf6\x2d\x9e\x64\x93\ \x53\x58\xc3\xd7\xd9\xfa\xfa\xee\xe6\xbf\xa8\xff\x61\x5e\x3c\x81\ \xff\x73\x7b\x7e\x40\x1c\xb6\xe6\x03\x5c\xf5\x03\xa7\x0e\xed\x81\ \x1e\x8c\xc7\x3d\x9c\xe4\xff\x99\x23\xfb\x34\xab\x55\x82\x71\x7f\ \x68\xa3\x6a\x9f\x57\xe3\x0a\xe6\xf7\xea\x6c\x17\xaf\x9c\xcd\x01\ \x70\x37\xff\x37\x4e\x1a\x20\xf8\x6f\x46\x3c\x81\xff\xd8\x87\x24\ \x27\xc4\x43\x7c\xbc\x04\x5b\x7e\xc0\x19\x5f\x80\xdf\xdb\xa7\x7d\ \x2b\x83\x0f\x70\xc4\x17\xf4\x69\xd7\x92\xfd\xcd\x78\xcd\x6a\x95\ \x60\xce\x5f\xcd\xc5\x6a\x18\xf1\xce\x3f\x75\xe7\xbd\x41\x27\x6f\ \x3c\x62\xd7\x99\x5f\xce\xee\x57\xba\x93\xff\x58\x3f\x1c\x6b\x08\ \x0b\xfe\x37\x16\x4f\xe0\x3f\x22\xf8\xd0\x4e\x03\xff\x95\x50\xd3\ \x0f\x8c\xf9\xa6\x63\x23\xfe\xdb\xe3\x07\xc6\x7c\xe3\xab\x69\xad\ \x92\x92\x92\x12\x48\x8e\x38\xab\xbb\x0e\x4c\x81\x35\x08\x6c\x73\ \xeb\x12\xcc\xee\xf6\xb6\x47\xf3\x1f\xcf\x03\x56\xa3\x3d\x04\xff\ \xb5\xc3\xae\x45\x13\xcd\xf2\x5f\xcd\x31\xc1\x82\xe1\x3d\x2d\xf2\ \xdf\x9a\x2f\x58\x34\xa2\x97\xa6\xb5\x4a\xaa\xaa\xaa\xa8\x86\x85\ \xde\x3a\x30\x85\xbd\x67\xfe\x26\x85\x9d\xa6\x58\x4e\x4f\xe5\xbf\ \x5a\x75\x14\x05\xff\xb5\x03\xe6\x9c\x23\x47\xad\xf9\x00\x57\x7d\ \xc1\xb6\x65\xb3\xa1\xc7\x6b\xcd\x25\x38\xe0\x07\x76\xac\x98\xab\ \x59\x7d\x02\xe4\x3f\xf6\xa1\xae\xd6\xa6\xd1\x02\xb8\x17\x59\x5a\ \x90\x6b\x17\xc7\xb6\xcf\x1e\xee\x91\xfc\xc7\x38\x45\xac\x67\x24\ \xf8\x6f\x5e\x3c\x85\xff\xc3\x3b\xfd\x03\xd2\x52\x92\x21\x2e\x2e\ \x8e\xa0\x85\x1f\x38\x73\xf4\x40\x03\xff\x95\xb0\xe1\x07\x82\x83\ \x0e\x69\x56\xab\x04\x73\xfe\x70\x6f\x7a\xd4\xfb\x4f\xe9\xae\x03\ \x73\xc0\x9c\x19\x7b\x78\x86\xf5\xff\xb1\x0e\x8f\xa7\xf1\xdf\xd5\ \x9c\x5f\xc1\x7f\xf7\x21\xec\xc4\x01\x03\xff\x95\x50\xcb\x17\xe0\ \xef\xf5\xed\xf0\x77\xf3\x3e\xc0\x82\x1f\xe8\xdb\xe1\x51\x5a\xfb\ \xd3\xaa\x3e\x01\xc6\xfd\xa4\xc5\x84\xe9\xde\xf6\x96\x30\xb1\xcb\ \xcb\xb4\x0e\x88\xf5\x40\x6d\x21\x37\x2d\x11\x26\x7d\xf9\x9a\xc7\ \xf0\x1f\xcf\x13\xc5\x3a\x43\x82\xff\x96\xc5\x93\xf8\xbf\x77\xd9\ \x34\xb3\xfc\x57\xd3\x0f\x8c\xfb\xfe\x2d\xcb\xfc\x37\xe3\x0b\xc6\ \xff\xf8\xb6\xa6\xf5\x09\xca\xcb\xcb\x21\x68\xc3\x42\xdd\xdb\xde\ \xdd\x70\x07\xff\x0f\xac\x50\x37\x9e\x42\xf0\x5f\x5b\x60\x1c\x37\ \xf2\xca\x9a\x0f\x70\xd5\x17\x2c\x1a\xd5\x0f\x7e\x61\xfc\xe6\xb0\ \xe5\x07\x96\x8c\xe9\xaf\x69\x7d\x02\x8c\xfb\x59\x39\xfc\x67\xdd\ \xdb\xfe\x56\xe3\x3f\x9e\x0f\xa6\xf6\x7e\xaa\xe0\xbf\xb6\xc0\x7c\ \xb2\x8c\xf4\x74\x88\x8d\x8d\x25\x68\xe1\x07\x76\xac\x98\x6f\xc4\ \x7f\x5b\x7e\x60\xd7\xea\x05\x9a\xe5\x25\x63\xde\x0f\xae\xfd\x8d\ \xfd\xe8\x19\xdd\xdb\xde\xdd\xc0\xf3\xbb\x96\x0c\xfe\x52\x33\x4c\ \xfd\xa6\x8d\xea\xf7\x2c\xf8\xaf\x3d\xa2\xce\x06\x19\xf8\xaf\x84\ \x5a\xbe\xe0\x6c\xd0\x21\xb3\xfc\xb7\xe4\x0b\xce\x9d\x0c\x72\x2a\ \xde\xd8\x1e\x3f\x80\x39\x7f\x58\xb7\x52\xef\x36\x17\xb0\x0f\x82\ \xff\xda\xe3\xf0\x9a\xb9\x66\xf9\xaf\x96\x1f\xc0\xcf\xfb\xfa\x3e\ \x66\xd3\x07\x20\xfa\x77\x7c\xdc\x66\x5c\x81\x2b\x63\x02\x8c\xfb\ \x39\xb9\x75\xb9\xee\x6d\x2e\x60\x1f\x04\xff\xb5\xc7\x8a\xc0\x1f\ \x88\x1b\xd6\x7c\x80\xab\xbe\x60\xc2\x4f\xef\xda\xc5\xff\x49\xdd\ \x3e\xd0\x34\x2f\x19\xe3\x7e\xd6\x8e\xe9\xa9\x7b\x9b\x0b\xd8\x07\ \xc1\x7f\xed\x81\xfb\xe0\x59\x59\x99\x10\x13\x13\x43\xd0\xc2\x0f\ \x2c\x19\x37\xd0\x2e\xfe\xaf\x98\x30\x44\xb3\xbc\x64\x9c\xff\xe3\ \x3a\xd5\x84\xcf\x5e\xd2\xbd\xcd\x05\xec\x83\xe0\xbf\x7b\x10\x1f\ \x11\x6c\xe0\xbf\x12\x6a\xf9\x82\x5d\x6b\x16\xd9\xc5\xff\xbd\xeb\ \x97\x69\x96\x8f\x88\x39\x7f\xb8\x5f\xae\x77\x5b\x0b\xd8\x0f\xc1\ \x7f\xf7\x20\x68\xd3\x62\xe2\xb2\x39\x1f\x60\xaf\x2f\xb0\xc6\xff\ \xe0\x13\x47\x19\xbf\x1f\xb2\xc9\xff\xd0\x33\x27\x35\xc9\x45\x44\ \x60\xad\xef\xb3\xbb\xd6\xea\xde\xd6\x02\xf6\x43\xf0\xdf\x3d\x58\ \x3d\xaa\x3b\x8d\x8f\xad\xf1\xdf\xd5\x31\x41\xff\x37\x9f\x90\x7d\ \xc0\x43\x66\x7d\xc1\xc0\xb7\xff\xa5\x49\x0e\x12\xf7\x05\x18\xf7\ \xb3\x71\x62\x7f\xdd\xdb\x5a\xc0\x7e\x08\xfe\xbb\x07\x18\xb3\x99\ \x9b\x9b\x0b\xd1\xd1\xd1\x06\xa8\xe1\x0b\x94\xfc\x9f\xd8\xad\xb3\ \x09\xff\x8d\xfd\xc0\x94\x1e\x9f\x68\x96\x8b\x88\xfc\xc7\xb8\x9f\ \xc9\x5f\xb6\xd6\xbd\xad\xf5\x06\xae\xf7\x38\x9a\x3b\xa8\x17\x04\ \xff\xdd\x87\xe4\xe8\x70\x23\xfe\xab\xe9\x07\x10\xcb\x27\x0e\xb1\ \xc0\x7f\x09\x2b\x27\x0f\xd5\x2c\x17\x11\x73\xfe\x8a\x72\x32\x75\ \x6f\x63\x2d\x81\x35\x5d\x66\x77\x7f\x07\x36\x4d\x1a\x08\x47\xd7\ \xce\xa3\x33\x0d\x53\x2e\x04\x43\x41\x56\x2a\x9d\x71\x62\x36\x5e\ \xbf\xa2\x0c\x8a\x73\x33\x21\x3d\x96\xe9\xfe\xd4\x41\x38\xf1\xdb\ \x52\xd8\x32\x3d\x00\x16\xf4\xfb\xc4\xa5\xb3\x06\x05\xff\x2d\x8b\ \xa7\xf2\xff\xf4\xf6\x55\xc4\x65\x73\x3e\x40\x0d\x5f\xb0\x7b\xdd\ \x52\xe8\xfe\xea\x43\x04\x73\xfc\xdf\xbf\x79\x95\x66\xb9\x88\x38\ \xb6\x09\xd9\xbf\x59\xf7\x36\x56\x1b\x58\x63\x67\xfb\x9c\x11\x54\ \x13\xa8\xb2\xac\x54\xd5\x78\x5e\xac\x8f\x94\x14\x7e\x06\x0e\x2c\ \x9b\x06\xd3\xbf\xef\x20\xf8\xaf\x92\x78\x2a\xff\xd7\x8f\xef\x43\ \xf9\x71\xd6\xf8\xef\x8a\x1f\x08\x3d\x7b\xd2\xc0\x7f\x73\x7e\x20\ \x3c\x24\x58\xb3\x1c\xa4\xe2\xe2\x62\xd8\x3c\xd5\x4f\xf7\x36\x56\ \x03\x38\x76\xc7\x1a\x80\x58\x83\x1b\xf3\x98\xdd\x91\xd3\x8b\xc8\ \x60\x63\x04\xac\xe9\xe7\xce\x7a\xe9\x82\xff\xee\x03\xe6\x9d\xe6\ \xe7\xe7\x43\x54\x54\x94\x01\x6a\xfb\x82\x81\x6f\xff\xbb\x91\x0f\ \x40\xf8\xbd\xf7\xbc\x66\xf9\x47\x08\x8c\xfb\xd1\xab\x0f\x53\x13\ \x18\x67\x8f\xf1\xcb\xee\xe2\xbc\x39\xe0\x7c\x01\xcf\x21\x70\xc7\ \x1a\x82\xe0\xbf\x7b\x91\x99\x14\x6b\xc4\x7f\xb5\xfd\xc0\xe4\x1e\ \x9f\x98\xe5\xff\xb4\x3e\x5f\x68\x96\x83\x84\xe3\x7f\xac\x9b\xdd\ \x54\xd6\xbc\xcc\x61\x4c\xe7\xa7\x21\xfc\xc8\x0e\x5d\x79\x6f\x8a\ \x94\xc8\x73\x30\xed\xbb\xf6\x82\xff\x0e\x8a\x27\xf3\xff\xdc\x9e\ \x0d\xc4\x41\x73\x3e\x40\x0d\x5f\xb0\x7c\x52\xa0\x59\xfe\xaf\x9e\ \x31\x4a\xb3\x1c\x24\xcc\xf9\x43\xee\xe8\xdd\xb6\xce\x02\xcf\x06\ \xc5\xdc\x5a\xbd\xf9\x6e\x0e\xb8\xe6\xb0\x66\xd4\x2f\x82\xff\x0e\ \x88\x27\xf3\x1f\xcf\x7f\xc2\xb5\x72\x6b\xfc\x77\xc5\x0f\xec\xdd\ \xb8\xc2\x2c\xff\x0f\x6e\x5b\xaf\x59\x0e\x12\xd6\xfa\xde\x36\x6b\ \x98\xee\x6d\xeb\x0c\x70\x1d\x5e\xed\x75\x3d\xb5\x81\xf9\xd4\xdb\ \x66\x0e\x15\xfc\xb7\x53\x3c\x99\xff\x53\xbf\x69\x4b\x71\x72\x91\ \x91\x91\x06\xa8\xe9\x0b\xce\x07\x9f\x6d\xcc\xff\xd7\x9a\x43\xf8\ \xf9\x10\xcd\x72\x0f\xca\xca\xca\x5c\x3a\x37\x53\x2f\xe0\xb9\xa4\ \xd5\x95\xe5\xba\xf3\xdb\x5e\x1f\xe0\xca\xd9\x84\x82\xff\x9e\x83\ \xbc\xcc\x54\x23\xfe\xab\xed\x07\x06\xbf\xf7\x9c\x11\xff\x03\x3e\ \x7a\x45\xb3\xbc\x03\xe2\x7f\x71\x01\x9d\x79\xaa\x77\xbb\x3a\x82\ \x71\x9f\x3c\x4f\xeb\x6c\x7a\xf3\xda\x11\xe0\xf9\xc5\xf6\x9e\x1f\ \x2c\xf8\xaf\xbf\x8d\x59\x02\x9e\x41\x81\xdc\x31\xe7\x03\xd4\xf0\ \x05\x53\x7a\x77\x81\x6e\x8c\xf7\xdd\x64\xfe\xcf\x1c\xf8\x9d\x26\ \xf1\xc6\x08\x8c\x69\x8e\x3a\xb1\x4f\xf7\x36\x75\x14\xb1\x67\x8f\ \xe8\xce\x67\x67\xa0\x76\x0d\x30\xc1\x7f\xf7\x63\xeb\x8c\x00\x5a\ \x33\xbb\x70\xe1\x82\x55\x1f\xe0\xac\x1f\x58\x39\x6d\xb8\x81\xff\ \x88\xb5\x73\xc6\x6b\x96\x77\x90\x9d\x9d\x0d\xbb\xe6\x8f\xd1\xbd\ \x4d\x1d\x01\xd6\x27\xd0\x9b\xc7\xae\x40\xcd\x73\x55\x04\xff\xdd\ \x8f\x19\x3f\xfa\x52\x8d\x6c\xe4\x3f\x87\x2d\x3f\xe0\x88\x2f\xd8\ \xb7\x79\x8d\x11\xff\x0f\xef\xdc\xac\x49\xbc\x31\xf2\x1f\x9f\x03\ \xd7\xcf\xf5\x6e\x53\x7b\x81\x31\xbc\x05\x99\x29\xba\x73\xd8\x15\ \xe0\xb9\x04\x6a\xd5\x58\x10\xfc\x77\x3f\x70\x9f\xbc\x30\x37\xcb\ \x88\xff\x8e\xf8\x02\x5b\x3e\xe0\x7c\x48\x30\x74\x7f\xed\x61\xe2\ \xfe\x2f\xad\x5b\x40\x44\x58\x98\x66\x79\x07\x25\x85\x05\x4e\x9f\ \x97\xad\x07\x9a\x7a\xdf\xcf\x71\x64\xed\x5c\xc1\x7f\x0b\xe2\xe9\ \xfc\x47\x5c\x08\xda\x4d\xfd\xa7\x25\x1f\xe0\xea\x98\x60\x48\xe7\ \x97\x88\xff\x81\x9f\xb5\xd1\x2c\xde\x18\xd7\xfe\x70\x1e\xad\x77\ \x5b\x3a\x82\xc4\xb0\x53\xaa\x71\x10\x63\x83\x79\x6e\x0f\x9e\xc7\ \x19\x17\x7c\x8c\xf4\x8a\xb1\x10\x08\x7c\x1d\x7f\x2e\x88\x3e\xcf\ \x4b\x4f\xa6\x78\x7f\xb5\xfe\x36\x9e\x4d\xa2\x46\x9c\xb0\xe0\xbf\ \x3e\xd8\x39\x6f\x14\x64\x66\x66\x42\x44\x44\x84\x55\x1f\xe0\xac\ \x2f\x98\xde\xef\x2b\xe2\xff\x2c\xbf\x9f\x34\x8b\x35\x4e\x4f\x4f\ \x87\x7d\x4b\x26\xeb\xde\x96\xf6\x02\x73\x79\x2e\x5d\xaa\x75\x8a\ \x6f\x18\x23\x10\x7b\xe6\x30\xec\x5f\x3a\x05\x16\x0d\xec\x42\x67\ \x02\x0d\x7b\xeb\x51\x87\xfe\x3e\x8e\xfb\xf0\x1e\xe6\xf7\xea\x4c\ \x39\x45\x11\x47\x76\x42\x49\x7e\x8e\xd3\x3e\x40\x8d\xf3\x15\x05\ \xff\xf5\x01\xe6\x91\x62\xce\x0c\xf2\x9f\x43\x4d\x3f\xb0\x7a\xc6\ \x18\xe2\xff\xc6\x5f\xa7\x68\x16\x6f\x8c\xb9\x0c\x0b\xfa\x7e\xac\ \x7b\x5b\xda\x8b\xdf\xa6\x0d\x71\x98\x63\x78\x8e\x19\xe6\xfb\x0e\ \x7f\xfb\x31\x4d\xee\x09\xf7\x4d\x91\xc7\x51\x27\xf7\x3b\xec\x9b\ \x4e\x6f\x5f\x29\xf8\x6f\x46\x9a\x02\xff\x87\xbe\xf1\x08\x94\x17\ \x17\x12\xa7\x95\x3e\x40\x2d\x5f\xb0\x7f\xeb\x7a\xe8\xfa\xca\x43\ \x70\x74\xef\x76\xcd\x62\x8d\x8b\xd9\xdc\x5f\x2b\x5e\x68\x81\x73\ \x7b\x37\xda\xcd\xad\xea\xca\x0a\xd8\x31\x67\xa4\x5b\xef\x6f\x5e\ \xcf\x0f\x1c\x5a\x9b\xcc\x4a\x88\x12\xfc\x37\x23\x4d\x81\xff\x08\ \xcc\x29\xc7\xfc\x19\x73\xfc\x77\xd5\x0f\x84\x9d\x0f\x81\x9e\xed\ \x1f\x81\x88\xf0\x70\xd5\x63\x0c\x39\xe2\xd8\xdc\x56\xef\x36\x74\ \x04\x39\x29\xf1\x76\xf1\x0a\xcf\x07\x9f\xf1\x63\x47\x5d\xee\x11\ \xf3\x90\x70\xcc\x61\xef\xfa\xc3\xa8\xf7\x9f\x14\xfc\x37\x91\xa6\ \xc2\xff\xbd\x8b\x26\xd0\xfe\xb9\x35\xfe\xbb\xe2\x0b\x66\x0e\xfe\ \x51\xb3\x38\x43\xac\xf7\xa5\xf6\x59\x94\x5a\x02\xe7\xea\xf6\xe4\ \xf2\xe3\x18\x7c\x61\xbf\x4f\x75\xbd\x57\xdc\xdb\x2b\x2f\x29\xb4\ \xcb\x07\xcc\xfd\xe5\x5d\xc1\x7f\x13\x69\x2a\xfc\x9f\xdf\xfb\x43\ \x28\x2d\x2d\xb5\x9b\xff\x8e\xfa\x81\x23\x7b\xb6\x69\x16\x63\x88\ \xb5\xbe\x31\x57\x5e\xef\x36\xb4\x17\x93\xbf\x7a\xdd\x2e\x3e\x85\ \x1d\xde\xae\xfb\xbd\x22\xf6\x2c\x9c\x60\xd7\xfd\xae\x1e\xd9\xcd\ \xa5\xbf\x23\xf8\xaf\x1f\xb0\x4f\xaa\x2c\x2f\xb5\xb8\x06\xa0\xc5\ \x98\x40\x2d\x5f\x50\x90\x9f\x0f\x23\xdf\x7d\x42\xf7\x36\xb4\x17\ \x98\xe7\x67\xd7\x9a\xba\xdf\xd7\xba\xdf\x2b\x02\xf3\x13\xec\x59\ \x0f\x74\x75\x8d\x42\xf0\x5f\x5f\xe0\xfe\x30\xd6\xcf\x70\x96\xff\ \x7a\xf9\x81\xf8\xd0\x93\xba\xb7\x9d\x23\x58\x1e\xf0\x9d\x5d\xfc\ \x1f\xfd\xc1\xbf\x75\xbf\x57\x0e\x7b\x6a\x12\xe0\x7e\xa4\x2b\x7f\ \x43\xf0\x5f\x5f\x1c\x58\x3e\x1d\x72\x72\x72\x20\x3c\x3c\xdc\x65\ \x1f\xe0\x2e\x5f\x80\x7b\xff\x6a\xc5\x9f\xb9\x0b\x78\xfe\x82\x2d\ \x2e\x61\xad\x5e\xbd\xef\x53\x09\xac\x0d\x6a\xeb\x9e\x5d\xcd\x05\ \x10\xfc\xd7\x17\x18\x4b\x82\xe7\x66\x20\xff\x39\x3c\xdd\x0f\x60\ \x0d\x53\xec\x4f\xf5\x6e\x3b\x47\xb0\x6e\x6c\x2f\x9b\x5c\xc2\x58\ \x3e\xbd\xef\x53\x09\xcc\xab\xb4\x75\xcf\x41\x1b\x16\xba\xf4\x37\ \x04\xff\xf5\x05\xd6\x80\xaf\xae\xaa\x24\x2e\x2a\x7d\x80\x27\xfb\ \x82\xdc\xdc\x1c\x18\xf5\xc1\xbf\x74\x6f\x3b\x47\xb0\x6a\x78\x57\ \x9b\x5c\xc2\xfc\x7a\x8c\xcb\xd0\xfb\x5e\x39\xec\xd9\x07\x3c\xb8\ \x72\xa6\x4b\x7f\x43\xf0\x5f\x7f\x24\x47\x9c\xa5\xb3\xb3\xcd\xf1\ \xdf\x13\xfd\x40\x7c\xf8\x59\xdd\xdb\xcc\x51\xe0\xba\x9e\x3d\xf3\ \x7f\xac\xd1\xac\xf7\xbd\x72\x60\x4d\x55\x5b\xf7\xbb\x77\xf1\x44\ \x97\xfe\x86\xe0\xbf\xfe\x38\xb4\x7a\x36\xe4\xe5\xe5\x41\x58\x58\ \x98\x55\x1f\xe0\x29\xbe\x20\x68\xa3\x6b\x63\x4e\x3d\x30\xaf\xe7\ \xfb\x76\xf1\x1f\xeb\xef\xeb\x7d\xaf\x08\xac\xa7\x66\xcf\xfd\xe2\ \x59\x42\xae\xfc\x1d\xc1\x7f\xfd\x81\xf1\xdf\x95\x95\x95\xc4\x7f\ \x25\xdc\xe5\x0b\x1c\xf1\x03\x18\xaf\xb8\x6a\x44\x57\xdd\xdb\xcc\ \x51\xe0\x7e\x9a\x3d\x7c\xc2\x5c\x3d\x4f\xa8\x65\x86\xe7\x28\xdb\ \x73\xbf\x78\x4e\x89\x2b\x7f\x47\xf0\x5f\x7f\x8c\x7c\xef\x09\xa8\ \xad\xa9\x91\xe2\x76\x4d\x7c\x80\xa7\x8d\x09\xb0\x6e\xd1\xb8\x8f\ \x9f\xd3\xbd\xcd\x1c\x05\xe6\xde\x61\x4c\xbf\x3d\x9c\xda\x31\x77\ \x94\xae\xf7\xba\xb0\xff\x67\x76\xe7\x02\xb9\x1a\xa7\x2c\xf8\xef\ \x19\xc0\xb5\x1e\x5c\x57\x37\xc7\x7f\x4f\x1a\x13\xc4\x85\x05\xeb\ \xde\x56\xce\x22\x35\x2a\xc4\x2e\x4e\x61\x9c\xb0\x5e\x67\x99\x61\ \xec\xb1\xbd\xb1\xbf\x58\xbb\xd8\xd5\xda\x2b\x82\xff\x9e\x01\xdc\ \xc7\xc1\x3a\xfa\xe7\xcf\x9f\xb7\xe9\x03\xf4\x1c\x13\x04\xfd\xb6\ \x54\xf7\xb6\x72\x16\x27\x36\x2f\xb1\x8b\x57\x1c\x98\x9f\x8f\xf9\ \xfa\xee\xb8\x37\x8c\xa5\xc4\x7c\x0a\x47\xce\x1b\xc4\x5a\x26\xae\ \xfe\x5d\xc1\x7f\xcf\xc0\xca\x61\x3f\x41\x75\x75\x35\xf1\x5f\x09\ \x4f\xf2\x05\x18\xf7\x87\xfb\xe8\x7a\xb7\x95\xb3\xb0\x67\x0f\xd0\ \x14\x58\xb3\x07\xeb\x35\x2f\x1a\xf0\x39\x0c\xef\xf4\x0f\x55\xef\ \x07\xd7\x19\x66\x75\xed\x04\x41\x1b\x17\x41\x65\x69\xb1\xc3\xf7\ \xa6\x46\xfe\x95\xe0\xbf\x67\x00\xf3\x3e\x71\xce\x47\xf5\xfb\x4c\ \x7c\x80\xa7\xf8\x01\xac\xf5\x3d\xb1\xcb\x2b\xba\xb7\x95\xb3\xc0\ \x58\x8b\xaa\xf2\x32\x87\x79\xc6\x71\xb1\xaa\x12\x92\xc2\x4e\x53\ \xec\x23\xd6\x12\xc1\x75\x5b\x9c\x7f\xa3\xee\xf0\xbb\xcd\xfd\x4d\ \xcc\xf1\xc0\x98\xe2\xa9\xdf\xb4\xa1\x58\x2f\xdc\x5f\x38\xb0\x7c\ \x1a\x44\x9f\x3a\xe8\x14\xe7\x95\x98\xf5\xf3\x5b\x82\xff\x66\xa4\ \x29\xf2\x1f\x81\xe7\xce\xe2\xd9\x60\xe6\xf8\xef\x09\xbe\x20\x26\ \x3c\x44\xf7\x36\x72\x15\xa1\x07\xb6\xb8\xc4\x39\x9b\x3e\xa2\xba\ \x8a\x6a\xf3\x61\x2c\xb1\x96\x7f\x27\x27\x25\x4e\x95\xf6\x10\xfc\ \xf7\x1c\x9c\xdc\xba\x9c\xea\x69\x87\x86\x86\xda\xf4\x01\x7a\xf8\ \x81\x63\xbf\xad\xd0\xbd\x8d\x5c\x05\xd6\x2a\xd7\x92\x97\xee\xc2\ \x96\xe9\xfe\x82\xff\x16\xa4\xa9\xf2\x7f\xed\xe8\x1e\x50\x53\x53\ \x43\xdc\x46\x1f\xc0\xe1\x29\xbe\x60\xe3\x44\xcf\x88\x8d\x71\x15\ \xf1\x21\xc7\x75\xe7\xaf\x2b\x28\xc9\xcf\x56\xad\xee\x9a\xe0\xbf\ \xe7\x60\xfc\xa7\x2f\x90\x7e\xb1\xb6\x96\x92\xff\x9e\xe0\x07\xb0\ \x56\xf9\x94\xaf\xdb\xe8\xde\x46\x6a\x00\xcf\x5f\xc1\x58\x7f\xbd\ \x79\xec\x2c\xd4\x5c\x83\x15\xfc\xf7\x2c\xe4\xa6\x26\x50\x8c\x8d\ \x39\xfe\xeb\xe9\x0b\x62\x22\x42\x75\x6f\x1b\x35\x81\x79\xb3\x7a\ \xf3\xd8\x19\x60\x0d\x72\x35\xdb\x41\xf0\xdf\xb3\x80\x71\x9f\x58\ \x17\x3c\x24\x24\x84\xe0\x29\x7e\xe0\xe8\xd6\x55\xba\xb7\x8d\x9a\ \xc0\x3c\xbf\xa6\x76\x06\x28\xd6\x03\x19\xfb\xd1\x33\x82\xff\x36\ \xa4\x29\xf3\x7f\xe3\xc4\xfe\x50\x5b\x5b\x4b\xbc\xe5\x3e\xc0\x1e\ \x3f\xa0\xb5\x2f\xd8\x38\x45\x9f\x78\x38\x2d\x81\x5c\xc2\x3d\x17\ \xbd\x79\x6d\x0f\xca\x8a\xf2\x35\xa9\x49\x2c\xf8\xef\x59\xc0\xfd\ \x75\x1a\xe7\xc5\xc6\x1a\xf1\xdf\x11\x5f\xa0\xb6\x1f\xc0\xbc\x84\ \x19\x3f\xf8\xea\xde\x36\x5a\x60\xcc\x87\xcf\x50\xce\x8f\xde\xfc\ \xb6\x06\x5c\xef\xc3\x35\x0b\x2d\x9e\x5f\xf0\xdf\xf3\x80\xe3\x3c\ \xac\xaf\x6b\x89\xff\xee\x1e\x13\x44\x86\x87\x52\xfe\x8c\xde\xed\ \xa2\x15\x70\x2d\xfd\xec\x4e\xfb\xf2\xed\xdc\x0d\xac\x01\xa6\xd6\ \x59\xbf\xb7\x0b\xff\xfd\x7d\xbd\x3e\xd0\xdb\xa6\x5c\x41\xc8\xbe\ \x4d\x50\x56\x56\x06\xe7\xce\x9d\x23\xd8\xf2\x03\x6a\xf9\x02\x4b\ \xfc\x3f\xba\x6d\x8d\xee\x6d\xe2\x0e\x6c\x18\xdf\xd7\xa5\xf3\xf8\ \xd4\x04\xe6\xf6\xe0\xd9\x8a\x8e\x9e\x31\x28\xf8\xdf\xac\x59\x60\ \x47\xaf\xb6\x7a\xdb\x92\x2b\xc0\xdc\xb3\x4b\x97\x2e\x11\x27\xb9\ \x0f\x70\xa7\x1f\x30\xf5\x05\x1b\xa7\x05\xea\xde\x26\xee\xc2\xa8\ \xf7\x9f\x82\xc3\x6b\xe6\x42\x65\x59\x89\x2e\xbc\xc7\x7c\x83\xe0\ \x3d\xeb\xe9\x7c\x51\x77\x3c\xef\xad\xc8\x7f\xff\xf6\x8f\x3c\xa1\ \xb7\x1d\xb9\x82\x69\xdf\xb5\x27\x5b\xc0\xf3\xb5\x95\xfc\xd7\xc3\ \x17\x20\xff\x67\xaa\x10\x67\xde\xd4\x80\x7e\x00\xcf\x68\x76\xd7\ \xda\x40\x7e\x46\x32\x1c\x5a\x35\xcb\xed\xf5\xc7\x6e\x45\xfe\x8f\ \x6e\xe7\x75\x97\xde\xf6\xe3\x2a\x8a\xf3\xb2\xa8\x2e\xb8\x25\xfe\ \xbb\xcb\x0f\x44\x84\x85\x7a\x54\x4d\x4c\x3d\x30\xed\xdb\x76\x74\ \xce\x46\x64\xd0\x1e\x28\x2f\x2e\x50\x85\xef\x98\x1f\x10\x17\x7c\ \x8c\xea\xf7\x63\x4c\xb2\x5e\xcf\x76\x2b\xf2\x1f\x25\xa0\xa3\x77\ \xae\xde\x76\xe3\x0a\xf0\x1c\x2a\xac\x09\x86\x6b\xef\x18\x7f\x83\ \xfd\x30\xf2\xd4\xdd\xbe\xe0\xe8\xb6\x75\xba\xb7\x85\xa7\x01\x6b\ \x02\x2c\x1e\xf4\x05\xd5\xde\xc3\x5c\xbe\xd3\xdb\x57\x41\xf8\x91\ \x1d\x14\x4f\x80\x9c\x56\x02\x6b\x08\xe0\x78\x1e\x6b\x3c\x6e\x9f\ \x33\x82\xea\xa6\x63\x1c\xa5\x27\xd4\x18\x43\xdc\xba\xfc\x6f\xb9\ \x5f\xef\xb6\x75\x05\x98\x5f\x8a\x79\x64\xe6\x50\xc6\xfa\xa0\xe2\ \x82\x5c\x28\xcc\xcf\x81\xc2\xbc\x6c\xc8\xcd\x4a\x87\xac\xf4\x14\ \xc8\x4c\x4b\x86\xf4\x94\x24\x48\x49\x8a\x87\xa4\xf8\x18\x48\x88\ \x8d\x82\xf8\x98\x48\x88\x89\x8c\x80\x0b\xe1\xa1\x10\x16\x1a\x0c\ \x61\x21\x67\x21\x34\xf8\x0c\x04\x9f\x3e\x09\xa7\x4f\x06\xc1\xa9\ \x13\xc7\x2c\x02\x3f\x5f\x37\x45\x9d\x3c\x13\x01\xcf\xc4\x2d\xcb\ \x7f\x5f\xef\x61\x7a\xb7\x6d\x53\xc1\x10\x1f\x2f\xf0\xeb\xe0\x05\ \x83\x19\x06\xb5\xf7\x82\x81\xed\x5b\x40\xff\x76\x2d\xa0\x5f\xdb\ \x16\xe0\xef\xa3\xff\xfd\x09\x68\x87\x5b\x95\xff\x43\x3a\x78\xbf\ \xa8\x77\xdb\x0a\x08\x78\x3a\x6e\x55\xfe\x8f\x1e\xdd\xec\x4e\xf6\ \x7c\xc5\x7a\xb7\xaf\x80\x80\x27\xe3\x56\xe5\x3f\x0a\x7b\xb6\x59\ \x7a\xb7\xaf\x80\x80\x27\xe3\x56\xe6\xff\xd0\x37\x5a\x3d\xa9\x77\ \xfb\x0a\x08\x78\x32\x6e\x65\xfe\xa3\xb0\x67\x3c\xae\x77\x1b\x0b\ \x08\x78\x2a\x6e\x79\xfe\xbf\xd1\xaa\x83\xde\x6d\x2c\x20\xe0\xa9\ \xb8\xd5\xf9\x8f\x12\x20\xc6\x00\x02\x02\x66\x71\x3b\xf0\x7f\x48\ \x7b\xef\x7f\xb0\x67\xbd\xaa\x77\x5b\x0b\x08\x78\x1a\x6e\x07\xfe\ \xa3\x04\xfa\x78\x4f\xd0\xbb\xad\x05\x04\x3c\x0d\xb7\x0b\xff\x47\ \xb7\x6b\xf7\x7b\xf6\xbc\x67\xf4\x6e\x6f\x01\x01\x4f\xc2\xed\xc2\ \x7f\x14\xf6\xac\x0f\xb3\x67\x2e\xd3\xbb\xcd\x05\x04\x3c\x05\xb7\ \x13\xff\x51\xe4\xb8\xe0\x1a\xbd\xdb\x5d\x40\xc0\x13\x70\xbb\xf1\ \x1f\xc5\xdf\xd7\xeb\xcd\x00\xb1\x1e\x28\x20\x70\x5b\xf2\x1f\x45\ \xae\x11\x56\xa5\x77\xfb\x0b\x08\xe8\x89\xdb\x95\xff\x28\x43\x3b\ \x7a\x3d\x1d\xe0\xe3\x9d\xa9\xb7\x0e\x04\x04\xf4\xc2\xed\xcc\x7f\ \x94\xd1\x9d\x1e\xf9\x3f\xd6\x0e\x9b\xf4\xd6\x83\x80\x80\x1e\xb8\ \xdd\xf9\xcf\xc5\xff\x0d\xef\xf7\x58\x7b\xe4\xe8\xad\x0f\x01\x01\ \x77\x42\xf0\xbf\x41\x70\x2c\x20\xc7\x09\x55\xeb\xad\x17\x01\x01\ \x77\x40\xf0\xbf\xb1\x50\xfd\x60\x9f\x96\x81\xac\x7d\x52\xf4\xd6\ \x8f\x80\x80\x96\x10\xfc\xb7\x2e\x81\x3e\x2d\x5e\xf1\xf7\xf5\x9e\ \xc6\xda\x2a\x9c\xe1\xa6\xde\xfa\x12\x10\x50\x13\x82\xff\xf6\x0b\ \x6b\xab\x3f\x05\x76\x6c\xf5\x5a\x80\x6f\xcb\x1f\x03\x7d\xbd\xc7\ \xb1\xf6\xfb\x95\x8d\x13\x56\xb2\xeb\x6f\x02\x02\x4d\x11\xcc\xa6\ \x5b\xeb\xcd\x2b\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\ \x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\ \x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\ \x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\ \x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\ \x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\ \x84\xb8\x2e\x20\x44\x88\x90\xdb\x59\xb2\xcc\x3a\x86\x3b\x6c\x7c\ \xde\xac\x85\x8d\xcf\xff\x68\xe3\xf3\x3b\x6c\x7c\xde\x6c\x94\x8d\ \xcf\xdb\xda\xf8\xfc\x4f\x36\x3e\xff\xa3\x8d\xcf\x7f\x67\xe3\xf3\ \x3b\x5c\xfc\xbc\x99\xad\xcf\x47\xd9\xf8\xbc\xad\x8b\x9f\xb7\xd0\ \xf8\xf3\x3f\x69\xfc\xf9\x1f\xc5\xe7\xe2\x73\xf1\xb9\xf8\x5c\x7c\ \x2e\x3e\x17\x9f\x8b\xcf\xc5\xe7\xe2\x73\xf1\xb9\xf8\x5c\x7c\x2e\ \x3e\x17\x9f\x8b\xcf\xc5\xe7\xe2\x73\xf1\x79\x53\xff\xbc\x4a\xe7\ \xcf\xaf\xba\xf8\xf9\x4d\x17\x3f\xaf\x77\xf1\x73\xb0\xf5\xf9\x68\ \x1b\x9f\x9f\xb0\xf1\x79\x96\x8d\xcf\x2d\x35\x30\xff\xdc\x52\x03\ \xf2\xcf\x2d\x35\x10\xff\xdc\xd2\x03\x1a\x3e\x1f\x6d\xe3\x73\x0b\ \x37\x68\xf8\xdc\xc2\x0d\x18\x3e\xb7\xd0\x02\x0d\x9f\x0b\x11\xe2\ \x99\xf2\x18\xb3\x53\xa2\xc7\x1d\xf8\x9f\x97\x6c\xb9\x77\x58\x60\ \x94\x10\x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\ \x22\x44\x88\x10\x21\x42\x84\x08\x11\x22\x44\x88\x90\xdb\x5d\x02\ \x7c\xbd\xc4\x66\x92\x10\x21\x1a\x4b\x80\x8f\xf7\xef\x19\xee\xd4\ \xfb\x3e\x94\x12\xe0\xeb\xfd\x9f\x8c\xff\xff\xc7\xae\xff\x2b\xa0\ \x01\x7c\xbc\xfe\x27\xa0\x63\xcb\x3f\x28\xdb\x3c\x90\xf9\x5b\xf6\ \xfe\xef\xf4\xd2\x39\x4a\x80\x6f\x8b\x3b\xa4\xab\xf7\x52\xa6\x7f\ \x60\xd7\x72\x86\x6a\x01\x95\xe1\xe3\x55\xc2\xae\x49\xac\x8d\xf7\ \xb1\x9f\xc7\x30\xfe\xbf\xec\xdf\xe9\x6f\xe4\x03\xfc\x7d\xbd\xee\ \xf4\xd7\xa9\xef\x55\xe8\x7f\xbd\xac\xff\x1b\x0c\x20\xa0\x01\x7c\ \x58\xfb\xfa\x78\xd7\xfb\x33\xb0\xb6\xae\x67\x3a\x3f\xe7\xdf\xc1\ \xbb\xb3\x41\x17\x3a\xf4\x09\x0a\xfd\xaf\x95\xf5\x7f\x9d\xa1\x5e\ \x40\x75\xd4\xc9\x60\xfc\xf2\xba\xc1\x74\x5f\x2f\xdb\x02\x30\xec\ \x61\xaf\x9b\x4b\x7a\x70\x6f\x7f\xa0\xd0\xff\x3a\xc1\x7f\xcd\x51\ \xaf\xb8\x22\xff\x6f\xca\xf6\x80\xef\xe5\xb0\xd7\xcf\xa1\x2e\x98\ \x4f\x70\x9b\x1f\x10\xfa\xd7\xd7\x16\xfc\xc9\x0e\x58\x9b\xb3\xbe\ \x81\x5d\x4b\xd9\x7b\x4f\x93\x0d\xf8\xba\xc7\x06\x84\xfe\x75\xb7\ \x01\x6e\x07\x37\xe4\x6b\xc2\x10\x1f\xaf\xfb\x50\x27\x43\x7c\xbc\ \x35\x1f\x13\x0a\xfd\x7b\x04\x24\x1b\xf0\xf1\xbe\xee\x8f\x7e\xc0\ \xc7\x7b\x29\xea\xc4\xdf\xb7\x85\xe6\x3e\x40\xe8\xdf\x63\x80\xfd\ \x00\x1f\x17\x20\x5e\x95\x6c\xc0\x4b\x53\x1b\x10\xfa\xf7\x18\xf0\ \xb1\xa1\xd4\xfe\x3e\x5e\x6b\x25\xfd\x6b\x3b\x0e\x10\xfa\xf7\x28\ \x10\xf7\xf1\x67\xd6\x0f\x54\xf8\x77\x68\x41\xe3\x00\xf6\xb3\x66\ \xe3\x00\x4b\xfa\xc7\x7e\xc8\xe5\xe7\x51\xe3\x3b\xac\xc0\xd5\x7b\ \x54\xe5\x19\x35\xb1\x01\xef\xba\x00\x1f\x6a\xbf\x0f\x49\x37\x1a\ \xae\x11\x9b\xd3\x3f\x6f\x17\x1a\x8b\x74\x68\xe1\x38\x14\xff\x5e\ \x6b\xdd\x3b\x7f\x8f\x2d\x3c\xc3\x06\x1a\xff\x7d\x5c\x17\xba\xee\ \x2f\x7d\x36\x12\x75\xc3\x7e\xfe\xbd\x3b\xf5\xaf\x6c\x97\xa1\x6f\ \x3e\x0a\x81\x6f\x3c\x02\x43\xed\xc5\x9b\x8f\x40\x40\xc7\x96\x92\ \x5e\xb8\x7e\x54\x87\xb1\xfe\x03\xe5\xbf\x6b\x17\xe8\x77\xa5\x67\ \x32\xa7\x7b\xe9\xfb\x5a\x35\xfc\xae\x56\xc0\x76\xf2\x6d\x69\xc9\ \xfe\x6e\x90\xfe\x7d\xbd\x16\xcb\xfa\xd7\x6c\x0c\x60\x4d\xff\x81\ \x1d\x5b\x41\xf8\x91\x1d\x90\x97\x96\x08\x99\x09\x51\x90\x95\x18\ \x6d\x15\xf8\x3b\xb9\xa9\x09\x10\x73\xfa\x10\xb5\x31\xf2\x4c\x2b\ \xde\xa0\x8e\xfa\xbf\xf2\x67\x58\x3d\xb2\x1b\xe4\x67\xa6\x40\x46\ \x7c\x24\x64\x25\xd8\xbe\xbf\x4c\xf6\x7b\x79\xe9\x49\xb0\x72\xf8\ \x4f\x30\xe0\xd5\xbf\xd0\xf7\x18\xfc\x88\xac\x8b\x01\xaf\xdd\x07\ \x7d\x5f\xbc\x0b\xfa\xbe\x74\x37\xbb\x6a\x07\xbf\x76\x0f\x99\xf3\ \x41\xca\xf5\xa0\xf5\xa4\x9b\x0e\xee\xef\xff\x51\xf7\x03\x5e\xbd\ \x0f\xce\xee\xde\x40\xb9\xc7\x97\x2e\x5f\x86\x2b\xd7\xae\xdb\xc4\ \xb5\x1b\x37\xa1\xb6\xb6\x16\xa6\x7c\xd3\x16\x06\xb5\xf9\x1b\xf9\ \x80\x21\xec\x59\x86\xa8\xcc\x7f\xbc\x3f\xd4\xff\xa9\xad\x2b\xe8\ \xfe\xae\x5c\xbd\x46\x7f\xdb\x1c\xae\xdf\xa8\x63\x90\x7f\xbe\x59\ \x0f\x57\xaf\x5f\x87\x59\x5d\xdf\x82\x41\xaf\x3f\xc0\xbe\xa7\xa5\ \x91\x5d\x0d\x69\xff\x30\xac\x1f\xdf\x17\x82\x36\x2c\x84\x43\xab\ \x66\xc3\xe1\xd5\x73\x34\xc1\x91\xb5\xf3\x61\xda\xf7\x1d\x60\x70\ \xdb\x07\xc9\x5f\x1a\xf9\x20\x79\x4d\x98\x5d\x37\xa2\x6e\x02\x7d\ \x5a\xb8\x55\xff\xd8\xc6\xe8\xa3\xfa\xbe\x74\x0f\xac\x1a\xd3\x1b\ \x2a\xaa\x2e\x42\x61\x41\x01\x14\x17\x17\x31\x14\x43\x89\x12\x25\ \x25\x84\x52\x19\xf8\x5e\xd5\xc5\x1a\x58\x3e\xa2\x1b\xf4\x7e\xe9\ \x5e\xf0\x63\x3e\x6e\x50\xfb\x16\x84\xc1\xed\xbd\x0c\xf0\xb3\x86\ \x0e\x0d\x18\xd2\xc1\xf8\x35\xbd\x87\xf6\xc4\x7c\x0b\x5e\x93\x22\ \x82\xe1\x32\xd3\x7d\x75\x55\x25\x5c\xbc\x58\xcd\x70\x11\x6a\x94\ \xa8\xa9\x81\x5a\x19\xf8\xfa\x2a\xb3\xd1\x9c\xd4\x78\x8b\xfe\x09\ \xf5\x11\x77\xf6\x08\xd9\x54\xdd\xcd\x9b\xaa\xe7\xf0\xd7\xd7\xd7\ \x13\x50\x56\x8d\xe8\x0a\xfd\x15\x3e\xa8\x91\xfe\x7d\x64\xfd\xfb\ \xba\x5b\xff\xde\x64\x93\x83\x19\x7f\x27\x7d\xd3\x9e\x74\x5f\x52\ \x52\x2a\xe9\x5e\xd6\x37\xe9\xbc\xb4\xb4\x11\x4a\x98\x8d\xd4\x5e\ \xbd\x01\xfb\x56\xcc\x84\xde\x2f\xde\xc3\xf4\xdf\x0a\x06\x33\x9d\ \x21\xc8\x0e\x3a\x48\x18\xac\x80\x9f\x0c\xc3\x7b\xed\x25\xf8\x29\ \x3e\x1b\xe2\xa3\x84\x37\x0c\x62\x7a\x1a\xfb\xf1\xf3\x50\x86\x7f\ \xaf\xf6\x92\xa4\x77\xd4\xb1\x09\xd0\x17\x71\xa0\x7d\x60\xcb\x9f\ \xdb\xbb\x11\x06\xb6\xfe\x6b\x23\xee\x73\xfd\x47\x1c\xdd\xc5\xfc\ \x44\x1d\x5c\x64\x36\x55\x63\x6a\x4f\x2e\xa3\x9a\x70\x99\xf9\xd3\ \x65\x01\xdf\x91\x8f\xb5\xa8\x7f\xbd\xf8\xcf\xef\x03\xc7\xc9\x1d\ \x1f\x81\x84\xc8\xf3\x50\x56\x51\x09\x45\x45\x12\xff\x4d\xed\x40\ \x69\x0b\xc8\xff\xea\x9a\x4b\x10\x7e\x7c\x3f\x0c\x68\xdb\x9c\xe9\ \x9c\xe9\x9d\x74\xef\x65\xb0\x83\xc1\xf2\xeb\x41\x1d\x8c\xdf\x1b\ \x6c\xc2\x73\x83\xaf\x30\x79\xdf\x9f\xe9\xad\xdf\x2b\x7f\x81\xc5\ \x7e\xdf\x40\xed\xa5\xcb\x50\x5d\x5d\x4d\x40\x1b\xe0\x30\x67\x0b\ \xa8\xff\x3a\xa6\xff\x6d\x33\x87\x42\x3f\xd6\xb7\xa3\x8f\xa3\x79\ \x96\x89\xfe\x2f\x04\xed\x01\x64\x3e\xfa\x0c\xd4\x93\x9a\xb8\x74\ \xe9\x12\x01\xfd\xd0\xf2\xc0\xef\x8d\xc6\x20\x16\xf5\xef\x66\xfe\ \x1b\xc6\x58\xd8\xc7\xbe\xf6\x57\x38\xfa\xdb\x72\xa8\x62\x3a\x2d\ \x2c\xc8\x37\xe8\xdf\x92\x1d\x20\xca\x2b\x2a\x20\x3b\x23\x15\x86\ \xbe\xf3\x24\x0c\x68\xf3\x90\xa4\x6b\x05\x1a\xd9\x81\x19\x5b\x30\ \x67\x07\xdc\x16\xfc\xd9\x7d\xf5\x66\xe3\xb3\xdd\x8b\x26\xc1\x35\ \xa6\xd0\xca\x8a\x72\xb3\x36\x60\x64\x0b\xec\x5a\x2b\xb7\xfd\xec\ \xee\x6f\x9b\xed\xfb\x8d\xf4\x5f\x8f\xfa\xbf\x68\xd0\x97\x1a\x68\ \x4a\xfa\xe7\x63\x80\x7e\x6c\x0c\xb0\x66\xc2\x00\xa8\xa8\xae\x81\ \x02\xa6\x7f\xf4\x01\x4a\x3f\xd0\xc8\x16\xe4\x2b\xfa\x82\x59\xbf\ \x7c\x00\x7d\x5f\xf9\x2b\xd3\xa7\x37\x0c\x6c\xd7\x82\x60\xc9\x16\ \x2c\xd9\x87\xa9\x2d\x70\x0c\x78\xfd\x6f\x70\xfe\xf0\x4e\xb8\x72\ \xfd\x26\xd3\x7f\x85\x41\xff\x4a\x28\x6d\x00\x5f\xe3\x18\xb1\x20\ \x2b\x0d\x86\x77\x7a\x8c\x8d\x1f\x1e\x36\x3b\xaf\x40\xfd\x47\x9e\ \xd8\x47\xfd\x04\xea\xeb\xca\xd5\xab\xea\xe0\xca\x55\x23\x5b\xf0\ \x7c\xfd\x4b\x63\x80\x41\x6d\x1e\x80\x29\x3f\xbc\xc1\x74\x5f\x40\ \x7a\x2f\x2c\x2c\x34\xd8\x80\x25\x5b\x28\x62\xbf\x53\x5d\x7b\x19\ \x36\x4c\xf5\x87\x9e\xcf\xb3\x79\x8e\x4f\x2b\x83\x6e\xb9\x1d\x0c\ \x6c\xe7\xbc\x4f\x18\xd4\xae\x39\x04\xbe\xf5\x18\xe4\xa4\x25\xc3\ \x45\xd6\xaf\x57\x56\x56\x42\x55\x55\x95\x01\xe6\xec\xa0\x8a\xfd\ \x0e\xfa\xf4\xb0\x43\xdb\x89\xfb\xa6\x63\x6e\x0e\x3f\xa6\xff\xf3\ \x07\xb7\xc1\xe5\x2b\x57\xa0\xa2\x94\x8d\x65\xcb\xcb\x5c\x43\x85\ \x74\xc5\xf1\x69\x53\xe2\xbf\xe1\x5e\x70\x8c\xfc\xc6\xdf\x21\x29\ \xe6\x02\x94\x96\x95\x33\xfd\x17\x90\x0d\x70\x98\xb3\x03\x1c\x2f\ \xa2\xfe\x8f\xfd\xb6\x02\x7a\xbf\x72\x1f\xd3\x23\xe3\x3f\x1b\xcf\ \x0d\x6c\xdf\xc0\x7f\x7a\x6d\xc3\x16\xcc\xbd\xe7\xc7\xec\xb2\xff\ \x6b\xf7\xc3\x8c\x9f\x3b\x41\x05\xe3\x7d\x25\xd3\x37\xea\xdf\xd4\ \x06\x4c\xed\x00\xf5\x8f\x7d\xff\x8e\x79\xa3\x68\x5e\x4f\x7d\xbf\ \x19\xfd\xa3\xdf\x1b\xf5\xfe\x53\x6c\x6c\xf9\x1c\x8c\xfd\xe8\x59\ \x97\x31\xee\x93\xe7\x61\xf8\xdb\x8f\xc3\x9a\x51\xbf\x90\x1f\x90\ \xf4\x5f\xdb\x64\xf4\x8f\x7d\xe4\x80\xd6\xf7\x43\xd0\xb6\x35\x50\ \x71\xb1\x16\x0a\xf2\xf3\x8d\x74\x6e\xce\x0e\x90\xff\x38\x5e\x8c\ \x0b\x0f\x86\x41\x4c\x5f\x03\x18\x5f\xb9\xfe\x4d\xed\xc0\xd8\x16\ \x6c\xf9\x84\x16\x34\x9f\xe8\xf5\xe2\xdd\xb0\x7e\xd2\x20\xb8\xc4\ \xfc\x79\x79\x59\x99\x64\x07\xb2\x0d\x98\xb3\x03\x04\xfa\x00\xe4\ \xdf\xbc\x5e\x9d\xd9\xd8\xff\xfe\x46\x7d\xbf\x72\xfd\x07\xd7\x00\ \x70\x6d\x46\x0d\xe0\x3c\x15\xfb\xd0\xc5\x03\xbb\x50\xff\xd3\x94\ \xf4\xaf\x5c\x07\x58\x37\x79\x08\x8d\x01\xf2\xf3\xf2\xcc\xea\x5c\ \xe9\x13\x10\xc5\x6c\x0c\x90\x9f\x9b\x0b\x63\x3e\x7b\x19\xfa\xb5\ \x7e\x80\xe9\x98\xf5\xd9\xed\x1e\x96\xc0\xda\xd7\xbc\x2d\xd8\xf6\ \x09\x7e\x3e\x2d\xa1\x0f\x1b\xfb\x1f\xdb\xbc\x14\x2e\x5f\xbb\x09\ \x65\x6c\x9c\x81\xfa\x37\xb5\x01\xa5\x2d\xe0\xf8\xe0\xd2\xe5\x2b\ \x50\x9c\x9b\x05\x23\xde\xfd\x27\xe9\xd7\xd2\xba\x62\xc3\x5a\x9c\ \xf9\xfe\xc1\xf1\x75\xca\x47\x68\xae\xb9\xd4\xef\xeb\x26\xc7\x7f\ \x69\x0d\xb8\x25\xf5\x97\xd3\xbb\xbe\x43\x63\x00\xd4\x2d\xbf\x5a\ \xea\x07\xe8\x3d\xf6\x3b\xa5\xe5\x15\xb0\xc8\xff\x7b\xe8\xf9\xe2\ \xbd\xe4\x07\x06\x72\xbd\x33\xfd\x5a\xb7\x03\xf3\x3e\x81\xaf\x21\ \x0c\x66\xdf\x15\x1f\x7e\x96\xcd\x33\x6b\xa1\x4c\xe6\xbf\x29\x94\ \x36\x50\xce\xfa\xdf\xeb\xcc\xf9\xe3\xb8\x1e\xd7\x34\xd4\xd2\xad\ \x5d\xfa\xc7\x75\xd4\xd7\xee\x83\x25\x7e\x5f\x35\x39\xfd\x37\x8c\ \x01\x1e\xa6\xf1\x56\x52\x6c\x14\x14\x15\x33\x5e\xb3\x3e\x00\x6d\ \xc0\x9a\x1d\x14\xe4\xe7\x41\x15\x1b\x03\xec\x58\x38\x09\x7e\x61\ \x63\xc0\x41\x1d\x58\x3f\x42\x7a\x37\xee\x07\xec\xf7\x09\xf8\x33\ \xeb\xfb\x5f\x7f\x10\xc6\x7c\xf2\x12\x14\xb1\xb9\x48\x05\xeb\x63\ \x50\xff\xe5\xe5\xe5\x06\x98\xb3\x85\xf2\xb2\x52\xea\xfb\xf7\x2c\ \x9c\x60\xb5\xef\x17\xfa\x37\xaf\x7f\xf4\x01\x03\xd9\x7c\xeb\xf8\ \xce\xf5\x50\x56\x59\x0d\x79\xcc\xaf\x73\xfd\x2b\xa1\xb4\x03\x9c\ \x2b\xe2\xba\x71\xf0\xc1\x1d\xd0\x97\xe9\x8c\xeb\xde\x14\x06\x9d\ \xdb\xe1\x13\x06\x33\xdf\xdf\xfb\xa5\x3f\xc3\xa2\x21\xdf\xb1\x71\ \x5f\x35\xcd\x31\x51\xff\xa6\x36\x60\x64\x07\xec\x67\xf4\x01\x57\ \xd8\x78\x7e\x61\xff\x4f\x61\xe0\x6b\x7f\x25\x9d\x68\x1d\x9b\x70\ \xab\xe8\x1f\xd7\x02\xf9\x3a\xc0\x86\xe9\x43\x99\xfe\x2f\x42\x6e\ \x4e\x0e\xf9\x00\x0e\x73\x76\x80\xd7\xe2\x92\x52\x48\x4b\x8a\x83\ \x21\xcc\x77\xf4\x7b\xfd\x21\xd2\x77\xff\xb6\x0d\x30\x6b\x07\x56\ \x7c\x02\xce\x23\x7b\xbe\x70\x37\xec\x64\x3e\xa5\xf6\xca\x75\xda\ \x8f\xe0\xfa\xb7\x64\x07\xf8\x5e\x0d\xeb\x27\x4a\x0b\xf3\x68\x5c\ \x3f\xa4\x7d\x73\xb7\x71\xff\x96\xd0\x3f\x1f\x03\xb0\x31\xf3\xcc\ \x5f\x3e\x80\xbc\xfc\x02\x1a\x03\xe6\x31\x28\x6d\xc0\x9a\x1d\x4c\ \xf9\xa9\x13\x9b\x07\xfe\x55\x1e\x03\x36\xe8\xdc\x9c\x1d\x58\xf7\ \x09\x5e\xe4\xff\x43\x0e\xef\xa4\x35\x66\xd4\x3f\x5f\x77\x36\xb5\ \x03\x6e\x0b\xb8\x27\x75\xf5\x46\x1d\xed\x49\xf3\xfd\x56\xa1\x7f\ \xfb\xf5\x6f\xb8\x27\x36\x06\x18\xfa\xf6\x3f\x21\x29\x3e\x06\x0a\ \x98\x5e\x73\x59\x1f\x90\x67\xc1\x0e\x38\xf2\xf2\x72\xa1\x9c\xf9\ \xe9\x55\xe3\x07\x40\x77\x36\x06\x18\xc8\xfc\x77\x7f\x0b\xfd\x80\ \x45\x1b\x30\x80\xe9\xbe\x2d\xd3\x5f\xa7\xc7\x21\x33\x25\x91\xcd\ \x2f\x2b\xa0\xa4\xa4\xd8\xec\x3e\x94\xd2\x06\x70\x3d\xf2\x06\xeb\ \xfb\xf7\x2f\x9b\xda\xb0\xe6\x2f\xf4\xef\xb0\xfe\x11\xb8\xe7\x76\ \x72\xcf\x66\x28\x2e\x2b\x87\x9c\xec\x6c\x83\xfe\x95\x30\xd2\x7f\ \x6e\x0e\xcd\x19\x0f\xac\x5b\x08\x3d\x5e\xfc\x33\xe3\xb1\x37\xe9\ \x5f\x09\x7b\x6d\x01\xd7\x90\xfa\xbc\xfa\x57\x36\x0f\x79\x9b\xe9\ \x54\xda\x67\xb0\x67\x3f\x12\x6d\x00\xdb\x7d\xc9\xe0\xaf\x48\x0f\ \xd8\xd6\xee\x8c\xf9\xba\x15\xf4\x8f\x63\x00\x9c\xc7\xf6\x7b\xf9\ \x1e\xd8\x34\x6b\x24\x94\x54\x54\x41\x76\x56\x16\xf9\x00\x0e\x73\ \x76\x80\xe3\xc4\xe2\xd2\x32\x88\x3c\x7b\x9c\xfc\x7c\xdf\xd6\x0f\ \x42\xbf\x36\xcd\xa1\x6f\x9b\x87\x64\x34\x27\xf4\x63\x3f\x5b\x46\ \x73\xe8\xdf\xa6\x39\xf1\xff\x97\xe7\xfe\x0f\xd6\x4d\x1e\x0c\x95\ \x17\x6b\x69\x1d\xd2\xda\x1e\x14\xed\x45\xb2\x6b\x15\xf3\x3f\xe5\ \x25\x85\x30\xe6\xc3\x67\x98\xff\x77\x6f\xdf\x7f\xcb\xe8\x5f\x8e\ \x05\xc3\x75\x8c\x39\xbd\x3f\x81\xdc\xbc\x7c\xc8\x61\x63\x40\x84\ \xd2\x06\x2c\xd9\x41\x6e\x4e\x36\x9c\x3b\xb2\x07\x82\x0f\xed\x84\ \x73\x87\x77\x19\xe3\xc8\x6e\x23\x84\x98\x20\xf4\xe8\x1e\x19\x7b\ \xd9\xbf\xdf\x01\x29\x71\x51\xb4\x0e\x5d\x54\x54\x68\x79\x0f\x4a\ \x06\xfe\x0e\xae\x11\xc6\x87\x1c\x77\xfb\xb8\xcf\xa2\xfe\x6b\x6b\ \x09\x57\xaf\x5d\x6b\x32\xfa\xe7\xc0\x36\x1c\xfe\xde\x53\x90\x1c\ \x1f\xcb\x74\x9b\x0f\xd9\xac\x0f\xb0\x64\x07\xa6\xb6\x50\xc2\x74\ \x56\x52\x56\x21\xa1\xbc\x82\xd6\x86\x4a\xcb\x2b\x25\xe0\x3c\x9e\ \xf9\x14\x25\xca\x2b\x11\xd5\xc6\x60\xf3\xc9\x12\xc6\x6b\x7b\xf6\ \xa0\x50\xff\xb8\x06\x75\xbd\x1e\xe0\xf0\xea\xd9\x34\x7f\x09\x74\ \x73\xdf\x4f\xfa\x7f\x43\xd2\x3f\xae\xff\x21\xe7\x79\x1c\xc0\xb5\ \xeb\x37\x98\xfe\x7f\x68\x52\xfa\x47\x0c\x66\x3e\xf4\xd4\xbe\x6d\ \x50\xc8\xfa\xe0\xac\xac\x4c\x83\xfe\x95\x30\x67\x0b\xf4\x3e\x47\ \xae\x04\xec\x1f\x08\x79\x0d\xc0\xb9\x05\x21\x9f\x23\x9f\xf6\x1c\ \x70\x3d\x01\xc1\x75\x6f\x76\xdf\xc1\x8c\x1d\x60\x6c\xd8\x0a\x45\ \x3b\xbb\x3b\xde\xdb\xc0\xff\xc1\x5f\x92\xef\x77\x2a\xfe\xc7\x43\ \xf4\x8f\xfc\xe9\xff\xf2\xbd\xf0\xdb\xdc\xb1\x50\xc4\x78\x9c\x99\ \x91\x41\x3e\x80\xc3\x1e\x3b\xb0\x36\x5e\xb4\x36\x8f\xb4\xba\xd6\ \x6c\x69\x0f\x0a\xd7\x7e\xca\x4a\x60\xfc\x27\x2f\xc8\x73\x3f\xf7\ \xad\xfb\x1a\xf9\xcd\x0e\x2d\x60\xe4\xbb\x4f\xc0\xcc\x9f\xde\x80\ \x19\x3f\x76\x24\xe0\xcf\x23\xdf\x7b\x82\x3e\x33\xfd\x7d\x4f\xd4\ \xbf\x61\x0c\xc0\x6c\x79\x5e\xff\x2e\x90\x93\x9b\xc7\xf8\x9f\x45\ \x50\xda\x80\x39\x3b\xb0\x67\x9c\x60\xcf\x7a\x82\x35\x5b\x30\x7d\ \x0f\x7d\xc6\xc5\xda\xcb\x90\x14\x7e\xc6\x28\x27\xc5\xdd\x30\xec\ \x29\x62\xdc\x63\x9b\x07\x1a\xf0\xfa\x03\x86\x18\x14\xd3\x7b\xf3\ \x44\xfd\x1b\x6c\x99\x8d\x01\x46\x76\x7e\x06\x92\x13\xe2\x20\x9b\ \xe9\x35\x33\x33\xd3\x60\x07\xf6\xd8\x82\x3b\x7c\x02\x02\xfb\x95\ \xab\x37\xea\xe1\xd8\xfa\x5f\xd9\xbc\xe5\x5e\x55\xfa\x7e\x23\x3d\ \x75\x6c\x49\x7e\x3b\x50\x91\xcf\x81\x57\x7a\xaf\x63\x2b\xf3\xff\ \x0e\xf7\x9c\x95\x30\xa3\x7b\x4f\xd7\x3f\xc2\xaf\xfd\xc3\x70\xe6\ \xe0\x4e\xc8\x2b\x28\x84\x8c\x8c\xf4\x46\x36\x60\xce\x0e\xec\xb1\ \x05\xb5\x7c\x02\xdf\x7f\xbc\x7c\xe5\x1a\xac\x1e\xd9\x9d\xf2\x04\ \x5c\xe9\xfb\xf9\xbf\x0b\x94\x75\x8e\xb9\x63\x18\x27\x86\xfd\x3a\ \xda\x16\xcf\x13\xc1\x31\x26\xfe\x2d\x8c\x2f\xe0\x73\x4d\x6e\x77\ \x8e\xfc\x6d\x4f\xd6\x3f\xcf\xbb\xd9\xba\x60\x22\x14\x94\x94\x41\ \x7a\x5a\x2a\xe9\x9f\xc3\xd4\x0e\xf4\xf0\x09\xd2\xde\x43\x09\x54\ \x96\x97\xc1\xc4\x2e\xaf\x50\x4c\x97\xb3\x7d\x3f\xe9\x4d\xd6\x3b\ \xfa\x6c\xb2\x25\xc6\xef\xc9\x5f\xbd\x0e\xcb\xfc\xbf\x85\x4d\x93\ \x07\xc2\xf6\x39\x23\x60\xe7\xbc\x51\xb0\x75\xe6\x50\x58\x3b\xb6\ \x17\xcc\xef\xfd\x21\x8c\xee\xfc\x6f\xb2\x11\xb4\x0f\xf4\xf3\xca\ \x3c\xa3\xa6\xaa\x7f\x9e\x1b\x37\xf0\xb5\xbf\xc0\x82\xc1\xdf\x30\ \xff\x9f\x07\x19\xe9\xe9\xcc\x07\x64\x18\xd9\x80\x25\x5b\x70\x97\ \x4f\xc0\xf9\x43\x65\xf5\x45\x48\x8d\x0a\x71\x98\x7b\xe6\x9e\x17\ \xb9\x8c\xf3\x07\x1c\xb3\x1d\x5d\x37\x9f\xf2\xc8\x2e\x56\x57\x51\ \x3c\xcf\x8d\xfa\x7a\xda\x5b\xae\x97\xaf\x98\x37\x80\x63\xfb\xf2\ \xe2\x42\x88\x3e\x75\x90\xd9\xc7\x20\x18\xf1\xce\x3f\x29\xcf\xc3\ \x9a\xcf\x6f\x0a\xfa\xe7\x18\xc2\xc6\xd2\x63\x3e\x7e\x01\x92\x12\ \xe2\x99\x9e\xb3\x20\x5d\xb6\x01\x0e\x5b\x76\xa0\xd6\x98\xd1\x92\ \x4f\xc0\xf5\xa6\xcb\xd7\x6f\xc2\x89\xdf\x96\x1a\x7c\xbf\xb3\xba\ \x47\x5f\x8e\x5c\x3e\xbd\x7d\x15\xc5\x83\x63\x5c\x30\xe6\x92\xe1\ \x7e\x32\xce\xe7\x6a\x6b\x79\x7e\xd1\x45\xba\xe2\xda\x0e\xc5\x0d\ \x5f\xbb\x06\x37\x99\x4d\x20\x0a\x32\x53\x61\xfd\xb8\xde\xf4\x5d\ \x14\x4f\xd9\xd1\x62\xde\x67\x93\xd0\xbf\xbf\x9c\xcf\x77\xf6\xc8\ \x1e\xc8\xce\xcd\x87\xb4\xb4\xb4\x46\x36\x60\xc9\x0e\xe8\x67\xc5\ \x67\x59\x1c\x59\x0d\x76\x92\xcd\x61\xb0\x8d\x6c\x87\x6c\x01\xc7\ \x7e\xb5\x97\xaf\xb2\x36\xef\x63\x18\xfb\x39\xd4\xff\x1a\xfc\xdc\ \x5f\x89\xf3\x98\x5f\x0a\x72\x3c\x78\x0d\xea\x19\xd7\xf0\xec\x88\ \xf7\xe7\x79\x67\xb8\xd6\x83\xf9\x04\x68\x43\xa8\x7f\x69\xce\x67\ \xd9\x06\x3c\x5d\xff\xb4\xa6\xc5\xfc\xd9\xf6\xc5\x53\x21\xaf\xb0\ \x04\x52\x53\x52\x48\xff\x1c\xa6\x76\x60\xb0\x05\x76\xcd\xc2\x7d\ \x23\x36\x6e\x54\x22\xbf\xa0\x08\xf2\x0b\x1b\x50\x50\x58\x0c\x05\ \x45\x0d\xc0\xf7\x1c\xe9\x1f\x70\x7f\x12\x73\x42\xa6\x7c\xfd\xba\ \xd9\xfc\x4a\x9b\xba\xef\x28\xf5\xf5\x53\xbf\x6d\x07\x65\xc5\x05\ \x70\xa3\xae\x9e\xd6\x6c\x78\x0e\xc7\x65\x33\xf9\x1c\xca\x1c\x0f\ \xfe\xfe\xe5\xcb\xd2\x6b\xee\x23\x50\x42\xf6\x6d\x92\xee\xa9\x89\ \xfa\x7f\xce\x0d\xd4\xff\xe2\x80\x1f\x20\x33\x27\x17\x52\x53\x53\ \x0d\x3e\xc0\x14\x4a\x1b\x40\x6e\x27\xc5\xc7\xc1\xb9\xa0\x03\x10\ \x12\x74\x10\x42\x8e\x37\x20\x94\x70\x08\x42\x4f\x34\xe0\xfc\x89\ \xc3\xf4\x7e\x54\xe8\x19\xbb\xc7\x8c\xf8\x59\x69\x59\x05\x64\xc4\ \x5d\x20\x3d\xf2\x3a\x0f\xf6\x41\xae\x29\xc0\xf8\x89\x3e\x23\x2d\ \x26\x8c\x72\x06\xf8\x7a\x9d\x11\xb7\x31\xa7\xb0\x46\xca\xe9\xe3\ \xbe\xbf\xc6\xf0\xba\x86\xf6\x78\xc8\x06\x14\x76\x52\x23\xf7\x1f\ \x3b\xe7\x8f\xb6\x3a\x27\xf1\x64\xfd\x4b\x68\x49\xeb\x69\xe3\x3e\ \x7f\x05\x92\x12\xe3\x49\xcf\xdc\x06\x38\x1a\xd9\x02\x7b\x2f\x9b\ \xd9\x4a\x44\xf0\x49\xe8\xdf\xa1\x15\xf4\x69\xf3\x30\xf4\x6d\xeb\ \xc5\xd0\x02\xfa\x98\xa0\xaf\x8c\xfe\xed\x5b\x42\xf7\xe7\xef\x81\ \x25\x23\x7a\x40\x61\x71\x29\xf5\x11\xb6\xc6\x8c\xf8\x3b\x17\x99\ \xef\x3f\xb5\x6d\xa5\xd9\xb5\x75\x7b\x7c\x5b\xff\x57\xee\x85\x5d\ \xf3\xc7\x90\xae\x6a\xe4\xb8\x71\xae\x43\x9e\x13\x88\xe3\xbc\x3a\ \x29\xa1\x17\xff\x33\x8c\x01\xd9\xff\xc9\xd7\xe3\x5a\x3f\xcf\x3b\ \x35\xfc\x7b\xf6\x33\xee\x01\x55\x31\xdf\x34\xf9\xab\xd6\x52\x2c\ \xaa\x99\xb1\x80\xe7\xeb\xbf\x61\x5e\x84\x5c\xce\xcc\xca\x81\x14\ \xd6\x07\x98\xda\x80\x91\x1d\xb0\x9f\x33\x58\x1f\x90\x9a\x92\x0c\ \xc3\x3e\x7a\x09\x7e\x79\xf9\x7e\xe8\xfd\xfa\xc3\x0c\xcd\x2d\x02\ \x6d\xa0\xdb\x73\x77\xc3\x8e\x25\xd3\xa1\xb8\xac\x92\xf5\x1f\xe9\ \x36\xe7\x0e\xa8\xff\x9a\x4b\x57\x68\x5e\xc6\xf7\x7c\x1c\xe9\xfb\ \x71\xae\x86\x31\xe2\x85\xd9\xe9\xd4\x6f\xf3\xf1\x1c\xe7\x3d\xea\ \x16\xfd\x3a\xd6\x9b\x08\xde\xb3\x01\x0e\x2c\x9b\xc6\xe6\x7e\xa3\ \x61\xeb\xac\xa1\xb0\x7b\xc1\x38\x9a\x1f\x44\x9d\xd8\x07\xc5\x79\ \xd9\xac\xdf\xc0\xba\x03\x37\x8c\xf2\x48\xd1\x9e\xd0\x4a\x82\x36\ \x2e\xb4\x38\x36\x6d\x0a\xfa\xe7\x6b\xc1\xbb\x96\xcd\x84\xec\xfc\ \x42\x48\x4e\x4a\x22\xfd\x73\x98\xda\x81\x84\x54\xc8\x62\x7a\x9a\ \x33\xe0\x6b\xe8\xfa\xfc\xbd\x8c\xeb\x5e\xb2\x0d\x3c\x4c\xfe\xc0\ \x1c\xd0\x0e\xce\x1c\xdc\x45\x63\x80\xcc\xcc\x0c\x1b\x73\x07\x1c\ \x27\xe6\x51\xcc\xe7\xf4\xef\x7d\xa8\xfe\x84\xbd\x7d\x3f\xef\xd7\ \x50\x27\x98\xab\x73\x83\x11\x1a\xfb\x6d\x65\xbf\x8e\xba\x3c\x7f\ \x70\x2b\xcc\xee\xfe\x0e\x7d\x2f\x8e\xe7\xfb\xbe\x70\x97\x61\xed\ \x07\x6b\x86\xe0\xd5\xaf\xed\x43\x30\xf2\xbd\x27\x61\x1d\x1b\xf3\ \xe7\xa6\xc6\x4b\xb9\xa4\xb5\x35\x06\x1f\x80\xf5\x27\x8a\x72\x32\ \x69\x4f\xc0\x5c\x2e\x82\xa7\xeb\xbf\x61\x0c\xf0\x67\x58\x36\xbc\ \x3b\x64\x64\xe7\x40\x72\x72\x92\xc1\x07\x98\x82\xeb\x3f\x25\x39\ \x19\xf2\x8b\x4a\x60\xfd\xcc\x91\xf0\xd3\x33\x77\x31\xfd\x7b\x43\ \x2f\xa6\xfb\x5e\xad\x25\x70\x5b\xe0\xf6\xd0\xeb\xb5\x07\x61\xd0\ \x9b\x8f\x43\x62\x6c\x34\xd3\x6d\xae\xcd\xb5\x66\x7c\xaf\x90\x8d\ \x17\xb1\xd6\x0b\xae\xc7\x3a\x5a\x7f\x86\x8f\x6b\xce\xec\x58\x4d\ \x1c\x55\xe6\xff\xa2\x3f\xdf\x36\x6b\x18\xf5\x0d\x83\x5e\xbf\xdf\ \x10\x17\xc9\xeb\x0a\xf1\x1a\x44\x7c\xbd\x0f\xfd\x08\xce\x3d\x86\ \xbf\xfd\x18\x44\x9f\x3a\x20\xe7\x13\xd7\x28\xbe\xef\x1a\x2c\x1e\ \xf4\x05\x71\xa8\xd1\x7a\xb1\x87\xeb\x9f\xc0\x9e\x1d\xd7\xd5\x26\ \x7e\xd5\x06\x12\x13\x12\x20\x85\xe9\x39\x99\xe9\x17\x6d\x80\xc3\ \xd4\x0e\x50\xff\x39\x79\x05\x70\xf0\xb7\x55\xcc\xff\x3f\x60\xa4\ \x6f\x53\x3b\xe8\xd3\xa6\x05\xfc\xf2\xd2\x7d\x30\xf1\xc7\x4e\x76\ \xaf\x27\xe0\x5a\x14\xe6\xa8\x05\xef\x5e\x67\xb6\x5d\xed\xb2\x6b\ \xf6\x5c\x38\xee\xc3\xfe\x5d\x1a\xe3\xd5\x50\xdf\x8e\xf5\x60\x90\ \xeb\xd2\x9a\x7f\x2b\xa3\x7f\xc3\xdb\xa3\x61\x5d\x5f\xf2\x39\x58\ \x63\x04\xfb\xf8\x61\x9d\xfe\x01\xd9\xc9\x71\x8a\xef\x94\xfa\x80\ \xdd\x0b\xc7\x93\xef\x90\x6a\x41\x35\x31\xfd\xd3\xb3\x4b\xe3\xe4\ \xd0\x93\x47\x21\x2d\x23\x93\xfa\x00\x53\x1b\x50\xda\x01\xfe\x9c\ \x91\x99\x05\x11\xe7\x4e\x43\xdf\xf6\xad\xa0\xe7\x6b\x0f\x49\x7a\ \xa7\xfe\x5e\x61\x0b\xad\x9b\x93\x6f\x40\x1f\xb1\x74\x74\x5f\x36\ \xc7\x2c\x96\xc6\x0f\x36\xd6\x96\xd2\xd3\xd3\xa8\x4e\xc1\xd6\xe9\ \xfe\x14\xeb\xe9\x70\xdf\xdf\xbe\x39\xc5\x88\x97\x97\x14\xc1\xd5\ \xab\xd7\x48\x57\xb8\xc6\x87\xaf\x31\x1f\x14\xc7\xbc\x81\x8a\xf1\ \x1a\xbf\xe2\xfb\xa8\x67\x9c\xd7\xe1\x95\xaf\xfd\x53\xfe\x1c\xb3\ \x01\x8c\x9b\xdb\x30\xa1\x1f\xdc\xa0\x7e\xa0\xd6\x30\x0f\x38\xcd\ \xfc\x4c\x53\x8b\xff\x30\xf5\x01\xe8\x0b\xf7\xae\x9a\xc7\xe6\x81\ \x79\xe4\x07\x50\xff\x4a\x34\xb2\x05\xa6\xc7\xe4\xa4\x44\x18\xfe\ \xd9\x6b\xd0\x9d\x8d\x01\x7b\x31\x9e\x73\x1b\xe8\x65\x18\xfb\x21\ \xff\xbd\x68\x8c\xb0\x63\xd9\x6c\xc8\x67\x63\xff\x34\x66\x3f\xd6\ \xd6\x96\x08\xcc\x06\x30\xde\x93\xd7\x76\x72\x64\xde\xcf\xeb\xdd\ \x4c\xf9\xba\x8d\xb4\xb6\x7b\xe5\x0a\xf1\x14\xb9\x8f\xf5\x60\x70\ \xcf\xd6\x5c\xbd\x08\xd4\xf1\xf8\x4f\x5f\xa0\xb5\x02\xfc\xb7\xd3\ \xbe\x6d\x4f\xb6\xd2\xd0\xf7\xb4\x24\x7b\xc0\xdf\xa9\x2c\x2f\xa5\ \xf1\x3f\x7e\x2f\xce\x2b\x23\x8f\xef\xa5\xb1\x42\x53\xeb\xff\x8d\ \xc6\x00\x6c\xbc\xb4\x72\x74\x2f\x48\x67\x73\x00\xd4\x7f\x12\xf3\ \x01\x49\xb2\x1f\x30\x67\x07\xf8\x73\x46\x56\x36\xcc\x19\xf4\x2d\ \xfc\xcc\xc6\xf6\xbd\xd9\x18\xb0\x27\xe3\x7b\x4f\xe6\xf7\x7b\xf2\ \x7e\x40\xf6\x01\x68\x07\x67\x0e\xef\x85\x6c\x36\xa6\xc3\xb1\xa3\ \xb5\x35\x46\xdc\x87\xc4\xb8\xc4\xec\x94\x78\x18\xce\xfc\xad\xa5\ \xfa\x0e\x16\xfb\x7e\x39\xcf\x71\x76\xb7\xb7\xe5\xf1\xfa\x15\x9a\ \xf7\xa3\x1c\x5e\x33\xc7\x42\xec\x78\x4b\xe2\x7c\xd8\xa1\x6d\x34\ \x57\xc0\x58\x13\xac\x2f\x76\x72\xeb\x72\x29\xd6\x58\xee\x7f\xd0\ \x16\xd0\xc7\xe7\xa4\xc4\x51\x0d\x32\x9c\x03\xa0\x2f\x88\x0b\x3e\ \x66\xf6\x3e\x9b\x82\xfe\x95\x9c\x99\xca\xc6\xda\x5c\xf7\x89\x89\ \x89\x06\x1b\x30\x67\x07\x49\x89\x09\x90\x93\x5f\x04\xeb\x67\x8d\ \x66\xfe\xfd\x4f\x4c\xff\x2d\x0c\xdc\xef\x45\x76\xd0\x9c\xf4\xff\ \xcb\x2b\xcc\x9f\xbe\xfd\x14\x24\xc4\xc6\xd0\xbc\xd1\x74\x4d\xc1\ \xd4\x0e\xd0\x3f\x94\x94\x57\x41\xc8\xbe\xcd\x94\xab\xe2\x10\xf7\ \x15\xfa\x9f\xd3\xfd\x5d\xc3\x9c\x9d\xcf\xd5\x70\x5e\x87\x63\x7b\ \xd3\x7e\x9a\xeb\x1f\xf3\x4a\xeb\xe5\x75\x22\x94\x33\x3b\xd7\x18\ \x62\xcd\x95\x5c\xe1\xe3\x0a\xfc\x3d\xd4\x7f\xfc\xb9\xa0\x26\x13\ \xff\x63\xd1\x0f\xb0\xfb\x1f\xf6\xd6\xdf\x21\xec\xcc\x09\x48\x4e\ \x49\x25\x3b\x30\xb5\x01\xa5\x2d\xe0\x67\x99\xd9\xb9\x70\x68\xeb\ \x5a\xe8\xfe\xca\x03\x32\xf7\x11\x38\x16\x78\x48\xea\x03\x58\x9f\ \xd0\xf5\x85\xbf\xc0\xe4\xae\xef\x93\xae\xad\xae\x2b\xc9\xb6\x80\ \x6b\xd0\x98\x6b\xb0\x7d\xf6\x70\xe7\x72\x3c\x65\x5b\xc6\x79\x23\ \xad\xf7\x5d\xb9\x62\xd0\xff\xae\x5f\xc7\x36\xe8\xdf\x68\x3c\xd1\ \xd2\x50\x2f\x0c\xfd\x39\xd6\x0b\xc3\xfe\xe2\xcc\x8e\x35\xd4\x2f\ \x0e\x7d\x4b\xaa\x33\x1a\x40\xf3\x84\x47\x19\xff\xe3\x65\xfe\x57\ \xd3\xef\x47\x9d\xd8\x6f\x36\x27\xa9\x29\xe9\x9f\xb7\xdb\xfe\x75\ \x0b\x21\x2d\x33\x07\xe2\xe3\xe2\x48\xc7\x4a\x18\xdb\x41\x22\x1b\ \x03\xa4\x43\x44\xc8\x19\xe8\xdb\xe1\x11\xf8\xe5\xd5\xbf\x29\x6c\ \x40\xb2\x03\xec\x13\x7e\x64\xbe\x61\xd9\xd8\x01\xcc\x57\x14\xd2\ \xbc\xc1\xea\xda\x12\xd9\x48\x3a\xe5\x7a\xcd\xeb\xf9\xbe\xd9\xfa\ \x0e\xb6\x21\xaf\x69\x7e\xfc\x3c\xd5\x6b\xc1\x7e\x9a\xf3\xf9\xa8\ \xc5\x18\x22\x59\xff\xc7\x1a\xf4\x8f\xf6\x72\x72\xcb\x32\xe8\xf9\ \xf4\x7f\x51\xbc\x3c\xce\x43\xfa\x3c\xff\x7f\x54\x07\xa4\xba\xb2\ \x82\xea\x00\xd5\xc8\x75\xe8\xc8\x4f\xbc\xda\x44\xe7\x7f\xdc\x6f\ \x62\x4c\x28\x9b\x13\xaf\x9d\x30\x80\xe9\x3f\x9b\xe9\x3f\x16\x12\ \x98\x0f\x48\x90\xfd\x80\xa9\x1d\xe0\x55\xf2\x03\x09\x30\xe2\xf3\ \x36\xd0\xed\xc5\xfb\xa8\xdf\xef\xf1\x5a\x73\x02\xf7\xff\x5d\x5f\ \xf8\x33\xec\x5c\x39\x8f\xf4\x6f\x73\x6d\x89\xbd\x97\x89\x6b\x00\ \xa9\x89\xb4\xd7\x6e\xad\xbe\x83\x2d\x5f\x86\x1c\xcf\x4e\x8e\x35\ \xf4\xd3\x38\x6f\x8f\x3d\x73\xc4\x42\xee\xa0\xb1\xfe\x51\xaf\x38\ \x0e\xc0\x7f\x7f\x7c\xd3\x62\x5a\x83\x46\xe0\xcf\x71\xc1\x47\x0d\ \xf5\x3f\xf8\xf8\x7f\xcf\xa2\x09\x4d\x7a\xfe\xd7\xc0\xff\x07\x60\ \xe6\xcf\x9d\x48\xe7\xf1\x88\xf8\x78\x83\x0d\x98\xb3\x03\x7c\x2f\ \x2d\x23\x0b\xe6\xf8\xfd\xc0\x78\x7e\x17\xcd\x01\x70\x2e\xc8\x7d\ \x40\x0f\x79\x5e\x78\xf6\xe8\x01\x9a\x2f\xf2\xf1\xa3\xa5\xb5\xa5\ \x94\xe4\x24\x28\x60\x73\x84\xf3\x6c\x1c\x36\xd8\x81\x35\x3f\x73\ \xcf\x82\x63\x00\x5c\xe3\xab\x93\xd7\xfe\xd1\x0f\xe0\xb8\x7d\xc2\ \xe7\x2f\x49\x36\x60\xf4\xdd\xc6\xfa\xe7\xeb\x3b\xd7\xae\x5f\x6f\ \x54\xeb\xf3\xc6\xcd\x9b\x8d\xea\x7f\x19\x72\xd2\x9a\x30\xff\x11\ \x38\x86\xc5\x75\x2e\x9c\xd7\x27\x30\xae\x62\x1f\x60\x6a\x03\x4a\ \x5b\xc0\xcf\x33\x73\xf3\x61\xfd\x9c\x71\xf0\x03\xd3\x7f\x4f\xa6\ \xff\x1e\xad\x1b\xf8\x8f\xf3\x42\xbf\x77\x9f\x86\xb8\xd8\x68\xa6\ \xe3\x34\xab\x6b\x0a\x08\xec\x53\x70\xec\x87\x7b\x36\x4e\xd7\x77\ \xf0\x91\x73\xdc\x5e\xba\x07\xb6\xce\x08\x90\xf9\x2c\xed\xe7\xdd\ \xe4\xb5\x23\xe4\x31\x80\xb2\x46\x8c\xa9\xfe\xf9\x1a\x2f\xc5\x09\ \xc8\x90\x62\x06\xe4\xcf\xe4\xdc\xaf\xe2\xbc\x2c\x39\x1f\xbd\x09\ \x8f\xff\x15\x40\x6e\x1c\xde\xbc\x1c\x52\xd2\x33\x21\x96\x8d\xd9\ \x51\xff\x4a\x28\x6d\x20\x3e\x3e\x8e\xd6\x8b\x0e\x6d\x5b\xcf\xc6\ \x80\x7f\x93\x74\x2f\xa3\xe7\xeb\x2d\xe0\x67\x36\xef\x9f\xf2\xcb\ \x47\x90\xc2\x74\x6f\x3a\x87\x30\x67\x07\xf8\x3e\xc6\xfc\x2e\xe8\ \xfb\xb1\x5c\xd7\xd5\xf1\x78\x1f\x83\x2f\x63\xfa\x9c\xfc\x65\x6b\ \xa8\xae\xaa\x90\xe3\x7c\xae\xd2\x98\xbd\x8a\xf9\x00\x9c\xdf\x1b\ \xd7\x8d\x34\x1e\xff\xd9\x53\x2f\x92\x8f\x29\x4f\x6d\x5b\x61\x71\ \x7f\xb2\xa9\xe9\x9f\xe7\x85\x6c\x98\x3a\x04\x52\x99\x5f\x8f\x89\ \x89\x86\x38\xc6\xf1\x38\xd9\x0f\x98\xda\x01\x5e\x93\x92\x53\x20\ \x3c\xe4\x2c\x1b\x03\xfe\x9d\xf1\xfd\x6f\xc4\xfd\x5f\x90\xff\x6d\ \xbc\xe0\xfb\xa7\xff\x04\xcb\x27\x0c\x86\x2c\xe6\x23\x12\x13\xe2\ \xad\xae\x27\xe0\xd8\x30\x2d\x3d\x03\xb2\x52\x93\x88\x4f\x7e\x2e\ \xe6\xf9\x05\xca\xfb\x3a\xa7\xb7\xaf\x84\x8b\xd5\x95\x50\x92\x9f\ \x4d\x40\x7b\x40\x3d\x1b\xef\xd9\xcb\xf3\xbf\x63\xbb\xa9\xbf\xa0\ \xbd\x42\x36\x6f\xb0\x08\xb9\x9e\x24\xda\xc1\xac\x9f\xdf\xa2\x39\ \x42\x60\x13\xdd\xff\x35\x6d\x33\x7c\x96\x39\x6c\xec\x9d\xc0\xfc\ \x7b\x6c\x6c\x2c\x81\xdb\x80\x35\x3b\x18\xf9\x65\x07\xf8\xf9\x85\ \xfb\x18\xf7\xe5\x31\x20\xbb\xe2\xeb\x5d\xab\x17\x40\x06\x9b\x27\ \x26\xc4\xc7\xdb\x58\x4f\x48\x84\xec\xbc\x02\x08\x3b\xb2\xd3\xf5\ \xfa\x0e\x86\x75\xdd\x16\xf4\x4c\x98\x9f\x83\xe3\x49\xdc\x0f\xc6\ \x1a\x7e\x18\x07\x68\xce\xff\xe3\x19\x09\xf6\xd4\x8b\xc6\xcf\xf1\ \xf7\x4e\x6e\x59\x6e\xb6\xdf\x6f\xaa\xfa\x47\x60\x3f\x86\xed\x15\ \x15\x76\x0e\xe2\x98\xce\xb0\x0f\x30\xb5\x01\x23\xb0\xcf\x52\x18\ \x6f\xe7\x0e\xf9\x99\xf1\xfd\x2e\xe8\xc1\xfc\x3e\xf2\xff\x97\x57\ \x1e\x64\x7d\x80\x17\x9c\x0d\x3a\x04\x29\x6c\x6c\x97\x60\x63\x3d\ \x01\xed\x03\xe3\xd0\xf7\x2c\x9a\x68\x58\xf3\x77\xc5\x06\x94\x6b\ \xfb\xb8\x1f\x80\xcf\xc5\x81\xf6\xd5\x88\xab\xcc\x56\x26\x76\x79\ \x95\xf1\xf9\x4d\x43\x6e\x97\x35\xcc\x64\xbf\x87\x63\x25\x4b\xb9\ \x3f\x4d\x55\xff\x74\xdf\xac\xbd\x8e\x6d\x5b\x03\x89\x29\x69\x10\ \x1d\x1d\x65\xf0\x03\xe6\xfc\x41\x2c\xeb\x23\xd2\xb2\x72\x60\xc3\ \xdc\x09\x6c\x0c\x78\xb7\xa4\x7f\xc6\xfd\xae\x2f\xdd\x0f\x43\xde\ \x7f\x1e\x62\xa3\xa3\x21\x91\xe9\xd8\xd2\x3c\x92\x03\x3f\xcf\xcf\ \x2f\x80\xc5\x83\xba\x18\x38\xa5\xf5\xb9\x50\xca\xb3\x28\xf0\x35\ \xae\xe1\xe3\xb8\x00\xe3\x0d\x8c\x72\xbc\x1a\xe1\x6f\xf4\x7b\x7c\ \x6f\xa0\xa9\xc6\x7f\x9a\xed\x03\x78\x6e\xe8\xac\xe1\x8c\xd7\x59\ \x10\x15\x19\xc9\xc6\x01\x31\x84\x46\x76\x80\x57\xf6\x7e\x32\x1b\ \xdf\x1d\xda\xbe\x11\xba\xbf\xfa\x20\x43\x73\xb2\x81\x1f\x9e\xbd\ \x07\xa6\xf6\xfa\x1c\x92\x59\xdf\x6e\x6b\x1e\x49\xb6\xc0\xc6\x11\ \x99\xac\xef\x1f\xab\x71\x7d\x07\x7f\x93\x75\x3f\xb4\x33\xc3\xb9\ \x43\x6f\xfd\x9d\xd6\x40\x39\x70\xad\xaf\x21\x17\xcc\x38\xe7\x8b\ \x8f\x1d\x9b\x72\xfc\x77\x23\x28\xea\x43\xfc\xda\xef\x13\xa6\x97\ \x24\x88\x8e\x8a\x82\x18\xc6\x61\x6e\x03\x8d\x6d\x81\xcd\x11\x12\ \x12\x21\x2c\x24\x18\xfa\xfa\xfe\x03\xba\xbd\xfc\x80\x34\xf6\xfb\ \xf7\x9f\x60\xc5\xa4\x00\xda\x4f\xe2\xf3\x08\x73\x73\x48\x9a\x47\ \xb2\x79\x04\xfe\x5e\xd8\xb1\x3d\x4e\xaf\xf9\xd8\x0d\xca\x01\x92\ \xfa\x16\xec\x07\x30\x36\x9c\x72\xbf\xd8\x9c\xb0\xcf\x0b\x7f\x6a\ \xb8\xb2\x3e\x08\x63\x88\x28\xbf\x93\xdd\x13\xcf\x19\xb3\xc7\xaf\ \x34\x59\xfd\xcb\xc0\xb1\xf7\xe8\x0f\xfe\x0d\x31\x17\xc2\x20\x9a\ \xe9\x3a\x9a\xe9\x9f\xc3\xd4\x0e\x94\xb6\x30\xea\x6b\x5f\xf8\xe9\ \x85\x3f\x33\xfe\xb3\xb1\xdf\x8b\x7f\x85\x5d\x6b\x17\x43\xaa\x99\ \x79\xa4\xa9\x1d\xc4\xb1\xcf\x73\x0a\x8a\x60\xdf\xd2\xa9\xb4\xc7\ \xae\x76\x7d\x07\x43\xde\x1f\xe5\x00\x3d\x24\xe5\x72\x31\x9d\xe2\ \x5e\xee\xa2\x81\x5d\x60\xd3\xa4\x81\xb0\x6b\xc1\x58\x38\xb0\x7c\ \x3a\x1c\x5c\x39\x93\xdd\xc7\x14\xca\x05\x5b\x33\xba\x07\xed\x23\ \xe2\xb8\x11\xe7\x12\x68\x0f\x7c\x0f\x48\xd9\x6f\xdc\x6a\xfa\xa7\ \x9a\xf1\x6c\x3c\x84\x35\xa2\xe2\x13\x93\x21\x32\xf2\x82\x91\x0d\ \x98\xda\x01\xfa\x88\xa4\xd4\x74\x98\x17\xd8\x1d\xbe\x63\xbc\xa7\ \xf9\x5f\x5b\x2f\x08\x3e\x7e\x84\xf5\xfd\xc9\x86\x31\x83\xe9\xdc\ \x81\xdb\x02\x7e\x86\x31\xc5\x4b\x87\x7c\x63\xa8\xa3\xa0\x56\x9e\ \x37\x8f\x6f\xc5\x2b\xea\x6f\xfc\x67\x2f\xd2\x3e\x50\x62\xd8\x69\ \x69\x1f\xff\xca\x55\xca\x0b\xa8\x57\xc4\x00\x83\x9c\x03\x86\x6b\ \xc7\xb8\xce\x53\x94\x9b\x09\xe7\x0f\x6e\x81\x95\xc3\x7e\xa2\xef\ \xa1\xda\x93\x76\xf8\x82\xa6\xaa\x7f\x3e\x06\xd8\xf1\xeb\x38\x48\ \x4e\xcb\x84\x0b\x11\xe1\x10\xc5\x74\x8c\x30\xb5\x03\x04\x8e\x11\ \x92\x19\xcf\x37\xcc\x9f\xc4\xfa\xfd\x7b\x69\xec\xe7\xff\xe1\xcb\ \xcc\x2e\x22\x99\x6e\xe3\xcd\xce\x1f\x8c\xec\x80\xd9\x40\x7a\x4a\ \x22\x8c\xff\xe4\x79\x55\x6b\xfb\xf1\x38\x30\x3e\xde\xdf\xb7\x64\ \x12\x9d\x05\x80\xba\xc5\x98\x5e\x3e\x87\x97\xf2\x3a\x8c\xe7\x78\ \xca\x1c\x30\x8c\xf3\xac\x93\xd7\x7e\x71\xef\x77\x41\xbf\x4f\x69\ \xcd\xc7\x56\x1e\x60\x53\xd4\x3f\xcf\x9b\x91\x6a\x9d\x7c\x45\xfc\ \xbd\x70\xe1\x02\xe9\x98\xdb\x80\xa9\x2d\xe0\xcf\x09\xec\xf7\x0e\ \xef\xd8\x4c\x63\x7f\x9c\x07\x4e\xef\xfb\x25\xbd\x87\x63\x07\x4b\ \x73\x07\x9a\x3f\x30\xdf\x9f\x9c\x96\x0e\x61\x41\xfb\x68\xfc\xa1\ \x36\xef\x51\xf7\x18\x9f\x8b\x31\x1a\x28\x3c\x6e\x47\x19\x13\x6c\ \x2e\xe7\xc7\x18\xb5\xf2\xbf\xa9\x25\xbb\xc1\x98\x4f\xec\x1f\xa4\ \x1a\xb4\x96\xf7\x28\x9a\xa2\xfe\x39\xa4\x3d\xd4\xe7\x20\x3e\x26\ \x12\x2e\x30\xdd\x47\x2a\x60\x6a\x07\x88\x18\xa6\x5b\x1c\x03\xf6\ \x7f\xf3\x49\xf8\xe6\xc9\xff\x07\x2b\xa7\x0e\xa7\x35\xe4\xa8\xa8\ \x48\xb3\x73\x07\x6e\x0b\x38\xbf\xcc\xc8\xc9\x87\x7d\xac\xef\xed\ \xaf\x52\x7d\x07\xe5\xfa\x0f\xda\x40\x42\xc8\x71\xd2\x3d\xe5\x7e\ \x29\xf3\x38\x2c\xe4\x7e\x99\x3b\xeb\xc7\x34\x6f\x04\xfd\xc1\x6f\ \xd3\x86\x58\xad\x47\xd4\x94\xf5\x2f\x3d\x8f\x17\xd5\x7d\x8e\x89\ \x4f\x60\x7d\x40\x84\x91\x0d\x98\xb3\x03\x1c\x2b\x8e\xfe\xee\x2d\ \xf8\x8e\xf1\x7f\xcf\xc6\x15\x90\x98\x9c\x6a\xd0\xbf\xf9\xb9\x43\ \x2c\xf9\x87\xf4\x8c\x4c\x58\x31\xf4\x47\x55\x6b\x3b\xf1\x1c\x00\ \x1c\xcf\x19\x74\x6f\xa2\x6f\xf4\x01\x35\x8a\x7d\x9d\x5a\xb9\xa6\ \x1b\xcf\xf3\x53\xf6\x03\x4a\x7b\xa0\x78\x52\x8a\x2b\xa9\x92\xf2\ \x13\xe4\xbd\x84\xa6\xbe\xfe\x6b\xdc\x7e\x52\x3c\xc0\x9e\x25\x53\ \x20\x91\x8d\xed\xc2\xc2\xce\x53\x3f\x80\x30\xb5\x03\xc4\x85\x0b\ \x11\xa4\xef\xb9\x6c\x0c\xf8\xe3\xf3\x7f\x81\x73\xa7\x4f\x40\x2c\ \xeb\xfb\x95\xfd\x44\x23\x3b\xc0\x2b\xae\x1f\x26\x26\x48\xfb\xb2\ \x6d\x5d\xaf\xed\xc4\xfd\x3e\xae\xe7\x4e\xfa\xe2\x55\x29\x06\x84\ \xce\x6c\xaa\x35\xe2\x30\xea\x8f\x8f\xfb\xea\xeb\xa5\x5c\x2f\x7c\ \x8d\xeb\xba\x54\x0b\xa0\xd1\x38\xf0\x92\x61\xef\x8f\xc7\x94\xe1\ \x67\xa1\x07\x7e\x93\x63\xd4\xcd\xc4\x94\x36\x51\xfd\x2b\x73\x43\ \xb1\xb6\x1d\xae\xcd\x84\x85\x85\x91\x8e\xb9\x0d\x98\xda\x42\x04\ \x1b\x23\xa2\x9d\xac\x9d\x3d\x1e\x06\xbd\xf7\x9c\x41\xef\xe6\xc6\ \x8c\x86\x79\x43\xb4\x34\x6e\x38\x1f\xb4\xdf\x2c\x7f\x5c\xb1\x5d\ \xdc\xff\xc5\xb8\x7c\x8a\xe7\xab\xb9\x68\xe4\xc7\x79\x8c\x0f\xd6\ \x94\xc2\x35\xfc\xbd\x8b\x26\x92\x2f\xc7\xd8\xee\x75\x63\x7b\xc1\ \xc6\x49\x03\x28\x47\x04\x7d\x47\xe8\xfe\xdf\xe8\x2c\x64\xdc\xeb\ \xbd\x21\xc7\xfd\xf3\xef\x42\x1b\xc2\x73\xa1\x26\x32\x3b\xb3\xeb\ \xfc\xd7\x26\xa2\x7f\x09\xc8\xa1\x87\x60\x22\xe3\x65\x62\x3c\xeb\ \xdb\xc3\x23\x98\x8e\x1b\x60\x6a\x07\xd8\x3f\xc4\x25\x24\x31\xbf\ \xbf\x12\x66\x0c\xf8\x8e\xfd\x9c\x48\xf3\x46\x73\xe3\x45\x8e\x48\ \xf6\xef\x52\x33\xb2\xe9\x8c\x51\x67\x72\x3c\xad\x01\xd7\xfc\x71\ \xcc\xa7\xcc\xd7\x41\x7d\x5d\xb9\x72\x19\x82\x36\x2e\x82\x49\x5f\ \xbe\x46\xeb\xb7\xf8\x77\x29\xdf\xeb\xe5\x7b\x68\xfc\x81\x7d\x06\ \xae\x0f\xf4\x93\x6b\x01\xa1\x6f\xc7\x75\xc0\x85\xfd\x3f\x63\x73\ \xc6\x53\xe4\x23\x78\x7f\x80\xfe\x00\xf3\xcb\x36\x4c\xec\x6f\xb6\ \x3e\x41\xd3\xd6\x7f\xc3\xfc\x29\x8c\xf1\x33\x2a\x36\x8e\x7c\x80\ \xd2\x06\x8c\xed\x20\x82\xf5\xff\xb1\x70\x3a\xe8\x30\x6c\x5e\x32\ \x1b\xe2\x12\x93\x0c\x63\x06\x73\xe3\x45\xe4\x3e\x7e\x86\xb1\xa6\ \xab\x46\x74\x73\xb9\xb6\x93\xb1\xee\x31\xf7\xf3\x09\x28\x29\xc8\ \x25\xde\x72\x7d\xe1\xcf\xc8\x71\x5c\xdf\xe3\xb9\xfb\xfc\x8c\xf8\ \xc0\x37\x38\x8c\x6b\x81\xf1\xb5\x03\xb4\x13\x5c\x97\x8e\x3a\x79\ \xc0\x90\x53\x88\x7d\x00\xc8\x39\xa0\xe6\xe2\x0a\x9b\xba\xfe\xf9\ \x18\xea\xc0\xaa\x59\xe4\xdb\xcf\x87\x86\x92\xce\xc3\xc3\xc3\x09\ \xe6\x6c\x21\x82\xbd\x7f\x3e\xe4\x9c\x3c\x26\x68\x3c\x56\x30\xb6\ \x83\x68\xe6\x5b\xe2\x88\x8b\x83\x5d\xa8\xed\x64\x04\x1e\xfb\xf1\ \xf5\xeb\x46\xf9\x1f\xe8\xf3\xa3\x4f\x1d\x32\xc4\x73\xdb\x8c\x2d\ \x31\xb1\x43\x8c\x01\xc6\x75\xf1\x69\xdf\x75\x30\xf4\x01\x3c\xaf\ \x04\xf7\x8d\xcd\xc5\xab\x35\x65\xfd\x2b\xf3\x68\xb1\xf6\x1a\xee\ \xf1\x9c\x3f\x1f\x6a\xa4\x6f\x6e\x07\x4a\x5b\x90\x7c\x41\x24\x71\ \xdf\xdc\x38\xa1\x01\x17\x20\x86\x8d\x0f\x43\x83\x0e\xc0\x30\xc6\ \x33\x73\xf1\xf3\x4e\xd9\x2c\xcf\xff\xe8\xfe\xb6\x61\xae\xc6\xe3\ \x7f\x71\x5d\x97\xf2\x3f\xde\x74\x2c\x9f\x4c\xd9\x26\xd8\x17\xe4\ \xa5\x25\x1a\xe7\x7f\x9c\x3d\x7a\xcb\xc4\x7f\x19\x43\xe2\xd2\x94\ \xaf\x5a\x43\x4a\x52\x22\x9c\x67\xfe\xdf\x12\xf7\x0d\xef\x9b\x7c\ \x66\x71\xbc\x18\x2e\x8d\x17\xf7\xae\x98\xe5\x54\x8e\xa7\x75\xfd\ \xdf\x0f\x73\x7e\x51\xe6\x7f\x48\xfa\xb7\x94\xa7\xe9\xa8\xfe\x31\ \x2f\xf9\xfa\x8d\x3a\x83\xfe\x6f\x85\xfc\x0f\x8b\xcf\x8c\xb1\xd4\ \xcc\x0f\x5c\x38\x73\x0c\x22\xa3\x63\x98\x0f\x38\x6f\xc4\x7b\x53\ \x5b\xb0\xf4\xbe\xa9\x1d\xa0\xfe\x71\x6f\x61\xf5\xe8\x1e\xaa\xf6\ \xfd\xd6\xf2\x3f\x30\x4e\x1f\xfb\x69\xf4\xe5\x8e\xe9\x5d\xaa\x93\ \x80\x1c\x1f\xdd\xf9\x69\x5a\x43\xc6\x18\xf0\x1a\x43\xfe\xdf\xbe\ \xa6\x9f\xff\x61\x89\x4f\xf2\x3c\xf0\xc8\xfa\x05\x90\x90\x92\x06\ \x21\xe7\x82\x69\x1c\xc8\x61\x8f\x2d\x98\xfa\x0a\x6e\x0f\x31\x6c\ \x0c\x88\xb1\x98\x8e\xd6\x76\xb2\x05\x1c\xa7\x8d\xf9\xf0\x69\xca\ \xe3\xa3\x58\x7d\xb9\x5e\x0b\xea\x0d\xeb\x3d\x4a\xf5\x44\x5a\x49\ \x7b\xfb\xe8\x77\xcc\xfe\xed\x96\x86\x3d\x5f\xde\x5f\xf4\x7e\xee\ \x7f\x29\x3e\x89\xd7\x81\xe0\xf1\xff\x67\x9a\x7a\xfe\xaf\x15\x7f\ \x27\x9d\x17\x72\x2f\xac\x1f\xdf\x87\xf6\x72\xcf\x99\xe8\xdf\x11\ \x3b\x30\xbc\xcf\xae\x91\x51\x31\x70\x2e\xe8\x20\x0c\x63\x5c\x54\ \xab\xef\x37\xba\x6f\xa6\xbb\xf4\xd8\x88\x86\x5c\x7d\x06\xfc\x19\ \x73\x37\xe7\xf6\x78\x9f\xfa\x08\xb4\x03\x5c\xc3\xe7\xb9\xde\x0d\ \x71\x62\xcd\x89\xcf\xbc\x4e\x28\xed\x49\x33\x3b\xc1\xfa\x30\xb4\ \x86\xc0\x6b\x06\xca\x35\x05\x76\x5a\x38\x8b\xb8\xa9\xeb\x9f\xfb\ \x53\x8c\x77\x9a\xfe\x5d\x3b\x48\x4b\x4d\x81\x90\x90\x10\xea\x03\ \x38\x9c\xb1\x85\x30\xf6\xef\x62\x99\xef\xdf\xb3\x62\x36\x0c\x7e\ \xdd\xf1\x1c\x4f\x7b\x7c\x16\xea\x0d\xeb\x46\x2a\xd7\x7f\xc8\x06\ \x6e\xdc\xa0\x9f\x71\x1e\xb7\x63\xce\x08\xda\xff\x9f\xfa\x6d\x7b\ \x3a\x57\x86\xe2\x44\xdf\xfd\x27\xc5\x1f\x63\x6c\xc0\xac\x6e\x9d\ \xd8\xdc\xb4\x2b\x9d\x3b\x81\xb9\x40\x37\xd9\xdc\x5f\xb9\x7e\xcc\ \xd7\x02\x71\xac\xc1\x63\x80\x6f\x39\xfd\xfb\x4a\x35\xcf\x87\xb1\ \x71\x4f\xec\xf9\x33\x10\x11\x19\xd5\xc8\x06\x2c\xd9\x82\x79\x3b\ \x90\xf5\x1f\x9f\x08\xab\x46\xf7\xa2\xbc\x73\xb5\xf7\xfb\x79\x4d\ \xa3\x05\x7d\x3f\x31\x9a\xff\x73\x1b\xa0\x35\x40\x79\x6d\x17\xfb\ \x05\x9c\x27\xe2\x3a\x71\x45\x69\x11\x94\x15\xe5\x53\xbf\x51\x5d\ \x51\x2e\xd5\x7c\xbc\x71\x83\xc6\x8e\x98\x43\x50\xab\xfc\x9e\x9a\ \x1a\x5a\x0b\x4a\x8d\x0a\xa5\xf6\xb9\xd5\xf6\x7f\x8c\xf8\x24\xef\ \x07\x9f\xd8\xb2\x1c\x12\x92\xd3\x20\xf8\xec\x19\x08\x0d\x0d\x35\ \xc0\x96\x1d\x34\xb2\x05\xec\xff\x19\xa6\xb2\xb9\xb4\x4b\x79\x5e\ \x76\xf8\x2d\xac\xdd\x5b\xa7\xa8\xfd\xa7\xdc\x03\xe0\x79\x1e\xb4\ \x2e\xc8\xec\x00\x6b\x85\xa0\xbd\xe0\x98\x01\x5f\x63\xed\x00\x9e\ \x03\xa4\xb4\x21\xfe\xef\x71\xec\xb7\x7a\x54\x77\xaa\x09\xac\x7b\ \xfe\x87\x8f\xf4\xdd\xfe\x6a\x8f\xff\xf9\x18\x80\xf5\x95\x9b\xa7\ \x0c\x82\xb4\xcc\x2c\x38\x73\xe6\xb4\x91\xfe\x2d\xd9\x81\x25\x5b\ \x40\x1f\x82\x71\xe1\x18\x63\xa9\x76\xdf\xdf\xe0\x03\x1a\xea\x80\ \x20\xaf\xf9\x7c\x9d\xdb\x80\xad\x7d\x5f\x6b\x7b\xc1\x7c\x3e\x89\ \x7b\x3f\xd6\xea\x93\xb8\x53\xff\xfe\x9c\xff\x3e\xea\xf3\x9f\xe7\ \x53\xce\xfa\xa9\x23\xd5\xee\x0b\x0e\x0e\xa6\x3e\x80\xc3\x1e\x5b\ \xe0\xba\xc7\x35\xc4\xe8\xb8\x04\xd8\xb5\x62\x0e\xf8\xb5\xd5\xee\ \x0c\x6f\xc3\x1e\x16\xf3\x5b\xb8\x76\x8f\x39\xdb\xe8\xf3\x4d\x63\ \x3f\x78\x1d\x58\xa5\x5d\x58\xb2\x11\xee\x2f\x50\x62\xcf\x1e\xa1\ \x79\xa4\xb4\xee\x63\x7e\xef\xca\xbd\xfc\xf7\x96\xf9\xef\xb5\x16\ \x73\x20\x65\xfd\xd7\xab\xd5\x9e\x43\xe4\xfa\x10\x49\x51\x4c\x97\ \x11\x17\xe0\x9c\x89\x0d\xd8\x6b\x07\xa1\xec\xf7\x50\xff\x2b\xc7\ \xf4\x36\xf4\xfd\x5a\x9d\xe1\xdc\xb0\x8f\x79\x1f\xe5\x6c\xa4\x45\ \x9f\xa7\x7d\x5d\x8c\xe3\xe2\x7d\x78\x8d\x5c\xf3\x95\xef\xfd\x5f\ \x92\xe7\x0a\xca\x18\x80\x4b\x72\xfd\xa8\x3a\xb9\x76\x34\xee\x1f\ \xe1\xf7\xe3\x9c\xc1\xda\xbe\xa5\x7b\xf9\xef\x75\xa7\x6c\x07\x0b\ \xfd\xd5\xe6\xbf\x2f\xcf\xa7\xfb\x2b\x9c\xd9\xb9\x16\x62\xd8\xd8\ \xed\x44\xd0\x31\xea\x07\xce\x1a\x70\x86\xc6\x05\xc1\x67\xcf\x32\ \xff\x70\x96\xd9\xc7\x59\xb2\x11\x9c\x2f\x86\x10\xce\x49\x08\x39\ \x47\x3e\x60\xda\x0f\x1d\xb5\xeb\xfb\xcd\xd8\x00\xf7\xd3\x9b\x58\ \x1f\x86\xe7\x09\xa0\x8e\x6f\xd2\xfe\xbf\xb4\xf7\x7f\x1d\xf7\xfe\ \x6f\xd4\xd1\x38\x8f\x62\x00\xea\x30\x06\xa0\xde\x50\x27\x1e\x6b\ \x87\xe1\x5e\xf0\xdc\x1e\xef\x91\x3d\x79\x5a\xfd\x77\xa6\xf3\xdf\ \x93\xfe\x7d\xbd\x47\xe0\x39\x9f\x8c\x53\xd7\xd5\xe2\x3f\xad\x7b\ \xb2\x31\x00\xae\x9d\x6e\x9b\x39\x14\x4a\x2f\x5e\x26\x0e\xe3\x1c\ \x2e\x26\x21\x89\x10\xcd\x6c\x02\x11\x15\x87\x48\x20\x44\xc6\x22\ \xe2\xe1\x42\x4c\x3c\x5d\x23\x63\xe2\x20\x26\x31\x85\x62\x43\xb4\ \xea\xfb\x2d\xda\x80\x9c\x4f\x44\x31\xdc\xec\xef\x62\x9e\xd7\xd6\ \x99\x81\xb4\xff\x1f\x75\x72\x3f\xa4\x44\x9e\xa3\xf3\x20\x70\x6d\ \x17\x6b\x4e\x27\x9e\x3f\x45\xf5\xa0\x0e\xb1\xb9\xdf\xea\x91\xdd\ \xa8\xee\x07\xce\x29\xa4\x9a\x24\xf6\xe5\x01\xb8\x57\xff\xde\xbf\ \x93\xaf\x1f\x05\x48\xfa\xaf\x53\x4b\xff\x1c\xb8\x26\x82\xe7\xb0\ \xec\x59\x38\x1e\x76\x2d\x18\x47\x71\xd4\x3b\xe6\x8f\x81\x6d\x73\ \x47\xc1\x96\xd9\x23\x60\xf3\xcc\x61\xb0\x71\x7a\x20\x6c\x98\xea\ \x0f\x6b\x27\xfb\xc1\xea\x89\x83\x60\xe5\xf8\x81\xb0\x7c\x6c\x3f\ \x58\x36\xa6\x1f\xd5\x00\x5c\x3a\x6e\x20\xcc\x1d\xf0\x95\x1c\xeb\ \xa9\xbd\xee\x95\x36\x80\x57\x3e\xd7\x44\x7f\xd0\x4f\xce\xf1\xe0\ \x6b\xb7\x7c\xcf\xd7\xf0\x3b\x6d\x8c\x7f\x87\xd6\x03\xed\xd4\xbd\ \xdb\xf5\xef\xe3\x75\x87\x7c\xbd\x9f\xb5\x6b\xb5\xfc\xf7\xeb\xd5\ \xf4\x01\x92\x0d\x34\xa7\x78\x09\xf4\x05\x52\xbd\x5c\x8e\x7b\xa0\ \x3f\xe2\x65\x8e\x7b\x59\xff\xce\xf1\x67\xc3\x15\xdf\xc7\x35\x37\ \xfe\x9d\x7a\x9d\xe7\x46\xb5\x9c\xe4\xfd\x7e\xc3\xbd\xe0\x3c\x9e\ \xe6\xf2\x2d\x0c\x71\x64\x0d\xbf\x63\xdf\x99\x2f\x7a\xe9\x1f\x25\ \xc0\xe7\x61\x3e\x07\xdc\x2c\x8f\xa9\xf8\x18\x50\x45\x1b\x68\xa8\ \x95\x3b\xf4\x0d\x7e\x56\x9a\x2d\xb4\x32\xbe\xf2\xdc\x4e\xbd\x74\ \x6f\x62\xd3\x6a\xfd\x9e\xee\xfa\xf7\xf5\xbe\x53\xbe\xbe\x29\xdf\ \x37\xef\x03\x54\xed\x07\x9c\x6d\x6b\xd3\x7c\xdb\x5b\x1d\xee\xd6\ \x3f\xe9\xbe\xa3\xa1\x1f\xd8\x23\xff\x6d\x3e\x0f\xd0\xdd\x06\x6e\ \x37\xe8\xa2\x7f\x79\x1d\x80\x5d\x1f\x67\x28\xa5\xb5\x20\x1f\xef\ \x9b\xc2\x06\x6e\x0f\xfd\x93\xee\xe5\xb5\x00\x36\x0e\xfc\x44\xf6\ \xb5\xd8\x0f\x28\x6d\x40\xd8\xc1\x2d\xac\x7f\xb2\x01\x1f\xaf\xdf\ \xc9\xb6\xf0\x13\xfb\xf9\xa6\xbf\xf1\x9a\x20\xd7\xbf\xb0\x83\x5b\ \x54\xff\x92\x0d\x48\x6b\x02\x4c\xff\x6f\x33\xfd\x17\xf8\xd3\xbd\ \xe0\x98\xd0\xeb\x86\xbf\xe4\x0f\xea\x05\xb4\x83\xde\xfa\x47\x31\ \xac\x0b\x75\xf4\xbe\x8f\xd9\xc3\x52\x86\x6b\xfe\x32\xf7\xe5\xb1\ \x38\xbb\x57\xb2\x09\xec\x23\x04\x54\x04\x6b\xe7\x6b\xb2\xfe\x37\ \xe8\xa5\x7f\xd2\xbd\x8f\xd7\x9d\x7e\x8a\x71\x21\x7b\x3d\x81\x21\ \x82\xdd\xe3\x65\xb2\x55\x1f\xb4\x05\xb4\xd9\xdb\x63\x5e\xe6\x2e\ \x28\xf8\xbf\x59\x4f\xfd\x93\x0d\xf8\x7a\xdd\x31\x44\x1e\x17\x4a\ \x36\xd1\xe2\xce\x00\xdf\x96\xcd\xd9\x7d\xb6\x67\xfa\xff\x98\xe9\ \xff\x0b\x76\xaf\x5f\x04\xd0\x55\x40\x0d\x30\xbd\x77\x61\x6d\xfa\ \x2d\xbb\xbe\xaa\x97\xde\x4d\x85\xe9\xf7\x4e\xde\x27\x08\xb9\xbd\ \x85\xd9\xe8\x1d\x0c\x77\xe2\x38\x91\xf1\xff\x77\xcc\x56\x7f\x17\ \x40\x57\x01\x35\xe0\xef\x2b\xb5\xa9\xbf\xbc\x2e\x2b\x44\x88\x10\ \x21\x42\x84\x08\x11\x22\x44\x88\x10\x21\x42\x84\x08\x11\x62\x2a\ \x70\xbb\xcb\x55\x45\x63\x8c\x32\x79\xdd\xc2\xe4\xf5\x1f\x4d\x5e\ \xff\xce\xe4\xf5\x1d\x26\xaf\x9b\x99\xbe\x1e\x65\xe3\x75\x5b\x17\ \x5f\xb7\x10\xaf\xc5\x6b\xf1\x5a\xbc\x6e\xba\xaf\x6f\xba\xf8\xba\ \xde\xc6\x6b\x30\x7d\x3d\xda\xe4\xf5\x09\x93\xd7\x59\x26\xaf\xab\ \x4c\x5e\xdf\x34\x79\xdd\xb4\xe4\x31\x76\xd7\xed\x18\xb0\x15\xee\ \x68\xe6\x25\x3d\x46\xbb\x66\x42\x84\x08\x11\x22\xc4\x0e\x91\xf6\ \xb8\xbd\xee\x90\xf7\xba\x3d\x17\x3e\xd2\x3d\xea\xdd\x5e\x9e\x20\ \x18\x93\xe0\x2f\xc7\x2f\xbb\xf8\x3d\x7f\x60\xb8\x9b\xe9\xff\x2e\ \x76\xf5\x6c\xf8\x18\xee\xf1\x3f\x8c\xda\xc1\xd7\xcb\x61\x9b\x08\ \x90\xe3\x7b\xd8\xb5\x73\x80\x14\x83\x56\xca\xae\x15\x4d\x00\xe5\ \x0c\xe9\x01\x3e\xde\xdb\x98\xfe\xdf\x92\x9e\xc1\xeb\x0e\x7f\x1f\ \xc7\x78\xa1\x78\xfe\x4f\x03\x28\x16\xcf\x4b\xd5\x5a\x18\x9a\x42\ \x8a\xc3\xac\xc3\x78\x7d\x8c\x1b\x64\xfa\xff\x1f\x17\xf4\xcf\x9f\ \x1f\x6b\x01\xe8\x1e\x0f\x6b\x37\x7c\x28\x4f\xe1\x3a\xe5\x88\xfb\ \x7a\x1f\xf0\xeb\xe8\xe5\x50\xfc\x4c\x93\xd6\xbf\x71\x6e\xc6\x35\ \xb2\x03\x1f\xef\x41\xf4\x3c\x3e\xf6\xc5\xed\x99\x3e\x3f\xe3\xd2\ \x8d\x80\x8e\x2d\xeb\xcd\xe5\xea\x52\xcd\x42\x07\xcf\x5e\xe0\xbf\ \x6b\xe9\xfb\x54\x38\xbb\x55\x8a\x9f\x97\xf2\x57\xf1\xbb\xd2\xfc\ \x3b\xb4\xf8\xa3\x33\xfa\x97\x73\x96\x6f\x0c\x6e\xf3\xb7\x7a\xaa\ \xf3\xff\xd2\x3d\x46\xc0\xf7\xa8\x0e\x89\x5c\xc3\xc7\x1e\xe0\x3d\ \x61\xdd\x9f\xbe\x72\xde\xbb\xf1\xf7\xdd\x4d\x35\x87\x78\x3b\xf1\ \x3c\x72\xd3\xf3\x43\x6d\x42\x7a\xfe\x7a\x99\x0f\x98\x2b\xfd\xa2\ \x64\x03\xb6\xb9\x60\xa4\x7f\xa9\x0e\xd6\x8d\xd9\x5d\x3b\xd5\x63\ \xdd\x86\xed\xb3\x87\xc3\x8e\x39\x23\x09\xf8\x33\xbe\x87\x67\x1c\ \x62\x1b\x58\x3b\xcb\x4a\x09\x7e\x36\xd4\x8e\xb9\xa3\xe8\x1c\x2c\ \x03\xd8\xf7\xed\xfe\x75\x1c\x2c\x0f\xfc\xde\xe8\x2c\x17\xfc\xee\ \x41\xad\xef\x97\xce\xd6\x7d\xfd\x7e\xbb\x20\x9f\xad\x8b\x6d\xc0\ \xf3\xd6\x3e\x54\x3e\x9b\xbd\xcf\x2f\xd7\xaf\xbd\xb1\x64\xc8\x37\ \xf5\x58\xaf\xed\xf2\xb5\x1b\x70\xe5\x46\x1d\x5c\x65\xb8\x7c\xed\ \x3a\xcd\xb3\x4f\xed\x5c\x0b\x7d\x98\xde\xfc\x99\xdd\xfa\x75\xf0\ \x82\x21\xe6\xe0\x23\x21\x80\xfd\x4e\x5f\xa6\xe7\x75\xe3\xfa\xd0\ \xbf\xc5\x5a\x42\x75\xf5\x52\xad\x98\x1b\x37\xa5\x5a\x81\x41\x1b\ \x16\xc8\x35\x66\xa5\x7a\xa0\xc1\xbb\xd7\x43\x4a\x64\x08\x24\x84\ \x9e\xa0\xba\x22\x96\x71\x92\xae\x09\xa1\x27\x61\xf2\x97\xad\xb1\ \xdd\xea\x99\xfe\x30\x57\x07\xfd\xe0\xe7\xf8\x4c\xf6\xc4\xee\x9a\ \xf2\x7f\x48\xfb\xe6\x37\x46\xbc\xf7\x54\x7d\x46\x4a\x22\x14\x17\ \x17\x43\x61\x41\x3e\x14\x15\x16\xd0\xb5\xa2\xb2\x0a\x62\x43\x4f\ \xc3\x80\xb6\xcd\x61\x10\x7b\x4e\x42\xfb\x16\x30\xd8\x04\x7e\x1d\ \x24\x60\x1b\xf5\x61\x76\x7f\x6c\xe3\x22\x6a\xc3\x8a\xf2\x32\xa8\ \xae\xaa\x64\xa8\xa2\x1a\x5b\x78\x56\xde\xe2\x81\x5d\xa4\x7a\xb8\ \x72\xad\x0c\x3c\x3f\x05\xe5\xda\xf5\x1b\x54\x5b\xc7\x1a\x50\x47\ \x78\xfe\xce\xcc\x9f\xde\x40\x3b\xa8\x0f\xe4\xcf\xef\x23\x3f\xbf\ \x1d\x3e\xd0\xf4\xf9\xf1\x3b\x98\xed\xd5\xe3\x39\x33\x15\xd5\x35\ \x50\xc8\x9e\x1d\xdb\x01\x51\x56\x56\x06\xf9\xb9\x39\x30\xea\xa3\ \xe7\xa1\x7f\xeb\x07\x61\x70\x07\x6f\xf6\xfc\x52\x3b\x0c\x56\x82\ \xbd\x87\xb6\x81\x18\xd8\xe6\x41\x48\x08\x3b\x4d\xf6\x53\x55\x59\ \x09\x17\xf1\x4c\xf8\xea\x6a\xa8\xbd\x74\x99\xea\x04\x8d\x65\xdc\ \x50\x9e\x61\x5c\x90\x91\x44\xcf\x7f\xb3\xae\x8e\x6a\x48\x35\x82\ \x5c\x67\x08\x3f\xaf\x95\xeb\x0d\xce\xf8\xc1\x17\xf9\xd2\xf0\xfc\ \x4e\xea\x9f\x6a\x57\xbf\xf1\xc8\x8d\x7e\x2f\xdf\x53\xbf\x73\xe1\ \x24\xa8\xaa\xb9\x0c\x05\xf9\x79\x50\x54\x54\x24\xa1\xb0\x90\xb5\ \xc9\x45\x98\xd7\xef\x73\xe8\xfd\xd2\x9f\xd9\xb3\xb6\x84\x41\xed\ \xbc\xa4\x36\x60\x7a\x27\x30\xbd\x0f\xa6\x67\xf7\xa6\x67\x1f\xf5\ \xe1\xb3\x50\xc4\xbe\xa3\xfa\x62\x0d\x3d\x7f\x35\x7b\x76\xbc\x5e\ \xbd\x7e\x93\xce\xd5\x34\xad\xeb\x84\x67\xe9\x1c\x59\x3b\x0f\x0e\ \xae\x98\x41\x67\xea\x98\xe2\xd0\xaa\x59\xb0\x7f\xd9\x34\x38\xb5\ \x6d\x85\xa1\xd6\xda\x8c\x1f\xd5\x79\x7e\xd2\xff\x1b\xad\x6e\x30\ \x7b\xac\xff\x75\x40\x17\x28\xab\xa8\x82\x02\x66\xf7\x85\xec\xb9\ \xf1\xf9\x0b\xf2\xf3\xa1\xba\xf6\x32\x6c\x99\x3b\x06\x7a\xbc\xc0\ \xfa\x02\x9f\x96\x30\x90\x3d\xf3\xc0\x76\x08\xde\x0e\x52\x5b\xf8\ \x31\x7f\xd6\xe7\xe5\xbf\xc0\xfc\x7e\x9f\x41\x0d\xd3\x75\x45\x79\ \x39\x54\xb2\xe7\x46\x20\x0f\xae\x33\x25\xe2\x73\x2a\xb9\xcf\x6b\ \x0e\x51\xcd\x14\xf9\x4c\x19\x53\x60\x7d\xe5\x1e\x4f\xff\x17\xd5\ \x9c\xe5\x35\x46\xd5\xd2\xbf\xa4\x83\x96\x37\x98\xcf\xae\x1f\xcd\ \xf4\x96\x99\x9e\x0a\x45\xcc\xee\x0b\x0a\x0a\xa8\x0d\xf0\xf9\x91\ \x13\x67\xf6\x6d\x85\x5e\xec\xd9\x06\xa1\x8e\xf1\xf9\x39\xda\x49\ \x40\x9b\xf0\xf3\x69\x05\x3d\x5f\xb8\x1b\xb6\xcd\x1b\x03\x97\x98\ \x1f\x2d\x2d\x2d\x81\x8a\x8a\x0a\x42\x39\xe3\x11\xea\x7f\x45\xe0\ \x0f\x86\x7a\xee\xbc\xbe\x07\xaf\xa1\xcd\xeb\x85\x98\x02\x6b\x41\ \x21\x5f\xb0\x46\xdb\x25\x4d\x9e\x1f\xc7\x93\x2d\xeb\xb1\xce\xf8\ \xf9\xe3\x07\xa1\xb4\xbc\x12\xf2\xf2\x72\xa9\x0d\xf0\xf9\x4b\xca\ \xca\x21\x39\x36\x12\x06\x77\x7c\x14\xfa\xb7\x69\x0e\x03\x98\xbe\ \x07\x28\xdb\x80\xe0\x45\xb6\xd1\xe7\xe5\xfb\x20\xf8\xc0\x36\xa8\ \xb9\x7c\x15\x4a\x4b\x4a\xa0\x9c\xd9\x40\x39\xd3\x7d\x25\xf3\xa3\ \xe5\xa5\xc5\x30\xe1\xb3\x97\x1c\xae\x67\xce\xcf\xac\x98\xf6\x7d\ \x07\x4d\x9e\x1f\xf3\x90\x98\x3d\xd6\x63\xed\x9d\x5d\x4b\xa6\x41\ \x59\xe5\x45\xc8\xcd\xc9\x86\x7c\xf6\xec\x08\x6e\x0b\xe3\xbf\x6e\ \xc7\x6c\xe0\x3e\x18\xc0\xf4\xdd\xbf\xed\xc3\x06\x0c\x68\x27\xa1\ \x7f\x9b\x87\xc0\xaf\xe3\x23\x90\x96\x10\x43\xfd\x46\x09\x7b\x7e\ \xf4\x9f\xd8\x0e\x17\x19\x87\x92\x2f\x9c\x73\xea\xec\x76\xad\x9f\ \x3f\x80\x9e\xbf\x55\x3d\xf6\x49\x0b\x07\x7f\x0d\x45\xa5\xe5\x90\ \xc3\x9e\x3f\x2f\x2f\x8f\x90\x9b\x93\xc3\xda\xa4\x1a\x96\x8d\xec\ \x09\x3d\x99\x0f\x1c\xe4\xfb\x08\x0c\x44\x1e\x28\x30\xc8\x97\xf5\ \xfb\xad\x1f\x80\x29\x3f\xbc\x41\xcf\xad\x44\x71\x51\x21\xf1\x01\ \xeb\x02\x2a\xb9\xef\xf0\xf3\x7f\xd7\x01\x6a\x98\x2f\x45\xff\x3f\ \x5d\x03\xfb\xc7\x71\xdb\xd8\x4f\x5e\x84\xf4\xd4\x14\xc8\x65\xcf\ \x9d\xc3\x9e\x3b\x37\x37\x97\x90\xcf\x6c\x20\x2d\x29\x01\xa2\x43\ \xcf\x40\x6c\xf8\x39\x42\x5c\x04\x22\x04\xe2\x11\x17\x42\x21\x8e\ \xbd\x97\xca\x74\x5f\x5c\x5c\x42\xbe\x93\xf7\xa1\xd8\x87\xd4\x5e\ \xb9\x46\x75\xd2\xf0\xcc\x40\x47\xcf\xf1\xe2\xcf\x8f\x3a\xaf\x63\ \x7d\x20\xf6\x85\xd8\xff\x0f\x6c\x7d\xbf\x4a\xcf\xdf\x30\xff\x43\ \xfb\x3c\x7f\xe2\x10\x14\x14\x95\x40\x56\x56\x56\x43\x1b\xb0\x2b\ \xb6\x41\x51\x49\x29\xa1\xb8\xa4\x0c\x8a\x4b\xcb\xa0\x04\xc1\xfc\ \x43\x29\xa2\xbc\x82\x5e\xf3\xbe\x83\x83\xc6\x11\x25\xc5\x7c\xcc\ \x66\xb9\x1e\xac\x62\x4e\xc4\x6b\x89\x71\x48\x63\xea\xe7\xc9\x86\ \x8e\x6f\x5a\x0c\xe3\x3e\x79\x01\xdf\xab\x47\xdf\xad\xd6\xf3\x4b\ \x75\xd1\xef\x85\xdd\xcb\x66\x42\x21\xe3\x00\xd6\x72\xcd\xce\xce\ \x26\x60\x3b\x20\x27\x72\xe4\x9f\x73\xa9\x5d\xa4\xb6\x41\x5f\x89\ \x3c\xc9\x67\x40\x7f\x89\xcf\xcf\x81\xbe\x03\xfb\xd4\x94\xa8\x50\ \xa9\x6e\x96\x95\x39\x23\x3f\x4f\x01\xcf\x97\xc7\x3a\x7a\x38\x4f\ \xa2\xfa\xfb\xcc\x5f\xf2\xb9\x07\xd6\xda\x47\x0c\xe9\xf0\x30\x1f\ \xff\xab\xfa\xfc\xe8\x03\x16\xfb\x7f\x0f\xf9\x4c\xff\x19\xe9\xe9\ \x64\x03\x08\xe3\x76\xc8\x31\xe2\x06\xf7\x13\x4a\x7f\xc9\x7d\x26\ \xb6\x49\x15\xf3\x7d\x58\x1b\xdb\xd2\xf9\xb5\xca\x1a\x94\xf8\xf7\ \x47\x7f\xf0\x6f\x98\xd5\xb5\x13\xfc\xda\xe7\x23\xaa\x27\x49\x7d\ \x06\xb3\x1b\xfc\x0c\x6b\xca\xf2\xf3\x69\xe4\xf9\x9f\x7a\xf6\x8f\ \xe7\x21\xb3\xb6\x1e\xff\xf9\x2b\x90\x9a\x92\x0c\x99\x99\x99\x90\ \x91\x91\x41\x57\x04\x6f\x8b\xcc\xcc\x0c\xc8\x22\x64\x42\x76\x16\ \x02\xdb\x27\xcb\x6c\x5b\xe4\x31\x1b\xc1\x31\xe5\xba\xb1\xbd\xcd\ \x9f\x81\xa6\x38\x4b\x12\xfb\xf7\xf0\x23\x3b\xa1\xac\xa8\x80\x6a\ \x6b\x63\x4d\x66\xac\xb9\x5d\x55\xc1\xfa\xdf\x88\xb3\x54\x6b\x9f\ \xd7\x86\xd3\xe4\xf9\xe5\xef\xc5\xba\x93\xe7\x4f\x1e\x81\xec\xdc\ \x3c\x48\x4f\x4b\xa3\x36\xe0\xed\x80\xcf\x5f\xc8\xb8\x8f\x7d\x04\ \xa2\xb8\xac\x82\x50\xc2\xc6\x0c\xe8\x1f\xb8\x5d\xf0\x76\xc8\xcb\ \xcb\x67\xfc\x2f\x82\x69\xdf\xb6\x6b\x54\x0b\x5a\xf9\xec\x78\xbe\ \x2d\x3f\x37\x58\xaa\x43\x5f\x23\xd7\x20\x97\x6a\x11\x63\x8d\x51\ \x94\x63\x1b\x16\x12\x37\xf8\x1a\x80\xda\xcf\x2f\xdd\xcf\x9f\x61\ \xcf\xca\x39\x90\x5b\x50\xc4\xec\x20\x05\xd2\x19\x0f\x10\x99\x59\ \xd9\x90\x18\x1b\x0d\x2b\xc6\x0f\x84\x65\x63\xfa\x52\xdd\x46\xc4\ \x8a\x71\x03\x60\xc9\x88\x1e\x10\x76\xea\x28\xf3\x9b\xc5\xc4\x13\ \x6c\x03\x6c\x8b\x42\xd6\x17\x24\x47\x87\x99\xaf\x83\x2b\xd7\xe0\ \xc6\xf3\xdd\x6a\xaa\x2b\x0d\xe7\xad\xd7\xcb\x73\xbc\x6b\xd7\xa5\ \x5a\xab\xf5\x34\x37\xbc\x4e\x73\x28\x14\x3c\x7f\x53\xe6\x92\xaa\ \xfc\x57\x3e\xff\xd2\xa1\x3f\x43\x76\x5e\x01\xa4\x24\x27\x43\x1a\ \xb3\x81\xb4\xb4\x54\xb2\x01\x3c\xe7\x6a\xf0\x5b\x4f\xc0\xf7\x4f\ \xfd\x37\x74\x7d\xee\x1e\x86\xbb\x09\x3f\x3d\xfd\x7f\x10\x12\x74\ \x80\x9e\x1f\x79\x81\xcf\x8e\xd7\x52\xe6\xfb\x4e\x6d\x5f\xd5\x30\ \xe6\x55\xf6\x6b\x72\xdd\xf4\x13\x9b\x17\xd3\x33\x62\x9d\xf9\xd2\ \xc2\x5c\x9a\xeb\x2c\x1d\xf2\x0d\xcc\xef\xfd\x21\xcd\x95\xb7\xcc\ \x08\xa0\xda\xc4\x68\x03\x38\x47\xce\x4d\x8d\xe7\x6b\x72\xea\xdb\ \xbf\xac\x93\x89\x5f\xbe\x0e\xc9\x49\x49\x90\x92\x9a\x0a\x29\xcc\ \x06\x52\xe9\x9a\x0c\x39\xf9\x05\x30\xbb\xff\xd7\xd0\xfd\x85\xbf\ \x40\xbf\xf6\x6c\xcc\xd3\xae\x25\xf4\x6a\xfd\x10\x0c\xed\xfc\x3c\ \xa4\x26\x27\x31\xdd\x4b\xcf\x4d\x7e\x82\xf5\x1f\xa5\x6c\xdc\xa4\ \x3c\xff\xd2\x5c\x7f\x97\x95\x14\x43\x76\x5f\x98\x9d\x4e\xbe\xae\ \xcf\xf3\xff\x47\x9c\x40\x3f\x2f\xd5\x92\xbc\x8b\xb8\x73\xfe\xe0\ \x56\x3a\x4f\x8b\xce\xd4\xe8\xfe\x0e\xd6\x1b\x66\xfd\x7f\x2b\xd5\ \xf9\xcf\xd7\xe4\xce\x33\x7b\x4e\xcb\xc8\x94\xda\x81\xb5\x41\x32\ \xd3\x3d\x72\x62\xdd\x8c\x91\xf0\xd3\x33\x77\x41\x9f\xb6\xde\xd0\ \xa7\x8d\x17\x74\x7d\xfe\x5e\x98\xda\xbd\x33\xe4\x30\xae\x13\x4f\ \x64\x7f\x89\xc0\x7e\x40\x9e\xab\x9a\xac\x9f\x49\x67\xcf\xe3\x5a\ \x40\x79\x71\x21\xd9\xf5\xd6\x99\x43\xe9\x0c\xa1\xe1\x6f\x3f\x46\ \xb6\x82\x35\x65\x27\x7d\xf1\x1a\x9d\x37\x82\xb5\x95\xf1\xbc\x62\ \x3c\x8b\x02\xdb\x6a\xcd\xa8\x5f\xb0\xaf\xc6\x3e\x4b\xf5\xe7\xc7\ \xbf\x3d\x90\xb5\xff\xbe\x35\xbf\x42\x46\x76\x1e\x24\x26\x24\x40\ \x32\xe3\x41\x52\x62\x22\x64\x31\x9f\x78\x68\xeb\x1a\xe8\xfa\xc2\ \x9f\xa1\x77\x9b\x16\xd0\x9b\xb5\x01\xb6\xc5\xca\x89\x7e\xd4\x67\ \xa6\xb2\xb1\x23\xf9\x4b\xd6\x0e\xe8\x3f\x93\xa2\xc2\xe8\x6c\x10\ \x7f\xd3\x5a\xbe\xb2\x9d\xe1\x98\x48\xaa\xbd\x0e\xb0\xa0\xdf\xa7\ \xf4\x9c\x7c\x7d\x38\x39\x22\x98\xce\xd2\x5c\x1e\xf0\x1d\xd9\xc3\ \x88\x77\x1e\x87\xbc\x74\x69\xad\x64\xd3\xe4\x81\x68\x53\xf5\xb8\ \x76\xa1\xc5\xf3\xa3\x0f\x58\x31\xb2\x07\xa4\x67\xe5\x42\x42\x7c\ \x1c\x24\x31\x1b\x48\x64\xcf\x9f\x96\x9e\x01\x61\x67\x4f\x42\x1f\ \x66\xf7\x3d\x5e\x7b\x90\x3d\x7f\x0b\xf8\x99\xf9\x81\x7d\x1b\x96\ \x32\xdb\x28\xa4\x7e\x13\x6d\x00\xdb\x21\x8f\xb5\x07\xae\x1d\x9a\ \x3d\xbb\x96\xf7\xb5\x6c\x4e\x8f\xe7\x89\xa0\x77\xc7\x3a\xf4\x03\ \xe4\xb3\xee\xf0\xf9\x33\xe3\x23\xe9\x59\x97\x07\x7c\x0f\xbd\x9e\ \xf9\x1f\x18\xdd\xf9\xdf\x74\x66\x29\xca\x1a\x3c\x17\x4d\xa3\xe7\ \x97\x74\xc3\xe6\x32\xdf\xb6\xa7\x67\x4e\x60\xfa\x47\xe0\xcf\xbc\ \x1d\x86\x7d\xf2\x2a\x74\x7b\xf1\x3e\xe8\xd9\xfa\x61\x86\xe6\x10\ \x72\xf2\x28\xf5\x0f\xe8\x23\xc8\x57\x30\x5f\x50\x50\x5c\x0a\x9b\ \xa6\x0c\xb6\x32\xee\x69\x41\xed\x82\x67\xe7\x48\xf6\x1f\x48\xdc\ \xe7\xe7\x69\x61\x9d\x65\xd4\x3f\x7e\x8e\xeb\x9e\x58\x7f\x59\x3a\ \xa7\xf5\x1a\x9d\xa9\xa3\x15\xff\xe9\xde\xf0\x5c\x3b\x66\xb7\xe7\ \x4f\x07\x41\x62\x72\x0a\xc4\xc7\xc5\x51\x1b\xe0\x35\x3d\x33\x1b\ \x66\xf4\xfb\x0a\x7e\x62\x7a\xef\xfe\xca\xdf\xc0\xff\x83\xe7\xc9\ \x46\xd0\x57\x22\x4f\xd0\x57\x60\xbf\x91\xcd\xfa\x00\x1c\xc7\x49\ \x35\xa1\x1b\x8f\xf9\xf9\xd9\x59\xc1\xbb\xd6\xd2\xf3\x17\x65\xa7\ \x91\x8e\xf1\x7c\x29\xf2\x8b\x89\xd1\xe4\xef\xf0\x4c\x22\xe4\xfc\ \xf5\x9b\x37\xe9\x75\x5e\x7a\x22\xaf\x41\xac\xc9\xf8\x47\x9a\x7f\ \xb0\xf1\x68\xeb\xfb\xe0\xc0\xfa\xc5\x90\x9c\x9e\x49\x67\xb1\xc7\ \xc7\xc7\x43\x6c\x6c\x0c\xa4\x67\xe7\xc2\xda\x19\xa3\xe0\xc7\x67\ \xef\x81\x9f\x59\x3f\x30\xa5\xc7\xc7\xd4\x26\x89\x89\x92\x9f\x40\ \x7f\x99\xca\x78\x12\x1f\x79\x1e\x46\x30\x5f\x26\x8f\xd5\x1b\x43\ \xf6\x01\x38\xaf\x3d\xb0\x7c\x3a\xad\xf3\xe1\xb9\x9c\x83\xe4\x39\ \x52\x6a\x74\x28\xf9\xfa\xca\xb2\x52\xa8\x2a\x2f\x85\x8a\xb2\x62\ \x3a\x7f\x05\xd7\x0b\xfb\x69\xd4\xff\x1b\xf9\x00\x3c\xdb\x74\x5c\ \x3f\x7a\x7e\x3c\x8b\x2e\x8e\xe9\x1e\xdb\x21\x85\x3d\xdb\x81\x2d\ \x6b\xa1\xeb\x4b\xf7\xc3\x0f\xcf\xdc\x0d\x2b\x26\x05\x40\x46\x4e\ \x1e\x6b\x1f\xd9\x4f\x30\x3b\xc1\xd7\x27\x77\xae\x37\xf8\x33\x73\ \xcf\xcf\xeb\xe5\xe2\xfc\x86\xf7\x73\xb8\x6f\x84\x76\x87\xff\x06\ \xfb\xc2\xc9\x5f\xb5\x26\x1f\x89\x57\xf4\xff\x58\x5f\x5b\xd1\x77\ \x6a\xa6\xff\x00\xf9\x9c\xcc\x19\x3f\xbd\x09\xf1\xec\x79\x94\xe7\ \xb2\x27\x24\x26\x41\xc8\xe9\x13\xd0\xa7\xc3\xa3\xf4\xfc\x7b\x37\ \x2c\xa7\x73\x5f\x94\x1c\xc9\xca\x2d\x80\xcd\xd3\x02\x2c\x72\xdf\ \xb4\x0d\x86\x75\xfa\x87\x61\x2c\x8c\x63\x22\xf4\x83\xa8\x63\x5c\ \xff\xec\xcd\x7c\x42\xaf\x67\xff\x1f\xbd\x87\xed\xc3\xc7\x0d\x5a\ \xda\x7f\x00\xcd\x03\x1e\x66\xf6\xfb\x38\x9c\x3f\x73\x82\xce\xa2\ \xc5\x33\xa9\x63\xe4\x76\x88\x65\xcf\x18\xc8\x7c\x20\xda\x40\xf0\ \x89\x63\x90\xc4\x7c\x04\xda\x07\x72\x04\x9f\x1f\xfb\x09\xd9\x47\ \x59\x3d\xbb\x94\xcf\x01\xf8\xef\xe1\x1c\xe7\xc4\xe6\x25\x54\x73\ \x1e\xf7\x7b\xe2\x82\x8f\xc2\xb9\x3d\x1b\xc9\x37\x62\x5f\x21\xed\ \x9b\xb4\x74\xcb\xf3\x13\x3f\x99\x0d\x1c\xde\xbc\x02\xe2\x93\x52\ \xe8\x3c\x76\xb4\x83\x28\x3c\x97\x3b\x2d\x03\xa6\xf4\xfc\x0c\xfa\ \xbd\xf1\x4f\xe6\x13\x62\x25\x6e\xd0\x35\x96\xec\x23\x3a\x3c\x84\ \xce\x4b\x33\x77\xee\x6d\xa3\x67\x67\x73\x3a\x6c\x2b\xdc\x07\xe2\ \xfb\x1d\x78\xbe\xc2\xf5\x9b\xd2\xf5\xa6\xbc\xff\x51\x5d\x59\x0e\ \x5b\xa6\x07\x48\x73\x40\x8d\xe6\x3f\xe6\x7c\xc0\xfa\xc9\x7e\x74\ \xae\x15\x9e\x4d\x86\xe7\x52\xe3\x59\xe6\xc9\xe9\x59\xb0\x74\x82\ \x1f\x8c\xf9\xbe\x13\xb5\x45\x34\x7b\x1f\x9f\x1f\xed\x23\x29\x35\ \x03\x8e\xef\x58\x6f\xf5\xec\x3a\xe5\x19\x44\x78\xe6\x64\x75\x65\ \x19\x3d\x2b\x9e\x27\x82\x63\x7c\xec\xf7\xf0\xb9\xc9\xff\xb3\x39\ \xd0\xa5\x4b\x78\x2e\x99\x74\xb6\xcc\x46\x36\x9e\x96\xe7\x13\x9a\ \xf9\x3f\xde\x07\xa0\x5d\xce\x66\xba\x89\x65\x76\x8d\xe7\x32\xd2\ \xf9\xac\x11\x11\xac\x3d\x52\x61\xdb\xca\x05\xb0\x78\xec\x20\xf6\ \xfc\x99\xd2\x79\xcd\x8c\x17\x68\x1b\x29\xac\x6d\x36\x4d\x0f\xa4\ \x9a\xee\xd6\xd6\xfa\xf8\x39\x7c\x21\xfb\x36\x4a\xf3\x1f\xf9\x4c\ \x9d\x0c\x36\xee\xc1\xf3\xf7\xc2\x0e\x6f\x87\x0b\x41\x7b\x68\xee\ \x5f\xc9\xfc\x3f\xf6\x83\xe8\xff\x8b\x72\x32\x60\x78\x27\xec\x57\ \x5a\x68\x6b\xff\xbe\xb4\x37\xca\xc6\xdf\x4f\x42\xf8\xb9\xd3\x10\ \x81\xe7\x12\x47\x48\xe7\xd4\x45\xc7\xc6\xc1\xc9\x23\x07\xe0\xe0\ \xf6\x4d\x10\x17\x9f\xd8\x70\x76\x39\xbb\x26\x26\x25\xc3\x9c\x9e\ \x1f\xd8\xe4\x3e\xfa\x17\x1c\xeb\x17\x66\xa5\xd1\xf8\x0f\xfb\xfb\ \x99\x3f\xbf\x49\x9c\x41\x5f\x87\x5c\x47\x60\xff\x80\xe3\x82\x73\ \x7b\x36\xd0\x9a\x08\xce\x85\x17\xb2\xb1\xf2\x80\x57\xef\xd3\x64\ \xfc\xdf\xb8\x8f\x7e\x00\x8e\x6d\x5f\x47\x67\x7a\x84\x87\x9d\x37\ \x3e\xa7\x55\x3e\xab\x95\x9f\xd9\x1d\x1d\x13\x0b\x11\x21\x67\x69\ \xce\xc2\xc7\x31\x16\xbf\x97\x3d\x17\xf6\x67\x78\xb6\x1e\xf2\x7e\ \x99\xff\x77\xe4\xe7\x79\x0d\x78\xa9\x1e\x7c\x2b\x83\x8f\x18\xf9\ \xee\x13\x50\x56\x98\x4f\x1c\xd8\x30\xbe\xaf\x66\xe3\xff\xc6\x3e\ \xe0\x5e\xf8\x6d\xe6\x70\x3a\xcf\x04\xcf\xa6\xb1\x74\x7e\x31\xda\ \x46\x6c\x42\x12\x1c\x65\x6d\xe5\x67\xeb\xec\x1a\xbe\xf6\xc1\xe6\ \x77\xb8\xbe\x85\xcf\x8f\xf3\x1f\xec\xfb\xb0\x2f\xe4\x67\x4d\x48\ \xd7\x47\x0d\xe3\x82\xa2\xdc\x4c\x83\x0f\x70\xcb\xf3\xcb\x67\x25\ \xce\xef\xf3\x11\xf3\x01\x09\x10\x1a\x1a\xd2\xe8\xbc\x3e\xde\x06\ \x61\xcc\x36\xe2\x58\x3f\xb1\x71\xfa\xd0\x86\xb3\x9b\x2c\x3d\xbf\ \xaf\x14\x23\x33\xf2\xbd\x27\xa1\x38\x2f\x8b\x9e\x3f\xf6\xcc\x11\ \x9a\xe3\xd1\x99\xaa\x72\xac\x4c\x5f\xf9\x7c\x0d\x9c\x3f\xef\x5b\ \x32\xd9\x10\x23\xb0\xc4\xef\x2b\xe4\x86\xf6\xf6\xef\x2b\xed\x09\ \x8c\xfd\xf0\x69\xb8\x10\x7a\x8e\xce\x38\x57\x9e\x57\xa6\x6c\x07\ \x7c\x1d\x1d\x1b\xcf\xb8\xff\xa1\x4d\xee\xf3\xb6\x45\x9e\x47\x9d\ \xd8\x4f\xfc\xbf\x7a\xed\x2a\x94\xb2\xf9\x1d\xae\x73\x1c\x5e\x33\ \x87\xce\xa3\xc7\x3d\x71\x3c\x3f\x18\x7d\x03\xf2\x9e\xce\x29\x2e\ \x29\xa2\x73\xa6\xd9\x7d\xa9\xba\xfe\x6f\xf9\x5e\x5b\xc2\x10\xc6\ \xd5\x93\x7b\x7e\x83\xf0\xc8\x68\xe9\x8c\xa6\x46\x67\xb7\x31\xbf\ \xc0\x38\x10\x7a\xf6\xb4\xd1\x1c\xc6\x6a\xdf\x2f\xf7\x2f\xf3\x98\ \xaf\xbc\xce\xf4\x7a\x85\xce\xcd\xbd\x4c\x6b\x01\x74\xf2\x52\xbd\ \x84\x3a\x6a\x9b\xeb\x86\x73\xf5\xb0\x5d\xa4\x71\xa5\x73\xfd\x1f\ \x8f\x11\x61\xd7\x4f\xfd\xed\x38\x0b\x0d\xfd\x11\xee\x8b\x6c\x9f\ \x3f\x0e\x2e\xc4\xc4\xc1\x99\xd3\xa7\xe4\x73\xab\xce\xc9\xe7\x9a\ \x31\xb0\x36\xb9\x10\x15\x03\x87\xb6\xae\x65\x7a\x79\x10\xec\x39\ \xb7\x4e\xb9\xfe\x8b\xeb\x39\x17\xab\x2a\xa5\xf3\xa4\x98\x7d\xe3\ \xba\xf7\x95\x2b\x57\x49\xdf\xe8\xf3\xeb\x28\x96\xa8\x0e\x8e\xb3\ \xb1\xa1\xe2\x2c\x71\x57\xfb\xbf\xb7\xe8\x7b\xa4\x18\x2a\x2b\xcf\ \x2f\xdd\x23\x9e\x85\x9b\x92\x91\x05\xe1\x17\x22\xd9\xb3\x46\xb3\ \xfe\x30\x9a\xce\x6a\x0c\xbf\x10\x05\xe7\x99\xfd\xc7\x24\xa5\xc1\ \xfa\xe9\xc3\x61\xe0\xab\xb6\xb9\x6f\x6a\x07\xf8\xfd\x13\x3e\x7f\ \x19\xf6\x2f\x9b\x0a\xf1\x21\xc7\x69\x2c\x88\xeb\x81\xf9\x19\xc9\ \x74\x1e\xd7\xa9\xad\x2b\x60\x7e\xaf\xce\xd2\xd9\x5a\x2e\x8e\xff\ \xfd\x7d\xf9\x59\x78\xde\xde\xfe\x58\xe3\xb4\x61\x2e\x65\xb1\x0d\ \x70\x3d\x60\x38\xf3\xcb\xe8\x07\xe7\xf5\xfe\x90\xfa\xf7\xd9\xbf\ \xbc\x0f\x33\xbb\xbf\x0b\xd3\xbb\xbe\x03\x53\x7f\xea\x04\xd3\xd8\ \x75\xe4\x07\xff\xb6\x3a\xe6\x35\xf7\xfc\xdc\x0e\xb0\x3f\xc4\xb3\ \x72\xe8\xac\x60\x66\x73\x38\x36\x90\x62\x1f\x1e\x32\x9c\x45\x6d\ \x72\xbe\x50\xbd\x5c\xab\xd9\xa1\xe7\x27\xdd\xf3\xf3\x80\x7c\xbd\ \x0f\x28\xce\x82\x01\x73\x6d\x60\x68\x6f\xd6\x06\x74\xc6\x95\xbc\ \x2f\x87\xdc\x1d\x44\x90\xe3\xf2\xd8\xcf\x9c\xf7\x8e\xc6\x77\x1a\ \xe2\x20\xa9\xef\x6f\x49\x6b\x43\x38\x3e\xe2\xeb\x86\x7c\x4c\x60\ \xf2\xdd\x2e\x3c\xbf\x37\x3f\x0f\xef\x35\x06\xac\xc5\x8b\xb1\xa4\ \x16\x6b\xe0\x1b\xce\x87\x52\xec\xc9\x72\x34\xc4\x65\xda\x7f\xf6\ \x93\x4a\x70\xfa\xf9\xe9\xd9\x0d\xe7\x00\x78\xf5\x91\x63\xa9\xeb\ \x65\x3b\xb8\x2e\x5f\x9b\x00\xbc\xae\xca\xcf\xff\x99\xa3\xcf\x2f\ \xfd\xbe\x17\x3f\x13\xe7\x43\x66\x07\xb9\x52\x5c\x3d\xd5\xbb\x6e\ \x0a\xf1\xe0\x4a\xfd\x77\x71\xe6\xf9\x25\xfd\x1b\xb8\xf0\xbf\xcc\ \x16\xba\xb0\xef\x9d\xc7\x7e\xde\xc8\xda\x61\x13\xfb\xd9\xc3\xe1\ \xb5\x81\x3d\xf3\x6e\x86\x57\xe4\xe7\x77\xaa\x96\xa6\x3d\x71\xd3\ \xb7\x83\x60\x5e\x15\xc1\x50\xeb\xd5\x4b\xf7\x3a\xa9\xd6\x41\xf5\ \x53\x7f\xe7\x2f\x72\xe3\x84\x08\x31\x2b\x0e\x17\x16\x30\x11\xa9\ \x0c\xc3\x1f\xe5\xeb\x1d\xbc\x2c\x83\xe9\x75\x94\xb8\xaa\x7b\x05\ \x7e\x1d\x2d\x5f\x4f\xc8\xd7\x2a\xf9\x6a\xa7\x60\x9d\x88\xa7\x19\ \xbe\x6f\xa6\xa8\x13\xf1\x48\x33\x21\x42\x34\x97\x00\xbd\xf3\xeb\ \x1d\xcc\x0d\xf6\x54\xc1\xb9\x9a\x3d\xb9\x4d\xc6\xff\x86\xda\xe0\ \x4f\xec\xdf\xde\x1d\xa0\x5b\xde\x3a\xe6\xd7\x7b\xff\x17\xbf\x27\ \x3e\xd7\xb0\x75\xdf\xf2\x15\xbf\x23\x8d\xdd\xff\x45\x76\x2d\x0b\ \xd0\x27\xdf\x1c\xaf\xf9\x6c\x4c\xbc\x9f\xdd\x7b\x07\xba\x2f\x1b\ \x73\x05\xc5\xfd\xdf\x23\xdd\xb7\xe1\x8c\x3d\x7d\xe6\x89\x94\x33\ \x4e\x6b\x1c\x38\x4f\xf4\xb7\xf5\x0c\x8a\xfb\x47\xdd\x95\xca\x7b\ \xf4\x37\x03\x3a\xb6\xac\x33\x02\x7e\xa7\x8f\xf5\x73\xa1\x0c\x9f\ \x3b\xf1\x6f\x4d\x80\x73\xfd\x9b\xf4\x0c\x3e\xde\x6f\x5a\xb3\x25\ \x7e\xff\xfe\x92\xed\x95\xe1\xfd\x0f\x6e\xfb\x60\x1d\xee\xb7\x28\ \xc1\xcf\x97\xb7\x95\xcb\x8b\xf1\xe8\xf4\x6f\xda\x3e\x28\x81\xfd\ \xcc\xf3\x58\xf8\xda\x9d\xa5\xdc\x25\x39\xe7\xb9\x5e\x8e\xd7\xb9\ \x21\xff\x9b\xfd\xf2\x7d\x5a\xbd\x7f\xd6\xe6\x77\xb3\xdf\x45\xbb\ \xc7\xb5\xd1\x3a\x8c\x03\xc1\xfd\x22\x04\xc6\x83\xe0\xfa\x60\xa3\ \xb8\x3a\x13\xe0\x33\xe2\x7a\x3c\xfe\xfe\x44\x8c\x1f\x61\xc0\xef\ \x19\xd3\xf9\x69\xc3\xf3\x4b\xf9\x67\x3c\x57\xf9\x6e\x13\x48\xfb\ \x30\xec\x77\xea\x0d\x36\xec\xe3\x95\xc7\x60\xb1\xee\x80\xe1\xfe\ \x3b\xb6\xba\x3b\xb0\x63\xab\x32\x8c\x7f\x0a\x3b\xb2\xab\x0e\x73\ \xe2\x4a\x8b\x8b\x08\x97\xaf\x5e\x83\xcd\xd3\x86\x40\x1f\xf6\xfd\ \xb8\x6e\xc6\xf3\x67\x39\xf8\x7a\xe0\x80\xd6\x7f\x85\xc8\x13\xfb\ \xe0\xca\xb5\xeb\x50\x89\x79\x54\x98\x47\x77\xb3\x0e\xb6\x4c\xf7\ \xa7\x7b\xc3\x78\x78\xdc\x17\x3a\xb9\x75\x39\x04\x6d\x92\x72\x23\ \x94\xc0\x7c\x89\x53\xdb\x56\xc2\x9e\x45\x13\xe9\xbc\x63\x59\xa7\ \x65\xcc\x8e\xee\x25\x1b\x31\x33\x6f\x54\xda\x0f\xd3\x5d\x19\xc6\ \xa1\x6e\x9d\x3b\xba\xee\xe2\xe5\x6b\x72\x3e\x47\x11\xd4\x5c\xb9\ \x06\x27\x77\xae\x83\x5e\x2f\xde\x4b\x79\x7f\xa6\x39\xb1\x98\x07\ \x3a\x98\xd9\xc8\xb0\x77\x1e\x87\x82\x9c\x4c\x7a\xde\x1a\x8c\xe7\ \xae\xbd\x04\x57\xd8\xcf\x98\x53\x8d\x7b\x3f\xb8\xbe\x5b\x9a\x27\ \xed\xe9\x61\x6e\x8b\xa9\xf0\xf7\x0a\x33\x92\x94\xf7\x5f\xce\xee\ \xed\x1e\xf9\x1e\x2d\xde\x3f\xf2\x97\xda\x1f\xe3\x2b\x7a\x76\xae\ \xc3\xfc\x14\xcc\x6d\x45\x94\x57\x56\x41\xe2\x85\x50\xca\x5d\xa4\ \xfc\x3d\x39\x8f\x91\xe7\xb3\xfa\xf9\xb4\x84\x7e\xaf\xde\x07\x33\ \xbb\xbe\x0d\x17\x6b\x6a\x29\x7f\x13\x71\xe9\xf2\x15\xc8\xcf\x48\ \xa1\x3d\x4a\x5c\xe7\x46\xfb\x8e\x39\x7d\x88\xd6\xe9\x31\x8e\x17\ \x63\xf5\x94\xc0\x7d\x2b\x8c\xd9\xc3\x58\x46\xa3\xfb\xf7\x95\xef\ \xdf\x4a\xfb\xcb\xfe\xa7\x0c\xd7\x94\x47\xbc\xf7\x54\x1d\xe6\x27\ \x97\x94\x96\x42\x61\x81\x94\x9f\x8b\x79\xaa\x63\x3e\x7b\x85\xf2\ \xae\x28\x2f\x51\xf1\x1c\x7e\xbe\xad\x98\x6e\xee\x86\x0d\x93\x07\ \xc3\x95\xeb\x37\x29\xff\x10\xf3\x31\x31\x27\x19\x73\x0c\x8c\x62\ \x32\xcd\xe4\xd7\xf3\x75\x5d\xe4\x57\x5e\x5a\x22\xe4\xa5\x27\xe3\ \xf3\x3a\x75\xff\xb8\x9e\xcd\x38\x50\x77\xee\xf0\x2e\xca\x23\xcb\ \xcf\x97\xf2\x64\x2a\xaa\x2e\xc2\x82\xc1\xdf\x40\x4f\x66\x43\x83\ \x78\x5e\x29\xbf\x7f\x9f\x56\x64\x5b\x27\xb6\xaf\x86\x4b\x57\xaf\ \x43\x19\x7b\x6e\xc4\xd5\x9b\xf5\xb0\x63\xce\x08\x43\x1e\x99\xad\ \x5a\x04\xe8\xa7\x72\xf1\xfe\x33\x9c\xbb\x7f\x7f\xbc\x7f\xdc\xff\ \x7a\xf9\x9e\xba\xad\xf3\xc6\x42\x79\x55\x0d\xe5\xfd\xe4\xe5\xe6\ \x42\x65\xcd\x25\xd8\xbe\x70\x32\x74\x7f\xf6\x4f\x74\xdf\xfd\xdb\ \x36\x27\x0c\x60\x7f\x13\xf3\xc5\x11\x68\x63\x55\x17\x6b\x28\x07\ \x10\xef\xff\x62\x6d\x2d\xcc\xeb\xf9\xbe\xd1\x5e\x86\x55\xff\xc5\ \x6c\x8c\xee\x3f\x3d\xc9\x85\xf6\xa7\x3d\xec\xba\x79\x7d\x3e\x81\ \xc2\x92\x52\x29\x77\x89\xa1\xb4\xa2\x12\xce\x1d\xd9\x03\x7d\x5f\ \x7f\x88\x72\x3b\x31\x87\x0f\x41\x79\x9e\xec\xde\xc7\x7f\xf9\x3a\ \xe5\xc0\x97\xb2\xfb\x2e\x61\xf6\x86\x9c\xc9\xcb\x4c\x85\x91\xef\ \xfe\xd3\xbe\x3d\x1e\x1f\x29\x7e\x24\x37\x2d\xc1\xa5\xfb\x97\xda\ \xa1\x79\xdd\xa8\x0f\x9e\x86\xd4\x24\xf6\x5d\xcc\x76\x30\xbf\x00\ \xf3\x4b\x30\x1f\x2b\x21\x32\x4c\x42\x54\x38\x24\x46\x87\x43\x52\ \x74\x04\x24\xb2\x9f\xd3\x12\xe3\xa4\xfc\x3b\xe6\xb3\x90\xf3\x55\ \x4c\x5f\x11\x41\x7b\xcc\xb6\x7d\xc3\x9e\x45\x4b\x43\xee\x19\xed\ \xfb\xb2\xfb\x47\xbe\x17\x64\xa5\xb9\x74\xff\xd8\xe7\x63\x5c\x67\ \xf0\xe1\xdd\x50\x50\x8c\xb9\x75\x99\x86\x5c\x99\xc2\xa2\x62\xca\ \x13\x29\x62\x28\xc6\xdc\x3a\x39\xa7\xae\x18\xb9\x6e\xc8\xc3\xce\ \x83\x8b\x97\xae\xc2\xae\x5f\xc7\x35\xca\xa1\x34\xe4\x8e\xc9\x79\ \x72\x03\xe5\xfd\x28\xfc\x19\xdf\xc7\x5c\x41\x8c\xc1\x77\xd6\xff\ \xe0\xb9\xa8\xec\xef\xd5\xe1\x9e\xf3\xb6\x5f\x27\x30\x1b\x2a\x97\ \x73\xc3\xa4\x9c\xb0\x6c\xca\x8b\x6a\xc8\x83\x42\x9d\x50\xbe\x20\ \xe6\xc3\xc9\xb9\x60\x12\xdf\xab\x61\x41\xdf\x8f\x0d\x31\xde\x0d\ \xf7\xde\x4a\xce\xef\xba\x0f\xc6\x7e\xf4\x2c\xdd\x2f\x62\xcc\x87\ \xcf\xc8\x79\x10\xf7\xd2\xb8\xa3\xa1\xde\x89\xa3\xed\x4f\x7f\xa3\ \x8e\xe2\x38\xfa\x77\x81\xdc\xfc\x42\x48\x4f\x4f\x33\xe4\x28\xe0\ \x33\x60\xde\x0a\xea\x85\xf4\x50\x52\x46\x57\x65\x5e\x1f\xea\x28\ \x27\x23\x15\x46\x7f\xf0\x2f\x1a\x0f\x29\xef\x1d\xdb\x1b\x63\xd8\ \x22\x8f\xef\xa5\x5c\x06\x9e\xbb\x84\x79\x5c\x11\x47\x77\x51\x7e\ \x8f\x54\x3f\xa4\x15\xb5\xbf\xbf\xc3\xf6\x43\xe3\xcf\x3a\xd4\xe7\ \x98\x8f\x9e\x83\xc4\xf8\x38\xc8\x60\xf7\xcd\x73\x2d\xd2\x52\x92\ \x21\x24\xe8\x20\xe5\xdf\x84\x1e\x3f\x44\xd7\xc8\x73\xa7\x0c\xf9\ \x79\xa8\x8f\x12\xd6\xf7\x45\x1c\xdf\x67\x9c\x83\xc5\x63\x90\x3e\ \x7f\x99\xdd\xab\x14\x57\x54\x2f\xe7\x97\x52\xec\x81\xdc\xf7\x96\ \xe4\x67\x53\xec\x25\x8e\x21\xa5\xbc\x1b\x67\xee\x5f\x1a\x3b\xe1\ \x33\x9c\x3d\xbc\x07\xb2\x72\xf2\x28\x56\x1e\x9f\x23\x89\x3d\x8f\ \xdf\xdb\x4f\x41\xf7\x17\xff\x02\x7d\xda\x3c\x0c\x3f\x3d\xfd\xbf\ \x30\x7f\xf0\x77\xa4\x07\xca\xa5\xc9\xcc\x80\xd2\xca\x8b\xb0\x7b\ \xd1\x24\x23\xdb\xa7\xf8\x39\x45\xfc\x78\x59\x71\x01\x8d\x83\x30\ \x3e\x1a\xeb\xb7\x9c\xde\xbe\x0a\xca\x4b\xa4\xdc\x92\x33\xec\x67\ \x66\x47\x75\x34\x0e\x75\xaa\xfd\xbd\xeb\x78\x3c\x24\xfa\xfc\xec\ \xbc\x42\xca\x87\xc1\x67\xc0\x9c\x90\x29\xdd\x3b\x43\xb7\xe7\xff\ \x0c\xfd\x3a\xb4\x82\x9f\x9f\xbd\x1b\xb6\x2d\x9a\x46\x39\xa4\xc8\ \x93\xcc\x8c\x0c\x7a\x96\x45\x03\xba\x18\xf5\xbb\x38\xfe\xc4\xf1\ \x0f\xc6\xf3\x61\xbe\x1f\xe6\x3a\x62\xfe\x0b\xa2\xdb\x3f\xef\x84\ \x9e\x4f\xff\x17\xcc\xeb\xd5\x99\xe2\x42\x0a\xb2\x52\x31\x1e\xaa\ \x4e\x1e\xef\x3a\x7d\xff\x98\xd7\xb2\x70\xd0\xd7\x90\x91\x9d\x4b\ \xf9\x2c\x49\x89\x09\x90\x93\x5f\x04\x2b\x26\x0c\x86\x9f\x9e\xbd\ \x8b\xf2\x99\xba\xbf\xf4\x57\x38\xb9\x7f\x07\xe5\x73\xa4\xa7\xa5\ \x42\x16\xb3\x9f\x8c\x94\x24\xe2\xa6\x14\x7b\xd1\xd2\x60\x3b\x98\ \xa3\x83\x31\x1a\x18\xa7\x8b\xba\xc0\x7e\x01\xef\xf9\xcc\x8e\x35\ \x30\xf5\xdb\x76\x94\xb7\x11\x7f\x2e\x88\xe2\x1a\xc7\x7e\xf4\x0c\ \xd9\x30\xfb\xb7\x4e\xda\x8f\x94\x33\x32\xee\xd3\x97\x20\x2e\x36\ \x06\x92\x92\x93\x21\x21\x3e\x9e\xb5\x7f\x3e\xec\x59\xb7\x98\xf2\ \x50\x7a\xb6\x7e\x08\x06\x74\xfc\x07\xc4\x5c\x08\x83\x4c\xe6\x8f\ \x30\x7f\x2f\x87\xf1\x3d\x2c\x68\x3f\xfd\x5b\x43\x5c\x8a\x9c\x7f\ \x82\xcf\x84\xe3\xd1\xf0\x23\x3b\xa8\x5f\xe8\xff\xca\x5f\x60\x0b\ \x1b\x97\xa3\x2c\xec\xf7\x09\xf4\x7a\xf6\x7f\x20\x21\xe4\x38\xe5\ \xdd\xb3\x79\x44\x9d\xfc\xfc\x4e\xdb\x3f\xf9\x8d\x0e\x0f\xc3\xd9\ \x23\x7b\x21\x25\x2d\x1d\xe2\xe3\x62\x29\x57\x20\xf8\xf8\x61\xe8\ \xf9\x7a\x0b\xf8\x99\xd9\xd0\xe8\xaf\x7d\x20\x8d\xd9\x8d\x94\x73\ \x95\x44\x79\x34\x7b\x96\x4c\x69\x88\x25\x6f\x88\xff\xa0\x2b\xf2\ \x13\xf9\x3b\x94\xd9\x12\xc6\x8b\x6d\x9a\x34\x90\x62\x69\x71\xfc\ \x89\x79\x73\x97\x99\xfd\xe4\xb0\x9f\x99\xed\x38\xd9\x7f\x35\xdc\ \x3f\xcf\x0d\xda\xb9\x64\x3a\xa4\x66\x64\x53\x3e\x00\xe6\xc3\xc4\ \xc6\x44\x83\x7f\xe7\x17\xe0\xdb\x27\xff\x07\x7e\x0d\xec\x46\x3a\ \x41\xdb\x4a\x62\x1c\xc9\xc9\x2b\x80\xc5\x83\xbf\x6a\x94\x07\xc4\ \xe3\x6a\x30\x9e\x09\x63\xba\x56\x0e\xfb\x11\x7a\xfc\xfb\x3f\x19\ \x7f\x87\x52\xfb\xdf\xbc\x79\x03\xea\xe4\x9a\x41\x07\x56\x4c\x47\ \xee\xd7\x49\x63\x3e\x57\xef\xff\x2f\xb0\x24\xe0\x07\x8a\x5b\xc6\ \x78\x65\xcc\xe9\x40\x5d\x4c\xee\xf1\x09\x7c\xf9\x8f\xff\x80\x2d\ \x8b\x67\x40\x26\xf3\x4f\x98\xd3\x92\x9c\xcc\x74\x90\x10\x47\xfe\ \x4f\x59\xb3\x49\xd9\xf7\xe2\x18\x13\xfb\xd9\x11\xef\xfc\x13\x06\ \xb5\x79\x80\x38\x81\x35\x9e\x30\x87\x11\xf3\x5a\x57\x0d\xef\x4a\ \xb1\x9b\x38\x7e\x08\x90\xd6\x20\x9c\xb7\x1f\xe2\xdd\xdf\xd8\x3c\ \xf6\x35\x43\x2c\x7e\x74\x54\x24\xe9\x62\xd9\x04\x3f\xf8\xe6\xc9\ \xff\x86\xe3\xfb\x77\x92\x4d\xc5\xc5\xa2\x6d\x65\x42\xc8\xd1\x7d\ \x16\xe3\xd1\xa4\xf9\xfb\x23\x14\xcb\x82\xfd\xec\x08\x76\x9f\xc8\ \x09\x8c\x43\xc4\xe7\x42\x7d\x60\x4c\xaa\xfc\xfb\x2e\xf4\x5f\x0a\ \xfb\xa7\x7e\xd3\x1b\xce\x1e\xdd\x0f\xb1\x18\x3b\x8c\xf1\xe4\x4c\ \x17\xdb\x57\xfe\x0a\x3d\x18\x07\x2e\x84\x85\x42\x82\x6c\x53\x69\ \x59\x39\xb0\x6b\xc9\x54\xb3\xf1\x94\x86\xfe\x97\xf1\x16\xe7\x93\ \x18\x2b\x8d\x31\x53\x98\x2b\x83\xb1\xf2\x18\x2b\x1a\x19\xb4\x97\ \x3e\x93\xe3\x11\x55\xb9\x7f\xe9\x6f\xfe\x05\x76\xaf\x98\x03\xf1\ \x49\xa9\x70\x21\x3c\x1c\xe2\x13\x93\xe0\xe8\xde\xed\x30\xfa\x1b\ \x29\x5f\x84\x72\x45\xa2\xa3\x20\x85\xb5\xff\x62\x66\x07\xa6\xb6\ \xaf\x8c\xff\x9b\xdf\xfb\x23\x43\x6c\x7b\xbd\x1c\xeb\xcf\xfb\x60\ \x94\x4b\x6c\x3c\x31\xb7\xc7\xfb\xf8\xbb\x75\x52\x6e\x9c\x8b\xf7\ \x2f\x73\x78\xf9\x88\xee\x14\xaf\x1a\x8e\x71\x9b\x31\xb1\x10\x7c\ \xea\x04\xac\x9a\x31\x1a\xe2\x12\x12\x21\x8a\xd9\x54\x4c\x4c\x2c\ \x3d\x03\xc6\xa5\x99\xad\xd9\x22\xd7\xa5\x48\x0a\x3b\x49\xf7\x89\ \x63\x7c\xec\x73\xa9\x8e\x11\xc3\xe9\x1d\xab\x69\xde\x88\x12\xcf\ \xfa\x07\x9c\x03\xca\xb9\x1b\x2e\xdd\x3f\xfd\x5d\xc6\x33\xec\x5f\ \x30\xe6\x9c\x62\x70\x2f\x5c\x60\xd7\x30\x7a\x86\xa8\xa8\x68\xca\ \xd5\x88\x65\xcf\x71\xfa\xd0\x6e\x0b\x75\x17\xa4\xfc\x53\x8c\x23\ \xc5\xb8\x43\xbc\x77\x8c\xd9\xa6\x9a\x75\x72\x8d\x05\x5c\xf7\xc1\ \xb5\x23\x8c\x4f\xc7\xf8\x7b\xf6\x79\x9d\x34\xf6\x73\xcd\xff\x4b\ \x7d\x40\x0b\xca\x0b\x0d\x0e\x3a\x44\xb1\x84\x78\xef\x14\x47\x4d\ \x31\xf6\x11\x10\xc1\x5e\xa3\x6d\x6d\x5f\x3c\x95\xfa\x6c\x73\xf9\ \x93\x83\xe5\xfc\x49\x8c\x09\x8e\x38\xb6\x1b\x7e\x79\xea\x3f\xe4\ \x78\x71\x5e\x6f\xb0\x15\xf4\xf8\xd7\x1f\x21\xfa\xd4\x41\xea\x03\ \x18\xaf\xeb\xc8\x87\xd9\xd9\xff\xfa\x5b\xb9\x7f\xca\x8f\x63\xe3\ \xe9\xfd\x6b\x17\x40\x54\x6c\x7c\xa3\xb8\x70\x8c\x87\xc5\x58\xf0\ \x45\x43\xbe\x33\x7f\xff\xbe\x0d\xf1\xff\x18\xf3\x8b\xb1\xad\xab\ \x47\x75\x67\xaf\x1f\x37\xac\x41\xa0\x0f\x5a\x3b\xa6\x27\xf5\xbd\ \x45\xb9\x19\x38\x56\x72\x69\xfc\x63\x74\xff\xf2\x58\x6e\xcd\xd8\ \x3e\x14\xd7\x1f\x12\x1c\x0c\xe7\xcf\x87\x4a\xf1\xbc\x0c\xf4\x2c\ \xec\x19\x26\x74\x79\xc5\x62\xbd\x22\x9e\xbf\x81\x36\x8f\x82\xe3\ \x34\x8c\xe5\xc6\x75\x20\x44\x71\x5e\x36\x5c\x65\x63\x23\x94\x13\ \xbf\x2d\xb5\x7b\xfc\xc9\xd7\xb4\x70\x8d\x8b\xa1\xd4\x7c\xfb\x4b\ \xf9\x69\x38\x4f\x8a\x62\x3c\x0d\x09\x3d\x0f\xe7\xc3\xff\x7f\x79\ \x57\x02\x54\xd5\x75\x86\x89\x26\x4d\x9b\xb6\x83\xa8\x31\xcd\x34\ \x11\x70\x49\x8d\x9d\xb6\xb1\xb5\x10\xb5\x46\x0d\x38\xd1\x68\x9b\ \x46\x9f\x5a\x97\xb8\xcc\x50\x6d\x15\x10\x35\xc2\x1b\x25\xc4\x1d\ \x23\x46\xe2\x82\x69\x8d\xb8\x04\x65\x55\xe3\x16\x30\x56\x02\x28\ \xae\x28\x9b\xec\x88\xa0\xe0\x96\x28\x71\x49\x2b\x78\x7c\xf7\xf4\ \xff\xfe\x7b\xee\xe5\x3d\x54\xde\x73\xc6\xb1\x99\xf4\xcd\x9c\x39\ \xef\xdd\xf7\xee\xfb\xcf\x39\xf7\x9c\xff\xfc\xeb\x77\x68\xdc\x4f\ \xe5\xca\x1c\xaa\xf3\xa9\x4f\x99\xfb\x76\xb3\xac\x70\xbf\x78\x3c\ \x23\xef\x0c\xfb\x02\xf6\xa6\x92\x13\x59\x4d\x72\xbf\xe6\x18\x7b\ \x5c\x44\xf2\x1b\x9e\x8b\xb9\x7f\x39\xe1\x3f\x76\xcf\xe1\x87\x54\ \xce\x29\x79\x05\xf7\x6a\x8e\xcf\xdf\x93\xfe\xf7\x17\xf2\x50\xda\ \x67\xf2\x70\x66\xba\x3c\x78\x20\x8d\x73\x4a\x32\xf6\xed\x91\xd9\ \x59\x19\x72\xeb\x8a\x08\x8e\xa9\x6c\x31\x7f\x70\xa0\xbe\x8e\xf1\ \x5f\xc0\xd7\xc9\x4a\x89\x65\x9d\x0b\x25\x2b\x65\xbd\xdc\x18\x1e\ \xc0\x32\xa9\x92\x3b\x5d\xe2\xff\xdc\x76\xe5\x1f\xa0\xef\xb7\xab\ \xf6\xdf\x51\x74\x35\x7b\xd9\x0b\xf5\xdc\x41\x5d\x69\xae\x76\xe3\ \xf8\x58\xc8\xf3\x9c\xbf\x88\x9c\x6f\x7f\xe7\xb1\x90\x46\x1f\x0c\ \x1c\x34\xce\xfd\x53\x79\x2f\x78\x8f\x6b\xc6\x7a\x37\xf5\x5f\x97\ \xda\x6f\xc6\xb4\xf5\xb3\xea\x58\xb9\x77\x55\x1f\xee\xf1\x4d\x40\ \x2e\xa4\xb5\x48\xc5\x93\xdf\x9b\xc5\xf8\xde\x45\x1f\x07\xcd\x6d\ \xc8\x67\xaa\x6e\x7a\x6f\xf7\x9b\xbb\x98\xcb\x61\xba\xfd\xd9\x85\ \xf9\x63\xc6\x67\x86\x18\x63\x1f\xd6\x2c\x2e\xd1\xa5\xf1\x75\x66\ \xa7\x32\xed\x55\xf7\xf9\xad\xe3\x35\x9b\x6a\xff\xb5\x96\xec\xe7\ \x0e\x6b\xd9\x88\xaf\xd4\x9f\x43\x2a\xfd\xc7\x05\xaa\xaf\xea\x7c\ \xe9\xb1\x17\xf0\x92\xeb\xd4\xe6\x33\xe0\xed\xae\xb4\x5f\x1f\xff\ \x26\x3f\x0d\xb5\xfd\x19\x2b\xf8\x92\xbf\x57\x5b\xd4\x56\xff\xc7\ \x5d\xbc\x88\xb6\x77\x9b\x87\x8d\x77\xb3\xe2\x1c\xf7\xef\xc9\x39\ \xe3\xf0\xe9\x03\xf7\x1c\xb5\xf5\xb1\xc7\x14\x78\x3d\xf1\x7d\x8d\ \x35\xd4\x3d\x4e\xae\xd7\x7c\xfc\x8f\x51\xbf\xaf\xea\x7e\xaa\xf6\ \xfc\xff\xad\xef\xaa\x5a\x53\xb5\x34\x6a\x27\xe3\x89\x38\x2d\x2f\ \x37\xfd\x08\x1f\x33\x4e\xab\xcd\xc3\x3c\xc1\xff\xcd\xeb\x91\xc7\ \xf7\xa8\x75\xfd\x1d\xe8\x57\x2b\x67\xf1\xe4\xd4\xce\x1f\x83\x27\ \x5b\xf5\x58\x15\x8f\x47\x52\xf4\xb8\x85\x9f\x1a\x34\xc2\xfc\xee\ \x3d\xe3\x01\x71\xcf\xfa\x77\xde\xb1\x56\x5d\xb6\xf9\xca\xaa\xc7\ \xab\x70\xa1\x7b\xae\xd9\x7f\xb6\x36\xff\xfc\xa0\xdf\x35\x95\xaf\ \xe9\xbf\xd3\xa9\xff\xaf\x28\x3a\x4f\x3c\x80\x7e\x92\x55\x97\xc7\ \x85\x99\x0f\xa3\xe4\x8e\xb0\x66\xb5\xd5\xdf\x31\x7f\xc6\x6a\xa7\ \x47\xdc\x07\x27\xde\xa6\x30\xc3\x70\x36\x85\x37\xd3\xb2\x9b\x13\ \x06\x7d\xfa\x2e\x11\xff\x3d\xb3\xcf\x73\x77\xa8\xd8\x66\xf4\xe9\ \x60\x83\xaf\xcc\xca\xb8\xe8\x5e\x0e\x35\x64\x3c\x7c\xcf\xa5\x77\ \x07\xfe\x8c\xeb\x21\xbd\xda\xd9\xa6\xfb\x7a\xd8\x60\x5f\x33\x0a\ \xe9\xbe\x36\xd2\xd7\x6f\xab\xbe\x2c\x56\xf4\x5b\x37\xa7\x4f\xbf\ \x49\x44\x0e\x73\x7e\xd6\x3e\x71\x2a\x7d\x8f\x2c\x3c\x7c\x40\x46\ \xc3\xb7\x0f\x8c\x36\xff\x4e\xa6\x9e\x01\xdf\x17\x62\x2f\xa0\x8b\ \x22\xdf\x13\x39\x6e\xc0\x3c\x80\x5f\x04\x58\x3e\xc0\x33\x02\x4e\ \x16\xf2\x7a\xe3\x17\x4f\x47\x7c\x83\xb6\x7a\xda\x9f\x85\xc2\x3e\ \x4c\x60\x9a\x76\x67\x9e\x18\xf4\x67\xf7\x7f\x31\x31\x7c\x48\x77\ \xe0\xec\x89\x1b\xdf\xde\x96\x8d\xc4\x49\xb6\xad\x9e\x2f\xa7\xf6\ \x6c\xc3\x3e\x70\xc4\x22\x84\x52\x1d\xe4\xd3\x56\x6e\x26\x3a\x78\ \x35\x22\xbf\xb0\xb1\x51\x2e\x1d\xd3\x87\xc7\xff\xba\xf2\x11\x18\ \xbe\x8f\xbb\xca\xe6\x78\x78\xe7\x66\xc1\xf9\xc8\x83\x5e\x4a\xb2\ \xa7\x69\xff\x7e\xce\x1b\x5d\x12\xe1\xcf\xca\xde\x9b\x24\x10\x5f\ \x70\xb5\xfe\x1b\x79\x68\x4f\x92\x0c\x7c\xb5\x3d\xe3\xe1\xc2\x97\ \x1d\x3a\xb0\x8b\x0c\x24\xfa\xfb\xb7\xc4\xc8\x7f\x37\x34\xca\x9b\ \x37\x6f\xc9\xf2\xbc\x63\xca\x3f\xd7\x99\xf3\xfa\xfe\x31\x63\x14\ \xe3\x1f\x01\xef\x2c\x3a\x60\x90\x2c\x3a\x92\x0e\x5c\x74\x01\x4c\ \x94\x39\x2d\xd2\xef\x9a\x88\xdc\xcc\xa4\x15\x73\x05\x7c\xd3\xc0\ \x1e\x2d\x2b\x3c\xc5\xfe\xe8\xe9\x7d\x7f\xce\x3e\xe8\x99\xfd\x3b\ \xca\xe0\xde\x3f\x93\x05\x47\x32\x18\x93\x1a\xfe\xf4\x0c\xd6\x47\ \xdb\xea\x7a\x30\xb5\x3f\x44\xe9\x1c\xd0\x29\xff\xda\xbd\x15\xdb\ \x6e\x8e\xa7\x26\x8b\xa0\xdf\xbb\xb7\x48\x9f\xe6\x6a\x22\xf2\xdf\ \xa2\xff\xf6\x47\x01\x1f\x9a\x81\x7d\xb8\x64\xc2\x40\x19\xd2\xdf\ \x53\x86\x0d\xea\xc6\xbe\xfd\x79\x16\x1f\x59\x5b\x53\xcd\xbe\x64\ \x60\x03\x2b\xfc\x26\x87\x5c\x77\xe4\x7b\xc3\x1e\x00\xbb\xcb\xc9\ \x7f\xed\x20\x1d\x6e\xa7\x08\xea\xe9\xde\xe2\xf8\xd3\xdc\x4a\x64\ \x3b\xc2\x90\xee\xa2\xec\x74\x3e\x63\x10\xd6\xd6\xd6\xc9\xca\xb2\ \x62\x59\x5a\x98\x2b\xcb\x8b\x0a\xa8\xe4\xcb\xaa\xf2\x12\x1d\x8f\ \xf4\xca\x15\xf6\x65\x7f\x30\xee\x35\x13\x67\xc7\x38\x7f\x00\xb6\ \x11\x3c\x13\x8c\x79\x5a\x6c\x94\x4c\x8d\x8d\x12\x68\x23\xb5\xab\ \x05\xfa\xde\x89\x7a\x7c\xc3\x73\xe2\xe0\x9e\x64\xc6\x7c\x02\x3e\ \x64\xdd\x85\x8b\xf2\xe2\xa5\xcb\x5c\xe0\x3b\x84\x6f\x17\x71\x0f\ \x98\x23\x65\x79\xc7\xef\xd1\x5f\x61\xc3\x84\xdd\xd5\x88\x6b\x42\ \x1b\x68\x6e\x1b\xf1\x52\x2d\xd3\xd7\xfd\x60\x22\x71\x45\xb8\xbc\ \x40\xf4\x81\xd9\x88\x36\x9c\xa7\x71\x40\x3b\x50\x6a\x15\x7e\x29\ \xe6\x48\x06\xb0\x38\x7b\xb5\x63\x3d\x15\x36\x5e\xd8\xbd\x10\x63\ \x04\x3b\x12\xf4\x7d\xd8\xc3\x76\xc5\x2c\xe0\x73\x11\x94\xbd\xdb\ \x49\xff\xd9\x8e\x29\x3e\xfa\xfb\x5b\xb2\xfa\xdc\x79\xf6\x4b\x96\ \x95\x14\xc9\x0f\xa7\x8d\x90\x8b\x68\x1e\x2c\x0d\x18\x22\x8b\x72\ \x73\x18\x53\x17\x38\x91\x71\x0b\x83\xf8\xd9\x43\x57\xc6\xbc\xcb\ \xf9\x62\x3b\xaf\xb7\xdc\x8c\xbd\x6c\x27\x39\x7b\xfa\x24\x7f\xde\ \x14\x1e\x20\x18\xf3\xf3\x8d\xae\x2d\xd2\xc7\x18\x01\xc3\x3f\x82\ \xfa\x51\x98\x77\x52\x9e\x39\x53\x25\xab\xce\x56\xcb\xf7\x47\xf7\ \x93\xe3\x5f\xfe\x01\xfb\x16\x2b\xca\x4b\xd9\x8f\x05\x9f\x7b\xd4\ \x84\x01\xcc\x77\x60\x4b\x7a\x6f\x68\x77\xee\x6f\xe2\xd2\x59\x72\ \x6a\x8f\x67\x78\x0e\xa2\x6d\x45\x47\xd3\x65\x41\x56\xaa\xc0\x5c\ \x74\x85\x3e\xce\x21\x00\x4e\x44\xc6\xee\x24\xb6\xbd\xc3\xbf\xb9\ \x6e\x5e\xb0\x7c\xa7\xfb\xd3\x72\x45\xf0\x68\xc6\xc6\x03\x3e\xd8\ \xe9\x9c\x23\xc4\xdb\xd9\x06\xc4\xf3\xcd\xc0\x3f\x5b\x3c\xca\x97\ \xe7\x03\x62\x0d\x16\x8d\xf4\x91\xbb\x3f\x5e\x04\xdc\x0f\xe0\xd2\ \x3b\x9d\x7f\x56\xdd\x3f\x2f\x80\xd3\x90\x18\x1d\x21\x2b\xcf\xd6\ \xc8\xaa\xea\x1a\xb9\x23\x76\x95\x1c\xf3\x52\x2b\xf9\x69\xd4\x5c\ \x79\xae\xf6\x02\xb7\xe9\x40\x52\xac\xb2\x45\xab\xd8\x19\x1a\x03\ \xd8\xdf\x80\xaf\x83\xf6\xdc\xb8\x7a\x59\xde\xba\x71\x9d\xc7\xff\ \x40\xdc\x6a\xa7\xfc\xcf\xe8\x3f\x70\xc8\xe0\x5f\x5f\x15\x34\x9c\ \xf1\xc2\xca\x2a\x2a\xd9\xfe\x34\xf1\x37\xee\xf2\xf3\x84\x0d\xdc\ \x1e\xf8\x54\xe2\x16\x06\x3b\x60\x20\x83\xbf\xc3\x3e\x0f\xec\x53\ \xd0\x4a\x8e\x0a\x65\x1c\x2c\xe0\x7c\x46\x8e\xee\xad\xf8\x7f\x67\ \xa7\xfd\xa7\x5a\xb0\x7f\xfc\xed\x1e\xec\x3f\x28\x2e\x29\x95\x27\ \x8f\x1f\x95\x33\x07\xff\x5a\x66\x1f\xd8\x27\xcb\x2b\xcf\x30\x36\ \x97\xc2\x8d\x36\x6d\x2e\x68\x07\x78\x1c\x6c\x60\xf0\xd3\x6c\x98\ \x33\x89\x6d\x6a\xb0\x03\x63\x4e\x2b\x2c\x3a\x97\xe8\xf3\x3c\xa4\ \x36\x7c\xb9\x3b\x59\x16\x95\x94\xb1\x0d\x3d\x7a\xd6\x44\x99\x73\ \xec\x88\x2c\xa5\xf1\xc8\xc9\xce\xe4\x39\xdf\x94\xd3\xab\xf3\xde\ \x4d\x11\x93\x65\x63\x63\xa3\x8a\x77\xd3\x71\x4e\x11\x73\xb5\x70\ \xf8\xef\x84\xda\x23\x5c\xa2\x6f\xd8\xf5\x93\x57\x2d\x90\x45\xa5\ \x15\x8c\x4d\x92\xba\x6d\x2b\xdb\x92\x4b\x2b\xaa\x64\x5a\xfc\x3a\ \xc6\x34\x6b\x9e\x47\xfc\x55\x1d\xcd\x97\xc2\x1c\xb9\x75\x51\x10\ \xdb\x60\x3f\x5b\x15\xc1\x58\x34\x99\x49\xeb\x04\xc6\xa1\x25\xfe\ \xef\x40\x5f\x61\x65\xac\x9d\x31\x5a\x16\x16\x97\xb2\x0d\x38\x57\ \xd9\xe5\x8b\xcb\x2b\xe5\xa6\x05\xc1\x76\x7e\x1c\x65\xbf\xb6\xf4\ \x64\x5f\xcd\xa2\x11\x3e\x72\x52\x17\x37\xc6\xba\x1a\xfb\x82\x1b\ \x9f\x7b\x50\x81\xf9\xef\xeb\xda\xfc\xd7\xc7\xdf\xc0\x14\xf4\x91\ \x27\x68\xcc\x61\x93\x3e\x01\xbc\x0e\xaa\xf3\xf2\xf2\x65\xd4\xa4\ \x81\x0e\xf1\x0f\x78\x0e\x58\x07\xd7\x2e\xd7\x71\x0c\xdf\xba\x77\ \xc7\xc8\x8f\x67\x8c\xe4\xbd\x09\x3e\x24\xec\xff\x4e\xfb\xef\xe7\ \x9d\x60\xf7\xfc\x35\x96\xf5\x68\x3f\xca\xfa\x62\x8f\x2c\x28\xad\ \x64\x4c\x84\x42\xaa\x8f\x66\x1f\xe4\x98\xc1\x30\xbb\x98\x5b\xc3\ \x17\x99\x10\x39\x53\xda\x74\xe3\xab\x19\xef\x08\x9f\x6e\x4b\xf3\ \x3f\xcc\x90\x3f\xfd\xbd\x63\x94\x1c\xd9\xa8\xf8\x90\x46\x7c\x48\ \x8b\x0d\x9f\xac\xed\xda\xb8\x5a\x4b\x8e\x89\xd4\xb6\xad\x5b\xa1\ \xad\x9f\x17\xa4\xe9\x78\xd9\x66\x6e\xb7\x3a\x3f\xa7\x93\x06\x1c\ \xc1\xa8\xf1\x03\xb4\x94\xe5\x56\x6d\xf7\xda\x85\x5a\xdc\xfc\xa9\ \x1a\xf1\x45\x6d\x16\xf8\xbf\xbe\x4e\xee\xed\xbf\xb2\x09\x11\xfd\ \xfe\x4d\x39\xc3\xde\x42\xc5\xf8\x8a\x77\xfb\x3e\x2f\x66\xf6\x7e\ \x16\x3c\x81\xea\xf6\x82\x64\x04\x61\x7e\xaf\x7e\xc3\xd8\x15\x54\ \xc0\x3b\xe8\xb9\x60\xac\xc1\x6f\xc1\xf3\x44\xe8\x80\x8e\x74\xbd\ \x53\x83\x92\x9f\x13\x9a\xd3\x57\xcf\x5e\xb7\xf3\xfb\x79\x05\x53\ \x7b\x4c\xfb\xac\x99\x4b\xdf\x2c\x47\xfd\x41\xb6\x40\x33\x7e\xca\ \xce\x6f\xa2\xae\xeb\xfb\xaf\xbf\x77\xf2\xfd\xe8\xab\xe7\xa0\xda\ \xe0\xdd\x91\xca\x30\x2a\x23\xe9\x77\xc0\x15\x19\xf9\x08\x8a\x85\ \xfe\x6b\xac\x91\xdb\x6b\x7d\xc0\x59\x77\x61\xdf\x81\xdc\x5d\xd6\ \x59\x91\x2f\xeb\xf7\xc8\xf3\x5b\x9f\x6c\xae\x83\xca\x66\xaf\x1a\ \x37\x37\x4f\x2a\xee\x54\x9e\x7e\xd4\xe5\x3a\x95\x06\x24\xff\xd9\ \xbd\x60\xa7\x80\x59\xc2\xcb\xcd\xce\x4e\xf1\xe4\xc3\x8e\xd8\xfd\ \x5f\x86\xcd\xdb\x78\x91\x5c\xf8\xd4\xe2\x51\xaf\xb6\x5d\x13\x38\ \xac\xcd\xdc\x37\xbb\x79\x84\xbe\xee\xe9\x41\x6b\xc3\x63\xe9\x98\ \x3f\x78\xac\x09\x7c\xdb\x83\x64\x45\xbc\x6f\xb3\x6c\x7c\x7f\x8f\ \xe5\x93\xfc\xdc\x69\xed\x3a\xcc\x11\x9a\xcf\x7f\xc2\x39\x41\xb4\ \xae\xbe\x26\xde\xa3\xf2\x3a\x3a\xd5\xd3\x7a\xac\x27\x19\xb3\x9e\ \xe4\xa6\x7a\x92\xc1\xea\x89\xcf\x5e\x0b\xe9\xd5\xfe\x5b\x92\x07\ \x77\x92\x1c\x6a\x9e\x25\x46\xf7\x59\xa2\x27\x0f\x86\x6e\x26\xde\ \x1b\xfa\x4b\x4d\x8f\x77\x78\x41\x7e\x34\x65\x08\xe3\x50\xc3\x3f\ \x1a\x13\x38\x4c\x7e\x12\x3a\x4e\x23\xdd\xe5\x2e\xf0\x8c\x68\x2d\ \xbf\x69\xdc\x3f\xde\xd3\x6d\x78\xc2\x07\xb3\x31\x6c\x77\xd6\x84\ \xfc\xc5\x16\xe8\xd3\xce\x16\xe4\xdb\xde\x56\x7c\x3c\xcb\x76\xbb\ \xa1\xc1\x46\x7b\x9c\x2d\x2b\x25\xd6\x76\x3c\x2d\xc5\x56\x5d\x9c\ \x77\x07\x58\xb7\x13\x3b\xbb\x59\x8c\xfb\xa7\xbd\xf2\x23\x4b\xe4\ \xd8\xd7\xe4\x37\xb7\xfe\x23\x76\xfe\x73\x99\x16\xd8\xab\x83\x0c\ \x7f\xab\x87\xbc\x58\x57\x2b\xf3\xb2\xd2\x94\xce\xf2\x3c\xf6\x0e\ \x6d\x83\x75\x82\x88\x23\xde\x3d\xee\xc5\xa6\xfb\xa9\xad\x16\xc8\ \xb9\x25\x05\xa7\x04\xe9\x05\x5a\x4d\x75\x95\xac\x39\x7b\x86\x63\ \x77\x77\xad\x5d\xcc\x72\x36\xd6\x3e\xe9\x03\x1a\xed\xfb\x02\xf2\ \x18\x8d\x83\x79\xff\xdc\xc1\xdd\x2c\xd8\xd3\xd2\xb7\xc7\x89\xda\ \x0b\x97\xb4\xbd\x9b\x63\xe4\xb1\xf4\x54\x79\xf5\xfa\x4d\x19\x13\ \x6c\xe1\xfb\xe1\x67\xaa\xc8\x3b\xaa\xe5\x65\xec\x15\xf0\x27\x93\ \x6e\x6d\xde\x1f\x3e\xe4\x65\x0b\xf6\xbc\xb8\x25\xb3\xc4\xf9\x8b\ \x57\xb4\xc0\xbe\x1d\x65\x7c\xf4\x3c\xc6\x45\x47\xbb\x90\xcb\x70\ \x68\xfb\x06\x60\x80\x6a\xd9\x3b\x36\x89\x2d\xf3\xa7\x3a\xb4\x9f\ \xf6\x1e\x0b\xfa\xb7\x6c\xd2\x40\x51\x5d\x77\x49\xfb\x30\x78\x8c\ \xcc\xf8\x7c\x87\xcc\xc9\xdc\xcf\x7d\x9f\x3f\xac\x07\xe3\x07\xad\ \x0f\x7d\x47\xcb\x27\x79\x15\x7a\xcd\xb4\xdf\xfe\xc4\xbc\x9f\xf8\ \x9e\x45\xc5\x99\x89\xdc\x93\x27\xb4\x94\x4f\x56\xb2\x5c\xb4\x63\ \xed\x12\x7d\xec\x48\x0e\xde\x1c\x31\x05\xfa\xb8\xb6\x7f\xf3\x4a\ \xa1\xf6\xc5\xa6\xfb\xfd\xbd\x87\x2b\x2c\x4c\x91\x9a\x10\xab\x31\ \xc6\x53\x41\xa1\x5c\x1d\x3c\x42\x4e\x27\xd9\x18\x98\x9c\x05\xa4\ \x3b\x90\x6e\xaf\xd1\x38\x88\x2d\x0b\xa6\x39\xb4\x9f\xd6\xae\x45\ \x61\x88\xdd\xfe\x34\x72\xb6\x28\x3f\x77\x49\x90\x5c\x80\x71\x12\ \xb4\x57\x8b\xf0\xc1\xdd\x04\xc9\xff\x02\xba\x6e\xf1\xd1\x2f\x1b\ \x56\x4e\x19\x2a\xa7\xfc\xea\xa9\xe1\x76\xf4\x7d\x95\x7c\xaf\xd1\ \x3d\x1a\xce\x61\x8a\x0a\x18\x6c\xda\x15\x30\x17\xa1\xbf\x6c\x0c\ \x0f\xd0\x96\x4f\x7c\x1d\xe7\xd8\x41\x5e\x30\xe9\x73\x1b\xfc\xbc\ \x26\xd0\x7f\xa4\xd0\x6f\xb7\x4e\xf7\x71\x8f\x27\x19\x29\x9e\x3e\ \xc7\xd3\xf5\x78\xea\x5b\x3c\x5d\x8f\x27\xd9\x9f\xae\x3f\xbb\x85\ \xf6\x8a\x5d\x61\x7e\x9e\xbe\xce\x57\xaa\xf3\x97\x6e\xdb\x74\x73\ \xcb\x6c\xfd\x70\xa5\xa6\xb5\x7e\xdf\x7f\x01\xc2\x54\xbe\x4c\ \x00\x00\x02\xbf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x61\x49\x44\x41\x54\x78\xda\x8c\ \x52\x3b\x68\x54\x41\x14\x3d\xf3\xe6\xbd\x5d\xf3\x21\x29\x54\x0c\ \x04\x3f\x88\x56\x76\x36\x56\x0a\x09\x82\xa2\x1b\x17\x12\xfc\x91\ \xc2\xca\xa0\x96\x16\xb6\x82\x58\xa5\x50\x10\x82\x82\x95\x68\x21\ \x09\x0b\x62\x50\x62\x62\xa1\x29\x45\x12\xc4\x88\x95\x16\x09\xc4\ \x0d\x26\xc6\xdd\x7d\xfb\x76\xdf\x67\x66\xbc\x77\xde\xae\x2c\xd9\ \x80\x0e\xcc\x9b\xdd\x99\x7b\xcf\x3d\xe7\xde\x23\x06\xee\xcc\xbc\ \x04\x30\x64\x60\xa0\x14\x7d\x0d\xff\x6a\x5f\x82\xb6\xe3\x38\x90\ \x8e\x98\xce\x78\xf2\x5c\xf3\xde\xe5\xe4\xdb\x63\x27\xf1\xa0\xf0\ \x01\x77\x47\x8f\x41\x69\x4d\x20\xdb\x00\x08\x01\xcf\x95\x18\xbb\ \x3f\x33\xa4\xe9\xdd\x11\x0d\x00\x6d\x34\x4a\xb5\x18\x61\xa4\x51\ \x0d\x63\x3c\xfd\xb4\x81\x84\x22\x14\x83\x98\xb4\xb4\xa4\xed\x52\ \xf5\x2b\x47\x77\x41\x53\x01\x5b\x41\x88\xbf\x0c\x10\x50\xb2\xa6\ \xcb\x4a\xdd\x20\x88\x81\xc7\x67\xfa\xdb\x18\x5c\x7d\xbd\x0a\x9f\ \xde\xc5\x96\x7b\x97\x2f\x82\x98\x75\x0b\x54\x63\x85\x28\xde\xae\ \x03\x40\x94\x18\xf8\x91\xa2\x28\x61\xab\x6b\xe1\xb4\x00\x44\x29\ \xdf\x6a\xac\x89\xba\xc1\xc8\xd4\x32\x22\x65\x9a\x0a\x90\x21\x0d\ \x9d\x19\xc7\xbe\x73\x72\xe2\xb8\x88\xdd\x2c\x14\x81\xb8\x2c\x85\ \x01\xa8\x15\xf0\x43\x83\x24\x01\x0a\xe7\xf7\xb5\x31\xb8\x58\x58\ \x45\x39\x72\x10\x4b\x0f\x81\xd7\x8d\x17\x6f\x2e\x21\x92\x19\x66\ \x20\x2c\x32\xe5\xa3\x12\x6a\x5b\x75\x64\x72\x05\xdc\x69\xd3\xa4\ \x20\xa9\x55\xde\x0e\xac\xa1\x03\x95\x6c\x2f\xa6\x67\x47\x51\xca\ \xf4\x40\x11\x13\xcb\xc0\x8f\xb4\xad\xe2\xd7\x15\x79\x81\x46\x44\ \x59\x56\x21\x7d\x94\x90\xa8\x7b\x5d\x18\x7e\x3f\x8e\xe3\xf7\x9e\ \x21\x4f\x40\x25\xaf\x83\x08\xbb\x0f\x29\xea\x86\x9d\x42\xbd\xd1\ \x38\x9f\xce\xe6\x8c\xb9\xb0\x36\x8e\xd5\x3a\xfc\x6e\x1c\xb9\x1f\ \x6f\xd1\x77\xfa\x2c\x31\xc9\xd2\x83\xc6\xf7\x2f\x5f\xaf\xff\xfe\ \xb5\x29\xac\x1f\x78\xee\x2c\xa5\x16\xa7\x63\x12\x2d\xf6\x4b\x48\ \xf3\xc0\xc2\x13\xf4\xed\x3f\x00\x6c\xae\x43\x17\x57\x60\x36\x8a\ \x38\xd8\xbf\x87\x3d\x71\xcd\xe5\x20\x1e\x11\x23\x05\x74\x0a\x21\ \x5a\xed\x07\x43\x9d\x4e\x48\x06\x06\xf3\xc0\xa9\xcb\xa9\x34\x5e\ \x73\x93\x30\x8b\x4b\x69\x13\x23\x56\x2d\x25\x42\x45\xaa\xb8\x61\ \x68\x18\x86\xdc\xc7\xfe\x67\x17\x62\xea\x11\xe2\xe7\x13\xd0\x34\ \x5e\x47\x52\xbc\xe7\xd1\x29\xe1\x06\x7e\x79\x7e\xfd\xf3\xc7\x13\ \x9c\x54\x5c\x5a\x68\xf8\x37\x5d\x0c\x53\xf3\x3a\xf1\xea\x70\x1e\ \xb9\xb5\x79\xec\xed\xf1\x2c\x03\xa3\x34\xbe\x95\x13\x14\xc3\xa4\ \xc0\x85\x0e\xd1\xee\xc5\x3f\xd6\xec\xe0\x91\x5b\x3b\xbb\xba\x2f\ \xe8\xd4\x8b\x28\xd6\xc3\x42\x6e\x6e\xf1\xa6\xc0\xff\x2f\x76\xd7\ \xee\x96\xff\x3f\x69\x2f\xff\x11\x60\x00\x65\x30\x0b\x51\x8b\x16\ \xa8\x60\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xb0\x49\x44\x41\x54\x78\xda\x8c\ \x53\x5d\x48\x14\x51\x14\xfe\xf6\xce\xec\x8c\xae\xba\x6b\x3f\x1a\ \xf9\x97\x84\x84\x81\x88\xe5\x96\x18\x58\x06\x8b\x26\x82\xd1\x43\ \x24\x59\x14\xf5\xd4\x53\x4f\x41\xb1\x25\xf6\x23\x5b\xd2\x6b\x60\ \x50\x44\x16\xfb\x18\xd4\x43\x94\x6b\x94\x29\x59\xe4\x86\xda\x43\ \x46\xe9\xc3\xea\x5a\x48\x62\xc6\x6e\xbb\x3b\x3b\x77\xa6\x73\x67\ \x7f\x90\xa8\xe8\xc0\x19\xe6\xdc\x7b\xe7\x3b\xdf\xf9\xbe\x3b\xb6\ \x4d\xbe\x00\x44\x98\x94\x3a\x37\x10\xd5\xf8\x62\xcd\x46\x67\x91\ \x53\x91\xb0\x1c\xd7\x31\x3e\xff\x1d\x92\xcd\x66\x9d\x11\x4f\xc6\ \x6c\xb0\x4b\x94\x8c\x41\x95\x59\x95\x8c\x74\x98\xa6\x89\xb8\x6e\ \x5c\xee\x3f\x50\x5b\xd4\x59\x57\x8a\x7f\x45\xe0\xd3\x22\x5c\x39\ \x76\xb4\xdf\x7e\x7d\x8b\x65\x16\x0d\x02\x88\x69\xc9\x13\x99\x8f\ \x75\xaa\x45\xf2\x55\x69\xa6\xcf\xfa\x9e\xcf\x20\x41\x6c\x2b\xd7\ \xe5\x35\xcb\x19\xfa\x54\xa3\xb9\xaa\xb8\x44\xd4\x11\x8d\x5b\x80\ \xab\x43\xd0\x97\x88\xbe\xc3\x2e\xe1\xc5\xec\x37\x1c\xf6\x47\xa0\ \xc8\x0c\x72\x46\x00\xea\x90\x5f\xa0\xa6\xca\x38\xe7\x10\xdf\xdb\ \x7e\xa3\xee\x60\x92\x05\xac\xf2\xd8\xe4\xbc\xb7\xe3\xa4\x58\xcb\ \x32\xd0\x13\xf1\xea\xed\x25\x2e\xeb\xa0\x96\x34\x52\x5d\xd3\xe2\ \x99\x69\x36\x05\x8a\x8c\x60\x78\x05\x76\x98\xa1\xf5\xbd\x83\xc1\ \x7c\x55\x42\x5a\x03\x9a\xd1\xe0\x7b\xea\xcb\x5c\xa4\x7c\x12\x9a\ \x61\x40\x40\xc8\xa4\xb6\x48\xf1\x2e\x92\x54\x47\x68\x25\x06\xd9\ \x48\xcc\x0a\xec\x9f\xd4\x28\xc5\x80\x1a\x18\x9c\x57\xaf\xc9\x55\ \x10\x21\xeb\xb8\x61\xd2\xac\x40\xf1\x85\xc7\x16\x7c\xb8\xa7\x2d\ \xc5\xe8\xcc\x43\x38\x72\x64\xe4\x26\x62\x13\x59\x5b\xb3\x36\x4a\ \x4a\x43\x7d\xa9\x0b\x51\xae\x5b\x5d\x37\xf4\x3c\xc1\xe8\xe9\x56\ \x48\x24\x1a\x49\x4a\x1a\x71\x30\x89\x61\xf8\x94\x07\x66\x51\xc5\ \x1d\xd1\x44\x0c\xc6\x2c\x07\x88\x42\x61\x5e\x4e\xb9\x00\x52\xe9\ \x82\x54\x5e\x19\xc4\xc0\x91\xdd\xb8\x34\x1c\xb6\x94\xd7\x75\x03\ \x31\xa2\x6b\xd0\x68\xe7\x86\x42\xe8\x3f\xd8\x08\x8d\x73\x53\xd4\ \x2c\x49\x50\x74\xfb\xcc\xa8\x6e\x14\xee\xbc\x31\x82\xaa\x6b\xcf\ \xe0\xeb\x68\xc4\x83\x0f\xcb\x78\xf3\xf9\x23\x76\x55\xae\x85\x7f\ \x72\x01\xa2\x9f\xd9\xb7\x1f\x23\xd3\xd3\xf0\x4f\x2d\xc1\xdb\xb2\ \x43\x8c\x6a\xca\x09\x42\x5f\xb9\xd8\x96\xb5\x8a\x9d\x7d\x84\x85\ \xa8\x06\x87\xca\x2c\x6d\xae\xb7\x6f\x45\xa7\xff\x1d\xba\xb6\x95\ \x22\xfc\x23\x06\x21\x9e\xd8\x0b\x47\x12\x96\x08\x8c\x69\xd1\xb7\ \x7d\x2f\x67\x10\xa2\xcd\x39\xca\x25\x12\xec\xee\xab\x29\xe4\xd3\ \x9d\x38\xd4\x50\x8b\xbd\x37\xc7\xd0\xed\xd9\x02\x27\x59\xb8\xf9\ \xea\x10\xba\x1a\xeb\x50\xa0\xda\x71\x6f\xec\x3d\xbe\x9c\xdf\xe7\ \xb6\x39\x3d\xc7\x3d\x4a\x53\x67\x80\x46\xb1\x44\x91\x69\x66\x85\ \x44\x14\xde\x1f\x6d\xaa\xc3\xc0\xc8\x64\xca\x25\xda\x15\x8a\x1f\ \xa3\xb5\xfb\xa3\x13\xf8\xda\xdd\xe6\xae\xf0\x05\x82\xc2\x09\x95\ \xb2\xe6\x4f\x3f\x4d\x59\xef\xd3\x71\x1b\xf1\x9c\xf3\xb6\xb8\x45\ \x5d\xde\x3b\x38\x2e\xb4\x98\xf7\xb6\xba\xe9\x2f\x0e\xe2\x3f\xa2\ \x3e\x9d\x7f\xab\xf1\x4b\x80\x01\x00\x1a\xda\x36\x6e\x0f\x0d\xc7\ \x55\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xd9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x7b\x49\x44\x41\x54\x78\xda\x62\ \xf8\xff\xff\x3f\x03\x0c\x1c\x71\x30\xf8\x0f\xc2\x0c\x38\x00\xba\ \x3c\x58\x2f\xcc\x00\x90\xc4\xb7\xc3\xbb\xc0\x18\x9b\x21\xd8\xe4\ \xe1\x06\x80\x04\xbe\xee\xde\xf0\xff\xa9\xa7\x2e\x18\x83\xd8\xc8\ \x86\xe0\x92\x07\xe9\x65\x81\x5b\xf1\xe3\x3b\x03\x13\x0b\x2b\x98\ \xf9\x69\x52\x13\x83\x61\x71\x39\xc3\x11\x86\x4e\xb0\x21\x20\x36\ \x48\x0c\x26\x0f\x52\x0b\x03\x8c\x20\x53\x18\x19\x19\x8d\x81\x26\ \x9e\x31\xc8\xce\x63\xf8\xb6\x6c\x26\x5c\x92\x2b\x2a\x1d\x4c\xa3\ \x8b\x5d\x98\x3a\x89\xc1\xe6\xc0\x05\x13\xa0\xde\xb3\x30\x03\x40\ \x72\x60\x43\x0c\x93\xd3\x19\xbe\x6f\x5a\x8a\x35\x10\x39\xfd\xa2\ \x19\xce\xcf\x9d\x09\xd6\x0c\xe4\x9e\x05\xeb\x45\x32\x00\x61\x48\ \x6c\x3c\xc3\xcf\x3d\x9b\x50\x34\xb3\xbb\xf8\x31\x9c\x5f\xbc\x10\ \xae\x19\x16\x88\x2c\x68\x96\x80\x25\x18\x7f\xfe\x44\xf8\x17\xe6\ \x57\xa0\x18\xb2\x1a\xf4\x30\x80\x87\xb6\x51\x60\x10\xc3\xdf\x0b\ \x27\xb1\x7a\x81\xd9\xc0\x9c\xe1\xdc\xfa\x75\x20\x57\x30\xc2\x5c\ \x00\x37\x00\xa4\xd9\xd8\xc7\x9b\xe1\xdf\xcd\x2b\x70\x0d\x4c\xea\ \x3a\x60\x1a\x5d\xec\xec\x96\xad\x60\x43\xe0\x5e\x00\x69\x36\x71\ \x77\x63\xf8\x7f\xf7\x26\xdc\xe9\x8c\x72\x4a\x0c\x67\x80\x0a\x41\ \x00\x2c\xf7\xe8\x1e\xc4\x04\xa0\x1a\x10\xff\x08\xd0\x01\x20\x65\ \xf0\x30\x60\xfa\xfd\x9b\xe1\x3f\x2b\x54\xb3\x88\x04\xc3\xa9\x9d\ \xbb\x60\x01\x06\x52\x7c\xc6\xcc\xc9\x91\xe1\xff\x9b\x17\x10\x79\ \xa0\x5a\xac\xe9\xc0\xc2\xce\x06\x2c\x78\xe2\xd0\x11\x94\xd0\x86\ \xc5\x0e\xba\x3c\x28\x1d\x30\x20\x65\x26\x63\xa4\xcc\x62\x8c\x25\ \x0c\x31\xe4\x51\x32\x13\x4c\x11\x0e\xcd\x58\xe5\xe1\xb1\x40\x09\ \x00\x08\x30\x00\xac\x0b\x09\xd8\xf6\x2b\x0f\xd4\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x78\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x1a\x49\x44\x41\x54\x78\xda\xa4\ \x53\x3d\x6f\x13\x41\x10\x7d\xb3\xbb\x67\x07\x83\x51\x08\x04\x0a\ \x9b\x44\x14\x48\xa1\xe0\x43\x49\x44\x4b\x13\x68\x29\x28\x90\x10\ \xa2\x81\x22\x05\x0d\xff\x00\xd1\xd2\x80\x84\xac\x84\x86\x06\x94\ \x36\x0d\x42\xa4\x41\x42\xa2\x4c\xe0\xe2\x02\x64\x24\x07\x23\x24\ \x9b\x60\x82\x7d\x96\xef\x9c\xcb\xdd\x2e\xb3\x77\xce\x17\xd0\x20\ \x8f\x74\xba\xbd\x9d\x99\xf7\x66\xde\xcc\x91\x31\x06\x83\x98\xc0\ \x80\xa6\xca\xf3\x33\x8b\x3a\x0a\xaf\x1a\x1d\x27\x17\x24\x24\x48\ \xaa\x32\x91\x38\xc7\x5f\xfb\xa3\xa9\x7f\x43\x84\x6d\x9f\xb2\xc9\ \xe7\x67\x9f\x01\x5b\x51\x1a\x24\x25\x56\x9e\xdc\x38\xcb\x20\x86\ \xe8\x0f\x00\x4e\x22\x21\x20\x54\xe6\x13\x13\x9d\x49\x00\x8c\xd6\ \x9c\xbc\x89\xb0\xf2\x10\xc6\x10\x9c\xc2\x35\x4c\xce\x3e\xe7\xe6\ \xfa\xc9\x16\x64\x1b\xc8\xbe\x94\x82\x5b\xba\x35\x21\x49\x4c\xf1\ \xfd\xb2\x4a\x1c\xa6\xcb\x8e\x03\xec\x97\x88\xd6\x5f\xf1\xc5\xcb\ \x24\x96\x18\xc4\xc4\x1a\x41\xc7\xef\x97\x6e\x90\x29\x5c\xe7\x78\ \x83\x8e\x1f\x5e\xcc\x1f\xcc\x5a\x00\x76\xc5\x3e\x84\x33\xc4\x47\ \x69\x8b\xdc\x61\xd6\xac\x4b\xe5\x9d\x8b\xa0\xd5\xb1\x2c\xec\xe1\ \x89\xd1\x7d\x08\xa9\x90\x73\x9c\x12\xeb\xf6\x20\x05\xa0\x4d\x4b\ \x87\xa0\x1d\x20\xe9\x3b\xa5\x43\x6d\xa5\x82\xd1\xb1\x11\x1c\xbf\ \x59\x02\x12\x91\x4d\xfa\x58\xbf\x93\x81\x3b\x77\xfb\x98\xb2\x65\ \x22\xf2\xf0\xf9\xad\x8b\xee\x2f\x6f\x57\x2f\xd6\x63\x7c\xea\x34\ \x8e\x14\x8e\x62\xab\xfa\x88\xab\xd6\x49\xe9\x16\x40\xe6\x8a\x08\ \xc5\x04\x9a\xed\x70\x49\x59\x66\xbf\xbe\xc6\xca\x02\xd3\xf7\x16\ \xb8\x9d\xb8\xaf\x96\x44\xfc\xb5\x04\x6d\x78\x55\x28\x93\x96\x9f\ \x00\x6b\x06\x18\x47\xeb\xe3\x2a\xbe\xac\xf7\x5e\x28\x9e\x37\x3a\ \xf5\x1a\x0e\x17\x79\x2a\xdd\x2a\x74\x73\x89\x43\x45\x0a\x22\xb3\ \x7c\xda\xbb\x6b\xac\x03\x31\xd3\xd0\x21\xfc\xac\xba\xb8\xf3\xf8\ \xc3\x62\xd2\x42\xbb\xf1\x0d\xc5\xe9\x4b\xdc\x4a\x1d\x94\xcd\x73\ \xaa\xd8\x1d\xe1\x3e\x63\x00\x67\x04\x7e\x63\x0d\xdf\x1b\xcd\xd7\ \xab\xf3\x33\x9e\xb2\x41\xc1\x46\x0b\xb9\x53\x27\x81\x5e\x8b\x07\ \x31\x8c\xbf\x36\x70\xaf\x65\x87\xb1\xb1\xfc\x1e\xb5\x1f\xbd\x85\ \x13\xa3\x4c\xe6\xce\x5d\xf6\x78\x60\x79\x1d\xc5\xb0\x4b\x65\x76\ \x36\xe6\xdf\x66\x8b\x32\x24\xda\x93\x77\xdf\x8c\x95\x9f\x5e\xf1\ \x6c\xe4\x85\x44\xb1\xff\x33\xbb\xf7\x6e\xba\x5b\x03\xfe\xce\xbf\ \x05\x18\x00\xab\xcb\xbf\xa2\xea\xc2\x43\xa9\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x1b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x39\x33\x35\x37\x31\x38\x38\x36\x31\x30\x41\ \x31\x31\x31\x45\x33\x41\x30\x44\x37\x46\x30\x44\x35\x38\x43\x38\ \x46\x33\x36\x41\x39\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x39\x33\x35\x37\x31\x38\x38\x37\x31\x30\x41\x31\x31\x31\x45\ \x33\x41\x30\x44\x37\x46\x30\x44\x35\x38\x43\x38\x46\x33\x36\x41\ \x39\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x39\x33\x35\x37\x31\x38\x38\x34\x31\x30\x41\x31\x31\x31\x45\ \x33\x41\x30\x44\x37\x46\x30\x44\x35\x38\x43\x38\x46\x33\x36\x41\ \x39\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x39\x33\x35\ \x37\x31\x38\x38\x35\x31\x30\x41\x31\x31\x31\x45\x33\x41\x30\x44\ \x37\x46\x30\x44\x35\x38\x43\x38\x46\x33\x36\x41\x39\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xb9\ \xc6\x02\x59\x00\x00\x01\x8f\x49\x44\x41\x54\x78\xda\xec\x53\x4d\ \x28\x44\x51\x14\xfe\xce\x7d\x6f\x32\x33\xf2\x4c\x43\xca\x4f\xd9\ \xc8\x58\x30\x29\x1b\x2b\x92\x0c\x1b\x65\xc3\x58\x58\xc8\x0a\x1b\ \x59\x58\x28\x3b\x25\xb6\x4a\xb6\x16\x36\x23\x0b\x3b\x3f\x51\x8a\ \xb2\x92\x91\xd9\x90\xfc\xe4\x3f\x8c\x31\xd3\x8c\xf0\xde\xbb\xce\ \xf5\xbf\x90\x94\x85\x8d\x53\x5f\xe7\x74\xce\x77\xbf\x4e\xdf\xbd\ \x97\xa4\x94\xf8\x4d\x08\xfc\x32\xfe\x5e\x40\x6f\x18\x5e\x84\x72\ \x41\x79\xc1\xa8\xb0\x2c\xd9\x67\x4b\xd9\xc8\x3d\xf7\xf3\x80\x5e\ \x88\x44\x04\x4d\x50\x48\x23\xea\xe0\x3a\x45\xaf\x7d\xdd\x66\xb6\ \x25\xe5\x24\x67\xd3\x70\x39\xda\x6b\xfc\x05\x28\xc9\xf7\xc0\x99\ \xa6\xbd\x9f\x56\xe4\x58\xf2\x01\x9b\xfb\x57\xc1\xb5\xed\x8b\xa0\ \x69\x5a\xe3\x82\x44\xb7\x9a\xea\xa6\x65\xa3\xa9\xca\xd7\xb6\x12\ \x39\x43\x67\xc0\x87\xb3\xdb\x7b\xac\x1e\x24\x70\x72\x95\x80\xbc\ \xbf\x83\xe4\xb9\x52\x50\x64\xaf\xe1\x42\x6b\x55\x31\x96\xc2\x47\ \x5d\xe7\x37\xc9\x6c\xde\xa4\x45\xb7\x6c\x1b\x0d\x65\x79\xf0\xe5\ \x7a\x30\x13\xb9\xc6\x71\xfc\x11\x77\xd1\x6b\x3c\xc4\xe3\xc9\xc4\ \xe9\xce\x68\xec\x30\xb2\x45\x24\x84\x94\xb6\x9d\x59\x58\xea\x0f\ \xef\x95\xf4\xe4\x78\xdc\x2e\x96\x6c\x66\xcd\x7a\x5d\xad\xb8\x1b\ \x7d\xc4\xe4\x46\x14\x0e\x4d\x83\x99\xb8\x44\xea\xe2\x78\x79\x65\ \xa4\xb5\x97\x47\x27\x8c\xe4\x27\xcf\x16\x19\x53\xd5\xfd\xa1\x61\ \xa7\xe1\x0d\x70\x3d\xa7\x0b\x41\x30\xd2\x5d\xc8\xf6\x66\x2a\x93\ \x10\xf4\x67\x61\x2c\x74\x1e\x0b\x0c\x2d\x84\xe9\xcd\xa9\x8f\x48\ \x31\x2e\xe7\xfb\xeb\x3a\x6b\x06\xa6\x27\x1c\x6e\xa3\x92\x6a\x07\ \x67\xe3\xb6\x44\x06\xbd\x59\xfe\xec\xb6\x00\x0b\xd3\x77\xd7\xc7\ \x22\x45\x9c\x32\x14\xa9\x9c\xa1\x7d\xc1\x59\xff\xc9\x3b\xa0\xff\ \xbf\x80\x27\x01\x06\x00\x87\x19\x96\x90\x5f\xaa\x9e\x55\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x06\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xa8\x49\x44\x41\x54\x78\xda\x7c\ \x53\x5b\x4b\x54\x51\x18\x5d\xe7\x36\xc7\x19\x35\x1c\x24\xe9\xa9\ \x20\x10\x49\x4b\xcd\xd1\x32\x0b\xea\xa1\x87\x1c\x4c\xa7\x08\x04\ \x93\x20\x7c\xa8\x87\x90\x9e\xd4\x70\xf2\x9a\x64\xfd\x90\xac\x18\ \x65\xd2\x26\x33\x1f\x2c\x22\x1b\x47\x87\x28\xb5\xac\x1e\x94\x34\ \x12\x7b\xd0\x42\xb1\x99\x73\xd9\xed\x6f\x1f\x47\xa4\xa8\x05\xeb\ \xec\x6f\x7f\x7b\xed\xcb\x59\xfb\xdb\xd2\x50\x24\x02\x02\x63\x4c\ \xb4\x8a\x04\xb8\x35\x86\xd6\x71\x1d\x2e\xd9\x16\xc9\xa4\x2d\x4b\ \x3d\x15\x09\x6c\x1a\x12\x2c\x47\x06\x49\x92\x44\x2b\xd3\xc7\xb6\ \xed\xb0\x61\x9a\xcc\x48\x26\x99\x69\x1a\x8c\x27\x98\x65\x59\xac\ \xb1\xaa\x10\x44\x8a\x29\x47\x63\xa4\x21\x2d\xcd\xa1\xb9\x2a\xed\ \x6c\x9a\x66\xcd\xf9\x40\x00\x29\x14\x34\x47\x10\xac\x2d\x41\xdf\ \xec\x9a\xe8\x5f\x0f\x94\xe0\xda\x83\x49\xcc\xde\xa9\xde\xd6\x0c\ \x84\xc3\x35\x9a\xa6\x41\x76\x4e\xe2\x9c\x6b\x71\xf1\x0b\xbe\x2f\ \x2f\xc1\x7f\xd0\x8b\xbb\x0f\x27\x90\xb3\x3b\x5b\x90\x62\x7f\x81\ \x17\x2b\x7c\x8c\x34\x0e\x9c\x39\x6a\x9a\xc2\x20\xab\xce\xff\x30\ \x59\x85\xac\xa8\x08\xfa\x73\xd1\x7b\x2e\x0f\x65\x3d\xe3\x22\x3f\ \x15\xac\xc0\x7a\xc2\x86\x61\xd9\x48\x4f\x73\xb4\xaa\x2c\xf1\xdd\ \xb9\x07\xc1\x68\x1a\x5c\xdc\xb9\x43\x2d\x11\x34\xf6\xcd\xc1\xa3\ \xab\x7c\x6d\x19\xbf\x4c\x09\xa7\x0b\x72\x04\x29\xa6\x9c\x5b\xd7\ \xd0\x3b\x32\x8f\xfc\xa6\x08\x32\x75\x19\x1e\x8d\x2f\xe4\xe1\x27\ \x68\x8b\xea\xe8\xaa\xf3\xa1\xf3\x5e\x14\x6e\x8f\x0b\x72\xc2\x42\ \x92\xfb\xd6\x5e\x93\x27\x76\xa3\xbb\x70\x6b\x12\x74\x5d\xc1\xc8\ \xf4\x0a\x6e\x5d\x2c\x47\x4b\x7f\x1c\xaa\xa2\xd0\x29\x6c\x76\xb9\ \xb2\x08\xa1\xb9\x75\x34\xd6\x1e\x47\x51\xeb\x18\xda\xc2\x9f\xe0\ \xd2\x54\xd8\x7c\x57\x22\xc5\x94\xa3\x31\xd2\xf4\x7f\x5c\x47\x83\ \xbf\x08\x3a\xbf\x66\xf1\xf7\xdf\x7e\x1a\xc8\xca\xcc\x40\x6c\xd9\ \x12\xe6\x28\xb2\x0c\x5d\xd5\xa0\x29\x8e\x51\xe4\x34\xe5\x68\x6c\ \x92\x6b\x48\xbb\xfc\x63\x93\x17\x83\x63\xa7\xef\x44\xfb\x30\xbb\ \x3a\xb0\xc0\x0e\x37\x3f\x62\x0e\x4c\xc1\x1b\xf7\xa7\x04\x53\x7d\ \x42\x71\x53\x98\x5d\xe9\x9f\x67\xc7\xda\x86\x69\x75\x9f\x7c\xb4\ \x63\x34\xde\x51\x9e\xc0\xab\x89\x69\xec\xdf\xb3\x6b\xeb\x8a\x14\ \xc1\x27\x6f\xbe\x0a\xa6\xfa\x84\xb3\xa5\x7b\xf1\x32\x3a\x83\xdb\ \xbc\x32\xc7\x9e\x3d\x8e\x4b\xa3\x4f\x87\x90\x34\x4c\xe6\xaf\x0a\ \xf0\xff\x75\x4a\xb3\x3d\xf4\x16\x83\x93\x0b\xc8\x2d\xcc\x17\x93\ \x3e\xbf\x7b\x8f\xea\xb2\x7d\xe8\xbc\x50\xbc\x5d\x48\x83\x83\x61\ \xa8\xaa\x26\x71\xc3\x25\xee\xf8\x8e\xba\xe6\x08\xc5\x16\x51\x77\ \xa6\x14\xd9\x59\x99\x82\x14\x87\x62\x4b\xd8\x09\x8b\x39\xef\x42\ \xa2\xc7\xb4\xba\xba\xfa\x3c\x3d\x23\xfd\x24\xe3\xf7\xa5\xf1\x9a\ \x20\x76\xc7\x74\x94\xfb\x0e\x08\x71\x34\xfe\x01\x37\x8f\x24\x78\ \x21\x31\x41\x7a\x48\x1b\x1b\x1b\x2f\xbc\x5e\xef\x29\x95\x04\x97\ \xea\xeb\x1b\x78\x93\x85\x3f\xe0\xe9\x1e\x99\xa2\xf6\x75\x57\x65\ \xa9\x1f\x7f\x61\x2d\xf5\x92\xff\x07\xdf\x16\xff\x89\xdf\x02\x0c\ \x00\xf1\x8d\x3d\x5b\x24\xc6\xd6\x02\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x02\xe6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x88\x49\x44\x41\x54\x78\xda\x6c\ \x53\x4b\x48\x54\x61\x18\x3d\xf7\xfe\x73\x5f\x3a\xf9\x68\x4a\x21\ \xc2\x84\x88\xe8\x41\x9b\x30\xdc\x54\x04\xa1\xd5\xa6\xc7\xa2\x45\ \x04\x45\x81\x2d\x6c\x23\x2d\x42\xc8\x24\x6c\x91\xab\x16\x61\x50\ \x90\x64\x8b\x6a\x69\xa0\x38\xe3\xc2\x32\x08\x21\x22\x22\x0a\xcb\ \x11\x27\x02\x85\xc2\xa1\x74\x1c\xc7\x19\xef\xbd\x5f\xdf\xf7\xdb\ \xd8\x28\x5d\x38\x33\xfc\xdf\x77\xce\xf9\xcf\xff\x32\xb0\xee\x3b\ \x74\x6b\xa8\x67\x39\x08\x2f\x85\x21\xb9\xc5\x9a\x69\x1a\x4b\x96\ \x32\x7b\x5f\x77\x1e\x6f\x2d\xe5\x12\xd1\xbf\xc1\x91\xae\x44\x53\ \x63\xc7\x20\xf5\x8d\xa6\xe8\xf7\x02\xad\xf9\x64\x2c\x75\xe9\x0b\ \xaf\xd4\xc0\x58\x11\xc7\x9b\x78\x96\xc4\xe3\x2b\x87\xa1\x1c\x07\ \xef\x66\x96\x90\x5e\xf4\x57\xcd\x37\x96\x29\x34\x6c\xf1\x10\xe4\ \xf3\xb8\xf8\x60\x14\x9c\xae\xf9\x65\xc7\xb1\x61\x31\x30\x85\x90\ \x2b\x04\x89\x47\x2c\x9e\x23\x1b\x23\xa9\x2c\x72\xcb\x21\x2a\xdc\ \x08\x2a\xbd\x08\xa2\x8e\xc2\x62\x21\xd4\x75\xe9\x0b\x4f\xf8\xab\ \xcb\x93\x35\xb7\x1c\xdd\x05\xd7\x73\x30\x3e\x9b\x43\x99\x6d\x20\ \xea\x29\xc4\xc7\x3e\xa3\xab\x37\x8e\xca\x72\x0b\x51\x57\xe9\xfa\ \x17\xee\x0b\x4f\xf8\xa2\xd3\x06\x7e\x10\x5c\x3e\xb1\xbf\x1e\xe3\ \xe9\x65\x38\xca\x80\x13\x31\xe1\x5a\x0a\x1f\x92\xd3\xe8\x3c\xd7\ \x80\xf6\xfb\x83\xa8\xf0\x2c\x36\x50\xdc\x33\x34\x4f\xf8\xa2\xd3\ \x06\x41\x08\xa7\xb6\xdc\x40\x3e\x08\xe0\x58\x86\x86\x6b\x9b\x50\ \x86\x81\x3b\xc3\x53\x38\xdf\xbc\x17\xd7\xee\x0d\xe8\x24\x62\x92\ \x67\x81\xf0\x45\xa7\x0d\xe4\x27\x60\xd8\x4a\x31\x4c\x0d\x57\xe9\ \x32\x6a\x37\x55\x61\x64\x2a\x8b\xcd\xdb\xeb\xd1\xd2\xdd\x0f\x8f\ \x93\x39\xdc\x0b\x4a\x8e\x52\x33\xe5\x34\x5d\x99\x9d\x23\xda\x1a\ \x40\xc8\x3b\x1c\xab\xae\xc2\xee\xba\x1a\xfc\x98\x4c\xe1\xd9\xcd\ \x33\xe0\x39\x74\x42\x2a\x35\xe0\x65\x17\x66\x32\xc4\xbb\xae\x60\ \xb1\x58\xa0\xd8\xc0\xe7\x8c\x3b\xb7\xc6\x90\x18\x1e\xc3\xf3\xce\ \x53\xf0\x43\x82\x04\x13\x9e\xf0\x45\xb7\xb2\x07\xd9\x74\xff\xd0\ \xfb\x6f\xa8\x89\xf2\xda\x2d\x13\x96\xc9\x06\xdc\x38\xb8\x6f\x1b\ \x9e\x3c\x8d\xa3\xff\xf6\x69\xf8\xbe\x9c\x37\xe9\x84\xc2\x13\xbe\ \xe8\x8a\x29\xea\x1a\x6f\x0c\xd0\xc7\x9f\x4b\x34\x9d\x27\x9a\xc8\ \x10\x25\xf9\xe6\xa5\x72\x44\x9f\x7e\xf9\x34\x99\x25\xfa\x9a\x59\ \x81\xf4\x85\x27\x7c\xd1\x15\x2f\xd2\xf7\xcc\xc4\x9b\xab\x6d\x0f\ \x47\x31\x3b\x97\x47\x75\xb9\xac\x93\xa3\xf1\x1d\xdd\xc0\x71\xf9\ \x54\xe1\xd9\x7c\x1b\xb9\x2e\x7d\xe1\x09\x5f\x74\xa5\xef\xa2\x62\ \xcf\xd9\xf6\x56\x71\xee\x79\x35\x45\xc9\xf9\x80\xe6\xe4\x0d\x30\ \xe4\x5f\xc6\x52\x97\xbe\xf0\x84\xbf\xe6\x2d\x14\x4d\x18\x3b\x0e\ \xb4\xf5\x5d\x8f\x44\x63\x27\x79\xcf\x6c\xc9\x29\x04\x4e\x53\xf0\ \x17\xd2\x2f\xde\xde\xbd\xd0\xcd\xc3\x24\x63\xfe\x7f\x06\xab\x7b\ \xc2\x88\x15\x8f\xf8\xef\x17\x32\xd2\xeb\x63\x8b\xc1\x1f\x01\x06\ \x00\x0c\x16\x4c\xfa\x3c\x00\x31\xd7\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x0c\x55\xaf\ \x47\ \x49\x46\x38\x39\x61\xf0\x00\xf0\x00\xe7\x00\x00\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\ \x8c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5d\xc7\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\x94\xb3\xff\ \xff\xff\xff\xff\xff\x0f\x27\x1a\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x56\xa8\xe4\x13\x28\xa8\x0f\x27\x6a\x99\xa8\x5b\x08\ \x68\x9b\xd7\xc9\xe8\xd5\x08\x09\x8b\x69\xa9\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf5\x95\xb6\xff\xff\xff\xff\xff\xff\ \xf8\xaf\xba\x4d\x68\xf8\x12\x29\xe0\x9b\xf2\xfc\xff\xff\xff\xff\ \xff\xff\x33\x66\x1d\xd9\xe8\xf7\x1f\x86\xb9\xff\xff\xff\xff\xff\ \xff\x2f\x48\xeb\xfa\xc8\xe8\xff\xff\xff\xff\xff\xff\x7c\xa4\x53\ \x7d\x88\xac\x97\xc9\xfb\x79\x88\x3a\x94\x68\xf9\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf9\xe9\xef\xff\xff\xff\x8e\x25\x84\xd9\x91\ \xf3\x32\x8a\xbf\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb7\xb3\xf3\ \xf7\xb2\xf1\xff\xff\xff\xfb\x8e\x5f\x6a\x6a\x21\xff\xff\xff\xff\ \xff\xff\x6e\x68\xe9\xb7\xc9\xf2\x2a\x2b\x1c\xef\x68\xa7\xff\xff\ \xff\x11\x38\x66\x96\x25\x30\x98\x93\x82\x74\x89\xf7\x4f\x29\x25\ \x96\x94\xf5\xee\x48\x3b\xff\xff\xff\xff\xff\xff\x38\x56\xf6\xff\ \xff\xff\xff\xff\xff\x97\xb1\xf8\xff\xff\xff\xfb\xcf\xab\x09\x18\ \x62\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd6\xd9\xef\xba\x8e\xf3\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfd\xfa\xff\xff\xff\x5b\ \xb8\xeb\xda\xae\xf8\xff\xff\xff\x7d\x96\x45\xff\xff\xff\xff\xff\ \xff\xb3\x68\xeb\xb7\xd8\xfa\xff\xff\xff\x7a\xe8\xfc\xff\xff\xff\ \xb1\x6a\xa1\xfa\xd8\xed\x6f\x78\x28\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x4c\x28\xe0\xff\xff\xff\xc4\xe3\ \x97\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\x31\x2e\xb5\x52\x2b\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6f\ \x56\xea\xff\xff\xff\xff\xff\xff\xff\xff\xff\x3c\x1e\xe4\xff\xff\ \xff\xe9\x55\x98\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7c\x22\xb4\ \x72\x0e\x51\xb9\xf3\xfc\xaf\x30\x5c\x79\xcb\xfa\x37\x68\x67\xb4\ \x26\x84\xff\xff\xff\xff\xff\xff\x59\x92\xea\xff\xff\xff\x78\xb4\ \xf8\xff\xff\xff\xff\xff\xff\x35\x4e\x1a\xfa\xeb\xb5\xfa\xae\x88\ \xff\xff\xff\xff\xff\xff\x84\xbc\x84\x9b\xad\x7a\xff\xff\xff\xf7\ \x93\x8e\xff\xff\xff\xf4\x79\x5c\xff\xff\xff\xd2\x38\x2f\xff\xff\ \xff\xff\xff\xff\xd8\xd7\xa8\xff\xff\xff\x99\xd8\xfc\xff\xff\xff\ \xb8\xb7\x7b\x7f\xfb\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4e\ \x59\x9f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x19\x35\ \xa8\x12\x78\xa8\xff\xff\xff\xd1\x78\x99\xff\xff\xff\x58\x76\xfa\ \x19\x37\xe0\xff\xff\xff\xd9\xfb\xfc\x2b\x38\x67\xff\xff\xff\x92\ \x78\xf2\xff\xff\xff\xff\xff\xff\x47\x5a\xf6\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xef\x7a\xa3\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x09\x1a\xdd\x33\x57\x62\x71\x79\x9e\xff\ \xff\xff\x27\x7a\xb4\xb1\x78\xf6\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x72\x59\xa9\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x96\ \x98\x53\xdc\x97\x94\x98\x97\xb7\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7b\x97\xaf\x37\x97\xc5\xff\xff\xff\ \xff\xff\xff\x7d\x97\xfa\x91\x5a\xf8\xff\x00\x00\x21\xff\x0b\x4e\ \x45\x54\x53\x43\x41\x50\x45\x32\x2e\x30\x03\x01\x00\x00\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\ \xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\xa8\x70\x84\xa2\x8b\x16\x47\ \x50\xdc\xc8\xb1\xa3\xc7\x8f\x20\x43\x8a\x64\xa8\xa8\x4b\xc9\x2e\ \xb1\x86\x0c\x79\xf3\x06\x87\xc6\x91\x30\x63\xca\x9c\x49\x73\x66\ \x97\x59\x97\x6e\xe2\x60\xc9\xb3\xe7\x90\x2e\x2f\x6b\x0a\x1d\x4a\ \xb4\xe8\x48\x45\xb3\xb0\x25\x9d\xd5\xb3\xa9\xd3\x37\x2c\x82\x1a\ \x9d\x4a\xb5\xea\x54\x45\xb1\x52\xac\x4a\x11\x8b\xc5\xd3\xaf\x4e\ \xcb\x48\xb5\x4a\xb6\xac\xd9\x89\xb3\x58\xe0\x60\x51\x66\x27\xd8\ \xb7\x4f\x71\xd4\x3a\x4b\xb7\xae\x5d\x81\x2c\xfa\xe8\xed\xb3\x12\ \xae\xdf\xaf\x7d\xba\xdc\x1d\x4c\x78\xa4\x45\x45\x87\xfb\xfe\x5d\ \xbc\x98\x85\xa2\xc2\x90\x23\x3f\xbc\x68\xb2\xcb\xa5\x37\x7d\x15\ \x33\xde\x0c\x37\xd6\x58\xc9\xa0\x09\x2b\xca\x39\xcb\xf2\x2a\xce\ \xa8\x53\xbf\xf1\x1c\xba\x75\xdd\xa5\x4a\xcb\xa8\x9e\xad\x3a\xaa\ \xeb\xdb\x46\x47\xc4\x32\xc0\x3b\x85\x66\xda\xc0\x39\xb3\x98\x8b\ \xbb\x38\xcc\x5a\xe9\x48\x64\x21\x31\x2f\x1f\x29\x52\xf9\xc6\x4c\ \x51\x33\x63\xc6\xef\xe0\xd8\xbf\xaa\x11\x6c\xbc\x3b\x45\x4e\x66\ \xc2\xfe\x8b\xbf\x72\xe3\x9b\xb1\x0f\x66\x3e\x5c\xf9\xf6\x4d\x1c\ \x0f\x70\xd1\x3b\x5d\xcf\x4e\x1f\xf3\xac\xcf\xde\xf3\x8f\xd8\xbf\ \x1f\xbc\xf8\xff\x00\x06\xa8\xde\x15\x04\x5e\x01\x0a\x38\xa6\xa8\ \xe1\x4c\x7d\x0c\xb2\x74\x5f\x7e\xdd\x65\xc4\xdf\x08\x01\x56\x88\ \x5e\x85\xff\x7d\xa0\x61\x81\xec\x81\x23\xdd\x7c\x0d\xaa\x86\x0d\ \x7e\x10\x8a\x66\x59\x17\x5d\x60\x11\xcc\x85\x18\x06\xe8\x01\x8b\ \x2d\x86\xa7\xde\x80\x21\x04\x73\xa0\x29\x53\x84\x88\x9d\x3c\x24\ \x96\x68\x56\x17\x4a\x29\xe5\xd5\x1b\x78\x80\x83\xde\x04\x48\x4e\ \x10\xe3\x92\x00\xc2\x18\xde\x7a\xdf\x10\xf8\x0d\x38\x3d\xa8\x01\ \xa2\x8e\x7f\x39\xe6\xe3\x59\xb3\x70\x95\x55\x4a\x4e\x4d\x01\xca\ \x07\x49\x96\x89\x24\x80\x67\x32\x29\xa3\x86\xe1\x29\x99\xde\x8c\ \xea\x3d\x13\x0c\x0f\x55\xce\x80\x25\x6a\x22\x3c\xb6\x65\x6e\x2c\ \xf4\x59\x06\x0b\x57\x62\x36\xc6\x8a\x66\x98\x59\xa6\x9a\x2d\x6a\ \xe8\xe4\x7f\xc6\x5c\xa1\xe1\x37\x52\xf0\xc0\xc3\x18\xd4\x05\x7a\ \x67\x4f\x40\xed\x49\x53\x17\x7b\x95\xd1\xc7\x66\x63\x7c\x53\xa8\ \xa1\x66\x22\x8a\xa1\xa3\x8b\xa6\x77\x9e\xaa\xdf\x3c\x23\x27\x38\ \xfe\x93\xda\x79\x29\x5c\x97\xf4\xa8\x69\x43\x19\x21\x36\x1a\x2f\ \x22\xf0\xa5\xda\x10\x53\x04\x33\x2a\xa9\x69\x9a\x5a\x21\xaa\x8a\ \x8a\x67\xcc\x33\xe7\x79\x20\x67\x30\x8d\x46\xf9\xc1\x33\xe0\xe4\ \x38\x2b\x58\x0f\xde\x3a\xd9\x45\x17\x01\x8a\x19\x66\xb8\xc8\xc1\ \xab\x08\x22\xe0\x62\x25\x63\x6a\xcc\x13\x0c\xb1\xc4\x1a\xdb\xe4\ \xa2\x57\x30\xfb\xcc\x07\xcb\x1a\x63\x5e\xab\x17\x1a\x98\x0f\x1e\ \x96\xea\x98\x8c\xad\xb7\x8e\x80\x62\x4e\x5d\xac\x34\x04\x0e\xb8\ \xf8\xca\xd2\x10\x7d\xf0\xb2\x44\x16\xcb\x3d\xc1\x9c\x08\x96\x02\ \x6b\x24\xbb\x6e\x96\xea\x2e\x93\xf4\xb2\xa9\xe1\xb2\xcc\x8a\x87\ \x9e\x81\x4b\x4c\x31\x45\xbf\xf5\xc9\xa3\xa7\xb6\xff\x20\x35\xcb\ \x2c\x55\x24\xa5\x92\x2a\x3e\xf5\x21\x42\x19\xe7\x62\x36\x04\xb9\ \xf2\x64\xf1\xc4\x16\x5b\x3c\xf3\xc4\x3c\x57\xce\xa0\xee\xb0\xec\ \x22\x6d\xe8\xc6\x88\xd2\xeb\x68\x80\x13\xb0\xf7\xcd\x3c\x27\x5f\ \xfb\xc6\x12\x2b\xfb\xd8\x85\x97\x5d\x2d\xcc\xb0\x2a\x06\x97\x41\ \xf1\xc2\x7d\xe0\x72\xb3\xc1\x0c\x9b\xbd\x04\x09\xcf\x28\xb9\x05\ \xac\x4b\xa8\xd1\x14\xb0\xf3\xcc\xab\x34\xc6\x78\x33\x1d\x23\xfe\ \x7a\xa9\xfe\x47\xc5\x9c\x63\xdf\x39\xc5\x13\xfb\xe5\xd7\x55\x9f\ \x79\x81\x05\x36\x4b\x65\xf0\x22\x4f\xe0\x3b\xb3\x60\xa5\x4a\xbd\ \xaa\xd1\x30\x09\x54\xb8\x1d\x4c\x30\xe9\xcc\x93\xf3\x1b\xc1\x3e\ \x73\x37\xde\x49\xbb\xa9\xf7\xc6\xc5\x9a\x91\x4e\x16\x22\xe8\x68\ \xb4\xa8\x9c\x00\x7c\x57\xa7\x7a\xa5\x36\x04\x0b\x59\xc8\xc3\x57\ \xda\xbc\xe0\xa0\x52\xda\xe4\xca\x01\xce\x16\x13\xbc\x4d\x02\x38\ \x9c\x53\xbd\x92\x08\xe0\x8c\x4e\xfa\x99\x1a\xff\x67\x3a\xd4\xd3\ \xab\x49\xa0\xab\x7d\x87\xb7\x45\x3a\x72\x34\x38\x44\x3f\xdf\x20\ \x19\xfb\x5d\xb9\x0a\xac\x33\xca\x8b\x81\xad\x3e\x2e\x2c\x8c\xdb\ \x2b\xc3\x22\xf0\xfa\x0a\x1f\xc1\x6c\xcf\xc3\x3c\xbc\xf0\x90\x0e\ \x38\xf3\x8c\x31\x0f\x38\xa2\x73\xde\xf3\x92\x54\xa1\x43\x31\xcd\ \x03\x2f\x92\xd1\xab\x90\xd7\xaa\x2b\x14\xb0\x78\x59\xf8\x54\x76\ \x5e\x97\xa4\xf1\x95\x85\x5b\x17\x01\x53\x53\x54\xa1\x0a\x85\x39\ \x05\x7d\x73\xdb\x59\xee\xe2\x27\x0f\x73\xa9\x22\x7e\x72\x98\xc7\ \x2b\x96\x03\xb1\x79\xcc\xe3\x7e\x2f\x4c\x87\xe8\x06\xf8\xbc\x36\ \x91\x2a\x46\xa9\x03\xd0\x8b\x8c\xc1\x43\x7b\x05\x43\x1c\xfe\x9b\ \x6b\xc1\xe6\x8c\x21\x1e\x2a\x6c\xa1\x4d\x85\x22\x01\x2e\x40\x08\ \x16\x35\x80\x83\x0a\xc3\xa2\x82\xec\x8e\x52\x8b\x2a\x56\x51\x1e\ \x34\x7b\xcb\x10\x78\x91\x85\x55\xcc\x67\x08\x59\xe4\xcc\x10\x70\ \x21\x8f\x57\xc8\x43\x85\x72\x30\x5b\xb8\x78\x21\x07\x39\x2c\xe1\ \x61\xe3\x70\xa1\x1c\xd9\x36\x2c\x01\xd2\xd0\x8e\x39\x44\x62\x8c\ \x9c\x65\x1e\x68\x7d\x63\x73\x07\x3a\x02\x38\xa4\xa5\xa1\x67\x18\ \x71\x54\x5b\x20\x41\xe0\x54\xe3\x44\x52\x4d\x91\x23\x23\xa8\xc5\ \x22\x6a\x81\x85\x5a\xf8\xc1\x07\x3e\xa0\x43\x3c\x40\xc0\x0b\x43\ \xc0\x65\x08\x7f\x92\x15\x63\x56\xb2\xb8\xaf\xec\x8c\x84\x59\xe0\ \x95\xd9\xc8\xc5\xab\x25\x9c\xd1\x85\x4b\x58\xc3\x3c\x64\x68\x43\ \x1a\xda\x92\x80\xd1\x73\xd7\x8b\xe4\x24\xa7\x3f\x6e\x6e\x73\xad\ \xc2\x9e\xab\x8e\x58\xa8\xb7\x59\x0b\x35\xc0\x7a\xc2\xe8\x1e\x09\ \x91\x11\x2c\xe2\x99\xcf\xf4\xc1\x13\xfc\xe0\x87\x69\x5e\x92\x0e\ \xd8\xe4\xa4\x75\xb4\xf8\x2b\xf5\x81\x85\x61\x6a\x88\x9f\x2b\xcb\ \xd5\xca\x57\xc2\x52\x04\x4b\x00\x60\x2d\x6f\xc9\xce\xa5\x9d\xce\ \x18\xd0\xea\x65\x30\xee\x05\x32\x33\xb8\xea\x19\x40\xfe\x0b\x0f\ \x15\x48\x20\x4a\xc6\x50\x30\x4d\x4a\x52\x12\x16\x44\xb2\x88\x27\ \x18\xd4\x07\xf1\x88\x87\x0f\xaa\xf9\x04\x19\x50\xf3\x92\xd4\xc4\ \xe4\x0e\x78\x81\x8b\x7e\xd2\x07\x8c\x15\x5b\xe5\x2a\xdb\xe7\xc2\ \xf7\x30\x67\x1e\x4b\x38\x1a\x1e\xdb\x59\xc3\xea\x49\x8f\x80\x18\ \x8a\xd3\x15\x96\xb5\xd2\x95\xde\xf3\x9e\xf6\x74\x15\x14\xb7\xc0\ \x0b\x26\xce\x20\x0b\xe1\x83\x9e\xf4\x38\x21\x92\x11\x3c\xd4\x9a\ \x06\x35\x28\x44\xa7\x29\x83\x54\x4c\x93\x0e\xaf\x78\x05\x2e\x70\ \xb1\x18\x30\x2e\xec\x5b\x7f\xe1\xe0\x07\x19\x56\x06\x35\x8a\x33\ \x0b\x3c\x50\x8e\x0b\xa3\x11\x8c\x00\x92\x74\x80\x23\x45\xd3\x0d\ \xf7\x36\xad\x79\x3d\x23\x5e\x2f\x0d\x60\xd0\x3e\x40\x05\x57\xf1\ \xa0\x75\x7f\x51\x03\x0f\x52\x11\xd0\x42\xb1\x48\x7c\x3d\xa5\x03\ \x26\x19\x6a\xcd\x4c\x82\x00\x04\x3b\xf0\x43\x51\x53\xe1\xd0\x85\ \xfa\x40\xa9\x09\x5b\x22\xd8\x30\xfa\x06\xb0\xe1\x82\x17\x90\xad\ \x2a\x45\x6b\x3a\xc6\x3e\x84\xd1\x29\x97\xe5\x09\x18\xc9\x25\x36\ \x11\xc8\xc1\x9c\x4b\x48\x61\xf3\xd6\xf9\xd5\x52\x99\xb6\x5d\xd3\ \xbb\xa1\x49\x53\xfa\x8c\x04\xae\x49\x40\xa3\x02\xfe\x07\x5c\xdf\ \x22\x82\x27\x04\xd4\x90\x13\xb8\x42\xb1\x8a\xc7\x4c\x86\x8c\x40\ \xaf\x0b\xf5\x03\x36\x81\xcb\x49\x43\x18\x82\x17\x20\xf0\xc1\x60\ \x9f\x60\x54\x3f\x64\x21\xa1\x49\xa5\xe8\x63\x27\x0b\x82\x78\x30\ \xd4\x07\x06\x48\xa8\x3c\x20\x9b\x50\xca\x36\x55\x15\x0e\xe3\x85\ \x5e\x44\x00\x52\x79\x2c\x41\x04\x56\x5a\xc2\x0c\x49\x47\x5a\x5b\ \x8e\x34\x75\x01\x35\xa0\xa9\xb2\x27\x3d\x33\x50\x61\x6a\x8b\x74\ \xca\x4d\x93\xf4\x0d\x50\xb4\x8d\x40\xa9\xed\xed\x42\x7c\xda\xd0\ \x27\x20\x14\xb0\x0b\xdd\x01\x08\x0c\x81\x0b\x55\x38\x03\x17\x20\ \x60\x68\x51\x65\x10\x54\xe7\x6e\x32\x0b\xd5\xcd\xc2\x42\xa7\x39\ \x4d\xc3\x26\x54\x9a\x06\xe5\x03\x45\x4b\x09\x97\x86\xe5\x6e\x0a\ \x62\x63\xe3\x2b\xce\x3b\x04\xa3\x9d\x74\xac\xe9\x48\x87\xa8\x4a\ \x5b\x43\xf1\xd4\x75\xb5\x62\xcd\x63\xa2\x0a\x65\x86\x54\x4c\xe9\ \x98\x9a\x9d\x81\x08\x5e\x01\x0a\x25\xa5\xc2\x46\x1c\x22\x90\x8d\ \x05\x5c\x91\x6a\x36\x97\x93\x20\xa0\x03\x35\x8b\xcb\x13\xf0\xbe\ \x02\x93\xcc\x4d\x85\x51\x0d\xfc\x61\x1f\x3c\x37\x1e\x1c\xe6\xab\ \x1f\x12\x3a\xcd\x82\x1e\x34\x0b\x4b\x55\xc5\xfe\x12\x15\x37\x0f\ \x88\xbd\x91\x5c\x9e\x8d\x5b\xba\x84\x65\xba\x1b\x7e\x60\x1e\xd5\ \x59\x02\x9d\x69\x9c\x37\x1b\xf3\xb8\x7a\x18\x6b\xda\x85\xe2\xcb\ \x4f\x9e\xcc\xe0\x61\xc1\x48\x85\xab\x8e\x0c\x0e\x50\x38\x5a\x6a\ \x51\x5a\x72\x48\x46\x20\x4d\x0a\xfb\x80\x93\xbc\xd0\xab\x70\x27\ \x6a\x88\x30\x82\x37\xc2\x41\x4d\xc5\x25\x35\x9c\xd0\x78\xf0\xc2\ \xba\xa1\xde\x42\x2a\x10\x1a\x5c\xc3\x5a\x33\x1e\x59\x88\x2e\x89\ \x6b\x16\xbf\xdc\x2d\x01\x07\xe1\x0c\xa7\x9e\x79\xfc\x62\x02\x82\ \x43\x56\x43\x68\x1e\x9f\x03\x5d\xe7\x16\xb1\x77\x49\xc9\x2a\x13\ \x15\xa8\x26\x82\x29\xe0\x34\xbe\x85\x72\x74\xa3\x41\xd1\xdf\x10\ \x44\x29\xbe\x3c\x05\x49\x24\x1b\x7a\xc9\xbf\x46\x59\xaf\x9a\xe4\ \x64\x9a\x79\x92\x69\x4c\xa2\x1a\xa1\x0a\xc5\xf0\x5f\x15\x5a\xcd\ \xcc\x51\x81\xcb\xec\xbe\x24\xac\xab\x49\x4d\x03\xa7\xb2\xa2\x53\ \x25\x6f\x16\xe6\xb1\xbb\x21\xa4\xab\x6d\x80\x46\xe9\x33\xb4\xa0\ \x98\x79\xbc\xf7\xab\x2f\xce\x71\x69\xa9\x77\xa6\x67\xa9\xd3\xb4\ \x04\x4a\x85\x94\x00\x5c\xa6\x6c\x6b\x9b\x9a\x85\xd5\xa4\xa6\x85\ \xfb\x57\xbd\x2a\xb5\xb1\xc8\x65\x75\x35\xfe\xd1\x9d\xd0\xea\x6a\ \xf2\xc3\x59\xe6\x32\x26\x57\x5e\x6a\x0d\x3f\x14\x93\x74\xa0\xe8\ \x75\x86\x10\x52\xcf\xad\xe4\xd0\xc2\x86\xaf\x19\x82\x41\xb5\x31\ \x48\xa1\x1f\xa2\x34\xf8\xb0\x93\x66\xe3\xa1\x13\x7d\x9d\x85\x7a\ \x46\xab\x54\x1b\x5f\xdd\x1a\x4a\x8a\x21\xb1\xa4\x60\x81\x6a\xd4\ \x2d\x6f\x12\xc4\x3e\x80\x2c\x2f\xae\x1c\x54\x2e\xef\x20\x1e\x3b\ \x78\x05\x71\x93\x1a\xef\x4c\x62\x33\x93\xe6\x4e\xe8\x73\xbd\xec\ \x07\x50\x3c\x01\x14\x48\x55\x83\xb9\x32\x33\x64\xf4\xfa\x9b\x79\ \x47\x5a\xda\x33\x80\x3d\x85\x7e\xc8\x4d\x50\x64\x32\x3a\x2e\xd1\ \x74\xf0\x85\x6b\xec\x1b\x32\x1e\x15\x12\x73\x3b\x52\x26\x27\x44\ \x11\x0b\x95\xc1\x60\xb5\x4c\x85\xca\xaf\xfa\xd4\xcc\x3d\x33\xa8\ \xa9\xa0\xe5\x31\x63\x33\x1e\xaf\x48\x2e\x1d\xa0\xfc\x6d\x98\xef\ \x60\xb8\x1b\x67\xf5\x5e\x41\x31\x61\x0a\x83\xc3\x07\x4b\x98\x81\ \xdc\xc7\x80\x5e\xea\x88\x80\x07\x01\xac\xa3\x78\xa4\xa0\x18\x35\ \x8c\x01\x0f\x3c\x19\x03\xc0\xdd\x0b\x6d\x9d\xe6\x52\xf0\x79\x33\ \x20\xb5\xd6\xfb\x9f\x2b\x40\x91\x74\x8e\x47\x88\x4f\x27\x5f\xf9\ \x09\x70\xde\xfa\x4f\x28\xb5\x41\xb7\xfe\x5c\x6f\xcb\xf3\x35\xe6\ \x62\xdf\x24\x72\xb1\x79\xfa\x1d\x98\x5f\xaf\xa7\x0f\xee\x35\xe9\ \xf0\x7a\xc1\xd2\x35\x49\xef\xc6\x2a\xdc\xac\xe4\x7b\x61\xe9\xfe\ \x97\x03\x17\xe5\x0c\xa6\xc3\x93\x60\x09\xf0\xcf\x28\x05\x80\x81\ \x56\x74\x46\x27\x80\x87\x62\x40\x13\xe0\x2a\x8a\x67\x5f\x67\x35\ \x40\xd1\x77\x10\x23\xc0\x5c\x95\xc7\x79\x9c\xa7\x65\x5b\xc0\x79\ \x24\x07\x66\x5d\xc7\x57\x12\xb8\x6a\x64\xb7\x49\xdf\x46\x7e\x7f\ \x65\x7e\x66\x27\x65\xa0\x70\x4d\x3b\xe0\x03\x27\x38\x58\xca\x66\ \x48\x3e\xc6\x3f\x53\x10\x52\x7b\xa6\x24\x77\xc6\x17\x22\x30\x06\ \x7e\xd7\x13\x33\x00\x7c\x98\xa1\x5e\xff\x67\x7c\x19\x13\x5f\x03\ \x58\x78\x77\xa4\x70\xbc\xf6\x1f\x76\x23\x1e\x0d\xf8\x5e\x0f\x08\ \x81\x74\xa5\x65\x14\xd6\x5c\x5d\x87\x50\xdc\x65\x5d\x97\x64\x6e\ \xd2\x94\x0a\x9c\x97\x7d\xa5\x16\x0f\x27\xe7\x85\x9c\x14\x7a\x52\ \x46\x07\xe9\x77\x76\xfa\xb0\x50\xac\x37\x58\x32\x80\x24\x9c\xa7\ \x5b\x4a\xa7\x74\xe0\x10\x87\xeb\xa5\x24\xc1\x30\x5b\x7d\xc7\x83\ \x98\x81\x07\x4b\x80\x07\xd5\x31\x06\x37\x50\x47\x4b\x73\x80\xa7\ \xd5\x2e\x04\x58\x80\x05\x84\x84\xfe\x2c\xe2\x2a\x0e\x34\x23\x42\ \xc8\x74\x13\x60\x41\x1f\x81\x05\x50\x28\x54\xf2\x86\x6a\xd3\xd4\ \x5d\xab\xe0\x38\x5d\xb8\x5d\x96\xd8\x61\xaa\x87\x6e\xa3\x87\x5c\ \xa7\x37\x5c\xa3\xa8\x69\x69\x38\x61\x84\xe5\x63\x8e\xa6\x68\xec\ \x61\x48\xf7\x04\x45\x8c\x02\x57\xfb\xd7\x0f\xbf\x77\x73\x3d\xd0\ \x0f\x5a\xd0\x0f\x4b\x30\x28\x80\x88\x4b\xd0\xf3\x8b\x8d\x78\x74\ \x44\x08\x56\x7b\xe3\x28\x13\xa0\x1e\x52\x33\x20\x4a\x33\x3a\x88\ \xd4\x84\x05\x51\x0b\x94\x08\x5c\x19\x48\x6f\x54\xa8\x75\xa5\xe6\ \x38\x98\xc6\x0b\xf5\x06\x51\xd4\xa4\x50\x07\xa6\x69\x3e\xa0\x60\ \x65\xa8\x82\x82\x55\x54\x13\x40\x58\x92\xf7\x04\x8d\xf6\x0d\x47\ \xe6\x5f\x30\x62\x3a\x1e\x20\x05\xbf\x57\x1d\x53\x80\x83\x94\xe2\ \x0c\xbe\xd7\x0f\xcb\xa0\x05\xd2\xc1\x05\xcc\x87\x47\x06\xd8\x67\ \x85\x88\x7c\x02\x62\x3a\xeb\x01\x4c\x85\xb8\x78\x49\x72\x05\x32\ \xe0\x40\xf6\xe5\x8c\x04\x01\x8d\x19\xb7\x72\x24\x07\x62\x97\x38\ \x5d\xd9\x55\x5d\xa6\x56\x06\x6a\x76\x6a\x1c\x28\x54\x08\x25\x65\ \x19\x07\x02\xae\x60\x7e\xe9\x27\x79\x5a\x86\x24\x5a\xc6\x1e\x4f\ \x90\x68\xc1\xd0\x92\x5d\x95\xfe\x77\xe1\x71\x03\x5a\x50\x32\x63\ \xb0\x87\x2d\x56\x8f\xbf\xe7\x0c\x2d\xa6\x06\x31\xc8\x2f\x6a\x20\ \x05\x0b\x18\x90\xbb\xe5\x5e\x0f\x24\x78\xcd\x07\x23\x1f\xd0\x1e\ \xc1\xe0\x40\x1a\x73\x8c\x14\x47\x58\xa0\x90\x0a\x85\x02\x75\x20\ \x01\x8d\x94\x58\x60\x1d\xa6\x57\xdb\x97\x7d\x55\xd8\x85\x23\xf6\ \x58\xd5\x25\x66\x95\xb8\x57\x28\x98\x54\x49\x95\x82\xee\xf7\x7e\ \x5a\xa6\x65\x6e\xf7\x68\x52\xe3\x90\xe1\x11\x0c\x63\x20\x2b\x3b\ \xd8\x17\x3e\xa9\x20\x3a\x68\x97\x5c\xa0\x7b\x44\x19\x84\x45\x68\ \x6c\x48\x29\x23\x19\x72\x05\xf3\xe4\x94\x08\xe8\x74\x00\xc6\x1e\ \x54\x89\x24\x10\x49\x10\x05\xf5\x50\x45\xb5\x85\x63\x16\x5c\x97\ \x68\x8d\xf1\x90\x5d\x06\x30\x59\xa7\xf6\x61\xde\x88\x6e\x1a\x09\ \x76\x22\x98\x96\xa7\xd7\x7e\x53\x99\x24\x4f\x78\x20\xd4\x06\x97\ \x4f\xb3\x73\x63\xd0\x03\x53\x50\x1d\xd5\xe1\x0c\xd5\x81\x07\xd3\ \x21\x7b\x6a\xa0\x06\x78\x90\x97\xb2\x97\x73\x45\x19\x3d\xc1\x38\ \x84\x4c\x62\x88\x4d\xb2\x1e\x44\xb4\x8c\xcf\xf3\x98\x03\xb1\x08\ \xdc\x38\x79\x32\x90\x81\x0b\x15\x0f\x25\x94\x89\xd7\xa8\x89\x56\ \x88\x6e\xf2\x70\x8d\xa4\xfe\xa7\x50\xd0\x95\x5c\x2f\x07\x0a\xca\ \xa5\x85\x6d\x49\x58\x6d\xc7\x1e\x07\x72\x98\x32\xb2\x8f\x5a\xd0\ \x02\x3c\xc0\x05\x63\x70\x93\x38\x98\x8b\xb8\x48\x0a\xe0\xb0\x0c\ \x52\x10\x0c\xd4\xc0\x03\xb8\x48\x44\x4f\xa9\x78\xa9\x65\x94\x16\ \xb2\x28\xc4\xd9\x7c\x4a\x76\x5a\x76\x04\x89\x1e\xb1\x08\x30\xe7\ \x64\x5b\x76\x60\x9d\xd9\x8d\xbc\x50\x55\xab\xb0\x0a\x99\x59\x5d\ \x1b\xf8\x65\x25\xa7\x75\x1e\x79\x50\x0a\x35\x58\x8e\xf6\x76\x6f\ \xe7\x07\xe0\xd0\x76\xea\xf8\x04\xec\xd8\x5f\xe0\x70\x04\x4d\x29\ \x32\xab\x62\x06\x1e\x60\x0c\xd4\xd0\x02\x37\x60\x0c\x2f\xca\x26\ \x2e\x92\x77\x08\x88\x21\x37\x56\x63\x01\x02\x4f\xcf\x70\x03\xb9\ \x37\x90\x08\xd7\xa3\xdf\x70\x57\xc0\xc8\x2e\x08\xda\x11\x58\x10\ \x51\x95\xb6\x65\x5c\x06\x02\xd9\x19\x0f\x05\xe5\x03\x25\xa4\x66\ \xd4\x59\x50\x40\x63\x50\x60\xa9\xa1\xaf\x00\x66\x5a\x16\x54\x99\ \xf3\xa5\x6e\xa7\x8e\xf1\x90\x0f\x10\x93\x05\xf9\xb0\x8e\xe6\x79\ \x56\x36\x84\x28\x39\x2a\x84\x48\x73\x84\x62\x45\x5a\x77\x23\xa7\ \x8c\xf2\x2c\xcb\x22\xa0\x7c\x16\x20\x07\xe9\x90\xb6\x94\xa4\x1c\ \x21\x89\x46\x45\x61\xfe\x96\xf7\xa5\x63\x26\x7e\x1a\x18\x0f\xab\ \xc0\x41\xaa\x50\x55\xf1\x70\x81\x46\xc4\xa1\xa6\xb6\x0a\xb8\xd0\ \x38\x5c\xb4\x7d\x55\xe7\x6e\x0e\x25\xa2\xc2\xd5\x66\xb1\x86\x3f\ \x58\xe5\x68\x4d\x29\x97\x63\xc5\x70\x47\x0a\x68\xc3\x29\xa4\xfe\ \xc9\x24\x3c\x24\x27\xcb\xb2\x39\x0a\xd8\x5e\xec\x24\x32\x32\x62\ \x0c\xa0\x30\x83\x03\xb4\x05\xca\xf9\x0f\x23\xc0\x09\xe7\xf8\x04\ \x13\x68\x44\x46\x64\x54\xda\x45\x46\x09\x45\xa9\x55\xd6\x38\x3f\ \x03\x34\x5b\x60\x50\x9b\xb9\x54\x65\xa3\x75\x2b\xd4\x75\x5b\xc8\ \x03\xb0\xc6\x7e\xd2\x04\x0e\x2d\xf4\x0a\xfe\x93\x0f\xa0\x20\x97\ \x48\x27\x98\xc2\xe8\xa6\xc6\x17\xa7\xa6\x82\x40\xcb\x72\x03\x9b\ \x93\x0e\x84\xa2\x70\xb7\x14\x1e\x8a\x38\x71\x71\x4a\x3a\x56\x09\ \x12\xbe\x5a\x81\x5a\x38\x81\xa9\xd0\xac\x5a\x4a\xa9\x65\x40\xa9\ \x52\xc5\x13\x8d\x83\x6a\xaa\x66\x60\xbc\xd2\x62\x70\xb6\x33\x3e\ \x60\x54\x6b\xe7\x5c\x20\xf0\x0a\x6d\xe6\x03\x2f\xb9\x3f\x2c\xd4\ \x3f\xf9\xd0\x02\x88\x59\xaa\xbc\xc6\xa3\xe4\x2a\xa7\x70\xba\x31\ \xce\x82\x7f\x41\x2a\xa4\xc4\x78\x4f\x8d\x72\x9c\x82\x88\x31\xf5\ \xfa\x11\xbe\xfa\xfe\xab\xa1\x56\x75\x05\x9b\x7d\x1c\xd9\x58\x33\ \xf7\x58\xe8\xf6\x04\x7c\xf0\x0a\x14\x33\x46\x4b\xf5\x58\xf4\xa6\ \x4a\x90\xb5\x04\x90\x95\x05\xe9\xc0\xaf\x24\xf0\x04\xfb\xc3\x03\ \x69\x3a\x63\x3c\x3a\xab\x4b\x52\x57\x73\x7a\x3a\xce\xb2\x2c\x84\ \x30\xb2\xc3\x79\xaa\x69\xa2\x74\xec\x61\x8c\xef\x0a\xa8\x1b\x81\ \x05\x96\x67\x6a\xc8\xf5\x61\x0c\xd5\xac\x8b\x00\x02\x9e\x86\x59\ \x55\x85\x30\xf1\x23\x5e\x34\x53\x36\x72\xc7\x45\x24\x60\x6a\x73\ \x37\x46\x29\xe4\x33\x31\xb6\x6f\x59\xa5\x8e\x2d\xb0\x2a\xee\x54\ \x74\x47\xc9\xb1\xee\x82\x63\xc6\xf2\x22\x1a\xe2\x2c\xae\x85\x3a\ \x01\x68\x2f\x5b\x3b\x8c\x8f\xb8\xab\xcc\xe9\x07\x20\xd0\x60\x1c\ \x84\x0b\x99\xc8\x89\xd5\xb4\x05\x7e\x20\x73\x99\xa5\x59\x68\xf3\ \x3b\x60\x34\x03\x1d\xb9\x04\xd3\xa5\x4a\x3a\xc3\x33\x3c\xf0\x04\ \x3c\x20\x07\xe4\x45\x02\xef\x81\xab\x84\x7b\xb5\x81\x79\x3a\x52\ \xdb\x5a\x49\x98\x1e\xbc\x94\x56\x22\xf3\x8e\x48\x38\x4f\x51\x92\ \xb1\x03\xe4\xb5\x14\x31\x0b\xe2\x16\xb0\x95\x5b\xa9\x65\x90\x9d\ \x21\x26\x5d\x01\xfb\x16\xaa\x20\xba\x76\x72\x42\xa6\xeb\x93\xbc\ \x20\x37\x3d\xfe\x99\x9b\xf3\xe0\xba\xe7\x85\x4e\xff\x83\xa3\xb5\ \x7a\x03\xe0\xcb\x0c\xc6\xe0\x0d\x66\xe0\x0d\x1e\xe0\x02\x2e\xe0\ \x0d\xe4\x5b\xbe\xe2\x3a\xae\xb4\x2b\xb5\x2e\xea\xaa\xbc\x44\x08\ \xb0\x7a\x4f\x55\x6b\xb5\xe2\xf1\x47\xd4\xe6\x74\x7f\xba\xab\x23\ \x40\xb7\x0d\x56\x65\x94\x0b\x5e\x97\xfa\x04\xb9\x13\xa1\x3d\x1b\ \xc0\x1f\xa4\x46\x34\x33\x03\xb8\x30\x05\xf8\xe6\xc0\xd3\xd1\x6c\ \xbd\xc2\x12\xb7\x77\x3f\xdb\xcb\x05\xf6\xe7\x26\x1e\x10\x0c\x5a\ \xf0\xc1\x2d\x10\xc2\x60\x00\xbe\x37\x00\x06\x23\xcc\x43\xea\x6b\ \x06\x2e\x30\xa3\x34\x1a\xb8\xb9\xf4\xbe\xef\xfb\xa3\xb1\xaa\x40\ \xf7\xeb\x2c\xcf\x50\x09\xb7\x2b\x32\xcf\xf0\x68\x81\xd7\xbf\x22\ \x41\xbc\xc5\x0b\x72\x5a\xb7\x54\xca\xcb\x07\xa6\x26\x2e\xb8\xf0\ \x5c\x68\x96\x30\xcf\xbb\x58\x8f\xf5\x0a\xd5\x0b\x2e\xbc\x50\x35\ \xe1\x84\x5e\xaf\x70\x3f\x12\xa4\x06\x21\xc5\x05\x6f\x34\x03\xbc\ \x28\x23\x37\xb0\x8f\xb8\xb8\x0c\x21\x1c\x0c\x21\x6c\x9f\xd4\x00\ \xbe\xc6\x20\xbe\xe5\xfb\xa2\x27\x5c\xc2\x60\xd0\xc2\xee\xaa\x63\ \x30\xbc\x31\xf4\x25\x20\x85\xc4\x37\xd3\x22\x35\xed\x04\x0a\xb5\ \x00\xb9\xfe\x27\xc7\x0b\x95\x1b\x61\xd2\xa9\x75\xa4\x06\x31\xd2\ \xc9\x75\x16\x16\x6b\x50\xac\x06\xaa\x10\x4e\x10\x5b\x51\xfb\xf7\ \x0a\xb1\xe9\x6f\x26\x33\x05\xff\x33\x0f\x22\x60\x1d\x3e\xb9\x04\ \x5c\xd0\x3f\x31\x28\x2c\x1e\x70\x03\xd4\xa0\x9e\x5a\x40\xc6\x21\ \x1c\xc2\xa5\x7c\xc2\x34\x2a\xbe\xe4\x6b\xbe\x3c\x34\xa3\xf8\x19\ \x0c\xe2\xeb\x01\x50\x23\xab\x74\x5c\xc7\x4f\x2b\x5f\x4c\x72\x4f\ \x52\x12\x02\x3d\x4c\x2a\x9c\x47\x3c\xde\xb7\x03\x7f\x1c\x12\x67\ \x5b\x6a\x4b\x85\x79\x63\xe6\x38\xbc\xb0\x0a\xf1\xc3\x50\x88\xcc\ \x76\x06\x95\x05\x7c\x00\x02\x3b\xeb\x6f\x0f\xbc\x54\x10\xcb\x0b\ \x76\xb2\x7f\x3e\xf9\x42\x5c\x10\x83\x63\xc0\xc5\xe5\xac\x05\x5c\ \x90\xce\xf7\xa9\x9e\xfb\xb8\x0c\x64\x1c\xa3\xa9\x6c\xc2\x37\xc0\ \x0c\x2e\xe0\x01\xe6\x5b\xcf\xe4\x8b\xae\xc6\x40\xc2\x6a\x7c\x03\ \x95\x80\x40\xb7\x4c\x88\xb9\x4c\x3d\x7a\x53\x3a\x6a\xb2\x21\xeb\ \xa1\x5b\xa3\xd3\xac\xec\xc8\x86\xa9\x80\x54\xc7\x0c\x12\xc9\x7c\ \xa8\x0a\x55\x61\x54\xa8\x12\x65\xe0\x07\x46\x2b\x9d\xb0\x56\xcd\ \x5e\x16\xc5\x2c\x11\x4e\x0e\xe3\x42\x75\x79\xbd\x21\xd5\x9e\xfe\ \xa3\xfe\x05\xe0\xa0\x05\xef\x21\x05\x2b\xfd\xc1\xfd\x10\xd3\x20\ \x8c\xca\x67\xdc\x02\x31\x3a\xcf\xcc\x60\xcf\x3a\x8d\x40\xf7\x1c\ \xcb\xdf\x30\xa3\xea\xaa\xae\xd4\x40\x08\x00\xed\xc2\x1a\xab\xa3\ \x03\x8d\x43\xb1\x4b\xb2\xcd\xb7\xb5\x64\xa2\x34\x5b\xa8\x85\x48\ \xd2\xac\xf9\xc0\x0b\x8b\xb0\xab\x58\x29\x54\xcb\x1a\xb3\x4f\x50\ \x53\x27\x24\x4d\x24\xb0\x72\x10\x53\x4d\xca\xb1\x6f\x3a\x9b\x19\ \x6a\xd0\x03\xdc\x4a\xc9\xb9\x49\x1d\xbe\xc7\x03\x2c\x9d\xce\x3c\ \x20\x05\x74\x6d\xc6\xee\xdc\x02\x62\x7c\xca\x34\x8d\xd7\xee\xbc\ \x0c\x26\x0c\x06\xcc\x70\x03\x3c\x8d\x40\xf5\x8c\xae\xe2\xdb\xcf\ \xe0\x6b\xc6\x69\x6c\x0c\x84\x60\x0c\x95\x60\xaa\x80\xe9\x4e\xc5\ \x87\x52\x47\x4d\xbb\xa5\x3a\x2d\xbe\xab\xd0\x6c\x48\x81\xd5\x87\ \x81\x50\x8c\x0b\x57\x2d\x12\x90\x5a\xb0\x52\x0d\x34\x46\x65\x00\ \x4b\x15\x0f\x73\x9b\x3b\x59\x50\x6f\x05\x0b\xc5\x59\xf0\x7a\xb5\ \x27\x9b\x31\xe8\xd6\x6f\x14\x83\x5c\xd0\xd2\xe8\xac\x05\xd1\x70\ \x9f\x60\x60\xc6\xc0\xdd\xd7\x36\x4d\x0d\xf0\xcc\xd7\xa8\x3c\xc2\ \xcc\x40\xcf\x3b\xdd\xd3\x39\x1d\xcb\xfb\x2c\xd4\xe0\xfb\xa3\x91\ \xfe\x70\x9c\x0f\x44\xb2\xa8\xd5\x6b\xbc\x6c\x21\x39\x1c\x1e\x88\ \x3b\xc7\xe3\xf1\x47\xc1\x14\xd5\xd5\xf7\xab\x87\x45\x51\x0c\x16\ \xda\x21\x91\x39\x53\x4d\x4d\x17\xa8\x6a\xcd\x8a\x50\xad\x4d\xa5\ \x2b\x14\xdb\xc0\xaa\x92\x9a\xec\x33\xc1\x00\x31\xd5\x7b\x73\x95\ \x42\xce\xef\x99\x0f\x1f\xbc\xd2\xd1\x80\x8b\xeb\x69\xd7\x21\x2c\ \x0e\xc3\x2d\xcf\x7f\x5d\xca\xc2\x8d\xd3\xe2\x8b\xcf\x3a\x2d\xbe\ \xc6\xe0\x02\x3d\xc4\x43\x23\xac\xae\x84\xa0\xae\x91\x20\xd8\xe6\ \xbb\xbe\xf5\x85\xcb\x84\x68\xdd\xff\x29\x32\xc1\x00\xa4\x00\x82\ \xc3\x55\x4b\x08\x73\x0c\x3d\xf1\x22\x35\x6e\xc7\x8e\x96\xf7\x04\ \x8d\xfc\xbc\xd3\x85\x18\x21\x31\xda\x5d\x0d\x59\xd2\xc4\xd5\x0c\ \xbb\x75\xd3\x94\x05\xef\x07\x41\x5b\xc7\x03\x22\xaa\x8e\x95\xec\ \x6f\xb9\x79\x83\x21\xc5\xd2\xfc\xd8\x0f\x5c\x40\xe0\x7d\xbd\xd7\ \xc7\x4d\xc2\xfb\x0c\x06\xc6\xdd\x02\xc8\x9d\xdc\xf5\x5c\xd8\x14\ \xfe\xe0\x6b\xbc\xcf\x60\xce\xcf\xea\xda\xdc\x8d\x8d\x40\xb6\x0c\ \xd9\xc4\xe8\x8b\xc2\x99\x28\xf7\x74\xe6\x4c\x3d\x2a\xeb\x31\x9e\ \xe4\x89\x58\xc7\xc5\x60\x5b\x67\xe3\x20\x41\x9d\x9c\xc4\x91\xfe\ \xe0\x05\xac\x5b\xd6\x79\x90\x45\x02\x46\x35\x0f\x7e\xa0\xde\x54\ \x90\x05\xb1\x17\x3f\xde\x1a\x0c\xf9\x20\x67\x6f\xb4\x8b\xee\xd9\ \x0f\x70\x1d\xd3\x4f\xde\x0f\xd1\xd0\x02\x52\xd0\xd7\x60\x20\x0e\ \x9b\xde\x02\x47\xa0\xca\x17\x5e\xc2\x0c\x7e\xca\x23\xec\x02\xf4\ \x3c\xe1\xe8\xdb\xe5\xc9\x4d\xa3\x2f\x7a\xd8\xfc\xbc\xcf\x69\xfc\ \xa2\xcf\x1d\xeb\xed\xfb\xae\x75\x9a\xdd\x76\xaa\xdd\x4c\x8d\x24\ \x4e\xb7\x85\xe5\x3d\x5d\xae\x90\x05\x9a\x84\x49\x85\x03\x12\xb1\ \xc0\x12\x8c\xda\x58\xb8\x00\xac\xc3\xac\x65\x24\xb0\x42\xd9\xaa\ \x61\x52\x9d\x0a\x3c\xb0\x44\xce\x70\x83\x83\xc4\x73\x20\x95\xdb\ \x2a\x5d\x9f\x2f\xdd\x0f\xa4\x90\x8b\x7a\x8d\xe5\x64\x2c\xcf\x25\ \x8c\xd7\x22\x0c\xc7\x56\xde\xce\x7e\x3d\xcf\xa9\xee\x01\xc9\x1d\ \xd8\xf1\xbe\xc6\xf5\x1c\xd8\x24\x3c\xc2\x23\x9c\xc6\x33\x7a\xd8\ \x25\x6e\xcf\xec\xeb\xe1\xd8\x7d\x47\xab\x15\xd9\x21\xfe\x1f\x55\ \xdb\x5e\x76\x65\x26\x54\x90\x75\x4f\xfc\x79\x7e\xd0\x96\x4f\x10\ \xd1\x20\x81\x59\xb8\xf0\xf0\xaa\xe6\xeb\xb0\xe6\x03\xaf\x17\x87\ \x4f\xf0\x0c\x3e\x96\x05\xc0\x37\x04\x7a\xc8\x03\x9b\x03\xfe\x2b\ \x2c\x2d\x05\x3f\xfd\xd3\xc1\xe0\xce\x47\xd0\xd7\xe1\xee\xce\xe2\ \xe0\xce\x60\x10\x02\xe0\x1b\x02\x56\x2e\xc2\xf8\x7e\xf3\xee\x4c\ \x0d\xc8\x8d\xbe\xe7\xbb\xc2\x24\x1c\xef\x5d\xfe\xe5\xe0\x0b\x06\ \x3c\x4f\xdc\xfb\xfe\xea\x83\x6d\xbe\x25\x4c\xdd\x20\x2e\x90\x48\ \xcd\xb1\x30\x15\xa7\xf7\x45\x71\xd8\xa7\x54\xbc\xb0\x03\x53\x49\ \x54\xf0\x87\x05\xbb\xfa\x0f\x98\x85\x79\x5f\x6a\x6f\x1a\xef\x03\ \x3c\xa0\xf1\x71\x98\xf6\x9e\x63\x27\xe1\xfc\x1e\x28\x3d\x06\x24\ \xcf\x43\x3f\x44\x0d\xc1\x00\x06\xcb\x40\x0a\xee\xac\x05\x78\x7f\ \xd7\x58\x3e\xcf\x45\xff\xd7\x7f\x7f\xf3\xe9\xae\xe5\xde\x60\xea\ \x62\x1e\xef\xf3\x7e\xd8\x46\x2f\xe6\xfb\x4c\xbf\x49\xcf\xc2\x25\ \x4c\xcb\x68\x0e\xa0\x2b\x3e\x80\x1f\x70\xf0\xb5\x64\x4f\x0d\xad\ \x92\xa0\xf0\x0a\x0c\xb6\x03\xd3\x2e\x03\xea\x6d\x7d\x5e\x2f\x12\ \x1b\x24\x96\x15\x7d\x58\x2b\xf4\x1e\x8d\xf6\x76\x71\x98\x0f\xf9\ \x40\xc9\xb2\xe9\x93\x31\x38\x1d\x56\x22\x7b\x63\xa0\xd2\xb9\xb8\ \x0c\x9c\x5e\xee\x78\x3d\xee\x58\x1e\xea\x70\x5c\xf4\x70\x1c\xa3\ \x77\xcd\xf3\x38\x6d\xea\xf6\x1e\xea\x88\xff\xe5\xf6\xfe\x4e\xca\ \xc2\x0f\xbe\xfa\x8e\x9f\x91\x20\xa3\x54\xde\xe1\x95\xdf\x4e\xc3\ \xb8\xbb\x27\x65\x06\x5b\x8b\x24\x32\xd0\xf9\x76\x6e\x5b\x2a\x49\ \xfe\xf0\xf7\xf5\x1b\xa4\x0a\x76\x0e\x58\x53\xfc\x0a\xde\x3a\x95\ \x4a\x07\x0a\x3c\xb0\x62\xd3\xa1\x12\x6d\x7d\xff\xfd\x24\x7b\x78\ \xb0\xff\x4b\x10\xd3\xe0\x6e\xc2\x00\xd1\x82\x94\x16\x52\xcb\x5a\ \xb4\x00\x03\x26\xc4\x0d\x30\x37\x1c\x3e\x04\x43\xad\xc5\x32\x8a\ \x06\x1b\x32\xc3\xe8\x30\x61\xc2\x1b\x18\x99\x19\xc3\x08\x92\x99\ \x46\x89\xd4\x12\x52\x43\x99\x52\xa2\xc1\x16\xd4\x82\xdd\x30\x16\ \xd3\x83\x37\x33\x35\x6d\x4e\xc0\x99\x53\xe7\x4e\x9e\x3a\x6d\x9a\ \xe9\x19\xf4\xe7\xcf\x9c\xcf\xbe\x5d\x99\x20\x03\x94\xab\x57\xbc\ \x78\xed\x90\x91\x8a\xca\x13\x3f\x32\x74\x52\x49\x35\xe2\xdf\x56\ \xae\x5d\xbd\x7e\x05\xfb\x46\xd5\xd8\x37\x62\x55\x19\xe2\xc5\xd4\ \x15\xaf\x57\xe0\xa4\x5e\x49\xf5\x2d\xcb\x12\x3c\x6a\xec\xaa\x11\ \xb1\x64\x09\x17\xbe\xfd\xf8\xea\x55\x33\x63\x86\xb3\x21\x65\x9d\ \x09\xc6\x33\xa6\x60\xc5\x65\x5a\x10\x8a\x63\xb8\x11\xcc\x48\x86\ \x28\x27\x1a\x34\x79\x51\xa3\x64\x87\x1e\x5d\xb8\xfe\xf0\xe0\x82\ \xf2\x0d\x89\x07\x5b\xaa\x3c\x28\x65\x99\xea\x16\x52\x0e\xa2\xf4\ \xe0\xc1\x8c\x37\xd9\x43\x83\xde\xe6\x39\xb4\xe6\x04\xa0\x37\x71\ \x02\xe5\x3d\xf4\xd9\x07\xe0\xc0\x53\x81\xda\x91\x6f\xc7\x0e\x1f\ \x7e\xfc\xd0\xa1\x03\x42\xba\x9f\x27\xd5\xfd\xf8\xd0\x0a\x56\xfb\ \x76\xae\x65\x0c\xe1\x32\x64\xe8\x2c\xda\xb5\xaf\x92\x83\xa2\x82\ \xf3\x19\xb8\x79\x75\xf1\xea\xe5\x01\x2e\xd8\xb3\x67\x36\xa9\x0c\ \xff\x10\x4c\x0a\x0f\x2e\x53\xfc\xab\x21\xec\x8d\x19\xec\x9a\x82\ \x0b\x8a\xb4\xb0\x28\xb3\x83\x1a\xda\xcc\xb2\x05\x19\xdc\x0c\x21\ \x8e\x3a\xc3\x08\x34\xd1\x40\x62\xe8\x32\xd3\x52\xba\x8c\x25\xc6\ \x96\xa1\x26\x36\x11\x5d\xa0\x69\x26\xa2\x70\xc3\x4d\x37\x15\x57\ \xb4\xc9\x03\xe2\x72\x02\x0a\x14\x1f\xf2\x71\x25\x0b\xe7\xe8\xd8\ \x81\x97\xf0\x76\xc4\x05\x17\xb6\x40\xc8\x8e\x3b\x21\xbd\x1a\x81\ \x17\xe9\x8c\x84\x2e\x3a\x3a\x7c\x00\x25\x2a\xf5\x78\x98\x22\xb0\ \x29\xc6\xe0\x21\x98\x17\x51\xac\xe9\x19\x63\xf4\xd3\x62\x0c\x11\ \x04\x2b\x4b\xc0\x25\xc6\xe8\x07\x44\xd3\x12\x42\xa8\x23\x87\x1c\ \x6c\x09\x42\x34\xc1\x78\x90\xc1\x91\x2a\x34\xfe\x46\xb4\xca\x34\ \x7c\x2d\xa2\xd7\x4a\x4b\x8d\x22\x6a\x8c\xa9\xc4\x03\x42\x8c\x89\ \x8d\x36\xd9\x68\xf2\x0d\xc5\x9e\x58\x64\x74\xa8\x2b\x73\xfa\x46\ \xb9\x24\x77\x70\x65\xc7\xf0\xc8\x7a\xc3\x90\xe8\x16\x19\xb2\x53\ \xae\x46\xb8\x0e\xba\xaa\x52\xa1\xca\x07\x19\x64\x48\x6f\x82\x54\ \xf2\x99\xe2\x0d\x67\x44\xc8\xe7\x1b\x2a\x80\x53\x14\x46\x9b\x9e\ \xd1\x8f\x8b\xc0\xca\x1a\x62\x86\x02\xfb\x41\xd0\x24\x09\x3b\x62\ \x46\xcf\x89\x1e\xd4\xc8\xa0\x04\x27\x54\x93\xd8\x8c\x6e\x30\x6d\ \x4f\x38\x4f\x63\x73\xa5\x96\x1e\x32\x86\x90\x99\x62\x0b\x34\xb6\ \x13\x6b\xcd\xad\x51\x71\x69\x9d\xe0\x8a\x19\x95\x03\x87\x0e\x57\ \x2a\xb5\x54\x15\xb1\x5c\x79\x2e\x9e\x20\x3d\xe5\x6e\x04\x52\x7d\ \x68\xee\xd4\x27\x70\xa4\xc3\x2a\x9c\xbe\x69\xf5\x0d\x35\xc0\x99\ \x15\xdc\xdb\x5a\x94\x82\x0b\x3c\x0a\x7b\xa3\xd7\x29\x96\x28\xb3\ \x34\x93\x1e\x32\x8d\x25\x06\xe1\xac\x28\xda\x09\x21\x7c\xf6\xa4\ \x3c\xe1\x2c\xa9\xa1\x95\x5c\xcb\x93\x34\x6c\xbb\xf5\x40\x26\x44\ \x77\x33\x78\xa7\xa1\x6a\x1b\xf7\xdb\x09\x7c\x58\xcb\x95\x25\x29\ \x7d\x85\x5d\x4b\xab\x7a\x02\x3b\x7a\x87\xfe\xb4\x57\x86\x50\xf1\ \xc5\xb1\xa9\x57\x72\x02\xa5\x0f\x81\xc1\x41\xaa\xe5\x14\xb3\x0c\ \x46\x8b\x29\x86\x08\x70\xc0\x31\x10\x8c\x48\x25\x36\x2f\xc6\x78\ \xb1\x33\x25\xe3\x68\x24\xb0\x3f\x6e\x29\xcd\x0c\xf1\xa4\x66\x4d\ \x42\xa8\x21\xc4\xa1\x41\xbb\x5d\xd1\x69\x9f\x62\xd6\xed\x83\x47\ \x41\x99\xc2\x90\x29\x96\x5b\xb2\x6f\xe8\x96\xf3\x21\x95\x09\x64\ \x9c\xf7\x67\xb0\x40\x6d\xee\x6f\x1c\x9d\x32\xc4\x95\x27\x70\x9a\ \x67\x40\x1e\x52\x95\x3b\xb7\xdf\x7e\xa2\x86\x0b\xba\x66\x28\x6c\ \x08\x3c\xca\xcc\xba\xa4\x94\x2e\x12\x1b\x8c\x03\x33\x8e\x53\xce\ \xc8\x8c\xb5\x58\xb2\xd2\xa3\x45\x09\x42\x93\x61\xfa\x68\x65\x16\ \x2b\x0f\xee\x26\x46\x6b\xbb\xe2\x28\xe0\x78\xe0\x05\x8f\x75\x5d\ \xd9\xa1\xdf\x53\x4f\x35\xfe\x54\x3f\xb2\x28\xdc\x70\x22\x15\x01\ \x01\x3a\x1f\x96\x9c\x7e\x2d\xe1\x79\x78\x45\x72\xde\x70\x5f\x74\ \xc5\x1b\xba\x9c\xba\xac\x19\x96\xd0\x82\xcd\x63\x27\x7b\x16\xda\ \xc5\x94\xfd\x3a\x6c\x88\xa6\xa5\x28\xf5\x85\x36\x42\xa8\x4d\x93\ \xd3\x4e\xbb\xed\x98\x6c\x67\x54\xee\xb8\x55\xe4\xdd\x37\x9e\x71\ \x05\x2a\x80\x22\x1f\xba\x78\x05\x8d\xfe\xd6\xb5\x03\x1a\x1c\x4f\ \x06\xa6\x3a\x55\x72\x7c\xe6\xbc\xed\x28\xc2\x48\xcc\xa1\x8e\x0c\ \x9e\x20\x03\x3a\x18\x42\x30\xbd\x9a\xc7\x33\xb8\xe7\xb2\xdc\xad\ \x88\x10\x5a\xe8\xd2\xae\x66\x20\x02\x60\xa5\xa4\x22\xe8\xf3\x08\ \xc6\x32\x16\xbf\xd4\x51\x48\x23\x1d\x8a\x53\xb4\x36\x14\xbb\xb4\ \x3d\x04\x7f\x6d\x33\xd1\x8a\xf8\xe7\x34\xba\xb9\xc8\x0c\x1f\xb8\ \x42\x12\x23\x85\x87\xbd\x81\x02\x1c\xae\xe8\x80\x93\x8e\xb7\x9c\ \xe5\xe8\x63\x07\xe0\x78\x42\xf3\x28\xb8\x15\x0b\x82\x60\x07\xce\ \x39\x95\xe0\x64\xf0\x8a\x30\x4d\xe1\x1b\x23\x0c\x17\x8b\xbc\x41\ \x0d\x2d\x48\x41\x22\x4b\x98\x41\x59\xd4\x40\x3e\x94\x34\x66\x19\ \x93\xf9\x0c\x46\x12\x62\x91\x83\x30\x46\x42\x1b\xe9\x4c\xb2\xd6\ \x57\x3f\x1d\x4a\x08\x21\x29\xb9\x41\xdb\xd6\x34\x31\x6d\xd1\xc4\ \x1b\x8e\x9c\xcd\xed\x9e\x76\xb9\x23\xda\x86\x92\x35\xb1\x9b\x4d\ \x22\xa5\x0b\x57\x1c\x45\x1c\x50\xd1\x89\x0c\xac\xa8\x0f\x3a\x1c\ \x01\x14\xa0\xf8\x46\x30\xb4\xb8\x45\x0b\xf2\x82\x0e\xce\xf1\xc1\ \x13\x04\x97\x8a\x57\x14\x66\x60\x68\x84\x51\x09\x4d\xe8\x97\x1b\ \xcc\xe6\x06\xba\x72\x86\xab\xa6\xfe\x44\x90\x83\x38\x4b\x34\x60\ \x93\x21\xea\xe2\xb4\x99\x0f\x19\x12\x4e\xf4\x7b\x26\x22\x13\x49\ \x9a\xb5\x39\x84\x50\x90\x5c\x19\x36\x2d\x59\x2b\x33\x24\xf1\x0a\ \xdf\x72\x14\x71\x6c\x72\xca\x33\x96\xeb\x18\x3b\x51\xca\x72\xc4\ \x21\x83\x33\x7e\x23\x1d\xab\xa4\xa0\x22\xd0\xf2\xca\xe7\xf4\x2b\ \x15\xb4\x2c\xcb\x2b\x28\x87\xc6\x71\x79\x40\x0b\x63\xea\xe5\x6c\ \x98\xf1\xcf\x38\xf6\x2a\x31\x77\xf4\x48\xfa\xc0\xb6\x8c\xf5\x79\ \xc8\x22\x0d\xd9\x23\x43\x5b\x87\xcc\x63\xa9\xa4\x6d\x22\x73\x1b\ \xa0\x0a\x15\x49\xdb\xd1\xa6\x7f\x29\x4a\xa2\x38\x13\xf5\x93\x94\ \xd9\x06\x38\x57\x38\x46\xd3\x70\x22\x83\x23\xec\xa0\x03\x3b\x10\ \x07\x28\x8e\x00\x3c\x78\x3a\x6f\x04\x4e\x30\x04\x06\xa5\xd7\x33\ \x5e\x1c\x06\x1c\xb8\xbc\x24\x8b\x2a\xf1\x4f\x11\x68\xc1\x44\x34\ \x61\x46\xe6\xf0\x10\xa6\x19\x8c\x61\x19\xcc\xb0\x13\x18\xc4\xc1\ \xb1\x88\x16\xc4\x6b\xc7\xfa\x63\x32\x53\x47\x3f\x1a\x52\x23\x12\ \x11\x69\x48\x24\x3a\x53\xa7\x6d\x6d\x94\x7f\x81\xfa\xa8\x50\x1c\ \xc5\xb2\x12\xe2\x4a\xa4\xbb\xe9\xe6\x11\xf4\x61\xca\x53\x7e\xd2\ \x15\x9f\xd0\x85\x2e\x0c\x81\xfe\x07\x0f\xe2\xa0\xa6\xce\xeb\x02\ \x78\x5c\x99\x24\x3a\xbc\xa2\x55\x22\xd8\xe7\xc1\x14\xd5\x28\x0f\ \x50\x23\x61\x05\xea\xa5\x23\x1f\xe9\x81\x1b\x2c\x03\x8e\x72\x1c\ \x43\x0b\x28\x56\x4c\x35\x55\xd5\x8f\x38\xa4\x1f\x9e\xea\x27\x99\ \x3e\x52\xcb\xab\x16\x65\x46\xa0\x5c\x90\x2d\x98\x6c\xeb\x91\x1c\ \x8d\xd9\xc1\x6c\x72\x85\xfa\x14\xa7\x45\xf3\xb9\xd5\x29\x9f\x88\ \x07\x3c\xbc\x40\x0d\x9d\x08\x4c\x27\x06\x13\xa6\x30\xf5\xe1\xaf\ \x86\xeb\xc2\x58\xe6\x19\x8f\xa6\xf0\xa2\x47\x47\x03\x17\x5c\x2d\ \xa7\x46\x68\x49\x41\x0b\xc0\xba\x81\x64\x67\xf3\x48\xda\xb4\x60\ \x0c\x00\x7a\x03\x1e\x7a\x50\xa6\xd2\x26\x44\x6c\x7d\x2c\x08\x41\ \x58\xd2\xc7\x87\xc2\x4f\x63\xd0\xd4\x5a\x4a\x22\xf1\x1a\x67\x11\ \x62\x42\x2a\xe3\xe8\xa1\xc4\xf5\x34\x24\xbe\x75\x28\x37\xa8\xed\ \x15\xc6\x30\x18\x67\x04\x93\xb8\x07\x46\xf0\x1b\x58\x70\x5c\x7a\ \x75\x41\x3c\xaa\xf0\x91\x53\x7c\xa4\x86\x29\xf8\x81\x5c\x4f\xd3\ \xcd\xf6\x56\xd4\xd8\x68\x20\xc8\x20\x5f\xad\xc4\x6b\xb9\x3b\xe2\ \xa4\xf6\x63\x0c\x51\x12\xcc\x30\x63\x07\xcd\xcb\x0c\x64\x20\xeb\ \xb5\x98\xb0\x34\x94\x19\xfe\xd2\x8e\x2e\x12\xf2\x45\x49\x67\x14\ \x09\x13\x98\x80\x04\x24\xaa\x0d\xe2\x50\x2a\xa1\x22\xfa\xd4\x27\ \x8d\x8c\x7a\xc6\x0d\x88\x13\x0c\x03\x27\xd8\xc9\xc4\x5d\xf0\x16\ \xc1\xd2\x05\xe7\x46\xd8\xb9\xce\x55\x03\x2e\x40\xd1\x32\xba\x99\ \x81\xc3\x5c\x20\x13\xd6\x98\xe1\x81\x31\x8f\x78\xc4\xc7\x4c\x88\ \x14\xbe\xeb\x2a\x35\x5c\x4d\x41\xd1\x3a\x50\x3f\xe4\x4c\x8a\xab\ \xb6\xe9\x24\x34\x74\x53\xd9\xb4\xb6\x26\xd5\x7d\x04\x43\xc6\x90\ \x9d\x35\x45\x04\xb7\x21\xfe\x26\x1d\xe9\x08\xc6\x85\x6d\x75\x44\ \xb7\x0a\x47\x36\xe0\x68\xf2\x93\x9f\x1c\x65\x29\x7b\xa5\x16\xcc\ \x05\x41\x73\x5f\xd1\x14\x43\x2c\xe1\x71\xd1\xa5\x1b\x21\xa4\xe0\ \x97\x31\x70\x01\x58\xcb\x88\x84\x0b\x2a\x31\x12\x12\x3d\xf2\x33\ \xaf\x26\x4d\x6a\x5d\x40\x8d\x7e\x2c\x4c\x60\x57\xfb\x63\xc5\x28\ \x22\xe7\x30\x23\x08\x59\xc9\xf2\x53\x83\x60\x77\x10\xb1\x3e\xc4\ \x59\x09\x5d\xc8\x0d\x42\x70\x12\x44\x2a\x92\x10\x84\x78\xc6\x90\ \x4d\x7a\x9f\x67\x14\x4c\xb6\xc1\xc0\xb6\x31\x48\x8a\x44\x2d\x30\ \x4c\xd2\x93\x66\xb0\xa7\x46\xb0\x88\xe9\x69\x7a\x07\xcd\xfd\x29\ \x97\xc5\x45\x08\x1e\xfe\x68\x81\x0b\xd7\x25\x75\xf9\xd2\xf7\xea\ \x0a\xd9\x89\x1a\xcc\xe0\xae\x52\x07\xa3\x86\xf1\x3a\x06\x4d\x15\ \x81\xb7\xa9\x4f\x8d\x19\xd2\xc1\xa9\x8d\x13\xb3\x0c\x9f\x5a\x93\ \x99\x1c\x53\x28\xa1\x24\xe9\xa3\x6b\x5c\x73\x63\x6c\x27\xf2\x27\ \x9c\x30\xc3\x16\x32\x0e\x6d\x45\x2f\x2a\x3f\x88\x7e\xeb\x07\xc4\ \x31\x85\x48\x7f\x1b\xc1\x94\xae\x74\x57\xb0\x90\x8a\xc2\xe2\x62\ \x0a\xaf\xf0\x41\x16\x0c\x9b\x85\xc4\x62\x18\xc9\xd6\x75\xb7\xbb\ \xc7\x30\x26\x79\x93\x26\xc7\xa3\xc9\x08\x4a\x5a\xed\x8d\x12\x6f\ \x8e\xc2\x64\xd2\x35\x0a\x51\x28\xe7\x81\xbb\x91\x74\xa4\x09\x36\ \x58\x37\x22\xba\xd0\x4d\xac\x59\x1e\x71\x08\x7b\x29\xe2\x9a\x86\ \x43\x1b\x66\x66\x20\x44\x3a\x48\x30\xf6\x44\x83\x1a\x57\xf2\xf9\ \xc9\x07\xf2\x11\x47\x93\x3f\x79\x08\xb3\x08\x77\xa7\xb0\x40\x05\ \x3f\x38\xf7\x3b\xf1\xc8\xd1\x14\x78\xb1\x65\x83\xe9\xc6\x03\xe9\ \x90\x42\x34\xa4\x10\x78\x77\xf3\x65\xe7\xfe\x59\x82\x1b\xd7\xc4\ \xf5\x45\xfa\x90\x1a\x23\x5e\x53\x0b\xfa\x01\xc7\xc3\xb4\xb9\x4c\ \x15\x29\xd3\xd2\x81\xd5\x46\xcc\x04\xd2\xb1\x20\x4a\x1b\x44\x8d\ \x25\x21\x3e\xf5\xfe\xd0\x59\x1d\xf9\xf7\x67\xdd\xf6\x12\x42\xd8\ \xa4\x12\x9b\x48\xc7\x38\xc6\xc1\x03\x12\x68\xbc\xef\x66\xc0\xd5\ \x7c\x5e\x64\x06\x1e\x94\xbc\xed\x07\x8e\x45\xdc\x87\xc4\x89\x09\ \x3c\x01\x04\x6a\x38\xcb\xcb\x9b\xd2\x03\x5e\x04\xe3\xf6\x59\x0a\ \xfb\x3c\x96\x20\x82\x87\xe9\xa5\xd4\x60\xe6\x39\xd7\x4b\x83\x42\ \x92\xcd\x17\x25\xaa\x79\xfc\x23\x29\x83\x11\x36\x5e\x56\x40\xe2\ \xbd\xfc\x65\x96\x8e\xc2\xae\x12\x2b\x22\x9d\x67\x76\x69\x65\x6c\ \x91\xd3\x47\x48\xa2\xeb\x35\x7d\x30\xa0\x5d\x89\xd7\x07\x43\xec\ \xf3\x20\x3b\xb6\x8a\xae\x0f\xf8\x86\x54\x12\xa7\x60\xf8\x3d\x49\ \x43\xb9\x94\xfb\x07\xe2\xa3\x25\x0f\xfa\x8e\xb4\x78\x85\x79\x10\ \x81\xe6\x5b\xac\x2c\x49\x07\x1e\x98\x87\xf8\xe0\x81\x35\x13\x13\ \x53\x7b\x37\xd7\xd0\x93\xd5\xd8\x35\x39\x3b\x10\x04\xc1\xb9\xf0\ \x73\x81\xce\xc8\xa3\xca\x32\xbf\x86\xc1\x83\x77\xc3\x9f\x16\x40\ \x21\x53\x73\x0c\xfa\x0a\x3a\x3f\xc1\x9f\x64\xe2\x10\x82\xc3\xba\ \xc8\x38\x88\x41\xc2\x8c\x1e\x0a\x86\xd6\x88\x84\x43\x8b\x86\x71\ \x88\x06\x12\x38\xb4\x4d\xb0\x3d\xff\xc1\xbd\x60\xf8\x86\x2c\x61\ \xbb\x04\x3c\xfe\x39\x45\x60\xc0\x4f\x99\x8a\x57\x10\x2c\xbd\x33\ \x8f\x2c\x98\x82\xbc\x48\x07\x2a\x98\x15\x96\x21\x43\xa0\xc0\x0a\ \x12\xd0\x40\xc4\xdb\x40\xf3\xf3\x95\x52\xeb\x07\x29\x50\x13\xc7\ \x52\x3a\xbf\xe8\x01\x38\x94\xb3\xeb\x22\x13\x6a\x38\xa6\xb4\xa9\ \x04\xd1\x18\x09\x36\xf2\x40\x36\xbb\x1a\x06\xa1\x41\x1b\x04\xbf\ \xb4\x09\x3a\xd6\x98\xba\xd2\x2a\x9b\x8a\x0a\xa4\xc8\xa8\x08\xab\ \x7a\x90\xb4\x89\x89\x1b\x20\x3c\xcd\x91\x83\x25\x58\x83\xb1\x3b\ \x34\x4e\x20\xbe\xca\x61\xb4\xda\x7a\x86\xa5\xb2\x42\x04\x0b\xbe\ \x2c\xe4\x8a\x2d\x48\x05\xe9\xc8\x02\x1c\x71\x05\x10\xe0\x01\x1f\ \x98\x07\xbd\x9b\x87\x79\x00\x07\x70\xe0\x03\xda\x53\x43\x35\xcc\ \x02\xe9\x9b\x02\x97\xbb\x8b\xff\x60\x98\x5e\xa1\xb0\x7e\x78\xbc\ \x15\xa4\x86\xc6\x60\xba\x31\xe0\xad\x31\xe9\x81\x31\x19\x83\x3b\ \xd4\x2c\xc7\xea\xa1\x91\x68\x1b\x94\xb8\xae\x29\xe0\x9c\x86\x19\ \x1f\x10\x09\x44\x9c\xf3\xb0\x6b\x2c\x96\x8a\x08\x3d\xcb\x80\x31\ \x5f\x33\x3d\x49\x64\xa8\xf4\xba\x23\xce\x70\x88\x60\x58\x06\xbe\ \x58\x83\x35\xe0\xc4\x79\xb8\x03\x12\x48\x06\x3e\x48\x07\x8c\x13\ \xc5\x4a\xfe\xaa\x89\x60\x08\x98\x53\x84\x32\x45\x10\x3e\x21\xe1\ \x84\x54\xb8\x8e\xe3\xf1\x81\xe2\x01\x07\xec\x19\x83\x79\xf8\x45\ \x5e\xd0\xbb\x25\x78\x85\x25\xa0\xc8\x28\x71\x15\xaa\xf1\x36\x6f\ \x33\x30\x67\x68\xb3\x7b\x53\x46\x1a\x34\xb1\x13\x0b\xae\x29\xe0\ \x2d\xde\x6a\xb3\x83\x60\x3f\x37\xb1\x0c\xd5\x00\x9f\xe1\x1a\x9f\ \xf2\xf1\x39\x3a\x54\x47\xd3\xbb\x0c\x93\x40\x47\xc6\x60\x3f\x10\ \x11\xbd\xae\x69\x8c\x17\x7b\x0c\xf8\x51\x3a\xc1\x03\x07\xb1\x8b\ \x86\x35\x98\x87\x64\x30\x82\x7d\x2c\x82\x2d\xc0\x9d\xb4\x5b\x3b\ \x82\x44\x30\xb8\x53\xc5\x7f\xc0\x82\xe3\xc1\x09\x85\x2c\x1e\x50\ \xf0\x03\xec\xc9\x07\x70\xf0\x01\x1e\xc8\x87\x59\xe4\x81\x2c\x18\ \x03\x8a\x54\x03\x49\x3b\x8c\x6e\x2c\x8b\x25\x58\x06\xf7\xa3\xc1\ \x69\xf4\x8f\x4e\xa0\x1a\x02\x1b\x0c\x5f\xd1\xc3\xf4\xab\x98\x1d\ \x9a\x88\x5a\xbb\xcb\x02\x29\x9f\x3a\xea\xc9\x05\x09\x44\x14\x3a\ \x8d\x13\x44\x90\xf5\xcb\x2a\xd3\x61\x28\x82\xb8\x2e\x3a\xf3\x10\ \x52\xe0\x35\x53\x93\x02\x44\x0b\x3b\x12\xa8\x47\x39\x30\x02\x23\ \xe0\x47\x7f\xfc\x47\x33\x08\x06\x53\xa4\x4a\xe2\xc2\x86\x83\xe4\ \x8e\xfe\x45\x28\x1e\xc1\x51\x15\x1f\x30\x0f\xc1\xf9\x06\x1f\x00\ \x07\xa5\xa0\x0e\x50\x20\x95\x74\x01\x07\x56\x31\x30\xaa\x21\xae\ \x01\x59\x02\x94\xe4\x9c\xc4\x38\xb8\xb4\x99\x4b\xe0\xf4\xbd\xb2\ \x18\x03\x67\x4c\x8c\xcd\x63\x3a\x75\x34\xb6\x65\x3c\xb1\x01\x99\ \x92\xcb\x5b\x4c\x0f\x4b\x93\xa4\xb2\xa3\x95\x80\x37\x60\x99\x33\ \x3b\xeb\x1a\xca\x04\x16\xf0\xf4\x30\x89\xd2\x43\x2e\x18\x3c\xfd\ \x20\x81\x79\x18\x87\x79\x90\x03\x39\x60\x02\xcf\x4c\x87\xa7\x8c\ \xca\x9a\x00\x87\x2a\x2c\xcd\xb2\x90\x07\xd4\xdc\x0e\x03\x30\x84\ \x78\x60\x4d\x2a\x50\x97\x2c\x80\x94\x27\x00\x05\x02\x15\x4b\x70\ \x28\x50\xdb\x74\xcd\x85\xa9\xbc\x82\xf2\x15\xa6\xfb\x4d\x9e\xd3\ \x39\xcc\x58\x86\x5a\x1b\x2e\x27\x9b\x02\xbb\x64\xa2\x69\x5c\x82\ \x68\x2c\x35\xc7\x50\x44\x7a\xab\x2c\x67\x7c\x43\x32\x61\x3a\x13\ \x44\x08\xca\xa0\x41\x33\x61\xc6\xcd\xbb\xae\xf2\xe1\xaa\x0a\xed\ \x07\x53\x98\x33\x14\x72\x31\x83\x78\x88\x22\x0c\x86\x48\x90\x02\ \x70\x48\xca\x35\x68\x4f\x11\x30\x02\x08\xe0\xc7\xa7\xec\xb8\xe8\ \x0a\x06\xfb\xbc\x4f\x16\xc0\xc2\xab\xe4\x03\x7f\xc1\x09\x3f\xc8\ \xfe\x07\x53\xc9\x89\x7b\x8a\xcd\x7c\xc8\x82\x29\xb5\xcd\x09\xf8\ \x86\x27\x42\x49\xe0\x4c\x31\x32\x01\x33\x30\x03\x96\xe2\x14\xcc\ \x0a\xc5\x83\xe3\x34\x0c\xb6\x3b\x8c\x36\x15\x8c\x7e\x03\x91\x1b\ \xf8\x0c\xee\xfa\x0c\x5a\x9b\xc6\xe4\x2c\x35\x3c\xbd\xc3\x60\x01\ \xb6\x3e\x82\xb7\xf4\xf2\x35\x8f\xa9\x50\x1a\xcd\x43\xf5\x9a\x08\ \xc7\x60\x06\x9b\xc0\x44\x2d\x40\xcf\x68\x90\xbe\xf6\x6c\xcf\x4e\ \x8c\xcf\x27\x14\x45\x50\x20\xcd\xfb\x14\x98\x2e\xb8\xca\x7f\x60\ \xc5\x50\x22\x50\x54\x61\xcd\xad\x3c\x50\x54\x7a\x0b\x03\xaa\x45\ \x6e\x1c\x90\x0d\xc5\xd3\xeb\xcb\x3c\x13\xc3\x83\x37\xec\x07\x92\ \x63\x4b\xc3\x38\x30\x58\x8d\x53\x7c\x33\x33\x6f\x80\x3a\x78\x33\ \xd1\x13\xc3\x03\x88\xd1\x02\x88\xba\xae\x13\xa4\xd1\xed\x4c\xc7\ \x92\x34\xd1\x82\xd0\xac\xb3\xb9\x81\xd8\xc8\x9c\x87\xe1\x8b\xbf\ \xd0\x8b\x25\x88\x54\x7e\xdc\x02\x4a\xf5\x9f\x67\x08\x1f\x4c\x2d\ \x8b\x2e\xd0\x4f\xed\x80\xca\xab\x50\x0a\x02\xbd\xa7\x50\x3a\xa5\ \x7b\x7a\x06\x2b\x05\x05\x1e\xe8\x01\xc4\x50\x83\xba\xb0\xbe\x9d\ \x13\x53\xe6\x1c\xb0\xc3\x60\xa2\x0b\xb5\x42\x67\x58\xce\x83\xfe\ \xeb\x88\x5c\xf5\x06\x65\x6c\x8c\x3a\xf4\xd5\x29\x00\x96\x88\x78\ \x51\x66\x34\x51\x53\x08\x33\xcc\xa3\xcb\xe4\x2c\xd6\x7b\x9b\xac\ \xca\xe2\xb5\x6d\x7d\x98\x30\x14\x01\x39\x50\x4a\x2e\x58\x03\x08\ \x60\xc2\x4d\x38\xd2\x01\x9c\x07\x6e\x35\x8c\x2a\xf8\x56\xb0\x08\ \xd7\x9d\x38\x0e\x76\x3a\x95\xa6\xe9\x52\xd6\xa4\x95\x2b\xe0\x81\ \xa5\x72\x86\x8a\xf5\x0f\x3c\x1d\xd3\x0f\x5d\x3a\x6e\xf4\xc6\x00\ \xc9\xd7\xa3\x33\xd1\x38\x95\xd3\x5c\x1d\x49\x73\x5c\x06\x5f\x45\ \x3a\xd3\x21\x13\xca\x9c\xc6\x3b\x1c\x93\xcb\xab\x50\x67\xf4\x8f\ \x3b\x7c\xb7\x16\x80\x2a\x47\xf2\x80\x65\x20\x39\x6f\xa3\x30\x11\ \xb0\x8b\x3e\x58\x82\x68\x38\x34\x4f\xc4\x56\xdc\xa1\x82\x31\x10\ \xd9\xb2\xb0\x4a\x55\x3c\xd9\xab\xf8\x06\xdd\x6a\x92\x7f\x39\xa3\ \xe2\xe0\x0d\x98\x5d\xaa\xa6\x92\xb3\x0e\x5d\xd5\x31\x99\x92\x5e\ \xed\x81\x34\xbd\x4f\x55\x4d\xce\x32\xd1\xbe\xaa\x35\xb3\x5d\xb5\ \x33\x2d\xe8\x01\x82\x75\x8c\x65\xe8\xdb\x69\x7c\xd5\x94\xec\x01\ \x0f\xeb\x12\x26\x6a\x5a\x5f\x23\x5c\x47\xba\x81\x58\x4d\x55\x68\ \xd5\x9c\xbd\x20\x81\x6a\x7b\x86\x2d\x20\x84\xb1\xc5\x9d\xfe\x60\ \x10\x81\xb3\x7d\x83\x64\x28\xd9\xaf\x18\x81\xa0\x48\x85\x5c\xbc\ \xa2\x50\x0d\x97\x09\xc8\x87\xa5\x8a\xc1\x92\xd4\x8b\xff\xa8\x8b\ \x19\xf8\xd5\x92\x44\xc9\xbf\x9d\x4e\x9c\xad\x4e\xc6\x9b\x53\xee\ \x82\xba\x32\x4d\x88\x58\xbd\x43\xca\x7c\x5c\x53\x24\x0c\x67\xb8\ \x9a\x81\x38\xb1\xe9\xa4\xbf\x84\x22\x94\x31\x4b\x19\x1a\x6c\xa3\ \x97\xf0\xbf\xcb\xac\xad\xdc\x51\xac\x96\x49\x07\x6f\xe3\x56\x79\ \x68\x52\x55\x14\x8a\x6f\x20\x4b\xbe\x73\x99\x9f\xf8\x86\x01\x3b\ \x3f\x94\x0c\x8c\xe1\x2a\x30\x7b\x4d\x8c\xe4\x4c\x53\x35\xfd\xb6\ \x19\xd0\x05\x13\xdd\xbc\x03\xe9\x30\xee\x5b\x8d\x10\x7d\x24\x86\ \xd0\xc3\x60\xf5\xae\xc3\x98\x02\x53\x70\x5e\xe2\x9a\x59\x85\xed\ \xdb\x05\x76\x4e\x8d\x30\xb6\x6b\xaa\x09\x6f\xb1\x89\x2d\xc1\xad\ \xc5\xa2\x82\x6b\xfd\xd8\x9d\xa0\x02\x08\xd0\xdf\x53\xec\x83\xf3\ \xcd\xc2\x31\x0c\x8a\x27\x9a\x42\x0d\x9b\x80\xf5\xc8\x87\x09\x1c\ \x44\x49\xcb\x4b\x9f\x6d\xd7\x11\x7e\x32\x7d\xdd\x5b\x13\x55\xba\ \x1d\xd6\x3c\xee\x4b\xd1\x63\x9a\x5c\x13\x65\x3b\x7c\x3d\x30\x95\ \x54\xe0\xab\xf1\xb5\xd6\x60\x09\x3f\x0c\x32\xdd\x60\xfe\x37\xc1\ \xab\x2d\xb8\x62\x94\x9a\x03\xe1\x2d\x48\x07\x08\x58\x4b\xd4\x7d\ \x03\x83\xbc\x4a\x16\x48\x37\x97\x61\x0f\xa6\x29\xa0\x7c\xa8\x45\ \x25\x35\xb9\x02\x4b\x55\xf1\x4a\xce\xbe\xbd\x4f\x7d\x55\xe3\xe6\ \xd4\x82\x0e\xe3\x8b\x3a\xf4\x0b\x53\x78\x37\x10\x65\x08\xc6\xe5\ \x5d\x94\x0c\xa6\x11\xfe\xc8\xe9\xe4\xce\xcd\xbb\x96\x40\xe1\x9f\ \xa1\x08\x86\x68\xe0\x82\x79\xb8\xcc\x2d\x08\xdd\x8c\xbb\x56\xd0\ \x34\x18\x4e\xe0\x03\x2c\x26\xdf\xb3\xf5\xd6\xab\xc4\x85\x10\xba\ \x0f\x01\x4a\x95\x60\x88\x46\x56\xc9\x62\x82\x24\x0c\xde\xe5\x5d\ \x0a\xbb\xc3\x57\xc5\x54\x7d\x95\xc6\x42\x8d\xe3\x68\xd5\xbc\x52\ \x8b\x46\xa9\xa5\xce\x31\xb8\xcb\x7c\x65\xa2\xc4\x95\x46\x3c\x6e\ \xb5\x46\x79\x06\xc0\xf3\x3f\xff\x43\xb4\x74\xf0\x07\x26\xac\x36\ \x70\xa1\x02\x4e\xf0\x04\x08\x50\x9a\x30\xa9\x64\x4c\x5d\x84\xd5\ \xf5\x8a\x3e\x98\x01\x5e\x98\x3e\x5c\x10\x01\x1e\xc0\x95\xc8\x31\ \xe3\xdf\x43\x63\x34\x26\x65\x1c\xe6\xe3\x66\x6e\x3b\xc4\xb8\x43\ \x17\x6d\x23\xc1\x1b\x3c\x12\x7c\x65\x93\x04\xae\x1c\xbe\xd4\x04\ \x6c\x4b\xde\xc5\xb5\x8e\xd8\xe5\x42\xfe\x09\x68\xfe\xa3\x8f\x43\ \x3b\x34\x7f\x48\x07\x3e\x58\x03\x3e\xf0\xd8\xa0\x78\xc2\x63\x5e\ \x84\x64\x60\x81\x21\x40\xe8\x21\xe8\x03\x1c\xc0\x01\x71\xa6\x4a\ \xd5\xbd\xca\x2e\x68\x18\xe2\x1a\x02\xea\xdb\x66\xb7\x13\x90\x78\ \x9e\xdf\x94\x64\xa2\x0d\x35\xb1\xbe\xbd\x68\x19\x16\xce\x24\x1e\ \x3c\xed\x43\x8d\x38\xc3\xdf\x0b\x15\x0c\x22\xce\x57\x82\xc5\xd1\ \xcb\x8d\xa4\x15\xa1\x8f\xd1\x85\x3d\x3e\x90\x3d\x3e\xf8\x01\x7f\ \x9e\x87\x74\x58\xdb\x9c\xe0\x84\x2d\xc0\x82\x9f\xc6\x02\x3e\x60\ \x81\x86\x5e\x68\x16\x48\x81\x64\x48\x06\x03\x58\x66\x91\xcd\xcf\ \x4d\xbd\x4f\x8e\x44\x8c\x52\xe6\x68\xde\xea\x81\x3b\xc4\x53\x17\ \x8d\xd5\x4e\xa0\xca\x19\x18\xaf\x21\x9c\xaf\x48\x10\xab\x55\x4b\ \x1f\xc2\x04\x9f\x77\x76\xe8\xfd\x75\xe9\x65\x1d\xba\x98\x5e\x91\ \x4d\xf0\x44\x12\xf0\x67\x20\xad\xc7\x71\x58\x83\x64\x20\x81\x22\ \xb8\x30\x2b\x1e\x3b\x2c\x28\x02\x3e\x48\x01\x1c\xe8\x83\x3e\x40\ \xea\x2a\x58\x04\x2c\x18\x6a\x16\x40\xdd\x21\x30\x61\x06\xcc\x57\ \x57\xc9\x4b\xde\xad\x6a\xde\x8a\xda\xab\x1e\x03\x1a\x25\x54\xa6\ \x33\x05\x9d\xa5\x4a\x1c\xbe\x1a\xd5\x90\x82\xfe\x1b\x63\x9b\x10\ \x0b\x31\x57\x1b\x8d\x43\x8d\xce\x54\x56\xdc\x6b\xb9\x5c\x48\x52\ \x91\x0f\x20\x81\xa4\x1c\x87\xb9\x86\xd4\x8d\xad\x47\x3e\xa8\x3d\ \x5a\x31\x83\xa1\xde\x47\x3e\x30\x80\x58\x60\x01\x26\x40\x6a\x6c\ \x98\x85\x5a\x08\x6a\x4e\x58\x04\x39\xd0\xe2\xc6\x4e\xb9\x33\x16\ \x90\x4e\x78\x55\xe1\x9a\x6c\xca\xbe\xea\xea\x5e\xd5\x35\x5e\xda\ \xc4\x4d\xd3\x5a\x86\x67\x5f\x91\xda\xeb\x1b\x3c\xb1\x06\x03\x42\ \x90\xb5\x7f\xfd\x57\x3b\xd9\xd5\xcd\x0e\xe9\x6f\x43\x3f\x8b\xc0\ \x88\x11\x73\x6b\xfe\x81\x3d\x1e\x58\xcf\x7a\x84\x80\xf6\x34\x02\ \x8c\x85\x00\x08\x00\xc0\x2d\xa0\x1c\x2a\x48\x07\x03\xe0\x05\x03\ \x30\x00\x08\x48\x81\x14\x88\x85\x58\x20\x6e\x6c\xe8\x02\x50\x04\ \xea\x32\xd0\xe2\x5a\xd8\xd4\x5e\x21\x65\x02\x3b\x0c\xe8\xe6\x68\ \x5d\x98\x6e\xea\xbe\xea\x29\xb8\xc3\x0f\xaf\xee\x8e\xae\x0b\x11\ \x07\xce\x53\x84\x55\xec\xe3\x8b\x68\x10\xbc\x1f\x08\xed\x69\x7a\ \xce\x3a\x7a\x5a\x59\xed\x6a\x32\xf1\x49\x39\x1d\x3a\x6c\x7a\xb6\ \xd6\x83\x36\xff\x1b\x3b\xfb\x06\x52\xfc\xc6\x6f\xa7\xdc\xa7\xa1\ \xde\xef\xfd\x46\x70\x6c\x50\x70\x05\x6f\xfe\x70\x50\x5c\x84\xa6\ \x16\x59\x4e\xb9\x4a\x08\x50\x49\x3c\x00\x2e\xde\xd2\x70\x2b\x17\ \xaf\x2c\xb7\xea\x5b\xee\x01\x5d\xf0\x70\x0f\x4f\xdc\x10\x87\xee\ \x19\x18\xf3\x5b\x66\xba\x1e\x68\x53\x6e\xd6\xd7\xef\x5e\x03\xbe\ \x18\x87\x14\x47\x67\xd4\x80\xc9\x89\x65\xe9\x7c\xdd\xd3\x5b\x6d\ \x6b\x44\xa9\x84\x1d\x7d\xb6\x74\x38\xc2\x61\xb6\x6d\x08\x60\x82\ \x41\x97\x83\xfb\x66\x82\x42\xff\xcc\x9c\xa0\x02\x2c\x90\xeb\x02\ \x87\x80\x58\x40\x70\x04\x8f\x85\xe2\x06\x45\x4e\x30\x80\xb4\x26\ \xc8\x64\xd8\x54\x45\x18\x71\xde\xd5\x85\xab\xd6\x70\x5d\xc0\x70\ \x3c\xb8\xf2\x0e\x37\xf5\x94\xbc\xf2\x94\x14\x2e\x67\x18\x73\x0c\ \x5f\xd8\x01\xf3\x15\xbf\xfd\xb6\xb6\xa4\x5c\xbd\xa0\x47\x37\x87\ \x73\x9e\x0c\xd8\x8f\xfe\x5d\x6e\x65\x22\x53\xe0\x53\x5c\x15\x31\ \x42\x88\x04\x6d\xd9\x84\x60\x18\x66\xbb\x1e\xd2\xfc\x66\x02\x1c\ \x68\xf6\x41\x67\x68\x26\x80\x00\x4f\x48\x95\x63\x96\x6b\x3e\x48\ \x06\x79\x90\x87\x14\x60\x81\x55\x48\x81\x55\x88\x85\x2e\x38\x6e\ \x2c\x90\x07\x4c\x3f\xc5\xa7\x56\xc5\x11\x40\xf5\xea\xee\x72\x2a\ \x17\x2e\x0c\xd7\xf0\x2e\xd7\x6e\x2a\xfe\xa7\xf7\x4e\x80\x6e\x7b\ \xb7\xf7\xbc\xc4\xf0\xe9\xd4\xc3\x5f\x77\x46\x1b\x8e\xdf\x8a\x9d\ \x56\x7b\x5c\x83\x37\x57\xf1\x68\x60\x71\x89\x03\x38\x5e\x95\x75\ \x4c\x85\x55\x3c\x16\x76\x51\x3b\x42\x4e\x78\x3d\x12\xb0\x6b\x48\ \x1d\xf4\x66\x5f\xe8\xc1\x1e\x6c\x1c\x80\x00\xf9\x9c\x00\x49\x36\ \x80\x2c\xc0\x76\x79\x60\x01\x16\x00\x6e\x6f\x8f\x85\x5a\x18\x01\ \x26\x6f\x68\xd4\x05\x49\x68\xee\x0a\x45\x40\x49\x76\xef\xf2\xbc\ \xc2\x77\x2a\x0f\xf5\x54\xc7\x77\x32\x7f\x77\x32\x1f\x8c\x77\xc7\ \xf0\x72\x9e\xd1\x9a\x5f\x3a\x54\x66\xef\x1c\x1e\x78\x8d\xe5\x02\ \x84\x67\x71\x1e\x0d\x6d\x07\x81\xc9\xb3\x8e\x6a\x03\xdb\xe3\x30\ \xbb\x96\x1c\x3f\x78\xb1\xde\xe7\x35\x30\x82\x8c\xcf\xf8\xc1\x46\ \x68\x8e\xef\x03\x39\xf0\x04\xa8\x44\xee\x79\x38\x79\x6d\x3f\x79\ \xa4\x06\x6e\x94\xaf\x85\x4a\x4f\x06\x1c\x10\xd9\x02\x73\x95\x37\ \x90\xf9\x4f\x41\xf5\xbc\xe2\x7b\x0d\xb7\xf7\x9d\xef\x5b\x51\x17\ \xfa\x4e\x60\x75\x32\x67\xf5\x0b\x97\x6e\xa2\x77\xd5\x5f\x5d\xdc\ \x7e\xe8\xdb\x86\x4f\xb0\x07\xed\xdc\x36\x6f\x73\x25\xfc\x01\x7f\ \x88\x04\xcc\x17\x6b\xd1\xd6\x4e\xfe\xdf\xe5\xad\x3a\x37\x39\xaf\ \xe6\xf5\xc0\x6d\xa3\x16\xb8\x31\x29\xf8\x81\x24\x94\x3d\xbb\xf6\ \xfa\xfc\x4e\x81\x8c\x67\x68\xc1\x4e\x68\x8e\x67\x01\x3e\x00\xc5\ \xa1\x36\xf9\xb6\x0f\xee\x93\x5f\x85\x93\xc7\x86\xb8\xe7\x04\x2c\ \x48\x06\x73\x67\xcb\x3e\xbe\x7b\x67\xc8\x7b\x2e\x12\x81\x7b\xb7\ \xf2\xbe\x7f\x01\x9d\xcf\x2b\x52\xc7\xf7\xfa\x2d\x7c\xc2\x27\x7c\ \x34\x16\x2f\xac\x86\xe0\x57\x1d\xaf\x43\x05\xb3\xe8\x1c\xe1\x02\ \x89\x56\x2e\x58\x7d\xa7\xc7\x7c\x7f\xf0\x87\x1f\xe0\x51\xa8\xdf\ \xf5\x5e\x3d\x31\x80\x4f\xb0\x21\x70\x2a\x5d\x33\x88\xc1\x4b\xc2\ \xa6\x7f\x73\x20\x85\x76\x67\x6f\x76\xc1\x66\xe8\x3e\x00\x88\x21\ \x43\xde\x08\x1c\xd2\x87\x09\x1f\x4f\x58\x9e\xf0\x49\x66\x40\x1e\ \x13\x16\x2c\x70\x48\xa4\xc8\x02\x5b\x2d\x2c\x9c\xb0\xb0\x78\xe3\ \xf1\x23\xc8\x90\x21\x9d\x91\x74\x26\xb2\xd6\xbf\x94\x2a\x57\xb2\ \x6c\xe9\x52\x91\x2e\x5d\x78\x74\x75\xea\x14\x33\x66\x4d\x5d\x2f\ \x70\xd6\x74\xd6\xa9\xe4\xcf\x4e\x33\x7e\x3a\x1b\x8a\xa7\x47\x8f\ \x31\x4a\xc7\xe0\x19\x3a\xa5\x9f\x96\x65\x5a\xfa\x51\x55\x3a\x65\ \x86\x49\x8f\x58\xb7\x16\x5d\xfe\xc2\x25\x1a\x58\xb0\x3f\x7e\xf8\ \x2b\xeb\xef\x87\x94\xb1\x52\xa2\xad\x5d\x26\xd5\xad\x54\x2d\x3d\ \xb2\x8a\xac\x2b\x72\xc6\x98\x65\xd4\x6e\x30\xbb\xe1\x37\x52\xa4\ \x68\x5c\xc6\x8d\x5b\xb3\xc6\x08\x13\x1c\x38\xfa\xf4\x51\xbc\xb8\ \x8f\xc1\x82\x1e\x05\xe2\x60\x62\x60\x91\x27\x4f\x7c\x1a\xca\x83\ \x90\x02\x5b\x8a\x14\x90\x87\xb0\x98\x55\x6b\x04\x96\x64\x7d\xec\ \xb2\xf6\x58\xd2\x24\x5d\x8f\x8b\x5c\xd2\xae\xbd\x52\xd1\x4c\x3c\ \x9d\x74\xeb\xa6\x59\x73\xf7\x8b\xdf\x3e\x5f\x0f\x27\xba\xfb\x68\ \xd2\x31\x53\xa6\xe0\x29\x3a\x65\x8c\x96\xe8\x5c\xb8\xf4\x1b\x53\ \xbd\xc7\x55\xad\x78\xf0\xa8\xe1\xae\x66\x88\x9a\x25\xd1\xc6\x8e\ \xbd\xe3\xcf\xfc\x9d\xb1\xe3\xc2\x0a\x66\x2b\x85\x1a\x18\x6a\x2d\ \xb4\x8c\x99\x31\x63\x48\xec\xd6\x75\xa7\x68\x01\xe3\xc2\x5b\x25\ \x95\x10\x12\xc9\x59\x85\xad\x21\x07\x13\x08\x2e\x66\x10\x63\x05\ \x39\x38\x99\x41\x38\xa4\xb0\x48\x11\x8b\xf0\xf1\x90\x3c\x29\x18\ \x70\x89\x27\xc9\xb0\x20\xd0\x45\x0a\xf1\xf1\xa1\x7e\xfa\xe5\xe7\ \x91\x3c\x23\xd8\xb6\x62\x4b\x30\x6d\xf7\x1b\x8c\xbf\xbd\xa0\x5b\ \x4f\xc4\xbd\x56\xd3\x76\xfe\xc9\x61\xa7\x5b\x51\x49\x41\x45\x1d\ \x75\x63\x70\xa1\xd4\x12\xdc\xb9\x26\xc2\x72\x53\x88\xa0\x06\x93\ \x72\x70\x41\x5e\x7a\x77\x48\xf9\x03\x61\x85\x8d\xf3\x15\x58\x52\ \x44\xb2\x97\x14\xf4\x31\xb7\x5c\x73\x25\xba\xb6\x9d\x7d\xce\xf5\ \x13\x09\x21\x01\x0a\x48\x60\x34\x87\x21\xc8\x04\x13\xa3\x39\x28\ \x10\x41\x75\x42\x28\x21\x66\x7c\xc8\x23\x91\x44\xc9\x60\x81\x85\ \x27\xf2\x30\x76\xd1\x22\x97\x18\x50\x86\x98\x6f\x94\x64\x22\x49\ \x6a\xa8\xc8\x22\xa4\xff\xb8\x28\xd3\x71\x95\xee\x16\x23\x51\x37\ \xfa\xb4\x1d\x72\x4a\xed\xe8\x8c\x1a\x3e\x52\x05\xa4\x90\x63\x2c\ \xb1\xc4\x14\x6a\x60\x45\xd0\x14\xa8\x2e\xc9\x98\x1a\x22\xc8\x31\ \xce\x0f\xe8\x49\x59\xe5\x1a\x84\x45\x43\x2b\x5a\xe3\xa5\x45\x9f\ \x52\x41\x32\xb7\xaa\x7e\xe0\x79\xca\x1c\x1e\xad\x46\x03\xd8\x80\ \x84\x9c\xe5\x26\x9c\x8a\x8d\x66\xd7\x40\x77\xa6\xc0\xc7\x22\x1e\ \x2a\x26\xd1\x25\x7f\x62\x81\xcd\x62\x38\xc4\xe2\x10\x89\x62\xc2\ \x26\x12\x6c\x3e\xfd\xe6\x68\xa4\x90\x2a\xd2\x03\xa7\x32\xdd\x64\ \x13\x8d\x35\x0d\x95\x69\x71\xdb\xe9\x82\x94\xa7\x48\xf1\x26\x6a\ \x3f\x40\x4e\xe7\xd5\xfe\xa9\xdc\xdd\xe7\x51\xac\xaf\xce\x80\x83\ \x08\x38\xc8\x61\xc4\x1a\x77\x8c\x73\x6b\x95\xba\xd2\x9a\x16\x58\ \x5c\xac\x61\xaa\x57\x53\xf5\x63\xca\x18\x9f\xd6\x35\x04\x1e\x1f\ \x39\x03\xdd\x54\x5c\x2c\x21\x87\xac\x4b\xe4\x3a\x1e\xad\x85\x19\ \xa1\xe0\x82\x03\xd1\xc9\xda\x10\x12\x26\xb3\x08\x36\x2c\x34\xc6\ \x42\x0a\xdd\x72\x52\x4b\x15\x3e\xf7\x91\x42\x2c\xe5\x26\x3a\x12\ \x50\xbf\xf5\xd2\x4b\x70\x8f\xb6\x6b\x1b\x6e\x37\xe1\x31\xa3\x4d\ \x59\x5f\x2a\x5c\x8c\x33\xed\x9b\x14\xc8\x49\xc1\x7b\x94\x52\x50\ \x55\x35\xe4\xc0\x2a\x2f\xb1\x64\xb5\xac\x2e\xa9\x06\xc3\xd2\x3e\ \x6c\x44\xc5\x12\xaf\x47\x6b\x59\x63\x69\xbc\xf2\xa9\x5f\x45\x15\ \x5d\x55\x3d\xcc\xe0\x1a\x5d\x27\x97\xec\x11\x7f\x52\x48\x31\xb0\ \x08\x90\xf5\x21\xab\x1c\x86\x19\x36\x73\xb4\x35\xdf\xfc\x51\xdb\ \x04\xf5\x71\x51\x32\xb1\x2c\x28\xee\x22\xa8\xd5\xe2\xf9\xa0\x38\ \x64\x9e\xa8\xba\xc5\x75\xf2\x02\xeb\xc1\xfd\x84\x07\x4a\x53\xaf\ \xd8\x45\x4c\xf5\x62\x2a\x54\x50\x9b\xc6\x84\x14\xd8\xa6\x80\x6c\ \x8a\xbf\x33\x59\xd7\x0f\x29\x67\x0b\xa9\xb2\xda\x22\x2c\x39\xb8\ \x47\x8f\x37\xde\xfe\x70\xc3\xe1\x32\x01\x31\xad\xe9\x91\x47\x16\ \x79\x6d\xca\x21\xc7\xa9\x6b\x44\xa3\x05\x58\xd1\x45\x53\xd5\x40\ \x9c\x36\xf5\xc6\x0c\xd5\x1d\x3e\xc4\x12\xfd\x08\xb6\x46\xc3\xab\ \x4d\xd6\xd8\xdc\x94\x57\xce\xd8\xb4\x76\xb6\x6d\x10\x0b\xb1\xf4\ \xbc\x1a\x88\x38\x34\x82\x2a\x24\x2d\x5c\x65\x38\x5d\x89\xd4\xe5\ \xba\x9e\x04\xe5\x27\x5a\x99\x8d\xec\x6c\x73\x09\x18\xf9\xa6\x6b\ \x30\x9a\x09\x52\x80\xe7\x3b\x90\x85\x2c\x64\x32\x11\x9e\x75\x8a\ \x57\xaa\x25\x98\x6a\x6f\x2b\x53\x5e\x83\x9a\xa7\x3c\x86\x89\x80\ \x09\xf1\x53\x4c\xe4\x26\x06\xa5\xeb\x49\xec\x40\x2e\xf3\x5e\x58\ \xa6\x33\x1d\xe9\x2c\xa1\x28\x56\x51\x4e\x51\xa0\xb2\x04\x35\x68\ \x45\x04\xd3\x61\x59\xe3\x2e\x97\xb3\xca\xc0\xa9\x89\x89\x79\x4c\ \x0a\xeb\xb4\xbf\xcd\xa5\x60\x22\xd5\x22\xcd\x2c\xba\x70\x89\x2e\ \x80\x26\x4e\x51\x34\x17\xa6\x48\xa2\xa8\x31\xc6\x86\x05\x52\x8b\ \x60\x4b\x68\x97\x93\xab\xd9\x8e\x8d\xf2\xda\xd7\x06\x7d\x37\x06\ \xe0\x21\x85\x52\x39\x9a\xe3\xc7\x96\x42\xc2\xbe\xb9\xec\x84\xaf\ \xba\x53\xf4\x10\x14\x3d\x38\x3d\x2c\x62\x66\x39\x4f\xc5\x24\xf7\ \xb2\xb1\x8c\xfe\x27\x63\x3a\xe4\x82\xaa\xf0\xb0\x14\x53\xdd\xc7\ \x3a\x63\xf8\xce\x64\x5a\xc6\xb2\x9a\x61\x4e\x20\x8d\x51\x4c\x62\ \x9e\xf8\x98\x39\xd1\x89\x32\x14\x49\xc1\x01\x27\x73\x91\x59\x54\ \x61\x16\x97\xe8\x99\xe9\x2e\xd7\x1a\x75\xd5\x28\x51\x66\x44\x23\ \x6d\x6a\xf1\x89\x9b\xc8\x24\x38\xbd\xf1\x1a\xef\x7a\xf0\x3b\x39\ \xd2\x91\x52\x9b\xe2\x17\x07\x43\x86\xaa\x3d\xf6\x91\x7b\xd1\x83\ \xcc\xfc\x14\xd3\x30\x41\x26\x28\x31\x46\xa0\x9b\xad\x64\x46\xb7\ \x5c\xe5\xea\x7a\x68\xf9\x81\x60\xae\xa4\xb2\xfb\xb4\xea\x54\xa6\ \x22\x22\x1e\xa6\x23\x02\xba\x0c\x01\x72\x72\x90\x16\x02\x0b\xc2\ \x18\xc7\x7c\x12\x7f\x72\x72\x90\x45\xac\x38\x19\x26\xf8\xcf\x95\ \x5d\x98\x45\x0a\x4c\xb7\x34\xa0\x88\x91\x35\xe7\x7a\x03\x0e\xce\ \x88\x4b\x95\x5c\xe2\x13\x75\xc4\xd1\x6e\xde\x18\xcc\x39\xfe\x6e\ \x0c\x0e\x85\x17\x51\x86\x82\xcc\x3c\x22\x65\x09\x3d\x38\x15\x48\ \xb9\xb7\x3d\xe8\x8d\x66\x9e\x2d\x3c\x69\x82\xb6\x97\x20\xea\xd9\ \xed\x30\xd7\x1c\x87\x11\xa6\xe4\xcd\xec\x81\x65\x0d\xdf\x99\x81\ \x11\x41\xba\x84\xc1\xb1\x4f\x65\xf2\xcb\x24\xcb\x12\xf3\xc5\x90\ \xc8\x13\xfe\x7f\xf4\xb4\x67\x49\x71\x50\x06\x89\xfc\x94\x34\x48\ \xeb\xe7\x25\x3c\xb7\x34\xd7\x8c\xd1\xa0\x3e\x79\x41\x56\xca\xa0\ \xd0\x85\xfe\x63\x04\xc9\xe8\x01\x4f\x22\x1a\xcc\xb1\x22\xe5\xa2\ \xfe\x32\xce\x6e\x92\xf3\xb1\x7e\xe8\x68\x99\x20\x3d\xd0\x26\xdf\ \x09\xc5\xc6\xb4\x10\x41\xdb\xbb\x2b\x21\xaf\x39\xb9\x6b\xbe\x94\ \x30\x51\xb2\xdb\x4c\xa3\xb1\xb6\xc7\xe9\xf4\x54\x07\x03\xa9\x40\ \x31\xe7\x30\xc7\x48\x86\x5a\x45\xfd\x64\xb8\x1a\x33\x4f\x8a\x28\ \xb5\xa9\xf9\x8c\x45\x15\xfe\x37\x55\x46\x91\x64\x75\xc1\xf1\x88\ \x08\x62\xc7\xd5\x95\x24\x63\x5f\x9c\x0a\x26\x1d\xc9\x3a\xd6\x0a\ \xce\x00\x39\xbd\xcb\xe3\x24\x97\x23\x02\xbe\xdd\xd5\x61\x6f\x72\ \xcc\x5d\x55\x6a\xd7\xca\xe5\x75\xa5\x2f\xa5\x1b\xae\xaa\x44\x9e\ \x02\x0d\xb6\x7b\x3a\x95\xdf\x6c\xe1\x97\x39\x4f\x1e\x15\x81\x22\ \x61\x90\x51\x1d\xf3\x98\x6d\x2d\x15\x9a\x9a\x6b\x4c\x44\x58\x10\ \x27\xe7\x6e\x96\xaa\x8a\xea\x6c\x41\xdf\x10\x8b\xad\x2e\xf4\x12\ \xbc\x8b\x23\x7a\x7d\xa7\xda\xda\xe1\xa8\x07\x9f\xf0\xd4\x1c\xe3\ \x1b\x5b\xd9\xd2\x56\xb7\x73\x93\xeb\x5d\x67\xa6\xd2\xca\x85\x8b\ \x89\xfe\xf5\xe3\xab\x5e\x21\x06\x31\x43\x96\xe5\x40\x0c\x8b\xdc\ \xa9\x44\x2a\x82\x81\xa8\x41\xa4\x89\xc5\x9c\x3d\x1b\x8b\x33\x4f\ \x32\xa8\x32\xd2\xa5\x2c\x0b\xca\x00\x4d\x79\x8e\xb2\xbb\x06\x65\ \x54\x8a\x46\xbb\x92\x45\xa0\x97\xa3\xa6\xf8\xd8\x30\x8b\xb9\x2f\ \x4a\x75\x42\x98\x1b\x14\xdb\x24\xc3\xa6\xa4\x84\x2d\x41\xbf\x76\ \x05\x2e\x62\x7c\xab\x5f\xfe\x46\x17\x94\x3a\xe6\xeb\xf6\x66\x06\ \x31\xf3\x3c\xeb\x9d\xdc\x33\x0c\xf7\x8c\x30\x58\x82\x28\xf8\xa7\ \x20\x81\xae\x9c\x5a\x43\xca\x0b\x6f\x6b\x22\x1a\xb6\x19\x74\xb9\ \xeb\x61\xd4\x39\x23\xc4\x22\x4e\x09\x1f\xd0\x3b\xd1\xf4\xa6\x16\ \xac\xbd\x81\xe3\x06\xe7\x38\x56\x30\x31\x29\x56\x7c\x13\x72\x21\ \x61\x8a\x98\x87\xd1\xb9\x89\x16\x96\x56\x52\x75\xac\xcd\x20\x0f\ \x78\x1c\x66\x31\x42\x5d\x91\xbc\xbd\x1a\x37\x8e\x20\x38\xd0\xaf\ \x75\x9f\x2c\xd9\x06\x69\x19\x42\xf8\x94\xd6\xb6\x28\xeb\x20\xfc\ \x35\x7a\xcb\x09\x74\xc6\x2d\xbf\x2c\xa9\x79\xf4\x6b\x0a\xba\x98\ \x82\x30\xf3\xf8\x62\xde\x7d\xed\xbc\xbe\x43\x71\xc8\x76\x04\x26\ \xef\x28\x49\xa4\x07\xe2\xab\x9c\xe7\x4c\xe7\xdb\x86\x52\xba\x8c\ \xfe\x81\xd3\x35\xa5\xe4\x8f\x50\x20\x12\xc0\x43\x2e\xcb\x1d\x00\ \x3d\x3d\xc9\xc1\x59\x0e\xa3\x71\x98\x81\x9d\x1b\x21\x46\x57\xba\ \x93\xf3\x84\xac\x95\xe5\x47\xe1\x27\xcb\xd2\xd2\x62\xf2\xb2\xa6\ \xf9\x10\x4c\x50\xbb\xf8\x77\xc1\x94\x17\x32\x37\xd8\x8f\x0e\xa8\ \x37\x78\x1f\x6c\x2d\x1e\x90\xf4\xe6\xc8\x45\x0e\x9b\x39\x86\xb3\ \x9d\xa5\x1b\xad\xe9\x61\xd3\x1f\x9b\xd8\x04\x27\xee\xbd\x89\x60\ \xeb\xd5\xaf\x05\xb6\x6b\xae\x60\xea\xa6\xed\xc5\xf2\x20\x04\x4f\ \x34\x84\x23\x6c\xb3\x44\x41\x59\xa9\x78\xae\x76\xf3\x98\x00\x01\ \x11\x58\x1b\x5d\xac\x11\x81\x22\x34\x9d\x92\xaf\xc2\xf8\xd4\x69\ \x36\xf3\xa5\x72\xf4\x89\x53\x93\xa2\xdc\xc1\x33\x1f\xa7\x4e\xd5\ \xaa\x23\x1f\x26\xe0\xfc\xc6\x35\x62\x72\x0c\x69\x26\xd6\x3b\x14\ \xf8\xc6\x37\x27\x2a\x71\x6f\x60\x53\x0c\x3d\xef\x8e\xa9\xc4\x80\ \x2c\xd4\x08\x51\x0e\xe1\xce\x66\xf6\xd2\x26\x8d\x67\x46\x3f\x97\ \x05\xd8\x5a\x43\xb3\x2b\x3e\x99\x59\x90\x17\x97\xda\x8e\x2f\x31\ \xc7\xad\x5e\xdd\x60\x45\x5d\x9f\x0e\x75\xb9\x6b\x87\x72\x64\x2d\ \xe7\x54\xb3\xbd\xa1\x61\xec\x76\xcd\xe9\xd1\x3b\xc7\xa2\xac\xfe\ \xcc\xc3\xee\x60\x73\x7d\xd3\x7d\x13\xa1\xb0\x39\xaf\xa5\xa4\xf7\ \x60\xaf\x74\x62\xb7\xe2\xeb\xd0\x73\xc6\xf6\x05\x3d\x17\xca\x0f\ \x6a\xf6\xa4\x91\xea\xdc\x3e\x24\x63\x0b\x5b\x20\x81\xd4\xad\x0a\ \x12\xaa\x6b\x5c\xdb\x1a\xbc\x7c\x07\x3e\x66\xe6\x1b\xf1\x06\x39\ \xc5\x3c\xca\x8a\x5d\x0b\xea\xe7\x24\x69\xb6\x91\x0b\xb8\x9c\x9d\ \x18\x73\xb7\x3b\x71\x7a\xe6\xb1\xf9\xae\x75\x1d\x8a\xd7\xef\x9c\ \xd7\xe7\xe1\xf7\xdc\xfc\xce\x6f\x99\x17\x04\xee\x70\xca\x1f\xb5\ \xb3\x3c\x27\xfd\x39\xd6\xf0\xd5\x36\x08\x1f\xa8\x60\x86\x74\x44\ \xfd\xc3\xe8\xea\x2c\x51\xde\x90\x8c\xaa\xa3\x31\x19\xef\xbd\xbc\ \x29\x4a\x0e\xbc\x0f\x32\xd0\x28\xc7\xf9\x74\xed\xbe\x96\xea\xe4\ \x2c\xe5\xa3\xad\x3a\xbb\xe4\x60\xba\xdf\x26\xfa\x1a\xc0\xf5\x93\ \x58\x15\xb0\x29\x7b\x7b\xef\xda\x2c\x52\xf2\x75\xc4\xe0\xbf\xfb\ \xdf\x47\x08\xd7\x4f\x84\xf8\x63\xdd\xd3\xf0\x69\x99\x3c\x29\xd1\ \x47\xf4\x41\x3a\x4c\xc0\x04\x6c\x81\xc5\x59\x1b\xf4\xb1\xce\xea\ \x74\x42\x16\x50\x5f\x04\xd5\x02\x45\x69\x10\x8a\x81\x15\x44\x5d\ \xd0\x8b\xe8\x0b\x6a\x7d\x1c\xd8\xc0\x57\x39\xf1\x8d\x61\xfe\x14\ \xc6\x9b\xa8\x9e\xaf\xed\x5e\xae\x19\x41\x15\xc0\x94\xde\x5d\x42\ \x59\xf0\x5a\xde\xed\x9d\xaf\x11\x46\x4c\x01\x5d\xfc\xe5\x18\x64\ \xd0\x5c\xb4\x00\x5f\x27\x41\x99\x00\x4a\x58\xf1\x51\xdb\x47\x88\ \xc0\x16\x28\xe0\x33\x38\x59\xc5\x81\x57\x50\xbc\x40\x2f\xe8\x81\ \x1e\x4c\xa0\xc6\xfd\x03\x09\xa4\x97\x06\xe2\x8e\x1d\xe9\x0b\x06\ \xf1\x4b\xb7\x81\x60\xa7\x7c\x14\x76\x60\xc7\x92\x24\x97\xcc\xb4\ \x5e\xfb\xed\x9d\xee\xed\xdd\x25\xcc\x9f\xed\xed\x9d\x0a\xe6\x5a\ \x0e\xc6\x1f\xfc\xad\x9d\x51\x4d\x4f\x0a\xfc\x9e\x0f\xce\xcf\xb3\ \x35\x88\xe3\x14\x20\x11\x5e\x11\x51\x95\x92\x3c\x1c\xe1\x02\x32\ \x8f\x87\x2d\x4a\xba\x20\x62\x27\x40\xa1\x1e\x2c\xc1\x69\x68\xdc\ \x3c\xc8\xd1\x7b\x81\x9c\xee\x68\x21\x32\xe1\x51\xf6\x99\x02\xb9\ \x95\x19\x6f\x2c\x07\x76\x7c\x89\xaa\x30\xc9\x0d\x51\x8e\x8f\xa5\ \xa0\xde\x55\x81\x94\xac\xa1\x1b\xde\x01\x2a\xce\xdf\xed\x05\x5b\ \xac\xc5\x9f\x0d\xba\xe0\xfd\xad\x9d\xf4\xd0\xdb\xfd\xc8\x12\x87\ \x1d\x15\x1f\x22\x5d\x27\x89\xc9\x10\x90\x80\x02\x2e\x9f\x21\x6e\ \x96\x02\x09\x47\x6c\x90\x04\x04\x3a\x43\x17\x50\xa0\xfe\xec\x70\ \x9a\x30\x91\xda\x05\x89\x5f\x1c\x11\x0f\x29\x64\xde\x06\x99\x95\ \x99\x35\x05\x72\x70\x4a\x6b\xd9\x47\x83\xb9\x8c\xfd\xc0\x49\x0a\ \xc0\x21\x1c\xee\xdd\xec\xad\xe1\x1a\xe6\x20\xd0\x9d\x47\xec\xd5\ \x22\x80\x05\xdb\x2a\xb6\xe0\x35\x05\xd4\x62\x90\xa3\x11\xdc\xe1\ \x13\x45\x99\x1e\x5e\x98\x51\x2d\xda\xfe\x44\x46\xb3\x0d\xa2\x02\ \x4e\x00\x0f\x9c\xce\x89\xd4\x85\x32\xb6\x0e\x32\x92\x51\xa6\xbc\ \x01\xe5\x69\x1a\xa7\xbd\x97\x43\x6d\xdf\xf7\xe9\xc2\xa9\x65\xde\ \xb8\x5d\x23\x8a\xd1\x11\x6f\xc8\x04\xc8\xad\x58\x16\x82\xa3\x26\ \xc9\x15\xfb\x9d\x21\x2b\xca\xdd\x2a\xaa\xe0\xde\xf1\x5c\xfb\xb1\ \xe0\x0b\xea\x1d\x0b\xe6\xa3\x28\x31\x41\x39\xae\xdd\x3e\x4a\x86\ \x27\x4d\x96\xad\x2d\x1a\xf0\x09\x64\xb1\xcc\x03\x21\x4e\x00\x38\ \x0c\x0e\x41\x39\x10\x48\x24\x23\x8c\x40\x5f\xa6\xd4\x84\xeb\x64\ \xc5\x25\x38\xe3\xd4\x84\x99\x98\x95\x95\x7b\xcd\x11\x29\x64\xa5\ \xc7\x79\xa4\x69\x5d\x4a\x06\xb9\x57\x1d\x91\x1a\x99\x80\x23\x5e\ \x59\x98\x4d\xde\x64\x3e\xc2\xa4\xde\xf1\x81\x3f\xa8\x63\x4a\xb2\ \xa2\x9c\xb5\xa0\xae\x05\x1d\x4a\xbe\x9e\x94\xc8\xfe\x22\x4e\x32\ \x51\xdb\xc9\x1c\xd2\xed\x24\x4f\x2e\x9a\xe5\x38\x1a\xe2\x2d\x42\ \x41\x4e\xc0\x37\xe0\x4b\x4f\xcc\x92\x70\x10\x8e\x53\x46\x20\x04\ \x76\xc2\x47\x4c\xdf\x14\x72\x41\x7a\x8d\x1c\x7a\x69\xe5\xe5\x8d\ \x81\xbc\x20\xc7\xee\x64\x90\xc9\x05\x13\x99\x38\x83\x40\x28\x8f\ \x82\xb4\xde\x1d\xde\x64\x4a\xf2\x81\x3a\xb6\xe5\x1d\xac\x23\x61\ \xb0\x63\xfe\xf1\xc1\x1b\xc6\x94\xee\xcd\x5e\x5b\xc2\x14\x2a\xd2\ \x64\x29\x62\x43\x3e\xde\x61\x73\x61\xd9\x3f\x2e\x1d\xa5\x05\x24\ \x20\xda\x45\x1f\x0c\xe5\x04\xe4\x83\x1a\x24\x62\x78\x79\x97\x6b\ \x20\x25\x63\x46\x60\x8c\xa4\x8b\x01\x48\xe5\xd4\x84\x8c\xef\x90\ \x5b\x17\x8a\xdb\xd6\x7d\xe5\x4c\x70\x5b\x58\xc6\x51\xaa\x6d\x10\ \xa5\x30\xcf\x0c\xc4\x0a\xc1\x31\xd1\x69\xd2\x1b\x36\x48\x49\x32\ \xb8\x67\x6b\xca\xe4\x38\xd0\xe3\x35\xc5\x9d\xde\xf1\x66\x3c\x4a\ \x89\x6c\xaa\x24\x5c\xb2\xa2\x2d\x82\x52\x5a\xe6\xa5\xc2\x11\x44\ \xc3\xd5\xd3\xd2\x95\x12\x71\x2e\x9c\x2a\x6d\x81\x19\x4c\x80\x19\ \x80\xc3\x14\x24\xe4\x2c\xe5\x07\xf4\xd9\x48\x56\x94\x44\x33\x6a\ \x9c\x47\x6d\x90\xf6\x89\xe7\x06\xe9\x4b\xa9\xfe\x95\x1a\x59\x5d\ \x9e\x65\xaa\x97\x4c\x74\xdd\xe3\x10\x1c\x0a\x5e\x53\x2b\xe6\x26\ \x7e\xc2\x64\x15\xb0\x23\xe0\x5d\xd3\x7b\xca\x28\x8b\xb6\x66\x11\ \xd4\x9f\x6a\x06\x5d\x7b\xc6\xdf\xbc\xd9\xa4\x11\xf0\x66\x68\x88\ \x12\xb3\x15\x15\x95\xf5\xa4\x12\x79\x52\x19\x28\x46\xe6\xe0\x00\ \x61\x4e\x00\x15\xbc\x42\x31\xa2\x8e\x42\x32\x4d\x41\xa9\xcb\x23\ \x6a\x9a\x47\x8d\xdc\x46\x9e\x98\x7a\x99\x42\x1c\x00\x4f\x44\x61\ \x90\x6b\x79\x10\xef\x5c\x5f\x65\x9e\xdc\x0c\x2c\x07\xcb\x18\xd9\ \xc3\xa0\x22\x0c\xce\x9e\x27\xc0\xa5\xaf\xd9\xe8\xda\x01\x58\xac\ \x21\x06\x6a\xfa\x03\x5b\xaa\x26\x9f\xc2\x25\x36\xc8\x99\x6f\xd2\ \x1c\x7e\xea\xe3\x81\x06\xe0\x91\x2a\xc6\x95\x1d\x5e\x1f\x2c\xd5\ \x2c\x38\x81\xcf\xd8\x0c\x0e\xf0\x81\xe3\x81\x03\x11\x55\xa9\x8d\ \x50\x55\xe1\x28\xa4\x85\xae\x4e\x86\x4a\xe4\xf5\xc5\xc1\x35\x82\ \x29\xf0\x94\x28\x58\xed\xc4\xbe\x70\x1b\x77\x76\x61\x45\x66\x23\ \x58\x22\x45\xd9\xad\x8d\xac\x54\x46\xae\x85\x42\x11\x14\x01\x27\ \xdc\xea\x1d\xd4\xe8\x4b\xf2\xd5\x1d\xae\x1e\x80\xe9\x23\xae\xb5\ \xa7\x6c\x16\xeb\x1d\xc8\x66\xa0\x56\x41\xfe\x32\xd0\x64\x28\x01\ \x29\x68\x18\x2a\x2f\x3e\x96\x63\x24\x06\x9f\x4c\xc4\x70\xee\x24\ \x0b\x38\xc1\x25\xcc\x02\x36\x68\x18\x63\x94\x81\x01\xa4\xc3\x13\ \xcc\xc3\x89\x58\xe8\xa2\x7c\xd7\x6b\x90\x11\xe1\x30\xa5\x53\x3e\ \x4d\xe8\x68\x9c\x22\xc4\xd1\xc8\x5d\x14\xb8\x99\xd5\x45\x65\x1f\ \x29\xb8\xc5\x11\x14\x0f\xb9\x69\x5f\xe6\x75\x00\xc0\x96\x1b\xf0\ \x74\xd0\x47\xad\x50\x7e\xd9\x2a\x27\x70\x82\x19\x70\xc2\xec\xc1\ \x69\x90\xce\x64\xaf\xfa\xaa\x4d\xf2\x17\xbd\xbd\x65\x15\xb0\x66\ \x32\x8c\xc3\x7b\x0a\xe9\x13\xe1\xda\x4d\x0a\x2b\x7f\x8d\x92\x3d\ \x39\xc6\x44\x50\x96\xb7\x32\x88\x83\x64\x6b\x17\x74\x01\xe9\x7c\ \xab\x3c\x80\x03\x84\x22\xa4\xa6\xa4\x8e\x18\x21\x62\xba\xde\x8e\ \x67\x3d\x4d\x2f\xbc\xab\xc6\x99\x82\x43\x39\xd4\xd7\xd0\xc4\x8c\ \xe8\x42\x89\x72\xe8\x11\x88\x03\xd2\x2e\x43\x56\x66\x65\x07\x30\ \xed\xd2\x8e\xea\xc8\x45\xe3\x27\x8e\xa1\xc3\x54\x2c\xae\x9a\xc1\ \x16\xe4\xea\xb2\x6e\xc6\x1a\x72\xed\x1d\x60\x03\x2a\x86\x6d\x4a\ \xd6\xe3\xc4\x96\x22\x3d\x66\xec\xb1\xee\xea\x38\x04\xea\xb2\xe6\ \xa5\x7a\x86\x06\xb3\x3a\xd1\xc3\xf9\xfe\xa5\x64\xf9\xa3\xe2\x11\ \x44\x19\xcc\x42\x16\xc5\xc2\x01\x51\x46\x16\x90\x40\x16\x50\xdc\ \x87\x35\x4d\xf4\x99\x0c\x8c\x38\x21\xd4\xb4\x4e\xeb\xe8\x6c\x2f\ \xf0\x81\x75\xb6\x8b\x7b\xd1\xab\x7b\x89\xe4\xf5\x01\xec\x35\x36\ \xed\x32\x88\x83\xd2\x3e\x6d\xc0\xe2\xeb\x11\xec\xab\x7a\xed\x92\ \xbd\xd8\xc7\x7d\xc0\x0d\x9f\xad\x01\x1f\x24\x2c\x15\x70\x42\x3a\ \xfc\x6a\x15\x70\xed\xec\xc9\x66\x9c\xf2\x01\xaf\x79\xc2\x1a\xf2\ \x26\x3d\xfe\x2a\x5f\x2d\xeb\xae\xa2\xe2\xb2\x66\xac\x11\x2c\x6b\ \x39\x1a\x2a\x3e\x82\x46\x6f\xde\xa1\x76\xcd\x6d\x01\xe2\xcf\x92\ \x2e\x95\xb7\x5e\xd9\x64\xe0\x40\x16\xcd\x42\xd2\xd8\x0c\x0b\xfc\ \x6d\x16\x5c\xaa\x89\x7c\x57\xe1\x2a\x4a\x27\xe8\x2c\xeb\x80\xaf\ \xe2\x22\xae\xce\x66\x5c\xcf\xa6\xd7\x26\x6e\x50\x1c\x34\x2d\x29\ \xec\xeb\xd2\x92\x1b\xfb\xb6\x6f\x87\x5a\xae\xef\xcc\xcb\x8d\x80\ \x63\x8a\x06\x59\x32\xf0\x41\x3a\x24\x2c\x16\xf0\x41\x28\xc1\x64\ \xc6\x26\xc3\x1a\x7a\x42\x11\x78\x82\x3f\x64\x86\xae\xa2\xa2\x6a\ \xae\x63\x4a\xf2\x26\x6f\xee\xaa\x04\x37\x04\x4c\x0d\x2f\xeb\x9d\ \xe5\xf1\x4e\x6c\x44\x08\xd5\xb4\xfe\xcc\x09\x4f\x2a\x6a\x84\x11\ \x44\x69\xe8\xed\x2a\xa4\xd2\x10\x94\x41\x32\x90\xc0\x3c\x4c\xe9\ \xe0\xd6\x6c\x67\x21\x2e\x43\x2a\x6e\xce\x32\x6e\x2f\x3c\x6e\xa4\ \x5c\xae\x26\x76\xc0\xe7\x92\x82\x3e\xc8\xaf\xe5\x7e\xee\x0e\x87\ \x29\xbf\x92\x82\xe6\x8e\xaa\xab\xfa\x86\x8d\x78\xe3\x79\xca\x8a\ \xe4\xec\x6f\x42\xf0\x81\x11\x98\x4e\x65\xe8\xe3\x4d\x0e\x70\x32\ \x30\xf0\x8e\xbe\x27\x0c\x6a\x46\x28\x68\xc6\x7e\xa6\xe4\x15\xa7\ \xed\xb2\x42\x80\x11\x90\x71\x17\x39\x51\x39\x92\x31\x0b\x18\x01\ \xd0\xdc\x0f\x3f\x26\x9e\xf3\x46\x9b\xb7\xaa\x42\x19\xac\xc2\xde\ \x96\x4b\x3b\x65\x41\x16\xf0\x42\xb3\x49\xa8\x02\x3d\x26\x03\x79\ \x16\xf9\x32\xae\x27\x4c\xa1\x27\xf4\x70\xfb\x22\x6d\x08\x20\x2d\ \xd2\xba\x2f\x22\xeb\x43\xbf\xb6\xaf\xfb\x32\x2d\xfc\xd2\x11\x03\ \xd1\x92\x58\x8d\x25\x7a\xae\x81\x13\x6f\x46\x32\x04\x14\x65\xfc\ \x9e\x8f\xa9\x5e\x7b\x2e\xab\xb3\xb2\xe0\xae\xd9\x6a\x17\x6b\xc6\ \x1a\xbe\xe7\x66\xdc\x01\x19\xc7\x72\x19\x83\x2c\xdc\xa6\x80\x1c\ \x20\x6f\x44\xd0\x93\x84\xed\x24\xc9\x3a\xdc\x62\x68\x18\x45\xe8\ \x2d\xa4\xaa\xc2\x15\x81\xeb\xfe\x3c\xec\x54\x52\x26\x26\x19\x95\ \x2b\x26\xe3\xcb\x0b\x3b\xe1\x20\x3f\x8d\x68\x7d\xd9\x08\x34\xed\ \xd1\x86\xc0\x0d\x84\x40\x08\x80\xc1\x31\x68\xee\x11\xf4\x70\xc0\ \xc2\x6f\xe6\x2a\x6d\x36\x5e\x20\xc8\x75\x4d\x6e\x8c\xe5\x12\xcb\ \x01\x04\x44\xc3\x66\x5c\x48\x3e\x8e\x46\x13\xed\xe0\x28\x19\x84\ \x1d\x46\xf1\xad\x4d\x6c\x0a\xdc\x81\x01\x27\xac\x3f\x73\x82\x17\ \xf3\x41\x2c\x43\x40\x32\x40\x00\x36\x78\x46\x13\x69\xd7\x2d\x43\ \x80\x67\x68\x97\x76\x11\xa9\x4e\x16\xd5\x92\xf2\x89\xc3\x7d\x6b\ \x2c\xb8\x52\x2c\x10\x33\x81\x2e\x95\x3c\xf0\x02\x32\x7f\x84\x67\ \xd5\x08\x22\x6a\xaa\x48\x13\x6e\x70\x84\x2f\x0d\x3b\xe1\x34\x8b\ \x58\x35\x27\xb2\x38\x2c\x32\x23\xef\x30\x38\x83\x29\xfb\xea\xc3\ \xbe\x6a\x27\x58\x11\xed\xf6\xe9\x84\x8c\xd8\x04\x8b\x09\x05\x49\ \x14\x84\xac\xbc\x73\x32\xb4\x6d\xb8\xb0\x60\x40\x0d\xe7\xfc\x44\ \x4b\x41\xdc\x0f\x13\x24\xc3\x3f\x2b\xe0\xea\x86\xc2\x66\x1c\x74\ \x32\x40\x30\x19\x13\xaf\x76\x41\xc0\x2d\xdf\x32\x2e\xff\x26\x96\ \x31\x48\xf3\x66\xd8\x44\x7c\x48\xa3\x5e\xf4\x2c\xac\xc2\x6a\x10\ \xb3\x2a\x50\x04\x2f\xb0\xfe\x4c\x31\xd2\xd2\x70\xd4\x2c\xba\x2e\ \x65\xd3\x84\x2f\x04\x2e\xee\xd3\x84\xaf\x2e\xd8\x30\x8b\x54\x73\ \xfc\x3e\xad\x60\x43\x72\xd3\xda\xf4\xbe\x66\x20\x46\xf1\x92\x62\ \xcf\x4b\x49\x3f\x19\x13\x67\xc1\x66\xac\x81\x01\x20\x74\x0a\x54\ \x81\x27\x60\x43\x9c\x3c\xc6\x9d\x10\x9e\xa1\x6d\x17\x42\x25\x03\ \xae\x72\x42\x61\x26\x6c\x87\xf0\x81\xb2\x16\x74\x68\x84\xc6\x44\ \x84\x12\xd0\xa4\x80\x67\x40\x00\xd0\x48\x04\x91\x76\xb0\x44\x53\ \x74\x86\x0d\x0a\x5a\xb3\x00\x31\x0f\x01\x31\x83\x6b\x16\xc8\x03\ \x0b\xaf\x6b\x78\xdd\xc8\x32\x62\x32\x0c\x2f\x50\x34\x3f\xa1\x5f\ \xaf\xc8\x08\x58\x63\xc0\x5a\x26\xc0\xf6\xb0\x3e\x48\xf7\xe7\x8a\ \x83\xf6\x59\xe6\x2e\xc5\xc4\x4e\xec\x84\x1e\x44\x20\x4d\xf8\x46\ \xd7\xa1\x6b\x51\xa0\x27\x04\x70\xf2\x64\x97\x63\x8c\xd2\x6e\x11\ \x84\x82\xdb\x59\x57\xce\x20\x9c\x85\x19\x84\x11\x78\x82\x68\x17\ \x26\x94\x02\x8a\x6a\x7a\xf2\xb3\xb2\x71\xc7\x6e\x30\x43\x7b\xc6\ \x2d\x3b\x34\x58\x13\xa8\x58\x2b\x55\xc9\x9a\x8e\xa3\x62\x03\xdf\ \xf2\xf6\x40\xd0\xb1\x1e\xf3\x82\xf6\xda\x05\x85\xb2\xab\x8c\xc8\ \x30\x72\x3b\xa1\x1e\xfe\x3c\x21\x23\x2e\x37\xd5\xe4\xb0\x76\x6e\ \x50\x4d\xf3\x30\x0f\xef\x70\x07\xec\xd2\x27\x9c\xb8\x1e\xe8\xc4\ \x76\xeb\xc4\xd5\xe0\x44\x05\x71\x5e\x53\xac\xf3\x1a\x94\x37\x57\ \xdb\x24\x01\x87\x36\x16\x84\xc2\x25\xf0\x41\x52\x13\x28\x93\x1e\ \x60\x0a\x98\x32\x04\x14\x81\x7d\x17\xe4\x46\x78\x71\xa1\x08\x34\ \xf2\x56\x51\x4d\x02\x0d\x57\x57\x51\x15\x55\x04\x08\x0b\x60\x1f\ \xa8\xc2\xb7\x46\x44\x75\x19\xc4\x45\x2f\xb8\x64\x58\x79\x47\x2f\ \x98\x31\x72\xaf\x71\x3f\x26\x2d\xa1\x34\x14\x3e\x4d\x86\x73\x78\ \x6d\x78\xd5\x26\x56\x72\x61\x4b\x37\xc0\x5a\x6e\x89\xa3\x6a\x8a\ \xb3\x8e\x4e\xdc\xf9\x9d\x6b\x4d\x20\x1f\x47\x8c\x33\x89\x08\xac\ \xc1\x3c\xcc\x38\x04\x90\x23\x36\xdc\xdd\x3f\x6f\x44\x28\x60\x36\ \x64\x00\x29\x28\xf7\xc1\x7c\xdf\x6a\x66\x20\x27\x94\xfa\x6f\x17\ \xe7\xb7\x69\x53\x76\x2e\x83\x92\x43\xff\x37\x0b\xc0\x36\xf2\x36\ \xd7\x3d\x7d\x6b\xa3\x96\x35\x64\x94\x81\xff\x44\xea\x01\xa9\xc2\ \x1b\xd0\x31\x0b\x80\x79\x52\xa2\x2b\xa7\x36\x4d\x99\x2f\x10\x50\ \x2c\x6e\x86\x43\xcd\xd3\xa8\x79\x6d\x28\x42\x60\x8b\x78\x07\x80\ \x73\x07\x2c\xc0\xfe\xc8\x2d\x80\xb0\x5b\x38\xaa\x2e\x76\x58\xfd\ \xc6\x8b\x2c\xe5\x12\xbb\x4c\x79\xb7\x76\x3e\x5a\x76\x2d\x84\xc2\ \xa1\x03\x4a\x5a\xae\x32\x1f\x60\x03\x1f\x10\xf9\xc2\x26\x2c\x21\ \xae\xee\x91\xdb\x6e\x66\xec\xf8\x25\x14\xb5\x6a\xcb\xf6\xdb\x75\ \xfa\x7f\xc3\x36\x6c\x97\x75\x45\xf7\xa1\xe3\x34\xea\xa8\x67\xd8\ \x01\x89\xcb\x82\x37\x6a\xaa\x2f\x15\x2f\xc8\x43\xe6\x94\xb9\x32\ \xd7\xf5\x51\xe2\xec\x9e\x0b\xf2\xe2\x4a\xa6\xa6\xd5\x42\x56\x1a\ \xb6\x38\x7c\x33\x24\xc7\x41\x1c\x9c\xb8\x76\xdf\xf9\x8a\xc7\xc4\ \x27\x08\x7b\x76\xef\x44\x4e\xfc\xc6\x4d\x2c\x50\xd7\x8d\xb7\xcb\ \xcc\x03\x57\xf7\x26\x36\x10\xf0\x25\x74\x71\x28\x68\x84\xe3\x01\ \xf4\x25\xe0\xea\xa4\x6f\x84\x68\x83\xfb\x3f\x03\x4a\x66\x61\xc3\ \xc8\x73\x88\x85\x14\xf5\x41\xa7\x76\xa6\x53\x44\x44\xac\x3b\x43\ \xdb\xb6\xc3\x79\x2b\xf3\xca\x7b\xd0\xfb\x0c\x0b\xac\x02\x53\xad\ \xfa\x6d\x9f\xb0\x3c\xe8\xb1\xd2\xf8\xc4\xc6\x63\xd5\x8d\x08\xbc\ \x33\x03\x32\x62\xa2\x74\x5f\x6b\xdc\x08\x4c\xf7\x35\x87\xc0\x31\ \xd0\x40\xc3\x3f\xfc\x89\x43\xfc\x4d\x8c\xfd\x02\xc4\xf9\x73\x7f\ \x37\x8b\xa7\xfe\x15\x25\x12\x07\x78\xa0\x9d\x67\x0c\x6f\x15\x5c\ \x02\xdd\xd7\x3d\xb5\x1f\x7a\xca\x27\xec\x08\x70\xc2\xde\x7b\x42\ \x28\xd4\x82\x27\xd4\xc2\x25\x64\x56\x6a\xcf\x3d\x66\x5c\x42\xa1\ \x5c\x75\xdc\x47\xb9\x28\xf1\x09\x04\x18\xc0\x43\x40\x80\x3c\xc8\ \x41\x45\x58\xd9\x2f\x8b\x7a\xf3\x06\xbd\x81\xaf\x02\x2a\x0d\xc4\ \xb7\x9e\x30\xb8\x2e\xc2\x16\x64\x01\x2e\x24\xb3\x8a\x2f\xd0\xe1\ \xa2\xbe\x5d\x77\x56\x2f\x88\x74\x03\x41\x73\x2f\xe0\x81\xae\xbb\ \x04\xc2\xff\x3a\x0d\x68\xb3\x31\x78\x3d\xd8\x4f\x37\x0d\xf4\xfe\ \x11\x04\xbb\x89\xaf\xef\x11\xf4\xbe\x4d\xf7\x70\x98\xfa\xac\xcf\ \xde\x44\x4e\x63\x0a\xe9\xb6\xca\x3c\x24\x03\xc8\xb3\x31\x7a\x37\ \xf0\xe0\xcf\xfd\xc9\xdf\xdd\xc9\xeb\xbd\x8e\x5f\x82\xc8\xef\x37\ \xcd\x7f\x06\xcd\xd7\xbd\xed\x36\x04\xce\xa7\xf6\xa0\x56\xd9\xe3\ \x27\x43\x16\x24\x43\x67\x48\xc4\x52\x1d\xb8\xa2\x42\x5a\xe6\xd3\ \x3b\x0e\x70\x7e\xa4\xf2\x76\x95\xbf\x41\x19\x94\x81\x3c\x88\xfe\ \x22\xcc\x03\x40\x88\x18\xf2\x86\xa0\x33\x83\x9d\x9c\x75\xea\xf4\ \x42\x61\xc3\x86\x09\x11\x1a\x34\xf8\xe6\xa0\x44\x85\x2f\x30\x2e\ \x64\xd8\xfe\xc9\xd0\x88\x7f\x1f\x41\x86\x14\x39\x72\xe4\x08\x52\ \x1d\xf4\x1d\x33\x76\xc5\x58\x88\x10\xc7\x60\x1e\x73\xe9\x52\xdf\ \x27\x9b\x71\x50\xea\xa3\x71\x44\x9f\xbe\x93\xa4\x7a\x9e\x34\xf5\ \xa9\x87\x2e\xa3\x0e\x15\xea\xea\x84\x07\xcf\x94\x25\x4b\xd6\x40\ \x30\x92\x22\x85\x91\x2a\xd8\xaa\x5c\xd2\xba\x55\x6b\x95\xac\x5d\ \xaf\x1a\x61\x32\x96\x09\xd5\x14\x65\x53\x60\x53\xab\xf6\x12\x9f\ \x5a\x7c\x2e\x2d\xba\x94\x0c\x1b\x04\xb3\x2c\xf0\xe2\x60\xa1\x97\ \x05\x04\x79\x7c\x0c\x24\x93\x07\x01\x6f\x61\xbd\x87\x71\x94\x49\ \x9c\xb8\x4f\x99\x32\x78\x1f\x47\x1e\xa2\xaa\xf1\x90\x81\x8e\x57\ \x19\xe0\x43\x62\x51\xba\x2c\x03\x09\x86\x4e\x88\x91\x61\x42\xd3\ \x13\x9d\x51\x9c\x58\x10\xe2\xc5\x5e\x19\x11\x22\x54\xe3\x91\x64\ \x6d\xdb\x20\x3d\xd1\x10\x67\xec\x03\xcb\x63\x34\x68\xe8\x0c\x7e\ \x32\xce\x27\xa3\xba\x3e\x2d\x88\x83\xb3\x43\x87\xe5\xa6\x9a\x07\ \xed\x30\xb4\xa8\xd2\xa5\x0b\xf1\xbc\x60\x3a\x43\x8d\x1a\x39\x72\ \x8c\x48\x65\x91\x82\xae\x57\xae\x5e\xaf\xaa\x35\x82\xcd\xc8\xd4\ \xb3\x64\xcd\x4e\x55\x9b\x36\xed\xd7\xb8\x73\x93\x19\x88\x45\x15\ \x2f\xfe\x93\xbd\x7c\xfb\x32\x20\x30\x03\x20\xf0\x8b\xb0\xc2\xfc\ \x03\x10\x32\x1c\x2c\x73\x0c\x32\x16\xfa\xb0\x4c\x95\xc4\x54\x79\ \x43\x15\x07\x57\x59\x45\x9e\x27\xb6\x20\x01\x97\xd0\x40\x6c\x4d\ \xa2\xd4\x40\x14\x2d\x44\xd7\x5e\x78\x6d\xa3\x11\x67\xbb\xcd\x45\ \x92\xb0\x60\xe9\x03\x0f\x8c\x39\xe6\x08\xe7\x16\xb0\x49\x17\x3d\ \x18\xd2\x05\xa3\x1d\x7b\xb0\x49\x48\x3d\x90\xfb\xc4\x94\x38\x4c\ \xc9\x91\x3a\xa3\xf0\x30\x6a\xa3\x4e\x66\x70\x66\x86\x37\x86\xe8\ \x03\x87\xef\xec\x5a\x0f\x9b\x64\xec\xeb\x4a\x3d\xf6\xd6\x9a\xca\ \xbd\xaa\xaa\xc2\x26\x2d\x33\xcf\x54\x2b\x99\xb6\xe6\x9a\x6f\xbc\ \xfe\x12\xdb\xab\xaf\x02\xf3\xcb\xaf\xc0\x14\x0a\xcb\x4b\xcf\xc2\ \x1c\x6b\x2c\xb1\xc8\x2a\x1c\xc2\xb1\x32\x26\x13\xf4\x31\x16\x70\ \x29\x23\x99\x45\x48\x20\xb4\xc4\x82\x28\x8a\xf4\xd1\x49\x0f\x4a\ \x91\xb4\x87\x2c\x7a\x61\x11\xda\x5e\xec\x34\xc6\x96\x42\xa0\xc1\ \x39\xe3\x7c\x84\xcd\x28\x52\x5f\x38\x8e\x48\x22\x8f\x3b\x2e\x48\ \x21\x4f\x25\xd5\x21\x12\xa9\x14\x41\x0e\xf1\xa8\x52\xf3\x2b\xf4\ \xd0\x53\x2b\xbd\xf5\xc4\x32\x2b\x57\x33\xd1\x34\x6b\xcb\x35\x93\ \xfe\xc9\x8f\xbf\xfe\xfe\x03\xb0\x40\x01\x05\xf4\x6b\x30\x3c\xf3\ \x2c\x6c\x15\xc8\x14\x1b\x14\x87\x55\x1c\x7d\x23\xdb\xc9\xca\xc8\ \x90\x5b\x42\x33\x93\x87\x17\x11\x22\x9c\x14\x52\x75\x69\xad\xf4\ \x52\x85\x50\xab\x74\x0a\x4e\x3b\x75\xd1\x93\xdf\x48\x89\xa3\x07\ \x22\x49\xf3\xf1\xd4\x05\x86\xfa\x84\x55\x56\x55\x2d\xb2\x48\x9b\ \x7a\x18\x2a\x60\x5d\xf0\x50\x68\x3b\x67\x2c\xeb\xe3\xbb\xa8\xce\ \x22\x0f\xab\xac\x78\x5d\x6b\xad\xf4\xc8\xac\x58\xd8\x8f\x8d\x3d\ \x76\x96\x14\xf6\x7b\x53\x4f\x67\x07\x23\x30\x5a\x08\x62\x91\xa7\ \x5a\xbc\x56\x49\x81\x5b\x6c\x1b\x1b\x94\x20\x43\xc1\x65\x41\xdc\ \x71\x1d\xc3\x05\x87\x2c\xb2\x10\x41\xdd\x75\x59\x83\x68\x35\xa4\ \x46\x3c\x71\x21\x5e\xe8\xad\xd7\xb6\x5a\xa6\xb3\xae\x93\x82\x6d\ \x02\xf8\x39\x58\x77\x14\x52\x6b\x21\x4d\x51\xf8\x93\x38\x72\xf4\ \x71\x29\x86\x8b\xc2\x63\x06\xee\x6e\x85\xe0\xd6\x5c\xb9\x3c\x8f\ \x63\xf6\xb4\xa4\xcf\xbd\xb1\x40\xbe\x6b\x58\xba\xd0\xac\x96\x89\ \xc4\xfc\x1b\xaf\x40\x08\xa0\x8d\x36\x05\x97\xf3\x8c\x45\x67\x3e\ \x59\x18\x54\x31\x55\x24\xec\x83\xf1\x0b\x77\xd6\x36\xe2\x45\xfe\ \xb6\xe0\x43\x8d\xa1\x55\x33\x4d\xa3\xd2\x0e\x8a\x48\xa2\x75\x3b\ \x77\x46\x84\xa6\x9d\x26\x69\x84\x4b\x36\x4a\x55\x0f\xae\xad\x46\ \xb2\x6a\x58\xab\x56\xf8\xc8\xae\x03\xf6\xda\x94\xa3\xb2\x4b\xb8\ \xeb\x1e\xf0\x10\x41\x04\xa8\xa2\x92\x63\xd8\xac\x3c\x09\xc5\xed\ \xb0\x34\xa6\x0f\x64\xf8\x3e\x8e\x45\x2d\x01\xf9\xa3\x36\xcf\x43\ \xf1\x1c\xfc\xd9\xfc\x0c\x90\x87\x64\x92\x63\xe9\x3e\x96\x0c\x0f\ \x77\xec\xcf\x32\x08\x1a\x74\xa0\x0b\xc3\x75\xb0\xcf\x9b\xe5\x21\ \x61\x8b\x27\x78\x10\xfa\x51\x77\x31\x7a\x8d\x47\x4c\x89\x16\xcd\ \x68\x67\x58\x20\xbd\xf4\x91\x92\xe1\xaf\x54\x1d\x2c\x39\x43\x42\ \xce\xc1\x90\xd3\x35\x9c\x9c\x64\x3a\xc5\x09\x18\xac\x7e\x94\xc0\ \x0e\x90\xa2\x1f\x63\x70\xca\x12\xe6\x91\x8c\x79\xfc\x8d\x4c\x58\ \xb9\x84\x22\x42\x01\xc2\x0f\x6e\xa5\x0a\x67\xaa\x5b\x59\xc6\x82\ \x97\xba\x39\x0f\x1b\x06\x58\x16\x82\x0e\xa5\x42\x97\x59\x2f\x70\ \x02\x92\x87\x3c\xbc\xe7\xbd\xf0\xe9\xac\x4f\x15\xf2\x56\x19\x2a\ \xc4\x38\x9e\x39\xa6\x4a\x3e\x2c\x1f\x09\x26\x30\x81\x6f\xc8\x01\ \x34\xa2\xd9\x5c\xea\x16\xf2\x10\x76\xb5\x26\x22\x22\x50\xfe\xc4\ \xff\x5c\x94\x8c\x26\x39\xc9\x5f\x5b\x13\xa0\x4d\x14\x86\xa4\x09\ \x8e\x71\x76\x60\x74\x9d\xbf\x12\xd8\xb5\xe6\xec\x6e\x0c\xf3\x98\ \x47\x54\x96\x70\x27\xb3\xd8\x07\x84\xa1\xb0\xa3\x22\x2e\xe1\x15\ \x62\x11\x0b\x64\xe3\xa9\x5b\x5a\x9c\xa7\x9f\x17\xbe\x4c\x85\x2c\ \xd0\x5e\xe0\x00\x17\x0b\x68\x29\xd2\x09\xdd\x03\x1f\xb7\x32\xd4\ \x2d\x55\x30\x8e\x20\xe8\x73\x0c\x65\x18\x37\x99\x12\xc9\x63\x0b\ \x49\xdc\x02\x2f\x4a\xd4\xb9\xd8\xc4\xe6\x34\x43\xab\x94\xe7\x3a\ \x21\x0f\xff\x61\xf1\x23\x8b\x28\xd8\x8f\xf4\xa0\x1c\xb0\x19\x87\ \x28\x47\x62\x4e\x73\x7e\x62\x8a\x7e\x38\x47\x81\xb6\xd4\xd1\x4d\ \x9e\x43\x3b\x53\xb4\xb1\x8d\x4b\x90\xc7\x1a\xa6\x85\x16\x5f\x69\ \x45\x11\x20\x14\x61\x09\x8b\xf5\xc7\x37\x81\x6c\x3f\xfa\x49\x06\ \xcb\x0a\x49\xc8\x55\xd8\xe5\x86\xf2\x50\x99\x22\xbd\x29\xa0\x64\ \xcc\xc2\x00\x8d\xfc\x9e\xce\xc4\xd5\x2d\x0b\xad\x53\x71\x93\xc4\ \x64\x25\xd7\x49\x25\x03\x74\x72\x02\xcf\x90\x9f\xfe\x46\xb4\x1a\ \xcc\x39\x11\x29\x9d\x60\x1a\x2b\x6b\x73\x09\x23\x85\xed\x38\x38\ \x91\xce\x72\x9a\x83\x4b\x52\x30\x90\x76\x09\x7d\x8e\xfe\x2c\x5d\ \x27\xcb\xe9\x98\xb1\x6b\xf9\x98\xc7\x53\x8c\xc9\x41\x5f\x2d\x93\ \x99\xc6\xbb\xca\x1f\x3f\x36\xcd\xed\xc9\x6c\x7b\x06\x68\xe1\x20\ \x1f\x54\x18\x97\xe1\x70\x91\x83\x51\xe4\x38\xc7\x79\x89\x72\x7e\ \xef\x5a\xab\xf8\x1e\xf9\x2c\x64\xc4\x49\x2a\xae\x50\x93\x84\x67\ \x68\x70\x91\x05\x7a\xda\x33\x94\xa9\x49\xda\x3e\xf9\xe9\x90\x17\ \xa8\x12\xa0\x24\x59\x84\x73\x9a\x33\xcb\xaf\x91\xe2\x08\xc0\xd1\ \xc7\x11\x18\x98\x50\x94\x4c\x47\x77\x63\x8c\x2a\x74\xa0\x8a\xd0\ \x51\x0d\x05\x27\x15\xed\xc1\x12\x7c\x27\x07\x5e\xd8\x65\x4b\xe8\ \xe1\x8a\xf1\xf2\x18\x4d\xb4\xf8\xa7\x62\x7e\x7c\xd3\x7e\x48\x4a\ \x15\x93\xea\xa7\x64\x2f\x73\x90\x21\x49\x06\xb8\x01\xb5\x4c\x9c\ \x8b\x5a\xc4\x2c\xc8\xe9\xbd\x46\x72\xeb\x71\x3e\xad\xe4\xa0\xdc\ \x19\xd9\x20\x1a\x91\x4a\x8b\x30\x43\x12\x83\x71\x39\x53\x22\x55\ \x35\xa3\x84\xc8\x0b\xfe\xd9\x54\x91\x8c\x80\x04\xa4\x00\x0e\x56\ \xf5\x11\x9d\x9d\xf0\x64\xab\x48\x5a\xa0\x50\xa0\x43\x55\xa0\x68\ \x75\xab\xa9\x8d\x6a\x07\x00\xb6\x46\x7d\xf5\x60\x0a\x53\xb0\x95\ \x1c\x06\x03\x81\xb6\x6e\xa5\x0b\x21\x0c\x61\x5c\xfe\x4f\x78\x16\ \x91\x56\xaf\x79\x54\x11\xac\xf4\x60\xa6\xa7\x43\xb1\x34\x30\xd8\ \x83\xd6\xa2\x16\x85\xd8\x59\x7c\xcf\x09\x4e\x98\x05\xb7\x72\x0a\ \xc4\xd0\x58\x12\x88\xe5\x8d\x6c\x4e\x8d\xc8\x02\x7a\x4e\x80\x04\ \x4d\xe4\x6c\x3e\x3f\xdb\x4f\x85\x30\x55\xb4\x22\x21\xc1\x11\xc4\ \x21\x13\x98\xe8\x66\x27\xa9\x5d\x8e\x58\x73\xc2\x40\x52\x88\x83\ \xc0\xe2\xe0\xc9\x11\xaa\x7a\xd5\xfe\xa6\x36\xb5\x10\x25\x0a\xc3\ \x3a\x21\x82\x29\xf0\xe2\x3b\x83\xd1\x58\x56\x8a\x6b\xc7\x5a\xc4\ \x75\x3e\xc2\xa2\x2b\x5a\xec\x36\x52\xaa\xe0\x50\x91\xd8\xe8\x9e\ \xb5\xf0\x14\x19\xbd\x6c\x53\x91\xd5\x4d\x56\x60\x66\x31\xce\xc3\ \x1e\x76\xbb\x8d\x9c\x85\x13\x56\x71\xbe\x4b\x56\xf2\x42\x92\x75\ \x27\x10\xcf\x0b\xa2\x64\xd0\x93\x0a\xf3\xd8\xa7\x28\x2f\xc2\x90\ \xfa\xdd\xef\x49\x11\x49\xc6\x2a\x59\x99\x0e\x04\xeb\xe6\x18\xe2\ \x00\x4e\x70\xa0\x1a\x94\xab\x22\x98\xb5\x47\x70\x49\x4b\xc4\xd1\ \x93\x29\x03\xe7\x37\xfe\x5d\x8e\xd6\x9c\xc4\x14\xdf\xfe\x2e\x6d\ \xdb\x73\x5e\x56\x6a\xd1\x05\x12\x76\x38\x7a\x7d\x9b\x26\x5e\x63\ \x36\xb8\x98\x69\x6f\x5a\x37\x94\x59\x9e\xae\xfe\xa5\x98\xc4\xc9\ \x4c\xb0\xc9\x5a\x04\x76\x0f\x1d\x63\xed\xc6\xa2\xbb\xdd\x5d\xc5\ \x8f\x81\x8c\x5e\x9f\x4e\xd6\xc7\x93\x0e\x0d\x0b\xb0\x90\xc4\x7a\ \x7e\x08\x73\x0d\x49\x51\x2f\xf4\xd0\x8b\xd7\x3c\x11\x69\xce\x30\ \x00\x94\xb1\xb8\x08\xac\x6a\xf5\x96\x28\x21\x33\x4c\x5e\x22\x0e\ \xa0\xe8\x43\x1c\x21\x20\xf0\x42\x4f\xa2\xe0\xe0\xf4\x64\x96\xa5\ \x22\xcd\x0b\xc0\xd8\x03\x0b\xca\x21\xad\xdb\x23\x56\x97\x2e\x11\ \x4d\xaa\xf8\x87\xd9\x7e\x4c\x0b\xcb\xa8\x82\x57\x96\xd9\xa5\x40\ \x24\x1e\x4f\x4d\x1f\xf4\xd7\x6e\x56\x97\x0f\x8b\x38\xf4\x8c\x11\ \xab\x9f\xee\x22\x36\x16\x84\xda\x29\xf9\x26\x2b\x5e\x78\x06\xd1\ \xbc\x8e\x0d\xcd\x10\xe4\x41\x05\x4d\xcb\x81\x52\x27\x02\xb5\x1e\ \x42\xfd\x24\xce\xc1\x37\x16\xa8\xfe\x5f\x69\x47\x45\xa4\xaa\xc5\ \x41\x27\x33\x91\x89\x4b\x0c\xbc\x65\xac\xd2\xce\xa0\x5b\x1d\x95\ \x71\xf4\xbd\x10\x5d\xc4\x21\x1f\xa4\xc8\xc7\x18\xd0\xfa\x1d\xe0\ \xa6\xc0\x85\x6c\xe9\x95\xb2\x55\xd8\x37\xe6\xea\xc7\x85\x7c\xee\ \xf3\xe0\x50\xae\xbd\x73\xf2\x29\x5b\x89\x33\xe4\x0d\x93\x91\x85\ \x45\x74\x3b\xbb\x87\x4e\x06\x8e\xbb\xa7\xfe\xdd\x47\x5b\x72\xbc\ \x97\x0c\xe2\x3a\x2b\x4d\xd9\xd0\xf4\x61\x11\x9a\xce\xc2\xa3\xe0\ \xa5\x34\x8c\x68\x6e\x35\x46\xfd\xdc\x2c\xfc\x5d\xba\x5a\xf0\x60\ \x28\xc7\xb9\x49\x07\x0e\xfe\x12\xdd\xb8\xa4\xca\x06\xbe\x51\x75\ \x74\xa1\x40\xe7\x20\x69\x01\x41\x6a\xd5\x01\x6d\xb2\x55\x53\xf0\ \x76\x0a\x72\x88\x23\x04\x92\x95\xac\xb9\x70\x6c\x79\x2c\x68\xb6\ \xb3\x01\x27\xdc\x69\xf9\x65\x70\x7d\x31\xa4\x5d\xae\xe5\xb2\x6b\ \xb9\x5c\x4e\x78\xe9\xa6\xa1\xbd\xed\xed\x9a\x2f\x16\xb1\x5d\xc0\ \xf1\x85\x12\x87\xd3\x73\xfb\x70\xb2\x92\xb6\xf4\xa3\xe4\x40\x4f\ \x70\xb8\xf7\x0d\x49\x0f\xd1\x69\x3e\x57\x54\x89\x60\x23\xea\xa5\ \xe3\x41\x58\xa3\x93\x12\x83\x07\x87\xcb\xfa\x5d\xf8\xed\x74\x51\ \x14\xae\x25\xc9\x76\xcc\x39\xb3\x72\x88\xc2\x14\x09\x3f\xe5\x8d\ \x71\xe7\x03\x5c\x4c\x1c\xd2\xea\x25\xa8\x30\x66\xb1\x4b\xf6\xf8\ \xce\x67\xc0\xf6\x79\xa5\xd3\x73\xf9\x63\x34\x74\xc3\x2c\x2c\xaa\ \xdb\x89\x9f\x05\x8d\xbd\x3b\x8b\x2e\xdc\x58\x7d\xea\xb6\x50\xa4\ \xe3\xe9\x63\xa0\x4f\x0a\x17\xf4\x7c\x02\xe7\x55\x33\xbf\xcf\x19\ \xb5\x68\x54\xc4\x43\x17\x4a\x5f\x2f\xfe\x70\xe8\x1a\xd6\x21\xb8\ \xc2\xfd\xb5\x7e\x55\x31\x27\x3c\xa1\xb4\x7b\x70\x90\x1a\x6a\x8c\ \x80\xe2\x46\x8a\xc3\x38\xe0\x45\xcd\x30\x68\x0d\xa6\x6f\xfa\xe2\ \x8e\x8f\x94\xab\xd9\xf6\xc6\xee\xa6\xc9\xcf\x5c\xca\x2e\xfa\x8e\ \x9b\xfa\xce\x90\x34\x64\x87\x08\x2f\xf0\xbc\x89\xfa\x12\xcf\xfa\ \xc6\x69\xfb\xb6\xef\xbb\x76\x66\xd2\x82\xec\x51\xdc\x09\xbd\xe2\ \x09\x44\x86\x80\x0f\x92\xe8\x19\xfa\x00\x73\x68\x25\x73\x3c\x87\ \x22\xfa\x89\x34\x36\xa5\xbe\x42\x22\x18\x5e\x62\x26\xec\xef\xfe\ \xae\x60\x26\x4e\xcb\x27\x6c\xeb\x48\x3a\x00\xc1\x84\xc2\x28\xba\ \x6a\x8d\xa6\xe3\x09\xab\xae\xc9\xf0\xe0\xac\x30\xc8\x8d\xae\x49\ \xb0\x4c\xca\x6e\xee\x0e\x40\xaa\x67\x3c\x06\x43\x7b\xec\xc2\x90\ \xfc\xae\xf9\x9a\x0f\x71\x62\x48\x67\xba\x69\xfa\xaa\x2f\x04\xe3\ \xe2\xfa\xba\x60\x11\xb6\x4f\x5c\x6e\xec\xd1\xc2\xcb\xfb\x4a\xe4\ \xe7\x28\x4d\x5d\x84\x6a\x02\xb6\x60\x4a\xa6\x08\xbe\x2e\x02\x45\ \x7e\x8d\x34\x7a\x81\x0f\xe2\xaf\x53\xbe\xc1\xe0\xb2\x0e\x08\xcb\ \x8c\xcb\x3a\xe0\xea\x70\x29\xb5\x3e\x61\x80\x8c\xc4\xff\x5e\x45\ \xf6\x04\x68\x6a\x7a\x40\xd8\xda\xfe\xc8\x8d\x48\x80\x07\x34\xe8\ \x6f\x2c\xf0\x2e\x08\xa9\x0b\xc9\xf0\x86\xc4\xf0\xe5\x5e\x0e\x15\ \xa3\xab\x5a\xc2\x65\x15\x35\xe3\xd0\xba\x6d\x0d\x4b\xd0\x0d\x1d\ \x8f\x5b\x1c\x0d\xc8\x2c\x89\x92\xd4\x05\x0f\x87\x06\xde\xb6\xa0\ \xc8\x4c\xa9\x73\x9e\x04\xd4\x44\xed\x18\x55\x64\x10\x7b\x21\x0b\ \x0e\xf1\x45\xb0\xe0\x37\x76\xed\x08\xea\xef\x25\xa0\x51\xbf\x7a\ \x82\xd5\xce\xac\x55\x00\xd0\x75\xa8\x03\x6b\xb8\x28\xf6\x9a\xa2\ \x07\xe6\x81\x04\xc0\x81\x04\xe6\xe1\x98\x38\x48\x58\xec\xaa\x90\ \xf8\x63\x3f\xba\x89\x70\xca\xb0\x9b\x80\x4b\x0c\xb1\xed\x91\xd0\ \x50\xfa\x5e\x6c\x11\x0c\x60\xc6\xbc\x4d\xbb\xe0\x70\xfb\x70\x6c\ \x15\x1e\xef\xdc\x20\x8b\xb3\x7e\x6e\x52\xe0\x2d\x1d\x48\x40\xb3\ \x28\xe5\xb3\x32\xa2\x17\x70\x62\x01\x42\xed\x18\x33\x82\x10\x7b\ \xe1\x15\xae\x88\x07\x41\x02\x14\x7a\xa2\x23\x69\x00\xd6\xf6\xeb\ \x23\x43\xf2\x1a\x71\xab\x00\x77\x24\xf6\x2a\x51\x8c\x1c\x4a\x6b\ \x92\x04\x55\x1c\x66\x0a\xe6\x81\x07\xc0\x01\x1c\xce\x71\x83\xe4\ \x68\x9a\x9c\x6d\x9a\xf6\xac\xef\xca\xd0\xf0\x0c\xef\x1d\xbb\xe9\ \xe5\xa2\x2f\xfa\x6e\xa8\xba\xfe\x16\x21\x1e\xbe\x2d\xf1\xde\x10\ \xb1\xe0\x70\x0e\x73\xd1\xbc\xda\x49\xe8\x38\xab\x44\xe0\x8d\x17\ \x70\x8a\x06\x8d\xa6\x13\x16\xe0\x23\xf5\x01\xdf\x44\x6d\x10\x3f\ \xad\x17\x3e\xa1\x16\x34\x72\x23\xe9\x2f\x26\xf6\x8b\x27\x84\x43\ \x1f\x96\xc3\xc1\xaa\xee\x6b\xbc\x2a\xf5\xfc\xeb\xea\xce\x48\x6a\ \x96\xa2\x8d\x66\xd2\x1c\xe5\xe1\xed\xe4\x60\xb9\xa2\xc7\x8f\x62\ \x21\x91\x50\x91\x70\x52\x11\x28\x0d\xf3\x30\xc3\x29\x19\xf8\x00\ \xd1\xae\xcf\xfa\xc0\x0d\x20\x1b\x8d\xb1\x20\x0d\xfc\xa6\x52\x5d\ \x86\x80\x05\x04\xa2\x32\x0f\x42\x0f\x80\x03\x6c\x28\xb2\x7e\x90\ \x51\xd4\x6a\xa1\x19\x5d\xc4\xc0\x16\xd1\xe0\x6c\x0b\x6c\x16\x20\ \x47\x06\x2e\x3a\xc6\x6e\xcb\x3a\x92\xd5\x6c\xc9\xf6\xaa\x8e\x49\ \x98\x02\x2f\x67\x92\x26\x6d\x92\x40\xe8\x43\x90\x0c\x87\x7b\x06\ \x2b\x7b\xb4\x27\xf0\x56\xf1\x1d\x03\xc7\x38\x6b\xe8\xba\x68\x4e\ \xf1\x1c\x13\x0e\x69\x4c\xbb\x70\xcc\xe7\x26\x4f\x2a\x2b\xd3\x05\ \xd5\xe9\xbd\x9c\x21\x45\x94\x43\x22\xf3\x8d\x10\xc3\x52\xd4\x76\ \xb0\x2c\x39\x92\x06\x80\x90\xeb\x44\x25\x47\x56\x67\x75\x0a\x08\ \x27\xaa\xea\x46\xa2\x03\xfe\xc1\xfc\xeb\x81\x6e\xaf\x8c\x08\x88\ \x49\x84\x8d\x07\x82\x61\x26\xb3\xc0\x0a\xd7\x80\x40\x14\xd3\x4e\ \xf4\xe3\x58\xe2\xce\xba\x10\x33\x9c\x0c\x20\x0b\x0e\x34\xe6\x92\ \xb3\xb0\x90\x12\x29\xd7\xb0\x1f\xbd\xed\x0d\x6b\xe1\x39\x01\x72\ \x5c\x7a\xac\x20\xab\xf3\x17\xd1\x8f\x5d\x92\x0c\xd4\x04\xc6\x28\ \xf2\xed\x89\xbe\x33\x3c\x35\x72\xfe\x68\x0d\x2d\x83\xa3\x38\x4a\ \x05\x39\x94\x23\xf5\xac\x0a\xaa\x18\xc8\x75\x7e\x89\x35\x4f\x92\ \x12\x8d\xc4\x00\x99\xa2\x07\x5e\x21\x1f\x78\x80\x07\x32\xc8\x8d\ \xe4\x61\x1e\x34\xe3\xc5\x06\x74\x16\x6d\x2e\xee\xaa\x4b\x38\xc5\ \x89\x01\xff\xd3\xf7\x34\x83\x41\xbf\xcd\xb0\x1e\x54\xc6\x16\x01\ \x0b\xb0\x60\x42\x4b\x30\x92\xd2\x67\x50\x76\x2e\x43\xbd\x74\x52\ \xc2\x6e\x22\x23\x68\x80\xde\xc5\x35\x8e\x11\x1c\x48\xf3\x36\xa4\ \x8c\xc1\xae\x51\x45\xfb\x65\x75\x16\xa0\x27\x82\x63\x27\x78\x09\ \x09\x55\x54\x48\x64\x49\x47\x76\x24\x55\x82\x64\x13\x5b\x45\x21\ \xd4\x60\x0a\x3a\xb1\x47\x6b\x12\x02\xce\x31\x0b\xae\xe7\xf7\x66\ \x71\x31\x67\xee\xf7\x1a\x35\x59\x14\x75\x31\x15\x55\x31\x15\x75\ \xe6\x88\x74\x39\xb1\xfe\xcb\x07\xf4\x31\x04\xbd\xad\x16\xae\x34\ \xce\x10\xcb\x09\x14\x07\x33\x22\xc9\xdd\xbe\xf4\x4b\x1d\x52\xd4\ \x58\x65\x6a\x5e\xa0\x3b\x95\xec\xd3\xf0\x2d\x1f\xd2\xf4\x36\xaa\ \x8c\xd5\x04\x26\x55\x54\x47\x48\x08\xee\x45\x3f\xf4\x6b\x1e\x08\ \xf7\x8a\xa3\x00\xd5\xd3\x57\x17\x06\xe2\x1a\x66\x0a\x63\x92\x07\ \xc8\xd1\x8d\x96\x60\x3f\x93\x01\x99\x0c\xb5\xb0\x40\x10\x04\x8d\ \xd4\x41\xbd\xad\x52\x1d\x35\x04\x91\xf2\x3f\x13\xcf\x5a\xaf\xef\ \x5b\x3b\xf5\x4a\x9d\xd3\xf1\x44\x95\x54\xc3\x25\x20\xa9\xf3\x54\ \x35\x53\x23\xbe\xf2\x47\xb4\xa3\x7e\x52\x07\x23\x3e\xe1\x15\x4c\ \xe1\x15\xe6\x61\x56\x6d\x83\xeb\x3a\x92\x46\x87\x15\x4f\x77\x95\ \x06\x54\xb4\x48\x58\xd3\x81\x5a\xe7\xcc\xfe\xeb\x6a\x68\x09\x39\ \x12\x26\x1f\xf2\x01\x1c\xf2\x13\x1c\xf6\x73\x1e\xb2\x80\x0f\x78\ \x00\x41\x37\x68\xfa\x3e\xd0\x51\xb1\xd5\x52\x8d\x74\x0d\x25\x75\ \xe6\x18\x85\x53\x9f\xe0\x5a\xa3\x94\x53\x13\x4f\x5c\xdf\xb0\x42\ \xc7\x05\x92\x04\x92\x0e\xd5\x55\x5d\x47\xe3\x3b\x79\xc4\x49\x52\ \x29\x48\xf1\x71\x34\x47\x00\x5f\x6f\x43\x11\xe7\x72\xa0\x4c\x32\ \x39\xe2\xa0\xaa\xfe\x00\x16\xcd\x88\xe2\x6b\xfe\x2b\x27\x3a\x32\ \x36\x79\x69\x3b\x99\x63\xc0\x40\xe1\x1b\xf2\x93\x50\xdd\xa8\x1c\ \xcd\xd1\x00\x48\x80\x62\xf9\x40\x0d\xbb\x8d\x33\x16\x15\x30\x0c\ \x2b\xf1\x38\xc3\x0f\x40\x36\x04\x39\x83\x53\x69\x0e\xd1\x38\x75\ \x42\xc7\x75\x0e\x23\x27\x43\xba\xcb\x0e\x5f\x36\x43\x63\x36\x2c\ \x7b\x40\x52\x17\x25\x67\xf1\x56\x67\xeb\x05\xbf\x6a\x2d\x54\xd8\ \x12\xa2\xfe\x4b\xa2\x3e\x52\x54\xc0\x06\x8d\x8c\x16\x27\x08\x4e\ \xd7\xac\x8a\x2d\xb5\x2a\x69\x09\x0c\x14\x82\x41\x1c\xc0\xe1\xe2\ \x30\x6e\x50\x23\x56\x59\x49\xe0\x6a\x37\xa3\x33\x38\x37\x1d\xae\ \x75\x31\xc5\xd6\x73\xb1\x60\x64\x43\x70\x64\xcb\xd6\xdb\xd2\x01\ \x0b\xae\x35\x59\x14\x2d\x6d\x17\xa1\x16\x1a\x6f\x11\x1a\xcd\xd1\ \x76\x46\x54\x4d\x35\x6e\xab\xf3\x22\x5e\x41\x2e\x3a\x35\x6f\xf5\ \x96\x95\x78\xa2\xd6\x6c\x84\x97\x10\x57\x81\x10\x4a\x38\x08\x97\ \x5f\x80\x29\xcb\x3c\x72\xd7\xfc\xcb\x45\xfb\x8b\x6f\x8f\x80\xea\ \xd8\x6e\x0a\xd4\x00\x0f\x78\x0f\x2a\x24\x36\x73\x39\x04\x0b\x52\ \x01\x0b\xd2\x61\x0b\x46\xd7\x13\x4e\xd7\xdb\x54\xb7\x4a\x51\xf7\ \x7c\x17\xe1\xfe\x09\xf8\x40\x6c\x13\x6f\x39\xf7\xf1\xfa\x6a\xce\ \x53\x0f\xab\x04\x67\xf7\xc6\xa2\xb3\x65\x75\x11\x77\xab\xb3\x0b\ \xe2\x2c\xce\x7c\xf7\x77\xeb\x6b\x04\x7c\x82\x27\x0e\xf6\x48\xb4\ \xe6\xbf\x92\xf6\xbf\x8c\x96\x24\x91\x36\xa1\xfc\x6b\x35\x8f\x57\ \x27\x94\xb6\x39\x78\x0b\x4a\xa4\xc4\x19\xae\xb7\xb7\xac\xf7\x77\ \xb2\x00\x1c\xd2\x81\x43\x8a\x20\x15\x28\xa7\x08\xb6\xa0\x4a\xbb\ \x2d\x1d\x3c\x61\x7d\x47\x97\x73\x47\xb7\x85\xdf\x37\x64\x41\xd6\ \x00\xe4\x37\x04\xd5\x76\x29\x0f\x4b\x20\xb3\xcf\x29\xdf\x96\x32\ \xf9\xd7\x05\xa9\x64\x34\x15\x61\x04\x86\xd8\x77\xcb\xb2\x2c\x09\ \x98\x14\x6a\xc7\x6a\x0a\x68\x35\x93\x44\x39\x92\xd6\x23\x6d\x44\ \xff\x28\xf8\x6f\x01\x17\x69\x63\x13\x6c\xfe\x6b\xed\x1a\x06\x5e\ \x5e\x72\x0a\xa6\x64\x08\xd4\x60\x09\x64\x92\x04\x9e\xa0\x08\x9e\ \x20\x7c\x3b\x03\x0b\x38\x43\x74\x17\xa1\x08\xde\x98\x74\x9f\xa0\ \x85\x47\xd6\x7d\x41\x16\x6d\xbf\x96\x7e\x27\xf4\x5b\xf1\x77\x87\ \xc7\x0d\xb1\x32\xe4\x76\x4f\xb5\x4a\xfa\xa0\x90\xfb\x2d\x6f\x8f\ \x38\x91\x6b\x63\x04\xd6\xc8\x8c\xb6\x18\x71\x15\x58\x27\x42\xf2\ \xe0\xa6\xfe\x78\x27\xfa\xeb\x68\x9b\xf7\xca\x44\x05\x47\x20\x6a\ \xed\x20\xec\x00\x37\xd1\x0f\x87\x00\x26\xe7\x21\x6b\xcd\xd8\x13\ \xce\x38\x8d\x65\x58\x95\x49\x57\x74\xe7\x18\x7d\xbd\x4d\x6c\x97\ \xd3\x31\xdf\xb0\x4a\xad\xb4\x16\xf6\xf8\x8f\x43\xf5\x8f\x07\xb2\ \x05\x2b\xb3\x31\xf2\x04\xea\x10\x59\x91\x89\x79\x91\x67\xa7\x45\ \x51\x82\x81\xae\xb1\x23\x61\x6d\x08\xcb\xf3\x18\xa4\xd8\x79\x25\ \x39\xeb\x46\xb2\x2d\xc5\xea\x6a\xa4\xe6\x05\x12\x06\x21\x28\x42\ \x50\x25\x76\x62\xcb\x51\x95\xd3\xc1\x0f\xf8\x60\x64\xbb\xcd\x74\ \xd7\xd7\x7c\xe5\x98\x53\xb7\x35\x29\x23\xf4\x75\x71\xb9\x1f\xff\ \xd8\x7e\xc7\x2d\x3a\x57\x90\xb3\x0c\x6f\x70\xe0\xcf\x88\x8b\xb9\ \x9f\x6d\x43\x11\x18\x4c\xb5\xac\xea\xca\x62\xc2\x25\x84\x50\x08\ \x89\x90\x99\xb9\x6e\x1a\x57\x2f\x45\x55\x13\x70\xc9\x0e\xe2\x2e\ \x22\x61\xc0\x78\x06\x9a\xa2\x8d\x2a\x16\x68\x32\x17\x1c\x4c\xb7\ \x7d\xd3\x19\x8e\x3d\x77\x8d\x49\xd7\x64\x4d\x16\x5c\x39\x15\x32\ \xb5\xaf\x16\xa1\x53\x32\x7d\xd9\x05\xc3\x69\x16\xb0\xa1\x88\xf1\ \xd6\x9f\x69\xfa\x45\x46\x20\x37\xa4\xb8\x1a\xb3\xce\x99\x0d\x1a\ \xa1\xfe\x17\xfa\x23\x0d\xba\xa7\x89\x10\xcb\x56\xb3\xa8\x57\x33\ \x96\x8c\x5a\x47\xfa\xc5\x55\x36\x71\x61\xdd\x28\x1a\x80\x66\x62\ \x33\xd7\x07\x7e\x6f\x64\xd5\x78\x7d\x51\x99\xa4\x61\x59\xab\x25\ \x34\x97\xc7\x0d\x97\xbb\xa0\x16\xc3\xba\x5c\x57\x30\x88\xc4\x29\ \xa5\x65\x5a\x80\x6b\xfa\x88\x47\x00\x26\xc6\xec\x37\x0a\xda\xe0\ \xd4\x52\x26\x78\x7a\x08\xed\x1a\xff\xea\x1a\x9a\xc7\x6e\x35\x93\ \x03\x3d\xf1\x2d\xd4\xf0\x8d\x96\x94\xda\x46\x77\x67\xed\x3a\x31\ \x0b\x7c\x34\xaa\x0f\x94\x51\x5e\x78\x8e\x5d\x59\xab\x49\xba\x96\ \x9d\xb3\x29\x6f\x4c\xfb\xc0\x5a\xbb\x40\x55\x32\x57\x21\xbb\x6a\ \x21\xad\x73\x76\xad\x41\x1b\x8b\x46\x20\xff\x84\x03\x2d\xf7\xcb\ \xcc\xb0\xce\xfe\x54\xfb\xa0\x83\xfa\xa7\x1b\x4c\x82\x95\xa3\x25\ \xbd\xf2\x2b\x05\xce\x26\xf0\x0d\x57\x81\x0d\x61\x9a\x5a\xd8\xdc\ \xa8\x26\x6d\xf6\x6a\xd9\x17\xab\xe7\x78\xa4\xd7\xb0\x31\x21\x1b\ \x87\xb5\x2b\xa5\x9f\xd3\x0d\xe1\x10\x97\x71\x39\x80\xd5\x3a\xb4\ \x69\xda\x13\xf2\x0f\x38\x14\xf1\x37\xd4\xf2\xaa\xe8\x1a\xff\x82\ \x90\xa7\x5d\x02\xcb\x0e\x56\x82\xcf\xcc\x38\x6e\xfb\x35\xec\xe7\ \xfe\xaf\xb9\xd3\x52\x3a\x81\x60\x18\x46\x17\x7a\x8b\x17\x30\x6a\ \x09\xe0\x1b\x68\x7e\x6f\x62\xcb\x19\x75\x2d\xb5\xa4\xf9\xb1\x4a\ \x6f\xf8\x39\xbd\xeb\x9d\x49\xd0\x53\x87\x59\xba\x09\x1c\x89\x27\ \xb9\xb5\x7f\x10\x08\x0f\xda\x99\x7d\x7a\x8a\xff\x56\x6b\x58\xb3\ \x80\xc8\xbb\x55\xf1\x8d\x3b\xe1\x54\x22\x31\x9c\x47\x30\x22\x3b\ \xc6\xa6\x49\x7a\x67\xc2\x78\xef\x40\xb3\x76\x01\x45\x7c\x62\xe3\ \x21\x3f\x90\x52\x29\x8d\xfb\x64\xd5\x36\xb9\xdd\xf0\xb9\x67\xba\ \xc0\x65\x5c\x91\x47\x20\x18\x44\xb2\xbb\x55\x7b\xb5\x17\xbc\x3c\ \x79\xfa\xe1\x40\x54\x60\x24\x9c\xbc\xb3\xa6\xaf\xc3\xdb\xa8\x91\ \x39\x47\x9e\x44\x6a\xa4\x44\x0d\x7e\x87\x17\x94\xd5\x33\xa4\x6f\ \xdb\x6a\xc8\xa4\x21\xd4\xb8\x51\x76\xfb\x60\x3c\xba\x67\x7c\xcb\ \x49\xe2\x5e\x82\x1a\xa1\xed\x3a\xc7\xa9\xb1\x3c\x83\x10\x9a\x27\ \x91\x80\x22\x3a\x6b\xc4\x9b\x4d\x93\x56\x96\x18\x6c\xd7\xd0\x73\ \x80\x98\x62\x22\xc4\x78\x0a\xd6\x00\x84\x9f\x40\x2f\xcf\x91\x17\ \xe4\x21\x0b\xcc\xc5\x00\xe2\x41\x40\x5a\xd7\x7f\x3b\xbb\xb3\x9b\ \x29\x80\xb9\x3c\xd1\x69\x1a\x0b\x7a\x9a\xb5\x79\xba\xcc\x92\xfe\ \x16\xbf\x80\x7a\x26\x8e\x20\x58\x97\x23\x35\x0f\x36\x27\xae\x2c\ \x8a\xd9\x32\x92\x63\x93\x2d\x8d\xc3\x4f\xb9\xf9\x0d\xb8\xe3\x77\ \x9e\x9c\xbe\xf7\xb2\xcf\xbb\x49\x43\x04\x64\x11\x86\xd8\xb3\x63\ \x5c\xd1\x65\x7d\xba\xbb\x7b\xc7\xf5\x75\xaf\xa1\x23\x36\xa5\x51\ \x5f\xdf\x7c\x71\x0d\x2a\x93\x79\xcd\xc8\x8d\xbc\x2d\x5b\x54\x48\ \x8a\x22\x22\xa8\x24\x50\xdd\x48\xa3\x33\xd7\xcf\x6d\x96\x17\x9c\ \xa0\xb3\x89\x18\xd1\x67\xbd\xda\x41\x3b\x46\xf0\xda\xa7\xfd\x56\ \x8b\x9f\xe3\x96\xd8\x52\xf5\x6c\xcd\xca\x62\xc2\xaa\x0e\x36\x8a\ \x89\xbd\xa8\x63\x09\xa9\x8f\xba\xc2\xf9\xda\x47\xa2\x44\x22\x66\ \xe0\x77\x2e\xc8\x98\x40\xd8\x13\x46\x40\x88\xa9\xdd\xda\xf5\x3d\ \xb4\xb1\xa0\x37\xb8\x1b\x35\xff\xf6\xd2\x73\x82\x6f\x75\x23\xbf\ \xae\x1b\x1a\x3b\xfd\xdc\xc5\xdb\xa8\xd3\xbd\xc2\xff\xda\x7e\xd0\ \x2c\x5e\x9c\xc1\xed\x36\x68\x09\x60\x7d\xdf\x31\x9e\xcb\x47\x00\ \xaf\x57\x8f\xd7\xca\x5d\x92\x79\x7c\xa1\xad\x6c\xd7\x0e\x36\x70\ \x8b\xfc\xa8\x51\x5e\xdd\x79\x24\xb0\x61\x25\xde\x13\xa7\x2f\xf3\ \x3d\xe3\x65\x9e\xcb\x19\xbd\xa1\x17\xf8\xd2\x27\x7d\xc1\xfe\x87\ \xd0\x46\x58\xeb\xa1\x4b\x9e\x69\x15\x1e\xb6\x31\x3c\xbd\xf5\xc0\ \x14\x92\x95\x0f\xe6\x41\x98\x63\x7d\xe6\x99\x5e\xd1\x9f\x51\xeb\ \xe6\x54\x9a\xa5\x18\xc7\x13\x5a\x2d\x71\xab\xaf\x17\x9e\xd8\xad\ \x59\x82\x7b\x02\xdd\x1b\x96\x04\x26\x76\x53\xf8\xb9\xe9\xc9\x7e\ \xd6\xef\x65\xdc\x09\x1a\x1a\x6f\x5c\xcc\x21\xdd\x35\x9b\x23\x47\ \xe0\x5e\xbc\x4b\xfe\xdc\x7b\x22\x18\xd2\x21\xa4\xed\x7d\xc0\xcb\ \x7e\xef\xab\xbd\xe6\xd1\x32\xc1\x67\x22\xcc\xbf\xdb\xcc\x4c\x1e\ \x6c\x92\xa4\xc8\x3d\x5d\x1f\xec\xfe\x8d\x3d\x21\xef\xf5\x9e\xef\ \x21\xbf\xef\xbd\xbb\xb5\xc1\x9c\xd7\x8b\xfa\x60\x81\x3c\x39\xa2\ \x4a\x35\x2f\xfd\x8c\x6f\x39\xe6\x23\x3f\xf4\xf7\x7d\x0b\xae\xe0\ \x03\xfc\x5d\xf0\xd1\x3e\xd8\x8b\x3a\x27\xc0\x46\xe0\x72\xa2\x61\ \xad\x74\xe9\x45\x7f\xf6\xc9\x9e\x13\xb4\x1d\xea\x1d\xb8\xd3\xc7\ \xce\xd5\x78\xc2\xa2\xba\xcd\xf1\xb5\x9c\xf6\x85\x3f\xb4\x49\x3f\ \xcc\x21\x1d\x93\x11\x57\x4e\x41\x01\x14\xc0\xc1\x4a\xb1\x40\xf6\ \x87\x3f\xfa\xf7\xde\xf6\xed\xef\xb4\x19\x57\x38\xc4\x01\x72\x39\ \xc3\x13\x9e\xff\xb3\xa5\xff\xfb\x67\x7f\x0b\x3a\x5e\x20\x1f\xb6\ \xff\x8d\xb1\xc0\xf1\xc1\x3f\xfd\x87\xbf\xc6\x63\xbf\xf1\x71\x16\ \xfa\xd5\x3f\xfe\x45\x1f\xf4\xe5\xbf\xfe\x41\x3b\x20\x00\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x87\xff\xff\xff\x1d\x84\xab\xff\xff\xff\xff\xff\xff\x15\x45\x1d\ \xa6\xc7\x90\xd7\x88\x8d\x94\x4a\x36\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5e\xc8\xf5\xff\xff\xff\xff\xff\xff\x5f\x8a\x3f\xde\x93\ \xb2\x51\x06\x1f\xff\xff\xff\x10\x27\x1d\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x5c\x85\xae\xff\xff\xff\xf6\xe7\xb7\x9d\xa8\xba\xff\ \xff\xff\x64\xa2\x94\xff\xff\xff\xff\xff\xff\xff\xff\xff\x13\x28\ \xa6\x0f\x27\x68\xff\xff\xff\xff\xff\xff\xd7\xc8\xe4\xd5\x0f\x0f\ \xff\xff\xff\x05\x05\x56\xf6\x89\xb9\xff\xff\xff\xb6\xa9\xb4\xff\ \xff\xff\x9b\xf2\xfc\xff\xff\xff\xf8\xae\xba\x13\x2a\xe1\xba\x88\ \xb5\x4d\x68\xf8\x22\x45\xea\xda\xe8\xf8\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xfb\xc8\xe7\xef\x66\xa4\xff\xff\xff\x08\x48\x74\xff\ \xff\xff\xff\xff\xff\x99\xc8\xfa\x7a\x88\xac\x7c\xa9\xad\xf0\x6f\ \x44\x79\x88\x3b\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xf9\xe8\xef\xd9\x90\xf2\xb6\xb3\xf2\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf6\xb3\xf1\x91\x29\x84\xfc\x8e\x5e\xff\xff\ \xff\xb7\xc8\xf2\xff\xff\xff\x4a\x4b\xe2\xff\xff\xff\x38\x56\xf6\ \x2e\x16\x56\xff\xff\xff\x6d\x68\xeb\x11\x38\x64\x97\x91\x81\x29\ \x2b\x12\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x95\xf5\xff\xff\ \xff\x09\x18\x62\x74\x89\xf7\xff\xff\xff\x97\xb2\xf9\xd6\xd9\xef\ \xff\xff\xff\xfb\xce\xac\x57\xa8\xe4\xff\xff\xff\xff\xff\xff\x5b\ \xb8\xea\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfd\ \xfa\x7e\xf4\xfc\xff\xff\xff\xff\xff\xff\xba\x8f\xf3\xb3\x68\xec\ \xda\xae\xf8\xff\xff\xff\x32\x49\xeb\x7d\x96\x46\xff\xff\xff\xff\ \xff\xff\xfa\xd8\xee\xff\xff\xff\xf5\x98\xb5\xff\xff\xff\xb7\xd8\ \xfb\xff\xff\xff\xff\xff\xff\xcc\x28\x65\xff\xff\xff\xff\xff\xff\ \xc4\xe2\x94\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf2\ \x2f\x2d\xff\xff\xff\x32\x47\x17\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x70\x59\xf3\ \x70\x51\x61\xff\xff\xff\xff\xff\xff\xff\xff\xff\x92\x56\xef\x93\ \x6f\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\xb0\x32\ \x61\xbc\xc7\x95\xff\xff\xff\x7a\xcb\xf9\xff\xff\xff\xff\xff\xff\ \x58\x92\xea\xff\xff\xff\x78\xb4\xf8\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x78\x14\xaa\xff\xff\xff\xb4\x6c\x6c\xff\xff\xff\x2a\x7b\ \xc9\xa4\x3e\xec\xf7\x91\x8d\xf7\xf6\xbc\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x84\xba\x84\xff\xff\xff\xff\xff\xff\x4b\x17\x2c\x99\ \xd8\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xde\x96\x95\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x19\x36\xaa\xff\xff\xff\x57\x76\x62\xd0\x78\ \xa1\x19\x37\xe1\x59\x76\xf9\xff\xff\xff\xff\xff\xff\xb2\x78\xa6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x4c\x58\x64\x69\x7b\xf3\x2d\ \x39\x13\xff\xff\xff\x27\x3b\xe2\xff\xff\xff\xb4\x57\xb3\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x41\xb5\xed\xff\xff\xff\x88\x23\xbb\x95\x98\x52\x99\x98\ \xb8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd9\xfb\xfc\xff\xff\xff\xff\xff\xff\x7d\x97\xb3\x1f\x98\xcd\x7e\ \x99\x6e\xff\xff\xff\x7e\x97\xfa\xb2\x58\x36\xb1\x78\xf8\xff\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\ \xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x3c\x48\x82\xc4\xc4\x8b\x18\x33\ \x6a\xdc\xc8\xb1\xa3\xc7\x8f\xff\x14\xfd\xe8\xf3\xc3\x22\xc8\x93\ \x28\x53\xaa\x5c\xc9\xf2\x60\xac\x3e\x7d\x8c\xbc\x79\x63\xc0\x64\ \xcb\x9b\x38\x73\xea\x64\x59\x51\xd1\x1e\x33\x33\x83\xbe\x11\x66\ \x73\xa7\xd1\xa3\x48\x93\x1a\x24\xa1\x48\x51\x0b\xa1\x50\x67\x2a\ \x2a\xaa\xb4\xaa\xd5\xab\x1e\x45\xde\x88\xca\xf5\x4d\x3f\xaa\x58\ \xc3\x8a\x1d\x8b\xf0\xa5\x8d\xae\x5d\x6d\x80\x25\xcb\xb6\xed\xd1\ \x9e\x3f\xd1\xca\x7d\xb3\xd6\xad\xdd\xbb\x28\x9b\x3e\x9d\xcb\x57\ \x11\xde\xbf\x80\x3b\x8a\x3c\xc1\xb7\xf0\xcc\x3d\x75\x03\x2b\x5e\ \x6c\xd0\x49\x9f\xb3\x86\x0d\x9b\x49\xcc\xb8\xf2\x5d\xb8\x7b\x64\ \x46\xde\x1c\x8b\xb2\xe5\xcf\x61\xf5\x6e\x1e\x2d\xd4\x86\x5f\xd0\ \xa8\xc5\x92\xf8\x71\xe2\x07\xe9\xd7\x41\x8d\x94\x4c\x4d\x5b\xa9\ \xd3\xbd\xb0\x73\xbf\x79\xe6\xb9\xb6\xef\x8e\x3d\x5b\x68\xd6\x4d\ \xbc\xc5\xe9\xdf\xc8\x41\x36\x75\x42\xbc\x39\xd4\xe3\xc9\xa3\x67\ \x74\x72\x02\xa8\xf3\xeb\x33\x5b\x49\xdf\x2e\xf1\xf6\x9b\xe1\xd8\ \x9d\xfe\x23\xe6\x4e\x1e\x21\x53\xa7\xe0\xc3\xab\xef\x5d\xde\x77\ \xd3\x1b\x23\xc8\xc8\x98\x2f\x23\xbd\xfa\xe6\xb3\xdb\x73\xbf\xd1\ \x8a\x5a\x29\x0b\x16\xe0\x23\x60\x0f\xf8\x8c\x01\x05\x19\xf7\x5d\ \xd7\x02\x7b\xfa\x31\x46\x42\x25\x57\x58\x80\x0d\x33\x20\x80\x80\ \x45\x0e\x18\x5e\x88\x0d\x80\x19\x1c\x98\xa0\x6e\x2f\x30\xd8\xe0\ \x65\x15\x41\x60\x02\x08\x1f\x80\x00\x86\x09\x2c\x9e\x58\xa1\x85\ \x58\x68\xf8\x0a\x36\xaf\xe0\x03\x45\x7d\x1f\x46\x66\x04\x14\xda\ \x40\x20\xe2\x88\x63\x95\x58\x05\x8b\x2b\x9a\x50\xe4\x91\x60\xa8\ \x98\x64\x85\x19\x32\xe9\x4c\x0f\x06\x22\x71\x20\x8e\x39\x46\x65\ \xc4\x18\xda\x98\xe0\x23\x90\x8b\x91\x00\x81\x89\x2d\xa2\xa8\x64\ \x92\x64\x96\xd9\x62\x92\x58\x54\x98\xe6\x07\xcc\x60\xe3\x26\x80\ \x3d\xbc\xf3\x87\x7d\x1f\x92\x81\x8d\x04\x5a\x56\xc4\xe5\x5f\x10\ \x0c\xd9\x22\x8b\x1f\xa4\x09\xc6\xa0\x60\x7c\x40\xe8\x8b\x20\x9c\ \xb9\x62\x92\x14\x82\xd1\x26\x33\x58\x40\x6a\xa1\x33\x36\x22\x48\ \xe7\x75\x23\x58\x80\x27\x8b\x5b\xee\x49\x56\x89\x7f\x86\x4a\x24\ \x92\x45\x1a\x69\xe1\x98\x2a\x9e\x28\x29\x16\xd8\x48\xc1\x2a\x36\ \xfe\x89\x2e\x89\x85\x33\xef\xe0\xf3\xce\x81\x97\xc2\x66\x84\x33\ \xa1\x76\xea\xe9\x55\x24\x08\x42\x42\x15\xa5\x8a\x6a\xac\xb1\x88\ \x56\x28\x2b\x33\x14\xa6\x08\x29\xb3\x63\xb2\x58\xa1\x04\x60\x60\ \x53\xc9\x3b\x23\x64\xd6\x9c\x11\x19\x6c\xfa\xe7\x8f\xbf\xa6\xa4\ \xc8\x33\x4d\x78\x7b\xec\xb9\xa2\x9e\x3a\x66\x92\x81\x36\xca\x68\ \x8c\xc5\x1a\x5b\x85\xb5\x48\x18\x91\x2b\x5f\xdc\x66\x29\x2a\x04\ \xe1\xbe\x45\x42\x0b\x66\x90\xd1\x83\xb9\xe8\x16\x2c\xad\xb2\x7f\ \x12\x6a\xe4\xa1\x65\x0e\x2a\xaa\xc3\x26\x48\x90\x8b\x33\x23\xdc\ \x8b\x16\xb7\x8c\xb0\x28\x01\xc1\xe0\xf6\x8b\x51\x53\xae\xc9\x24\ \x83\x05\x89\x1a\x6c\xb2\xa2\x46\xa6\x5c\xac\xc2\xa6\xc6\x88\x4d\ \x8c\xa9\x1a\x59\x85\x16\x7e\x9a\x90\x4b\x16\x15\x6f\xc6\x2d\x36\ \x2d\x4a\x00\x82\xb9\x1d\x7b\x0c\xd1\x6a\x37\x58\x37\x93\x0c\xf8\ \x94\x7c\xf2\xd2\xa1\x12\xba\xe8\xc2\x0b\xb3\x0a\x83\x33\x52\x60\ \x43\x45\x0e\x4a\x5a\xa8\x05\xcd\x78\x6a\x51\x49\x0a\x16\x0b\x05\ \xca\x9d\x12\x68\x23\x01\x16\x1b\x97\xea\xab\xd0\x59\xf5\x11\x0b\ \x57\x48\x60\xc1\xf4\xdc\xc7\xae\xf8\xc1\xdd\x28\x46\x8a\xcd\xfe\ \xd4\x53\x4b\xf8\x32\x16\x55\x00\x8e\xcd\xcc\x55\x10\x8b\x0d\xd8\ \xf8\xda\xb9\xb1\x9b\x31\x36\xde\xe2\xda\x6c\x5f\x54\xd1\x0f\x7b\ \x68\xcb\xd5\xc8\x74\x67\x6e\x6c\xa1\x7a\x3f\xea\xa6\xd5\xce\xc0\ \x30\xe1\xcb\x81\x33\xa3\xcd\xe0\xda\x54\x21\x01\xad\x08\xca\xc5\ \x2d\x9e\x04\x60\x93\x03\x01\x58\x10\x30\xbb\xd2\x41\x47\xfe\xcf\ \x79\x85\x09\x5c\xb3\xe6\xc0\x0f\xda\x2e\xb3\xd8\xdc\xd1\x66\xab\ \x39\x3c\x3b\x7a\xe1\x30\x06\xae\xfa\xe1\x74\xda\x5b\x80\x05\xda\ \x68\xe3\xcc\xf5\x39\xc8\xee\x4c\x0e\x72\xb3\xa8\xa7\xee\x0f\x29\ \xe2\x58\x61\x3b\x3a\xf3\x3b\xf0\xe8\xab\x0c\xc2\xcb\x13\x36\x1e\ \x23\x33\xa5\xeb\x6b\x42\x15\xd3\x9a\xa0\x8d\x05\xd8\x42\xb5\x07\ \x12\xce\xdc\xc9\xaa\x33\x7e\x0b\x00\x23\x66\xe7\x2d\xc8\x81\x8f\ \x22\x2f\x09\x5b\x50\x46\x80\x8d\x78\xa5\xef\x81\x4b\x52\xd3\xb3\ \x5e\x44\xbf\x84\x0d\xea\x67\x20\xa8\x1e\xc5\x66\x62\x84\x11\xf4\ \x40\x7e\x67\x8b\x11\x01\xce\x96\x83\x8d\xfd\xc9\x80\x07\xdc\xdd\ \x6a\x1e\x20\x8c\xf8\x98\x61\x04\x30\xbc\x17\x19\x48\xf6\xc0\x1a\ \x3e\x6c\x50\xcc\x43\x18\x91\xce\x84\xb0\x4d\x55\xc1\x19\xfe\x52\ \x4a\x81\xa6\x42\x95\x36\x8d\x99\x30\x54\xdf\x4b\xe1\x79\x64\x62\ \x84\x3d\x80\x22\x05\x29\xc8\x42\x25\xac\xe5\x8c\x14\x90\xc1\x5e\ \x50\x81\x42\x25\x1c\x68\xc3\x2e\x86\x09\x62\x16\x7c\x51\xbc\x18\ \xe1\x26\x66\x10\x2c\x62\x47\x3c\x16\x0a\x3d\x36\x18\x59\x08\x65\ \x0f\x23\x80\xa2\x14\x69\xa6\x05\x6c\xc4\x09\x09\x32\x08\x8a\xc0\ \xb8\xe8\xc5\x3e\xf2\x71\x61\x60\x3c\x93\x9b\x6a\x86\xa7\xb3\x9d\ \xb1\x57\xb9\x93\x0e\x09\xfa\xd0\x82\x9f\x8c\xc0\x06\x96\x6b\xe2\ \x0b\xa3\x38\x24\x09\x4c\xb1\x12\xd7\x8a\x0f\xb7\x98\xd1\xc7\x4e\ \xda\x50\x02\x8c\xfb\x53\xe3\x0e\x19\xb1\x16\x25\xd2\x37\x93\xb3\ \x81\xd1\xe0\xf8\x42\x0c\xc8\x64\x0f\x64\x80\xe5\x08\xb2\x40\xc7\ \x2b\xf4\xa0\x07\x57\xc0\xc6\x3b\xbc\xf0\x0e\x4e\x7a\xf2\x97\xe9\ \x63\x15\xda\x34\x96\x41\x3e\x6e\x6c\x53\x49\x04\xd2\x79\x6c\x60\ \x2f\x23\x98\x21\x92\x30\xac\x98\xbd\x46\xf0\xc2\x11\x50\xa3\x12\ \xda\xa8\x44\x16\xe6\xf0\x8e\x5b\xbe\xe3\x0a\xf2\x03\xa6\x38\x33\ \x07\x86\x34\x51\xcb\x42\xf1\x2a\xa4\x04\x08\x10\x3b\x64\x02\x49\ \x7c\x37\x78\x9b\x11\x5c\xf9\x06\x0c\x40\xd1\x0c\x4c\xfe\x34\x03\ \x28\x9e\x39\x4f\x38\x42\x31\x03\x59\xe8\x01\x35\xe2\x94\x85\x77\ \xcc\xa1\x07\x3c\x1b\xa7\x42\x4f\xe6\x33\x6a\x9d\xad\x7d\x69\xfa\ \xd3\x31\x37\xc6\xce\x1c\x38\x63\x53\xfc\xd2\x8f\x13\x5a\x00\x99\ \xa0\xc8\x22\x9f\x06\x00\x45\x66\x26\x19\xc7\x11\x60\x40\x06\x23\ \x78\x22\x14\x53\xf0\x82\x77\x18\x34\x05\x3d\xa8\x84\xd2\x16\x4a\ \xd3\x63\xc1\xac\x42\x56\x83\x95\xa8\x7c\x56\xbb\x12\xb2\x13\x1b\ \x04\xe0\xd4\x29\x2f\xd3\x94\xca\xe1\xcb\x95\xf6\x5a\x69\x0b\xa0\ \x48\x4d\x18\xa6\x00\x86\x48\x60\xe9\xad\x90\xd0\x83\xf3\xd5\x54\ \xa1\xd4\xea\x99\x18\x41\x90\xbd\x19\xa5\xd3\x42\x13\x9d\xa8\x29\ \xa3\x23\x12\x79\xbe\xc6\x0c\x2b\xcd\x02\x53\xf5\x19\x47\x96\x7a\ \x13\x09\x19\x90\xc2\x1f\xaf\xfa\xcb\x41\x9d\x33\x66\xe5\xcc\x1e\ \xd6\x76\x9a\x46\x63\xad\xb1\x32\xe2\x3b\x81\x02\x5d\xf7\x42\x95\ \x82\x02\x14\x30\x7c\x62\x40\x05\xfa\x8e\x6c\x6c\xb1\x60\x5b\x23\ \x25\x5d\xd1\xe7\xb3\x75\x59\xe8\x0e\x2f\xdb\xa9\xc1\xfe\xaa\x98\ \x1f\x70\x34\x3d\x58\xb4\xd2\x77\x5c\xe7\xcc\x68\xa2\xb5\x0e\x59\ \x18\xe8\x0b\x32\x30\x87\x06\x16\x0c\x88\x50\xb8\xfe\x82\x64\x27\ \x1b\xbc\x43\xb5\x8c\x7b\x9a\x25\xe2\x44\x73\x31\xd4\xa4\x2c\x31\ \xb4\x5c\x19\x8e\x66\x8c\xf0\xd1\x8f\x92\xd6\x0c\xd5\x6c\xeb\x3b\ \x52\x00\x05\x23\x20\x21\xa1\xe7\xc2\xc6\x1f\xbe\xc3\x23\xda\xd6\ \xd5\x61\x83\x62\x15\xf7\xe6\x1a\x56\x13\x24\xf3\x2f\x65\xfd\x8e\ \x2c\x30\x40\xcd\xc1\x06\x05\x03\x18\x98\x89\x2c\xd6\x0b\x15\x59\ \xc0\xd1\xa4\x4e\x85\x62\xbd\x64\xf0\x8e\x99\x1a\xcb\x02\xc3\x81\ \xae\x75\x3b\x99\x24\x53\x61\xd6\xb5\x1a\x33\xd6\x31\x85\x0a\x18\ \x12\xc4\x22\x16\xe0\x71\x26\x14\xcd\xcb\x41\xa1\x10\xd7\xc1\x1d\ \x64\xaa\x3f\xeb\x90\x02\x24\x90\x61\x04\x57\x38\x57\xd9\x98\x71\ \x85\x3c\xce\xa4\x07\xfb\xad\x2b\xa2\x2e\x64\xc6\x9e\x6d\xb6\xb7\ \x2d\xf1\x6c\x47\xa1\x32\x4f\x06\x73\xc5\x8d\x51\x31\x83\x3b\xd4\ \x8a\x58\x1b\x44\x93\x0c\xef\x08\xe7\x9f\xb0\xd1\xa1\x31\xf0\xa3\ \xb9\xdf\x19\x83\x7d\x43\x6c\x43\x0b\xc1\x2a\x79\xdd\x13\xf0\x21\ \x51\x0c\x92\x9e\x90\x20\x0b\xa0\xa0\xa7\x8e\xc4\xfb\x13\x57\x92\ \xd7\x0c\xe9\x35\x0c\x19\x9e\xd8\xd2\xa7\x36\x53\x60\x36\xcd\x99\ \x11\x78\x30\x06\x3d\xea\x97\xc8\x36\x2c\x67\xfe\x9b\xb2\x37\x4c\ \xbe\x2e\x59\x35\x4d\xc1\x03\x10\xdc\x41\x67\x50\xc8\x00\xc6\x7c\ \xc1\xc0\x13\x0f\x0b\x0a\x77\xa4\xa0\xcf\x40\x00\xc2\x9f\xe9\x69\ \x2f\x3c\x5b\x89\xbc\x59\xc8\x42\xbd\xec\x05\x05\x29\x1c\x0b\x1b\ \xad\x7b\x03\x19\x6e\x34\x13\x32\xc0\xa0\xa6\xcb\xaa\xd0\x2f\x4b\ \x27\x3b\xac\xcd\xb6\x94\x68\xc4\x06\x93\x35\x72\x80\x7e\x1c\xc0\ \x01\x0e\x08\x34\x10\xf0\x40\xe7\x02\x80\x02\xb8\xa3\xfd\x0e\x71\ \xf5\x9c\x02\x20\xf4\x63\xce\xad\xa0\xb3\x3b\x0e\x80\x49\x20\xe4\ \xfa\xcf\x7c\x26\x43\x7a\xa3\x97\x82\x77\xe0\xd1\x08\x38\x1e\x72\ \xa4\x60\x00\x85\xd8\xfc\xc1\xc3\x33\xc4\x34\x9b\x5a\x35\x21\x35\ \x01\x6e\xae\x73\x2b\xe7\xe7\x4a\x88\x2e\x13\x4a\x40\x0b\x8c\x00\ \xc2\xa8\x27\xa2\x88\x56\xdc\xfa\x7a\xe8\x06\x82\x03\x9c\x11\x68\ \x77\xd8\x62\xd0\x27\x25\x2f\x7a\xf5\x09\x8a\x2c\xb8\x43\xd5\x81\ \x3e\x00\x9d\xf1\x7d\x6a\x7c\x07\xda\xde\x87\xf5\x70\xac\x77\x64\ \x45\x32\x90\xe1\xb9\xbf\x3b\x1c\x14\x90\xf0\x8e\x31\x0c\xe7\x0f\ \x63\x30\x10\x14\xc2\xe0\xcb\x85\x82\x80\x19\x52\xc8\x81\x14\xda\ \x54\xb5\xaa\x0d\xd9\x60\x81\xfc\xd3\xfa\xfe\xa8\x20\xbb\xbe\xfe\ \x49\x0b\xd5\xdb\x1a\x23\x9c\xa1\x8f\xaf\xec\xa4\x22\xb7\xbe\x37\ \x10\x9c\x51\x09\x76\x03\xa1\x12\x0e\x60\x84\x36\x56\x3e\x73\x76\ \xeb\xc3\xde\xba\x06\xf4\xbe\x7b\xcd\x88\x70\xcf\xd9\xdf\xaa\xee\ \x07\xcd\x03\x7d\x3d\x20\xe8\x23\x03\x7f\xb6\xa2\x0c\x9e\x88\x2b\ \x32\x78\x21\xc9\xf3\x2b\x73\x90\xc7\x30\xa7\x37\xd4\x03\x0a\xfc\ \xc8\x46\x18\xc6\xc0\xf0\x8f\xff\xb2\x42\x14\x22\x5e\xc7\x2b\xc8\ \x32\x22\x11\x0b\x04\xf4\x83\xbb\x85\xe0\xb7\x28\x88\x19\x39\x00\ \x77\x12\x70\x1d\xb1\x61\x36\x09\xac\xbc\x00\x35\xd9\x09\x36\x1c\ \x50\x09\x55\xd3\x3c\xd5\x73\x76\x87\x9c\x9d\x51\xf4\x95\x93\xf1\ \xe6\xd8\x68\xf7\xbf\xf7\x0d\x04\x6b\x31\x02\xdc\x92\x57\x77\xe2\ \x75\x6d\xf8\xc6\x17\xfd\x74\x40\xe8\x41\xff\x7a\xc0\x5c\x86\x63\ \x1d\x04\xf5\x7a\x83\x0c\xa0\xe0\x05\x03\xcd\x07\x0a\x63\x68\x7d\ \x73\xff\x50\x89\xc9\x32\x8a\xe3\x91\x0a\xdc\x8b\x88\xd4\x39\x37\ \x55\x8d\x78\x55\x80\x54\xdc\x47\xac\xdd\x61\x9a\xcb\xef\xd8\xb8\ \xfc\xb7\x9d\xe1\x8e\x27\x4e\x45\x27\x81\x4e\x35\x23\x0a\x8f\x78\ \x77\x14\xe2\xfa\x87\x95\x39\xce\x8b\xfe\x9e\x7c\x55\x67\x61\xce\ \x29\xa0\x3c\x10\x74\x3e\x7d\x3c\xc8\x19\xf1\xaa\x76\x87\x3e\xce\ \x7f\x3d\x46\xb0\xb3\x90\xd5\xc3\x02\x19\xdf\xd4\x3f\x91\x87\xe1\ \xd9\x32\x80\x78\xc4\xf3\x68\x84\x7a\xc8\xa0\x75\x32\x10\x06\xd6\ \x55\x21\x55\xf0\x01\xf4\xc3\x2c\xf0\x93\x22\x17\xb7\x3c\xcc\xc0\ \x26\xce\x53\x80\x85\xa3\x80\x05\xe8\x3e\x17\x32\x42\xc7\x07\x6e\ \x3a\x87\x72\xcc\x77\x58\x85\xe0\x04\xe3\xc6\x10\x8a\x80\x6f\xac\ \x96\x7e\x05\x50\x08\x18\xe0\x46\xb2\x90\x7d\xf7\x56\x78\xe3\xb7\ \x79\x74\x66\x0b\x8a\xc7\x79\xa8\x16\x68\x78\xe0\x00\xe6\xc7\x74\ \x9a\xa7\x0f\xa8\xc6\x78\xec\x64\x81\x3a\x27\x4c\x16\x42\x2c\x67\ \xc2\x0c\x61\x20\x7b\x32\x41\x06\x3c\x00\x05\xf5\xc0\x41\xf5\x40\ \x06\xcf\x16\x5b\xd6\xe5\x34\x0b\x93\x2c\x8f\x12\x33\x85\x83\x6d\ \x17\xa4\x6d\x7f\x73\x4c\x28\x57\x3d\x65\x83\x0d\xcd\x77\x82\x85\ \x00\x0a\xad\xf0\x81\x0b\x41\x02\xeb\x66\x74\xee\xa6\x79\x74\x56\ \x08\xc6\xf5\x06\xeb\x05\x0a\xfe\x56\x09\x74\xc6\x6a\xfb\xc6\x6a\ \x7d\x26\x67\xea\x66\x7e\x7c\xb8\x78\xce\x90\x6a\x3a\xc8\x78\xee\ \xd7\x78\xfd\x93\x7c\x9f\xb3\x32\xfe\x30\x80\x04\xdf\x91\x7f\x5e\ \xb7\x7a\x06\x07\x7b\x63\x90\x0d\x52\x20\x05\x30\x20\x57\x68\xb6\ \x39\x29\x82\x6d\xe8\x62\x64\x6e\xc2\x3d\xa0\xe4\x26\x66\x53\x47\ \xd6\x47\x06\x63\xd8\x67\xee\xf0\x7c\x38\x41\x02\x07\xc0\x78\x81\ \x96\x7d\x24\xc8\x81\xc3\x56\x08\x32\x77\x73\xa9\x16\x83\x30\x68\ \x7e\x05\xa0\x6b\xac\x86\x07\xb7\x68\x83\x35\x98\x6a\xa8\x96\x86\ \x84\xb8\x72\xd7\xf3\x39\x9d\x58\x32\xd5\xc2\x75\x79\xf4\x7f\xab\ \x87\x04\xfc\xc0\x0f\xd1\x50\x6d\x97\xb8\x50\xe7\xc4\x66\x6e\x42\ \x46\x84\xd8\x7c\x2a\x28\x73\x07\x60\x86\x0a\xa1\x08\xac\x38\x67\ \xb9\x98\x7e\x9c\xa7\x8d\x4f\xe4\x0e\x95\xc0\x7d\xab\x16\x68\xb6\ \x30\x8e\xee\x90\x8b\x7c\x58\x00\x05\x60\x0b\xe6\xe7\x8b\xbf\x28\ \x8c\x3d\xe8\x78\xc6\xd8\x89\xdc\x93\x28\xcc\xc0\x0f\x3e\xd6\x7a\ \x00\xc9\x0f\x30\xc0\x0d\x8d\x32\x8d\x93\xd5\x50\xb5\xc3\x7d\xec\ \xd6\x7c\xb9\xa8\x7e\x7c\x57\x36\xdd\xa8\x13\x9f\xb0\x6e\x0d\x39\ \x8b\x91\xa7\x6b\xe9\xd8\x6e\x74\xc6\x78\x3b\x37\x7e\xd3\xd7\x7c\ \xba\x36\x92\xad\xa6\x78\xab\xd6\x8b\xbf\x28\x88\xf9\x48\x00\xc4\ \x88\x0d\x78\xb7\x3d\xcc\x30\xfe\x28\x39\x00\x03\x30\x80\x05\x86\ \x72\x37\x31\x89\x90\x26\x13\x72\x75\x73\x71\x42\x68\x30\x0e\x15\ \x23\xdf\xc6\x08\xda\x58\x79\xea\xa6\x2f\xe0\xe6\x8d\x09\x41\x02\ \x33\x87\x0d\xec\x56\x73\x8d\xa7\x0d\xe0\x77\x73\xe9\xd8\x6b\x35\ \x57\x78\xe9\xf8\x91\x9b\xc7\x91\x76\xf8\x8b\xac\x66\x0b\x30\x48\ \x8f\x16\xc9\x08\xc7\x44\x88\xce\x10\x3b\x00\xe4\x0c\x49\xa6\x89\ \x3a\x89\x89\x6d\xe7\x22\x47\x82\x22\x18\xc7\x2c\xf4\x03\x06\x56\ \xd5\x33\x68\x63\x42\xe1\x06\x0a\x85\x30\x7e\x7e\x77\x79\x2d\xa2\ \x05\x9f\xa0\x94\x08\x71\x6b\xd8\x98\x7c\x29\x87\x72\x2e\x78\x73\ \x36\x97\x78\x40\x70\x00\xd3\x87\x74\xf8\x66\x92\x46\xc7\x8b\xef\ \xa8\x7e\xea\x26\x88\x7f\xd9\x92\xb1\xf3\x0a\xce\x00\x29\x6d\x09\ \x41\xa1\xb2\x3e\x07\x89\x43\xf4\x13\x7c\x72\x77\x90\x44\x54\x3b\ \x16\x48\x00\xce\x50\x82\x29\x40\x96\xc8\xb7\x29\xe0\x56\x09\x84\ \x79\x10\xe7\x16\x95\x28\x77\x79\xd9\x94\x78\xe1\xb7\x6f\xb9\xe6\ \x0e\xc2\xd0\x67\xa0\x50\x00\x81\x56\x78\xd6\x12\x79\x85\x37\x8b\ \xab\x76\x99\x35\xc8\x74\xed\x87\x6e\x2c\x87\x3d\xb2\x03\x2b\x6c\ \x19\x9a\x4c\x73\x71\x86\xfe\x72\x2c\x7e\x62\x97\x6d\xb2\x53\x6e\ \x42\x51\x2c\xc7\x97\xee\x40\x7e\x81\xc6\x90\x81\x76\x9b\x4b\x01\ \x99\xd5\xb3\x73\x91\xb9\x8a\x2c\x68\x8e\xc3\x49\x92\xfb\xa4\x67\ \xda\x37\x99\x24\x39\x92\x8c\x67\x8c\xec\x96\x05\x19\xe0\x0e\xcb\ \x15\x50\x16\xd0\x3f\x39\x70\x9d\xd8\xe9\x49\x20\xe0\x2a\xf6\x05\ \x4a\x04\xc4\x08\x1b\x60\x0b\x80\xd6\x6e\x10\xea\x6a\x63\x48\x67\ \xdf\xc5\x12\x45\x47\x00\x3b\x47\x78\x1c\x79\x73\xe9\xc7\x67\xee\ \x60\x00\x41\x87\x65\xa6\x78\x74\xed\x46\x9c\xe1\xd7\x74\xee\xe0\ \x0c\xda\xc0\x92\xd2\x09\x04\x89\x96\x68\x51\x94\x01\x19\x70\x0a\ \x16\x80\x75\x07\x3a\x59\xc1\x37\x24\xc5\x62\x3b\xda\x60\x51\xfa\ \xa0\x78\xeb\x86\x07\x25\x78\x7d\xeb\x25\x0b\xb2\xe8\x0e\x65\xa8\ \x13\x24\x50\x74\x8d\xc9\x91\x2b\xd8\x6b\xcd\x27\x0c\x23\x39\x9c\ \xe7\xa8\xa4\x2e\xe8\x67\xe7\x08\x92\xd3\xa7\x73\xc8\xe7\x7d\x4b\ \xd7\x03\x89\xd6\x03\x19\x80\x0f\x30\x60\x76\x4d\x73\x37\x29\xc3\ \x26\xcc\x82\x93\xcc\xc2\x93\x39\x8a\x2e\x45\x62\x21\x3d\xf3\x50\ \xfa\xe0\x03\x3a\x28\x8e\x46\xea\x86\x71\xb8\x6e\x2e\x97\x13\x24\ \x90\x6e\xfe\x36\x82\xfe\xe3\xd7\x90\xdb\x58\x67\x54\x7a\x00\x37\ \xa7\x6b\x00\x07\xa2\x1e\x5a\x73\xe3\xf7\x91\x6a\x95\x68\x97\x44\ \x95\x4f\x72\x05\x05\xfa\x30\x77\x43\x28\x2e\xc0\x0d\xdc\x00\x0d\ \x2e\x70\x37\x1f\x00\x0d\x77\x60\x3c\x77\x40\x05\x30\x60\x3c\x0d\ \x68\x28\x06\x9a\xa3\x17\x77\x7c\xd8\xb0\x01\xfa\x30\xab\xbc\x58\ \xa4\xd7\x77\xab\xfa\xe0\x7e\x40\x20\x2c\x80\xba\x8a\x36\xc7\x78\ \x87\xe7\x6f\xfa\x26\x0c\xfa\x34\x9c\x22\x4a\x67\x90\x19\x99\xba\ \x36\x9c\xc8\x75\x58\x7f\xb6\x82\x8e\x49\x63\x89\x46\x45\x2f\x10\ \x53\xb8\x04\x60\x44\x82\x71\xa8\x4a\x05\x31\x70\xaa\x54\x40\x05\ \x1b\x07\x0d\x6a\xca\xa6\xcc\x22\x05\xa5\x6a\x3c\x93\xe8\xa9\x6a\ \x1a\xa7\x05\xb3\x24\x12\xe5\x9a\xb6\x30\xab\xa8\xa6\x0f\xf4\xc8\ \x8b\xbc\xb8\x6e\x2c\xd9\x72\xea\x59\x10\x68\x38\x78\xfd\xd3\x78\ \x19\xc9\x79\x89\x87\x5c\xcd\x4a\xa5\x95\xb0\x35\xda\x70\x00\xd8\ \x70\x00\x78\xf0\x67\x66\x20\x03\xfa\x14\x30\xa0\x30\x45\xcd\xd7\ \x4a\x6d\x25\x45\xce\xf0\x02\x51\xd5\x4d\x3d\x30\x53\x58\x00\x03\ \x61\x50\x0a\xd1\x40\x93\x54\x10\x0d\xd9\x90\xaa\xcc\x20\xae\xa1\ \x2a\xaa\xcc\xd2\xfe\xad\x39\x70\xae\x94\x28\x05\x06\x39\x89\x1f\ \x90\x32\xec\xba\x39\x31\xa3\x31\xd8\xe0\x6a\x05\xe0\x03\xf7\x98\ \x73\x3b\xb8\x72\x0e\xa0\x0f\xdd\xb8\xaf\x03\x81\x86\x4c\x97\x8e\ \x45\xd7\x6e\xbf\xe9\x0e\xb7\xa6\x6f\x58\x86\x5e\x18\x20\x63\xc9\ \x4a\x7e\x74\x28\x52\xc8\x36\x02\x85\x80\x56\x27\x2a\x6c\xd3\x14\ \x47\x01\xf5\x02\x50\x00\x55\x57\xd0\x9d\xcc\x20\x76\x61\x47\x93\ \x6a\x9b\xaa\xe2\xfa\x01\xa1\xba\xb2\x6e\xcb\x2c\xa5\xca\x0c\xa5\ \x5a\x89\x93\x88\x71\x1b\x17\xb7\xa2\xda\xaa\x35\xf4\x96\x27\x73\ \x28\xde\xc2\x08\x05\xf0\x07\xf3\x08\x96\xf8\xca\x4e\xc1\xe8\x00\ \x1b\xb0\x01\xce\x30\x98\x80\x7a\x6b\x9d\xb7\x74\xbe\x29\xb0\x29\ \x70\x82\xea\x65\x04\xa0\x90\xa8\x8f\x09\xa3\x95\x3b\x4f\x64\x40\ \x6f\x51\x77\x58\x4c\x74\x45\xce\xf5\x56\x17\x96\x61\x46\x72\x07\ \x26\x1b\x06\x27\x0b\x03\xa8\xea\xba\x77\x00\x0d\xcc\x00\xb7\x6e\ \x7b\x37\x2e\x80\x80\xaa\x5a\xaa\xe6\x2a\xb3\xe9\xca\x26\x9e\x2a\ \xb3\x35\x0b\x35\xeb\x0a\x4c\x4e\xd3\x5f\x6f\x19\x48\x4a\x72\x21\ \xc7\x84\x0d\xb6\x00\x05\x3e\xe0\x03\xf3\xe8\x00\x3d\x88\x6a\x8b\ \x8b\xaf\xc9\xfe\x67\xb4\x03\xf1\x09\x9d\xe7\x79\x98\xa4\x6b\xc5\ \x4a\xac\x58\x26\x14\xe3\xc5\x67\xf4\xf6\xb0\x1f\x75\x52\x87\x65\ \x52\x5b\x66\x61\x17\x96\x33\x07\x67\x50\x5e\x70\x20\x3d\x10\x29\ \x52\x60\xb2\xd9\x90\x0d\x23\x0b\x03\xf9\xeb\xba\x31\x00\xaa\xb5\ \xfb\xb6\x71\x7b\xbb\x2d\xdb\xad\x74\x8b\xae\x54\x60\x90\x08\x6c\ \xae\xab\x1a\xaa\xd0\xf0\xad\x68\xea\x45\x84\xb2\xa9\x37\x14\xc1\ \xd9\x25\x3b\xb5\x63\x01\x50\x60\x0b\xd7\xb3\xb8\xad\x19\x00\x8a\ \xeb\x00\x01\x40\x3b\x3c\x86\xbd\x02\xd1\xa4\xd3\xc7\x78\x5d\xb8\ \x9b\x52\xda\x02\x27\x78\xa4\x87\x36\x5c\xf6\x72\x67\x46\x30\x75\ \xa0\x60\x29\x29\x45\x06\x19\x40\x7a\x79\x74\x61\x48\x30\x06\x3d\ \xe0\x05\xce\x78\x05\xd9\x50\x0a\xfc\x10\x06\xd1\x90\xbf\x47\x3c\ \xb2\xdf\x1a\x03\x31\x30\xbb\xb5\x6b\xbb\x29\x4b\xae\xcc\xd0\xad\ \xe7\x5a\xaa\xe0\xca\x0c\x33\xab\xaa\xb7\x1b\xaa\x77\x60\xae\xa2\ \x1a\xbc\x0a\x85\x85\x99\x08\x23\xac\xe2\x03\x7f\xe0\x03\xda\xc3\ \x6d\x11\x43\x00\x8a\xbb\xb8\x1b\xe0\x03\x3c\x20\x03\xfd\xb0\x13\ \x10\x80\x81\x19\xa8\x72\x3b\x87\x49\x0c\x1b\x65\x91\x41\x5e\x85\ \x20\x13\xfe\xe4\x55\xc3\xaa\x77\x20\x7f\x20\x44\xd8\xb2\x70\x64\ \xe7\x05\xf7\x5b\xc4\x61\xc0\x0f\x5e\x60\xc4\x6b\x9b\xc4\x4a\x1c\ \xbb\xa0\x0a\xc0\x2e\x70\xbb\xb2\xfb\xb6\x74\x4b\xb7\xdf\x2a\x05\ \xdf\x4a\x05\xc6\xf3\xbb\xa6\x4a\x89\x56\x1c\xca\x5f\x8c\x5d\xfb\ \x55\x28\x0d\x83\x05\x00\x62\x81\x04\x44\x51\x01\xf0\xa0\xba\xf0\ \x07\x9e\xb0\x84\x6f\xb0\x20\x3a\x61\x22\xee\x59\x78\xef\x79\x73\ \xd3\x57\x78\x51\x86\x5e\x30\x66\x68\xb1\xd1\x56\x7f\x3c\x75\xcc\ \x25\x13\x50\x30\xb6\x39\x0c\xc4\x5e\xd0\x03\xf7\x7b\x05\xd2\x6c\ \x01\x30\x20\xc4\x90\xfc\xc9\xdf\xaa\xbf\x47\x0c\x03\xfd\x0b\x0d\ \xfe\x7b\xc9\x6e\xeb\xcd\xb3\x8b\xc9\xdc\x40\xc5\x9f\x2c\x05\x4d\ \x7c\x07\xdc\xe0\xc9\x9e\x5c\xcd\xfb\xfb\xad\x77\xb0\xa9\x4f\xbc\ \xa9\x7c\x9b\x66\x85\xa2\x34\x3e\xa3\x31\x01\xb0\xcf\x00\xf4\xa0\ \xb5\x1c\x15\xe3\x01\xa8\xb9\xf0\x6d\x73\x76\x58\xc2\x90\x8b\x50\ \x74\x6f\xbc\x06\x04\x06\xf0\x54\x53\x7b\x58\xf8\x84\x5e\x32\x60\ \x65\x29\x95\x01\x35\x3c\x75\xef\x50\x00\xf5\xf1\x7f\x50\xf0\x0e\ \x61\xb0\x4b\x8a\x2c\xcd\xad\x42\xb2\x24\x7d\xaa\xdd\x1a\x03\xdf\ \x2a\xfe\xc9\xdc\xba\xc5\x6f\xcb\xc4\xdd\x2c\xbb\xb2\x8b\x80\xdd\ \x0a\xcf\xa0\x0c\xae\xdb\xaa\xcd\x23\x1b\x0d\x57\x70\xc4\x54\xb0\ \xc0\x5f\xac\xc9\x60\xfc\x49\x3f\x23\xa7\x90\x52\x2a\xc7\xe4\x0c\ \xa7\x50\x00\x9e\xe0\x09\x02\x17\x5c\x7f\x8a\x13\x1b\xe9\x0e\xc2\ \x3c\x5e\x51\x8b\x56\x0a\xad\xa5\x5b\xaa\x56\x7e\xa6\xa5\xc4\xf5\ \x7f\x87\x05\x05\x39\x8c\x47\xcc\xc8\x7a\x16\x60\x4b\x5e\xf0\xcc\ \x57\xe0\xba\x6a\xfb\x0a\x30\xc0\xd6\xf0\x3c\xd3\x25\x2b\x76\xd1\ \xc0\xad\x95\xec\xb6\x54\xec\xd2\xde\x9c\xd7\x2e\x00\x0d\xdc\x70\ \xaa\x24\x7d\xd3\xee\x4c\x93\x69\x6d\xbf\x05\xf9\x01\xeb\xfc\xc4\ \xa1\xda\x80\x9d\x74\x21\x58\x00\xa7\x46\xd2\x26\xc1\x0b\x02\x00\ \x74\x0a\x7f\x60\xcb\x85\xd1\x07\x24\x1c\x12\xac\xd6\xc2\x70\x38\ \xbe\x24\x2a\x0c\xff\x96\x05\xc2\x00\x45\xbe\x86\x6f\x32\xea\x61\ \x33\x1c\x47\x34\xea\x84\xcb\xbc\x70\xf8\x00\xcd\x3d\x10\x06\xb2\ \x6d\xc4\xdb\xac\xb6\x39\x0d\xcf\x7e\xad\xcd\xb0\x5b\xc9\x97\x4c\ \xaa\xa7\x7a\x07\x31\xf0\xa9\x51\xcc\xd7\x33\x4d\x93\xef\x4c\x89\ \x6a\x8b\xdc\xaf\xcb\xce\xe6\xea\xa9\x9d\x2a\xaa\x08\x8a\x35\x2a\ \xfe\x92\xb3\x22\x57\x35\x2c\x82\x0d\x3c\x60\xd9\x91\x81\xcb\x80\ \xca\x67\x9c\x6d\xd5\xfb\xd4\x67\xb9\xf6\x7d\xfa\x36\x92\x1e\x1a\ \xa3\xaf\xc6\x41\xf9\xb7\xcc\xff\x87\x04\x3d\xec\xd1\x45\xe8\xc8\ \x61\xa0\x09\x39\xed\xba\x9f\xcc\xd6\x6a\x4b\xd3\x6b\xbb\xc4\x95\ \x0c\x0d\x28\x0d\xcf\x9f\xca\xdb\xa3\x0a\xdc\xaf\xfb\xce\x24\x0b\ \xae\xfa\xbb\xdf\xbb\x9b\xae\x32\xcb\x0d\x41\x1d\x2a\xdb\x59\x5b\ \xd9\xd5\xd8\x0f\x03\xd9\x60\xf0\x0a\x2e\xc6\x41\xf9\x71\x13\x24\ \x10\x9c\xfb\xe4\x46\x72\x38\x67\x56\xba\x4f\x29\x50\x95\xbe\xe6\ \x67\xe7\x1d\x45\x55\x94\x52\xf3\x31\xc3\x57\x74\x70\x48\xf0\xc8\ \x3d\xe0\xc8\xf2\x8d\xc4\x6c\xed\xd2\x31\xf0\x0a\xdb\x7a\xae\xd9\ \xbc\xcd\xfc\x4d\xaa\x9f\x0c\xdc\x2f\xfd\xb6\xb2\x9b\xdb\x4a\xbc\ \xdc\x9f\x8c\xd3\x24\x6b\xae\xba\xdb\xe0\xb5\xab\xa9\x5d\x54\x4e\ \x9a\x56\xe1\x31\x89\x0d\xb9\x71\x03\x99\xad\x08\xba\x96\x02\x5b\ \xeb\xb4\xaa\xd6\x0a\x51\x86\xb9\x8b\xfa\x7d\xbe\x3c\x7d\x29\x60\ \x9c\x85\x27\xa6\x19\x50\x1f\x3b\x32\x02\xb0\xe7\x05\xf8\x20\xdb\ \xfc\x50\x0a\xb3\xbd\xcd\x3c\xfd\x0a\x38\x0e\xca\x3c\x8e\xaa\xfe\ \xf8\x7b\xe4\xfe\xed\xad\xf6\x5d\xaa\xc1\xed\xdf\xde\xbc\xd7\xff\ \x9d\xdf\xd9\x0c\xbb\x28\xad\xe0\xa0\x3c\x89\x5d\x3c\x89\x4e\x0e\ \x28\x26\x50\xb3\x8b\x02\xdd\xa2\x72\x97\x75\xb3\x22\x73\x97\xb3\ \x29\x82\x05\xd1\xd0\xd4\x9b\xc1\xdd\x38\xa1\xe5\xcb\x7a\x6f\x8c\ \xc0\x6b\xcb\x89\x5e\xb5\x36\xa9\x59\x80\xc2\x26\xc0\x08\x6a\x05\ \x53\x4d\xd9\x03\x16\x36\x02\x31\x0e\xcd\x65\x6d\x01\xd9\x60\x01\ \x92\x1c\xb2\xef\x8c\xe3\x28\xcd\xc4\x49\xee\xe3\xdc\x0a\xd7\xf6\ \xad\xe7\xc0\xee\xcd\x56\xfc\xba\xf6\x7d\xec\xc2\xfe\xba\xdb\x3a\ \x89\x7a\xde\xe4\xc0\x1b\xaa\x93\x1e\xd4\x7b\x1b\x2a\x3f\xe9\x27\ \x85\x24\xa7\xbe\x07\x60\x8c\x72\x0a\xba\x01\x1d\x2d\x41\x02\xfd\ \xe0\xe5\xbe\x6c\x36\x5d\x7a\x00\x59\x1d\x7e\x81\x86\x94\x40\x50\ \xc3\xb6\xfe\x0e\x6f\xb2\x4b\xf8\x90\x4b\x77\x80\x05\xa7\xaa\xe3\ \xaf\x90\x0d\x6c\x4d\xe7\x47\xec\xd6\xd8\x5c\xec\xcb\x8e\xe8\x2e\ \xcd\xec\xc7\x0e\xca\x33\xad\xce\xff\x9d\xe4\x88\xce\xad\xdf\xea\ \xd6\x6a\x7d\xce\x7d\xbd\xbb\xea\xec\xe0\xb6\x3b\xe9\x10\xfe\xe0\ \x85\x22\x2a\xd6\x82\xa3\xe9\x52\x35\x30\x90\x93\x46\x92\xfe\x03\ \xcd\x96\x1b\xa8\x98\x8a\x19\xf8\xcb\xa9\x83\x81\xc7\x49\x87\xe1\ \x87\x49\x73\x64\x02\x5a\x50\x45\x32\xf1\x07\x19\xe0\x37\xd9\xf0\ \xc3\x3d\x30\xf2\xd8\x10\x0d\x65\x8d\xaa\x47\x3e\xc4\xd7\xfc\x0a\ \xfb\xae\xe8\x7e\x8d\xdc\xf6\xbd\xe8\x26\xbb\xbf\x09\x5f\xec\x7d\ \x3d\xec\xb5\x1d\xf1\xfb\x7d\xd3\xec\xdc\xd7\x5d\xac\xce\xb6\xfb\ \xbf\x6e\xab\xf1\xf4\xfc\x27\x06\xa8\xed\xad\xa2\x05\x06\x33\x2f\ \x7e\x93\x2a\x12\xd0\x03\xc4\x91\xd9\x24\x90\x0b\x2c\xa2\x05\x8e\ \x79\x00\x3b\xb7\x8a\x64\xd4\x7c\x59\x10\x6e\xdf\xa7\x73\xd6\x43\ \x69\xab\x07\xe7\x5e\xd0\x21\x1c\x1d\x71\x06\x22\xf8\x63\x20\xb2\ \x72\xdd\xf4\x13\xbf\xad\x83\xde\xce\x30\x70\xb2\xd8\xac\xbf\x7d\ \x9e\xe0\x03\x5f\xec\x4c\x0c\xe8\x49\x4c\xd2\x07\xce\xec\xa8\x0a\ \xe9\xd2\xee\xdc\xa1\xba\xce\x18\x7f\xc9\xe0\x7c\xca\x85\xf2\x93\ \x2d\xe2\x3c\x7f\xcb\x2a\x6b\xb6\x22\xd8\xa0\xdd\xa4\x91\xd9\xff\ \x90\x0b\x2a\xe7\x0e\x66\x30\x86\x40\x50\x3d\x5d\x5a\x78\xf6\x36\ \x73\xad\x5e\x8c\xb4\x4e\x06\x4d\xb8\xcc\x16\x06\x5c\x2d\x5e\x0f\ \xfe\x37\x1f\x93\xf6\x07\xac\xf7\x8c\xef\xbc\xe3\x9e\xfe\x8a\xf0\ \xfc\xfb\xdf\xd1\x50\x0a\x91\x9f\xe0\xce\x2e\xe4\xfe\x2d\xf4\x22\ \x1b\x0d\x3a\x3e\xf9\xf9\x4b\x09\x54\x00\xfe\xcb\xad\xf5\xbf\xeb\ \xa9\x08\xf8\xcd\xb5\xab\xae\x05\xc8\x22\x85\x33\x2f\x95\x80\xe9\ \xe7\xc2\x89\x89\x82\x05\x27\x0f\x1b\x9d\xa1\x13\x3f\x30\xa5\xa0\ \xb0\x5e\x32\xa6\xf7\x5a\x19\x7a\x00\x91\xa5\x87\xb3\x81\x3d\x7a\ \xa4\xf8\x23\xc3\x08\x19\x86\x23\xa0\x38\x84\x02\x85\xe1\x44\x32\ \x0a\xdf\xc8\x78\xf3\xc6\x88\x0c\x32\x50\xc6\xf0\xe3\x17\x06\x06\ \x15\x18\x25\xa5\x48\xa1\x42\xb2\x24\x95\x18\xd0\x62\xbc\x84\x11\ \x4d\xa6\xcc\x98\x2b\x53\xa6\x7c\xf9\x92\xe4\x4c\x9b\x37\x53\xd2\ \x1c\x29\x05\x06\xa5\xa1\x54\xee\x70\x43\x8a\xf4\x0e\xb3\x97\x77\ \x4e\x9e\x74\xfa\x74\xd5\x07\x13\x55\xab\x50\xd2\x74\xa5\x12\xb3\ \xaa\x5d\xbd\x7e\xf5\x0a\x06\x04\xb3\x2a\x26\xb0\x8c\xc9\x98\x56\ \xed\x5a\xb6\x19\x6d\x90\xf8\x17\x57\xee\x5c\xba\x75\xed\xde\xa5\ \x8b\x41\xd6\x5e\x59\x6f\x64\x81\x3a\xc0\x48\x30\x10\x20\x02\x9d\ \x39\xc3\x86\x8d\x60\x0a\x28\x0a\x3b\x22\xf1\xd2\x43\x0a\x36\x29\ \x58\x98\x59\xa6\x1c\x15\x46\x0f\x7e\x5e\x46\x60\xfe\x4c\xcb\xb1\ \xe3\x98\x30\xd1\x6e\x96\x84\x21\x74\x24\x34\x17\x2e\x63\x50\x01\ \x1a\x93\x66\x34\xd4\x36\x5f\xbf\x8a\x59\xaa\xe7\xe9\x91\xa9\x85\ \x9e\x4c\x7d\x14\x29\x34\x66\xdc\x74\xa6\x2c\x49\x9b\xd2\x53\x29\ \x54\xab\xae\xa2\x44\xed\x45\x8f\x4a\x65\xc1\x5e\x07\xab\x05\x0c\ \x18\x6c\x7f\xda\x7e\x6f\x6b\xe4\x07\x5c\xbc\xe5\xcd\xe3\xdd\xa3\ \x56\x16\x06\x77\xee\x08\x03\x71\x97\x42\x5f\x0f\x6c\x82\xb1\xf5\ \x40\xd2\x10\xca\xbb\x2b\xd8\xac\x63\x0f\x4b\x2c\x29\xae\xc0\x67\ \x0c\x32\x8c\x30\x42\x23\x8d\xc8\x20\xed\x8a\xd4\x50\x93\x89\x0a\ \xd6\xa0\x71\x89\x0a\xdc\x90\x9b\x29\x36\xda\x46\xe2\x6d\xc3\xdd\ \x90\x43\xc9\x37\x2a\xa4\xb8\xe3\x28\x0a\x99\x21\x2e\x86\x3b\x2c\ \x8c\x29\x1b\x18\x1c\x2c\x51\x0a\x6e\xaa\xa0\xf1\x03\x4a\xae\xa0\ \x46\x93\xea\xfe\x03\x10\x40\xb1\x2c\x48\x10\x3c\x21\xd3\x12\x86\ \xbc\xf3\x8e\x3c\xf2\x07\xf5\x0a\x01\x05\x14\x77\xf0\x70\xa7\x00\ \x28\xf4\xc1\x86\x00\x10\x18\xb1\x20\x05\x86\xa0\xf0\xc2\x3f\x09\ \x7a\x04\x13\x0c\x66\xae\x08\x83\x9f\x88\x2c\x5a\x08\x8a\x30\xb2\ \x19\x11\x86\x6c\x68\x8b\xc1\x05\x39\x2b\xf4\xfe\x09\x86\x52\x4a\ \x89\x06\xcf\xe4\x6a\xe2\x70\xa7\x0d\x7d\x52\x89\x24\xd5\x48\x34\ \xea\x25\x0a\x29\x3c\x2e\x43\xda\x4a\x64\xe6\xa9\x0f\xa4\xf0\x46\ \x13\x6a\xb4\xaa\x64\x15\x1e\xc1\xbc\x0e\x8c\x1e\xea\x19\x72\xc8\ \x7a\x5a\x30\x12\x49\x51\xef\x22\x41\xbd\xf5\x98\xb4\xa5\x80\x0c\ \xf4\x71\x46\x02\x09\x18\xe9\x41\xa2\x3f\xde\xf1\x0f\x53\x5b\xab\ \x02\xe3\x51\x2f\xbc\x30\x30\xa3\x34\xf9\xc9\x50\x42\x44\x73\xca\ \x69\xa7\x37\x67\xc2\x4d\xb6\x3e\x93\xa3\xcd\xa8\x12\x55\x7a\xf1\ \x45\x40\x89\x6d\xa9\x42\xd9\x3c\x34\x4a\x8a\x1b\xb1\x9a\x03\x89\ \x39\x7a\x88\xd4\x9b\x4a\x72\x81\xe0\x56\xec\x9c\x01\xad\x53\xf0\ \xc4\x0b\x75\x54\x77\xe3\x22\xc1\x0c\xbf\xf8\xc2\x00\x94\x02\xda\ \x73\xc0\x19\x02\x5c\xed\x81\x8c\x7a\xc8\xc0\x07\x0b\x73\x07\x96\ \x42\x24\xa7\xf8\xf9\x23\xc1\x8d\xfe\xf0\x08\x86\x96\x5c\x78\xe9\ \x15\x9c\x74\xca\x2d\x9b\x3b\x63\x43\xcd\xa7\x68\x5c\x34\x0a\xb9\ \xde\x7a\xb2\xad\xa5\x62\x61\xd3\xd3\x34\x18\x8e\x62\xe6\xc5\x5d\ \xbb\x9d\xe3\x05\x49\x5f\x78\xc6\x1b\x72\x07\xfe\x0a\x0b\xef\xd4\ \x15\xf2\x86\x76\xdf\x75\x57\x11\x59\x0a\xfe\x01\xda\xc9\x27\xf5\ \x71\xa0\x4a\x57\x9d\x81\x02\xc1\x0c\xb0\xa1\xf9\xd6\x0f\xae\xf0\ \x42\x8a\xed\xa0\xb9\x02\xe1\x74\x65\x18\xa3\x14\x91\x77\x4a\x09\ \x1a\x8f\x65\x0a\x23\x6c\x3c\x81\x2a\xd4\x29\x37\x4d\x43\xa9\x4e\ \x92\x3c\x86\xb1\x5a\x8a\xf3\xa4\x69\x6d\x6e\x1a\x85\x21\x8c\xc8\ \xae\x90\xf4\x9d\x17\x8e\xa8\xe3\x05\x71\x73\x69\xba\x2b\x09\xf0\ \x49\x17\x67\xb6\x5a\x50\x84\x67\xc5\xff\x51\xe4\xde\xf6\x80\x70\ \x86\x11\x07\xf0\x70\x80\x11\x02\x4c\x90\xc0\x19\x32\xde\x20\x83\ \xe9\xc0\x31\xe5\x66\x0c\x24\xa8\xe8\xca\x05\x6e\xa8\x30\x13\x34\ \x19\xd4\x7c\x33\xe3\xd3\xfc\x04\x29\xf6\x63\x39\x54\x0a\x36\x36\ \x9d\x4a\x29\x44\xd4\x84\x6a\xf6\x0e\xd7\x62\x48\x0e\x4f\x8e\xeb\ \xcc\x26\xec\x2b\x28\xa9\xa4\x12\x49\x91\xa8\xa3\x8e\x23\xc4\xb5\ \xf4\x73\x13\x80\x34\x1c\xbc\xc4\x17\x7f\x97\x04\x07\x08\xa3\x9c\ \x11\x67\x26\xb7\xc5\x1d\x46\xaa\x72\xc6\x88\x7a\x2c\x90\x1e\x4c\ \x17\x34\x81\x02\x09\x6e\xaa\xa2\xca\x85\x0f\x5c\x90\x22\x75\x19\ \xee\x67\x98\xb4\x91\x56\xfc\x58\xa6\x52\xf8\xf9\x48\x48\x5a\x77\ \x32\xe1\xdc\xc1\x4d\x1c\x5a\x11\x49\xfe\xae\xd0\x2c\x68\x15\xea\ \x6d\x78\x2a\x45\x69\x24\x96\x1b\x00\x36\xa8\x12\x78\x7b\xc7\x1c\ \x9a\xd7\x07\xbf\x25\x0f\x70\x9f\xcb\x42\xe1\xaa\xa7\x96\x7e\x60\ \x8f\x67\x9f\x90\xdc\x7b\xe0\x63\x8b\x26\xe9\x43\x30\x05\x90\x41\ \x0f\xbe\x94\xbe\x4c\x71\xe3\x0a\xa2\x83\x81\x73\xe4\x34\xbf\xf9\ \x71\x23\x1a\x65\x32\x10\x46\x56\xe7\x05\x06\x8e\x64\x26\x61\x2b\ \x93\x00\x5b\x37\xa2\x96\xf0\xcf\x41\x75\xd2\x10\xc7\x4a\xf4\x1a\ \xd8\xfc\x30\x82\xa5\x70\x91\xff\x92\x18\x86\x2b\x0c\xe8\x0a\x2f\ \xe8\x56\x1d\x46\x50\x87\x39\x50\xa3\x12\xed\xb8\xd4\xc0\xb2\x10\ \xa4\x11\xae\xc5\x00\x3b\x33\xa1\x79\x50\x08\x84\xc9\xe1\x01\x4a\ \x51\x2a\x80\xbd\x32\x20\x83\x11\x78\x8e\x86\x5f\xf9\x80\x0f\xed\ \x96\x0d\xf9\xb9\xc0\x04\x86\x94\x53\x22\xa5\x10\x03\x6e\xdc\x21\ \x0c\x8d\xb9\xc8\x1f\xc6\xe0\x85\x37\xa9\xa4\x78\x61\xcb\x46\xec\ \xd6\xf4\x27\xdf\x35\x32\x6e\x09\xdc\x53\x8b\x96\xc8\x3f\xff\x85\ \x04\x24\x58\xd4\xd3\xdc\x4e\x72\x05\x56\xf6\x40\x13\xef\x40\x02\ \x12\xf8\x86\x04\x7f\x8c\x2b\x8d\xe6\x4a\x41\x1b\xbf\x03\xc7\x38\ \xe2\x85\x04\xef\xc1\x03\x61\x1c\xfe\x30\x4c\x3c\xf8\x2b\x23\xf8\ \x98\xe1\x1f\xbb\xf2\x81\x3b\x2c\x70\x28\x77\x90\xd3\x21\x13\x99\ \xc8\xd3\x71\x23\x91\xd9\x18\x43\x63\x38\x92\x3f\x7e\x1c\x4b\x26\ \x6f\x2a\x1e\x48\xd6\x84\x1a\x13\xad\x28\x1a\x4f\x0c\x91\x4c\x16\ \x98\xc9\xd2\xd4\xe9\x7f\xa7\x44\x22\x16\xa3\x01\x0d\x30\x98\x80\ \x1b\x61\xc8\xc0\xae\xbc\xc0\x3c\x32\xbe\xc3\x0b\x7e\xa3\xc4\x2d\ \x6d\xa5\x85\x4a\xa4\x47\x97\x69\x09\x12\x2f\x7b\x79\x97\x1f\xdc\ \x2b\x98\x91\x63\x84\x16\x18\x51\x80\xbe\x74\x4e\x99\x5e\xb1\x21\ \x48\x68\xc3\x8d\x40\x4e\xd3\xa3\x4e\x61\x8d\x9c\x4e\x97\x49\x03\ \xd5\xc3\x7c\x64\x90\x64\x37\x39\xe4\x26\xbb\x51\xf2\x89\xc2\xf1\ \xda\xd9\x30\x74\xc9\x70\xea\xe6\x34\x99\xe4\xc7\x29\xf8\x11\xc1\ \x0d\xc1\xa9\x38\xef\x70\x4c\xfb\x0e\x04\x05\xc9\x54\x02\x79\x02\ \x05\x13\x04\x0e\xf0\x02\x83\x1e\x74\x2d\xa0\x5a\x28\x92\x1a\xfa\ \xa4\x7c\x01\x81\x11\xda\x20\x80\x3e\x12\x84\xcc\x8b\x9a\x40\x57\ \x63\xf8\x48\x36\xae\x00\x4d\x6e\xc8\x28\x91\xd0\xb0\x26\x34\x0c\ \x38\xcd\x46\x36\x12\x06\x5e\x80\x64\x46\xfe\xf5\x11\x02\x0a\x25\ \x1b\x34\x65\xa0\x5b\xef\x8a\xfe\x9a\x70\xee\x14\x24\x6c\xc2\x50\ \x18\x74\x1a\x92\x76\xb2\x26\x06\xd1\x00\xa0\x31\x39\x87\x84\x11\ \x8c\x00\x09\x9a\xa0\x91\x09\x04\x9a\x8b\xea\x94\xeb\x3a\x10\x68\ \xc5\x08\xd2\xd2\x54\xa7\xbe\xe1\x2d\x51\x45\x92\x3b\x40\x81\x07\ \x67\x08\x53\x30\xee\xe0\x94\x33\xba\x6a\x23\xbb\x75\x66\x57\x61\ \x38\x0a\xee\x64\x84\xbb\x12\x95\x64\x9a\x47\x11\x29\x15\xb2\x21\ \x11\x4e\x65\x64\x75\x63\x18\x6b\x59\x49\x52\xbc\x01\x3a\x6c\xa4\ \xed\x74\x93\x38\x91\xc8\xc0\x1f\x56\x50\x9c\x30\x90\xdf\x21\xef\ \xc0\x0f\x19\x98\x74\x88\x61\xcb\x8a\x16\xd2\x07\x81\x5c\xb4\xc2\ \x06\x08\x32\x82\x0d\x5a\xf0\xdd\xce\x6a\x44\x11\x0a\x05\xad\x5c\ \x9a\x14\x4c\xee\x11\xc6\x16\x18\x90\x41\x25\x2e\x0a\x06\x29\xe0\ \xd4\x6e\x60\x85\x6d\x59\x6b\xe2\xb1\xe1\x66\xc3\x9a\xa6\xc3\x6d\ \xed\xb2\xc1\xab\x8a\x04\x89\x0c\x48\x00\xd6\x83\x58\x7a\x57\xd3\ \x1c\xe5\x35\xa5\x29\x49\x5f\x11\xbb\xd3\x08\x87\x21\x9b\x50\xe0\ \xc1\x47\xa2\x11\xa7\x43\x9a\x80\x19\xa8\xc3\xaf\x14\x98\xc1\x0c\ \xca\x60\xa3\x9e\x5f\xa1\x51\x2e\x90\x5a\x15\xa5\x1a\xc0\x06\x7b\ \xd8\x83\x0d\x4e\xd0\x8a\xfe\x7e\x3c\x83\xb3\x07\x85\x6a\x7a\xcb\ \xa3\x08\x26\xb9\x07\x08\x77\x2c\xc0\x08\x0a\x31\x3e\x65\x8e\xa9\ \xa5\x70\xf5\xc8\x15\x3c\x86\xc9\x2b\x10\x37\x1a\x5e\x08\x43\x9c\ \xb8\x71\x32\x6e\xa0\x55\xbf\x31\x69\x32\x00\x13\x52\x0f\x19\xfc\ \x01\xc1\xdd\x0c\x9b\x26\x1b\xac\xa2\xba\xd1\x26\x93\x83\x3d\xc5\ \x18\x18\x6c\xe1\x3f\x78\x59\x7f\x71\x9a\xe6\x07\xe4\xfc\x01\xb2\ \xd4\xb3\x0a\xcc\xd0\x44\x0f\xb4\x82\x85\x5c\xf0\x19\x1b\xc9\x9b\ \x2c\xb9\x94\xfa\x80\xef\xda\xa0\x0f\x3f\xf8\x04\x04\x9a\xe0\xdd\ \xf2\xbe\x01\x54\xe8\x4d\xaf\x22\xcc\x80\x81\x1e\x8b\xb6\x49\x64\ \x00\x85\x36\xd2\xf7\x81\x2a\x4c\xe6\x0a\x3d\xd0\x67\x2c\xf9\xe1\ \xa0\x05\x66\x39\x80\xb1\xf3\x02\x0f\xf8\x71\xb2\x26\xa7\x04\x77\ \xae\xeb\x58\xdd\xb2\x89\x52\x8f\x00\x10\x24\x63\xc8\x30\x69\x6e\ \x07\x83\x90\x34\x17\xac\xbf\xfe\xa6\x99\x6a\x3d\x92\x96\x24\x05\ \x29\xce\x01\x8b\x14\x40\xad\x67\x6c\x20\x8f\x12\x99\xc8\x51\x75\ \xc0\x92\x8b\x03\x54\xe2\x00\x4d\x78\x06\x13\x6c\x60\xe8\x1b\x20\ \x1a\x02\x10\xe8\x87\x66\xab\xc7\xc6\xb4\xd4\x63\x3c\x3a\xf6\xa5\ \x13\xf4\x52\x88\x14\xfe\x34\xe9\xd2\x29\x20\x72\xd3\xe8\x0b\x6a\ \x24\x88\xae\xde\xbb\xea\x66\x9b\x36\x06\x44\x0c\x83\xb5\xdf\x64\ \xe0\xc1\x02\x35\x1a\xe1\xbb\xba\x08\x25\x48\x69\x8d\x27\xcd\x94\ \x6b\x5b\x8b\x8e\x61\x50\xc8\x37\xaf\x4f\x51\x26\x1e\xb4\x19\x0a\ \x92\x7c\x13\x3f\x78\xe0\x91\xe1\x25\x70\x44\x1c\x3d\xf1\x57\xc0\ \x50\x85\xfe\x48\xc1\xa8\x95\xc8\x84\xf2\x5e\x60\xc6\x5c\x24\xd3\ \x04\x94\xa5\x06\x35\x5a\xf1\x0c\x03\xf4\xa1\x05\xb1\x88\x45\xb7\ \x05\xf1\xed\x03\xd8\xc0\xa9\xf5\x00\xfa\x1b\x52\x00\xe9\x48\x17\ \xa2\x5e\xa0\x68\x77\xbb\x9b\xe4\xc7\x81\x81\xc0\xe4\x70\x3d\x90\ \x11\xda\x17\x92\xe0\x0e\x37\x89\xd9\xec\x72\x42\xb6\x0c\xf1\x53\ \x40\xdc\x94\xbc\xa2\xba\x51\x3c\x2a\x27\xfe\xf5\x35\xcc\xd9\xfc\ \x83\xaa\x4d\xf3\xc8\x0c\xff\x01\xe8\x5c\x56\xb5\xc6\x53\x3a\xc0\ \x26\x2b\x19\x9a\xc8\x06\xcb\x58\x68\x84\xf2\x17\xf8\xc3\x65\x60\ \x7c\x41\x26\x3e\x58\x15\xca\x3e\xe0\x05\x2f\xa8\x79\x1f\x4e\x80\ \xf3\x58\x8c\xe7\xdb\xfd\xf0\xb9\x2e\x7b\xeb\xab\xeb\xa1\xdb\x2e\ \x8a\x88\x4f\x7c\x84\x16\x25\x50\xe8\x43\xbb\xe6\x02\x41\x25\xde\ \xf1\x0e\x0b\x1c\xfe\x24\x48\xab\x83\x0c\x74\x4d\x17\x93\x0a\x5e\ \xfc\x0d\x6f\x0f\x4d\x10\x33\x7c\xf1\x36\x87\x95\xca\x63\x4f\xa4\ \x39\xe3\xa6\xdb\x6c\x86\xb5\x14\x5b\x9e\xfc\x1b\xd2\x9e\x90\xd5\ \x29\x57\x80\x27\x8b\x2e\x76\xee\x7c\x46\xbe\x77\xeb\x08\x80\x5f\ \xf9\xb8\xba\x02\x81\x4a\xbc\x40\x18\x0f\x78\x00\xe3\x71\x7e\x02\ \xc7\x43\xe0\x07\x37\x5e\x57\xb9\x83\x3e\xf9\x12\x5a\xfe\x2e\xfd\ \x70\x6f\x93\x9e\x94\x05\xa4\xb7\xca\x56\x12\xb8\x4f\x06\xda\x97\ \x01\xf9\xf7\xd6\xba\x50\xf0\x2f\x80\x7f\x88\xf6\xea\xb2\xa5\xcb\ \x40\xbf\x1f\x93\xe2\x32\x8f\x10\x09\x18\xf8\x2f\xdc\x33\x1d\xdd\ \xda\x3d\x18\x18\x03\x8b\xab\xb8\xb6\xe0\x32\xb9\xea\xb7\xde\x13\ \x89\xff\xea\x91\xab\xc8\x33\x3a\x00\xa3\xe6\x71\x1e\xe7\x69\x19\ \xe9\xeb\x8a\x03\x68\x05\x6a\xb8\xbe\x3e\x30\x41\x13\x74\x82\x7e\ \x20\x01\x08\x20\x01\x6a\x20\xb7\x4e\x79\xbb\xe0\xcb\x88\x22\x31\ \x3f\xbb\x80\x00\x46\x00\x82\x14\x30\xba\x02\xc8\x02\x16\x82\x82\ \x0c\x70\x86\xcf\x03\x0b\x09\xa8\x82\x57\xe9\x01\x58\x92\x08\x85\ \xb0\x08\x05\xc9\x08\x32\x58\xb5\x12\x31\x20\x36\x0b\x3a\xb6\x98\ \xbc\xe0\xab\xfe\x87\x5a\x1b\xa7\x12\x41\x40\x39\x81\x8d\x2d\x72\ \x13\x1e\x78\xbd\x00\x14\x12\x2e\xd3\x3a\x35\x41\xbe\x44\x02\x10\ \x92\xa3\x06\xbf\x03\xa3\x07\x68\x1e\xbe\xa9\x03\xc3\x13\x17\xcb\ \xa2\xbe\x56\x18\x41\x61\xb0\xb9\x16\xd0\xc3\x58\x50\x84\x6f\x6b\ \x02\x03\x78\x41\x18\x7c\x3d\xb5\x78\x3b\xa2\x03\x2d\x12\xc8\x05\ \x67\x70\x87\x42\x30\x02\x26\xc9\x00\x5b\x60\xbf\x11\xc8\x02\x46\ \x70\x15\xcc\xd1\x82\x3f\x23\x88\x2c\xd0\x12\x85\x90\xc1\x48\xe2\ \x44\x88\x2b\x13\x8e\xc9\xa4\x84\x18\xa1\xd5\xc9\xb5\x4d\x7a\xa9\ \x03\x64\x2b\x2a\xb0\x30\x0c\xd3\xb2\x11\xba\xc2\x27\x3c\xc0\x1e\ \x61\x86\x0b\xa2\x06\x2f\x98\x03\x37\x6c\x1e\x37\x6c\x01\x26\xa8\ \x83\x67\x68\x82\x2f\xa9\xc3\x17\x98\x39\x61\xd8\xc3\x58\x68\x81\ \x43\x5b\x41\x08\x88\x85\x40\x64\x0b\x67\x2c\x37\x4f\x90\x46\x41\ \xa8\x41\x1b\xd4\x06\x20\x00\x05\x32\x38\xba\x0c\x70\x87\x77\x78\ \x88\x14\x18\x88\x2c\x98\x83\x0c\x48\x01\x72\x8c\x08\xc5\x5a\x0b\ \x23\x90\x24\xd1\x89\x08\x4a\x0a\x03\x24\xf0\x08\x28\xd3\x38\x11\ \x1a\x92\xdf\x9a\xa4\x6e\xba\x2b\x4c\x2a\x38\x74\x9a\x22\x73\x42\ \x98\x8b\xfe\xe8\x44\x21\x29\xbe\x06\x0b\xa9\x68\x5a\xa6\x19\xf9\ \x80\x55\x68\x36\x1c\xc9\xc5\x23\x60\x02\x6d\x7b\xc8\x6d\xdb\x83\ \x07\x38\x80\x72\xe9\xae\x17\x68\x81\x07\xd0\xc3\x8d\xdc\x48\x9d\ \x81\x80\x4f\x68\x81\x21\x31\x9f\x80\x04\x3a\x4f\x58\x81\x93\xf4\ \x04\x50\x30\xc4\xa8\x82\x00\x6d\xc0\x83\x26\x29\x80\x02\x08\x1f\ \x7d\xd0\x87\x77\x00\x85\x0c\x18\xbd\x14\x50\x95\x2c\xc0\x07\xfa\ \xcb\x00\x18\xf2\x95\x25\xf4\x32\x90\xe0\x15\x28\xbb\x2b\xb0\x2a\ \xc3\x07\x34\x1c\x49\x3a\x05\x2f\x50\x22\x24\x82\xb2\x24\x72\x4a\ \x4d\x62\x30\xc4\xba\x99\xea\xc1\x1a\x91\xa0\x02\x55\xfc\x8a\x93\ \x58\x05\x6d\x89\x0e\x6a\x98\x03\x38\xd4\xb6\x17\x83\x31\x18\x63\ \x02\x99\x51\xaa\x56\xd0\xc8\x8d\x14\x2f\x1b\x30\x83\x3d\x38\xb4\ \x4f\x20\x01\x46\x13\x44\x42\x94\x46\x93\x44\xc9\x7a\x18\x81\x95\ \x8c\x2a\x2d\x58\x21\xc8\x01\x02\x9a\x24\x88\x77\xc8\x80\x82\x80\ \x1c\xc5\x28\x2d\x82\xd0\xa6\x2e\xbb\x9f\xdf\xe2\x95\x49\x22\x8d\ \x35\xa1\xb8\xfe\xeb\x3f\x9c\x91\x81\x0c\x9b\x4a\x24\x0a\x9b\xd7\ \x3a\x3b\x7f\xbb\x38\x94\x7a\x38\xb7\x83\xc6\xef\xd0\x85\xac\x21\ \x36\xfe\x8f\x2a\x9d\x93\xa8\x82\xaf\x94\x14\x0d\xaa\x83\x3e\x88\ \xc8\x3d\x00\x2f\x18\xb3\x81\x67\xf8\x04\x6a\x6b\x85\xc3\x33\xc6\ \x13\x6c\x01\x04\x69\x81\x1b\xf8\x84\x03\x88\x05\xf0\xfb\x8e\x18\ \xcc\xcb\xe4\xec\x2d\x76\xa9\x46\xba\x90\x00\x6d\xc8\x17\xcb\x71\ \x06\x3c\x60\x15\xc5\xd0\x07\x20\x48\x8c\xc3\x70\x86\x4a\x40\x0c\ \x6d\xc0\x06\x7d\xe0\x81\x8e\x20\x3e\x86\xa9\xb7\x5f\xd3\x27\xc2\ \x4a\xb5\xcd\xa9\x9e\x7a\x60\x18\x86\x23\xac\x30\xd0\x04\xcf\x84\ \x4a\xd0\xbc\x4c\xc9\xc3\xb8\x06\x53\x45\x43\x7a\x14\x4a\x68\x87\ \x19\x41\x39\x7f\xe0\x9b\x87\x2c\x4b\xda\xac\xcd\x89\x6c\x85\xe1\ \xf4\x86\x62\xec\x03\xdc\xec\x87\x13\xa0\x4d\x1b\x30\x80\x7e\xb8\ \x81\x07\x30\x9c\x92\x5c\x01\x69\x8c\xc1\xe0\x3b\x01\xbf\xec\x25\ \x12\x90\x1c\x4a\x7c\x15\x7d\xb0\x05\x6c\x70\x15\xef\xf1\x1e\x07\ \xc8\x02\x9a\xac\x0f\x09\x20\x80\xc3\xf0\x81\x24\x6c\xb3\xc7\x00\ \xab\xc8\x04\x2b\x90\x38\x05\x24\xf0\x84\x80\x1c\xc3\x2e\xcb\x30\ \xe5\xba\x2b\x56\x72\x90\x17\xf9\x26\x20\xaa\x38\x7a\x34\x9c\x2e\ \xab\xb5\x4a\xf2\x9d\x69\xca\x04\x4d\xd0\x84\x4c\xc8\x04\x3a\x00\ \xfe\xd0\x3a\x88\x48\x89\x6c\x2a\x04\xb1\x01\x26\xc0\xcd\x03\xe8\ \x07\x03\xe8\xcd\x67\x58\xc1\x1f\xe8\x83\x18\xeb\x83\x58\x10\x06\ \xe3\x84\x40\x93\xc4\x50\x21\xe9\x03\x12\xe0\x50\x13\x22\x81\x27\ \x19\x9f\x10\x75\x07\x07\x70\x95\x57\xb1\x8f\x1e\xc8\x97\xfa\x20\ \x00\x46\xc8\x01\x6c\xb0\x00\xb7\xfb\x2d\x78\xfc\x35\x78\x94\x08\ \x8f\xf0\xb7\xab\xc4\xca\xb4\x73\x4a\x26\xeb\x22\x67\x81\x42\x50\ \x62\x29\xa4\x2c\xcd\x4e\xe1\x26\xb1\xfa\x38\x6d\xd1\x04\x7f\xf0\ \x87\x39\x80\xcd\x2c\x7d\xc8\xb3\x04\xaf\x20\x31\x82\x3d\x60\x02\ \x03\x18\xce\x67\xe8\x45\x3d\xc4\x4d\x12\xf8\x04\x17\xdb\x83\x64\ \x24\x2f\x18\xcc\x4b\x92\x84\xbd\x37\x38\xb7\xe6\x84\x17\x27\xb0\ \x05\x4a\x34\x01\xe8\x64\x15\xcb\xd9\x97\x3b\x55\x0c\xa3\xc1\x02\ \x09\xc0\x82\x16\xdd\x1c\x27\xac\xa0\x59\x7b\x4c\xf6\x44\x54\xb7\ \x1b\xa1\x85\xb1\xbd\x17\x39\x1e\xb3\xc2\xbd\xda\x49\x2e\x28\xd0\ \x51\x75\x81\xd6\xbf\x8a\x06\x6d\x69\x52\x7f\xd0\x04\x4f\xad\x83\ \x17\xdb\x36\xb3\x1c\x55\x52\x7d\x03\x32\xed\x07\x6f\x70\x31\x33\ \x10\xaf\x1b\x60\xc1\x4f\x88\x05\x74\x7d\x31\x18\xac\x07\x0c\xfe\ \x25\x49\xbd\xec\xad\x5c\xd5\x55\xc6\x71\x00\x2d\xf8\x92\x57\x41\ \x0c\x88\x22\x80\x61\x6d\xd1\x78\x2b\xd8\xee\x10\x3e\xb0\x42\x82\ \x3f\xa8\x08\x4e\x01\x40\x86\x01\x20\x6e\x6d\xa3\xcc\xec\xb5\x11\ \x59\x8e\xa7\xc8\xd6\xd3\x89\x09\x36\x33\x52\x91\x44\x52\x44\x75\ \x4a\x17\xc1\x1b\x5c\xf4\x07\x5c\xa4\x52\x26\x20\x50\x02\x25\x37\ \x36\x2a\xd5\xe0\xec\x87\x7b\x8d\xb1\x16\xf8\x01\x41\x20\x81\x06\ \x1d\xaf\x18\x43\x10\x5a\x9d\x42\x42\x2c\xc9\x35\xf5\xac\xca\xd3\ \x55\x12\xa8\xc4\xaa\xc0\xd3\xc4\x28\xd6\x7d\x61\x04\x12\x15\x39\ \x0b\x80\x82\x8b\xb8\x9f\xb5\x00\x3a\xd1\xf4\x88\x22\xb5\xcf\xb8\ \x33\x9e\xac\xa0\x84\xaf\x95\x91\x46\x42\x89\x7d\x03\xa0\x8a\xeb\ \x56\x81\xd4\x9f\x9b\x88\x11\x29\x68\xd2\x72\xd5\x20\x5f\x74\x59\ \xda\x44\x28\xf0\x30\xd5\x58\x78\x86\x3e\xf8\xae\x52\x8d\x85\x7e\ \x10\x84\x1b\xb8\x81\x58\xd0\xb6\x9f\xfd\xb9\x72\x13\xda\xf2\x0b\ \xd8\x7f\x80\x80\xa4\xc5\x9c\x3e\x3d\x8c\x7c\xb9\x53\xc1\x79\x4e\ \xc5\x18\x83\xd2\xc4\x9f\x6d\x1a\xbe\xea\xaa\xd4\xb6\xe8\xb2\x19\ \x85\x0c\x2f\xd0\x04\xf8\x74\xd2\x4c\x20\x0a\x07\x29\xb8\xfe\x32\ \x89\x4c\x45\x1d\x21\x06\x89\x06\x68\x4a\xa4\xaf\xc4\x8a\x29\x6d\ \x59\x18\x03\xaf\x67\x54\x8b\xf0\x2a\xd3\xdf\xf4\x95\x3e\xe8\xb6\ \x1f\xf0\xdb\x7b\xcd\xdc\x9f\xab\x87\xa1\x3b\x5c\xc4\xc5\x1c\xaf\ \x60\x51\x40\xf5\x01\xf7\x13\x1c\x6c\x90\xbf\xc6\x80\x46\x01\x74\ \x4c\x4f\xe0\xa6\x06\xac\x4f\x75\xd9\x5c\xa7\xec\xdc\x39\xf0\x82\ \x95\xf5\x5c\x4d\x38\xa7\x99\x00\x27\x90\x68\x8c\x08\xd4\xa5\xe2\ \x33\xc0\x55\x70\x81\x55\xe0\x06\x58\xa0\x04\x4e\x0d\x50\x6d\x93\ \xdd\xd9\xfd\x8e\xf0\x4a\x46\xdc\xd5\x88\x9b\xdb\x5d\x45\x38\x01\ \x26\xf8\xdd\xce\x32\x82\x37\x85\x53\xcb\xfa\x0a\x09\xb0\x80\xa5\ \xc1\x9c\x57\x91\xda\x25\x3c\xce\x00\xcc\xba\x8d\x0b\xab\x32\x91\ \xd6\xf5\xcc\x1f\xd1\xc1\xc5\x0a\xde\x54\xf8\x74\x10\x4a\x50\x89\ \xe6\xe2\x81\x8d\x0b\xcf\xb3\xad\xdd\xc7\x7c\x4c\x2f\xf3\x87\x2b\ \x10\x5d\x28\xdd\xd4\x4e\x75\xc8\x01\x15\xd5\x9f\x1d\x55\x8d\xa0\ \x5f\x3d\x24\x55\x19\x8b\x85\x13\xe8\x5d\x26\x68\xb4\x4e\xa1\xc6\ \xe1\x4d\xdc\xeb\xc0\x06\x1f\xc0\x87\x3f\x1d\x03\x8c\xa8\xd4\xfb\ \x11\xcd\x3f\xd0\x85\x1e\x8d\x1d\x00\xd2\x05\x21\x32\xfe\x29\xeb\ \xcd\xba\xf6\xf1\x16\x6f\xd9\xde\xac\x10\x5d\xb0\x2d\x09\x32\x59\ \x62\x0b\x1b\xd9\xef\xc0\x9a\x34\x83\xd8\xc6\x12\xe3\x3a\x60\x1e\ \x4f\x3d\x82\xf7\x65\xe1\xf8\x5d\xd7\x76\x15\xaf\x16\x88\x4b\x5f\ \x69\xe3\x64\x44\xc6\xfe\xbd\xcb\xef\xc8\xb1\x80\xfd\x04\xa8\xfd\ \x0a\x6d\xc0\x07\x1e\xd0\x92\x7a\xb4\xdc\x36\x4b\xbb\x8f\x00\x63\ \x5c\xc3\x30\x41\x86\x24\x10\x16\x3e\xf2\x84\x47\x2a\x9e\x83\xd0\ \xfd\xda\x48\xbe\x91\x75\xda\xa4\x4c\xe2\xd6\xea\x7d\x46\x36\xfa\ \x03\x30\xdb\x15\x24\xc8\x5b\x8d\x88\xb1\x87\x6c\x59\x01\x2d\x4b\ \x2b\x7d\xd9\x52\x2d\x55\xb8\xec\x59\x84\x4a\xd7\x17\xa3\x63\xc9\ \x4b\x0b\x33\x00\x60\x13\x02\x05\x12\xbd\xc4\xc8\xb9\xc4\x21\x16\ \x92\x85\x11\xe4\x36\xeb\xe0\x5c\xcb\xb0\x8d\xeb\xe5\x5a\x1b\xe2\ \xff\xab\xc7\x5c\x73\x64\x4e\x75\xd2\x67\x6b\x5b\xbc\xc9\x06\x4d\ \xc0\xd4\xe1\x6a\xc0\x87\xab\x2e\x1d\xc5\xd8\x8b\x40\x02\x2e\xd2\ \x04\xe6\x19\x01\xc1\xf5\x95\xb3\x8c\xb1\x56\xc6\xd7\x18\x3b\x4b\ \xb3\x0c\x67\x33\xf8\x4d\x52\xb5\x4d\x6f\xce\x61\xa1\xcd\x51\x00\ \x6c\x85\x59\x5e\x1c\x32\x00\x47\x50\x40\x10\x06\xfe\x41\x82\x91\ \x05\x40\xe9\xed\xe5\x0e\x9e\x40\x1e\xd0\x05\x41\xe6\x67\x88\x1b\ \x45\x49\xba\x66\xf0\x28\x3e\x7d\xd2\x5e\x27\x7d\x52\x14\x66\xe8\ \xf8\xcc\x8a\x47\x1d\x30\xcd\x4c\x33\xda\x63\xd7\xde\x02\x2b\x63\ \x92\x3a\xed\x9d\x03\x28\x50\xd7\x40\x54\x98\x52\x05\xe7\x70\x16\ \xe7\x70\x1e\x2f\x33\x30\x83\x04\xa1\x4d\xd9\x6d\x67\x08\xdc\x57\ \xbd\x3c\x49\x6a\x90\x67\xc5\x89\x3c\x18\xac\xae\xac\x93\x58\x07\ \xfc\xe5\x5f\x4e\x08\x69\x74\xcc\x0c\xa3\x38\xaf\x6b\xc0\x27\x06\ \x8f\x03\xeb\x5e\x27\xa5\x03\x3a\x88\x52\x4d\xa0\x83\x14\xae\x62\ \x27\xc5\x9b\xf8\x84\x0c\x24\x6a\x56\x01\x94\xde\x89\x55\x93\x5e\ \xf1\xad\x58\x6a\x1e\x89\xfc\x5d\x04\x19\xe9\x2c\x6d\xe5\xf1\xea\ \xd9\x02\x95\x59\x96\xce\xe1\x92\xdc\xd7\x15\x80\x03\x51\x80\x83\ \x2c\x98\x69\x9e\x51\x04\x9b\xfe\x03\xe9\xc5\x69\x5f\xd6\x05\x28\ \xc8\xeb\x5e\xf6\x69\x4f\xe0\x51\xd2\xd0\x38\x88\xfb\xa1\xae\xdb\ \xb2\xb9\xbd\x69\x23\x86\x8c\x87\x8e\xd2\x28\xe5\xd4\x39\x50\xe6\ \xa8\xc6\xc5\x58\x9a\xa4\x2c\x0b\x33\xea\xba\xc2\xde\x4b\x9a\x3f\ \xb0\x9b\xa4\x41\xa8\x31\xea\x6a\x57\xee\x14\xfe\xb0\x46\x65\x92\ \x4e\x57\xb2\x96\xdb\x17\xd6\x08\x1b\x30\xbc\x57\x1e\xc3\x7d\x8d\ \x41\xb6\x5e\x81\x11\x38\xaf\xc3\x9d\xeb\x05\x16\xe4\xbc\x0e\xe8\ \xb4\xc3\xb0\x0e\xe6\xeb\xba\xf6\xeb\x1c\xfd\xeb\x9c\x6a\x0c\xfd\ \x01\x22\x5c\x53\x2c\x23\xf0\x04\x86\x90\x58\x32\xd8\x83\x11\x78\ \xe4\x27\x4d\x6a\x29\xe5\xd4\xe9\x0e\xdd\x01\x63\x9e\xf6\xf1\x07\ \xf8\x6c\xa9\xce\xac\x08\x44\x15\x9d\xfb\xe1\x12\xad\x86\xe3\x31\ \xb2\xd2\xaf\x5e\xd7\x74\x25\xe9\x93\x76\x46\x23\x78\x80\x26\xa8\ \x04\x71\x03\xde\x5b\x7d\x3d\x7e\x05\xd8\xe6\x24\x01\x25\xd9\x88\ \x6a\xc6\xe9\xdc\xc6\x6d\xbd\xe6\xe9\xba\xf6\x6d\x19\xf8\xed\x7d\ \xf5\x65\x9d\xc2\x35\x8b\xbd\xab\x25\xe6\xbf\x8c\x78\xb8\x87\x58\ \x88\x31\x72\xec\xe8\x9e\x6e\x65\x6e\xe8\x4d\xd5\x20\x6f\xc9\xee\ \xf8\xd4\xa7\x4e\xe6\x88\x7a\x8b\xa5\x7c\x5e\xac\x39\x18\x01\xce\ \xc2\x52\x53\x66\xe7\xf9\x0d\x69\x70\x86\x4b\x73\x3e\xf1\x3d\x68\ \x05\x15\x7b\x87\x83\x4a\xce\x77\x96\x2b\xd7\x0e\x3a\x9d\x19\xde\ \x1b\xc0\x1f\xad\x43\xe2\x80\x96\x5e\x7e\x46\xe2\x8a\x6b\xb3\x5a\ \xfd\xed\x77\x16\xf0\x41\xd6\xb2\xcd\xad\xfe\x6c\x1a\x3d\x93\x26\ \x84\xc7\x11\x60\x6e\x32\xb0\x81\x11\xf0\x45\xc7\xf6\x07\x29\x6d\ \x6a\xa6\x7e\x52\x27\xf5\x54\x4f\x25\xd7\x87\x5e\xd9\x95\x4d\x1a\ \x19\xf8\xf0\x58\x8a\x3a\x29\x9e\x55\x84\x1a\x69\xf9\x55\x17\xd1\ \xb6\x4d\x72\x96\xdb\xb5\xd8\x03\x6a\xa8\x8a\x4a\x90\xbc\x93\x44\ \xc9\x77\xce\x51\x3c\x9f\x3c\xa3\x6d\x4e\x45\x68\x81\x36\xe3\xd1\ \x0e\xf6\xf1\x1f\x0f\xe8\x43\xaf\xeb\xea\x1a\xf0\x77\x26\x70\x60\ \xee\x69\x50\x6c\x29\xc9\x84\xc7\x8a\xf0\x95\x87\x88\xf2\x29\xdf\ \x36\x5f\x3c\x02\x72\x6d\xea\xa5\x66\x6a\xf7\xf5\xf2\x2d\xcf\x84\ \xa8\xfe\x5c\x11\x37\x02\xc7\x2a\xf3\x6e\xe6\x1c\x32\x1a\xf1\xf0\ \x80\xf3\xd9\xa5\xe3\x02\x6d\xe1\x67\x6c\x85\x3a\xef\xe2\xe3\x54\ \xce\x19\x57\xd3\x1c\x7d\xbd\x7a\xf0\xf3\xe6\x7c\x86\x36\x4b\x62\ \x1e\x10\x05\x80\xf6\x6d\xe9\xd5\x85\x64\x2f\xf4\xb7\xeb\x6b\xa0\ \xf3\x65\x43\x26\x3e\x02\xec\x0c\xd7\xda\xa7\x49\x67\x23\x32\x68\ \x2c\x29\x1f\x01\xb3\xcc\xd2\x23\x70\x6c\x14\x66\x6c\x2f\xb7\xf2\ \x2d\x67\xe8\xb6\x2d\x57\x28\x27\xe3\x6e\xe1\x6a\x22\x26\x63\x31\ \x32\xce\x54\x56\xe3\x71\x83\x61\x54\xfe\x16\xdc\x7a\xaf\x75\x13\ \x60\x04\xf8\x0e\x3f\xb9\xaa\xd5\x8c\x90\xc6\x3c\x77\xed\x5e\xf7\ \x04\xe1\x3d\xdc\x56\xb8\xb8\x5f\x56\x76\x5d\x58\x81\xba\x3e\xf4\ \x65\xb7\x71\x3d\x97\xde\x0e\x46\xca\xea\x4a\x29\xa2\x94\xf4\x7d\ \x6a\xac\x25\x6c\x6e\x4c\x17\xa3\x74\xd5\xf4\x2b\x57\x6a\x29\x1d\ \xcb\x4d\xe7\x54\xa5\x4e\xe1\x2c\xdf\x72\x0d\xda\x03\x32\xe2\x27\ \x32\x26\x2f\x32\xe8\xc0\x34\x57\x73\x70\xae\x77\x5f\x99\xdb\x75\ \x61\xf3\xd9\x25\x03\xf9\x32\x01\x6c\xd0\x77\xf9\x96\xab\x68\xac\ \xc2\x97\x1e\xbf\x29\x7c\xe9\x4f\x18\xde\x7f\x40\x08\x24\x16\x76\ \x65\xbf\x50\x85\xd7\x05\x22\xcf\xd0\x7d\x1d\x74\xb0\x12\xf2\xd3\ \xfc\xba\x49\xaa\xe0\xeb\x66\xee\x20\x69\xee\x6d\xa7\x72\x2a\x0d\ \xfb\x8f\x9f\xee\x91\x3f\xe3\x09\xef\xd4\xb4\x57\xea\x26\x15\x71\ \x1b\xf0\x16\xe7\x93\x25\x55\x5f\xf9\xe6\xe1\x5f\x90\x16\xe9\x95\ \x5e\x63\x58\x17\x49\x3b\xfe\x3c\x6c\x00\x85\x1a\x5f\x53\x67\x0c\ \xda\x1a\x17\x3f\xe4\x3c\xc9\xd9\x3e\x5c\x1c\xfd\x83\x85\x5f\x78\ \x65\xcf\xcb\xc5\xc7\x50\x46\x57\x6b\x4f\x18\x76\xab\xbf\x38\xac\ \x8f\x1d\xc9\xac\x76\x6e\xee\x7a\xfe\x38\x8e\x31\x2a\x0f\xfb\x96\ \x7d\x43\x6f\x3f\x63\xe7\xd9\xf4\xd3\x37\x7b\x2f\x87\x52\x3a\x98\ \x03\x1b\xf0\x40\xd8\x84\x43\x02\x75\x7d\x87\x94\x79\x84\x02\x6b\ \xd9\x85\xd9\x75\x55\x98\xda\x3d\x71\xb6\x10\x86\xcf\x93\x80\x0c\ \x98\xfa\x6e\x1d\xfc\x4e\x4c\xce\x93\x84\x83\xb6\x8e\xeb\x77\x51\ \x04\xa6\x3f\x76\x5d\x3f\xf6\x0c\x95\xc6\xb4\xcb\xb5\x53\xe0\x6d\ \xac\x7f\x27\x88\xdd\x27\x4f\x8d\xa5\x6d\x8f\x3a\x50\x9e\x72\x26\ \x18\x7b\x0e\x14\xd0\x51\x3e\xe3\xf3\x3f\xff\x37\x74\x1e\x7f\x80\ \xd2\x4c\x38\x82\xd9\x77\x6c\x6f\xe7\x40\x57\xce\xd2\xae\x8e\xf3\ \x74\xbc\x7d\x9a\x5f\x57\x02\xb5\xfd\xde\x5f\x8b\x17\x00\x08\x13\ \x02\x25\x6c\x90\x51\xaf\xde\x9b\x83\x6f\x16\x32\x64\x88\x70\x21\ \xc2\x87\x10\xeb\x79\xaa\xe8\x69\xc5\x0a\x38\x1a\x75\xf5\xfb\xe7\ \xf1\x23\xc8\x90\x22\x47\x92\x0c\xf9\x47\xd7\x1f\x8b\x29\x53\x7a\ \x62\x69\xd1\x13\x45\x8a\x27\x79\xf0\x38\x75\x6a\x0c\xcd\x3f\x7f\ \x78\x8c\x39\xc5\xef\xe6\x18\x24\x42\x91\x78\x41\x52\xa7\xce\x08\ \x26\x36\xf6\xec\x31\xc2\xd4\x46\xd2\xa3\x4c\x8e\xd6\x51\xba\xd4\ \x86\x0d\x26\x5a\x8f\x1e\xe9\xfe\x3a\xa7\x6b\x9d\x23\x5f\xfd\xd1\ \xc9\xe4\xef\xc8\x88\x3a\x73\xfc\xb1\xed\x7a\x44\x69\x53\x23\x5a\ \xdf\x62\x35\x62\xa4\x21\x43\xbb\x4c\xf7\x36\xe5\xcb\xd4\xee\x42\ \xbd\x77\xf1\x36\x34\xd2\x4a\x82\x40\x6c\x50\x64\x10\x76\x78\xf0\ \xe1\x63\x85\x91\x31\x62\xbc\x88\x51\xa3\xc6\x2c\x24\x4a\x72\xee\ \xcc\x39\x85\xce\xd0\x9e\x50\xa2\x5c\x61\x51\x06\xcc\x8a\xba\x74\ \xd1\x04\x8a\x93\x87\x4e\xd6\x3e\xc7\xd0\x86\x32\x06\xca\xd0\x39\ \x46\x91\x32\x49\x8a\x15\x2b\xd5\x23\x55\xb5\x62\xf5\x9b\x95\xc9\ \x11\x3a\x74\x60\x99\x75\x7b\x84\x6d\xa6\x4c\x73\xaa\x3e\x57\x7e\ \xb6\xab\xd6\xb8\xc7\x89\xc7\x7d\x33\x38\xb0\xd3\xdf\x4b\xfd\xfe\ \x6d\xd8\xbd\x71\x60\x03\xb9\x04\xea\x63\x8c\x37\x72\xe4\x84\x8f\ \xe5\x5b\xc4\x4c\xf9\x32\x66\x38\xfa\x36\x7b\xee\xef\x5f\x11\x6c\ \xa4\x95\x36\x5a\x4b\xa8\xbd\xd4\x9a\x4d\x36\xd1\xa4\x4b\x45\x3b\ \xf1\x04\x14\x0f\xb6\xe1\x36\x14\x55\x36\x04\x07\x5c\x58\xc2\x0d\ \x97\xd5\x78\x7d\x4d\x45\x56\x3b\xab\xac\xd2\x0e\x2c\xd6\xb1\xa5\ \x1c\x1d\x67\x21\x97\x1c\x8a\xd8\xc1\xe5\xd4\x5c\xdc\x35\x85\x97\ \x5e\x7b\x88\x77\x95\x8d\xfe\x7f\x01\xe6\xdd\x77\x80\x7d\xe7\x5d\ \x0a\x95\x98\xa0\x45\x06\x84\xc1\x97\x1a\x4c\x0a\x41\x94\x11\x1c\ \xf7\x35\x49\x59\x7e\x1a\x09\xc2\x9f\x7f\x55\x92\x04\xe0\x49\x0c\ \xbe\xb4\xa5\x27\x32\x9c\xd4\xd3\x4d\x37\xe5\x04\x93\x0c\xac\x8d\ \xc1\xcf\x4f\x3c\xe1\x84\x04\x14\x50\xd4\xb1\x1b\x6f\x5d\xf9\x33\ \x5c\x58\x61\x69\x65\x15\x87\xc0\x1d\xe1\x4d\x88\x22\x8a\x08\x0b\ \xa0\x25\x96\xa8\x1c\x76\xd5\xd1\x71\xc4\x0d\xd7\xd1\x15\xde\x8a\ \x32\xee\x18\xd8\x53\x37\xee\x35\xde\x8e\x95\xda\x65\x83\x19\x36\ \x0c\x66\x84\x0d\xad\x54\x52\x09\x14\xef\xc1\xf7\x58\x45\x4a\x52\ \x94\x51\x65\x2f\xe1\x17\x65\x3f\x54\x5a\xf9\xea\x47\x24\xdc\xb0\ \x5a\x83\x5c\x9e\x34\x53\x82\x36\xbd\x56\x6a\x3d\x0e\xfa\x34\x1b\ \x6d\xb7\x41\x31\xc2\x08\x48\x1c\x61\xd4\x54\xcf\x81\x55\x27\x5d\ \x78\x6e\xe7\x0f\x9f\x7d\x8a\x48\x22\x2c\x24\x92\x98\x89\x75\xce\ \x91\x95\x1c\x8b\x37\x1c\xd1\x07\x13\x4f\x31\xd1\xc7\xb7\x77\xee\ \x65\xd7\x5d\x35\x46\x8a\x63\x8e\x3a\x06\xe6\xdd\x1e\x66\xc4\xf2\ \xc3\x09\x2d\xf4\x65\xc6\x0b\x95\xf4\x40\x06\x7a\x0d\x49\x16\xd1\ \x41\x94\x59\x44\xea\xfe\x65\x4c\x52\xa6\x19\xac\x09\x7f\xf4\x83\ \x96\x7f\xac\xe0\x52\x96\xac\xf1\x20\xca\x83\x34\x51\xcc\xa0\x4c\ \x66\x82\x49\xdb\x4d\x6d\x8e\x40\xc6\x9b\xcc\x7a\xa5\x22\x72\x52\ \x11\xf7\xdb\x5c\xcb\xb5\xb3\x32\xa0\xde\x04\x5a\x2d\x73\x2d\x3a\ \x77\x68\x57\x32\xbf\x15\x6e\x56\xe4\xba\x18\xae\x8e\xe9\x3a\xc5\ \xd7\x8d\xbf\xf5\xfc\x46\x5f\x2d\x38\xf1\x83\x22\xf6\x32\x65\x86\ \x30\x59\xec\xdb\x2f\xd4\x14\x0d\x7c\x50\x45\xa6\x41\x19\x25\x1c\ \xae\x2a\x6c\xa5\x22\xa0\x8d\x46\x6b\x4a\xa4\xd1\x34\x36\xc5\x63\ \xa3\xd4\x60\x4d\x38\xb9\x46\x5b\x84\x64\x90\x31\x82\x9b\xc6\x66\ \xb8\x16\xc9\x6e\x6d\x88\x32\x72\xcb\xc1\xe2\x0d\x8a\x74\x78\x93\ \x09\x2c\x4d\x44\xd7\xb7\x73\x2c\x72\xab\x9c\xb7\xe5\x62\x35\xd7\ \x09\x47\x9c\x70\xf2\xb9\x3e\x4f\x6a\x63\xd0\x66\xfc\x15\x97\x5d\ \x66\xdc\xf0\xc3\x0f\xb1\x98\xa1\x57\x90\xad\xf0\x1b\xb5\x91\x52\ \x47\x76\xd1\x93\x16\x31\x99\xdf\x27\x5b\x2b\x4c\x0d\x0f\xab\x35\ \x2c\xf1\xd8\xb5\xd7\x8e\xb1\x6c\x61\xf2\x14\x7b\x84\x3a\xb9\x1d\ \xb7\x5a\xd3\xd1\xad\xe2\x5b\xc2\xed\x7c\xa7\x5b\x34\xb3\xe8\x32\ \xa0\x80\xf3\x4d\xfe\xa8\x73\xde\xa2\xe8\x0d\xdf\xdc\x3e\x6e\xd5\ \xb8\x6e\x5d\x5f\x5c\xcf\xea\x8a\xc7\x44\x0b\xe1\x77\x88\xf9\x1b\ \xf2\x72\x7e\xc2\xe7\x44\x0b\xd3\x4a\x0f\xee\xa1\x37\x1f\xc0\xa6\ \x53\x5d\x91\x46\xa9\xae\x9e\x5f\x06\x5a\xbb\xde\x5f\x2b\x38\x31\ \x58\xe6\x4e\x4e\x51\x13\x8a\x09\xf0\x76\x67\x0b\x60\x82\x7a\xd2\ \xbb\x3f\x40\xe1\x0f\x5e\x6a\x93\x51\x90\x30\x87\x09\x56\xe7\x2c\ \xe0\x9a\x4b\xa1\x0a\x57\xb3\xbe\x4d\xcf\x65\x7f\xc3\x16\xcd\x14\ \x45\x16\xbf\xed\xed\x50\x89\x72\x1c\xf6\xc6\xd5\xb8\x72\x59\x25\ \x72\xde\x5b\xdc\x6f\x32\x65\xb9\x73\x2d\x64\x0f\xf3\xea\x9c\x0d\ \x02\x93\x82\x2c\x64\xc1\x7d\x09\x31\x4d\x92\xe0\x47\xb0\x52\x55\ \x0d\x88\xaa\x5b\x55\x93\xe0\xa0\x0b\xfd\xed\xcf\x33\x48\x60\xcd\ \x6a\x6a\x12\xa6\x04\xda\xe4\x62\xb1\x93\x9d\x14\xcf\xa0\x20\xd8\ \xdc\x2a\x34\x42\xc1\xcd\x9b\x26\x48\x37\xe1\xdc\x09\x39\x2b\xda\ \xa0\xa1\x10\x87\x38\x16\x95\xe5\x6f\xcf\xd3\x5e\x57\x6e\xa0\x1c\ \x0f\xd2\x41\x7a\xde\x02\xd7\xe2\xc8\xd5\xb8\xed\x09\xed\x5c\x40\ \x5b\x4a\xa6\x62\xb8\xb4\xf2\xec\xe1\x68\x37\x68\x81\x19\x02\xd3\ \x82\x17\xbc\xfe\x83\x0c\xdf\xa9\x47\xaa\x28\x92\x10\xf9\x50\xcd\ \x88\x96\x01\xe2\xfc\xa0\xe4\xa4\x56\x35\xd1\x4a\x29\x18\xdb\xaf\ \x04\x68\x93\x9f\x24\xd0\x76\x52\xe4\x87\x16\x5f\x13\x9a\x55\x32\ \x90\x4d\x70\x0b\xe3\x5a\xbe\x52\x46\x0c\x6e\xb0\x83\x7c\x7b\x63\ \xf2\xe6\x08\xc2\xc2\x9d\x88\x7a\xd4\x3b\x14\x30\x1b\xa7\x14\xe4\ \xed\xb1\x8c\x79\xa2\x14\xba\xfa\xb2\x34\x1b\xb4\x00\x53\x83\xc4\ \x40\xbc\xe6\xe5\x84\xf4\x19\x01\x03\x2d\x48\x41\x0a\x46\x20\x11\ \x21\x4a\x64\x22\x31\x39\xa2\x11\xa5\xc6\x2b\xcb\x34\x29\x05\x4c\ \xec\xe4\x95\x72\xb5\xc5\x8d\x6d\x11\x8b\x09\x42\x65\x01\x49\x13\ \x1a\x9a\xd8\x86\x07\x6c\x9a\x50\x18\xdb\x32\x1c\x5a\x9e\x05\x45\ \x72\x74\x99\x3f\xeb\xa8\x2c\x39\xf9\x2d\x45\x85\xf3\x1b\xf5\x32\ \xe1\x32\x39\x3e\x23\x51\xc2\x1c\x26\x13\xf6\x88\xc2\x59\x72\x0f\ \x5d\x16\x7d\x4a\xa6\x9a\xa9\x34\xcb\xc9\x6b\x73\x7d\xb8\x8b\x2c\ \x8c\x60\x86\x16\x08\x03\x14\x7b\x80\x5a\xe9\x4c\xf7\x12\xa9\x85\ \x33\x93\x94\x31\x27\x3a\xfd\x43\x82\x52\xea\xe4\x41\x05\x8c\xdd\ \x4a\x66\x72\xca\x53\x88\xad\x76\xc1\x62\x9b\xb0\xdc\x34\x02\x31\ \xce\x81\xfe\x38\x73\xf1\x47\xe2\x10\x65\x4b\x39\xf6\x2d\xa9\x6c\ \x7c\x46\xe1\xa8\xb7\x37\x5f\x12\xea\x19\x74\x80\xea\xe3\x16\x97\ \xbd\xc6\xf5\xa1\xab\xe0\x73\x54\x5e\x92\x69\x23\x44\x22\x12\x2b\ \x33\xbc\x61\x0b\x30\x10\x52\x59\xec\xa1\x69\x29\x18\x1d\x4a\x29\ \x49\xaa\xa9\x55\xd2\x34\x95\xbc\xc8\xd4\x0c\x70\xce\x98\x82\x84\ \x04\xd4\x78\x0d\x28\x43\x49\x93\x71\xc6\xc6\x80\xa0\x7c\xcd\x4f\ \x23\xc4\x26\xb7\x91\x41\x82\x5f\xa9\xc3\x71\x74\xd6\x95\xc6\xa9\ \xd1\x97\x7c\x93\xa3\xf4\xc0\xf2\x9c\x67\x5c\xe7\x71\x2b\xa4\xaa\ \x2f\xad\xfa\x0c\xac\xde\x6c\x3b\x27\x38\xc1\x03\xca\x05\xae\x16\ \xb4\x10\x5d\x79\xd9\x4b\x20\xc3\x37\xd2\xa5\x19\xed\x90\x18\x00\ \x0c\x06\x40\x61\x80\x14\xf8\xd0\x9b\xdb\x14\x27\x97\x82\x18\x13\ \x96\x66\x84\x57\x14\x81\x29\x5f\x3b\x03\x20\xc4\xbe\x53\x41\x29\ \x31\x48\x6a\x72\x8a\x92\xc0\x3a\x57\x62\x50\x58\xa0\x0c\xb2\x5b\ \x2c\xaa\x40\xb4\xab\xce\xb1\x6a\x1d\x11\xe7\x0d\x39\x6a\xd0\x2d\ \x50\x3d\x1e\x8b\x38\x0b\x5e\xa8\x5e\x75\xb2\x17\xcc\x99\x1e\xbd\ \xdb\x82\xf7\x22\xd3\x67\x35\x1a\xe9\x48\xcd\x1a\xaf\x3e\x74\xee\ \x73\xfe\x46\x90\xc5\x1b\x30\xc0\xb4\x11\x00\x78\x22\x96\x31\x2e\ \x4b\xb9\x34\x1f\x88\x80\x13\x93\x95\x14\x44\x72\x95\x8b\x13\x76\ \x9e\x42\x8b\x02\x4c\xc9\xfc\x58\x89\xa0\x52\xa2\xc4\x4b\x3b\xd1\ \x49\x4b\x1c\x28\x83\xb4\x20\x6b\x3b\xe3\x3a\x71\x72\x12\x05\xd5\ \x44\x61\x76\x85\xe5\x2a\x1c\x7d\xc9\x05\x55\x7f\x88\x56\xbd\xe7\ \x5d\xe1\x05\xef\x44\xae\x07\xd4\x61\xb5\xe0\x13\x4f\x77\x24\x17\ \x2f\x66\x6a\xb4\x29\x36\x88\x85\x13\x5a\x50\x4d\xbb\x84\xd4\x0c\ \x29\x48\x1f\x83\x65\x67\x49\x05\x0b\xd1\x21\xa8\x13\xd8\xe9\x30\ \xc2\xc9\x08\x97\xc4\x1b\x35\x91\xa2\x4f\xb4\xc8\x83\x10\x37\x08\ \x80\x12\x1b\xa5\x1a\x14\x04\xc5\x95\x48\x0c\x25\x3a\xc9\xae\x11\ \x40\x76\x14\xad\x82\x8b\x5c\xe1\xa5\x83\x8b\x25\x3a\xd9\xe2\x75\ \xa5\xce\x27\x5b\x11\x9e\x53\xac\x1c\xd1\xfa\x23\xb5\xa9\x3d\x41\ \x8e\xc7\x55\x87\x07\xf4\x81\xd1\x27\x86\x5c\x79\x2e\x1a\xaf\x91\ \x96\xd5\x29\x4e\xa8\x97\x48\x2d\x27\x0b\xa6\x19\x20\x0b\x89\xb4\ \x72\x4a\x8c\x68\xc9\x05\x3b\x64\x22\xf7\x09\xa2\x81\x3d\x81\x5c\ \x2e\x8f\xa4\x1f\x15\xcb\xd5\x98\x55\xc3\x66\x04\x95\x02\x9e\x02\ \xfe\x94\xa7\xd9\x6e\xf7\x66\x84\x8c\x38\x29\x65\x4c\x1e\x55\xe5\ \xc8\xd5\x3d\xc3\xf1\x84\x8e\x3b\xb6\x1e\xcf\x3b\xda\xab\x3e\x83\ \x7a\xd4\x38\x82\xa1\x9f\xe1\x68\xad\xb0\x96\x5c\x7d\xe8\x71\x1f\ \xe6\xcb\xda\x3e\x5a\xd4\x2e\xd0\x1c\x72\x33\x3f\x27\xaf\x3e\x7c\ \x6e\xd2\x22\x5d\x5f\x25\xb2\x30\x82\x1f\x01\xec\xc0\xf1\xe9\x57\ \x82\x93\xe4\xaf\x52\xbd\x61\xaf\x5c\x56\x04\x35\xa8\x28\x40\x95\ \x64\xa9\x35\x68\xaa\xb5\xae\x62\xa7\x1a\x29\x2e\x68\x62\x0b\xfa\ \xc3\x41\xec\x92\x16\xde\x20\xa7\xd9\xb0\xf8\x44\x13\x9a\x30\x5e\ \x81\xc6\xf1\x50\x27\xa8\xa3\x2f\xa7\x7a\x71\x5f\xde\x20\xd8\xe1\ \x1d\xad\x37\xa8\x01\xd5\x07\x3c\x00\xb5\xa9\xc5\x23\xb5\x5b\x40\ \x72\x46\xf7\x58\x7c\xce\xec\x1e\x53\xa0\x89\x29\xfc\x12\x59\xc9\ \x01\x5e\x8a\x80\x5b\xd0\x8a\x03\x1c\x80\x1a\xea\x6e\x0c\xd5\x48\ \xed\x2f\x53\x19\x17\x22\x0c\x0e\x22\x84\x59\x4d\x12\x6a\x58\xb8\ \x80\x18\x6e\x89\x99\x7e\x75\x86\x52\xb4\x13\xa7\x67\x4e\xd0\xc4\ \x12\xe4\xe6\x7a\xc8\x80\x0c\x42\x55\x4a\x58\xe8\x00\x71\x08\x40\ \x60\x15\x4d\xb8\x2a\xf5\x3a\x0e\xda\x26\x3c\xfc\xe1\x9f\x18\xfe\ \xaf\x65\x1f\xde\x04\x88\x47\xbc\xee\xa1\x75\x1c\x56\x4b\xbe\xed\ \xc8\x36\xba\xe5\xe1\xfb\xb1\x7e\x9d\x22\x78\x0c\x60\xaa\xf0\x65\ \x8d\x05\x22\xd1\x95\x48\x91\x92\xb4\x15\x9e\x3a\x40\x25\xe0\xfa\ \xbe\xf7\xac\xd4\x74\x93\x9c\xf7\x38\xa1\x60\xef\x08\xe7\xdb\x62\ \x0b\x6a\x90\x6c\xf8\x51\x0a\x80\x6f\xb1\xa6\xb6\xc3\xba\x3a\x63\ \xd7\x40\x08\x0e\x2b\x2a\xc9\x81\x05\xd9\x4d\x00\x81\x4f\x7c\x0b\ \x51\xa1\xf5\xe5\xdb\x2d\x7b\xa8\x3e\x9c\xf6\xb4\x7e\x6b\xc2\x2a\ \xc8\x2e\x7c\x08\x48\x7c\xb4\xc6\xef\xaa\x57\x39\x04\xbe\x1e\x33\ \xba\xab\xe1\x6b\xa6\x7e\x63\x1e\x2f\x1b\xc9\xb0\xf0\x94\xb6\x1c\ \x34\x6f\xbb\xe9\xeb\x3f\x7e\xdd\x3f\x7a\x1f\x4b\x9f\x64\xd7\x6e\ \x5a\x19\xaf\xd1\xdd\x7c\x72\x05\xa1\x40\x51\xd6\x8e\x80\xa3\x3f\ \x03\x4d\x14\x18\xc5\x5c\x5b\x0c\x4c\x58\xf7\x69\x50\x88\x35\x95\ \x15\x79\xa3\x09\xc2\xf7\xc6\x30\x8d\xd6\xb1\x9d\x56\x9f\x45\xd4\ \x68\xf5\xc1\x52\xcc\x52\x1f\x78\x43\xf0\xc5\x9e\xec\x35\x41\x3f\ \x78\x43\x2b\x48\x20\xa2\xd5\x19\xf4\x61\xc5\x7c\xad\x5c\x0a\x64\ \x1b\x6b\xc9\x56\x71\x58\x0e\x20\x59\x1f\x59\xe1\x57\x53\xfe\x98\ \xc1\xe7\x34\x19\x7e\x09\x98\x01\x18\x00\x28\x5c\x53\x6f\x0d\x5d\ \x11\x5d\x12\xaf\xbc\xcf\x96\x60\x04\xfa\x25\x57\x06\xa8\x93\x28\ \xa8\x53\x98\x5d\x18\xed\x5c\x57\xae\xed\x60\xae\x68\x11\xc5\x08\ \x21\x3d\xfd\x01\x19\xec\x81\xeb\x1d\xc1\x0b\xf4\x5f\xc4\x01\xa0\ \x8d\xdc\x89\x56\xc1\x45\x56\x74\x85\xa6\x70\x8a\x52\xdc\x85\x0d\ \x78\x83\xf0\x09\x84\xec\xe5\x42\xda\x45\xe0\x33\x3c\x8e\x8f\x31\ \x53\x56\xa8\xdc\xca\x91\x9c\xf8\x98\x01\x13\x04\x92\x59\x45\x5f\ \xbc\x8c\xe0\x1e\xa0\xe0\x1e\x60\x40\xce\xc9\x96\x09\x9a\xc1\x08\ \x08\x43\xba\xcd\x88\x91\xc4\x60\xe5\x45\x0d\x11\x55\x8d\x5e\x29\ \xdd\x48\xbc\x43\x82\x88\x19\x0f\x56\x57\x9b\x6d\x58\x4f\x90\x52\ \x85\xbd\x5f\x15\xe1\x54\x97\xc8\x40\x9c\x29\xa1\x5a\x3c\xc0\x0b\ \xbc\x80\xa7\xb4\xc2\x33\x5c\xe1\x71\x4c\xca\x77\x50\xce\x60\xec\ \x41\x16\xee\x41\x1f\xf8\x9f\x17\x0a\xc4\xec\x7d\x42\x04\xde\x40\ \x2b\xa0\x96\x9f\x89\x47\xf8\x90\x9c\x01\xbc\x80\x30\x5c\xd3\xf3\ \x99\x21\xf4\xc9\xa1\x80\x61\x8a\x6c\x61\x00\xbc\x60\x9f\xbc\xe0\ \xa1\x09\xde\x45\x0a\xf4\x43\x25\x60\x43\x25\x64\x80\xfe\xe4\x2d\ \x44\xe5\x79\x42\x5c\x05\x1d\x97\xac\x9a\x21\xc6\x8a\x4d\xf1\x20\ \x98\x31\x48\xbf\xd5\x44\x29\x44\xc3\xe8\x95\xc2\xd4\x4d\x5d\x38\ \x8a\xe3\x29\x50\x0c\xaf\x78\x49\x76\xbd\x4d\xb1\x1c\x01\x35\xbc\ \xa3\x37\x40\x55\xb8\xc8\x45\xe3\xf0\xc5\xa6\xd8\xc8\x28\x46\xd4\ \x54\x7c\xc2\x2a\x3e\xe0\x27\x7c\x82\x20\x78\x43\x3f\xdc\xc0\x68\ \x55\x60\xb6\xe1\x49\x2d\xbe\x80\x01\x50\x83\x01\xe4\xe2\xf3\x75\ \x20\x91\xd5\x9c\x0c\xe5\xe1\x31\x7a\x87\x09\xb2\xd5\xf5\x21\x92\ \xe5\x04\x06\xbe\x68\xc3\x90\x54\x02\x28\xa4\xd4\xbb\xbd\x07\x7d\ \x08\xcc\x4a\x8d\x80\x22\xdc\x20\x3a\x91\xc0\x4e\xec\xa0\x24\x56\ \x91\xd6\xcd\xdf\x29\x94\xc2\x2b\xd4\x24\x38\xbe\x9f\x16\x91\xa3\ \x98\x21\xd8\x49\x34\x90\x76\x1d\x05\x35\x84\x9c\xc8\x5d\xdb\x52\ \x2c\xe0\x0d\xe0\xc9\x49\xc1\x8b\xa6\x30\xc4\x16\x4a\x1c\x17\x56\ \x01\x2b\xce\xdd\x0d\x4c\xe5\x3f\xc2\xe2\x0d\x94\x1c\xf2\xb9\x1c\ \x91\x3d\xc0\x2d\xde\xa2\x30\x30\xda\x43\xf2\xe2\x43\x9a\xa0\x33\ \xe5\xe1\x7f\x89\xd4\x5d\x08\x18\x7e\x99\x60\x1d\x36\x84\x2c\x18\ \x80\x16\x08\x04\x23\xa4\xc0\xf7\x75\x13\xf9\xcd\xfe\xcf\x25\xa5\ \x4e\x6a\x1c\xc4\x0f\xa8\x64\x27\xc9\x4a\x16\x9d\x01\x29\x5d\x91\ \xc1\xa9\x53\x34\xbc\x02\x0c\x94\xa3\x39\xda\x04\x11\x6a\xc9\x37\ \xf5\xa4\x88\x59\x62\x5a\xbc\xc0\x3b\x8a\x9c\xe3\x34\xce\x0d\xfc\ \xe3\x33\xbc\x57\xba\x1c\xc7\x55\x78\x43\x2e\x54\x01\xf1\x0d\xdf\ \x27\xdc\xc0\x69\xc1\xa2\x37\x08\x42\x2b\xc0\xe2\x18\x36\xdf\xb6\ \x69\x94\xca\x09\x03\x43\x3e\x83\x01\x3c\x80\x30\x70\xe0\x43\x86\ \x0f\xe2\x3d\x1f\x45\x6a\x5a\xa6\x01\x58\xce\x99\x20\x34\xad\x55\ \x81\x79\x87\x01\x68\x03\x04\x98\x80\x36\xf4\x40\x5c\xd1\x07\x39\ \x35\x89\xbb\xc1\xc7\x1b\xdc\x80\x5f\x76\x92\x22\xe8\xa0\x28\xd0\ \x4a\x14\x9d\x82\x1a\x9c\x01\x39\xbe\x82\x38\x0a\x26\x4d\x82\x27\ \x3f\xa4\xd9\xad\x21\x89\xac\xb1\x84\x42\x28\x5c\x1d\x50\xe6\x01\ \x1e\x41\x43\xf9\xdf\x2a\x40\x5c\x40\x9e\x00\x64\xa1\xa2\x37\xfc\ \x23\xf5\x0c\x1f\x09\xcc\x67\x69\xf6\xde\x09\xdc\x80\x20\x64\xe6\ \x0d\x0c\x24\x6d\x56\xa0\xcb\x3d\x9f\x2d\xae\x60\x6d\x7e\xe5\x6d\ \xe6\x26\x6e\xca\x96\x46\xa6\xcf\xa6\x9d\x65\x1e\xda\xa1\xf6\x2d\ \x84\x2c\x14\xa7\x2c\x8c\xc0\x01\x78\x61\x0f\xfe\x45\xcd\xa9\xe4\ \x47\x4b\x39\xc6\x63\x7c\x42\x75\xee\x8f\x22\x20\x62\xd9\x40\x91\ \x3b\xcd\xe4\xe8\x81\xa7\x85\x29\x66\xd3\xf1\x54\x0d\x82\xd8\xbb\ \xd5\x03\x26\x6e\xa2\x3c\xf2\xde\x3f\x92\xc0\xf0\x11\x5f\x69\x36\ \x1b\x7f\xfa\xdf\xdc\x8d\x97\x69\x02\xe8\x54\x0a\x24\x81\x7a\x62\ \x2c\x38\x1f\x44\x12\x59\x1f\x08\x03\x83\x32\xa8\x6d\x42\x69\x2c\ \x64\xe9\x6e\x4a\x28\x22\x09\xe3\x1b\xac\x55\x80\x5d\xa8\x1d\x56\ \xd3\x86\x7e\x29\x80\x15\x98\x30\x20\xa7\x09\x48\xc0\xd3\x08\xa2\ \x27\xd4\xcf\x48\x3a\x67\x45\x28\xc2\x35\x8a\x44\x2b\x4c\x4c\x11\ \x0a\x21\x63\x7a\x67\x29\xe4\x03\x78\x86\x27\x4d\x8e\x1e\xea\xdd\ \x9a\x76\xca\x0e\x82\x65\x57\xd7\x0d\xd5\x1c\xbc\xc0\x11\x54\x1b\ \xa2\xfc\xe3\x94\xf8\x9f\xf0\x45\xdc\xf0\xcd\x9d\x20\x00\x28\xa2\ \x9d\x66\xef\x4d\x65\xc7\x59\x65\x2c\x20\xda\x2e\x9a\x95\x82\xae\ \x5c\x95\x0a\x83\xa9\xc6\x82\x30\x68\x69\x96\xf2\x66\x30\x7e\xa9\ \xab\x6e\xa8\x98\x62\xa8\x1d\x6e\x68\x99\xa6\xc7\x7a\x0c\x49\x16\ \xa4\x14\xe6\x8d\x24\x5e\x5a\x46\xfe\xd4\x29\x48\x78\x83\x3a\x91\ \x63\xa0\x96\xe3\x38\xce\x64\x4d\x8a\xa3\xfe\xff\xac\x46\x76\x4a\ \xd9\x49\xd0\x15\x6a\xbc\xd9\xdb\x20\xc1\x0b\x4c\x47\x9d\x9d\x40\ \x43\x51\x4f\x40\x2a\x82\x20\x90\x1d\x09\x34\x41\x7f\x92\x00\x40\ \x5e\xcf\x5c\x74\x15\xa6\x9e\x66\x43\xad\xe6\x33\x3c\x69\x84\x6a\ \xd4\x56\x76\xd5\x57\x1a\x00\x6d\xae\xe0\xa9\xa6\xaa\x01\x38\x01\ \xe2\x6d\x69\x92\x09\x23\xad\x2e\x84\x5a\x9a\x81\x80\xc9\xaa\x5a\ \xc9\x82\x5a\xb9\x6a\xf9\x1c\x00\x62\x98\x00\x36\x3c\x23\xbd\x0d\ \xdd\xa8\x9c\xca\x25\xa1\x4a\xeb\x00\xab\x47\x90\x40\x2b\x78\xe7\ \xd4\xd5\xa4\xc6\xd6\x64\x3e\x84\x67\x9a\x11\xab\x98\xc9\x8e\x2e\ \xac\xc0\xc8\x8e\x2c\x81\x04\x17\x4a\x70\x5d\xd7\x19\xc5\x0b\xf0\ \x58\xc9\x39\x4e\xa7\x72\xaa\x20\xcc\xac\xb6\x4e\xa5\x30\x5d\xd0\ \xb9\x62\xea\xa7\x12\xe4\x0d\x18\xc0\x09\xb0\x6b\x6e\xd6\x5c\xb6\ \xdd\x66\xbc\xfa\xac\x01\xc4\xc2\x0a\x3e\xc3\x0f\xdc\x2b\xbe\x3e\ \x5f\x92\x99\x41\x48\x0d\xac\xbf\x02\xec\xac\x0a\xec\xac\x16\xe7\ \x42\x8c\x40\x3f\x0c\x44\x0a\x50\x1e\xf9\xa5\x1a\xfd\xd4\xcf\x7d\ \x64\x04\xc2\x50\xec\x3f\x54\x42\x38\x06\x40\x0e\xe4\xc0\x2b\xb0\ \x6d\xb2\xf6\x69\x24\xbe\x42\x00\x50\xfe\x5d\x15\x65\x27\x46\x94\ \x2c\xc9\x32\x88\x96\x34\x88\x7a\x3e\xc6\x88\xcd\xc1\x3b\x30\x2a\ \xa3\x9d\xe6\x78\x0d\x28\xa7\xda\xec\x1e\xf5\x1e\xf2\x21\x1f\xa6\ \x2e\x6e\x1f\x20\x6d\xcf\xae\x6b\xb6\x71\x20\xf8\xe4\x66\x2e\x3e\ \x00\xaa\x36\x24\x95\x52\xa9\x01\xfc\x40\x2b\xfc\xc0\x0d\x38\x01\ \xbe\x8a\xee\xbe\xc2\x6a\xc1\x12\xec\xd5\xd2\xaa\x1d\x52\x6d\xad\ \x9a\xc7\xad\x66\xc1\xf7\x39\x2c\xa9\x60\x4d\x65\x5c\xcd\x12\x99\ \xed\x3f\x08\xc2\xe8\x05\xc0\xc6\xbe\x6d\xc7\xbe\x1f\xef\x96\x82\ \x1a\xe0\xa9\xdd\x3e\x4c\xde\xae\xc6\xc3\xa8\xc4\xd9\x08\x57\x3d\ \x78\x5d\x0a\x2c\xea\x0b\x58\x5b\x43\xc9\xec\xe1\x6e\x6a\x80\x2a\ \x2e\x72\x80\x8b\xe2\x2e\xee\x7c\x9d\xd6\xa7\xfa\x2c\x94\x8e\xe5\ \xf3\x4d\xe9\x94\x32\x28\xaa\x22\xed\x33\x7c\x6e\x3f\xfc\xc0\x33\ \xe0\x2b\x92\xe1\xab\x30\x0a\xe7\x99\x02\xec\x99\x9a\x29\xea\x0e\ \x6c\xeb\x32\x44\x16\xac\x87\x36\xc4\xae\x37\x99\x1f\x1c\xa8\xc1\ \x02\x90\xe8\xd5\x60\xc6\xc4\x9a\xad\x05\x64\xac\x8c\xe6\xa4\x38\ \xf6\xa9\x05\x74\x6c\x00\x9c\x41\xb3\x8e\xec\xdd\x8a\x6c\xf2\x02\ \x51\xc4\x0c\xa2\x97\x78\x9d\x63\xfe\x41\x5b\x0b\x60\xeb\xf4\x1e\ \x6e\xf5\x9a\x66\x92\xf6\xde\xb8\x68\x6f\x8e\x19\xe4\xcf\x06\xe8\ \x0a\x86\x6f\x6e\x86\x4f\x2e\x9a\x6a\xd2\x6e\x6e\xe7\x3a\xde\xfa\ \xfe\xc0\xe8\x8a\x2e\xd4\xaa\xa5\xea\xce\xaa\x99\xda\x2f\xfe\x1a\ \x6c\x43\x98\xc1\x7a\x68\xc1\x33\x96\x9f\xc0\x2c\x40\x00\x04\xc0\ \x00\x8b\x6d\x12\xe5\x47\xd9\x52\x6c\x0f\xbc\xa4\x10\x3a\x70\x78\ \x62\xac\x1a\x8c\xad\x2e\x88\x02\x17\x73\x31\xf2\x42\xd1\x68\x5c\ \xcc\x4b\x1c\x10\x3b\x1e\x45\x6a\x7d\x70\x80\x8a\x30\xe2\x26\x69\ \x09\x67\xaa\x3e\x5e\x4f\xf7\x2e\xee\xcf\x1a\xed\x93\xbe\x30\x7e\ \xc1\x70\x1f\x24\x2d\xfb\xca\xab\xbc\x72\x8e\xe7\x76\x0e\xe9\xc6\ \xc2\x6d\x05\xec\xd4\x42\x6d\xfd\xd2\x2a\x22\x97\x29\xd6\x06\x58\ \x25\x48\x40\xe4\x81\xdf\x70\x79\x82\x12\x33\xb1\x7d\x38\x09\x66\ \xfc\xaa\xd9\x92\x80\x0f\x78\xe7\x10\x8e\x5e\xc7\xae\x83\x1a\x88\ \x42\x28\xe3\x2d\xb3\x76\x27\xc6\x9e\x63\x82\x58\xd1\xde\x9e\xac\ \x03\xdd\x85\x29\x2e\x1a\xb6\x61\xeb\x92\x8e\x30\xa6\xb6\xb1\x1b\ \x3b\x9f\xb9\x22\xdf\x93\x22\xad\xcf\xd6\x71\x6e\x66\x94\x6e\x52\ \xe9\x68\x7d\x2e\x31\x7b\x62\xfe\xe7\x64\xe9\xd1\xec\x2b\x0f\x7f\ \x69\xc0\x1e\xb2\xfd\x2a\x72\xfe\xa6\x87\x36\xbc\x80\xff\xfe\x21\ \x1c\xac\xc3\x02\x64\x67\xea\xd4\x2e\x66\x88\xc2\x94\x64\x72\x85\ \xa1\xd2\x19\xe0\xc3\x38\x8a\x63\x28\x37\x6b\x05\x8b\xc2\x02\xa8\ \x81\x9f\xe6\x83\x9f\x36\xf0\x38\x86\xb2\xc0\x7d\xcd\x4a\xe5\x85\ \x85\x44\xaf\xb9\x4e\xef\xcc\xaa\xb1\xcd\xb6\x31\xef\xfd\xf3\xe4\ \xea\xb2\x2e\x9f\xd6\x0a\x6e\x29\xab\x9a\x20\x49\x3d\xee\x0a\x3a\ \x5e\x2b\xf4\x83\xfa\xb2\x6f\x92\x1d\x0d\xe7\xe4\x61\xe2\x4d\xad\ \x97\x1a\xec\x99\x66\xb4\x10\xe7\x85\x30\xbc\xd5\x34\x8e\xa8\xdd\ \x8e\xac\x5e\xe2\xc7\x02\x64\xc1\x37\x53\x2c\x09\x08\x42\x24\xf6\ \xe9\x2b\x7c\x32\x36\x77\xb1\x1a\x9c\x33\x17\x4f\x5d\x3b\x5f\x71\ \x9f\x2e\xe6\xc5\x88\x6c\x99\x49\x63\x9c\x8d\xc0\x11\xa4\x40\xed\ \xc9\xf2\x54\xce\x2c\x51\xef\x33\xe2\x6e\xaf\xe3\x06\xb4\x40\x53\ \xe9\x09\x1c\x6d\xbb\x96\x15\x59\xc9\xb0\x01\xd8\x70\x43\x13\xf3\ \x31\x4b\xf4\xd3\x76\x29\xad\xd2\x2f\x5e\x14\x98\x33\x37\x86\x11\ \xb4\x00\x28\x54\xb3\x43\xac\x4a\xde\x92\xac\xd8\x5a\x86\x0f\xf4\ \x03\x8a\x92\x40\x8a\xee\xfe\x8f\x20\x9c\x81\x05\x2c\x71\xdb\x2e\ \x71\x3e\x78\x67\x3e\xf0\x6e\x0e\xdc\x35\x4c\x63\xec\x19\x64\x33\ \x9e\x9e\x63\x17\x0f\xf6\x39\xb2\x99\x2e\xf8\x64\x5a\x00\x35\x8f\ \x31\x2e\xf5\x16\xb5\xe1\x62\x6f\x9d\x29\xf5\x7c\x39\xee\x2e\x1f\ \xed\x83\xfe\x32\x42\x93\x14\xe7\xda\x70\x3f\x74\xf6\x0f\xdc\xb0\ \x44\x77\x8e\xd1\x4c\x93\x5a\x65\xda\xa7\xa1\x47\xfd\xf6\x0b\x94\ \x41\xcd\xc4\x14\x0c\xf2\x3a\x0c\x1c\xe0\x15\x14\xb4\x42\x5b\xe3\ \x6e\x5f\xf5\x00\x04\xaf\x6d\x0e\x2c\x31\x5d\x6b\xac\x04\x33\xeb\ \x60\x4f\xb0\xc8\x6e\x31\x17\xdb\x44\x36\x6b\x49\xee\x44\x08\x6e\ \x6c\x62\x0a\x90\x5c\xbd\xf0\xde\xe1\x72\xab\x51\x9f\x56\x64\x7b\ \x95\x52\x07\xf4\x93\x12\x2d\xa3\x39\x75\x84\x66\x64\xf8\xa4\xc0\ \x42\x77\xb6\x78\xaf\xef\xe7\x22\x0d\xe7\x84\x8f\x0e\x63\x68\x1e\ \x2e\x72\x73\x16\xc6\x47\xbf\xe9\xea\x90\x2c\xc9\xa6\x00\x95\xb6\ \xca\x5b\x47\xd8\x01\x78\xa7\xda\xae\x6d\xef\xe6\xc3\x28\xcb\xf7\ \xf1\x96\x2c\x1c\x04\xf7\x02\x08\xf6\x29\x1c\xf7\xc3\x6c\xf1\x4c\ \xda\x84\x6d\xbc\x43\xe0\xce\xc1\xca\x99\x6b\x1a\x4f\xa5\x22\x08\ \x68\x92\x3a\xee\x89\xfe\x4d\x76\x52\xdf\x26\xf9\x5e\xe9\x65\xf3\ \xa6\x0c\xc1\xb0\xa9\x32\xb4\x78\x7f\xc2\x67\x73\x4e\x3f\x28\x02\ \x0e\x8f\xd4\x34\x01\x6c\x6f\x46\x73\x7b\xc7\xf8\x1b\x3c\x67\xfd\ \xf0\xc0\x40\xba\xf5\x7d\xb3\x5a\x7e\xbf\x42\x0c\x60\xc1\x07\xb0\ \x6d\x3e\xbc\xb4\x96\xac\x80\x70\x2b\x11\x71\x67\x67\x17\xa3\xf2\ \x0e\x72\x31\x0f\xe4\xed\x0e\x62\x2c\x6d\x64\x80\x17\x60\x53\x1d\ \x80\xf7\xe0\x8a\x30\x51\x73\x2a\x52\xfb\x99\xb9\xa6\x6a\x57\x65\ \x37\xf9\x3a\xe8\x94\xb6\xc0\x96\x52\xda\x43\x52\x69\x16\x54\xb5\ \x78\xab\xb8\xfa\xaa\x38\xe9\x76\xe9\xea\x36\xb3\x8c\xcf\x39\x43\ \x14\x91\x46\x64\xc0\x27\xa4\xa4\x5b\xdb\x76\x7f\x60\x43\x0e\x7c\ \xc0\x8f\xbf\xc2\x3a\xf0\x54\xed\x6e\x71\x9a\x75\xf1\x16\x0f\x78\ \x36\x73\xa7\x85\x15\x37\x93\xe7\xed\x3a\xf3\xa0\x0f\xbc\x83\x50\ \xc0\x72\xc9\x35\x54\x43\x09\x82\x74\x4f\x37\x75\x1f\xe4\xf8\x36\ \x75\x2c\x60\xae\x83\x12\xad\xca\x91\x2f\x49\xb1\xea\x08\x9a\x2a\ \x95\x12\xf3\x78\xdf\xb0\x79\x8b\x2e\x92\xc1\xf9\xea\x42\x2d\x9d\ \xd3\x79\xc0\xe8\x42\x01\xd4\x36\x9f\x5b\x49\x2e\xe4\x00\x33\xd4\ \xe4\x02\x7c\x71\xfe\x29\xc7\xf4\x81\x23\xfa\x0e\x76\xa7\xa0\xa6\ \x59\x81\x17\xf8\x39\xeb\xc2\x3a\x13\xa1\x28\x9f\x81\x0f\x9c\x42\ \x06\xb4\x5e\x0a\xa8\x9c\x01\xf0\xac\xcc\x1a\x6e\x09\x3b\x5f\x86\ \x9b\x2b\x57\x92\x5c\xa8\x93\x6f\x98\x9f\xba\x43\xde\xf1\xf3\xc9\ \x30\x43\xab\x6f\x8a\xbb\x3a\x68\xa7\xb7\x7a\x73\x75\xad\xcb\x38\ \x19\xa4\x40\x2b\xe8\xf9\xae\xc3\x0a\x09\xd4\xa4\x1a\x50\xb0\xec\ \xa8\x33\xb1\x07\x77\x92\x8f\x23\x2a\x99\x27\xb3\x1f\xfa\xb3\x4b\ \x30\x77\x9a\x67\x4e\x8c\x40\x0a\x54\xb9\xb8\x67\x69\x1a\x0f\xe8\ \x80\x7a\xaf\x75\x57\x2e\xf2\x11\x6d\x83\x8e\xf9\xe5\x6a\xf6\x0b\ \xb3\xaa\xaa\xbb\x83\xe7\x1a\x80\x43\x8f\xf7\x89\xfb\x31\x0e\xb7\ \x38\xd5\xca\xef\xbc\xb7\xb7\x30\x20\xcd\x9e\xe7\xbb\xc2\x94\x82\ \x28\x58\xc4\x91\x67\xf3\x71\x97\x6c\x5f\x4f\x1d\x3c\x61\x31\xa3\ \x9b\xb2\x77\x76\x67\xc2\x7b\xb1\x4e\x8c\x00\x28\x1c\x85\xca\x51\ \xf7\x84\x77\x3b\x94\x2a\x45\x07\xc2\x2b\xa3\x11\x6d\xb6\x3d\x80\ \x66\x77\xf4\xa9\x5b\x6e\xd5\xaf\x3a\x43\x9f\xb8\x67\xbb\xa2\x8a\ \xfb\xb1\xca\x23\x34\x69\xa7\x76\xcb\x17\x86\x11\xf4\x81\x22\xa4\ \xa4\xcc\x37\xfe\xd1\x0b\xe0\xd5\xbf\x07\xb7\x91\x1f\xbb\x4e\x36\ \xdd\x38\x9e\x01\xd0\xbb\xf3\x19\xdc\xb5\xdd\x17\x7b\x76\xf6\xa4\ \xc7\x20\x3d\xe6\x66\xfb\xf4\x7e\x2a\xf7\xae\xd6\xd3\x4f\xb6\xaa\ \x83\x65\x0c\xeb\xa2\xa9\x5e\x53\xe3\xab\xba\xaa\x33\x28\x67\x37\ \xb4\x67\xb7\xca\x01\xb8\x22\xe7\xa8\xbc\x46\xea\x30\xd9\x97\x3d\ \x91\xe1\xfb\xda\x5b\xa7\x94\xf9\x3b\xc0\x2b\x7b\x85\x61\xec\x4b\ \xc6\x6d\xde\x6f\x80\x3b\xf3\xb6\xde\xff\xf7\xdd\xaa\x81\x0f\xf8\ \x40\xfe\x4d\xa6\xbc\xa6\x2f\x2c\x6e\xef\x57\x89\xcf\xf8\x6a\x5b\ \x0c\x2f\x3e\xe3\x43\xbe\xf0\x4b\xf5\x42\x4f\x35\x67\x7b\x76\x43\ \xa3\x68\xbb\xaf\xb8\x5a\xa2\x77\x5a\xb1\x37\x9d\xb7\x95\x30\xe0\ \x78\x8e\x87\xfe\x48\xb0\xa4\x94\x61\x84\x3a\xe7\x7d\x4b\x5f\x31\ \xea\x73\xf2\x78\xb6\xf4\x03\xf3\x2e\x5d\xdb\x3d\xf2\x5a\x8d\x2e\ \x20\xfb\x19\x8c\x41\xb1\x20\x41\x0a\x28\xa4\xf1\xad\xa6\xe2\xfe\ \x1d\xfd\x87\x8f\xf3\x41\xfe\xd5\x9f\xfa\x94\x46\x3e\xe4\x57\xa9\ \xf1\x93\x38\x40\xb4\xea\xf7\xa3\x5f\xc1\x7e\x8a\x0e\x7c\x3a\xf8\ \xc3\x89\x13\x33\x2d\x1e\xb6\x68\x68\x06\x83\xac\x37\x17\x31\x66\ \xd4\xb8\xfe\xf1\x4d\x0b\x03\x8a\x48\x84\xfc\x37\x92\x64\x49\x93\ \x27\x51\xa6\x54\xb9\x92\x25\x4b\x12\x37\x4e\x89\x12\xb5\x40\x14\ \x0f\x51\x67\x4a\xbd\xca\xa7\xf3\x4c\xcf\x53\x38\xf3\xf5\x7c\xf5\ \x2a\xc7\x50\x0b\xf9\xf2\x05\x08\x60\xe1\x8c\x1a\x51\xba\x56\xac\ \xf0\xb4\x42\x97\x4c\x35\x67\x7c\xe8\xfa\x43\x06\x0a\x92\x39\x29\ \x5e\x50\x33\xf0\xcc\x80\x81\x13\x27\xfa\xa4\x4d\xdb\x82\x2d\xdb\ \x3e\x2d\xde\x0a\xeb\x23\xac\x05\xdd\xb6\x74\x85\x09\x2b\x5b\x56\ \x6c\xd9\x56\x06\xfe\x02\x6e\x35\x98\x30\xc1\x81\x05\x3f\x7d\x52\ \x44\x90\xa1\x44\x87\x10\x9d\x40\xac\xf8\xc6\x22\x47\x8e\x46\x8c\ \xec\x31\xd0\x2f\x24\x89\x96\x9f\x41\x87\x16\xcd\x52\xd0\xd5\x9e\ \xa7\xcf\xec\x2c\xb5\x0e\x75\xea\x57\xa5\xf2\x95\x0a\x50\xf4\x55\ \xcf\x0d\x38\xcf\xac\x73\xfa\x54\x17\x8f\x9f\x6a\x68\x3e\xf5\x54\ \xcf\x13\x14\x28\x29\xde\xbd\xe8\xf1\xe2\xc5\x03\xe7\xcf\xfa\xa0\ \x5d\xab\xf6\xad\xda\x58\x79\xf3\xd6\xad\x8b\x7d\x6f\x96\xc1\x82\ \xbf\xfb\x1d\xdc\xaf\xd5\x0f\x81\x02\x0f\x93\x38\x50\x50\xd1\xc0\ \x86\x0d\x21\x3b\x34\x23\x8b\xbe\xe5\x8d\x6c\x7f\x88\x1c\xbd\x9f\ \x7f\xfe\x7f\x96\x9f\x70\x0a\x60\xa8\x57\x04\x0c\x20\xa8\x9e\x90\ \x22\x90\xc0\x7c\x2c\x10\x30\x28\x1e\x7c\x3b\xe5\x2a\x35\xd4\x88\ \xe9\x94\x9f\x7a\x2a\xa5\xa9\xa7\xa4\xf2\xe4\x0f\x1e\xc6\x18\xe3\ \x9d\x1e\xa8\xa1\xe6\x1d\x61\x52\x70\x4e\x2d\xb7\xa6\x83\x2b\x96\ \xbd\x0c\xc0\x4e\x46\xbd\xbc\x03\x0c\x3c\xc2\x70\x24\x8f\xbc\xf1\ \x0c\x32\x68\xb1\x1f\x80\x7c\x4f\xc8\x89\x2a\xaa\xcc\xbe\x37\x34\ \x8b\xa5\x33\xff\x98\x6c\x92\x49\x12\x2a\x19\x4a\x40\x02\x05\xcc\ \xed\x0c\xa5\x66\x23\x6a\x28\x06\xf3\xc1\x87\xb7\xaa\x64\xb2\x10\ \xc3\x0c\x37\x84\x6a\xaa\xde\x78\x80\x42\xc4\x1e\xae\x58\x0e\xac\ \x23\x1e\x60\x8b\x09\xeb\xac\x2b\xeb\x99\x67\x7e\x18\x0b\xc6\xb2\ \xbc\xc3\x31\xc7\x1e\x0b\x5a\x6f\x30\x20\xf1\x64\x2f\xa1\x81\x82\ \x6c\x28\xd1\xf7\xcc\x98\xcf\x48\x8e\x84\xf9\x01\x24\xfd\x9c\xac\ \xd4\x52\xd0\xfa\xd9\x09\xa9\xd5\x28\xbc\x4a\xa9\x1c\xb0\x04\x75\ \xb6\x00\x34\x3c\xc5\x26\xdf\x7a\x13\x65\xcc\x0b\x65\xaa\x09\x2a\ \x5d\x60\x85\xf5\x8f\x59\x91\x18\xd1\x19\x6a\xb2\x78\x27\x45\xe7\ \xce\xba\x33\x96\x07\x84\x89\xe5\x4e\xc2\x9e\x69\xa5\x58\x3f\xcf\ \xfe\xf3\x33\xd0\xf5\xfa\x39\xc0\xd9\x82\xcc\x8b\xb6\xc7\xf6\x0c\ \x63\x48\xd1\xf7\x82\x74\x94\x32\x8d\x32\x3b\x68\xc9\x4b\xc1\x0d\ \x57\xa5\x4f\xb2\x39\x23\xa6\x58\x45\x51\xe3\x53\x2c\x13\x54\xea\ \xc0\x33\x36\xd0\x90\xb7\x08\x59\xb5\xa9\xa6\x56\x65\x32\xd3\x93\ \x7d\xa1\xc8\x80\x4d\x67\x48\x64\x8e\xb9\x07\xa8\x29\x76\xac\x61\ \xbd\xe9\xc7\x1b\x65\x93\x05\x54\xc7\x66\x0d\x5a\xef\xd9\x41\xcb\ \x43\x0f\xa1\x03\xa8\xb5\x16\x48\x6b\x19\x2d\xd2\x48\x23\x24\x12\ \xc4\x33\x71\x49\x2e\xf9\xa4\x1e\xcc\x7d\x6a\x26\x35\x92\xca\x41\ \xd4\xa5\xb8\xd4\xd0\x07\x04\x99\xfa\xd2\x26\x09\x7f\x92\x50\xa6\ \x05\x7a\xca\x17\xaa\x3f\x3c\xe1\x21\x03\x7c\x9c\x69\x33\xd7\xe4\ \x52\x10\x86\x39\x03\x1e\x78\xc1\x80\x82\x09\xeb\xa7\x58\x1d\x07\ \x7b\x66\xd9\x67\x9b\x9d\x98\x47\xaa\xcb\x33\x48\x90\x03\xd4\x53\ \xac\x1f\x45\x37\xbe\xb6\x05\x0c\x8a\xa4\xec\x87\x58\x26\x35\xd9\ \xed\xb7\x7b\x90\xf0\xaa\x0d\x3e\xc5\xc2\x65\x51\x19\x5c\x67\x03\ \xa7\x4c\xeb\x69\x81\x57\x79\x58\x60\xcc\xa0\x28\xbc\xc9\x27\x99\ \x6c\x92\x15\xc4\x11\x7b\x58\x4e\xd7\x17\xc0\x7a\x01\xc5\xa6\xfe\ \xed\x6c\x25\xe1\x85\x15\x26\xb6\x15\x67\x9f\xe5\x9c\x73\x20\x0a\ \x3a\x8f\x3c\xc3\x0e\x43\x28\x31\x85\xb0\x5d\xcc\x09\x20\x15\x91\ \x0f\x6d\xb6\xdb\x7e\x5b\x76\x93\x49\xa0\x3b\xd4\xbb\x5d\x76\x97\ \x5d\xd4\x0a\x87\x35\x5d\x32\x71\x6b\xaa\x53\xa7\x4e\x45\x5c\x17\ \x4f\x64\xf8\xa3\x5f\xc6\x4d\x4c\x2e\x8b\x2c\x9a\x0b\xcb\xe9\x61\ \x0f\xa8\xa4\x9f\x4a\x9c\xc5\x3c\xeb\x84\x3c\xe7\x1c\xd0\xad\x49\ \xf7\x31\x48\xd6\x11\x95\xb4\x31\x33\x26\x1d\x79\xf6\xf5\x4b\x26\ \x10\xd4\xf7\x67\x7b\x79\x5d\x03\x83\x5a\x47\xf0\xe0\xd4\x90\xed\ \x28\xe1\xd3\x8d\xe9\x4b\xdf\x5d\x75\x3c\x0f\xf1\x00\x1f\x3d\xa8\ \x44\xe3\xde\xf1\x8e\x2c\x54\xc2\x44\xb8\x3a\xe0\x60\x2a\x81\x3d\ \xec\x35\xc1\x7b\xcd\xfa\x44\xf7\xb6\xe7\x39\x83\x74\x0d\x5a\x07\ \xf1\xa0\x7b\x56\xa7\x88\x4f\x6c\xec\x20\xe9\x63\xdf\x09\xdd\x76\ \x80\x97\x25\x05\x4b\x58\xa2\x92\x81\x28\x24\xb8\xbe\x05\xe8\x40\ \xbb\xd9\xd9\x53\xe0\x00\x15\x55\xb9\x4a\x14\x54\xe1\x81\x0f\xf0\ \x81\x0d\x6c\x58\xa0\x07\x09\x64\x5c\x11\xb3\x40\x0d\x03\x46\xb0\ \x12\x4d\x90\x60\x2e\x38\xe7\x8d\xee\x39\x6b\x73\x18\xc4\xfe\x9a\ \xc3\xa6\x35\xbe\xf2\x79\xeb\x5b\x28\xf4\xa2\xb8\x48\xe0\xae\x0d\ \xb0\x70\x54\xee\xca\x87\x6e\x68\xa2\x8b\x05\xb0\x8c\x40\xa8\x29\ \x85\x0d\x57\x96\xaf\x99\x08\xce\x7f\x60\x52\xc3\x06\x86\x82\x8d\ \x57\x14\x31\x03\x48\xf0\x63\x0a\x32\x90\x82\x3f\x8e\x28\x82\xb9\ \x88\xa0\x13\xb1\x77\x80\x2a\x52\xb1\x12\x8b\xbc\x62\xd6\x00\xd5\ \x1e\x6a\x95\x8f\x20\xed\xe9\x0c\xa5\xbe\x98\x49\x70\x85\xd1\x40\ \x4a\x21\x8a\x80\x72\x40\x38\x7c\xad\x11\x28\xb5\x69\x8a\xdf\x76\ \x56\xa1\xfb\xcd\x11\x35\xa7\x58\x00\x6b\x5c\xf3\x0a\x3d\xf6\x60\ \x0c\x50\x98\x55\xf2\x94\x07\x05\x32\xec\x12\x39\x3d\x68\x05\x13\ \x25\xd8\xc8\x5f\x42\x70\x3d\x8d\xd4\x20\x16\x2d\x28\x3e\x2d\xc6\ \x4e\x93\xcd\x24\xd9\x27\x42\x35\xaa\x50\xe6\xe3\x14\x50\x59\x81\ \x4c\x52\x03\x9b\x57\xe8\x26\x4c\x36\x74\xa5\x84\x52\x83\xa0\xfa\ \x59\x29\x29\x9a\xb2\xc0\x2b\x7c\x30\x06\xa0\xd5\x83\x9d\x1e\x32\ \x4e\x3d\x2e\x42\x86\x0c\x28\x10\x7a\x40\x88\xe0\x2f\x1b\x09\x84\ \xea\x4d\xf1\x91\xe1\xeb\x87\x42\x48\x60\x10\x20\x95\xa7\x8b\xce\ \x34\x28\xb8\xa0\xb9\x2e\x50\x21\x85\x43\x54\x99\x89\xfe\x6b\x90\ \x52\x4d\x30\xb5\x6a\x78\xa9\x69\xe1\x81\x58\xa3\xa9\x77\x55\x48\ \x2b\xfb\xda\x57\xf2\x20\x24\x83\x37\x18\x41\x06\x22\x52\x20\xae\ \x94\x58\x09\xef\xf4\x29\x91\x12\xa4\x22\x7a\x3a\x48\xba\x0b\x92\ \xa0\x92\xcc\x3c\xe8\x4d\x2f\x45\x82\x56\xec\xc4\x8c\x67\x68\xe8\ \x28\x21\xea\x3f\x95\x61\xd3\x34\x09\x2a\x67\x6e\x8a\x0a\x1b\xa4\ \x52\x28\x26\x3c\x80\x95\x47\x3d\xa1\xaa\x3f\xd4\x03\xa4\x3e\xe0\ \x47\x11\x7b\xf0\xbc\x17\x24\xd1\x3b\xd6\x4b\x24\xe7\xfe\xb4\x90\ \xc3\x18\xe4\x92\xea\xc3\xe9\x59\x2d\x55\x09\xa6\x9c\xc6\x29\xaf\ \x6a\x15\x1c\x76\x26\x1b\x51\x46\xa5\x2a\x14\x42\x90\x86\xd8\x4a\ \x4a\xa3\xf6\x04\x38\x6a\x80\x25\xab\x04\xe8\x43\xa7\x42\xe8\x14\ \x21\x9a\xa7\x11\x53\x90\xd8\x24\xb6\x62\xa5\x38\xca\x42\x59\x18\ \x93\x45\x9b\xa2\x95\xb2\x96\xfa\x04\x36\xe8\x87\xd4\x56\x2d\x20\ \x38\x9c\x65\x23\x0c\x79\xc3\xb3\xd3\x20\x85\xaf\x76\xb5\xa8\x27\ \x91\xe2\x57\xbf\xea\xa6\x53\x0d\xa5\x0a\xac\x2e\x64\xaa\x9a\x08\ \x4d\x57\x89\x05\x0b\x57\x71\x65\x80\xc7\x3e\x76\x2f\x15\x93\x14\ \x09\x4c\x58\x59\xe1\x82\xab\x28\x78\x3b\x83\x67\xfe\x85\x67\xd7\ \x75\x68\x0a\x8d\x3c\xeb\x64\x6c\x92\xb2\x54\x16\xc2\x2f\x00\xc2\ \xe3\xec\x75\xf1\x95\xaf\xa8\x38\xf4\x29\x4e\xd5\x85\x71\x90\x20\ \xc8\xc4\xbe\x03\x57\x92\x93\x5c\xd2\x50\xa4\x17\xc8\x72\x66\xb2\ \xc3\x75\x6f\x93\xf4\x38\xaa\xda\x54\x88\xa9\xdf\xbc\xca\x72\x0f\ \x14\x1b\x17\x22\x05\x4b\xa7\xa5\x6e\x3e\x80\x43\x93\x05\xc0\x81\ \xc0\x04\x1e\x2a\x81\x57\x00\x07\xba\xfe\xec\x0f\x5a\xf9\x83\x0c\ \x46\x70\x9c\x77\x44\xd0\x4d\x59\x40\x91\x01\x92\x56\x17\xce\x5c\ \xf2\xbd\x1d\xbe\x94\x27\x0d\x24\x3c\x9d\xcd\x24\x5d\x57\x21\xe3\ \xa7\x16\x3a\xc6\x4f\xc6\xef\x7d\x48\xb1\x9f\x55\x44\x01\x57\x04\ \x27\x18\xae\x34\x91\xf1\x76\x3b\x24\x40\x91\x1a\x81\x2b\x84\x54\ \x29\x35\x20\x27\x0c\xde\x7e\x02\x93\x1e\x36\xb2\x93\x8e\xf2\x9a\ \x0a\xc9\x6d\x26\x72\x3b\xc5\x72\x59\x9c\xbb\x85\xca\x86\xc5\xf1\ \x0b\xf1\x1a\x4b\x2c\x93\x02\x17\x58\xcb\xd7\x7d\x65\x5b\xcf\xa4\ \x15\x76\xbe\xa1\x1e\x64\x18\x41\x02\x97\x63\xc0\xbf\xfc\x40\x31\ \x45\x3e\xf2\x9b\xfd\x73\x80\x52\xa5\xb2\x53\xb9\x81\xcd\x4e\xee\ \x66\xb7\xdc\x29\x14\x77\x9e\x44\x63\x6b\x7b\xfe\x98\x43\x38\x08\ \xf8\xba\xeb\x30\x34\x52\x00\xdc\x56\x08\xe9\x62\xcc\x3c\xee\xca\ \x57\x52\xd0\x0a\x41\xb4\xd9\xac\x70\xb6\xb4\x7f\x48\xd0\xb3\xdf\ \xc1\xa6\x14\x54\x8e\xf2\x6c\xf4\xfc\x3e\xbb\x85\xda\x5d\xa5\x4d\ \x57\x1a\xc1\xf4\x4a\x43\xaf\x9a\xd5\x2e\xce\x4d\x1d\xf7\xc5\x4e\ \x19\x90\xe1\x8f\x5c\xac\xf4\xa5\x71\xcd\x1f\x12\xe0\x83\xaf\xda\ \xec\xa4\x34\xcd\x48\x14\x29\x63\x01\x04\x7b\xbe\xf2\x0d\x55\xa6\ \x8b\x41\xbf\x12\xd1\x88\x66\xf5\xaa\x3d\x9b\xc6\xe1\x90\xb9\xcc\ \x29\xa0\x46\x41\x73\x9d\x6d\xff\x00\x08\xba\x2d\x5c\xd7\x82\x7e\ \x82\x62\xdc\x19\xb7\xad\x9b\xdd\x2c\x7e\x9d\x6d\x68\x2f\x5f\xd7\ \xc0\xf8\xf2\xc4\x45\x92\xb6\x61\x6d\xcf\xdb\x49\x09\xfd\x35\x88\ \x77\xd7\xb2\x50\xf7\xd9\x5c\xe8\x8a\xb6\x67\xf9\x4b\x3f\xfb\xb1\ \x7b\xd9\x37\x86\x6b\xab\xfe\x60\x80\xdf\xde\x9a\xde\x0d\x17\x0d\ \x94\x42\x09\x1b\x85\xb6\x10\x77\x7a\xfe\x74\x3e\x9e\xb2\x46\x58\ \xf6\x24\xa3\xcd\x86\x36\x67\x07\xbd\xec\x01\x27\x38\x4c\xb6\x76\ \xf8\xc9\x99\x54\x89\x50\x76\x52\xca\x51\xbe\x5b\x34\x51\x5c\x5d\ \x04\xb1\x8b\xd5\x31\xfc\xf8\xba\x45\xae\xfe\x8b\x79\x62\x1b\xe5\ \x3d\x1f\xcd\x27\x5e\x38\xee\x71\xb7\x70\x41\x64\x94\xdf\x45\x59\ \xd3\x29\x55\xaf\x7b\xe9\x6b\xf4\xa5\xbc\x7d\x1e\x75\xff\x60\x96\ \xc5\xfb\x9e\x4d\x6a\x29\x34\x33\x78\x05\x68\x7e\x78\x63\xed\x9f\ \x55\xfb\x4a\xce\x2e\x77\x1d\x16\x38\x80\xc8\xdc\x2c\x75\xb5\x83\ \x06\xb3\x79\xb6\xfa\x19\x3b\x05\xce\x13\xcb\xef\x8c\xf6\x1b\xde\ \x1a\x0b\x3d\xf0\x75\xbc\xa2\x89\x3c\x5f\xfb\xdf\x3f\x43\x82\x8a\ \x63\xc1\xe2\x30\xb4\xab\xed\xa4\x99\xbb\x2d\xb9\x72\x8e\x7d\xd5\ \x8d\x6e\x72\xd3\xb8\x2c\xa4\x1d\xf0\x95\x0f\xfc\xb8\x0b\x9f\x68\ \x13\x8b\x3b\xf3\xf3\x15\x70\x80\xd7\xe8\x57\x0b\x60\xcf\xef\x96\ \x37\xbd\x4b\x08\x4f\xea\x52\x0b\x6f\x1d\xe2\xde\x73\x6c\xd8\x2a\ \xb7\xc2\x51\xc8\x59\xa5\x3f\xfd\xed\x57\x22\xf8\x97\x9b\x71\x9c\ \xd3\x7d\xfd\x52\x39\x3b\x93\xa4\xfb\xa0\x07\x44\xb6\x3d\xee\x91\ \x8f\x12\xdd\x7b\xfb\xde\xe2\xa6\x1f\x70\x1e\xff\xb7\xaa\x2c\xc0\ \x02\xce\x30\x7e\xf2\xb1\x3f\x1a\x12\x50\x9d\xf9\x89\x7f\x7d\xa1\ \x45\x99\x01\x81\x88\x2c\xfb\xe5\xff\xb9\xa8\x14\x24\x74\xbc\x01\ \x18\xb9\x48\x49\x48\x7b\xcd\x1f\xff\x66\x71\xa9\xff\xbf\xa4\x5d\ \xf5\x2b\xaa\xcf\x61\xf9\xef\x1f\x34\xb9\x18\xf7\x8a\xcf\x28\x37\ \x0c\xcd\x02\x46\xef\xf8\xf8\xef\x00\x4d\xc2\xff\xfa\x2c\xc4\x3a\ \x4e\x88\x8c\x8f\xe1\x10\x30\x02\x4f\x82\x04\x08\xef\xf5\xea\x2e\ \x00\xb0\x01\xed\x20\x50\x02\x39\xd0\x24\xaa\x60\xcf\xf0\xcf\x02\ \xf4\xaf\x03\x49\x90\x25\x9a\xe0\x7d\xb0\xa1\x12\x0c\xb0\x04\x59\ \xf0\x1f\xa0\x24\x17\x56\xb0\x05\x65\x30\x06\x65\x90\xb2\x02\x02\ \x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\ \xf0\x00\x87\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xd7\x88\x8d\x93\x49\x30\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x5e\xc8\xf6\xff\xff\xff\xff\xff\xff\x5f\x8a\x3f\ \xde\x93\xb3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\xa7\ \xbc\x54\x67\x1e\xff\xff\xff\x5c\x02\x94\x15\x2b\xa5\xff\xff\xff\ \xff\xff\xff\xd7\xc8\xe6\xff\xff\xff\x08\x68\x9b\xd5\x0f\x12\xf5\ \x95\xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcf\x69\x9c\x8d\x68\ \xa6\xf7\xa8\xb7\x13\x29\xde\xb7\xaa\xb7\xff\xff\xff\x9a\xf2\xfc\ \xba\x89\xb6\x4e\x68\xf8\xff\xff\xff\xfa\xc8\xe6\xd9\xe8\xf9\xff\ \xff\xff\xff\xff\xff\x28\x46\xea\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x78\x87\xa9\x98\xc8\xfb\x80\xa1\x56\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xed\x68\x51\x93\x68\xfa\xb4\xa9\x76\xd8\x88\xf1\xf7\ \xb2\xf1\x20\x87\xbc\xff\xff\xff\xf9\xe8\xf1\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x7a\x8c\x3e\xff\xff\xff\xff\xff\xff\xb6\xc8\xf1\ \xb7\xb3\xf3\xff\xff\xff\x96\x94\xf4\x96\x88\x7d\x2a\x2b\x17\xff\ \xff\xff\xff\xff\xff\x39\x57\xf6\x74\x88\xf7\xff\xff\xff\xff\xff\ \xff\xf3\x49\x43\xee\x67\xa3\x4b\x4c\xe3\x12\x37\x66\x27\x3a\xe2\ \xff\xff\xff\xff\xff\xff\x58\xa8\xe5\xd7\xd8\xec\x09\x18\x62\x5b\ \xb7\xeb\xfc\xc8\xab\xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\xb1\ \xf9\x7d\xf5\xfc\xff\xff\xff\x3b\x64\xf5\xff\xff\xff\xfb\xfd\xfa\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xba\x8e\xf4\xb7\xd8\xfb\xda\ \xae\xf8\xff\xff\xff\xb2\x68\xed\xff\xff\xff\xfa\xd8\xed\x37\x4b\ \xed\xfa\xb7\xbc\xff\xff\xff\xff\xff\xff\xca\x78\x6c\xdb\x98\xf4\ \x15\x36\x1f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x99\x34\x87\x73\x11\xa6\xf2\x2f\x2f\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb1\x68\xa2\xff\ \xff\xff\x68\x47\xe1\xff\xff\xff\xff\xff\xff\x6f\x37\x58\xe8\x53\ \x95\x78\xc7\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x90\x15\x50\ \xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\x74\x08\x47\xff\xff\xff\xfa\ \xed\xba\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x34\x4d\ \x17\x78\xb4\xf8\xff\xff\xff\x29\x7a\xcb\xf7\x93\x8d\x50\x1b\x3a\ \x54\x99\xe1\xff\xff\xff\xff\xff\xff\xf4\x78\x5d\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x2c\x16\xe4\xb8\xb8\x7f\xd7\xd7\ \xa9\x44\x1e\xd4\xff\xff\xff\x99\xd8\xfb\xff\xff\xff\xff\xff\xff\ \xd3\x3a\x74\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x19\x37\xe3\xff\xff\xff\x58\x76\xfa\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x92\x78\xf0\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x2c\x38\x97\x68\x7a\xf5\xff\xff\xff\x48\x5b\xf6\xff\xff\ \xff\x71\x78\x9e\xff\xff\xff\xb1\x78\xf5\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb4\x59\xa8\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x72\x5a\xf1\x95\x97\x50\xde\x97\x95\xff\xff\xff\x97\x99\ \xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\xfb\xfc\xff\xff\xff\ \xff\xff\xff\x1e\x96\xc9\xff\xff\xff\x99\x99\x76\x7e\x97\xf9\xff\ \xff\xff\x91\x5b\xf9\xff\xff\xff\xff\xff\xff\xb4\x57\x31\xff\xff\ \xff\x7e\xd6\xfa\x8c\x7a\x68\xff\xff\xff\xfa\xd8\xaf\xfc\xb9\x8b\ \xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\ \x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x12\x1c\x21\xb1\xa2\xc5\x8b\ \x18\x33\x6a\xdc\xc8\xb1\x23\x43\x46\xb2\x5a\x51\xf4\x48\xb2\xa4\ \xc9\x93\x28\x53\x3e\x1c\x31\x42\x05\x1e\x37\x78\x46\xaa\x9c\x49\ \xb3\xa6\xcd\x9b\x05\x19\xb5\x3a\xe2\xa6\xa7\x1b\x91\x38\x83\x0a\ \x1d\x4a\xd4\xa1\x4e\x9e\x3e\x7b\xca\x60\x54\xb4\xa9\xd3\xa7\x33\ \x59\xaa\xe8\x97\xb4\x2a\x10\x99\x50\xb3\x6a\xdd\xba\x52\x56\xd5\ \xaf\x3d\x99\x72\x1d\x4b\xb6\xac\x96\x56\x60\xc1\x9e\xc3\x5a\xb6\ \xad\x5b\x9c\x2c\x65\x20\x4d\x5b\x15\x8f\xd8\xb7\x78\xf3\x9e\x1c\ \xa1\x45\x05\xdd\xbf\x40\xf5\x0a\x1e\x8c\xf1\xec\xdf\xc3\x4b\x09\ \x2b\x5e\xbc\x30\xee\xdc\xc3\x74\xaf\x32\x9e\x4c\xb9\x2f\xe4\xcb\ \x3d\xd9\x52\xde\xfc\xd6\x30\x66\xcc\xb2\x34\x73\x1e\x9d\xd5\xf1\ \xe7\xcf\x76\x49\xab\xd6\x6a\xf9\xb4\xeb\xc0\xab\x63\x0b\xf5\xec\ \xda\x75\x6a\xd9\xb8\x69\x8e\x60\xa4\xe7\x71\xed\xd3\x92\x73\x0b\ \x37\x49\xfb\xb7\x71\xd1\xc3\x93\x57\x64\xe4\xd7\xb8\xf3\x9e\x28\ \x90\x2b\x9f\xae\x70\x77\x19\xdf\xcf\x5d\x1f\xd1\xc0\x92\xba\x77\ \x86\xc5\xb3\xfe\xff\x3e\x92\x61\x8c\x2b\xe9\xdf\xa9\x33\xc7\x2e\ \xde\xb5\x93\x2e\x63\xc6\xa0\x4f\x2f\x7c\x77\xef\xf6\xd9\x8f\xe8\ \x98\x12\x5f\xd4\x7c\xfa\xb1\x85\x87\x9f\x71\x19\xfc\x11\x5f\x7c\ \xff\x01\x38\xda\x7a\x03\x8a\x37\x43\x2a\x07\xf6\x97\xa0\x82\x8b\ \xd9\xc7\x5e\x83\xb5\x95\x17\xa1\x84\x14\x06\xb8\xd3\x0c\x33\xcc\ \xe1\xc4\x1c\x62\x80\x88\xa1\x6b\x20\x40\xb8\xe1\x18\xfe\x75\xa8\ \x9a\x16\x69\x64\xf0\x8a\x0e\x3a\xb0\x92\x0a\x0c\xda\xd0\x98\x41\ \x1a\x4e\xcc\xc0\x13\x4f\x3e\x9e\x58\xd5\x0c\x1a\xac\x78\xe0\x84\ \x2e\xb6\xb5\x5b\x3a\xac\x54\xd3\x45\x17\x22\x3c\x29\xa5\x08\x51\ \x76\x91\x4a\x33\xda\xcc\x93\x4e\x8e\x3a\x64\xe9\x44\x89\x47\xb4\ \x73\xc4\x85\xda\xa5\xc3\x5f\x7c\x7f\x18\x78\x60\x8b\x49\x2e\xa6\ \x48\x0a\xac\xc0\xb7\xa1\x94\x5d\x54\x93\xca\x93\x1d\x3c\x59\x8d\ \x93\x51\x8e\xf1\x64\x2a\x5c\x6a\x40\x23\x0b\x20\x88\x41\xe6\x61\ \xb9\x40\x98\xe6\x1f\x5d\x30\x1a\x21\x92\x6d\x66\xe5\x89\x28\x72\ \x1a\x19\xa1\x9c\x4e\x8e\x51\x0d\x1b\xa9\xec\x59\x69\x7c\x9f\x9a\ \x87\x89\x0e\x2c\x18\x7a\xda\x0c\xda\x8c\xf1\x87\x06\xd5\x30\x6a\ \x65\xa5\xfe\x6c\x46\xea\x16\x4b\x96\x1e\x18\xea\x81\xd5\x74\xa0\ \xe9\x9e\x9e\xd6\xba\xe1\x14\xae\x48\xf1\xc4\xa1\x49\xa5\xa8\x2a\ \x2b\x1a\x88\x90\x0a\x95\x2a\x72\x28\x6b\x59\x93\xfa\x0a\xaa\x91\ \x1d\x38\x99\x27\x9d\xd2\x02\x1b\xe1\x14\x98\x68\x03\x02\x64\xe4\ \xa5\xf2\x87\x36\xda\x24\xbb\x6c\x9a\x11\x9e\xf7\xec\x58\x23\xb8\ \x12\xa1\xae\x96\xe6\x39\x67\x9d\x9f\xc2\x3b\xe7\x9c\xc0\x9e\x39\ \xc6\x14\xa9\x3c\x61\x2a\x58\x33\xa4\x73\x67\x2a\xe6\xb6\xda\xe8\ \x8a\x90\xae\xab\x12\xad\xd2\xae\x78\xab\xaf\x5d\x70\xa1\x0d\x2b\ \x12\x7b\x3a\x45\x35\x17\x57\xe3\x4a\x2a\xae\x74\xd1\x31\xbf\x3a\ \xfc\xeb\x93\x13\x45\x46\xa8\xe6\xbe\x46\xaa\xab\x70\x53\xd1\x36\ \xec\xb0\xcb\xb8\x4e\x5c\x2e\x8e\x4d\x7a\xda\x31\x7c\x18\xfb\x19\ \x1f\xa0\x3a\x7c\xeb\xc6\x11\x4e\x60\xb2\xe2\xc9\xb5\x76\xb7\xb2\ \x50\xed\xc2\xac\xf4\x8a\xba\xf2\x89\x49\x1e\x12\x73\xd1\x29\xaf\ \x7b\xae\xc8\xdf\x14\x58\xa7\xc2\x82\x13\x19\x68\x43\x34\x9a\x0d\ \xc7\x7a\xb4\x6e\x23\x2c\x6d\xf6\x81\x1d\x54\xcb\xab\xd4\xd5\x88\ \xe0\xa4\x93\x52\xea\xeb\xeb\xc5\x53\xff\xfa\xb0\xaa\x7f\x5c\x6d\ \xf4\xfe\xd8\x2a\xfd\xe2\xee\xd9\x80\x8f\x71\x6d\x9d\x6e\xbf\x4d\ \x6f\xad\x4f\x1a\x39\x85\x36\xcd\x82\xfa\x35\x9a\x7f\x28\x1b\x9f\ \xca\x7c\x9b\xb4\xdb\x0b\x77\x07\xbe\x74\x17\xfc\x71\x2e\x65\xe0\ \xd5\x94\x6c\xeb\xd0\x8b\x6a\xd0\xac\x27\x95\x97\xc4\x17\x1e\x62\ \xa4\xaa\xf9\xeb\xb0\x5b\x9a\x73\xe2\x1b\xa6\xd9\xe8\xa2\x6a\x52\ \x9e\xba\x46\x40\x34\xa7\x43\xec\xc0\x07\xef\x67\xdb\x46\x32\xfa\ \xf8\x9a\x09\xef\x5e\xd0\x6e\x72\xf5\xe4\x44\x35\xc2\x47\x6f\xf6\ \x99\x4f\x6a\x93\xe9\xd0\xbe\xea\xae\xfc\x4a\x5a\xbc\xe4\x93\x7e\ \xd2\x87\x0f\x73\xe2\x75\x22\x9b\xb9\xe2\xce\x6e\xef\x50\xef\x5f\ \xcd\x00\xbd\xf8\xf0\xbb\x0c\x25\x17\xe7\xd7\xae\xe6\x14\xc9\xf3\ \xcd\x3c\x76\x33\xec\x17\xff\xff\xf7\xb2\x15\xbd\xea\x67\x29\x51\ \xa8\xaf\x3a\x5a\x90\x41\x5a\x8e\x90\x0e\x00\x3a\x50\x5a\x75\xb2\ \xd3\xd9\xf2\xb7\x2e\xf6\xd1\x25\x03\x04\x7c\xe0\xff\xa0\x84\x8d\ \x0c\x46\xc8\x13\x14\x6c\x13\x23\xf0\x70\x28\x31\x70\x41\x83\x28\ \x34\x92\x9e\x3c\x18\x9f\x29\x1c\x20\x84\x1d\x62\x84\x16\x20\x23\ \x06\xff\xa5\xf0\x86\x03\xa4\x5d\xc3\xb0\xa6\x01\x1e\xe0\x03\x86\ \xfe\x00\x92\x85\x0a\xc6\x24\x06\x43\xb1\xa7\x81\x37\x4c\x62\x04\ \x3b\x75\xb0\x5a\x61\x0d\x6b\xab\xe2\x81\x3c\x80\xe8\x1d\xbe\x9c\ \x83\x50\x2c\x90\x82\x06\x52\xa0\x8d\x74\x10\x4a\x0c\x3e\x41\x55\ \x12\xc7\xb8\x2b\x1b\xb5\xca\x52\xfc\x4a\xc5\xd5\x34\x80\x8b\x5c\ \xfc\x22\x75\x32\x3c\x02\x1e\x40\xc0\x02\x21\x48\x01\x13\x67\xc2\ \x84\x06\xc8\x95\x0e\x27\x80\x00\x89\x64\x4c\x62\x2a\xb8\x60\x3e\ \x34\x9a\x8e\x3f\x1a\x90\x87\x13\x72\x91\x0b\x2a\x0e\x47\x16\x7a\ \xe8\xc9\x11\xfa\x41\xc7\x27\x48\x81\x3f\xae\xd8\x63\x0a\x24\xb6\ \xa5\xf7\x05\x52\x90\x6c\x10\xc1\xf1\xd2\xc8\x43\x79\x30\x12\x17\ \xb8\xf8\xa1\xc2\xf8\xa2\x07\x12\xfa\x84\x75\xac\x63\x01\x1e\xa7\ \x90\x82\x28\xa4\x43\x07\x52\x88\x82\xd0\x3e\x39\x46\x3b\xd9\xe9\ \x71\x4f\x9c\x02\x1b\x19\xc9\x48\x73\xa8\x52\x56\x32\xc4\xc3\x1c\ \x73\x21\x97\x31\x4d\x52\x0c\x65\x60\x81\x36\xba\xd5\x45\x29\xa4\ \x43\x0e\x3a\xf0\x24\x2f\xc3\xa7\x31\x87\xd1\x29\x4a\xe8\xda\x57\ \x2a\xd4\xf8\x87\x54\x98\x32\x17\xb8\xe0\x81\x03\x34\xa0\x81\x17\ \x46\x0a\x92\x92\xa4\x24\x08\x72\xe1\x4c\x31\xd0\x91\x05\xe9\xfe\ \x90\xc2\x0b\xd2\xb1\xcf\x27\xa4\x43\x9b\xdb\x04\x1e\xd5\x78\xe5\ \x0a\x5d\xc1\x4b\x57\x7f\x92\xda\xed\xd8\x39\xce\x54\x2c\x01\x95\ \xe9\x3c\xa4\x0b\x1d\x49\x99\xd5\x91\x70\x2e\x47\xd0\x03\x08\xfa\ \x41\x42\x4a\xe2\x82\x05\x74\xa0\x63\x3a\xbc\xe8\x04\x16\x00\x74\ \x43\xdd\x62\x61\xf0\xaa\xc1\x85\x81\x56\xe2\xa4\x11\xda\x13\x26\ \x58\xda\xcd\x86\xd5\x29\x59\xbe\x34\x1d\xc1\xf6\x81\x4a\x75\x3a\ \xa0\x59\x53\x00\xa1\x82\x64\xd8\x3c\x52\x9c\x03\x17\xcd\xec\x07\ \x2e\xe8\x08\x82\x42\xc9\x93\x50\xf9\x8c\x46\x06\xe4\x60\x0d\x5f\ \x69\x03\x44\x2c\x48\x61\xb5\xb8\x50\xb8\x6a\x68\x83\x0b\xac\xa2\ \x16\xaf\x9e\xf4\xb7\xa5\x4d\xe1\x4f\x9c\x13\x26\x2e\x9c\xc0\x03\ \x35\x6a\x40\x5f\x13\x0d\xe2\x10\x49\x41\x8a\x9f\xf9\x83\x05\x7a\ \x20\x05\x1e\x58\xc0\x57\x21\x08\x81\x05\xb9\x68\xea\x3d\xa5\xa0\ \x8d\x5c\xba\x4e\x76\x4e\x90\xe4\x09\x51\xb8\xc2\x81\x6a\xac\x5a\ \x07\xed\x15\xec\xc2\x39\x05\x07\xb4\xf1\xad\xe5\x54\x91\x30\x97\ \x70\xcc\xe9\xc4\x11\x29\x18\x25\xc5\x8f\x40\x20\x84\x2b\xbe\x40\ \x08\x4d\x5d\x6a\x16\x75\x90\x0e\x7f\x56\xc2\x57\xd5\x48\xfe\x6c\ \x4f\x00\xa9\x44\x5e\xc5\x47\x5e\x82\xab\x5a\xec\x16\xa5\x2a\x73\ \xa2\x93\x9c\x4b\x58\x82\x06\x96\x20\x84\x74\xf6\x61\x6f\xc2\x49\ \x26\x66\x8e\x50\x06\x31\x04\x76\xa9\x20\x88\x26\x3e\x5f\xf0\x04\ \x3c\x04\xad\x56\x2c\xcd\xc0\x0c\x7a\x32\x07\x98\x06\x34\x78\x4f\ \x5a\x94\x65\x73\xc1\x03\x76\x3e\xb4\x8d\x74\xcd\x85\x03\xcc\xe1\ \xce\x47\x46\x52\x3b\xcf\x2c\x43\x60\xef\xb9\x35\xa0\xc1\x74\x0a\ \x19\x10\x83\x13\xe6\x01\xc6\x9f\xd1\xf6\xbb\x0d\xdb\x93\xbd\x9c\ \xa8\x81\x85\xf2\x20\x03\x3c\x58\x82\x03\x78\x80\x5e\x52\xb4\x83\ \x14\xb9\x60\xe7\x3e\x28\x3a\x96\x64\x12\xeb\x2f\xac\x03\x41\x2c\ \xf9\xfa\xc5\xff\x1e\xe8\x09\x92\x74\xc2\x0e\x7c\x92\x06\xef\x02\ \x78\x43\xba\xd8\x93\x2b\x72\x15\x1f\xdd\x6e\xa8\x53\x69\x72\x00\ \x82\x1d\xb0\xe0\x5c\x80\x02\x14\x36\x86\x70\x5b\x53\xe1\x80\xf6\ \xaa\x66\x04\x40\x50\xe0\x5f\x44\x9b\x94\xba\x26\xe5\x08\xa4\xa8\ \xe3\x46\x9b\x2a\x03\xc1\x1e\x76\x43\xb2\x75\xc3\x0c\xc0\xd4\x0e\ \x27\x94\xe3\xc4\x4c\x23\xe0\x8a\x4f\x6a\xbc\x54\xbc\x82\x07\x60\ \x06\x33\x31\x7b\xaa\x4e\x82\x2d\x61\xc2\xab\x81\xe7\xfe\xf7\x16\ \x48\x0a\xaa\xf4\xc4\xc8\x49\xe9\x47\x16\xe5\x01\x52\x0d\x1b\xca\ \x84\x96\x4a\xc3\x5c\x66\x90\x86\x34\x3c\xa1\xcf\x8b\xc5\xf2\xae\ \x06\x8c\xdd\x5a\x95\x13\xcc\x3a\x58\x70\x98\x7d\x4a\x63\x76\x3a\ \x20\x0c\x4b\x10\xea\x66\xe2\x08\x16\x38\x7f\x65\x2e\x96\xf6\x49\ \x2e\x38\x2c\x05\x16\xf8\xc8\xbe\x1b\xe2\x42\x3a\xa2\x30\x8f\x39\ \xf8\x64\x0e\xf3\xb8\x82\x35\xd2\x30\x83\xe7\x09\xfa\x75\x00\x8d\ \x62\x06\x66\xec\x53\xd3\x69\x80\xc6\x0e\x78\xc5\x4f\x31\x81\x5c\ \xc2\x00\xb9\x0c\x42\x72\x26\x08\xa4\x90\x01\x10\x1c\x41\x0c\x19\ \x90\x9b\x36\x80\xd4\xe7\x1e\x81\xc8\x09\x3c\xda\x2e\xf8\x5e\x1d\ \xb8\x5b\xfd\x81\x07\x73\xc8\x45\x06\x34\xe1\xd3\x65\xdd\x9a\x07\ \xf0\x28\x70\x17\x74\x70\x5c\xc6\xc0\xf3\x99\x17\xbe\xf0\xa5\x59\ \xe0\xaf\x19\x80\xe0\xc9\x63\x88\x82\x24\xd3\x10\x85\x68\x87\xe9\ \x08\x20\x3a\x76\x55\xa9\x1d\xbc\xc5\xed\x80\x17\x0c\xd6\xc7\x4f\ \x63\x0c\x0f\x75\x16\x21\xd7\xa0\x38\x02\x85\x6d\x42\xe9\x9f\xe5\ \xc2\x00\xf4\x04\x0b\x92\xc7\x84\xca\x7e\x88\xf6\xe2\x8c\x9c\xf8\ \x9a\x81\x54\xdf\x56\xc3\x5b\x1b\x25\x7a\x36\x8f\xfe\xda\xf1\x33\ \x3e\xab\xba\x83\xfc\x86\x9d\x9c\xfe\x60\x59\x1e\x1c\x9c\x07\x22\ \x38\x13\x8f\xc3\x40\x86\x1d\xcc\x81\xe4\x6e\x28\xb7\x5e\x18\x01\ \xec\x38\x7b\x6f\xcd\x6d\xce\x45\x71\x85\xb0\x0f\x0d\x48\xc1\x1c\ \xf2\x28\xae\x3c\x96\x2e\x84\x03\xaf\x15\x9d\x5b\xcb\xc5\x96\xd2\ \x31\xeb\x28\x68\x43\x6e\x30\x88\xb6\x94\x49\xd4\xea\x79\x34\xc3\ \xc4\x29\xdf\x9c\x9d\xac\xf4\x8a\x39\x64\x60\x59\xa2\x3c\x90\x08\ \x78\xa0\x8f\xed\x26\x25\x26\x7a\x69\x85\x90\x87\x2c\x74\xbf\xca\ \xc3\x1c\xe6\x28\x3a\x3e\x24\x3c\xdc\xa2\x3b\x40\xb8\xb7\x66\x28\ \xc1\x0a\xdc\xa9\x41\x76\x0a\x57\x57\x28\xa2\x13\xc4\xd4\xea\x34\ \x5c\x21\x0f\x2a\x0d\x7b\xbc\x40\xf5\xb6\x6d\x17\x29\x72\xe2\xe2\ \xb1\x2a\x40\x21\xf1\xd0\xb8\x05\x24\xea\x56\x6a\xd1\xf7\x71\x66\ \xbc\x93\x3e\xb8\xfb\x30\x3d\xea\x1b\x2d\xae\xfb\xe5\xad\xf0\xa1\ \x4a\xbc\x1b\xda\xa1\xf8\x2b\x58\x01\xec\x92\x37\x1b\x42\xd1\x14\ \xde\xf8\x14\x21\x0c\x9a\x00\x05\xce\xd3\xa2\x82\x5e\x97\x06\x1f\ \x42\xc8\xc5\xcf\xd8\xdc\x8f\x5c\xc8\x43\xb8\x45\x67\x67\xde\x83\ \x3b\x5c\xbc\x5b\x3f\xb8\xac\xc7\x5d\xe1\xbd\xfe\x7a\xbd\x16\xef\ \x00\xda\x4f\x48\x35\x0c\x08\x9d\x7b\xe0\x3d\xcc\x01\x4e\x10\xfe\ \x65\x82\xb3\x15\x7c\xe0\xdd\xaf\x8c\xac\xca\x24\x21\x8c\x0b\x21\ \xc8\x63\xf4\x82\x4f\xbd\x39\xb0\x1f\xdc\xfe\x2f\x21\xc1\xeb\xd4\ \x50\xe3\x54\x2e\x04\x83\x2c\x70\x13\x1f\x57\x30\x0f\x30\x90\x2b\ \x69\x53\x7e\xe2\x83\x5b\xf1\xa1\x01\x61\x60\x6a\x9f\x21\x03\x0b\ \xa7\x11\x23\x80\x0f\xfe\x17\x5c\x3c\xe0\x57\x6d\x84\x4e\xf6\x57\ \x7f\x4b\x70\x74\xfb\xc7\x4e\x6f\xb5\x59\xd8\x97\x60\x80\x47\x63\ \x0a\x26\x78\x26\xa8\x01\x06\xc8\x2a\xca\x02\x2f\xdd\xe7\x80\xf0\ \x63\x5b\x63\xc0\x0a\x6e\xe7\x1a\x6b\xf1\x14\x19\x78\x00\xe6\x65\ \x82\x7f\x87\x6b\xa4\xb7\x0f\x0e\x90\x7a\x67\xd6\x81\x42\xd0\x7f\ \xd1\xc7\x82\x2a\x08\x66\xb8\x86\x6b\x3a\x95\x59\x03\xc8\x4e\x22\ \x40\x2e\x7d\x62\x83\x1a\xc4\x52\xf1\xb1\x6c\xbf\x01\x77\x4d\x81\ \x0f\x40\xb8\x4e\x80\xa7\x53\x83\x77\x86\x7d\xb7\x7f\xe6\x00\x66\ \xef\xd7\x74\xfb\xf7\x7f\x50\xf8\x7f\xfc\x17\x80\xad\x97\x59\xab\ \x62\x23\x30\x58\x2e\xe4\xa7\x7b\x7b\x98\x72\x3a\x64\x29\x11\x34\ \x06\x6c\xb0\x83\xa7\x71\x04\x9e\x87\x34\xfe\x5a\xb0\x7f\xeb\x54\ \x7d\x78\x47\x7d\x2f\xf8\x88\x78\xc7\x03\x6b\xf8\x86\x64\xb6\x86\ \xc5\x05\x80\x61\xb6\x60\x8d\x66\x3a\x8b\x52\x85\x56\xe2\x36\x91\ \x97\x5b\x5e\xd0\x01\x5e\x60\x05\xd8\x50\x0d\x5e\x90\x8a\xa9\xd8\ \x01\xb7\xd0\x87\x01\x45\x3b\x7f\xf8\x2e\xd0\x23\x02\x84\x78\x1a\ \x7a\x70\x81\x0d\x31\x02\x07\x80\x0f\x7f\x67\x82\x4b\x60\x0e\x1f\ \x98\x0b\xf4\x87\x4a\xe6\xa0\x01\xfb\x40\x7a\xd5\x27\x89\x4d\x97\ \x60\x0c\xf6\x86\x0c\x06\x66\x70\x18\x66\xf2\x50\x6b\x1a\x90\x26\ \x83\x97\x68\x22\xb0\x47\x1e\xb4\x02\x63\x70\x0b\xdd\xd8\x01\x36\ \x60\x03\xd5\x20\x8e\x6c\x20\x8e\x50\x53\x0e\x2d\xc5\x52\x5c\xd0\ \x8a\x2b\xd0\x01\x2b\x30\x8a\x07\xd2\x8a\x79\xe0\x05\xbc\x74\x3e\ \x5d\xa0\x0d\xc3\x57\x1b\x5a\x80\x8b\x0b\x31\x86\xbe\x18\x5c\xc0\ \x88\x0b\x0e\xe6\x13\xe9\xf5\x86\xd1\xb7\x86\xff\x57\x7f\xd6\x27\ \x89\x6b\xc8\x60\x0a\xf6\x77\xc5\x95\x4e\x00\xb8\x88\xda\xc0\x03\ \x3a\x20\x0f\x19\x20\x0f\x34\xa2\x03\x22\xd0\x30\xb7\xb0\x0c\x36\ \xb0\x0c\xee\x18\x1f\xed\x58\x0d\xcb\x90\x07\xe3\x68\x03\xa6\x88\ \x0d\x2d\xc5\x05\x5c\x90\x07\x69\xe3\xfe\x05\x2c\x05\x93\xde\xd8\ \x8e\x2a\x39\x8a\x2b\xe0\x8d\x1b\xe2\x8a\xe2\xa3\x8e\x00\xc5\x0a\ \xea\x96\x16\x60\x68\x13\xa7\x07\x90\x78\xb7\x4e\x60\x86\x5e\xc2\ \x28\x26\xe8\x24\x5c\xe3\x34\x5c\xa6\x93\x7a\x6e\x68\x94\xbf\x08\ \x78\x1c\x08\x85\x8b\xc8\x4e\x15\x99\x0e\xf2\x90\x0e\x42\x40\x75\ \x69\x90\x0e\x81\xf6\x2e\x1d\x20\x92\x79\x60\x05\x6c\x30\x8a\x22\ \x59\x93\x65\x99\x92\x6e\x63\x03\x5c\x00\x97\xf3\xf8\x92\xa3\x28\ \x93\x79\x00\x93\xcb\xe0\x05\xf3\x08\x97\xe2\x38\x8a\xac\xb8\x02\ \x39\xd9\x8e\xec\xa8\x41\x80\x72\x8a\x95\x32\x05\x23\xe6\x1c\xc5\ \x77\x13\x8c\xe0\x88\xc4\x25\x04\xe6\xf0\x77\xff\x77\x89\x01\xe9\ \x57\xc5\xa8\x46\x04\x83\x99\xfd\x57\x82\xc3\x05\x90\x46\xb9\x8c\ \x4f\x69\x82\xda\x70\x66\xda\xb0\x0f\x52\xb0\x0f\x5d\xa4\x03\xa1\ \xd2\x01\x79\x00\x03\x6c\x80\x0d\xd8\xd0\x0c\x30\x90\x07\x22\xe9\ \x8e\xb6\x99\x36\xcb\xd0\x05\xe2\xb8\x0c\xe3\x38\x8e\x28\x69\x05\ \x56\x30\x8f\xa8\x08\x97\xe3\x18\x9b\xae\x09\x03\xae\x69\x05\x06\ \xd5\x80\xdc\xd8\x8e\x3c\x29\x3d\x5e\x65\x3d\xd7\x03\x72\xce\x21\ \x06\x8c\xc0\x8f\x08\xa1\x8b\xbe\xfe\x78\x89\x9b\x29\x89\x4b\x30\ \x78\x9d\x29\x61\xc7\x78\x00\xe0\x59\x86\xc2\x65\x7d\x90\x19\x99\ \xbf\x88\x59\x3b\xa5\x03\x79\xa7\x01\x98\x80\x9a\x5b\xa4\x0d\x6c\ \x10\x6a\xaa\x86\x9c\x6c\xc0\x06\x30\x60\x05\x22\xd9\x8e\xce\xd9\ \x8e\x22\x19\xa0\x29\x69\x03\x77\x79\x97\x6c\x90\x07\x21\xe9\x05\ \x5c\x10\x9c\xfa\x69\x0d\x30\xd0\x0c\xcd\x60\x0d\x0e\xea\x05\x79\ \x39\x8f\x80\xe9\x97\xc1\x83\x09\x1e\x74\x53\x8b\xd5\x05\x20\x66\ \x1c\x86\x88\x9d\x08\xc1\x08\xbe\x38\x89\x8e\x09\x99\xd1\x67\x82\ \xa4\x67\x0e\x96\x89\x0b\xfe\x00\x99\x67\x96\x86\x2c\xea\x57\xe5\ \x05\x9e\x59\xb3\x0f\x18\x29\x0f\xd3\x24\x28\x2f\x40\x2e\xd6\x13\ \x21\xd8\x90\x80\xcd\xa0\x9f\xc8\x89\x0d\x14\x3a\x92\x80\x69\x9b\ \xb5\x89\x9b\x20\x19\x8e\x68\x79\x96\xe1\x48\xa0\xaf\x89\x9c\xd6\ \x20\x9b\xc8\x09\x03\x0e\x0a\x35\x2f\xc9\x05\x0a\x8a\x8a\x3a\x59\ \x2b\xad\x18\x60\x57\x67\x36\x99\xd2\x05\x69\x90\x1d\x5a\x80\x13\ \x7b\x67\x5e\xd4\xa7\x46\xfc\xf2\x8b\x2c\x9a\x77\xa9\xa7\x7f\x7e\ \x95\x7c\x10\x06\xa3\xfa\x37\xa3\xc4\x68\x82\x7a\x14\x7d\xf2\xf0\ \x51\x44\xb7\x45\x5b\x43\x07\xfe\x19\xf0\x4f\x07\xc2\x05\xcd\x70\ \x9f\x57\xfa\x9a\x08\xba\x0c\x49\xda\x9c\xee\xb8\x0c\x92\x1a\x93\ \xc3\xa9\x92\xc1\xc9\xa0\xb0\x89\x0d\x57\x0a\x03\xb1\x09\x9b\x9c\ \x7a\x97\x71\x49\x97\xab\xf8\xa5\xde\xf8\xa5\xdf\xb8\x22\x1c\xb0\ \x21\x2b\xa6\x39\xd5\x40\x81\x8a\x29\xa2\x07\x31\x02\x59\xc9\x4e\ \xfc\xf2\x44\xc6\xa8\xa7\xfe\xa0\x90\x71\x6a\x0e\xa7\xb4\x84\x52\ \xf9\x7e\x10\x05\x99\xf2\xa0\x45\xa9\xb7\x54\xf3\x85\x4f\x84\x95\ \x0e\x74\xf0\x25\x4f\xf0\x3e\xd5\x10\xa1\x57\x60\xa5\x10\x9a\x9c\ \x21\xe9\xa8\xee\x08\x98\x2b\x20\xa9\xda\x5a\x96\x22\xe9\x05\x04\ \x6a\x05\xf8\x59\xa4\xa6\xc8\xa9\x5c\xf0\xa0\xe6\x3a\x9b\x05\xba\ \xa5\x2e\x69\xa1\xa5\x4a\x2d\x01\x56\x56\x67\xc3\x05\xfd\xf5\x1c\ \x77\xa1\x1b\x1a\xc8\x50\xb6\x6a\x3a\x40\xa8\x01\xc0\x8a\x4a\x90\ \x69\x00\x2c\x9a\xab\xef\x99\xa7\xc5\xd5\x7c\x9b\x96\x0b\x62\x20\ \x04\xec\x64\xa7\x44\x54\x44\x96\xa4\x03\x51\xf0\x04\x20\xe0\x04\ \xd6\x93\x07\xd6\xa0\x6a\xd2\x0a\xa1\xb2\x59\x8e\x92\xfa\xa8\x79\ \x19\x8e\xda\x1a\xb2\x4d\xaa\x9f\xd3\xfa\x9a\x9a\x8a\x0d\xc0\x89\ \x9c\x56\x0a\x9b\xa0\x9a\xfe\xae\x77\xe9\x97\xcd\xd9\xae\xad\xd8\ \xae\xdd\x98\x2e\x98\x90\x02\x29\x00\x3b\x19\x20\x1e\x65\x00\xab\ \x06\xc1\x08\xeb\xf4\x7a\x4f\x89\x84\xc2\x55\xb4\x01\x69\x7d\x33\ \x5a\x8c\xfb\x7a\x8c\xfb\x50\xb0\xc7\xc6\x48\xfd\x60\x47\x2c\xba\ \x48\x62\x62\x2a\x47\xf0\x04\xfe\x54\x6f\x4f\x10\x05\x17\x9b\x6a\ \x1b\x7b\x9c\x1a\xbb\x9f\x1d\x8b\xad\x51\x1a\xa5\x93\xca\xad\x4e\ \xaa\xb2\x9c\x3a\xa5\xd8\xe0\xa4\x44\xca\xa9\x56\xc0\x05\xd8\x30\ \x8f\x2d\x8b\x93\xd7\x9a\x36\xd8\x8a\xb7\x94\xaa\x0b\x3a\xc9\x01\ \xe5\x90\x0e\xd1\x50\x09\x72\x73\x36\xda\xe0\xaa\x20\xba\x8f\x36\ \xa1\x8b\xad\x37\x78\x70\x6a\x7a\xec\x74\x00\xc0\x98\xab\x42\x60\ \x00\x93\x4b\x74\x07\x80\x35\x7a\x94\x0a\x07\xb0\x04\x80\x85\x64\ \xf3\x24\x06\xa8\xe4\x5c\x6b\x65\x4f\xa5\xc2\x13\x62\xf0\x67\x57\ \xa0\x03\xf3\x20\xa1\xf3\xe0\x75\xf9\x09\xa5\x24\x5b\xa5\x30\x10\ \x92\xfe\xb9\x02\xe1\x78\x97\xd5\x9a\xad\x00\x9a\x97\xe0\x7a\xa5\ \xc0\x89\x0d\xf9\xe9\xa4\x68\x09\xbc\xb0\x19\xb7\x2f\x2b\xaa\xad\ \x98\x8a\x5c\x50\x9b\xdd\x9a\x97\x2e\xe9\x92\x9e\x84\x09\xd1\xf0\ \x02\x29\x00\xaf\x80\xfe\xf3\x07\xe9\x90\x1d\xed\x00\x1b\xba\xd1\ \x50\xfc\xfa\x86\x9e\xc9\xa6\x91\x9b\x0b\xcd\xe7\xa2\x4b\x78\xb9\ \xa9\x80\x09\x3b\x25\x05\xf4\x84\x64\x33\x70\xb0\x52\xf6\xb9\x5b\ \xe2\x2f\x4e\x10\x05\xa4\xa6\x0d\xe5\x60\xa5\x57\x8a\xbb\xb7\xfb\ \xa0\xd1\x7a\xa0\xb4\x0b\x98\x96\x6a\x05\x20\x3b\xb6\x65\x29\xa5\ \x9a\xfa\x9a\x68\x09\x9c\x36\x90\x9f\xfa\x69\xb2\x99\x0a\x35\x67\ \xc9\xa5\x75\xa9\x97\x03\x9a\x07\x99\xca\x92\xd0\xeb\x8d\x1c\x50\ \x0d\xf5\x80\xb3\x95\x80\x09\xae\x30\xb8\x66\xa3\x01\xb5\xf8\x1b\ \x69\x7a\x13\xfb\xda\x7f\x2f\xd8\xb8\x4c\xdb\xb4\xb8\x60\x71\x74\ \xe5\x06\x4a\x85\xa2\xe6\x70\x54\x81\x25\x5a\x48\x86\x4e\xa6\xe2\ \x04\x5f\xd2\x35\xad\x35\x0f\xda\x60\x0d\x5f\xc5\x06\xf4\x19\xae\ \x6c\x10\x9c\xdf\xaa\xa9\x56\x4a\xc0\xda\xfa\xad\x4a\x0c\xb2\xd5\ \x2a\xa9\x67\x99\xb2\xf8\x99\xc4\x68\x49\xa4\x49\x7c\xb2\xb0\xe9\ \x92\x27\x3b\x8f\xaa\x58\xb6\xf9\x89\xa5\xd6\x50\x0e\x77\xc9\x52\ \xba\xd0\x01\x95\x30\xbd\xd1\x80\xb3\x29\x80\x09\xa2\xf0\x3a\x98\ \x90\x8f\xc6\xb1\x98\x89\xeb\x8b\x2e\x28\x95\xe9\x59\x74\x90\xeb\ \x0f\x99\x16\x74\xfe\x6e\x36\x71\xca\xe7\x06\xfa\x85\x0b\xdb\xa5\ \x5f\x5c\x43\x6a\xa3\x76\x05\xda\xc0\x92\x9a\x8a\x9c\xac\x30\xad\ \xfb\x79\xa9\x68\x69\xae\x8c\xda\xa4\x0b\x1c\xc5\x65\x2b\xbc\xe3\ \xaa\xb1\x0e\xec\xc0\xc0\x49\xb2\x9c\x9a\xa9\xe5\xc0\xa9\xaa\xc8\ \x9b\x21\x29\x02\x68\x09\xa1\x0e\x3a\xb7\x2c\x85\x8e\xb5\x44\x07\ \x4f\xd0\xc6\x93\x30\x04\x93\x00\xc7\x24\x0c\x33\x98\x80\x1f\x88\ \x9b\xb8\x64\x48\xab\x66\x46\xa7\x2c\x5a\x7f\x42\x20\x5f\x99\xb6\ \x7c\x3e\x01\xba\x54\x3b\x03\xb8\x90\x5f\x55\x2b\x06\x69\x90\x23\ \x57\x10\x0d\x51\x70\x05\x18\x3b\xa4\x9f\xfc\xa0\x28\x8b\xa0\xa6\ \xe8\xc9\x04\xec\xb6\x93\xcc\xc0\x96\x0a\xb2\x77\x19\xca\x1a\xbb\ \xb1\xc0\xc9\xc0\x6c\xb0\xb2\x5e\xac\xc1\x36\x40\xa1\x4f\x9c\x07\ \xeb\x2c\xc9\x73\x0b\x97\x17\x2b\x07\x51\x20\x07\x72\xf0\x02\x2f\ \xe0\x07\x7e\xf0\x02\xb7\x6c\xbd\x4a\x33\xc7\xed\x71\x8b\x37\x91\ \x81\x92\xc9\x50\x2d\x2c\x95\x65\x50\x06\x16\x07\x2e\x9b\x56\x5c\ \x45\x84\x4f\x3d\x52\x22\xd0\xac\x03\x44\x7c\x05\xd5\x2c\xbb\xae\ \x19\xa5\xaa\x9c\xc4\xc2\x8b\x0d\xb2\x2b\xce\xbd\xbb\xb6\x58\x9c\ \xce\x65\x8b\xfe\xc9\x0f\x5a\xb2\x0c\x3c\xbc\x99\x2a\xb7\x1a\x8c\ \xbb\x22\x1b\x8e\xf3\xbc\xb2\xe2\x68\x03\xd6\x10\x0d\xf3\x90\x02\ \xe5\x90\x02\xd1\x00\x52\x44\x30\x04\x29\xa0\x08\x22\x7c\x36\xae\ \xc0\x02\xf8\x71\x04\xbd\x5c\x13\x1a\xe8\x88\x98\xc9\x2f\x7a\x74\ \xab\x02\xe9\x06\x75\x65\x64\x70\x26\x5a\xed\x8b\xb0\x8b\xc4\x02\ \xb3\xf6\x25\x4e\xf0\x04\xf5\xab\xba\xf6\xbb\xba\x9c\xba\xb1\xe5\ \xb8\xc9\x04\x8a\xc1\x8f\x9c\xc4\x08\x6a\x03\x2b\xad\xbf\xae\x79\ \xd2\xdf\x1c\x92\x0d\xbc\xce\xaf\x80\xce\xf9\xf9\xbb\x19\x1c\xc1\ \x73\x2d\xc5\x0d\x9c\xa8\x66\x6d\x05\xde\x0a\x03\xd6\x0c\xcb\x29\ \xf0\x02\x72\x00\x02\x7e\xf0\x00\x93\x10\xc2\xd3\x73\x00\xc6\x86\ \xcc\xcf\xd1\x0e\x3d\xa8\xc2\x26\xe8\xa6\x4f\x94\xbe\xf0\xa9\x01\ \xc8\x07\xb5\x47\x70\x4a\xa7\x54\x7f\x9d\xdb\x13\x53\xe6\x04\xb8\ \xb0\x03\x25\xf2\x67\x19\x60\xcd\xad\xdb\xba\x12\xba\xd2\xc1\x1b\ \xa5\x67\xad\x92\x28\xfb\xc8\x28\xab\x92\xeb\x5c\xa5\x61\xeb\x9a\ \xc0\x1b\xca\x04\xfc\xdb\x35\x7d\xa5\xdb\x6c\xc5\x9a\x5a\xca\x67\ \x09\xbc\x05\x4c\xd3\x6c\x60\x0d\x77\x9d\xd7\xfa\x99\x80\xab\x5d\ \x0e\xe4\xfe\x92\xcf\x21\x25\xcb\x72\xf0\xc6\x02\xed\x2b\x8a\x10\ \x49\x63\x22\x03\x73\xf7\x1b\x38\x97\xc2\x89\x5b\x4e\x87\xe4\x56\ \xc6\x68\x8c\xfb\x6a\x74\x7f\x55\x4c\x2f\x7c\x8c\x74\xe6\x76\xf8\ \x36\x65\x16\xfd\xd5\xa4\xd6\xba\xd6\x7c\xb1\x77\x8d\xcd\xc1\xfb\ \xd1\x04\xec\xad\xe3\xfa\xa0\x20\x9d\xb2\x17\x3b\xad\x92\xec\xc0\ \x71\x1d\xe0\xa2\x8c\x9c\x4a\xfc\xdf\xbe\xeb\xa9\x62\x3b\xb2\x0f\ \xaa\xdb\xfb\xb9\xce\x57\xa0\x0a\xf4\x06\x03\x95\xd0\xd3\xf9\x8c\ \xb5\x72\x40\x07\x2f\x50\x09\xd9\x9d\xdd\x41\x75\x0e\xdd\x6d\x00\ \x93\x60\x00\x3f\xe7\x1a\x24\x47\x72\x76\x5c\x13\x23\x90\xd9\xdf\ \x3b\xa3\xb9\x2a\x74\x4c\x7b\xc3\x7f\x95\x77\x25\x88\xa3\x4b\x27\ \x0f\xf3\x04\x02\x41\x62\x4f\xf5\x3b\x0f\x3a\x80\x25\xcd\xc0\x0a\ \x55\xca\x06\xd6\xdc\x0c\xcd\x1d\xca\xf9\x39\xb7\xa9\xd8\x9a\x2a\ \xdb\xd7\x56\x10\xb6\xb2\x79\xce\x57\x0a\xa1\xa0\x5c\xc9\xd3\x1a\ \x9c\xc7\x9d\xa9\x70\xcb\xc4\x73\x2b\xa9\xb8\xad\xe4\x57\xf0\x0a\ \xff\x1b\xb6\x72\xab\x0d\x38\xa2\xd1\xd6\xed\xc6\x02\xed\x0a\x22\ \xae\x08\x24\x8e\x07\x7a\x80\x02\x9e\xe0\x09\xf8\x10\xd9\xa7\xd1\ \x0e\xfe\x74\xcc\x7e\x34\xe1\x09\xe2\x24\x04\xfd\x60\x71\x83\x2e\ \x8c\x35\x7c\x8c\x72\x6a\x0e\x47\x67\x47\x45\x47\x67\x3a\xb0\x47\ \x4b\xa0\x03\xf9\x55\x44\xf6\xfb\x55\x59\x9c\x9f\x45\x0e\xae\x11\ \x2a\xbb\x4d\x6e\x8a\x5c\xae\x97\x9e\x8a\xb2\x4f\xfc\xd7\x0e\x7c\ \xce\x9e\xfc\xd6\xe1\xac\xa9\x12\x3a\xb7\x0b\x8a\xb2\x25\xfd\xdf\ \x00\x4c\xd3\xfe\x6b\xe6\xf3\x70\xd7\x55\xba\x0c\xf1\x01\x03\x58\ \x8b\xb5\x3e\xfe\x6e\x35\x05\x33\x23\xae\x4c\x2a\xb0\x05\x5a\x20\ \x0a\xae\xe0\x09\xe7\xa0\xe2\x74\xdc\x0e\x06\x9d\xb8\x1b\xc3\xab\ \x56\x4d\x0a\x6d\x24\x5f\x76\xe4\x57\xe4\x59\xe3\xfb\x40\x30\x52\ \x80\x0b\xf7\x47\x2e\x7b\x94\x0e\x31\x12\x0d\x0b\x58\x27\xda\x30\ \xa4\xcd\x40\xd6\xe7\x9e\xa8\x67\xbe\x9f\x5c\x3c\xae\xc0\x2b\xb6\ \xd9\x0a\x92\x79\x6d\xce\xaf\x20\xa1\x9e\xbc\xce\xbc\x5d\xa0\xb1\ \x69\x0d\x73\x0b\x9c\xc7\x6d\xae\xb0\xb9\xe5\xca\x9d\xa8\xb4\x7e\ \xdf\xaf\x30\x7e\x63\x90\x07\xc3\x52\x65\x85\x02\x02\xd1\xb0\x34\ \x70\xee\x0a\xa2\x10\x0e\x7a\x20\x03\x7a\xd0\x0a\xb2\x90\x09\x9e\ \x00\xe7\xc9\xfe\x19\x7c\x9e\x8f\x7c\x0e\x0a\x4b\x4d\x13\x89\x18\ \xfe\xc3\x33\x2c\xed\x6d\x88\x0b\x65\x20\xed\xa3\x77\x9a\xfb\x70\ \x26\x1a\x10\x75\x5c\xa3\x0d\xf7\xa8\x0d\x57\x50\xa8\x18\x3d\x0f\ \xdf\xe7\xc3\x73\x20\x22\x25\x22\x62\x7f\x56\x6f\x5c\xeb\xa0\x5b\ \x7c\xe5\x43\x4a\xbb\x62\xae\x92\xb2\x4e\xf0\xcc\xbd\xdb\x9c\xfa\ \xce\xa0\x5e\xa5\x5c\x9e\xb2\xd3\xaa\xea\xe8\xbc\xca\xaf\xd0\xda\ \x65\xbe\xa9\x30\x30\x0f\xb2\x75\xba\xf6\x5b\x0e\xb7\xe2\x0a\x45\ \xfd\x2b\x98\x70\x00\x07\x10\x0e\x7d\xa0\x02\x24\x40\x02\x5b\xd0\ \x0a\x40\x30\x29\xa2\x40\xe2\xc6\x11\xf2\x6a\x00\x0a\x2c\xe0\xb3\ \x06\x11\x90\x02\x49\x57\x44\x97\x7a\x47\x47\x15\x20\x70\x8c\xf6\ \x27\x5c\x67\x32\x05\xec\xeb\x23\x4e\xb0\x25\x39\xd2\x23\x61\x12\ \x22\xb3\xe7\x76\x84\x08\x24\x3e\x22\x06\x22\xe2\x78\x0e\x0a\xb7\ \x89\x3a\xbb\x4f\xfc\xcd\xf2\xbe\xd2\xac\x6d\xcd\xd1\x2a\x9b\xf5\ \xfc\xe4\x00\x1f\x9c\xef\xae\xb2\xea\xde\x0c\xe9\x8c\xa5\xf3\xa0\ \x0a\x5e\x3b\xbb\xd9\xca\x06\x69\x00\x46\x5d\xd7\x92\xd6\xe3\x2e\ \xba\x7f\xb3\x6f\xbc\x22\xae\x70\xd8\x2f\xd0\x07\x6d\xdf\x0a\xc4\ \x0f\xf7\x23\x20\x0a\x73\x1f\x94\x49\xf1\xf1\x2e\xd0\xfc\x7c\xfe\ \x5e\xaf\x34\xc1\x08\x71\xfa\x81\xc5\xd8\x4e\xed\xd4\x46\x44\x07\ \x8c\xee\xfd\x56\xfb\xa2\x01\xa6\x56\x65\x31\xe2\x2f\x3c\xc1\x78\ \xa5\xfd\x67\xe0\xf7\x25\x26\x32\x26\x62\x22\x49\x53\xb6\xb5\x55\ \x2a\xf5\x4f\xcc\x0a\x1d\xad\xdc\x2b\xfd\xfa\x5a\x2f\xbb\xf5\x0c\ \x92\xe0\xea\xa0\x97\x6a\xf5\x11\xda\xba\x00\x01\xc3\x8a\x15\x6c\ \xcd\xae\xa8\x8a\x32\xef\x95\x35\x2b\x2b\xc6\xdc\xea\xc0\x26\x4d\ \x9a\x28\x30\xaa\x8d\x19\x53\x49\x47\x34\x6d\x5c\xb8\x60\x2a\x97\ \x22\x1a\xb7\x14\xae\x30\x9e\x74\x35\xe9\xdc\x8b\x07\x0f\x5a\x91\ \x20\xd1\xaa\x15\x10\x4f\xa2\x44\x19\x38\xe2\x46\xe7\x4e\x9e\x3a\ \xdb\xf1\x6c\xd7\x0e\x14\x28\x17\xa0\x7e\xba\xd1\x33\xe2\xdf\x52\ \xa6\x4d\x9d\x3e\x85\x1a\xb5\xe9\x08\x73\x55\xcd\x09\x31\x77\x20\ \xd5\x94\x54\x1a\x52\xed\x33\xb7\x4f\x03\x0b\x5c\x1a\x34\xec\x93\ \xa2\x81\xab\x36\x27\x62\x8e\x88\x81\x3b\x07\x84\x93\x84\x3a\xac\ \x71\xa9\x56\xad\xc3\xc9\x0e\x79\x3d\x5e\x01\x3c\xb1\xed\x8c\x9c\ \x47\xda\xcd\x98\x33\x27\xcd\x15\x2b\xcb\x96\x59\x61\x03\x43\x20\ \x64\x36\x91\x9b\x19\x9c\x97\x79\xde\x95\xcb\x92\xb1\xe5\xfe\xf1\ \xe2\x25\x4f\xc1\x66\xd8\x06\xc2\x30\x08\x38\xf3\x15\x36\x03\xd9\ \x58\x9b\x37\x31\xcd\x3c\x18\xcb\x6e\x8d\x59\xd1\x41\xb7\xee\x93\ \x63\xaa\x45\xbb\xa2\xad\x92\xb6\x14\xc5\xb9\xbd\x78\x91\x02\x93\ \x49\x8c\xae\x30\xbd\x30\xd0\x32\xa6\x0a\x15\xad\x64\x8d\xb0\x89\ \xb3\x67\xcf\xa0\x40\x85\x0e\x35\x7a\xd4\x0d\x23\xa5\x52\xcd\x9f\ \x97\xca\x28\xac\x58\xaf\x53\xa6\xb8\x9a\x62\xd6\xab\x06\x21\x42\ \xb4\x69\xd0\xe1\x40\xdb\xfe\x74\x4e\x66\xcc\x10\xc3\x89\x27\xca\ \xc1\xab\x37\x03\x0f\xe4\xab\x1c\x6b\xb0\xe1\xc2\x9a\x34\xfc\x23\ \x6c\x27\xc5\x00\xbb\xc2\x9a\xd2\xf2\xa0\xcc\xb2\xd4\xae\x58\xad\ \xc2\x66\x24\x03\xcd\xb1\x3c\x60\xb0\x10\x1b\x6c\x48\x5c\xed\x15\ \xc0\x60\xb0\xec\x41\x27\x76\xd8\xcc\x86\x15\x66\xcc\x0d\x41\xdf\ \xf2\xc2\x04\x93\x14\xb8\x91\xe3\xb8\x17\xe4\x48\x8e\x39\x8c\x30\ \xc1\x67\x12\x03\xce\xa1\xae\x15\x15\xf4\x68\x05\x3b\x51\xfa\xc8\ \x69\xbb\xed\x82\x02\x2f\x28\xf1\x76\x4a\x0a\x3d\x2d\xb7\xfc\x67\ \x04\x7c\xd4\x9a\xe2\x80\x25\x34\x38\xc0\x2b\x57\xcc\xea\x6a\x1f\ \x79\x96\x90\x42\x07\x6d\xf4\xcb\xc0\xbf\x23\x40\x88\xfe\x42\x1b\ \x1b\xef\x3c\xd0\x20\x2f\x1e\xea\xa0\xa0\x79\x9e\x10\xe3\x28\xc4\ \x10\x73\x62\x33\x36\x4c\x24\x88\x44\xc0\xac\xb1\x46\xb5\x28\x2a\ \xf4\x2c\x0f\x1b\x6c\xf0\x02\x9b\x46\x4b\x53\x74\x33\xd8\xe6\xf9\ \xb0\x99\x79\x9c\x98\xa3\xd0\x66\x1a\x5b\x46\x34\x2f\x1c\xb2\xb1\ \x1a\x57\xaa\xd9\x91\x05\x3f\xe8\x90\xc3\x8f\x07\x92\x3b\x80\xb9\ \x29\x30\x99\xa4\x0f\x95\xf4\x60\x72\xc9\x56\x7e\xf1\xc4\x13\xed\ \xa4\xec\x09\xbc\xf0\xbc\xfb\xe9\x08\x20\xca\xe3\xb2\x59\xa8\x3c\ \x99\x02\xa3\x54\x84\x28\x23\x17\x73\xd4\xda\xaa\x2b\x29\x96\x78\ \xd3\x2c\x6d\xe2\x14\x03\x84\x0c\xec\xc4\xb3\x5c\x8c\x6e\x89\x22\ \x8a\x3d\x1f\xc2\x6d\x05\x2f\xd8\x88\x4d\xb0\x19\x74\x9a\xc1\x09\ \x8a\xe6\xb1\xd0\xc2\xce\x4e\xc4\x8c\x42\x6b\x24\x6b\xcd\x0b\x1b\ \x60\xe0\x4c\xb2\x4d\x33\x53\x65\x33\x83\x1e\x9c\x0d\x06\x49\x47\ \xfb\x6c\x5d\x04\x5d\xa9\xc4\xb8\x17\x5e\xa5\xe3\x55\x3f\xfc\x78\ \x21\x1c\xe6\x5c\xe9\x83\x85\x73\x90\xe4\x55\x0f\x19\x64\x50\x41\ \x0b\x4f\xf0\x51\x81\x58\xee\xc0\x9b\x92\x28\x50\x74\x3a\x87\x59\ \x67\x6f\x66\x0a\xbe\xaf\xfc\x21\x85\x94\x5c\xda\xfe\xeb\xca\x1c\ \x79\xdc\x4c\xa5\x0b\xfc\xe0\x02\x41\x9b\x8b\xcc\x35\x97\x8b\x27\ \x9e\xd8\xf3\xb6\x5b\x20\xba\x65\x85\xd1\xbc\xe0\xa2\x99\x28\x20\ \xfc\xef\xbf\xc4\xec\xdd\xcc\x61\x1b\x46\x23\xb1\x51\xce\x3e\xc4\ \xc6\x86\x65\xf2\x78\xed\x32\x83\x54\x49\x78\x87\x34\x2e\xbb\x62\ \x87\x42\x17\x3c\xb1\xc4\x53\x6f\x43\x90\x55\x1f\x63\xa5\x23\x63\ \x3a\x88\x90\x81\x88\x17\x3c\x31\x09\x13\x03\x96\x24\x42\x85\xc6\ \xf5\x38\xe2\x08\x3d\x80\xc0\x27\x13\xc8\x5d\xf6\x69\xa8\x2b\x33\ \xd7\xdc\x27\x46\x70\x06\x7d\xa9\x11\x70\xe9\x27\x17\x52\xdc\xe8\ \x39\x2c\xb3\xcc\x61\x21\x03\x07\xba\xf8\xa3\x1a\x1d\xfc\x7b\x82\ \x5c\xa6\xcb\xed\xc0\x1a\x27\xae\x90\xfa\xb6\x15\xaa\xb6\x3a\x8f\ \xdf\x57\xb0\xc1\xd3\xd8\xfc\xdb\xc9\xb0\x00\xd3\x60\x48\x34\x2e\ \xac\x28\x1b\xb0\x0f\xad\x90\xd4\x0a\xd8\x2e\x3b\x1e\xd4\xc5\xac\ \x51\x05\x6c\x0b\x29\x6c\x46\x78\x76\x27\xb6\x26\x9a\x1f\x5f\x18\ \x9c\x08\xf5\x65\xc0\x03\x0f\x22\x0e\x10\xc5\x95\x03\xfa\x78\x01\ \x49\x15\x1e\xd8\xc2\x00\x3c\x8e\x90\x81\x04\x20\xfa\xc0\x03\xe6\ \xdc\xf0\x9d\xee\x00\x65\x80\x57\x6a\x07\x08\xfe\x6c\x16\x3a\x2e\ \x31\xa2\x1f\x3d\xc9\x45\x7d\xcc\xb1\x04\x5c\xe0\x22\x03\x5b\xf9\ \xc3\xec\x66\x90\x06\x0d\xdc\xce\x5c\x1d\x28\x47\xba\xb8\xd0\x81\ \xde\xd1\x28\x78\xbf\xab\x5a\x1e\x24\x65\xa9\x4f\xcd\x8b\x27\x00\ \x7a\xc2\xa3\x18\xd5\xa8\xcc\x4c\x64\x35\xad\xf1\x54\xc2\xd2\x00\ \x8a\x19\x04\x45\x31\x69\xf8\x0f\x8c\xe2\x85\xaf\x3c\xd8\x86\x6f\ \x7d\xab\x58\x34\x1e\xb0\xb1\x93\xb5\xcf\x89\x32\x30\x80\x22\x3c\ \x71\x80\x5c\x45\x87\x04\xc0\x3a\x40\x2b\xd8\xa7\x02\x12\x10\x21\ \x4a\x2e\xb3\xd2\x94\x88\xd5\x8e\x23\x90\x87\x81\x37\x03\x02\x4f\ \x7a\x96\x8b\x0a\x5a\x90\x07\x0e\xf8\xc3\x18\x52\xe1\x04\x37\xcc\ \xc0\x76\x1e\xbc\x53\x41\xfe\x75\x2a\x14\x9a\xd0\x6a\xd8\x40\x61\ \xa9\x4e\x25\x30\x6c\x5c\x21\x0a\x2e\x12\x43\x0f\xbd\xa6\x98\x84\ \xcc\x26\x0d\x3b\xf8\xda\x62\x5a\xf3\xa9\xc4\x88\xa7\x1d\x73\x98\ \xd7\x25\x9d\x00\xaa\x42\x61\x63\x6f\x53\xeb\x8d\xd4\x30\x51\xb1\ \x14\xc4\xca\x0f\x84\x63\x5f\xe4\x8e\xd0\x3e\x22\x4c\xe2\x00\x8a\ \xc0\x47\x1f\x1e\x40\x1d\x7c\x78\x62\x04\x99\x50\x41\xfb\x4c\xf6\ \x45\x01\xf6\xb2\x27\x65\x58\xe0\x19\xd1\xfe\xc3\x88\x96\xed\x64\ \x8d\xb8\xe0\xc1\x1b\x53\xf1\x87\x0c\xce\xcb\x09\xd1\xc2\x63\x1e\ \x2d\xc4\x85\x41\x9a\x50\x90\x95\x82\xc1\xf0\x04\x76\xaa\x52\x71\ \x01\x35\xf9\x6a\x94\x60\xe6\xb0\x3c\x1b\xce\xe3\x90\x90\xb4\x17\ \x67\xae\x30\x87\xc3\x70\x67\x27\x87\x69\x87\x18\x38\x55\x44\x14\ \x8e\xef\x16\x5c\xd0\x45\x35\x2a\x16\x04\x39\xa4\x6f\x7d\xaa\x8c\ \x1c\x1e\xa0\xf8\x8b\x03\x84\xe3\x1c\x32\xd0\x83\x0a\xb6\x50\x13\ \x2d\x90\x80\x7d\xa9\xf4\x65\x44\x79\xa2\xac\x60\x0a\xd3\x3c\xb2\ \x40\x5d\xcf\xda\xc1\xc6\x64\x3a\x60\x99\x63\xf8\x83\x36\xea\x78\ \xc7\x68\x1a\xc8\x1a\x09\xb1\x90\xf0\x54\x08\x1a\xd1\x98\x06\x7a\ \x57\x90\xd1\x0a\xa8\x27\x48\xb2\xc1\xe0\x33\x94\x12\xa4\x15\x0c\ \xb2\x10\xf0\x1d\x8a\x60\x8f\x9c\xc3\x0e\x20\xe9\xcb\x19\xec\xe0\ \x0a\x69\x5b\x06\x0a\x8f\x78\x8b\x4a\x54\x83\x03\xd5\xa8\xc7\x24\ \xe4\xa0\x3e\x54\xb6\x8f\x27\xed\x53\x01\x0a\x0e\x80\x02\x93\x21\ \x74\x59\x9e\x00\xc2\xe2\xd8\x17\x40\x89\x96\xd5\x0d\x2c\xa8\xa8\ \x45\xa5\xd2\x0f\x9f\x55\xd0\x01\x66\x71\x80\x32\x31\xa2\x8d\x19\ \xb0\x00\x9a\x25\xed\x0d\x08\x27\x82\xfe\x52\x6a\x92\xcd\x34\xa4\ \x21\x18\x6d\xac\x76\x21\xb2\x95\x48\x85\x49\x1d\x1e\x8d\x08\xf9\ \xcd\x66\xb4\x46\xa7\x40\x34\x4c\x0f\x7b\x39\x87\x28\x34\x96\x9e\ \x53\x93\xda\x18\x74\x51\x8e\x4a\xe8\x42\x11\xe5\xe0\xc6\x29\xab\ \xba\xbf\xc8\xb9\x41\x95\x50\xcc\x44\x1f\x72\xd9\x3e\x12\xe0\xe3\ \x17\x5a\xd8\xc2\x4b\xf6\x67\x56\x01\x12\x70\x28\xbf\x50\x2b\x97\ \xb4\x20\x84\x64\x8e\xa9\x2b\xc9\x44\xe6\x1f\xa6\xc0\x03\x3b\xe2\ \xf5\x40\xe5\x30\xa7\x39\x29\x62\x05\xac\x29\xaa\x19\x8c\x52\xcd\ \x62\x74\x5a\xb0\xe7\x72\x88\x33\xcc\x9d\x11\x66\xb5\xbb\x82\x65\ \x0c\xec\x60\xf8\xaa\x9b\x0b\x7d\x39\x07\x4e\xb1\x81\x9e\x4a\x7d\ \x08\x36\xa2\x11\x8d\x20\x84\xd6\x9f\xed\x53\xa5\x69\x93\x87\x07\ \x15\xf4\x61\x0b\x2a\x28\x8c\x1e\x64\x01\x04\x20\x64\x02\x08\x5b\ \x90\x01\x2f\x69\xcb\x1d\xa1\xb8\xc0\x05\x6a\x50\x43\x06\xd2\x9a\ \x5b\xa7\x8c\x40\x03\x0e\x70\xc0\x12\x22\x0c\xdc\x5c\x38\x01\x17\ \xfe\x11\x43\x2a\x8c\xdb\x1b\x2e\x58\x77\x6b\x4f\x98\x87\x89\x50\ \x53\xc3\x78\x3d\x68\x06\xaa\x70\xd0\x6c\x32\x63\x37\x8a\xfc\x8b\ \x9a\xd9\xd5\xee\xd4\x68\x64\x03\xfe\xeb\x3d\xf2\x3f\x81\x8a\xe8\ \x25\x55\x01\x29\xd3\x48\x0a\xb1\x5c\xe0\x27\x8f\xe8\x30\x56\x27\ \x96\x56\x4a\x47\x20\x42\x4c\x2e\xe7\x06\x3c\x90\x60\x0b\xb2\xd8\ \xc2\x7f\xf1\x3b\x60\x29\x51\x69\x28\x2e\xd0\x87\x1a\x66\x60\x46\ \x06\x9f\x67\x04\x5d\x59\x42\x6f\x93\x99\xcc\xa3\x64\xe0\xae\x1b\ \x2e\x87\x21\xa3\xf0\x84\x42\x19\x8c\x51\x9f\x7a\x51\x1a\x12\xd3\ \xc3\x42\x25\xe6\x41\x98\x44\xcc\x6c\xfe\x45\x3d\x2f\x38\xc6\x8f\ \x33\x2a\xd5\xa4\x2c\x25\x67\xb3\x12\xca\x86\x05\x33\x4d\x25\x82\ \xb0\x5e\xf7\x12\x01\xbe\x02\xd6\xc9\x17\x57\xc9\xc5\x25\xd3\x97\ \x04\xd5\xd9\x82\x43\xa9\x5c\xe5\xee\x04\xa5\x28\x09\xfc\x5c\x97\ \xcd\x33\x02\x31\x45\x58\xc2\x68\xd2\x40\x2e\x74\xa2\x83\x0d\x9f\ \xe4\x37\xe9\x3a\x64\x88\xbd\x49\x43\x1b\xff\xe7\x27\x3f\xa9\xd7\ \x61\x7a\x18\xa5\x50\x69\xe6\x5f\x9d\x91\x8c\x64\xdc\xf6\xbd\xe8\ \xee\x40\xbc\x65\xcd\xf3\xf6\x9a\x51\x8e\x68\x44\x81\x1b\x42\x1e\ \x1c\x69\x0b\xe3\xb2\x55\x26\x54\x0f\x64\xe5\x5f\xc9\x08\x07\x69\ \x2a\x5b\xe9\x28\x61\x74\xc3\xb2\x44\x6d\x1e\x7c\x5c\xe5\x8d\x68\ \x62\x26\x0f\xc8\xd8\x41\xe3\xfe\x56\x23\x84\x6b\xbe\xd7\x5d\x44\ \x13\x58\x79\xf9\x24\x79\x9b\xd3\x49\xa8\x0e\x6d\x36\x0a\xd5\xf0\ \x90\x9b\xc4\x64\xb2\xa8\x6c\x98\x17\x3d\xaa\x34\xe5\x58\x34\x8f\ \x5e\xb5\xbe\x47\x97\x36\x4a\xf1\x5d\x25\x42\xaf\x9d\xbc\x93\x05\ \x78\xd3\x04\x2e\xe0\x77\x5c\x70\xeb\x2c\x8d\x5b\x2a\x15\xe4\xc1\ \x98\x7c\x9b\x0a\xe2\xba\x81\xdd\x25\xad\xc4\xd6\x12\x39\x83\x27\ \xb4\x38\xa9\x95\xf2\xd4\x9d\xf1\x3d\xc0\x29\xd9\x6b\x36\x15\x32\ \xdb\xa3\x38\x54\x43\x71\xfe\x87\xca\x79\x0e\x9b\x79\x43\xa3\x8b\ \x4a\x20\x5c\xc8\xeb\x4b\xe5\x2a\x21\x0e\xd0\x55\x96\x81\x57\xfd\ \x28\x4c\x40\xc9\x1a\xe9\x01\x53\xa9\x28\x9a\xd3\xb8\x51\x0e\xf8\ \x8b\x05\x8f\x5b\x0b\xb8\x10\xc2\x5b\x97\x30\x41\x07\x98\x23\x17\ \x33\x38\x39\x1e\xab\xa1\x8d\x74\x3c\xa1\x30\x01\xda\x9d\xf0\x42\ \xf3\x53\x76\x4a\xb4\xd7\x1d\x02\x0c\xac\x29\xa4\x1a\x9e\xdb\x2d\ \xe0\x85\x6e\x33\x68\x50\xa8\x0b\xa2\xd7\xe3\xd9\x1b\x43\xfa\x58\ \x53\x49\xda\xfd\x35\x1e\xa1\x32\x28\x43\x00\xa5\xfe\x45\x81\x72\ \xbb\xb6\x06\xbe\xba\xb1\x60\x36\x40\x50\xe0\xa2\xeb\xa2\x1e\x1d\ \x2e\x26\xb8\x84\x30\x9b\xfe\xe3\xc2\x3f\x8b\x26\xab\xd2\xa1\x03\ \x1d\x3c\xa1\x27\xf5\xc2\x5b\xa2\xe6\x61\xec\x1c\xff\x50\x33\x14\ \x5a\xaf\x85\x6c\x6a\x53\x11\x9f\x28\xb0\x4e\x98\x79\x2f\x8f\x30\ \x21\x6c\x54\xa2\xe8\xf5\x68\x2f\x8f\x00\x47\xd5\xaa\x2a\xbe\x7d\ \x0f\x3d\x19\xaf\x20\x0a\xdf\x9d\xc8\x00\x05\x29\x00\x01\x6d\x61\ \x96\xf5\xf0\x74\x9a\x28\x5c\xf7\x78\x54\x80\x90\x0b\x8e\x0a\xad\ \x82\xb9\x10\x03\x49\xcb\x35\x05\x1d\xb0\x60\x93\x4f\x88\xd0\x51\ \x8e\x50\x28\x43\x6a\xea\x0a\x84\x26\x6a\x50\x65\xb3\x19\x9c\x9b\ \x88\xa5\x7d\x2e\x95\xee\x3a\x91\xd9\x0b\xbe\x5e\xc2\xb5\x39\x78\ \x1a\x39\x78\x82\xc0\x09\x1c\xc4\x5b\x1f\x54\x82\xbe\x08\xac\x38\ \x89\x83\x28\x5e\x42\xb2\xe5\xd8\x07\xcb\x23\x96\xcd\xb3\xb2\x5b\ \xf3\x36\x50\x40\x30\x5e\xc0\xad\xf0\x7b\x8a\x11\xf0\x07\xd3\x61\ \x23\x5c\x20\x3f\xf2\x5b\x82\x33\xc3\x13\x4c\x98\x1d\x39\xd9\x89\ \x7a\x19\x27\x31\x60\x1e\x38\x4b\x8c\x50\xc1\x24\x5f\x0a\x0a\x31\ \x50\x8c\xd5\xb0\x86\x72\x28\x87\x3c\xa8\x1a\xe0\x99\x91\x96\xe2\ \x10\x48\x8a\x10\x89\xd2\xa4\x17\x79\x1a\x3a\x00\x01\x69\x5b\x25\ \x81\x72\xa2\x2a\x9c\xfe\xc2\x27\x2a\x9c\x09\x94\x3e\xa8\x83\x34\ \x3d\xc0\x84\x31\x70\x85\x63\xeb\xa5\x63\xf1\x09\x04\x02\x0f\x35\ \x38\x30\x35\xe8\x83\xcf\xeb\xb2\xf1\x6b\x2b\x90\xcb\x00\x0b\x6a\ \x41\x3c\x71\x0f\xb6\xf0\xb9\x17\xa2\x8b\xbd\xc2\xb9\xe3\x11\xaf\ \x02\xdc\x8e\xa2\x0a\x1b\x18\x28\x07\x18\xa8\x04\x2f\xd0\x05\x2f\ \xa8\x9a\x52\x19\x0d\x1a\x8a\x17\xe0\x2b\xab\xe1\xeb\x90\x28\xa0\ \x03\xb7\xf0\x25\x55\x6a\xbc\x29\x6c\x22\x81\xaa\xb8\x47\xeb\x09\ \x3c\xf8\xc2\x29\x90\x02\x03\x2c\xc3\xe0\xb3\x32\xa2\x40\x30\x04\ \xd3\x07\x36\xec\x32\x21\x00\x39\x90\x5b\x82\x0c\xc8\x85\x71\x71\ \xc1\xe6\xd0\x86\x7d\x88\x13\x31\x34\x2d\xf2\x52\x2e\x8a\xd8\xbb\ \xd9\x93\x2c\x89\x02\xc4\x2b\xb0\xa9\x41\x14\x42\x2e\xe0\xac\xe2\ \x23\x88\xe7\x9a\x21\x0e\x91\x33\x3c\x2b\xab\xdd\x29\x1f\x49\x8c\ \x42\xd2\xaa\x44\xa6\x7b\x3e\x4d\x24\x32\x48\x3b\x82\x03\xc0\x08\ \x0d\xe0\x25\x70\x13\xa3\x77\x7a\x27\xa2\xc0\x3c\x03\x3b\x45\x35\ \x90\x02\x12\x84\x0a\x46\x18\x3b\x79\x20\xbf\x0c\x00\x2e\x0b\x92\ \x07\xb5\x18\x03\xf7\x80\xc1\x0c\xc8\x00\x36\x3b\xbb\x19\x9c\x97\ \x7a\x39\xa4\x34\xfe\x68\xb9\x58\xdb\xb9\xa1\x42\xb6\xa0\xea\x90\ \x68\x28\x1f\x84\xcc\x3d\x05\xf9\x10\xd4\xc0\x8c\x47\x7a\x24\x0d\ \x94\x10\x17\x82\xa1\x74\x81\xc2\x4c\x94\xc8\xe4\x31\xb2\x80\xba\ \xc2\x22\x8b\xba\xc2\x48\x81\x21\xf9\xb6\xef\x00\x23\x7b\xb3\x12\ \x53\xc4\x3c\x53\x3c\xc7\x54\x54\xc7\x06\x0b\x1a\x5c\x98\x81\x14\ \xc4\xc7\x0b\x03\x01\x16\xd8\x87\xf6\x73\x02\x16\x90\x87\x9d\xe4\ \x01\x1d\xd8\x81\x44\x4a\x0c\xa0\x7c\xbf\xbd\x12\x0c\xd9\x00\x95\ \x01\xd3\xb7\x35\x83\x35\x6e\x48\x17\x6e\x40\xc8\x72\x30\x91\xbc\ \xf1\xb5\x4f\x81\x27\xcc\x11\x0c\xf9\x0b\x17\x06\x24\x1c\x6a\x34\ \x2b\xa6\x53\xba\xd9\xa2\x3a\xd3\xfa\x42\x39\xa2\x23\x6f\xc3\xb7\ \x91\xfc\x40\x94\x44\x43\xcc\x3b\x47\x03\x53\xb0\x96\x6c\x0a\x68\ \xa1\x8f\x5c\xd8\x28\x8e\xd2\x81\x38\x61\x01\x1d\x48\x07\x79\x48\ \x87\xb7\xd2\x80\xfb\x48\x85\xbb\x04\x38\xa0\x24\x27\xc1\xf0\xc1\ \x1f\x32\x36\x3f\xac\xb2\x1f\x3a\x24\x39\x88\x02\xc7\x74\xca\x68\ \x10\x42\x21\xcc\x9b\x45\x41\x11\x42\x71\x02\x50\xa8\x3b\x9a\xf3\ \xb9\x39\x30\x24\x27\x90\x34\x19\x00\x81\x8b\x4c\xba\x8c\xc4\x1c\ \x80\x92\x92\xfe\x7e\x18\xcb\x31\xd0\x01\xad\xdb\x1c\x6f\x2b\xc3\ \xcc\x41\x30\x03\x33\x16\x34\x6c\x4b\x35\xd0\x07\x7c\x50\x45\xb5\ \x1a\x01\x57\xf8\x03\x1e\x20\x3f\x90\x4b\x26\x6d\x90\x87\x0c\x98\ \xc7\x07\xfb\x4b\xc0\xec\x82\x54\x70\x80\xbb\xec\x21\xc5\x60\x33\ \x80\xf4\x8f\xa0\x20\x94\xd9\x9b\x83\x01\xab\x97\x89\x68\x39\xc7\ \x94\x83\xf5\x2a\x87\x7a\x98\x4c\x05\x09\x82\xe9\x29\xa4\x07\xe9\ \x3b\xe0\x3b\x02\xc4\xb0\x9b\xff\x98\x0d\xf8\xb3\x40\x4d\xf4\x48\ \x23\xbb\xb8\xed\xf0\xc4\x93\xd0\x81\x5f\x7c\xa7\x0f\x04\x47\x94\ \xc4\xba\x02\x33\xc7\x73\x54\x83\x7d\xd8\x4d\xb5\x12\x85\x29\x70\ \x00\xde\x82\xb0\xb8\xe2\x01\x6f\xf1\x4b\x6d\xd0\x01\x1e\xb8\x8f\ \xe5\x5c\x4e\x11\xd0\x01\x32\x2a\x14\x3e\x14\x14\x43\x3b\x4a\xb3\ \x3a\x8c\x50\x11\x90\x27\x90\x03\xc7\x0c\x02\xf0\x44\xb8\x20\x58\ \x34\xef\x2c\xbe\x93\xba\x39\xcd\x38\xa4\x44\x92\x1b\xc1\x48\xcf\ \x18\xa2\x03\x6d\x0c\xa8\xb1\x42\x4d\x89\xca\xc8\x23\x18\xcb\x29\ \xc8\x80\xd7\x34\xcb\x2a\x39\x20\x72\x0c\x8f\x2b\x2b\x0a\xb6\x6c\ \xcb\x01\x55\x2b\xae\x90\xb0\x65\x52\xd0\x65\xfa\x83\xae\xe8\x8a\ \x37\xd1\xfe\x86\x54\x28\x1a\x66\x0a\xa9\xeb\xb4\x17\x08\x29\x43\ \xc4\xc8\x41\x80\xdb\xc1\x88\xc2\xcc\x04\x7c\x4c\x13\xad\x07\xe4\ \x3b\xd1\x28\xc8\xbd\x45\x53\xca\x0a\xe9\xc5\x44\x02\x48\x80\x7c\ \x82\x9f\x10\x83\x27\x94\xcf\xf9\xb2\x42\x87\x93\x2f\xa6\xeb\x89\ \x1b\x3d\xb2\x7d\x30\x89\x29\xa0\x23\x64\x31\x4b\x70\xfb\x8e\xee\ \x3b\x30\xda\x1c\x0a\x00\x3d\xb0\x17\x40\x52\x61\x1a\x81\x3f\x30\ \x0b\xe1\x22\xb9\x0c\xe8\x20\x2b\xb5\x52\x0d\x60\x85\x38\xea\x0d\ \x11\xc8\xbe\xc3\xb0\xc0\x41\x09\xa2\xcd\x98\x87\xcd\x1c\x2f\xb9\ \x51\xca\xee\xe4\x86\x11\x2d\x53\x3b\x88\x86\x1e\x61\x2f\x35\x7d\ \x9a\x18\x5a\x2f\x58\x6b\xd1\x7a\x89\x55\x40\xc9\x09\x3a\x78\x1a\ \x2f\x3a\xb2\x8e\xf4\xca\x5f\xdd\xc8\xf8\x22\x96\x23\x50\x01\x9d\ \x11\x03\x77\xc2\x9c\x0e\xd4\xb8\x94\x54\xc9\xb5\x3c\x30\x5e\x18\ \x81\x46\x65\xa0\x2f\x5b\xd0\x38\xfa\x83\x08\xf3\x28\x4b\x05\xa9\ \xae\x38\x10\xba\xe2\xb4\xff\xe0\x05\xb0\x01\x0c\xda\xbb\xc3\x5e\ \xa2\x8b\x74\x61\xb4\x11\xb5\x83\x75\xe5\x91\xc8\x44\xbe\x28\xf0\ \x03\x10\x00\xd1\xf5\x6a\x36\x58\xc3\xd5\x5b\x7d\x02\x10\xc8\x89\ \x19\xfe\xc8\x98\x27\x08\x30\x1a\xb5\xc2\x4b\xb4\x46\xae\x64\x32\ \x49\x33\x2d\x49\xc3\x03\x03\x38\x00\x6d\xb8\xce\xb2\x22\x20\x2b\ \xcb\xbc\x02\x93\x19\x94\x74\x01\x21\x90\x56\x06\x62\x84\x73\x70\ \x00\x68\xea\x0a\xf9\xa0\x52\x27\x85\x9d\x93\x88\x8f\x28\x68\x58\ \xee\xf0\x9a\x17\xe5\x39\x50\x09\x2a\x76\xc2\xb1\x64\x3d\x57\x13\ \x0d\x82\x75\xad\x07\x3b\x78\xb6\x67\x23\xd3\x56\x05\x51\x39\x30\ \x51\x6b\x30\x51\x46\xcb\x57\x3c\x00\xd1\x27\xf4\xd7\x9c\x18\xcd\ \x57\xb1\xb8\x5e\xed\xc8\x47\xab\x42\x82\x5d\xba\x23\x70\xba\x6b\ \x8b\x9c\x7e\xb0\xc9\x14\x38\x56\x30\xba\xb5\x20\xbd\x3a\xff\xcc\ \xda\x42\x85\xd8\xa2\x98\x01\x2d\xb8\xd8\xd0\xe9\x83\x8f\xaa\xc7\ \x27\xd5\x00\x11\x78\xb0\x57\xd0\xd4\x93\xb0\x43\x48\xeb\xd0\xc4\ \x90\x9b\x79\x50\x85\x3b\xb3\xb3\xcc\x50\x4f\x5c\x04\x0a\x00\xa1\ \x93\x57\x5d\x57\x9a\x7d\xb6\x57\x45\x3e\xe5\xd3\x59\x98\x85\x59\ \xf6\x92\x03\x31\x90\x81\xa7\xf1\x83\x05\x8c\x57\xd2\x92\x81\xc0\ \x71\x34\xcb\xb3\x44\xf8\x24\xb2\x87\x12\x56\x84\x2d\x83\x99\x90\ \x05\xc8\xd1\x25\x29\x48\x01\xd0\x1c\xa3\x30\x3a\x49\xcd\x43\x54\ \xfe\xcd\xb3\xba\x2a\x01\x05\x46\x85\xcb\xa6\x70\x41\x66\x4a\x05\ \x07\x85\xa3\x93\x48\x85\x74\xc0\xdb\xf4\xec\x52\xb9\x51\x05\xa1\ \x52\x59\x83\xb4\x06\x48\x8a\x8d\xbf\xcb\xdb\x1a\xc4\x03\x31\xc8\ \x98\x67\x63\x57\xe3\x8d\xd9\x98\x7d\xb6\x10\x4d\x55\xc2\xbd\x59\ \x39\x10\x4d\x3f\x50\xc0\xc5\x0d\x9c\x7f\x75\x9f\x85\xa3\xbe\xed\ \xb0\xc4\x09\xcc\xc4\x3b\x9d\xb6\x80\x62\x12\x2d\x00\x82\x5c\x8a\ \x1c\x3d\x78\x81\x7d\x60\x81\x62\xa9\x92\x8c\x0b\xd2\x52\xd4\x1c\ \x72\xb4\x3a\xcc\x3b\x49\x17\x08\xb5\xd5\xfd\x07\x51\x40\x10\x48\ \x9d\x87\x74\xc0\x88\x3f\xc8\x80\xaa\xdd\x53\x2e\x0d\x15\xa1\x7a\ \x24\xbf\xe3\x21\x50\xa0\xbf\xee\xc1\x97\xd8\x80\xa4\x92\x75\x83\ \xaf\x69\x0b\x31\xc0\x03\x10\x18\xcd\x21\xe8\x91\x54\xb5\x03\x98\ \x5d\xde\x0b\xce\x60\xbf\xe5\x86\x0c\x2e\x53\x39\x00\x01\x22\xc8\ \xd9\x8c\xc1\x18\xc7\x25\x82\x53\x3a\x19\x61\x9d\x28\x2c\x6c\xa2\ \x87\xa2\xc2\xf8\x54\xa5\xcc\xe5\xaf\x56\x28\x83\x9c\xe8\x87\xf3\ \xcd\x00\xa0\xa0\x4d\x70\xa4\x39\xf7\xed\x3e\xd4\x35\xc5\xfe\x24\ \x0a\x8b\xb5\xdf\x2e\xb9\x93\x6f\xb9\x8f\x34\x20\x16\x01\x1e\xfe\ \x60\x02\x86\x24\xa1\xe0\xd2\xd9\x50\x05\x10\xd8\x81\xef\x91\x0d\ \x25\xd4\x89\x00\x01\x94\xe1\x9d\xc0\x8c\xe9\x11\x3b\x28\x53\xc3\ \x93\x83\x21\x30\x63\xe3\xa5\xd9\x10\x0d\xe3\x10\x26\x1c\x3f\xe0\ \x11\x0b\x5e\x38\xeb\x55\x1f\xd1\x2a\xcd\x89\xea\x48\xe8\xc3\xc6\ \x8a\x53\x3a\x88\x53\x81\x1a\x2e\x83\x48\xd3\x03\x29\x60\x01\x00\ \x3e\xa0\x1f\x16\x54\xd3\x1d\x49\x72\xec\xe1\x5b\x1b\x0a\x31\x88\ \xd6\x23\xc6\xdf\xfc\xcd\x00\xda\xfb\x43\x27\x16\x2a\xbb\x69\x60\ \x1e\x12\x0a\xc5\x48\x18\xff\x60\x9e\x4d\xf9\xc7\xb6\x48\x16\x0a\ \x06\x01\x09\xa6\xe0\xe7\x23\x02\x58\x59\x57\xe5\x1d\x02\x3f\xb0\ \x60\x6e\x18\x02\x85\xdb\x18\xe9\x15\x63\xc3\x6b\xc0\x0f\x86\xe5\ \x56\xde\xca\x88\x9b\x63\xa4\x93\xc2\x48\x93\x3a\x2a\xe4\xde\x2d\ \x74\x22\xa8\xd3\x89\x32\xf0\x63\x40\x66\x81\x41\x56\xcc\x20\xd5\ \xbc\xee\x2b\xc3\x43\xed\x1c\xce\x69\x87\x9a\x39\xe2\xde\xbc\x2b\ \x8e\x4d\x03\xb7\x9d\x01\xcd\xcc\x41\xbb\xe1\x85\x1c\x1c\x8a\x6e\ \x56\xcf\x15\x03\xc4\x46\x69\xa4\xad\x69\x8b\x28\x99\x81\x52\x46\ \xdc\x11\xae\xb8\x39\xbe\x60\x58\xde\x18\x33\x36\xe3\x8d\xfe\x09\ \x9c\x58\xe9\x91\x32\x1d\x82\x54\x8e\xe5\x75\xb5\x67\x15\x0e\x30\ \xf7\x49\x61\xd1\xda\xca\x86\x3b\xd8\x2b\x9c\x40\x22\x28\x99\x4c\ \xec\x07\x69\x2b\x83\xfd\xc2\xaf\xa8\x2d\x83\x73\x18\x64\x03\x94\ \x58\x20\x2d\x20\xce\x43\x54\x4b\xea\x1c\x31\xe0\xb2\xd5\x35\x00\ \x29\xa8\xc3\xd6\x49\x07\x16\x10\xc3\xc3\xe0\xa1\x1c\x5c\xd9\x70\ \x9e\x83\x71\x36\x0a\xcd\x7c\x51\x25\x5c\x8c\xfa\xa3\x08\xe9\x6c\ \xd9\xb7\x00\x01\xd1\x24\x82\x11\x1e\xe1\xc1\x31\x61\x7c\x0e\xea\ \x8d\x29\x63\x8d\xb1\xe0\xbe\xed\x27\x22\xf8\x67\x3b\x18\x02\xa6\ \xd6\x65\x47\x13\xa8\x82\xee\x67\x5f\x46\xe8\x60\xae\xb8\xae\x82\ \x3c\x19\x78\x68\x81\x7a\xe8\x7e\x50\x01\x59\xd8\xdc\xd3\x21\x05\ \xc9\x91\x82\x17\xc8\x85\x6f\x6c\x87\xad\x7d\x66\x52\x94\x99\x8d\ \x56\x56\x50\x90\x87\xb0\x0d\x1d\x31\xc8\x00\x16\x28\x40\x6f\xfe\ \x9a\x4b\x06\x15\xf0\xe8\x66\xea\x84\xdb\x89\x60\xa7\x09\x49\x88\ \x74\x89\xa1\x7c\x95\xe0\x28\x99\xe0\x93\xf1\xe9\x54\x4e\x9f\x2c\ \x24\x1c\xf5\x01\xe3\xbe\xcd\x65\x34\xa6\xd9\x7a\x6e\xea\xcb\x76\ \xea\x7e\x8e\x67\xcb\xee\xa2\xd1\x6a\xb8\xc6\xbb\x46\xfe\x61\x7e\ \xbc\x32\x20\xb2\x32\xe8\xe3\xcd\x3d\x82\xb1\x76\x83\x7e\xa8\x0f\ \x42\x16\x0a\x5e\x28\x5d\x63\xd9\x68\x71\x74\x83\xfe\x04\x8a\x89\ \xbd\xb2\xfa\x5d\x5d\x8c\x72\x19\x01\x16\xaa\x39\x08\xd7\x4c\xe6\ \x21\x72\x8e\x69\xfd\x8b\xe2\x0d\xd2\x0c\x8a\x58\xb3\xa7\xa1\xe0\ \x25\xe4\x1f\x9e\xfe\xe9\x8c\x51\x9f\x6b\x3c\x99\x14\xe6\x86\x70\ \x58\x84\x45\x50\x84\x99\x95\xd9\xbe\x6d\x65\x57\xfe\x60\x33\xf6\ \x6e\x5d\xae\x6e\xf5\xb1\xe7\xce\xde\xc4\x22\xbb\x44\xf5\x16\x28\ \xa7\x43\x28\xd2\x8e\x3c\x3c\xd0\xaf\xb0\x4e\xed\xd5\xe6\x95\xa9\ \x2b\x30\x5e\x80\x6d\x22\x85\x66\x41\xa5\x92\x29\xe1\x5a\x72\x44\ \xab\x23\x66\x04\x6e\xeb\x66\x97\x46\xf0\x1d\x08\x67\xac\xeb\x4f\ \xf5\x94\x1b\x08\x89\x5b\x73\x3a\x24\xc2\x5e\x40\x09\x9e\xad\x88\ \x7b\x5c\xc8\x1d\x9c\xee\x8d\x38\x37\x56\x84\x45\xe0\x80\xec\x56\ \x84\x0f\xdf\x6e\xee\xfe\x6e\xf1\x16\x6f\x3b\xd8\x82\x80\x46\x25\ \xf5\x21\x81\xf3\x4e\xbc\xf4\x06\xd6\xe7\x7b\xda\xc7\xc3\x03\xaf\ \x96\x85\x56\x80\x9c\xc8\xe9\x19\x3d\x10\x02\x7d\xc5\x38\x65\x45\ \xa0\xb4\x2e\x5d\xb6\xd6\x3c\x47\x3e\xe2\x7f\xe0\xfe\x6d\xc3\x50\ \x69\x97\xd6\x4c\x6f\x76\x72\x4d\x8e\xe9\x6e\x1e\x0a\xe3\xde\x01\ \xcd\x5c\xd1\xbd\x0a\xda\xc0\xd9\x69\xf8\x7a\x3e\x06\x5c\xb8\xc7\ \x7e\xe1\x14\xc6\xee\xec\xd6\xee\x7a\x18\xf1\x11\x0f\x07\x80\x6e\ \x65\x7b\x6e\x6a\x3b\x40\x01\x80\x76\x6a\x81\x76\xf1\x21\x78\xf1\ \xce\x66\x3e\x8c\xd4\xc8\x29\x24\xed\x86\x86\x5a\xfd\x6a\x05\x3c\ \x20\x05\x63\xf6\x6a\x29\xc0\x07\x16\xa8\x53\xef\x00\xf0\x72\xfc\ \xb4\xd0\x45\x64\x03\x90\x6b\x9c\x61\x04\x19\x40\x0c\xa0\x14\xaa\ \x05\x7f\x72\xfd\xc6\xf4\x41\xdd\xe4\x99\xae\x5b\x66\x84\x53\x19\ \x5d\xc0\x9d\xde\x69\x08\x6c\xc0\x38\x86\x40\xf5\xb9\x6e\x33\xdf\ \xee\x70\x40\xf3\x12\x1f\x6f\x37\x5f\xd7\x70\xa0\x75\x15\x1f\x82\ \x15\x6f\xe5\xf2\x7e\x71\x3b\xef\x6c\xc7\xf1\xe5\x1b\x9d\x5c\xc8\ \x2b\x99\xc8\x93\x1c\x59\x20\x81\x87\x2e\x83\x1b\xee\x87\x73\xd8\ \x87\x03\x38\x00\x79\x60\x01\xd7\xab\xad\x01\xa2\xcd\x88\x9d\xb9\ \x8c\x96\x6d\x3c\x00\xdb\x23\x6e\x85\x71\x92\x69\x05\xc7\x74\x50\ \xd0\xf4\x97\xee\xbe\xd1\xd5\xbf\x02\x0e\xaa\x84\x79\x05\xed\x0c\ \x75\x05\xac\xde\x06\xdc\x70\x13\xde\xf0\x54\xfe\x57\xea\x57\xe7\ \x6e\x3b\xa0\xf5\x11\xaf\x87\x35\x67\x73\x59\xc7\x77\x45\x58\xf3\ \xcb\x46\x01\x3b\x7f\xc0\x24\xbb\x73\x98\xf0\x83\x4b\xa3\x6a\x3c\ \xb5\x44\x64\x97\xbe\x00\x2b\x03\x12\xd8\xf1\x7e\x90\x81\x41\x2f\ \x03\x03\xc0\x87\x14\x38\x00\x4c\x38\x00\x4a\xc4\x1c\xfe\x26\x43\ \x8c\x63\xcb\xfe\xfc\x89\x01\xb7\xdf\x11\x50\xd9\x4b\xd6\x74\x5e\ \xc8\x74\x96\x27\xf9\xef\x48\xf7\x34\xc8\x5d\xb8\x95\xdb\x89\xb0\ \x1b\x7c\x65\xc0\x11\x06\xef\x53\x9a\xe5\x0d\x1f\x73\xa5\x16\x63\ \x39\xc7\xf7\x70\xd8\xee\x56\xef\x77\x7b\xee\x5b\x5a\x0f\xf8\x2d\ \xc8\xe5\x2e\xd2\xf5\x3b\xf7\x03\xea\xf0\x75\x19\x77\xb8\x86\x8f\ \x3e\x3d\x88\x3c\xd3\xbe\x1c\x41\x8f\x1c\xd3\x3e\x07\x7f\x38\x07\ \x7c\x40\xdf\x32\x28\x65\x30\x5a\xdf\xd9\xc6\xda\x72\xd4\xba\x03\ \xb2\x92\x48\xc7\x19\x14\x00\x6e\x70\x5f\x79\x96\x77\x81\x39\xc8\ \xda\x20\x06\x05\x02\x9e\x5b\x05\x87\x5b\x1d\x7a\x70\x17\x59\xc0\ \x05\x04\xea\x58\xd6\xe5\x06\xcc\xf3\xc2\x99\xe3\x5b\xbf\x75\x3b\ \xc8\x84\xbe\xc5\xf7\x7d\xdf\x77\xa6\x76\x65\x57\x9e\x75\xa5\x5f\ \xf3\x15\x47\x81\x81\x47\x6f\xaa\xba\xf3\xfe\x25\x72\x1c\xc7\xc1\ \xea\x86\x03\xa8\xae\x16\xf6\x64\xaf\x8e\x1b\x3e\x02\x63\x26\x85\ \x64\xf7\x87\x87\x1e\x19\x3d\xb0\xc9\x7d\x68\x6e\x00\xef\x34\x9a\ \x1b\xc7\x34\x54\x03\xac\x1b\xc7\x2b\x7b\x4b\xfb\x65\x84\xdd\xd5\ \x4c\xfd\x26\xf7\xb5\x2e\x6e\xa1\x9a\x5b\x4d\x80\x24\x99\x9e\x88\ \xb9\x85\xc8\x07\xa1\xe0\x05\xec\xa7\x57\xb1\x60\x5d\x9e\xe5\x59\ \xa6\xaa\x59\x4e\xf1\xbe\xc5\x75\xc7\x77\x75\xc9\xaf\xe7\x7f\xdf\ \xf7\x5a\xa7\xd9\x21\xd0\x7c\x83\x56\x1f\x15\x48\xf8\xf4\x57\xf8\ \xa9\xb7\x51\x80\x6a\x3c\xf8\xce\xea\x84\x52\xf6\x7e\x80\xba\xd5\ \xf7\x87\xa7\xa3\x7f\x37\x00\x01\x7c\xd8\x78\x39\x92\x7d\xd3\x04\ \x08\x37\xed\x40\xb9\x70\xa1\x46\x8d\x0b\x50\xed\x16\xba\x11\x38\ \x10\x14\x41\x17\xbc\x18\xfd\xab\x68\xf1\x22\xc6\x8c\x1a\x37\x62\ \xec\x33\x07\x14\xaf\x8f\x10\x47\x42\x14\xa9\x10\xe2\x8e\x1d\x9a\ \x54\xa9\x4a\xf9\xb1\xdd\x9c\x1d\x69\x54\xcd\x53\x95\xe6\x66\x1a\ \x27\x62\x40\xd0\x79\x42\xc7\x0f\x50\x39\xdc\xec\x0c\xf1\x43\x84\ \x08\x50\xa0\x48\x87\x30\x1d\x32\xd4\x0e\xd4\x4c\x44\x9b\x32\x85\ \x0a\x95\x29\x50\xa6\xe1\xc2\x59\x0d\xfe\x87\x62\xc8\xd7\xa2\x43\ \x48\x0c\x51\x71\xf4\xa8\x0a\x3f\x24\x1e\xa8\x48\xdb\x96\x88\x1e\ \x19\x72\xfb\xe1\xc1\x73\xc4\x2e\xdd\x32\x32\xf4\x96\xe9\xab\xa7\ \x0c\x1e\x52\x78\x00\x93\xea\xe7\x4f\x85\x3f\x7f\x7d\x8f\x34\xc4\ \x03\x42\x8a\xab\x31\x63\xa6\x48\x11\xd3\xf0\x32\xe6\xcb\x0b\x23\ \x26\x5c\xd8\xae\xe1\xc2\x84\x05\x0b\xaa\x91\x32\x82\x23\xea\xd4\ \xa8\x19\x3d\x99\xc3\x0b\xe2\x0c\x50\xae\x41\x8e\x8c\x8d\x72\xa5\ \xcd\x96\xaf\xdb\xcd\x88\x39\xb3\xe6\xcc\x9c\x62\x76\x3a\xe9\x29\ \xc7\x8f\x1c\xa7\xdc\x8a\x9e\x4d\x5a\x15\xea\xd0\xad\x56\x89\x4e\ \x15\x6b\x07\x05\x51\xa5\x59\xaf\x83\xa5\x8e\xe2\xc5\x90\x07\x7e\ \x1e\x8c\x35\x7b\x56\x05\x9d\xb5\x24\x54\xac\x57\x11\x77\xaf\x8c\ \xba\x78\xe8\xe2\x91\xd1\xcf\xbe\x0c\x3d\xfa\xfd\xf5\x63\xdc\xaf\ \x4c\x7f\x65\x24\x96\xd8\x7d\xa4\x60\x46\xca\x3e\x91\x49\x96\xca\ \x13\x8c\x65\xf6\xa0\x43\x0a\x7d\xe6\x19\x28\x08\x8d\x46\x1a\x2f\ \xf8\x9c\xa6\x1a\x87\x1d\x1a\x10\xd2\x1c\xae\xb9\xe6\xc2\x47\x26\ \xc9\x16\x13\x4b\x36\xed\xc0\xcb\x0c\xbc\xf1\x92\x92\x4d\x38\xe5\ \x34\x87\x18\x73\x80\xe0\xd3\x13\xfe\x72\xe8\x28\x14\x37\x7e\xd0\ \x71\xd6\x52\x4d\x5d\x67\xc7\x56\xe1\x48\xb5\x85\x1d\x48\x6e\x51\ \x54\x56\xcb\x29\x25\xc3\x52\x5f\x0d\x89\x02\x76\x5f\x91\xf7\x80\ \x01\x63\xc1\x05\x25\x11\xec\x8d\x87\x5e\x5b\xee\xbd\x07\x58\x7d\ \x7b\xd5\x47\x17\x29\x7e\xfd\xd5\xd0\x11\x68\x1a\x96\x18\x61\x47\ \x18\x68\x60\x43\xfd\xf4\xa1\xe0\x14\xda\x58\x96\xd9\x40\x10\x6e\ \x16\xd1\x41\x6a\x70\x16\xa8\x26\x1b\x76\x78\x28\x47\x23\x38\x11\ \xe2\x6c\x24\x95\x24\xdb\x8b\x2c\xcd\x94\xd2\x6b\xb2\xed\xd0\x52\ \x1a\x29\xed\x10\xd3\x1c\xbd\x81\xe0\xc4\x13\x38\x22\x27\xd4\x10\ \x3f\x02\x49\xd5\x10\x50\x61\x57\xe4\x91\xcb\x61\x95\xd5\x58\x46\ \xc9\x15\x24\x53\x5f\x61\x37\x09\x78\x0f\x90\xa7\x9e\x59\x72\xe9\ \xd1\xa5\xae\x0f\xac\x65\x56\x5c\xfa\xc9\x05\x5f\x7e\x71\xd1\x65\ \x5f\x5f\x65\xf8\x17\x98\x1b\x86\x01\xd8\xa6\x83\x74\x5e\x46\xca\ \x9d\x92\x8d\x81\xc9\x0c\x99\x41\xf4\x19\x66\x9e\x19\x14\xa8\x85\ \xa4\x91\xfb\x0b\xa2\xe9\x6a\x34\x02\x10\x2b\xbe\x66\x22\xa4\x2f\ \x5e\x2a\x93\x26\x94\x8a\x74\xa9\xa4\xf5\x6e\xca\xe8\x1c\xa0\x3a\ \xe1\xc4\x8d\x39\xf2\xe8\x63\xfe\x73\xa8\x0e\xc1\x15\x0a\x5b\x49\ \x25\x55\x53\x46\x25\x65\x14\x90\x44\x0c\xb1\x24\x58\xd8\x1d\xec\ \xd5\x78\x59\x92\x30\x2c\x11\xb3\xc2\xa5\x42\xb0\x20\x8b\x69\x6c\ \xb1\xfa\xe9\xa1\xd8\x5e\xf7\xfd\xd7\x5f\x61\xfd\xb8\x51\x18\x80\ \xfd\x90\x22\xe7\x9c\xa4\xd8\x7c\xd9\x11\xd9\x4a\x26\xcf\x83\x0c\ \x39\x34\xd0\x40\xfa\x90\xb1\x00\xb9\x06\x8d\x1b\x68\x06\x86\xaa\ \xbb\x34\x23\x4e\x84\x44\x90\x6c\x10\xbd\x26\xaf\xa6\x9a\xf2\xf2\ \xf4\x1c\xb8\x49\xba\x2f\xbf\xff\x3e\xf1\x6f\x4f\x3d\x71\xa3\x63\ \xc7\x5c\x36\xec\x47\xaa\x4a\x2e\x97\xe4\xab\x46\x9d\x3d\x31\x58\ \x45\x6e\xa5\x08\xdd\x74\x87\x33\x89\x01\x54\xa2\xb0\x31\x7b\x47\ \xf9\x4a\x44\xb0\x2f\x18\x70\x4e\x5b\xbf\xea\x07\x17\x5c\x7a\x14\ \x5e\xc6\x5f\xcd\x3a\x58\xc6\xcc\x69\x02\x68\x33\xe5\x37\x53\x7e\ \xad\x10\x78\xee\xe9\x67\x44\x15\x92\x21\x02\x3c\x44\x23\xd4\xf9\ \xd1\x85\x2a\xbd\x74\xba\x7d\x8c\x74\x35\x6d\x54\x57\x4d\xe9\x8a\ \x1f\xe1\x5b\x93\x4b\x27\xee\xe0\x44\x4a\x39\x7d\xfd\x35\x4f\x39\ \x12\xdc\x9c\xc3\x7e\x20\x59\x1d\x55\xb0\xc6\x8d\xc2\x92\x99\x14\ \xf9\x0b\xdd\x9e\x88\xe2\xfe\xfc\x14\xae\x88\xa2\xc8\x24\x09\x53\ \xc9\x16\x11\x24\x14\xeb\x2b\xc8\x82\x1b\xc0\x02\x5b\x61\x9a\xac\ \x5f\x98\xfe\xe8\xd7\xac\xcc\x2f\xd3\xd9\xf2\xe4\xfd\xc8\x2c\xf3\ \xe5\x99\xa9\xa0\xe0\x3e\x10\x0a\xe4\x28\x28\x0b\xc0\x03\x8f\x3e\ \x07\x15\x34\xd2\xb8\xd2\xa1\xa1\xd3\xa1\xee\x50\x8c\x60\xc1\xd5\ \x9e\x66\xa9\x94\xd4\xab\x81\xb0\xbb\xda\xec\xc8\x60\x2f\x5e\x38\ \x4d\x26\x38\x91\xc9\xbf\xc4\x30\x03\x31\xf8\x8e\x0e\x1e\x0b\x5e\ \xaa\xbe\xb2\x24\x58\x91\x00\x6d\x5b\x98\x9b\xdd\x56\x25\x95\xb9\ \x39\x4f\x14\xda\x92\x1e\x3e\x12\x16\x43\x61\x99\xa5\x57\xb3\x52\ \xc1\x39\x0c\xf0\x82\x3e\x18\x40\x57\x84\x2b\x9c\xe2\xc2\xd4\x0a\ \xc4\x9c\xec\x64\xfd\x69\xc8\xfa\x56\x06\xbf\xc2\x54\xce\x5a\x98\ \xc9\xdc\x64\x36\x17\x2e\x81\x50\xb1\x42\x0b\x48\xe0\x85\x44\x93\ \xa1\x11\x10\xb0\x80\x88\x9a\x84\xbb\x6c\xa7\xb5\x14\xb1\xa4\x6a\ \x29\x9a\x47\x18\xd2\x70\x35\xdc\xe5\xce\x82\x99\x5a\x54\x88\x66\ \xb0\xc1\xde\xfd\x88\x4b\x48\x41\x5b\x91\xd8\x36\x96\x13\x26\x29\ \x1c\x74\xfb\xc5\x56\x7e\xc1\x0d\x12\x20\xc5\x6f\x12\x53\x84\x28\ \x14\x34\x06\xe9\x29\xfe\x42\x79\x54\xda\x18\xdf\xca\x96\x1f\x15\ \xb0\xc0\x00\x3a\xb4\xa4\xae\x48\xf0\x43\x21\xb6\xe2\x30\x44\x3c\ \x8c\x3f\x18\x73\xb3\x97\xb9\xaf\x89\x36\x2b\xe5\x28\x31\x83\x87\ \x03\x4c\x06\x04\xf6\xc3\x0c\x41\xd4\xc0\x8b\x82\xb8\xc6\x7f\xa0\ \x70\x02\x23\xba\xe8\xc5\x74\x8d\x60\x82\x2b\x09\x4e\x4d\x52\xe4\ \x12\x08\xce\xa4\x8c\x09\xc4\x97\x1a\x43\x74\xbb\x7d\xf5\x46\x8e\ \x33\x00\x01\x08\x88\x10\x4d\x28\x31\xe5\x84\x7f\x24\x92\x57\x12\ \xb6\x15\x6d\x22\xec\x3a\x7e\x88\x0f\x94\x64\x70\x84\x23\xa8\xc0\ \x13\x8a\x1c\x83\x28\x98\xf7\x8b\xea\x19\x60\x0b\x90\x5c\x4f\xc9\ \xf4\xb0\x16\x4b\xd2\xf3\x01\xe7\xd0\x64\x5b\x5a\xa1\xcf\x7d\x0e\ \x48\x05\x9d\x54\xdf\xfa\x98\x88\x44\x80\x5a\x0e\x42\xb8\x70\x05\ \xb7\x5e\x29\x10\x73\x49\x64\x96\xff\x63\x41\x1f\xb8\xb8\xcb\x89\ \xb2\x4b\x5e\x34\x69\x09\x32\x6f\xb2\xaf\x92\x88\xc8\x6a\x30\x2a\ \x63\x89\x62\x02\xa2\x38\xba\x61\x9c\x3c\x29\x98\x1f\x17\x21\x0a\ \x0e\x28\x42\x84\x45\xb2\x15\x51\x08\x99\xbd\x21\x10\x61\x9c\x78\ \xe8\xd8\x5d\x26\xa1\xad\x45\x7a\x02\x90\xbf\xc0\xc7\x2f\x50\xc0\ \x43\x61\x6d\xcc\xfe\x70\x93\x04\x19\x96\xe8\x69\xc9\x73\x30\xb5\ \x15\xe7\x68\x85\x01\x64\xb1\xcf\x7c\x2a\xe6\x94\x96\x4b\x5f\xcd\ \x4c\x99\xca\xcb\x94\x61\x1f\x2c\x70\x90\x9f\x56\x64\x34\x89\x34\ \x74\x0e\xf8\xc8\xe5\x44\xd3\xfa\x0f\x46\xdc\x44\x98\xb8\x2b\xa6\ \x6e\x24\x34\x90\x90\xba\x06\x5f\x65\x8c\xdd\x02\x77\xa0\x8f\x10\ \x29\xc4\x0d\xcf\xa4\x03\x34\x8f\x72\x30\x4f\x70\x20\x7a\xa2\xa0\ \xe9\x4c\x65\xea\xb7\x71\x1e\x01\x4a\x0e\x6a\x2c\x21\xfd\xe0\x09\ \x6d\x4d\x6f\x0b\xed\xcc\x04\x20\x63\x68\x59\xbe\xb9\xc7\x57\x8a\ \x13\x56\xb0\x94\xaa\x54\x59\xf4\x41\x16\x52\xed\x64\x2b\xa4\x5a\ \x86\x97\x41\x8e\x72\x58\xcd\x6a\x41\x9d\xc8\xa6\x73\x48\x11\x42\ \x10\x41\x48\xa0\x78\xc1\x82\x49\xe8\x52\xad\xa8\x9b\xc4\xd6\x62\ \x62\xd7\x96\x7c\xa4\x45\x1c\xad\xeb\x4c\x5e\x81\xd1\xba\x7a\x74\ \x25\xcc\xdc\x60\x71\xa2\x09\x02\xa0\xd8\x41\x11\xe6\x74\x85\x27\ \x1e\x50\x97\xb3\xd4\x25\x3e\x8f\xad\xcb\x63\xfd\x50\xb7\x44\x4a\ \xef\x17\x06\xd8\xd8\x16\x7e\x9a\x89\x4c\x08\x15\x92\xc4\x7a\x4f\ \x10\x89\x7a\x4f\xa5\x92\xc0\x92\x7d\x40\x01\x10\x4a\xbb\x4f\xa9\ \xc2\x0f\x72\xfe\xa4\x4c\xdf\xcb\x02\x6c\xb9\xad\xe2\x0c\x30\x0a\ \x75\x03\x44\x8e\x96\x01\xde\xf6\xd6\xb7\x4b\x1b\x41\x3a\x32\xa5\ \x29\x9a\x84\x81\x76\x2c\x3a\x49\x89\x60\xf4\x8a\x9a\x68\xe2\x5d\ \x1f\x65\xa0\x31\x19\xe5\x84\x34\x3c\x01\x04\x32\xf8\x11\x50\xb8\ \x11\x0e\x4c\x78\x22\x05\x43\x10\xe7\x4d\x71\x0a\x5e\x36\xd5\xc7\ \x41\x32\x50\x84\x2b\xa4\x27\x8a\xe7\x65\x42\x58\x5b\xf8\xb1\xf2\ \x82\x8a\xbc\xf3\x86\x69\x4b\x26\x0b\x13\x0e\x93\x4a\x02\xa7\x1a\ \xa0\x0f\x7d\x00\x02\x3e\x80\x00\x84\xfd\xfa\xe3\x94\x2e\xfb\xaf\ \x6c\x05\x1c\x60\xfb\xe1\xe1\xc0\xf7\x1b\xcd\x01\xd0\xea\xe0\x31\ \xa3\x60\xc2\x64\x9c\x47\x87\x4b\x64\xbb\x4b\xbd\xe2\x0a\x21\xae\ \x2b\x19\xb5\xa6\x2f\x99\xdc\x0e\x04\x62\x70\xcc\x4f\xfc\xf0\x82\ \x49\xf0\x79\x12\x0f\x80\x31\x09\xb6\xf0\x4d\xb9\xd8\xa5\xa4\x37\ \x8d\x15\x0a\x22\x83\xdd\x5f\x64\xa2\x9d\x81\x0e\xf4\x16\x90\xa7\ \x37\x03\xb4\x62\x63\x5d\x1a\x19\xf9\xd8\x33\xdf\x7a\x42\x35\x6f\ \x4f\xc6\xc7\x69\x4d\x5b\xe5\x95\xcd\x09\xc0\x5e\x3e\x35\xe7\x70\ \x61\x9a\x31\xb3\xba\x22\xbd\xbc\x54\x70\x54\xa1\xdc\x4a\x85\x28\ \x24\x97\xfe\x9a\xc7\x2b\x94\x4b\x29\xa7\x41\xf0\x52\x9a\x80\xab\ \xbe\x9c\xbb\xa8\x19\x1c\x41\x0c\x27\x7e\xc2\x0b\x92\xcd\xe7\x2c\ \xa9\x40\x2e\x43\x08\xaa\x5a\x08\xe9\x5d\x22\x64\xc2\x9c\x9e\x70\ \x5e\x4f\xf7\x36\x16\xb2\xbc\xd3\xb2\x5b\xe8\xc3\x16\x64\xe1\x5e\ \x20\x92\x2f\x88\xf7\xcc\xa1\x68\x49\x9b\xdf\x50\x9b\x16\x40\x02\ \xba\xb2\x40\x51\x2d\x6f\xcc\x80\x20\xa2\x0d\x6e\x75\x01\x47\x90\ \x89\x96\xf0\xbb\x8c\xa0\x88\x0d\x04\x57\x82\x46\xe0\x80\xe8\x75\ \x2a\x49\xc3\x4a\xc2\xc0\x12\x4d\xd4\xeb\xc2\xbc\xd1\xe0\x33\x79\ \xb2\xe7\x65\x8f\x65\x2c\xbf\x78\x1e\xf3\x14\x01\xc8\xbd\x85\xc3\ \x85\xd2\xf3\x44\x26\x36\xa6\x96\x68\xbb\xd3\x9d\x90\x6c\xc5\xb7\ \xdb\x49\xc3\xc2\x75\xe9\xc8\x38\x7c\x6a\x93\x9d\xec\x64\x14\xe0\ \xe3\xc9\x94\xd6\x27\x10\x64\xa1\x98\xc4\x94\x1a\x40\xf3\x9e\xf7\ \x11\x06\x88\xef\xa1\x33\x22\x03\x64\x8c\x6b\x49\x64\x92\x6b\xda\ \x61\xd4\x75\x91\x62\x49\x85\x97\xde\x70\xcf\xf0\x6b\x83\x8e\xd1\ \x33\x9f\x5f\x40\x9e\x48\xb7\x70\xc7\xe4\x9d\x5e\x0b\x7b\xea\xce\ \xb3\x74\xfb\x9d\x66\xdf\xc2\x03\x2a\x2d\xbe\xf1\x1d\x19\xe6\x9e\ \xc6\xfe\x47\x94\xfb\x00\x6a\x9d\xa7\x56\x0b\x3a\xf7\x87\xce\xad\ \x3c\xb9\x9f\x7b\x59\x05\xb2\xa0\xc8\xd0\x03\xff\x0f\xe0\x6e\x6d\ \x45\xff\x86\xa0\xac\xdd\x6c\xf0\xdc\xfd\x9a\x0c\x68\xcc\xf5\x2b\ \x58\xa1\x6b\x17\x50\x88\x53\x2d\xb2\xe9\x4f\x92\x8d\x82\x2e\x91\ \x20\x1c\xbf\xb8\x36\xe8\x13\xf9\xbc\x6b\x33\x7a\xec\x47\xe1\xf6\ \xb6\xdf\xc9\x9e\x8d\x41\xb5\xd3\xed\x59\xbb\x9a\xce\x1d\xf3\x18\ \xc2\x3d\xbf\x39\x97\x85\x94\x51\xdb\xc9\xf7\xb9\xcf\xd4\x7c\x7f\ \x90\x1e\x80\x20\x51\xc1\x07\x7e\x04\x51\x68\xc9\x9c\x57\x64\x57\ \x34\xc6\x6e\xd7\x34\x81\x7c\xae\x15\x1e\x7d\x55\x54\xea\x21\x7c\ \x6d\xd1\x84\x8e\x70\xa3\x64\x3f\xe0\xf4\x43\x58\x2f\x66\xd7\xfb\ \x79\x46\xaf\xb7\xe2\x25\x3c\x7f\xb4\x21\xc9\x79\xb3\xa3\x9c\xd2\ \xed\x09\xa2\x7b\xd4\x84\x43\xfb\x4e\x02\xee\xf6\xb7\x3d\x10\xb4\ \xa0\x85\x01\xb5\xa2\xf7\xee\xf3\xf9\xef\x3d\xc8\x11\x68\xc1\xf0\ \x11\x9f\xe0\x81\x51\x6e\xa8\x42\xbd\x1c\x9d\xbf\x1d\x93\xac\xb1\ \x42\x33\x34\x03\xe4\x1d\x5d\xf5\x49\xcd\x4b\x78\xc6\x11\xcc\x11\ \x72\xbc\x80\x1f\xac\xde\xc4\xa0\x00\xf8\x6d\x41\x08\x56\xdc\x8f\ \xfe\x99\x9f\x51\x10\x92\xa5\x65\x0f\xfb\xd5\x17\x09\xa0\x80\xda\ \x29\x0e\x28\xc5\x05\xe3\xbc\xdc\xec\xd9\x5f\x94\xdd\xa0\xfe\xf1\ \x13\xfc\xf4\x5e\x96\xf1\x9d\xdf\xdd\x9b\x01\x3a\xd8\x08\xc0\xd5\ \xc2\xc5\x19\x4b\x84\x84\x45\x35\x03\x2b\x48\x5e\xae\x49\xa0\x72\ \x81\x14\x49\xbc\x8b\x67\xf0\xc6\xbf\xd5\xc8\x13\xb0\xc0\x71\xa4\ \x07\x7a\x81\x60\x08\xfe\x18\x59\x2c\x09\x18\xa6\xde\xf9\xa1\xe0\ \xea\x99\xdd\x92\xd1\xd3\x10\x05\x91\xc9\xf8\x85\x3f\xb0\xc0\x39\ \xec\x50\xfd\xc1\xdd\x4f\x45\x99\x2c\x68\x01\xa8\x75\x92\xce\x2d\ \xd1\x7f\xf4\xa0\xbc\x05\x5f\x01\x06\x21\xf1\xe9\x1b\x19\x29\x9c\ \x30\x09\x93\x3e\xe0\x46\x18\x40\xe0\xd2\x45\xde\x2b\x28\x9c\xc2\ \x5d\x0d\x89\x34\xd4\x48\x6c\x46\x48\x3c\xdc\x74\xa5\x83\xd6\x8d\ \x1c\x18\x82\xdf\x7a\xfd\x58\x18\x96\x1c\xb7\x99\x5d\x98\xb0\xde\ \x92\xbd\x93\x3e\x2d\x19\x62\x10\x51\x5f\x24\xcb\xcb\x39\x99\x0d\ \xe2\x83\x16\x94\x16\x2c\x9e\x56\x2b\xc4\xcc\xff\xf9\x17\x1f\x2a\ \xd4\x00\xfe\x21\x20\x1a\x20\x5b\xa9\x84\xac\x6d\x98\x31\xbd\x48\ \xc2\x3d\x5e\x23\x06\xa3\xd4\x21\x1c\xa5\xcc\x52\xa3\x9c\x44\xfe\ \xd4\x60\x9f\x1b\x70\xd0\x0b\xc8\x81\xd6\x6d\xcc\xc4\x44\x9a\x08\ \x7a\x62\xc9\x55\xdc\xc4\x84\xa2\x19\xb6\x05\xdf\x94\xe2\x39\xe8\ \x0a\xa5\x21\x19\xdb\x29\x0e\x53\xcd\x9e\xdc\xd5\x9e\x94\xb5\x63\ \xce\xed\x1e\x80\x0c\x48\x2e\xbe\xd2\x11\xfc\x1d\x10\xf6\x62\xab\ \x19\x00\x30\xca\x9a\x02\x76\x18\x48\xf0\xc2\x4a\xe4\x1a\x13\xe2\ \x1a\x04\xa6\x91\xbb\x60\xd1\x6b\x90\x08\x49\xcc\x81\x0b\xc4\x86\ \x67\xf4\x86\x13\x60\x61\x52\x6c\x4c\x96\x00\x99\x36\x5e\xe4\x17\ \x9a\xe1\x7a\x6c\x24\x7b\x54\x9a\x26\x2d\x99\xb0\x3c\x55\x5b\x1c\ \xc6\x5f\xec\x87\x1e\x9c\x83\x10\xc8\xdc\x3a\x02\xd5\x0d\x4a\x99\ \x69\xe5\x21\x9c\xe0\x9d\xef\x79\x59\xf0\x11\x20\x3e\xde\xa4\xab\ \xb1\x40\x8a\xe8\x8b\x03\xaa\x42\x18\x30\x22\x2b\xf8\x24\x23\x86\ \xc1\x32\xce\x92\x51\x4a\xc4\x48\xb8\x46\xf5\x59\x9f\x18\x00\x0c\ \x1d\xd0\xc1\x03\x68\x21\xa4\x89\x20\x27\x72\xa2\x17\xaa\x1e\x21\ \x95\x21\x7b\xf8\xd3\x47\x8e\xe3\xcb\xe1\x10\xb9\x15\x11\x53\x9d\ \x83\x2b\xca\xdd\x3a\x42\x59\x98\xb9\xa4\x62\xfc\x47\x62\xec\x9e\ \xbc\xed\x22\x2f\xe2\x24\x20\x0e\x61\x03\x11\x23\xd4\x41\xfe\x5f\ \x23\x92\x01\x32\x2a\x57\xc3\x15\x84\x51\xb2\x4e\xa5\x40\x90\x49\ \x3c\x8d\x18\xd8\x94\x0c\x8c\x47\x07\x7e\x21\x08\xfe\x02\x63\x32\ \xe6\x08\x30\xe6\x92\xa8\x5e\xf6\x80\x23\x29\x56\xda\x3d\x81\xe5\ \x38\xae\xc7\x39\xc4\x60\xdb\x91\x65\x59\xd6\x1e\xdc\x31\x82\x27\ \x1c\xc0\x2c\xd6\xe2\x9b\xe0\x1d\x7f\x10\x98\x00\xaa\x80\x4d\xca\ \xa5\x6b\x8e\x00\x0a\x1c\x22\x30\x42\xde\x12\x32\xe2\x2b\xe8\xe5\ \x2b\x14\x41\x50\x2a\xa0\x2a\xe8\x03\x59\x61\x11\x43\x32\x24\x48\ \x18\x1e\x00\xfd\x1b\xb8\x68\x9f\x1f\xb0\x40\xb4\xf9\x58\x7a\x35\ \x66\x63\x66\x82\xc9\x99\x1d\x5a\xb0\x5e\xda\xf9\x90\x57\x86\x24\ \x92\x99\xcf\xc9\x6c\x66\x3a\x3a\xd9\x3e\xc0\xdd\x3a\x3e\xd9\x01\ \x8c\x00\x2c\x82\xda\x80\x9c\x67\x6a\xce\x63\x2b\xb4\xa6\x6b\xb6\ \xe7\x2f\xcc\x84\xf4\xb1\x82\x08\x2c\x61\x6d\x4a\xde\x4f\x32\x62\ \x4b\xe8\x83\x43\x25\x90\x7e\xce\x92\x5e\x15\xa5\xd4\x90\x44\x8b\ \x44\xe3\x74\xbd\x00\x54\x76\x9b\x27\x62\x16\x63\x42\xa7\x28\x5e\ \x1a\x7b\x58\xd2\x5a\x9c\x9b\xa6\xbd\x1c\x0b\x8c\xe4\xcb\x8d\x25\ \x59\xaa\xa3\x0d\x02\xc1\x78\x96\xa7\x16\xe8\x5e\x5b\xfe\x76\x92\ \x6a\xb2\x49\x19\xe4\xd2\x3d\xb6\x27\xf1\xa5\x40\x23\x46\x9e\x08\ \xb4\x68\x6d\xe2\x65\x11\x14\x41\x18\x38\x94\x5f\x6a\x02\x19\x90\ \x81\xc2\x25\x1c\x5f\x86\x51\x7f\x1e\xd7\x70\x5c\xa1\xd6\x65\xd2\ \xea\x95\x9c\xf8\x95\xde\xa3\x45\x12\x65\xce\xd3\x79\x11\x0e\x5b\ \x30\x15\x66\xe2\x02\xe1\x8c\x25\x3d\xa9\x24\x78\x82\xe6\x01\x90\ \xa6\xfe\x4d\x99\x69\xe9\x9e\x88\xaa\x26\x6b\x9e\x28\x8a\x1a\xe0\ \x08\x08\xa4\x08\xb0\x81\x22\x42\x5f\x11\x40\x1f\x19\xf8\xe5\xd5\ \x2c\x40\x18\xc0\x03\xf4\xc1\xe9\x6d\x2a\xe0\x8a\x30\xdc\x0e\x24\ \x9d\x8a\x80\xca\x0b\xa4\x83\x1c\xb0\x40\x78\xa0\x17\x55\xfe\x02\ \x23\x2c\xe8\x55\x66\xe5\xa5\x6d\xcc\x3d\xd9\x13\xdf\xfc\xd0\x39\ \xb8\x21\x86\x8e\x25\x0f\x45\xaa\xdc\xed\x83\x59\xda\x20\x23\x1c\ \x80\x1d\xbe\xe3\x4b\x4a\x55\xbb\x11\xd8\x7a\x82\x69\x98\x06\xa1\ \x36\x08\x64\xae\xe9\xe5\x7d\xa6\x69\x18\x0c\x4d\x87\x35\x94\x8d\ \xc2\x03\x2b\xc8\x69\x18\xfc\x64\x18\x30\x1c\xad\xd2\xea\xd4\xec\ \x80\xe3\x11\xe5\x4d\xa4\x03\x0b\x40\x65\xb0\x60\xa3\x08\x3a\x67\ \xc8\xb9\x17\xe2\x04\x91\x26\x29\x6a\x94\x2a\x4e\xfe\x85\x3e\x2a\ \xba\x45\x6a\x93\x7d\x67\xa5\xbe\x22\xa6\xba\xe4\x7e\x71\x6a\x1e\ \x5e\x4e\x9a\x98\x68\xa8\x6e\xab\x45\x8c\xe9\xf4\x5d\xca\x7d\x36\ \xe2\x02\xe8\x27\xb9\xf2\x82\xd0\xbc\xe9\x2b\xc0\x03\x19\x68\x82\ \x3e\xe8\x95\x7e\xb2\x2b\xc3\xb1\x84\x7e\x82\x82\x4a\xc4\xaa\xa4\ \x64\x40\x06\xf8\x44\xaf\x8e\x63\x3b\xa1\x9c\x2c\x28\x68\xa1\xbe\ \xc5\xe1\x8c\xe2\x57\xb6\x45\x85\x5e\xa8\x7d\xa9\x24\x95\xd6\x5c\ \xcd\xc9\x1d\x94\x9d\x15\xa6\xd2\x61\x6a\x6d\x69\x6a\xed\xde\xcd\ \xf8\xc3\x2f\x80\x2a\xb7\x06\xe1\x08\x84\xc3\x4f\xa6\x48\xb8\x86\ \xc1\xb8\x1e\x62\xaa\x2e\x00\xc3\xdd\x68\xaa\x32\x5c\x02\x99\x6b\ \xbc\xd6\xaa\x51\x8e\x91\x2a\x90\x81\x0e\xe4\x04\x34\x55\x28\x96\ \x40\x92\x36\x8a\xe2\x7b\x81\xe3\x57\xfe\xd0\x61\x60\xa8\xa4\x4a\ \x41\x59\xba\x22\xdc\xed\x03\xcd\x11\xad\xfd\x69\x01\xb5\xe2\xde\ \xa6\xf6\x9f\xcc\x7c\xaa\xc6\x6e\x6c\x10\xfe\x42\x3a\xc4\x2a\xe4\ \xa5\xa9\xba\xe2\x28\x3c\xb8\x68\x87\x91\xab\x3e\xe8\xa7\x44\x7c\ \x6d\xcb\xae\x84\xca\x4a\x84\x9b\xce\xaa\x8d\xa6\xc8\xa2\x80\x40\ \xaf\xb2\xc0\xc9\x4d\x25\xca\x45\x52\xcb\x1d\xfe\x6a\x5b\x44\xe9\ \x39\x28\x6b\x94\xc6\x9c\xd0\xf6\x41\xfd\x7d\x27\xdc\x5d\x29\x69\ \x3e\x59\x69\x3d\xec\xa5\x92\xe7\x1d\xe2\xde\xed\xe5\x5f\x2d\xfa\ \x03\x17\x45\xad\xd4\x02\x62\x0a\x04\xa3\x7c\xb2\x42\x8c\xc2\x43\ \x11\xb8\xe8\x2b\x5c\x11\x9b\xf2\xa7\xd8\xc6\x2c\xd9\x7e\xee\x21\ \xde\xe8\xba\x6a\x42\xca\x82\xc8\x4e\xf0\x04\x1d\xa8\x80\x25\x45\ \x1a\xf2\x78\xe4\x5b\x88\x09\x92\x69\x92\x53\xd9\xed\xfc\x29\x2c\ \x3e\xc4\xe1\x95\xe2\x03\xe0\x82\x27\xd1\xfe\xc2\x78\x1e\x80\x27\ \x30\x02\x3e\xa4\x56\xfe\xdd\x5e\x96\xb2\xe7\xe3\x26\xef\x5a\xe5\ \xa6\x7c\xb6\xa8\x8b\x56\xee\xaa\x5e\x0d\xb9\x86\x6d\xda\x7e\x6c\ \x3f\xc6\xac\x5e\xda\x28\x8e\xae\x6b\xac\x92\xc1\xd5\xb8\x46\x06\ \x38\x25\x54\x7a\x9a\x50\x45\xe7\xeb\x9d\xaf\x3f\x61\x92\x94\x26\ \x2c\xa5\xd6\xdf\x24\xc8\x5d\xee\x7e\x27\x69\xde\xee\xfd\xc1\x9d\ \x16\x90\xa6\xf0\x4a\x55\xfe\x31\x42\x3b\x9a\xa8\xe3\x2a\x6f\x2f\ \x8e\x6a\x6e\x76\x41\x17\x2c\x03\xe8\xcc\xaa\x3e\x48\x8d\x8d\xc2\ \xab\xd8\xda\xe8\xf4\x29\x9c\xe8\xa6\x6a\xac\x4e\xb0\xaa\x86\x6d\ \xac\xe6\x6b\x71\xb0\x00\x26\x0a\x8e\xe0\xfe\xdc\x2c\x56\x6e\xe5\ \x19\xa2\x40\x93\xc5\x9c\xcc\xf9\xad\xfd\xc9\x6f\xd1\xc2\x5d\xfd\ \x45\x2b\x94\x11\xee\xe1\xb6\x30\x94\xc5\x25\x00\x27\xef\x08\xc4\ \xaa\x08\x74\x40\x17\x80\x8e\xf7\x8e\x06\x2f\x2c\x40\xf6\x32\x5c\ \xe7\xe6\x1a\x85\xa5\xaa\x5e\x6a\xed\xfe\xc0\x43\xe9\x8a\x06\x19\ \xe4\x5a\x1a\xf4\xcb\x15\x52\x63\xb2\xf5\xd0\x9f\x72\x96\x7b\x41\ \x15\x95\xdc\x97\x93\xb9\x2f\xfd\xea\x6e\xee\x72\x71\xfc\xa6\x30\ \x0b\x97\x67\x94\xe5\x5c\xf1\x9e\xd5\xff\xce\xf0\x4d\x8e\xc0\x01\ \xb0\x42\x17\x74\x40\x07\x14\x01\xf5\xb1\xea\x8d\x2a\xe0\x21\xc6\ \x6b\x30\x82\x6c\x23\xfe\x24\x9c\xc6\xa8\x8c\xb2\xab\x68\xb8\x80\ \x8d\x12\xa5\x6c\x34\x65\x06\xa4\x83\x14\xa4\xc0\x0b\x80\x4f\xc8\ \xa8\x60\x29\x62\x09\x95\xdc\x2e\xdf\x6e\x71\x16\x93\x26\xe0\x56\ \xf2\xfc\xda\xe0\x4a\x5a\xea\x18\x3f\x6c\xe3\xa2\xb1\x27\x5b\x84\ \x27\xb4\xb1\x08\xbc\x82\x26\x34\x54\x1d\xaf\xab\x6f\x5e\x8d\x03\ \x4f\x1f\xe9\x36\x03\xd6\xf2\x71\x8c\xce\x6a\x42\x02\xa4\xad\x2a\ \x84\x6f\x64\x40\x14\x68\x43\x0a\x48\x41\x22\x2b\x32\x45\x0a\x95\ \x25\x09\x15\xcd\xb9\xaf\xdc\x11\x33\xfe\xfc\x5a\x32\x32\x77\xb1\ \x0d\xda\x61\xa6\x26\x6e\x27\x7f\x32\x34\xff\x03\x26\x88\x40\x18\ \x24\xb0\x0b\x34\x30\x10\xf7\x27\x8e\x86\xab\xa9\xd2\xe7\x2b\xa3\ \x2a\xbb\x5e\x8d\x50\x0e\x4d\x02\x13\x44\x4a\x8c\x58\x06\xe8\x80\ \x36\xe8\x00\x2f\x6f\xf0\x03\x70\x70\x1f\xc0\xf3\x7d\xf1\x19\x3e\ \xa4\x40\x3d\x1f\x80\xfb\x22\xb3\x17\xcf\x2f\x25\xdb\x20\xfe\xd6\ \x1e\x69\x21\x6f\x34\x7f\x72\x0d\x07\xa6\xb9\x8a\xed\x02\x98\x2c\ \xe9\x4e\xb0\xd5\xc6\x6a\x33\x60\xae\x9a\x8e\xae\x50\x96\x2a\xd8\ \xfe\x23\x88\x38\x41\x3a\xa8\xb3\x2e\x6f\x70\x22\x27\x5b\x90\x6a\ \x9d\xe0\xf0\x6d\x32\xeb\xae\x22\x00\xae\x3d\x57\xf2\x2b\xfe\xad\ \x86\xcc\x6f\x2c\x12\xe0\x19\x0f\xb4\x6b\x22\x10\x41\xec\xa7\xd0\ \xa4\x2b\x9c\xc2\xa9\xa9\xca\xe9\x2b\xb4\xa8\x10\x8b\xee\xba\x42\ \x1d\x05\x87\xb3\x0b\xb8\x4b\x67\xc8\x46\x1a\x68\xb4\x36\xa4\x83\ \x52\xb3\x40\x22\xf3\xf2\x3b\x4b\x01\xae\x4c\xc2\x3e\x1c\x00\x26\ \xa4\x00\x26\x5c\xf5\x01\x84\x43\x0a\x50\xb2\x3d\x4f\xf5\xee\x9a\ \x70\x4a\x77\xe8\x33\xc3\x34\x4c\x33\xc2\xca\x92\x15\xe9\xba\xaa\ \x7d\x4e\x70\x8c\xa6\xab\x6e\xce\xfe\x1a\x31\xd2\xaa\x4f\x2e\xdc\ \x7f\xb6\xab\xad\x26\x50\xad\xa5\x81\x52\x67\xf4\x2e\xf3\xea\x2e\ \xf3\xf2\x21\xef\x83\x36\x50\xf5\x55\x17\xf6\x95\x9e\xb4\xfc\x1e\ \xb6\x32\x83\xa6\x94\xd9\x5f\xe3\xbe\x34\x59\xb7\xe7\x08\x7c\x08\ \x03\x33\x5c\xae\xa5\xe9\x36\xab\x35\xe5\xe6\xa6\x8c\x2a\x1f\xec\ \x40\x5d\x3f\xd6\xea\xd9\xd2\xb1\x5e\xbd\x4b\x88\xe8\xf5\x3a\x4b\ \x81\x52\xef\x43\x0a\xe8\xc0\x9e\xbe\x80\x2e\x6b\x43\x61\x6b\x00\ \x55\x1f\xc0\x56\xef\xc3\x54\xef\x03\x26\x58\x32\xb4\x26\x6d\x4b\ \x0a\x5d\x64\x07\xf7\x3f\xfc\x42\xcc\x5a\x6d\xba\x52\x2e\x12\xbf\ \xe9\xe5\x3a\xef\x7c\xda\x27\x50\x77\x58\x5c\xfb\xa4\xac\x32\x5c\ \xf7\x36\x90\xca\x56\x0a\x46\x6b\x83\x76\xef\x75\x21\xe7\x6b\x89\ \x3d\x41\x46\x4b\x01\x6e\xb3\x36\x6b\x63\x02\x6e\x4f\x02\xe0\xee\ \x36\xe0\xca\x9c\x26\x8f\xb5\x70\x07\xb7\x8a\xea\x66\x8b\xf2\x71\ \xac\x6e\xed\x7c\x2f\xe1\x7c\xaf\x28\xe4\x95\xb2\x2a\x4b\x77\xba\ \x8a\xae\xc9\xba\x4b\xbb\xae\xec\x0e\xe8\x00\x2b\x54\x03\x2b\xa4\ \x43\xbe\x86\xc8\xbf\xe8\x44\x49\x39\x41\x21\x03\xb6\x60\x8f\xf7\ \x0b\xe0\xf6\x01\xe0\x36\x3e\xfe\xb0\x76\x1f\x48\x41\xcc\x35\xb6\ \x7b\xbf\x77\x70\x8f\xa9\x6e\x56\x2e\x11\x87\xc1\x72\x17\x81\xe5\ \xba\xb5\xbd\xde\x27\x19\xf4\xe7\x44\x77\x6f\xcc\x7e\xed\xcb\xaa\ \xac\xd8\xb2\xe8\x3a\x37\x71\x6c\x40\xd7\x0e\x80\xcb\x0c\x80\xb7\ \x0e\x18\xf2\x5f\xbf\x80\x3c\xec\xd0\x3e\xbc\xaf\xd0\x0a\x6d\x4a\ \x92\xb0\x4b\x43\x36\x88\x6f\xab\x36\xd8\x67\x8b\x5f\x0d\x19\xd8\ \xb7\x08\xa0\x78\x9a\x36\x62\xc2\x95\x6c\x29\xeb\x83\x89\x47\x5f\ \x8b\xd7\x31\xb9\xa6\x6d\x3f\x6a\xad\x6e\xb2\x82\x0e\x68\xc2\x1c\ \x00\x8d\xd4\x34\x31\x6f\xcc\xc0\xa5\x14\xf2\x5e\xb3\x80\x9c\xb3\ \x80\x78\x7b\xb4\xa3\x32\x95\x3f\x3c\x99\x0c\x37\x79\x88\xe7\xda\ \x15\x01\xe4\x94\x8b\x40\x0e\xe7\x77\x5b\xbf\xa9\x96\x53\x77\x6e\ \x22\x71\x8b\x9f\x2c\xbb\xea\x83\x0f\x6f\x2f\x99\xeb\x74\x4b\x3c\ \x8a\x42\x10\xa3\x32\x49\x4a\x1a\x74\x37\x0b\x5c\x21\x54\xbf\x80\ \x10\xa0\x24\xa8\x0b\x81\x0a\x98\x31\x9f\x97\xba\xab\x4d\x02\xda\ \x4e\xf9\xe5\x12\x70\x0e\xf3\xf1\x7c\xab\x6b\x89\xe7\x71\xf4\xd1\ \xaa\x0f\x6b\x82\xc9\x6a\x2d\x43\xef\x0f\xaa\x12\xb1\x4a\xe8\x15\ \x00\xc9\x8b\x73\x29\x1f\xfe\xa8\x5c\xa1\x06\xa7\x80\x06\xb4\x73\ \xa3\xbe\x00\x59\x6a\xab\xa9\x9b\xfa\x2f\xe8\xf1\x72\x0f\xba\xf3\ \xc2\xb2\xba\x9a\xac\xfe\xa0\x38\x43\xc3\xeb\xba\xe2\xa8\x4d\x63\ \x7b\x66\xff\xf7\xd0\x6c\x73\xf6\xfa\xa6\x5f\x5e\xf3\x75\x8b\xc8\ \x06\x35\x65\x3a\xa4\x00\xbb\xb3\x36\x87\xdb\x5b\xb3\xc7\x7b\x45\ \x68\xc3\x72\xcf\xf7\xb4\xf3\x31\x12\x8f\xab\xad\xbf\xa9\xe4\x6d\ \xfb\xa2\xfb\xbb\xe5\xd2\x37\xca\xee\x4f\x5e\xfa\xf4\x8d\x66\x33\ \x8d\x5e\xf3\xbb\xbc\xc6\xe5\x3d\x93\x06\x27\xf5\x21\x2b\xc2\x9e\ \xcb\x3b\x88\x8f\x80\xf3\xee\xf1\xe5\x66\xbc\xba\x36\xba\x9b\xa6\ \x6b\xba\x76\x58\xad\x6a\xef\x12\xdf\x74\xc1\x2b\x77\xe5\x0e\x4d\ \x42\x27\x74\x03\x7f\xad\xd1\x40\x0d\x41\xbc\x04\x9b\x70\x50\xbe\ \xee\xd6\x87\x53\xbc\xa9\xa7\x02\xb6\x07\xfc\xb4\x47\xb9\x1a\x38\ \xb0\xe5\xb2\x42\x94\x7f\xad\x5d\x7f\x3b\x11\x6b\x6d\x95\x57\xf9\ \x6d\xa6\x3c\xb9\x08\xbd\xd0\x9b\x2c\xd8\x42\x10\x2f\x3c\xa4\x34\ \x1a\xc0\xc4\xdb\x3c\x9f\x8f\x80\x95\x37\xef\x7c\xcf\xaa\x5f\x3a\ \xfa\xc8\x63\xb6\x50\x07\xf2\x9b\x2a\xfa\x8d\x5a\xee\xb4\x8b\xac\ \xca\x07\x0a\x69\x38\xfe\x7a\xca\xef\x0f\x8e\x36\xfa\xa6\xf4\xd5\ \x0c\x38\x41\x38\x88\x99\xd5\x5b\xbd\x1a\xc7\x28\x73\xa3\x38\x7f\ \xb3\xec\x21\xea\xcf\xab\xa6\xaa\x6f\x92\x6e\xba\x2a\x77\x72\x53\ \xf9\x01\x5b\x3b\xbb\x2e\x3d\xdb\xfb\xf0\x11\xbf\xe9\xba\x1a\x9e\ \x43\xb0\x40\xc6\x32\xf9\xdd\x7b\xf2\x2f\x50\xae\x7c\xc6\xf2\xaa\ \x8a\xed\xd7\xfa\x30\x67\x87\x4e\xab\x56\x6e\xc0\xbb\x7a\xab\x87\ \x4e\x42\xdf\x68\xff\xf4\x8f\xad\x03\xb8\xdb\xa3\xbe\x42\xfb\x66\ \x3b\xe0\xc1\x97\x5e\xbe\xed\x5b\xc4\xa8\x26\xb7\xe0\x23\xb4\xbf\ \x4f\xf9\xfe\x4c\xb0\x7d\x5f\x79\xbd\x0b\x7a\x8b\x6e\xbc\xe8\xf6\ \xa7\xa3\x1f\x71\xd6\xa6\x7c\x42\x1f\x84\xad\xf6\x81\x40\xdf\xfe\ \xdd\x8f\xc0\x66\x1b\xba\xaa\x8a\xae\xc8\xfb\xbe\xce\xcf\xb7\x95\ \x0b\xba\xb4\x2b\xba\xad\x87\xb3\xd7\x1f\xb1\x0f\x33\xbf\xe8\x5c\ \xf3\x21\xea\xc0\x78\x5a\xbe\xf4\x47\xf3\x34\x73\x7f\xd1\xff\x70\ \xb8\x9b\x38\xf1\xd7\x7f\xb4\x9f\xfd\xc9\x32\xbd\xe3\xbb\x3d\xf3\ \x1f\x44\xf3\x23\x04\x40\x68\x92\xf2\x6b\xc4\x3f\x83\x07\x11\x26\ \x54\xb8\x90\x61\x43\x87\x0f\x21\x46\x94\x38\x91\x62\x45\x8b\x0a\ \x47\x88\xd0\x28\xfe\xa2\xc8\x2b\x32\x64\x54\x69\xd2\xb4\x40\xd3\ \xc7\x30\x45\x44\x74\x51\xd9\x65\xe3\xca\x94\x22\xe0\x91\xd1\xa4\ \x6f\xe4\xcc\x91\x61\xe0\xe5\x84\xb7\x80\xe7\x02\x35\x0b\xf4\xf5\ \xd4\x27\x85\x51\xc1\x8b\x47\x91\x26\x55\xba\x94\xe9\xd2\x11\x07\ \xe0\xa1\x8c\x29\x93\x2a\x99\x30\xaf\xe0\x69\x64\xe9\x32\xa5\x4a\ \x8d\x1d\x81\xf2\xaa\xc9\x93\x8c\xce\x9c\x64\x7a\xa6\xfd\xa9\xe3\ \xc0\x08\xa3\x4d\xe1\xc6\x95\x3b\x97\x2e\xc3\x5f\xaf\xf0\x86\x2c\ \x19\x86\x6f\xd4\x8d\x1c\x8b\xa0\x7c\xd9\x15\x26\x19\x7d\xbc\x68\ \x5a\xe5\x8b\xb3\xec\x47\xb4\x69\x1d\xeb\xc0\xf7\xb6\x6e\x65\xcb\ \x97\x31\x43\xd4\xc6\x4a\xaf\x55\x9d\xac\xfe\x16\xe1\x8b\xd2\xeb\ \x56\x98\x36\xc9\x60\x2d\x72\xf6\xf1\x82\x8f\xae\xc9\xc2\xd3\xe6\ \xc9\x6d\x66\xdb\xb7\x71\xd7\x1d\xc1\xf7\xe3\xab\x22\xac\x02\x73\ \xfc\xfa\xea\x24\x61\xad\x2f\x89\xe3\x44\xb9\x1a\xad\x63\xe7\x64\ \x59\xd1\xa6\x9c\x9b\x7a\x75\xeb\x12\x47\x48\xb9\xaa\x3a\xf8\xf2\ \xd5\xa4\xbd\xfe\x0d\xed\x7d\xaa\xe3\x9e\x26\xb5\x4d\x9e\x7e\x9d\ \x7d\x7b\xf7\x23\x52\x04\x8e\x1a\x5c\x78\x4b\x96\x1c\x81\x8b\xf6\ \x2b\x58\xbe\xfe\x73\xff\xb2\xdd\x5a\xcf\xbd\x01\x09\xcc\x0d\x13\ \x8e\xe0\xf1\x4d\x3c\xe3\xe0\xb9\xca\xc1\x04\xe9\x0b\x2c\x8c\xb4\ \xce\x2b\xab\x2d\x01\x0b\xcc\x50\x43\xcb\xaa\x01\x4c\xab\xd2\xbe\ \x9a\xd0\x31\x08\x8f\x5b\xcd\x23\xa0\x60\x73\x4d\x87\x7d\x6a\xdb\ \xd0\xc5\x17\x2b\x1b\x21\x30\xf0\x4c\x43\xd0\x35\xab\x14\x34\xcd\ \x44\x8f\x4a\x32\xef\x42\x18\x81\x0c\x12\xae\x11\x80\xeb\x6a\xa5\ \xfb\xca\x2b\xce\x48\x8e\x92\x43\x4b\x13\xbe\x5e\xf9\x51\xc8\x29\ \xa9\x3c\x2a\x23\x23\xc3\x6b\x10\x2d\xe5\x06\x2b\xec\x35\x7d\x68\ \x7a\x45\x9b\x16\xab\x2c\xd3\x4c\x88\x46\xc0\xc4\xb4\xfb\x56\x0b\ \xc3\xa4\xac\xb4\x2a\xc2\x3f\xa0\x5c\x38\xa0\xa8\x33\xf1\xcc\x93\ \x21\x35\xc3\x43\x30\x41\x9d\x42\xdb\xc9\xb5\x9c\xc2\x48\x81\x4c\ \x3d\x11\x45\x74\x0a\x1d\xe5\x9b\xb1\xcb\x09\x79\xca\xc9\x50\x0c\ \x13\xad\xb4\xca\x2b\x01\x73\xd4\xb8\x36\x1b\x93\xd2\xd2\x4f\xf1\ \xc4\x94\xbe\xe3\x10\xe4\x0d\x1e\x16\x29\x05\x55\xd5\x20\x33\x12\ \x8c\x54\xe6\xca\x02\x30\xd5\x55\x69\x7d\x31\xcd\x97\xee\xe3\xc8\ \xcd\x9c\x2e\x9c\xb5\xd6\x5f\x35\xf4\xe4\xc8\x10\x2d\x3c\x14\xd8\ \x63\x85\x24\xe4\x6a\x35\x59\x91\x6d\x96\xca\x11\xb2\xec\xd5\xd9\ \x69\x59\xbd\x0f\x13\x63\xa9\xcd\x76\xc3\x11\x52\xc1\x56\xdb\x6f\ \x0b\x0c\x10\x5c\x3c\x03\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\ \x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd7\x88\x8d\x94\ \x49\x35\xff\xff\xff\xff\xff\xff\xff\xff\xff\x65\xc8\xf7\xff\xff\ \xff\xff\xff\xff\xde\x93\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x0f\x28\x1b\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcf\x4c\x97\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6f\x0b\xa1\xff\xff\ \xff\xff\xff\xff\x13\x28\xa7\xd8\xc9\xe6\xff\xff\xff\xff\xff\xff\ \x0f\x27\x69\xcf\x66\x46\xd5\x10\x0f\xf7\x88\xb8\xff\xff\xff\x96\ \x62\x36\xf7\xa8\xb7\xff\xff\xff\xff\xff\xff\x12\x29\xdf\x50\x68\ \x5f\xff\xff\xff\x9a\xf2\xfc\x4d\x68\xf8\x28\x46\xea\xff\xff\xff\ \xda\xe8\xf8\xfa\xc8\xe8\xff\xff\xff\x3f\xaa\xdf\xff\xff\xff\xed\ \x68\xa7\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7b\x87\xae\xf1\x70\ \x44\xff\xff\xff\xff\xff\xff\x98\xc8\xfb\xff\xff\xff\xf6\xb2\xf1\ \xd7\x88\xf0\xff\xff\xff\xb9\x88\x86\xf9\xe8\xf0\xff\xff\xff\xb4\ \x68\xa9\xd3\x29\x25\xff\xff\xff\x6b\x69\x22\xff\xff\xff\xff\xff\ \xff\xb7\xb3\xf3\x99\x31\x8b\xff\xff\xff\xff\xff\xff\x4a\x49\xe3\ \xff\xff\xff\xb7\xc8\xf3\xff\xff\xff\x38\x56\xf6\x0a\x18\x61\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x73\x88\xf7\xff\xff\xff\xfb\xcf\xab\x57\xa8\xe5\ \x94\x27\x2c\x95\x94\xf4\x97\xb1\xf8\x12\x38\x66\x5b\xb8\xeb\xd6\ \xd9\xee\xff\xff\xff\x7a\xe8\xfa\xff\xff\xff\xfb\xfd\xfa\xff\xff\ \xff\xff\xff\xff\x07\x15\xdc\xba\x8e\xf3\xdb\xaf\xf8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xd8\xed\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xb3\x69\xed\xfa\xb8\xbd\x37\x4b\xed\xda\x98\ \xf5\xf5\x99\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xce\x2f\x6d\ \x4c\x28\x62\xb1\x0e\x12\xc0\xe2\x90\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf4\x2f\x2e\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x77\x45\x1f\xff\xff\xff\xff\xff\xff\x72\x58\xec\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x94\x68\xfa\xff\xff\xff\xff\xff\xff\xb8\xf3\xfc\xaf\x2a\ \x5b\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xa7\x86\xff\xff\xff\ \xff\xff\xff\x78\xb4\xf8\x96\x37\xd1\xff\xff\xff\x95\x56\xf4\x35\ \x4d\x18\x7d\xcc\xfa\xff\xff\xff\xfa\xeb\xb9\xa8\x1d\x5e\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf8\x91\x8d\x9e\xb6\x7a\xff\xff\xff\ \x84\xbe\x84\xf2\x79\xb4\xd7\xd7\xa7\x99\xd8\xfb\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xb8\xd8\xfa\xd3\x3a\x7b\xff\xff\xff\xff\xff\ \xff\xde\x97\x94\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x4e\x58\x17\x56\x76\x28\xff\xff\xff\x18\x35\xa3\x12\ \x78\xa7\xff\xff\xff\x19\x36\xe0\xff\xff\xff\xff\xff\xff\x58\x75\ \xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x47\x5a\xf5\x69\x7a\xf5\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x94\x3b\x37\xff\xff\xff\xff\xff\ \xff\xb4\x57\xb0\xff\xff\xff\xff\xff\xff\x6f\x79\x5a\xff\xff\xff\ \xff\xff\xff\x66\x57\x15\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xb8\x8c\x7a\x19\ \xa8\x7f\xfb\xfc\x96\x98\x52\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd8\xfb\xfc\x7d\x97\xb4\xff\xff\xff\xff\xff\xff\x7d\ \x97\xf9\xaf\x78\xf8\xff\xff\xff\xff\xff\xff\x92\x78\xf5\xff\xff\ \xff\xff\xff\xff\x55\x9a\xe3\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\ \x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x05\ \x92\x88\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\x11\x63\xa2\x57\ \x48\x3a\x8a\x1c\x49\xb2\xa4\xc9\x93\x1b\x49\x24\xaa\xb3\x46\x0f\ \x89\x89\x28\x63\xca\x9c\x49\xb3\x26\x43\x12\x28\xd6\xe8\x5c\xf3\ \x0a\xa6\xcd\x9f\x40\x83\x0a\xb5\xa8\x67\xa7\xce\x3a\xba\x86\x2a\ \x5d\xca\x34\x28\x89\x59\x46\xa3\x26\xf2\xd9\xb4\xaa\xd5\xab\x18\ \x79\x44\x8d\x8a\x82\x2a\xd6\xaf\x60\xc3\x0e\x5c\x59\x64\xab\xd1\ \x22\x06\xbc\x8a\x5d\xcb\x36\x68\x22\x1e\x65\xcd\x6e\x45\xa2\xb6\ \xad\xdd\xbb\x25\x49\x14\x95\x6b\xb6\x2b\xde\xbf\x80\x39\xaa\x64\ \xc9\x57\xae\xdf\xc0\x88\x13\x3f\x7c\x55\xb8\xf1\x88\xba\x8a\x23\ \x23\x7e\xc9\xb8\x71\xe1\x3a\x2f\x25\x6b\x56\x0c\xd7\xb2\xe5\x19\ \x53\x37\x8b\xbe\x9b\xa8\x4f\x5c\xcf\x8d\xd3\x8e\x5e\x2d\x36\xd1\ \x69\xd4\x8d\x8b\x84\x66\x4d\xbb\x29\x89\x57\x33\x60\xc3\x96\x0d\ \xb9\xb6\x6f\x99\x38\x5f\xeb\xb6\x4c\xa4\xf7\xef\xe3\x24\x79\xe4\ \x1c\x0e\xfb\xcc\xb0\x41\xc6\x91\x4b\xcf\xd8\x99\x39\x6c\x32\x56\ \xac\x40\x9f\xce\x9d\xa3\x6b\xeb\xba\x65\xfe\xb0\xc8\x2e\x21\x7a\ \xf7\xf3\x0a\xbf\x83\x87\xfd\x41\x50\x76\x2b\x82\xcc\xa3\x9f\x2f\ \x51\x8f\xf0\xf5\x85\x8b\xec\x90\xf0\xde\x8a\x18\xf9\xf4\x71\x47\ \x02\x0f\x7b\xe1\x87\xda\x19\x65\xf4\x97\xdd\x76\x01\x36\x38\xd0\ \x2b\xf7\x19\x58\x18\x2c\xfc\x29\x18\x9f\x83\x0d\x7e\x24\xa1\x6e\ \x45\x8c\x67\x45\x85\xef\x95\x87\xe1\x7c\xd5\x6d\x88\x5a\x13\x15\ \x4a\xa0\x62\x7f\x0c\x8e\x28\x9d\x4a\x11\x9a\x28\x97\x0c\xe0\x7c\ \x28\x81\x08\x65\xdc\x18\x62\x66\x2e\x1e\xa7\x9e\x8c\x9e\x15\xf1\ \xc1\x29\x12\x9c\x92\x63\x19\x46\x26\x48\x1e\x80\x3d\x22\xd6\x07\ \x18\x40\xee\x56\xa3\x04\x2c\xb0\x50\xc6\x31\x2c\x1c\xb3\x62\x76\ \x17\x36\xb9\x1a\x4e\x51\x86\xc7\x82\x04\x65\x54\x69\xa5\x91\x20\ \x7e\xd8\xa2\x97\x92\x29\x07\x5e\x59\x45\xc4\xb9\x46\x8c\x8d\x9d\ \x31\x26\x0b\xe0\x58\x59\x46\x8e\x0a\xaa\xc9\xa6\x64\x03\xc6\x25\ \x43\x59\xf3\xc8\x39\xe7\x1a\x32\x9c\x31\x05\x19\x63\x4c\xe1\x68\ \x2e\x53\xec\x20\xa9\xa4\x44\x8c\xd1\xcb\x07\x75\xd0\xa9\x53\x59\ \x67\xec\x70\x8a\x08\x49\xaa\xb8\xa5\x85\x4c\xfe\x89\x55\x22\x37\ \x14\x71\x06\x19\xf4\xb4\x2a\xa9\x3f\xfe\x2c\xf8\xd3\xea\x3d\x55\ \x46\x51\x06\x8e\x39\xa2\xd9\xa7\x8a\x8e\xec\x40\xc4\x19\x74\x9e\ \x51\x63\x88\x69\xf6\x07\xe2\x9a\xa6\xda\x95\xc8\xa2\xf4\xec\xb0\ \xe7\x9e\xc7\x3c\x5b\x86\x31\xc6\xb0\x60\xcc\x9e\x22\xf4\xa9\x6d\ \x8a\x22\xb0\xd0\x44\x13\xb4\x08\xa7\xdf\xae\xc5\xda\x78\xca\x7b\ \xc8\x26\x1b\x56\x22\x0e\xec\xa0\xa7\xb4\x65\x5e\x3b\xad\x15\x65\ \xd8\x1a\xc5\xa7\xda\xbe\x27\x88\x04\x82\xec\xdb\x2f\x7c\x2a\xb2\ \x30\x06\x2c\x1f\x94\x25\x03\x8a\x0a\xde\x58\xac\x8a\xa7\x58\xb9\ \xa4\xba\x6c\x91\x40\xc4\x0b\xd9\xe2\x28\xc2\xc5\xd9\x65\x6b\x85\ \x08\xc6\xe0\x68\xeb\xb4\x1a\xe7\x2b\x82\x20\x23\x0b\x52\x86\xc9\ \x22\xf0\x57\xa4\x20\xa7\xec\xd0\x84\xbb\xee\xf5\xb7\xa7\xb1\x2a\ \xee\x79\x0a\x91\xd9\xfd\x07\x31\x58\x24\x58\xc0\xc2\x1e\xf9\x2a\ \x68\x0c\xc9\x17\x73\x1c\xf2\xb3\xd3\x58\x7b\xf2\xad\x26\x2f\x6c\ \x2c\x8e\x82\x8c\x29\x73\xc2\x39\x8a\x9a\x26\x8f\x3b\x57\x35\x88\ \x18\x1e\x84\xfc\x9e\xd7\x19\x53\x8b\x71\x7f\xdd\xbe\x00\xce\x0b\ \x2c\xa0\xbd\xc7\x9e\x26\x2b\xf9\x75\xbe\xf1\x7e\xed\xf6\x87\x29\ \x8f\x6a\xec\x20\x59\x6b\x1d\x74\xfe\xd1\x19\x67\x3c\xb6\x82\x22\ \xec\xc1\x42\xd2\x69\x5b\x69\xcc\x29\xd7\x82\x7d\x2b\xdc\x28\x5f\ \xbc\xb0\xdd\x56\x7f\x58\x6a\xde\x24\x91\x30\x48\xd0\x7e\xff\x1d\ \xb4\x07\x7b\x5a\x1b\x85\xd2\x20\x63\x8e\x79\x99\x8b\xd3\x4c\xee\ \x96\xe9\x52\x3e\x13\x09\xa2\xbf\x57\x7a\xbe\x1e\x78\x40\xad\xbd\ \x7a\x9a\x4c\x74\xeb\xdb\x56\x3b\x4d\xb9\xb8\x6b\x37\xb9\xea\x18\ \xbd\x14\xb3\x15\x1e\x60\x0e\xb6\xb6\x9c\xdf\xba\x67\xc7\x45\x6b\ \x8e\xbb\xc5\xdd\x56\xe1\x70\xef\xa4\x02\xbf\xfa\x06\xd4\x67\xaf\ \xbd\xe8\x21\xe3\x7a\xad\xe8\x76\x7f\x78\x8a\x36\xbf\x5b\x0f\xd1\ \x20\xc3\x6f\xaf\xfe\xfa\x5e\xe3\x4a\xfa\xdc\x20\x42\x4e\xa5\x3b\ \x07\x94\x6f\xfe\x42\x96\xaf\xaf\x3f\xfb\xc7\x67\x57\x2d\xd0\xe0\ \x63\xd8\x30\xdc\x51\x9c\xfb\x89\x64\x10\x97\xdb\x9f\x02\x17\x98\ \x9d\x67\x81\x8f\x48\x2a\x52\x02\x2c\x68\xa1\x1a\x03\x6a\x84\x75\ \x0c\xcc\xe0\xfa\x9e\x25\x2f\xde\x7d\x48\x10\xe3\x50\x91\x20\xdc\ \x31\x05\x5a\xd0\xe2\x04\xf6\xb3\xe0\x3f\x5e\xa2\xc1\x16\x6e\x4f\ \x04\xb6\xaa\xd2\x9e\x78\x27\x81\x61\x0c\x43\x45\xee\xa0\x05\x21\ \x68\x01\x8b\x13\xd0\x45\x85\xfe\x14\x21\xc1\x01\x5c\x48\x44\xed\ \x4d\x2b\x4b\xd3\x4b\xd8\x0d\x4f\x21\x41\x13\xc2\xc2\x1d\x4a\x40\ \x21\x10\x1f\x72\x9b\x26\xcc\xad\x88\x58\x34\xde\xe7\x90\xf4\x38\ \x86\xe5\x90\x16\xee\x20\x06\x91\x4e\xe1\x88\x14\xaa\xee\x36\xe3\ \xca\xa2\x1a\xb9\x77\x8a\x68\x55\x4d\x65\x36\x2c\x52\x13\xdd\xe1\ \x0e\x9c\xa9\xc9\x8c\x59\x4b\x44\x51\x64\xc0\xa7\x35\xfa\xb1\x4f\ \xee\xb3\x52\xdd\x1a\x36\x8e\x53\x8c\x03\x16\x4f\x64\x81\x18\xdf\ \x73\x8a\x13\xa4\x6e\x8a\xff\xd0\x8a\x4e\xe8\xf1\xc7\x4a\x66\xee\ \x56\x38\x92\xa1\x95\x58\x70\xb3\x61\x80\x83\x87\x4b\xc4\x99\x04\ \x94\xe0\x0e\x58\xe0\xd1\x54\x1f\x89\x4b\x1a\x2d\x49\x44\x41\x0c\ \xcd\x79\x1b\x5b\x5e\x92\xaa\x76\x8a\x1c\x52\x48\x8e\x9e\x9c\x20\ \x1d\xeb\x07\x49\x89\xac\xc4\x28\xe2\x61\x65\x0b\x47\x36\x2d\x92\ \x81\xcf\x46\xa2\xaa\x25\x18\x8b\x44\x0c\x58\xec\x50\x15\xaa\x08\ \xa3\x3b\x74\x36\x45\x30\x9d\x85\x92\xc2\x64\xa0\x2b\xad\x95\xbe\ \xd6\x29\x4c\x45\xe0\x70\xa6\x34\x9d\x09\xcd\x35\x10\xa2\x8e\xc3\ \x78\x0c\x24\x97\x63\x94\x33\x74\x33\x9b\xdb\x73\xa5\x20\xa2\xf0\ \x4e\x6f\x42\xf0\x14\xf4\xfe\x40\x24\x38\x9a\x49\x88\x7e\xfa\x93\ \x18\x12\x20\x06\x3d\xa4\x68\xc0\x01\x99\x45\x06\x3b\x80\x67\xeb\ \xea\x99\x1d\x5b\x19\x53\x7d\x0d\xcb\x11\x0b\xe8\x21\x8b\x7d\x3a\ \xd3\x9f\xb0\x90\x05\x31\x36\x0a\x0e\x59\xb0\xe0\x91\x3b\xd3\x90\ \x59\x86\xa4\x50\xa1\x31\x4f\x10\x49\x33\x86\xb6\xaa\xa5\x40\x24\ \xe5\x48\xa0\x74\x74\x87\x2c\x64\x91\xd1\x30\x6e\x74\xa3\x35\xb0\ \xd2\x38\x7e\x08\xbc\x1f\x45\x65\x95\x25\x85\xe1\xe7\x8c\x11\x85\ \xcf\xd1\xb3\x63\x82\xe8\x1a\xc7\x92\xba\x39\xaf\x3d\x54\x41\xcf\ \x22\x86\x2c\xe8\x01\x8e\x7d\xda\x54\x8c\xa7\x90\xea\x46\x91\x44\ \x8f\x33\x60\x2d\xa4\x25\xda\xca\x14\x18\xca\x4a\xce\x51\xeb\x5a\ \xd4\x72\xe5\xc5\xba\xf6\xb6\x7c\xc9\xb3\x63\xd9\xf1\x80\x2b\xb7\ \x55\xa4\x8e\xce\xf4\xae\x58\x3d\x86\x54\x6b\x40\x8c\x1a\xc8\x62\ \x1e\x6b\xe0\xc1\x29\xa7\xa3\x97\xc6\x34\xa1\x7f\xd9\xfc\x5b\xc7\ \x54\x9a\xbd\xd8\x69\x6b\xae\x7d\x33\x16\x3e\x09\x91\x8b\x8c\x6a\ \x74\x8c\x7a\x0d\x83\x2c\x6a\xb1\xa9\x22\xa8\x53\x5d\x2a\xb1\xcf\ \x07\x88\x40\x8f\x4a\x7d\xab\x09\x1f\x38\x83\xb0\x4a\xaa\xd0\x2b\ \x7e\x08\x1c\x53\x80\xfe\x45\xab\x64\x21\xca\x53\xd4\x80\x10\x80\ \x3d\xcb\x6c\x4c\xc5\x83\x0f\x8c\x16\x1c\x8e\x48\xd9\x38\xcc\xb4\ \x83\x31\x24\x94\xb5\x0b\x8c\x02\x62\xb3\x47\x25\x59\x90\x01\x89\ \x6f\xbc\x6d\x6e\xa3\xd2\x8b\xc1\xb2\x26\xb4\x70\x80\x45\x2f\x9a\ \xb5\x2f\x2b\x38\x22\x12\x3b\x38\x02\x38\xc6\xe0\x21\xe4\xea\x0f\ \x47\xfb\x9b\x61\x99\x72\x21\x8b\x1c\x45\xab\x8d\xb2\x90\x41\x61\ \x7a\xc2\xa6\x44\x1c\xc5\xb7\x1f\xe8\xc5\x94\x22\x51\xa9\xe2\xee\ \x80\xac\x00\x33\xaf\x1a\xdf\xc7\x82\x51\x80\xa3\x66\x7e\x9d\x2e\ \x5f\x90\x62\x5d\xcd\x24\x02\x14\xa7\xa9\xc3\x19\xea\x30\x5a\x41\ \x38\x02\x1c\xa5\xa5\x47\x13\xc0\x81\x58\x41\x90\xe1\x0c\x63\xf0\ \xa0\x80\xf7\x57\xbc\x8d\x35\x90\x4f\x12\xd8\xc1\x26\x14\x5c\x18\ \x30\x34\x38\x32\x7a\xcc\x14\x9c\xea\x40\x0b\xdf\xc2\x82\x52\x63\ \x18\x43\x13\xe0\x40\x8d\xa0\xed\x00\x4e\xc7\x1d\xb1\x06\x95\xaa\ \x38\x15\x0f\xc7\x25\x0e\x1a\x10\x0a\x7c\x0b\x06\x60\xc5\x89\xc2\ \xb0\xe0\xc3\x8e\x9b\x40\x04\x22\x7c\xab\xbc\x7d\xa2\xc7\x4e\x10\ \x24\x64\x22\xb2\xb5\x81\x53\x60\x71\x90\x04\x4b\x9f\x97\xf4\x61\ \x4e\x75\x00\x03\xfe\x93\xe3\x74\x86\x0f\xe8\x81\x60\x54\x6e\x16\ \x3d\x22\x81\xb9\x17\x9c\x61\x53\x64\x58\x6e\x97\xd5\x07\x43\x8d\ \xb1\x40\xbe\xd6\xa9\xc3\x6e\xbb\x03\x97\xd3\x14\x81\x16\x7a\xf8\ \x00\xb8\x9a\xec\xdb\xec\xe2\x78\x58\x7d\x12\xc4\x0e\xe8\x71\x0f\ \x40\x77\x6a\xcf\x2d\xac\x56\xb6\x8c\x01\x68\xeb\x14\x21\x24\xe7\ \xe1\x41\xa6\xd4\xcc\x12\x21\xc1\xe2\xcd\x44\xf8\x40\x8d\x61\x01\ \x07\x22\x48\xca\xb7\x74\xee\x53\x19\xa6\x20\x03\x19\x90\x61\x0a\ \x9b\x1a\x83\x6b\x31\xad\x3f\xa2\x5e\x8c\x0c\x3f\xd5\x4d\x05\xa5\ \x93\x88\x19\xb0\xa4\x0e\xbd\x20\x02\x2d\xd2\x9c\x6c\x58\x10\x01\ \x16\x0e\x98\x42\xa2\x9d\xfd\x2d\x60\x05\xb9\x3f\x5a\xd6\x89\x0c\ \x72\x51\x6b\x5b\x8f\x81\xb1\xbc\x5e\xa0\x08\x38\xf7\x03\xfc\x78\ \xf6\xc5\x60\x79\xcb\x0c\x8a\xa0\x8a\x35\xa8\x42\x06\xe1\xd2\xc9\ \x19\x9a\x90\x68\xdf\xd6\xf8\x03\xd9\x7d\x03\x2c\x28\x8c\xe5\xf7\ \xfc\x78\x27\x07\xbb\xc7\x3d\xc8\xf0\x81\x29\x44\x21\xdc\xa3\x73\ \x9b\x9e\xcb\x40\x06\x4d\x59\x06\x05\xa0\xf6\x4d\x61\xcb\xd2\xee\ \xad\xb0\x3b\x4e\x35\xa6\x85\x9a\xf3\xfb\x2d\x45\x1f\xbc\x4f\x51\ \xc8\x05\xc0\xfe\xc9\xe0\x85\x7b\xd0\x7a\x0d\x4d\x40\x78\xd0\x66\ \x16\xcb\xf7\xbc\x52\x41\x2c\xc0\x35\x7e\x0e\x73\x5d\x02\x71\xe8\ \xde\x6d\xc6\x6f\x11\xa6\xd0\xef\x28\x8c\x81\x0c\xb7\x1e\xd4\xb6\ \x55\x3b\xa8\x33\xdc\x43\xe5\xd9\xeb\x56\xd2\x94\xdb\x1f\x16\xdc\ \x19\x3f\xb3\x40\x77\x53\xa0\xc2\x21\x21\x11\xc1\x1d\x70\x40\xad\ \x8c\x3f\xf0\xf1\xec\xb0\x80\x53\x8c\xfa\x41\x2e\x04\x35\x85\x7b\ \x50\x03\xdc\x48\xef\xdd\xe7\xd0\x76\x0a\xa6\x5b\x01\xd8\xf8\x01\ \x43\x52\x46\x23\xd2\xc6\x54\xdc\x28\xb4\x20\xad\xb3\xe9\x51\xb0\ \x83\xa5\x6f\x0c\x06\x5b\xd4\xad\x0b\x95\x8b\x31\xc0\x20\xed\xfa\ \xbb\x55\xb5\x94\xb4\x03\x31\x9f\xe5\xf1\x16\x8f\xb8\x64\x7c\xba\ \x13\x76\xab\x22\x2e\x77\x3f\xcb\xb2\x15\x4d\x04\x5a\x9f\x81\x1e\ \x73\x8b\xc2\x19\xba\x2d\x83\x29\xa8\x96\x0c\x14\x43\x3c\x03\x35\ \x46\x0f\x87\x7b\xa6\x0f\x52\xff\x89\x1e\x5f\x23\xae\xcb\xeb\x24\ \xf3\x3f\x9d\xf7\x07\x12\xd5\x84\xf4\x19\x03\xe8\x77\x2e\x42\x2e\ \x48\xbe\x6b\xd5\xf3\x6b\x7d\xd4\x70\xfc\x70\xce\xad\x98\x5f\x6e\ \x4a\x42\x67\x80\xc5\x14\x14\x4d\x8f\xf2\x1a\x63\x0c\x89\xaa\xf5\ \x14\xa8\xfe\x71\x78\xd5\xe7\x8b\x05\x51\x10\x31\xe6\x24\xd0\xf0\ \x0d\x49\xfe\x2f\xaf\x80\x52\xe5\x99\x03\xa7\x33\xd4\xb8\xfa\xe0\ \x70\x17\x0b\x86\xe7\x05\xf9\x96\x9e\x0c\xcc\x58\x63\x32\xde\xe3\ \x06\x05\xf5\xdf\x0d\x8e\xb5\x3f\xff\xb2\x3e\x31\xb7\x21\xd5\x05\ \x18\xd6\x94\x1f\x70\x32\x27\xaa\xe0\x44\x3c\x84\x48\x89\x54\x25\ \x46\x82\x32\xfd\x61\x0c\x4d\x30\x05\x4d\x70\x0f\x2f\x00\x03\x25\ \x96\x41\xfd\x97\x1d\x00\x08\x03\xd3\x90\x0c\xb1\xe3\x01\xfd\xb7\ \x02\x00\x18\x3b\xc6\x60\x82\x7d\xf2\x7f\x56\xf0\x81\x98\xd3\x5d\ \xfa\xf3\x67\x12\x52\x04\x07\x78\x17\x6e\x92\x1f\xaa\xa0\x5d\x3c\ \xb4\x0e\x88\xe4\x0e\x55\x05\x0e\x4a\xa0\x48\x10\x24\x42\x11\x35\ \x37\xcc\x80\x7f\x7a\x86\x3c\x25\xd8\x84\xc9\x20\x08\x27\xe8\x01\ \x30\x10\x05\x2c\xe8\x06\xc6\x30\x85\x30\x60\x0c\x24\x48\x3c\x2b\ \x08\x80\x2b\x10\x80\xfe\x07\x82\x1d\x98\x2f\x8e\xd0\x75\xeb\x23\ \x08\x4f\x27\x21\x23\x60\x17\x03\x92\x29\xf1\xf6\x53\x0d\x48\x0b\ \xfa\xa5\x04\x74\x58\x55\x27\x20\x84\x55\x45\x0c\xc3\x50\x84\x35\ \x64\x24\x66\xc2\x72\x82\xa3\x3d\xc9\xb0\x07\xd3\x70\x85\x45\x15\ \x09\xfe\x51\x40\x54\x23\xe8\x01\xc9\x40\x54\x7b\xb0\x82\x22\xb8\ \x07\x7b\x50\x05\xd3\x30\x0d\x89\xc8\x88\x54\x88\x89\x2c\xc8\x7f\ \x30\x18\x57\x9d\x08\x83\x82\x60\x0a\xfb\x70\x02\x00\xe6\x4d\x05\ \x63\x20\xf3\x30\x0f\x1f\x10\x7b\x22\xf1\x1d\x36\xd8\x0b\xb4\xd7\ \x80\xbd\x10\x53\x75\x48\x47\xe0\x10\x53\x40\xb8\x51\x37\xd3\x49\ \x66\x62\x2d\x4a\xa3\x3d\x52\xb8\x07\x59\x18\x05\x92\x68\x0c\x94\ \xb8\x07\x45\x55\x54\x1c\x98\x0c\x89\x58\x8c\x51\xf0\x02\xd0\x48\ \x0d\xcc\x40\x0d\x2f\x80\x8c\x45\x85\x8c\xc9\xd0\x88\x26\xe8\x82\ \xdc\xf8\x82\x2f\x18\x3b\x4c\x65\x05\x1b\x10\x05\x44\xb0\x0f\xa5\ \x88\x3b\xbd\x80\x8a\x3b\x41\x73\x5f\xa1\x1e\x0d\xf8\x1a\x75\xe0\ \x6c\xb8\x18\x45\x50\x84\x8b\x40\x98\x8b\x58\xd5\x30\xbd\xb8\x8f\ \xbd\xf3\x7f\xb2\x93\x85\xc6\x20\x8c\x30\x30\x85\x55\x10\x05\x59\ \x48\x90\x8f\xc8\x8c\xc8\x58\x05\x2f\x20\x8d\x2f\xc0\x0c\x0d\xc9\ \x0c\xc4\x28\x89\xc4\x98\x8c\x97\xd8\x8d\xfe\x18\x3b\x45\x15\x8e\ \x82\x80\x09\x3b\x80\x09\xfd\x72\x8e\x41\x23\x01\x1f\x80\x1f\x0a\ \x56\x07\x9f\x75\x15\x7a\x41\x27\x3b\x78\x87\x42\x48\x4a\xf8\x08\ \xfe\x84\x79\xd8\x51\xfb\x94\x8f\xbb\x28\x81\x58\xc2\x0c\xaf\x93\ \x2f\x5f\x18\x3b\xfe\x48\x2d\x30\xf0\x88\x57\x38\x90\xc4\x18\x94\ \xd3\xf0\x88\x44\x59\x89\xcc\x00\x91\xd0\x38\x0d\xd0\x58\x05\x14\ \x39\x85\x14\x69\x90\xb1\xd3\x93\x26\xe8\x01\x2b\xd0\x88\x16\xb9\ \x7f\xe2\x18\x05\x47\x10\x09\x27\x60\x0a\x07\x20\x06\x32\x98\x3d\ \x82\x00\x8b\x73\xe2\x7a\x5b\x91\x8a\x46\x31\x0f\x32\x30\x68\x4c\ \xa1\x47\x7c\x71\x68\x3d\x54\x55\x4a\x30\x0c\x4a\x70\x8b\x74\x44\ \x0c\x7b\x79\x53\x36\xb5\x8b\x45\x72\x33\x12\x58\x26\x49\x94\x2f\ \x83\x08\x03\x2b\x60\x0c\xfd\x17\x3b\x8d\x08\x94\x57\x18\x90\x41\ \x09\x95\x55\x10\x94\x92\x58\x89\x0f\xf9\x02\x4e\xc9\x94\x98\x29\ \x89\xc8\x28\x95\x06\xb9\x02\x5f\xc8\x8c\x8d\x98\x0c\x53\x58\x54\ \x96\x98\x8c\x49\x15\x09\x6f\x30\x06\x47\xb0\x0f\x44\x20\x04\xdd\ \xe0\x04\x22\xd9\x1f\x82\x60\x00\x65\x51\x07\x28\x00\x07\x6a\xb9\ \x13\x6c\x99\x5b\xf3\xb0\x09\x2e\xb0\x8a\xac\x18\x11\x03\x92\x1b\ \x72\x61\x42\xfa\xf5\x92\x4b\x34\x0e\xd2\xd4\x9c\x7c\xa9\x55\x58\ \x95\x4c\xfa\xc8\x49\xd1\x82\x58\x00\x48\x88\x55\x60\x0c\xa1\xfe\ \x89\x95\x8c\x29\x3b\x67\x15\x94\x91\x09\x95\x93\xc8\x90\xd3\x40\ \x9e\x96\xf8\x90\x4c\x69\x89\xc8\x28\x8c\x9c\x49\x82\xa0\x69\x90\ \x59\x58\x99\x4b\xf9\x02\x06\x99\x8c\xaa\xf9\x2d\xf8\xf0\x9a\x7c\ \x40\x04\xdd\xa0\x0d\x65\x09\x3e\xda\x90\x1b\x33\x60\x00\xdd\x30\ \x02\x25\x09\x1b\x6c\xa9\x13\xbf\xe9\x02\x2e\x20\x03\x29\x39\x14\ \x6f\x71\x28\x3f\xe5\x44\x31\x25\x84\xc4\xa0\x04\xa7\x30\x0c\x1b\ \x25\x53\xcd\x19\x46\x1a\x75\x53\x7b\x58\x24\x55\xe2\x0e\xcd\x22\ \x29\x85\x99\x1d\x30\x50\x05\x94\x08\x91\x88\x79\x95\x55\xc9\x88\ \xda\x19\xa3\x59\x48\x9a\x93\xe8\x94\xd0\xd8\x94\x4e\x39\x9e\x36\ \x5a\x89\x3c\x2a\x8c\xd7\x98\x0c\x59\x99\x88\x03\x39\x89\x0f\xe9\ \x90\x3e\x1a\x09\xd4\x30\x06\xab\x79\x04\x3b\xf0\x06\x70\x00\x07\ \x6f\x10\x9b\xb3\x29\x01\x62\x80\x02\x75\x30\xa0\x9c\x20\x08\x62\ \x60\x9b\xd6\xb1\xa0\x2e\x90\x5b\x64\x36\x14\x48\x50\x4a\xb4\x20\ \x03\xb6\xc7\x6e\x0f\x38\x8b\xb7\xf8\x44\xf6\x18\x53\x33\xc5\x97\ \x1c\x4a\x47\x15\xb5\x51\x9c\x74\x8b\x3b\x50\x4a\xf4\x00\x74\xd4\ \x30\x37\x22\x70\xa3\x37\xba\x07\x24\x08\x80\x82\x8a\x95\xfe\xd9\ \xa8\x85\x89\x59\xa8\x83\xb8\x07\xd0\xb8\x94\x3c\x8a\x99\x93\x99\ \xa2\x98\xe9\x94\x94\x78\x94\xc4\x78\x9a\xd9\x78\x90\x03\xb9\xa8\ \x10\x59\x89\x59\xf8\x02\x5e\x30\x06\x88\x18\x09\x47\xb0\x63\x70\ \xe0\x00\xfb\x00\x0e\xec\x40\x43\x16\x72\x03\x75\x50\x07\x7d\x60\ \x01\x5b\x23\x08\x07\xb0\x9b\xbc\xb9\xa0\x9b\xb0\x09\x95\x37\x9c\ \xf8\x93\x08\xb8\x08\x81\x10\x58\x55\xb6\x48\x47\x6c\x5a\x4a\xc3\ \x4a\x53\x7b\x29\x0b\x32\x85\xac\x32\x49\x0c\x78\x42\x0f\x24\x4a\ \x5a\xae\x56\x7d\x32\x43\x0d\x5e\x90\x9e\x47\x09\x03\x8d\xf8\x85\ \xda\xca\x88\xd9\xd8\xad\xa3\x39\x90\x22\x78\x99\x2f\xa0\xa2\xd0\ \x38\x90\x0c\x39\xae\xe6\x69\x89\x96\x79\xad\xa3\x49\x9a\x0c\xb9\ \x94\x4c\xf9\x88\xcf\xb8\x0f\xd4\xc0\x02\x91\xb0\x0f\x6f\x40\xaa\ \x50\x7a\x04\xef\xe4\x1e\x69\x22\x01\xba\xa0\x07\x75\xa0\x07\xaf\ \xc0\x03\xba\x40\x96\x62\x60\x9c\x85\xa1\x60\xbf\x79\xab\x2c\xc6\ \x8e\x34\x41\x02\x27\x20\x4d\x1b\xba\x4f\x79\x39\x0e\xe3\x90\x97\ \x6d\xca\x97\x3f\x08\xa7\x4f\xb4\xa1\xa5\xd4\x97\xcc\x5a\xb1\x41\ \x88\x27\x91\x00\x6e\x22\xc0\x0c\x5e\xe0\x05\x98\x79\xfe\xa3\x8f\ \x9a\x8d\xda\xba\x02\xe0\xea\xad\x86\x7a\xa9\x36\xea\xa8\x2a\x9a\ \xb3\x2e\x7b\xa3\x3c\x3a\x0d\x91\x60\x89\xd8\xea\xad\x99\x3a\x9f\ \x8e\xba\x07\xcc\x70\x0f\x63\x40\x0d\x91\x00\x5e\xf9\xda\x04\xf9\ \x8a\x0f\xf3\xb7\x2b\x21\xd2\x2f\x62\x70\x04\x28\xa0\x07\x25\x30\ \x0b\xaf\x30\x02\xe8\x53\xa5\x8d\x01\x58\x60\x7b\xab\x2b\xd6\x96\ \xb9\xf5\xa0\x32\x71\x00\x27\x70\x53\x7a\x68\x43\x6b\x9b\xa1\xc3\ \x90\xb1\xb8\xa8\xac\x21\x1b\xb7\x57\x15\xb2\x58\xa5\x48\xf1\x97\ \x27\xbd\x22\x5e\xe0\x55\x5e\x51\x40\xad\x4c\xb9\x94\x0c\x39\x90\ \x40\xea\x9e\xa4\x09\xae\x41\xbb\xad\xee\x4a\x89\x7e\x8a\xae\x2e\ \xfb\xae\xcc\xd0\xb3\x51\xc0\xae\xd8\x5a\xb9\x55\xc0\x0c\xfe\x00\ \x91\x39\x4b\x0d\x03\x37\x06\x3e\xcb\xb4\x4d\xc0\x07\x3b\x10\x09\ \x8e\x50\x8a\x82\xa0\x0d\xda\xe0\x04\x06\xd0\x07\x25\xf0\x0a\xae\ \xab\x0b\x5b\x23\x06\x68\x69\x19\x0d\x9b\xa0\x6b\x60\xab\xf2\xa6\ \xab\x04\x21\x44\x4a\xe0\x97\x36\xc4\xb6\x79\x79\xa1\xb9\x08\x93\ \x6b\xca\xa6\x7a\x69\x55\x1d\x5a\x51\x4b\xe4\x49\xa5\x44\x04\xc3\ \xe5\x32\xdf\x42\x0f\x31\xe3\x01\x0d\xe9\x90\xf0\xfe\xca\xa8\x89\ \x1b\x9a\xe1\x19\xb4\x30\x7b\xa9\x3a\x4b\xb4\xe8\x9a\xb3\xe7\x2a\ \xb9\x92\xf8\xa8\x84\x0b\xa9\x2a\xab\xb9\x0f\xe9\x0f\xd5\x3a\x0d\ \xd4\x40\x0d\x1a\x96\x5a\xbd\xf7\x58\x09\x23\x06\xbe\x42\x04\xac\ \xeb\xba\xae\xcb\x03\xe8\x33\x08\x47\xe0\x7a\x0b\x6a\xbb\xb7\xeb\ \xb0\x0a\x7a\x06\x3c\x75\x12\x48\x70\x02\x74\x08\x93\xc4\x4a\x08\ \xbe\x7a\x8f\x16\x5a\x93\x1c\x2b\xb2\x7a\x59\xa1\x17\xaa\x87\x2a\ \xc2\x97\x4d\x70\x63\xe0\x70\x00\x63\x00\x07\xf8\xd5\x63\x7d\xba\ \xb2\x9a\x89\x9e\xd2\x38\x99\x40\x0a\x9a\x8b\x3b\xb3\x88\x3b\x88\ \x2a\x6a\xa3\xf0\xfa\x94\xe2\x3b\xa9\x95\xf8\xb3\xe5\x59\x9e\xc2\ \x78\xb8\xeb\x8b\xb9\xd7\xfb\x02\x2a\x35\x0d\x04\x87\x81\x6d\x16\ \x09\xc5\x22\x08\xb2\x99\x30\xda\xf0\x06\x0e\xb0\xc4\xaf\xd0\x07\ \x28\xf0\xc4\x20\x81\x3e\x23\x40\x18\x85\x21\xb6\x51\x91\x8a\x0c\ \x3b\x0f\xf4\x65\x12\x2a\xb1\x97\xbd\xeb\x0e\xfd\x44\x0b\x51\xd1\ \x80\x40\x88\xa1\x59\x55\x48\x4c\xd4\xbb\x76\xa9\xb1\xc4\x1a\x46\ \x19\x9a\xb1\x1a\x0b\x2e\x70\xd0\x0b\xc6\x35\x5e\x8d\xf2\x01\xe4\ \x75\xb4\xf7\xb0\xa9\xe5\xf9\xae\x0e\x99\xbd\xfe\xc9\x90\xb3\x92\ \x88\xb8\xe7\x3b\x99\xe4\xca\xc3\x9a\x2b\xbe\x96\xd9\xb2\x37\x8c\ \x99\x41\x8b\xbe\xec\xeb\x05\x99\x9b\xb9\x87\xe7\x01\x80\x27\x24\ \xdf\x62\x8e\xb4\x29\x08\x4c\xea\x04\x76\x23\x08\x27\x40\x04\x06\ \xb0\xc4\x28\x00\x0a\x4e\x8c\x02\x5c\x3b\x08\x07\x40\xc5\x72\xf1\ \x9b\x02\xac\x7c\x73\x02\x97\x82\x81\x04\x7c\x49\x87\x1e\x4b\x4e\ \xd0\x44\x0b\xd0\xf4\x83\x7b\xc8\x44\xe3\x60\x43\xa4\xb4\xc0\x15\ \x0c\x81\x50\xb4\xc6\x13\x14\x2e\x12\x06\x2c\x78\x9c\x63\x3f\x47\ \x72\x9f\x4a\x8d\x50\x09\xae\xd3\x10\xc3\x2a\x5a\xb9\x29\x5a\x89\ \x39\x6b\xae\xe6\x6b\xcd\xe8\x09\xbe\xe2\xdb\xb8\xe5\xf9\x90\xe5\ \x59\xb9\xeb\x4b\xad\xf7\xb0\xb2\x27\x5c\x05\x95\x86\x28\x63\x40\ \x9f\xe0\x37\x7f\xf3\xc4\x02\xa6\x90\x9f\xfb\xd0\x0d\xe9\x43\xa5\ \x47\x70\x04\xf8\xab\x07\x28\xf0\x0a\xfc\x3c\x0b\x48\x20\x06\xac\ \xba\xb0\x04\xac\x1b\x66\x7b\x41\xe3\xb0\x51\x5f\x6c\x53\xc2\xfa\ \x83\xb8\xb8\xc6\xbd\xea\x83\x6d\x5a\x4a\x3e\x88\x48\x3c\x44\x87\ \xee\xa0\x6a\xf2\xd6\x7e\x8b\xb2\x03\xd4\xb0\x0f\x31\x3c\xce\xda\ \x8c\x9e\x32\x3c\xd2\x7d\x2c\xbe\x29\x4a\xfe\xc8\xe8\x4b\xb4\xe3\ \x4c\xae\x4e\x89\xcd\x99\x29\xd2\x2a\xaa\xb2\xf7\xc0\xbe\xfe\xf0\ \x94\xd4\x40\x06\xf2\x75\x06\x5e\x70\x70\x82\xc0\x0c\x63\x40\xaf\ \xf6\xda\x0d\xa2\xfa\x06\x44\x80\x0f\xfc\x9a\x22\x62\x40\x04\xfa\ \xdc\x07\x7a\xc0\xcf\x69\xf6\xaa\x9c\x60\x00\xac\xbc\x96\x02\x8c\ \x1a\x10\x7b\x41\x13\xdb\x9c\x1f\x0b\xa7\xa5\x04\x0e\xbf\xfc\xb6\ \x70\x4c\x47\xbd\xc0\x83\x64\x7c\x8f\xc2\xba\x0e\x1a\xe7\x66\x35\ \x06\x84\xb0\x00\x2e\x6d\x76\x81\x45\x70\x30\x8c\x12\x09\x9b\x0a\ \xce\x2a\xaa\xa3\xf3\x59\xcd\x90\xda\xb8\x0c\xa9\xc8\xd9\x4c\xae\ \x9a\x3a\xae\xd7\xfc\xc2\xe2\x9c\x99\xe1\x7b\xb9\xfe\x70\x0f\xa3\ \xb0\xb2\x2f\x90\x0c\x21\xe8\x05\x64\x60\x76\x21\x13\x05\xee\x12\ \x05\x4e\xe0\x9a\x6f\xb0\xd9\x0e\x60\xd4\x63\x49\x1e\xdd\xd0\x0b\ \x4f\x7c\xb5\x41\x60\x1f\x45\x40\xb0\x23\x30\xbb\x12\x92\x8a\x62\ \x9b\x06\x05\x24\x12\x13\x7b\xc1\x6d\xcc\xd0\x21\x1b\xcc\x15\x8c\ \x8b\x26\x44\x47\x0c\xfc\x6c\x26\x74\x68\xb4\xe0\x7e\x04\x03\x06\ \x3c\x34\x6f\xe3\xf5\x01\x64\x20\x29\x91\x00\x7e\x25\x9c\x9e\xd1\ \x0c\xb9\x84\xbd\xd2\xe0\xfb\x94\xe3\xfe\xea\xa7\x33\xdc\xcd\x92\ \xf9\xbd\x4d\x39\x8d\x89\x7c\xb9\x8c\x7d\xce\xd4\x50\x05\x28\xf8\ \x82\xd4\x32\x86\xf0\xe1\xd3\x47\xf0\x06\x7c\xf0\xa4\xe9\xcd\x07\ \x0e\x80\x0f\xda\xa0\x22\x62\x70\x02\x70\x30\xda\x7d\x70\x03\x23\ \x20\xb0\xb8\xe9\xd4\xb4\x6a\x16\xd3\xd5\xb0\x2e\x90\x06\x69\xb0\ \x09\x07\x1d\x3c\x27\xc0\xb6\xe1\xf4\xb1\x66\xcc\xc0\x88\xe4\x83\ \xb3\xe8\x0e\x0d\x2e\xd1\x18\x1b\x45\xe0\x30\xb1\xb0\xb0\x6e\xf0\ \x46\x0b\x4d\xb0\x0e\x67\xe0\x96\xa6\x17\x29\x3b\xc0\x28\x1e\x1d\ \x09\x98\x09\x91\xc7\x50\x05\x25\xfe\x94\xc2\x28\xd8\x25\x7d\xb9\ \xe9\x7b\xbd\x10\xa9\x99\x2f\xbe\xdd\x7e\x5c\x8d\x93\x48\x88\x24\ \xfd\x90\xe7\xec\xb8\x9c\x3b\x0a\x63\x50\xd3\x30\x90\x82\x5f\xe8\ \x56\xa1\x78\xde\x3b\xc6\x07\xe9\x0d\x07\x33\x10\x04\x47\x20\x06\ \x12\xb0\x01\xa1\x4c\x04\x0e\xd0\x07\x06\xc0\x09\x62\x30\x02\x56\ \x3a\x03\x7a\xb0\x6e\x1b\xc2\xda\xc0\xd9\x0e\x2e\xb0\x09\x33\x70\ \x7e\x17\xb4\x51\x1a\x5a\xc6\x21\xca\x2f\x18\x4d\xac\xeb\x70\x4e\ \x31\xf5\x6c\xee\x70\x02\xa7\xc0\x32\x85\x94\xb1\xca\x66\xa6\x68\ \x0a\x0b\x4e\x36\x7d\x53\x30\x06\xfe\xf4\xc0\xcc\xfb\xe0\x05\xd2\ \xa8\xb9\x88\x6b\xbe\x94\xc8\xb8\xe8\x9a\xa2\x0c\x99\xb9\xf3\xe9\ \xe2\x30\xce\x94\x8f\x4a\x88\x8c\x7a\x94\x93\xda\xcd\x25\xf7\xdd\ \xe4\x3a\x70\x64\xf0\x03\x7b\x5c\xb8\x59\xd8\x89\xfd\x71\xaf\x95\ \x42\x04\xe9\x1d\x04\x7c\x90\xe5\xad\x8a\x02\xdd\x20\x06\x62\x70\ \x00\x47\x60\x00\x06\x80\x02\xb3\x20\x06\x83\xc0\x09\xb3\x60\x6c\ \x33\xb0\x6e\xfb\xdd\xca\x63\xeb\xca\x80\x85\x64\x1d\xc1\xbb\x0a\ \xad\x87\x44\xe2\x08\x37\x33\xd6\x30\x09\x0b\xa0\x40\x47\x57\x37\ \x8b\x27\xe0\x08\xfc\x32\x0e\x8e\x40\x4a\x04\x73\x79\x9c\x52\x42\ \x77\xa6\x5a\x1d\x3d\xba\x02\x57\xad\x8e\x4e\xe8\xe0\x5a\xa3\x8b\ \xfa\xdc\x87\xec\xa7\x93\x1c\xc3\xd4\x8d\xc2\x46\xc9\xa8\x92\x99\ \x99\x80\x5e\x72\x37\xbd\xa2\xb7\xb6\x28\xcc\x00\xa8\x58\xb8\x89\ \x7d\xe2\x91\xf8\xf0\x06\x42\xc0\x07\x41\x70\xeb\xc6\xd6\xaa\x33\ \xe0\x00\x4e\x80\xba\xad\x7e\xb5\x7d\x00\xbb\x02\x8d\x02\xb7\x6e\ \x28\x26\x99\xa0\xac\xbd\x13\xc3\x96\x12\xb4\x2c\xec\x63\x04\xb7\ \x65\xac\x04\x70\x3b\x41\x6a\x0d\x06\xc2\x2d\xdc\x65\x3d\x8b\x04\ \x23\x27\x87\x66\xa6\xf3\x20\xfe\x5b\xbb\x57\x6b\xf3\xe6\xd1\x7d\ \x0e\xe8\x37\x2a\xe8\xe6\xba\x81\xd8\x6a\xe3\x0f\x89\xc2\x87\xfb\ \xd7\x39\xab\xdd\xd4\x50\xee\x21\x9d\xc3\x83\x38\xcd\x89\x3c\xcd\ \x25\x77\xce\x24\x8c\xe3\x53\x30\x7c\xf3\x2e\x89\x8e\xec\x82\x7d\ \xb2\xb4\xe7\xed\x00\xfc\x6e\x6c\x71\x52\x04\x00\x5f\x02\xfd\x79\ \xdf\xb7\x8e\xca\x62\x80\x04\x23\x70\x03\xaf\x60\xa5\x5b\x0e\xb6\ \xb6\x8a\xc5\x9b\x70\xc0\x1c\xe1\xc6\x81\x69\xf1\xb4\x48\x87\x13\ \x5b\xd6\x60\x00\x4d\x77\x97\xcb\x77\x47\x97\xb0\x30\x28\x1f\xe0\ \x0e\x1f\xa6\x28\x4d\x60\x5c\x48\x2b\x70\xef\x4b\xb4\x26\x2e\xd8\ \x28\x5c\xa3\x92\xca\xbd\x81\x1c\xd8\xe5\x1c\xf4\x7c\x3f\x9f\x9c\ \x4a\xa3\x24\xad\x94\x41\xaf\xc7\xdc\x7e\x0f\xc3\xe7\x05\x96\x39\ \x8d\x51\x80\x82\x9e\xfe\x1e\x4e\x00\x0e\xfb\xe0\xf4\x70\xd0\xef\ \x32\x96\x96\x33\x80\x02\x37\xc0\xea\x0a\x7f\xa5\xf5\x8d\x2a\x3c\ \x70\x03\xb5\x8e\x8a\xbc\xee\xdf\xbd\xb9\x09\x4d\xf0\x55\x1a\x81\ \x04\x21\x9a\xc6\xc7\x8b\xd6\x65\xac\xc0\xee\xb0\x0e\xb8\x67\x71\ \x1f\xf0\xd6\xc1\xdf\x04\x1a\x86\xf7\xac\x12\xf4\xed\xee\x0f\x81\ \x2e\xc3\xe8\x5a\x9e\x95\xfe\x3a\xae\x2c\x9a\xc2\x87\x0b\xae\xe7\ \x3a\x8d\x02\x37\xd9\xe7\x3c\x8d\x4d\x09\xa8\xd9\xa8\xa8\x2c\xff\ \x90\x88\x3f\x0a\x24\x37\x8d\xb7\x66\x76\x4b\xe9\xd8\x3f\xae\xf4\ \xde\x38\x8e\x91\x80\x09\x4e\xfa\xf9\xa0\xbf\x80\x4f\xd6\x07\x23\ \x30\x02\x7d\x20\x63\x04\xbb\xfa\x3c\x60\x01\x3c\x10\x04\xb9\xce\ \x9b\x00\xb1\xc9\x85\x8b\x4d\x05\x0d\xce\x9b\xb7\x66\xcd\x3c\x81\ \xee\x48\xfc\x83\x18\x51\xe2\x44\x8a\x15\xff\x21\x39\x75\x6a\x18\ \x31\x77\xc4\x94\x10\xdb\xe8\x4e\x24\x2c\x91\x25\xd7\xd1\x52\xa5\ \x50\xa5\xca\x22\xaa\xce\x14\x69\x79\xe6\xc3\x14\x58\x67\x64\x9c\ \x69\x42\x66\x87\x17\x2f\xcc\x7c\xbe\x60\xe6\xc5\x1f\x35\x7f\x2f\ \x8c\xbe\xa8\x62\xb4\xca\xb4\x69\x47\x99\x51\x7b\x01\x23\x59\x32\ \x18\x55\xac\xc2\xa8\x9a\xd4\x27\xb5\x7b\x5d\xef\xf1\xec\x69\x74\ \xda\x1e\xb2\xc9\xa6\x05\x65\x66\x94\xd9\xbd\x51\xf7\xc8\xfc\xb8\ \x17\xf4\x47\x2e\x32\x5e\xee\x8d\xa9\x3b\x6d\x85\x1b\xbe\x56\xdc\ \xf8\x15\x14\x25\x30\x26\x7c\x6f\x82\x04\x99\x31\xa3\x4e\x1d\x98\ \x2c\x8b\xcc\x28\x31\xeb\x55\x1d\x85\x45\x50\x94\x78\x15\xf9\xd5\ \x8c\x95\x9d\x3d\x7b\xfe\x16\x58\x90\xa1\x40\x84\xa5\x19\xb6\x43\ \x3d\xe2\xa1\x45\xd6\xad\xff\x8d\xdb\x08\xae\xe3\xb0\x8c\x4a\x4a\ \x8a\xec\x45\xeb\x64\xca\xce\x29\x55\xd1\x82\xd5\x84\x56\x91\xca\ \xf3\x6c\x9e\x91\x39\xe6\x1e\x35\x9f\xc7\x7c\x5a\x05\x8a\xf6\x05\ \x35\x2f\x40\x5f\x30\x65\x6a\xf5\xb9\xd4\x64\x55\x9e\x43\x57\xfb\ \xd4\x0b\x75\xbb\xca\xa9\x31\x3f\x5a\x45\xea\x9e\xe9\x3e\xd7\xfe\ \x98\x32\x45\x06\xdc\x1f\x32\xe8\x92\x21\x43\x97\x19\x8c\xbd\x7d\ \xad\xf8\x8d\x22\x8a\x0d\x04\x89\xe4\x08\x3e\xf8\x40\x6c\x31\x98\ \x88\x63\xa9\x0e\x3d\x1c\xe8\x83\x31\x85\x66\x40\x01\x05\x3d\x50\ \x98\x81\xc1\xcf\x36\x54\x69\xb4\x84\x3c\x5c\x08\xa1\x82\x5c\x40\ \xad\x9d\x5a\x48\x58\xcd\x35\x15\x23\x22\x41\x89\x8f\x88\x01\xa9\ \x36\x17\x65\x2b\x29\x37\xe2\x54\xc1\x91\x16\xe0\x7a\x21\x09\x1c\ \x22\x60\xf9\x40\x06\x19\x68\x79\x69\x0d\x9c\xc6\xd8\xc1\x18\x16\ \x92\xf2\xce\x1f\xbb\x7e\xc8\x29\xbe\xf8\xce\x98\x22\x97\x29\x72\ \x52\x6e\xbc\xae\xa2\xa2\x2a\x29\xa4\xac\x02\x8f\x19\x27\xdd\xa3\ \x6e\x39\x9e\x98\x63\x66\x2c\xac\x60\x58\xeb\xab\x51\xce\x40\x68\ \x8d\x5c\x72\x91\xfe\x61\x21\x3a\xe7\xc9\xc5\x8b\x69\xf8\xe3\xab\ \x4f\xbf\x22\x89\x82\x9d\x28\xf2\x78\x03\x0e\xc4\x32\xd4\x50\xc3\ \x35\x1e\xab\x50\x0f\x06\x1f\x4b\x4c\x42\x0e\x27\x5d\x68\x93\x84\ \x42\xbc\xb4\x52\x81\x48\x2c\x51\x16\x24\x56\x04\x15\x22\x24\x60\ \x24\x06\x1c\x90\x86\x41\x35\x23\x47\x4e\x71\x64\x1c\xdb\x60\x01\ \xe3\x03\x1d\x7b\x71\x47\x36\x25\x4e\xd8\x41\x24\xd9\x60\xd9\x01\ \x96\x29\x66\x1a\x83\x85\x3d\xca\xd8\x83\x1e\xb7\xa6\x38\x83\x4e\ \xe2\x96\x9d\x47\xd1\x85\x8a\x10\xd2\xa6\xf9\x46\xb1\xcb\xab\xb4\ \x94\x8a\x2e\xad\xb1\xf6\x60\xca\x28\xea\xc8\x7b\x2a\xad\xa5\xdc\ \x7a\xab\x4e\x95\xcc\x55\xa8\x59\x32\x98\x51\x2f\x99\x3e\xff\x72\ \x43\x10\x53\xf6\xd9\x07\x1f\x38\x14\x53\xb0\xb1\xcf\x8a\x70\x50\ \x0f\x3d\x28\xab\x4c\x41\x95\x16\xa3\x14\xb4\x4d\x3a\xec\x90\xa1\ \x81\x06\x2a\x11\x35\x7a\x52\x0c\xb5\x35\x12\x4e\xd0\x15\x1c\xda\ \x24\x38\x45\x02\x09\x86\x71\x64\x98\x71\xc6\x71\x84\x62\x77\x72\ \x83\x45\x36\x22\xc0\x51\x02\x9c\x26\x4a\x66\x01\x1c\x16\x58\xd8\ \x61\x0c\x24\xbd\xd8\x29\x3f\x21\x15\x12\xb2\x88\x79\x84\xbc\x49\ \xca\x29\xcf\xfe\x58\x03\x5d\x9c\xe9\x14\xd2\x4a\x32\xc8\x1d\x05\ \xbf\x31\xc6\x53\x33\x0a\xa6\x82\x22\xf7\x07\xfc\x96\xf3\xae\x3e\ \xa1\x3f\xd3\x6f\xac\x64\xfa\xeb\x33\x0a\x7a\xf1\x41\x50\xb1\x05\ \x3d\x1b\x9b\xdf\x19\xfc\x05\x63\x59\x7e\x25\x9d\x81\x88\x23\xae\ \x9e\xb4\xb4\xcf\x36\x1d\x48\xa0\x86\x07\x42\x02\xe2\x88\x59\x3b\ \x01\x46\x25\x86\xd1\x58\x82\x56\x6d\x1b\x59\xa4\x94\x89\x70\x67\ \x07\xc4\x75\x75\xd5\x9d\x26\x7e\x44\x92\x85\x28\x60\x9e\x02\xda\ \x9c\x65\x98\x82\x0c\x24\x81\x02\xd4\xe9\x00\x9f\x8a\x22\x99\x28\ \xa6\xab\x16\xbe\x5c\x9a\x88\xaf\x4e\xcb\x6f\x96\x41\xe7\xa2\x9b\ \xb8\xeb\xab\x6a\xc9\xad\xd2\xca\xae\xbc\x18\x05\x6e\xcf\xf4\x43\ \x8a\xac\x2a\xc8\xda\x23\x8a\x79\x0b\x83\xe3\x5e\x44\x17\xd5\x57\ \x6d\x98\xea\x38\x5b\x0f\x30\x24\x14\x78\xd1\x20\xb4\x11\x84\x88\ \x82\x33\xc5\xbe\x34\xbb\xdb\x59\xb8\x61\xee\xdb\x59\x20\xef\xbd\ \x5d\x23\x21\x23\x54\x3d\x4e\x19\x16\x50\x60\xd5\xf1\x64\x77\x88\ \x50\xc2\x55\x1f\xdd\xc9\x58\x02\x70\x80\x2c\x02\xa7\x1d\xc0\x19\ \xa3\xf2\x45\xed\x23\x03\x35\xa2\x50\x06\x11\xfc\xc7\x80\x07\x9c\ \x86\x17\xfe\x92\xe1\x17\x2b\xac\xc0\x03\x2b\x30\x8b\xb6\xf6\xc0\ \x0c\xbc\x48\xad\x4a\xba\xdb\x99\x95\x32\x37\xb5\xdb\x91\x6b\x4e\ \x73\xca\x14\x87\xe8\xf2\x95\x6f\x31\x87\x29\x91\x18\xc3\x1b\x0a\ \x73\x98\x04\x31\x66\x41\x2f\x5c\x9e\xd9\xf4\x70\x36\x09\x8d\x4d\ \x21\x70\x70\x84\x15\x04\x01\xb4\x82\x25\xec\x43\x0a\xab\xdb\x88\ \xbe\x57\xa2\x34\xa4\xe1\x61\xe3\x93\xd8\x20\x02\x37\x0e\x77\xa0\ \xc4\x89\xaa\x00\x03\x70\x7e\x44\x0b\x70\x8c\xc3\x47\xe0\x00\x87\ \xc6\xac\x20\x81\x1d\xd0\x22\x68\x57\x6a\x02\x72\xce\xa0\x93\x01\ \x1e\xd0\x8c\x07\x74\x43\x24\x9a\x10\x05\xbf\xbc\xcb\x0d\x2b\x88\ \xc2\x1e\xfa\x03\x03\xa6\x70\x6b\x2d\x64\xf0\x59\x1e\x47\x28\x3b\ \x71\xed\xc1\x3b\xf7\xd0\xdd\x86\x32\x38\xa7\xa9\x55\x27\x12\xf5\ \xda\xc7\x1b\xf8\x50\xbc\x43\x2d\xc6\x91\x0a\x5a\x4c\xa4\x12\xe3\ \xaf\x7f\xe9\x6b\x25\x75\x38\xc1\x7f\xc0\xa1\x28\xd1\x7c\xe6\x87\ \x0b\x21\x51\xdd\x46\xb3\x30\x4e\xa5\x01\x35\x2e\x50\x0d\x12\x5b\ \xa3\x44\xfb\xa1\x44\x21\xbf\x71\x07\x2c\xd6\x21\x4b\x55\x14\xa1\ \x56\x3f\x92\x8d\x23\x02\xc7\x02\xf9\x40\x2b\x17\x47\x8a\x42\x01\ \xcf\xfe\x38\x4c\x03\xf6\x6f\x1a\xf0\xe2\xcb\x03\x57\x40\x96\xfe\ \x2c\x73\x6b\xc9\x08\xde\x53\xd0\x83\x9d\xa6\xfc\x24\x3a\xe7\x21\ \xcf\x93\x02\x39\x29\x00\x32\x2d\x0a\x91\x88\xc4\xbc\xde\x20\x04\ \x04\x1d\x26\x31\xe7\x54\x0c\x3a\xd5\xe9\x2f\xb1\x39\xab\x08\x44\ \xf8\x8f\x20\x3e\x90\x2e\x86\x84\x30\x44\xf4\x54\xc8\x26\x4e\x69\ \x29\x85\x19\x84\x44\x45\xfc\x5e\x1a\x52\xa9\xca\x8a\x94\x6f\x1c\ \xb0\xc0\x51\x4a\x68\x81\x38\x91\xc1\xa2\x0e\x0b\x8d\x25\x11\x5a\ \xe6\x8e\x71\x9c\x42\x10\xe0\x20\xc3\x71\xa6\x30\x06\x63\x6c\x91\ \x98\x1f\x5d\x41\x13\xd6\xd8\xc6\x37\xae\xc0\xa4\x74\x74\x97\x1b\ \xa0\x69\x52\x68\xb2\xe7\x3a\x7b\x90\xca\x5e\x64\xca\x52\x6e\x01\ \x85\x2d\x36\x93\x81\x3d\x29\x05\x2d\xb8\x50\xa3\x0a\x53\x59\x81\ \xa0\x4c\x41\x18\xb0\x19\x8a\x85\x92\x64\x1e\xf3\xd4\x89\xce\xe8\ \x2d\x4a\x21\x7a\x90\xc0\x16\x61\xa1\x33\xd3\xac\xc4\x34\x71\xaa\ \xd4\x40\x44\xa4\xcf\x20\xa2\xc6\x94\x0c\x73\x01\x2c\xf4\x46\xd0\ \x88\x24\xc2\x1d\x27\xd1\xd1\x1a\x54\xe1\x0e\x17\x9d\xe0\x63\xb0\ \x28\x99\xca\x28\x0a\x8e\xfd\xd1\x75\x07\x41\xc2\x09\x0b\x3e\xba\ \xfe\xd7\xff\xa0\x90\x1a\x29\xe5\x0b\x4b\xe1\x38\x16\xbe\xc0\x20\ \x74\xd0\x1c\x5d\x9a\xa6\xb1\x35\x37\xba\x11\x82\x30\xb0\xe3\x3d\ \x7e\xc0\xc3\x1e\xda\x29\x80\x5a\x33\xa9\xa0\xc2\xf9\x06\x45\x96\ \x93\xa9\x8f\x64\x8c\x52\x1d\x19\x29\x81\x2d\x4b\x21\x1f\x10\xc4\ \x7f\x86\x91\x0b\x9d\x8a\x68\x34\x96\x0a\xd1\x41\x14\xc6\xbd\x11\ \x05\x91\x6e\xf3\x20\xc2\x58\xc9\xfa\x8f\x11\x90\x24\x96\x60\x20\ \x49\x45\x61\x33\x8e\x13\xc4\xef\x7e\xee\xc3\xe2\x0e\xe8\x11\xc6\ \x33\x8c\x21\xb5\x7c\xfd\xe8\x1e\xce\xb3\xd8\x07\x96\x94\x2c\x90\ \x85\x8a\x49\xeb\x48\x16\x69\xa6\x69\x0f\x8c\x6d\x2c\x4b\xa1\xe9\ \x1d\xae\xc8\x47\xa7\x1c\x82\x56\xb2\xa6\xf0\x15\x4c\xb4\x77\x1f\ \x8b\x64\x24\x69\xcb\xc6\xaf\x17\x46\x12\xb4\x2e\xac\x0c\x83\xa0\ \xfa\x1f\x09\xd0\x23\x84\x57\xbd\x6a\xba\x0a\xa2\x29\x82\xf0\x53\ \xb6\xa1\x29\x4d\x6e\x77\x3b\x11\x12\x8c\xe0\x36\x14\x4d\xad\x04\ \x04\x71\x0a\x17\x9d\x82\x89\xb5\xda\xc1\xcb\x76\x80\xac\x29\xd0\ \x43\x10\x51\x85\xee\x30\x3d\xe0\x93\xc5\x52\x25\x0a\xeb\x71\x9a\ \x51\xec\xb2\xa7\xf3\x00\x85\x1a\x78\x59\xda\x4b\xb9\x33\x15\xfe\ \xc8\xb2\xe7\x29\x6e\x69\x02\x9d\x2a\xcb\xa1\x0c\x4e\x01\x0e\x2f\ \x51\x9e\x53\xc9\x86\xbc\x47\xc1\x90\xbe\xce\x5a\x43\x1d\x72\x28\ \x55\x45\x55\xd5\x9e\x5b\x1d\x65\x81\x2d\x25\x9a\x79\x04\x11\x21\ \x2e\xf8\x81\xf8\x16\xcc\x22\x07\x17\xf7\x63\x5f\x06\x5c\xaa\xac\ \xb8\x3f\x16\x9c\x82\x05\xf4\x40\xce\x0e\x84\x19\xe2\x33\x7a\xe0\ \x5b\xcc\x88\x02\x1c\x9d\xd6\xad\x6f\xdd\x63\x0a\x69\xf1\x8a\x5b\ \x08\xf9\x15\x6d\x59\x07\x9b\x5e\x90\x19\x1e\xab\x84\x10\x24\x57\ \xd6\x3e\xf1\x11\xe9\x07\x00\xb6\xe3\x7d\x55\x46\xc8\x64\xcb\xe4\ \x16\x9b\x60\x55\x4a\xf5\x13\x88\x52\x26\xc8\x95\x45\x29\x22\x17\ \x7c\x40\xb7\x64\x3d\xc0\x09\xea\xa7\x04\x58\x00\x47\xd4\x12\x3e\ \xc5\xfd\x32\x7c\x8a\x32\x80\xe3\x07\x1f\xf0\x30\x9b\x89\x89\xc2\ \xa3\xe9\x09\x9a\xd3\x28\xa1\x17\xf0\x43\x06\x19\xd4\x05\x3e\x78\ \xcc\x45\xd0\xee\x63\x1e\x6a\xec\x63\x3c\xd5\x1a\xc3\x28\xf0\x82\ \x9f\x26\xfc\x40\x6a\x3a\xde\x71\x2e\x7e\x90\xa5\x7d\x34\x41\xd1\ \x4d\x65\x34\xa3\xdf\x99\x5a\x41\xc0\x22\x6e\x3f\xdc\xaa\x41\x0e\ \x32\x22\x4e\xb7\xa3\x93\x1e\xd2\xf2\x96\x21\x22\x86\xa8\xfe\x4a\ \xe0\x04\x28\x51\x05\x2c\xe2\x37\x0c\x52\xc3\x82\x1e\x19\x63\x01\ \xaf\xa7\xa0\x57\x59\x9f\x11\x06\x78\xd1\x75\x13\x04\xc8\x1e\xae\ \xe0\x67\x14\xf1\x61\xed\x18\x85\x04\x5b\x9c\x49\x6d\x69\xdf\x92\ \x19\x58\xc0\x72\x9e\x9f\x94\x37\xdb\x46\x0a\xe0\x8b\x0b\xf5\x01\ \x7c\x59\xf2\xe2\x36\xdc\x50\x1d\x0c\xd0\x31\x32\x14\x9a\x9e\xe0\ \x16\x8d\x6c\xb5\x57\x10\xee\x11\x84\x9e\xfc\x94\xc1\x40\xd5\x4d\ \x82\x41\x9c\xe2\xdd\xbe\xa1\x85\x48\x38\xe2\xab\x2c\x5a\x81\x05\ \xad\xa3\x07\x88\xfb\x6d\x40\x37\x2f\x6d\x0c\x22\x4d\x13\xe9\x80\ \x3d\xe8\x74\x05\xbb\x33\xf3\xd8\x20\x09\x79\xb2\x0f\x99\xa1\xe7\ \x3a\xea\x81\xec\x0b\xbc\x50\x9f\xf3\x52\x8a\x4a\x4d\x78\x83\x48\ \x0d\x25\x5f\xd3\x6e\xa8\xec\x2b\x01\x39\xd9\xf4\x20\xd1\x37\xb4\ \x16\x53\x08\x73\xad\x6c\x05\x4c\x22\x2a\x0b\xb8\x34\x53\xf8\x94\ \xba\x21\x92\x08\x57\xf2\x06\x38\xc0\x81\x2b\xfd\x30\x56\xf2\x22\ \xf0\x7b\xe8\x06\xf4\xda\x5d\x50\xa7\x27\xf1\xe8\xb9\x59\x21\x84\ \x1b\xe6\x6a\x2d\xbb\xa9\x5f\xe7\xc4\x5b\x83\x20\x7b\x74\x0d\xec\ \xca\x5e\x30\xbf\x32\xf8\x40\x10\x3e\x00\x07\x8e\x77\xfe\x3c\xed\ \x8e\x6e\x8c\x25\x97\xe7\x98\xc7\xb8\x70\x31\x0e\xa0\x2b\x65\x35\ \x55\x77\x1f\x8a\x5b\x6e\x59\xcd\x74\x87\xc6\x8d\xca\x4f\x13\x94\ \x07\x8a\xc2\x11\x21\xe0\x6a\xaa\x32\x68\x8c\x1e\x41\x5b\xf3\xe1\ \xad\x10\x05\x40\xe3\xe5\x1e\xd3\x18\x9d\x5d\xf0\x03\x6d\x4a\xcd\ \xc7\x2d\x5e\xf1\xc2\x3e\xbc\x6b\xd2\x92\x42\x13\x6a\x5d\x99\x8b\ \x7d\x0a\x96\x8b\x63\x29\x6a\x79\xa4\x75\xe4\x0b\x89\x4c\x64\xf5\ \xe7\x57\x6d\x75\x00\xc5\x2b\x5e\xf1\xaf\xc5\xe8\xe1\x08\xe0\x98\ \xa7\x4a\x10\x8c\x55\x01\x8b\x9b\x9f\xd8\x3b\x08\xab\x0a\x8d\x11\ \xd9\x04\x99\x53\x37\xe0\xfb\x0d\x92\x80\x11\x2d\x02\x07\x19\x80\ \x05\xe5\x33\x20\x41\x78\x31\x99\x79\xbe\x5b\x2b\x38\xf3\xea\x21\ \x2b\x91\x9a\x5a\x1b\x0f\x40\x31\x29\x9a\x3a\x8b\x6f\xb1\x0b\xd4\ \xc9\x8f\x66\xd9\x90\x3a\xe9\x35\x5d\x2b\x12\xb4\x43\x9e\xa4\xca\ \x17\x23\x5b\x90\xf4\x2b\xb2\x47\x01\x83\x57\xe0\x01\x1e\x78\x85\ \xb4\x59\x03\x30\x20\x82\x1d\x68\x82\x26\x6b\xad\xd7\xe2\x27\x84\ \xd1\x94\x85\x48\x98\x71\x13\x0d\x0b\xe8\x3d\x24\x4a\x04\x30\x50\ \x2b\x55\x20\x04\x42\x30\x15\x8e\x90\x05\x62\xd0\xfe\x98\x1d\x90\ \x81\x1d\x80\x40\x11\x88\x84\x7b\x40\x9d\x2c\x89\xb3\x5b\xb3\x0b\ \xea\xab\xb4\x43\xab\x0b\x66\x88\x04\xe8\x0b\x90\x00\x01\x94\xf6\ \x48\x0b\xa8\xa9\x0b\x3b\xc3\x93\xa2\x49\x88\x22\xd8\x04\x69\x93\ \x0f\x19\x68\x82\xa3\xfb\x00\x93\x5b\x9e\x47\xa2\x2f\xd7\x1b\x2d\ \x17\x32\x3f\x98\x98\x01\x50\xe0\x01\x5d\xe0\x01\x47\x59\x94\xb5\ \x23\x02\xa7\x8b\x1b\x02\x74\xbb\x7a\xf2\x24\x21\xb4\x94\x5e\x58\ \x42\x26\xfc\x0d\x42\xa8\x15\x54\x21\x06\xb8\xe2\x44\x7a\xa0\x05\ \x19\x30\xbc\x7e\x33\x86\x37\x40\x96\xfc\xb9\x12\x32\x78\x01\x1a\ \xd3\x3c\x32\x38\x98\xca\xda\x99\x00\xba\x8e\x69\x00\xa7\x70\x6a\ \x2f\x4c\xa0\x86\x48\x10\x8b\xe9\xe8\x0a\xe6\xb8\x07\xa3\x71\x36\ \xf8\xc8\xa9\x55\xcc\x28\x68\x99\x82\xb0\x53\x34\xb3\x0b\x44\xd0\ \xc2\x17\xfb\x7a\xc1\xf9\x2a\x02\x3d\xb0\xc1\x45\x64\x10\x30\x80\ \x03\xfc\xf1\x8c\x7a\x12\xc2\xdb\xb3\xbb\x29\xdb\x10\xff\x1b\x42\ \x4c\xd4\x3b\x88\xa0\x15\x9d\x83\x91\x58\x82\xab\x5c\x48\x09\x19\ \x38\x85\xc3\xf3\x80\x48\x20\x83\xfc\x0b\x1a\x21\x69\x82\xe9\x60\ \x8e\x32\xa9\x0f\x43\x83\x8b\x9e\x78\x31\xaa\xfe\x03\xc8\x31\xa0\ \x17\x70\xa2\x33\xe6\xf0\x8e\x5d\x2b\x8f\xae\xb0\x89\x0d\x12\x29\ \xd5\x69\x02\x3e\x68\x82\x20\x90\x14\xb2\x89\x41\xa5\x4a\xa7\x67\ \x4c\xa7\xa4\x0a\xc4\x65\x41\x44\x1e\x40\x81\x94\x28\x02\x30\x40\ \x01\x22\x08\x12\x01\x4c\x03\x4c\xfb\xbf\x95\xa0\x9b\xdc\x7b\x3a\ \xba\xf9\x3f\x84\x90\x81\x74\xdb\xb2\x89\x49\xc7\x92\x28\x15\x8e\ \xa8\x93\x33\x78\xc7\x7e\x13\x01\x98\x51\x19\xa1\x29\x82\xba\xe8\ \x1f\x84\xfb\xa5\x9c\xea\x21\x21\x99\x02\x87\xd3\x1c\x99\x19\x03\ \x7c\x18\x03\x4c\xb8\xc5\x48\xd0\x45\x4c\x78\x01\xa7\xd1\xb5\x31\ \xc8\xa6\xbb\x90\x8f\xcc\x11\x29\x6b\x5b\x16\x38\x68\x82\xe2\x99\ \xc8\x7d\x59\x9b\xa5\x4a\xaa\xcf\x4a\xbf\x46\xe4\x81\x1b\x58\x87\ \x65\x11\xc9\xf7\x41\x17\x86\xa8\x85\x5a\x28\xb0\x4d\x53\x49\x97\ \xe4\xbf\xb9\xa3\xad\x1f\x32\x88\x2c\x2b\xc7\x7f\xa8\xb9\x74\x24\ \x95\x8c\x39\x05\x59\x30\x92\x9d\x94\xb5\x1d\x78\x03\x32\x40\x1d\ \x9c\x89\x96\xa5\xd9\x3c\xd6\xba\x38\x3c\x59\x2f\x18\xe3\xac\xa6\ \x84\x4a\xa9\x8c\x84\x62\x1b\xc8\xcd\x0c\xbb\xf1\xd8\x87\xbb\xa0\ \xba\xca\xc1\x89\xae\x6c\x02\x09\x39\x03\xfe\x38\x58\x24\x89\x34\ \xb9\x16\x3c\xcb\x8b\x3c\x27\x4a\x7a\xa4\xb4\x81\x09\x14\xb8\xc1\ \xb4\xc1\xb9\x5e\x68\x02\xde\x98\x3d\xd3\x88\xc5\x4c\x21\xc0\x4e\ \x12\x40\xdb\xba\x94\xad\x22\x91\x13\xf9\x4b\x31\xb0\xc9\xc1\x4c\ \x35\x21\x19\x07\x59\xb3\x9f\x30\x6a\x1d\x9c\x61\xb6\xa3\x39\x0f\ \x9e\xb0\x33\x48\xdc\x31\xcc\x91\x9a\xae\x4c\xa1\x7d\x08\x27\xa9\ \xa4\x17\x7a\x29\xb6\xa3\xdb\x43\x81\x64\x4a\x99\x09\x92\x0f\x08\ \x3b\x88\x04\x4b\xd7\x0b\x82\xd5\x6c\x27\x24\xfb\xc3\x41\x8c\xcd\ \x20\x98\x21\x30\x78\x9e\xc5\x78\x1e\x91\x5c\xcb\xb6\x6c\x09\xb5\ \xd2\x83\x75\xd8\x26\x4f\xda\x14\xda\xd3\xbd\x7d\x62\x38\x4e\xeb\ \x9e\x13\xc8\xc4\xf1\xe9\x2d\x05\x94\x8d\x74\x24\x04\x19\x00\x07\ \x59\xe3\x1f\x9b\x60\x89\xcc\x51\x0e\xcd\xb9\x9d\x27\x91\x4c\x46\ \xa3\x4c\x30\xe2\xac\x7d\xc0\x04\x53\x18\xaa\x7a\xc1\x07\x7a\xc1\ \x84\x44\x02\xcb\x37\x60\x51\x44\xaa\xb6\x3a\xf8\x00\xb0\x0b\x4b\ \xf8\x72\xa1\x19\x08\x02\xa3\x4a\x0c\x18\x12\xb2\x8a\x8c\xa4\xc4\ \x38\x14\x30\x98\x24\x22\xdd\x4f\x07\xb1\x41\x50\x68\x09\x98\x50\ \x85\x75\x20\x02\x92\xf4\x38\x1e\xb3\xfe\x3d\xfe\xbb\xb2\x76\x30\ \xa5\x21\xcc\xa7\x85\xd9\x9e\x5a\x38\x80\x07\x8d\x98\x44\x08\xbc\ \x9a\x14\x89\x29\xa0\x85\x1d\x10\xba\x8f\xb2\x9f\x3e\x7c\xb4\x5e\ \x23\x97\x3d\xdc\xb5\xa3\xc9\xb1\xc9\xc4\x1c\xef\xc4\x07\x7c\x38\ \xd1\xf6\x2a\x8c\x15\x75\xaf\xb0\x84\xd1\x5c\x6c\xd1\x16\x7d\x83\ \x19\xf8\x00\x3e\x08\x3b\xd5\x0c\x4b\xb1\x61\x9e\xf8\x3c\x2a\xd3\ \x2b\x1b\xd7\xb4\xc8\x8b\x9c\xa1\x48\x9d\x81\xfe\x94\x3f\x50\x60\ \x8c\x5a\x52\x85\xb5\x73\x04\x47\x78\x52\x7a\x58\x34\x1e\xf3\xc6\ \x97\x0b\xa5\x97\x3c\x0d\x52\xe2\x14\xee\xc9\x3b\xbd\x03\x53\xdf\ \xaa\x15\xb8\xd2\x11\x58\x40\xcc\x61\x92\x80\x71\xf0\x41\x06\xd9\ \x99\x66\xe9\x35\xc6\x54\x9a\xa5\x9b\xbe\xae\x13\xa4\x33\xd8\xc0\ \xef\xb4\xd3\xa1\xca\x83\x3a\xd5\xd3\xa1\x52\xa4\x3e\xf5\xd3\x3b\ \x7d\x03\x8e\x23\xd4\xce\x3a\x10\xd6\x34\x9b\xf8\x2c\xa7\x46\x92\ \xc1\xfa\x02\x44\x47\x22\x52\x4a\x8a\x54\x7e\xb1\x41\x47\x01\x83\ \x7f\xc9\xd4\x5e\x38\x81\x72\x75\x04\x41\xe8\x05\xd0\x1b\xcb\x6d\ \xac\x44\xd7\x5a\xb9\x12\xe9\x9e\x86\x51\xb0\x72\x4c\x04\x28\x14\ \x3e\x57\xa5\x05\x9a\xd8\x81\xe7\xfe\x3a\x23\x47\xf0\xc1\x99\x30\ \xca\x9b\xb0\x89\x5f\xe2\x50\x3c\x82\x13\x2a\xc1\x8f\x7d\x64\x34\ \xcc\xb9\x0b\x81\x34\x51\x4c\xc8\x83\x62\x35\xd6\xf6\x32\x85\xc2\ \xe0\xac\x3b\xb5\x53\x8a\x35\x85\x8d\xe3\x83\x3a\x1d\xa7\x68\xed\ \xd1\x44\x0d\x02\x72\xaa\xd6\x73\x02\xc4\x23\x33\xb2\x48\x0a\x57\ \x4a\x12\x1b\x14\x98\x85\xb6\xac\x03\xfd\x0c\xc9\x75\x30\x80\x5e\ \x18\xc9\x13\xe8\x85\x0f\x38\x19\x22\x20\x03\x22\x40\x96\xc9\x0c\ \x11\x86\x29\x11\xae\x1a\x22\x2b\x75\xd0\x72\x24\x81\xdd\xf8\x3b\ \xdf\x2a\x35\x77\x60\x01\x2d\xda\x22\x41\xa0\x07\x32\x70\x07\xaa\ \xa5\x07\x7a\x40\x16\x2b\xa1\x13\x29\x01\xb6\x9c\xca\xa0\x67\xa3\ \x13\xed\x2c\x18\xcc\x91\x99\x5c\x8c\x58\x89\xcd\x58\xa2\x52\xa1\ \x3c\xc0\x53\x8b\xcd\x03\x14\xc5\x04\x3e\x98\x01\x42\x8d\x58\x7c\ \x10\x02\x72\x32\xa7\x48\x8a\xcf\x12\xe0\x03\x21\x28\x81\x45\xc5\ \x97\x67\x54\xbf\x8a\x9c\x54\x96\x4d\x9b\x1a\x64\xc4\x3a\x48\x09\ \xfd\xf4\x97\x98\x75\x1e\x55\x20\x82\x13\x38\x00\x10\x73\xb7\x8c\ \x12\xa4\x58\xb4\x2a\x86\x48\x03\x33\x00\xa8\x96\xab\x1b\xaf\xda\ \x01\x2f\xdd\x9b\x44\xc8\x0d\xfe\xc0\x63\x55\x9a\x58\x99\x23\x60\ \x01\x5a\x15\xa9\x5a\xc1\x22\x33\xdb\x01\x59\xa0\x87\x5c\x80\x96\ \xa3\x11\x34\x06\xb1\x8f\x5f\xba\x8f\x51\x08\x36\x9d\x39\xca\xfc\ \x69\x82\x15\x65\xdb\x62\x65\xdb\xf6\x92\x58\x21\x30\xd6\x62\x15\ \x82\xce\x7a\x83\x3b\x45\x90\x8e\x8d\x58\x21\xc8\x83\xbb\xbd\xdb\ \x43\xd1\xd1\xbd\xbd\xdb\xbf\x35\x27\xb3\x4c\x1e\x47\xdd\x56\xb4\ \x71\x10\x0b\x61\x52\xca\x80\xa2\x75\x58\x07\xfd\xd4\x41\x1a\xfd\ \x80\x13\xf8\x30\xfe\x1a\x07\x7a\x40\x32\x4a\x34\xc2\x51\xaa\x81\ \x63\xa8\x81\x05\x50\xd0\x4d\x41\x85\xa3\xfd\x4b\x88\xe8\xad\x91\ \xc8\x57\xb8\x12\x60\x6b\xeb\x59\x7a\x48\x9c\x97\x79\x19\xc2\x84\ \x99\x1f\x08\x9a\xae\x90\x0f\x7a\x4a\x16\xfb\xf8\x01\x9e\xc8\xa8\ \x9d\x69\x1d\x13\xfc\x0c\x9e\x41\x8e\xd1\x7b\xd6\x3a\x65\x5b\x14\ \x25\x14\x72\x42\x5e\xbb\x55\x24\xd5\xe4\xac\xb7\xcd\x83\x45\xea\ \xdb\xb3\x95\xde\x16\xd6\x5e\x21\xc5\x5e\xbf\x65\xa1\x19\x96\xc8\ \x17\x64\xbf\xb5\xe9\x4f\x76\x5a\x87\xf9\x53\x85\x98\xc5\x91\x3a\ \x30\x5f\x50\x38\x5f\x1d\x64\x09\x27\xd5\x25\x03\x1a\x86\x49\xcb\ \xdc\xe2\xac\x32\x82\x70\xfe\x81\x05\xb0\xdf\x22\x22\xa5\x4d\x91\ \xc9\xfe\x3d\x80\xf4\x71\xa2\xc0\xcb\x15\x32\xb0\x37\x97\x29\x15\ \xba\x2a\xb3\x32\x60\xb5\x32\xf0\x2f\xfb\x58\x41\x9c\xb9\x43\xba\ \x50\x0e\xc9\x22\x24\x3a\xf9\x01\x9d\xd2\x99\x39\xf9\x80\x33\x60\ \x1e\x8e\xdb\xd1\xe5\x1d\x5e\xc2\x20\x59\xea\x3d\x10\x15\xc6\x63\ \x53\x98\x5e\xd5\x44\x5e\xea\x8d\xd8\x59\xb8\x5b\xcf\xba\x5e\x3e\ \x28\x01\xbf\xe5\x83\x3e\x38\x8c\x0a\xd9\x5e\x1b\x56\x9b\x1e\x8e\ \xd9\xb3\x61\x5c\xe7\x81\x09\x4c\x06\x83\x75\x10\x62\xe7\x51\x5c\ \x24\x6b\x1b\x31\x30\x20\x09\xa0\x47\x83\x49\x39\xf0\x59\x80\xb9\ \xac\x85\x7d\x9a\xd7\xfe\x95\x08\x12\x10\x83\x61\x68\xa2\x51\x04\ \x3c\xba\x02\x07\x03\x46\xe0\xab\x05\x07\x56\x0b\x1c\x09\xf8\xb9\ \x47\x0b\x11\x33\xf4\x20\xdb\x09\x46\x0b\xda\x04\xa3\x54\x09\x0d\ \x9a\xe3\x33\x10\x54\xa5\x8a\xcf\x37\xa8\x5b\xb0\x39\x10\x92\xfd\ \xd8\xbe\x85\x66\x16\x9e\xe6\xe9\xbd\x5b\x16\xce\xde\xed\x3d\x0c\ \xbe\xe5\xdb\x3e\x10\x67\x3e\x40\x81\xed\x7d\x46\x42\x5c\x1e\x55\ \x98\xd4\xc2\x2d\x5c\xda\x94\xd9\x26\x1d\xe2\x4f\x56\x2b\xb2\x21\ \x02\x51\xfe\x8f\x53\xfe\x30\xb9\xdb\x9b\x07\x2b\xa5\xcb\x4d\x58\ \xe5\x4d\x80\x05\x25\x74\xe5\x8a\x50\xa2\x53\x70\x07\xe1\xc3\x22\ \x77\xa0\x07\x62\x60\x35\x33\xcb\x08\x33\x2b\xb3\x33\xa5\x86\xab\ \xb1\x60\x69\xbb\xa9\xb9\x98\x93\xaf\xc0\x23\x9e\x48\x1a\xd3\x31\ \x17\x3d\xfc\x80\x39\xa6\xd1\x73\x3a\x0c\xd5\xec\xdb\x68\x55\x4d\ \xd5\xc4\x07\x53\x20\x85\xb3\x05\xe1\xe8\x9d\x66\xe9\x8d\xd8\x6e\ \xb0\x80\xe9\xcd\x83\x1b\x98\x5e\x73\x62\xa1\x3e\x50\x64\x21\xe0\ \x69\x48\x2e\xe7\x19\x22\xbb\x40\x34\xd2\xc2\x1d\xd0\x7f\x79\x25\ \xdc\xdc\x64\x30\xe8\x61\xdf\x78\x42\x1c\x59\x09\x5a\x30\x00\x06\ \x6c\xcd\x2c\xe5\x9e\xb9\x74\x01\xba\xec\x85\x54\x1d\x68\x8a\xa8\ \xb9\xfb\xb1\x98\x53\x20\x06\x59\xd8\xe5\x5e\xd6\x18\x33\x3b\x53\ \x5e\x7a\xba\xdc\xdd\xc0\xfc\x08\xdb\x7e\xa4\x0b\x5f\x5c\xb6\xd4\ \xc1\x99\x90\x66\x66\xd2\x43\x0c\xa3\xda\x51\x9d\x3e\x0c\x3e\xc8\ \x03\x52\xd8\x00\x76\x20\x85\xc1\x26\xec\xe8\xa5\xde\x6d\xee\x86\ \xc4\xbe\xe9\xbb\xbd\x81\xea\x3d\x94\xc3\x10\x67\x9f\xfe\xe9\x72\ \x2e\x67\xfc\x34\xd9\xfb\x22\x52\xfe\x74\x9e\xf3\x5d\x14\xdc\x0c\ \x49\xfd\xc4\x91\xfe\x96\x48\x28\xa8\xee\x8c\x22\x30\x80\x08\x2b\ \x65\xd0\x38\x49\xaf\x9a\xcb\x26\x38\x02\xd1\x45\xda\xc0\xb4\x42\ \x09\xa0\x42\xc0\xa9\x1f\x8d\x11\x63\x10\x63\x81\x26\x98\xce\x73\ \x51\x2f\xa9\x71\xb6\x39\x29\x88\x11\xca\x8f\x75\xa9\x16\xfc\xa0\ \xeb\x45\x91\x09\x41\x9d\x01\x43\x19\xbd\xf8\xca\x48\x1d\xc5\x07\ \xc0\xde\x80\x0d\x20\xec\xc1\xae\xdb\xc3\x96\xe9\xbf\x56\xec\x16\ \x6e\x6c\x47\x46\x8c\x9d\xe6\x69\x08\x11\x67\x14\xe8\x03\x0b\x29\ \x52\x7c\xe9\xcf\xc4\x60\xea\x98\xd5\xcf\x49\x5d\x5c\x27\x84\x22\ \xfd\x54\x5c\x28\x1a\x6d\xd2\x46\x3b\x22\xd0\x18\x07\xe0\xb1\x1f\ \x10\x5a\xd4\x20\x83\x2a\xee\x6a\xaf\xa6\xed\xd9\xa6\x6d\x53\x29\ \x33\xb1\x7e\x5a\xa8\x65\x01\xd9\xfb\x9f\x0f\x72\xb6\xb7\xc8\x85\ \x63\xbe\x43\xb8\xe0\x5d\xf2\xa3\x0e\x18\x63\x4c\xe4\x78\x14\x8e\ \xe3\x38\x43\x29\x1e\xa3\x4a\xbf\x3a\x08\x82\xe9\xae\x6e\xc1\x66\ \x69\xec\x36\x6c\xed\xce\x83\xc4\x76\xf1\xc6\xce\x83\x23\xb8\x5b\ \xf0\x9e\x61\x72\xe6\x03\x07\xb8\xf1\x0a\x81\x64\xa1\x2e\xea\xe6\ \x41\x1b\x23\x45\x5f\xb5\x52\x5c\xb5\x42\xdf\xfb\xbe\xef\xcf\x50\ \x85\x03\x70\xfe\x84\x29\x88\x44\x4e\xa9\x05\x87\x18\xf0\x15\x21\ \x01\x91\x08\x9c\x8c\x40\x60\x16\xf0\x87\xd9\xde\xa2\x06\xdf\x1d\ \x08\x1f\xc6\x1f\xa0\x70\xc9\x93\x2c\x2a\xc1\xce\x40\xe3\xc3\x15\ \x2c\xcb\xd0\x0b\x3d\x1e\x0d\xdc\x91\x25\x05\x76\x10\xec\x6e\xf8\ \xeb\xc1\x7e\x69\x6d\x16\xe1\x16\x4f\x6c\x52\x90\xf3\x18\x17\x02\ \x43\x5e\xe4\x12\xa0\x71\xfc\x0c\x82\xf3\x86\x10\x1b\x6f\x14\x76\ \x3a\x9b\x49\x3a\xea\xe6\x41\x5f\x80\x81\x6a\x1c\x01\xed\xd1\x8e\ \xf4\x79\x2e\xed\x91\x2c\x50\x20\x6a\x07\x07\x85\xed\xae\xa6\x15\ \xc4\x3c\x6b\x33\xbb\xda\xa8\x2a\x83\x1f\xec\x8c\xdc\x9d\x13\x67\ \x9b\x82\x5a\x98\x70\x19\xb0\x14\x8b\xb6\x99\xa3\x69\x58\xf3\xb4\ \xb6\x39\x4e\x3d\xe6\x09\xf1\xd5\x7c\x6c\xe9\x7e\x73\x3d\x9f\xe9\ \x3c\x4f\x6c\x53\x90\xf3\x3d\x96\xde\x6e\xe0\xf5\x23\xe8\x86\x3e\ \xc7\x07\x22\x20\x27\x07\x10\x02\x07\xf8\x5b\x3d\x98\x61\x14\xe0\ \x03\x9b\x75\x00\x1d\xe7\xd6\x48\xf5\x97\x0a\x01\x85\xa3\x0e\x57\ \xa6\xbe\x11\x95\xb0\x6f\x23\x1f\x6d\x4a\x5f\x89\x33\x40\x81\x4b\ \x17\x88\xdc\xda\xf4\x01\x27\x01\x5d\x3a\x53\xdc\x8e\x5d\x16\x28\ \x83\xa9\xfe\x2a\x75\x53\x0f\x6e\x55\x0f\xf3\x4d\xd8\x40\x3a\xd9\ \x04\x58\x87\x31\xf3\xfc\xb1\x76\x8a\xa4\xe2\x89\x56\xeb\xd5\x51\ \xbf\x26\x76\x9b\x6e\xf1\x16\x07\xf6\x86\xd7\xe6\x6c\x3e\x02\x3e\ \x8f\x71\x3e\x37\x10\x1c\x67\x76\x08\x39\x14\x68\xaf\x10\x07\xe0\ \x78\x07\xe8\x05\x07\xf0\x17\xfc\x84\xf6\x0b\xb9\x10\x50\x40\x81\ \x6d\x5f\x87\x01\x05\x05\x27\x7c\xc2\xa4\xe6\xcd\x23\x4f\x28\xb2\ \x21\x62\x1e\x53\xf7\x28\xdf\x1b\x12\x68\x37\x33\xba\x42\x3c\x72\ \x16\x56\x87\xf0\x0f\xa2\x70\x11\x91\xb6\x72\xd9\x84\xf5\x8a\x1d\ \xbc\x78\x83\xa3\x23\xbd\xd2\x43\x27\x93\x1e\x3b\xeb\x3d\x8c\x16\ \x56\x78\x18\x3f\xdb\x85\xb7\xdb\x3e\xee\x5b\x19\xbf\xe9\x3c\x98\ \x85\x23\x90\xf1\x66\x77\x80\x59\x70\xf6\x6a\x87\x7a\x14\xe0\x78\ \x22\x30\x00\x8f\x37\x7b\x6b\xbf\x90\x0a\x79\x05\x93\x47\x79\x50\ \xd8\xf6\x71\xa7\x7b\xdf\xa0\x7b\xb3\xa3\x14\x14\x10\x70\x9b\x5f\ \x91\x41\xf8\x28\xb5\x16\xc0\x43\x93\xb6\xb9\x28\x08\x56\xf7\x5a\ \x42\x82\x8f\x4d\x00\x56\xaf\x60\x4c\xf3\x74\xcf\xe6\x26\xf8\x92\ \x3e\x10\x36\xbf\xde\xf8\x44\xec\x15\x27\x64\xc3\x9e\x61\x21\x68\ \x6c\xfe\x21\x38\x82\x59\x88\xf1\x6e\x38\x02\x66\x17\x7b\xf2\x16\ \xf4\x44\x0f\x02\x14\x30\x80\x27\x25\x02\x8e\x47\x01\x9b\xd5\x71\ \xb7\x7f\x85\x3e\x90\x7b\x14\xe0\xe4\x95\x27\xf2\x47\x67\x6a\x4a\ \x77\x6a\xa7\xbe\x38\x3d\x40\x11\xbe\x47\x22\x9a\xd3\x79\x09\xc3\ \x42\xab\xfa\xa0\xc1\xaf\x92\xc2\x0f\xfa\x0a\x7f\x8b\x2a\x99\x02\ \x6a\x69\xd3\x3d\x14\x3b\xbc\x56\x69\x21\x30\x14\x15\x3e\x2a\x6a\ \x5d\xe1\x85\xc7\xe9\xce\x17\xf6\x3c\xe0\xdb\x43\xe9\x5b\xea\x8d\ \x78\xd0\xf7\x7a\x03\x30\x80\x23\x30\x80\x12\xa8\x10\x47\x16\xea\ \x6c\x77\x00\xb4\x47\xfb\x8e\xef\x03\xd8\xef\x03\xf9\xd3\xff\xda\ \x97\xbf\x75\xc8\x7d\x48\x07\x08\x55\xaa\xd6\xac\x19\x48\xf0\x20\ \xc2\x84\x0a\x11\xd6\xe1\x41\xe2\x1f\xc4\x88\x12\x27\x52\xac\x68\ \xf1\x22\x46\x89\x83\xc6\x0d\x93\x20\x01\xdc\x87\x0f\x67\x64\x20\ \x94\x91\xab\xd6\x94\x5a\xb9\x7e\xfc\xc8\xb5\x69\x93\x8c\x97\x9b\ \xe6\xcd\xdb\x34\xe5\x07\x99\x1f\x2a\xc9\xdc\xeb\x49\xa6\xc9\xcf\ \x26\x4d\xf8\x34\x81\x03\x27\x08\x1c\x21\x4a\xf9\x04\xe1\xe3\xf4\ \x69\x10\xa5\x42\xf2\x08\xe9\xd6\x2d\x4f\x9e\xab\x58\xa9\x32\x95\ \xfe\xca\x34\xc8\x8c\xa6\xb3\xf2\xcc\xb2\xaa\xcb\x89\x18\x27\x47\ \x8e\x58\x60\xeb\x80\x0f\x0a\x14\x41\xf4\xcc\xa8\xab\x07\x4e\x2f\ \x07\x47\x0c\xf0\xe5\x9b\xf7\x55\xaf\x5e\xaf\xf8\xf2\x78\x65\x18\ \x54\xe1\x75\x02\xc1\x0c\x54\x05\x86\xf1\xc2\xc8\x92\x09\x16\x99\ \x81\x24\x23\xe6\xcc\x9a\x31\x27\xfa\x00\x6e\xc7\x19\x85\xf3\x64\ \xa8\x2c\x9d\xd2\xe5\x4c\x9a\xaa\x37\xad\xc4\xd9\xb2\xd6\xa8\x7b\ \xa3\x72\x36\x99\x32\x45\x68\x51\x3e\x46\x9d\xe2\xc3\xf7\xf5\xa9\ \x53\xa5\x5b\xb3\x5a\xb8\x7a\x23\xcf\x0d\x21\xb3\x84\x3c\x65\xde\ \xd4\x69\x89\x1b\x56\x9d\xa0\x15\x64\x45\xc2\x20\xb5\x23\xba\x1d\ \x99\x55\xa2\x4f\x1f\xb9\x74\x67\xe8\x89\xeb\xa0\xaf\x81\xf3\xe8\ \x09\x8f\xe0\x31\xe2\xf0\x2b\x1e\x60\xd6\x3c\x36\x28\xd0\xe0\xe4\ \xfc\x07\x1d\x3e\xdc\xec\xff\xbf\x66\x16\x14\x51\x84\x68\xb9\x18\ \x78\xe0\x49\x2a\xbd\xb4\x1a\x4d\x27\x91\x91\x53\x4b\x53\xc4\xf6\ \x20\x4b\x42\x4d\xf1\x01\x1c\x43\x0d\xc5\xc7\x1b\xbd\x39\x17\xc4\ \x73\x7c\x08\x87\x5c\x56\xdd\x14\x77\xdc\x72\xce\x05\xe7\xd4\x2c\ \x16\x48\x47\x9d\x13\x1b\x6c\x20\x88\x04\x56\x58\x21\x88\x18\xfe\ \xba\x74\x33\xc2\x0d\xe9\x81\x07\x9e\x1e\x73\xe9\x51\x9e\x03\x0e\ \x94\x50\xe4\x7a\x83\x19\x30\x02\x93\xed\x19\xc6\x03\x28\x8c\xd5\ \x57\xd0\x7d\xfa\xe9\x57\xc4\x08\xfd\x01\xb8\x25\x97\x14\x25\x32\ \x1f\x42\xa3\x9d\x84\xda\x4b\xb5\x98\xb9\xa0\x6a\x35\x6d\xc2\xd2\ \x28\xa3\xb4\xb4\x12\x19\x6d\x3e\xf8\xa0\x6d\x67\x7c\x90\x9b\x53\ \x1d\x72\x05\x22\x88\x22\x4a\x95\x15\x56\x57\x59\x80\xdc\x52\xc1\ \x1d\x97\x9c\x55\x56\xdd\xc0\xd6\x2a\x33\xd6\x78\x63\x76\x6d\x75\ \x67\x40\x09\xdf\x89\x67\x57\x5c\x7d\xf4\xd2\x07\x92\x06\xbc\xe2\ \x40\x2f\x7c\x1d\xd1\x64\x61\xf1\xc9\x07\xc6\x3a\x90\x39\x06\x99\ \x95\x92\xbd\x42\x82\x96\x5d\xca\xda\x65\x22\x75\xac\x51\x84\x0c\ \xb9\xd6\xa2\x13\x6a\x06\x9a\x89\x5a\x9a\x35\xad\x34\x1b\x19\xb5\ \xb0\x86\xd3\x84\x73\x4e\x61\xe7\x14\x19\xbe\xf1\xac\x10\xbd\x7d\ \xc5\xa7\x54\x7f\x1e\x3a\xd5\x58\x25\xf8\x59\x56\x37\x4e\x58\xb5\ \x5c\x09\x20\xce\x00\x87\x05\x34\xda\x88\x9d\x05\x16\x70\xc2\xe4\ \xa4\x3f\x0e\x69\x57\x79\xe6\xa1\xd0\x4b\x09\x7c\x39\xa0\xe4\x92\ \x4e\x3e\xc9\x43\xaa\xeb\x28\xb6\xd8\x94\xad\x2a\xf4\x6a\xfe\xac\ \xb3\x1a\x0c\x20\x09\x6b\x98\x64\x20\x4b\x66\x1a\xbb\x89\x0b\x27\ \xc9\x94\xe6\x9a\x3f\xcc\xa6\x53\x4c\x70\xc6\x36\x9b\x9b\xb9\x9c\ \x71\x46\xb3\x42\x71\xf8\xac\x6f\x47\x85\x15\xd5\x52\x25\x4c\x95\ \x5c\x1e\x7c\xa8\xac\x2d\x1f\xdc\x7a\xeb\x84\x05\x42\x80\x05\xa2\ \xad\x33\x68\x63\xe3\x8d\xab\xdc\x70\x43\xba\xe9\xf2\x68\x00\x78\ \xe2\xbd\x1b\x2f\x0a\x9a\xe2\xdb\x97\x7b\x23\xf0\xf5\x0a\x28\xa6\ \x82\x82\xd8\xbf\x8f\x3d\x26\x70\x42\x96\x15\x7c\x30\xd7\x9b\x91\ \xf0\xca\x81\xbb\xea\xe4\xb0\xb1\x2e\x40\x2c\x93\x4c\x6c\xba\xd9\ \x92\xb0\xc8\x52\x48\xc6\x14\x1e\xdf\xd6\xc4\x9d\x42\x75\x88\xcf\ \x1b\x47\xf1\x09\x73\x70\x57\x29\xa5\xad\x52\x88\x52\xd7\xcd\xa2\ \x37\xc0\x31\x60\x58\x75\xd4\xc1\x87\x75\xd7\xf9\x1c\x5d\xba\xba\ \x8c\x70\x44\x8f\xe1\xc5\x65\xf4\x90\x71\xf5\x82\x02\xa8\x4b\x2e\ \x39\x2a\xa9\xfb\x42\xb9\xce\x2b\xa9\xae\xca\x2a\xd6\x45\xf0\x90\ \x48\xd7\xad\x6f\x49\x82\x03\x0c\x93\x7d\x26\xda\x31\xa9\xa9\x76\ \x9c\x2e\xd5\xc4\x26\x84\x71\x1f\x68\x5b\x6d\x77\x66\x38\x32\x53\ \x27\x37\xd5\x94\x10\x87\x12\x9a\x7c\xa2\xdf\x32\xe7\xfe\xd4\x0c\ \x04\x16\x11\x44\x1f\x7c\x94\x2b\x81\x20\x83\xdc\x50\xe9\x0d\x23\ \x04\xed\x74\x09\xaf\x58\x8e\x42\xe6\x48\xcf\xdb\x47\x5f\x93\xb3\ \x4b\x2a\x0f\xab\xf3\xbb\x4e\x94\xf7\x05\x2c\x70\x11\x16\xc0\xea\ \x3a\xfe\xfe\x59\xe0\xab\x4b\x06\xa2\xcd\x1a\xda\xe6\x91\x8b\x36\ \xb5\x89\x25\x69\x8b\x93\x6b\x5e\xe3\xb1\x5c\x00\x6f\x6e\x17\xba\ \xcd\xb3\xe0\x60\x3c\xe8\x64\xc5\x5b\xc7\x69\x8b\x55\x8e\xa0\x1c\ \x3e\xcc\xa0\x0e\x95\x09\x02\x81\x6e\xd5\x07\xb4\xac\x42\x0c\x62\ \x58\x85\x05\x2a\x55\x82\x59\x74\xaf\x85\x3d\xb2\xd4\xe5\xca\x33\ \xa4\x19\xce\x0b\x5f\x23\x38\x41\x93\x48\x35\x82\x44\x40\xc9\x30\ \xff\x12\xc8\xbf\x04\xd6\x07\xd6\xe5\xaf\x88\x9b\x19\x81\x4b\x14\ \xf4\x12\xfe\xbd\x24\x26\xa4\xc1\x1d\x4b\xfa\x47\xc0\x02\xbe\x69\ \x25\x70\xc2\x49\x9d\x64\x70\x86\x0c\x19\xa5\x2e\xd4\xca\x83\x13\ \xd8\xb1\x8a\xab\x18\x60\x16\x94\x13\x82\x5c\xc0\x22\x3d\xc5\x85\ \xb0\x08\xdd\xb0\xd1\x06\xb2\xb3\xbd\x15\xae\xd0\x3b\x65\x34\xc0\ \x11\x06\x53\xb4\xb8\x94\x0f\x0c\x7a\xf0\x23\x28\x34\x65\x00\x22\ \x8c\xea\x00\x07\x18\xc1\x21\x9b\xd6\x9e\xa8\x81\xfe\x42\x31\x56\ \x53\x8c\xc0\x0c\x70\x3f\x23\x52\x32\x23\x24\xb8\xc1\x98\x00\xa8\ \x12\xb3\xf5\xca\x4c\x16\x83\x90\x4e\x96\x88\x0a\x02\xe6\x24\x6c\ \x73\xa2\x53\xdc\x72\xa5\x45\x0c\xe9\x6d\x06\x22\xb2\x40\x8c\x04\ \x21\x08\x27\x38\xa0\x4f\x28\xa8\x4b\x1d\x3a\x78\x90\x5c\xd6\xc5\ \x95\x62\xc0\x8e\xcf\x84\x00\x1e\x3a\xf6\xe1\x3b\x47\x9a\xc5\x2b\ \x66\x41\x29\x07\x84\x07\x69\x43\xf2\x63\x79\x02\x43\x04\x03\xe0\ \xf0\x04\xba\x38\x80\xe4\xda\xb3\xc3\xc2\x8c\xee\x91\x51\xb2\x92\ \x1e\xb2\x54\xc9\x71\x66\x24\x11\xa7\x61\x22\xda\x1c\xe6\x1a\x54\ \x34\xec\x57\xb0\xd9\x18\xaf\xc4\x86\x93\xde\xf5\x6f\x24\xb8\x0a\ \x89\xde\xa2\xd2\xad\x0d\x78\x64\x15\x42\xe8\xe0\xc9\x3c\xa8\x38\ \x0f\xde\x2a\x08\x65\x41\xcb\x20\x50\x28\xcc\xea\xa9\xf0\x3b\x3f\ \x2a\xe6\x0a\x9f\x66\xb9\x78\xad\xe3\x99\x99\x93\xe6\xe4\x70\x78\ \x48\x24\xb4\x8f\x49\xed\xeb\xa6\xbf\xa6\x06\xa6\xc9\xe8\x61\x92\ \xe4\x3c\x69\x45\xcc\x59\x9a\xff\xb1\xc6\x93\x2c\x79\xe9\xae\xd4\ \x79\x8f\x30\x8c\xa2\x34\x2c\x81\xd0\x4a\x6e\xa2\x92\x03\xcd\xe3\ \x56\x76\x82\xc3\x07\x90\x22\xa2\x6e\x88\x41\xfe\x46\x62\xf8\xe7\ \x80\x0c\x0a\x96\xb0\x74\x70\x40\x42\x58\x05\xa4\x56\x31\x8b\x3e\ \x19\xb3\x52\x0f\x05\x8f\x61\x06\xa3\x4c\xf1\xf1\x91\x8f\x7f\x24\ \xcf\x3a\xa4\x49\x84\x1c\x1e\xd2\xa3\x1f\xe5\x97\x2a\xfc\x05\x86\ \xa8\xa1\x4e\x21\x45\x90\xe4\xd6\x50\x2a\xd7\x7f\xe8\x22\x41\x65\ \x5a\xa2\x4a\x58\xc2\xce\x1f\xec\xf5\xa5\x6d\x9a\x69\xb1\xc4\x26\ \xa7\x5a\x64\xac\x61\xbc\x92\xc1\x68\xce\x40\xb7\x0f\x8c\x2b\x29\ \x42\x38\xc2\x09\xb8\x63\x80\x20\x28\xce\x7a\x35\x63\x61\x77\x96\ \xa3\x0b\x59\x0e\x82\x13\x36\x03\x11\x44\xad\x4a\xbd\x62\x3e\x34\ \x7c\x77\x7c\x45\x5c\xd6\x81\x82\x8a\xfe\x31\x73\xf3\x1a\xeb\x0d\ \x11\xd9\x24\x24\x20\xa1\x3d\xdd\x44\x15\xe9\x40\x51\x25\x85\xd4\ \x21\x11\x71\x9d\xab\x5c\x13\xd1\x8b\x87\xfd\x6a\x13\x9e\x74\x13\ \xc7\x0a\x28\xb6\x38\x5d\xec\xb8\x05\x1c\x93\x4b\x6b\x8a\xa0\xb9\ \x31\x16\x0e\x79\x22\xe4\x5a\xde\x02\xa2\x59\xac\xa2\xbb\x8d\x12\ \x43\xf6\x1a\x35\x88\x41\xe8\xc2\x3b\x4c\xd1\xd6\x68\xbf\x03\x5a\ \xd2\x62\x95\x53\x83\x11\x1f\x28\xc8\x47\x3e\x68\xea\x21\xac\xbd\ \x20\x02\x6c\x99\x54\x56\x6d\x88\xa1\xb6\xfe\xed\xf1\x17\x80\x45\ \x2a\x10\x85\xf4\xc2\xb7\xc0\x3d\xf0\x44\x48\x60\x20\x17\x28\x71\ \x80\xcc\x9d\xe2\x9b\x8c\x0b\x5d\xc1\xb6\xc9\xa5\x2f\xb5\x58\x85\ \x75\x82\xc5\x33\xd4\xe1\xa7\x4d\x70\x00\x3e\xd6\x42\x04\xe5\x38\ \xa0\x2c\x83\xd8\x00\x78\x07\x21\xcb\xec\x51\xa7\x66\x0d\xa5\x9e\ \x53\xa8\x17\x84\xa4\x5d\xd5\xbd\xf7\x02\xd5\xe6\xe2\xcb\xda\x21\ \xa9\xf6\xbe\x4b\xca\xef\x6c\xc5\x30\x02\x8e\x42\x6d\x6a\x21\x8d\ \x5f\x41\x0e\x32\x03\x87\x20\xb8\xc9\x12\x21\x42\xc3\x5c\xa2\xb6\ \x29\xe6\xe4\x61\x19\x63\x8d\xc6\xfc\x31\x8a\x03\x61\x18\xb9\x54\ \x74\x4d\x2a\x65\xd0\xe1\x2d\xc2\xe1\x0d\xd8\x25\x82\x91\x84\xc0\ \x09\xef\xae\x82\x13\x81\x48\xa8\x8b\xbc\x43\xc7\x17\x5f\x35\x53\ \x7d\x10\x1f\x56\x8b\x94\x97\x3e\x04\x32\xbe\x33\x1c\x52\x60\x06\ \x19\x5b\x8d\x32\xa9\xbf\x3b\x1c\x41\xd4\xe0\x03\x25\xc6\xe0\x07\ \x05\x26\x75\x72\x93\x49\x70\x84\x76\x12\x90\x25\xf7\x40\xa0\x4a\ \x68\xb2\x44\x86\xc5\x49\xcb\xc6\x3a\x49\x97\xa7\x88\x8a\x51\xea\ \xa4\x41\x23\xd1\x62\x87\xcb\x4c\x48\x34\x06\x61\x85\x26\x4a\xd7\ \xcf\x5c\x74\x03\x39\xb3\x50\xce\x55\xfe\x65\x6f\x78\x72\x8d\xe7\ \x4d\x69\x4a\x53\xf3\x22\x1f\x8f\x57\x1b\xe8\x11\x10\x81\xd0\x88\ \x44\x82\x36\x6a\x4b\xe4\x8f\x22\x66\xd1\x03\x56\xc5\x2b\x88\x08\ \xe9\x69\xff\xa3\x09\x53\xbe\x49\x97\x0d\xb8\x1a\x50\x8f\xc2\x1f\ \xb2\x89\xa7\x5e\xc9\x30\xca\x51\x98\xa1\x80\xa8\xc8\x05\x4d\x9e\ \x98\x0b\xc4\x0e\x08\x43\x6f\x28\x12\x53\x5c\xd6\xa2\xa0\xfd\xec\ \x67\xb5\xf6\xce\x2c\x6c\x6d\xcc\x3a\xff\x88\xd7\x81\xe9\xf5\xbc\ \xea\x2b\xec\xc0\xdc\x17\xb6\x38\x94\xed\x90\xcb\xda\xbe\xa8\x2d\ \xbc\x7d\x3f\x54\xc5\xa3\xa9\xed\xe4\x44\x60\xb8\x77\x7f\x6d\x93\ \xff\x0a\x6b\x31\x6f\xd7\x14\xdb\xf2\x9c\xa2\x3f\xb4\x5c\xd3\xd4\ \xac\x69\xdd\x3d\x55\x98\xbb\x89\x00\x17\x88\x26\x2f\xd6\xb0\xb6\ \xb7\xad\xf3\x6d\xd5\xa2\xe5\xfa\xa1\xe2\x0b\x0c\xe7\x34\xb5\xb9\ \xd4\xce\x8b\xe0\x7c\x21\x76\x35\xc9\x5a\x5b\x66\x2f\x3c\x3e\x8d\ \x04\xa2\x81\x25\x4e\x6d\x12\xe8\x82\x1e\xa0\x64\xae\x96\x8b\xd5\ \x52\x07\x8d\xc2\x0b\x5a\x7e\x0d\x4c\xbb\x1c\x72\x66\x68\xd9\x05\ \x9a\x5e\x53\x6a\xd2\xad\xc5\x29\x8c\xec\x2d\x0c\xad\x37\xd0\xea\ \x9d\x6f\x16\xda\x7b\xe6\x7d\x90\xfe\xf1\x8f\x6e\xae\x29\x66\x3a\ \xe0\xd7\xbd\x80\x03\x28\x36\xe7\xf3\x69\xc6\x56\x7d\xb2\x4d\x36\ \xfb\x4c\x75\xd6\x54\x21\xe1\xb7\x4a\x6f\x32\x11\x20\x24\xa7\x8d\ \x3d\x8c\xdb\x1b\x7b\xee\xc7\x47\x11\x06\x7f\x4c\x3e\xe4\x23\x57\ \x93\x81\xd2\xb4\x6e\x2d\x82\xac\x09\x44\x78\x37\x1f\x8a\x59\xc6\ \x7a\xcb\xfa\x67\xba\xb0\x80\x2e\x66\xed\xd0\x5c\xcf\x38\x69\xf5\ \xfa\xd4\x9e\xf5\x4e\xf0\xd9\x4b\xf3\xe7\x63\x3d\x78\x93\x0e\x09\ \x78\x1e\x36\xfb\xac\xed\x4b\xfa\xe1\x95\x4e\x02\x6b\x3f\x58\xf2\ \x2d\x59\xa2\xa5\xbd\xcd\x4e\x50\xfe\xa0\x27\x93\xf7\x02\x4d\x25\ \xef\x26\xb4\x31\x18\x4d\xa4\x81\xc9\x68\xee\x64\xe6\x77\x57\x6f\ \x39\x2e\xd7\x05\xf8\x03\x21\xfe\x40\xcc\xba\xce\x72\x11\xfd\x79\ \x8a\x54\x34\xbd\xe3\x65\xf6\xd3\x1c\x2b\x7e\x63\x0b\xba\xd9\x6e\ \x74\x91\xee\x6b\x1f\x6d\x23\x1e\x7c\x6a\x23\x41\xdc\x39\x21\xa0\ \xb1\xd4\xc4\xae\x74\xdb\xd5\xad\x84\x27\xdd\x83\x3f\x70\x5d\xc8\ \x89\xdc\x28\xa0\xc2\xc3\x48\x98\xd9\x8c\xc6\x12\xa5\x89\x62\x89\ \x0c\x5c\x24\x8d\x32\xc5\x1a\xf8\xe9\xc2\xf8\xa5\x9e\xdb\xbd\xdd\ \xe5\x14\xd3\x5f\x30\xd3\xaf\xfe\xf5\x9c\x58\xf1\x1d\xb1\x31\xc9\ \x09\x94\x55\x7e\xf5\x57\xb2\x69\xc3\x7b\xb8\x07\x47\xc9\xa0\xe1\ \xed\x9f\x93\x91\x00\x94\x91\x52\x28\x31\xcc\x5f\xdd\xc3\xb9\xb9\ \xd4\x3d\x1c\xc3\x31\x70\x9d\x02\x32\x20\xd9\x44\x4c\x3a\x59\x9f\ \x49\x5c\x48\x63\x99\x5d\x1f\xe4\x9b\xe9\xdd\xc0\x06\x9e\xde\x1c\ \x59\x55\x1a\xd1\xd8\xa6\xe0\xd8\xce\xf5\x82\x1e\xd4\x1e\xdf\x15\ \x5b\x6c\x19\x52\x59\x39\x0d\x93\x68\xc3\x01\x20\xdb\xb2\x25\x82\ \x36\xe9\x9f\x0d\x4a\x9c\xa4\x55\x1a\x4c\x4d\x51\x01\x19\xd7\x00\ \x32\x43\x11\xfa\xc3\x0b\x30\xe0\xd8\x44\x0c\x12\xe2\xd5\x4c\xdc\ \x55\x2e\x48\x8f\x2b\x81\x1e\xa7\x14\x13\x14\x9a\x1e\xf8\xb5\x5d\ \x78\xcc\x58\xbc\x84\x07\xc1\xc5\x90\xde\x11\xc1\x7d\xa5\xe0\x0a\ \x6a\x94\x21\xf5\x9d\x7e\x31\x89\x7f\x99\x0a\x93\xc0\x4a\x0d\xb6\ \x21\xa4\x91\x00\x02\x35\x60\x9b\x8c\x1b\x29\x66\x18\x01\x2d\x20\ \x01\x5e\xdd\xec\xf0\xa1\x4c\xc4\x54\x12\x92\x84\x4f\xc1\x81\x03\ \x7c\x18\x09\x1a\xa2\xe9\x25\x82\xf8\xa9\x5e\xd1\xcc\x45\xeb\x39\ \x62\x09\x86\xd5\x6b\x09\x1a\x64\x41\x96\x21\x55\x62\x59\x19\x9b\ \x1a\x9e\xe1\x47\xed\x50\xfe\xe1\x81\x22\x34\x92\x80\x05\x84\x9a\ \x97\x79\xd9\xa8\xb5\x49\xe5\x79\x9b\x3f\x1c\x83\x3f\x54\x99\x99\ \x30\x18\x83\xd1\x0e\xa8\x3d\xa0\x4c\x20\x56\xf6\x79\xde\xbb\xa9\ \xdf\x0a\x21\x22\x07\x7a\x20\x0c\x09\x49\x08\x3e\xe2\xdd\xd5\x1e\ \x25\xde\x90\x05\x24\xe3\xa0\xe5\xd0\xb1\xe9\x50\xe1\x7d\x22\x34\ \x52\xdb\x11\x4c\x11\x4d\x45\xdf\xd8\x60\x58\xc8\x71\xe3\xe4\x0d\ \x21\x4d\xe9\x44\x1a\x18\x57\x38\x9a\xcd\x99\x84\x12\x1d\x1a\xcb\ \x13\xc5\xcd\x14\xbc\xc1\x18\x10\x81\x2d\x96\x98\x01\xa0\x5d\xea\ \x95\xdf\x1e\x05\x49\xa6\x24\xcd\xa6\xc8\x1e\x46\x9d\x40\x31\xde\ \xd0\x01\x9c\x00\x4b\xe6\xe3\x0d\x5d\x53\x0e\xb5\xcf\x2b\x88\xd3\ \x3f\xd6\x64\xff\x61\x18\x02\xca\x86\x03\x1a\x97\xc5\x24\xa4\xe5\ \xa9\x62\x03\xa2\x02\x38\x3a\x8c\x71\x8d\x12\x3b\x91\xcd\x0f\x94\ \x49\xc5\x4d\x01\x19\xd0\x43\x86\xdc\xdd\x79\xf4\xc8\x2b\x44\x87\ \x22\xbe\x1d\x23\x22\x8d\x20\xed\xdd\xed\x19\x23\x22\x9d\x80\x19\ \xae\x24\x4b\x5e\x22\xa1\x29\x9b\x47\xed\x90\x3f\xd6\xa4\xc4\x51\ \x9c\xc5\x98\x01\x4d\x1d\x65\x2d\x8c\x52\x36\x6a\xd9\xe4\x31\x43\ \x5b\x0a\x25\x83\x5d\xfe\xe3\xa8\x4d\x5e\x5d\xbe\xe5\xa8\x49\x59\ \xb7\xc9\x09\x3d\x08\xc5\x9d\xdc\x1d\xa5\x4c\xe5\x2b\xd4\x9b\x15\ \xc6\x45\xeb\xd1\xd8\xd2\xa4\xe0\xa8\x58\xa2\x18\x9a\xa1\x23\x88\ \xa1\x18\xfe\xdd\x19\x9e\xc0\xd0\xb1\x21\x5a\xb6\xa1\x05\x8c\x9b\ \x61\xb5\x49\x02\x2e\x20\xe5\xf9\xa4\x19\x7c\x23\x83\x2d\x40\x18\ \xe8\xe5\x02\x86\x81\x51\x8e\x5b\x2d\xdc\xa5\xe4\x45\x9f\xd3\x5d\ \x48\x86\xa0\x00\x5e\x14\x53\x0b\x21\x93\xa5\xe4\x5a\xd2\x24\x4d\ \x54\xaa\xcf\x63\xaa\x8f\x21\x7d\xe5\x0a\x8a\xe1\x0a\x22\xd2\x21\ \x9d\xa1\x72\xd6\x96\x66\x6e\x66\x1b\x26\xc2\x18\x04\xe5\x35\x1e\ \xa4\x10\x0e\xa1\x68\x72\xe3\x6b\xba\xc0\x5d\xfa\x43\x0d\x88\xa6\ \x3f\x98\x01\x3b\x5d\xe3\x02\x38\xa0\x0b\xac\x25\x29\x96\x5b\x84\ \xe0\x13\x1c\xa0\x80\xa8\x8c\x0a\xa5\xb0\x17\x8d\x85\xc7\x61\x02\ \x67\xb1\x75\x03\x4a\x12\x12\x65\x1e\x63\x65\x26\xa7\x7f\x1d\xa7\ \x36\x68\x43\x73\x3a\x67\x1b\x92\xc0\x1b\x68\xdd\x31\xc0\x80\x10\ \x72\x5d\x77\x72\x23\x77\x86\xc1\x6b\xbe\xe5\x02\x6c\xe3\x31\xd4\ \x00\x6b\x8e\x1a\x5f\x2e\x00\x29\x0a\x65\x2d\xa0\x26\x29\xb6\xe5\ \x81\xd4\x86\x51\xfe\xe0\xd7\x5e\xa4\x87\x10\xbc\xa7\xe5\x84\x0f\ \xfa\xe0\x51\x46\x8d\x0a\x64\xed\xc8\x0d\x7d\xe5\x4a\x76\x03\x65\ \xe2\x9e\x3e\xf6\xa3\x80\xde\x28\x44\x20\x01\x86\x26\xa4\x31\x24\ \x68\x77\x2e\x20\x85\x82\x67\x38\xa2\x66\x0d\x1c\x43\x18\x8c\xa7\ \xc3\xe0\x65\x50\x9a\x09\x2a\xb0\x25\x78\xb2\xa5\x03\xee\x0a\x9d\ \x68\x9f\x99\x39\x00\x9a\x15\x49\xdd\x51\x4f\xbd\xf4\x05\x8b\x3e\ \xe6\x11\x18\xe7\x01\x74\x03\x71\xb2\x64\x71\x8e\x65\x8d\x9e\x25\ \x8e\x06\x1f\x09\x74\xc3\xd6\x09\x61\xc8\xa5\xe6\x41\xb6\x25\x93\ \x8e\x1a\x6a\x96\x5b\x94\xa6\xc1\x5b\x8e\x02\x86\x8e\x12\x86\x8e\ \xe7\x02\x98\x41\x0d\x98\x81\xa0\x2e\x80\x99\x44\xe8\x6c\xce\x0d\ \x11\xec\xc0\xe7\x39\xc0\x1b\xf4\x42\xe8\x71\xca\xa8\x9c\xc7\x34\ \xe1\x91\x31\xae\xe0\x7f\x86\xe9\x31\x7e\x69\x7e\x1e\xdc\x46\x9d\ \xa1\x8d\xa6\x69\x9a\xee\xc0\x41\x5a\x1e\x68\x86\x1c\x78\xa6\x01\ \xa0\x1e\x29\x5f\x3a\x20\x9e\xa6\xc1\xa8\x09\x2a\x29\x62\xa8\x93\ \x86\x01\x85\x86\x41\x69\x6a\xa7\x0b\x4c\x9e\x19\xac\x1b\x53\xd2\ \xc3\x18\xec\xc0\x11\xd0\x83\x46\x5e\x29\x9a\xe1\x57\x91\xe0\xd7\ \xfb\xc9\xa8\xfe\x23\x08\x82\x23\x98\x21\x99\xb2\x24\x8c\xae\xa4\ \x3e\x0e\xd9\x33\x82\x2a\xa8\x72\x82\x68\x92\x22\x90\x2e\x00\x6a\ \x26\xe8\x02\x0c\xe5\x9c\xa2\xe6\x4c\x91\x9b\x9e\xb2\x25\xad\x72\ \xe7\x77\xbe\x26\xc4\x34\xe9\x28\x20\x1f\x50\xec\xc0\x0e\x7c\x86\ \xa2\x66\xe4\xf6\x7d\x5e\xb1\x1e\x01\xb0\x1e\xc0\xb2\x4e\xa6\x20\ \x18\x12\x38\x40\xd6\x0a\x3a\xc2\x64\x82\xe5\xfb\x35\x49\x80\x5a\ \xab\x4d\xbe\xe9\x2a\x4e\x28\x85\x56\xa7\x3f\x7c\xab\xc3\xb4\xea\ \x28\x99\xc1\x9b\xa6\xe6\xac\x16\xe9\x84\xde\xea\x26\xa0\xc2\x9e\ \x9a\x0d\x4f\x02\x0f\x3d\xec\x40\x24\xb0\x80\xa2\x0a\x2b\x19\xf4\ \x82\xb0\x12\xc1\xaf\x1e\x01\x38\x44\xc2\x38\x30\x2b\x0b\x1c\x00\ \x0b\x9c\x40\xcc\x26\xea\xb3\xde\xe7\xfb\xe5\x0b\x9a\x22\x2c\x34\ \x12\x01\x4d\x51\x67\x75\x56\xa7\x83\x16\xe5\xa8\x59\xe8\x28\x91\ \xea\x4c\xc1\xa9\xc3\xb2\xe6\x76\xda\xaa\xba\x12\x25\x6b\x34\x01\ \xbc\x7e\x46\xc8\x12\x81\xb0\xc6\xeb\x3e\xe0\x57\x46\xc2\x2b\x4a\ \x02\xeb\xbf\xfe\xab\xa2\x16\x23\xb2\xe2\x57\x60\xf0\x40\xb5\xf2\ \x2c\xc2\x92\xc0\x4c\x49\xe8\x31\xf4\xe8\x84\x3e\xac\xd9\xb8\xc0\ \xa0\xea\xfe\xe9\x35\x4e\x5e\x2a\x1e\x64\x91\x72\x67\x0d\x10\xea\ \xc6\x51\x5e\x94\x3e\xa8\x4c\xb4\x06\x19\x8c\x41\xc8\xc2\x2b\xe1\ \xc2\x6b\xe2\x3d\x50\x13\xd0\x43\xca\xc2\xab\xa2\x22\xeb\xbf\x92\ \xed\x7d\xf5\x42\x58\x1d\x2c\xda\x6e\x26\x12\x88\xaa\x10\x1a\x43\ \x19\x20\x28\xd3\xde\xa5\x9d\x16\x2d\x5b\x92\x6a\x18\x08\xed\x36\ \x76\xa7\x9e\xc6\xa6\xad\x1a\xad\x85\x7a\xd2\xa7\x31\x10\x3d\x80\ \xc3\x3e\x28\x6a\x6d\xd8\xc6\xb2\x10\x84\x62\x31\xae\xa2\xce\x2b\ \x2c\x78\x1e\x7e\xc1\x82\x46\xf6\x02\x2c\xf4\x02\x4d\x5e\xee\xe5\ \x1e\x00\xe5\xb5\x6d\x19\x4c\xa8\x86\x6e\xa8\x9d\x82\xee\x6a\x4a\ \x1e\x33\x1c\x43\x15\x84\x5c\x77\xda\x2a\x36\x12\xa4\xe8\x86\x2e\ \x92\xc2\x44\x2e\x90\x01\x0b\x4c\x03\x38\x3c\xc8\x02\xdd\x44\x2e\ \x10\x84\x0c\xf4\x2a\xe1\x26\x1e\x2c\xc0\x81\xd5\x82\x83\xbd\xf6\ \x42\x13\x0c\xd9\xce\x1a\x6f\x4d\x92\x00\x38\xf8\x83\x31\x78\x80\ \x31\xd4\x00\x79\x6e\x28\xdd\x32\xa9\xb9\x56\x5e\x42\x22\x24\xb9\ \x72\xac\xf4\x05\xe5\x78\x36\x69\x6a\x86\xe7\xd8\x98\xc9\x28\xb0\ \xc0\x31\xb0\xc0\x3d\x4c\x81\xed\x98\x84\x01\x3d\xd1\xda\x30\x25\ \x6e\xfe\xc0\x82\xcb\x72\xed\x58\x59\xae\xfd\x0a\x28\x09\x1c\x83\ \x08\xf4\xaf\x86\x16\xad\x9f\x72\xac\x5e\x4a\xde\x36\x96\xee\x10\ \x96\xa6\x5e\xe5\x69\x9b\x94\x5b\x6a\x96\x2b\x6b\xce\x29\x5f\x52\ \xec\x04\x33\x43\x52\xfe\x61\x99\xac\x8d\xc5\x34\xcc\xb2\x84\xc4\ \x6d\x00\x6b\xbe\x72\x42\xfd\x8e\x30\x5a\x92\x80\x18\xf4\x28\x2a\ \x40\xcc\xaa\x36\x69\x0d\xfc\xe8\x77\xfa\xe4\x36\x52\x9e\x86\x59\ \x28\x9b\x60\xa8\xde\x1e\x29\xa1\x32\xa9\x74\xf2\x30\x42\xfa\xce\ \x03\x86\x63\x93\x8e\x8d\xff\x28\xcc\x16\xd1\xc3\x1b\x78\xde\xd9\ \x32\xf1\x08\x1f\x40\x14\xd3\xa1\x76\x6e\xa8\x84\x56\xb1\xd2\xba\ \xa9\x01\xa7\x66\x18\x14\x24\x6a\x36\x28\xb9\x8d\x9a\x0b\x20\x70\ \xb9\x01\xea\xdb\x7e\x27\xdd\x5a\x28\xae\xde\xb1\x50\x26\xd1\x4c\ \xa0\xef\xdc\x14\xaf\x1c\x33\x31\x09\x4c\xc1\x50\xde\x31\xa0\xbe\ \x70\x01\x07\xad\x10\xc2\x69\xc8\x09\xe5\x0f\x50\xac\xa9\xd2\xe9\ \xa8\xa5\xc1\x9f\x5a\x6c\xde\x66\xac\xa0\xde\x30\x92\xe2\x69\x23\ \x97\x89\x4b\x20\xd6\x1a\x74\xde\xa7\x56\xb2\x1c\xab\x94\x03\xd6\ \x6d\x16\xd3\xaa\x27\x0b\xad\x0b\x07\xaa\x99\xf0\x70\xa0\xd2\x29\ \xfe\x78\x36\xe9\x17\x77\x67\x91\x0e\x2a\xa0\x0e\x6a\xd1\xa6\x01\ \x34\x3f\x28\x1a\xd7\x82\x6a\x9c\x01\x11\xc4\x31\x2e\xcb\xf1\x11\ \x38\x6f\x27\x1f\x03\x22\x07\x6d\xf4\x3a\xe9\x02\xa3\x42\xde\xda\ \xa9\x19\xc8\x6a\x15\x0b\x61\xa0\xfa\x72\x15\x33\xf3\x02\xb8\xaa\ \xab\xbe\x33\xc7\x36\xf3\x31\x07\x20\x4d\xc0\x55\x36\xe7\x33\x09\ \x8c\x41\x37\x07\x29\xc6\xaa\x33\x83\x06\x6a\x3b\x93\x1b\x9c\x52\ \x28\x9d\xea\x29\x0c\x33\xac\xa0\xae\x72\xa0\x72\x2b\x34\xb7\x43\ \xab\xa2\xf2\x02\x14\x69\x15\xfb\xef\x4e\xae\xc1\x0c\x50\x72\x3e\ \xe3\x32\x09\xec\x80\xc3\x82\x27\x1e\x1f\xc3\xf2\xf2\xb1\x3a\x7f\ \x27\x5b\x5e\xef\x0d\x23\x30\x91\xa6\xb3\xad\x7e\x73\xc6\x3a\x74\ \x3b\xb4\x83\x0b\x40\x34\xb7\x56\x74\x15\x73\xeb\x02\x4f\x41\x2f\ \x2c\xf1\x46\x5b\x2b\xb6\x9a\x6a\xa1\x16\x69\x19\x0c\xf5\x2f\xef\ \x6d\x93\xba\xe9\x21\xfb\x69\x2b\x6f\xa3\xa0\x9e\x74\x75\x36\x34\ \x4c\x43\x33\xb7\x02\xaa\x4d\x2f\x40\x3b\x1c\xb4\x46\xf7\x74\x36\ \x93\x00\xf2\x56\xe8\x02\x08\x21\x51\x7b\x72\x15\xd3\x69\x42\x8e\ \xf3\x35\x3a\x75\x53\x63\xec\x48\x9f\xb3\x43\xbb\x00\x34\xdb\xfe\ \xf4\xde\xc2\xb4\x5b\x2f\x00\x3d\x60\xb3\x56\x6f\xf4\x11\x2c\x34\ \x58\x8b\x74\xd0\xb6\xf3\x78\x6e\xb2\x91\x0a\x65\x94\x36\xe9\x49\ \x7f\x71\x5f\x9f\xb3\xa0\x32\xe4\x44\x57\xb5\x44\x43\xb3\x5b\x9f\ \x80\x08\xdf\xb5\xfd\x22\x81\x2f\xff\xb2\x3a\xef\x6d\x2d\xa0\x72\ \x65\x37\x34\x79\x16\xf6\x53\xef\xb5\x37\x37\x35\x2a\xe0\xe9\x62\ \xdf\xf4\x3b\x4b\xb5\x3c\xdb\x8f\x64\xaf\x36\x44\x70\x42\x5f\xff\ \x32\xa1\x9e\xe6\x4a\x4f\x28\x6b\xa6\xc1\x28\x60\xec\x3f\xf3\xf5\ \xf2\x72\x36\xa1\xa2\x2a\x45\xc7\xf5\x3b\xe3\xf4\x02\xec\x40\x64\ \xb3\xf6\x08\x9f\x82\x9b\xb2\xed\xf2\x32\xed\xaa\xfe\xe9\x65\xeb\ \x35\x37\xa6\x33\x51\xef\xb6\xa0\x5a\xe8\x44\x5f\x36\x70\xe3\xf4\ \x28\x1c\x00\x4f\x1b\xf7\xe5\x96\x30\xdb\x3e\x35\xc4\xba\xaa\x31\ \xff\x76\x78\x07\xed\x48\x7b\xf3\x02\x2b\xf5\x6f\x67\x77\x45\xdb\ \xb5\x77\xdf\x35\x09\x48\xf0\x5e\x53\xa8\xc3\x08\x37\x55\xe7\x36\ \x5f\x57\x67\x58\x5b\xf4\x3c\x97\x76\x45\xe3\x77\x0d\x1c\x00\x27\ \xc4\xb7\x81\xff\x03\x0b\xe4\x71\x3b\x8f\xf6\x9f\x1e\x72\x5a\x83\ \xf5\x74\x9b\x70\x7f\x8f\x82\xab\x2e\x74\x55\x2f\xf4\x44\xfe\x4f\ \x34\x80\x76\xf7\x81\x1b\x6f\x82\x57\x71\x83\x22\x76\xb9\x8d\x67\ \xb9\x0a\xf5\x50\x8f\xf4\x89\x0b\x61\x69\xe6\xe5\x6f\x23\xf6\x9f\ \x36\xf8\x70\x0f\x02\x87\x77\xb8\xf1\xce\x77\x5f\x63\xef\x39\x13\ \xb6\x2f\xa3\xb8\x48\x2f\x6f\x58\xaf\xf8\x3f\xb7\x73\x53\xd7\x74\ \x0d\x80\x43\x71\xd3\x38\x2e\xaf\x82\x27\x9b\x74\x0d\x57\xf6\x48\ \x6f\xe3\x74\xfb\xf8\x27\x07\x79\xa0\x36\x35\x55\xef\x80\x18\xcc\ \x38\x92\x8f\xb0\x18\x54\x27\x33\x9c\x33\x41\x3b\xb9\x10\x46\x68\ \x8f\xf3\xf7\x7e\x3f\x75\x95\x8b\xb8\x19\x10\xb7\x96\x6f\xb9\xfd\ \x92\xc0\xd6\x81\xe7\x6c\x6f\xae\x8a\x9b\xf8\x99\x17\x75\x76\x4f\ \xb5\x23\x1c\xb9\x9b\xe7\x33\x12\xb0\xc0\x91\xa2\x42\x65\x8b\xb5\ \x10\x8a\x40\x7a\x2b\x73\x42\x33\x28\x5b\x37\x35\x9b\xf7\x79\x9f\ \x73\x82\xc5\x26\xba\x27\xa7\x78\x83\x72\xa7\x99\x23\xf5\x9f\x06\ \x2a\x64\xb7\xb9\xa3\xcb\x31\x3d\xa0\xeb\x84\xfe\x72\x7f\x37\xb5\ \x84\x86\xb5\xc5\x9e\x73\x18\xec\xc0\x86\x77\xba\xa3\xdb\x78\xa8\ \x43\xb8\x94\x4f\x68\x2a\x43\x79\x7f\xaf\xee\x5b\x36\x3a\xab\x77\ \x3a\x09\x8c\xb4\x89\xc7\x7a\x68\xa7\x73\x99\xb3\xb2\xb7\x3c\x13\ \x01\x9f\xe7\xba\x64\x3b\x02\x7a\x9f\x38\x51\x37\x74\x42\x8f\x74\ \xa6\x57\x31\x3d\x14\xbb\xb1\x4b\x36\x57\xc3\x7a\x7f\xfb\xb3\x50\ \xab\x33\x91\xb3\x80\xb4\x4f\xbb\x64\xbb\x76\x8f\xa7\x38\x76\x67\ \xfb\x4b\x57\xb1\x8c\x7b\x3b\xba\xbb\x76\x84\x97\x34\x7f\xf3\x7a\ \x15\xb3\x00\x80\xa2\xbb\xbc\x8b\x81\xb8\xbf\x3a\x68\x2b\xb4\x91\ \xcb\xbb\xbe\xef\x7a\x7a\xa3\x37\x5f\xdb\x34\x77\xeb\xbb\xc0\x97\ \xb0\xa8\x3f\x35\xa0\xb2\xc0\x2a\x70\xba\xc0\xaf\x36\x7d\x9b\xf9\ \x6e\x17\x69\x96\x2f\xbc\xc4\x93\x80\x20\x2c\xaf\xa1\xf3\x3a\xc5\ \x2a\xb1\xc4\x6f\x3c\xc5\x8b\x7b\x15\x3b\x82\xc6\x6f\xfc\xc6\xd3\ \x7b\x58\xc7\xac\xc2\x8b\x7c\x7c\x57\xbc\x10\x0a\x42\xb7\xa3\x3c\ \x92\x3b\x71\x19\x70\xfb\xc9\xbb\x7c\x7c\x2b\xf1\xcc\xd3\xbc\x81\ \xdf\xbc\xc0\x07\x04\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\ \x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\x8d\x95\x4c\x36\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xde\x94\xb2\x61\x8a\x3f\xff\xff\xff\x4c\x4b\x9b\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd0\x49\x95\ \xff\xff\xff\x9a\xa7\xb8\x53\x68\x1e\xff\xff\xff\x57\xa8\xe4\xff\ \xff\xff\x13\x27\xa8\xff\xff\xff\xd8\xc9\xe7\x10\x27\x6a\xff\xff\ \xff\xf6\x89\xb7\xff\xff\xff\xce\x67\x47\xff\xff\xff\x9a\xf2\xfc\ \xff\xff\xff\xff\xff\xff\xf7\xa7\xb8\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x12\x28\xdf\xd9\xe8\xf8\x28\x47\xeb\xbc\x89\xb7\x4e\x68\ \xf8\xed\x69\xa7\xff\xff\xff\xfa\xc8\xe9\xff\xff\xff\x98\xc8\xfb\ \xff\xff\xff\x7c\xad\xac\xff\xff\xff\xff\xff\xff\xf9\xe8\xf0\xff\ \xff\xff\xb4\x69\xa5\xff\xff\xff\x7a\x88\xb2\xd8\x89\xf1\xff\xff\ \xff\xff\xff\xff\xb7\xc8\xf0\xf6\xb2\xf0\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x35\x8b\xc8\xff\xff\xff\xb7\ \xb3\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x39\x57\xf6\x0a\x18\x61\xff\xff\xff\x6d\x69\xe9\x0a\x18\x1c\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x10\x38\x66\x94\x29\x2b\xfb\ \xc8\xaa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x2b\x36\ \x9a\x5b\xb8\xeb\x7a\xe7\xfa\x97\xb1\xf8\xff\xff\xff\xfb\xfd\xfa\ \x74\x88\xf7\xb8\xd8\xf9\xff\xff\xff\xff\xff\xff\x08\x16\xdd\xfa\ \xd8\xec\xd5\xd9\xef\xff\xff\xff\xb3\x68\xee\xff\xff\xff\xb9\x8f\ \xf5\xda\xae\xf7\xff\xff\xff\x37\x4a\xea\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x6f\x78\x28\xcc\x73\x71\xff\xff\xff\xf5\x99\xb5\xda\ \x98\xf4\x31\x47\x95\xfb\xb8\xbd\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x4f\x2f\x5a\x44\x22\xdc\xff\xff\xff\xc1\xe3\x91\xaf\x2a\x21\ \x93\x14\x51\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x6d\x27\x53\xff\xff\xff\x94\x67\xfa\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\x75\x11\xa9\x79\ \xcb\xf9\xff\xff\xff\xff\xff\xff\x76\xaa\xf6\x95\x35\xd2\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xfa\xed\xbb\xf8\xa8\x8b\xff\xff\xff\ \xff\xff\xff\x34\x1e\xe4\x93\x6b\x71\xf5\x76\x72\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xfa\x91\x8e\xff\xff\xff\xf2\x79\xb6\xff\xff\ \xff\xff\xff\xff\xb8\xb8\x81\xd8\xd7\xa9\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x57\x77\x29\x19\x35\xa5\xff\xff\xff\x8f\x79\ \xa0\xff\xff\xff\xff\xff\xff\x19\x36\xe1\x58\x75\xfa\x99\xd8\xfb\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x05\x54\x79\xff\xff\xff\x21\ \x95\xc8\xff\xff\xff\x68\x7b\xf6\x47\x5b\xf7\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x3c\x7a\x74\x7f\xfa\xfc\xff\xff\xff\xdf\x97\x94\ \x98\x98\xb6\xff\xff\xff\xff\xff\xff\xb7\xb8\xbc\xd8\xfb\xfc\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7e\x97\xfa\xb1\x79\ \xf9\xff\xff\xff\x91\x5b\xfa\x91\x78\xf8\xff\xff\xff\x76\x18\x5b\ \xff\xff\xff\x54\x9a\xe3\x78\xb8\xf8\x84\xba\x84\xfb\xd7\xac\x38\ \x56\x1f\xfc\xb7\x88\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\ \xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x86\x87\x0e\x3d\x9c\ \x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\xe2\xaa\x12\x12\x3b\ \x8a\x1c\x49\xb2\xa4\xc9\x93\x26\x0f\xbd\x3a\xd3\x06\x24\xca\x97\ \x30\x63\xca\x9c\x79\x51\xe5\x99\x9b\x3c\x2e\x84\xa4\xc9\xb3\xa7\ \xcf\x9f\x1b\x0f\xad\xba\x49\xb4\xe5\x4e\xa0\x48\x93\x2a\x05\x6a\ \x93\x28\xd1\x9c\x47\x97\x4a\x9d\x4a\xb5\xe3\x4a\xa7\x4e\x8d\x56\ \xdd\xca\xb5\xeb\xc2\xa6\x58\x9d\x42\xf5\x4a\xb6\xec\xd6\xab\x61\ \xb1\xf2\x70\x69\xb6\xad\x5b\x9e\x42\xd3\xca\x6d\xa3\xf3\xad\xdd\ \xbb\x25\xc1\xca\x0d\x5b\xaa\x2e\xde\xbf\x80\x2d\xbe\xe2\xb1\x77\ \xaf\xd6\xc0\x88\x13\x1f\xd4\x5b\x38\xed\x58\xc5\x90\x13\xa3\x6d\ \xbc\x77\x6d\xd4\xc8\x98\xcd\x32\xa6\x3c\xd7\x6f\xe6\xcf\x5e\x55\ \x12\xe6\x4c\x19\x04\xa2\xcb\xa0\x53\x27\x8d\x4b\x9a\x32\x8f\x75\ \x57\x4e\xab\x9e\xbd\x7a\x72\xeb\x33\xa3\xc3\x92\xbb\x12\x1b\x35\ \xed\xdf\x2f\x07\xdf\xa6\xec\x26\x02\xef\xde\xc0\x93\xbf\xdc\x3c\ \x3c\x2d\x88\x2d\xc7\x91\x2b\x9f\x3e\xd2\x76\x73\xc7\x19\xa2\xf3\ \x96\x4d\xbd\x3b\x46\xd6\xd7\x0b\xfe\xf3\x00\xa2\x7d\xbb\x6f\xef\ \xe8\x11\x32\x77\x4d\xf9\x85\x86\xe8\x54\x8e\x73\x4f\x4f\x3f\xa1\ \xf0\xf0\x8d\xdd\x0c\xe2\x1d\x9f\x4a\x7c\xf3\xf5\x05\x48\xd0\x7a\ \xf8\x61\x85\xce\x71\x5b\x84\x10\xc2\x15\xff\x49\x27\x60\x7d\xd6\ \x15\x18\x16\x0f\x0f\xf0\x16\xc2\x16\x5b\x2c\x83\x61\x74\xf3\x3d\ \xd8\x1d\x78\x12\xee\xf5\x82\x71\xfd\xf8\x71\xc5\x32\xfd\x68\xa8\ \x5d\x87\x1e\x26\x47\x60\x88\x44\xad\xd3\xcf\x15\x7e\x90\x93\x22\ \x39\xd0\x95\xc7\x62\x8b\xb4\x0d\x05\xa3\x78\xd9\x5d\x41\xce\x90\ \x7e\xf4\x93\xa3\x8e\xe7\xf1\x18\xd9\x8b\x3f\xde\xb4\xce\x16\xfd\ \x90\x13\xc1\x8c\xe5\xad\xa8\x24\x6d\x11\x36\x29\x56\x06\xfd\x88\ \x61\x64\x95\xbc\x6d\x08\xe0\x95\x99\x89\x06\x63\x6e\x7b\xad\xb3\ \x1f\x7f\x0b\x56\x19\x25\x87\x49\x92\x69\x17\x88\x5a\x4e\xe8\xc6\ \x91\x61\x56\x09\x25\x8a\x70\xca\x99\x18\x9d\xad\xf1\x20\x68\x1b\ \x6e\xb4\x21\x28\x9a\x13\x1e\xa8\x1d\x9e\x61\x32\x2a\x5f\x9c\x7e\ \x86\xe6\x23\x69\x84\x81\xb0\x0e\x3a\xc2\x44\x10\xc1\x20\x9c\x0e\ \xf2\x8b\x2a\x40\x80\x20\xea\x0b\x82\xe2\x44\x84\x71\xc7\x51\xb1\ \xc5\x9a\xfc\x89\x09\xe6\x8e\xfe\x91\x9a\x95\xa5\x58\x6e\x80\x90\ \xc6\x3a\x65\x64\x40\x4e\x08\xfd\x69\xf7\xdf\x94\x83\x00\x81\x0e\ \x10\x19\xb8\xb1\x0e\x10\x26\x46\xa7\x60\x74\xae\x82\xe9\x60\xac\ \x65\x99\xe9\x18\x0f\x6e\x94\x01\x44\x04\x7e\xf8\x81\xe1\x91\xfe\ \x31\xb8\xdf\x20\x21\x80\xdb\xa6\x98\x11\x24\x18\x01\x39\xff\xa9\ \xda\x26\x83\x57\x38\x5a\x65\x44\xd0\xca\xaa\xd6\x0b\x6e\xa4\x41\ \x44\x13\x65\x48\xe9\xc7\x82\x6d\xa6\xeb\x1f\xb8\x9c\x86\xab\xe0\ \xb2\x55\x0e\x82\x2d\x15\x03\x3b\xab\xf0\x15\x83\xc0\x1b\x2f\x57\ \x71\xf1\xf0\x42\x1a\x4d\x64\x00\x8a\x94\xfa\x96\xbb\xc5\xbe\xfe\ \xf5\xd7\xf1\xbf\x0a\x82\xcb\x2e\xc2\xeb\xc2\x77\xc5\x85\xd9\x2e\ \xac\x70\x3f\xe8\x38\xfc\xf0\x54\x71\xbd\x90\xef\xb9\xd9\x6e\xab\ \x20\xb6\x35\x33\xd8\x31\x30\xda\x8a\xb1\x85\x18\xe1\x26\xdb\xb1\ \x82\x0d\xc2\x47\x45\x8d\xe5\xaa\xec\x26\xcb\xb4\xb0\xf5\xf2\x52\ \xab\x54\x8b\xec\xb6\xcb\x68\xfb\xb3\xaa\x35\x27\xe8\x5f\x08\x7e\ \x9c\x2b\x83\xa6\xd9\x5a\xed\xf1\xc7\xe5\x91\xbc\x05\xcd\xe9\x2a\ \xcd\xdb\x20\xfd\x3c\x50\x8b\x3f\x9e\x3d\xfd\x93\x50\xf9\xfa\xb1\ \xcc\x85\x5b\xa8\xba\x73\xfe\x08\xc0\xf0\x4a\xb4\xaa\x11\x00\x21\ \xa5\xe0\x56\xf3\xaa\x33\xbb\x60\x1e\xed\xdf\xc6\x35\x03\x73\xb5\ \xca\x54\x6a\x40\xcb\xe4\xb4\xb8\x2c\x77\x4f\xaf\x80\xb2\xef\xdf\ \xfc\x6d\xed\x33\xaf\x1f\x1f\x2d\xa5\xa6\xd8\x62\x08\x7a\xaf\xce\ \x76\xac\xb3\xdf\x5c\xd7\x58\x72\x95\x1a\x50\x99\x47\x2d\x2f\xd4\ \x42\x4b\x1e\x96\x5f\x1e\x93\x50\xf1\x40\x47\xb6\xce\x8b\x03\x1d\ \x3a\xc2\x3c\x87\xbd\x0c\xd0\xc2\x23\xbe\x30\xd1\x87\x77\xbc\xb1\ \xbb\xd1\x69\xc0\x76\x3f\xb4\xd4\x62\xc8\xed\x1a\x1c\x90\xbb\xee\ \x27\x1d\x72\xc1\x12\x62\x84\x7e\xfa\xf0\x1f\x7b\xe0\x81\x18\x61\ \x6b\x3b\xf0\xef\xa9\x6f\x4d\xbe\xaa\x18\xee\xeb\x2c\xdb\x57\xf4\ \xa3\x8a\x21\xb5\x64\xf0\xde\xda\xdb\x73\x4f\x12\x22\x1c\xfb\xd8\ \x85\xfc\xf6\x3e\xff\x00\xe3\x73\x78\x33\x1c\x7f\x16\xd6\x2d\xd4\ \x8d\x0c\x65\xe8\xab\x9a\x8a\xdc\x54\x3f\x74\x5c\xef\x01\xfb\xe3\ \x8d\xf6\x20\xe5\x3f\x8b\x1c\x02\x11\x05\x54\x57\x08\xdf\xa7\x3c\ \x85\x75\x8b\x81\x54\xf0\x59\xd7\xa4\xb4\x0c\x37\xed\x27\x0f\xb4\ \xd8\x47\x1e\xf2\x90\xc1\xb6\x55\x8e\x83\x1d\x9c\x08\x08\x43\xf8\ \xb7\x11\x9e\xd0\x81\xfe\x6a\x53\xd9\xd6\xb2\x65\x23\x46\x69\x20\ \x76\x6d\xab\x05\x3a\xfa\xc1\x44\xde\x50\x8f\x16\x0f\xd0\x43\xff\ \x72\x58\x91\x0f\x02\x2f\x74\x57\xec\xd5\xd8\xb0\x08\xc4\x20\x06\ \x11\x6b\x12\xdc\x56\x3f\xa6\xd4\x0f\xc9\xd5\x22\x0f\xbc\xd1\x40\ \x1e\xdc\x66\xbb\x07\xe4\x41\x15\x53\xa4\xe2\x43\xee\xd1\x31\x0f\ \x90\x6f\x81\x69\x33\x59\xaa\xbc\xc8\xc7\xce\xe1\x0d\x4a\x53\xc2\ \x56\x13\xeb\x57\xbd\x5f\xd4\xcf\x6d\x86\x28\xc5\x19\x0c\x91\x87\ \x7e\x7c\x2a\x8e\x72\x54\xc8\x07\xb7\xc8\xc5\x2e\x5a\xb2\x84\x7d\ \x34\xa1\xe7\x88\x76\xb6\x22\xe1\x2d\x8d\xd5\xc3\x20\x0c\x13\x59\ \x8a\x52\x18\x82\x89\xbf\xc8\x01\xee\x70\x18\x49\x81\x58\x71\x78\ \x23\xd3\xe2\xc8\xf6\x98\x49\x3e\x8a\xcf\x8e\x0d\x5c\x20\xb3\x7e\ \x41\x0b\x43\xb8\xb1\x97\x86\x08\xe6\x3e\x1e\xf0\x8b\xb6\x3d\x40\ \x53\x90\x6c\x25\x41\x10\x81\xc9\x58\xce\x12\x75\x45\x33\x59\x34\ \x6b\x99\x2a\x31\x0c\xc2\x03\xa0\x73\xd6\x27\xdb\x96\x03\x74\xac\ \x31\x98\x86\xd8\xc7\x30\x89\xf9\x80\x7c\xe0\x88\x1c\x5d\x88\x9b\ \x32\x0d\xf2\xca\xa2\xf9\xeb\x99\xf0\x9c\x26\x35\x13\x97\x42\xe1\ \x9d\x10\x4c\x21\xfe\x30\x12\x94\xc8\x31\x4e\x71\xc6\x90\x98\x8e\ \x7c\x40\x0e\x6c\x44\x8e\x1b\x08\x4a\x9d\xeb\x1c\x08\x33\x73\x99\ \x36\x20\xca\x52\x9e\xcd\xac\x25\xc2\xc4\x60\x4d\xd5\x2d\xcf\x46\ \x87\xcc\x00\x3a\x1e\xc0\x51\x8e\x16\x33\x4a\x1c\xe5\xc0\x03\x8e\ \x51\x14\xa7\x25\xf4\x1f\x56\xd4\x65\x3c\x53\x37\x4f\xa5\xf9\x47\ \x0c\x9a\xca\xa6\xda\x9e\x17\xa5\x1c\x3c\x20\x03\xc3\x1c\x27\x13\ \x6b\xba\x8f\x4c\xb0\x23\x2b\x08\x8d\xe4\x24\xcb\xd6\x45\x13\xb6\ \x34\x75\xd6\xa4\xe8\x0f\x55\xc7\xbe\xf2\xe4\xf3\x01\xb4\x58\x47\ \x0c\xc5\x49\x25\x21\xe5\x20\x13\x88\xc2\x4d\x50\xa9\xc8\x85\x2a\ \x15\x15\xa2\xbe\x3a\x2a\x1e\xd1\x17\xbe\x06\x91\x2f\x04\xe7\x93\ \x69\x79\xfa\x01\x04\x43\x1c\x23\x07\xfb\xc8\x41\x0b\x79\x43\x0e\ \x9f\xca\x85\x1f\x5b\xe5\x9e\xf7\xa0\x77\x54\xb0\x0a\xb1\x7c\x1c\ \x33\x5a\x0a\xcf\x87\x4b\x2a\x44\xa0\xac\x54\xb0\xe3\x5a\xf7\xb1\ \x8e\x21\xe1\xe8\x44\x57\x6d\x4c\x4e\x94\xb9\x0a\xf2\x88\x35\x71\ \x2e\xf5\x0f\x36\xc9\x87\xbe\x68\x6a\xb6\xa2\xe2\x1b\x9a\x02\x8f\ \xe3\x87\x7d\x10\x61\x37\x5b\x18\xd2\x3e\x5e\xc0\x99\xc7\x74\x50\ \x28\x23\xba\xfe\xac\x57\x51\xd8\x31\x98\x1e\x36\xb1\x68\x45\x6b\ \x59\x05\x9b\x0a\x8b\x76\x8e\x92\x21\xf0\x19\x94\x72\x50\x06\x2a\ \x2d\xe1\x18\x3f\x25\x0d\x5d\x58\x49\xa6\xb8\xa4\x81\xaf\x62\xb5\ \xe4\x67\x29\xda\x35\x2b\x1c\x36\xb8\x88\xbd\x27\x2c\x69\xeb\x9f\ \xac\x45\x60\xae\x7e\x30\x44\x72\x03\x95\x57\x68\xf9\xa8\x0c\xb2\ \x65\xe9\x6f\x35\xdb\xb5\xf4\xf9\xc1\x9e\x0c\x65\x53\x53\x89\x3a\ \xbc\x0b\xcd\x72\x0b\x39\x08\x0f\x5e\x99\xeb\x21\xb0\x58\x36\xbd\ \xb3\xdd\x22\x75\xfb\x86\xcd\xf1\xc5\xb2\x3f\x21\x88\xc0\x3d\xbd\ \x4a\xbe\x02\xe7\xd2\x0f\x69\x28\x90\x6b\x1f\x36\xa9\x33\xfc\x17\ \xc0\xf4\xf4\x61\x03\x1b\x0c\x0c\xbf\xfa\xd0\x03\x79\x8b\x8f\x1f\ \x58\x5b\xa0\xfd\x3e\x0c\x44\x3c\xb0\x02\x86\x8d\x4a\x49\x0d\x77\ \x4e\x93\x3e\x6c\x9d\xdf\x88\x10\xa2\x09\xfb\xc9\x36\x44\x78\xdd\ \x8a\x7d\xf5\x4e\x0d\xfb\x35\x55\x5c\x44\x1c\x60\x23\x60\x47\x19\ \x90\xb8\x40\x87\x91\x13\x9d\xc6\xb3\x63\x14\x1e\xf8\x8e\xbe\x85\ \xf1\x82\xc3\x5a\x5b\xa0\x91\x23\xc2\x21\x5a\xae\x92\x2b\x7c\x93\ \xe2\x34\x99\xa5\x95\x64\xdf\x34\xdd\x19\x3a\x36\xc4\xd7\xb3\xa1\ \xf3\xc3\xfe\x0d\x7e\x64\x63\x0f\x71\xf9\x26\x44\x10\xc3\x97\x33\ \x1c\x66\x06\x02\xd9\xc7\xda\xe5\xa2\x1f\x68\x0c\xa3\x74\xf2\xf7\ \x37\x80\xc2\xcd\x85\xe7\x4c\xcb\x2b\xce\xb2\x7d\x46\x03\x1e\x1e\ \x4f\x76\xba\x46\x53\xf4\x74\xbc\xf1\xc3\x3a\xd8\x5c\xde\xee\x64\ \x89\x07\xa8\x22\xb4\x34\xe1\x69\x67\x2f\xc2\xcf\x6f\x21\x4e\xb0\ \x75\xad\x10\x36\x39\x53\xc1\xc8\x3f\x4a\x32\x7d\x84\x92\xd5\x9b\ \xc4\x56\xd3\x7b\x6c\x68\x58\x2f\x8b\xb0\xb1\x31\x28\xb8\x34\x6b\ \xaf\x88\xdd\xd0\x24\x2d\xaf\xba\xc2\x87\x92\x18\x0f\x72\x0c\xeb\ \x3b\x43\xb3\xd8\x89\x23\xda\x9e\xb5\xd4\xe6\xe9\xf8\xc8\x58\xeb\ \xc8\x40\x06\x84\x85\x8e\x61\x61\xf8\xc7\xce\x2c\x21\xb6\x9b\xdc\ \x31\x72\x1c\x59\x42\x3f\x35\xf1\x87\x56\x41\xad\x18\xa8\x02\x5c\ \x9a\x52\x45\x04\x84\x71\x2d\x67\x59\x01\x04\xe8\xd8\xf6\x17\x0f\ \x2d\x6f\x64\x53\x01\x08\x7c\x2e\xd0\x78\x9b\x4d\x9b\x12\xcc\x41\ \x89\xe7\x5e\x9b\x30\xa6\x5d\x6d\x05\x57\xc9\x0f\xbc\x1e\x4f\xbd\ \x31\xc9\x54\x4e\x23\xfb\x8b\xe4\x68\x83\xbe\xcf\x30\x5e\x71\x03\ \x47\x28\x2a\x90\x6a\x0c\xbc\xc9\x9b\x08\x54\xbb\xda\xc2\x90\x73\ \x95\xfe\xac\x30\x9a\x17\x0c\xda\xa8\xd2\xbc\x63\x44\x69\x6d\xf0\ \x5a\x86\x60\xd2\xf8\x19\x2f\xc5\x33\xe1\x86\x64\x46\x86\xdc\x3c\ \x10\x95\xa8\x62\x70\x80\x41\xa8\x42\x18\xd5\x6e\x02\x3a\x44\x5e\ \x1e\x31\xe4\xdb\x0d\xcf\x50\x5b\x94\x7f\x57\x54\x5a\xf7\x67\x10\ \x2a\x9e\xa7\x30\x5a\xcd\x19\x76\x8c\x97\x1d\x27\x28\x07\x3b\x5e\ \x60\xd2\xd4\x4c\x8a\x07\xfc\x68\x43\x2d\x2e\xc5\x6e\x74\x6c\x1c\ \x04\x72\x20\xba\x76\xc4\x10\x0f\x2c\x9f\x01\x04\x7e\x70\x27\x8b\ \xc9\xb6\x70\x5b\xfe\xce\x9a\x2d\x1d\x04\xd5\x1b\x63\xf5\xe4\xb2\ \x23\x13\x27\xb0\x6b\x0d\x2e\x30\x9b\x88\xe1\xa4\x56\x96\x5a\xc7\ \x3a\xe6\xb0\x0e\xa0\xa3\xa3\xe5\xda\xc1\x37\x11\xca\x80\x65\x99\ \x41\x43\xc7\x3d\x5e\x74\xd3\x33\xe9\xc3\xe3\x84\xab\xa5\xaa\xd8\ \x3b\x69\xfe\x0e\x78\x99\x57\x1a\x30\xab\x08\xbb\xa1\x0e\xc5\x0f\ \x4b\x39\x40\xf1\x98\x12\x56\xa6\xa3\x13\x81\xd1\x10\xc1\x0d\xb8\ \xc7\xd7\xbd\xd4\x7e\xe7\xf5\xae\x3c\xb3\xb1\x86\x32\x53\x0d\x3b\ \xfb\x3e\x4e\x02\x04\xb8\xa9\x41\x0d\xae\x63\xf5\xd2\xcb\xdc\xcf\ \x65\x5a\x45\x1b\x74\x0e\x02\x43\x19\x4a\x54\xeb\x00\xc1\xc6\x07\ \xfe\x3e\x07\x2b\x78\xec\x38\x40\x70\xca\x0b\x6e\x80\x06\x34\x94\ \x41\x50\x4d\x40\xf3\x86\x73\x69\x77\x2a\x98\x79\x78\x66\x8e\xff\ \xf0\x7a\x4b\x85\x7b\x58\xc1\x07\x56\xb8\x07\x35\x0d\x40\x98\x22\ \xe8\xc1\x07\xcb\x37\x1c\xa4\x77\x75\xc9\xc5\x03\x36\xf7\x16\x38\ \xc7\x03\xa5\xd0\x05\xeb\xc0\x80\xeb\x50\x0b\xfc\x30\x76\x7f\x40\ \x70\x20\xc0\x03\xf1\xa6\x68\x86\x75\x64\x3c\x50\x06\xf1\x50\x06\ \x6e\xb0\x75\x65\xb0\x2e\x5b\xf4\x62\xb3\x25\x58\x1f\xc3\x06\xe6\ \x63\x3e\xef\x77\x82\x89\x65\x3e\x2c\xf8\x2f\xf2\x90\x29\x75\x77\ \x1c\x5c\x50\x04\x3c\x50\x03\x7a\x70\x0f\x5c\x60\x00\x12\xc7\x77\ \x37\xd1\x7c\x99\xe0\x14\x80\x67\x57\x67\xf0\x02\xa7\xa7\x19\xe4\ \x96\x15\xd9\x47\x0b\xe7\xa0\x78\xd8\x47\x0b\x31\x90\x01\x20\xf0\ \x02\x8a\x02\x1f\x62\xe0\x81\xb8\xc1\x0e\x6e\xf0\x02\x5c\x48\x04\ \xf1\xd0\x72\x58\x04\x7c\x2f\x18\x7f\x29\xe8\x82\x2f\xe8\x7e\x68\ \x68\x66\xa9\x80\x58\xa1\x80\x29\x93\x30\x09\xf7\xa0\x7f\x7c\x54\ \x02\x35\xd0\x06\xaf\x70\x08\xfa\x77\x08\x5d\xe0\x83\x3f\x85\x75\ \x44\x38\x73\x27\xe0\x77\xec\x60\x71\x7f\x21\x14\x86\xd2\x05\xfe\ \x15\x98\x73\xe7\x00\x85\x19\x10\x55\x88\x38\x81\x8a\xb7\x0e\x6e\ \x70\x81\xa9\x02\x04\xf8\x52\x06\x65\x40\x04\x24\x26\x33\xbb\x75\ \x38\xf3\xe6\x1f\x6c\x50\x0c\x75\x60\x66\x1e\x40\x8a\x2e\x60\x47\ \xa9\x60\x86\xa0\x88\x86\xab\xa8\x86\x5d\x43\x08\xfe\xc1\x09\x56\ \x50\x09\xaa\x50\x09\x3e\xe0\x03\x07\x10\x87\x41\x54\x83\x3c\xa0\ \x02\xb1\x70\x01\x88\x10\x87\xfc\x57\x75\x81\x27\x73\x56\xe7\x18\ \x47\xd8\x15\xd2\x77\x06\x5d\x10\x03\xb4\xd0\x05\x3c\x30\x76\x4d\ \x88\x88\x88\x58\x0b\xae\xd7\x04\x20\xe0\x06\x4d\xc0\x2a\x57\x30\ \x75\x67\x90\x06\x1d\x48\x79\x45\xf8\x85\x75\x47\x3e\xa4\x58\x07\ \x75\x00\x0c\xc5\x20\x06\x28\x28\x06\xa9\xe8\x02\xeb\x98\x0a\xf2\ \x37\x8f\xee\x67\x3e\xc5\x10\x01\xe8\x08\x8b\xa9\x10\x01\x31\x50\ \x0f\xc2\xe0\x03\x7d\x10\x04\x3e\x10\x01\x93\xc0\x8d\x0a\x73\x01\ \x6d\xd0\x06\x7c\xb0\x0a\xab\xf0\x41\xf7\x70\x00\x3d\x58\x18\xcd\ \x67\x8c\x85\x01\x7d\x77\x21\x14\x35\xa0\x48\xa5\x50\x0b\x01\x18\ \x6c\xd1\x58\x2b\x09\x29\x2a\x09\xc9\x03\x4d\x40\x74\x54\xd0\x04\ \xae\xe6\x06\x44\x70\x7b\x44\x80\x06\x3a\xa6\x49\xc0\x83\xfe\x82\ \x64\x58\x0c\x7e\x80\x8e\xd0\xe0\x07\xe6\x03\x03\x75\x20\x06\xe8\ \xb8\x8e\xc5\x50\x8a\xf5\x48\x86\x2e\xc0\x93\x75\x00\x0d\x75\x10\ \x01\x84\x00\x53\x72\x30\x07\x72\x10\x03\x72\xd0\x07\x73\x10\x03\ \x3e\x10\x0a\x06\xc9\x30\xe5\x71\x0f\x7a\xf0\x07\x45\xf0\x0a\xab\ \xf0\x0a\xc0\xa8\x83\x2a\x40\x19\x03\xe8\x14\x32\x17\x16\x7f\xf7\ \x67\x4a\x81\x73\x8a\xb4\x77\xd1\xe8\x8c\x91\xb8\x7a\x4d\x90\x2c\ \x0c\x62\x05\x69\x80\x7b\x14\x47\x31\xc6\xf0\x92\xf4\xd5\x8a\xe6\ \x23\x06\x53\x00\x0c\xe6\x63\x93\x32\x20\x03\xc6\x20\x03\xe8\x78\ \x98\x88\x89\x8e\xa9\x68\x3e\xc0\xe0\x02\xc0\xa0\x93\xd0\x20\x03\ \x56\x80\x8e\x11\x00\x0d\x56\x50\x0f\x72\x20\x07\x40\x50\x0f\x31\ \x00\x02\x01\x29\x0c\xaa\x30\x09\x72\x17\x1d\x71\x78\x00\x33\xc0\ \x07\xaf\x90\x9a\xaf\x00\x12\x71\xa8\x07\xa2\x37\x73\x65\x29\x17\ \xa4\x77\x02\x64\x90\x06\xc9\xa8\x14\xac\x76\x13\x8a\x24\x1e\x4a\ \x24\x0c\x50\x88\x0e\xeb\xc0\x85\xdb\xa8\x2c\x1d\x18\x61\x32\x33\ \x05\x3f\xd6\x31\x28\xe8\x01\x6b\x48\x08\x80\xe9\x01\x87\x29\x06\ \xa2\x48\x98\x84\x69\x05\xcf\x60\x0c\x46\x99\x98\x94\xfe\xf9\x93\ \x1e\x20\x8a\x62\x00\x03\xa2\x68\x99\x56\x60\x98\xe8\x68\x05\x56\ \x20\x07\x68\x10\x01\xaa\x50\x0f\x50\x09\x02\x73\xd0\x07\x95\x50\ \x95\xa4\x79\x00\xaa\xe0\x03\x06\xc0\x07\x23\xf0\x0a\xa8\xd9\x90\ \xc1\x08\x91\x12\xe9\x53\xb1\x69\x96\x99\x90\x09\xe5\x40\x06\x64\ \x90\x09\x84\xe8\x15\x6f\xd6\x18\x1b\x89\x7d\xc0\x99\x7b\xe8\xc2\ \x1f\xd0\xb0\x85\xf4\x52\x06\x1d\x06\x56\x2d\xd8\x97\xe8\xc8\x93\ \x46\xe9\x01\x07\x44\x94\x7e\x00\x0d\xc6\x30\x9e\x83\x39\x98\xd9\ \xa9\x9d\x75\x90\x0a\xf0\x88\x8e\x30\x00\x03\x53\x30\x05\x84\x59\ \x98\x46\xc9\x93\xcf\x80\x06\xd6\xc5\x99\x4d\xd0\x04\x7d\xd0\x04\ \xe6\x26\x9f\xc7\xe1\x73\x31\x10\x03\x0e\x30\x02\x7c\x60\x0a\x2a\ \x70\xa4\xfc\x79\x08\x35\x20\x7a\x01\x9a\x16\xa4\x37\xa0\x81\xc8\ \x12\xb7\xf9\x13\x0b\xea\x14\x1a\x29\x16\x0a\x88\x1b\xd9\x87\x7b\ \x44\x10\x72\x0c\x72\x85\xb8\xe1\x85\xd0\x30\x65\x40\x26\x8a\x7e\ \x00\x99\xd6\xb5\x93\xd9\x59\x0c\xc5\xa0\x93\x45\x19\xa3\x25\x6a\ \xa2\x27\x5a\x07\x84\xb0\xa6\x1e\x40\x08\x30\xe0\x07\x6d\x0a\xa3\ \xc6\xd0\xa7\x32\x00\x0d\x30\x00\x0c\xd0\x80\x06\xfe\xf5\x60\x9e\ \xc2\x80\x99\x4d\x20\x07\x99\x32\x08\x66\x55\x1e\x93\x20\x0c\x0e\ \xe0\x00\xe7\x70\x0e\x7c\xa0\x02\xaf\x60\x0a\x7f\xe0\x95\xde\x13\ \x96\x21\xd2\x77\x3f\x05\xa0\x37\x81\x57\x92\xe2\x18\xbb\x79\x06\ \xa5\xea\x18\x97\x32\x6d\xa4\xc6\x1f\x11\xb0\x92\x5f\x88\x4b\x0c\ \x67\x8f\x11\x30\x05\x67\x5a\x93\xf8\xb8\x93\x36\x99\x8e\x1c\x1a\ \x99\x7f\x6a\x99\x85\x39\x98\x53\x50\x94\x88\x69\x94\x78\x5a\x0c\ \x8f\xd9\xa2\x30\x7a\x9d\xc0\x5a\x94\xe6\x77\x2d\xe6\x89\x0e\xd8\ \x88\x0e\x8c\x1a\x1d\x6f\x38\x4d\x93\x50\x9f\x7a\xe0\x00\x2a\xf0\ \x07\x47\x5a\x03\x7f\xd0\x90\x25\xa0\x02\xaf\x59\x75\x44\x38\xa0\ \x41\xd8\x7c\x07\xd8\x13\x0b\xaa\x48\xfc\xf0\x9a\x12\xb3\x0e\x0f\ \xd0\x35\xae\x42\x05\xc6\x50\x06\x32\x60\x60\xf0\x81\x82\x75\x70\ \xa6\x8f\x59\xab\x3a\x49\x94\xe8\x38\x05\x2d\x5a\x94\xd0\xc0\xab\ \x46\x19\xa7\x05\x9b\xb0\x36\xb9\xa6\x6c\xca\xa6\x2e\x2a\x03\xf9\ \x50\x98\x2f\x3a\x05\xcf\xc0\x81\xe6\x69\x05\x96\x58\x2b\x51\x77\ \x1c\x93\x70\x7f\x05\x59\x1e\x07\xe0\x03\xaa\x60\x00\xdb\xfa\x07\ \x7f\x20\x28\x0b\xa9\x07\x45\x00\x23\xc7\x78\xfe\x06\x80\x17\xa5\ \xcd\x97\x06\xda\x43\x15\xb9\x29\x17\x54\x27\x28\x2f\xd0\x78\xc7\ \x64\x24\xfd\x30\x08\x21\xe6\x1f\x85\xf9\x4e\x31\x59\x8f\xea\x08\ \x0c\xfd\x6a\xac\x67\xea\xa6\x2f\x7a\x98\x91\x99\xb0\x46\x39\xb1\ \x32\x00\xa3\x4e\x4b\xb0\x56\x00\xa8\x6d\xda\xb0\x2e\xda\xa7\x12\ \x3b\x05\xc6\x80\x06\xcf\x50\x07\x32\x10\x0f\x4d\x40\x04\xa2\x32\ \x9c\x3a\x13\x01\xf4\x20\x0c\x8a\x1a\x9a\xdc\x78\x00\x92\x7a\xa4\ \xdc\xaa\x02\x86\xe2\xad\x7c\xb0\xa4\xe0\xe6\xa9\xe6\x9a\x5c\x80\ \x57\x0e\xc7\x90\xae\x31\x31\x14\xe3\x8a\x1b\x1b\x69\x3b\xe2\x84\ \x41\x4e\x94\x4f\xe7\x52\x3a\x51\x26\x64\x64\x88\x86\x1e\x6a\xac\ \x34\xc9\xa6\x49\x5b\x07\xc1\x0a\xa3\x25\x5a\xb0\x83\x59\x07\xc8\ \x0a\xac\x4d\x9b\xb0\x93\xd9\x93\x57\xdb\xa2\x84\x19\xb1\x25\x9a\ \x0f\x32\x60\x47\x13\xfa\x76\x4d\x50\xa8\x14\x65\x30\x11\x10\x0a\ \xaa\x00\x07\x41\x2a\x07\xb8\x28\x87\xf7\xa0\x0a\x0e\xf0\x07\x73\ \xa0\x02\x23\x70\x01\x07\xb0\x0a\x72\xdb\x06\x7f\x60\xb7\xe1\x01\ \x84\xe6\x0a\xa0\x7d\x47\xa0\xe5\x50\x0e\x27\x30\xb3\x69\xf9\x14\ \x0c\x9a\x3f\x1b\x45\x43\xb1\x73\x1c\x4c\xfe\x34\x08\x1a\x30\x25\ \x76\xe3\x61\x2e\x10\xa8\xa7\x88\x82\xa7\x58\xb4\x8f\x1b\xb9\x03\ \x3b\x98\x7e\x3a\x05\x98\x2b\xb0\x96\xfb\xa2\xbf\xaa\xb0\x2c\xda\ \xa2\xe0\x99\xb5\x5d\x1b\xb1\x4b\x60\x0c\x5f\xeb\x7e\x19\x80\x1b\ \x65\x40\x6a\x11\x50\x0f\x40\x60\x5d\xb5\x28\x0c\xf2\x10\x03\x7d\ \xd0\x07\x52\x79\x00\xc7\x51\x02\x42\x4a\xa9\x06\xf0\x41\x87\x10\ \x0b\x7f\x90\x90\x4b\x1a\xb8\x66\x89\x75\x81\x07\xa5\xc8\x0b\xa5\ \xcb\xbb\xbc\x7d\xbb\x1a\x5c\x76\xaa\x3c\x20\x76\x11\x48\x0b\xde\ \x34\x43\x33\x14\x3b\x18\xc2\x44\xe4\xa0\x0a\x35\x12\x25\xfa\xc2\ \x60\x54\xe0\x02\xc1\xda\x98\x65\xe8\x98\x3f\xe9\x98\xdd\x09\xb9\ \xc8\x2a\xa2\xc0\x3a\xb1\x2f\x5a\xa2\xec\x8b\x9d\xee\xfb\xb4\xf1\ \x0b\x03\xa3\xfb\x0c\xf1\x50\x7e\x68\x20\xa3\x65\xc0\x5a\x4d\x30\ \xa6\x86\x15\x0f\x99\x92\xb6\x4f\xf9\x9e\x05\xfc\x9e\x31\x10\x8c\ \xf7\x30\x09\x7a\xa0\x07\xf7\xc9\x07\x7a\x80\x08\x88\x70\x01\x7c\ \x30\xbc\x86\x52\xbc\x27\x10\x88\x63\x39\x73\x1a\xbc\xc1\xcb\xeb\ \xb7\x24\x51\xa5\x38\x71\x46\xe8\xa0\x0a\x26\x3c\x43\x0f\x00\x04\ \x00\xb5\x53\x2a\xac\x01\xe4\x50\x23\xfe\x82\x33\x5a\x9d\xc3\x06\ \x2e\x50\xb0\xdc\x79\x8a\x88\x5c\xb4\xc5\x00\x8f\x90\xab\x8e\x82\ \x69\xa2\x51\x0b\xb5\x3e\xdc\xab\x45\x39\x99\xe9\x8b\xb5\x84\xf9\ \x0c\xf9\x80\x06\x49\xfc\xab\xf9\xa0\x89\x44\x20\x03\xb5\x15\x53\ \x93\x20\x0f\x4b\xf9\x9e\x73\x30\x07\xca\x87\x83\x5c\x30\x09\x07\ \x10\xb2\xe7\xa0\x95\x49\xba\x0a\xb1\x30\x02\x27\x5b\xbc\x03\xfa\ \x83\x2d\x3b\x9b\x69\xec\xc6\x27\x70\x0c\xce\x4b\x13\x81\x36\xc7\ \x4a\x74\x00\x26\xac\x0a\xe8\x40\x0b\xc2\xd0\x51\x18\xc4\xc7\x7d\ \x5c\x22\x46\xe2\x59\xdd\xe9\x07\x84\x09\x0d\x3f\xb9\x9c\xcb\xc9\ \xc8\x0d\xcb\xa6\xda\xec\xa2\xbc\x6a\xbe\x3d\xec\xc3\x4e\x5b\xb5\ \x07\xfb\xa7\xf0\xcb\xa7\xf9\x90\xc4\xa6\xbb\xc8\x1e\x00\x03\x85\ \x29\x06\xb0\x9a\x58\x9c\x52\x09\x42\x0a\x95\xa9\x5c\x87\x12\x1c\ \x03\xbe\x7b\x00\x7a\xa0\x7c\xdc\x5a\x02\x17\x70\x01\xab\x30\x03\ \x17\xf0\x0a\x01\xd8\x1c\xb9\xfc\x83\x44\xf1\x77\x69\xdc\xd0\x1b\ \x9c\x75\xe5\xd0\x09\x68\x99\x11\x3e\x92\x55\xfc\x30\x39\x76\x6c\ \xc2\x1b\x75\x3b\x1c\x35\x4c\x1f\x05\x25\x3c\x9b\xbd\x37\x12\x77\ \xda\x51\x0c\x06\x2b\x03\xe0\x79\xfe\xc3\x1e\x80\xc8\x6d\x1a\xbf\ \xc6\x9a\xc8\x7b\xfa\xc3\x5a\xbb\xb5\x3e\x6c\xb9\xbd\x8a\xbe\x7d\ \x0a\xa8\x9b\x9b\xce\x49\xfc\x0c\x32\x40\x86\x85\xe5\x31\x21\x10\ \x0a\xc2\x10\x03\x03\x3c\x07\x45\x50\x04\xf8\x9c\x90\x6d\x50\x04\ \x06\x70\x01\x5c\x90\x95\xf8\xbc\x90\x0c\x59\xd5\xc4\x7b\x1b\x7f\ \x17\x9b\x58\xb7\xbc\x0e\xed\xc6\x05\xca\xb7\x70\xfc\x1d\xe4\x56\ \x0a\xeb\x80\x26\xd1\x48\x0b\x06\x00\x43\x77\xec\x46\x78\xbc\x46\ \x7b\x6c\xbd\x65\x04\x04\xbf\x00\x04\x82\xa3\x76\x1e\xe0\xa7\x3d\ \x9c\xd2\xec\x0c\x8f\xf0\xdb\xa2\xdb\xcc\xc8\x2e\x3a\xb1\x7d\x1a\ \xb1\x12\x1b\xc9\x3f\xfc\xa7\x9c\xcb\xc3\x3e\x6c\x0c\xf1\x00\x0a\ \xf1\x10\x0f\xc6\x30\x05\x6c\x80\x82\x80\xb9\x82\x08\x66\x05\xf2\ \xc0\x99\x05\xac\xd4\xab\x77\x28\x35\xe0\xd4\x17\x50\x02\x7c\x70\ \xc6\x76\xc8\x90\x23\xb0\x0a\x7c\x40\xc1\x61\xf1\x87\xc9\x9b\x75\ \x17\xec\xda\x1b\x4c\x06\xcc\x0b\xd6\x13\xfd\x10\x71\x51\x0a\x7f\ \x70\x0e\xa5\x5a\x0a\xb4\x90\xd1\x33\xc4\xd1\x0f\x30\x4e\x6e\xd4\ \x51\x48\x34\x23\x4c\xa4\x01\x1f\x97\x01\xd6\x02\x0c\x9e\x57\xa3\ \xd8\x09\xc4\x9a\xcb\xcd\xa7\xfe\xd8\xd2\x02\xab\xd7\xf0\x2b\x8a\ \x9a\xab\xbe\x33\x0d\xc4\x9b\x8b\xb9\x90\xac\xac\x82\xdd\xd8\x65\ \x00\x0a\x68\x00\x03\x8e\x09\x9e\x96\xdd\x40\xea\xc9\x99\x72\xa0\ \x02\x9c\x5d\x2a\xb8\x11\xc2\x7f\x60\x00\x7a\x30\x02\x1d\x59\x03\ \x70\x5b\x04\x11\xd9\x1c\x82\x08\x88\xc5\x88\xc1\xbd\x6c\xa0\xcc\ \x9b\x75\x99\x10\xd6\x14\x51\xd1\xa5\xa0\x81\x67\x64\xc2\x6a\x04\ \x43\x1d\x25\xdc\xcc\xfc\x0b\xc5\x4d\x6d\x24\x2c\x2c\x79\x79\x1c\ \x75\x50\x7e\x25\xfa\xab\x02\xcb\xcd\x2b\xdd\xbd\x81\xdd\xd7\x22\ \xde\xd7\x7c\xaa\xb5\xcb\x8a\xbe\x95\x4b\x9d\x22\xea\xdc\x2f\x2a\ \xa2\xa0\x80\x89\x65\x60\x0c\xe0\x89\x8e\x2e\xc0\x8a\xa1\x43\x08\ \x11\xe0\x03\x4b\x99\xd4\xca\x57\x2a\xa3\x11\xc2\xbc\x1b\xcb\x3f\ \xbe\xca\x67\x9c\x7c\xe3\x6a\x8c\x7d\xf8\x77\x5c\xed\x53\x18\xbc\ \xb7\x5c\xdd\xd0\x34\xd7\x75\x1d\x51\xb3\x61\x51\x0b\x19\x2d\x3d\ \x57\xa0\x46\x1d\xdd\x51\x50\x94\x53\x1d\x25\xe1\xc4\x22\x0c\x62\ \xae\x0a\x1a\x20\x0c\x11\xca\x20\x5d\xeb\xd3\x31\x6a\xe2\x75\x20\ \xdd\xdd\x3b\xb1\x94\x8b\xac\x2f\x7a\xdd\xe7\xbc\xe1\x39\x5d\xb9\ \xc1\x0a\xce\x84\xc9\xc9\xfe\x91\x8d\xbe\xe6\x77\x2f\xe5\x0d\x99\ \x75\xe0\x02\xe9\xed\x1f\x38\x4e\xcf\x50\xc9\xe3\x9d\x2d\x16\x6d\ \x70\xa4\x72\xfb\x14\x4c\x8d\x13\x45\xa0\x0a\x65\x8d\xd5\xc7\xb8\ \xd5\x6a\xbc\xb7\xaf\x9d\xc6\xb3\x09\xa0\x69\x60\xe0\x0c\x51\xa5\ \x67\xcd\xe0\xc7\xbd\x46\xfb\x00\x45\x1c\xf5\x4f\xb4\x90\x01\x0f\ \x20\x0c\xc5\xa4\x01\xad\x3e\x43\x3f\xa7\x0a\x56\x20\x0c\x0b\x92\ \x42\xf6\xeb\xa7\x33\x7d\x9d\x1d\xde\xb0\x2d\x5e\xd3\x13\x1b\xd8\ \xc0\x6e\xb9\x5a\x7b\xa2\xe8\x3b\x98\xd7\x89\xc4\x90\xcd\xbe\x6d\ \xe7\x85\x86\x39\x05\x56\x60\x0c\xa3\x28\x7f\xee\x97\x8a\x93\x90\ \xb6\xf2\xd0\x07\x49\x3d\x92\xf0\x2d\x16\xde\xaa\x02\xc4\x3b\x28\ \x3f\xee\x00\xf7\x30\x08\xf9\x8b\x15\x2d\xbb\xd0\xea\x4e\x71\x69\ \x0c\xa0\x04\x7a\xc1\x79\x3b\x9b\x40\x68\x9b\xb5\xcd\x4e\x49\xc8\ \x17\x24\x9c\x07\x25\xac\xef\x79\x30\x4e\x93\x23\x43\xa9\xfe\x4f\ \xd4\xfb\x29\x40\x40\x43\xeb\xa6\x51\x1a\xa5\x60\xa7\xe6\xb5\x40\ \xcc\xa7\xe0\xdd\xe1\x81\x1d\xb5\x09\x0b\xec\x71\x6a\xd8\x02\xbb\ \xe2\x7f\xba\xb4\xc7\x5e\xa3\xe5\xb7\xc9\x85\x59\xaf\x93\x87\x06\ \x91\x59\xa3\x32\x50\xfe\x0c\x93\x4d\xed\x48\x49\x08\x83\x40\x0f\ \xd9\xbe\xed\xdd\x9e\x1b\x83\x62\xb2\x7f\xd0\xae\x84\x31\x92\x38\ \xe1\x00\xdf\x82\x7c\x0b\x0d\xaa\xba\xec\xa9\x3f\x38\xa0\x40\x78\ \xc1\x40\xc8\xd0\xc5\x68\x75\x81\x57\x0b\x53\xaa\x10\xeb\x6a\x3b\ \xb7\x33\x39\x1b\x3d\x39\xa9\x0e\x55\x32\xe4\xd6\x31\x54\xdc\x40\ \x97\x01\xc2\x90\x3d\xc0\xa9\x73\x68\x20\x06\x83\x1a\x0f\xcf\x00\ \x0d\xd5\x2d\xbf\x1c\x5e\xdd\x36\xfd\xab\x71\x7a\xf6\x31\x2a\xf6\ \xf0\x0b\xb6\x7e\x2a\xf6\x38\xcd\xc9\x60\xff\xd8\x4b\x5c\xb1\x5e\ \x78\x9d\x9c\x2c\xf2\x26\x3f\xd9\xca\x19\x0a\x48\x19\x0a\x56\xa0\ \xed\xca\xb7\x7a\x6a\x41\x18\x21\x5c\x03\x5d\x60\xc6\xc1\x96\x15\ \x08\xcc\x30\xbc\x46\x71\x59\xbd\xd0\xc6\x8b\xb7\xee\xde\xee\xc7\ \xcb\xd0\xcc\x6b\x57\x59\xcd\x0e\x48\x5f\xef\x02\x71\xef\x4e\x61\ \x3b\xd5\x96\x07\xc2\xb0\x0f\x1b\x15\xf0\x5c\x7e\x3b\x26\x4c\xc2\ \xe8\xb0\x3f\x36\x94\x01\x31\xe0\xea\x40\x97\xa3\x14\x03\x04\x79\ \x1f\xb5\x6d\x7f\xec\xd4\x39\xe7\x46\x6c\xe2\x1f\xaf\xeb\xd4\x09\ \xce\x73\xee\xb0\x45\xf9\xf6\x71\xff\xd8\xe9\xcc\x81\x7d\x9a\x89\ \x1c\x68\x7e\x65\xfe\x80\x06\x6d\x7e\xf2\xf2\x07\x0d\xf4\x30\x8b\ \x7d\x80\xcf\xdd\xfe\x14\xc1\xd6\x06\xde\x6a\xb2\xed\x8a\x13\x58\ \x11\x03\xc7\x01\x73\xe9\x0e\xf9\x9e\x7a\x75\x95\x6f\xf9\xed\x4e\ \xf4\x9a\xbf\xf9\x9c\x5f\xef\x87\x50\x02\x93\xe3\x06\xb5\x50\xff\ \x63\xb7\xef\x4d\x0f\x55\x01\x0f\x43\xde\xf4\x00\xfd\xaf\xfa\x00\ \x91\x47\x43\xbf\x7e\x1a\x84\xd1\x02\x41\x6b\x5d\x13\x61\xe8\xe2\ \x39\x2c\xf3\x4c\xa2\x0c\x19\x53\x2c\xd6\x99\x02\xc3\xa2\x31\x63\ \x15\x33\xc2\x90\x61\x4c\x22\xc7\x8e\x24\xf3\x71\xa4\xd8\x91\x22\ \xb4\x3a\x2d\x8b\x15\xab\x03\x4d\xe4\x33\x19\x32\x9f\xa1\x01\x15\ \x2f\xde\x8d\x88\x68\xd2\xbc\xe0\x79\xe3\x45\x19\x63\x30\x8a\xb1\ \x41\x8a\x94\x0a\x1b\x7a\xf5\xe4\xc9\x99\x53\xa3\x06\x0f\xaa\x67\ \xa8\xf2\xb0\x4a\xb5\xcd\xd6\x36\x52\xff\xfc\xa9\xb1\x15\xeb\x19\ \xb2\x64\xdb\x1c\xb8\x72\x65\xd0\x3e\x76\xec\xca\x9e\x69\x1b\xd7\ \x6d\xd9\xb6\x27\x32\xdd\xc5\x9b\x89\xdd\xdd\xbd\x27\xfc\xb6\x25\ \xbb\x57\xef\xdd\x13\x87\x0e\xfd\x43\x9c\x58\xf1\xe2\xc5\x87\xd0\ \x3d\xa0\xb5\x8f\xd6\xe3\x07\x02\x35\xe4\xc9\xf3\x98\x16\x64\x5a\ \x79\x3a\x63\xfe\xc6\x0c\x19\x5d\xe7\x81\x1a\x0e\x68\x50\x45\xab\ \x56\x9b\x5a\x20\xa8\x82\x68\xd2\x24\x9e\x15\x2b\xc6\xa0\x51\xc4\ \x0d\x6d\x4a\x1d\x8d\x32\x3b\x5a\xd4\x38\x25\xe4\xc9\x94\xc6\xf2\ \x3d\xe3\x78\xd2\xf8\xc8\x95\xbc\x5f\xc2\xa8\x73\x93\x66\xc8\x67\ \xa0\xca\x10\x49\x93\x46\x5f\x99\xb6\x2f\x7e\xbe\x00\x25\xa3\x4e\ \x31\x17\x49\x91\x12\xb2\x22\xef\x69\x91\x22\x61\xaf\xf2\x68\xa3\ \x15\x7e\x57\xa9\x5e\x6b\xfc\x11\x3b\xb6\x2a\x0f\x55\x69\xaf\x90\ \x4b\xe3\xad\xb8\xde\xa2\x4b\xb0\xbc\xf8\x92\xcb\x2f\xbb\x00\x3b\ \xe3\xc0\x4c\x4e\x70\xe3\x82\xc3\x18\xa3\x30\x31\xc3\x3a\xab\x2c\ \x8f\xca\x34\xe0\xb0\x9f\xd3\x30\xdb\xcc\x33\x5a\x36\xfb\x0c\xc4\ \xd1\x48\xe3\xf0\x32\xd5\xb0\xe2\xc1\x0d\xac\x5e\x20\xa2\x8c\x7a\ \xac\x08\x89\xa2\x25\x52\xf2\xa8\x37\xe1\x28\x02\x0e\x06\x8d\x38\ \xb2\x48\xb8\xe4\x6e\x8a\x27\x27\x34\x90\x53\x89\x25\x1f\x7d\xac\ \x43\x86\x91\x44\x2a\x23\x8d\xb9\x7e\x0a\x8c\xac\x34\xd0\xa8\xc8\ \x28\x17\x5e\x82\x09\x1a\x79\xea\x91\xa3\x8f\x39\xda\x0b\x8b\xab\ \xae\xb6\xaa\x2f\xcd\x34\xb9\xd2\x8f\xc5\x18\xfc\xd3\xc0\x0d\x01\ \x09\x74\xfe\xab\xce\xb6\xf8\xc2\x8b\x41\xb8\xfc\xd2\x6b\xae\xba\ \x06\xe3\xcb\x0d\xc3\x2a\xac\xf0\x90\xd0\x04\x2a\x28\xc5\xcb\x34\ \x3c\x94\x43\xd0\x1e\x15\x71\x44\x74\x3c\x8b\x41\xc5\x75\x6a\x79\ \x01\x84\x85\x78\x20\x02\x0d\x61\x8c\x89\x20\x82\xdf\x82\xec\x11\ \xa3\x29\xa0\xf1\xed\xa3\x25\x85\x03\x6e\x0a\x8e\x88\xcc\x49\x27\ \x34\x8e\xa4\xb1\x26\x54\x33\x2a\x46\x23\x9c\x70\x12\x6a\xce\xb7\ \x88\x88\xc7\xb6\xdd\x6e\xb3\xb5\x12\x39\x9e\x12\x93\xbd\x1a\xc8\ \x54\x13\xcd\xfa\x9c\x65\x73\xac\xb7\x40\x18\x24\xad\x41\x02\x24\ \x50\x40\xc0\xb6\x05\xb4\x4f\x3f\xed\xd2\x4b\x5b\x07\xad\x92\x90\ \x50\xc5\x0c\x7b\x74\xa0\x44\x55\xd9\x07\x33\x61\x10\x15\x68\x90\ \x82\x40\x5b\xd4\xb3\x13\x55\x4b\xe8\xdd\x75\x14\x72\x63\x9d\x86\ \x9a\x28\x43\x18\xda\x42\xfa\x6d\x99\x25\x0f\x86\x0e\xb7\x2c\xb9\ \x5c\xd5\xc7\x1d\x39\x42\x43\x27\x89\x75\x92\x08\x49\xdb\x5a\x32\ \x15\x8d\x1b\xb0\x9b\x2b\x5b\x2b\x41\x39\x72\xd6\x78\x68\xb5\xa2\ \x92\x7a\x2a\x41\xb6\x0f\xf6\x56\x2e\xd3\xcc\xf9\xca\x9c\x2f\xbe\ \xaa\x08\xe4\x2f\xad\x2d\xd6\xf1\x38\x30\x3d\xe5\xca\x6b\xe7\xbb\ \x3c\xfe\x36\x10\xc1\x33\x6a\x99\xd0\x5c\x74\x41\x7b\x80\xb3\x5a\ \x6a\x29\x85\x9f\x5a\x3e\xeb\xe7\x8a\x0e\x0f\x80\x2c\xb3\x3c\x0c\ \x90\x94\x16\xa7\x13\x2a\xe5\xe9\x5a\x78\x78\x61\x1d\x37\x88\x40\ \x07\x88\x87\x46\x3e\x52\xa5\x1e\x97\x09\x32\xd7\x84\x89\xd5\x72\ \x4b\x84\x2d\x2a\xee\x48\x89\x22\x8e\xe7\x26\xbb\x43\x9e\xd5\x18\ \xe1\xca\x78\x21\xe7\xb7\xbc\xc3\x2e\x8d\x18\x47\x66\x29\x14\x68\ \xe8\x41\x59\x9e\x3e\x54\x66\x36\x66\xf8\xde\xa3\x3c\x2b\x8f\x79\ \xf8\x43\x95\x49\xfa\xc9\x40\x5a\x9d\xf7\xd2\x13\xae\x9e\xb3\x05\ \x9d\xf4\x07\x1f\xe4\xf9\xc1\x41\x09\x35\x54\x20\x11\x99\x26\xf0\ \xe9\xca\xfa\xc9\x43\x15\xac\xb5\x7e\xba\xb3\xcd\xf4\x18\xf1\x6b\ \x7e\x40\x68\x6d\xc5\x33\xc6\x06\xa1\x0c\x20\x80\xa8\x07\x0d\x74\ \x8e\xb4\x31\x47\xba\x77\xcb\x35\x26\x21\x71\xcd\x95\xd5\x8c\x2a\ \x22\x78\xd6\xe9\x64\xa0\xcd\x26\x9c\xca\xd8\xf8\x86\x1b\xd0\x06\ \x45\x4a\xc1\xe9\x82\xcb\xbb\x88\xa0\x29\x26\x95\x54\x08\x61\x5c\ \x8e\x30\xa3\xca\xcf\xaa\xac\x3c\x67\xf1\xfc\xb2\x30\x57\x45\x15\ \x61\x02\xa7\xcb\xe9\x06\x14\x98\x9e\x75\x8c\x67\x1d\x2b\xcb\x83\ \xfe\xca\x71\x02\x6e\xdd\xa5\x1c\xc7\x38\x40\xd1\xce\x55\x02\x3d\ \x64\x08\x32\x86\x30\x44\x29\xba\x96\xbb\x49\x81\x26\x35\x23\xc2\ \x5d\x07\x53\x93\x19\x85\x50\xa5\x14\x3c\xa8\xc5\x3a\x88\xf0\x02\ \xb0\xa5\xc1\x0d\x4d\x00\xc2\x33\x80\x80\x86\xe4\xa9\x64\x54\x41\ \xf2\x08\x4b\x70\x23\x12\xbf\x3d\xc7\x55\x1e\x61\x15\xc1\x84\x35\ \x1e\xe8\xc8\x24\x62\x65\xb8\x0e\x11\x94\xb8\xb1\xef\xe8\xef\x2d\ \x3c\x48\x43\x3c\x64\x00\x03\x17\xb8\x8f\x10\x28\x13\x13\xfd\x66\ \xe6\xc4\x27\x9e\x0f\x3e\x7f\x10\x86\x2a\x70\x16\xc0\x70\x11\x88\ \x30\x7d\x22\x23\x5e\xb2\xf5\x20\x3e\x25\x90\x30\x27\x58\xa0\x04\ \x2d\xc4\xa8\xd0\x40\x46\x32\x91\xc1\x8c\xa2\x6a\xa7\x3b\xcf\x3c\ \x2d\x0f\x1f\xe2\xd0\x01\xfa\x08\xb6\x52\xb0\x23\x85\xeb\x08\xdc\ \x0b\xdc\x90\x86\xe5\x9d\x4d\x7b\x4b\x28\x09\xf6\xe8\x86\x2a\x4a\ \xea\x06\x39\x46\xc9\x55\x8d\x4e\xb5\x43\x89\xcd\x8a\x46\x7a\xd3\ \x49\x19\x28\xf6\xaa\x78\x10\x01\x81\x4e\x04\x4a\xde\x56\x52\x32\ \xa8\xb8\x48\x66\x5c\xbc\xdc\x16\xc9\x32\x9f\xf9\xf0\x23\x06\xaa\ \x00\x02\x00\xab\x64\x3a\xa1\x25\x50\x41\x65\x24\x20\x9f\x32\xfe\ \x11\x40\x05\xc1\xf1\x81\xab\xfb\xc7\xd1\x90\xf6\x28\xce\x08\x44\ \x90\x7b\x44\xc7\xed\x78\x47\x0b\x03\xe4\x61\x10\xd7\xbc\xa6\x41\ \x68\xd1\x86\x52\xbc\xa0\x14\x67\x08\x5b\x06\x10\x39\x36\xd9\x98\ \x0d\x6d\xc6\xe8\x1b\x71\x08\xb6\xce\xda\x20\xa7\x3a\x65\x40\x03\ \x47\xac\x83\xc4\x9c\x20\xf1\x06\xdf\x71\x83\x22\x0d\xa7\xc4\x18\ \x89\x32\x58\xba\x39\x95\x31\x76\xa2\x4b\x54\x82\xcd\x0d\x63\x23\ \x42\x13\xe6\x40\x50\x58\xce\x92\x66\xf0\x99\x25\x7c\x4c\xb1\x8a\ \x57\x74\x41\x66\x60\x14\xc6\x3a\x3c\x17\xc0\xa0\x85\x8e\x8d\x0b\ \x12\x50\x26\xca\xb1\xc0\x32\xb2\xe3\x97\xc6\x1c\xe9\x31\x56\x77\ \x88\x7a\x45\xaa\x32\x19\x1a\x51\xa4\x40\xd8\x99\x0a\x52\x13\x33\ \xd7\xa4\x5d\x1e\xba\x70\xc2\xa1\x01\xcf\x0d\xa5\x58\x07\x3a\x32\ \x40\x4e\xe3\x8d\x72\x09\xb7\xe1\xa1\xf6\x90\x78\x9d\x34\x80\xc0\ \x85\x07\x0d\x5c\x5b\x16\xc9\xc2\xf4\xe5\xf3\x94\x70\x31\x68\x1a\ \x44\xe9\x4e\x91\x84\xb2\x89\x0d\x1d\x9c\xe1\x9a\xe0\x1e\x59\xea\ \x4f\x3f\xf6\xbb\x9f\x7e\xba\xf0\x8a\x55\x94\xe0\x15\xfc\x60\x51\ \x17\x62\xa0\xc2\x35\x0a\x93\x4f\x7a\x3a\x23\x30\xe1\xc2\xfe\x8e\ \x72\x90\x81\x81\xdc\x5a\xa0\x82\x46\x3a\x58\x32\x0c\xca\x50\x49\ \x0b\x0d\x08\xf3\x48\x10\x13\xcd\x94\x9a\xfb\xb8\x1d\x2d\x4c\x31\ \x53\x7f\x00\x10\x85\x42\xa5\x05\x11\xd6\x91\x83\x15\xbe\x70\xab\ \xcf\xb8\x91\xdf\xa6\x90\x0f\x9d\x28\xd1\x85\x68\x75\xa8\x43\xa1\ \x38\x55\x7d\x12\x01\xaa\x59\x3d\x9c\xf6\x72\x48\x11\x58\x31\xf5\ \xaa\xfa\xf3\x0e\x4f\xea\xd1\x04\x10\x44\x6b\xa3\xb1\xac\x5c\x44\ \x59\xd4\x15\xb6\x5e\x60\x15\x7f\x60\x11\x3f\xd6\x71\x0e\xd7\xbc\ \xe5\x41\x37\x00\x17\xea\xe0\x42\xc0\x72\x78\x8b\x98\x7d\x0d\xd7\ \x9d\x06\xeb\x97\xc0\x12\xd6\xb0\xad\x73\x14\x1e\xf3\xd0\x8f\x6a\ \x0d\xc2\x51\x1e\x04\xa1\x3f\x6a\xd1\x05\x7e\x7c\x93\x07\x27\xe4\ \xe9\x2c\x97\x56\x0b\x37\xd4\x42\xb3\x07\x7d\x21\x10\xac\x40\x0e\ \x68\xf8\x41\x06\xf9\xb0\x8e\x8b\xf4\xc3\x8e\x83\x26\x14\x89\x00\ \x93\x98\x28\x6d\x73\x9b\x9b\xa4\x84\x48\xaa\x84\x9e\x0b\x24\xcc\ \x86\xf2\x48\xf8\x39\x31\x79\x46\x19\xe4\x04\xd6\x54\xa2\xc1\x0a\ \x60\xe2\x2d\x99\xf2\x73\x15\xb4\xee\xe7\x2a\xf5\x7b\x28\x0f\xd6\ \x5a\x02\x8a\xf2\x83\x2c\xfc\x50\xc1\x68\x36\x2c\xba\xfe\x63\xa0\ \xf1\x94\x82\xf9\x6b\x9d\x08\x58\x40\x05\x6e\xb7\x98\x70\xec\x04\ \x32\xff\x51\x02\xcb\x3c\x8a\xbc\x47\xae\x57\x78\x69\xe1\x0f\xad\ \x69\x50\x70\xa5\x70\x51\x59\x5e\xc0\xc2\x4c\x35\x01\x0d\x11\xf0\ \xc3\x14\x6e\xa2\xe1\x29\x4b\xf9\x85\xe7\x2c\x86\x07\x52\xf1\x92\ \x2d\xc1\x64\x0a\x47\xa1\xb0\x4b\xa2\x27\x93\x9a\x8c\xc7\x3c\x6f\ \xde\x52\x93\xd0\xa0\xe1\xdb\x9a\x15\x46\x3a\x91\x43\x19\xe6\xb0\ \x67\x10\x48\xc5\xb7\x26\x7e\x8f\xcb\x28\xf7\x1e\xab\xfc\xa1\xad\ \xaf\x68\x83\x55\xda\xd0\x05\x03\xa0\xa3\x0b\xbe\x12\xdc\x9d\x42\ \x57\x25\x1d\xd7\x85\x0c\x97\x1e\xa9\x5d\xc0\x75\x02\x95\xca\x11\ \x5d\x1c\xfa\x45\x87\xae\x30\xaf\x0a\x62\xe6\x99\x98\x51\x45\x1f\ \xe3\xfb\x96\xae\x29\xe4\x6b\xe0\xcc\x27\xd8\x60\x28\x03\x3f\x00\ \xa3\x94\x5d\xae\x72\x44\x22\x50\x07\x31\x50\x21\x15\x1e\x5e\xca\ \x52\x92\x12\x67\x18\x24\x45\x4b\x63\x6e\x52\x9b\xc9\xf3\x66\xa4\ \x74\xe9\x19\x3b\x71\xc3\x5c\x78\x50\x67\xb3\x1e\x14\x04\x20\x88\ \x0a\xfd\xcc\x34\x62\xca\x71\xa5\x65\x93\x3b\x71\x55\xda\xc0\xd6\ \x57\x7c\x53\x83\xa5\x60\x72\x73\xc1\x3a\x5d\x27\xfe\xee\xa5\x1c\ \xcd\x68\x46\x27\xc8\x10\xd8\x4d\xcb\xf1\x5c\x8b\x8d\xda\xbc\x3c\ \x53\xb5\xca\xd0\x22\xd5\x7b\xdc\x29\xab\x5b\x8d\x0e\x55\x60\x76\ \x1d\x41\xcd\x40\x42\x97\x77\xbc\x28\x4d\x59\xab\x56\xf0\x83\x07\ \xa8\x30\x71\x8a\x7b\xa0\x1e\x65\x48\x85\xb0\xd9\xe0\x01\x0a\xbb\ \x20\x26\xe5\x61\x83\x9a\x63\x52\x1b\xdd\x50\x71\xc2\x71\x36\x62\ \x3c\x92\x98\x1d\xc3\xdd\xf3\xb7\x97\xfb\xea\xfe\xd2\x8a\x26\x97\ \x6d\x7b\xdb\x61\x79\xd6\xb6\xdf\x3b\xee\x55\xac\x02\xae\x3c\x85\ \x31\x2d\xce\xe1\xa2\x83\xbe\xbc\xdd\x08\xbc\x53\x26\xc8\x00\x6f\ \x0e\x5c\x1a\x8e\x7e\x49\x43\x09\xec\x6d\xa1\x43\xcc\x6e\xd4\xf5\ \xb2\x20\x08\xb1\xc6\xe4\xf6\x9e\xc1\xdc\x4f\x43\x87\x08\xf7\x81\ \x0e\xd4\x08\x24\x02\x40\x10\x06\x10\x9a\x10\x6b\x02\xc7\x23\x02\ \x62\xf0\x4f\x5a\xa8\x70\x85\x89\xb3\x01\x1d\x44\xa8\x03\x1b\x34\ \x6e\xe1\x98\x14\x3b\xe4\xbc\xc1\x08\x3a\x99\x87\x31\x18\x10\x8b\ \x48\x4b\x45\xa2\xac\x9e\x3d\x63\x27\x8e\x2f\x4a\x46\x8f\x28\x9b\ \xcc\xa4\xa6\x32\xd5\x07\x2c\xfc\xd8\x0a\xe6\xb7\xd2\x85\x89\xae\ \xc2\x14\xef\x7d\x6f\x29\x4c\xa1\x8a\x03\xf4\xfe\xaf\x7f\xae\x51\ \x24\x56\x04\xac\x3f\xbe\xe8\x8c\x4f\x27\xe8\x04\x07\x3a\x71\x8c\ \x63\x3c\x3d\x13\x42\xa6\x10\xba\xa2\xb6\xa8\x0d\xe5\xb4\x33\x9a\ \x19\xd1\x4e\x37\xf8\xb4\x7f\xff\x9b\x16\x19\x10\xc6\x03\xca\x46\ \x8e\x08\x90\xa3\x09\x89\x74\x03\x10\x22\x10\x82\xb8\xcb\x9d\xee\ \x13\xf7\x80\x1c\xf0\x6e\x9e\x32\xc3\x84\x46\xe4\x91\x09\x83\x97\ \x3a\xb2\x67\xd0\x48\x24\xb3\x12\x19\xfa\x91\x63\x2b\x8d\xbd\x80\ \xda\x04\x1a\x0a\x1a\xb4\x1f\xe5\x9c\xb1\xe8\xc4\xf4\x59\x53\x9a\ \xbe\x02\x96\x36\x60\xbe\x06\x9a\xff\x03\xb6\xfa\x3c\x6e\x82\x0f\ \xb9\x3a\x80\xd2\x3b\x40\x74\xf0\x07\x61\x38\x00\x61\xa8\x16\xb5\ \xd0\x00\x20\x10\x1b\xa0\x31\xa0\x3c\xe1\x2b\x32\xa8\xbd\x4c\xa8\ \xbd\x34\x98\xba\x0a\xe1\x02\x82\xb8\x8c\xde\xd3\x37\xd0\x10\x24\ \x41\x1a\x8d\x18\xa0\x85\x2e\x98\x8c\xd1\x78\x17\x6d\x5a\x07\x10\ \x18\x9b\xb2\x41\x07\x17\x21\x02\x20\xf0\x83\xb9\xab\x3e\xeb\xa3\ \xb8\x62\x10\x25\x31\x30\x8f\xe8\xc1\xb0\x78\x60\x89\x67\xdb\xb2\ \x15\x3a\x1c\x8a\x99\x95\x7a\x40\x9b\xb4\x51\x12\x98\x30\x06\x7b\ \x92\x12\xf7\xcb\x19\x76\x70\xa1\x29\x8b\xfe\x11\x39\x18\xab\xb2\ \xca\x96\xfb\xc3\x39\xfc\xf3\x0a\xb0\xa8\x81\x2e\xb8\x8f\xfa\xc0\ \x3c\x7e\x60\x2b\x7f\xe8\xbf\x3f\x80\xab\x2e\xf0\x87\x73\x38\x07\ \x7f\x58\x07\x03\x30\x85\x5a\x38\x87\xfe\x79\xc0\xb8\x1b\x84\x8c\ \x32\x3a\xb9\x20\x0b\x91\xe2\x34\xda\xa3\x3d\xa9\x33\x97\xc6\x60\ \xa9\x24\x03\xc1\x23\x93\x17\x0f\xf1\x90\xcb\x40\xc1\x86\x28\xb8\ \x49\x29\xaf\x07\x00\x81\xc0\x49\x83\x26\x70\x2d\xb2\x89\x00\x1c\ \xcc\x41\xba\xbb\x3e\x2a\xf0\x00\x68\x98\x11\x18\x18\x33\x2e\x69\ \x92\xda\x98\x33\x29\x52\x39\x24\x0a\x10\x76\x80\x11\x9e\xc8\x1b\ \xbd\x91\x83\x78\xa8\x87\x8a\x18\x8f\x38\x93\x81\x04\xe3\xa7\xc0\ \xc1\x0a\x06\x21\x9c\xeb\xa0\x8a\x17\x8a\x8d\x39\x78\x25\x2f\x8a\ \x19\x6f\xa3\xbc\x30\xfc\x8a\x2e\xe8\x02\xfe\x6b\x03\x43\xe3\x83\ \xf8\xb0\x28\x0d\xfa\x03\x7f\xf8\x03\xf6\xb2\x28\xab\x38\x21\x7e\ \xa8\x43\xb4\xa8\x3e\x20\xe0\xa2\x1e\x3b\x01\xbf\xba\x01\xdc\x1b\ \x44\xc4\x30\x94\x5f\xa0\x97\x23\x53\x0b\x0f\xd9\xa3\xda\xa9\x1d\ \xb2\x3b\x35\x0d\xf0\x8f\x7e\x40\x07\x2a\x73\x03\xd8\xc8\xc4\x4d\ \xac\x3e\x8a\xa3\x02\x31\xa0\x91\x3a\xfe\x40\x39\x4a\x42\x27\x95\ \xc3\x0e\x95\xf3\x0e\x29\x84\x8b\xd8\xd2\x1b\x1a\xf2\x1b\x80\x94\ \x30\x8f\x93\x01\xed\x99\x33\x51\x02\x1c\xef\xc8\x8e\x15\x3a\x03\ \xad\x3a\xb0\x0d\x73\x83\x39\x68\x02\x31\x71\x0f\xd4\xda\x42\xad\ \x98\xbc\x9c\xeb\x0a\xb0\xf8\x8a\x31\xe4\x01\x33\x34\x05\x17\x5b\ \x49\xac\xe0\x07\x36\xac\x46\xf6\xba\x1c\x7f\x38\x80\x7b\x88\x3b\ \x61\x60\xbd\xda\x43\xa9\x71\xec\xc0\x41\x44\x17\xc4\x1a\x2f\x6b\ \xa1\x9d\xd4\x58\x2f\xe2\x1b\x91\x82\x88\x01\x82\xb3\x26\xff\x90\ \xc0\x29\x73\x83\x32\x80\x3b\x7d\x8c\x3b\x7e\xa4\x02\x68\x58\xbf\ \xf1\x28\xc5\xbb\xd9\x89\x1b\x90\x13\xc3\x09\x9d\xa1\x10\xa5\x88\ \x49\x42\x2b\x18\x8f\x54\x60\x03\x64\x73\x12\x77\x3a\xc5\x0c\x33\ \x1c\xf0\x59\x2a\x45\x2a\x83\xd8\xb0\xc4\x28\x6b\x03\x6c\x03\x49\ \xb2\xda\x0f\xfb\xb1\x3f\x92\xac\xb9\xcc\x43\xc6\xfd\xeb\x02\xaa\ \xf8\x03\x15\x98\x0a\xf8\xf8\x26\x36\xf4\x07\x7f\x60\x2f\x6e\xf2\ \xba\x2d\x1c\xbd\x49\xf0\x0f\x9d\x14\x9c\x17\xe0\xae\xc1\x22\xc7\ \x72\x3c\x97\x0c\x19\x08\xf3\xca\x03\x61\x58\x1a\x7e\x70\x1a\x26\ \xd3\x1a\x5b\xb2\x97\xcc\x98\x9d\xfe\x08\xec\x2c\x74\xa0\x3e\xaa\ \xac\xca\xeb\xab\x83\x4e\x62\x09\x39\x4b\x45\xec\x40\x48\x86\x02\ \x27\x8a\xec\x24\x1a\x21\x84\x31\x23\x84\x98\x70\x12\xdc\xd0\x9b\ \x90\xb8\x8e\x4e\x8a\x98\x7c\x4a\x28\xba\x9c\x83\xe6\xea\x8a\x39\ \x48\x16\x3f\x8b\x0f\x99\xa9\x9c\x40\x1b\x34\x63\xdc\x3f\xb0\x58\ \xc6\x8a\x5a\x49\xcc\x6b\x1a\x7f\x30\x05\xc6\x24\xc0\xc7\x3c\xb7\ \x27\xe2\x87\xfe\x48\x8b\x44\x9b\xc2\xbe\x38\x26\xcd\x2c\xc7\x43\ \x20\x88\xf7\x54\x85\x5a\x68\xaf\x56\x9b\x29\xb0\xd1\x1d\x61\xb8\ \x8c\x77\x49\xbb\xa1\x72\x83\x0c\xb8\x43\xd7\xe4\x44\x8a\xb3\x02\ \x8a\x6c\x02\xb3\xbc\x8d\x39\x5b\x21\xf3\x41\x1f\x02\x79\xcb\xc4\ \xf3\x30\x2b\x40\x95\x3a\xa0\x07\xda\xa0\x50\x54\x59\xcb\x8a\xc8\ \x30\xf2\x13\x19\xed\x6b\x91\xb9\x54\xce\xc3\xe4\x81\x65\x81\x1c\ \x65\x81\xce\x9a\x93\x0f\x42\xbb\x3f\xcc\x13\xc3\x65\xac\xc6\x3f\ \x30\x05\xe4\x5a\xb4\xc1\xe4\x87\x69\x54\xc6\xf8\x30\xb7\xf1\xdc\ \x42\x3d\x48\x0b\x10\x38\x9f\xbe\x38\x81\x72\x61\x4f\xa3\x41\x04\ \x38\xa1\x05\x27\x2b\x85\xce\x28\xb8\x3d\xaa\x85\x54\x8b\x29\x55\ \x78\x00\x20\x20\x87\xbb\x7b\xfe\xa1\xff\x04\xd0\x4e\x2c\x06\x3c\ \x9b\xcb\x67\xb0\x09\x82\xbc\xaa\xdf\x7a\x81\x4c\x78\x4b\x2c\x81\ \x06\xda\x60\x9c\x67\x90\x83\x7a\x98\x11\x08\xa5\xd0\x67\x88\x89\ \xdd\x92\x45\x1a\x8a\x45\x2c\xcc\x94\x3e\xc0\xc2\x2c\xd2\xa2\x10\ \x65\x8f\xc7\x59\x19\x66\x69\x19\x9a\x1b\xc6\xbe\xac\xa5\x66\x5c\ \xd1\xfb\x78\xb4\x52\x58\xb4\x13\x62\x43\xd1\x3c\xb7\x45\x75\xb2\ \x6c\x29\x05\x3d\x38\x00\xc6\xf3\x98\xbb\xc8\xcc\x20\x65\x8c\x21\ \x1d\x84\x3c\x60\x1a\x73\x2b\x91\x03\x28\x4a\x0e\x69\x88\x3c\x00\ \x82\x07\x88\x80\x3c\xd0\x30\x10\x88\x80\x2a\x7d\xcd\x89\xb3\x02\ \x39\x88\x98\x18\x61\xb0\x50\xc2\x0e\x2e\x62\x87\x69\xbb\x01\x31\ \xfd\xb0\x0f\x03\x13\x59\xac\x04\x2b\x98\xd0\xa6\x98\x91\xa6\x88\ \x0d\x34\x8d\x87\x58\x44\x53\xde\x6a\x83\x26\x80\x8a\x8f\xcc\x22\ \x10\x5d\x96\x22\xe8\x83\x20\xd0\x53\xc8\x39\x46\x98\xd9\xcb\x40\ \xeb\xbf\x30\x5c\xc6\x6d\x9d\xa5\x9f\x8b\xc9\xf6\x7a\xaf\xf9\x64\ \x54\x8f\x01\x81\xa1\xd3\x1f\x37\x10\x44\x4b\x6d\x4f\x43\xe9\x9d\ \x4d\xed\x8c\x23\x63\xc7\x81\xf8\xcc\x27\xd5\x00\x3f\x00\x02\xd7\ \x02\x02\x55\xdd\x47\x4f\xfe\xb4\x82\x88\x01\x18\x03\x45\x27\x55\ \x7c\x3f\x06\x1d\x4b\x7f\x8d\x53\xa7\xe8\xd5\x5f\xd5\xd5\xe4\xc1\ \xc2\x26\x40\xd3\x93\x79\x58\x79\x10\xc6\x39\x90\x9f\xc7\xd1\xd3\ \x12\x7d\xd6\x11\x88\x56\x8d\x65\x99\x67\x25\x51\x6e\xeb\x4b\x15\ \x95\x0a\x16\x65\x4c\xac\x28\x85\x80\x13\x4d\xf6\x6a\x1a\x0d\x6a\ \xaf\xf9\x7c\x4c\x9a\xb9\xc6\xf3\xa9\x54\x75\xa5\x90\x12\x50\xac\ \x11\xd1\x03\x79\x54\x0b\x79\xe9\x4c\xd4\x8c\x80\x7e\xd8\x82\xa1\ \xca\x00\x3f\xd0\x57\xff\x98\x3b\x7e\x2d\x56\x59\x3c\x33\x0c\x9b\ \x33\x6c\x81\x25\xc2\xe1\x09\x51\x92\x9f\x32\x90\x83\x84\xa5\x87\ \xa6\xf8\x92\x4a\x30\x99\x3d\x3b\x53\xad\x2d\x19\xad\xad\x87\x3e\ \xc0\x4b\xf5\x90\x03\x69\x1d\xd1\xca\x83\xd6\x3e\x18\x81\x20\x08\ \x82\x11\x18\x81\x3d\x2d\x02\x15\x60\x96\x33\x91\xce\xe8\xec\x8a\ \xc6\x8c\xc9\x15\xfd\xb9\xc1\x3c\x83\x94\x55\xd4\x73\x13\x57\x1c\ \x7d\x8b\xf8\x10\x9c\x36\x00\x52\x9a\xd5\xcc\x43\x20\xb2\x52\xcb\ \xa3\x0f\x21\xaf\x75\x84\x0c\x20\x88\x1a\x72\xd0\xa8\x0c\x28\x5a\ \xa3\x9d\x38\x31\xb8\x38\x8a\xa1\xa2\x2e\x11\xa8\x7b\x02\x2b\x2a\ \x94\xda\xb9\x94\x9f\xfe\x93\xb9\x5a\xac\x3d\x53\x56\x52\xd6\x93\ \xd1\xda\xd6\xbd\x5a\xa8\xa8\x01\xf9\x81\x03\x38\x90\x07\xb6\x65\ \x5b\x95\xa9\x8f\x95\x51\xdb\xdb\xe5\x03\x3e\x28\x02\x3e\x50\x01\ \xb9\xe5\xd3\x3e\x0d\x54\xf7\xe0\x87\xff\xab\x51\xaf\x73\xcc\xa6\ \x51\xd9\x1b\x1d\x4f\x73\x03\x2b\x1e\x38\x5c\xc4\x4d\xdc\x43\x88\ \x29\x0d\xc8\xd4\x11\xf1\x87\x07\x50\x17\xcf\x58\x87\x7c\xbd\x82\ \x5c\x3a\x03\xf0\xd5\x57\x7e\x8c\x80\xbb\x2b\x1e\xd9\xb0\x02\x26\ \xd9\xd2\x59\x6d\x28\xc2\x49\xce\x62\x95\x87\x4a\xb8\x5a\x94\xe9\ \xda\xa6\x08\x93\xae\x6d\x9c\xd9\xbd\x5a\x38\x18\x93\x68\x9d\xdd\ \x20\x80\x03\x01\x66\xdb\xb7\x25\xd1\x3c\xe5\x83\xb5\x1d\x01\x3e\ \xe8\x03\x06\x96\x5b\xe1\x05\x43\xa9\xd0\xbc\xe3\x45\x46\x65\x0c\ \xc3\xbc\x35\x52\xb2\x60\x59\xe7\x65\xd4\x46\x85\x25\x1e\x98\x59\ \xea\x65\x9d\xa6\x94\x9a\x22\xd5\x20\xa4\x89\x8c\x07\xd8\x82\x2d\ \xf0\x46\x1e\x48\x55\x55\xb5\x4a\x2b\x58\x3b\xb0\x81\xc1\x17\xb2\ \x82\x67\x53\x45\xab\x0a\x5d\xef\xb0\xc4\xd5\xad\x87\xfe\x55\x8f\ \xf9\xa5\x5f\x63\x39\x16\xad\x25\xdb\x22\xbe\xda\x2c\x12\xe0\x00\ \x9e\xdd\x01\xbe\xfe\xdd\x03\x66\x0f\x8d\x5d\xdb\xde\x55\x01\xdf\ \x0d\x5e\xb9\x45\x49\x09\xae\x0f\x16\x6d\x51\x65\x54\xc6\xb1\x68\ \xd4\x95\xd5\x60\xaf\x7b\x5e\xb0\x32\xdc\x9f\x14\x61\xd6\x39\x04\ \x6b\x51\x85\xae\x3b\x52\x10\xda\x07\x20\xd0\xd9\x07\x60\xa1\xa8\ \x01\x50\xab\xa4\x82\x08\x90\x53\x06\xf5\x57\xdb\x5c\xb7\xc0\x70\ \x03\x9e\x58\xdd\xf9\x6d\xe2\x20\xd6\x5a\xda\x0d\xe2\xd9\x75\x9c\ \xc7\x39\x16\x7a\xa0\x5d\x68\x0d\x82\xda\x65\xdb\xd9\x9d\x01\xb6\ \x8d\x05\xb6\x85\xe2\xdf\xe5\x03\x07\xe8\x03\x4e\xee\x5d\xe0\xc5\ \x62\xec\xb4\xbc\xfb\xb8\xe2\xeb\xa4\x51\x93\xfd\x26\xaf\x13\x57\ \xf1\x7c\xd9\x54\x76\x22\xe9\x4d\x63\x11\x36\x14\x7f\x08\xe3\xa5\ \x31\x84\x7d\xd8\x87\x81\xf0\x8f\x45\x6a\x4d\x18\x9e\xb8\xb3\x9b\ \x41\xb2\x48\x24\x22\xe0\x4a\x95\xa3\x12\x0e\x3b\x1c\x63\x3d\xe4\ \xc6\x11\x62\xda\x65\xdb\x20\x0e\x13\x31\x89\x56\x79\x80\x03\x7a\ \x58\xe4\x48\x76\xe2\x26\x1e\x60\x38\x98\x81\x4b\xa6\xd6\x67\x65\ \xe0\x70\xee\x64\x15\xe8\x83\x52\x36\xe5\xfb\x28\x4c\x53\x50\x67\ \x6a\x5c\x4c\x75\x06\xdc\x77\x1e\xe3\x3f\x36\x8b\xe9\x8d\x65\x4b\ \x3d\x84\x55\xfe\x20\x90\x73\x13\xaf\x5f\xd8\x82\x2b\xb8\x99\x17\ \xe8\x65\xd7\x3c\xda\x3c\x2e\x9b\x0c\x48\x24\xb1\xea\x89\xc3\x13\ \x8a\x81\xcd\x96\x54\xd2\xdf\x4a\x50\x64\x38\x68\xdd\xa7\x78\x66\ \xdb\x95\xe6\x3e\x50\x0f\x45\x36\xdb\x49\x86\x83\x0b\xe8\xe8\x01\ \x8e\x05\xda\x9d\x62\x65\xd9\xd3\xe0\x75\x80\x4d\x76\x00\x93\x0e\ \xde\xeb\x2c\x82\xaf\x50\x81\x74\x56\x01\x53\x50\x01\x6a\x74\xe7\ \xbe\x75\x63\x97\x95\xe7\x59\xa2\xe7\x7a\x56\x57\x7c\x2e\x0b\x0d\ \x32\x04\xee\xcd\x03\xc9\xd8\x07\xc8\x60\xa1\x7e\x2e\xdf\x08\xc8\ \x80\x49\x1c\x0b\xad\x52\xb9\xa7\x86\xea\x85\xfe\xe3\x16\x21\x82\ \x33\x0d\x62\x6a\x96\xe8\xab\xad\xdd\xc7\xb9\xdd\xb2\x0d\x82\xb2\ \xd5\xe6\x01\x8e\x56\x8e\x86\x83\x50\xf0\x68\x90\x86\x03\x6f\x66\ \x60\xb8\x5d\x19\x15\x70\x80\xb7\x7e\x6b\x15\x98\x83\xe0\x8d\xdb\ \xc2\x2c\x4c\x15\x78\x85\x57\x30\x05\x3e\x50\x67\x53\xd0\x6b\xe1\ \x0b\xb8\x93\x75\xb1\x9c\x3e\x83\x36\x40\x63\x9e\x66\xcf\x57\xd0\ \x60\x0c\x7a\x00\xc6\x1a\x11\x43\xc0\x14\x70\xba\x5c\x2a\x10\x06\ \xd7\xda\x1f\xd9\x88\x07\x80\xc9\xb3\x26\x88\xda\x86\x5b\x37\x56\ \x54\x24\xfe\x6c\x73\x4e\x3a\x55\x0f\x47\xa6\x5d\x8b\xe5\xea\x6a\ \xae\xe6\x50\x60\xed\x50\x70\x66\xdb\x0d\x82\x90\xee\x68\x7a\xf0\ \x68\x1f\x10\xe0\x18\x68\xdb\xb6\x5d\xe0\x96\xbe\x0f\xf6\x20\x67\ \xb7\x7e\x6b\x37\x4c\xe9\x2b\x7e\x69\xbc\xce\xeb\xbc\x56\x67\x72\ \xdb\x29\xd1\xd4\x60\xc1\x5d\x37\xe9\x3d\x6c\xc4\x6e\xcf\x55\x28\ \x05\x43\x08\x11\xcc\x28\xea\x76\xc9\x81\x5a\xb0\x0a\x3b\x56\xd5\ \x08\xb0\x6c\x29\x43\xbc\x03\xfb\x09\x8d\xec\x15\x84\xd4\x1f\x56\ \x3c\xa8\xad\xe8\xb3\x65\x71\xce\x63\x51\x0f\x95\x71\xce\x39\x08\ \x02\x7a\xe0\x84\xfb\x6e\x6d\xd7\x76\x62\xd8\x16\x60\xda\xa6\x6d\ \x38\xf0\x81\x58\x90\x07\x6f\x76\x80\x20\x78\x6b\xdf\x65\x96\xc2\ \x74\x00\x03\x88\x01\x3d\x88\x81\x73\x70\x00\x08\x37\x85\x94\xe6\ \xeb\x57\x30\x80\x55\xb8\x70\xe4\x66\xab\x96\x0d\x6c\x45\x95\x67\ \x10\x8e\x6e\xe9\xd6\xcc\x55\x68\x97\xa4\x79\x80\x76\x41\x94\x2d\ \x78\x00\xb2\x30\xcf\x2a\x1d\x84\x31\x4a\x1f\x70\x4a\xce\x03\x73\ \xbf\x5e\xc4\x0e\xf0\x79\x91\xd4\x82\x3f\x84\x72\x83\xbb\xc4\xb9\ \x67\xb5\x58\x96\x81\x56\x38\xb8\x6f\x4e\xc8\x6f\x6d\xe6\xef\x8e\ \x0e\xfe\x05\x1f\xa0\x07\x1f\xf0\x01\x38\x88\x01\xdb\x8e\x01\x4e\ \x36\x80\x58\x38\x69\xb9\xb5\x8f\xb8\x75\x80\x18\x30\x00\x07\x87\ \xf0\x2f\x77\x43\x03\x38\x87\x0b\x67\x31\x8a\x3a\x6e\x5a\x56\x46\ \xc0\xa5\xc9\x75\x3b\x63\x11\xe7\x69\xc3\xc8\x29\x3a\x22\x88\x2b\ \xf0\x0c\x76\xb0\xdc\x2a\x55\x6a\xcb\x52\x24\xef\x58\xa4\x18\x79\ \x3e\xa9\xca\x8e\x40\x2e\x2d\x56\x4c\x03\x28\x1a\xa6\x86\x4e\x28\ \x18\xbc\xcb\xf6\xae\x81\x31\x21\xd1\xdc\x0d\x82\x50\xc0\x6f\xd7\ \x66\x6d\xd5\xde\x6f\x00\x06\xf0\x50\x88\x01\x00\x9f\x01\x00\xb7\ \xed\x02\x7f\xeb\x05\xf6\xdd\x08\x56\xf0\x73\xe0\x72\x03\x40\xf5\ \x54\x37\x00\x0b\xef\xf2\x12\x70\x75\xb7\x62\xab\x55\xf0\x87\x98\ \x9c\x75\x55\xf6\x70\xb0\x0a\x61\x37\x57\x57\x2e\xd0\x00\xc8\x10\ \xca\x3c\x40\xc7\x7d\x48\x21\xef\xde\xc4\x3c\x4c\x38\xd7\x22\xf4\ \x04\x05\x98\xeb\xd8\xb0\x83\xf4\x8e\xbc\x29\x1f\xad\x12\x0a\x9e\ \xf0\x8e\x4c\x70\xbf\xa6\x26\x02\x18\xec\xb3\x31\x11\xed\x31\x79\ \x96\x10\xed\x03\x49\x37\x72\x25\x67\x6d\xff\x9e\x5d\x8b\x9d\xe4\ \x27\x0f\xe9\x4e\x8f\xf2\x4f\x8f\x05\x03\x08\x02\xe0\xfd\xdd\xf6\ \xfe\x00\x43\x05\x57\xf5\x7b\x1f\xf3\x2e\xd7\x03\x57\xef\xb9\x58\ \x7f\x05\xef\x34\x85\xe5\x4e\x59\x57\x76\x22\xc3\xd5\x75\x37\x3f\ \x00\xc5\xd2\x90\xa4\x19\x0d\xfa\x12\x06\xaa\x1c\x04\x20\x10\xa7\ \x0c\xc8\x81\x1c\x50\xa1\xc7\x8b\xa2\x52\x8a\xb6\xf4\xe9\xc5\x22\ \x59\xa2\xa6\xd5\x89\x8d\x61\xaa\x2e\x2b\xec\x6b\xab\x81\x6d\x2f\ \x82\xff\x6d\x0f\x33\xe9\x03\x22\xaf\x74\xd5\x5e\xf2\xab\xbd\x00\ \x47\x7e\x62\xae\xbe\x64\x79\x08\xf0\x8e\x76\xf2\x58\x70\xf2\x19\ \x38\xe9\xb8\xc5\x72\x74\x06\x6e\xb8\x5e\x70\x54\x1f\x81\x73\x60\ \xf5\x7d\xd7\x03\xcf\x63\x2b\x16\xf3\x87\xbc\x66\x2f\xd1\xbc\xf5\ \x57\xde\xe9\x83\x4f\x63\xc5\x1d\x91\x97\xe2\x0c\xd5\x90\x9d\x4d\ \x54\xea\x0c\x18\xd5\xf1\xea\x07\x72\x78\xd2\x00\x11\x4b\x82\xfa\ \x52\x22\x98\xa7\xc2\x89\x08\x24\xea\xaa\xa5\x52\x22\x5d\xba\xc7\ \x93\x3f\xf9\x94\xf7\xf6\x34\x29\x02\x79\x90\xf4\x00\x3e\xeb\xb0\ \x0e\x60\x69\x5d\x19\x02\x16\x70\x1f\xb8\x00\x1f\x58\x72\x3d\x20\ \x7c\x3d\xb0\xf2\x4f\x7e\x69\x94\xbc\xeb\x03\x3f\x07\x3e\x40\xf5\ \x30\x47\x75\x0a\xea\x39\xbf\xee\x39\x59\x57\x67\xe1\x93\x7a\xfe\ \x0f\x16\x1c\x10\xb7\x7a\x5d\xb7\x59\xeb\xce\x7a\x38\x3e\xb8\x0c\ \xb0\xa6\x41\xd8\x82\x3c\x3c\x38\xee\x55\x05\x72\xe8\xe7\x7e\xf0\ \x83\x7e\x88\x07\xf5\x46\xfb\x4c\x50\xfb\x32\x00\x85\xc2\x01\x96\ \x78\xd0\xaa\xae\x92\xd5\x83\xda\x1f\xfa\xe8\xf6\x94\x5f\x16\x20\ \x9f\xdd\x0b\x18\xf0\x26\xbe\x64\xdb\x05\x70\xb1\x26\x93\x22\x88\ \xed\x20\x20\xfc\x7b\xb0\xfe\x7b\x38\x04\xc2\xf7\x01\x3d\x30\x00\ \x51\x97\xf7\x7a\xbf\x6b\xe0\x85\xf0\x7b\xd7\x83\x7d\x77\xf5\xa5\ \x7f\x05\x7e\xf7\xce\x8a\x02\x5c\x5a\x7e\xd9\x9c\x69\xf3\xd0\x77\ \xf3\x7b\xae\x85\x0c\xca\x9d\xe3\xe3\x8c\x83\xd3\xac\xa0\x0a\x3b\ \xee\x25\x07\xfc\x04\x88\x7e\x7e\xb6\x5c\x09\x41\x8e\xc8\x99\x84\ \x0a\x5f\xa4\x49\x53\xe6\xe1\x8d\x34\x99\xd2\xdc\x88\x57\xc6\xe1\ \x33\x34\x16\xe5\x94\x69\x42\xc4\x4d\x1b\x1e\x09\x79\xb4\xa9\x01\ \xa2\x48\x9f\x3e\x73\x8a\xd4\x60\xd9\xb2\x48\x90\x20\xf2\x82\xc0\ \xa9\x19\xf3\x66\xca\x9b\x7c\x58\xc2\x9c\x01\xe7\xc2\x24\x44\xf7\ \xae\x10\x45\x74\xe1\x42\x09\x1f\xb1\x0c\xc4\xe2\xe3\x54\x45\x8d\ \x3f\x51\xff\xa8\x50\x71\x4e\x05\x9f\x73\xaf\x0c\xe8\xe9\xfe\x5a\ \xe2\x2b\xd8\x12\xab\x4a\x1c\x5a\xf5\xea\xac\x3f\x7e\xfc\x4a\x75\ \xf1\xd7\xa5\x94\xc2\xb8\x0a\x79\x5c\xf8\x67\xf7\x2e\xde\xbc\x7a\ \xf7\xf2\xed\xeb\xf7\xef\xbf\x55\xb5\x06\xd3\x2a\x4c\x0b\xdd\x03\ \x5a\xfb\xd0\xad\x6b\x8c\x58\x03\x39\x61\x40\x1e\x90\x1b\x44\x94\ \xe8\x16\x84\x71\x19\x52\x2c\x73\xe3\x58\x9a\x17\x13\xcb\xc4\xbb\ \xf1\xa2\x4c\xc6\x78\x1c\xcb\xc8\x01\x01\x02\xa4\x48\x92\x35\xe6\ \xcc\x51\x59\xc4\x65\xc9\xdb\x7d\x62\xd6\xbc\x00\x67\x86\x3c\x38\ \x31\x73\x06\xe9\x83\xb2\x4f\x2c\x1f\xa1\xb8\x08\x1d\x7a\x19\xd1\ \xa1\xa3\x3e\xba\xc6\x72\xc0\x47\x45\x11\x15\x52\xff\x70\xa7\x6a\ \x95\x8f\x81\x73\x5c\xf5\xf8\x38\x50\x02\x69\xd8\xaf\xaf\x4c\xbd\ \x4a\xcb\xaf\x0b\x7b\x7f\x72\xe5\xb6\x21\x0b\xf8\x3e\xfe\xfc\xf7\ \x0f\x95\xa8\x75\x98\x96\x21\xb5\x18\x42\xcb\x3a\x8b\x3d\x80\x4e\ \x0e\x88\xf5\xa3\x41\x1e\x40\xe4\x11\xc1\x65\x57\x50\x21\xcc\x0b\ \x9b\x35\x74\xc3\x0d\x9e\xa5\xc1\x4e\x26\x2f\xdc\x00\x4a\x19\x44\ \x38\xa4\x11\x69\x1c\x35\xd1\x04\x08\x35\x80\xd4\x46\x49\x2d\xd5\ \x66\x5b\x0d\x31\xea\xb6\xdb\x4f\x35\xd5\x14\x0b\x1c\xfe\xb1\xa4\ \xb4\x9b\x71\x23\xc4\xe2\xdb\x05\xa1\x04\x79\x8f\x73\x57\xdc\x13\ \xdd\x05\x07\x20\x35\x83\x01\x23\x5c\xa7\x9d\x76\xdc\x41\x59\xd5\ \x39\xe0\x8d\xf7\x95\x79\xe6\x89\x45\xd6\x2a\x5d\xb6\xd7\x56\x5b\ \xed\x95\x02\xd7\x7c\x74\x1d\xa2\x1f\x9a\x69\xa6\x79\xc8\x21\x79\ \xe4\x91\x58\x2d\x2f\x08\x68\xe0\x2f\xfd\x2c\xd8\x0f\x41\x5b\x40\ \x76\x99\x18\x19\x54\xb8\x50\x43\x44\x60\x18\x51\x87\xa3\x59\xc4\ \x50\x19\x1a\xc9\x11\x8f\x6a\x27\xce\x91\xe2\x6c\x45\xac\x24\x69\ \x4a\xb7\x59\xba\x1b\x4d\x70\x84\x52\xa3\x4f\x38\xa1\x14\x44\x2c\ \x31\x5d\xe0\xc3\x05\x41\xec\x64\x00\x22\x11\x1e\x32\xc3\x0c\x47\ \x1d\xd5\x95\x93\x55\x61\x07\x65\x77\x5d\x54\x95\x95\x78\x7a\xa8\ \x92\x25\x7f\x5f\x8d\xb5\x65\x7b\xfc\xf8\x33\xac\x98\x63\xca\xc5\ \x03\x9b\x6a\x2a\xbb\x2c\x60\x5c\x5c\xa1\xc1\x03\x83\x19\x32\xd9\ \x03\x19\xfc\x72\x19\x41\x44\xe1\x49\x54\x08\xeb\xc8\xc5\x19\x45\ \x18\x36\x94\x09\x3b\x88\x96\x71\x0c\x3b\x69\x30\xba\x11\x6b\x4d\ \xf4\x81\xe2\x1c\xb3\xf1\xa8\xd2\x8b\x3b\xd2\x68\xa3\x6f\x9c\xde\ \x04\x53\x10\xa4\xc2\xe1\x83\x70\x3b\x85\x54\xc4\xfe\x24\xcf\xcd\ \x30\x42\xab\x48\x5d\xa0\x47\x2c\xaf\x3c\x55\x55\x77\xda\x75\xf1\ \xc7\xc4\xa6\x9c\xe3\x40\x0c\x5e\xf1\xba\xa5\xaf\x66\xa9\x35\xac\ \x3f\xa6\xf8\x63\x6c\x5c\x66\x32\x7b\x32\xca\x78\x1d\x92\x6a\x3f\ \x89\xe5\xa0\x41\x3f\x79\x2c\xd6\xcf\x15\x76\xe2\x99\x2d\x51\xe8\ \xfc\x99\x10\x43\x6e\x84\x2b\xa2\x44\x1c\x76\x76\x83\x1b\x2f\x10\ \x01\x0a\xa3\x0f\x71\x24\x47\x13\xb4\x9d\x34\x87\x4c\xc5\x1d\x67\ \x2f\x6f\xbf\xf5\xe6\x9b\x4f\x3a\xc6\xf4\x63\x28\x42\xc6\xc2\x53\ \x11\x3c\xf0\x30\x87\x73\x46\xf1\x81\xf0\x79\x7a\xcc\x30\x5d\x75\ \x0f\xd3\xca\xdd\xc4\x13\x9f\x33\xb7\x01\xaa\xa4\xd7\x6b\xaf\x62\ \x81\xdc\x96\x29\xa6\xac\x45\xe6\x19\x26\xa7\x3c\x38\xca\xa9\xbe\ \x99\x87\xb6\x07\xfe\x02\x73\x3f\xe4\xd4\x79\x99\xce\x9b\xf9\x1c\ \xee\xb8\x1d\x96\xfb\x73\x87\x37\x68\x14\x4f\x13\x1d\x9d\xe8\x2e\ \x6d\xb4\x45\x6d\xdc\xa5\xc4\x65\x0a\x70\x4d\x59\xe7\x34\x43\x28\ \xa4\x8e\xda\x47\x48\x6d\x58\x3a\xc3\x50\x47\xc6\xe2\x63\x2c\xac\ \xce\xa0\xf6\x2a\x4c\x55\x79\x9d\x77\x2a\x98\x02\xf7\x54\x74\xeb\ \x5a\x82\x79\x78\xb3\xe9\xeb\xb0\x22\xb3\xf7\xfe\xca\x5b\xc6\xf2\ \x73\xc1\x99\x84\x5b\xbf\xec\xca\xcf\x3e\x5e\xf3\x2f\xbf\x90\x63\ \x27\x39\x40\x64\x0b\xc4\xce\x67\x5c\x7e\x61\xe5\xa2\x09\x9d\x61\ \x44\x69\x20\x6d\x91\xe7\x9f\x37\x4d\x5b\x4a\xf2\xd8\x4f\xba\x6e\ \x37\x81\x6a\xf5\x0c\x31\x8d\x70\x13\xeb\x94\x04\x87\x18\xcc\x20\ \x6c\x81\xab\x41\x72\x9a\x83\x88\x83\xdd\x6e\x04\x0e\x74\x60\x93\ \x96\xd2\xa4\xab\x4c\x49\x62\x14\xe3\x8e\xc5\xae\x74\xb7\xe5\x89\ \xe5\x79\xec\xe9\xd2\xdf\x12\x42\xbd\xeb\x91\x70\x59\x88\xf8\xc5\ \x03\x34\x70\x19\x9a\x09\x44\x03\x40\xc8\xc1\x03\x0c\xe2\x86\xb8\ \x9c\x8f\x22\x22\xca\x44\xa1\xd8\x91\x2e\x87\x68\xa8\x22\xf1\x00\ \x51\x13\x6e\xe0\x91\xa6\xb9\xcb\x5e\xc1\x89\x89\xa5\x3e\xa5\x3f\ \x9a\x84\xaa\x38\xc8\xf9\x8d\x72\x7c\x80\xbf\x1a\x88\xe4\x0c\x35\ \x28\xd8\x3d\xa0\xd3\x94\x07\x3a\xd0\x29\x4e\x19\x41\x93\x7a\x77\ \x16\x88\xf9\xe3\x0f\x65\x9c\x18\x06\x73\x75\x3c\xe4\x7d\x65\x79\ \xfc\x31\x4b\x97\xe0\x08\xbd\x31\x95\xa2\x7a\x25\xbc\x63\x9a\xfa\ \x73\xad\x08\x71\x6b\x0b\x40\xc8\x00\x3a\x88\x50\x45\xf3\xbd\x80\ \x21\x37\x10\x94\x44\x72\xb8\xbe\x0c\x81\xfe\xe6\x43\x16\xc1\x50\ \xe7\x88\xf0\x9a\x39\x9c\xa8\x0f\x72\xe8\x83\xfd\x2e\x99\x44\x4c\ \x39\xd1\x27\x39\x0a\xc2\xff\x48\x05\xb0\xaf\x51\xb1\x24\x6d\x18\ \x49\x11\x6a\x77\x01\x1d\x9d\xad\x81\x4f\x71\xca\x2b\x46\xb0\x15\ \xa6\x18\x80\x0f\xa6\x80\x98\x0a\xd0\x98\xc6\xae\xe8\x21\x3d\xc8\ \xcb\x1b\x1c\xcd\xf2\x8a\x55\xf8\xad\x14\xd3\xb3\x23\x1e\x93\xb9\ \x9f\x12\xd0\x8c\x8f\x97\x09\x01\x10\xd2\x40\x43\xce\x1c\x03\x91\ \x38\xd4\xe1\x35\x27\xc2\xbe\x88\x64\x08\x44\x0f\xf1\x0c\x11\x3e\ \x42\x04\x4a\x5e\x52\x0e\x72\xb0\x1f\x6d\xc0\x36\x02\xe3\xd0\xc8\ \x37\x00\x5b\xdb\xa8\x4c\xc5\x92\xd8\x98\xb2\x25\x17\x20\xd2\x05\ \xd6\x79\xb6\x07\x5e\xc7\x8b\xb0\x3c\x9b\x03\x0c\xf0\x8a\x2a\xdd\ \x72\x78\xb5\xb2\x58\xae\xec\x96\xa5\xe4\xe5\xed\x2c\x5e\x1a\xe6\ \x2a\xde\x93\x2c\x65\x52\x14\x3f\xa9\x72\xe6\x65\xc8\x71\x4a\x85\ \xa0\xef\x33\xe3\xd2\x21\x48\xd3\x95\x21\x7d\xb4\xaf\x9b\xde\x7c\ \xc8\x47\x5c\x43\xc4\x26\x98\xf3\x9c\x9a\xdc\x64\x11\x46\xf0\x93\ \xd6\xad\x6d\x6d\x70\xb8\x4d\x8c\x06\xc9\x83\x22\xc4\x22\x14\x41\ \x31\xca\x6d\xf6\xd9\xc5\xdb\x74\xd1\xfe\x8b\x0e\x78\x85\x03\xce\ \x31\x02\x82\x0a\x2f\x4a\x69\x3c\x47\x57\xec\x66\x37\xb0\xe4\x4d\ \x2c\x10\xed\x52\x07\x47\x58\xd1\xad\xfe\x25\x7b\x7c\x0c\x41\x04\ \x54\xd1\x84\xb8\x4c\xe4\x18\x25\x3d\xc6\x35\x41\x8a\x43\x8a\xe8\ \x43\x43\x99\x30\x29\x88\xf4\x21\x22\x37\x84\xd3\x23\x94\x6c\x5a\ \x4b\x55\xf2\x92\xdb\xc4\xc4\xa7\xf7\x08\x45\x10\x50\xb2\x93\x22\ \xc4\x8e\x45\xb1\x29\x02\x17\x86\x62\x14\xec\xa0\x44\x9f\x4e\xca\ \xce\x17\x1d\xc6\x07\x87\x55\x69\x6e\x04\x3d\x07\xdc\x2c\x66\x95\ \xf1\x4c\x15\x4b\x64\x01\xe6\x55\x57\xc1\x9f\x89\x72\xb5\xb4\x7d\ \xb9\x28\x51\x06\x11\x27\x1a\x36\x64\x5c\x69\x38\x06\x68\xc8\x15\ \x52\x91\xb6\xf5\x33\xda\xfc\x50\x19\x40\x74\xc8\x86\xb8\xe1\x44\ \xe1\xa4\xa4\x4a\x2f\xb9\x92\x97\x20\x27\x14\x42\xb9\x02\x22\x7c\ \x50\x83\xdc\xdc\x26\x37\x32\x2a\x02\xed\x90\x9b\x4f\xc1\x1a\x67\ \x27\xd6\xc5\x8a\x3f\xfd\x79\xb1\xac\x58\x85\x2a\xfe\xb0\x0a\xdd\ \xae\xa4\x50\xb2\x90\x17\x2c\xc3\xf4\x55\x1b\x91\x69\xda\xf5\xaa\ \xec\x10\xeb\xd0\x40\x04\xbc\x35\xcd\xd7\x4e\x24\x13\xb0\x45\x6b\ \x5a\xb1\x79\x83\xb6\x76\xe2\x06\xfe\xe4\xf2\xd0\x43\x48\x1a\xce\ \xd6\xa6\xa1\xae\xe1\xfc\xc8\x0b\x40\x30\xbf\x93\xb4\x84\x26\xf7\ \x34\xd2\x3d\x7c\x40\x58\x1e\x20\x70\x06\xc6\xf9\x11\xa9\x96\x83\ \x08\xa3\x1c\x4c\x9f\x7c\xe8\xc3\x87\xbd\x28\xab\x7f\x56\x36\x2b\ \x0e\x70\x40\x55\x86\x67\x95\x0c\x46\xb5\x04\x9d\xa5\x2a\x9b\xca\ \xf2\x8a\xf2\x7e\x96\xbd\x36\xd6\x4b\x59\xda\x30\xc3\x69\x82\x26\ \x91\x0d\x81\x6d\x36\xf5\xbb\x5f\x92\x86\x86\xb6\xec\x23\x42\x8f\ \x0b\xcc\xbe\x10\x85\xe6\x05\x6e\x78\x32\x08\x68\xd3\x92\x94\x28\ \x07\x11\x93\x98\xc4\x05\x1c\x40\xc5\x1a\xcc\xc0\x28\x1b\x26\x12\ \x72\x37\xbc\xca\x58\x34\xb0\xa8\x67\xcb\x2e\x76\x27\x6b\x9d\x2a\ \x39\xc0\x62\xeb\x58\x71\xae\x0c\xc0\x15\x17\x7f\x45\x63\x87\x38\ \xc0\xf2\xb0\xfa\x46\xd2\xde\xb8\xcf\x76\x79\xc5\x66\xca\x65\x56\ \x20\xe3\xf0\x04\x69\x30\x34\x0e\xc9\x65\x5f\x7d\x30\xda\x33\x89\ \xde\x6f\x19\x6a\xdb\x5a\x41\x7d\x73\xb7\x4d\x7e\x81\xd8\xa2\x1c\ \x65\x79\xf5\xcb\x07\xaa\xf0\x81\x0f\x1c\xa0\x9b\x0b\x34\x87\x48\ \x44\xe2\xf0\xed\xc8\x5c\xe6\x7d\x9e\xd9\x9f\x2a\x18\x68\x52\x51\ \x8c\xe2\xab\x9c\x03\xa1\xe2\xfe\x91\x73\x8b\xed\xe6\x95\xcf\xf6\ \xca\x2c\x30\xf6\x33\xb0\xed\x52\x16\x9e\x71\x06\x43\xf7\x8d\x2d\ \xa2\xb3\xc9\x56\xfe\x46\x84\x1d\x66\x05\x45\xa3\xdb\x67\xd6\x0c\ \x79\xe6\x22\x04\x66\x87\xf9\x40\x30\xce\xa7\xed\x28\x06\xa0\x8e\ \x01\xa8\x7c\x44\xea\x0d\x1b\x85\x7a\x17\xe8\xb0\xaa\xc9\xcc\x45\ \xb7\xfd\x33\x2b\xee\xa6\xb5\x65\xc3\xcb\x4b\x5d\x1d\xc0\x3c\xbd\ \x6c\x23\xbe\xc5\xf2\x2b\x3e\x07\xdb\xcf\xaf\xe0\x01\xb8\x8c\x3d\ \xe8\x44\x13\x7c\xad\x9d\x80\xb6\x67\x62\x9b\x86\x83\x83\x02\x14\ \x9f\x81\xed\xa0\x0e\x29\x28\xd0\xf4\xf8\x05\xe5\x22\x02\x8a\x40\ \xd0\x06\xda\x34\x21\x06\xde\x06\xb5\x1e\xfa\xe0\x80\x20\x98\xfb\ \x28\xba\x63\x55\xba\x1d\xa8\xee\x58\x5d\xf7\x6c\xe2\x39\x31\x1f\ \x66\x0d\xde\x75\x18\x20\x06\x9c\x95\x6a\xbd\xd9\x78\x6f\x7c\xbf\ \x31\xbd\xfd\xfe\x79\x59\x5a\x6b\xec\xd7\xe2\x77\xad\x38\x14\xcd\ \x6b\x23\xed\x99\x87\xdb\xf7\x43\x1c\x10\x38\xb5\x09\xf5\xda\x88\ \xf7\x58\x50\x1e\xe1\x81\x1b\x4c\x42\x1b\x39\x7c\x3c\x06\xd8\xe1\ \x43\x10\x12\xe6\xaa\x93\xa7\x7b\xe5\x5e\x2c\xc2\x4e\xb0\xd2\xa4\ \x09\x3e\x0c\xb3\xf2\xf6\xfe\x8a\x42\xeb\xad\x25\x36\xe6\x5b\xdf\ \xfc\xfe\xb9\x9f\x57\x25\xa2\xd8\x16\x9d\xe8\x04\x7f\x2d\x49\x07\ \x35\x68\xb6\x36\xdc\xa3\xfb\x75\xb8\xd4\x31\xd4\x09\x46\x7f\x06\ \x43\x17\x29\x64\x21\x9f\xbc\xf1\x39\x78\x3c\x06\x3b\x71\x60\xd8\ \x59\x75\x6e\x93\xcf\x80\xcc\x9a\x27\x73\x76\xb3\x83\x95\x11\x24\ \x35\x3c\xdc\x7d\x73\x78\x55\xa1\xab\x5d\xc9\x5d\x4b\x2f\xae\x6a\ \x97\xee\x8e\x77\x60\xeb\x41\x22\xb1\xed\x10\x68\x4e\x50\x5f\xa2\ \x47\x1c\xea\x87\xcf\x87\xc3\xcd\xca\x68\x92\x4e\x7b\x50\xc3\xef\ \x2f\x91\x3b\xd4\x90\x42\x8a\xcd\x0d\xb4\x01\x77\x1f\x54\x00\x62\ \x1f\xe9\xee\xdc\x27\x77\xd5\xb9\x9d\x24\x62\xd1\x3b\x85\xcd\x14\ \x2c\xe8\xdc\x78\xa9\x7a\xe4\x1d\xe0\xde\x73\x4f\x5e\xbe\x5f\x21\ \xfb\xd9\xe7\x7d\x06\x3f\x96\x08\x7d\x13\x89\x43\x88\x0f\xaa\xbf\ \x11\x6f\x6b\xe0\x9f\x4d\x7c\x41\x0d\xff\xf0\x24\xb5\xbf\x0e\x79\ \x48\x43\x60\xdb\x19\x24\x58\xc7\xc9\x81\x03\x88\xdc\x87\x79\x9e\ \xe6\x61\x1f\x9b\x98\x9c\x93\x68\x5f\x76\x40\x96\x89\xcd\x0d\xc4\ \x58\x56\xc6\xe8\x0a\xbd\x99\x87\x2a\xec\x0a\xf2\x4c\x15\xfa\xed\ \x99\x7a\xb1\xdf\xcf\xfe\xd5\x5e\x8f\xa1\x95\xee\x25\x5a\x23\xed\ \xd7\x90\x41\x1d\x6c\xed\x9d\xd3\x79\x94\xf0\x0d\x1f\xb4\xf5\x9f\ \x6c\xf5\x18\x48\x39\x99\x1b\x28\x98\x1c\xa0\x43\x0c\x80\x18\xd8\ \x31\x45\xee\x88\x1d\xf6\x65\xdf\xed\x38\x45\x11\x48\x09\x56\x58\ \x05\x78\xfd\x01\x42\x65\x8c\xea\x81\xa0\xdc\x91\xdf\x42\xdd\x19\ \x07\xad\x1f\x09\x02\xdb\xaa\x50\xdc\xed\xd5\x17\x86\x34\x1a\xa3\ \x21\xde\xee\xc1\xdf\x87\x14\x5e\x59\x41\xda\xf0\xe5\x43\x3e\xe8\ \x43\x27\x6c\x88\xd1\x91\x4b\x01\x42\xde\x0e\x76\x5c\x0c\x5c\xd2\ \x75\xf4\x01\xf5\x11\x61\x11\x82\xde\x75\x24\xa1\xe8\x51\x09\x05\ \xc5\xdb\xf1\xb4\x1e\x21\xb6\x1e\x96\x30\x14\x16\x66\x61\xb0\xe9\ \x01\x92\xd9\x1e\x90\x09\x5f\x6e\x85\xe1\x67\xa8\x4f\x7d\x09\x0a\ \xd2\x04\x1f\xfd\xdd\xc0\xe2\x81\x82\x1a\x02\x1f\x5a\x09\xcd\x31\ \x58\x9c\x0e\x81\x46\x00\xf6\x16\xe8\x24\xa0\x17\x09\xe1\xf5\x51\ \xcf\xaa\x1c\xcc\x53\x24\x21\x55\xf4\x53\xbc\x9d\x43\x06\xc6\xdd\ \x42\x11\x22\x1b\x69\xc9\x68\x25\xa2\x22\x6a\xe1\x0c\xa4\xe0\xed\ \x39\x44\x18\xea\x16\xa1\x04\xa0\x36\x71\x22\xb4\x15\xdf\x67\xe8\ \x43\xc3\x71\x40\xfe\x3e\x18\xc3\xd3\x29\x5a\x26\x20\x1a\x36\x05\ \x8d\x0e\xd1\x95\x6b\x44\x99\xc8\x4d\xdf\x75\xe4\xe1\x51\x20\x49\ \x53\x3c\xcc\x1f\x40\x96\x55\x20\xd5\xad\x69\x20\xeb\x15\xe2\x14\ \xce\x5d\x58\xf0\x62\x2f\x6a\xe1\x2a\x3c\x1c\x5a\xb5\xe0\x48\x31\ \x5e\xd0\xac\x55\x19\xe6\xc3\xb9\x28\xd9\xa0\x80\x02\x07\x70\x22\ \x07\x70\x80\x3e\x14\xdd\x09\xe0\x97\xd0\xc8\x96\xf2\xa5\x81\x48\ \x6c\x5c\x1f\xc4\xc0\x1c\xc0\x9c\x0a\x20\x8c\x1e\xba\x62\xda\x25\ \xe1\x88\x6d\x85\x1e\x70\x85\x54\x69\x8c\x3a\xe6\x5c\xdd\xe1\xd9\ \x08\xbe\x23\x09\xfa\x80\xfd\x1d\x43\x6e\x39\x1c\x11\x30\x23\xb4\ \x79\xd4\x44\x74\x06\x32\x9e\x4b\xf1\x35\x9c\x1a\x36\x9c\x3d\xce\ \x5f\x17\xda\x97\x34\x7e\xe2\x48\x28\x58\x0c\x9c\xd8\x89\xf9\x08\ \xef\x24\x4c\xe7\xbd\x62\xf0\x60\xc5\x2b\xf0\xd2\x74\x4c\xd5\x74\ \x14\x62\x3a\x66\x09\x79\xc5\x58\x48\x8a\x24\xfb\x1d\x42\xed\x7d\ \xa1\xc3\x11\x5e\xc3\x95\xc1\xee\x99\xd5\x3f\x22\x9c\xb1\x95\x81\ \x1a\xa2\x41\x27\x32\x23\x1b\xc2\x56\x41\x4e\xe3\x5a\x75\x21\x5a\ \x15\x52\xb9\xec\x60\x0f\xc6\x40\xc7\x9d\xd8\x52\x34\x4c\x2c\xac\ \xc2\x0c\xac\xfe\x42\x17\xc9\xca\x12\x3a\x85\x01\x4c\xc7\x74\x20\ \x4f\x79\xd0\x1b\x17\xc8\x5d\x53\x7a\xd6\x53\x4a\x25\x62\xda\x85\ \x1e\x7c\x48\xe0\x8d\x14\x32\xfa\x97\x7d\x99\xe4\x63\x0a\xde\x0d\ \xe4\x83\x0c\x2c\xc1\x33\x62\xe6\x3f\xb2\xe1\x67\xe8\x5e\xd1\xdd\ \x57\xc1\xb5\x64\x81\x11\x01\x20\x35\xcd\x39\xcc\xc1\xc5\x34\x0c\ \x1f\x0c\x21\x45\xbe\xd2\x53\x70\x05\x52\x78\x9a\xa7\xc9\x5d\x92\ \x1c\x40\x53\x12\xa6\x01\xb4\x63\x54\x26\xe6\x54\x5e\x40\xb4\x0d\ \x19\x4d\xe2\x17\x5b\xe5\x03\x1a\x5c\x25\xc4\x81\xc2\x65\x1a\x83\ \x1a\x2a\x27\xe3\x99\x25\x6c\x1d\xda\xfc\xd9\x56\x64\xe2\xd0\xe1\ \x65\x48\x06\x64\xc0\x1c\x34\x06\x6a\x5a\x87\x03\x8c\x80\x57\x1c\ \xa1\xf6\x19\x25\x78\xac\x8d\x8b\x25\x09\xeb\x0d\x26\xeb\x75\x20\ \x21\xaa\x02\xae\xe9\x81\x68\xed\x26\x6f\xf6\x66\x3f\x46\x9a\x19\ \x82\xa2\x3e\xc4\x03\x07\x9c\x4b\xd3\x81\xe5\x12\x2c\x01\x27\xaa\ \x21\xf1\x1d\x43\x41\x0a\xa8\x80\xbe\x16\xd1\x51\x5c\x27\xa0\x15\ \x57\x66\x25\x28\xa0\x43\xc6\xad\x03\x6d\xa8\x40\x40\x91\x87\x04\ \x49\xe0\x6a\xb6\x27\x79\xac\xde\x01\x5c\x59\xbd\x75\x60\x3a\x4e\ \x82\x6d\xfe\xaa\x9e\x9c\x71\x85\x3b\xc6\xe7\xec\x2d\x66\xa4\xa1\ \x61\xe2\x85\x21\xa3\x4d\xdd\xc1\x3d\xe3\x3f\x62\x26\x26\x16\xe4\ \x80\x2a\x68\x27\x94\xe4\x31\xdc\xa8\xed\xe9\x43\x40\xea\xc3\x18\ \xe4\x00\x28\x34\xc4\x3a\x64\x63\x43\x72\x85\xc7\x61\x0c\x8a\xa9\ \x5d\x57\xf4\xe4\x91\xc6\xc0\xae\x80\xe8\x20\x1c\x40\x04\xd8\xa6\ \x86\x76\x60\x57\xd0\x82\x01\xd0\xc2\x39\x94\xa8\x89\xe2\x5d\x74\ \x0c\x19\xe3\x19\xdb\x26\xb2\xe8\x32\xfa\xe3\x4c\x5a\xa6\x7f\x96\ \x41\x82\x7a\xe6\xb1\x21\xe3\x18\xdc\xe8\xe2\x75\x42\x41\xfa\x1f\ \x59\xb6\x0f\xc6\x29\xd8\x3a\x54\x5e\xcd\x25\xa0\x4f\x06\x94\x0f\ \xf4\x24\xc6\x38\xe9\x93\x0e\xc2\xae\x4c\x69\x07\x0a\x83\x87\xda\ \x1c\x2d\x28\xaa\x29\x70\x69\x97\xce\x9e\x0f\x64\xe5\xff\x91\x14\ \x99\xb2\x61\x18\xe6\x43\x7f\xe6\x83\x33\xca\xe8\x8d\x12\xe8\x8d\ \x32\x1a\x07\x60\xe6\x9b\x7e\x2a\x1b\x16\x64\x27\x70\xc0\x8d\x8e\ \xc1\x9b\x42\x5c\x0e\x84\x08\x25\xa1\x03\x3a\x08\x83\x30\xe4\x69\ \x9e\x06\x6a\xe5\xd1\x22\xa2\x76\xe0\x94\x86\xa8\x2a\x20\xaa\x30\ \x9c\x03\x3a\xa8\x9e\x0f\x9e\xc3\xa2\x6e\x29\x7c\x3e\xaa\x22\x46\ \x07\xfe\x67\x92\x25\x49\xd5\xe0\xc3\x69\x62\xa8\xf6\xa7\x4c\xfa\ \x27\x1b\xca\xe9\x09\x9c\x2a\xa6\xaa\x61\x33\x70\x66\x9c\xae\xe9\ \x31\x8c\x01\x07\xbc\x69\x40\x26\x68\x27\xe4\x03\x10\x10\x0d\xc6\ \xa1\x03\x10\xc8\xaa\x30\xf8\xa0\x0f\xc6\x40\x06\x00\xab\xbb\xb2\ \x2b\xbd\x4a\x86\x64\xa0\xc3\x61\x9c\x43\xbb\x02\xeb\xdc\xc4\x80\ \xa3\x22\xeb\xec\x7d\x29\xb4\x35\x9c\x3f\x06\x67\xd3\x99\xa9\xa6\ \xfa\x63\x7f\x0e\xa4\x80\x66\xc2\xa9\x2e\x41\x33\xe4\xc3\x18\x94\ \x65\x8e\x5a\x6a\xa7\x76\x02\xb8\xaa\xea\x8d\x16\x24\xb8\xea\xc3\ \x44\x10\x41\x47\xa8\xab\x15\x08\x43\x64\xc0\x2a\xac\x66\x80\xaf\ \xa2\x43\x06\x28\x58\x06\x24\x08\x10\xc4\xaa\xc9\xe6\x69\xb0\xfe\ \xea\xbb\xfe\x2b\xc0\xb2\x9f\x0f\x0c\x1f\x8f\x02\xe8\xb3\x3a\x63\ \xb6\xfe\x23\xa6\x2e\x81\x3e\x9c\x00\xd1\x62\x2c\xc4\x4a\xec\x7d\ \x7d\x6a\x9c\x32\x1a\xc6\x06\xe4\xb8\xea\x1e\x19\x60\x2c\xba\xfc\ \xcc\x0d\xc0\x2a\x39\xa8\xc2\xba\xca\x2a\xac\xde\xeb\x90\x56\x88\ \xd1\x98\x6c\xcc\xae\x03\xca\x86\x55\xae\xda\xec\xcd\x06\xec\x05\ \xcc\x60\x32\x6a\x22\x8f\xf6\xe7\x12\x28\xa7\x1a\xba\xad\x9c\xc2\ \xfe\x96\x3e\xe4\x43\x33\x2c\xc1\xaa\xe6\xe8\xd2\xfa\xa8\xaa\x3a\ \x6d\x33\xbc\x29\xd4\xc2\xa9\x4d\xc2\x1f\x69\xc6\xc3\x1f\x01\xc1\ \xba\xc2\xea\x3a\x1c\x98\x42\x16\xa0\x30\x96\x41\x06\x34\x46\x13\ \x34\x06\xbb\x06\xab\xd9\x9e\x2d\xfb\xe9\x81\x49\x36\xe7\x8b\x2e\ \xc1\x14\xb8\x6d\xd0\x6a\xea\x18\x78\x2a\xb8\x86\xeb\x31\x90\xc1\ \xe9\x1e\xdc\xc4\xb2\x61\xdf\x72\x40\x33\x44\xac\x9c\xda\x17\xb8\ \x26\xe8\x34\x12\x9a\x7d\x05\x4a\x19\x00\x41\x64\x64\xc0\x45\xf8\ \x8c\xb8\x94\x0b\x0b\x7e\xc6\x47\x40\x59\x13\xa8\xac\x03\x5c\x2e\ \xe6\x06\xec\x0c\x30\xed\xe2\xe9\x83\xe7\x2e\xc3\x12\x2c\x43\x27\ \x8a\x6e\x82\xa2\x2e\x9c\xbe\x29\xea\xea\x2d\x40\xaa\xea\xc4\x06\ \x64\x33\x90\x43\x33\x70\x00\x81\x3a\x23\xaa\xd6\xe8\x80\x4a\x5d\ \x1a\xe4\x40\x04\x90\x03\x3a\x94\x81\x1b\x54\xe3\x7e\xb1\xd5\xc3\ \x0d\x60\xf3\x9d\xc8\x3a\x68\x55\xf2\x9e\xad\x0f\xb0\x2d\x27\x46\ \x6f\xa6\x6e\xea\x12\xa0\xea\x8d\x3a\x63\xa7\x66\x6f\xd4\x1e\x9c\ \x33\xfa\xa3\xd3\x42\x2c\xf8\xe6\x03\x9c\xfe\x67\x7f\xe9\xed\x8d\ \x6a\xe2\x9a\x52\x04\x39\xf8\x81\x31\x68\xa5\x68\xa8\xe0\x67\xfe\ \x2c\xde\x73\xea\x1e\x01\xd2\x55\x06\x20\x6f\xfe\x4e\x65\xa4\x06\ \xe4\x12\x90\x03\xf4\x02\x9f\xcf\x4a\xec\x8d\x36\xc3\x32\x34\xc3\ \xdc\xd6\xe8\xe2\x91\x2f\xc2\x42\x2c\x0e\x8f\x2a\xf9\xc2\xe9\xa9\ \x0a\x24\x9c\x26\x6d\x3e\x90\x03\x39\xe4\x03\xa1\x10\x1c\x8d\xe6\ \xa8\xee\x19\x68\x0e\x36\x01\x09\x97\x70\x6f\x62\xa6\xdb\x0a\x24\ \x33\xaa\x61\xb8\x8e\x01\x0c\x2f\xc1\xdc\x4a\x70\xc5\x6a\x2a\xa3\ \x85\xee\xdd\x06\x70\x0d\x43\x5b\x7f\xc1\xa9\xc4\x76\xb0\x26\xe6\ \x68\xb4\x62\x66\xe3\xad\x29\xd1\x92\x01\xd1\xea\x5e\x8d\x82\x94\ \x1b\xe0\xaf\x13\x27\xaf\x2a\x88\xe5\x4c\x32\xa3\x33\x86\xef\xeb\ \xc6\x70\x27\xd8\x17\xc6\xf2\xf0\xce\x0e\xec\x12\xf8\x41\x7f\x06\ \xa4\xaa\xfa\xa8\x3f\xde\x28\x28\xbc\xa9\xc6\xc2\x16\x0f\xbb\xee\ \x21\x4f\x6c\x23\x57\x6b\x27\xb8\x31\xd1\xc2\x96\xf5\xa2\x4b\x01\ \xda\x47\x1d\x97\xf0\x9d\x75\xe2\xb4\x42\xec\xdd\xbe\xee\xd0\x3a\ \xec\xc4\xc2\xe9\xce\x72\x71\x3e\x40\xef\x12\xe4\x80\xc6\x6e\xa2\ \x14\x93\xef\xa8\x5a\xaf\x18\xbf\x6e\xc4\x72\x2f\x22\xf3\x30\x19\ \x90\x41\xeb\xbe\xa9\x7f\xb1\x83\xe0\x7c\xb2\x13\x47\xaa\xfe\x99\ \x46\xef\x32\x24\xf3\xdd\x7a\xeb\x23\xa3\xb1\xcf\xa2\x30\xf4\x36\ \x66\xe3\x59\x6a\xa8\x56\x71\xf5\x36\x6d\x40\xda\x6d\x00\x73\xaf\ \xaa\x46\xad\x37\x63\x2c\x2e\xc7\x72\x27\xb8\x81\x27\x13\xb3\x13\ \x1f\x42\xa4\x06\x6d\x32\x03\x03\xf4\x8e\x6e\x41\xfa\xe8\x9a\x22\ \x30\x0a\xc7\xad\x1a\x9b\x55\x82\x42\x1c\x8f\x8e\x6b\x20\x47\xad\ \xd3\x7a\x2f\xc4\x72\x73\x2f\x07\xb4\x2f\xab\xea\xeb\x8e\x81\x2f\ \xc3\x29\x1d\x9b\x33\x28\x5f\x00\x66\xde\x2d\x30\xb0\xb3\x3b\xe7\ \xe8\xa8\x3a\x73\xb8\xa6\xf1\x21\xd7\x30\xaa\xd2\x2d\x2d\xa7\x6a\ \xaa\xbe\x6e\x45\x97\x72\x15\x07\x74\x39\x9c\xc0\x41\x5b\x71\x37\ \xf7\xf2\xe2\x35\xb1\x42\x8b\xa4\x2a\x68\xea\x12\x84\x00\x30\xc8\ \x70\xea\x5e\x2f\xb8\x8a\xaa\x45\x1f\x72\x0e\x64\xab\x9c\x96\x6b\ \x7f\x8e\xaa\x23\x6b\x73\xf8\x5a\x31\x48\x1b\x74\x2f\x8f\xf4\x40\ \x03\x34\x19\x94\x43\xd4\xaa\xf4\x4a\xbf\xe3\x9d\x2d\x01\x30\x78\ \xc0\x32\x0c\xed\x09\x50\x70\xd3\xbe\xae\xa6\x46\xab\x32\x43\x6f\ \x36\x9b\xee\x31\x84\x6a\xf8\x72\xb4\x50\xdf\xed\x47\xc3\xb0\x00\ \x1b\xb4\x52\x83\xf3\xdf\x1a\x34\x51\x5f\x6b\x42\x37\xfe\xf5\x27\ \x4f\x42\x32\x73\x00\x9b\x9a\xea\x18\xb8\x2d\xb8\xc2\xb0\x2b\xc7\ \xb0\xd0\xee\x72\x0d\x8b\x6a\xaa\xb6\x2d\x59\xe7\xb5\x32\x63\x2c\ \x51\x47\x6d\x38\x1f\xf6\xa8\xbe\x35\x5c\xd7\xf1\x21\x4c\xc2\x12\ \x40\xa6\x80\x16\x2d\x58\x6b\x6a\x1f\x7f\x71\x2e\xf7\x6d\xeb\xfa\ \x35\xdf\xba\x2e\x22\xbb\xae\x32\x3b\xf2\xc6\x82\x33\xf7\x06\x34\ \x5b\xe3\x59\x63\xc3\x75\x74\x10\x28\x24\xd7\xf0\xdd\x6a\x73\x0c\ \x7f\xb1\x66\x06\x75\x5e\xe3\x6d\x2c\xf7\x6d\xc4\x56\xb1\x5e\xd3\ \x36\xf6\xaa\x35\x5b\xfb\x72\xd4\x8e\x01\x6a\xa7\xb6\x6a\x9b\x60\ \xaa\x46\x2b\x59\x83\x36\x5f\xdf\x2d\xf8\xfe\x2d\x38\x63\x26\x0f\ \x1f\x77\x38\xef\xf6\x5a\xf7\xf6\x58\x77\x33\x37\x0f\x37\x71\x17\ \xb7\x6b\x47\xef\x32\x5b\x71\x32\x2b\xb3\x77\x3b\xf7\xc3\xfe\x6d\ \x55\x93\xeb\x18\xb8\xf4\x17\xab\x70\x68\x5f\xf2\x25\x5f\x37\x5b\ \x13\x34\x53\x6f\x77\x7c\xfa\x40\xa8\x4e\x01\x59\x93\xab\x5e\xc7\ \x70\x73\xbf\xee\x00\xbf\xae\xd0\x76\xea\xb5\x02\x35\x7b\x8b\xb7\ \x68\xab\x35\x6f\x13\x34\x17\x1c\x2b\x7d\x3b\xf6\x01\xe0\x70\xf9\ \xde\xf5\x32\x6c\x41\x78\x03\xb8\x03\x3f\xf7\xd1\xfe\x62\xef\x31\ \x00\xb5\xdd\x86\x77\x0c\x8f\x6a\xaa\x5a\x71\x15\x73\xb3\x70\x37\ \xb8\x89\x3f\xf8\x1a\x1a\x6d\x81\xc7\xf0\x87\x5f\x72\x70\x4b\x72\ \x41\x13\x76\x73\x17\xb8\x73\x7f\x2b\xf7\x56\x37\x89\x6b\xb7\x89\ \x13\x77\x74\x54\x71\x0a\x2b\x33\x0c\x03\xf8\x25\x5f\x2b\x9c\xba\ \xae\x47\x2b\xf7\xf7\xee\xb7\xf4\xba\xb7\x88\x93\x78\x76\x33\xf8\ \x8e\x13\x73\x8f\x7f\x6f\x6c\xa7\xb0\x5e\x73\x80\x1b\xeb\xad\x2f\ \xc3\x38\x95\x7b\xf8\x16\x50\x38\xc4\x5e\x32\x8f\x26\x36\x89\x37\ \xc3\x7c\x47\x39\xb2\xaa\x02\x7f\x47\x2c\x75\x8f\x6e\x6b\x77\x36\ \x80\x7b\x38\x0c\x7f\xf9\x87\xa3\x71\x90\xe3\x78\xdf\x2e\x38\x9a\ \x47\xf9\x63\x57\x79\x85\x63\x31\x49\x1b\x76\x99\x4f\x78\x08\x50\ \x78\x32\x1b\x7a\x4f\x1b\x39\xf8\x3a\xb9\x70\x43\xf9\x9e\xaf\xf4\ \x01\xbc\xae\x0a\x87\x33\x4d\x57\x2b\x41\x7b\x38\xa6\x4f\xb8\x78\ \x4f\x3a\x37\xa7\xea\x99\x3f\x3a\xc0\x3e\x36\x2e\x67\xaa\xc6\x72\ \xaf\xa0\x2b\x37\xc4\x6a\x7a\xa6\xef\x76\xb8\x06\xb7\xaa\xea\x38\ \xa8\xef\xf8\x53\xcf\xf6\xdd\x26\xf2\x9b\x8e\x79\x85\x3b\xaf\x9c\ \x93\xf2\x9d\x6f\xf3\x93\xc7\x7a\xac\x47\x3a\xfe\x8b\x0f\x36\x9c\ \xef\xb6\x15\x93\x03\xa2\x67\x6a\x10\x8b\x77\xb8\x82\xf3\xa7\x03\ \xfb\xd9\xf6\x39\x8b\x07\xb0\x8f\xee\x31\x75\xcf\x79\x32\xdb\xad\ \x36\xb3\xf7\x60\x0f\xf0\xb3\x43\x3b\xe6\x46\x7a\xa6\xfe\x77\x29\ \xc7\xb6\x87\x8b\x6a\x4d\xcb\xf9\x49\xeb\xc3\xb7\x83\x7b\xb4\xa3\ \x38\xaa\xa6\x7b\x90\xb3\x78\x78\x57\x71\xa8\x1e\xfa\x87\xc7\x32\ \x63\xbb\x3b\x9a\x87\x72\x59\x5f\x36\xa6\xaf\xb5\x91\x57\x38\x6e\ \x73\x00\xac\xf3\x3b\xa8\xa3\x33\x00\xdf\x6d\xa6\xc7\xf6\x8d\x7b\ \xf8\x8d\x9b\xb9\xa3\x23\x3c\x7d\x3f\x75\x29\xf7\x31\x9d\x2b\xb3\ \xbd\xef\xf7\xdf\xfa\xb2\xc4\x53\x3c\xc5\x0f\x82\x78\x1f\x7a\xc6\ \xd3\x76\x1f\x3b\xbc\x15\x1f\x3c\xc8\x03\xbb\xa8\xb3\xf8\x97\xd3\ \x39\x2e\x0f\xbc\xc6\x5b\xb1\x9e\xaf\x3c\xc8\x0b\xfb\x84\x1b\xfa\ \x72\x77\x79\x0c\x3b\xad\xca\xdb\x3c\xb4\xdf\x59\x33\x18\x3a\x85\ \x27\x39\x32\x6b\xbc\xeb\xd6\x3c\xd0\x83\xfc\x63\xbf\x3c\x90\x4f\ \xba\xc6\xbf\x6e\xbb\x2f\xbd\x39\x0f\x82\xa1\x03\xbc\x32\x4b\x6c\ \x33\x28\x3d\xd5\xaf\x7c\x9f\xcf\xbb\xba\x6f\xfd\xc4\x77\x3d\xa8\ \x1f\x00\xbd\x57\xb8\x33\xfe\x3c\xd9\x23\x30\x7c\x9f\x3b\x3d\x2e\ \x4f\xfd\xda\xaf\xf4\xca\x64\x3c\xf4\xaa\x7d\xdc\x53\xfc\x21\xdc\ \x03\xcc\x73\xfd\xdd\x53\x7d\xde\x2f\x03\x39\x40\x47\xdf\xf7\xfd\ \x20\xf0\xfd\xe0\x77\x3d\xdc\x13\x77\x40\x00\x00\x21\xf9\x04\x09\ \x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd8\x89\x8d\x94\x4a\x36\x05\x56\x8a\xff\xff\xff\xff\xff\xff\x5e\ \xc8\xf7\xff\xff\xff\xde\x93\xb3\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x62\x88\xa5\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x44\ \x16\x9c\x54\x67\x1e\x13\x27\xaa\xff\xff\xff\x0f\x27\x67\xd8\xc8\ \xe4\xff\xff\xff\xcf\x66\x46\xff\xff\xff\xf6\x88\xb8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xf7\xa8\xb7\xff\xff\xff\xff\xff\xff\x9a\ \xf2\xfc\xcf\x74\xa5\x13\x29\xdf\xff\xff\xff\xfb\xc8\xe5\xba\x89\ \xb5\x28\x46\xea\xff\xff\xff\xd9\xe8\xf9\xff\xff\xff\x4e\x68\xf8\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x98\xc8\xfa\xee\x6c\xa8\xff\xff\xff\xff\xff\xff\xf6\xb2\ \xf0\xff\xff\xff\xff\xff\xff\xd1\x27\x22\xff\xff\xff\xff\xff\xff\ \xf9\xe8\xf0\x36\x92\xc3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb6\ \xb3\xf2\xb6\xc8\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\x49\ \x6c\x87\x1f\xa1\xff\xff\xff\x39\x56\xf6\xff\xff\xff\x10\x38\x66\ \xd6\xd9\xec\x4b\x4b\xe2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x09\x18\x62\x95\x94\xf5\xff\xff\ \xff\x56\xa9\xe4\xff\xff\xff\x97\xb2\xf8\x73\x89\xf8\x5b\xb8\xec\ \xff\xff\xff\xff\xff\xff\x7a\xe9\xfb\xff\xff\xff\xfb\xfd\xfa\xff\ \xff\xff\xff\xff\xff\x07\x15\xdc\xda\xae\xf8\xff\xff\xff\xfa\xd8\ \xeb\xbb\x8e\xf3\xff\xff\xff\xff\xff\xff\x7b\x95\x45\xfb\xd0\xa8\ \xff\xff\xff\xf5\x99\xb5\x37\x4a\xe9\xff\xff\xff\xfb\xb8\xbd\xb3\ \x68\xed\xb7\xd8\xfa\xff\xff\xff\xdb\x98\xf4\x70\x78\x2a\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe3\x97\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x31\x46\x97\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x72\x56\ \xf1\xff\xff\xff\xff\xff\xff\xea\x5a\x9d\xbc\x2a\x84\x95\x35\xcf\ \xff\xff\xff\xff\xff\xff\x94\x68\xfa\xff\xff\xff\xff\xff\xff\xa4\ \x1c\x68\xb9\xf3\xfc\xff\xff\xff\xbd\xc7\x94\xff\xff\xff\xff\xff\ \xff\x79\xcb\xf9\xff\xff\xff\xff\xff\xff\x75\xa9\xf8\x29\x1a\x8c\ \xff\xff\xff\xf9\xec\xba\xfa\xaf\x87\x74\x12\xa5\xff\xff\xff\x91\ \x6f\x75\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\x91\x8d\xff\xff\ \xff\xff\xff\xff\x71\x11\x44\x39\x69\x69\xff\xff\xff\x2b\x7b\xcb\ \xff\xff\xff\xff\xff\xff\x37\x87\x97\xff\xff\xff\x9f\xb6\x79\x99\ \xd8\xfb\x20\x98\xcc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\x7b\ \xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x78\xa9\xff\ \xff\xff\x19\x37\xdf\xff\xff\xff\x58\x75\xf9\xff\xff\xff\xff\xff\ \xff\x04\x56\x7b\xff\xff\xff\xff\xff\xff\xff\xff\xff\x2e\x39\x0f\ \xff\xff\xff\xff\xff\xff\x69\x7a\xf5\xff\xff\xff\xb2\x58\x35\xff\ \xff\xff\xff\xff\xff\xb4\x58\xb3\xff\xff\xff\x33\x57\x63\xff\xff\ \xff\xff\xff\xff\xf2\x36\x37\x38\x56\x92\x73\x79\x9d\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x7e\xfb\xfc\x9c\x18\x22\x96\ \x97\x51\xdf\x97\x95\x97\x98\xb7\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xd9\xfb\xfc\xff\xff\xff\xff\xff\xff\x7e\x97\xf9\ \xb1\x78\xf9\x93\x5b\xfa\x91\x78\xf8\xff\xff\xff\xff\xff\xff\xb2\ \x38\x56\xff\xff\xff\x79\xb8\xf8\x41\xb6\xf0\xff\x00\x00\x08\xfe\ \x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\x61\ \xc2\x21\x0e\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\x48\ \x50\x9c\x38\x88\x1c\x43\x8a\x1c\x49\xb2\xa4\x49\x93\x43\x5e\xbd\ \x60\x37\x04\xe4\xc9\x97\x30\x63\xca\x9c\x59\xf1\x95\x11\x35\x6a\ \xee\xb4\xa4\xc9\xb3\xa7\xcf\x9f\x21\x7b\xe0\x1c\x8a\x42\x84\x4b\ \xa0\x48\x93\x2a\x45\x2a\x4e\xcf\xd0\xa7\x2c\x3e\x2e\x9d\x4a\xb5\ \xea\xc8\x21\x28\x9e\x6a\xad\x03\xe5\xa8\xd5\xaf\x60\xc3\x22\xcc\ \xaa\x55\xab\x11\xa9\x62\xd3\xaa\xb5\x2a\xee\x66\xd9\xb2\x28\xd0\ \xae\x9d\x4b\x97\xa6\x38\x38\x6f\xf3\xbe\xe8\xe1\xb5\xae\xdf\xbf\ \x1c\x85\xe6\x1d\x6c\xa0\x2f\xe0\xc3\x88\x1d\x4e\x1a\xcc\x58\x8d\ \x9e\xae\x89\x23\x4b\x46\x38\xe9\x54\x63\xc6\x70\xe4\x4e\xde\x8c\ \x38\xe5\xe5\xc6\x46\x0e\xa8\x33\xcc\xb9\x74\xda\x57\x9f\x1b\xcf\ \xf8\xe6\x65\xa7\xe9\xd7\x69\xef\xa6\x66\x6c\xa5\x9a\x17\x2f\xb2\ \x5c\xc3\xde\x3d\xb5\xe9\x6c\xc6\x4c\x6e\xdf\xce\x4d\x9a\xb7\xf1\ \x99\x2f\x7e\xd3\xb6\x2d\xdc\xcb\xe8\xe2\xc7\xa3\x93\x14\xa7\x9c\ \xf1\x92\xe6\xc2\x89\x4b\xdf\x7e\xb2\x6d\xf5\xc1\xba\xb0\xfe\x67\ \x1f\xcd\xbd\x7c\x48\xef\xdf\xf3\x5e\x17\x9f\x5d\xb7\xf9\xf7\x14\ \x81\xa5\xcf\x6b\xa4\x9d\xf0\x0f\xec\xb5\xc3\xdf\xef\x50\xf0\xfc\ \xb7\xe4\x08\x57\xc5\x80\x03\x36\x27\x0b\x79\xfc\x25\x88\x90\x38\ \xa8\xfc\xf7\x96\x11\x7f\xdc\x56\xcd\x80\xb3\x7c\x53\x85\x78\xfa\ \x29\xa8\xe1\x3f\x4e\x39\x58\xd6\x0c\x01\x7e\x63\x61\x15\xb3\x44\ \x83\x1f\x86\x08\x6e\xc8\x1f\x59\x1e\x6a\x65\x05\x07\x5e\x54\x53\ \x61\x85\x55\x9c\xc8\xde\x73\x2a\xc2\x27\x9b\x83\x6e\x3d\x55\x9b\ \x17\xdf\xcc\x82\x0b\x6b\xcc\x35\x37\xa1\x70\xea\xa8\x93\xa3\x79\ \x3b\xb6\xe8\x22\x8c\xdf\x90\xc3\x1a\x7b\xd5\x44\xc3\x81\x8d\xad\ \x41\xb7\x64\x69\x78\x39\x59\x56\x7d\xd5\x7c\x53\x0d\x96\x46\x56\ \x21\x26\x76\x29\x6e\xb9\x5b\x65\x5e\x96\x65\xc5\x94\xb7\x5d\x28\ \x5e\x35\x74\xe6\x97\xa6\x9a\x9c\x51\x67\x56\x75\x3d\x9a\x15\x60\ \x73\x72\xde\x57\x45\x91\xc2\x11\x7a\x27\x9e\x92\xb1\x98\x5e\x9f\ \x65\x31\x41\x68\x8c\xd8\x0d\x4a\x25\x9a\xee\x21\x7a\x58\x4a\x8c\ \x5e\x96\x29\x63\xf6\x35\xf7\x41\xa0\x71\x92\xc9\x5e\x8c\xab\x54\ \x6a\xa9\x5f\x8b\xb5\x69\x96\x15\xe4\x90\xe9\xaa\xa8\xfe\x73\x7e\ \x43\x87\x2e\x90\x9d\xfa\x97\x6f\xb3\xf5\x68\x84\x11\x70\x58\x01\ \x82\x15\xbb\x5a\x01\xec\xaf\x33\x58\xd1\x8e\x88\x84\x82\x3a\x2a\ \x95\xd5\xd0\xe1\x09\x3b\x2c\xd9\x5a\xd7\x10\x1d\x7e\x76\x93\x11\ \x33\x80\x00\x03\x39\x1c\x28\x72\x80\x22\x61\x4a\x59\x8d\xb8\xe3\ \x74\x5b\x0a\x39\xe3\xe0\xf7\xc1\xba\xcb\x2e\x6b\x5b\x35\x7f\x78\ \x22\xef\x3a\xa6\x4a\xfb\x15\x6a\xa9\x61\xcb\x04\xba\x8f\xde\x56\ \x0a\x7e\x63\xba\x3a\xa6\x22\xdf\x28\xd2\xee\xa8\x75\x36\x6b\x45\ \x21\x9e\xac\xf3\xc7\x01\xf5\xda\xbb\x14\x7a\xa0\x19\xc1\xc4\x2c\ \xd5\x94\x62\x60\x8c\x1b\x64\x0c\x6b\xa4\xe3\xcc\xa2\xec\xc1\xd5\ \x70\x60\x1b\x07\xba\x9c\xe2\x89\x2e\x26\x57\x83\xa3\xc4\x55\x0d\ \xb1\xe9\x50\xc1\x32\xd1\x0e\x05\x70\x7a\x51\x4a\x29\x63\x56\xd3\ \xf1\x89\x1f\x0b\x18\xf2\x38\x35\x7a\x51\x60\xbb\x61\xd2\x19\x6f\ \x21\x0e\x33\x47\x67\x4b\x5a\xc2\x3c\x93\x7f\x6f\xcd\xb0\x04\x05\ \xe3\x7c\x03\x6b\xc6\xd5\x28\x82\x25\xbb\xe2\xad\xbb\xae\x22\x8a\ \x10\x4d\xf0\x38\xe3\x90\x4c\x67\x35\xeb\x58\xd1\x30\x8c\x12\xfe\ \xb1\x8e\x36\x51\x4b\xfd\xd2\x10\x3d\x58\xf6\xa5\xfe\xd5\x58\xdf\ \xf6\xb1\x22\xa5\x54\x61\xb0\xa7\xb0\x82\x0d\xb6\xd1\x64\x07\x1d\ \xe3\xda\xeb\x34\x4c\x87\xc9\xb7\x71\xb0\xce\xe4\xa5\xd6\x6d\xf7\ \x74\x99\xea\xdb\xce\x38\x64\xb3\xf7\xa9\xe0\x5d\xf3\x7c\xf0\x7d\ \xcb\x7e\x5e\xe3\xd6\x6b\xeb\xe2\x89\xc9\x62\x96\xec\x49\x21\x2c\ \x73\xa0\x0d\xc4\x97\xf3\xe4\x19\xcd\x7c\x2c\x71\x33\xda\x03\x7a\ \xed\xe9\x38\x35\xcc\x72\x05\xd9\x5e\x6b\x3c\x3a\x76\x36\x7e\x4a\ \xb0\x88\x16\xce\xc9\x7a\xbc\x2c\xc7\xf8\x87\xb3\x96\xb1\x5c\x0d\ \x05\x74\x40\x6c\x79\xed\x19\xe1\x3b\x03\x1f\x63\x50\x20\xf2\xe9\ \x68\x27\xee\xf7\x38\xe8\x92\x83\xee\xe9\xc7\xdf\x27\xea\x07\x64\ \x57\x81\xf6\x2c\x22\x63\x57\xb2\xc9\xf1\x7a\xc2\x1a\x07\x74\x14\ \x52\xc8\x29\x2a\xc3\x18\x1d\xe8\x30\x0b\x59\xec\x63\x7b\xdc\xab\ \x88\x38\x5e\x60\x04\x1e\xec\x4e\x64\xf0\xf3\x02\xfc\xbc\xc6\xae\ \x0f\xa0\x0f\x6d\xe5\xfb\x94\xe2\xda\xd7\x9c\xb3\x89\x28\x1a\x83\ \x32\x13\xb2\x5c\xe7\x89\x3f\x34\x4b\x17\xff\xf3\xdf\xe3\x66\x41\ \x87\x21\x7d\xc3\x13\x93\x40\x60\x02\x23\x72\x97\x19\xb4\x63\x7c\ \xd1\x20\xda\xa7\x3a\x50\x41\xa0\x95\x0d\x83\xfe\x8a\x10\xdc\xbf\ \x38\xd8\x3e\xd3\x89\x28\x6b\x21\x8c\xdc\xeb\x1c\x86\x42\xff\xe9\ \x62\x80\xb8\x68\xa1\xc8\x28\x30\x83\x5d\x45\x6c\x86\x16\x41\x01\ \x13\xb0\x36\x20\xb1\xdd\xa6\x03\x5e\xeb\x80\x78\x7e\x98\x38\xe3\ \x11\xb1\x88\x5d\x64\xde\xe9\x6c\xf3\x01\x94\x79\x82\x0e\x7f\x68\ \xe2\x13\x39\xc0\xc2\x16\xe2\x82\x02\x85\x18\x4a\x1d\x34\x83\xc5\ \x8b\x88\xe3\x86\x3a\x54\x96\xe0\x44\x45\xbc\xc4\x6d\xf0\x8c\xc8\ \xeb\x61\xa1\x3e\x40\xa7\x59\x3c\x71\x7a\xba\x88\x24\x01\xe9\x17\ \x45\x3a\x84\x61\x17\x66\x41\x81\x0c\xfb\x58\x10\x28\xf4\x03\x01\ \x5e\x0c\x1b\x99\xc0\x58\xb4\xc3\x21\x72\x74\x1f\x30\xa3\x78\x06\ \x34\x26\x16\xea\x02\x7b\x03\x94\x62\x34\xa2\x21\xa4\x4b\xe6\x25\ \x2e\x9b\xe4\xe4\x3f\x96\x90\xb6\x33\x76\x80\x87\xa7\x24\xa2\x2a\ \x47\x25\xa2\x41\xb1\x30\x0c\x03\xc4\xde\x13\x31\x16\xa3\x59\x84\ \x42\x1e\x83\x81\x83\x51\x74\x19\x91\x21\x88\xa0\x97\x7e\x4b\x5e\ \x30\xb7\x29\x9c\x9d\x0d\xf1\x60\x24\x1a\x90\xac\x66\xa5\x0b\x1e\ \x44\xb2\x0c\xd1\x10\x0e\x2e\xf2\xc8\x18\x23\x00\xe3\x8a\xd4\x1c\ \xc8\x10\x6a\xf0\x35\xb1\x1d\x92\x9b\xed\xfe\x2a\x45\xe7\x38\xd8\ \xb3\x6f\x50\x40\x17\x7c\xf0\x44\x18\x9e\x98\x4e\x2f\xcc\x82\x9d\ \x9a\xaa\x55\x3c\x0f\x32\x84\x0d\x8c\xcc\x68\xa6\xc4\xa7\x30\x01\ \xb7\x4d\x19\x79\x82\x07\xb8\x98\x85\x32\x44\x86\x0b\x4c\xce\x26\ \x33\xb9\x94\xda\x10\x64\xd1\xae\x7b\x4a\x74\x8c\x14\xe5\xe6\xf5\ \x0a\x41\x81\x31\x45\x63\x9d\xd0\x54\x0e\x08\xf8\x18\x4f\x92\x9e\ \xf4\xa6\xb7\x21\xdb\x06\x96\xb5\xb3\x7d\x4a\x50\x54\x55\xa0\x00\ \x1f\x28\x80\x9f\x59\xec\x22\xa6\xd5\x01\x01\x3c\x13\xa8\x0e\x9c\ \xde\x54\x9f\x29\x6d\x8e\xc6\x8c\x97\xca\xc1\xf9\x4d\x50\x13\x9a\ \x05\xce\x6e\x43\xc5\xff\xc0\x81\x1d\x34\x9d\xe1\x10\x48\xe7\xd4\ \x60\x5a\x70\xa7\xe2\xd1\xe7\x37\xc1\xc9\xb9\x75\xc9\x69\x16\x7c\ \x68\x11\x0a\x14\xda\x47\x9b\x96\x95\x9b\x3e\x95\x6a\x54\x8f\x67\ \xca\x2a\xf0\xc0\x4b\x46\x28\x4c\x1f\x87\xd0\xd4\xbb\x72\x13\x7e\ \xb0\x1a\xe6\xc1\xec\xd9\x41\x26\xb4\x29\xb0\x61\x85\xd9\x58\x0d\ \xcb\x4d\x30\x9e\x54\x8c\x12\xf4\xdd\x6d\xda\x31\x03\x55\xbd\x60\ \x9a\xb5\x1b\x29\x65\xdb\xf7\xcd\x7f\x89\xd1\xa4\x44\x24\x5b\xba\ \x8c\x36\x06\x55\xa9\xc1\x08\x5d\x09\xfe\x29\x7f\x44\x3b\xda\x83\ \x95\xa2\x7c\x3b\x3b\xda\x2a\x4f\x0a\xd5\x0e\x04\xb5\xb3\xae\xc5\ \xa5\x48\x6b\x5b\x52\xf8\x8d\x03\x12\x80\x4b\xe5\xa8\x3e\x70\x05\ \x9c\x9a\x76\x16\xad\x75\xad\x3c\x66\xc0\x17\x89\x4d\x96\xb8\xab\ \x2c\x24\xf1\x50\x69\xd8\x0f\xb4\xc3\x0a\xaa\x8a\x69\x61\x64\xcb\ \x1d\xbb\x62\x57\x38\x1d\x18\xc7\xf0\x3a\xa0\xcf\xf3\x1e\x8c\x02\ \xe0\x75\x12\x52\xdd\x49\xd7\x2d\x11\xd6\xbd\xd8\x31\xa4\x53\x15\ \x1b\x36\xe2\xd5\x68\x9f\x1f\x88\xae\x87\x90\xaa\x06\x79\xc8\xa3\ \x10\xf5\xcd\xd1\x75\xf1\xcb\x60\xf7\xe5\x14\x7d\x90\x98\x05\xe7\ \x0a\xc6\x55\xf9\x22\x55\x1e\x2b\x58\x81\x3c\x66\x4a\xde\xdd\x98\ \xb7\xc1\xc4\xed\xa2\x04\x03\xf5\xaf\x20\x26\xd7\x8c\x8a\x18\xc3\ \xcc\x66\x63\xe0\xa1\xc8\x83\x13\xe9\x88\xe9\x0b\x96\x5a\x9e\x21\ \x40\x01\xb5\x20\x96\x68\xd1\xce\x58\x85\x76\xc4\x75\x3e\x2d\x2e\ \x30\x86\x39\x31\xdf\x57\x74\x98\x33\xaf\x18\x43\x8e\x97\x7c\xc6\ \x59\x80\x00\xc8\x2e\xe6\xc4\x0a\x88\xac\x15\x4d\x1e\x39\x32\x43\ \x80\x43\xa7\x98\xcc\xe5\xd1\xb5\x63\xc5\xa9\x79\x31\x27\xa8\xac\ \x86\x31\xe3\x64\xc3\x09\xe6\x8e\xfe\x38\xb2\xb2\xe5\x2e\xbb\x99\ \x4a\x4f\x7e\x10\x7d\xb4\x22\x66\x17\x67\x18\x9a\x2d\x06\xeb\x95\ \x6f\xf5\x5a\x0a\xbc\xf9\xcf\xec\x81\x01\x98\x1b\x53\xe7\xa1\x8c\ \x99\xc0\x38\x99\xf1\x9e\xe9\xa2\x27\x35\xb4\x19\xd0\x80\x86\xc1\ \x6b\xe1\xd0\xa5\xcb\xb4\x58\xcc\x17\x0e\xf2\x97\x8c\xb2\xe8\xd8\ \xf4\xe8\xd1\x90\x96\xe8\x38\xfa\x45\xc4\x03\x80\x17\x0e\x0d\x30\ \x00\x03\xe7\x7c\x66\x9c\x8c\x99\x13\x4f\x41\x74\xac\xa5\xdc\x0e\ \x1a\x4b\x06\x6f\x34\xf3\x73\xa8\x9f\xba\x0a\xfe\x72\x90\x05\xbb\ \x42\xc1\x01\x36\x01\x83\x3a\x84\xf9\xd0\x2e\xce\x8b\x98\xd3\x11\ \x8a\x15\x3c\xa6\xd3\x5f\xa1\xda\x0c\xb0\xb9\x6b\x89\x8a\x2e\x98\ \xb2\x60\x87\x1a\x5e\xc0\x02\x59\x78\xdb\x00\x83\x3e\x33\x91\x65\ \x4d\x67\x0c\x67\x38\x1d\xb0\x56\xc3\x78\xd7\xa4\x15\x10\x90\xba\ \xda\xc7\x1b\xe6\x06\x7c\x7d\x3c\x59\xe8\x01\x0e\x77\x80\x82\x3a\ \xbc\x7d\x00\x45\x0d\xe6\xc5\x04\x26\xb7\x98\x5f\xdd\x62\x23\x80\ \x15\x36\x43\x68\xd0\x53\x96\xf0\x50\x78\x9f\xb1\x14\xab\x18\x07\ \xbd\x0f\x26\x02\x4a\xbf\xa2\x07\xfa\xf6\xb6\x08\xc2\x8d\x6c\x42\ \x07\x19\xd9\x62\xa6\x1b\xb4\xfe\x81\x72\xbb\x85\xe3\xd8\xe1\xfe\ \x32\xde\x06\x56\x81\x8f\x5e\x9f\x52\x16\x06\x80\xc3\x0b\x5e\x71\ \xf1\x91\x1e\x48\x0f\x60\x36\x30\xb9\xcb\xf2\xe2\x33\x4f\x19\xcf\ \x18\xde\x05\x68\x27\x23\xb3\xb2\xfc\x09\xe5\xc1\x5c\x39\x3e\x0e\ \xb0\x01\x6f\x9f\x51\x16\x0d\x78\x01\x0a\x80\x41\xf3\x8c\xcb\x62\ \xe3\x2d\xd2\x79\x81\xa5\x4c\x66\x29\xa7\x23\x1d\x3c\xb0\x75\x6c\ \x92\x63\x74\xa4\xb7\xab\x0d\xa5\xc0\x6c\xca\x6f\x13\x05\x7c\x90\ \x03\x12\xab\x38\x40\x25\x0e\xe0\xf4\xe3\xa9\xc3\x00\x77\xa0\xb9\ \xde\x09\x7b\x20\x37\x84\xfb\x33\x3a\x1f\xb8\xce\x61\xfc\xf5\xaf\ \xd7\x7a\xe4\x32\xc1\x55\x59\x40\x6d\xf6\x36\x78\xc1\xf1\xbf\xec\ \xe6\xce\x6e\x73\x85\x55\x60\x62\x15\x7b\x80\xc1\x1e\x56\x11\x05\ \x45\x7c\x18\x37\x06\x3a\xc0\x3e\x1a\x40\x02\x12\xbc\xe2\x0e\x79\ \xe7\x4b\x92\xc0\x3d\x60\x22\x13\xdc\xc0\xaf\x2e\x7c\xe1\x59\x20\ \x76\xb6\x7c\x49\x0d\xac\x5a\xd6\x38\xda\xd1\x2a\x2e\x3b\x7e\x54\ \x8e\x0f\x7e\x0b\xae\x70\x85\xa9\xde\x03\x06\x2d\xb7\x87\x1f\x1a\ \x60\x0f\xce\xbf\x7b\x38\x07\x58\x05\x0c\xf0\xfe\x0a\x14\xa0\x00\ \x15\x7a\x40\x41\x0c\xf7\xfe\xc1\x82\x4a\xa7\x87\xeb\x63\x9e\xb2\ \x90\xc3\xbf\x02\xd9\x97\x3f\x14\x74\xe3\x33\xcd\x7c\xb5\x04\xdd\ \x51\xdb\x48\x71\x6e\x87\x55\xf1\xdb\x86\x5f\x76\xe0\xf7\xb7\x09\ \x7e\xfe\x1f\xdf\x01\xe2\x03\xae\x14\x1b\x10\x07\x4b\x10\x07\x30\ \x10\x07\x40\xe0\x06\x9a\xc7\x79\x07\x23\x7d\x0d\xd0\x80\x0d\x80\ \x02\xa7\x87\x02\x7a\x80\x0a\x22\xb0\x0f\x22\x40\x76\xdf\x37\x65\ \xaf\x46\x66\x62\x96\x61\xe5\xf7\x75\xe5\x87\x06\x68\x20\x72\x8c\ \x86\x13\x46\x00\x02\xba\x93\x3e\xea\x33\x7f\x1d\xe4\x16\x46\xb0\ \x04\x2c\x58\x5b\x68\x67\x7f\x6a\xf7\x78\x36\x18\x7c\x1d\xc0\x0c\ \xc4\xb7\x83\x8a\x80\x09\xed\xd7\x72\x71\x00\x02\x6e\xe0\x06\x7e\ \x00\x03\x31\x88\x1d\x07\x00\x03\x4a\x88\x77\x7a\x90\x7d\x38\xf7\ \x02\x77\x00\x0c\xaa\xf6\x77\x6f\xf1\x62\xe2\xa7\x75\x5b\xe7\x81\ \x1f\x28\x7b\x68\x90\x0e\x68\x10\x76\x73\x81\x29\x20\x40\x2e\x07\ \xa0\x3e\xed\x00\x03\xef\x77\x1f\x8e\x35\x14\x56\x90\x86\x77\x35\ \x83\xf5\x97\x83\xa5\xa0\x7f\x74\x98\x83\xc4\x57\x03\x57\x10\x03\ \x8a\x70\x05\x90\xf0\x05\x5f\x00\x09\x90\x50\x80\x43\x38\x80\xab\ \x80\x56\xed\xa2\x0e\xfe\xab\xa0\x0d\xab\x60\x00\x12\xa8\x07\x0c\ \x64\x04\x2f\xe0\x84\x54\xf8\x16\x66\xd6\x6a\xae\x56\x7e\x53\x86\ \x89\x85\xd7\x85\xe7\xb6\x0b\x69\x56\x15\x3d\x70\x82\xab\xc0\x1c\ \x65\xa8\x3b\xed\x20\x7f\xcb\x42\x0e\x4c\x00\x5c\x16\xd3\x7b\x38\ \x85\x59\xf5\x17\x87\xf6\x87\x07\x2d\xc0\x5e\x38\x28\x8b\x31\x40\ \x7c\xce\x80\x87\xb9\x08\x09\xd8\xf0\x05\xe4\xa0\x08\x2c\xd7\x0e\ \x6e\xb0\x04\xdb\x72\x05\x76\x55\x77\xd8\x21\x0b\x49\x68\x00\x0d\ \xa0\x07\x40\xf0\x0a\x2c\x20\x81\x94\xf6\x02\x8f\xf8\x7d\xe9\xd6\ \x6a\x18\x06\x82\x52\xe6\x81\x5e\xc8\x89\xe5\x47\x64\x9e\x50\x7b\ \xb6\xf3\x0a\x9e\x00\x03\x71\x27\x21\xf8\xc0\x7b\xc6\xe8\x86\x5e\ \xa0\x08\x64\xf0\x05\x2a\x86\x13\x4c\x30\x06\xba\x73\x84\x88\xd4\ \x01\x78\xc0\x0c\x72\xe8\x05\x1d\x10\x03\xcc\xa0\x83\xcc\xa0\x08\ \x02\x69\x7f\x03\x19\x90\x78\x30\x05\xd8\xe0\x0c\xce\x70\x05\xfb\ \xa8\x08\xce\x40\x06\x80\x48\x0e\xf8\x20\x80\x4b\x80\x09\xaa\x24\ \x0b\xe4\xe0\x7c\x1f\x76\x00\xcf\x88\x02\x40\x90\x6f\xea\xb0\x0f\ \x3d\x80\x02\x94\x46\x69\xe9\x01\x70\xc9\xf6\x62\xe9\xf0\x73\xe1\ \xe7\x75\x5e\x98\xfe\x89\x2e\x09\x03\x91\x85\x14\x43\x00\x0c\x9e\ \xd0\x00\xba\xa0\x3b\xa3\x58\x86\x30\xd0\x0e\x4b\x00\x02\x90\x00\ \x67\x6a\x30\x03\x4c\xc0\x07\x33\x30\x06\xf2\xb8\x2b\x63\x30\x71\ \xc7\xd3\x06\x3a\x88\x07\x8a\x80\x07\x31\x60\x87\xc4\x87\x07\x3b\ \x98\x87\x1d\xd0\x02\x3a\x08\x90\xe3\x30\x05\x35\xc0\x90\x35\x50\ \x03\xfb\x88\x07\xbf\xf8\x76\x90\x40\x0e\x5f\x00\x02\x63\x28\x55\ \x2c\x87\x7c\xab\xb0\x0a\xca\xe8\x91\x6e\xc0\x0e\x77\xd0\x00\xfa\ \x36\x92\xa7\xd7\x84\x93\x58\x16\x1c\x98\x85\x3f\x67\x6e\xaf\x96\ \x61\xae\x17\x98\xe6\xb6\x6e\x54\x61\x92\x6c\x09\x02\x70\xa0\x2d\ \x1b\x79\x8a\x3f\x89\x8a\xe2\xc1\x59\x43\x91\x94\x64\x80\x0d\xd1\ \xc5\x70\xdc\x54\x7f\x03\x09\x96\x63\x89\x07\x58\x09\x9a\x79\xe8\ \x90\xfb\x58\x0a\xc3\x37\x90\x31\x10\x03\x53\xc0\x90\xbb\x58\x03\ \x53\x00\x91\x63\x30\x06\x35\x30\x0e\xbf\xb8\x04\x2f\x68\x55\x1b\ \x30\x0e\xdd\x80\x09\x4a\x48\x80\x71\x67\x53\x07\xc0\x02\x30\xc0\ \x02\xec\x00\x81\xfb\x90\x24\x93\xd0\x03\xc0\x40\x02\xf7\x96\x92\ \xda\xe8\x75\x2e\xd9\x92\x32\xe9\x7a\xaf\x37\x64\xf2\xc0\x69\xbd\ \xe1\x16\x94\xfe\xe6\x2b\xba\x00\x03\x41\xc9\x7b\xed\xf0\x05\xfc\ \xf5\x65\x4f\x51\x8f\x48\x69\x05\x63\xe0\x8e\x07\x93\x83\xf7\xa7\ \x8f\x9e\x89\x0d\x0b\x49\x9a\xa1\x29\x9a\xfb\xd8\x02\x2d\xb0\x8f\ \xa9\x39\x05\xab\x29\x96\xfa\x59\x03\x64\x50\x0f\x12\x49\x06\x4b\ \xc0\x04\x28\x88\x0f\x1b\xf0\x01\xb9\xb9\x0a\x70\x67\x0f\x05\x58\ \x84\x7e\xc0\x02\x74\xe7\x6d\x8a\xc8\x84\x28\xc0\x17\x36\x36\x09\ \x18\x4a\x02\x18\x58\x1d\x81\x57\x66\xe1\xb8\x6c\x81\x79\x68\x30\ \x66\x98\xe3\x36\x5d\x24\xc8\x14\x95\x76\x82\x20\xe0\x09\xc5\xe8\ \x09\xc6\x48\x0e\x40\xb9\x0a\xec\x91\x62\x6e\x31\x5d\x55\x34\x03\ \x64\x80\x8f\x67\xa7\x8f\x57\xc0\x8f\x8a\x10\x96\x40\x3a\x96\x64\ \x09\x9a\xa0\x19\x03\x44\x4a\x8b\x07\x19\x90\x31\x50\x0b\xac\xe9\ \x9a\xab\x49\x06\x35\x90\x5e\x4c\x60\x04\x56\xb0\x04\x64\x80\x3e\ \xea\x03\x88\xab\x10\x07\x71\xe0\x07\x7e\xe0\x06\x40\x00\x04\x20\ \xd0\x00\xc3\x76\x00\xa2\xa7\x6a\x91\x88\x02\x06\x30\x09\x22\xd0\ \x03\x6e\xaa\x12\xca\x11\x70\x31\xd5\x8d\xe3\x46\x98\xd4\x69\x85\ \x77\x36\xa7\xe3\xc6\x09\xbb\x00\x03\x88\xe7\x10\x43\x50\x19\xbb\ \xb2\x2b\xfe\xa7\xd0\x98\x9e\xa0\x07\xa6\x48\x0e\xbf\xc2\x78\xa5\ \x40\x06\x63\xc0\x07\x7c\x60\x05\x9d\x65\x04\x63\xa0\xa3\xec\x31\ \x87\x5e\x70\x90\xc3\x63\xa4\x35\x80\x0d\x42\x7a\x05\xbb\x38\x05\ \x0e\x49\x7c\xcc\x80\x95\xc4\x07\x90\x01\xa9\xa4\x4f\x1a\xaa\x4c\ \xea\x0c\x62\x54\x03\x37\xc1\x04\xd8\xa0\x4f\xf8\x00\x8c\x8a\xd0\ \x0d\x30\xf0\xa5\x44\xe8\x07\xd6\x28\x73\x40\x00\xa1\xfb\x10\x9c\ \xf7\xc6\x2b\x7a\xf0\x0a\x54\x47\x73\x38\x67\x82\xdf\x11\x53\xb0\ \xb7\xa7\xe0\x47\x70\x2f\x99\x6e\xcd\xfa\x92\x56\x40\x8e\xe7\x51\ \x07\x56\xf0\x02\x20\xb0\x2b\x70\x40\xa5\x2b\xaa\x07\x67\xd8\x0e\ \xdb\xba\x04\x8f\xa2\x08\x4b\x00\x3e\x5f\x50\x0f\xab\x28\x0f\x95\ \x4a\x5a\x56\xf9\x4b\x03\x49\xa4\xa0\xda\x9a\x62\x39\x96\xfa\x29\ \xaa\xc4\x07\x96\x79\x98\xaa\x00\xa9\x9a\xac\xe9\x0c\x4c\xea\xa9\ \x39\xa8\x62\x38\x3a\x55\xc7\xa5\x08\x2b\xa7\x7c\x43\xe8\x07\x40\ \xf0\x02\x27\x09\x07\x21\xd9\x0d\x16\x88\x02\x64\x07\x89\xd5\x07\ \x8d\x95\xd6\x98\x9b\x82\x68\x81\xa7\x75\x98\x86\xa7\x83\x49\x64\ \x98\xc8\x81\x5c\x27\x78\x20\x20\x58\x3c\x31\x09\x75\x00\x02\x2b\ \x7b\xfe\xa8\x2b\xca\x96\x2d\x6b\x8a\x4b\x60\x05\x4c\xc0\x82\xb6\ \xa9\x06\xf5\xc8\x04\x4c\x40\xb3\xea\xd9\x1c\x6d\x60\xa4\x7b\x78\ \xaa\xff\xc8\xa3\x60\xb9\x8b\x57\x30\x96\xad\xa9\xaf\x78\x78\x05\ \x53\x00\x09\x78\xb8\x8f\xcc\xd0\xaf\x31\x10\x96\x64\x10\x06\x64\ \x70\x99\x64\xe0\x0c\x53\x40\x06\x9d\xc5\x4b\xdd\x04\x38\x07\x70\ \x7c\x30\x00\xa6\xbd\x3a\xa8\x32\x37\x73\x2c\x20\x02\x06\x90\xac\ \xaf\x15\x89\xd6\xe8\x82\x06\xb0\x0a\x4b\x40\x89\x9a\x36\xad\x40\ \xe7\xac\x84\x89\x69\xdd\xa8\x61\x51\xb6\x81\x87\x26\x0f\x06\xf7\ \xa7\x0c\x85\x1a\x83\xba\xa2\x28\xd0\x0e\x8d\xe3\x06\x9e\x00\x02\ \x28\xa0\x0b\xc5\xc8\x96\x47\xf7\x8e\x71\x36\x03\x94\x0b\x3e\x53\ \xb0\x9e\x56\x39\x3c\x51\x39\x05\x54\x59\xaa\x47\xfb\xa9\x60\xe9\ \x99\xa1\xeb\x9a\x9f\xeb\x90\xa9\x99\x9a\x51\xbb\x9f\x57\x0b\xa0\ \x59\xbb\x9a\xea\x5a\x0f\x78\x80\x1d\xa5\x90\x96\x05\xd8\xa5\x0d\ \xdb\xad\xbb\xf2\x5a\xbb\x22\x75\x24\xc0\x88\x29\xca\xad\x6e\xf1\ \x02\xdd\x40\x52\x82\xf6\x14\x1d\x27\x64\x1d\x2a\x6e\x1a\xf8\x7a\ \xca\xfb\x73\x2e\x36\xad\x7f\xfb\x62\xba\x70\x40\x32\x81\x2f\x38\ \xfe\x01\x07\xcf\xd2\x9d\x2c\xea\x09\xda\x8a\x82\x6e\xc0\x98\xf5\ \xa1\x4a\xe4\x60\x05\x91\x8a\x13\x4b\x50\x03\x07\x83\x07\xe3\x20\ \x95\x78\xb0\xb4\x3d\xaa\x08\xfa\x39\x95\x60\x89\x95\xf3\x9b\x9f\ \x4e\xfa\xa9\xee\x3b\x05\xaa\x89\xaa\xaa\x59\x03\x47\x70\xb5\x57\ \x5b\x03\x31\x50\x8b\x7a\x58\x83\xfe\xc2\x72\x0c\x1a\x07\x0d\xd0\ \xb0\xd7\x48\x33\xbc\x12\x92\xd4\x48\x33\x94\x06\xb7\xef\x42\x0e\ \x35\x5a\xb7\x1d\xfb\xbc\xd0\xfa\xb7\x76\x36\x6e\x74\xb6\x81\x83\ \xd7\x8d\xa5\x02\x13\x36\x41\x69\x75\xc0\x2b\xec\xd0\x0e\x2e\x8b\ \xad\x8c\x69\x05\x7a\xb0\xad\xd8\x02\x83\x52\x55\x0f\x63\xc0\x04\ \xf2\x60\x05\xe8\xdb\x2e\x46\x3a\x0e\x7a\x38\x95\x3c\x3c\x95\x09\ \x49\x95\xed\x6b\xaf\xf6\x9a\x9a\x42\x5a\xb4\x63\x99\xaf\x09\x79\ \xaf\xaa\xda\xa9\xa4\x00\xa0\x47\x30\x05\x38\x78\x7f\x33\x7a\x79\ \x0a\x1b\xa6\x0e\x9b\xbb\xba\x02\x07\x4e\xb8\x6a\x93\xd6\xad\x43\ \xf1\x02\x07\x20\x21\xe4\x89\xc1\x97\xf6\xbc\x03\x07\xc2\x41\x56\ \x68\xb3\x96\xb7\x5b\xd7\x8d\x2d\x89\x06\xd6\x4a\x43\x7a\x70\x0a\ \xec\xe0\xb8\xa7\xc0\xad\xb8\x6b\x05\x75\xb0\xbd\xed\x07\xc3\xfe\ \x4b\x90\x33\x1d\x30\xa5\x46\xf9\x05\x06\xdc\x1c\x07\xa9\x08\x7a\ \x08\x90\x8a\x6c\xa4\x4b\xec\x99\x44\x1c\xba\xaa\x59\x0b\xf7\x9b\ \xc4\x4d\xeb\xa4\xa1\xda\xaf\x4f\xfa\xc4\x97\x39\x05\x2d\xc0\x99\ \x87\x7c\x1b\xb9\xc9\x9b\x43\xc8\xc0\x83\x5a\x16\x32\xd7\x84\x7a\ \x50\x07\xb8\x9b\xbb\x4f\x01\x02\x63\x1c\x23\x4b\x40\x66\x67\x56\ \xb7\x05\x86\xbc\xd0\x5b\xb7\xb4\x6c\x67\x84\x29\x6e\x7b\xfb\x75\ \x3c\x90\x7e\x57\x81\x02\x37\x51\x07\x7a\x10\x5f\x66\x01\x02\xeb\ \xb0\x0a\x67\xb8\x0e\xdf\x65\x94\x91\xeb\x0c\x37\xc1\x07\x64\x10\ \x03\xcb\x52\xaa\x04\xa9\xc8\xd9\x8c\x9a\x42\xdc\x9f\x40\x7a\xaf\ \xf7\x6a\xaf\xe1\x3c\xba\x98\xec\x9a\xfb\xbb\xc9\xf5\x00\xa0\x53\ \xf0\x4b\x00\x49\xc5\xe2\xb1\x01\x70\x67\xbb\x6f\xeb\xca\x66\x91\ \xca\x91\x08\xc6\x0f\x02\x03\x85\x42\x0a\x01\x57\x6e\xb7\x7c\xb7\ \xc7\x7b\xcb\xbb\x0c\x98\xd9\x48\x7e\x5b\x68\x78\xd0\x76\x17\x7a\ \x33\x18\x79\x2c\x2f\x6c\xf9\xc7\xd9\xb2\x39\xc2\x51\x0f\xe0\xd3\ \x5c\xcb\x22\x8b\x39\x18\x90\x04\x99\x83\xa8\x4a\x95\x9e\x99\xb4\ \x4e\x5a\x0b\xe0\xdc\x9f\x97\x2c\xce\xdf\x7c\xaf\xce\x50\xfe\x0f\ \xa4\x40\x0a\x63\x50\x0f\xa8\x9a\x87\xfa\xd7\x1c\x1b\x50\x79\x98\ \x60\xbb\x40\x80\xbb\x4f\x31\xa8\x83\x1a\x89\x4d\x58\x07\x8f\xa8\ \x2b\x38\x51\x07\x45\x42\x07\xc0\x55\x85\x9a\xf6\xc6\xc7\x1b\xc2\ \x01\x47\xa7\xcc\xea\x81\x30\x59\x78\xa1\x30\xc2\x1c\xa1\xd0\xe1\ \xc6\xad\xaf\x65\x05\xba\x00\x02\x36\xe3\x8a\x5e\x50\x0f\x12\x0d\ \x7c\xfa\x57\x8b\xfc\x68\x90\x01\x99\xd1\x1e\x2d\xa4\xae\x39\x96\ \x22\x3d\xd2\xde\x4c\xc4\x47\xeb\x0c\x9e\x8a\xd2\x8e\x1a\x9b\xd5\ \xcc\x0c\xfa\x19\x03\xf8\x97\x7f\x1b\x80\xb0\x95\x00\x09\xca\x77\ \xbb\xf4\x6c\x82\x7a\x9c\xca\x8e\xe8\xb0\xf8\x7c\xca\x70\xa0\x0d\ \xc2\xf1\x0d\x2b\x86\x85\x48\xbd\xcb\xe6\xe6\xbc\xe2\xf6\x75\x25\ \xca\x92\xd2\xa9\x89\x5e\x48\x2f\xe7\xb1\x62\x0b\x5d\x35\xbc\xd7\ \x56\xf7\xb1\x90\xc0\x47\x83\x18\x8d\x00\x5c\x09\xaf\x65\xdd\xaf\ \x4b\x8c\xb4\x4d\xea\xa4\xe0\x4c\xc4\x44\x0c\x9f\xa1\x0a\x96\xa4\ \xc0\x03\x4c\x40\x0a\x02\xbc\x9a\x35\xc0\x0c\x6d\xd0\xdb\x36\x38\ \xbb\x1b\xb0\xd7\xdd\xc0\xab\x13\xfc\x5a\x0e\xac\xc7\xd6\x68\x8d\ \x85\x3d\xc1\x99\xb2\x04\x36\x55\x0d\x6b\x18\x6b\x1f\xfe\xdb\xb7\ \x92\x5d\x60\x4e\x1d\x70\x2b\x80\x06\x81\xe9\xa1\x20\x88\x89\x53\ \xc6\x6c\x9d\x66\xbd\x65\x61\x19\x9d\x5d\x99\xc6\x22\x26\x5a\x93\ \x2c\xcb\xa2\x8f\x55\x39\xd6\x5b\x99\xaa\x19\x0d\xdf\xfc\x1a\xce\ \xff\x1a\xaa\x4e\xaa\x9a\xf4\x2d\xa4\xd8\x00\xa0\x98\x5c\xc3\xb2\ \xaa\x9f\x70\x0d\x09\xbc\xed\xdb\xf9\xc7\x87\x90\x70\x0f\x71\x60\ \xd8\x5a\xac\xd3\xbc\x72\xb6\xc9\xfd\xe0\xc5\xfd\x16\xec\x30\xc6\ \xd5\xf0\x5d\x5a\x51\xb2\x4b\x1d\xd0\x74\x9a\x8d\xd6\x1d\x93\x78\ \xf6\xd4\x99\x48\x7e\xc2\xbc\x11\x54\x33\x14\x0b\x5d\xde\x38\x81\ \xd5\xab\x70\x25\x61\x32\x61\x0d\x27\x1c\x6d\x00\x9a\xee\x5d\x8b\ \xa8\x9d\xaa\x65\x2d\xd6\xa9\x3b\xba\x0c\x79\x04\xbb\x18\xaa\xa0\ \x39\xbf\x45\xdb\xe3\xd8\x40\x0a\x50\x5a\xb4\x8f\x3a\x06\x3d\x7e\ \xb5\x53\x30\xe0\xbe\xed\x78\x57\x80\x09\x35\xcd\xab\x59\xac\xd3\ \x0f\x9b\xdc\x0c\x5c\x8d\x0f\x1b\xd8\x6c\xc8\x0e\x71\x47\x0e\x9e\ \xd0\x27\x01\xfd\xc6\x8e\x6d\x85\x49\xbd\xb7\x7b\x1a\x82\x5d\xd8\ \x92\x5c\xb7\x02\x23\xae\x11\xa9\xf2\x14\x79\x0c\x07\x28\x1e\x2c\ \x25\xf4\x2e\x61\xf2\x0d\x1c\x90\x35\x41\xd4\x2e\xfe\xed\xbb\x8f\ \xed\xd9\x9e\x5c\x19\xb5\xa8\x6b\xe3\x08\xc9\xb9\xf9\xd9\xaa\x62\ \xe9\xe3\x9c\xdb\xd6\xf0\xb9\xba\x0b\x09\xd7\x35\xfc\x05\xf0\x49\ \xc3\x64\xb0\xe4\xbd\x7d\xe9\x8f\x77\x05\xf6\x50\x91\x5f\x7a\xd3\ \x0f\x2b\x73\xa0\x6e\xd8\xc9\x3d\xc1\xad\xbc\x62\x5c\x8c\x8e\xe3\ \x4b\x67\x51\xd6\x81\x1e\xbc\x75\xe8\x96\xbc\xb0\x87\x67\x5b\x87\ \x06\xbc\xe0\x0f\x22\xe8\xdd\x2b\x50\xad\x21\x91\x70\xb7\x57\xde\ \x46\xa0\x32\x73\xe4\x34\x15\xf2\x0d\x59\xa3\x55\xf8\x78\x9f\x61\ \xd9\xce\x5b\xb9\xec\x08\x79\xba\x36\x6e\xa4\x52\x2b\xe8\x90\x1c\ \x96\x70\xed\x9a\x3f\xee\xcd\xff\x79\x99\x2a\x9d\xb5\xce\x50\xc3\ \x4f\x4c\xc3\x4c\x40\x06\x3d\xfa\xc9\x97\x8e\x76\x9a\xce\xe9\x58\ \xfc\xe0\xbd\x6a\xd8\xad\x5c\xea\x9a\x42\xac\x71\x49\x9e\x3c\x67\ \xa7\xbd\xcc\xac\x18\x1e\x6b\xe5\xc6\x09\x0b\xa0\x0c\xca\xb0\x00\ \xbb\xa0\xdd\x2d\xc9\x04\x9d\xe6\x6f\xf4\x31\x2f\x7f\x50\x21\x6b\ \x23\x23\x7f\x50\x2e\xf4\x43\x0e\xb3\x70\x84\x43\x3c\x96\xa8\xca\ \x0c\xf6\x69\x9f\xd2\xae\xbf\xa7\x9b\x9a\x54\x99\xf1\xf9\x19\xce\ \x63\xb9\x90\xae\xbd\xc4\x11\x99\xce\x57\xdb\xfe\x0f\xf5\xc0\x90\ \x8f\x5a\x8f\x3c\x60\x94\xd8\xa0\xbf\xf6\xd9\xdb\x5c\x79\x05\xf7\ \xf0\x05\xf6\x10\x07\xa5\x8c\xc5\x57\x9e\xe5\xae\x4c\xcf\x9b\xd2\ \xe0\xa4\x8e\x02\xcb\xbc\xb3\x1f\xbc\x0b\x2e\x89\xc1\x1c\xfc\x6f\ \x43\x96\x0e\xfe\xc0\x0b\xcd\xc6\x07\x44\xbf\x02\x73\x9c\x10\x77\ \x31\x68\x2a\xe3\x30\x7f\xf0\x07\x1c\x60\x32\xd1\x50\x32\x78\x3e\ \x0b\x52\x22\x22\xf5\x83\x1d\x78\x60\xdf\xfa\xd9\xb9\x37\xce\x95\ \xf7\xca\xf1\x69\xcf\xd6\xf7\xfa\xe3\xac\x6d\xd2\x9d\x9a\xce\xe9\ \xcc\x03\x2d\x5d\x0f\x7f\xf5\x3d\x55\xc4\x03\x9e\xda\xb9\xfd\xcb\ \x87\xf8\x60\x0f\x35\xdf\xa5\x9d\x9e\xee\x0c\xae\xe5\xc7\xed\xc0\ \x10\xf8\x0a\x75\x7c\x13\x70\x50\x97\x4b\xf0\xe5\xc6\xbb\x0b\xbb\ \x30\xd0\xcf\x7b\xcb\xd2\xfd\xbc\xf4\x8e\x06\x92\x9f\x61\x7d\xba\ \x68\x0b\x34\x18\x37\x71\x0a\x20\xa0\x0b\x56\x4f\x07\x14\x70\xf0\ \x26\x33\x0b\x1c\x80\xde\x74\xd4\xe2\x39\xf3\x8e\xf5\x2a\xce\xa8\ \x6a\x9f\xef\x8d\xdf\x6b\x3f\xd2\xae\xd9\xa4\x77\x2d\xe8\x6f\x0d\ \xf2\x69\x3d\xf2\x2c\xbd\x8a\x74\xdf\x59\xcc\xca\x03\x45\x3e\xc4\ \xbe\x0f\xe5\x50\x0e\xf8\x5e\x7a\xe5\x3b\xfe\x5f\x31\x2e\x68\x04\ \x75\xf0\x0a\x50\x20\x02\x8a\xaf\x9d\xd0\x32\xb3\x1a\xbc\x73\x8d\ \xd1\x71\x03\x67\xdd\x9a\x2f\xf9\x7c\xe0\xa7\x22\xe1\x82\x9d\x2d\ \xfd\x0d\x63\xf5\x7f\xb0\x0a\xb1\xf4\x07\xb8\xc0\x01\x5b\x9f\x34\ \x25\xe3\xf0\x14\x50\xff\xf3\x97\xd2\x5a\x1b\xa4\x12\x0f\x90\x15\ \x6f\xd7\xa1\x4b\xd2\x00\x31\x45\xe0\x94\x1a\x35\x9c\x19\x3c\x58\ \x63\x0a\x9e\x18\xcc\x1c\xe2\xc1\x63\x90\x0c\xb6\x84\xce\xea\x8d\ \xe1\x23\x4f\x8d\xbc\x19\x1a\xd5\x7c\x34\xc2\xa4\x1e\x19\x67\x64\ \xea\x7d\x19\x59\xe3\xca\x4a\x48\xf7\xec\xc5\xf1\xe3\xe6\x05\x1c\ \x23\x1f\x6d\xde\xc4\x69\xd3\x08\xcd\x9a\x46\x8c\xbc\x78\x25\x62\ \x92\x08\x54\x70\xd4\x18\x39\x05\x82\xdd\x3a\x10\x35\x73\x3e\x85\ \x6a\x53\x9e\xc7\x8d\x9c\x3c\x72\x4a\x97\x6e\xc5\x0a\x34\xbb\xa0\ \x0c\xf9\x17\x56\xec\x58\xb2\x65\xcb\x4e\x8a\x6a\x64\xdd\x9f\x03\ \x7f\x56\xad\x83\xbb\x8e\xce\x5c\x0e\xdf\xaa\xdd\xbd\x3b\xeb\x4f\ \xbb\x75\xed\xc6\xb4\x53\xe4\x45\xf0\x07\x6c\x24\x11\x52\x74\x76\ \x90\xa1\x43\x66\x31\x08\x12\x2c\x18\x59\x72\xc1\x5a\x92\x05\xe2\ \xb9\xd2\xb0\x71\x8c\x2b\x85\x11\x5b\xfe\xe4\x41\x35\xa7\x3c\x4e\ \x63\xc6\xf0\xe0\xc3\x87\x47\x3d\x6c\x78\x5a\x6c\x48\x05\x09\x5f\ \x4c\x20\x34\xa3\xde\x74\xea\xf4\xa8\xcf\x8f\x70\xe0\xd4\x09\x2a\ \xe2\x95\x9e\x53\x47\xeb\xa0\x82\xe1\x49\x37\xd4\x9e\x47\x6f\xdf\ \xa4\x2a\x6f\x6b\xd6\xac\xda\xc0\x9a\xc5\x9e\x3d\xac\x38\xe6\x75\ \x3c\xb1\xfd\xf3\x47\xee\xda\xf0\x14\xe8\x70\xe0\x80\xb7\xda\xb7\ \x3f\x14\x74\xb5\x83\x4f\xa1\x8a\x60\x2f\x8a\x0a\x57\x4c\xec\x8c\ \xe2\xc0\x18\xfd\x21\x4f\xce\x2f\xbf\xc8\x04\x2c\x68\x8a\xcc\x36\ \xf3\xaf\x06\x93\xea\x21\x85\x89\xe7\xd4\x98\x61\x06\x08\x67\x18\ \xc3\x19\x3c\xda\xd8\xe0\x0a\x48\xec\x71\xc3\xb7\xe5\xd2\xda\x8d\ \x37\x9d\x40\xf2\xc9\x08\xe0\x44\xe8\xa1\x8e\x9a\x4e\x41\xca\x13\ \x14\x3c\xd1\xc3\x0a\x2b\x96\xf0\xc4\x28\x38\x64\xf4\x84\x1c\x0e\ \xc6\xe1\x80\x1c\x1f\x75\x69\xea\x41\x79\xf8\x40\x63\x05\xea\x44\ \xb8\x4e\x3b\x25\xc7\x1a\xe2\x95\xa7\x4e\xf1\x04\xae\xf0\xc2\xa3\ \x63\xca\x3f\x70\xa1\x03\x17\xf4\xea\xba\x8b\x0e\xf8\xf8\x5a\x65\ \x16\x72\xc6\xa1\xaf\xb3\x84\x14\x22\x48\xbf\x84\x04\xf2\x2f\x40\ \x37\x13\x3b\x82\x22\x32\xe6\xa4\xfe\x08\x9b\xc8\x06\xaa\x01\x8f\ \xcd\x22\xaa\x87\x07\x2b\x3a\x7a\xf0\xa3\x19\xea\xc9\x93\x33\x48\ \x30\x71\xe3\xc3\xe7\x4a\xf4\x89\xa7\xe6\x18\x75\x4a\x8f\xa0\x50\ \x61\xb1\xb8\x53\xe0\x60\x67\x95\x03\x56\xd1\xf4\x80\x76\xf4\x68\ \xe7\x80\x03\xaa\xa1\xaf\x54\xc1\xbe\xb1\xe2\x41\x4e\x38\x99\x6e\ \x97\x24\x97\x84\xd5\xc9\x9c\x4c\x8c\x4b\xbc\x3f\xe6\xc2\x95\x83\ \xb9\x6e\xe5\x20\x3c\xbd\xc0\xe4\x94\x9c\x55\xc8\x81\x84\xbe\x92\ \xec\x54\x28\x06\x3c\xa6\xa8\xa8\xc0\xfe\x0c\xc2\x06\xb1\x82\x4a\ \x9a\xb3\xa4\x30\xea\xc1\x96\x4e\x69\x0d\x2a\x10\x32\x81\xea\x01\ \x34\xd0\x19\x48\x99\xd3\xa4\x2f\x96\x68\xaa\xb9\x45\x43\xdc\xc9\ \x43\x48\x69\xb2\xcd\xc4\x57\x26\x19\x8e\xc5\x9a\x8e\x5b\x47\x54\ \x6d\x34\x85\xa1\x8e\x4c\x61\xd0\xb4\x9a\x03\x64\x31\xd5\x8b\x6a\ \x96\x50\x95\xd5\x15\xac\x83\xb5\xe1\x57\x4a\xd4\xe9\x14\x5d\xd6\ \x59\x45\x3c\xb8\x70\xc5\x38\x63\x3a\x66\xe1\x60\x16\x3a\x74\xec\ \xb1\x1d\x18\xfe\x22\x53\x11\x93\x9c\x61\x53\x59\x81\xa6\x45\x79\ \x8a\x04\x15\x4c\x0c\xcd\xfc\xe6\xc4\xb6\xe6\x9a\x0b\x9b\x28\x5a\ \x6c\xb0\x1d\xa3\x5c\x52\x42\xfe\x0b\x94\x23\x2b\x8c\x90\xc7\x88\ \x19\x98\x00\x01\x04\x47\x79\x7b\x54\xa7\x77\xe1\x98\xc9\x37\xa8\ \x3d\x94\xda\x37\xe0\x26\xf5\xa9\x0e\x16\xeb\x40\xc1\x00\x03\xf4\ \xa8\x43\x0f\xe2\xd4\x48\x75\xb7\x53\x8e\xd3\x66\xe0\x52\x57\x79\ \x8e\x34\x4e\x86\x78\xb5\xe1\xec\xc4\x41\xc5\x08\x76\x8a\x03\xc9\ \x93\xb6\xfe\xe8\xf5\x56\x8d\x71\xd5\x45\x17\x0a\xfe\xe0\x58\x3c\ \x1d\x3d\x05\x01\xe9\x19\x21\xd9\x99\xa4\x85\x18\x5a\x68\xe5\xc4\ \xf8\x63\xb3\x96\x83\x2a\x47\xa8\xa4\x9a\x69\xfe\x22\xda\x89\xc8\ \x20\x65\x0c\x26\xf8\x60\x82\x07\xd1\xc3\x0d\xf4\x26\xd5\xce\xed\ \x70\x6a\x77\x21\x85\x7d\xa7\xa8\x67\x7a\xa1\xf6\xa8\x7f\xc3\x1d\ \x0e\x49\x5f\x79\x05\x8e\x53\x5e\x50\xb1\x8e\xb0\x51\xd1\xe3\x37\ \x15\xd3\xb2\x42\x0f\x76\x0e\x10\xac\x1a\x37\xda\xf6\x24\x6e\xb9\ \xcd\x1a\x42\x0f\x13\x75\x31\xea\xa3\x3a\xc8\x4b\xaf\x9a\x5e\x31\ \xbe\x35\xf0\xc0\xcf\x43\x6f\x2f\x8a\x77\x5c\x65\x09\xf5\x99\x58\ \x82\x35\xc3\x56\x4e\xf9\xbf\x6e\xfb\xf3\x2f\xfe\x29\x2c\x4f\xac\ \x5a\x9d\x2b\x32\x49\x74\x26\x4c\x3b\x5d\xd1\x52\x67\x93\xa3\x8d\ \xa1\x1e\xf8\xf8\x82\x1b\xfe\x40\x20\x93\xda\x54\x2d\x76\x55\x73\ \x1d\xd4\x5e\x20\x36\xe0\xdd\xee\x76\xa8\x00\xc6\x2b\x82\xf7\x82\ \x4a\x0d\x4f\x78\x75\x30\x0a\xde\xf0\x96\x93\x53\xac\x42\x16\x07\ \x7b\x8e\x15\xe0\x36\x3d\x25\xa1\x80\x44\x36\x91\x58\x78\xd0\x73\ \x17\x2a\x8d\x0f\x63\xba\x38\xcf\x5d\xd8\xd3\x8e\xf7\xc0\xa0\x1d\ \xc3\x6a\xc7\x17\xbe\x30\x27\xc9\xc4\xec\x32\x03\x49\x53\xb2\x18\ \x43\x3f\xfa\xad\x4c\x22\xef\x63\xc8\x4a\x14\x74\x11\x6c\xd9\x29\ \x4d\x0d\x12\x8d\x90\xfe\x47\x12\x04\x2e\xc1\x0d\x5f\x04\x41\xed\ \xa4\x76\xbb\x76\x4d\xcd\x76\x67\x9c\x60\x1a\xc3\x36\xc1\xb0\xd1\ \x04\x38\xc0\xb0\xde\x4e\x2c\x75\x1c\x54\xa0\xa2\x0e\x1c\xb4\x54\ \x1e\xa1\x92\x29\xe5\xdc\x06\x18\xd2\x63\xe1\x58\xc4\xa1\x28\x23\ \x44\x69\x15\x7d\xbb\x95\x5c\xe8\x60\x43\x5d\x2d\x52\x17\xdd\xab\ \xc6\x22\xdd\xe0\x09\x74\xa9\x6f\x09\x5f\x20\x07\x36\xc8\x41\x99\ \x1a\x54\x06\x4d\xf5\xb3\x8c\x66\x5a\xd0\x18\x97\x25\x28\x4d\x46\ \x84\x08\x1e\x34\x47\x45\x42\x09\xa4\x24\x63\xf8\xd3\x00\x09\x68\ \x05\xf6\xa1\x4b\x81\x61\x9c\x49\xbb\xc8\x38\x46\x34\x4a\xf0\x05\ \x40\xd0\x83\xed\xc4\xfe\x46\x41\xb0\xd1\x44\x52\xd6\x53\xc3\x6f\ \x90\x42\x47\xb0\x1d\xef\x23\xa7\x80\x66\x54\x4e\x81\x02\x76\xdc\ \xe6\x15\x80\x0c\xe4\x76\x14\x05\xa5\x89\xad\x85\x0e\xeb\xe8\xe6\ \x5c\xc6\xc7\x37\x8c\x75\x8f\x03\xed\x00\x41\x52\x8c\x62\x84\x19\ \x55\xe8\x0a\x77\x62\x53\x29\xe9\xb7\x2c\xcb\x38\x64\x94\xcc\xea\ \x96\x42\x9e\x78\x92\x31\x7c\xc1\x7f\xa6\x19\x22\x49\xfa\x87\x11\ \x3e\x58\x21\x8b\x03\xd4\x4d\x6e\x9c\xf6\x34\x5f\x9a\xb1\x97\x77\ \x0c\xe6\x30\x83\xb9\x93\x3a\x72\x10\x77\x97\xaa\xa3\xf0\x90\x02\ \x4d\x8e\x72\x94\x39\x41\x7a\x8a\x1e\xb0\x99\xcd\x7f\xf4\x80\x84\ \x56\x88\x4b\x37\xc1\x39\xb1\x6f\xb6\x74\x2e\x6b\xd9\x92\x78\x3c\ \xa1\x35\xb2\x0d\x4d\x0d\x4c\xc0\x64\x0d\xc6\x71\x27\x04\x30\x51\ \x20\x8c\x59\xd6\x29\xa7\xe0\x90\xfe\x5c\x4e\x72\x64\xc0\xc8\x9f\ \x22\x24\x34\x3e\xf4\x0c\x3f\x01\xaa\x07\x13\x14\x15\x95\x08\x45\ \x08\xa1\xec\x82\xa0\x43\x6f\x27\x41\x89\x8a\xed\x8e\x28\xb8\x43\ \xf1\xce\x46\x9c\xb1\x0a\xaf\x83\x1d\x8d\xe6\x08\x71\xc3\x9c\xaf\ \x90\xb4\x2c\x43\x98\x84\x5a\xd5\x00\x25\x43\x82\x53\x2e\x7f\x08\ \x5c\x5c\xaa\x14\xfe\x97\xb5\x78\x8f\x03\x07\xa0\x83\x27\xfe\x64\ \x04\x10\x2c\x01\x69\x98\xc4\x06\x24\x36\xe9\x8c\x5a\xa4\x0c\x01\ \x2b\x83\xc8\x15\x22\x32\x2d\x6c\xb8\xec\x9e\xc7\xea\x1f\x13\x3a\ \xa2\x1b\x79\x58\xc1\x34\x64\xa8\x01\x13\x1b\xc3\x8c\x88\x7c\xa1\ \x6c\x08\x35\x9d\xe8\x6c\x2a\xcb\x32\x42\x30\x6a\x8d\xb2\xda\x6f\ \x26\x38\x4c\x0f\x96\x08\x84\x26\x32\x2b\x5a\xcf\x96\x56\xb9\x3e\ \xa7\xad\x6e\x25\x0b\x77\x70\x52\x07\x5d\xbc\xe5\x9b\x17\x1b\xcf\ \x5d\xa7\xb4\x52\x5d\x84\x07\x06\xeb\xe8\x95\x2e\x3c\x21\xd8\x25\ \xf8\x68\x09\xfd\xc4\xc7\x44\xce\x14\xcf\xfb\x3d\xc6\x5b\xcc\x7a\ \x1f\xe8\x52\x63\x85\xd4\x48\xe8\x23\x1c\x69\x2a\x68\xf5\xd4\x82\ \x36\xb4\xb7\xbd\x2d\x88\x41\x0d\xea\xc1\x87\xf3\x6e\x64\x80\x56\ \x18\xc9\xb9\x40\x30\xb4\xa9\x3e\xa5\x27\x8c\xa2\x1a\x43\x71\x77\ \x47\x02\x83\xad\x27\x69\xfd\xa0\xd6\xb4\xa6\x5b\x4b\xa5\x8e\x1d\ \x23\xcd\x26\x2a\x22\x66\x85\xe6\x8a\xa7\xa5\xcc\xbd\xd8\x72\x57\ \xba\x14\x20\x15\x97\x29\x94\xb4\x02\x08\xda\x41\x81\x21\x0e\x91\ \x35\xd3\xaa\x4c\x63\xf1\x84\xa6\x77\x26\xa6\x4f\x4c\xd8\xc5\xe8\ \x66\x50\x13\xfe\xa6\x92\x8e\x09\x38\xad\xac\x6b\xdc\xbb\x63\xc7\ \x60\x03\x23\x55\x55\x0d\x7d\x85\x44\xb4\xa3\x5d\xd2\x8b\xad\x13\ \xd1\xac\x9c\xf3\xa8\x9d\x40\xec\xbf\xb0\x95\x6d\xd8\x24\x5a\x07\ \xed\xa9\xe8\x6c\x1f\x64\xb0\x1e\x03\x05\x07\x71\x40\x78\x7a\x43\ \x30\x80\x60\xbd\xe3\x89\x89\xf1\xad\x6f\x17\xfb\x26\x4b\x65\x28\ \x1e\x5d\xb0\x63\xba\x9e\x48\xe7\x9b\x8d\x96\x38\x3e\x2c\xa1\x1d\ \x3e\xc2\xc6\x10\xed\x74\x90\xcb\x29\xe4\x72\x9e\xf3\x27\xd2\xcc\ \x6b\x34\x1b\xb3\x8f\x35\x89\x89\x96\x62\x62\xc0\xde\x1d\xb7\xa1\ \xc7\x5f\xe0\xc1\x8d\xff\x37\x12\x70\x3d\x68\x06\x36\xae\xc9\x0c\ \x0a\x1b\x87\x2f\xca\x64\x69\xb1\x6b\x32\x94\x99\x46\xa2\x12\x59\ \xad\x76\x61\x43\xb5\x95\x41\x38\xc7\x05\x3f\xb3\xa3\x73\x1d\xe0\ \x0a\x81\x2b\x48\xbb\xe2\xd0\xcc\xe9\xb1\x52\x95\xca\x37\xa5\x5e\ \xa5\x54\x6b\x20\x80\x33\x71\x41\x20\x21\x4d\x93\xae\x1d\x73\x12\ \xa2\xfb\x04\x1a\xb3\x29\xaa\x76\xc6\xce\xe1\xc8\xa5\xbf\x70\xa6\ \xd0\x36\x06\x33\x05\xc9\x0c\xa3\xdd\xcb\x8c\x2b\x68\x0e\xa0\x23\ \xe1\xb3\x9f\x36\x0b\x95\x21\xfd\xef\x74\xbd\x59\x60\x4c\xdc\x00\ \x04\x31\xfe\x66\xd5\xdd\x52\x83\xd4\x92\x7d\x72\xa9\x0a\x46\x39\ \x6c\xc5\x41\x8a\xab\x69\xda\xe0\xb4\x0e\xf0\x0e\x5e\xfe\xb2\x22\ \xfd\x86\x9e\x6f\xf4\xda\xcc\x7c\xbb\x0b\x22\xf9\xba\x8e\x99\x5a\ \xa1\x52\x56\x98\xee\xb0\x27\x44\xcb\x63\x67\x4b\x4e\x24\xa1\x56\ \x54\xf9\x7b\x14\xf4\xb6\x2f\x67\x3a\x6e\x03\x69\x99\xd1\x82\x16\ \x5c\x5b\x21\x0c\x21\x39\x29\x15\x44\x06\x94\xa0\xc4\x71\xf1\xed\ \x93\xe8\x86\x24\xe4\x68\x6f\xd6\xdc\xea\x53\x5a\x4f\xac\x00\x04\ \x37\xd0\x06\x08\x3f\xef\x25\xed\x7c\xd9\x6e\x50\x4b\xed\x8e\x97\ \x1a\x30\x08\x9f\x09\x43\x9a\xc2\xba\xb7\x0f\x12\xe9\xac\xc9\x52\ \x31\xf2\xf9\xd5\x4a\xd0\x4d\x78\xf9\xdc\xbc\x14\x8a\xc5\xc5\xcd\ \x43\x3b\xc5\x0c\x4e\x01\x71\x1a\x0d\x8d\x96\x3d\xa3\x00\xb8\x55\ \xac\x39\x26\xc4\x92\xd0\x3d\xb3\xd3\x7a\x47\x09\x11\x46\x97\x7c\ \xe4\xa4\xad\x41\xa2\x55\x42\x4f\xcf\x95\x6b\x22\x79\x72\xc8\x14\ \x76\x86\xad\x1b\x63\xa4\xdc\xaa\x91\x39\xfb\xc6\x60\x49\x74\x31\ \xea\x97\x40\xf0\x83\x1f\x20\xff\x73\xca\xff\xd2\x76\x95\x6f\x37\ \xbc\x9b\x6c\x6a\xe0\x09\xaf\x99\xc2\x73\xb5\xab\xfb\x2d\xcb\x8f\ \xbc\xfe\x40\xd6\x52\xff\xc7\x10\x78\xed\xd7\x45\x7a\x47\x2e\xdd\ \xb3\x18\x3b\x0a\x01\xa5\xb5\xc0\xa5\x62\x32\xa5\x09\xde\x28\xdc\ \x8e\xb6\xab\xef\x0b\xc7\x26\x89\xe5\x3a\xf9\x63\x8d\x18\xad\x9f\ \x64\xb8\x42\x1b\x4a\xd1\x86\x0e\xb8\x17\xbe\x99\x71\xaf\x64\xb9\ \x2d\x78\x97\xdb\x09\x31\x64\xc0\xc7\x49\xaa\xe5\xb2\x91\x47\xc4\ \x24\xfd\x23\x57\xdb\x01\xc8\xb3\x3f\x31\xbe\xd3\x39\x6f\x14\xe5\ \x23\xef\x07\x12\x44\x9e\xf2\xec\x7e\x3f\xbb\x83\x5e\xb5\xda\x75\ \x15\x6c\x5e\xcd\x63\x1e\x9b\x4e\xfa\x8f\x20\x09\xf5\x61\x51\x3d\ \x44\x0a\xac\x42\xe0\x8d\x42\x88\x92\xe5\x62\x87\xc0\xa9\x83\x42\ \x58\x8b\x03\x98\xa1\xbf\x62\x8a\xb0\xb3\x02\x02\x9c\x01\x3b\x5b\ \x82\x22\x33\xa0\xc4\xd8\x29\xa4\x1a\x83\xff\xf2\xac\x1a\x50\x84\ \x92\x60\x06\xc1\x70\xaf\xe6\x9b\xbb\xa1\x6a\x83\x16\x20\x88\x2b\ \x10\xbc\xd3\x98\x34\x8b\x43\xb6\xce\x01\x3c\x92\x8b\x2f\x9d\xd9\ \x99\x31\x88\x16\xd1\x19\x09\x93\x40\x20\xa9\x9a\x91\x38\xf0\xa2\ \x25\xa0\x8d\x5c\x92\x9d\x9f\x6b\x3f\xf6\x03\x06\xf6\x7b\x3f\x14\ \x60\xc2\xca\x93\x3f\x31\x02\x21\x88\xd2\x03\x54\x40\x81\x29\xab\ \xfe\x23\xb2\x6a\x35\xb3\xe2\xbf\xa3\x78\xb0\xff\x0b\x0b\x19\xfa\ \x26\x4f\x28\x04\x18\xa2\x3d\x0d\x8b\x0b\x4f\x40\x05\xac\xc3\x8b\ \x03\xd0\x05\x87\x2b\x24\x32\x83\xb3\xc0\xd1\x2c\x5a\xaa\x87\x31\ \xe9\x24\x32\xd0\x2c\xa1\x61\x02\x6c\x50\x84\x52\x10\x8c\x2b\xf8\ \x02\x7c\x68\x03\x2f\x70\xbe\x94\x53\xa5\x1a\x18\xb9\xbc\xd3\x1c\ \x3e\x98\x81\xb3\x33\xa0\xcf\xc9\x2e\x7c\xc8\x13\xf6\x1a\xa5\x6e\ \x8b\x99\x9d\xb1\x3e\xd3\x28\x8c\xec\x13\xa2\x25\xb0\x02\x38\x10\ \xc2\x50\x8c\x09\x3f\x20\x3a\xa8\xf9\x39\xf6\xf3\x83\x24\x4c\x42\ \x12\xb8\x83\x3b\xf0\x03\xb0\x02\x82\x2a\x04\x26\xdb\xb9\x23\x61\ \x12\x1b\x26\xbc\xc2\x3a\x42\x05\x0d\x2a\x0e\x2d\xdc\xad\x2d\x14\ \x29\x80\x6b\x18\xb8\x29\x1f\xe9\x9a\x3d\x68\x22\x33\x5d\x73\x40\ \x8b\xf1\xba\x89\x19\x15\x59\xe0\x00\xb8\xd0\x0d\x10\xd0\x85\x49\ \x92\xb4\xfd\x02\x01\x4c\x52\x04\x93\x81\xa5\xa2\xb1\x02\xe4\xf3\ \xc3\x52\xe9\x00\xf5\xb9\x10\x42\x4c\x41\xf8\x52\x16\x67\x90\x44\ \x3e\xb9\x08\xcd\xda\x08\xd2\xe9\x19\xbf\x4b\xac\x45\x4b\xc1\x6b\ \x3b\x93\x68\xc9\x13\x1f\xeb\x9c\x3c\x13\x22\x7c\x88\x03\xa5\xfe\ \x01\x81\x38\x80\x89\xf5\x93\x3c\xa0\xa3\x9d\xc7\x83\xbc\x54\x44\ \xc5\xf6\xbb\x03\x20\x68\x48\xb0\x6a\x42\x89\x4a\xa3\x61\xc2\x45\ \x14\xc8\xc5\x57\xa0\x14\x35\x68\xb5\x57\x63\xad\x2e\xfb\xbf\x21\ \x10\x87\xf3\x08\x0f\xe6\x22\x33\xac\x5b\xc6\x75\x48\xc0\x85\xe3\ \x3a\x03\xd0\x85\x0f\x8a\x98\xec\xf1\x09\x6f\x1c\x03\x72\xd8\x46\ \x67\x60\x02\x8e\x00\x81\x7a\x08\x8c\x82\xf1\x82\x52\x38\x97\x0b\ \x71\x3e\xce\x20\x08\x1f\xc3\x41\x3c\x24\x1d\xaa\x68\xaa\xcd\xc1\ \xbe\xc4\x62\x86\x0c\x81\x04\xc6\x49\xac\x77\x62\x1c\x67\xd0\x10\ \x32\xb8\xa4\x40\x44\x20\x7c\xd0\x4a\x2f\x7a\x81\x25\x88\x83\x97\ \xf8\x4a\x82\x2c\xc8\x33\x52\xbf\xf6\x23\x81\x06\x70\xc5\xb4\xbc\ \x03\x26\x64\xcb\x88\x1a\x26\x60\x62\x42\xde\x41\x01\x8c\x9c\x4b\ \xde\x59\xb0\xa6\xcb\x2d\x59\xea\xc2\x8f\x24\x8f\x5b\xf1\x1b\xb8\ \xe8\x26\x8b\x79\x33\x4f\x58\x0a\x03\x58\x07\x54\x98\x29\x68\x52\ \x97\xa3\x18\x3b\x90\x68\xc4\x19\xc3\x31\x72\x88\xaa\x08\x19\x83\ \x2b\xf8\x00\x9e\x14\x8c\x0e\x40\x89\x2b\x30\xc1\x51\xea\xb1\xc2\ \xc0\x88\xd5\xc8\x08\xf3\xfa\x88\xa4\xec\xa7\x91\x88\x4a\xfe\x0d\ \x91\x0d\x7c\xc0\x84\xa7\x7c\x4a\x6c\xd0\x4a\xd9\x50\x9f\x38\xd0\ \x4a\x4c\xb0\x4d\xdb\xe4\x90\x17\x70\x83\xaf\xdc\x83\x3d\x00\x06\ \x7b\xf8\xcd\x55\x2c\x48\xf9\x7b\xbf\x56\xf4\x83\x06\x40\x4e\x57\ \x6c\x00\x14\x78\xc5\x88\xd4\x83\x2a\xac\xc2\xe7\xbc\x03\xde\xa1\ \xce\x5d\x0c\x0a\x05\x03\x9b\xb9\xc2\xb2\x01\x8a\xba\x8f\xd4\x86\ \x5c\xa3\x92\x2a\x39\x2e\xc0\x9c\x18\x37\xd3\x05\xc4\xcc\x4b\x12\ \x22\x33\x74\x91\x91\xf7\xf0\x0b\xf8\x80\x25\x08\xf9\xc6\x9d\xc4\ \x4c\x2f\xc0\x83\x89\xb8\x02\x6b\xc3\x0c\x82\x60\xb9\xd3\x98\x31\ \x46\xcc\x09\xc4\x33\x8d\x43\x83\x84\x1a\x58\x4d\x21\x6a\xcd\xc4\ \xc2\x04\xad\x84\xcd\x04\x5a\x02\x7b\x60\xcd\xdb\xc4\x84\x7b\xc0\ \x84\x7f\x84\x3c\x7b\xe8\x4d\xe0\xc4\x50\xdf\x54\x48\x12\xc0\x3c\ \xca\x6b\x48\x57\x64\xce\x3b\x58\x4e\xe4\x44\x81\xe5\x64\xcb\x14\ \xad\xcb\x57\x30\x00\xea\xac\xce\xdf\xb0\xa3\xb9\xba\xb2\xfd\xbb\ \x0d\xd3\xf3\xc2\xd4\xb3\x12\xf1\xd9\x95\xf4\x38\x33\xf2\x08\x43\ \x34\x2c\x04\x1a\x85\x21\x4f\x78\x0b\xb8\x20\x87\x75\xd0\x91\x71\ \x18\x13\xd3\x82\x90\x25\xa8\x81\xfa\x2c\x95\xce\x40\xfe\xc4\x92\ \x7b\x27\xcf\xb9\x08\x00\x15\x94\x9c\xb8\xb4\xc2\x23\x03\x82\x38\ \xd0\x2f\x80\xd0\xa7\xa4\x50\xd8\x64\x4d\x7f\xdc\xcd\x08\x95\xd0\ \x7b\xb8\x87\x3d\x90\x3c\x3f\x88\x83\x0c\xfd\xcd\xde\xfc\x4d\x7b\ \xe8\x01\xe0\x1c\x4b\x84\xfc\x39\x14\x70\xc8\x13\x45\x4e\xe4\x64\ \x07\x76\x38\xd1\x14\xbd\x03\x76\x60\x51\x03\x10\x81\x43\xa5\x4e\ \xe1\x10\x1e\x3b\x82\x26\x2c\x7b\xba\x9c\xf0\xbf\x8f\x14\x40\x47\ \x7a\xbd\xbb\x30\x98\xbe\xd9\x35\xbe\x4a\xcc\x88\x21\xb3\x55\xa0\ \x83\x55\x80\x8f\x5e\x21\x07\x0a\x98\x05\x25\x6d\x0a\xfc\xa2\x4f\ \x28\xf5\x82\xbc\x53\x09\x87\x78\xa7\x81\xca\x43\xa9\x18\x8d\x8e\ \xe0\x83\x7a\x38\x08\x7e\x14\x22\xda\x6c\x4d\x0a\xc5\x07\x7b\x80\ \xd0\x7b\x40\xa0\x33\xa5\x50\x5f\xf5\x55\x35\xbd\x87\x38\xe0\x39\ \x3f\xc0\x50\x60\x88\x03\x60\xe8\x4d\xdf\xb4\x07\x16\xe8\x81\x38\ \x60\xc8\xf8\x5b\x42\x37\xe8\x53\x18\x30\x00\x18\x68\x00\x76\xf0\ \xd3\x6e\x25\x54\xaf\x39\xd4\xa1\x48\x54\xbb\xb4\xcb\xdd\xd2\xc2\ \xe7\xb8\xa6\x1b\x1d\x02\x6d\xa0\x8b\x5e\x9b\x18\x48\x42\xa4\x35\ \xab\x98\xef\x5c\x85\xbb\x59\x91\x53\x60\x40\x4f\xfe\xe5\x9b\x55\ \x90\xae\x76\xf0\x44\x26\x80\x8f\xb6\x63\x82\x62\x51\x55\xfa\x60\ \x86\x80\x42\x3e\x7a\x42\x2a\x46\x9c\x8a\xa0\x59\x0d\x7e\x5a\xbc\ \x2f\x88\x03\x30\xdd\xd5\x05\xfd\xca\xd6\xf4\x47\x81\xc4\xcd\x97\ \x70\x53\x0c\x5d\xd3\x36\xf5\x03\x36\xdd\x03\x7b\xe8\x86\x6e\x80\ \xd6\xdf\x64\x01\xe1\x64\xc5\x9f\x0b\xa6\x34\x82\xcb\x06\xd8\x56\ \x16\xf0\x1a\x99\xf5\x1a\x76\xf0\x1a\x71\x3d\x54\x44\x0d\x0e\x8c\ \xc4\xc8\xbb\xdc\xad\x47\xfd\x88\xee\x64\xd7\xef\x8c\x29\x19\x4a\ \x38\x66\xac\x3d\xbe\x72\x33\x11\x32\x91\x03\xa4\x98\x7e\x95\xae\ \x19\xd3\x34\xa4\x59\x82\x2b\x38\xd8\x28\x3d\x4d\x1c\xac\x52\x96\ \x73\xc7\xd4\xb9\x34\x78\x3c\x09\xaf\xa4\xd8\x2f\x98\x50\xdb\xfc\ \xca\x08\xdd\x03\x81\xb4\x07\x4c\x28\xd9\x81\x54\xd6\x3d\x58\xd3\ \x81\x9c\x53\x0c\xed\x86\x4a\x40\xd9\x3a\x55\x59\x98\x68\xbf\x06\ \x68\x59\xe2\x9c\xa0\x13\xd5\xd6\xc1\xcd\xd9\x9c\x2d\x54\x16\x10\ \x01\xc4\xf5\x59\x44\xad\x23\x5e\x6c\xd4\x18\xbd\x0d\x8f\xbc\x51\ \x00\x1c\x82\x98\x9a\xa1\xa4\x95\x12\xa6\x05\x27\x34\x9c\x29\x03\ \x84\x33\xae\x7b\xae\x6f\xb8\xd4\x76\x48\x95\xfe\x46\x9c\x11\x32\ \xc9\x5a\xc1\x28\x05\x96\xf3\xa7\x25\x00\x2d\x6f\x43\x8d\x83\x4a\ \x8b\x21\x31\x1d\x4b\xa2\x58\xdb\x5c\x53\x62\xbd\xcd\x92\xf5\xd5\ \xb7\x1d\x45\x81\x7c\xd6\xf5\x0b\xce\xde\x3c\xd9\x93\xdd\x03\x16\ \x88\x56\x16\x40\x45\x16\xe8\xd3\x86\x7c\xd9\x5f\x7a\x4e\x9c\x35\ \x00\x9a\x35\x00\x9b\xad\xde\x70\x35\x54\x11\x68\x51\xde\xd9\xd9\ \xc6\x65\xd4\x45\xcd\x48\xff\x92\xdc\xc9\x15\x8b\x21\x68\x8b\xcb\ \xf5\x9e\x91\x34\xb3\x85\xbb\xbd\xb7\x78\x0b\xae\x2b\xd2\x3f\x20\ \x15\x83\xf9\x06\xd2\x8d\x90\x82\x4d\x5d\xfa\xd0\x4c\x6c\x51\x1f\ \x3e\xbb\x41\x2c\x95\xa5\x2d\xbd\x31\xaf\x84\x50\xb9\xe5\xdd\xb6\ \xc5\x04\xb0\x1c\x59\x81\x8c\xbc\x9e\x7b\xd3\x67\xe5\xd0\x54\x6c\ \x56\xe2\xc5\x5b\x94\x45\x5e\x16\x80\x09\xe4\x04\x06\xb4\x5c\x4b\ \x83\x9c\xa0\x58\x44\x4e\x03\xf0\x56\xe9\x6d\xd1\x9c\x45\xdc\x9d\ \x15\x0e\x11\x10\x07\xe1\xe0\x1d\x3b\x02\xdf\x57\x88\xa6\x9c\xd8\ \x4b\xf2\x65\x12\xa3\xc5\x0b\xbf\x7c\x40\x5e\xfb\xab\xbf\xf2\x9e\ \x03\xb0\x3d\x0e\xa8\x98\x8a\x49\x8f\xe6\xe1\x3d\xc2\x22\x83\xfc\ \x2d\x93\x12\xc3\x29\x03\xc9\x3b\xa4\x8a\xfe\x55\x59\xea\xb8\xab\ \x44\xe0\x0c\x9d\x62\x8f\xf5\x55\x82\x9c\xe0\x7b\xa8\x84\xdc\x6d\ \xd6\x81\xb4\x5b\xbc\xdd\x83\x6e\xb8\x60\x16\x50\xde\x06\xd8\x60\ \x3f\x58\x4b\x26\x7c\xde\x5b\x3c\x51\x76\x68\x45\x12\x2d\xd4\xe9\ \xcd\x5e\x14\x3e\xd4\x15\xae\x4e\x17\xbe\x9a\x56\xbb\x09\x2e\x13\ \x46\xd4\xd3\x06\x73\xc2\xe1\xac\x93\x57\xc0\x8a\x0b\xf7\xed\x15\ \x30\x81\xa9\x90\xf9\x93\x76\x98\x5f\x24\xbe\x02\xd6\xed\x9c\x87\ \x18\xca\x3e\xe1\x83\xfe\xa2\x2a\xd3\xa1\x58\xb5\xcd\x50\xb7\x1d\ \x56\xb1\x7c\xd3\x2d\xae\x84\x50\xae\x84\xe0\xb5\x87\xf6\xfb\xcd\ \xe2\x3d\xde\xe3\x65\x81\x30\xb6\x07\xe4\x24\x63\x60\xe8\xe0\x0e\ \x8e\xa8\x17\x10\x54\x6a\xb2\x59\x32\x3e\x54\x6d\xc8\x65\x3a\x16\ \x87\xe0\x70\x61\x5d\x74\xdc\x11\x82\x83\x3e\xf6\xc2\x21\xf0\x2b\ \x4c\x45\xdf\xbb\x68\x8b\x99\xf2\x17\xb8\xf0\x0e\x4e\x89\x57\x61\ \xf1\x11\x72\x20\x58\xd4\x45\xe2\xfa\x40\xa0\x93\x70\x86\xbb\xe3\ \xbb\x3e\x41\x1d\x21\xa9\xb3\x93\x08\x44\xdc\xed\xdd\x09\xcd\x5d\ \xb1\xdc\x83\x4a\x48\x05\x51\x06\x63\x39\x75\xd3\xf6\xb3\xdb\x6e\ \x00\xce\x54\x66\x81\x93\x25\xe3\x7a\xfe\x66\x5e\x56\x6c\x45\x35\ \x9e\x48\xb6\x74\x63\xec\x35\x54\x16\xd0\x86\x81\xd6\x06\x28\xa0\ \xe3\xee\x5d\x54\x3a\x62\x54\x58\x53\x83\x48\xa5\xe1\xec\x20\x46\ \xbe\x59\x3d\xbc\x88\x46\x66\xf6\x5c\x3d\x80\x10\xc0\x84\x01\x51\ \x6d\x0f\xde\xb3\x82\x76\xb8\xe6\x24\x6e\x9f\x21\xca\x93\x57\x9d\ \x4c\x4b\xbe\x8d\x4b\xbb\xa4\xaf\x04\x4b\x62\xcd\x50\x64\x75\x3f\ \x7b\x50\xe7\x75\x66\x67\x08\x86\xdb\x54\x8c\xd6\x9c\xbe\x67\x7b\ \xee\x06\x11\xe8\x69\x16\xd0\xe7\x56\x9c\xc5\x7e\x66\xcb\x56\xcc\ \xd9\x55\x10\x81\x55\x20\xe8\x7d\x38\xe8\xa0\xd0\x20\x85\xfe\xd9\ \x18\x46\x05\x62\x26\x5f\xd5\xf3\x1b\x84\xa3\x21\x76\x10\x1e\x03\ \x44\x85\x36\x6b\xc9\x7d\xe5\x21\x4f\x25\x87\x59\x98\x85\x76\xa8\ \xc0\x54\xcd\x5f\x45\x40\x27\x1b\x9b\x11\xd0\x94\xb1\x87\xdd\xc2\ \x19\x0b\xb1\x05\x9a\xbc\x8f\x65\x60\xf8\x03\x82\x3d\x48\x85\xbd\ \xc6\xdb\x50\xd6\x62\x03\xb6\x07\x54\x6c\xd3\xdf\x4c\xc5\x30\x8e\ \x82\x4d\x90\x85\x03\x38\x59\x28\x20\x63\x12\x30\x00\x7d\x96\x45\ \x89\x82\x4e\x26\x74\xe3\xc3\x25\xe8\x81\x1e\x82\x9d\x5d\x61\xc6\ \xd5\x45\xeb\x64\x54\x68\xa2\x6a\xfe\x1a\x36\x5f\x5d\x9b\x21\x86\ \x8b\xa6\x28\x91\x92\x68\x84\x01\xf9\x8d\x0b\x1f\x29\x38\x58\x62\ \xe4\x90\x2e\x85\xc6\x33\x9a\x9a\xc0\xaf\xfe\x34\x8d\x27\x86\xe2\ \x46\x84\x03\x5c\xaa\x9d\x64\x75\xbf\x33\xf2\x83\x99\x1e\xe5\xbb\ \xbd\xdb\x30\xee\x86\x35\x4d\xc2\xe1\x94\xe0\x7a\xde\x04\xc1\x90\ \x05\x59\xd8\x07\x28\x10\xe3\x57\x36\x80\x34\x56\xe3\x5b\xec\x2a\ \x54\x18\x54\x76\xd0\xd6\xa4\x2e\x68\x11\x18\x68\x15\x3e\x00\x90\ \xec\x65\x17\xf5\xe5\x68\x72\xe8\x87\x86\x15\xb8\x51\x0f\x0e\xb8\ \x1b\x4b\xf1\x84\xef\x64\x8b\xf4\xe5\x51\xb1\x9e\x85\x6a\x98\x85\ \xb6\x23\x07\xd9\xfe\x82\xaf\xb5\x89\x5a\xd5\x0f\x9a\x91\x39\xd2\ \xbb\x5f\x19\xe9\x6d\xda\x79\x3f\xdb\xf1\x8d\xbc\x8e\x82\x75\x26\ \xde\xe4\x46\x59\xe2\x65\x53\xc9\xab\x9d\xc2\xee\x06\xc4\x26\x18\ \xe8\xde\x87\xe9\x36\xe8\x6e\x30\x00\x58\xc6\xee\x58\x9c\xb2\xfb\ \xa3\xa6\x3f\x35\x00\xa4\xce\x65\x5d\x16\x6f\x75\x68\x57\x9e\x65\ \xe1\x16\x3e\x9b\xf5\x66\xef\x61\xdc\xf0\x6a\xf0\x84\x18\x66\x40\ \x48\xf2\x2b\xef\x81\x8b\x59\xf8\x86\x0f\x20\x87\x3f\xe9\xef\x6b\ \x56\x04\x72\x00\x58\x41\x21\xfe\xaf\x4b\xf2\xbb\x76\xe4\x04\x94\ \xc6\x89\xce\xba\xb1\x4f\x4c\x9a\x17\x00\x01\x9e\xfb\xa2\x06\xa2\ \x89\x17\x18\xee\x28\xa8\x04\xe0\x9c\xf0\x03\x8e\x56\x0e\x55\xbf\ \x93\xa5\x84\xe8\xde\x70\x2f\x50\x07\x0f\x9f\xee\xc4\x7d\x6c\xec\ \x9e\xec\xe7\xbc\x3f\x29\x23\x4c\x71\x55\xf1\xf1\xb6\x0e\x6d\xd8\ \x6c\xee\x4d\x54\x3b\x9a\xea\xd0\xae\xf1\xd4\x3b\xa1\x3f\x10\x43\ \x31\x7c\x66\x52\x51\x8f\x84\x5b\x87\x99\x24\x15\x3a\xf0\x89\x22\ \x77\x64\x24\x5f\x82\xa2\x69\xaa\x7e\xea\x27\x7f\x02\xa0\x1f\xb3\ \x2f\x4b\x23\x1d\x37\x90\x11\x2b\xe7\x39\xdd\x5c\x37\x76\x93\xa0\ \xbc\x0e\x65\xdf\xec\xcd\x1e\x50\xc8\xf5\x6b\x56\xf7\x63\xbf\x6e\ \xa0\x04\x4a\x38\xec\x34\x97\xee\x1e\x60\x01\x28\xa0\x6e\xc6\xee\ \x81\x57\xd8\xe7\xb6\xcc\xee\xfb\xbb\x45\x9c\x5d\x07\x14\x66\x71\ \x24\x39\x00\x3d\x8f\xf1\x14\x16\x0e\x54\x18\xdf\x40\x67\xa1\x21\ \x60\x38\x95\xea\xab\xb6\x50\xc3\x6a\x20\xf4\xef\xa8\x86\x0f\xa0\ \x00\x09\x81\xf4\xd4\xdd\x00\x80\x95\xaa\x8f\x10\x09\x4c\xf7\xa7\ \x82\x32\x37\xd4\x38\x1a\x62\x2b\x9a\x27\xf7\x2f\xa4\xd9\x2f\x50\ \xa7\xeb\x2f\x22\xcb\x91\xfe\x9d\xf0\x0d\x25\xec\x0a\x27\x48\x20\ \x70\xd6\xe2\x4d\xc2\x6e\xa0\xf5\x1e\x20\x81\x49\xc0\xf5\xa1\x90\ \xd6\x10\x77\xe3\x34\x7e\x4e\x8b\x8c\x4e\x29\x43\x05\xe9\x4d\x6a\ \xf1\x86\x78\x6d\x70\xf1\x9d\xe5\xde\x14\x5e\xe1\xd3\x73\xf6\x40\ \x12\x07\xbe\x0a\x0f\x6a\xf7\x8e\xe6\xfa\x9e\xc0\xc9\xef\xf5\xf8\ \x93\x59\xb8\x66\x6a\x3e\x2d\x0a\x69\xdd\xdc\xfe\x13\xc4\xbb\xb1\ \xd0\x91\x10\x46\x9c\x01\x1e\x88\x10\x4e\x90\x79\xd2\x9c\x6b\x78\ \xc7\xf2\x0f\x85\xbc\xe1\x7d\x56\x67\xc5\x77\xc1\xee\x81\x93\x4d\ \xc2\x99\x68\x80\x0d\x97\x05\x28\x20\x01\x12\xe8\x81\x49\x90\x56\ \x16\x70\xfa\x10\x7f\x73\x84\xcf\x6e\x29\x13\x1b\x14\x3f\x54\xa4\ \xbe\x6c\xeb\xa0\xf8\x9e\x55\xe1\x66\xcf\xf8\x40\x82\x1b\xb8\x18\ \x15\x2f\xe0\x80\x1c\x87\x26\xe6\xc2\xa1\xfc\x16\x0c\x72\x98\x81\ \x6e\x3f\xd8\x6a\xa0\x66\xd2\x2c\x20\x80\x6a\xbb\xa9\x20\xaf\x99\ \x1f\x89\x31\xe0\x04\x26\x20\x05\xd2\xb9\x08\xd3\x31\x9d\xd1\x49\ \x28\x5c\xba\xf2\x9e\x5b\x37\xb2\x4c\xc8\x37\xed\x86\x49\xf8\xf9\ \xe5\x06\x02\x12\xa0\xd3\x3d\xb0\x75\x0f\x05\x82\x9a\x70\x03\xa4\ \x07\x78\x12\x00\x86\xfe\x1e\x00\x06\xa9\x7f\x85\xcf\xff\xfc\x16\ \x4d\x63\xe2\x21\x1e\x89\x6a\x78\x9c\xd5\xfa\x62\xcf\xf3\xae\x57\ \xe1\xe0\x00\xf4\xb0\x2f\x0b\x71\x28\x7b\x2f\x38\x80\x1c\xd7\xce\ \x37\x93\x0b\xbb\x10\x0c\x0e\x50\x03\x90\xce\x5f\x0e\x08\xf7\xf3\ \x3a\x9a\xc2\xeb\x46\x08\x61\xc4\xa4\x7c\xb1\x9e\x29\x9d\x1b\xbc\ \x08\x67\xcb\x8d\x76\x59\x20\xc4\x87\x3f\x53\x4c\x48\xe4\xde\x03\ \xc7\xaf\x53\x82\x04\x06\xe3\x66\x81\xf7\x83\x9a\xa3\xf7\x02\xe9\ \x06\x06\x60\x58\xfa\xf3\xbf\x03\x12\x78\x05\xf5\xf7\x9a\xcf\xe7\ \x75\x2a\x54\x78\xd4\x77\x78\xa4\x5e\x7d\xeb\x38\x00\x15\x66\x61\ \x71\xd8\xec\xd8\x97\xfd\xb7\x3a\xa1\xb3\x07\x88\x53\x6a\x06\x9e\ \x3a\x55\x48\x17\x9d\x84\x74\xfe\x70\xf0\x24\xcf\x93\x97\x88\x12\ \x27\x52\xac\xd6\xce\xc8\xc0\x19\x56\x34\x5a\x61\xc2\x64\x09\x13\ \x79\x6a\xe4\xcd\xe0\xc3\x87\xc9\x98\x7a\x63\x4e\xd6\x73\x86\xb2\ \x06\xb6\x7a\xf5\xbe\x8c\x01\x69\xc5\x0a\xc6\x81\x70\x5e\x00\x71\ \xe3\xc7\x8f\x1b\x20\x40\x5e\xf0\xfc\x69\x6f\x4f\xb7\xa4\x7b\x26\ \xed\xe9\xe1\x87\xc4\x53\x60\xdd\x2a\xed\xeb\x46\xe2\x85\x11\x23\ \x3c\xa5\xca\x92\xfe\xb5\xa9\x07\x09\x60\x24\xc6\xde\xb9\x83\xe2\ \x0e\x89\x57\x69\x49\x18\x78\xd5\xd6\x2c\x2a\x14\x28\xf4\xd0\x8d\ \xcb\xce\xc0\x3a\x11\x22\x56\x89\xd0\xd6\x57\x9b\xb6\x21\x81\x45\ \xbc\x12\x21\xce\xaf\xb8\x21\xff\x16\x33\x6e\xec\xf8\x31\xe4\xc8\ \x92\x27\x53\xde\x87\x6a\x20\xe6\x82\x85\x18\xd2\xd1\xe5\xc9\x13\ \xa7\x19\x6a\xac\x54\xa3\x68\x5a\xe2\x2a\x3e\x39\x4b\x5a\x39\x39\ \x66\x0c\x13\xd1\x23\x4b\xf2\x49\xc9\xc3\x24\x1f\x99\xb5\xb1\xc5\ \xa4\xb9\xe4\x37\x08\x2b\x70\xb2\x1a\xd9\xf9\xc2\x27\x50\xa1\x42\ \x7f\x36\x3d\x9a\x34\x29\x53\x60\xcc\xa7\x3e\xf7\x03\x47\x4d\x56\ \x16\x5d\xbd\x82\x45\x2b\xb6\x2c\x78\xf0\xaf\x5e\x35\x60\xd7\xe0\ \x15\xbb\x3b\xec\x50\xa0\xaa\xcb\xee\xae\x81\xbd\x7a\xe7\xff\x1d\ \xb2\x6f\x08\xe1\x57\xe2\x0c\x2b\xa6\xec\xff\x3f\x80\x01\x2e\x26\ \xce\x75\x04\x19\x44\x07\x07\x1c\xfc\xa1\x0b\x83\xba\x88\x66\x04\ \x07\xa7\x99\xb6\x8a\x27\x4c\xf0\x31\x43\x49\xb1\xcd\xc0\x04\x19\ \x5f\xcc\xb0\x9a\x3c\xb5\x91\x02\xdb\x85\x3c\xe8\xc6\x04\x36\x1d\ \x7e\xb1\x22\x70\x70\x58\xf1\xc2\x4e\x43\xf5\x84\xdc\x4f\x35\x02\ \xb3\x07\x8e\xfe\x4c\x41\xb7\x87\x74\x7e\x48\x45\x49\x37\x2c\x40\ \x75\x47\x81\x46\xb0\x10\x91\x3a\x50\xdc\xf1\xd4\x58\x24\x80\xe7\ \x24\x78\x0d\xdc\x41\x5e\x79\xea\xc5\xe5\x1e\x7c\xf1\xf1\xc5\x17\ \x0b\x7a\xdd\x77\x80\x3a\x7e\x15\xa6\x57\x7f\x02\x9a\x79\xa6\x99\ \xe2\xe8\x21\xd0\x29\x9e\xe8\xc2\xd0\x1f\x0a\x55\x53\x0d\x1d\x85\ \xa8\xb1\x44\x69\x12\x46\xb4\xca\x12\x9e\xb4\x43\x07\x05\xed\xb4\ \x43\x8a\x15\x6a\xd4\x26\xdb\x6c\x33\xf0\x30\xe2\x6d\x9c\xf0\x61\ \xe2\x18\x8a\x92\x41\x86\x4a\x34\xc5\xb1\x84\x1b\x20\x80\x70\x9c\ \x4f\x71\xf8\xb1\x1c\x8d\x46\x1d\x85\x63\x37\x3c\x3e\xe5\xa3\x1f\ \x48\x05\x39\x14\x51\x39\x19\xd1\x4d\x57\x50\xf8\xb1\x64\x93\x77\ \x08\x55\x56\x5a\x65\xbd\xa2\x5e\x59\xef\xa1\xb0\x1e\x7b\xef\xc1\ \x27\x9f\x5f\x22\xc4\xf7\xd7\x60\x84\x91\x59\x26\x9a\xcd\x3a\x2b\ \x99\x38\x06\xad\xa3\x50\x42\x0c\xcd\x59\x8d\x2e\x37\x45\xa8\xe7\ \x2a\xba\xb4\x43\xc1\x1f\xdf\x7c\x33\x0b\xb9\x63\xc8\x63\xc4\xb9\ \x98\xd1\xf6\xda\x6d\x33\x38\x6a\xe2\x6d\x4c\xc8\xb4\x22\x8b\xbf\ \xb9\xe1\xc6\x0b\x20\x18\xf5\x13\x10\x9f\xfa\x8b\x6a\x58\x7b\xb0\ \xd0\x83\xfe\x3d\x3d\xde\xd8\xcd\x24\xab\x0e\xa7\x15\x1c\x3b\x35\ \xb0\x89\x2c\x50\x2c\xd7\x24\x09\x40\xa0\x00\x44\x78\x19\xbf\x77\ \x47\x79\x72\xa1\xb2\xde\x5d\xeb\x18\x10\x9f\x36\x7c\xd1\x07\x85\ \x36\x28\xe3\xa7\x57\x62\xcf\xba\xfc\xb2\x63\x87\xfd\x31\x73\x9c\ \x08\x26\x98\x20\x1d\x9e\x58\xa1\x4b\x9e\x13\x8e\xd1\xce\x1f\xe4\ \xcc\x72\x6d\x15\xd5\xcc\xc2\x04\x66\x03\xc9\xd3\x1a\x0f\x63\x34\ \xea\x6e\x6d\xf5\x84\x24\xef\x4c\x96\x7e\xe1\x07\xa6\x99\xf6\xe4\ \x87\x3d\xf6\x7c\xaa\x5c\xbf\x5c\x1b\x8c\x23\x54\xd2\xb1\x90\x14\ \x0b\x9f\xbe\x30\x50\x71\x40\x90\x50\x49\x57\x94\x54\xec\xf6\xa7\ \xe0\x61\x7c\xd6\x59\xbb\x6e\x2c\x65\x03\xbf\xfa\xfd\xde\xc8\xc6\ \xee\x75\x00\x60\x5d\xf6\x25\x82\xca\x7a\x15\xc6\x2c\xcc\x8d\x3f\ \xab\x0e\xce\x09\x29\xa8\xd0\x3a\x9f\x59\xb1\xce\xb6\x12\x55\xc3\ \xa7\x2e\x1c\xcc\xf2\xc7\x2c\xdf\x54\x53\xc5\x07\x11\xb5\x23\x12\ \xdb\x25\xf1\xb0\xfa\x4a\x9c\x90\x84\xd2\x4a\x8a\xca\xa4\x52\x4d\ \xbf\x5d\x7a\x6f\x50\x7e\xc4\xb1\x87\xd7\x5f\xf7\x4b\x42\xef\xcc\ \xb1\x80\x63\x0f\xaa\x4a\x37\xd4\x70\x6c\x03\x01\xab\x17\xea\x4c\ \x62\xfe\xeb\xa7\x50\x61\x1c\x1e\xde\xba\x4a\x09\xf2\x7b\x6e\x08\ \x3b\xf2\x96\x22\x1c\x40\xb8\x5f\x80\xcd\x57\x2c\xcb\x8e\x9b\xef\ \xf2\x10\xea\x2c\xa8\xcb\x3a\x33\x2b\xe4\x19\x08\x9f\xb1\x3f\xf3\ \x2a\xe4\x90\xd3\xce\x3a\x42\x93\x43\x07\x39\xdf\x94\x1e\xd1\x07\ \x90\xa6\x2e\x93\xac\x6e\x75\xa1\x79\xd7\x6b\xf8\x20\x0f\xaa\xd5\ \x63\x09\x35\xf9\xc2\x6f\x96\x00\x94\x1a\xed\x6e\x0f\x71\x00\xdb\ \xef\x6c\x94\x94\xe2\x21\x8c\x05\x2c\x00\x42\xc3\x1a\x46\x1c\x23\ \x00\x61\x3b\x94\x90\x0e\x78\x66\x85\xab\x8c\x9d\x45\x3d\x55\xc2\ \xde\x7b\x60\x80\x17\xbd\xf8\xe5\x7b\xe0\x23\x16\x60\x0e\x43\x98\ \x96\x9d\xaf\x87\xcd\x1a\x82\x01\x18\x44\xad\xca\xb9\xc9\x5b\x15\ \x02\x49\xfc\xda\x21\x34\x0e\x90\x63\x1d\x14\xe0\x40\xcf\x3e\x70\ \x91\x01\x9e\x64\x75\x26\x71\x57\x88\x98\xb0\x3a\x77\x99\x88\x76\ \x11\x64\x82\x1b\x30\x85\xb5\x9f\xc4\xa1\x6b\xfc\x52\x8e\xbf\xfa\ \x85\x94\x4a\x74\xc3\x29\xa7\x22\x4a\xc3\x78\x22\x14\x16\x4c\xa2\ \x2b\x9b\x00\x86\x58\x6a\x85\x96\x3d\xb6\x70\x4a\xbb\x22\x8f\x59\ \x40\xf6\xab\xbb\xac\xc2\x00\x7c\x01\x1f\xf8\x4c\x06\x18\x94\x69\ \xfe\x63\x3f\x22\x60\x9c\x0f\x23\x09\x20\xfc\xa0\xe2\x33\x85\xf8\ \xcc\x67\xa6\xd5\x19\xf6\xb5\x43\x17\x3f\x6b\xdf\x37\x3c\xf7\x0d\ \x72\xf4\xac\x1d\x49\x33\x02\x6d\xac\xc8\x07\xd7\xc9\x03\x81\xb7\ \x89\x9a\x4c\x60\x03\x1b\x26\x68\x4a\x8c\x71\xb8\x65\x19\x3d\x15\ \x14\x39\x86\x4d\x2a\x51\x90\x45\x14\x3e\x08\x23\x9e\x54\xec\x05\ \x7e\xe8\x41\x37\x20\xb6\x89\x4d\x50\x62\x12\x61\xc1\x23\xc5\xa0\ \x64\x96\xb3\xa4\xa5\x01\x06\xb8\xde\xaf\xdc\xf0\xb1\x61\x75\xe9\ \x7b\xab\x28\x99\xf8\xc2\x07\x18\xc1\x34\x12\x92\x92\x3c\xa7\x7f\ \xc4\x51\x88\x42\x14\xa4\x88\x45\x64\xd0\x9f\xec\xf7\x07\x0a\x88\ \xab\x34\xd5\x10\x5d\x44\x66\x91\x93\x8c\x10\x90\x09\xbb\x58\x25\ \x16\x43\xd4\x34\x1e\x58\x28\x25\x8c\x42\x09\x12\x41\x10\x41\xdd\ \xdd\xb2\x6b\x9e\x12\x0a\x2f\x53\x05\x31\x2f\xc8\x62\x1f\x6e\x18\ \x0e\x1c\xfc\x90\xb0\x49\x50\x62\x3b\xb1\x72\x26\x1e\x43\xaa\xc7\ \x8b\x99\x05\x2d\xd7\xdc\x18\xb0\x06\x69\x00\x18\xc8\xe7\x9b\x84\ \xe3\x0b\x38\x01\x03\x98\x7d\x04\xe6\x3e\xe6\x44\x27\x4e\x25\x23\ \x82\x3a\xb8\xa9\x72\x20\x38\x85\x15\xe2\x87\x10\x3a\xe0\x73\xfe\ \x4e\x00\xec\x99\x27\x92\x16\x22\x02\x9a\xe4\x80\x33\x68\xe5\xa3\ \x9c\xf6\xcf\x7e\x90\x62\x44\xaf\x71\x1a\x13\x6e\xa2\xd0\x30\x8a\ \x71\x09\xb8\xdc\xe5\x72\x80\x51\x89\x5f\x52\x34\x0a\x06\x00\x42\ \xdb\x28\xa1\x0e\x8f\xca\x42\x1d\x94\xe8\x81\x58\x44\x0a\x4d\xf0\ \x9c\xc5\x62\x68\x29\xcf\x35\x03\xa9\x07\x90\x19\xd2\x90\x7b\xd1\ \x06\xf8\x00\x2b\x58\xc0\x10\x6e\x08\x07\x18\xc2\x4d\x73\xaa\xd8\ \xc7\x88\x60\x1d\xed\xab\xdc\x0c\x2e\xa9\xc9\x85\xd8\x73\x4e\x43\ \x93\x08\x05\xf6\x69\xa8\x0c\x35\x8a\x13\x07\x6c\xa5\x16\xb1\x1a\ \x55\xab\x5e\x35\xab\xb4\x04\x4e\x04\xc3\x88\xb5\x7b\xc9\x08\x08\ \x71\xe8\x46\x47\xbb\xb2\x8a\xb4\xdd\xaa\xa3\x6b\xdd\x04\x14\x72\ \x3b\x09\xb8\x8a\xf4\x99\xd2\xb4\x15\x49\xcf\xd3\x80\xf2\x00\x6b\ \xaf\xec\x90\xa1\x5e\x60\x6a\xc3\x3f\x10\xee\x7b\x32\x7d\x6e\x62\ \x17\x2b\xdd\xc5\x20\x56\x1d\xd5\xe0\x40\xce\xdc\xc4\x81\x50\x7a\ \x6b\xbb\xe2\x9a\x05\x51\xf3\xa9\x59\x0c\xfd\xd3\x80\x0a\xf4\x6c\ \x2b\x39\x11\x5a\x1e\x94\x77\x0c\x55\xb5\xea\x6d\x5a\x03\x12\x8f\ \x80\x71\x23\x41\xbd\x17\x08\x82\xb2\x1c\xae\xb1\x00\x06\xfe\x41\ \x62\x41\x03\x48\xd0\x80\x1e\xec\x83\x99\x94\x80\xc2\x24\x12\xdc\ \x83\xdd\x86\x74\xc1\x70\xfd\xed\xc5\xfa\x98\x1e\x5f\x05\x8b\x90\ \x7f\x05\xac\x0d\x6d\xf8\x5c\x1a\x3e\x32\xba\xd3\x9d\x6e\xfa\xe6\ \xb4\x8e\x37\x5d\x2b\x4e\xb8\xf0\xdc\xe7\x28\x40\x01\x2f\x7c\x40\ \x17\x4a\x75\x94\x16\x2d\xc4\xca\x80\x3e\x8a\xaa\xaf\x6c\x5a\x55\ \xc7\xd0\x0f\x12\x99\xe4\x23\x3e\xb6\x10\x86\xec\x9b\x5f\x4d\x6d\ \x4d\x77\x30\x58\x45\x37\x60\x90\xb6\x06\x48\x65\x12\x08\x4e\x30\ \x94\x19\x0c\x8c\x04\x23\x18\x18\x19\xb3\x98\x5c\xf0\x26\xc8\x41\ \xb2\xe3\xc2\xce\xcd\xf0\x0d\xc9\xd7\xe1\x0f\x93\x79\x32\x43\x98\ \x13\xe8\xf2\x64\x34\xef\x8e\xab\x93\x14\x20\x07\xa2\x48\x82\x1b\ \xf6\xae\xb2\x95\xf2\xb8\x33\x02\x9d\xe6\xd9\x47\xc1\xd7\x9f\x17\ \x72\x4d\xd3\x2c\xb4\x11\x0c\x65\x65\xc8\x20\x98\x91\x1f\x60\xa0\ \xe4\xd9\x02\xb8\x5f\x77\x00\x06\x1d\x11\x06\xe5\x1e\x50\x9a\xa3\ \x94\x68\xa6\x95\xc9\x22\x17\x20\xe8\x41\x2e\xea\xe1\xf2\xaf\x14\ \xfd\x4d\x0c\x83\xd9\xb9\xe1\x3b\x4c\x62\x3c\x5c\xe6\x0f\x0f\x41\ \x16\x74\xfa\x43\xcf\x22\x32\xa7\x0f\x54\x81\x1c\x63\xfe\x28\x94\ \xba\x76\x61\x21\x2b\xa2\xf7\xce\xe9\xe5\x41\x3f\xfa\x71\x1b\xd0\ \x36\x6d\xc7\xaf\xac\x62\xd3\x44\xeb\x28\x05\xaa\xa1\x24\x4b\xd0\ \x14\x1c\x70\xe7\x86\x38\x28\xd9\x1e\x69\xbb\xd8\x58\x20\x1d\x65\ \x28\x8b\x83\x12\xdd\x16\xc7\x24\xa0\xe9\xa4\x8b\xe9\x01\xcb\x72\ \x11\xd6\x7b\x58\x50\xac\x55\x94\x9a\xdd\xa6\x96\xe9\x61\x54\xbd\ \x6a\x32\xab\x83\x41\xb1\x36\x0d\x05\xe2\xcc\x87\x5d\xbc\xf2\x9f\ \xbd\xf6\x75\x54\x9d\x76\xde\x81\x3a\xed\xd8\xc9\x7e\x8d\x85\x70\ \x73\xa1\xa5\xa1\x24\xab\x2e\xd2\x6a\x7e\xa9\x0d\x83\x06\x60\xac\ \x01\x4f\x61\x01\x30\x2a\xed\xe4\x03\x7f\x5b\xb7\x73\x25\x77\xa7\ \x4b\x7a\x17\xf8\x94\x4c\x04\x2c\x3d\xc0\x3e\x6c\xe8\xd2\xef\x71\ \xb8\x2f\x88\x9d\x37\xcc\x21\x33\x04\x71\xac\xa3\x1a\xff\x3b\xcd\ \x14\xb1\xa3\xde\xa6\xee\xa2\xe7\xff\x6e\x25\x0f\x42\x11\xec\x5d\ \xb8\xae\xc6\xc1\x16\x38\x01\x07\xaa\xc5\x9e\xab\x52\xd7\x04\x1d\ \x74\x90\x8b\x93\xdf\x44\x7b\x4a\x85\xcf\xc4\xf8\x82\xa1\x00\x6e\ \x2a\x5f\x7a\xb7\x50\xda\x74\xa7\x5b\x38\x32\x0f\xc2\xb4\x4b\x2b\ \xf7\x66\x86\x0b\x39\x1f\x1e\xc6\xbc\xed\x8e\x91\xfe\xc5\x69\x36\ \x97\x2d\xcc\x2c\x7b\xd9\x3d\xaf\x33\x2b\x39\xc1\x6f\x52\x08\x9b\ \x07\xae\xdb\x45\xb0\xab\x6a\x45\x7e\x23\x9d\x13\x05\x0c\x36\x7b\ \x59\xb7\xca\xd6\x5c\x08\x23\xa8\x54\x68\x1c\xda\xa1\xe8\x9f\x2c\ \x09\x2d\x03\x5b\xb0\x82\x27\xd1\xed\x21\x78\xbd\x2c\xe4\xce\xf2\ \x94\xba\x64\xb8\x6f\x22\x59\x1b\x29\x3f\x80\xbb\x55\x6e\xac\x91\ \x05\xc6\xed\xae\x6f\x0c\x62\x4d\xd3\x0e\x44\x8d\x64\xdf\xab\xf4\ \x6c\xcf\x89\xee\xd9\xdd\x03\x9b\x51\x8d\xe2\x43\x28\xde\xcb\x5e\ \x7e\x1b\x7b\x95\x49\x0f\x76\x28\x80\xdd\x8f\x5d\x3c\xf5\x51\x0a\ \x14\xc9\xd2\x82\x2a\x41\x45\x5b\xbc\x6f\xb4\xca\x23\x1e\xb3\x7e\ \xe0\x70\x8f\xdb\x62\x61\x2f\x8b\x01\x44\x5f\xfa\x6e\x08\xd6\x9b\ \xa4\xf6\x26\x5e\x46\xf6\xf2\xd7\xb3\xff\x1f\xad\xbe\x67\x35\xc8\ \xa1\xd9\x10\xf9\x7b\xcf\x2b\xb8\x3d\x7a\xdf\xc5\x77\x61\xfb\xbb\ \xc6\x7c\x6f\x2f\xe2\x95\xd7\xea\x08\x1d\x29\x24\x5f\xf2\xb1\x52\ \x53\x01\x1c\x86\x68\x84\x03\x8d\x11\xe5\xd1\xd5\xa3\x61\x9e\x38\ \x3c\x19\x94\x98\x5b\x49\xbd\x82\xba\x91\xdf\x96\xa8\x9c\x4b\xa5\ \xde\x2a\x14\x92\x01\xbc\x07\xdb\xb5\xdf\xeb\xfe\xcd\xdc\x12\xb4\ \x03\xae\x29\x8d\xa2\x0c\x1f\x1f\xdc\x1f\x27\xac\xc0\xee\xb9\x8e\ \xde\x2d\x4a\xc1\xb1\xd7\x0c\x56\xd5\xf2\x11\x5f\xdf\xad\x4e\xb0\ \x05\x5e\x0f\x26\x1f\x9e\x11\xdd\x53\x2d\x95\xaf\x6d\xc8\xb3\x71\ \x0a\x0c\xb8\xc1\x70\x81\xc7\x94\xed\x16\xe6\x7d\xc7\x34\x95\x14\ \xf8\x4d\x02\x5f\x68\xe0\x01\xc8\x02\x07\xba\xdb\x07\x16\xd2\x3a\ \xb0\x03\x2a\xb4\x1e\x09\x86\xa1\x38\x8c\x97\xea\x0c\x9f\xcf\xed\ \x99\x67\x41\x0d\xb0\xad\x61\xee\xed\x5d\x3d\xf0\xdd\x6d\xf4\xe0\ \x6d\x00\x5e\x0f\x06\x5e\x55\x85\x82\x0c\x3a\x0a\x2b\x85\xc8\x1e\ \xb6\xc6\x87\x14\x87\x1b\x4c\x9c\x1f\x34\x00\x0c\x3c\x9a\x07\xa9\ \x05\x09\x2c\x58\x1e\x41\xe0\xae\x84\x9f\x08\x90\x9d\xbb\x29\x02\ \x16\x7a\xd3\x16\xce\x96\xb0\xe8\x02\x3b\xac\x5f\x18\x92\xa0\x38\ \xbc\x02\x3f\x25\x5d\x1b\xee\x9e\xee\x39\x0a\xbf\x15\x90\x29\x2a\ \x1f\x1c\xfa\x5f\x28\xac\x12\x0f\xea\xd8\xa2\x1c\xc1\x11\x90\x82\ \xdf\xed\x19\xd1\xe1\x19\x7a\x41\x0d\x1f\x60\x86\x15\x84\x11\x0c\ \xb4\xc3\x70\x0d\x97\x01\x00\xc3\xae\x00\x83\x08\x4c\x82\x01\x38\ \xc9\xd7\xb1\x45\xf8\x29\x99\x0c\xb1\xc0\xfe\x15\x7e\x0f\x07\x1c\ \x00\x39\x7c\xe0\x91\x71\x21\x0c\xe8\x42\x03\xb0\x80\x26\x6e\x22\ \x09\x0e\x41\x0f\xa0\x92\x49\xf0\xdb\x3f\x11\x9d\xf1\xe9\xde\x2a\ \x31\xdd\x29\x96\x62\x01\x11\x10\x55\xc9\xa2\xde\x95\x22\x01\x86\ \x81\x33\x84\x41\x3f\xe4\xa1\x0b\xa2\xa1\xbb\xe8\x5d\x68\x9c\xcb\ \xd2\x80\x80\xe4\xd9\x8b\xf6\x0c\x97\x5a\x78\xd0\x23\x42\xe1\x59\ \x40\xda\xc8\xc8\x50\x35\x1e\x40\x35\x8c\x03\xea\xd5\xcf\x2a\xb4\ \x03\x3b\xb4\xc3\x2a\xc0\xc0\x71\xbd\xc7\x36\x72\xe3\x26\x36\x00\ \x6e\xf4\x9f\xfd\xe1\xdf\xbe\x99\x22\xe2\xcd\x61\x53\x11\x10\x0e\ \x26\x9e\x16\xf5\x5e\x18\x90\x41\x18\x84\x41\x67\x9d\x61\x2b\xd5\ \x5f\x0c\xc2\x98\x47\xfc\x0c\xa6\x78\xc2\xbd\xac\x87\x35\x79\xd0\ \x35\xfd\xe2\x59\x64\xe3\x2a\x0c\x97\xa8\xb1\x9b\x43\x7e\xe0\x34\ \x92\xc3\x35\x2e\xc1\x91\x09\xca\x91\x69\xa3\x46\x3e\xa5\xfb\xb1\ \x40\x47\xde\xde\xbe\xcd\x64\x79\x85\x82\x8e\x05\xe0\xee\x19\xdf\ \xa2\x84\x81\x2c\x96\x22\xbf\x05\x1f\x4b\x7a\xa5\xb0\xc1\xe0\xfd\ \xdd\x63\xee\xed\x1e\x0c\xb2\xe3\x55\xb5\x43\x9f\xb8\x01\x4e\xe6\ \x17\x21\xae\xd4\x4a\x11\x22\x0a\x08\xfe\xa5\xa2\x59\x24\x45\xda\ \x8f\xfd\x54\x24\x0c\xdc\x8f\xa0\xb8\x81\xa0\x3c\x24\x39\x1c\x16\ \x54\x42\x25\x62\x81\xc0\x38\x92\x22\xfe\x91\x22\xb0\x65\x25\xe2\ \x3d\x5f\x68\xf4\x5c\x3f\xc8\x04\x9d\x99\x22\x29\xb4\x24\xdf\xc1\ \x61\x5a\x8e\xa2\x38\xe2\x9e\xee\x75\xe5\x66\xb6\xc3\x4a\x9c\x56\ \xc4\xe5\xe5\xc4\x2d\x41\x03\xf8\xa2\xa2\x4d\x64\x2f\xbe\xe6\x09\ \x0a\x8a\x6c\x0a\x4a\x9f\x9c\xa0\xfd\x48\x5e\x46\x1e\xe6\x26\x8a\ \x03\x0b\x24\x9c\xbf\x9d\x25\x2b\xf6\xde\xd1\x35\x0a\x9e\x99\x84\ \x7b\x79\x25\x7b\xa5\x24\x29\xb0\xe4\x3c\x7a\x25\xdf\x85\x42\xcf\ \xad\x00\xd1\xc1\xe0\x0c\x12\x5d\xee\xad\x52\xf0\x79\x65\x19\xf4\ \x43\x19\xfc\x13\x1f\x20\xd1\x6f\x08\x4a\x44\x4a\x1e\x79\x5e\x63\ \x1c\xac\x43\xfd\xb8\x25\x08\x3c\x9e\x7b\xc9\x66\x04\xf9\x23\x79\ \x42\x81\xbc\xe9\xa6\xeb\x41\xc1\x38\x92\x63\xff\xa1\xe2\x88\xf4\ \x5d\x1e\xd6\x98\x4c\x70\xe6\xa2\x90\xc1\x11\xcc\xa3\x33\xc4\xe2\ \x76\x42\xa7\x75\xfe\xd3\xfd\xb5\xe1\x2e\x24\xdf\xfd\x05\x5f\xb0\ \x6d\x67\x3f\x10\x50\x3b\x10\x54\x78\xe2\xc3\x51\x4e\xa3\x6c\xf6\ \xa2\x12\xb9\x65\x6c\x64\xc4\xa2\xfe\x24\x9f\x47\x08\x87\xf4\x8d\ \x81\x1b\xcc\x27\x7d\xba\x9e\x38\xc0\x40\x0b\xe2\x1e\x0c\xd2\xe1\ \xea\xe0\x60\xe1\x99\x44\x3b\xee\xa0\x16\x91\x41\x2d\xd4\x82\x80\ \xea\x28\xff\xed\x82\x74\x46\xa7\xe1\x85\x42\xf2\xb1\x97\xd0\xe1\ \x21\xe0\x1d\x68\x19\x84\x01\x74\x86\x02\x05\x84\x81\x69\x39\x90\ \x12\xf1\xe5\xfd\xa4\xa7\xa0\xd4\x84\x47\xe4\xa2\x40\x49\xd5\x2a\ \x8d\x84\x11\x58\xc1\x09\xe6\x66\x8a\x6a\xe4\x10\x48\x65\x48\xae\ \x92\x7b\xf5\x43\x68\x9d\xe4\xfd\x99\x64\x18\xd4\x43\x01\xed\x5d\ \x8e\x7a\x25\x4b\x7e\xa5\x8f\xd6\x29\xd1\x65\xe7\x73\x0a\x5d\x77\ \xae\x40\x28\x24\xa9\x90\x86\x41\x77\xee\xc2\x02\x78\xa5\x67\xad\ \x4e\x4d\x7e\x0b\x39\x04\xca\x6d\xba\x25\x1f\x30\xcd\x18\x94\x57\ \x3f\xac\xa2\xbf\xa1\xce\x0c\x2c\x81\x7c\x86\x69\x98\x8e\xe9\x18\ \x20\xe8\xa2\xc8\xa2\x16\xbd\x97\x3b\x92\x62\x65\x92\x01\x29\xb4\ \x21\x0f\x84\x41\x2d\x38\x43\x66\x1e\x01\x19\xf0\xdf\x0a\x2c\x68\ \xcf\x09\xdd\x11\xd0\xa3\x90\xf6\xc3\x02\x40\x27\x9f\xf6\x03\xa0\ \x1e\xe8\xab\x86\x42\x18\x90\xa3\x15\xa9\x0e\xc2\x45\x29\x69\x6e\ \xc4\x64\x16\x90\xd0\xf9\x9b\xfe\x10\xde\x59\xa5\xa2\x28\xa6\xb2\ \xdf\x10\xb0\xa8\xf2\x3d\x6a\xb1\x65\x66\xa9\xd2\x22\x55\x79\x25\ \xb0\x52\xd5\x9c\x1e\x41\x2d\x78\xa5\x90\xd6\xe9\x9f\x86\x01\x2c\ \x46\x6a\xad\x26\xab\xa0\x26\x69\x4b\x86\xc2\x8b\x86\xc2\x02\xe8\ \x5e\xfd\x79\xa7\xa2\x50\xc0\x38\x90\x03\x29\xe0\x9d\x67\xfd\x28\ \x1a\xb0\xeb\x3b\xfa\xdd\x9d\x81\x80\xb3\x3e\x2b\xb4\x8a\xc3\xa2\ \xec\xa0\x1d\x4e\xa8\x0c\xf6\x9e\xe0\x51\xe6\xaa\xb6\x69\xaa\x92\ \x25\xbb\x36\x68\x92\xd6\x42\x66\x46\x6a\x83\x46\x2a\xc6\x2e\x80\ \xae\xb6\xe4\x9e\xae\xc0\x02\x94\x01\x1e\x4a\xe7\xab\xee\x5b\xfd\ \xf1\x00\xbd\xe2\xc2\x4a\xa4\x57\xbe\xbe\xea\x59\xbe\xa0\x01\x8d\ \x06\x98\x0a\xac\x6e\x0e\xc1\x17\xf4\x9d\x8e\xe9\xd8\x57\x16\x2a\ \x55\x05\x5e\xf2\x65\x6b\x8e\x56\x15\xb9\x16\x20\xae\xae\x40\x19\ \xc0\x22\xad\xc6\x6a\xc6\xea\x6a\x92\x1e\x01\x2f\x28\x29\x0c\x66\ \xe6\x9e\x36\x68\xac\x0a\xe9\x8f\x52\x40\x2d\x8c\x03\x05\xcc\x61\ \xd0\xad\x00\x1a\xec\x02\x1a\xbc\x6a\xd7\x0a\x29\x74\x72\x82\x1a\ \xbc\x42\xc0\xca\x6c\xfb\x69\xaa\xf2\xed\x58\xdf\x11\xdf\xfe\xfd\ \xa0\xae\xc2\x62\x2c\x92\xfe\x6b\x93\xf2\x00\xcb\xea\x6a\x2d\xf0\ \x02\xc8\x22\xad\xad\x46\xe8\xd2\xe2\x02\x2f\xbc\x2b\x27\x84\xc2\ \xac\x5a\x6c\x91\x8a\x6d\xee\xf5\xc3\x11\xe0\x02\x2e\xb8\x24\xb0\ \xdd\x6a\x83\x7e\x2d\x1a\x7c\x6c\x4b\xde\x2a\x1e\x66\x22\xda\x66\ \xee\x10\x40\x01\xbb\xc8\xe1\x1a\xca\x21\xa7\x52\x15\xab\x7a\x25\ \xaa\xd6\xc2\xf2\xfd\x68\x18\xf0\xc2\xb7\x22\xa8\x90\x4a\x68\xdf\ \x92\x2b\x2f\x28\x83\x92\x36\x68\x4b\x2a\x69\xd0\x25\xa9\xb0\x19\ \xa0\xa0\x92\xeb\xb7\x26\x29\xee\x8a\x6d\x28\xa0\x41\x19\xf0\x02\ \x2f\xf8\x03\xa0\x0a\x69\x3b\x9c\x6d\xe6\x86\x21\x14\xc0\xc0\x49\ \xd6\x61\xa7\x0a\x5b\x48\x36\xac\x57\xca\x6d\xd4\xfa\xea\x11\x94\ \xc1\xbb\x86\x6d\x66\x02\x2a\x29\x2c\xed\xe2\xce\xaa\x90\x5a\x6b\ \xd0\x8d\x2b\x74\x96\xaf\xaf\xf2\x02\x2c\x96\x01\xfb\x1e\x6f\xf0\ \xba\xeb\x02\xf8\x03\xf1\x5a\xae\x90\x1a\xe6\xf2\x2e\xef\x10\xac\ \xc2\x8e\x11\x60\x3b\x82\x2b\xd1\xf1\x40\xd1\x0a\xa8\xd1\xca\x6d\ \x3f\x7c\xad\xbb\xb2\x2f\xeb\xf6\xe9\x4a\x92\x2e\xb9\x2e\xae\x32\ \x64\x2f\x9e\x9e\xeb\xa0\xbe\x2b\x1d\xf6\xa9\xb7\xea\xed\xc7\xfa\ \x83\xf6\xa2\x01\x07\xfe\x4f\xae\x3f\xc8\xaf\x3f\x84\x42\x3a\xec\ \x2b\x18\xde\x2f\xfe\x0e\x41\x1c\xec\x2c\xd0\xd2\xe3\x00\x92\x82\ \xb7\xe6\x28\x4b\x7e\xeb\xff\x49\x6d\xb8\xf6\xdc\xbe\x66\x2b\xe9\ \xca\x2d\xd3\x66\x6f\xb0\xad\x2b\x77\x02\xaa\xc5\xee\x6b\x92\x92\ \x82\x3f\xec\xb0\x06\x2f\xc0\x02\x70\x30\xd8\x22\xf1\x07\xfb\x43\ \x12\x73\x6d\x3f\x28\xaf\x09\x73\xe3\x10\xb4\x83\xb0\xd9\xe1\x92\ \xba\x70\x8e\xd6\xc2\xac\x8e\x2e\xc8\xa2\x01\x77\x22\xa8\xd7\x22\ \xed\x4a\x6e\x27\xaa\xe2\xc2\xac\x72\x6c\x9f\xe2\x20\xb9\xee\x6a\ \xf0\xee\x42\x92\x1a\x6f\x03\xb7\xa4\x13\x27\x71\x3a\x8c\x70\xfc\ \x36\x71\x12\x73\xf0\x2e\xdc\xc7\x14\xff\xf1\xe6\x6a\x11\xf2\xc5\ \xe8\x11\x8c\x43\x2d\x28\x83\x8e\xce\x31\x74\x86\xc1\x03\x47\x6c\ \xac\xde\x70\x4b\x06\x1b\x05\x28\xc3\x38\xa4\x71\xa4\xae\xad\xba\ \x2a\x29\xe4\xa6\x6f\x18\x18\x2f\xd3\xe6\x2d\x12\x73\x30\x1e\x83\ \x70\x12\x23\xf1\xad\xc6\xec\x1f\xa3\x2d\xe7\x22\x5f\x0f\xd7\x02\ \x02\x28\x43\x73\x0a\xe8\xf1\xfa\x83\x32\x20\x40\xa0\x02\xef\xf8\ \xc6\x22\x55\xb9\xf2\x11\xec\x20\x3c\x6e\xac\x92\xf6\xa9\x90\x16\ \x71\xd3\x96\x81\xfe\x3f\x1c\xb2\xde\xba\x6b\x07\x87\x02\xf1\x7e\ \xf0\x1e\x23\x71\xf2\xa6\xb2\x34\xff\x83\x38\xac\x42\xd0\x89\x2e\ \x2f\xd3\x63\xc3\xb2\xef\x21\xff\x2a\x9f\x6a\x6f\xad\x52\x2f\x23\ \x23\x80\x4b\x86\x65\xee\xf9\x2a\xc7\x0a\xaa\xad\xa6\xee\x03\xb3\ \x6f\xec\x36\xb2\xf6\x7a\x2d\x1a\x80\xb0\x13\x73\x70\x12\x87\x81\ \x14\x4f\xf3\x53\x6e\x6e\x3b\xb4\xe4\x16\x87\x81\x8e\xb5\x64\x17\ \xc7\x6e\x2d\x84\x6c\x18\x5f\xac\xf1\xca\xf2\x0b\xcb\x22\x00\xcf\ \x2e\x1c\x1b\x6d\xeb\x26\xa9\x32\x00\x2e\xa0\x1e\x41\x2d\x17\xaf\ \x30\x7b\xed\xf0\x16\x6f\x29\xc7\x6f\x19\xa0\xb2\x3e\x6b\x2e\x39\ \xcc\x23\x05\xe8\xf2\xaa\xe6\x2d\x32\x2f\x40\xaf\x6e\x67\xac\x66\ \xb2\x0e\x17\x2e\xdd\xaa\x34\x93\x96\xab\x30\x17\x2d\xd3\xd2\x71\ \x2d\xb7\x33\x02\x0b\xaa\xfc\x06\xae\x29\x7f\xb0\xfd\x86\xf4\x34\ \xe7\xef\x58\x76\x6f\x8e\x22\xc0\x2b\xd7\x42\xa0\x1e\xe9\x1b\x6f\ \x6c\x66\x72\xb1\xb7\x36\x6e\x18\x34\xe9\xec\x2e\x00\x44\xeb\xe9\ \xd2\xee\xaa\x45\x23\x40\xd3\x7e\xec\xf6\xd2\x72\xf1\xd6\x71\xfc\ \x8e\x43\x3e\x0b\xf5\xcc\xce\xe9\x54\xd7\x32\x52\x23\x40\x08\x4b\ \xa7\xbb\x8a\xfe\x6d\xdc\x0a\xb4\x32\x20\x32\x22\xd7\x6e\x18\xdc\ \x2a\x30\x07\x73\xfb\xc2\xa2\x06\x33\x72\x34\xb4\x33\xfd\x2e\x40\ \xec\x86\x35\x13\xfb\xc3\x26\x94\xb5\x59\x1f\xe6\xe6\x36\xf0\x21\ \x57\x41\x07\x90\xb3\xb8\x0a\xe9\xa0\xaa\x6f\xed\xaa\xf5\x5c\xe3\ \xc2\xf7\x02\xea\xa0\xda\xb5\xb9\x2a\xad\xdc\x92\x2b\x02\x54\x01\ \x02\x64\x2f\xe4\xc6\x6f\x33\xd7\xb1\x13\xfb\x71\x62\x9b\xf5\xe6\ \x96\x34\xaa\x76\x40\x15\x14\xf4\xd4\xba\x2b\xaa\xaa\x6f\xd1\xce\ \x35\x22\x1b\x6d\xfb\x56\x74\xe1\x0a\x33\x6d\xc3\x2e\x2e\xcc\x75\ \x34\xbc\x32\x38\xb7\x6e\x58\xb3\xaf\x33\x93\x03\x62\xaf\x36\x7d\ \xee\x03\x39\x30\x72\x07\x30\x43\x18\x18\xf0\x18\xdb\xf4\xb7\x92\ \xeb\x5c\x43\xf5\x00\x6b\x70\xd1\xd6\x42\x08\x4b\x2d\x1c\x03\x77\ \x2d\x0f\xb7\x32\x38\x71\xeb\xe6\xf1\x5d\x6b\xaf\x31\xe3\x33\x73\ \xb7\xb7\x61\x21\xc0\x07\x28\x03\x1e\xea\xdd\xab\xee\xee\x00\x2b\ \xc3\x5f\xc3\x22\x1a\xcf\xf5\x5d\x5b\x30\x2f\x2c\x1f\xd5\xfa\x2a\ \x1a\x33\x2d\x7e\x0f\xb7\xde\x4a\xac\x31\x67\x2f\xfb\x7a\xf5\x11\ \x80\x74\x7b\x4b\xb3\x2c\x54\xf2\x74\x9e\xb3\xe2\xe6\x6d\x4b\xe2\ \xf7\x65\xfe\xbf\x73\x32\xeb\xaa\xea\x6a\x2f\x05\x97\x41\x70\xab\ \xef\x11\x20\xc0\x70\x93\xb3\x64\xa7\xae\x82\x3b\x71\x13\x7f\xc3\ \x72\x3f\x78\xa6\xd6\xc3\x3b\x7a\xad\x05\xc7\xe9\x85\x47\xc3\x5f\ \x3f\xf0\x5c\x1f\x01\x6d\xab\xae\x85\x6b\xb2\x45\xe7\x38\x7e\x23\ \xb5\x32\x74\x67\xfa\x2a\x83\xde\xb2\x2f\x92\x53\x40\x8b\xbb\x78\ \xa6\x8a\xc3\xbe\x29\xf0\x21\xcb\xae\x90\x1e\x81\x8d\xdb\xf8\x5c\ \xab\x6f\xf0\x6e\xb6\xfc\x1e\xb2\x1c\x07\xf7\x8d\x47\x83\x68\x0f\ \xb9\xc4\x06\x77\x79\x2f\xb8\xf6\x2a\xf9\x92\x33\x79\x98\x42\x81\ \xac\x46\x79\x55\xe3\x02\x98\xdf\xb8\xfa\x52\xf0\x01\x4b\x34\xf1\ \x12\x78\x89\x83\xb9\x68\xe3\x42\x08\x5b\xf5\x60\x1f\xb1\x29\xab\ \xb6\x9a\x33\xf9\x10\x74\x43\xe9\x02\x6a\x83\x52\xb9\x8d\xbf\x32\ \x7f\x07\x2f\x9f\x42\xa7\x69\x33\x2d\x2e\x84\x76\x98\xeb\x39\xa3\ \x93\x2b\x99\x9b\xf7\xc7\x96\x81\x72\x0f\xba\xa7\xff\xc3\x01\x5c\ \xb5\x45\xdf\x38\x6e\xcb\xae\xb8\xa6\x6b\x27\xb3\x73\x15\xac\x7a\ \x89\x93\x78\x15\x58\x79\x4e\x43\xf0\xa6\xaf\x42\x9a\x7f\x3a\xa6\ \x0e\x01\x25\xd8\x6b\x92\x92\x39\xe0\xce\xf5\x2b\xfb\x83\x8f\x4a\ \x36\xfe\x92\x73\xf3\xa2\xbb\xfa\x5a\x0b\x39\xa3\xa3\x31\x92\x93\ \xab\x83\xdb\x3a\x6b\xaf\x02\x29\x78\xb9\xfa\x06\xf7\x2b\x07\x6e\ \xb0\xb3\x6f\xdf\x0e\x6a\x90\x7b\xeb\xab\x93\x37\xe0\xfe\x78\x6e\ \xd3\xe3\xc7\x06\xb5\xb3\x7b\xfa\x10\xe0\xb7\x88\xe7\x74\x23\x4b\ \xac\xfb\x26\x29\x2f\x0c\x77\xf6\xe2\xc2\xaa\x33\x7a\x17\x93\xf8\ \x03\xbb\x6f\x34\x97\xbb\xb3\x0f\x41\x34\x00\x2e\xb5\x3f\x70\x9f\ \xf7\x29\x92\xa6\xae\x90\xb7\x64\x68\xbf\xb2\xd1\x7a\x79\x34\xf4\ \x6e\xf0\xe6\xbb\xbe\x97\xfb\x01\x4c\xf4\x03\x77\x71\xed\x6e\xa7\ \xc6\x0e\x6f\xac\xc7\xae\x95\xd7\xae\x45\xbf\x3a\x5b\x1f\x71\x28\ \x94\xf0\xc3\x3b\xbb\x73\x0f\x70\xec\xce\xea\xb2\x7b\x6b\x4e\x6b\ \x7c\x15\xb4\xb3\xae\xe2\xb7\x68\x37\xad\xf1\xf2\x02\xad\x8f\xfc\ \xc8\x1b\x16\x6e\x27\xf5\x76\x2e\xed\x3b\xe3\x36\x98\x8f\x76\xfb\ \x4e\x3a\x98\xcb\xae\x31\xd3\x7c\xad\xdb\xfc\xfd\x0e\xc1\x26\x7c\ \x03\x6e\x1f\xc1\xad\x76\x77\xa9\xab\xf5\x5f\x73\x37\xd3\x92\x38\ \x57\x3b\x71\xd1\xaa\xc3\xd1\x23\x7d\xd2\xd7\x02\x1a\x17\x20\x87\ \x1b\x79\xce\x5b\x3d\xd1\x1b\xb3\x70\x1b\xb9\xf6\xfa\x83\xa0\x73\ \xd5\xfd\xcd\x1f\x80\x0c\xbb\x3b\x8e\xdb\xb8\xc7\xcf\x35\x92\x33\ \x2d\x79\xeb\xad\x3f\x90\x3b\xdb\xdb\xfc\x3e\x08\xb4\xdc\xf2\x82\ \xab\xcb\x3d\x57\x03\x6a\x11\x07\xb9\x6d\x1f\x81\xd6\xef\x3d\xdb\ \x23\xd6\x3e\x44\x79\xd5\x83\x39\xad\xfd\x35\x9f\x4b\xba\x90\x1f\ \x81\xf1\x36\xbb\xe2\xdb\xfa\x01\x30\xfa\x5c\xaf\x3a\xab\x1b\x39\ \x81\xaf\x75\xf1\x1e\x81\xde\x67\x3e\xd2\xa7\xcf\x38\xb0\xfc\xab\ \x87\x79\xaf\x1b\x7e\x27\x93\xb5\xe9\xc7\xfe\x10\x8c\x43\x2d\xaf\ \x7e\xb5\x4b\x3c\x79\xbf\xfe\xd6\xc7\xbe\x3e\xdb\x87\x9e\xdf\x3d\ \xb5\x23\x75\xd3\x36\xf8\xee\xf3\x7e\xef\x47\x7e\xa9\xaf\x35\xc0\ \x97\xbe\xf1\x67\xbe\x3a\xa8\xbb\xd5\x73\xf5\x11\x74\x7a\xf3\x37\ \xbf\xd2\x0b\xf7\xcf\x5f\x39\xe6\x57\x3f\xd2\x8f\x0e\xab\x23\x40\ \x2d\xec\x03\xf7\x8f\xbf\xfb\xc9\xc2\xbc\x23\x00\xf3\x93\xbf\xe9\ \x23\xd6\x07\x20\x00\x59\x17\xbf\xfa\x27\x76\xab\xa9\x43\xfc\xd7\ \x3f\xfc\x3f\x6b\x40\x00\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\ \x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\x8c\x94\x4a\ \x32\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5d\xc8\xf7\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xd6\x49\x91\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x52\x68\x20\x5c\x02\x94\ \xff\xff\xff\x13\x28\xa7\x10\x27\x68\xd6\xc9\xe2\xff\xff\xff\xff\ \xff\xff\xd4\x11\x12\xff\xff\xff\xff\xff\xff\xf7\x89\xba\xff\xff\ \xff\xb7\xa8\xac\xf7\xa8\xb8\xff\xff\xff\x8e\x68\xb1\x9a\xf2\xfc\ \x13\x29\xe1\xff\xff\xff\xff\xff\xff\xfb\xc8\xe6\x4e\x68\xf8\x28\ \x46\xea\xd9\xe8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x98\xc8\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf1\x70\x46\x7a\xa4\x6b\xff\xff\xff\xf6\xb2\xf1\xb8\xa9\xef\xda\ \x90\xf2\xff\xff\xff\xff\xff\xff\xf9\xe8\xf1\xff\xff\xff\x1f\x87\ \xbc\xfb\x8f\x5d\xb6\x67\xae\xff\xff\xff\xb7\xc8\xf2\x7b\x88\x74\ \x33\x8b\xc6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x38\x56\xf6\xff\xff\ \xff\x11\x39\x65\x6e\x69\xe6\xff\xff\xff\x98\x88\xf4\x49\x4b\xe0\ \x09\x17\x62\xd7\xd8\xeb\xff\xff\xff\x95\x89\x74\x57\xa9\xe5\xff\ \xff\xff\x5b\xb8\xeb\x73\x88\xf7\xff\xff\xff\x4b\x34\x1b\x95\xa8\ \xf5\xff\xff\xff\xfa\xd8\xeb\xba\x87\xf0\xff\xff\xff\xfb\xfd\xfa\ \xff\xff\xff\xff\xff\xff\x39\x63\xf7\xb7\xd8\xfa\x7d\xf5\xfc\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xda\xad\xf8\xff\xff\xff\xfb\xd0\ \xa6\xb6\xb9\xed\xfa\xb8\xbc\xff\xff\xff\x37\x4a\xec\xf5\x99\xb4\ \x6d\x68\x6a\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcd\x2d\x68\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb2\x2a\x1e\xff\xff\ \xff\xc4\xea\xa4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xf0\x2d\x2d\xff\xff\xff\xff\xff\xff\x70\ \x58\xef\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x36\xd2\xff\xff\ \xff\x92\x6d\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x70\x0e\xa3\x7a\xcc\xf9\xff\xff\xff\xff\xff\xff\x59\ \x92\xea\xff\xff\xff\x78\xb4\xf8\x93\x56\xf1\xff\xff\xff\xfa\xeb\ \xba\xfa\xae\x88\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\xf7\x8f\x8b\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x9a\xd8\xfb\x84\xba\x8c\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x76\x24\xff\ \xff\xff\x11\x77\xa8\xff\xff\xff\xff\xff\xff\x19\x37\xe0\xff\xff\ \xff\x58\x76\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\x04\x57\x7a\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x2c\x39\x98\xff\xff\ \xff\xff\xff\xff\xb4\x58\xb1\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x5a\x5e\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x8c\x1b\x2c\x95\x97\x4e\xde\x97\x95\ \xff\xff\xff\x99\x98\xae\x55\x78\x9f\xff\xff\xff\xb9\xb8\xb0\xff\ \xff\xff\xd9\xfb\xfc\x1f\x96\xc8\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x94\x9a\xf2\xff\xff\xff\x7e\x97\xf9\x99\xb8\xf8\xb8\x98\xec\ \xb2\x57\x35\xb0\x78\xf8\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\ \xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\ \x9c\x48\xb1\xa2\xc5\x8b\x18\x27\x8e\x78\x34\x22\xa3\xc7\x8f\x20\ \x43\x8a\x1c\x49\x32\xe1\x84\x3b\x81\x3a\x96\x5c\xc9\xb2\xa5\xcb\ \x97\x15\x47\xb0\x99\x99\x67\xc2\x08\x95\x30\x73\xea\xdc\xc9\x33\ \x63\x8f\x99\x40\x63\xf5\xe0\xd8\xb3\xa8\xd1\xa3\x47\x47\xa4\x01\ \x0a\xb4\x48\x9a\x94\x38\x91\x4a\x9d\x4a\xd5\x63\x2c\xa6\x58\xd9\ \xd4\xbc\x59\xb5\xab\xd7\xaf\x0a\x1f\xc1\xc8\x9a\x55\x28\x57\xb0\ \x68\xd3\x4e\xed\x51\x84\x2c\xd9\xa7\x67\xd5\xca\x9d\xeb\x72\x44\ \x5b\xb7\x6e\xf3\xf4\x88\x4b\xb7\xaf\xdf\x8c\x57\xf1\xe2\x2d\x62\ \xf6\xaf\xe1\xc3\x11\x47\xe4\x11\xcc\xb8\x08\x18\x75\x7c\x11\x4b\ \x9e\xfc\x2f\x30\x63\xc1\xee\xba\x70\x80\x1c\x95\xb2\x67\xba\x62\ \x2f\x33\xce\xdc\xa5\x8b\x3a\xc8\x9f\x53\xcf\x65\x2b\x5a\xf0\x99\ \xd2\xb0\x4d\x47\x56\x4d\x1b\xa9\xdd\xd6\x82\x41\xc4\x86\xbd\x79\ \x76\xed\xdf\x3a\x7f\xe2\xc6\x0b\xe2\xc3\x6e\xd8\xa7\x3b\x03\x5f\ \xde\x72\xc4\xd8\xe1\x6e\xbd\x1c\x3f\x7e\x53\x39\xf3\xeb\x20\x2d\ \x43\xcf\x3a\xc3\xcc\x74\xea\xbe\xb1\xfe\x8b\xa7\x18\x7a\xbb\x5b\ \xef\x5d\x3e\x7c\xc0\xb2\xde\x78\xec\xde\xd6\xc7\xcb\x77\xa8\xd4\ \x3c\x5e\x6b\xa5\xd7\x63\x61\xc6\x0c\xcb\xf7\xe4\xf1\xcd\x27\xa0\ \x41\x8f\xd8\xe7\x56\x11\x1b\x94\xc6\x1e\x16\x1b\xf4\xf7\x5d\x69\ \x9c\x0d\x28\x61\x42\xcf\x19\x88\x15\x82\x5d\x98\xd1\x1f\x33\x0d\ \xfa\xb7\x9b\x7b\xc8\x85\x37\xa1\x7c\xc2\x59\x98\xd5\x3b\xeb\x6d\ \xb0\xc1\x3b\x58\xb4\xf8\xa1\x8a\x20\x42\x18\xe1\x88\x02\x3e\x92\ \x82\x89\x64\xf5\x91\xde\x3b\xef\x30\x83\xde\x6e\xfb\xf9\x18\x23\ \x84\x22\xd2\xf8\x5b\x81\x38\x66\xc5\x44\x7a\xc1\xb0\xf8\x9d\x7e\ \x43\xc6\x36\xa3\x91\xd7\xdd\x95\x24\x53\xf1\x6c\xc0\x20\x7b\xdf\ \xb9\x18\xdb\x7a\xbb\x99\x11\x4e\x91\x54\x4e\x36\xc1\x95\x59\x79\ \xd1\x07\x88\x1e\xc6\xe6\xe5\x83\xa5\x6d\xc0\xc4\x3a\x63\x06\x58\ \x26\x62\x8b\xa1\x89\x65\x8c\x5c\xc2\xd6\x62\x94\xd3\x99\x11\x4c\ \x3c\x88\xb0\xb3\xd7\x9d\xa9\x95\xa8\x27\x1b\x45\xbc\xf3\x61\x9b\ \xe9\x41\xfa\xa0\x19\x0c\xae\x13\xcf\xa5\xeb\xf4\x43\x26\xa2\x69\ \xd9\xb8\x68\x53\x3f\x96\x66\xc6\x90\x92\x4e\xa7\x5e\x86\xba\x20\ \x72\x47\x3c\xeb\x6c\x70\xc0\x94\xfe\x9c\xf6\x85\xe4\xa7\x6c\xc0\ \x31\xe4\xa9\x70\x1e\xf7\x81\x19\xde\x6d\x80\x02\x22\x88\xb4\xaa\ \x1e\xaf\x86\xd8\x19\xab\x57\x56\x7e\x1a\x4f\xa8\x0a\xe6\x7a\x9c\ \x19\x1b\xf4\xaa\xaa\x2e\xc1\xfc\x68\xc6\x3a\xeb\x70\x64\xec\xb1\ \x48\xb1\x46\xab\x17\x4c\x58\xb3\x26\x6c\x80\xe6\x0a\x2d\xa5\x4c\ \x10\xba\x4e\xb5\xb0\x05\xb3\x8e\x0f\x74\x1e\xb0\x29\xb7\x3d\xdd\ \x78\x65\x11\x45\xcc\x70\x29\x1e\xe1\x5a\xf3\xce\x9a\xeb\x31\x53\ \xee\xa4\x94\x0a\x8a\x08\xab\x4c\xa0\x67\x86\xba\x2a\x32\xd1\x4f\ \xb1\xf4\x76\xa5\x28\x74\xf8\x7a\x01\x42\x3c\x20\xa0\xd0\xc7\xbf\ \xd6\x80\xa8\x9e\x7a\x58\xf4\xc1\x45\xc7\xe4\x3a\xdb\x45\x82\x58\ \x0c\xda\xaa\x8a\xd0\xfa\x70\xca\x29\x88\x68\x19\x8c\x0f\xc1\xf4\ \xb1\xd1\xb6\x11\xb7\xe4\xe9\x76\x69\x80\x00\xc6\x0a\x7d\x14\xec\ \x1f\xa5\x0f\x7e\xc0\x0c\x8f\x7f\x62\xc1\x05\x33\xce\x16\x9c\xae\ \x2e\xde\x99\xe1\x83\x0f\x88\xb0\x01\xb3\xcc\x3e\xb0\x98\xae\x01\ \xf3\xe6\x4c\xd2\xac\xb8\x15\xe1\x4e\xd0\x61\xe2\x5a\xb4\x35\xd6\ \x30\x63\x0d\x16\x69\xf7\x41\xf2\xa4\xd1\xca\x19\x6c\xaf\x54\xc3\ \x8c\x08\xb5\x1b\x64\xdd\xdf\xfe\x3e\x8c\x6e\xe5\x35\x4f\xc9\x5e\ \x06\x02\x13\x5c\x84\x69\x06\xc9\x03\x73\xf9\xa7\x7b\xfa\xb5\xf8\ \x66\x6c\x2c\x6f\x10\xcc\xc1\x32\xa7\x0a\xb3\x2e\x34\xcf\x1c\xcc\ \xd1\x55\x37\xf5\x08\x51\x7f\xbb\xe4\xed\x65\x5e\x8c\x6d\x38\xda\ \xe4\x96\x5b\x6a\x7e\x2d\xa6\xdd\x21\x90\xd0\xb6\xb8\x81\xba\xee\ \x02\x7b\xf7\xba\x33\xfb\xd0\x84\x0f\xba\x90\xa5\x57\xd7\xa1\x57\ \x64\xef\x65\x33\x30\x11\xe3\xa8\xd6\x30\x0b\xa6\xa9\x25\xe7\x87\ \x36\x33\x22\xf7\xa8\xe5\x82\x0c\xf6\x67\x9c\xaf\xc1\xd6\x7e\x30\ \xcd\xcc\x04\x93\xbb\x2e\xae\xe0\x15\x0b\xf0\xc1\x47\x34\xb1\x5b\ \x70\xb8\x83\x62\xd9\x87\x9b\x9c\x9f\xa9\x68\xaf\xd7\xb6\xeb\x0c\ \xae\x4d\xf4\xc9\x3e\xb0\x3a\xb3\x2e\x98\x07\xd3\x60\xf7\x47\xf0\ \x41\x2e\x1a\x33\x14\xd0\x95\x2f\x23\x3b\x3b\xd0\x12\xd4\xb7\xba\ \x8e\xa1\x8d\x59\x45\x1b\x18\xeb\x1c\xe7\xaf\xb4\x7d\x4c\x3d\x72\ \xea\xdf\xd4\x32\x17\x0c\xc7\x31\x43\x17\xf3\x10\x4d\x11\x52\x00\ \x95\x03\x62\x04\x6c\xdc\xd1\xc7\xda\x00\x85\xb6\xe4\xe1\xc7\x7d\ \xee\xfb\x40\xc7\x1a\x37\xc1\xf5\x30\x61\x6a\x37\xbc\xe1\xd4\x12\ \x54\x1a\x66\x20\x22\x84\xfe\xad\x39\x05\xd7\x70\x66\xc2\x84\x04\ \xae\x29\x4b\x78\xc7\x0b\x77\x83\x36\x25\xb2\x6d\x75\x30\x7c\x12\ \xe3\xdc\xe4\xb8\x94\x6d\x90\x77\xbc\xa3\x96\x82\x7c\x00\xc4\xb0\ \xb1\x61\x02\x9f\x2b\xa2\x44\x46\xc7\x94\x22\xec\x43\x89\x6f\x73\ \x1e\x8f\xd0\xd8\xa7\x28\xc2\xe9\x63\x4f\x52\x91\xec\xde\xe1\x03\ \x14\x10\x8a\x7f\x3e\x18\x06\x7b\xde\x11\x3e\xfb\x8c\xd0\x80\x62\ \x5c\xc8\x08\x86\xc7\x94\x25\x9c\x81\x45\x5b\x22\xd7\xc6\x78\xc4\ \x05\xc7\x49\xd0\x8d\xe9\xc9\x15\xdb\x04\xc6\x20\x3a\xea\x02\x0e\ \x59\x1b\x46\x83\x8e\x90\x8b\x23\x42\x27\x0d\x43\x0c\xe4\x42\xc8\ \x38\x03\x7e\xa1\xb1\x85\x1e\xfa\x00\x23\xc5\xb5\xb6\x19\x42\xb2\ \x68\xaf\xc4\xc2\xd3\x1c\x85\x85\x61\x80\x10\x4d\x60\x7c\x84\x28\ \x0f\xa2\x18\xa0\xcc\x60\x09\x4c\x50\x9b\x71\x2a\xe8\x22\xf9\x29\ \xd1\x89\x69\x7c\xe5\x97\x92\xe9\xc6\x0d\x90\x02\x0e\x8e\xea\x02\ \x1f\x3f\xc5\x07\x40\xee\x12\x49\xf3\x58\x60\x8f\xda\x03\x25\x36\ \x35\x71\x6d\x6d\x54\x26\x6c\xe2\x27\xce\x2e\x60\x81\x77\x3c\x7c\ \x07\xad\xd8\x00\xca\xea\xec\xf2\x1f\x6d\x49\x5f\x8f\x96\x26\xc3\ \x8e\x79\x60\x48\x1e\xfe\x68\xe1\xda\xca\x79\x1c\x66\x7e\xc8\x4d\ \x5f\xa2\x60\x34\xb1\x00\x87\x75\x02\x05\x8c\x44\xe4\x16\x5b\xbc\ \x80\xc8\xfd\xb8\x87\x9c\xb1\xc9\x27\x38\xa1\xa8\x4c\xd4\x7d\x47\ \x9f\xb0\xb9\x27\xeb\xfa\xd0\xc6\x0f\x70\xd1\xa0\x6c\x08\x61\x1e\ \x62\x61\xcd\xd0\x8d\x80\x0f\x70\xd0\x47\x7f\xd8\x03\x22\x88\x96\ \x46\xa2\x14\x55\x66\x3d\x73\x25\xc3\xc4\x0d\x09\x1f\x5d\xa4\x55\ \x17\xbd\x30\xc4\x84\x52\xa9\x07\x49\x5c\x61\x8c\xe0\x18\xd1\x98\ \x8a\x93\x95\xc7\xc9\xe7\x23\x23\xc9\xd4\x71\xe2\xc1\xa0\x39\x9d\ \x87\x2b\x5c\xb1\x17\x9f\x8e\x68\x04\x06\x70\x22\xa0\x96\xca\xcf\ \x71\xfa\xd3\xa5\x70\xba\x27\xc8\xc8\x29\xc3\x01\xea\x94\x29\xae\ \x60\x81\x2b\xe6\x31\xd2\x92\xc6\xea\x11\xa2\x60\xe9\x50\xbb\x1a\ \x45\xb0\x96\xc6\xa2\x6e\xcc\xe7\xc8\x56\xa8\x8f\x19\xe8\x14\x88\ \x52\x8d\x43\x17\xdb\x49\xbe\xf9\xb8\x63\x89\x4c\xe5\x2a\x5d\x9d\ \x87\xd8\x8c\x96\xb3\x9e\x01\x73\x07\x1c\x3c\x69\xa0\x79\x74\x51\ \xaa\x2c\xc8\x29\xa3\x86\x62\x55\xf1\x4c\x20\x9a\xf9\xb9\xe0\x62\ \xdd\x67\xd7\xd1\x32\xf1\x0c\x5e\x40\x93\x65\x67\x82\xd9\xb5\xb2\ \x16\x28\xf3\x88\xfe\x07\x49\x39\x35\x82\x70\x48\x8a\x9b\xa6\x75\ \x16\x5e\x73\x6b\xaa\x77\xf8\x35\x49\x21\x0c\xee\x54\xfb\x28\x55\ \xe2\x86\x90\xb0\x9d\xad\x4d\x20\x98\x66\x2a\xc5\x2e\x76\xb7\xbc\ \xbd\xab\x87\xb0\xc0\xb7\x45\x49\xb5\x8b\xae\x88\x43\x1f\x2f\x54\ \x55\x1a\x8d\x00\x82\xd1\xa5\xa9\x58\x99\xe8\xdc\xb3\x71\xc1\x6d\ \x1b\x38\xaf\x7b\xde\xe1\x05\xca\x9a\xa7\xb8\x80\x9d\xaa\x5b\xe6\ \xc1\x82\x78\x70\xed\xaa\xe1\x75\x56\x4b\xcb\xe5\x4f\x37\x7e\x80\ \x0b\x6b\x6c\x24\x4b\xc7\xb9\x8f\xc9\x02\xd7\xb5\xb0\xd5\x2c\x6b\ \xb3\xfb\x09\x57\x14\xa1\xbb\xf3\x19\x41\x7e\x73\x75\x5e\x07\xf6\ \xb7\x0b\x8d\x85\xe1\xf2\x20\x3b\x30\x19\xea\xc2\xbd\x8c\x89\x2f\ \x82\x43\x4a\x96\xe2\xc6\x21\x17\x82\x0d\xa1\x01\xb4\x25\x1f\x0e\ \x4c\xf8\x41\xac\x84\x2e\x3f\x71\x65\x36\x18\x9a\x01\x0f\x20\xc6\ \x4b\x70\x8b\xcb\x14\x05\x87\x74\xaa\x2c\x08\x32\x60\xbd\x80\x82\ \x24\x24\xf7\x2f\x12\xee\x82\x07\x5e\xbc\x4c\x6b\x70\x61\x64\xb9\ \x75\x50\x39\xcd\xb0\x84\xed\x88\xd8\xc7\x58\x81\xaf\x65\x5d\xbb\ \x65\x57\xe8\xa2\x4e\xcb\x19\x81\x8b\x99\x4c\x2e\x27\xeb\xb3\xbc\ \x31\xec\x2a\xfe\x18\xda\x82\xaf\xed\x4c\x15\xcb\x3d\x5e\x2d\x1b\ \xd2\xba\xda\xc0\xc6\x21\x0e\x60\x28\x61\x6d\x92\x4c\xe6\xf4\x3c\ \x19\x9c\x35\xee\xb3\xfb\x92\x30\x13\x18\xa4\xa0\x0e\x39\x8e\xf3\ \x88\xb1\x2c\x55\xd6\x06\x99\xb8\xd9\xbd\x73\x1c\x3e\x81\x82\xc2\ \xca\x65\xcc\x7d\x7e\x5e\x86\x05\xed\xbe\x85\x31\xca\x00\x07\x08\ \x07\x3b\x96\x22\x9a\xeb\x96\xda\xb2\x5d\x46\xf5\x54\x25\x2d\x69\ \x16\x7c\xd9\xd2\x5f\xe1\x73\x9f\x3f\xa0\x51\x4e\xbf\x52\x1d\x69\ \x28\x02\x0c\x26\xa0\x0e\x0e\x1c\x80\x1d\x89\x0e\x69\xa3\x2f\x53\ \xe7\x37\x77\x39\xc8\xac\x46\xf6\x02\xf2\x7c\xe4\xaa\xa8\xc3\xd6\ \xd0\x16\xe7\x01\xc6\x92\x82\x70\xf4\xda\xd7\x29\x48\xb4\x9c\x89\ \xbd\xd6\xb4\xae\xf5\xd8\xc8\xbe\x33\x0b\x58\x9d\x0b\x77\xc0\x7a\ \x2a\xb2\x8e\xf6\x84\xd1\x7c\x9c\x69\xc3\x80\x0f\x13\x30\xc4\x69\ \xd4\x11\x8e\x3c\x1d\x58\xad\x6f\x5e\x70\x5a\xc3\xcd\xea\x38\x20\ \xdb\x15\xf1\x00\xb3\x5f\xc4\xac\x6e\x26\x9b\x61\x5c\xe2\x9c\x40\ \x1a\xd2\x20\x94\x1e\xc8\xfb\x34\x49\x20\xb5\x89\xe8\xab\x56\xf8\ \xce\x64\xdf\x6a\xed\xb7\xa4\xb3\x5b\xf1\x19\x30\x7b\xe0\x05\x67\ \xb2\xb8\xfe\xca\xa9\x8e\x88\xc3\x20\x16\x26\x30\x41\xbc\xe7\x6d\ \x80\x60\x0b\xa6\xb5\x3f\x8e\xef\xb8\x83\x4c\xf3\x71\xb7\xfa\xd1\ \xc5\xcd\x45\xa5\x9b\xad\x13\x4c\x87\x3c\xbf\x9b\xb6\x71\x12\x60\ \x90\x07\x13\xc4\x22\x16\x48\x08\xc4\xbc\xd5\x61\x6f\x03\xd1\xf9\ \xb5\x17\x17\x37\x90\xd5\x6a\x73\x7c\xd3\x39\xd5\x45\x88\x07\x8b\ \xd1\x92\xee\x9f\x47\x97\x57\xe2\xa4\x77\x0a\xf8\x70\xf4\xb2\x3f\ \x42\xde\x86\x68\xb9\x89\xf2\xfd\x5a\xcc\x56\x1c\xc8\x53\xef\xf6\ \xd5\xb5\x2c\xd5\x8f\x83\xe5\xd9\x5e\x9f\xb0\x25\x56\x00\x5e\x93\ \xd1\xdb\x04\x64\xe7\x43\x0a\x52\x30\xd2\x78\x1b\x22\x09\x4d\x37\ \x8f\x7c\xe3\x8c\x73\x8a\x0f\x17\xdf\x81\xcd\xb7\x96\xd3\x0a\x87\ \x9d\x7b\xc5\x10\x79\x9f\xb0\x19\x30\xb1\x02\x6b\xf8\xfc\x41\x98\ \x56\x87\x19\xb2\x91\x84\xc0\xf3\x01\x15\x7c\xc8\x43\x1e\x52\xd0\ \x83\x09\xd4\xdb\xe5\xf3\x45\xb0\xaa\xfd\xfd\x78\xda\x0f\xd7\xed\ \x99\x65\xed\x75\x87\xbb\xd6\x19\xe4\x61\xeb\xb6\xc1\x7b\xe6\x47\ \x3b\x66\x0e\xf4\x61\x0b\x7c\x37\xc3\xbc\xcd\xf0\x79\x51\xc5\x66\ \xf4\x60\x30\x00\x3b\xd8\x61\x82\xc1\xc7\x22\x0f\x30\x30\xf4\xd1\ \x53\xfe\x20\xf1\xf7\x5e\x76\xce\x33\xdf\x32\xed\x53\xbd\xef\x6f\ \x5f\xdc\xea\xb7\x9f\x47\x11\x0c\x90\x12\xa9\x8c\x40\x47\xc3\x8f\ \xae\x25\xdc\xb1\x82\x15\x94\x22\x09\x2b\xc8\x86\xe8\xfb\x0e\x1b\ \x33\xac\x80\x1d\xfc\x20\x7d\xa9\xb7\x7a\x79\x80\x2f\x69\x40\x80\ \x30\x00\x7b\x25\xb6\x63\x21\x75\x67\xdf\xe6\x6d\xbc\xd7\x6d\x38\ \xa7\x6f\x11\xf8\x6d\x52\x55\x6e\xe7\xf6\x11\x79\x00\x5a\xf1\xd7\ \x55\x4b\x56\x1a\x5c\x50\x7f\x2b\x90\x04\x42\x20\x04\xf8\x67\x09\ \xcc\x97\x2b\x07\x90\x04\x06\x90\x04\x2c\x48\x78\xab\x97\x7d\x30\ \xb0\x70\x69\x90\x80\x0a\x98\x15\xa8\xb6\x60\x6f\x57\x7e\x70\x17\ \x58\x99\x05\x58\xc5\xc5\x7b\xaa\xb6\x6f\x71\x60\x00\xc5\xc2\x73\ \x15\xf1\x08\x8d\xd2\x81\xaf\xe4\x01\x1f\xf8\x52\x9e\x50\x1a\x1c\ \x20\x09\x2b\xe0\x0f\x2b\xa0\x06\x42\x50\x07\xfc\x80\x7f\x7c\xe7\ \x2c\xea\xd0\x07\xe1\x10\x7d\x29\x00\x04\x7c\x90\x04\xfd\xd0\x03\ \xa9\x37\x83\xb9\xf6\x5e\x59\x26\x5c\x16\x48\x73\x15\x48\x73\xdb\ \x26\x6c\xe9\xb7\x65\x34\x27\x6e\x60\xe0\x56\x2c\x71\x15\x1c\xc8\ \x84\xee\xe3\x84\xb0\xd1\x02\x4e\x06\x1b\x2b\x10\x04\xfc\xb0\x05\ \xfe\xfc\x50\x07\x40\x50\x07\x42\xa0\x06\x2b\xd0\x7c\xd3\xa1\x0e\ \x60\x20\x78\x83\x67\x02\x0f\x37\x01\x82\x07\x04\x29\x90\x80\x13\ \x77\x65\xc5\x05\x79\x75\xd6\x78\x58\xd1\x83\x17\x87\x71\xe4\x06\ \x06\x19\x28\x11\x48\x42\x1a\x7e\x98\x57\x4e\xf8\x64\x5c\xe0\x01\ \x1c\xc0\x05\x5b\xa0\x85\x2b\xe0\x0e\x41\x50\x07\xba\xc8\x0f\x5d\ \x28\x85\x7d\x67\x06\x06\x50\x07\x29\xc0\x0e\x29\xa0\x72\xf2\x36\ \x02\x13\xd0\x70\x26\xc0\x89\x56\x86\x6a\x75\x16\x84\x42\x78\x59\ \xb7\x97\x65\x33\x07\x69\x54\x67\x73\x92\x46\x0a\x48\x08\x11\x83\ \x34\x13\x67\xc0\x6e\x7e\xd8\x02\x1e\xd0\x02\xb0\xe8\x64\x92\xc0\ \x0f\xf8\x50\x7f\xfe\x90\x8b\x78\xc0\x8b\x85\x03\x1b\x07\x20\x09\ \x07\xa0\x7c\xa1\x42\x6f\x06\x70\x8f\xc4\xc8\x07\x4a\x67\x08\x8f\ \xd0\x7a\x13\xd0\x03\xd9\xe6\x7d\xd3\xf8\x63\x6f\x56\x87\xfa\xa6\ \x60\x8e\x07\x44\x53\xc7\x6f\x77\xc6\x04\xdb\xf8\x10\x32\x31\x13\ \x20\x10\x74\xf1\x07\x88\x0f\x22\x8e\xe4\xf8\x67\x5c\x20\x09\x64\ \xb0\x05\x59\x10\x82\x6a\xc0\x0f\x41\x10\x04\x9d\x67\x2d\x98\x90\ \x04\xc8\x57\x7f\xa7\x01\x8f\x49\x10\x7d\xec\x00\x04\x85\x37\xfe\ \x01\xff\xd8\x03\x3d\x60\x02\x40\xa0\x6d\x8b\x76\x5d\xdb\x46\x5f\ \x15\x68\x7e\x0b\xa6\x60\x10\xa8\x90\xfe\x76\x87\xe1\xf6\x90\x0f\ \x61\x6f\x5e\x40\x91\x99\xe7\x84\x4f\xf8\x52\x2f\x25\x8e\xc6\xc0\ \x05\x31\x20\x09\x32\xb0\x07\x5c\x90\x05\x1d\x99\x05\x7d\x90\x05\ \x5b\xe0\x0e\x75\x00\x02\x5b\xb0\x1b\x92\x90\x04\x6a\x50\x96\xec\ \xe0\x0f\x2e\xb8\x92\xea\x10\x6a\x88\x97\x7d\xaa\x27\x14\x29\xc7\ \x07\x7c\x20\x71\x30\x00\x02\xdd\x07\x14\x3e\xe9\x8c\x51\x15\x84\ \x7c\x19\x5c\xba\xa7\x59\x69\xa5\x5d\xa1\xe8\x80\x43\xb9\x6f\xe6\ \x06\x13\x4a\x08\x14\x20\xc0\x7f\x5e\x87\x91\x16\xe9\x58\x18\x19\ \x95\x59\x10\x03\x31\xb0\x07\xd6\x20\x03\x57\x49\x06\x59\x20\x09\ \x59\xb0\x02\xf8\x00\x02\x20\xb0\x02\xe4\x72\x00\x21\x98\x04\xfc\ \x20\x04\xfc\xc0\x0e\xc2\x98\x04\xaf\x72\x00\x86\xb0\x82\xd8\x97\ \x6b\xba\x46\x76\x84\xc7\x8c\x45\xc0\x0e\x07\xb0\x02\x20\x90\x65\ \x39\x59\x67\x09\xe6\x86\x6c\x47\x62\xc3\xd5\x63\xd5\x28\x5c\x55\ \x47\x75\x53\xb5\x04\x86\x00\x13\x23\xa0\x1d\x4b\x60\x54\x05\xc7\ \x94\xe3\xf8\x84\xd3\x29\x8e\x1e\x10\x95\x31\x80\x0c\x93\xfe\x69\ \x05\x7b\x60\x0c\x7b\x40\x06\xfa\xf0\x91\x58\x19\x04\x16\x23\x9a\ \x19\xb2\x91\x55\x18\x92\x59\x08\x04\x33\x08\x03\x40\xe0\x82\xe1\ \x60\x08\xe1\x70\x7d\x77\xe1\x14\xaa\x97\x7d\x77\x91\x06\x6a\xf0\ \x6c\x66\xe0\x0e\xa9\xf5\x97\x00\x0a\x5b\xc2\xb6\x63\x16\x87\x97\ \xde\x96\x53\x91\x96\x7b\x98\x95\x6c\xe5\x77\x5f\x2f\x81\x42\x78\ \xa0\x94\xea\xc6\x94\x5d\x20\x88\x2d\x70\xa1\x17\xea\x84\x50\x69\ \x0c\x32\x60\x05\xd9\x89\x0c\x94\xc9\x05\x32\x10\x03\xfa\x70\x06\ \x64\xf0\x0e\x64\x10\x04\x4b\x00\x02\xf8\x20\x09\xd6\xb0\x02\x1f\ \x39\x82\x89\xa8\x8b\x42\x00\x04\x34\x58\x83\x7c\x60\x02\xe1\x30\ \x01\x49\x10\x0b\xcc\xc8\x28\xb9\xb6\x70\x33\x51\x04\x79\x70\x00\ \xb0\xd1\x07\xbb\x39\x87\x4a\xba\x93\x7d\x89\x97\xe1\x77\x59\x36\ \xf7\x80\xd8\x28\x6e\x34\x07\x07\x46\xe9\x10\x89\x07\x02\xd0\xc9\ \x69\x4b\x36\x8e\x18\x3a\x32\x51\x69\x0d\x18\x69\x66\x1d\xfa\x06\ \x1f\x1a\x03\x6f\xc0\x9d\x64\x60\xa2\x5c\x40\x06\x20\x60\x31\xf8\ \xf0\x91\x64\xe0\x0e\x59\xf0\xa2\x6a\xa0\x8b\x75\xc0\x07\x75\xa0\ \x86\x34\xe8\x9e\x7c\x60\x00\x3d\xc0\x0e\x79\xd0\x7d\xfe\x06\x68\ \x25\x45\x50\x07\x3f\x92\x2e\x4a\xda\x86\x97\xc5\x97\x68\x35\x81\ \x4e\xaa\x5d\x52\x3a\x06\xf4\xb0\x00\x9f\xe0\x6f\xe2\xe6\xa0\x75\ \x91\x15\x13\xe9\x75\x1f\x28\x8e\x15\xaa\x57\xd6\xb0\x07\x56\xf9\ \x64\xc6\x30\x8e\x7b\x20\x03\xaa\x2a\x03\x6f\x80\x0c\xae\x8a\xa6\ \x1e\x2a\x0a\x64\xb0\x07\x1e\x40\x06\x6d\x81\x07\x59\x20\x43\x1e\ \xe9\x36\x07\xe0\x0f\xa7\xa9\x88\x33\x88\x2f\x6c\x86\x2f\x7e\x2a\ \x97\x83\x5a\x9f\xba\x16\x38\x29\x60\x2d\xba\xf0\x5b\xf3\x35\x87\ \xe5\x07\xa5\xf8\xd6\x63\xc6\xb6\x63\x71\x40\x0f\xc3\x40\x0f\xb9\ \xb0\xad\xe3\xe6\x0a\x57\xda\x10\x89\xc7\x06\xf1\x60\x54\xe0\x18\ \x45\x1e\x90\xaa\xd7\x79\xaa\x1e\xc0\x05\xa4\xca\xae\x4f\x46\xaa\ \x19\xca\x05\x1c\x5a\xa6\xae\x0a\xa2\x69\x9a\x9d\x6f\x50\x1a\xf8\ \xc0\x06\x33\x80\x0f\x1f\xe8\x64\x1f\xe0\x09\x57\xa8\x06\x2f\xc9\ \x9e\x6b\xc8\x66\x8c\xc2\x4e\x44\x07\x83\xb2\xc9\x28\x9e\xc4\x0e\ \x3f\xb2\x01\x05\x55\x62\xdd\x46\xad\x16\xe8\xa4\xd5\xaa\x7b\xbc\ \xc9\x02\x0b\x40\x0f\x63\x90\x0b\x6a\x05\xb2\xa8\x88\x98\x47\xa4\ \x26\x93\x82\x07\xf1\x80\x70\xd1\x15\x95\x96\xf9\xfe\x64\x32\x30\ \xaa\xec\x6a\x95\xa4\x6a\x95\x18\xf9\xb2\xc6\xc0\xa1\x56\xf0\x06\ \xa2\xe0\xaa\x6f\xd0\xaa\xc8\x60\x05\x5d\xb0\x07\x55\xb6\x04\x59\ \x10\x1b\xc9\xb3\x02\x5b\x50\x96\x89\x98\x7d\x0d\x9b\x15\x35\x48\ \x74\x79\x70\x07\x36\x98\xb0\x69\x62\xa4\xa2\xb2\x0f\x47\xa4\x65\ \x16\x3b\x6c\x3f\x56\x71\x70\x06\x7e\x54\x37\x69\x2c\xc0\xad\x28\ \xa0\x87\x22\xd1\x9c\x64\x31\x03\xf0\x37\x1d\xee\x30\xa4\x28\x70\ \x61\xe5\x24\x8e\x1d\x7a\xa6\xee\x2a\xb3\x33\x4b\xaa\x37\x9b\xb7\ \x37\x3b\xa2\x64\xb0\xb3\xf5\x2a\x0a\x31\x60\x05\xf8\x30\x03\xfd\ \xda\x58\x20\xb9\x02\x25\xc8\x07\x40\x60\xb0\xc2\x7a\x21\xba\xa6\ \x7a\xd8\x77\x07\xc2\x8a\xac\x6c\x96\x07\x3f\xd2\x07\x13\xfb\xa8\ \xdb\xa5\x6f\x3f\x08\x58\x90\xba\x80\x3c\x69\x59\xe3\xc6\xad\xb9\ \x60\x64\x88\x49\x16\x45\x00\x02\xef\x38\x1d\x4f\xe5\x4b\x87\x95\ \x5b\x2d\x80\x99\x94\xa9\x9d\x81\x7b\xb7\xdd\x59\xaa\xec\x2a\x03\ \x7a\xcb\xaa\xad\x4a\x06\x7d\x2b\xab\xaf\xaa\x0f\xfb\x40\x06\x4d\ \x79\x57\x22\xc8\x0f\xfc\xb0\xb8\xf8\xd9\x66\x59\xe1\x14\x50\x8b\ \x7d\xc1\x6a\xa8\x56\x82\x02\x0a\xe3\x0e\xce\xfe\xfa\x93\x06\x3a\ \x75\x8d\x2a\x79\xbf\x09\x5b\x92\xd7\x6a\x71\xb0\x0f\xdf\xca\x10\ \x4d\x97\x2f\x20\x70\x06\xa6\xf3\x1d\x64\x70\xbd\x66\x54\xa7\x12\ \x9a\x2b\x18\x19\xbb\x94\x99\x9d\xf3\x1b\xb8\xee\x1a\xb3\x52\xc9\ \xae\x79\xab\xbb\xac\x8a\x0c\x3b\xab\x0f\xfa\xe0\xbb\x6f\xc0\xbf\ \xb4\x7a\x51\xf5\x77\xa7\xca\xdb\xb4\x09\x3b\xb9\x4f\x0b\xb9\x6a\ \xc8\xbc\x58\x91\x06\xec\x10\x0e\x07\xd0\x07\x2b\x10\x0f\x70\x06\ \x81\x03\x19\xa0\x5b\x7b\x71\x72\xc6\x71\x92\x36\x26\xcc\xd9\x14\ \x33\x80\x02\x2b\xf0\x0e\x2b\x40\x38\x45\x83\x0f\x4b\xe0\xac\x5e\ \x70\x06\x78\xb0\x04\xf8\xf0\xbe\xd3\x41\x8e\x32\xf0\x8a\xb4\x5b\ \xbf\x94\x69\x05\x3c\xec\xae\x92\x40\x99\xa9\x3a\xaf\x1c\x6a\xa6\ \xfe\x2b\xab\x80\x7b\xaa\x4a\x56\xbc\xef\x01\x92\x35\xca\x9e\x8d\ \xdb\x14\x06\xb8\x70\x32\x48\x74\x37\x4a\x59\x4e\xc1\x0e\x63\x73\ \xc1\x9e\x44\x5f\x20\xeb\x93\xad\xc1\xa4\xac\x85\x62\xd8\x38\xbe\ \x0b\xb1\x18\xa9\x0b\x06\x7d\x90\xc6\x7d\x30\xa7\xe6\x39\x1d\xd6\ \xb0\xa6\xfb\x30\x03\x45\x00\x07\xfb\x30\xb8\x8c\x52\xb4\xe6\x2a\ \x88\x7f\xd6\xa1\x59\x00\xa2\x31\xd0\xc7\xfe\xf3\xeb\xa1\xf9\x3b\ \xc8\xa9\xaa\xaa\xf3\xea\xa1\xc8\x00\xc0\xbe\x8b\x0c\x2d\x10\xaa\ \xa0\xea\xc6\x07\xdc\xc4\x53\x5b\x46\x06\x28\x83\x4f\xcb\xb4\x0a\ \xdc\xbc\x07\x68\x00\x7d\x00\x06\x78\x70\xbd\x17\xb7\xad\x9b\x8b\ \x23\xae\x90\x03\xe1\x36\xb2\x0f\x8a\x2f\x63\x23\x43\xc7\xe7\x0e\ \x60\x70\x06\x6b\x7b\x1c\xd6\xfb\x4b\x70\x00\x07\x67\x90\xc8\xa9\ \x05\x07\x78\xfc\x87\xd7\x79\x99\x98\x29\x95\x7e\x3c\xbb\x3b\x2c\ \xc8\x31\x90\xbf\x95\xb9\x07\x3c\xac\xbb\x38\xab\xb3\xe0\xa9\x0f\ \x47\xbc\xa1\x4a\xac\x19\x1b\x39\x96\xc9\x1b\xbd\x43\xea\xb0\xce\ \x3b\xc5\x37\x2a\x9b\x56\xec\x14\x07\x58\x64\xee\x10\x0f\xff\x79\ \x90\x9f\x32\x75\x5a\x47\xc6\x08\xd1\x9c\x62\x03\x7f\x07\xe7\x0e\ \xee\x1c\x04\xf8\xb0\xba\xb1\xd1\x07\xe3\xcc\x06\x5e\x50\xa2\x2d\ \xbc\x04\x64\xf0\x87\x4f\x36\xa6\xa3\x9a\xb3\xf3\xcb\x05\x1e\xda\ \xb3\x68\x5a\xbf\x4f\x56\xcc\xc8\xec\xa1\x56\xc0\xbf\x39\x8b\x0c\ \xa4\x00\xc0\xfa\x80\x0c\x32\x70\xa1\xf2\xda\xc8\xbb\x41\x8e\x1c\ \x60\x0d\x96\x80\x09\x06\x7b\xb0\x0c\x7c\xc9\xec\xc9\xa7\x4f\xec\ \xb4\x34\x28\xac\x77\x80\x02\xec\x80\xfe\x31\xd7\x0b\x67\xf9\xe2\ \x05\x16\x83\x31\x20\x00\xca\x2f\x37\x55\xa8\xec\x12\x4a\x18\x0f\ \x60\x30\x8f\xa5\x71\x7c\x60\x80\x0f\x78\x80\x07\xb1\x7c\xa4\xd7\ \xfb\x4b\xa9\xe5\x05\xbb\x1c\x56\x7a\xe5\xb2\x97\xc9\xa1\x02\x1d\ \xc8\xa9\x9a\xb3\x69\xea\xa1\x93\x59\xcc\xf9\x8b\xc8\xdc\xa9\xaa\ \x39\x0b\x9e\x67\x40\x0a\xf8\x40\x06\x13\x6d\x95\x13\x7d\x1c\x1b\ \x69\x0d\x02\x2b\x04\xd1\x3b\xac\x52\xfc\xb4\xdb\x9c\xc9\x17\x92\ \x06\x7c\x80\x04\xb1\x70\x07\xa4\xe6\x14\x29\x80\x02\xee\x00\x02\ \x39\x06\x02\x63\xc3\x2b\xc6\xe1\x1e\x66\x00\x06\xf5\x2c\x18\xae\ \x60\xa5\x39\x61\x00\xf1\x80\x02\x60\xb0\xd7\x07\x07\x06\x6a\xe0\ \x0e\x28\x30\xc3\x6e\xfc\xc9\xb0\xe5\x57\xf3\x70\x06\xef\xbb\xae\ \xf2\xea\x64\xc8\x9c\xaa\xa3\xfa\x06\x4f\xa6\xd0\x0b\x3d\xa2\xb0\ \x0a\xc8\x4d\x1d\xb8\x52\x6d\xda\x3c\xdc\xaa\xfa\x40\x0a\x67\xb0\ \x0f\xa2\xa0\xaa\x94\x39\xd1\x17\xba\xc4\x92\x50\x0a\xb5\xc8\xb4\ \xc2\x9a\xd6\x98\x3c\xb9\x08\x0b\xc5\xd7\x5c\x04\xa8\x40\x93\x3d\ \x40\x9f\x33\x71\x0a\x79\xc0\x0e\x60\x80\x02\xc9\x22\xc7\x8c\x72\ \x31\xe9\x3b\x29\xee\x10\x6c\x87\xfe\xf2\x12\x83\x74\xd8\xa0\x59\ \x07\x3f\x83\x8b\x88\xdd\x95\x41\x67\x0d\x67\x90\xcf\x5e\xa0\x7e\ \x5e\x20\xcf\xd3\x31\x8e\xb0\x68\xaa\x02\x1d\xda\x1e\x5a\xd0\xb1\ \xdd\xbf\x51\x6d\xa6\x3c\x3c\x95\xa6\x2d\xcc\xef\x8d\x0c\x64\xb0\ \x0f\x86\x14\x03\x98\x39\x99\x7b\xd0\xc8\x16\x5d\x1a\x2d\x20\x09\ \x98\xe0\x0f\x58\x08\xac\x35\x78\xc9\xdb\x0c\xc1\x8e\xcb\xbc\xf6\ \x19\x0b\x33\xc9\x07\x92\xcb\x28\x77\x70\x07\xec\x80\x0a\xa0\x09\ \x9a\x1a\x03\x06\x5f\x99\xd3\xbc\xd2\xe1\xa2\x27\x7c\xf3\x9c\x63\ \x45\x80\xce\x09\xc1\x7d\x5e\xb0\x70\x16\x83\x02\x76\x54\x07\xf4\ \x87\x8b\xee\x00\x28\x59\xb0\x0f\x67\x50\xa2\x71\x3c\x03\xfb\xfc\ \x20\xf9\x64\x0c\xd6\x60\x05\x1f\x39\xaa\x4f\x2d\xa2\xeb\x0d\xab\ \xb0\xda\xb3\x3d\xcb\xc3\xf1\xfd\xc3\xc3\x6c\x05\xf5\xfa\xb3\xf1\ \xad\x0f\x4b\xb0\x04\xfa\x50\x99\xf6\x2d\xd1\x18\x3a\xdb\x15\xca\ \x05\x98\xb0\x05\xfe\xa0\x8b\x21\xed\x9e\x96\xbc\x70\x93\x7b\x20\ \x4e\x81\xac\x77\x90\x07\x48\xd0\x7a\x3d\x90\x07\xa7\x60\x35\x56\ \x63\xdc\x28\x40\xc1\x14\x7c\x00\x07\x60\x00\x20\x80\xdc\xd8\x07\ \x02\x6a\x5e\x04\xc6\x8d\x0a\xfe\xd2\x47\xc1\xa2\xd2\xba\x78\xa1\ \xa9\x3a\xc3\x66\x3d\xb3\x2a\xf1\x50\x07\x97\xe2\x0e\x4c\x70\xd7\ \x20\x10\xd4\x5d\x40\xcf\xbf\xd4\xda\x9f\xbc\x0f\x14\xb9\xae\xdc\ \xb9\xe3\xa4\xea\xe3\x46\x6e\xa6\x81\x6c\xe4\xa9\x1d\xd5\x46\xae\ \xc3\x3b\x1c\x03\xbe\x4b\x06\x46\x8e\x0c\xf8\x00\x07\xfa\x4c\x99\ \xe0\x89\x0c\xfd\x8d\xa1\x15\xda\xc8\x58\xee\x0f\x5b\xbe\xb8\xb6\ \xae\xbc\x36\x38\xd2\x62\xde\x66\xb9\x3d\x52\x34\x99\xe7\x7a\x6e\ \x35\x14\x9e\xd3\x07\x10\x7d\xd2\xb7\xe6\x89\x76\xd2\xf3\xb8\x9b\ \x78\x91\x06\x66\x1b\x12\x60\xe3\x14\x2f\x8d\x31\x76\x5d\x88\xed\ \x15\x96\xbb\x51\x65\xfc\x4a\xb8\x33\xb0\x0f\x31\x00\x27\x98\xce\ \x0c\x96\xf9\xb2\x55\x49\xaa\xf1\x7d\xa6\xf1\x4d\xe4\xa0\xee\xe9\ \xf3\xfd\xc7\xb3\x1b\xc0\x3f\x4b\x99\x4e\x3e\xbc\xf6\x8d\x0f\xfb\ \xe0\xea\x55\x5e\xe5\x92\xe0\x0f\x49\xfb\xab\x4d\xcc\xb8\x97\x91\ \x2c\x08\xdb\xb8\x4e\x21\x14\xd7\x77\x0a\x6d\x76\x0a\x69\x80\x0a\ \xc8\x2d\xa8\x69\x30\xe1\xb0\x57\x04\x77\x60\x00\xca\x1d\xe8\x24\ \x7e\x10\x3f\x31\xac\x08\xdf\x33\x78\x6e\xd7\x8e\xfd\xa6\x6f\xfb\ \x25\x38\x96\x2f\x7e\xe5\xfe\x05\xc4\xfb\x20\x2f\x3b\xaa\x36\xeb\ \xcb\xab\x5a\x95\xeb\x1d\xcc\xf5\xfb\xde\xdc\xb9\x07\xa8\x4d\xbf\ \x1f\xaa\xc8\xef\xbe\x04\x39\x80\x0f\x00\xfc\xe4\x3f\x2b\xdb\x18\ \x6a\x95\x59\x4e\xeb\x04\x5e\xe0\x36\x7a\x97\x17\x82\xcd\x81\x33\ \xac\x77\x71\x0a\xac\x37\xdc\x92\xab\xf0\x08\x5f\xe6\xa8\xa0\x7a\ \x13\x2e\xd7\x6b\x9e\xf5\x2f\x23\x18\x07\x88\xf4\x33\x91\x06\x17\ \x7f\x10\x41\x2a\x9b\x27\xee\x05\x77\x70\x31\x19\xa3\xe2\x41\xf0\ \xa6\x4b\x12\x1b\x92\x80\xdf\x71\xcc\x06\x94\xfe\x1d\xe7\xba\xf2\ \xaa\x6a\x0d\x3a\x6e\xb3\x79\x3f\xb7\xec\xbd\xe4\x66\x6a\xa6\x33\ \xdb\xc3\x52\x5d\xaf\xbe\xeb\xcc\x8b\x8c\x0c\x70\xdf\xda\x33\x90\ \x03\xa6\xde\x9d\x2d\xe0\x9d\x94\xc9\x99\x98\x80\x09\xa5\x30\xe0\ \x05\x3e\xc9\x83\xc1\xdb\x4c\xef\xcd\xb2\x79\x80\x0d\x97\x6d\x07\ \x88\xf5\xc6\x7d\x07\xa8\x80\x0a\x13\x9e\x06\x6b\xce\xe6\x2f\x93\ \xfa\x6e\xb1\x86\x64\x31\xdd\x2e\x11\x0b\x17\x1e\x0f\x79\x70\x31\ \x76\x84\x31\x67\xaf\xe2\x5f\xd9\x5e\x11\xca\x44\x78\x00\x07\xbf\ \xa4\x0f\xd1\xdc\x05\x3a\x7e\xaa\xc6\xc0\x0c\x39\x9e\xae\xc6\x6f\ \xc8\x09\xfd\xf2\x7e\xfe\x1b\xcc\x33\xcf\xee\x44\xac\xc8\x89\x4c\ \xef\xc8\x90\x03\x33\x50\xcb\x05\xb5\xea\xdc\xc9\xe3\x53\x4e\xd5\ \x96\x80\xe5\x05\xee\xfa\x99\x1f\xc5\xdc\x5c\xd2\x0b\x27\xd7\x72\ \x7d\x80\x81\x27\xb9\x0f\xdf\x16\xa7\x40\xf5\x55\x2f\xd7\xc1\xbe\ \xfa\xab\xbf\x1d\x23\x8e\x98\x51\x9b\xfe\xf1\x70\xd2\x2a\x0e\xd3\ \x00\x01\x02\x46\x3c\x10\x69\x8a\x14\xf1\xd2\xa7\xcb\xc2\x85\x59\ \x66\xb0\xf1\xa2\x6f\x0f\x43\x8a\x0b\x3d\x74\xf1\x90\xd1\x98\xb1\ \x8c\x1a\x37\x7a\xd8\x68\x4c\xc6\x1e\x2b\x56\x62\xbc\x89\x81\x4c\ \xa5\xca\x18\x59\x62\xc4\xd8\x13\xd3\x0a\x97\x92\x29\xf5\xdd\x14\ \x85\x6f\xdf\x99\x9b\x4b\xd8\xcc\x9b\xc7\x86\x0d\x1c\x7d\x64\x52\ \x92\xd1\xc7\x93\x0c\x97\x3d\x1c\xf6\x58\xe2\x57\x07\x46\x11\xa1\ \x55\xad\x5a\x3d\x78\x30\xcd\x56\xae\x30\xb8\x7e\xfd\x8a\x2a\x56\ \x8f\x3c\x07\x4f\xa5\x39\xc5\xe6\x54\x1e\x54\xa8\xee\xdc\x41\x7b\ \x4a\xee\xdc\xb9\x6a\xaf\xde\xb5\xda\x63\xc4\x3f\xbe\x7d\xfd\xfe\ \x05\x1c\x58\x70\xdf\x1e\x54\xa9\x7a\x89\x87\x02\x85\x81\x78\x77\ \x40\xc0\xf5\x02\x02\x84\x97\x83\x5e\xc8\x54\xd4\x37\xaf\x88\x3e\ \x6b\x15\x19\x7a\xfe\x68\xb1\xb0\x05\x68\x90\x20\x43\x7e\x1c\xbd\ \xb1\xa4\x15\x92\x28\x57\xa6\x64\x19\x63\x35\x49\x93\xc8\x90\xde\ \xd4\x97\x03\x4e\x8e\x7d\x70\xae\xc2\xd9\x57\xf4\x4c\x8e\x25\xfb\ \xf0\x59\x69\xd1\xc2\x93\xa4\x2d\x05\xf1\xde\xcd\xaa\xd5\xeb\x74\ \x18\x30\xf2\xc0\x80\x0b\x17\x3b\xf6\x22\x69\x52\xc4\xe2\x93\x86\ \x4d\x11\xb8\x72\xef\xb4\x7d\x7b\xaa\x08\xdd\xba\x72\x9f\xe3\x4d\ \xf3\x68\xf0\x7c\xfa\x83\x1f\x51\x15\x4a\x7e\x31\x41\x2f\x77\x22\ \xc7\x4b\x0c\x05\x77\x40\x98\xc1\x0b\x3c\xfa\xe8\x6c\x21\x7c\x96\ \xd0\xe7\x22\xcf\xba\x48\x0e\xb4\xd1\x3c\x3a\x0d\xb5\x90\x46\xda\ \x43\x06\x0d\x65\x78\xa3\x43\x94\x5e\xb2\xcd\xa5\x97\x56\x83\x0d\ \xa9\x7d\x74\xd3\x6c\x86\xa0\xac\x9a\x67\x37\x38\x66\x98\x01\x8e\ \x33\x62\x30\xa6\x05\x2e\x24\xe1\x07\x86\xf7\xae\x8a\xae\xbb\xad\ \xbc\x4a\xa3\xba\x3c\xae\xab\xce\xba\xeb\x88\x3c\x08\x95\x14\xf2\ \x40\x2b\x8d\xf2\x9c\x7c\x2b\x2e\xba\xee\x68\x2f\xad\x1d\xab\x32\ \x60\xaf\xfa\xb6\xdc\xb2\xb0\x22\x1e\x3b\xe8\x31\x2f\xd2\x42\x08\ \x05\x30\x14\x03\xc3\x9d\x20\x28\x5b\xc2\x9d\x04\xbb\x20\xe3\x8c\ \x89\x1e\x6c\xfe\x41\x06\x6b\x26\x9c\x10\xb4\x8d\x64\x10\xe9\x34\ \x0d\x45\xfa\x73\xc3\xd5\x66\xaa\x09\xb6\x2c\x62\xb3\x42\xa5\xa4\ \x60\xbc\xf2\x21\xa1\xf6\x41\x66\x0f\x2e\x62\xc0\xa4\x0e\xca\xc6\ \x3b\x68\x3c\x4c\x7b\xcc\xaa\xab\xae\x84\xb4\xce\xc8\x3b\x86\x1c\ \x12\x2e\xf2\xf8\x40\x65\xaa\xb5\xca\x7b\x2b\xbd\xb9\xa8\x64\xcf\ \xae\x2b\xd9\x48\x43\x4b\x2e\x6f\x1d\xcc\x20\x54\xc0\x28\x0b\xba\ \x53\x02\x94\x2c\x1e\x3c\xbc\x68\x93\x8b\x0f\x18\x7a\x47\x94\x63\ \x1f\x8c\x89\x23\xd2\x46\x6b\x01\xd0\x3f\x2f\xdc\x50\x5a\x0e\xdf\ \x98\x6d\x43\x99\x8e\x22\x83\x0c\x64\x40\x24\x63\x1f\x57\x66\xad\ \x6a\x09\x6f\xf5\xd9\x67\x09\xc9\x0c\xea\x8e\x53\x77\x3d\x2d\xb2\ \x48\x20\x88\xbc\xc3\x48\x52\x8f\xb4\x4e\xc9\x3b\xcc\xda\x57\xad\ \x56\x5d\x8d\x35\x2d\x2b\xaf\xec\x01\x57\x83\x03\x8b\x65\x3d\x31\ \xdf\x3b\xcb\xca\x19\x04\x7c\xc7\x0c\x2c\x28\xfa\xc0\x41\xcf\x5a\ \x80\x09\x34\x08\x33\x4a\x4d\x43\xd6\x36\xf4\xb8\x24\xda\x3a\x3c\ \xe9\xdb\x8f\xfd\x94\x69\xa5\x6e\x4d\x74\x74\xd6\x19\x74\x2b\x62\ \x9e\x19\x96\xc0\x23\x08\x81\x82\x04\x12\xac\x76\x3f\x8d\x17\xe7\ \x50\x79\xfe\xb6\x97\xd4\x7a\xf3\xe8\x97\x56\x2a\xd9\xf8\xd7\x3d\ \x81\xdb\x23\x37\x05\x5b\x0f\x3e\xf8\x91\x5e\x35\x25\x17\x22\x04\ \x25\xc6\xe2\x03\xad\x1f\xfc\xcc\x24\x2b\x6a\x84\x16\x5a\x40\x4b\ \x02\x59\x06\x2b\xcc\x2e\xe9\x8d\x6f\x5f\x83\x49\xd2\x0c\xa9\x4d\ \x39\x29\x14\xab\xc6\x8f\x8d\x18\xcf\xd8\x22\x88\x3a\x40\x90\x0a\ \x88\xea\xc0\x02\xbc\x67\xea\xfe\x36\x68\xab\xec\xb6\x1b\xb5\xde\ \x51\x89\xa6\xea\x94\x7e\xcd\x3b\x5a\x2d\x81\x65\x25\x57\x2f\xa8\ \x2f\xef\x01\x86\x81\xc9\x2d\x73\x03\x2c\x36\xb0\x06\x74\x66\x26\ \xe6\xda\x83\x3d\x52\xda\x23\xa4\xe4\xc2\x1e\x49\x64\xd7\xad\xe8\ \x10\x76\x10\xd5\x3e\x69\xc4\x92\x98\xc2\x70\xcf\x98\xde\x20\x23\ \x87\x96\xab\xb6\x1b\x0e\x7c\xc8\xc0\x04\x1f\xbd\xeb\xd8\x3b\xe7\ \x9c\x3b\xf5\x14\x5e\x76\x0b\x07\xab\x5e\x21\x85\x56\xcf\x71\x2b\ \x1d\x3f\x7a\x72\xe0\x85\x82\x41\xbe\xcb\xa3\x16\xef\xb9\xcd\xab\ \x2a\x22\x9e\x3e\x36\xf8\x00\x0b\x33\xde\x79\x27\x74\x2e\x48\xaf\ \xc8\x18\x94\x4c\xca\x90\xcf\x8d\x22\x8c\xb6\xb5\xd5\x3c\x24\xf9\ \xa5\xda\x0d\x45\x86\x88\x60\x62\x12\xd9\xd4\xa6\x76\xfa\x80\xc3\ \x8a\xfe\xaa\x36\x8f\x25\x9c\xc1\x5b\x79\xc3\xc3\xde\xb6\x92\x29\ \x77\x31\x6f\x82\x3a\x7b\x17\x57\x14\x57\xaa\xc4\x19\x66\x60\x74\ \xa1\x1c\xf0\x8a\x30\x82\xa7\x7d\x8f\x4b\x09\x13\xdf\xf8\xec\x16\ \x8f\x0d\x74\xe1\x03\x66\xf0\xdc\x06\x98\xb1\x01\xf6\x31\xe3\x41\ \xfe\xab\xdd\x1b\xde\x06\xb6\xe4\x18\x23\x6d\x04\xc4\xe1\x4a\x84\ \x68\x1b\x6f\xa9\xc4\x25\x2c\x51\x59\x52\x6e\x92\x2e\x15\x6d\xaf\ \x08\x31\xc2\x83\xba\x28\x93\x29\xce\xf5\xa8\x70\xd1\xd9\x54\x56\ \xce\xa2\x38\x28\x41\x29\x72\xee\x11\x4a\x5d\xb6\x57\x15\x76\x94\ \xd0\x84\x5b\x0a\x1f\xb9\x4e\x01\x02\x1f\xa0\x6f\x21\x34\x04\x1d\ \x0d\xd9\x07\x3f\x86\xec\xe1\x5b\xff\x9b\xdf\x0e\xa3\xe5\x43\x20\ \xfa\x6f\x88\xa2\x40\x86\x28\x6e\xb3\xb2\x22\x76\x8b\x88\x3a\x59\ \x02\x1c\x96\x90\xc8\x31\x36\xf2\x3d\x86\xd9\x14\xbb\x78\x14\xc9\ \x20\x99\x4a\x71\xf5\xba\x9e\xd2\xac\xe7\x48\x36\x3c\xc2\x8c\x67\ \x9c\x4f\x0a\x78\x24\x46\xf2\x21\x62\x1d\x4c\xf0\x1c\x16\xd4\x07\ \xc7\x77\x78\x6e\x86\xd6\x58\x16\x43\x0c\xf9\x86\x43\xad\xcd\x64\ \xd5\x1a\xc9\x87\x86\xa8\x12\x40\x12\x91\x14\xb8\xb9\x09\x3e\x86\ \xfe\x67\x48\x74\x25\xb2\x81\xa4\x38\x43\x6f\x7e\x07\x3c\x99\x51\ \x4d\x84\x59\xf4\x91\xbb\x22\x79\x16\xc4\x41\x09\x3b\x44\x5b\x9a\ \xd2\xd2\xd3\xc8\x32\x82\xf2\x56\x8f\xb8\xc3\x55\xc8\x54\xb7\x53\ \x20\x66\x1d\x1b\x48\xe5\xe7\xd0\xf9\xb9\x56\x32\x63\x7d\xed\xa3\ \x88\x35\xba\x95\x05\xb5\x09\xd1\x5b\xb2\xc1\x96\xc7\x8e\xf2\x9a\ \x7a\xda\x46\x90\x48\xc1\xc7\x4d\x90\xd2\x2d\x10\xe9\x03\x1f\xc9\ \xd4\x07\x32\xb0\x15\x03\x7d\x2c\x61\x99\xb3\x52\x24\xcd\xbc\x30\ \x03\x2a\x5e\xc9\x30\x9d\xf2\x11\x57\x2a\xe8\xa3\xed\x94\x4a\x68\ \x6d\xc9\x43\x5a\xb6\x69\x1e\x15\x5a\xd4\x72\xde\xec\x12\xb9\x40\ \x70\xca\x60\xb4\x14\x9d\x33\xfc\x9c\xc4\x58\xc9\x84\x30\xbc\x03\ \x7e\xf2\xbc\x67\x4a\x60\x13\x9b\x93\x6c\xa8\x44\x2a\x89\xdd\x4e\ \x89\x68\x48\x32\x1c\x4a\x12\xb5\x09\xa8\x03\xb1\x65\x85\x38\xc1\ \x48\x81\x55\xf3\x82\x03\xe3\x84\x87\x75\x4d\x10\x3f\x17\xb5\xe0\ \x57\x7a\x76\x41\xae\x92\x67\x7a\xa4\x42\xc5\x90\xc4\x82\x8a\x57\ \x65\x12\x8c\x55\xcb\xc3\x27\x51\x0a\x98\x47\xcc\x8a\x3c\xeb\x68\ \x29\x18\x98\xe0\xd2\xcf\xd5\x75\x03\x66\x60\x02\x13\xdc\x71\xfe\ \x86\x33\x30\x21\x96\xd6\xb0\xcd\x1d\x75\xe8\x9a\xb5\x9d\xa4\x7e\ \x1e\x5a\x09\xd9\x60\x47\x58\x43\x22\x83\x35\xc6\x38\x1d\x19\x0e\ \x7a\x06\x40\xa6\x24\x99\xfb\xc0\xec\x12\x9e\x4a\xae\x99\x9d\x21\ \x08\xf8\xe0\xc7\xf1\x8a\xf4\x95\x8c\x02\x69\x70\x30\xf0\x5b\xbc\ \xa6\x13\xa4\x4f\x89\x35\x05\x4a\x62\x0b\x5b\x50\x81\x84\x3c\xf8\ \x2b\x72\xad\x3a\xeb\x8e\x46\xa8\xd6\xb5\xfa\x05\x85\xcf\x59\x4f\ \x3c\x58\x2a\x57\x26\xf8\x20\x18\x32\x54\x65\xfa\xcc\x10\x0c\x1f\ \x08\x48\xaf\xf0\x5c\x88\x1d\x8d\xd2\x53\xb4\xf9\xd1\xb1\x8a\x3d\ \xdb\x62\xcf\xa6\x21\x92\xa9\x4c\x36\x4c\x61\xea\x41\x83\x53\x94\ \xa1\xae\xed\x0c\x0f\xdd\x91\xcc\x54\xf4\x44\x2f\xd4\x21\x08\x7a\ \x8b\x0a\x10\x52\x1b\xaf\xf9\xd2\x57\xbe\xf2\x55\x6d\x75\x0e\x17\ \xaa\x3c\xa4\xe0\xb5\xa8\x6a\x4b\x5b\x90\x80\x84\xea\x65\x0f\x7b\ \xe1\x24\x57\x2c\x78\xdb\x5b\xbe\x8c\x40\x47\x78\x51\xd8\x70\xd7\ \xb1\x0e\x1f\x14\xf7\xb8\xea\x9b\x18\x16\x82\xa1\x57\x33\xf5\xa1\ \x0f\x59\x50\xc8\x42\xb8\x20\x48\xd9\x68\x48\x26\x24\x89\x4d\x87\ \xca\xc6\xa1\x40\x2d\x16\x44\x49\x0c\x82\x31\xf7\x31\xdd\xfe\x93\ \x70\x61\x24\x31\xc0\xc3\x66\xaf\x34\x0f\x2f\xec\x63\x58\x41\xd1\ \x0a\xdf\xea\x20\x04\xe4\xdd\xd7\xc8\x47\xf6\x1b\x10\x52\xa0\xe4\ \xfb\x12\x09\x54\xfc\x1d\x92\x7f\x63\x81\x0a\x54\xbd\x76\x2c\xb4\ \x75\x1c\x36\x91\x86\x5b\x72\x79\x8f\xc1\x83\x89\x45\x7e\xee\x62\ \xa6\x60\x1c\x20\x18\x13\x66\xa9\x71\x5d\xea\x39\x18\xfa\xc0\x1d\ \xc4\xed\xc3\x0a\x98\xb0\x85\xce\x7c\x00\x19\x45\x91\x4d\x86\x62\ \x42\x1b\x1c\x1a\xb6\x42\x82\x92\x5d\x49\x6c\x73\x86\x28\xc2\x08\ \x46\xc0\x81\x09\x9f\x7a\xb8\x07\x32\x68\x76\x3c\x31\xd2\xf1\x5d\ \x14\xb9\x13\xaa\x5e\x6a\x3c\x38\x93\xaf\x10\x34\xbd\x69\x21\x98\ \xa0\xd3\x46\xe6\x43\x0a\x42\xcd\xe4\x25\x2f\xe9\x48\x43\x32\x92\ \x7f\xc5\x12\x0b\x56\xb3\x7a\xb6\x48\x20\xeb\x5b\xc8\x0a\x39\x58\ \x5d\x29\x4b\x5f\xb6\x4f\xf8\xea\x16\xc6\x75\x1c\x60\x03\xeb\x00\ \xc3\x84\x5b\xba\x61\x35\xa3\xf3\xb8\xef\x58\x87\x3b\x3c\xdc\x07\ \x77\xb8\x23\x8a\x28\xc8\x02\x17\x24\x6b\xb2\xd8\x9d\x8d\x36\x04\ \xfc\x56\xea\xc0\x26\x3f\x94\x60\x8b\x24\x96\x75\xa8\xa3\xee\xe6\ \x58\x1e\x26\xc7\x0a\x0d\x3d\x74\x0e\xd0\x95\x5e\xa1\xfe\x00\x87\ \xd0\x78\xa0\x6a\x41\xa2\x13\x24\x23\x6f\xda\xd3\x9d\xee\x34\x1f\ \xf4\x0d\x04\x21\x94\xda\xbf\xfe\xbd\x17\xa9\xe6\x25\x65\x56\x23\ \xc1\x00\x03\x66\x75\x0f\x68\x7b\x1e\x24\x50\x09\x56\xdb\x7c\xe4\ \x49\x71\xfd\x97\x11\xf4\x00\xc2\x77\x88\x47\x5c\x5b\x0a\xd7\xb9\ \x32\xd7\xe3\x1b\x3e\xee\x06\xf2\x7a\x57\x30\xec\x6d\x32\x51\x5d\ \xd9\x4b\x3e\x94\x67\x3e\xfb\x4f\xc5\xa7\xa1\x5d\x4d\x90\x81\x0f\ \x3c\xb4\x0c\x46\x33\xda\xc3\xea\x74\xce\xd0\x45\x2e\x21\x07\x67\ \xb8\x73\xb8\x7f\xa2\x40\x99\xbd\xa8\x45\x78\xf0\x6c\xcd\xde\x2b\ \x41\x76\xf9\xe8\xbe\x42\xe0\x83\xa6\x3d\x3d\x75\xa8\xf7\x5b\xdf\ \xa1\x0e\xb5\x7f\xe7\x15\xe5\x7f\x13\xdc\x00\x3d\x00\xfb\xc1\xc7\ \xa2\x70\xb6\xc0\xfa\xe1\x5c\x7e\x8e\xd3\x26\x1e\x98\xfb\xe0\xe5\ \x0e\x68\xee\xc7\xc6\xd1\x6c\x61\x1f\xd4\xdd\xb8\xe8\xec\x43\x5e\ \x97\xad\x26\xcf\xf2\x75\xba\xae\x51\x79\xfd\x62\x42\x13\xd9\xf8\ \xef\x6b\x7b\xe2\x16\xa1\x9b\x68\xb7\x06\xc2\x44\xe7\xab\x93\x41\ \x16\xd0\x85\xd9\xa2\xa0\x24\x37\xba\x99\x99\x6f\x62\xe4\xee\x33\ \xc0\xa1\x08\x34\x7b\x6f\x04\x91\x57\x87\xd4\x6a\xfe\xe5\x47\x46\ \xa6\x3a\xd5\xa3\x1e\xf5\x14\xf4\xbb\xf5\x29\x60\x47\xd7\xbb\xce\ \x8e\x58\x7c\x3d\x1c\xe1\x00\x7b\x2c\x06\x0c\x76\x58\x9b\x9d\x2e\ \x6d\x29\xe9\x78\x16\xfc\xe5\x30\xdf\xe5\x57\x68\x16\xb6\x71\xeb\ \x5e\x5c\xbb\xb3\x74\x03\x1b\x4e\xb6\x87\x57\x20\x67\x61\x16\xf5\ \x1d\x2a\x6f\x82\x87\x46\x82\xcb\x49\x99\xc4\x5b\x6f\x90\x41\xb4\ \xde\x80\x48\x2f\xbc\xc8\xd0\xc5\x31\x4a\xf8\x1f\xdf\x02\x3b\x4e\ \x76\x78\x91\x3a\x1d\x5f\x93\x29\x23\xdf\x01\x67\x27\x45\x09\x02\ \x45\x97\xf0\x5e\xbd\x05\x81\xc8\x42\xa8\x2f\x9f\x41\xad\xfb\xe2\ \x03\x20\xd0\xb7\xaa\x83\x3d\x3e\x60\x87\x3a\x50\x40\x76\x60\x07\ \x14\x10\x35\x7d\x63\x07\x05\xac\x3d\x03\x30\x80\x24\xe8\x01\xdc\ \xeb\x81\x56\xe3\x3d\x86\x4b\x0f\x59\x6b\x38\xed\xa9\x0a\x05\x5b\ \x3b\xc0\x18\x81\x34\x22\x1f\xe1\x0a\x36\x34\x53\x3e\xe6\x2a\xae\ \x75\xd0\x05\x0a\x0b\x39\x91\x53\x0c\xc5\x70\x07\x14\xe8\x3b\xeb\ \x8b\x81\x77\x58\x2a\x40\x7b\x9b\x98\xc0\x21\xa3\xe8\x10\x64\x58\ \x02\x2f\x08\x8a\x02\x29\x8e\x80\x2a\x2a\x98\x28\xb7\xe4\x88\x81\ \xdb\xb8\x89\x6c\xf3\x21\x28\xdc\x89\x38\xe9\xfe\x31\x81\x92\xac\ \x05\x41\x88\x3a\xe0\x87\xa8\x18\x32\x7e\x20\xb2\x4c\xbb\x2f\xd5\ \x3a\xb2\x02\xe4\x03\x06\x64\x40\x21\x70\x40\x35\xb4\x40\x07\x74\ \x43\x03\x60\x07\x38\xb4\xc0\xaf\xc3\xc0\x24\xe8\xbd\x1e\x78\x84\ \xde\x33\xbb\x56\x99\xad\x59\x1b\x1f\x2f\x2b\xc1\xbe\x08\xb3\x5d\ \x2b\x9f\x09\x43\xa7\xe7\x83\xab\xba\x4b\x44\x0a\xd3\x85\x78\x60\ \x02\x33\x48\x9f\x0d\x00\x03\x00\x21\x88\xca\x40\xba\x68\x9b\x14\ \xea\xda\x10\x0f\xe1\x82\x4e\x24\xa0\xd3\x41\x17\xdd\x98\x28\x18\ \xe9\x31\xa3\x00\xaf\x11\x49\x1d\x9d\xb3\x82\x2c\x20\x24\x6f\x39\ \x9b\x3a\x79\xc2\x73\xe1\x89\xa0\x2b\x8a\x6e\xd9\x02\x7c\xc8\x9b\ \x82\xe0\x1b\x7e\x50\x03\x35\xe0\x34\x7b\x03\x40\x00\xc4\x2f\x79\ \x31\xb2\x52\x53\x32\x07\x9c\x43\x03\x50\x03\x39\x4c\x46\xda\x9b\ \x43\x0d\x3c\x38\xb0\xeb\x87\x3c\x7c\xb5\xf3\xb0\xc6\x01\x23\x25\ \x36\xb8\xb5\x40\xec\x8b\x47\x30\x08\x04\x13\x8a\xb7\xdb\x80\x7e\ \xb8\x2b\x18\x62\x2e\x18\xf4\x81\x45\x44\x33\xf4\xf9\x80\x5f\x2b\ \x08\x2f\x08\x1f\x94\x7b\x07\x7a\x02\x2a\xf0\xe3\x2e\x6c\xe9\x36\ \x93\xe0\x02\x56\x3c\x2f\xc3\x50\x24\xa5\xfe\x70\x3c\x91\xc8\xc4\ \xb6\xd9\x88\xd3\x19\x2a\x82\xfa\x9a\xe4\xe0\x82\xc0\xb2\x8d\x84\ \x62\x28\xe3\x40\x86\xe2\xc1\xc5\x2d\xc8\x45\x18\xa8\x83\x5e\xf4\ \x87\x8c\xf4\x07\x21\xf0\x87\x24\x00\x46\x4f\x33\xb2\x01\x94\xaf\ \x3c\x68\x32\xf9\x8a\x3a\x03\x00\x83\x64\x54\x49\x13\x40\x46\xdb\ \xcb\x40\xb0\xc3\x43\xde\x1b\x30\xb7\x38\x8f\x00\xf3\xc3\x30\xf2\ \x24\x6e\x6c\xb0\xc2\x48\x8c\xba\x89\x07\x30\x68\x29\x33\x10\xca\ \x8d\xf3\x81\x78\x88\x41\xb9\x8b\xc1\xbb\xfa\xb5\x78\x20\x13\x2f\ \x98\x28\x73\x59\x81\x2c\xc8\x82\x77\xf8\x16\xfe\x01\xbf\xa5\xf2\ \x1f\xc9\x4b\x24\x47\x69\x11\x7d\x48\xc8\x3f\x89\x16\xb3\x39\x14\ \x11\xc9\xc4\x95\xb9\xc5\xa2\x4a\x45\x58\x0c\x20\x6e\x81\x89\x38\ \xc1\x45\x32\xa0\xc8\x2d\xc0\x04\x4c\xf0\x87\xbd\x01\x02\x5e\xf4\ \x87\x6c\xd0\xc8\x24\x48\x82\x6c\xe0\xc8\x8e\xf4\x07\xaa\x43\x32\ \xfa\xb2\x0e\xd8\x5b\x8c\x24\x50\xc9\x36\x6c\xc9\xdb\x7b\x49\x0d\ \xec\x87\x7e\x80\xc9\x1e\x88\x35\xb7\x08\x30\x58\x49\x0b\x54\x18\ \xbe\xde\x1a\x81\xf5\x70\x8b\xaa\x38\x05\x14\x70\xa9\xe3\x4a\x47\ \x45\x8c\x41\xb8\x3a\x33\x54\x32\xb6\xfe\x75\x60\x4a\x8a\xf2\x82\ \x66\xab\x99\xe1\xd9\x82\x7b\x5a\x09\xfe\xf1\xa3\x2d\xd8\x87\x89\ \xc2\x14\xe0\xc0\x87\x2c\xc8\xb9\xd5\xc9\x90\xfc\x79\x42\x2c\x1c\ \x28\x56\x8c\xcb\x2c\x48\x48\x85\x5c\x4b\x94\x30\x45\xe6\xf8\x2c\ \xb9\x9c\xcb\xb9\x2c\x05\xba\xec\x9b\xbf\xcc\x06\x4f\xeb\x48\xbd\ \x34\x81\xc0\xe4\x4b\x7c\x9b\x3a\x13\x18\xb5\xf9\xba\x8e\x79\x69\ \x40\x0b\x54\x40\x05\x4c\xc6\x1e\xc0\xc0\xdb\x83\x4c\x0d\x04\xbb\ \x3c\x04\x3b\x9a\x0c\xb0\x99\xb4\xcc\xcc\xec\xad\xe2\xdb\xb5\xb7\ \x03\x03\x44\xa4\x30\xe4\x43\xb3\x33\x83\x2b\x18\xda\x80\x03\x60\ \x02\x14\x88\x07\x44\x90\x0c\x77\x78\x07\x77\x10\xa6\x2d\x28\x0a\ \x11\x59\x9b\x6e\xb3\x8d\x05\xa1\x28\xa1\x98\x19\x7d\x48\xb4\x98\ \xd0\x39\xc8\xd2\x90\x85\xbc\x2c\x9e\x50\x8a\xa1\x72\x09\xb0\xe9\ \xc4\x43\x89\x81\x49\x91\x4a\x4c\x90\x84\x2c\x08\x02\x3c\xe0\x87\ \xe7\x8c\x4e\x4c\x28\x85\xe8\x54\x03\xd2\xd3\x34\x8d\xe4\xc8\xbe\ \xc4\xce\xc0\xec\xc8\x7b\xf3\x34\x03\x50\xc3\x02\x74\xb2\x54\x2b\ \xcf\x1f\x65\x07\x13\x98\x43\xc4\x54\xcf\x70\x78\xcc\xc7\x84\x49\ \xc8\xe4\x3d\x9b\x9c\x2d\x85\x83\xfe\x15\x24\xa0\x4f\x94\x3a\xc1\ \xbb\xc0\x38\xfe\x54\xcd\xfd\x64\xc1\x09\xd3\x85\xe3\xea\x83\x73\ \x5a\xca\x78\x28\xc2\x36\x99\x27\xb8\xec\x16\x40\x52\xd3\x7b\x92\ \x50\xaa\xe8\xac\x48\x09\x1b\xc8\xea\x4d\x27\xa4\x09\xad\x8c\x91\ \xe2\x30\x0e\x42\xc2\x04\xde\x4c\x0e\x4b\xe0\x82\x3d\xcd\x02\x49\ \x10\x54\x4c\x20\x9e\x2c\xc8\x1b\x2e\x7c\xce\xb9\xf4\x87\x18\x8d\ \xd1\x30\xfc\xcb\x8d\xcc\xcb\x6c\x90\x54\xbf\x4c\x02\x13\x48\x82\ \xc0\xd4\x34\x1f\xf5\xce\xac\xab\xaf\x81\x63\x40\xac\x1b\xcf\xaf\ \x33\x80\xdb\x53\xd2\x25\x9d\x80\x97\x84\x4c\x27\x7d\xb5\x01\x43\ \x02\x29\x95\x0b\x40\xe4\xc6\xe2\xb3\x8a\xe3\x9b\x30\x14\x38\x25\ \x18\x14\x2e\x61\xf3\xcf\xc4\x98\xb0\xc6\x08\x36\x10\x28\x27\x10\ \x28\x42\x3c\x40\x50\x26\x90\xac\x5a\x24\x03\x41\x52\x09\x9a\x9b\ \xa2\x19\xc0\x83\x48\xe9\x08\x09\x49\x0e\x92\xe0\x82\xd5\xa9\xa5\ \x70\x69\xa2\x19\xb8\xbf\x56\x94\x84\x4e\x14\x54\x8a\xdc\x53\x41\ \x35\xd4\xe7\xdc\x82\x3a\xc0\x03\x35\x48\xd4\x8c\x44\xd7\x18\xdd\ \xc8\x21\xab\xd1\x48\xb5\x84\x49\xcd\x86\x4b\x15\x02\x8f\x54\x43\ \x21\x30\x80\xab\x53\xb2\x25\xfe\xc3\x17\xae\x83\x3d\xff\x9a\xc0\ \x0a\xb4\x40\x25\x2d\xd5\x25\xed\x01\x43\x40\xd8\x47\x80\x4c\x56\ \x55\x38\x56\x25\x2b\x89\xe3\x46\x6f\x1c\xa5\x09\x63\x02\x18\xbc\ \xd5\xfe\x94\x3b\x4a\x24\x50\x60\x05\x10\x2f\xf8\x09\x62\x59\x24\ \xbc\x89\x13\xf2\x52\x28\x95\x88\x13\xcf\x03\x0a\x3c\x28\x0a\x19\ \x60\x88\xd0\xc8\xd0\x44\xd9\x2e\x64\xf0\x50\xdf\xa0\xd0\xfb\x33\ \xa8\x06\x8d\xb6\x6f\x05\xd7\x41\xc5\x04\xe7\x34\x54\x2e\xf4\x07\ \x18\xf5\x87\x5e\x7c\xd7\x52\xd8\xc8\x60\xd4\x51\x1c\x95\x57\x8f\ \x4c\x82\x65\xcc\x54\x4f\xdb\x37\x4e\x45\xb5\xa0\x01\x58\x51\x73\ \x46\x94\x1c\xd5\x7e\x28\x55\x85\x7d\x4c\x84\x9d\x46\x99\x6c\xd8\ \x56\x85\xb5\x9c\xd4\xc9\x8a\x23\x44\x5e\xed\xd2\x74\xc4\x58\xff\ \x54\x4d\x8c\xc3\x38\xc4\x00\x90\x53\x48\x91\x27\x32\xd3\x28\x14\ \x85\x85\xea\x3c\xfc\xf0\x02\x7c\x98\x94\xa5\x70\x90\xf5\x93\x01\ \x69\x2b\x8a\x44\xc1\x03\x38\x48\xa0\xaa\x78\x19\xf9\x9b\xc5\x68\ \xcb\x82\x9e\xdd\xd9\x52\x90\x84\xb9\x54\x03\xe7\xf4\x87\x2e\x0c\ \x5a\xba\xf4\x45\x30\x54\x83\xbc\x34\xda\x5f\xcc\x4e\x78\x9d\x57\ \xa6\xdd\x4e\x23\xe5\x4b\xfe\xa8\xbd\x3a\x80\x0b\x95\xc2\x5c\x92\ \x7f\x0b\xd5\x51\x45\x55\x26\xed\x07\x84\xed\x81\x69\x64\xd8\xdd\ \x7b\x04\xb0\xab\x52\x6f\xda\xcc\xab\x58\x29\x8a\xdd\xcf\x46\x14\ \xae\x74\x7c\xbe\x30\x5d\x07\x02\x3d\x05\x44\xe8\x0f\x44\xf8\x15\ \x44\x88\x07\xdc\x24\x16\x95\x45\x0a\x51\x80\x8d\x9c\x70\x94\xa8\ \xca\x82\x8b\xb0\x86\x2d\x38\x03\x49\x10\x0d\x08\xc9\x1f\x2e\x50\ \x1b\x42\x73\xa0\x1c\x68\xa6\xaa\x60\x20\xcc\xfa\x39\x32\xb0\x02\ \x49\x40\x86\xb8\xe4\x07\xb9\x84\x5c\xc9\xdd\x82\x45\x95\xd1\x5e\ \xa4\xcb\x76\x75\xd7\xbc\xb4\xd1\x7b\xe3\x48\x49\xb5\x84\x4b\xe5\ \x4b\xbe\x0c\xdd\x7a\x4d\x82\x09\x48\x82\x58\xd8\x54\x7d\xe3\xd7\ \xa0\x09\x38\x25\x79\x43\x30\x08\x07\x03\xd0\xda\xd9\x4d\x55\xd9\ \x85\xcc\x28\x8d\xcc\x47\x80\xd5\x40\x94\x55\xa1\xf0\x02\xd3\x5c\ \x41\x61\xc3\xd8\x71\x44\x33\x14\xb8\x03\x44\x60\x17\xf5\x30\x50\ \xc5\x28\x53\xa4\x1b\x1e\xaa\x84\x9d\x86\xf2\x8d\xcf\x23\x03\x8b\ \xe9\x82\x2c\x60\x10\x97\x5d\x1d\x1f\x3a\x94\x93\xd5\x56\x9f\xe0\ \x11\x57\x48\x24\xa2\x58\x1b\xd0\x12\xa6\xc9\x85\x4e\xa3\xcd\x48\ \xe8\x1c\x5a\x8d\x3c\xfe\xda\xfc\xcd\x86\x52\x90\xd4\x1a\xdd\xb4\ \x48\x9d\xe2\xd2\xbd\x4e\xbe\x44\xcf\x08\x36\x00\x23\xdd\xd4\x25\ \x51\xb2\xfe\x12\x63\xa2\x21\xe3\x21\x79\xc0\x81\x95\x60\x0a\xa6\ \x60\xd9\x05\xdb\x26\x25\xdb\xb2\x9d\x8a\xf1\x30\x50\xb8\x3a\xc4\ \x33\xbb\x3b\x73\x0c\x86\x10\x46\x33\x00\x01\x56\x4d\x79\xa2\x78\ \x70\x33\x38\x78\xde\x33\xb8\x3e\x1e\x14\x05\xcd\x33\x97\x37\x61\ \x08\x2e\xc0\x03\x7c\x78\x3c\xc8\x4a\x89\x83\xf2\x1d\x0a\xd5\x31\ \xa0\xe8\xca\x6e\x91\xbf\x2e\xc4\x87\x75\x8d\x4e\x27\xee\x64\x5f\ \xcc\xc8\x5f\xcc\x4b\x4b\x88\x57\x1b\xc5\xb7\x7a\x95\xd4\x8d\xf4\ \xc8\xea\xcc\x86\x09\x38\x80\x09\xc8\x86\x70\x30\xe0\x0b\xf4\x62\ \xd9\x8b\xb2\x7b\x19\x9a\x28\x43\x85\x38\x1c\x55\x30\x58\xd2\x25\ \x35\x04\x27\xed\x07\xdb\x85\xc9\xdc\xf5\xa6\x1e\x38\x5e\x10\x10\ \xae\xb9\x42\x27\x33\x1b\xb6\x60\x10\xca\x5f\x43\xb3\x10\x06\x83\ \x6a\x46\x81\x53\x98\x81\x72\x92\x5b\x2f\x10\x10\xca\x90\x47\xc0\ \xba\xcd\x27\x0a\x02\x2e\xe0\x1a\x63\xe0\x07\xbe\x5d\x34\x9a\x18\ \x34\xdf\xe1\xca\xf7\xb8\x1b\xde\x38\x83\x83\x7a\xaf\xf7\x0d\x5a\ \x25\x5e\x62\xcc\xfe\xa5\xe2\x77\x8d\x62\x52\x96\xe2\x50\xfe\xc5\ \x1a\xb5\x57\xbe\x9c\x00\x4f\xe0\x00\x75\x50\x07\x59\x96\xe5\x3a\ \x34\x01\xef\xb4\xe5\xfe\x32\x35\xa2\x59\x9c\x3c\x40\x46\x30\x50\ \x63\xd8\x8d\x5d\x27\x55\xb8\x98\xc4\x43\x63\x3e\xa3\x47\xd8\xd2\ \xa3\x44\xa7\xe5\x32\x44\x00\x45\xa7\x75\x78\x0b\xe1\xca\xe3\xfc\ \x84\xa1\x33\x51\x0f\x4a\x84\xdb\xde\x88\x0c\x42\xf6\x00\x2e\x38\ \x2f\x18\xe1\x0c\xae\xe9\x02\x46\xe3\x53\x20\x64\x45\xc9\x52\x26\ \x72\xe1\xb1\x3b\xe5\x2b\x78\x0b\x82\xf9\x85\x51\x7b\xae\xe7\xa1\ \xfd\x45\x35\x20\xe5\xa6\x26\xe5\x49\xf5\x67\x7c\x8b\xba\x4e\x0b\ \x4c\x4b\x50\x07\x86\x30\xe8\x40\x68\x65\x59\xee\x81\x2e\x3e\xdd\ \xae\xeb\x2f\xd8\x42\xb5\xd8\xe2\xe5\x24\xa5\xe0\x8b\xe6\xda\x8c\ \x0e\x66\xbd\xe0\xe8\xef\x19\x81\x47\x50\xdb\x0d\xab\xe3\x33\x3b\ \xae\xa1\xec\xd5\xe3\x05\x4d\x5f\x13\x4a\x33\x98\x44\x81\xa1\xc4\ \xe6\x15\x64\x84\xc0\x83\x68\xb3\x86\x43\x2e\x02\x38\xc8\x82\x58\ \x7a\x90\x85\x2c\x51\xe0\x9c\xb9\xde\x30\xba\xed\x69\x91\x88\xaa\ \x19\x24\xd6\xdf\x8c\x8c\x4e\xa3\xf5\x45\x4e\x2b\x05\x4f\xf0\x04\ \xa7\x96\x62\xfe\x29\xd6\xcb\x4d\xab\xb7\x4a\xb5\x6a\x0e\x60\x08\ \x0e\x30\x84\x6c\x08\x84\x09\x98\x80\x70\xc0\xc0\x2e\x06\x8f\xac\ \x5b\x5d\x55\xf3\x28\xb1\xe2\x65\x08\x0e\x07\x5f\x3e\xeb\x60\x56\ \xd8\x8c\xbe\xdd\x37\x8e\x58\x5d\x0d\xe9\x8a\xcd\x55\x95\x3e\x33\ \x54\x28\x5e\x8c\x03\xcd\xbd\x0e\x50\xa6\xcc\x0f\x10\x40\x84\x98\ \xa1\x6e\x1e\x23\x64\x77\xb8\xcd\x02\x49\x6c\x9c\x16\xb1\x00\x42\ \x06\x2e\x80\xac\x85\x44\x97\xc3\x6d\xa4\xa2\x43\xba\xf7\x65\x62\ \xcc\xa6\xdf\x76\x25\xb2\x8b\xb4\x04\x0e\xf8\x6c\xa7\x8e\x62\xd1\ \x3e\xda\xd4\xea\x34\x49\x55\x87\x82\xc6\x6a\x03\x7e\x6d\xd7\x36\ \xe0\x1e\xf0\xe2\x09\xcc\xba\x31\x0e\xab\x7b\xd9\x65\x34\x7e\xcc\ \x82\x3d\x58\xaf\xcd\x68\xc8\x6c\x6b\x13\x02\xca\x73\x02\x50\x26\ \x60\xca\xe3\x45\x69\xb6\xad\xd5\xb7\x3b\x80\xbd\x2e\xde\x81\x79\ \xa2\xab\x72\x4a\x03\x11\x26\x3c\x38\x8c\x77\x50\x6c\xae\x61\xa8\ \x95\xe9\xc4\x58\x3c\x83\x22\x8c\x34\x97\xf9\xb9\x78\x76\x51\x4f\ \x56\x62\x61\x94\x2f\x7f\xf0\x6c\x4f\x90\x54\x29\xb6\x84\x7e\x36\ \x5a\x8f\x34\x81\x24\x13\x82\x56\xf6\x04\x83\x46\xed\x85\x50\x87\ \x2e\xf6\xfe\x6f\xf4\x44\x4f\x23\xed\xe2\x7c\xcd\x3a\x25\x29\xf0\ \x7b\x69\x49\x09\xb6\x72\xdc\xeb\x5a\x06\x6f\x55\xb6\xd6\x49\xbe\ \x30\x84\x67\x5e\xca\xeb\xb9\xf0\x6a\xae\xd5\x32\x07\x36\x93\x16\ \x23\x84\xb8\x83\x87\x98\x01\x47\x74\x07\x63\x5d\x81\x7d\xa0\x8a\ \x25\x78\x07\xee\xfe\x0c\xb7\xe4\xab\x23\x32\x91\x1c\x30\xc2\xf2\ \xfe\xc7\x89\xbc\x5f\x5f\xdc\xdc\x41\x0f\xc3\xea\x18\x72\xcf\x96\ \xd7\x7e\xce\x48\x00\xd6\xb4\x4c\x33\x01\x4b\xd0\xea\x6c\xc8\xef\ \x85\xe0\x80\x70\x58\xe8\x1e\x98\x80\xaf\xf3\xe2\x27\x7f\x72\x56\ \x8b\x72\x80\x93\xad\x89\xd6\xda\x7e\x48\xe3\x35\x7e\xcc\xdb\x95\ \xc6\x07\xbf\x9c\x11\x88\xbb\x8d\xd3\x05\x44\x08\x23\xe6\x15\xd3\ \x03\xd0\xd2\x75\x78\x40\x88\xb3\x8a\x00\xe1\x55\x30\x68\x25\x6b\ \xe8\x83\x77\xf0\x58\x3c\x20\x67\x3b\xb7\x08\x61\x3a\x28\x3c\x30\ \x8a\x86\x6c\xf1\x71\x71\xa4\x43\x83\xb7\x9a\x19\x32\x7e\xe3\x37\ \xd2\xfe\x1b\x18\x10\x02\x4b\xf8\x6c\xbd\x4c\xe5\xa8\xe6\xc8\x20\ \x8f\xba\x56\x9e\x57\x7e\x4b\x82\xfd\x5e\xe8\x72\x37\xf7\x85\xae\ \x40\x27\x07\x0f\x2a\x7b\x2d\xdc\xe6\xe5\x0c\x24\xd8\x81\xfd\x65\ \x83\xfe\xdd\xe8\x2e\xff\x87\x47\xc8\x58\xe5\x55\x0b\x47\x6c\x66\ \xff\x44\x85\x5c\x5d\x87\x7f\x8f\x9c\xab\xf8\x60\x60\xf3\x81\x65\ \x63\x02\xf6\x79\x87\xfc\x03\x81\x2c\x20\x76\x86\xb0\x86\x80\xa2\ \x39\x3c\x28\xbc\x41\x63\xa2\x17\xe7\x2c\x84\x00\x02\x81\xa8\x8e\ \x23\xfb\x9b\x22\x80\x01\x7f\xc0\x76\xbf\x4c\x65\xfe\xfd\x45\x71\ \x87\x65\x00\x3c\x08\x03\x38\x72\x75\xa8\xd4\x73\xf7\x4e\x13\x40\ \x60\x99\x37\xd2\x58\x98\xc0\x09\xdc\x65\xd7\xe2\x65\x94\xcc\x40\ \x8a\x76\x4c\x3c\x9c\x46\x27\xa5\x52\x55\x3f\x98\x11\x08\xcd\x75\ \x60\x5e\xe6\x45\xe9\x00\xed\x55\x8c\x8b\x07\x76\x88\x07\xb7\xc8\ \xad\x30\x5a\x29\xb9\x2a\xde\x37\x8f\x07\x45\x0a\x82\x33\x10\x56\ \x87\x7f\x78\x11\x8b\x4d\x9a\x3b\x0e\x49\xa9\x0d\x13\x71\x28\x47\ \xe2\x31\x78\xf4\x82\x6a\xb7\x48\x20\x90\x8a\xaf\x18\x72\x52\x0e\ \xcc\x79\xad\xe2\x46\xe7\x34\x13\x98\xd7\x20\x9f\x8a\x22\x10\x82\ \xab\x56\x87\x40\x80\x79\x50\xe5\x03\xf0\x40\x60\x9b\x67\xc9\x9b\ \x7f\xad\xd7\xaa\xf2\xac\x9d\x60\xc6\xb4\xe8\x62\xb6\x77\x7c\x97\ \x3b\x2d\xb5\x55\xd5\xcc\x55\x4a\x74\x5b\xe5\xdd\x9c\x2c\x45\xa5\ \xfe\x3e\x38\x13\x00\xa1\xa8\x99\x89\x0c\x32\x38\x71\x3b\x97\x36\ \x61\x72\xa0\xf0\x13\x89\xd3\x79\xc8\xc5\x1b\xa3\xf2\x83\x47\x81\ \xe0\xf8\xd1\xf3\x1b\x9f\x89\xfb\x55\xce\x4b\x00\xb6\xd7\x60\x14\ \x60\x90\xc4\x2f\x20\x30\x00\x83\x56\x87\x09\x08\xfc\xab\x33\xfe\ \x9b\x2f\xcf\xd8\x43\x01\x89\x86\x3d\x0b\xa4\x68\x5f\x3e\x00\xad\ \xc5\xf2\x54\x0d\x7a\x85\x23\x7a\xa8\xe9\x07\x3a\x36\xcd\x5a\x47\ \x3e\xff\x54\x8c\x09\x63\x87\x81\xff\xcc\x3c\x5e\x87\x3e\x00\x53\ \xd5\x7c\x88\xb4\xc7\x03\x45\x7e\x78\x6b\xc8\x82\x05\x5d\x8a\x69\ \x65\xaa\xce\xe3\x24\x36\x70\x05\x38\x90\x8c\x19\x80\x01\x10\xd8\ \xf8\x8d\x2f\x32\xfa\x02\x08\x21\x42\xfc\x0d\xcc\x96\x2d\x49\x12\ \x13\xd9\x04\x0a\x01\x22\x24\x49\xb6\x09\x0b\x81\x14\x49\x03\x03\ \x48\x12\x4b\xea\x3c\x05\x12\x62\xe2\xe3\x47\x3e\x7c\x42\xc6\x12\ \x29\x92\x1d\x1f\x94\xec\xd8\xa5\x48\x81\x0a\xc5\x4a\x03\x06\xc2\ \x19\xe8\xd7\xef\xc0\x81\x7e\xe1\xc2\xe9\xb4\x69\xb3\x47\xbf\x1e\ \x23\xfe\x11\x2d\x6a\xf4\x28\xd2\xa4\x4a\x8b\xf6\x5b\x17\xec\xe9\ \x3a\xa7\xc1\x9c\x6e\x30\xb3\xe1\xea\xd3\xab\x1b\x9c\xf6\x0b\xfe\ \xd6\x2f\xde\x1d\x36\xa7\xc6\xc6\x8b\xb7\x0e\x0c\x8a\x75\x66\xba\ \x74\x31\xc3\x24\x1e\x9c\x22\x33\x96\x64\x61\x6b\xf7\x2e\xde\xbb\ \xd6\xb2\xe0\xeb\x8b\x8f\x4c\x16\x2b\x64\xce\x2c\x81\x33\xc3\xf0\ \x3c\x36\x8a\x17\x33\x6e\xac\xf8\x30\x1e\x3c\x20\xbc\xa4\x01\x01\ \xc4\x32\x90\x3a\x40\x36\x5f\x84\x71\xd1\xa1\x10\x83\xfe\x26\xf8\ \xcb\x66\xc2\xa3\x40\x85\x96\x2c\x4d\x10\x02\x83\x4d\x91\x22\x7c\ \xd4\x75\xe1\x60\x28\x24\x48\x13\x9b\x4d\xf2\x2e\x99\x32\x65\x0a\ \x76\x28\x82\xb3\x93\xb9\x53\x27\x4e\x9d\x3d\xc0\x00\xb5\xf9\xe8\ \xe7\xd0\xa5\xd2\xa7\x2b\x1d\xd1\x14\xea\x3a\x5d\x51\x83\x55\x6d\ \x6b\xe6\xe9\xd3\x03\x53\xc1\x44\x05\x9b\xf8\x14\x08\x10\x77\xd2\ \x92\x07\xb3\x96\xad\x99\x77\xf1\x66\x78\x09\xf2\x21\x2f\x7e\xbc\ \xd6\x30\x2d\xc1\xb3\x6f\x89\x17\x78\x90\xa1\xcf\x19\x78\x9c\x71\ \x46\x0e\x86\x39\xb6\x60\x63\x73\xa5\x97\x1e\x0c\x96\x69\x56\x87\ \x66\x9d\x79\x06\x5a\x69\xa2\x91\x96\x10\x43\x06\x49\x94\x10\x0c\ \x45\x28\x06\x04\x6d\xea\xb4\xc6\x87\x47\x21\x01\xd1\x92\x49\xbe\ \xad\x04\x9c\x70\xc4\xc9\x04\xc6\x4c\x3c\xdd\xc4\xd3\x71\xfe\x3e\ \xf5\x63\x08\x8f\x8f\x44\x47\x1d\x90\xd4\x8d\x00\x1e\x79\xeb\x20\ \xb2\x5d\x55\x56\x4d\xb5\x5d\x54\x4d\xa2\x72\x07\x58\x20\xc4\x83\ \x02\x95\x67\xf5\x01\x46\x30\x66\xac\xf5\x41\x7c\x78\xd0\xb7\x42\ \x7e\x61\xb2\x25\xc9\x3e\xf4\x79\x21\xe2\x0c\xfa\x20\x43\x06\x9b\ \x04\x26\xc8\x20\x9c\x8a\xc9\xf5\xa0\x67\x12\x52\xc8\x19\x0c\x69\ \x6c\x26\x50\x86\x06\x45\x84\xda\x43\xd9\x58\x62\x9a\x40\xaf\x29\ \x06\x83\x3a\xb6\x35\x94\xa2\x8a\x29\xf0\xe1\xa8\xa3\x26\xad\x14\ \x1c\x71\x31\xcd\x34\xd3\x8d\x38\xf6\xe4\x93\x21\x3b\x1a\xf2\x63\ \x90\xa1\x2a\xb5\xc1\x54\xdc\x2d\x19\x55\x55\x1f\x90\xda\x24\xab\ \x69\x35\xe9\x55\x30\x7d\x9c\xe5\xde\x95\x60\x80\xc1\x44\x56\xef\ \xf8\xe0\xe5\x19\x58\x88\x99\x1f\x17\x78\x88\xc8\x98\x17\x7f\xad\ \x39\xa0\x3e\xfb\xc0\x01\x47\x62\x89\x31\xe6\x8a\x88\xf3\xcc\x33\ \x03\xb5\xce\xc2\x56\x04\x0c\x5e\x78\x46\xa1\x10\x15\x7a\x76\xd1\ \x40\x7d\xfa\x69\x02\x87\xaa\xb5\x06\x84\x67\x69\xc4\x06\x83\x1a\ \xea\xa8\xa3\x1b\x10\x22\xed\x06\x84\x09\x90\x3e\x2a\xa9\x09\x2a\ \x51\x5a\x9c\x01\x34\xee\x74\xc0\x4e\xeb\xe8\x38\x70\xfe\xa7\x9f\ \x8a\x7a\x70\x52\x07\x38\xb5\x0e\x56\x52\x99\x81\x85\x96\xaf\x9e\ \x1a\x55\x1f\x1b\x1c\x60\x95\x78\xe1\x9c\x65\xf1\x3a\x28\x04\x63\ \x2b\x13\x7d\x30\xe1\x0e\x80\x5b\xfc\x9a\x1f\x3f\x00\x2e\x46\xdf\ \x12\xfa\xf8\x75\xc6\x3e\x31\xff\x47\xed\x12\x33\xb0\x71\x58\x11\ \x09\xba\x02\xc7\x12\x3d\x03\x38\xec\xb5\x16\x81\xc0\xad\x66\x9b\ \xed\xe9\x4f\x12\xfe\xf4\x99\x90\x3f\xa7\x0d\x24\x91\x01\x14\xad\ \x7b\x51\x36\xee\x06\x02\xaf\x10\x28\xd2\xcb\x1b\xd7\x2a\x3d\xca\ \x4e\x1d\x32\xd6\x08\x06\x72\x3a\xe6\x94\x93\x8e\x3e\x22\xbc\xb6\ \x51\x23\x58\xc7\x9d\x56\x57\x3d\x8c\xd5\x54\x5a\x61\x29\xb7\x55\ \x4d\x45\x85\x96\x59\x7d\x50\xd9\x87\x5b\x4c\xbc\xf3\x0e\x0a\x5e\ \x80\xd0\xc7\xc9\x79\x59\xb3\x82\x3b\xfb\xa0\xb9\xc4\x3e\x07\x9e\ \x91\x6c\x61\x90\x23\x08\x47\xcc\xcc\xf2\x3c\xcf\x81\x32\xc3\x5c\ \xf3\x0c\x40\xc7\x66\x51\x1d\x02\xdd\xb9\xa8\x40\x06\x25\x7d\x50\ \x6a\x81\x1e\x94\x04\x10\x69\xc8\xa9\x67\x12\x25\x4e\xe0\x10\xbd\ \x5b\x8f\x64\xc2\xbd\x7c\x94\x14\xcb\x8b\x2c\xed\x5b\x9c\xbf\xc7\ \x25\x77\xbc\x4f\x40\xf5\xa0\x36\xdb\xcd\x13\x35\xfe\xc2\x01\xa4\ \xc2\x0d\xf1\xaa\xdc\x69\xa9\x95\x96\xdf\xad\x03\xd6\x94\xeb\x9c\ \x52\xc4\x1d\x4c\x6c\xbf\x0e\x13\xe5\x6f\xd0\xc7\x19\x70\xe0\x71\ \x5f\xe2\x7a\x95\x7f\xc6\x63\x93\xe3\x13\x79\x81\xd4\xf2\x9c\xc3\ \x12\x67\x20\x93\x3e\x1c\x04\xf6\x8f\x8c\x3e\x08\x04\x33\x3c\x00\ \x88\x32\xb1\x61\x83\x45\x2e\xc2\x2d\x86\x2c\x8a\x20\xa5\x49\x9a\ \x09\x9a\x76\x9a\x24\x4c\x20\x09\x0d\xa1\xc8\x62\x8a\x00\x84\x40\ \x74\xc1\x5d\xb9\xc1\x0d\x6f\xe2\x25\x12\x03\x14\x27\x5f\x94\x72\ \x09\x0a\x8c\x13\x8e\xe5\xdc\x04\x27\x1b\xb8\x89\x8e\x94\x67\x30\ \xe7\xd1\xf0\x1f\x9d\x7a\xca\xc3\xb0\xb0\x15\xaa\x58\x25\x49\x5c\ \x9a\x0a\x2a\xc6\x02\x25\xb0\x9c\xc2\x0b\x21\xab\x52\xc8\x98\xb1\ \x01\x77\xc0\x21\x1e\xec\x6b\xdf\x98\xdc\x81\x07\x2f\x28\xc6\x0b\ \x01\xdc\x47\x10\x0e\xe4\x85\x69\x2d\xeb\x30\xfa\x20\xc3\x7f\x72\ \xf0\xc5\xfe\xc5\x60\x40\x67\xc0\xc7\x19\x82\xb0\x84\xc9\x50\x26\ \x0d\x7a\x32\x1a\x85\x4a\x07\x1a\x06\xa6\x8e\x43\xa9\x31\x08\xbc\ \xdc\x18\x9b\xd8\x6c\x90\x03\x26\xfa\x60\x6e\xee\xc5\xa2\x8f\x18\ \x20\x5f\x28\x49\x41\x3c\xc4\xb6\x13\x1c\xe1\xfe\xa4\x91\xc9\xfb\ \x89\x21\x98\x57\x43\xe7\x8d\xe0\x39\x1b\xd0\xa1\xf4\xe0\xa6\x25\ \x88\xa9\x6a\x1d\xa8\x40\xc4\x10\xcd\xb2\xbd\x78\x5c\x45\x56\xe5\ \x7b\xc7\xc3\xbc\x84\x87\xf7\x40\xf1\x03\x24\xb3\x59\xfc\x60\x76\ \xa0\x9a\x49\xcb\x0b\x86\x11\xa3\x3e\x12\xb4\x84\x01\xfd\x6f\x40\ \x68\xc4\x47\x10\x82\x00\x21\x10\xc0\x80\x5b\x6a\xb8\xe0\xa2\xe6\ \xd8\x34\x81\x20\x04\x21\x12\xc1\x63\x1d\xf2\x94\x40\xcf\x28\xc4\ \x6a\x09\x01\x24\xef\x1c\xb5\xa2\x96\x18\x32\x78\x2d\x91\xd1\x22\ \x5b\xd8\xc8\xe4\xa4\xad\x1f\x92\x9c\x64\x0d\x47\xd0\x43\xf0\x80\ \x67\x03\x5c\xda\xca\x1d\xc8\xd2\xa4\xe8\xbd\xb0\x2a\xa4\xba\x15\ \x33\xcc\xc0\x8c\x78\xb0\x01\x0e\xbe\x82\x62\x5b\x48\x06\xb4\xb9\ \xf4\x27\x66\x54\xbc\x99\x61\xf2\x07\xb3\x65\xe1\x92\x67\x6d\xea\ \x4b\x1a\x83\x59\x07\x62\x4a\x48\x0d\x04\xb9\xa0\xd1\xe6\xd8\x3a\ \x3c\x1e\x84\x5c\x7c\x40\x57\x45\x60\xe0\x11\x8d\x6c\x24\x10\x13\ \x00\xc9\x49\x03\x79\xaf\xdd\x9c\x24\x25\x2b\xc9\x83\x4b\x88\x67\ \x3c\x9c\x84\x63\x9c\x03\xb3\x89\xdb\xd0\xa9\x53\x1b\x8a\xe7\x54\ \x72\x83\xe7\x29\xc4\xe2\xb1\xae\xd8\x93\xfe\x54\x11\xf3\x01\x13\ \x36\xd0\x96\x7d\xdc\x8c\x95\xed\x43\x1f\x2c\xe7\x21\x17\x38\x78\ \xa1\x3f\x5e\x62\x83\xb4\x0e\x23\xc6\x99\xcd\x40\x8c\xe9\x6b\x19\ \x19\xfc\x82\x0f\x7e\x04\x13\x0f\x14\x2a\x66\xe9\x2c\xca\x90\x8c\ \x32\x10\x45\xa3\x31\x88\x47\x32\xfa\x51\x7a\x4d\xc0\x5d\x1d\x0c\ \xc4\x35\xb1\xa9\x9b\x6c\x7e\x93\x37\x2c\xf9\x6b\x4c\x66\xda\xc8\ \x3e\x88\x93\x6c\xca\x3b\xe7\x4e\xd3\xf9\xb6\xac\x68\x29\x18\xf1\ \x08\xaa\x58\xee\xc0\xb0\xec\x5d\xcf\x2a\x6f\xd1\x85\x52\xb1\x80\ \x02\x9b\x21\x0e\xa0\x4c\x38\xe8\x3c\xbc\x60\xbf\xfc\x29\x6b\x31\ \xd3\x5a\x02\x29\x16\xba\x33\x31\x92\x62\x59\x5f\x74\x99\x5f\x24\ \x4a\x21\x09\xf1\x49\x69\x18\xdd\xcc\x69\xf6\x24\x28\x8e\x64\x23\ \x76\x6e\xa4\x6b\x36\x02\xe1\x47\x77\xa9\xe3\x6a\x1f\x49\xe9\x07\ \x43\xb8\x4d\x48\xad\x04\xb0\x49\xa0\xc9\xbf\xc6\x59\xd3\x46\xd2\ \xc4\x00\x3d\x30\xc0\x0c\x13\xbb\xd3\x47\x5c\xac\x0b\xd4\x7b\xec\ \x58\xe6\x71\x24\x2d\x75\x21\x49\xd7\xbb\xac\x3b\x75\x58\xb3\x77\ \x00\xd4\x0c\x28\x70\x56\x11\xba\x98\x3f\x7d\xd4\x6c\x65\xae\xc8\ \xc1\x19\x48\x91\x0b\x38\xb8\xa2\xab\xfe\x07\x3a\xcc\x3e\x02\xd8\ \x97\x20\x00\x93\xac\x41\x88\x63\xe9\xc2\xa5\x86\xa2\x7d\x66\x4f\ \x28\xd2\x08\x07\xfc\xe8\x9a\x75\x99\xc0\x13\xc4\x2d\xee\x04\x32\ \x6c\x02\xe4\x66\x18\xb9\x26\x49\x01\x10\xf2\x00\x53\x48\x55\xaa\ \x38\x3b\xe9\x17\x4f\xa8\xdb\x87\xe9\x1e\x80\x46\x32\xe9\x07\xa8\ \xb4\xbb\x53\xbb\x76\xc1\xb1\xa7\x40\x04\xf7\xd4\x62\x15\x54\x69\ \xc5\x07\xba\x70\xc7\x25\xd9\xd2\x07\x2f\xa0\xe0\x89\x27\xeb\x43\ \xcd\x8a\x70\xda\x25\x4c\x4b\x8b\xa6\x5d\x56\xcc\x12\x34\x83\x9d\ \x05\x78\x1f\xfd\x0d\xb0\xcb\x0e\x14\xcc\xb2\xd6\x21\x08\xa6\x3b\ \xa6\x6d\x19\xcc\x56\x41\x71\x80\x2d\xea\xc8\x06\x1f\xf2\x04\x03\ \x13\x5c\x38\x10\x11\xd9\x30\x9c\x37\xdc\x61\xe4\x66\x33\xc4\xdb\ \xfc\x5a\x71\x4c\xbc\xc8\x99\x48\x77\xb0\xfd\x70\xb1\x01\x72\x2a\ \x63\x19\x8f\x40\x1d\x5b\x29\x0b\xab\xb8\xd3\xb1\x53\x40\xa9\x49\ \xba\x88\x87\x0f\xdc\x09\x1f\x44\x78\x41\xa9\x89\x33\x43\x3c\x96\ \x10\x0f\xfc\xc5\x03\x41\x22\x5a\xd6\x40\xa1\xbc\x8f\x5c\x4c\x79\ \x1e\x70\xc0\xaf\xb2\xba\x2a\xe0\x7d\x44\xa6\xd5\x5d\xa6\x90\x97\ \xd5\x60\x51\x7f\xc8\xfa\x82\x0d\xfe\x16\xc2\x04\x48\xea\x47\x0b\ \x66\xed\x21\x81\xc0\xf0\x9c\x35\x7c\xd2\x0c\x07\xc2\xb8\x21\x79\ \x54\x88\x47\xfc\x35\x99\xcc\xe4\xb9\xd0\xfd\x57\x38\xfa\x30\x4e\ \x80\xc9\xa4\x38\x31\x1e\x74\x62\x47\xd0\x03\x56\xad\xe3\x62\x66\ \xd8\x5e\x50\x4f\xb1\x3d\x1c\xfb\xa0\x9d\x1b\xf0\x01\xb5\x98\x70\ \x69\x77\xe4\x20\x1e\xb8\x1a\xdc\x06\xde\x51\xa6\xc6\x84\xf6\xd4\ \x31\xcb\x45\x7f\x4d\x9d\x83\x7d\xe4\x60\x06\xf3\xc0\x72\xb2\xfc\ \x43\xc0\x35\x82\xe0\xc0\xfc\x38\xf8\x31\x2d\xaa\x06\x7e\x78\xeb\ \x68\x82\x02\xd8\x0a\x92\x60\x00\x46\x45\xa4\xc3\x72\x86\x33\xb1\ \x8b\x6d\x52\x13\xf4\x20\x24\x2d\xb1\xf3\xbd\x62\x61\x80\x24\xf4\ \xc0\xd9\x8b\x64\x31\x8b\x57\x9c\x42\x14\xa0\xa2\x1f\xd8\x7e\x39\ \x51\x9e\xd3\xa4\xf7\x6c\x20\x9e\x62\xb9\xf1\x29\x20\xbd\x0e\x1f\ \x97\x05\x11\x8a\x89\x87\x53\xf3\x33\x32\x77\x24\x15\x0b\x3a\x34\ \xba\xbc\x81\x86\xd0\x25\xe4\xa0\xe9\xcb\x9a\xc7\xce\x20\x27\x65\ \x31\x0e\x86\xd5\x90\x93\x8c\xe1\xcc\x7a\xe0\x2d\x07\x93\xe1\x71\ \x84\x23\x43\x90\xd6\xcc\x89\xa3\xe8\x23\x14\xa4\x60\xb0\x33\x6e\ \x52\x8b\xf3\x0e\xd9\x23\x76\xfe\xd4\xc8\x4b\x0e\x5d\x69\xd3\x74\ \x05\xd1\x3e\xc0\x8a\x69\xb4\x72\x76\x5c\x1b\xe6\xd9\xb6\xce\x01\ \xe0\xe3\xbd\xc5\x8c\xe5\x48\x50\x89\x07\x22\x1e\x0d\x4b\x75\x8b\ \xa9\x0f\xee\x20\x7a\xac\x20\x66\x74\xb6\xb8\xc3\x5a\xfd\x3c\xb5\ \xd3\xf9\x0b\x75\x7b\x27\xe8\xd4\x01\x24\x05\xbf\x63\x46\xc0\xac\ \x9b\x35\x32\x75\x90\xcc\xd0\xcc\x3a\x34\xcc\x64\x46\x20\x06\x50\ \x43\x12\xc0\x80\x10\x76\xe0\x16\x9b\x1d\x5e\x7b\xc6\x3d\x0c\xe2\ \xb7\xfb\xae\x46\xcf\x05\x43\x4d\xd5\x81\xf7\x68\x03\x9f\xf8\x06\ \x80\x49\x0a\x61\xec\xf7\xe5\x17\xfa\xdb\x8e\xb9\x31\xdc\x7c\xe0\ \x03\x86\x91\x0a\x11\xf4\xe9\x2c\x7e\xcc\x70\x86\x78\x54\xec\x1d\ \xdc\xc1\xc2\x13\x2b\xbf\xb2\x65\x31\x7d\x59\xae\xc8\xaa\x2b\x20\ \xf7\x9f\x53\x93\x42\x1f\xa0\x97\x99\xb2\x0c\xd7\x9f\x35\xf6\x07\ \x04\xa1\xf3\x02\xfe\xd3\x33\x51\x3b\x21\x1c\x21\xaf\x67\x47\x43\ \xa0\xc8\x48\x24\x44\x4a\xcd\x59\x0f\xa8\xdd\x49\xc9\xcb\x37\x41\ \x0a\xb9\x84\x83\xb3\x35\x92\x19\x34\xd2\x0a\xd8\x0a\xf0\xd1\x88\ \x3b\x08\x87\xf2\x2d\x9f\x06\x3e\x42\x0f\x34\xc6\x8d\x51\xc5\x92\ \x5c\x12\x97\xf8\x80\xfd\xfe\xa1\x40\xd0\xc1\x07\x13\xe0\x01\xae\ \x88\xcc\x3b\x80\x9f\x5d\x58\x03\x2c\xc1\xc6\xb2\x60\x1e\x7f\x95\ \x9a\xbe\x45\x99\xbd\xa5\x56\xcc\xc0\x4c\xfc\xa9\x4f\x64\xcc\x9f\ \xfd\x51\x4b\x6c\xcc\xc0\xea\x11\x53\x1c\x0d\x4d\x1d\xa0\x80\xac\ \x19\x40\x1d\x08\xe0\xee\x1c\x17\x9c\x75\x9c\x9c\x15\x5b\x4a\x3d\ \x0a\x88\xb1\xc8\x08\xc9\xdd\x73\xad\xc0\xc5\x5c\x8c\xb4\xf5\x81\ \xc4\xc9\x1e\x4c\x5c\x20\x3b\x20\x96\x06\xbe\x5c\x25\xe5\x41\xb8\ \x1d\xc9\xc2\x4c\x9f\x26\x91\x8a\x2e\x20\x02\x08\x60\x16\x2b\x99\ \x41\x1f\xbc\x03\xd1\xdd\x21\x52\x25\x95\x5d\x60\x01\x08\x30\xc6\ \x61\xdc\x8f\xf9\xf5\xd7\xf9\xd9\x1b\xbf\xc1\x41\x2e\x44\x8e\xfb\ \xe9\x60\xaa\xf1\x4c\x7f\xe4\x00\x01\x75\x91\xbf\xdd\x0c\x08\x44\ \x06\x65\xe0\x9f\xe1\x54\x46\x97\xf1\x83\x1a\xa0\x80\x10\x00\x60\ \x0a\xf4\x1a\x20\x0d\x5b\x87\x49\x61\xbd\xd8\xcb\x08\x8d\x1c\xb3\ \xd5\x54\x04\x4a\xdb\x0a\x5c\x89\x3b\x50\x89\xad\xb8\x03\x18\xd8\ \x5d\xdf\x9d\x21\xcc\x3d\xc2\x93\x98\x45\xa9\x48\xc5\x53\x94\x9b\ \x0f\xa0\x00\xe2\x49\x89\x76\x74\x4c\x3c\xe0\x01\x0a\x84\x0c\xa9\ \x78\xdf\x55\xd8\x05\xfe\x13\x28\xdd\x0c\xee\x17\x7f\x11\x22\xd4\ \x75\xd5\x3e\x90\x42\xe7\xed\x5b\xfb\xa5\x16\xfe\xcc\x20\xe6\xe0\ \x20\x7f\x75\xd1\x69\xfd\xc7\x99\x50\x4b\xe8\xc4\xc6\xd0\xa0\x00\ \xc2\xb9\x83\x40\xf4\xce\x48\x3c\xca\x71\x75\xdc\x01\xaa\x54\xc8\ \x89\x9c\xc4\xc9\x44\x12\x00\x4e\x2b\xae\x00\x13\x80\x41\x2c\xa2\ \x80\x3b\x70\xe1\x0a\xbc\xa2\x21\xe0\xa2\x41\x16\xc5\x73\x98\xca\ \x54\x94\xdb\x42\x96\x47\x28\xc5\x83\x94\x68\x5a\xa7\xb9\x03\x77\ \xe4\xd3\x07\xe8\x90\x5d\xf0\xd3\xca\x04\x62\xd3\xb9\x02\x35\x6e\ \x5e\x22\xf2\xdb\xce\x24\x62\x6a\x81\x5e\x2e\x14\x06\xf9\xc9\x0c\ \x4a\x22\x62\x38\xda\x9b\x68\x1d\x06\xb5\x3c\x46\xfe\x05\x01\x3f\ \xb8\x83\x1a\x80\x0d\x3f\x08\x44\x28\xb6\x5d\x14\x1e\x97\x87\x65\ \x93\x09\x8c\x5c\x71\xf0\x83\xec\xd1\x5d\x1f\x4c\x60\x2d\xba\x03\ \x3f\x50\x49\x40\x1e\xa5\x3b\x24\xc1\x2d\x1e\x24\xcc\xb9\x8d\xf6\ \x14\xe3\x53\x88\xcf\xb8\xed\x5c\x76\x40\xda\xd0\x99\x4f\x3e\xb1\ \xc5\xe4\x95\xd7\x41\x3d\x06\xf9\xe9\x4c\xa9\x9d\x9f\xbe\x91\x02\ \x36\x7a\x64\x0e\xf2\x5b\x61\xec\xd7\xbe\xc1\x4c\xd3\xe5\x42\x2e\ \x38\xdd\x49\xee\xfe\x5b\x0e\xf4\x17\xcf\x30\x4b\x56\xd1\x07\x7d\ \xe0\xc1\x81\x4d\x08\x3b\xf0\x03\xd8\x90\x5d\x50\x16\xd2\x47\x1c\ \x20\x62\xf2\x15\xb9\xc8\x44\x0a\x4d\xe0\x0a\xbc\x03\x52\x26\xc1\ \xe3\x3d\x5e\x3c\x04\x01\x40\x8e\x0c\x0a\x4c\x40\x54\x4a\xa5\xdf\ \x71\x60\x59\x14\x63\x59\x8c\xe6\xf4\x6d\xa5\x76\xe0\x8a\xd1\x5d\ \xa4\xd1\x85\x65\x17\xc4\x83\xb5\x98\x1a\x43\x2d\x81\x47\x4a\x0b\ \xd4\x6d\xde\xfb\x91\x9a\xa9\x5d\xe3\xbe\x8d\xda\x0c\xee\xa6\x2e\ \x35\x5d\x0e\xa8\x65\xd3\x7d\x82\xb2\x48\x0b\x5d\x32\x0b\x42\x4d\ \x22\xcb\x9c\x49\x1a\x50\x08\x61\x12\xe6\x4a\x08\xc1\x62\x8e\xdc\ \x3d\xe6\xcb\x47\x05\x25\x8d\xdc\xa4\x1a\xd4\xa2\x3f\xba\x03\x3e\ \x54\xe6\xe3\x05\x81\x64\x2c\xc1\x96\x05\x9a\x67\x9e\x67\xcc\xf5\ \x00\x22\xac\xe7\x8d\x1d\xc9\x30\xe2\x58\x3c\xe8\x82\xf4\x31\xc1\ \x96\x18\x1d\xa9\xfc\x13\x16\xd0\x9b\x56\x75\x1e\x5a\xd2\xe6\x7d\ \xe9\x26\xbe\xdd\xa0\x70\x66\x63\xe6\xb9\x42\x5d\xe6\xc0\x27\x08\ \x27\x71\x06\x28\x6c\xfa\x27\x5f\x72\xd1\x99\xc0\x86\x17\xd4\x81\ \x4d\xaa\x23\x0a\xd4\xc1\x4a\x98\x40\x2c\x04\x65\x75\xde\x64\x4a\ \x18\x00\x3f\xfe\x18\x80\x3b\x88\x28\x18\x6c\x01\x0a\x80\x40\xcf\ \xec\x83\x3b\xe8\x60\xa6\xdd\x5f\x25\xba\xc3\x23\xa0\xa7\x8c\xba\ \xcd\x93\x20\x42\xce\x8d\x12\xce\x99\x05\x13\x48\x5f\xa4\xc5\x8d\ \x28\x30\xde\x33\x8e\x1f\x4b\xea\x4c\x7f\x4a\x0b\x22\x82\x9e\x94\ \xcd\x43\x2e\xa8\x25\xe8\xb5\x16\x22\xe2\x65\x4b\xd6\x25\x93\x7e\ \x02\x82\xe6\x82\xb4\x18\x68\x7f\x9a\xdf\x95\x2a\x88\x84\xe2\x41\ \x4d\x5e\x68\x1d\xc4\x43\xd8\x60\x28\xb3\xfd\x9f\x3a\xb2\x83\x1a\ \x88\xa8\x12\x3a\xe5\x89\x8a\x48\x7c\xe9\x66\xe7\xc9\xc9\x5c\xa8\ \x41\x67\xca\xe8\x19\x72\xa0\xab\x6c\x25\xb9\x5d\x52\x30\x48\x1f\ \xdc\x30\x43\x1f\xf8\xd8\xe0\x68\x24\x56\x8d\xe4\xa9\xed\xd7\x6c\ \xfa\xa7\x94\x62\x23\xbe\x19\x28\x93\x32\xea\xa2\x8e\x5a\x0e\x24\ \x22\x95\x3e\x2a\x29\x7c\x82\x95\xb2\xe5\x83\x26\x2a\x96\x9e\xdf\ \x94\x55\xd5\x19\xa0\x40\x10\x40\x64\x98\x4e\x54\x1d\xa4\x29\x65\ \x82\xa8\x3a\xc6\xa2\x52\xa2\x40\x52\x4a\xd1\x16\x61\x15\x1c\x40\ \xaa\xe6\x61\xd5\x5c\x14\xa4\x9d\xe6\xea\x3f\x70\x57\x0f\x8d\x92\ \x0f\x80\xdf\x77\xf4\x41\x30\xe4\x53\xbc\x59\x03\x13\xc0\x4c\x0c\ \xc2\x66\xfe\xe7\x1d\x67\x91\x1a\xe8\x35\x32\xea\xf9\x91\x64\x18\ \x60\x23\xe6\x0d\xa8\x36\x3e\x6a\x18\x4c\x6b\x5e\x7a\x64\xa7\x42\ \x5d\x80\x7a\x24\xbe\x51\x4b\x48\xc6\x8c\x3b\x10\x86\x94\xe8\x5f\ \x10\x28\x25\x77\xd2\x22\x18\x6c\xe7\x76\xd6\xe4\xe3\xf5\x4c\x82\ \x4c\x4b\x70\x4e\x2a\x1c\xb0\xc0\x83\xb2\x01\x0a\xd4\xa9\xae\x9e\ \x21\x55\xb6\x05\x52\x05\xc3\x3f\x79\xd7\xc3\x3c\x91\xaa\xc0\xcf\ \xf8\x49\x23\x5d\x36\x6a\x6d\xae\x96\x5a\xf2\x9b\xce\xb0\x9f\xfb\ \x4d\x2a\x49\x52\xeb\x92\x5a\xaa\x28\x64\xec\xb7\xe2\x2b\xb7\x76\ \x6a\xc7\x3a\xeb\xa3\xfa\x00\x61\x2c\x4b\x64\x14\x5c\xba\x6e\xc1\ \x40\x32\xc1\x2b\xd2\x22\x3f\x3e\x9e\xb2\x30\x14\xc4\x26\x68\x2e\ \xe0\x2b\x22\xa2\xe5\x0c\x08\x45\xbf\xe6\x6c\xa1\xa9\x8a\x51\xfd\ \x8a\xf8\xc9\xea\x20\x22\x62\xa3\x72\xab\x92\x26\xa8\x70\xd2\xa5\ \x81\x06\xa7\xb6\x2e\xea\xa4\xde\x17\x82\xee\x83\xd1\x36\x81\x28\ \x8c\x41\xa6\x1a\xe8\xd0\x0a\x2d\xb8\x72\xec\x92\x66\xeb\xa3\xf2\ \xd7\x3e\xa0\x80\xcf\x20\x23\xd1\x91\xc1\xe0\xbc\xc3\x16\x94\x0f\ \xe3\xa4\x0f\xb5\xec\x0c\x95\xe6\xc2\x27\x7c\x02\x0b\xb8\x02\x0b\ \xd4\xfe\xa5\x95\xb2\x41\x0a\xf0\x6b\xce\x1e\xa4\x3a\x05\x83\x2e\ \x04\x43\xe3\x2d\x81\x90\xb2\x25\xd2\xc6\x6d\xc3\xce\x2a\x9c\xda\ \xeb\xc5\x4e\xac\x94\x86\x01\xbe\x3d\x69\x70\xaa\x65\xc6\x8a\x42\ \x6b\x79\x24\xbe\x0e\x2d\xdd\x82\x6b\xa3\x2e\xa9\x3e\x8c\x01\x29\ \x70\x2e\xa6\x6e\xed\x3e\xd8\x12\xfd\x9c\xc1\xe3\xe1\x21\xe9\xbe\ \x03\x19\xb0\x9b\xbf\x71\xeb\xdc\xb2\x80\xeb\xe2\x1b\x0b\x20\x28\ \xb3\x14\x81\x19\xe6\xad\x9d\xba\x0d\x3b\x64\x49\xf6\xcd\xc7\x93\ \x0d\x2d\x5b\x72\x6c\xc7\x4a\x29\xc4\xd2\x65\xd3\x3d\x6c\x82\x3c\ \xae\xc5\x02\x27\xe4\x4e\x6b\x18\x50\xec\xcc\x7a\x2c\xdd\xde\x6b\ \x95\xde\x57\xe7\x5e\xea\x18\x30\xee\x92\x8a\x42\x18\xf0\x17\xd3\ \xa1\xa4\xfa\x41\x0e\x13\x70\xc1\x3b\xa8\x6d\xc7\xba\xae\xeb\x1a\ \xe8\xdb\xbe\x2d\xbe\x81\x00\xde\xda\xae\x67\x16\x1a\x7e\xb8\x43\ \x83\x1c\x27\xbe\xf9\xae\x47\x4e\x19\xe6\x0d\x2f\x70\x02\xe7\x90\ \x6e\xe3\xa4\x52\x6c\x70\x6a\xef\xa3\x2e\xec\xcc\xde\xab\xe0\x2e\ \xac\xfa\x1a\xa8\xe7\x7e\x42\x18\x8c\x01\xdc\x32\xf0\x18\x44\x2b\ \x91\x9a\x9f\x17\xe4\x40\xd9\x2a\x4b\xd6\xb6\xee\xdc\x2e\xc0\x02\ \xfe\x64\xeb\x02\xa8\x2f\xae\xba\xaf\x08\xff\xc3\x08\x94\x99\x5d\ \x6c\xc0\x58\xca\xaa\xf3\x22\x2d\x5b\x76\xec\xa9\x51\xe9\xfe\x12\ \x70\x4b\xb6\x5f\xf3\x1e\x68\xf1\x86\x81\xe4\xba\xdf\xb4\x7e\x6e\ \xe5\x5a\xad\xdb\x4e\x6a\x82\x62\x2a\x0b\x7c\xc2\xf5\x5a\x2f\xdc\ \x0e\xf1\x18\x6c\x2b\x0b\xd7\x2c\x95\xbd\x03\x33\xbc\x43\x6b\xd5\ \xa5\xfa\x7e\x42\x1c\xc4\x41\x07\xd3\x43\x03\x7f\xf0\x27\xb8\x43\ \xfb\x8e\xf0\xfb\x8e\x40\x38\x24\x23\x1e\x64\x10\x17\xcd\xe5\xc2\ \x72\x6b\xa3\x2e\x8b\x0d\x23\x28\x36\x46\xec\xce\xb0\x9f\xe4\x32\ \x94\x36\xea\x43\xe4\x72\x2d\x36\xb6\x2e\x5d\xce\xed\x94\x26\xe8\ \x02\xe8\xd7\x10\x93\x42\xb6\x36\xf0\xf3\x7e\xc2\x02\xcc\xec\xdc\ \xce\xac\xdb\x12\x70\x18\x0c\xc3\x3b\x48\x2e\x82\x2e\xf0\xdb\x72\ \x30\x3d\xd0\x03\x07\x47\x72\x38\x74\xb1\x17\x7b\xe6\x23\xc4\x42\ \x88\x08\xe9\x81\x9e\xb1\x1a\x07\xef\x81\x12\xa7\x70\x6a\x1e\x48\ \xee\x83\x28\xb8\xdf\x7e\xd5\x25\x2a\x47\xae\xd4\xd6\x70\x1e\xe7\ \x31\x1c\x30\x70\x03\xa7\xef\xa5\x62\x2a\x21\x37\x70\x18\x2c\x40\ \xdc\x12\xf1\xa5\xfa\xb0\xdb\xaa\xaf\xdb\x86\xc1\x11\x1c\x41\xfe\ \x03\x5f\xaf\x03\xbf\xad\x15\x2f\xc0\x18\x4c\xf2\x02\x54\xf1\x16\ \x63\x72\x26\x9f\x27\x07\x8e\x5f\x57\xd9\xeb\xce\x80\x6b\x36\x8f\ \xa4\x94\x22\x6f\x5e\x5e\xa9\xc3\x4a\x6e\x1b\x37\x9d\x28\x34\xc1\ \x1b\x64\x6c\x13\x20\x83\x7e\x21\xf2\x21\x0f\x73\x13\x34\x6f\x10\ \xa7\x6f\x2e\x30\x73\x20\x7f\x82\x02\xef\xf2\xcc\x12\x72\xfa\xb6\ \x2d\x11\x37\xc1\x3b\x8f\xc1\xf5\xd6\x72\x1c\x44\xf2\x02\xd0\x03\ \x40\xc7\x81\xeb\x7e\x42\x20\x48\xf3\x34\x7f\x31\x27\x7b\x23\xa2\ \x4e\x23\x13\xa3\xf1\xb5\x3e\xec\x7e\xa1\x1f\xe6\x6c\x23\x92\x62\ \x8e\x28\xbc\x41\x13\x90\x42\xc6\x42\xea\xeb\xba\x2d\x20\x67\x6c\ \x21\x1b\x6d\x82\x72\xee\xf5\x3a\xf3\xcc\xe6\x40\x39\xab\x2f\x20\ \x5f\x2a\x82\xa6\x2f\x3d\x34\x01\x16\x03\xf4\x18\x70\x30\x0b\x54\ \x31\x07\xe3\x34\x07\x23\xb4\x2e\x30\x74\x43\xa3\x27\x07\xe2\x41\ \x34\x36\xae\xc7\x82\x6b\xf1\xaa\x65\x7e\x39\x1d\xb7\x4a\xac\x49\ \x52\x2c\x29\xf8\xb3\xe4\x96\x33\xe8\xf1\xf0\x30\x6b\xaf\x20\xef\ \xb3\x5a\x02\x74\x18\x34\xc1\x11\x88\x02\xdc\xe6\x02\xd7\xa6\x6f\ \x11\xd3\xe5\x2d\x37\xf3\x3f\xe7\xf4\x4f\x23\x34\x21\x33\xfe\x33\ \x07\x3f\xf3\x33\x07\xc2\x50\xd7\x35\x42\x26\x41\x94\xce\xe0\xce\ \x70\x2c\x22\x3e\x6b\x7e\x21\xa9\x34\x32\x14\x48\x43\x6a\xf1\x22\ \x43\x13\xe8\xc3\x57\xc7\xc0\xb4\x5e\xea\x06\x7f\xf5\x3b\x7f\x2e\ \x4a\x93\x02\x3d\x13\xf3\x11\x34\x01\xa6\x02\xb2\xb6\xbe\x6d\xb6\ \x7e\x6e\xf5\x86\x41\x4d\x1b\x34\x5b\x57\xf1\x4e\x33\x33\x25\xcb\ \x35\x07\x33\x81\x50\xdb\x35\x7a\xba\x8d\x01\x18\xb5\x1a\xc3\x2e\ \x0b\x5f\x63\xe8\x3d\xaa\x12\x67\x6f\x2a\xeb\x0c\x1b\x67\x2c\x0e\ \xfb\xb3\x3e\xa8\xaf\x1e\xd3\x83\xf6\x42\xb6\xd1\xf6\x71\xe7\x7e\ \x75\x31\x27\x73\x59\xf3\xb1\x64\x37\x76\x20\xd7\xb4\x67\x87\x36\ \x4f\x37\x73\x69\x5b\xb1\x15\x5f\xb2\x6a\x5f\xf7\xae\x26\x01\x1e\ \x80\x72\x44\x5b\x2b\x48\xab\xb2\xe0\x5e\xa3\xe4\x7e\xc2\x93\x96\ \xf4\x47\x83\x74\x70\x1f\x31\x03\x1f\x01\x16\x3f\x70\x82\x36\x70\ \xe7\x5e\x2f\x58\x57\xb6\x4a\x03\x32\x82\x1e\xf3\x07\x23\x71\x20\ \x67\x6b\x31\x97\x36\x15\xef\xb4\x67\x4f\x77\x5c\x73\x31\x76\x17\ \x38\x07\x22\xaa\xd5\xb2\x1f\x36\x42\x8e\x5a\x6a\x2b\x45\x0f\xf0\ \xd6\x96\xb3\xd4\x4e\xf5\x47\xe7\x40\xeb\x7e\x82\x4d\xfe\x8b\x42\ \x21\x07\x33\x0e\x63\x76\xb6\x82\xf5\x3f\x37\x78\x83\xff\xf3\x14\ \x7b\xf6\x31\xd3\xc3\x11\x0c\xc3\x2e\x7f\xf0\x40\x17\x74\x69\xc7\ \x35\x07\x67\x57\x81\x5f\xf7\x08\x18\x00\x82\xb4\x2d\x93\x32\x1d\ \x93\x82\x77\x5a\x5a\xea\x7b\x97\xb3\xe4\x3a\xb6\x28\x18\x72\x0e\ \x04\x34\xd5\x06\x33\x48\x33\xaf\x84\xdb\x74\xb6\x3a\xf0\x62\x03\ \x72\x13\xf4\xb1\x16\xbb\x38\x25\x13\xf3\x30\x1c\x81\x03\x3b\x70\ \x2e\x58\xb1\x33\xc3\x38\x3d\x1c\x40\x6a\xcf\x78\xbf\x3e\x42\x38\ \x6c\xf7\xe3\x42\x6c\x93\x4e\x2b\xa2\x5e\x2c\x6d\x2b\xad\x6e\xcb\ \xb7\xd4\x8e\x35\x11\x03\xb4\x9c\x33\xb3\x00\xeb\x83\x3f\xbf\x73\ \x93\x23\x2f\x2d\x87\x41\x24\x4b\x36\x65\x03\x34\x3d\x0c\xc3\x95\ \xe7\xf4\xa5\xce\x73\x80\xc3\x78\x41\xab\x83\x98\x37\x7a\xcc\x25\ \xc1\xb3\x36\xdd\xb3\xca\x36\x00\x33\xa9\x19\x6f\xed\x57\x6b\x2f\ \x3a\xfb\xf9\xdc\xca\x33\x5d\x0e\x74\x83\xf7\xf6\x57\x33\xf2\xd4\ \x12\xf6\x7b\xd7\x32\x11\x77\xf0\x95\x83\xf6\x11\x30\xc3\x30\x50\ \x32\x9d\xb3\x00\x95\xc3\xf8\x18\xbc\x43\x98\x3b\x7a\xde\x52\xa6\ \xa4\x63\xa3\x5a\x52\x29\xd4\x42\x2d\x93\x16\x30\xfe\x03\x03\xb9\ \xd4\xea\x39\xd5\x7a\x7a\xa7\x73\xb8\x38\x87\xc1\x1b\x30\x83\xe4\ \x4a\xf1\xc2\xe6\xc0\x57\xa3\x3a\x20\x7f\x76\x03\x37\xc1\x30\x30\ \x03\x96\x03\xb4\x16\x4f\x72\x97\x73\xb0\x28\x08\x1a\xae\x3b\xfa\ \x23\x4c\xc0\xaf\x5b\x3a\xf2\xd2\x36\x5a\xfb\xb3\x61\xef\xf6\x56\ \x5f\x2f\x2f\xd3\xe5\x14\x7b\x38\x20\xbb\x3a\xf6\x06\xf1\xdc\x8e\ \x81\x28\xb4\x77\xaa\x8f\x81\x3f\xe3\x34\xb6\x33\x83\x41\x6b\xf1\ \x3c\x4f\xf2\x2e\x73\xfb\x18\x58\xf7\xb8\x2f\xfc\x23\x40\xfa\xc3\ \x5a\x2a\x0e\xab\x79\xf6\x1e\xc1\x1b\x84\x75\x39\x6f\xf6\x3c\x5f\ \x39\x29\x74\xfa\x3e\xe3\xb0\x56\x8b\xc2\x30\xbc\x73\xd3\x35\x39\ \x5d\x3a\x76\x32\x17\xf7\x73\x5f\x6f\xb6\x0b\x7c\x2d\xbb\xad\x74\ \x33\x33\x4e\x87\x81\xb8\x2f\xfc\xc2\x33\x0e\x29\x33\xa9\x38\x2f\ \x6e\x8a\x87\xbc\xf6\xbe\x32\x21\xb7\x3a\xf6\x4a\xf9\xdb\x06\xf4\ \xc5\xe7\x79\x90\xfb\xf3\x3a\x7b\xf6\x47\x13\x32\xc0\x63\xb1\x67\ \x0f\x03\x16\x30\x43\x13\xd0\x79\x2e\x23\x7c\x4e\x7f\xf9\xad\xd3\ \xfc\x08\x97\xbb\xa5\xf6\xfa\x7d\x37\x81\x0c\x0c\xc3\x1b\x64\xeb\ \xc5\xe7\xf4\x22\x1f\x81\x3d\xe7\x02\x9d\x93\xfe\x74\x20\x17\xfb\ \xc5\xef\xb7\x16\x07\x72\x12\xa7\xb4\xd2\xdb\x74\xab\xdb\xbb\x16\ \x0b\x3a\xcc\xf7\x74\x13\x64\xbd\xd6\x7b\x71\xc3\x2f\xc1\xa2\x56\ \xea\x22\xbb\x7a\x90\x47\x3c\x7f\xab\x38\xbe\x11\xb1\x10\xd3\x32\ \x9c\xfb\x73\xc8\xcb\x3d\xca\xc3\x77\x24\x07\x34\x58\xaf\x3c\xa1\ \x27\xb3\x57\xe3\x74\xcc\xf7\x81\xdf\xff\x7d\x26\x1b\x00\x3e\xdc\ \x32\xe4\xbe\xc1\x30\x20\xc3\x18\x5c\x23\x0e\x7b\xfb\xab\x1f\x31\ \x33\x73\x76\x93\x8b\xc2\xce\x13\xfa\x47\x23\x73\x07\xbf\xf3\xa5\ \x7e\xb0\xda\x7f\x75\x4d\xaf\x3c\x33\x08\x3c\x2e\x07\x38\xe7\x7b\ \x75\x08\x83\xbe\xf1\xef\x6a\x38\x00\xbb\x63\xbf\xc3\x79\x83\xf4\ \x7c\x17\x7a\x4b\x4b\x36\xa6\xde\xfe\x87\x67\x3b\xa1\x1b\x33\xca\ \xfb\xbb\x31\x9f\x34\x5d\xde\x3e\x16\xa7\x78\xd4\xab\xf8\xd0\xa3\ \x38\x68\xb3\xf5\x18\x80\xf9\xf1\xa7\x7f\xcc\x85\x83\x2b\xe3\xbe\ \xf3\x63\xbe\x65\xe7\xf3\x94\x9b\x78\xb6\x12\x7a\xc8\xfb\xf3\x87\ \x1f\x3c\x58\xfb\xb9\xdb\xe6\xfb\x95\xe7\x39\x40\x30\x13\x38\x6c\ \x4c\xae\x4f\x61\x8e\x0c\xa3\x37\x86\xe1\x82\x05\x63\x46\xfc\x93\ \x38\x91\x62\x45\x8b\x17\x31\x66\xd4\xb8\xfe\x91\x63\x47\x8f\x1f\ \x41\x86\x04\xb9\xe2\x5d\x18\x51\x61\x50\x36\x19\x26\xd0\xd8\x30\ \x51\x9f\x58\x18\xfc\xf4\x69\x4c\x93\x23\x4d\x50\x26\x1c\xd6\x84\ \x27\xc2\x26\xf4\x16\xd0\x44\x18\x26\x68\xd0\x4f\x2a\x87\xdd\x1c\ \x86\x85\xd9\xb0\x30\x9f\x72\x8d\xa1\x37\x4c\xa1\xc3\x87\x0b\x0c\ \x89\xd4\xba\x95\x6b\x57\xaf\x5f\xbf\x3e\x7a\x47\x4a\x1f\xca\x77\ \x09\xb1\x78\x60\x16\x26\x17\x8b\x99\x33\x6b\xde\x44\xb9\x72\x27\ \x4f\x9d\x4f\x0f\xd2\xbb\x79\x72\xcc\x43\x95\x4d\x05\x32\xdd\xf9\ \x69\x01\x42\x85\x7d\x69\x8e\x09\x13\x11\x6c\x63\xc7\x8f\x21\x47\ \xb6\x38\x62\xc2\x19\x93\x76\x99\xa9\x1d\x13\x13\xaa\xc1\x31\xa2\ \xe8\xe1\x9c\x4a\x35\xa9\x4d\xaa\x7d\x17\xfc\xb4\x79\xe4\x08\x4a\ \x84\x03\x99\x61\xf9\x80\x85\x2a\x4f\xa4\x0b\x09\x2b\xee\xc3\x58\ \x72\x6f\xdf\xbf\x81\x63\x0c\xb7\x22\xa5\xb1\x0f\x4d\x72\xb9\x8a\ \xc9\x22\x66\x61\xb9\xaf\x9b\x26\x65\x4d\xef\x2d\x4a\xa9\xd3\xf5\ \x0a\xd4\x1e\x58\x3b\xe9\x9b\x0d\xc3\x34\xe1\x1d\x9c\x7c\x79\xf3\ \x5f\x47\x18\x12\x75\x24\x2d\x3d\x16\xae\x72\xb5\x35\x18\xfe\xfb\ \x98\x23\xb1\xa3\x7f\xcf\x15\x87\xb0\xfe\xc3\x30\xf4\x00\x6c\x42\ \xa0\xd9\xb6\xeb\x8e\x2e\xb9\x48\x79\xc8\x90\xf1\xce\x6b\xd0\xc1\ \x07\x33\x1a\x41\x9d\xa6\x48\x49\x2e\xa6\xf9\x54\x6a\x62\x0c\x9a\ \x56\x12\x4c\x21\xa2\x38\x83\xaa\x30\x94\xb2\xc3\x82\xa9\x02\x6b\ \x23\xad\xa7\xb7\x18\x84\xd0\xc5\x17\x1f\x3c\x60\x8b\xf8\x0c\x72\ \x2e\x29\xb6\x72\x09\x03\xbf\xfc\x9e\x0a\x31\x37\xa2\xa6\x82\x0d\ \xbf\xda\xc2\x5b\x89\x19\x9c\x82\x62\x21\x2b\x18\x99\x6c\xf2\x3c\ \xca\x96\xc0\xb0\x36\x11\xef\x1b\x88\xb4\x1e\xdd\xca\xad\x2f\xc5\ \x04\x3a\x62\x3d\x13\x9b\x92\xab\x4a\xa7\x10\x23\xa5\x45\x27\xd1\ \x4c\xf3\xb1\x47\x26\x28\xcb\x26\x0d\x67\x0a\xe3\x40\xd2\x14\x6a\ \x0b\xae\x0d\x13\xb4\xaf\x29\x0d\x97\x0a\xf3\xa4\x2a\x9b\x0a\x43\ \xb1\x30\x76\x53\xd3\xd0\x43\x1f\x0b\x27\x8b\x26\x4e\xa2\x49\xa7\ \x9f\xa8\x6a\x6a\x43\xb7\x18\x4a\xf0\xa0\xbf\x9c\xd2\x91\x29\x9c\ \x8a\xc4\x6f\xa1\xff\xc4\x43\x54\xd4\x51\xb9\x4a\x4f\x14\x52\x6a\ \x5a\xe9\x88\xd0\x0e\xdc\xf0\x4e\x52\x84\xaa\x72\xd5\xfb\xb0\x68\ \x6d\x0c\x5d\x54\x12\x6c\x4b\x7a\x16\x24\xd5\xd7\x5f\x3d\xa2\xcc\ \x87\xdb\x5e\xab\x6d\x4b\x54\x11\xfe\xfb\xcf\x3b\x5a\x0f\x53\x0c\ \xd0\x23\xb6\x0c\x15\xd8\x69\xa9\xc5\xe8\x80\x5a\xf5\xa2\x8b\x53\ \xeb\xc6\x40\x35\xa7\x39\x07\x12\xf4\x3f\xb4\x98\x59\x68\x01\x7a\ \x0e\x38\xb3\xda\x75\x7f\x4d\x8f\x35\x9e\xe8\xf9\xd6\x56\x86\x40\ \xd3\x29\xd2\x70\x1f\x32\xac\xa9\x78\xc7\x78\x47\x5d\x76\x01\x26\ \x35\xbd\x77\x6c\x4b\x88\x99\xd6\x16\x20\x45\x59\x7b\xb7\x9b\xf7\ \xbf\x81\xf8\x2d\x34\xe0\x89\xab\x3d\xe0\x1d\x2b\x5b\x23\xcc\x30\ \x83\x51\x5c\xc8\x59\x88\x6b\xfa\x97\xe2\x91\x0f\x4d\xaf\xae\x53\ \x3f\x51\x98\x35\x8e\x99\x62\xaa\xb5\xff\x82\x3c\xf2\xbf\x40\x44\ \x26\xd9\xe6\x34\x47\x08\x84\xe0\x30\x14\x0e\x2d\xdb\xd8\x4c\x64\ \x0a\xc0\x71\x63\xcb\x94\x9e\x9a\x6f\x4e\x1a\xcd\x70\xc8\xa0\xef\ \xa6\x20\x83\xa6\xed\x69\x40\xe3\xe5\x15\x69\xa5\xb1\x86\xd1\x5d\ \xaa\x58\xeb\x10\xcc\x83\xbb\x06\xd9\xdf\xac\xc9\x1e\x55\x42\x6b\ \x74\x0a\x7a\xa0\x55\xef\x85\x36\x8c\x74\xcb\x8e\x1b\xd1\x11\x2c\ \xee\x70\xc8\x9f\xc3\x0c\xef\x6a\xb9\xf9\x76\x50\x42\xa0\xad\x34\ \x72\x5f\x42\xf7\xee\xdb\x70\xf3\x46\x00\x93\xce\xbb\xa5\x3d\xdc\ \x71\x27\xd5\xb1\xe6\x5e\xc5\x2c\x8f\xe8\xf5\xf1\xcb\x99\x1c\x61\ \x84\xc0\x5a\x1e\xc6\x9a\xc2\x31\x0f\xdd\x37\xcd\x67\x13\x0c\x6e\ \xd1\x51\x7f\x51\x1d\x33\x98\x79\x03\xf4\xd4\x61\x87\x4c\x73\x75\ \x5e\xa7\x36\x20\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\ \x00\x00\xf0\x00\xf0\x00\x87\x04\x02\x14\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x9e\xc4\x9e\xd9\x88\x8d\x93\x49\x33\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc9\xf6\xff\xff\xff\xff\xff\ \xff\xde\x93\xb3\xff\xff\xff\xff\xff\xff\x4c\x4a\x97\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xae\xb4\x5a\x90\xb6\xff\ \xff\xff\x9b\xa7\xb7\xff\xff\xff\x6c\x09\x9d\xff\xff\xff\xff\xff\ \xff\x13\x28\xa7\xff\xff\xff\xff\xff\xff\xd7\xc9\xe3\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x04\x05\x56\xf7\x89\xb9\xff\ \xff\xff\x8f\x69\xb1\xf9\xae\xb9\xff\xff\xff\xff\xff\xff\x9b\xf2\ \xfc\x13\x29\xe1\xb9\x88\xba\x4e\x68\xf8\xfa\xc8\xe4\xee\x69\xa7\ \xff\xff\xff\xff\xff\xff\x2f\x48\xeb\xd9\xe8\xf9\x20\x87\xb9\xff\ \xff\xff\x99\xc8\xfa\xff\xff\xff\xff\xff\xff\xf0\x6f\x43\x92\x49\ \x61\xff\xff\xff\x63\xa0\x73\x7c\x88\xaa\xff\xff\xff\xd9\x91\xf2\ \xff\xff\xff\xff\xff\xff\xb5\x68\xaa\xff\xff\xff\x6b\x6a\x22\xf7\ \xb2\xf1\xff\xff\xff\xff\xff\xff\x89\x24\xb5\xfb\x8e\x5f\xf9\xe8\ \xf0\x36\x92\xc3\xff\xff\xff\xb7\xc8\xf2\xff\xff\xff\x79\x8e\x72\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x94\x94\xf6\x39\x56\xf6\x0a\x18\x62\xd3\x48\x73\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x11\x38\x67\ \xd6\xd9\xec\x97\xb1\xf8\x57\xa8\xe5\xff\xff\xff\x74\x89\xf8\xff\ \xff\xff\x5b\xb8\xeb\xda\xae\xf8\xff\xff\xff\xff\xff\xff\xfa\xd8\ \xeb\xff\xff\xff\xff\xff\xff\x7e\xf5\xfb\xff\xff\xff\xba\x8f\xf4\ \xff\xff\xff\xff\xff\xff\xfb\xfd\xfa\xfb\xd0\xa6\xff\xff\xff\x6f\ \x78\x28\xff\xff\xff\xf5\x99\xb4\xf4\x71\x6f\xb2\x68\xed\xff\xff\ \xff\xb7\xd8\xfa\x7d\x95\x46\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xc4\xe5\x97\xb2\x27\x24\x04\x62\x7c\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x78\xc8\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x6f\x42\xe4\xff\xff\xff\xff\xff\xff\xff\xff\xff\x71\x37\x59\xff\ \xff\xff\xff\xff\xff\x93\x68\xf9\xff\xff\xff\xff\xff\xff\xb9\xf3\ \xfc\xaa\x2a\x69\xea\x58\x9b\xff\xff\xff\x58\x92\xea\xff\xff\xff\ \x78\xb4\xf8\xff\xff\xff\x34\x4d\x1a\xfa\xae\x88\xff\xff\xff\xff\ \xff\xff\xf9\xec\xba\xff\xff\xff\xff\xff\xff\x34\x1a\xdc\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf7\x91\x8c\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xa0\xb6\x76\xf3\x7a\xb5\xda\xd8\xa7\x1e\ \x97\xca\xff\xff\xff\xff\xff\xff\xb8\xb8\x7f\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x55\x75\x28\xff\xff\xff\xff\xff\xff\x11\x78\xa8\xff\xff\xff\x56\ \x77\x67\xff\xff\xff\x19\x37\xdf\x58\x76\xfa\x2b\x37\x6a\xff\xff\ \xff\xff\xff\xff\xb1\x78\xa7\xff\xff\xff\x69\x7b\xf4\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x84\x3e\x28\xb3\x58\x38\xff\ \xff\xff\xb5\x59\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7d\xd6\xfb\xff\xff\xff\x70\x5b\xf2\ \x72\x5a\x69\xff\xff\xff\xff\xff\xff\x7a\x1a\xaa\x97\x97\x50\xde\ \x97\x94\xff\xff\xff\x98\x97\xb4\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xb8\x98\xb3\xd9\xfb\xfc\x99\xd8\xfc\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x9b\x9a\x77\x7d\x97\xfa\xb1\x78\xf9\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x91\x5a\xf9\x91\x78\xf3\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\ \xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x48\ \xb1\xa2\xc5\x8b\x15\x0b\x69\x2c\x84\xb1\xa3\xc7\x8f\x20\x43\x8a\ \x1c\x09\xb1\x10\x2c\x58\x5c\x34\x92\x5c\xc9\xb2\xa5\xcb\x97\x1f\ \xf5\xd4\xa9\xd3\x26\x06\xac\x8d\x30\x73\xea\xdc\xc9\x73\x64\x9b\ \x99\x40\x9b\x34\xe1\x42\x54\x65\xcf\xa3\x48\x93\x2a\xe5\x92\x0a\ \xa8\xd3\x99\x6d\x4c\xed\x49\xc9\x51\xa9\xd5\xab\x58\x41\xc2\x7a\ \xca\xb5\x4e\x93\x18\x7a\x78\xe0\xcc\x4a\xb6\xac\x59\x84\x85\x64\ \x76\xed\xfa\xf5\xe6\xc6\xaa\x67\xe3\xca\x45\xca\x63\xad\x5d\xa7\ \x31\xa8\x1a\x9d\xcb\xb7\xef\xca\x3d\x4d\xee\x0a\x6e\x33\xee\x2d\ \x5c\xbf\x88\x13\x53\x2c\x14\x43\xb0\x63\x75\x00\x22\x6f\x00\xb0\ \x57\xb1\xe5\xcb\x09\xb9\x04\x76\x7c\x37\x83\x98\xc8\xa0\x01\x6c\ \x78\x8b\xb9\x34\xe6\x3d\x9c\x05\xfb\x89\x10\xba\xb5\x61\xd3\xb0\ \xf9\x16\xda\x9c\x7a\x6d\x13\x20\xad\x01\x98\x08\xbd\x61\x74\xe5\ \xd8\xc0\xaf\xce\xae\x7d\x17\x72\xe4\xdd\x26\x92\xef\xe6\x4d\xf9\ \x77\xf0\xe7\x3b\x87\x13\x5f\x9b\x01\xb4\x18\x13\x5b\xb2\x67\xcf\ \x0d\x9a\x34\xf4\xef\x2f\x1b\xfe\x4f\x5f\x6b\xa3\x54\x64\x31\xe8\ \xd1\x1b\xfa\xcc\x1d\x74\xef\xb1\xe0\xe3\x87\xb4\x33\xde\x2e\xb2\ \xc8\x5b\xd2\x1b\x2a\xc5\xbe\xf5\x76\xde\xde\xc9\x27\x60\x45\x80\ \xd5\xb7\x96\x71\xf9\xa1\x57\xca\x7a\xfe\x95\xe2\xe0\x16\xdc\xbd\ \x77\xd8\x80\x14\x36\xb4\x95\x81\x5d\xa9\xf3\x19\x7f\x62\x94\x62\ \x0c\x7f\x10\x5a\x27\xc6\x30\xfb\xf5\xd7\x5f\x64\xa5\x04\x58\xe1\ \x8a\x05\x15\xa2\x02\x86\x5d\x85\x50\xca\x16\xa5\x20\xb3\x5f\x04\ \xe8\x85\x08\xda\x82\xfc\x81\x96\x9f\x8e\x28\x9e\x43\x14\x55\x2c\ \x16\xf9\x0f\x6a\x30\x72\x15\x02\x32\x34\x46\x80\x0c\x32\x27\x8a\ \x78\x62\x7a\x27\xd2\x28\x45\x2d\xbb\xd8\x81\xce\x35\xf0\x19\x29\ \x1f\x0f\xb4\x25\x39\x93\x0d\xf7\x89\xf1\x24\x94\xdc\xa5\xe7\x5f\ \x6e\x0e\x96\x22\xc5\x2e\x84\xec\xb2\xcb\x39\x5c\x3a\xe7\x25\x70\ \x9a\x89\xf9\x54\x13\xf4\x40\xf8\xa4\x18\x40\x9e\xa7\x66\x7b\xa1\ \x39\x78\xc4\x2e\xb7\xdc\x52\xcb\x11\x0e\x5e\x92\xa2\x8a\x77\x96\ \x56\x88\x9e\x5c\xdd\x82\x0c\x87\x80\x02\x1a\xda\xa0\x84\xd2\xf8\ \xd9\x16\x47\x14\x60\xc3\x2d\xf4\x1c\xb1\xe3\x11\x74\x42\x1a\xa9\ \x62\x6a\x51\x1a\x54\x06\xfe\xcc\xb0\xe7\xa9\x8f\x39\xa6\x19\x22\ \x8d\xe6\x81\x4a\xc8\x2d\xbb\xfc\x61\x1e\x8a\x78\xd4\x72\x0e\x9d\ \x5c\x1c\xd0\xe5\xaa\x7e\xb9\xba\xa7\x71\x22\x86\x96\x60\xa0\x00\ \xf4\x87\xeb\x8c\x78\xdc\x42\x48\x2d\x78\xfc\x0a\x40\x29\x72\xfa\ \x5a\x0a\x1e\x7f\xe0\xd1\xc3\x25\xc7\x22\x7b\xd6\xa4\xca\x02\x45\ \xe6\xa6\x62\x30\xa3\x23\x84\xff\xb5\x47\xe3\x38\x0e\xe2\x81\x68\ \x2d\x52\x0c\x63\x9e\x18\xe7\xa4\x92\x4a\x01\xc3\x8c\xf8\x83\x14\ \x11\x44\x50\x40\x1b\x45\xe8\x65\xee\x59\xe2\xa5\x5b\xc7\x18\xac\ \xe1\x17\xad\xbb\x9d\x72\x37\x2d\x00\xc3\xd4\x52\xc0\x39\xfa\xd6\ \xbb\xcb\x4c\x84\xe8\x3b\xcc\x0f\x50\x1a\x02\x05\x50\xb0\xec\xf1\ \x49\xb9\x0b\x23\xf5\xa2\xc3\x75\xc8\xe8\x1f\x7a\x84\x46\xb9\x63\ \x29\xee\x96\x42\xcf\x2e\x52\xcc\x78\xc4\x1f\xb5\x10\xe2\x2f\x21\ \x3f\x0c\x33\xb2\x8d\xc8\xd8\xc0\x95\x0a\x29\xdb\xd9\xb2\x4e\x48\ \xc2\x0c\xf1\xcc\xd0\x12\x5a\x28\xae\x58\xf6\xbc\xed\x1f\x42\x13\ \x72\xed\x1f\x46\x93\x6c\x4c\x06\xef\xd8\xa6\x42\x1b\x2c\x3f\xed\ \xd2\x85\x0e\x37\x01\x05\x32\x11\x50\xfc\x6c\x68\xd8\x59\x8d\x5f\ \x9b\x47\xd0\xa3\xa8\xfe\x79\x19\x7b\xfd\x75\xd8\x3f\x04\x4e\x88\ \x63\x42\xc5\xf0\x8c\xc2\x6a\xb7\xe4\x22\xcc\x5e\xa9\x53\x30\xdc\ \xe8\x31\x83\xe3\xad\xed\xda\xdc\x9a\xa1\x0e\x4a\xc1\x6b\xb6\x40\ \xfb\x5d\xb4\x21\x23\x07\x3e\x4a\xd9\xb5\x35\xd1\xb4\xd3\x89\x77\ \x54\x57\xba\x4d\x8c\x31\x46\x06\x50\x32\x83\x4c\xac\xcc\x18\x62\ \x23\x8e\xe8\x45\x60\x0c\xc5\x00\x54\x5d\x0a\xbd\x86\xd6\x72\x4b\ \x01\x78\xe0\x51\x80\xd7\xb5\x18\x6d\x08\xe8\x37\xfc\x00\xcf\x78\ \x81\xd9\xb4\x07\xea\xa9\x2f\xf6\x89\xab\x42\x8d\xa1\x0e\xbd\x72\ \x67\x67\x42\xbb\x30\xc0\x6d\x48\xac\x05\xaf\x47\xa5\x75\xd9\x75\ \x88\xf3\xb6\xf4\xc4\x09\xf6\xf1\xb5\x14\xdd\xb1\x83\x3f\xf8\x01\ \xe3\x57\x76\xa8\x5a\xbd\x44\xd2\x61\x28\x54\x13\x21\x00\x02\x32\ \xc6\xc1\x0c\x8b\xa5\x8f\x19\xb1\xca\x54\x7a\x6a\x57\x3b\x0e\x25\ \xc8\x41\x93\xdb\xd6\x95\xb0\xf5\x87\x3f\xfc\xc0\x82\x46\x63\x8f\ \x18\x7e\x40\xba\x24\x09\x65\x2a\x69\xdb\x1f\x43\xd0\x55\x9f\xec\ \x65\x00\x08\x52\x18\xc7\x67\x62\x65\xb1\x1c\xe5\x68\x0b\xc9\x49\ \x50\x04\x6c\xa7\xbb\x05\x29\x68\x7c\x6a\x12\x58\xfc\xa4\x60\x41\ \x0b\x06\x2e\x44\xfe\xa5\xc8\x81\xc3\xda\xc0\x03\x10\x4e\x48\x84\ \x0b\x79\x19\xf4\x42\xb0\xbd\x4b\x64\xc7\x5d\x96\xeb\x5d\xac\xb4\ \xe3\xbd\x27\x22\x50\x72\x4e\x32\x44\x04\x16\xe4\xa4\x29\x52\x69\ \x64\x19\xf8\x83\x14\x2e\xf8\x83\x02\x14\xe0\x07\xfb\x72\x82\xd2\ \x18\xd7\x06\x15\x18\x20\x84\x48\x1c\x48\x98\x52\x03\xc0\x67\x14\ \x50\x3b\xee\x4a\x5f\xef\x72\x43\x33\xec\x68\x27\x72\xb8\x8b\x5c\ \x02\x0b\x36\xc5\x04\x6d\x08\x19\x81\xa3\x87\xc6\x0a\x10\xbf\x1f\ \xac\xc7\x10\x05\x60\x1c\x50\xde\x51\x38\xbd\x1c\x31\x8e\x79\x2a\ \x5d\x13\xd4\x51\xc0\xc8\x5c\x31\x8f\x99\x8a\x97\x6e\xa8\xf8\xa3\ \x18\x6a\xc7\x8f\xe9\x99\x5b\xef\x1c\x94\x9e\x52\x0c\x2c\x03\xc7\ \x2b\xc0\x05\x6c\x64\xbb\x1f\x74\x42\x92\x75\xe8\xe0\x4c\xde\x61\ \x83\xa2\x50\x4f\x6d\x4a\xe4\x8c\xdb\x08\xe8\x49\x04\x5e\x22\x8f\ \xcf\x5a\x8e\x8f\xe6\xa6\xcc\xe3\xe8\x06\x3b\xed\xa2\xe2\xa6\x2e\ \xc5\x1f\x07\x3d\x09\x96\xb2\xe4\x90\x31\x72\xa0\x4b\x87\x95\x8d\ \x74\xef\xe8\x44\x0b\xca\xa6\x82\x3d\x4c\xef\x92\x89\x0b\xa6\x60\ \x9a\x90\x81\x08\xc0\x6b\x0b\xcc\x38\x66\x88\xfc\x28\x4a\x5a\x55\ \xcd\x59\x5b\xfe\xf0\x00\xa0\x9a\x89\x1f\x31\xe0\x30\x7d\x1d\xba\ \x00\x14\x0a\x70\x1f\x00\x20\xe3\x79\xb8\xd4\xa5\x38\xc7\x19\x14\ \x58\x94\xf3\x97\x91\x8a\x9a\x63\x6c\x00\x84\x02\x62\xe7\x93\xee\ \x42\x8e\xf7\x72\x43\x4f\xbb\xe5\x33\xa3\x76\xe3\x0e\x32\x32\x00\ \x8f\x0b\x44\xc6\x18\x63\xc0\x65\x2e\x9d\x22\xce\x4e\x74\xb3\x0e\ \x36\x68\x83\x05\xea\x04\xd1\x15\xb1\x4d\x30\xaf\x83\x90\x1f\x11\ \x08\x4f\x04\x22\x87\x9f\xf8\xa9\x27\x77\xa0\x09\xc3\x90\xf2\xd1\ \x4c\x17\x98\xd1\x06\x55\x9a\x4b\x70\xbe\xa3\x05\x2d\x98\xe4\x24\ \xdf\x51\xb6\x26\x18\x11\x9d\x2c\xe2\x82\x3a\xd9\xa2\x3d\x77\x1e\ \xe7\xa2\x9f\xc4\x0e\x72\x5a\xe3\xc7\x90\x62\xc7\x03\x45\x35\xaa\ \x88\xf8\x93\x40\x00\x44\x40\x88\x09\xa5\xea\x2e\x5b\x4a\x3a\x71\ \x82\xf3\x29\x16\x78\x86\x58\x6a\x0a\x1e\x2e\x10\xee\x6d\x34\x7b\ \x66\x4f\xaf\x08\xc3\xe4\x0c\xd5\xac\x4f\xdc\x28\x47\x47\xf9\x42\ \x19\xae\x47\xa7\x6e\x85\x6b\x5c\xe7\xea\xd2\x5d\xc2\xa1\xb2\x5c\ \x79\x2a\x38\xe0\xa1\x02\x3d\xc0\x31\x3e\x60\xb2\x4b\x13\xfc\x00\ \x04\x1c\xe9\x86\xb1\x71\x93\x5c\x46\xc7\x4a\xd6\x7b\x3a\x8b\xb0\ \xfc\x44\xfe\x25\x0c\x3f\x0a\x28\x80\x52\x4c\xa3\xc8\xc8\xc1\x1c\ \x95\xa5\xd0\x4e\xdc\x92\xb2\x5d\x09\x27\x1c\xc0\xc1\xd0\x26\xb4\ \xe1\x8d\xfa\x83\x4e\x21\x24\xba\xa7\xb7\xa1\x75\x3b\xdf\xab\x01\ \x32\x60\x30\x43\x31\x3c\xd7\xb0\x6a\xcd\x0d\x02\x59\xc1\x0c\xec\ \x8e\xd2\x03\xaa\xf5\x80\x29\x49\x49\x5e\xed\x44\x60\x74\x92\x74\ \x2a\x66\x9b\xfa\x52\xe1\xb6\xe0\xb2\x4e\x0d\xa7\x3a\xae\x81\x38\ \xf0\x90\xb0\x2b\x6f\xeb\x6e\x15\xe1\x39\x5d\xc8\xe9\x53\xb1\x8b\ \xb5\x9b\x09\xc0\xdb\xdd\xb1\xee\x74\x0b\x71\x13\xef\x4f\xb3\x83\ \x56\x05\x16\xac\x5d\x68\x35\x06\x14\x76\x7b\x17\x0a\x3b\xc6\xb7\ \x1d\x94\xeb\x53\xc2\xd9\x52\x0c\x7f\x33\x9c\xef\x85\x43\x01\xe6\ \xfb\xd9\xcb\xf4\xcf\x29\x6e\x2b\x6d\x6d\x61\x28\x06\x27\x69\x41\ \x7c\x08\x5c\x71\x76\x5b\xeb\x53\xc3\xc6\x10\xad\x31\x14\xeb\x33\ \x6f\xbc\x62\x0f\x44\xa0\x06\x3f\xb6\x2e\x33\x2e\x90\x01\x28\xac\ \x11\x66\xe1\xcc\xb0\x5d\x92\x4c\x55\x0e\x03\x45\x9c\x70\x88\x72\ \x94\x0b\x90\x81\xe4\x5e\xe6\x27\x5c\x19\x2d\x10\x72\x87\x1e\x68\ \x4e\xb7\x60\xa9\x45\xe6\x8c\xfd\x53\xb0\xc2\x7e\x17\xbc\x85\x35\ \xf0\xfe\x8e\x67\x5b\x58\x52\x5e\x37\x3f\x11\x20\xc3\x91\xf7\x84\ \x21\x0e\xff\x76\x97\xc1\x4d\xf2\x4c\xa0\x5a\x59\xaa\x4a\xf9\xcf\ \x50\x7d\x04\x3c\x68\x8a\x55\xbf\xec\xb6\x09\x39\x28\x2d\xf9\x6a\ \x0b\x3e\xf1\xe1\x08\xc7\x63\xf6\x8f\x6a\x8b\x9a\x1c\x02\x8b\x97\ \xa3\xca\xf1\x9e\x72\x36\x9d\x66\xd0\x5c\x94\x0c\xae\x92\x2b\x87\ \x5f\x9a\xe7\x6f\xd2\x95\xaa\x50\x06\x74\x88\xe1\x00\xd5\x5d\x70\ \x61\xaf\xa7\x99\xa3\x1f\x60\xe7\x63\x2d\x04\x32\x3f\x92\xd3\x22\ \xee\xd2\x1a\xe9\xe3\x20\x38\x02\x97\x1e\x65\x04\xb8\xeb\xdd\xaf\ \xd2\x73\xd3\x36\x46\x36\xae\x3f\x75\x01\xdd\x7a\x85\x38\xbb\x05\ \x27\x86\x9d\x42\xea\x3a\x60\x76\xd4\xa8\x5e\xe8\x9f\xb7\x1d\x62\ \x97\x5a\xc0\x00\x75\x52\x4c\x30\x11\x0d\xb7\x06\x3f\x7a\x9f\xb8\ \x26\xe4\x3e\x7b\xfd\x5a\x66\x04\xfb\xc6\x05\x26\xab\x60\x95\x83\ \xe9\x7c\xb6\x4b\x76\x71\x33\x6f\x3d\xfc\xe0\x07\x0b\xa7\x46\xda\ \xeb\xbd\x4b\x93\xed\xdc\x64\xdf\x42\x75\xd5\xaa\x66\xf5\x38\x17\ \x0a\x05\x74\x94\xd8\x2a\x8b\x1b\x13\xec\x52\xf9\x5f\x4d\xe7\x13\ \x77\xab\x65\xf7\x71\x54\xab\xcc\x1b\x17\xdb\xd3\xc8\x1e\x6a\x8b\ \xfe\x23\x10\x3e\x1c\x15\x72\x37\x70\xbe\x40\x4a\xc5\x34\x6d\xc7\ \x0c\xdc\xae\x4d\x6d\x29\x54\xb7\x2d\xe5\x4e\xb0\xda\xa5\x04\xe7\ \x25\x7d\x1f\xde\x13\x24\x69\x19\x4a\xf6\xae\x38\x15\x5b\x6c\x5d\ \x4d\x03\x75\xc6\x08\x76\x37\xdd\x06\xcc\xeb\xa5\xd3\xfb\xb4\x1d\ \x97\x5c\xc9\x27\x47\xef\x66\x32\x23\x05\x2b\xaf\xb3\x9e\x5d\xee\ \x5b\xba\xce\xc4\xe0\x07\x57\x38\xa0\x0d\x8e\x73\x6c\x83\xd8\xd5\ \x7b\x2d\x74\x4f\xb6\x62\x03\x28\x5c\x60\x86\x93\x83\xf0\x8a\xed\ \xad\x8c\xeb\xa8\x99\xdd\xd8\x89\xa0\xb1\x9b\x0e\xf2\x4d\x43\xdd\ \xcd\xa9\xd5\x54\x48\x81\x80\xe5\xff\x8d\x27\xe0\x1b\x9e\x64\xd7\ \xbb\x5e\xd7\x83\x3b\xbe\x05\x36\xbf\xf9\xe2\x5f\x8e\xf3\x0e\xdb\ \x20\x65\x44\xba\x0a\x17\x7e\x42\x50\x7f\x16\xd2\xd2\xa6\xd4\xa7\ \x82\xa1\xae\xf1\x18\xe6\xdb\xd3\x9d\x26\xab\x58\x93\x8d\xca\x8c\ \x9e\x32\xbb\xcc\xb0\x80\x50\x64\x7a\x36\x7f\x67\x56\xc3\x82\x79\ \xea\xc2\xd7\x1b\x62\xc8\x77\xf8\xe0\x38\xe7\xb3\xa8\x31\xbc\x78\ \x9c\xd7\xc1\x0e\x2a\xc8\x40\xb8\x93\xe2\x57\x3f\x20\x43\x9f\x99\ \x4a\x8e\x75\xf7\x49\x4f\xa3\xb3\x76\xcc\xa1\x67\x86\x32\x94\xfe\ \x99\x4f\xbe\x7f\x15\xc7\x1a\xfd\x23\xa4\x23\xbd\x05\x0b\x78\x45\ \x05\xd9\xe8\xc1\x33\x54\x60\xfb\xfa\x80\xf8\xb7\x1a\x7e\xea\xcd\ \xdf\x0f\x76\x97\xda\xdc\xf7\x93\xf4\x7d\xf1\x0b\xfe\xde\x16\x00\ \x81\xd0\xd1\xb1\x07\x36\xa0\x0e\x86\x50\x4a\x43\x37\x5b\x99\xe6\ \x77\x1f\x97\x5d\x67\x05\x50\xcb\xf1\x3d\xee\x74\x74\x7e\xa4\x60\ \xdf\x93\x1e\x65\xc5\x6e\x97\x60\x7e\x4d\xf0\x46\x1b\x70\x09\x07\ \x70\x36\x59\x86\x62\xc4\x01\x62\xed\x25\x7c\xba\xc7\x67\xc4\x07\ \x65\xd7\xf6\x54\x29\x58\x76\x06\xf7\x67\x05\x70\x38\x3c\xd7\x11\ \x85\xd0\x06\x19\x00\x03\x99\x12\x54\x54\xb4\x7a\x21\x77\x7d\x33\ \x36\x81\xb5\x85\x5d\x26\xc0\x0c\x35\x50\x35\x0d\xb8\x69\xa9\xe4\ \x5a\x6a\x95\x81\x34\x51\x04\x85\x20\x1a\x1b\x70\x00\x7a\xd0\x7e\ \xd3\xd1\x72\x2b\x05\x62\x50\x05\x62\xf3\x37\x6a\x0b\xd5\x72\x76\ \x36\x79\xd9\x16\x76\x7f\x46\x0f\x7c\x45\x83\x13\x17\x84\xbd\x13\ \x84\xd6\x27\x84\xa4\xc7\x80\x31\xe4\x6e\x6b\x38\x60\xd7\x61\x40\ \x46\x97\x86\x42\x15\x69\x97\xf0\x22\x31\xb0\x32\x85\xf0\x1e\x07\ \xe0\x00\x54\x58\x1b\x4f\x95\x61\x54\x05\x7c\x5a\xe8\x61\xfe\xc4\ \x27\x7c\x53\x15\x86\x1f\xb6\x50\x08\x17\x65\xa3\xa0\x76\x21\x11\ \x02\x38\x58\x5e\x46\x97\x66\x36\x46\x37\x0c\x08\x4f\xe0\xd5\x89\ \x94\x86\x6c\x1f\xe7\x47\x0b\xa8\x71\xb9\x71\x09\x0e\xd0\x46\xb0\ \xf0\x09\x54\xd1\x1c\xa7\x48\x29\x5b\x37\x57\xfd\x67\x7f\x1d\xd6\ \x85\xf2\x07\x79\xdd\xc4\x61\xb6\xb8\x4b\xc0\xf7\x88\x64\xa8\x13\ \x1a\x32\x5b\x0a\x94\x1f\xa0\x78\x5a\xf2\x46\x8c\x02\x36\x72\xee\ \x04\x87\x3f\xa5\x63\xc6\xe8\x6b\x00\x46\x8a\x84\x72\x09\x06\xf0\ \x15\xb6\xc0\x04\x46\x44\x19\xd2\x18\x88\x2e\xd7\x64\x4d\x95\x4b\ \xfd\x17\x86\xfa\x67\x8b\xf7\x87\x78\xd6\x16\x65\x7d\x06\x76\x33\ \x37\x73\x70\xe0\x84\x39\xb1\x07\x17\xd0\x66\xf9\x21\x74\x9d\xe6\ \x83\x9e\x66\x54\x17\x05\x66\xab\x15\x7e\xa3\x78\x56\x47\x07\x8d\ \xa5\x78\x8a\xd2\x03\x0b\x4c\x40\x15\xa3\x71\x0d\x48\xa0\x8d\xb9\ \xf7\x4d\x57\x78\x6a\xf5\x57\x76\xf4\x77\x8b\xc0\xf7\x64\x37\xd7\ \x7f\x07\x07\x0f\x92\x08\x12\x2f\x10\x01\xe3\xa5\x40\x9a\xc2\x5a\ \xf4\xd8\x8f\xad\xe5\x63\x24\xe7\x6e\xca\x36\x7e\x5f\x75\x92\xfe\ \x68\x54\xd2\x18\x03\x2a\x70\x02\x27\x91\x32\x7c\xa8\xfe\x11\x06\ \xd0\x30\x62\x32\x70\xb9\xc4\x78\x58\x68\x8b\x0a\xc9\x78\x99\xa5\ \x88\xde\x18\x65\xe9\x08\x79\x2d\x50\x00\x17\xe9\x11\x85\x90\x02\ \xd7\xb1\x83\xc7\xd6\x8c\xf4\xd8\x8c\x16\x43\x60\x40\xc6\x53\xca\ \x66\x66\xf5\xe8\x4c\x46\x25\x78\x1a\xb7\x01\x7b\xd0\x59\x27\xa1\ \x07\x2a\x60\x0a\x7a\x30\x90\x85\xe0\x09\xd7\xc0\x7e\xbc\xa5\x78\ \x95\x87\x93\x19\x66\x85\x4f\xe6\x7b\xa2\xd6\x7b\xbe\xe7\x7b\xcf\ \xa0\x13\x5c\x60\x0c\xc0\x88\x89\x4f\x67\x60\xb1\x65\x56\xe0\x15\ \x01\x75\x57\x74\x78\xe9\x77\x56\x39\x63\x58\x04\x8d\x97\xd0\x03\ \xb6\xa0\x07\x27\xa0\x07\x7a\x00\x96\x2a\xd0\x59\xe6\x24\x03\xe8\ \xd0\x06\x08\x99\x78\xd4\x26\x6a\xd9\x26\x8b\x1e\x46\x6d\xbe\xb5\ \x61\xe3\x58\x70\xaa\x06\x7c\x45\x69\x94\xe2\xd5\x7d\x0a\xf8\x4c\ \xa4\xd7\x4c\x20\x49\x37\x08\x66\x6b\x80\x19\x98\x4f\xb7\x63\x63\ \xc6\x0c\xe3\x10\x31\x1a\x77\x09\x5c\x60\x00\x0e\x00\x0b\x8d\xc9\ \x98\x67\xc3\x92\x0e\x80\x0e\x2a\x10\x03\x94\x99\x24\x8d\x08\x70\ \xc5\xb7\x99\xbb\xc4\x8d\x73\x05\x94\x1f\xf6\x88\x8e\xf7\x46\x39\ \x51\x08\xe3\x85\x97\x50\xf7\x53\xa8\x49\x8c\xab\xfe\x79\x56\x92\ \x63\x5d\xa6\x34\x8c\xaa\x87\x7d\x3d\x75\x9b\x87\xf9\x0c\xba\x79\ \x02\xc2\xd9\x98\xec\x57\x38\x31\xd0\x9e\x31\x50\x99\xb7\x37\x6a\ \xf9\x27\x8e\x38\xb9\x52\x37\x19\x70\x91\x37\x4e\xa8\x36\x5c\x0b\ \x20\x65\xdd\xc6\x05\x3a\x41\x9d\x4a\x59\x75\x7a\x99\x9a\x83\x39\ \x54\x67\x85\x1e\x14\x08\x8a\xa1\xb8\x9a\x1c\x75\x2b\x71\x03\x7b\ \x93\x01\x1a\xea\xe7\x0e\xba\x89\x0e\x5e\xc9\x92\x67\x53\x13\x6d\ \xd0\xa1\xc4\x09\x9f\x1b\xc6\x64\xf1\xc5\x78\x3c\x49\x59\x90\xc7\ \x99\xe6\x18\x7c\xe0\x80\x0b\xb8\x90\x06\x9b\x05\x0f\xef\xe5\x07\ \x65\x78\x11\x7d\x78\x6c\xc3\x98\x6c\xd9\xa9\x9a\x4e\xb9\x66\xa6\ \xc9\xa0\xb1\x89\x77\x69\x65\x02\x97\x90\x02\xdd\x65\x54\x9d\x44\ \xa1\x2f\xe0\x0e\x0e\xf0\x02\xe6\xf9\x98\x48\xa0\x07\x06\xb0\x07\ \x06\x90\xa1\xee\x89\x90\xb7\x68\x93\x8b\x98\x99\xb8\xd7\x85\x77\ \xf6\x93\xb9\x28\x5c\x37\x60\x0c\xb8\x00\xa3\x64\x2a\x16\xd3\x09\ \x4d\x0b\x5a\x75\xa8\xd9\x71\x56\x59\xa0\xc6\xe6\xa3\x0c\x7a\x58\ \x6a\xa5\x69\x9e\x94\x02\x29\x10\x01\x93\x31\x19\x97\x50\x31\xa1\ \x71\x09\xe3\xf0\x0c\xcf\x70\x0d\x45\x60\x00\xfe\xc2\xa9\x02\x32\ \xa0\x11\x9e\xb0\x07\x8c\xa9\x98\x7a\xf0\x9e\xa9\x61\x7c\xec\x85\ \x7b\x03\x47\x79\x6b\x39\x7f\x8a\x97\x8b\x31\x07\x07\x69\x80\x0b\ \x0b\x00\x0f\xf0\xd0\x09\x7e\x00\x0f\xec\x08\x13\x4f\xd8\x7d\xb0\ \xb9\xa3\xfd\xa8\x97\xcb\x78\xa3\x21\x47\x8a\x26\xc0\x0a\x69\xb6\ \x05\x97\xb0\x0f\xfb\x30\x0e\x97\x70\xab\xe3\xb2\x04\xb7\xba\x84\ \xd6\xf0\x0c\x2f\x50\xa8\x7a\xe0\x84\x1b\xf1\x09\xe6\x44\xac\x27\ \xd0\x30\xfe\xf6\x8a\x36\xa9\x90\xcc\x3a\x79\xf3\xa9\x9f\x8b\xc8\ \x99\x42\x19\x65\x9e\x0a\xa3\x55\xa6\x13\x6d\x46\xa0\xd7\xe7\xa0\ \x6d\x9a\x9a\x79\xe9\xa3\xae\x5a\x69\xde\xb3\x01\x11\x90\x02\x19\ \x39\x09\x45\x90\xae\xe9\xd7\x03\x78\xba\x84\x3d\x60\x01\x2a\x60\ \x01\x8c\x09\x0b\xc2\xaa\x11\x9f\xc0\x03\xf7\x6a\x0b\xc5\xe9\x15\ \xfb\xea\x99\xf1\x45\x88\x97\x59\x9f\xba\xa8\x9c\x78\x86\x67\x0b\ \xb5\x9f\xef\x05\xa3\x2f\x30\x9a\x1d\x81\x89\xde\xba\xa3\x6a\xd5\ \x71\xab\x7a\xa3\x10\x6b\x56\x9c\xc6\x0a\xca\xc1\x0c\x7c\x60\xa7\ \x29\xf0\x0c\x42\x20\x04\x2f\x60\xa7\xbb\xea\x23\x56\x73\x0d\xee\ \x60\x01\x0e\x30\xa5\x9d\x75\xa8\x85\xf0\xfe\x6a\x32\xb0\x07\x89\ \x59\x78\x31\x90\xa4\x21\x30\x47\xcc\xc9\x9c\xcb\xd9\x5b\xf8\xd7\ \x96\x1e\x56\x6d\x04\x57\x07\x8f\xc8\x25\x67\x9a\x89\xcb\x58\xb1\ \x91\xa6\xaa\xa7\x79\xa0\x16\x4b\xa0\x5b\x80\xb1\x26\x60\x0e\xe2\ \xc0\xb1\x2f\x20\x04\x48\x00\xb2\xf6\x90\x02\x93\xa0\x23\xcc\x30\ \xa1\xdc\xd1\xab\x06\x60\x9e\x0e\xf0\x98\x2d\x69\x0b\xe6\xa4\xa8\ \xc3\xb9\x19\x4d\x60\x01\xb7\xca\x0c\x40\xe0\x0e\x9b\x81\xb3\xf6\ \x19\xad\x4f\x56\xa2\x37\x99\x85\xd5\x46\x59\xdf\xd4\x7f\x51\x06\ \x0e\x0c\x8b\x11\x93\xc1\xa6\x6c\x9a\x92\x4e\xd7\xaa\x4a\x2b\x60\ \x0c\xda\xb4\x0a\xe6\x01\x29\x90\x05\x72\xe0\xab\x6a\xf0\xb8\x6a\ \x00\xb2\xe3\xd0\xa7\xb6\xea\xa7\xb7\xca\xb5\x00\xd0\x03\x82\xba\ \x7e\xee\x59\x13\x2d\xe9\x50\xed\x59\x78\x48\xd0\x03\xa0\xc1\x0c\ \x52\x10\x02\xdd\x48\x6d\x01\xab\x4b\xd8\x76\xa9\x88\xe7\x64\x73\ \x05\x4e\xc4\x15\x62\x16\xa9\x13\x6b\x7a\x9d\x55\x99\x92\x13\x9b\ \x89\x85\x4b\x28\xca\xe1\x01\xe0\x37\x60\xc3\x96\x1c\xe6\xb0\x0f\ \x6a\xe0\x0e\x59\x40\xb3\x8f\xeb\x0e\xb5\xba\x1c\x57\xc7\xb1\xcf\ \x60\xa7\x3d\x30\x2e\xa2\x61\x0d\x9e\xfe\x70\x00\x65\xf9\xa1\x81\ \xe1\xb9\x55\xba\x19\x6d\xa0\x07\xa4\x8b\x1f\xe3\xa0\x0e\x39\x30\ \x67\x21\x1a\x70\x5f\x18\x7f\x02\x8b\xb7\xcb\xf9\x64\x30\xda\x7f\ \xbd\x48\xaa\x7f\xeb\x4c\xdb\x2a\xb8\xf4\x4b\xbf\x4d\x29\x60\x0a\ \xc6\x0a\xc0\x7b\x56\xac\x50\x30\x18\x1b\x01\xfb\x00\x05\x72\x90\ \x02\xfb\x20\x07\x8f\x4b\x06\x19\x79\xa4\x43\x6a\x0f\x2f\x20\x07\ \xee\xf0\x02\x2f\xf0\xb5\x5c\xe0\x09\xd6\x7b\x00\x64\x39\xa5\x8e\ \x3a\x13\xb3\x67\x5c\xfd\xfa\x15\xd7\x70\xa4\x23\x22\x59\x9e\x09\ \xa9\x31\x97\x85\x78\x86\x6a\xa4\x76\xb7\x36\x80\x8e\x7d\x4b\xa3\ \x44\x1b\x8a\xf6\xab\x66\x6c\xd8\xbb\x98\x56\x9a\xc0\x9b\xc3\xac\ \x50\x03\x93\x50\x03\x1e\xc0\x0a\xe2\xc0\xb8\xe2\x30\x0e\xfb\xe0\ \x0e\x64\xa0\x06\x05\x7c\xa4\x08\x96\x02\x7c\x20\xc1\x1f\xeb\x00\ \x48\x80\x04\x28\x6b\x00\xd9\x70\x0d\x3d\x90\xc1\x20\x88\x62\x1e\ \xcc\x15\x63\xf0\x0c\xce\x22\x05\xe6\x3b\xb0\x84\x08\x76\xb7\x68\ \x20\x61\xf8\xc2\x19\x41\x9d\xaa\x6a\xbf\x08\x4a\xc3\x3f\xf8\xbb\ \x9b\x06\xbc\x5b\xa0\x0c\x11\x60\x6b\x93\x10\x01\xd1\x90\x05\xfb\ \x10\x01\x44\x2c\x07\x72\x40\x06\xfe\x21\x90\x02\x10\x3a\x09\x76\ \xfa\xc0\x8f\x8b\x04\xc4\xe9\xa1\x4f\x7a\x02\x7b\x50\x04\x52\x7a\ \xb6\xb4\xe1\xc1\xbb\xd5\x06\xd7\x50\x28\x46\x96\x59\x9d\xa9\x8b\ \xfa\x87\x7b\x7a\x12\x4e\x0b\x3b\x9d\x07\x0a\x54\xdc\xca\x80\x3b\ \xa6\xa6\xf6\x88\x6c\x0b\xea\x02\x1e\xe0\x02\x35\x20\x0e\x35\x50\ \x03\x5a\x20\x0e\x79\x1c\x0d\xe2\x10\xb5\x40\x90\x05\x21\x30\x06\ \x59\x00\x2f\x05\x33\x0e\x7c\x20\x07\x42\x10\xb9\x50\x9c\xc8\x1e\ \xda\x9e\x8c\x69\x00\x27\xf0\x98\xef\x19\x18\xff\x33\x47\x9b\x11\ \x02\xd7\xa0\x23\xc8\xb0\x0b\x61\xbc\x96\xc4\x45\x8e\xae\x98\x12\ \x67\xaa\x89\x6c\xdc\x1e\xab\x6a\xc3\x83\x1b\xc7\xbf\xbb\xca\xb0\ \xec\xca\x74\x1c\xcb\x67\xb0\x0f\xe2\x80\x0c\xb2\x2c\x07\x63\x10\ \x02\xfb\xe0\x2e\x7c\x4c\xc8\x86\x1c\xb9\x6a\x80\x04\x94\xd9\xcc\ \x1e\x1c\x03\x48\x20\xb6\x2a\x60\x07\x1d\x4a\x61\x42\x01\x14\xb7\ \x60\xab\x00\x10\x4f\x40\x30\x61\x4b\xd6\x02\x9f\xca\xc9\x59\x66\ \x03\x21\x50\xb3\xd3\xd1\x06\x00\x2a\xbf\xdd\x1c\xb1\xb8\xcb\xad\ \x47\x98\x69\xe2\x25\x5e\x2e\xe0\x02\xca\x20\x0e\x30\x00\x03\x5a\ \xf0\xca\x74\x7c\x06\xf5\x10\xfe\x0d\x11\x20\x0e\x40\x40\x06\xef\ \x7c\xa7\x29\x10\x0d\xb5\x99\x02\xc0\x0c\xb9\x88\xdc\xcc\x5e\xc1\ \xcc\xc6\xa5\xa1\xc3\x69\x07\xda\x3b\xd0\x1c\x1c\x26\x76\x00\x6e\ \xe3\x50\xd4\x29\x90\x01\x61\xbc\x4b\x9e\xca\xc2\x16\x20\x40\x9f\ \x74\xba\xb5\xe1\x70\xa0\x7c\xd1\x18\x4d\xb4\x56\x93\x1c\xaa\x8c\ \xca\x03\xb6\xca\x1e\xa0\x0c\xb1\xbc\x0c\x22\x5d\xd2\x5e\x5d\x0f\ \x64\x10\x0d\x30\x70\x06\x50\x10\x02\x50\xb0\x0f\x30\x30\x0e\x67\ \x90\x05\xe2\x10\x01\x3d\x60\x0f\xee\x10\xcc\x88\x1c\xd0\xa2\x55\ \x13\xc8\xc7\x92\x3e\x4d\x99\xfd\x9a\x65\x6d\x64\x01\x2f\x30\x0e\ \x52\xe0\x0e\x21\x60\x03\xac\xfb\x8a\x4e\xa1\x3d\xc4\xd4\x1e\xcc\ \x40\x0f\xed\x67\x55\x68\xbc\x18\xdd\x3c\xca\xd8\xf9\xa3\x43\x95\ \xc3\xc1\x9b\x4f\x9a\xad\x0c\x35\x30\xd2\xd1\xb0\x0c\x24\x6d\x6b\ \x30\x40\x06\x59\x40\xcb\x64\xd0\x3a\x64\x10\x37\x78\x4c\xa4\x5b\ \x30\xd7\xee\x20\x07\x16\x80\xc8\x3f\x7d\x68\x35\xc1\x92\xb8\x4d\ \xcc\x40\xcd\x16\x6d\x60\x07\x16\x80\x0e\x29\x20\x05\xea\x60\x01\ \x63\x10\x26\xa4\xe6\x36\xda\x62\x35\xe5\x27\x18\x2a\x30\xd9\x14\ \x71\xa4\xba\x6b\x56\xf8\xfe\x3b\x8a\x74\x93\xc3\xca\xb0\xa0\x1e\ \xbd\xca\xca\xe0\xd5\x5a\xb0\x0c\xa2\x3d\xd2\x5a\xd0\xdd\xf5\xb0\ \x0c\xcc\xa0\x05\xa8\xdb\x04\x59\xe0\x2e\x22\x19\x4f\x29\xe0\xc0\ \x1f\x1b\xc5\xa1\xbb\xdb\x1c\x9c\xd3\xb7\x3d\x9c\xc3\x99\xc8\xf2\ \xbd\x27\x1d\xda\xdb\xdf\xe6\x0e\x86\x5d\xdc\x76\x31\x06\x16\xa0\ \x0e\x7b\xda\x3b\xd6\x60\x0d\x07\x90\xe0\xea\x77\x0d\x06\xbd\x05\ \x29\x90\xd4\x40\xd1\xdc\x3a\x81\xb9\xb9\x7b\xd1\x70\xea\xbb\xd8\ \xa1\xca\xaa\xcc\xbf\xc0\xab\xe1\x1e\x50\x03\xdb\x0d\xcb\x30\xe0\ \xdd\xdf\xfd\xd9\xd1\x10\x0a\x35\x60\x02\xca\x90\x52\x63\x10\x0d\ \x6d\x06\x5e\x93\x90\xbc\x0f\xec\x00\x54\x7b\xd3\x03\xcd\xcc\x39\ \x3d\x7b\xf5\x1d\xba\x01\x2d\xd0\x38\x6d\x5c\x21\x60\x01\x16\x40\ \x0f\xc4\x8d\x62\xae\x63\x5c\xf4\xe0\xa7\xd6\xf0\xa7\xe8\x10\x02\ \xb7\xd0\x06\x63\xd0\x06\xa9\x20\x14\xa9\x70\x0b\x5b\x22\x05\x76\ \x60\x61\x4d\x30\xa3\x17\x61\x00\x86\x60\xe1\xda\x79\xbf\x49\xdb\ \xc6\x39\x6c\x02\x20\x7d\xdd\xac\x70\xdd\x1a\x0e\x64\x9e\x1d\xde\ \xcb\x10\xda\xa3\x3d\xe2\xcb\x80\x56\x35\x90\x52\x50\xa0\x91\x9b\ \xc6\x0c\x51\xbb\x0f\xfe\x34\x7d\xc8\xed\x99\xdf\xff\x53\xcc\xa1\ \xcb\xe3\x86\xb7\x27\x1a\x2a\xe5\xde\xab\x25\xf4\xf0\x02\xb2\x27\ \x14\x36\x60\x01\x45\x6d\x00\x42\xfe\x0c\xee\x20\xe5\x75\xd0\x14\ \xa2\xe5\xdb\xb2\xb7\x16\x68\xa3\x13\x06\x80\x1b\x54\xed\x91\x6f\ \x8a\xd9\x7d\xb7\xd5\x3f\xfc\xc3\x26\x5d\xd2\x35\xc0\xbf\xac\x20\ \xd6\x35\x60\x0c\xdd\x4d\xe2\xe1\x2d\xe7\x20\x5e\x0f\x36\x60\x03\ \xf5\x90\xe2\x36\x26\xab\x51\x6b\xae\x35\xfe\xd3\x5a\xbc\xd3\x9d\ \xbb\xdf\xf9\xcc\x16\x2a\x60\x8d\x4c\xa0\x07\x00\x3d\x13\xa9\xd0\ \xdb\xe8\xb0\x0b\x42\xbe\x0b\x80\x3a\x0e\x07\xfe\x0c\x76\x30\x06\ \xfe\x42\x1c\xbd\x8d\x65\x5c\x71\x13\x39\xc1\x05\x76\x50\x0f\x4a\ \xe8\xaa\x6d\x4c\xdd\xcf\x84\x56\x1d\xde\xd5\xaf\xfc\x63\x3d\xec\ \xc3\x20\x0d\xe2\xf0\xae\x05\x30\x10\x0a\x24\xee\xdd\xa1\x10\x0a\ \x23\x4d\x06\x7e\x90\x05\xba\x5e\x75\xf0\x54\xae\x08\x7c\xcf\xda\ \xbb\x27\xc2\x4e\xdb\xfb\x9d\xdf\xf3\x1d\x15\x53\x51\x44\xb0\x90\ \xe5\x54\xde\x04\xa9\x60\x07\xa6\xb0\x0b\xd7\xe0\x81\xd7\x30\xc1\ \xe8\x40\x1f\x5c\x81\xe9\x15\x66\x61\xce\x3d\x11\xa8\x01\x05\xe3\ \x4e\xee\x12\x6b\xfe\xca\x4e\x97\xc3\xf9\xe4\xd9\x40\xf6\xca\xb0\ \xec\x97\xfc\xeb\xd9\xdb\x1d\xe2\xdd\x1d\x0a\x27\x4e\xef\x34\x3f\ \xd2\x23\x5d\x84\x3e\xca\x0a\x29\x20\x0e\xcf\x20\x07\x51\x8c\xcf\ \x40\xad\xd3\x82\xde\xb9\xbb\x7d\xe3\x1c\xdc\x46\x4c\xc0\x03\xaf\ \xb6\x07\xb0\x80\x65\x98\x1e\xf1\xe8\xf0\x0c\x07\xf0\x0c\xe8\x70\ \x0b\x11\x9f\xe5\xcc\xde\x14\xfe\xc2\xf1\xe3\xf1\xf1\x11\xb1\x5c\ \x75\xe0\x07\xd0\x5d\xd9\x61\x6e\xca\x1d\x27\xc7\x5c\x8d\xea\x3f\ \xc6\xc3\xb0\xcc\xf2\x21\x1e\xf3\x32\xff\xe6\xa1\x80\xd2\x67\x60\ \xd6\xd7\x5d\xe6\x3e\xba\xd2\x29\xa0\x09\x53\x7b\xd7\x3a\xad\xe3\ \xc3\x9e\xcf\x91\x9c\xe3\x41\xf1\x15\x5f\xb9\x07\x3c\xc0\x03\x4c\ \x60\x07\x53\xfe\xf8\x10\xef\xdb\xe8\x80\x0e\xa6\x60\x07\x96\x0f\ \xd0\xd9\x7e\xe9\x5d\xcf\xf5\xd3\x31\x3d\xdf\xce\xcc\x40\x30\xf2\ \xbd\xa6\xa6\xd8\xa9\x7a\xc9\xe1\xd5\xd7\xfd\xca\xea\xde\xee\xaa\ \xee\xf6\xaf\x9c\xe6\x71\x2f\xef\xcb\x50\xf7\xb4\x1f\x0d\x35\xe0\ \x02\xa6\x9e\xa6\xc9\xc1\x5d\xe6\x10\x01\xfa\xc0\x07\xf8\x5c\xec\ \x82\x4f\x9c\xc0\x1e\x14\x41\x51\xec\x39\x6e\x5c\x76\x90\x32\x3c\ \x00\x0b\x31\xfe\x00\xf9\x42\x71\xf9\xc8\xf7\x98\x96\x5f\x9c\x5c\ \xbf\xf9\x9c\x5f\x1b\xda\x0c\x13\x99\x44\x06\x65\xcf\xc6\x31\x2c\ \xca\x95\xd6\xf2\x22\x0e\x03\x6f\xff\xca\xed\x0e\xcb\xb1\x6c\xd2\ \x31\xff\xca\xb1\x5e\xf7\x67\x40\xef\x3e\x6c\xe6\x1f\xad\xfb\xff\ \xcb\x0a\xac\x00\xb5\x42\x50\xdb\xfb\xcc\xa1\x3d\x2e\x5a\x00\xd1\ \xa4\x4d\x93\x26\x75\x08\x12\x34\xa8\x02\xd6\x1e\x1e\xb0\xec\x0c\ \xb4\xf3\x30\x55\x93\x88\x76\x4c\x5d\x94\xd8\x24\xd5\x46\x8e\x1b\ \xeb\x78\xac\x13\x52\xe4\x48\x91\x31\x0a\xfd\x43\x99\x52\xe5\x4a\ \x96\x2d\x5d\xaa\xb4\x23\x72\x0c\x33\x00\x35\x6d\xde\xc4\x99\x53\ \xa7\x4d\x13\x00\x7a\xfe\x34\xd1\x33\x67\xd0\x2d\x1e\x3c\xd4\xd0\ \x02\x03\x46\xb4\x65\x5a\x22\x68\x41\x0a\x95\x55\x0d\x71\x49\x6b\ \xd4\x50\xa6\xec\xaa\x56\x2d\xcb\x96\x9d\xa9\x57\xef\x4c\x34\x2d\ \x2e\xcc\xd6\x60\xe5\x21\xe8\x5a\x13\xac\x26\x45\x30\x17\x81\x8f\ \x9a\x18\x31\x06\xde\x6d\x53\xb7\xcd\xde\x81\x08\x49\x92\x44\x58\ \xf0\x60\xc8\x36\xa6\xf6\x1c\x86\xd5\x26\x55\x0c\x3b\x31\x52\x7d\ \xb4\xa3\x02\xa3\xc4\x8e\x1b\xed\x54\xfe\x9b\xb9\x0e\xac\x93\x2f\ \x3d\x7f\xfe\x7e\x39\x72\x4c\x84\x9d\xa5\x4d\xf3\xf4\x59\x93\x6d\ \x50\x9c\x6b\x8d\x72\x5d\xc6\x74\x59\x55\x2d\x50\x27\xd5\x46\x2a\ \x0e\x06\xd4\xab\x58\xb9\xc2\x58\x16\x6a\x54\xbd\x50\x67\x60\x98\ \xd5\x5a\xc3\xc5\x6a\x13\x1e\x58\x89\x13\xa7\x49\x8e\x90\x10\x48\ \xf4\xd6\x8d\x61\x7d\xef\xc1\x82\x99\xbb\x8b\xe4\xde\x97\x62\x0c\ \x85\x4c\x60\xa9\x20\xc8\xf7\x71\x2a\x8b\x18\x27\xa6\x52\x6c\x99\ \xe3\x47\xfa\x9a\xc1\xef\xe9\x0c\x5a\x3f\x68\x1e\xa2\x91\x9d\x06\ \x10\x35\xa1\xd8\xf2\x69\xad\xd6\x4c\xd8\xa2\x39\x17\x92\x02\x4e\ \x29\x07\x6b\x83\xf0\x36\xdd\x78\x43\xca\xb7\xa8\xbe\x1a\x2e\xac\ \x50\x94\x71\xa1\x06\x18\x94\x5b\x6e\xb5\xe7\xf6\xd9\x47\x0e\x39\ \x90\x40\xb1\x2e\x14\xb5\x1b\x0c\x30\x83\x0c\xfa\x4e\xb0\xf4\xda\ \x78\x88\xaf\xc8\x16\x72\xa8\x20\xf6\x34\xa2\xd1\xa2\x88\xe2\x63\ \xaf\xb2\xf5\x1e\xb3\x4f\xa4\x36\xb8\xd8\x2f\xc9\xcf\x62\x18\xc9\ \x86\x71\xb6\x08\xd0\xb4\x9f\x52\x2b\x90\x35\xd6\x04\x34\xc1\x2c\ \xa3\x3c\x04\x4e\x37\x07\x95\xd2\xa2\xaa\xdd\x68\x9b\x24\x2a\xdc\ \xb2\xaa\x2d\xb8\x7a\xc8\x58\xf3\x8c\xab\xc2\x04\x91\x15\x56\xd8\ \x3a\xfe\xca\x9e\x7d\xec\x91\x43\x8d\x15\x57\xd4\xeb\xbb\xbf\x64\ \xe4\x4e\x20\x81\xf8\xda\xab\x46\x81\xca\xd3\xa3\xaf\x1e\x35\x8a\ \x48\x85\xcb\x2e\x13\x72\xbe\x22\x47\x52\x21\x3f\x25\x2f\x4d\xa9\ \x10\x15\x46\x6a\xa2\x1e\x31\xa2\xdc\x69\x4a\xd5\xaa\x14\xea\xc0\ \xe6\xae\xf2\xa0\xc3\xa5\xbe\x5c\x06\xcc\xdd\xc6\xac\x4d\x9c\xa8\ \xc0\xe4\xad\x36\x18\xc0\x22\x23\xd7\x65\xae\x5a\xaa\x2c\x17\xe6\ \x9c\x33\xa8\x5f\x49\xc4\x53\x0d\x63\xf5\x4c\xd1\xcf\x3f\x67\xdc\ \x6e\x50\x42\x69\xcc\x8b\xb1\x18\x08\x8a\x41\x0f\x53\x54\x50\x8c\ \x46\x47\x09\x62\xaf\xa2\x48\x3d\x22\x72\xd2\x26\x0a\xb1\x14\xd3\ \x4b\x61\xf9\x2b\x03\x9a\x4a\x63\x06\x08\x20\x90\x59\x17\xc0\xd5\ \x5a\xf3\xa9\x28\x65\x9e\xc2\x2a\x82\x2e\x1d\x6c\xf5\x55\x06\x61\ \x85\xb0\x41\x08\x6d\x5d\xa6\x9e\x1c\xa0\x20\x63\x57\x2d\xa2\x31\ \x8e\x43\xb3\xe4\x64\xe5\xe1\x12\xf1\x14\x62\x3a\x21\x84\x40\xa2\ \xaf\x22\x0f\x7a\x36\x5a\x69\x1f\xaa\x2b\xb2\x90\x09\xb2\xc3\x5a\ \xbb\x26\x92\x08\xb2\x8a\x2e\x0b\x69\xbd\xfa\x26\x0d\x69\x5c\x73\ \x67\xfe\x07\x5d\x92\xd4\x2d\x6d\x0b\x20\x0a\x1a\x83\x0c\x20\x22\ \xfe\x80\x52\x4a\x03\x6f\x02\xca\x83\xac\xae\x8a\x00\xa9\x07\x93\ \xb2\x75\xb7\x85\x27\x0c\xd3\x69\xa5\xfa\x1d\xf8\xd6\x83\x13\x4e\ \x0a\xac\x0f\xcd\x7a\x18\x39\x71\xee\xbc\xd3\x1e\xb1\x85\xa0\xab\ \x0d\x71\x99\xb5\x0b\x3b\xf2\xd4\x56\x61\xed\xb6\x43\x26\xcf\x21\ \xb3\x0d\xba\x4c\x47\x6f\x5d\x0e\x17\x66\x91\x38\xa3\x19\x53\x2e\ \xe6\x1e\x29\x04\xd2\x76\x62\x06\x0a\xf0\x6c\x80\xa2\x9e\x08\xc4\ \x60\x66\x8b\xa0\x79\x1a\x9a\xe8\xa0\x8c\x32\x9a\x99\x37\xa3\x76\ \x7a\xd6\xa6\x5b\x6d\x5a\x6a\xe0\x38\xb7\xb5\x1e\x28\xfc\x20\x43\ \xa9\x68\xb2\x48\x18\x44\xae\x3b\xac\x8d\x44\x4d\x5e\xa7\x18\x09\ \xbf\xbc\x83\xd1\x59\xbb\xa2\x55\xe1\x6d\x47\x77\xcf\x3d\xb2\xb6\ \x1b\xdd\x96\x30\x48\x55\x06\x37\x6f\xbd\x43\x2a\xb7\x6f\xfd\xfa\ \xfb\xcb\x86\x0c\x1e\xc7\x69\x8b\x0c\x94\x45\xbc\x1e\xd4\xb3\x88\ \x60\xc0\x2b\x0f\xec\xd0\x39\xa3\x6b\xf0\xe0\xa9\x57\x33\x57\x66\ \x69\x5a\x27\xa4\xad\x2b\x86\xa3\x91\xfa\x0c\x32\x10\x8e\x26\x1a\ \x83\xa1\x20\x4b\xf5\x05\x61\xd0\x0d\xba\x49\x26\xd1\x27\x0b\x21\ \xa6\x55\x16\x60\xc2\x93\x97\xbd\x60\xc7\x3a\x70\x73\x5b\xee\xfe\ \xc8\xd3\x18\xc6\x44\xc6\x0e\x76\x53\x4c\xcb\x82\x24\x12\xe3\xc1\ \x4c\x66\xca\x4b\x52\x21\x60\x11\xc0\x26\x90\x01\x7a\x38\x81\x01\ \x14\xc6\xf0\x0e\xf0\x20\x6c\x0c\x06\xa9\x47\xd0\xb6\x07\x39\xa3\ \x3c\x07\x2a\x5a\x39\x5a\xd5\x76\xc3\x2b\xa7\xd9\xea\x5f\x5f\x4a\ \x8a\xfc\x42\xd1\x94\xae\x2c\xe3\x7d\x6c\x5a\x13\x14\xa0\x60\x9c\ \x17\x7a\x28\x7e\xec\x9b\x84\x9c\x26\x61\x0f\xba\x04\x50\x80\x68\ \x4b\x1b\x76\xda\x46\x40\xb8\x3d\x24\x22\x0b\xcc\x9d\xa3\x22\x32\ \xa4\x91\x74\xe4\x78\x7f\xf9\x44\xf2\x30\xf8\x92\x42\x78\x67\x0c\ \xea\x88\x57\x4e\xb6\x10\x81\x20\x36\xe1\x1d\x08\xab\xc7\x09\xdf\ \x91\x05\x0f\xa8\xa6\x54\x76\x7c\x4d\xd2\x9e\xc2\x1b\x65\x24\x45\ \x4c\x4c\x6b\xda\xc0\x02\xf9\xa5\xa9\x85\xe5\x0c\x5e\xf1\xca\xfc\ \x72\x95\x03\x1b\xd8\xa0\x1e\xa0\xfb\x4a\x16\xea\x41\x16\x25\x6a\ \x42\x0d\x27\xa4\x5d\x60\x6c\x87\x1d\x8f\x71\xd2\x46\x76\x61\xe0\ \xc7\xb4\xe8\x28\xbb\x48\x90\x48\xf2\xa9\xa0\xde\xb8\x20\xc6\x31\ \xb6\x84\x0b\x7e\x6a\x82\xf3\xb2\x00\x84\x34\xe6\x04\x06\x39\x78\ \x9f\x1f\xc6\x90\x85\x82\x8d\x01\x71\x40\x2b\x4d\x73\x58\xfe\xa1\ \x47\xad\xec\x31\x69\xff\x62\x50\xc0\x6a\x18\x30\xda\x7c\x0e\x38\ \x0c\x33\x64\x28\x98\x12\x0d\x32\xd8\xc0\x0f\xba\xac\x83\x0d\x46\ \xc1\x94\xa5\xa0\x8e\x4d\xcb\xe0\xd0\x73\xe4\x20\x98\x27\x06\x8a\ \x2f\x6a\xbb\x0e\x27\x99\xf5\xac\xc6\xb4\x93\x31\x3d\x62\xd9\x47\ \x40\xd2\xad\x54\x4e\xaa\x52\xac\x6c\xe5\x4a\x00\x57\x87\x31\x64\ \x20\x05\xc8\x48\x81\x3a\x52\xf0\x41\x9b\x44\x00\x0a\x82\xb1\x26\ \x9b\x0e\x0a\x05\x18\x10\x14\x8f\x1e\xd8\x8d\x1e\x2f\xa7\x34\x5a\ \x09\xd2\xa2\x16\x6d\x90\x57\xce\x70\x86\xe2\xb4\xe9\x2b\x8c\x7c\ \x47\x48\xb3\x89\x30\x5c\x5d\x73\x88\xca\x11\xe7\x18\x00\x15\xa8\ \x01\x16\xd0\x93\x9d\x14\x8f\x39\xe1\x43\xa3\xdb\xb5\xb3\x22\xdd\ \x89\xd4\x16\xbf\x18\x12\xbe\xe5\x13\x34\xe0\x09\x81\x3a\xc6\x31\ \x8e\x68\x00\x21\x03\xd1\x70\x28\x00\x90\xe1\x27\xc4\xf9\xc1\x8d\ \x74\xcc\x99\xd1\x9e\x22\xab\xa4\x5d\x8e\x60\xb4\x22\x64\xc0\x6a\ \xe5\x39\xa5\x80\x65\xa3\xd1\x18\x45\xae\xc2\x92\x03\x65\xf9\x01\ \x61\x7e\xb0\x41\x36\xeb\x01\x15\x2d\x9c\x41\x0d\x21\x18\xa0\xb3\ \x3a\x76\x4e\x02\xce\x35\xa6\xe6\xa4\xa9\x44\x44\xe9\xfe\xc0\xc7\ \xe8\x54\x9e\x5e\x3c\x5e\x4f\x7d\xea\x99\x90\xf4\x73\x1c\x11\x40\ \x06\x10\xd4\xf1\x8c\x0c\xfc\xec\x8e\x36\x01\x42\x5a\x9b\x54\x10\ \x1b\x44\xe3\xb1\x36\xd9\x42\x72\xee\xe5\x94\xe4\xc8\xd0\x2b\x84\ \x6c\x90\xbf\xd8\x8a\x1b\x65\xca\xcf\x90\x06\xbb\x66\x0e\xfc\x90\ \x99\x4e\x48\xb6\x0e\x50\x68\x95\xfb\xa0\x10\x82\x10\xdc\x2e\x8a\ \x76\x4d\x8f\x5c\x3b\xd6\xa2\x95\xce\xf4\x63\x58\x6c\x8f\x29\xd6\ \xe3\xd7\x6e\x0d\x0f\x66\x47\xc2\xe7\x60\x6b\x46\x10\x75\x5c\x62\ \x0b\xa5\x48\x81\x3b\xd4\xa1\x8e\x0c\xa8\x61\xa0\x3a\x89\x00\x19\ \xba\xf3\x8e\x46\x86\x84\x0c\xcc\xb8\xac\x4f\xfa\x58\xd5\xde\x94\ \xf7\x72\xa0\x45\xe4\x67\x05\xc6\xd6\x0a\x41\x28\x36\x60\xa9\x47\ \x58\xa1\x60\x03\xee\x92\xb0\x48\x7e\x18\x6b\x23\x11\xa6\x06\x28\ \xc4\xa0\x3a\xd9\x39\xe7\xed\x58\x4a\xa8\xdc\x6a\xec\x45\xb5\x9b\ \x11\x03\x47\x69\x8a\xc8\x5c\x84\xc1\x7d\x1d\x5e\x71\xe3\x69\xcf\ \xe4\x2a\x77\x5a\xf4\xb8\x44\x4d\x98\x31\x0e\xc5\xaa\xc3\x1d\x7e\ \xc8\x42\xbc\xa6\x64\x02\x66\x04\x11\x61\x50\xe0\xee\x32\x1c\xda\ \x1c\x7c\x5d\x45\x0c\x47\xdb\x4a\x79\x01\x39\xb5\xfe\xe0\xd4\x78\ \x6a\x15\x25\x2d\x83\x18\xe6\x3e\xd5\xda\x77\x52\xef\xd0\x65\x5a\ \x9b\x40\xba\x2c\x64\xe1\x58\xc6\xaa\x0b\x4b\xfd\xb2\xd2\xf0\x70\ \xa7\x76\x30\x72\xa9\xef\xb2\xd8\xbb\x8b\xc0\xc2\x21\x28\x63\x99\ \x65\xb6\x58\x4f\x4a\x55\xd8\xa7\x5c\xb0\x43\x08\x86\x5a\x0a\x00\ \x6c\xe1\x12\x40\x78\x01\x75\xe5\x00\x84\x04\x91\xaa\x26\x1e\x58\ \x93\x24\xdf\x37\x06\x28\x0c\x4e\x8d\x47\x11\x43\x6f\x5e\xec\x1b\ \x65\x18\x2d\x39\x66\x7a\x55\x7a\x5b\xe5\x95\xf8\xcd\x46\xb4\xe3\ \xfb\x4a\x3d\x56\x7b\x3c\x3f\x91\xae\x1e\x9a\x28\xb2\xb1\x6a\x3b\ \x10\xbd\x75\x87\x63\xcd\x32\xa7\xb3\x14\x2c\x19\xc9\x5c\xcb\xd3\ \x4c\x30\x8f\x65\x1e\xac\xb2\x2d\x6f\xcc\xcb\x3e\xdd\x43\x1b\xdc\ \x21\x05\x20\xa4\xe0\x12\xa5\x18\x87\x87\xd5\xa1\xd8\x7d\x00\x93\ \x40\x26\x00\xc2\x18\xe8\xfc\x3e\x21\xd6\xa3\x8e\x6a\x84\x21\x56\ \x84\x2d\x86\xef\xf9\x39\x2b\x31\x14\x64\x68\xf9\x85\xc8\xa5\x14\ \x9a\x7d\x34\x36\x98\x8f\xbf\x68\x83\x1c\x3c\xf2\x74\x6f\x85\xab\ \x13\xff\x84\x60\xdd\xea\xf6\x59\x75\xc9\xa2\x29\xac\xd5\x69\x53\ \xc0\x82\x09\x7b\x60\xc2\x03\x23\xf2\xe0\x20\xfe\x79\xcb\xd4\xca\ \xf5\xcc\x1e\x76\xe1\x8e\x5d\x58\x60\x17\x02\xa5\x87\x3b\xd4\x20\ \x50\x20\xa8\x21\x03\xd9\x1b\x15\x00\x0a\x57\x58\xfa\x22\x4e\x0b\ \x97\x35\xc1\xbd\x6a\x40\xec\x85\xf7\xb9\xcf\xc6\x36\x9a\x9f\xcd\ \x64\x55\xd1\xc6\xaa\x2b\xcf\xdc\x71\xfc\x36\xaa\x68\xd7\x1e\xef\ \x8d\x64\x88\x74\x08\x6c\xa0\xed\x4c\xca\x55\x6d\x74\xbd\x0e\xc8\ \xc0\x9d\x45\x58\x94\x5b\x0f\x56\x2e\x37\xa8\x1d\x12\x11\x26\x3c\ \x18\x52\xee\xd6\x8c\x1e\x4e\xdd\x4a\x2e\x58\xc0\x02\xb3\x6d\xc3\ \x18\x2c\x90\x81\x9f\x5b\x60\xd6\xea\x80\x2b\xce\x6e\x12\x81\x13\ \xc6\x92\x84\x36\x38\x83\x5a\xee\xd8\x9c\x88\x3b\x9c\x72\x55\xcf\ \x4a\xaa\x5c\x00\x63\x2d\x70\x5d\x90\x31\xee\xcd\x55\x31\x44\x06\ \xb4\xee\x54\x24\xf4\xad\x83\xb4\xc5\x55\xbb\x8e\xa9\x08\x9d\x6f\ \x97\x22\x79\x72\x57\x6e\x2b\x9b\xc7\xdc\x75\xe7\x41\xcd\x4d\x01\ \x6a\x48\x89\x7a\xd4\x15\x44\x12\xbc\x5d\xf2\xb7\x5b\xb4\x21\x04\ \x86\xf7\x39\x14\x86\x7e\x74\xb8\x8e\x06\x27\xcc\xc8\xc2\x18\xcc\ \x7a\x50\x3f\xa8\x78\xea\x54\x2f\x0a\xe5\x8e\xbd\xf9\xac\xb8\xc0\ \xd8\xc2\x06\xfd\xd7\x8f\xb6\xf5\x60\x97\xfe\x57\x29\x6b\xea\x84\ \xda\x77\x4a\x72\xf0\xbc\xe8\xd2\x54\xcc\xce\x9e\xac\x93\x22\x70\ \x37\xa6\x6d\x0a\xcc\xdd\xcb\x61\x61\x80\x73\xa3\x1b\xd4\x0c\xd9\ \x83\x83\x6b\xfe\x28\xf6\xec\x5d\xb8\x20\x11\x49\xa5\x04\xdf\x92\ \x42\x98\x02\xca\xb7\xa0\x6d\xbd\x15\x3f\x6b\x77\x88\xb0\x9f\x00\ \x57\x0d\x33\x60\x80\xba\x46\x92\x41\x0b\x6d\xd6\x9e\x5a\xd4\xe2\ \x79\x87\x73\x7e\xf3\xbd\xf9\xb3\x7b\x05\x66\x5e\x0b\x85\xde\x56\ \x67\x60\xa4\xd9\xcf\xde\x48\x25\x6b\x12\x8a\x6f\x47\x91\x0a\x90\ \xa0\xff\xfd\xef\x5f\x77\x72\x97\xbb\xdc\xb3\x32\x86\x28\x02\x1e\ \xe0\x01\x03\x30\x37\x03\xe4\x01\x06\x33\xbe\x47\xb1\x08\xbe\x93\ \x94\x90\xe0\x81\x9d\x1b\xa3\x42\xf8\x0e\xbe\x80\xbe\xe8\x73\x87\ \x0d\x24\xba\x10\x18\x03\x5a\xba\xa3\x2d\xa8\xa6\x26\x18\x22\xa9\ \xab\x12\xad\xf3\x3c\xcf\x7b\x8d\xcf\xe3\xb3\xb0\x0b\xbb\xa4\x18\ \x34\x1c\xc3\x8d\x89\x33\xa2\xf7\x02\x29\xb3\xb3\x81\x5d\xcb\x15\ \xda\x3a\xbc\xdb\xe1\x8b\x4d\xca\x8e\x20\x94\x3d\x15\xd0\x83\xfe\ \x9b\x32\xff\x0b\xc0\x29\x13\x37\x03\x30\x80\x3d\xb8\x06\x1e\x78\ \xc2\x3d\xc0\xbb\xbc\xdb\xbb\xe1\x5b\xfe\xb7\x07\x64\xb7\x70\x09\ \xa3\xe5\x63\x89\x4f\x88\x19\x18\x49\x85\x31\x80\x3e\x0b\x08\x81\ \xa1\x4b\x3c\x95\xaa\x33\xe8\x51\x06\xc3\xa9\x83\xa8\x1b\x1a\x05\ \x59\xc1\x14\x7c\x8d\x3f\x13\x36\x18\x1a\xad\x34\x71\x26\x7e\x51\ \x0a\xa8\x09\xad\x33\xf0\x26\xb2\xeb\xb8\x9d\x22\x9d\x8d\x2a\xb2\ \x2c\xc8\x93\x23\x9b\x3d\xd9\x43\x91\x22\x2c\xc2\x15\x61\x44\x46\ \x44\x02\x3d\xc8\xbd\x29\x9b\x32\x3d\xb0\x44\x74\x60\x42\x03\xb8\ \x86\x02\x3c\xc0\x98\xe3\x01\x2e\xa0\x42\x50\xc3\x08\x06\x34\xbe\ \xca\x60\x02\x0a\x1c\xa3\x89\xb8\x8b\x26\x18\x03\x1e\x0c\x81\x0c\ \x1c\xba\xc3\x23\x88\x33\x12\xb1\x1a\x20\x83\x9e\x01\xaf\x37\xfc\ \x9e\x87\xa3\x9c\x14\x74\x41\xf3\x4a\x36\x65\x4b\x2f\x2f\xf9\x1c\ \x71\x88\x8d\x35\x31\xa9\x83\x41\xab\x40\x3c\x1e\x6b\x12\x22\x28\ \xe0\x2f\x39\x20\x03\xb2\x21\x1b\x64\x41\x02\x8c\x11\x02\x3d\xb8\ \x18\x21\x38\x81\x6c\xb4\x44\x6d\x44\x02\x07\xf8\x46\x0b\xd0\x03\ \x72\xb4\x00\x15\x38\x47\x49\x14\x47\x74\x60\xc7\x4c\x34\x00\x1e\ \x28\xc0\x02\x34\x0f\x86\x28\x04\x03\x04\x35\xbe\xbb\xc2\x8b\x18\ \xbe\xf5\x38\x45\x2e\x64\x89\x18\xfe\xc8\x40\xda\xb2\x37\x7a\x23\ \xc3\x80\xf4\x40\x82\xb0\x01\x35\x80\x97\x36\x63\x06\x32\xc8\x81\ \x86\xaa\x12\xd5\x58\x10\xac\x30\x0a\x39\x3c\x8b\x89\x6a\x2f\x65\ \x22\x24\x8d\x72\xb6\xd8\x38\x22\xb0\x18\x1d\x28\xa8\x36\x68\x2a\ \x3b\x46\x0b\x89\x91\x1b\x39\x83\xc8\xc1\xbc\x30\x16\x14\xc1\xc6\ \x97\xbc\x18\x5b\xe0\xc6\x8b\xd1\x46\x4b\x14\x02\x15\xb8\x49\x71\ \xb4\x44\x07\x70\x00\x0b\xe0\x49\x72\x64\xc7\x76\xdc\xbd\x4c\x84\ \xc2\x77\x3c\x40\x03\xe4\x02\x50\x64\x02\x7b\x7c\x14\x07\xab\xc2\ \x9b\x5b\x25\x7f\x54\x09\x58\x20\x43\x3b\xf0\xb9\x5b\xb0\x00\x77\ \xa0\x07\x7b\xa3\xad\xbd\x28\xc3\x9f\xf3\xa5\x9e\x01\xc1\x32\xa3\ \x26\xec\xd3\x9e\x3e\xea\xba\x8a\xd4\xba\x54\xe9\xac\x8b\x62\x95\ \xf4\x0a\x05\xb1\x18\x8b\x8d\x1a\x0b\xb9\x5c\x13\xb1\xe2\x21\xf8\ \x2b\x08\xd5\x6b\x3d\x92\x00\xb2\x83\x49\xc9\x98\x49\x0f\x15\x59\ \x91\x6c\xbc\x98\x6e\x14\x02\x99\x3c\x81\xc5\x14\x02\x9e\x74\xcc\ \x9e\x84\x4c\x07\x30\x00\x74\x70\x4c\x03\x90\xcc\x4c\x84\x05\x4c\ \x34\x80\x67\x80\xc2\x02\x7c\x42\xa4\x04\x45\x7b\x24\x45\x7d\xa4\ \xc2\x8d\x30\x05\x54\xc4\x20\xfe\x6c\xe9\x0b\xac\x9c\xb7\x5d\x38\ \xbc\x54\x28\xc3\x79\xa3\x3e\x91\x1b\x03\x85\x0c\x9a\x35\x5a\x06\ \x31\xb8\xbc\x2d\xe8\x8a\xae\x5b\x1d\x8b\xe4\x0a\x19\xfa\x1c\xaf\ \xd8\xa1\x50\x30\x4e\xeb\x09\x8b\xb0\x90\x24\xd9\x90\x9f\x5c\x39\ \x83\xd0\x19\x9d\x6b\x62\xc6\x03\xfb\x0b\xb3\xca\x15\x32\xf0\xc0\ \xbb\x9a\x91\xd8\x73\x44\x6d\xe4\xc6\x9a\x74\x80\x6c\x54\x03\xf0\ \xac\xcc\x17\x78\x06\x77\x74\x47\x07\xd0\x4c\x4d\x7c\xc2\x6b\x68\ \x4f\x05\xfc\x4c\xd1\xac\xc2\xbd\x33\x40\x06\xb3\x83\x7e\x94\x4a\ \x94\x00\x33\x4b\xcb\xca\xad\x1c\x88\x31\x68\x83\x5d\xa0\x07\x0f\ \xdb\x85\x0c\xc8\x00\x11\x82\x02\x5a\x82\x12\x04\x11\x83\x36\x23\ \x1a\xa3\x71\x90\xa3\x39\xb6\xd5\xf9\x0d\x44\x1b\x4e\x44\x82\x26\ \x20\x12\x0b\xb1\x88\x86\xaa\x30\xad\xb0\x68\x0a\xf9\xc1\x25\x90\ \xdc\xa9\x84\x22\x03\x35\x38\x51\x68\xec\x4a\x4c\x3b\x27\x45\x74\ \xc4\x48\x84\x51\x49\x0c\x47\x9e\x34\x80\x17\x40\xcf\xcb\xc4\xcc\ \x4c\xbc\x06\x27\x74\x4f\x2e\x88\x4f\x28\x54\xc0\x50\xbc\xc7\x7b\ \x64\x30\xd4\x54\x9e\x3d\x00\x0f\xd8\xac\xca\x98\x49\x05\x0b\xc8\ \xb7\xc6\x2b\xc3\x0c\x80\xfe\x97\xc6\xd9\x82\x06\x5d\xa1\x7a\x41\ \x4b\xa5\x40\x3f\x87\x49\xc1\xe0\xbc\xb1\x41\x0b\x8e\x68\x30\x4e\ \x31\x4d\xce\xaf\x62\x1f\x5b\x69\x4e\xb1\x38\xc6\x43\x52\x0a\x32\ \x30\xbb\x8f\xcb\x15\x14\x55\x83\x43\xa4\x0b\x1f\x0c\x30\xb5\x91\ \xbd\x46\xdc\x13\xfd\x53\x01\x1a\x3d\xcf\xf3\x64\x42\x1c\xcd\x44\ \xcf\x74\xcf\x42\xbd\x86\xd0\xbc\x86\x42\x38\xd4\x7a\xbc\x47\x7b\ \x5c\x4a\x2a\x34\x52\x9a\x29\x04\x24\x35\xbc\x07\x82\x11\xf0\x88\ \xa5\x5b\xb8\x85\xee\xf8\xc0\x08\x58\x1c\x66\x60\x06\x31\x10\x55\ \x84\xeb\xa3\x07\xc9\x1c\x3e\x3b\x36\x8a\x12\xb4\x65\x8b\x8d\xf7\ \x1a\x0b\xce\xd1\x0a\x71\x70\x1f\xe7\x94\x8d\x0f\xf1\x90\x6a\x0a\ \x89\x6b\xe2\xcb\x93\xf4\x83\x77\x18\xb2\x13\x05\xd6\x63\x39\xc4\ \x44\x9c\x3d\xb7\x43\x27\x17\x6d\x9b\xfc\x43\x47\xf5\xcc\x44\x71\ \x74\xd6\x4c\xdc\x83\x67\xd8\x44\x43\xa5\xd6\x44\x2d\x04\x1f\x55\ \x4a\x50\xcb\xbb\x47\x9d\xc0\x48\x9d\x99\x57\x6a\x83\xac\xb4\x80\ \x2f\x0a\x01\x64\x10\x83\x52\x40\xac\x08\x30\x04\x75\x6d\x9c\xe8\ \xb9\x38\xd0\x62\x9a\xf2\xfa\x8d\x1a\xe3\x26\x65\x02\xd3\xf5\xb1\ \xd5\x1a\xa0\x26\x91\xfe\x14\x0b\x30\xf1\x0d\x18\xa8\x87\xa7\x23\ \x9d\x83\x8a\x19\x1f\x03\x32\xd2\x21\xbb\x58\x42\x98\x43\x3c\x51\ \x6a\xbc\xc6\x6b\xcc\xc6\x87\xd5\xd3\x14\xd9\x93\x20\x3c\xd6\x65\ \xe5\x49\x3d\xd0\x49\x74\x80\x05\x41\x95\x56\x69\xed\xd1\x1e\x85\ \x42\x72\xa9\xc7\xd0\xa4\xcf\xbc\xfb\xc4\xa8\xcc\x4f\xfd\xdc\x08\ \x9f\xe3\x32\x4e\xb9\x05\x75\x28\x85\xe7\x2a\x05\x64\x50\x57\x64\ \x58\xc8\x3b\x82\xa8\x33\x0d\x2d\x66\x1b\x18\xac\x80\xc1\xaf\xf8\ \x2c\xd2\x0a\x34\x8f\x6c\x0a\x71\x38\x1d\x21\xa2\xb3\xe7\xc4\x0a\ \xae\xd9\x3e\xb4\x32\xab\x49\x62\xa4\xd6\x02\xb2\x82\x30\x29\x20\ \xba\x45\x56\x44\xd1\x3c\xc9\x93\x6d\xdc\x46\x99\x9c\x49\xc4\x3c\ \x01\x3d\x85\x44\xfd\x33\xd6\x04\xd2\x58\x3d\x40\x07\x75\x7c\xb9\ \xf5\x64\xc2\x6a\x2d\xd4\x91\xad\xc7\x7a\xdc\xd6\x20\xed\xd6\x95\ \xfd\x87\xe6\xd3\x91\x97\x1d\x09\x28\x40\x86\x52\x28\x05\x66\x08\ \xdc\xbf\xc5\xd9\xdc\xfc\x94\xa5\x93\x26\x1a\x6b\x55\x31\x15\xad\ \xb0\x5b\xb6\x19\xa4\xa8\xe1\x6c\xce\x65\x44\x9c\xe7\xe4\xd2\x05\ \x11\x1d\xeb\x34\x8e\x68\x38\x98\x1c\x90\x3c\xb2\x83\x53\x43\xca\ \x02\x11\x6a\x82\xfe\x10\x98\x53\x13\x99\x8e\xb1\xb1\x05\x3e\xb0\ \x07\x99\xe4\x03\x21\xe0\x03\x19\x00\xdb\x6e\xa4\x5d\x9d\xe4\x53\ \x63\xe5\xd3\x4a\x24\xc2\xb5\xe5\x58\x26\xfc\xd3\x6b\x90\x56\x28\ \x8c\x5b\x6b\x8d\x4f\x6d\x0d\x52\x72\xc1\xdb\x42\xa0\xb4\xbf\xa8\ \xa7\x31\xc0\x03\x9a\x60\x86\x61\x88\x00\x74\x5d\x57\x9c\x1d\xd5\ \x9b\xa8\x01\x35\x55\x5c\x42\x8b\xc1\x19\xf4\x5e\x08\x11\xb6\x19\ \x2b\x98\x5b\x14\x32\xfc\x82\x81\xcb\xed\x10\x1e\x03\xb9\xe7\xd4\ \x82\xbb\xfc\x21\xd1\x19\x83\x6a\x93\xcb\x42\x7c\x2b\xc3\x3b\x5d\ \x3e\xc0\xdf\xd6\x65\x5d\xfc\x75\xdd\xd5\xb5\x07\x19\xb0\x07\xda\ \x6d\x4c\x5b\x08\x4f\x4b\xdc\xbf\xb7\xbb\xbd\xdc\x39\x47\x22\x14\ \x37\xb5\x6d\xc7\xcd\x84\x42\xce\x1c\x5e\x6b\x0d\xd2\x47\x0d\x4d\ \xe4\x5d\xd9\xbf\x49\x25\xe4\x8b\x99\x5b\xa0\x07\x32\x03\x80\x9a\ \xc5\x59\x64\x18\x86\x52\x10\x03\x43\xb0\xd9\xc3\xad\x89\xb6\x62\ \x53\xac\x62\xd5\x9f\x8d\x31\x0a\xd1\x1c\x2d\x08\x05\xb2\x3b\x3b\ \xd8\x8a\x93\x88\x59\x10\x3f\x14\xab\xfa\x01\xd8\xe4\xcc\x15\xf9\ \x21\x9d\x1d\x2b\x32\x3b\x31\x32\xba\x30\x16\xb1\xc1\xdf\xd7\xe5\ \x83\xd5\xe5\xfe\x5f\xd8\xb5\x85\xd6\x6d\xdd\x8b\x09\x4f\x07\x38\ \x01\x71\x24\x42\xff\x53\x20\x29\xca\x22\x0b\x30\x85\x05\x36\x85\ \xa0\x74\x07\xdf\x8d\x60\xe1\x2d\x54\x45\x7d\xcf\xa5\x5c\xa5\x4f\ \xf4\xd6\x99\x79\xa0\x7a\xca\x9b\x54\x28\x00\x7a\x18\x06\x51\x05\ \xdc\x9a\x45\x2c\x64\x30\x84\x9a\x5d\x86\x0b\x40\x06\x15\x8a\x00\ \xa1\x75\x90\x37\x41\x34\xce\x99\x21\xce\x9b\xe1\xac\xb9\xc5\x93\ \xec\x99\xad\xf9\x15\x39\xe9\x90\xd3\x01\xa2\xa6\xd0\x0a\x80\xdd\ \x38\x32\x30\x0e\xf7\xc9\x82\xb1\xd8\x87\x42\xd4\x84\x3b\x91\x83\ \xda\x52\x83\x8b\x59\x62\x99\xb4\x07\x3e\xc8\x86\x6c\xe0\x5f\x29\ \x7e\x86\xc6\x6c\x4c\x07\x78\x81\xb1\x8d\x51\x19\xdd\xe2\x04\xce\ \x22\xdb\x53\x60\x15\x68\x47\x69\x65\xcf\x09\x56\xd4\x4f\xac\xdb\ \x92\x6d\x63\x73\xd9\xa7\x8d\xa9\x05\x29\xb8\xe3\x73\x2d\x85\x12\ \x06\x5c\x9c\x8d\x00\x29\xc8\x80\x49\x7a\x9c\x1a\x68\xd5\x53\x05\ \xb4\x7e\x81\x55\xce\xeb\xa1\x0f\xe9\x0a\x83\x91\xac\x37\xca\x02\ \x47\x86\xe4\x48\x2e\x53\x4a\xd6\x8a\xf5\x49\x34\xf6\xf1\x21\x32\ \x20\x91\x4e\xde\x87\xd7\x81\x9d\x96\x1c\x65\x25\x8e\x49\x54\x4e\ \x65\xfc\xfe\x05\xe0\x28\xb6\x85\x17\x88\x49\xcb\x1c\xdb\x6f\xb4\ \xc4\xdc\x39\xe0\x04\x76\xa0\x51\x8a\x0c\x2f\xd6\xcc\x73\x30\x54\ \x33\x4e\xd4\x45\xb5\xc7\x94\xc5\xe0\xfc\xd4\x03\x01\x9a\x88\x2e\ \xba\x85\x5d\xc0\x03\x66\xbe\xe3\x8d\xae\x59\x29\x80\xe6\x0c\x50\ \x87\x0b\x68\xd7\x84\xfb\x8a\x33\x05\xda\x17\x2c\xda\xda\xd0\x66\ \x06\xf9\x8a\xf7\x91\xac\xca\x75\xe4\xd5\xa1\x66\xaf\x3a\x24\xa8\ \xd8\xba\x85\x51\xe7\x8d\x7a\x15\x69\x2c\xb2\x77\x86\x67\x7d\x00\ \x6a\x3e\xc8\x13\x24\x18\x65\xd8\xdd\x5f\x54\x5e\x82\x54\x56\xe5\ \x22\x30\x4f\x3e\x78\x81\x2a\x2e\x02\x19\x28\x02\x03\x00\xe8\x80\ \xa6\xc4\x29\x5b\x9b\x76\x52\xe0\x76\xbc\x86\x5e\x66\x68\x45\x25\ \x97\x27\x7c\xd4\x88\xce\xcf\x4d\x21\x09\xf8\x08\x97\x26\xf0\x60\ \x29\xc0\x03\x12\x1e\x06\x8d\xde\xe8\x71\xa0\x87\x0c\xa0\x07\x77\ \x41\x06\x18\xa0\x09\x13\xa8\x81\x0b\x78\xa4\x1c\xbb\xc3\x1b\x22\ \x9f\x63\x83\x81\xb8\x3c\x18\x5f\x4a\xa8\x2c\x60\x9f\xab\xa0\x50\ \xe0\xa0\xcb\xb1\xb0\xe9\x0e\x41\x5a\x07\x89\x1f\x2d\x98\x04\x6a\ \x52\x83\x2c\xf0\x69\x7d\x78\x1d\x3e\xd0\x07\xfe\x79\x5d\x3d\xb9\ \x18\xfe\x7b\x30\x6a\x55\x56\xea\x7b\x5e\xdd\x22\x28\x82\x67\x38\ \x81\x17\x90\x81\x6c\x88\x6a\x03\xb8\xe2\x7f\x96\x44\x81\xb6\xe5\ \x5b\xbe\xbd\xf6\xd0\xcc\x8f\x05\x5e\x6a\x25\x59\xb1\x36\x40\xb2\ \xf6\x47\x30\x3b\x6b\xe6\xa5\x07\x3c\xc0\x03\x8f\x1e\x06\x12\x4e\ \xe6\x10\x2e\x05\x68\x5e\xb5\xa1\x4a\x81\x9f\x01\xaf\x08\xf0\x2a\ \xa9\x81\x5c\x65\x0a\xda\x0f\xe1\x90\xb6\xca\x5a\x20\x83\x02\xc4\ \x1e\x34\xdc\xe0\x1a\xa4\x20\xe2\xb1\xf8\x10\x1d\xde\x66\xf5\xe9\ \xd0\xaf\x31\x16\xcc\x86\x67\x4d\x50\x62\xa0\xd6\x07\xd1\xfe\x5a\ \xd1\x76\xe2\xd2\xe6\x83\x22\xf8\xdf\x22\x70\xed\xa8\x2e\x82\x43\ \x7d\x06\x5b\x30\x00\x01\x1f\xdb\xab\x0e\x37\x74\x34\x05\xc6\xe0\ \x1d\x0b\xc8\xed\xdd\x7e\x4f\xf7\x04\xeb\x1f\x1d\x66\x4c\x41\x52\ \x71\xd9\x85\x73\x38\x82\xe3\xfe\x83\x3f\x78\x6b\xc0\x6d\xd0\x73\ \x95\x02\x7a\x10\xf1\x14\xc0\x83\xe8\x36\xd0\x68\xd0\x17\x10\xbd\ \xa1\x5a\x39\x2f\x18\x0c\x85\xdd\xe8\xa3\x50\x38\x28\x12\x02\xb1\ \xfa\xe1\x92\x53\xad\x0d\x86\xd9\x07\x3f\xcc\x82\xaa\xe0\x1a\x65\ \xf0\x92\xaa\xf8\x9a\x77\xbe\xb6\xcb\x86\x67\xb1\xc1\x13\x39\x38\ \xfe\x65\x7d\x60\x5d\xaf\x35\x65\xfc\xcd\x86\x25\xc0\xe7\xd8\xb5\ \x07\xd4\x4e\x65\x2b\xf7\x6f\x19\x30\x00\x19\xd0\x49\x49\x9c\x6d\ \x25\xb4\xed\xdd\x09\x63\x32\xee\x6a\xe0\x15\xde\x08\xf7\x51\x05\ \x9c\x70\x25\xd1\xa0\x49\x49\x85\x5d\x90\x82\x23\x90\x82\x73\xf8\ \x03\x29\xf8\x01\xe5\xe6\x68\x90\x46\x86\x71\x90\x02\xc6\x7a\xab\ \x56\xc4\x64\x6e\xba\xb1\x19\xda\xd2\xce\x89\x8d\xb8\x74\xe9\x1c\ \xcc\x81\x86\x89\x21\xa4\x35\x34\x8f\xd4\x38\xcc\x66\x5a\x39\xa9\ \x81\x49\x88\x0d\xe8\x80\x8e\x33\x78\x67\x12\x39\x51\x39\x38\x72\ \x13\x99\xe7\x53\xc6\x5f\xaf\xfd\x5a\x7d\x50\x6a\xfd\x2d\x82\xd5\ \xcd\x06\x4f\xf0\x84\x1e\x48\xca\x6b\xf8\x84\xff\x2e\x82\x3d\x80\ \xed\x6f\x24\x42\x03\xbf\x16\x91\x99\x3b\xcd\x74\x70\xce\x84\x47\ \x28\xf4\xd1\x44\x55\xf3\x35\x4f\x92\x57\xd2\x0c\x8d\xf0\x60\xe3\ \x3e\x87\x73\x28\xee\x0d\xff\x81\x0e\x67\x66\x64\xa0\x87\x38\x1f\ \x2a\xa4\x7b\xc6\xef\x36\x0e\x07\xb9\x81\x19\xa2\x90\xe4\x98\x04\ \x5a\xf1\x21\xb4\xe2\xae\xc4\x31\x69\xe4\x20\xef\x0d\x65\x98\x4d\ \xd6\xb8\x1d\x97\x95\x88\x99\x84\xe8\xd8\x07\x4c\x87\x77\x9f\xfe\ \x2e\x91\x39\xdd\x6c\x8a\xd9\xc6\x25\x1e\xf5\xc4\xcc\x77\x7b\x7e\ \x5d\x29\x2e\x02\x2e\xd8\x00\x00\xd8\x80\x42\xb8\x04\x4f\xe0\x02\ \x57\xff\x84\x4d\xa4\x75\xd9\xb6\xf5\xb9\x9b\xb2\x06\x43\x47\x5e\ \x77\xcf\x8f\x05\xd2\x90\x3d\xd4\xbc\x23\xf6\x62\xb7\x8f\x00\x2d\ \xee\x71\x58\xf6\x73\x90\x82\xb7\x7e\xf6\xb7\x4e\x6e\x0e\x47\x86\ \xe3\x1e\x07\x58\x03\x02\x77\xc8\x00\x39\x28\x32\xf3\x5e\x1a\x94\ \xbe\x8a\xdb\xd0\x31\x5c\x35\x88\xd2\x01\x11\xc5\x3e\x1a\x71\x70\ \xdf\xbb\x9c\xcb\xaf\x82\x8e\x4a\xd7\x82\x76\xd6\x04\xe8\xf8\xe4\ \x76\xfe\x1a\xd4\xb5\x07\x26\x9f\x0e\x63\xa9\x18\xfc\x65\xf2\x7f\ \x8f\x49\x52\xe6\xdf\x56\x16\x82\xd6\x1e\x78\x9b\xb8\xd6\xa4\x4c\ \xca\x6c\xf8\x84\x01\xcf\xc4\x2b\x86\x05\x4b\xbc\x16\x4e\x3b\xfb\ \x06\x5b\x4f\x85\x76\x4f\x1e\x90\xe0\x27\xc4\xd6\xcf\xc4\xcf\x0c\ \x76\xa2\x26\xd8\x85\x23\xc0\xfb\x65\xff\x03\xe3\x7e\xeb\x3f\x78\ \xf6\x1f\xd8\xfb\xbf\x3d\x02\x69\x97\x82\xa1\xe2\x30\x20\xc8\x02\ \x75\x38\x83\x14\x08\x2d\x63\xa8\x43\x63\xb0\x21\xa9\x59\x86\xd1\ \xed\x0e\x1b\x20\x83\x68\x78\xe4\x8b\xe4\x8a\x7d\x15\x22\xfe\x5c\ \x62\x93\xc6\xee\x50\xca\x8e\x8e\x9e\x3e\xfa\xd7\x99\x98\x4f\x97\ \x03\xd6\xa5\x98\xa2\x6e\xfa\x25\x98\xfa\xd7\x25\x75\xc3\x84\x62\ \x7b\x58\xf5\xad\xaf\x09\x84\xcf\x06\xaf\xe7\x82\x22\x88\xf5\x3d\ \x10\x70\xcc\x2c\x7b\xb3\x47\xc7\x29\x7b\x60\xce\x04\xd9\x32\x17\ \x5e\x33\x06\xc5\x44\x4d\x5e\x4b\x3b\xeb\x73\x38\x00\xe3\xc6\x83\ \x73\xc0\x83\xbd\xff\x03\x64\xf0\xfb\x0d\xaf\xf3\xb7\x96\xf6\x7c\ \x0b\xf1\xe9\xaa\x3e\x90\x83\x01\x7d\xa1\x15\x63\x68\xcb\x64\x92\ \x9f\xf9\xca\xd5\xcb\x87\xf1\xcc\x47\xcb\x30\x81\xbf\x82\x23\xb2\ \xe4\xe4\x50\x4c\x8f\x86\x4e\xb6\x13\xe8\xd0\xec\x12\x79\x67\xcd\ \x46\x72\x24\x07\x08\x21\x02\x85\xd8\xcb\xb6\x64\x49\x36\x3e\x0a\ \xf9\x0c\x14\x88\xe4\xa1\x10\x5b\x42\x64\x2c\xd9\x00\xe0\xe2\x45\ \x2e\xb6\x64\x7c\xe2\x92\x6d\xcf\x1e\x03\x21\x4f\xd8\x32\x50\xd2\ \x00\x4a\x58\xe8\xf4\xa0\x33\x65\xc1\x94\x0a\x0b\xe8\xd0\xa1\x34\ \xf0\xec\x1a\x4e\x9c\x37\x73\xe2\xe4\x72\x8d\x07\x97\x42\xff\x86\ \x12\x2d\x6a\xf4\x28\xd2\xa4\x44\x0b\x35\xa9\x53\x27\x95\xd3\x3a\ \x4d\x52\x85\x38\x77\x04\x0f\xd6\x3f\x5a\xb7\x6a\xad\xfe\x55\x4b\ \xca\xb0\x52\x47\x90\xd1\x73\xb7\xcb\x9d\x85\x31\x6d\xc6\x40\x21\ \x03\x04\x46\x04\x18\xcb\x60\x68\xa9\x6b\x57\x0b\x5d\x2d\xd1\xce\ \x40\x19\xd3\xd4\x06\x99\x33\x35\x94\x29\xab\xa1\x45\x99\x8b\xc4\ \x2e\x60\x88\x5b\x16\x6d\x94\x9f\xa8\x63\xc8\x90\xa9\x97\xc5\x72\ \x34\x71\x8c\xa3\xed\xcb\x22\x67\xdf\x3e\x7d\xe2\xf4\x69\xb2\x27\ \xc7\x9e\x26\x7d\x7c\xec\x11\x6c\x2d\xd0\x1e\x1f\x7d\x07\xf5\xe9\ \x4b\xb8\x70\xa0\x9e\x87\x48\x04\x66\xcb\xb6\xa1\x90\xc5\x8b\x1b\ \xb8\x90\xfc\x54\x64\x8f\x0c\x93\x0e\x4e\x9c\x80\x65\x00\x16\xf3\ \xe7\x2b\x4d\xb1\x54\xa1\xc2\x25\x4d\x9b\x36\xaf\x1d\x38\x80\x93\ \xc7\xcf\x9e\xd7\x0a\xe1\x2c\x24\x54\x29\xfa\xf4\x49\x99\x44\x6d\ \x9f\x6a\x17\xbd\x73\x59\xf1\x70\xd5\xfa\xe3\x4f\xad\x3f\xc8\x4a\ \xf1\x3f\x22\x65\x57\x08\x7d\x35\x55\x07\x19\xfb\xa4\x00\x83\x5c\ \xcb\x28\x38\x97\x5d\x08\x3a\x46\x86\x5f\x52\xf9\x51\x4f\x0d\x2e\ \x78\x90\x98\x32\x75\x55\x98\x18\x0c\x67\xd4\x53\x0f\x19\x36\x44\ \x65\x43\x0e\x95\x95\x58\xcf\x32\x5a\x88\x73\x46\x16\x9e\x79\x96\ \x1a\x6d\xf6\xc8\x88\x9a\x26\xab\xbd\x36\x90\x3d\xfe\x07\x2d\x21\ \xdb\x8e\xd9\xd4\xa6\x1a\x43\x0e\xc5\x10\x83\x1e\x7c\x70\xe1\x89\ \x39\x1b\x04\x07\x40\x21\xd9\x30\x27\x83\x0c\xb6\x30\xa7\x47\x73\ \xcd\x51\x69\xc0\x4a\x0e\xa0\xa3\x65\x4c\x2e\x99\x32\x13\x4a\xd7\ \x18\x80\x53\x77\x3a\xf1\x34\xde\x78\xe6\xa9\xb7\x26\x9b\xff\xb4\ \xd1\x5e\x54\x76\xec\x72\x8e\x7c\xe7\x70\x45\x5f\x57\x5e\xd5\x12\ \x16\x00\xfc\xd1\x93\x56\x1b\x6d\x34\xd1\x84\x0d\x19\x44\x03\x44\ \x34\x89\x3a\x28\x17\x82\x0e\x92\x01\x85\x88\xef\xf8\x91\x05\x0c\ \xca\x78\x70\xa1\x0b\xac\xb8\x60\x98\x66\x83\x69\x91\x45\x0e\x39\ \x44\x16\xd5\x3b\x6d\xe5\xd0\x56\x3d\x08\xb2\x28\x87\x67\xac\xa2\ \x46\xda\x6a\x32\x6a\x52\x9a\x1c\x0d\x09\xa4\x4f\x92\x08\x1d\xe4\ \x23\xaf\xb6\x09\xb9\x5b\x36\x9e\x78\x92\x4d\x50\x18\x5d\xf2\x09\ \x95\x52\x4e\xa9\x07\xb3\xcc\xc2\xa2\x87\x03\xb0\x38\xc0\x12\x4b\ \xe8\xa8\x60\xed\x4c\xd9\xf1\xe4\x5d\x4e\x63\x96\x97\xa6\x9a\x6d\ \x8a\x8b\x14\x53\x70\x4a\x75\x4b\x9d\x74\x72\x75\x1f\x9e\xf8\xe5\ \xc7\x9f\x58\x19\x40\xd5\xc4\x64\x50\x84\x40\x46\x16\x9d\x9d\x11\ \xcd\xa2\xcb\x84\x32\xd7\x32\x59\x44\x38\x06\xfe\xa5\x1e\x98\x70\ \xa1\x09\x8a\x25\xa6\xc5\x32\x67\xec\x0b\x43\x3d\x7e\xd8\x20\x62\ \x7b\x36\xf8\x71\x31\x14\x28\xb2\x48\x19\x65\x72\x7c\x96\x9a\x42\ \x32\xee\xc3\x47\x8d\xac\x35\x94\xa3\x92\x4b\xc4\xa6\xab\x6d\x0a\ \xc9\xe0\xd0\x6e\x9f\xf4\x26\x04\x12\x6a\xf4\x80\x51\x21\x9f\x90\ \xb4\x6c\xb3\xcd\x3e\xfb\xec\x4a\x5b\x3a\x20\x93\x4c\x60\x3e\xb3\ \xd3\x35\x3d\xe4\x84\x74\x4e\xe4\x8d\x37\x2e\xd4\x46\xa9\x60\x6e\ \x1d\xb7\xd0\x83\xc7\x11\x57\xb5\x8b\x9f\x56\xc3\x68\xa5\xee\x11\ \x62\xd1\x73\x0b\xa1\x4d\xec\x02\x04\x10\xea\xe0\x0b\x44\x16\xfb\ \x2a\xf8\xef\xbf\x7b\x91\x11\x99\x0d\x50\x14\x6c\x02\xde\x9a\x2a\ \x6c\x18\xc4\x6d\x55\x36\x2a\x9c\x36\x74\x62\xc3\x3b\x39\x7c\x48\ \x59\x16\x64\xa8\x21\x07\x19\xa7\xd5\xa8\x9a\x8c\xb1\xa9\x56\xab\ \x1a\x42\xa8\xa1\x06\x1f\x15\x99\xd3\x6b\x6d\x0b\x85\x2c\x44\x6e\ \x42\xc8\x9c\x8d\x2d\x48\xd4\xd1\x86\x2d\x5b\x5c\xe4\x89\x0c\x3b\ \xf3\xdc\x73\xcf\xd3\xae\x54\x5d\xb6\x28\x3d\x03\xde\x38\x66\x9e\ \x79\x66\x50\x51\xfb\xfe\xcf\xd4\xed\x35\xd1\xc6\x2e\x47\x58\xd5\ \xdf\x30\x5e\x7b\xd5\x75\xbb\x61\x1b\x0f\xfe\xe0\x2d\xb7\xb0\xa5\ \x0e\xda\xfb\x00\xb1\x0f\x8b\x0e\x87\x72\x46\x28\xd1\x2c\x53\x4f\ \x0e\x63\xd4\x51\xb7\xc3\xd1\xb0\xb2\x45\xde\x09\x27\xc6\xf7\x8a\ \x39\x4c\x7c\xf1\x3b\x54\x3b\x55\xb7\xa8\x7e\x3f\xaa\xc6\x8b\x35\ \x86\x4c\x32\x6d\x36\xaa\xa1\x5b\xe6\x36\xa0\xb2\xde\xb4\xcc\x56\ \x27\x40\x02\x49\x7a\x63\x0b\x35\xc4\x60\x50\x0e\xf0\x04\x93\x3c\ \xa1\x2c\x65\x21\x81\x59\x55\xea\x59\xd0\x58\x52\x34\x99\xd8\xee\ \x68\xdc\xc1\x09\x1e\x72\xc2\x2d\x9e\xf0\x20\x5c\xbf\x13\x17\x0f\ \x9a\x32\x20\xa7\xdc\x02\x6b\x47\xb0\xc6\x16\xb6\x70\x95\x3c\xed\ \xc9\x6b\xf2\xe9\xcf\x11\xc6\x81\x87\x5a\xec\x22\x03\x63\x60\x4b\ \x06\xb2\x80\xa8\x68\xb4\x08\x45\x0b\x6a\x18\x14\x54\x48\x06\x71\ \xd4\x40\x1c\x97\xa9\x01\xde\x4c\xa0\xb7\x0c\xc1\x60\x2f\x20\x12\ \x11\xa1\xde\xb1\x42\x38\xbd\x63\x62\x24\x6a\x0b\x14\xda\xc2\xaa\ \x91\xe9\xcf\x1e\x23\x83\x9c\x3d\xfe\x17\x83\xdd\xf0\xc1\x1c\x9b\ \xe3\x43\x6f\x14\xd2\x90\xca\x35\x04\x8e\x2f\x43\x42\x0c\xda\x10\ \x03\x21\x78\x02\x38\x3a\xa3\xd2\xb2\x2a\xe8\x33\x3d\x00\xad\x3a\ \xd3\x2a\x5a\x76\x6e\x87\x13\xa5\x85\xfe\xf0\x1a\x47\xe0\xce\x08\ \xc1\x53\xc2\x13\x42\x6d\x0f\xa7\x83\x8a\x53\x9a\x70\x0b\xad\x39\ \x6f\x2b\x76\x5a\x1e\x7d\xae\x26\x16\xf9\x5c\x05\x7a\xf6\xb2\x97\ \x10\x81\x60\x99\x7a\xfc\x2b\x2f\x10\xfa\x0b\x19\x22\x80\x37\x65\ \xd4\xc3\x6e\x89\x61\xc5\x14\x9b\xe8\x21\x28\xf8\x21\x7e\xf2\xa3\ \xda\x3b\xba\xe8\x87\xb6\xe0\x6f\x1f\xb3\x42\xe3\x8c\x4c\x43\xb3\ \x3c\xb6\x41\x08\xbe\x51\x99\x0c\x14\x22\x11\x21\x04\x69\x37\x02\ \xb1\x85\x3d\x5e\x26\x04\x3d\x3e\xc4\x16\x9e\x50\x92\x27\x0e\xc8\ \x9c\x29\x3d\x04\x76\xcd\xda\x52\xd0\x2c\x50\x2d\x9a\x78\x70\x27\ \x4a\xf3\x4e\x99\x72\x22\x49\x13\x52\x72\x4d\x85\x50\x41\x13\xe8\ \x61\x87\x01\x99\x0d\x2b\x59\xc3\xc3\x39\xf2\xf3\xb5\xaf\xd1\xa9\ \x16\x56\xc1\x83\x05\x76\x21\x05\x7a\x84\x60\x7c\x6c\x09\xc1\x18\ \xfc\x90\x81\x33\xa8\xf2\x5f\x73\x81\x41\x28\x1a\x5a\x87\x31\xd4\ \x83\x19\xe8\xc3\x9b\x38\xda\x02\x45\xc5\xd4\xa0\x06\x72\x39\x03\ \x19\x72\xe0\xcb\x5f\xca\xaf\x8b\x6d\x69\x91\x31\x4b\x63\x32\x81\ \x50\x0e\x8f\x81\xda\x63\x36\xcc\xb1\x04\x6a\x4a\xd3\x1e\xd8\x9c\ \xe6\x6e\x6c\x41\x40\x5b\x34\x70\xfe\x78\x48\xc8\xc6\x45\x0a\x41\ \x1c\x21\x8c\xf3\x04\xb9\x51\x81\x1e\xa0\x2a\x55\x66\x65\x29\xaa\ \xd6\xe2\x60\x98\x6e\xf2\x8c\xee\x1c\xe0\x08\x23\x94\x27\xb8\xea\ \xd9\x26\x2e\xa4\xa2\x0d\xe8\xb8\x45\x54\xde\xe3\x4f\x80\x7a\xc5\ \x4e\xea\x02\x68\x40\xe1\x43\x8f\x5d\x8c\xe1\x16\x09\x1d\xc3\xbc\ \xbc\x38\x19\x0f\xd5\xe3\x02\x08\x0a\xc5\x28\x20\x55\x07\x28\x44\ \xe3\xa3\x51\xac\x41\xe2\xc4\x81\x98\x92\x32\x4c\x6e\x73\xa3\x18\ \x4b\xa9\x66\xb1\x1c\x5c\xa6\x45\x1e\x93\xc3\xe5\x2e\x57\x33\x35\ \x06\xaa\x09\x7b\xdc\x15\x1f\x6c\xb1\x10\xd1\x62\xd3\x21\xce\x5c\ \xc2\xb0\x88\x1a\x95\x36\x14\x61\x75\xb6\xb0\xa0\x53\xa9\x94\x1b\ \x66\x41\xd5\x59\x2c\x91\x5d\x4c\xf4\x50\xb4\xa3\x69\x95\x3b\xd6\ \xe0\x6a\x24\xd1\xd4\x3b\xb1\xb2\x89\xac\xa9\x48\xc5\x0a\xad\x46\ \x27\x75\xf1\xd0\xa0\x76\xfa\x03\x40\xe7\xba\x8b\xe9\x5a\x40\x7a\ \xb7\xd8\x05\x14\x6e\x41\x38\x42\xb1\x85\x0c\xea\x70\x18\x5d\x8c\ \x71\x86\x31\x4c\x6c\x89\x86\x8d\xa2\x07\x3a\x53\xa9\x4d\xa9\x28\ \x1a\x20\xe2\xe5\x4a\x23\x6b\x2e\x61\x86\x11\x0a\x6a\xb0\x2f\x1e\ \x87\xb4\x46\xdd\xe8\x31\x50\xfe\x48\x28\x88\x6a\x78\xfa\x09\x69\ \x06\x49\x0f\x11\xe9\xcd\xb0\xec\x81\x04\x7e\x3a\x00\x38\x5c\xa0\ \x19\x02\x67\x2b\x48\x73\xaa\x84\x5a\xea\x7c\x09\x4b\x6c\xb7\xad\ \x03\xfc\x36\x9e\x3c\x09\xca\x79\x88\x9b\x9e\x72\xc1\xe9\x3d\xe7\ \xa0\x07\x8a\x3d\x29\x50\xac\x45\x77\xba\xd1\x0b\x41\xf4\xea\x8a\ \x5d\xec\x92\x57\x8c\x6e\x69\x54\x34\xa0\x20\x95\x58\x9a\xe0\x22\ \x51\xc4\x9b\x07\x1c\xa3\x05\x56\x10\xc6\xa4\x0d\x7b\x14\x64\xe5\ \xfb\xcb\x26\x68\x51\x2d\x21\x60\xe6\x1a\x33\x8b\x04\x3d\x0e\x69\ \x37\xd9\xe4\x69\x42\xa2\x19\x5a\xa6\xf2\x86\x80\x4c\x5d\x70\x26\ \x6d\xf1\x1b\x19\x94\x93\x66\xe2\x7c\x1d\xd0\x1c\x60\x80\x69\xe9\ \x56\xb7\x5f\xda\x8e\x3b\x21\xc9\xd5\x33\xf1\xa0\x84\x21\x16\xb1\ \x52\x48\xdc\x1e\xe5\x06\xf4\xb9\x7f\x78\xeb\x3f\xe9\x34\x5d\x3b\ \xe0\x55\x2d\xa9\xa8\x2b\x14\xe8\xa1\x0e\x1f\x8e\xe1\x5e\x59\x88\ \x46\x5c\x2e\x00\xa9\xba\xc9\xd2\xc7\x00\xf8\xb1\x07\xaa\xd8\x29\ \xc6\xae\x08\x7c\x50\xe8\xc4\x16\x95\x6c\x2e\x1b\xfc\xb0\x0d\x4f\ \x7e\x72\x0c\x2e\x07\x61\xfd\xea\x66\x20\x70\x5c\xc8\x80\xa7\x79\ \x60\x84\x1c\xd0\xa6\x83\xfe\x12\x42\x0f\x0a\x11\x4e\xdd\xc4\x56\ \xb6\xb4\x6d\x96\x01\x4e\xb0\xe6\x99\xb8\xf9\x5a\x34\xb9\xc6\x4d\ \x0e\xd0\x83\xee\xe4\x0e\xb8\xc8\x96\xa4\x9d\xf1\x9c\x1e\x58\x98\ \x2b\x15\xe8\x82\x6b\x2d\xe8\xe1\x5c\x3a\xb9\xf0\xcf\x27\xde\x05\ \xd9\x06\x85\x5c\xa9\xd8\x60\x17\x8b\xf6\x03\xbd\xa0\x00\x84\x08\ \x88\x61\x19\xee\x6b\x42\x2c\x55\x67\xe9\x1e\x03\xb9\x8a\x0d\x8b\ \x46\x49\xab\xe8\x21\x24\xc7\x37\xb2\xa1\xae\xc3\x3b\x7e\xa8\x96\ \x31\xc4\x20\x04\x48\x30\xb8\x66\xf1\x98\xdf\x56\x3b\xb3\x37\x03\ \x8e\xb5\xab\x87\x45\x66\x41\xe5\x91\x48\xdf\xdc\xc0\xae\x4f\x00\ \x3a\x0b\xca\xb6\x82\x82\x14\x76\xb4\xb4\x74\x55\x63\x6f\x27\x69\ \xce\x1e\x47\x77\x1e\x59\x93\x9b\xdc\x59\xda\x48\x79\x93\xf0\xce\ \x42\x27\x29\xfc\x19\x3f\xbb\xc8\xcf\x5a\x97\x7b\x0e\x70\xc3\xf8\ \x2f\xa9\x68\x72\x01\x32\xd0\x97\xc9\x40\x5a\x0c\xe3\x1d\x2c\x0c\ \xe4\x8d\x91\x1f\x1f\x2c\x60\x96\xc9\x97\x5c\xdc\x4b\x19\x89\xf5\ \x5b\xd4\x23\x1a\x66\xa9\x11\x7e\xf0\x9a\x3d\x44\xbf\x55\xae\x9c\ \x42\x08\xe8\x70\x3e\x38\x55\x74\x33\x7b\xd3\xa0\xda\x80\x04\x19\ \x58\x64\x38\xcc\x61\xfe\x6a\x53\x0f\xc8\x2c\x24\x58\x47\x0f\x06\ \x80\x56\xb6\xac\x15\x13\x76\x8a\x90\xab\x3d\x48\x76\x99\x9e\x51\ \x93\xe1\xba\x1c\x29\x5c\xb0\x03\x9c\xac\xf6\x67\x29\xa8\xeb\x4e\ \x58\x81\x6b\x7c\x4e\x7c\x62\x0b\xd8\xc0\xda\x05\xb8\x05\x14\xb0\ \x6b\xaf\x46\x67\x21\xd2\x90\x1a\x43\x61\x31\x32\x6f\xf4\x46\x03\ \x5f\x8f\xa2\x54\xd4\x41\x94\x52\xf2\x6a\xd1\xea\xa4\x1a\xe6\xe6\ \x0b\x5e\x70\xae\x27\x7c\x48\x6a\xb7\x66\xd8\x09\x18\x5a\x8d\x53\ \x53\x81\x60\xce\xe4\x51\x01\xf0\x1b\x9d\xc5\xdd\xa9\xb1\x85\x2a\ \xdd\xcf\xd9\x66\x74\xa8\x53\x5b\xee\xec\xce\xb2\xaf\x81\xf2\xee\ \xe0\x41\xf0\x34\x69\x79\xe1\x8b\x42\x6d\xe1\xd5\xe2\xf1\x6e\x85\ \x2e\x0e\xe1\xaa\xf3\xac\x1d\x60\x6c\xa9\xb0\x81\x05\x6a\x91\x01\ \x18\x43\x8a\xc9\x21\x48\xa5\x8e\x01\xa3\x74\xd1\xd3\x1b\xc8\xfb\ \x08\x4c\x16\xec\x46\x97\xa8\xbb\x17\x44\xa2\xaa\xba\x7c\x91\x9a\ \x7d\xd9\xcb\xa9\x15\x9c\xaa\xa9\xd1\xc2\x11\x04\x1f\x68\x59\x6f\ \x68\xd3\x81\x65\x83\x0c\x28\x58\x03\x49\x85\x54\xb4\x01\xdb\x61\ \x9c\x2d\x64\x60\x06\xba\xce\xdc\x49\x18\xec\x64\x4b\xb5\x8c\x49\ \x11\x08\x9e\xc9\xfe\x95\xc9\xf4\xa1\x9c\xe0\xd1\xc3\x4c\x60\x5f\ \xf6\x0d\x85\x1e\x08\xcf\x2d\x48\x41\xd6\xfc\x93\x56\x84\xcd\x28\ \x4d\x97\x7c\x5c\xc3\x1f\x1c\xc1\x25\x94\x02\x42\x89\x08\x55\x00\ \x88\x0d\x30\xd9\xa0\xd4\x4d\x8b\x88\x0f\x60\x44\x80\xe8\xd1\x1f\ \xa6\x11\xd1\x7b\x65\x81\x16\x18\x46\x5d\x20\xc8\x63\x90\x97\xeb\ \x55\xcc\x0f\x85\x80\x16\x0e\x09\xc2\x49\x99\xc2\x41\x84\xe7\xd8\ \x86\x36\x69\x5c\x03\x2e\x93\xa0\x0c\xca\x1e\x71\xc1\x6f\x10\x87\ \x06\x6a\xe0\xeb\x3c\x55\xdd\x5d\x0b\x54\xd5\xce\x4e\x90\xa0\xc9\ \x49\x1f\x87\x95\xc9\x39\x60\x89\x05\x4c\x52\x0b\x1a\xc5\x1e\xf0\ \x53\x2a\x14\xc0\xf1\xfc\xd3\x55\x0c\x43\xd8\x58\xc3\x39\xdc\x82\ \x89\xcd\x20\x7f\x58\xc3\x2e\xf0\x93\xf4\x48\x46\x80\x64\x00\xf5\ \x64\x80\x88\x40\x81\x12\x2e\x21\x13\x02\x19\x11\x6d\x4c\x16\x6c\ \x48\x61\xe8\x45\x88\xc8\xd7\xbf\x99\xcb\xa0\x40\x94\x7e\xa9\x9a\ \xe5\xe8\x06\x1d\x2d\x20\x2c\x46\x53\x44\x08\x84\x0c\xcc\x0c\x33\ \x51\x19\x12\x7c\xc2\x37\x79\x02\x17\xe8\x8c\x1b\x92\x84\x94\x4c\ \xd8\x53\x25\x9f\x54\xd5\x8e\x08\x9a\x49\x0f\x44\x5f\x0a\x70\x58\ \xee\xd0\x83\xfe\x01\xb8\x03\x3a\xec\x02\x0b\xb6\x60\x20\x4e\xc5\ \x2d\x7c\x45\xd6\xf8\x20\x29\xe1\xd0\xce\x31\xe2\x2e\x60\x4d\x29\ \x00\x80\x35\x5c\x05\x5a\x65\xd2\xa0\x38\xc5\x18\x28\x14\x32\xa4\ \x40\x04\xe4\x18\xbd\x44\xc0\xfc\x2d\x61\xfd\x1d\x8c\x38\x3c\x5d\ \x81\x54\x08\x2b\x98\x54\xe2\x48\xcc\xc4\x00\xa0\xfc\x30\xd9\xc4\ \xc0\x49\xda\xe9\x11\x1d\xb1\xa2\xad\x10\x04\x6c\x44\xa0\x44\x44\ \x53\x11\x90\xce\x94\x0d\xcf\x1a\xc9\xc0\x37\x09\x1f\xeb\x48\xc9\ \x06\xb6\xa1\xf1\xd1\x16\xdd\xd1\xdd\x54\x3d\x07\x4a\x14\xc1\x35\ \x80\x24\x48\x2e\x92\xf4\x39\xd2\x01\x3c\x83\x33\x42\xa3\x0a\x4e\ \x63\xe1\x15\x02\x2c\xdc\x02\x21\x64\x9b\x14\xc0\xcb\x55\xdc\x10\ \x33\xf8\x20\x3a\xf0\xd0\x2e\xc8\xc9\x39\x58\x03\x33\x00\x80\xf1\ \x58\xc0\xb8\x55\xcd\x2d\xc0\x58\x08\x9c\x0d\x32\x44\x80\x21\x20\ \x03\x10\x84\x80\x0d\x64\x41\x3c\x72\x62\xfd\x6d\x41\x04\xb0\x48\ \x8b\xec\xcb\x14\xd6\x52\x18\xa5\x14\xa4\xf8\xe3\xf8\x00\xdc\xfb\ \x60\xcc\x10\x0a\x0f\x44\xa6\x5a\xe5\x54\x8e\x35\x1d\xa4\x68\xb9\ \x4c\x03\x16\x41\x6e\xac\xd1\x1a\x79\x93\x92\xfc\x06\xeb\x00\xa3\ \x06\x7e\xfe\xc2\x27\x48\x09\x20\xcd\x9d\x0a\xc4\x40\xdd\x51\x95\ \x01\xc8\x00\x48\xde\x44\x11\x28\x5b\x32\x3e\x43\xf5\xe1\x81\xd2\ \xa4\xc0\x33\xb8\x03\x5a\xb8\xc3\xd3\xfc\x61\x51\x14\xc2\xcd\x3d\ \x17\x1e\x20\xe2\x7c\x80\xe3\xf3\x2c\xd7\x2e\x98\x82\x55\x28\xa2\ \x29\x90\x4d\x54\x98\x4d\x06\xd0\x43\x06\x48\xc1\x38\x90\x05\xda\ \xa4\x00\x84\xa8\xc1\x26\x72\xa2\x3c\x46\x51\x04\x38\x51\x8b\x70\ \xcc\xa3\x25\xce\x87\xf8\x5f\x2f\x8d\xc8\xfc\x8c\xcf\xc5\x4c\x56\ \x89\x84\x11\x79\x0d\xca\x80\xe0\xe2\x01\x9a\x96\x40\x30\x04\xef\ \x45\x13\x43\x4a\x44\xab\x91\x84\x44\xce\xa5\xae\x7d\x42\x94\x44\ \x49\x06\x76\x04\x5e\x36\x95\x46\xaa\x00\x47\x42\x55\x98\xc0\x59\ \xd2\x58\x43\x0f\xe4\x4e\x0a\x20\x1b\x62\x36\xe6\x33\x5a\x80\x05\ \x10\x9e\x64\xfe\x03\x17\x58\x66\x58\x94\xd2\x74\x19\x14\x8b\xd1\ \x09\x3a\xd8\x67\xe4\x85\x66\xa8\x29\x17\x8a\xe1\x01\x32\x48\xc1\ \x56\x92\x41\x80\x84\x1e\x6c\x4a\xe5\xa5\x79\x80\x38\x3c\xca\xa3\ \x08\x4a\xc6\x24\xca\xbe\x1c\x4e\x18\x0d\x4e\x13\xec\xa6\xc5\x94\ \x0a\xf8\x20\x0e\x65\x68\xa1\xc0\x0d\x0f\x37\x25\x1c\x44\x30\x9c\ \xc9\xfe\x18\x18\x1c\x0d\x0b\x1f\xe4\x97\x1e\xe9\x81\x2e\x9a\x43\ \x21\x30\x49\x2f\x52\x27\x94\x58\x67\x47\xf0\x62\x5e\xee\x0c\x6d\ \xf5\xe5\x5f\xda\x9d\x60\x86\x24\xb2\xf5\xc0\x25\xf4\xe8\x01\x8c\ \xc3\x38\xa0\xe4\xd1\x9c\x83\x63\xba\x03\xcb\xb5\xe7\x52\x70\x1b\ \x1e\xc0\xcb\x1f\xec\x02\x54\x5c\x17\x29\xe9\xdc\x72\x45\x23\xe2\ \x99\x8b\xd5\xa0\xa6\x69\x9a\x45\x08\x70\xd7\x0f\x91\xc1\x4f\x16\ \xa8\x3c\x5e\x9a\x09\x30\xc3\x78\xd9\x40\x1b\x50\x0c\x47\x39\xa8\ \x65\x90\xc1\x28\x4c\x1d\x89\x84\xc8\x84\x86\x48\x60\xe4\xa6\xe9\ \x3d\x8a\x16\xf6\x57\xaa\x21\x24\xcc\xe8\x46\x05\x09\x84\xc6\xb1\ \x91\x27\xa0\x16\xe9\x14\x95\x67\x15\xc1\xc5\x4d\x27\x5e\xe2\xe5\ \x8b\xc6\x28\x2f\xf6\x62\x94\xf4\x9a\x75\x74\xa7\x73\xe8\x28\x48\ \xa2\x9c\x35\xf4\xe8\x38\xf4\xc0\x11\xa0\xa4\x3b\xd0\xc3\xd1\x78\ \xea\x38\xd0\x93\x64\x16\x82\x7c\x5c\x66\x29\x0c\xc3\x22\x52\xcc\ \x9c\xcc\xa0\x94\x9e\x03\x95\x62\x52\x5a\x99\x98\x0e\x11\x69\x0f\ \x89\x0f\x93\x35\x1a\x10\x44\x25\x98\xe2\xcd\x16\x84\xd4\x16\x05\ \xdc\x65\xac\xe9\xa9\x70\x0c\x14\x18\x4e\xc4\x74\x42\x60\x84\x8a\ \xfe\x82\x80\x62\xe3\x28\x8e\x16\x6a\x61\xcd\xdc\xc8\x40\xf0\xa9\ \x35\xcd\xd6\x69\x09\xdf\x06\xf4\x80\x10\xd8\x5e\x0c\xc8\x25\xa2\ \x26\xaa\xa2\x76\xc4\x91\x70\x01\xb9\xf6\xa2\x5e\x46\x55\x77\x36\ \x8b\x2d\x88\x24\x48\x8e\xe7\x25\x8c\x83\x35\x8c\x43\x0a\x48\x41\ \x63\xee\xc2\x0b\x00\x29\x10\xa4\x40\xa8\xb2\xa4\xcb\x5d\xc3\xe3\ \x21\x62\x2d\x94\xa3\xb5\x15\xa2\xab\xe2\xa0\x01\x0c\x1a\xac\x46\ \x85\x72\x61\xc5\x38\x1c\xc1\x30\x90\x85\x0f\x0d\x21\xa5\x81\x69\ \x6c\xe2\x0d\x33\x64\x41\x08\xf8\x52\xc0\xdd\x8b\xe9\xe5\x9f\x1f\ \x44\xd4\xa3\x94\x88\x7b\x0d\xd3\x28\x94\x1e\x61\x39\xc6\x9a\x26\ \x8e\x1a\x38\xab\xc1\x21\x1c\x42\xca\x08\x84\x51\x6b\xe8\x9c\x80\ \x6f\x60\x84\x27\xb8\x25\x44\x48\xa4\x8c\xb6\x68\x8b\x72\x44\xb9\ \x96\x6b\xa3\xb6\x0e\x5f\xd6\x56\x54\xc1\xc2\x71\x14\x81\x4d\x3c\ \xc3\xa5\xbe\xab\xbc\xd2\xeb\x9f\x64\x80\x3b\x00\x69\x0a\xd0\x83\ \x0c\xf0\x6b\xbf\x0e\xc3\xe3\xd5\x02\x26\x5d\xa3\xf3\x3c\xcf\x74\ \x7d\xad\x1d\xd8\xc1\x71\x1d\x57\x5a\x7d\x23\x1e\x74\xea\x11\x7c\ \x69\x29\x8c\x83\xd0\x91\x97\x3b\xbc\x26\xc5\xfa\x18\xde\x44\xfe\ \x80\xe2\x24\xd1\xf8\xbc\x14\x86\x42\x81\x30\x49\xcc\xa4\xa0\x14\ \x2f\x91\x41\xe9\x4d\x8a\x15\xd5\x26\xe3\x64\xd6\xe5\x98\xe5\x6b\ \xf8\x4f\xd7\xf1\x29\xb3\xc0\x91\x74\xf6\x40\x11\xbc\x80\xc6\x95\ \x04\x94\xe0\x65\x36\x80\x2b\x5e\xfe\x6c\xe6\x0a\x4b\x76\x0e\x6d\ \xcf\x7c\xa4\x86\x61\xea\x38\x9c\xc3\xd4\x2e\x9a\x05\x90\x81\x3b\ \xa0\x0d\x10\xb8\xc3\x1e\x58\x2d\x9e\x15\x02\x0d\xd6\x02\x21\x1c\ \x17\x21\x7c\xe3\x3f\x49\xd7\xd7\x9a\xc2\xd7\xfe\x89\xd8\x3e\x85\ \xb5\xed\xc2\x33\xd0\x09\x3d\x1c\x01\x46\x6c\x41\x29\x20\x03\x26\ \xda\x40\xae\xc6\xad\xdc\xf2\x6a\x04\x58\x0f\x26\xee\xd8\x9a\x72\ \xcc\x18\x74\x91\xc5\x58\x4c\x3d\xb4\xe9\xc5\x54\xc6\xdc\x34\xe8\ \xd3\x79\x46\xb3\x1a\xee\xff\xe0\x88\xc9\xfc\xcf\x17\x42\x84\x50\ \x09\xcb\x25\xf4\x40\x0a\x20\xad\x2d\xbc\x80\x81\x19\x58\x06\xbe\ \xe8\xa2\x92\x6b\xb8\x8e\x2b\x17\x08\x6d\x54\xfd\x9a\xb4\x68\x87\ \xe0\x3d\xc3\x38\x30\x2d\x4a\x02\xc1\x33\x2c\x9a\xd0\x59\x00\xd4\ \x42\xad\xa8\xfe\xa1\xbf\x62\xed\x39\xd4\x6e\x4c\x56\x26\x67\xc6\ \x87\xf8\xcd\xc9\x01\xe0\x81\x29\x60\x92\xb5\x1d\x65\xe4\xfe\x9d\ \xc3\x38\x94\x82\xf1\xde\x24\x10\x30\x5a\x0a\x30\x6f\xf3\xce\x2d\ \x53\x0a\x16\x81\xa8\x1e\x65\x08\xd6\xf5\xfa\x01\x65\x3d\xca\xc5\ \xe4\x80\x87\x60\xaf\x87\x24\x0e\xe1\xae\x2c\x66\x1d\xe7\x69\xc8\ \x48\xad\xb4\x62\x95\xe1\x5e\x11\xf0\xc1\xd1\x14\x81\x11\x3f\x43\ \xe9\x3c\x84\xc6\x91\x04\x12\xcf\x2f\xb8\x56\x6e\xb9\xce\x68\xaf\ \xed\xaf\x73\xa0\xc4\x0b\xbc\x80\xbe\xa6\xc0\x3a\x3a\x6d\x01\x2f\ \xda\x7d\x35\x1a\x31\xb9\x2e\x9e\x75\x55\x4d\xb6\xd5\xb6\xcd\xc9\ \x72\xb9\x90\xf1\x04\x5a\xef\x52\x45\x42\xb9\x83\x7c\xa4\x00\x1e\ \xc8\x60\x36\x32\xa5\x0f\x85\x00\xdc\xee\xea\x8f\x51\x65\xfe\x89\ \x8f\x53\xd8\xcd\xe9\x41\x08\xc0\xed\xad\x89\x48\x4c\x27\x64\x4c\ \x60\x21\xeb\x87\xd4\x66\xb3\x62\x96\xe2\x2c\xce\xe2\x08\x41\xad\ \xf4\xb0\xc7\x1c\xee\x17\xd2\x91\x40\xbc\x80\x11\x8f\xe0\x33\x38\ \x40\x05\x95\x1d\x49\x38\x80\x06\x5a\xa7\x13\x83\xab\xb2\xc0\xce\ \x09\x20\xed\x0b\x38\x80\x91\xce\x6b\x0a\xa4\x8d\x3a\x5c\x62\x06\ \x3c\x8a\x5f\x90\xda\xbd\xb8\x83\x18\x13\x57\x21\xac\x95\x56\xe0\ \xc9\xe3\xcd\x20\x30\x07\x9a\xab\xda\x41\xf4\x40\x69\xfe\x59\xe0\ \x81\x0e\x79\x2a\xe3\xd1\x83\x14\xac\x23\x10\xf4\x05\x14\x7c\x29\ \xc5\xd2\x9b\x98\x6e\xc1\x33\x47\x08\x3a\xd6\x97\x0c\x3b\x05\x7d\ \xb5\xe9\xdc\x74\x02\xc9\xd6\x52\xdd\xcc\xa9\xe9\xad\xec\x00\xae\ \xec\xe5\x5c\x96\x3a\x57\xb2\x94\x45\x99\x35\xb9\xc3\x0b\xf0\xd6\ \x15\x83\x4e\xe5\x30\x0b\xe8\x38\x00\x3e\xdb\xc2\xb4\x20\x10\x47\ \x7c\x02\x72\xec\x81\x3f\xeb\xa5\x53\x41\xd5\x09\x1c\xcd\x9a\x19\ \x29\x01\x67\xc0\xe9\xce\xf2\x28\x8c\xc2\xa9\x48\x4c\x26\x35\x5a\ \x2e\x13\x17\x17\x40\x97\xd6\x60\x2d\x7d\xd8\x60\x9f\xfc\x53\x7d\ \x72\x26\x7c\x9c\x83\x23\xe1\x41\x7c\xc0\xeb\x11\xcc\x55\x0e\x1d\ \x01\x10\x20\xc3\x7f\xf6\x85\x1a\x88\x81\x09\x53\xb3\x09\x58\x33\ \xe5\x91\x8a\xc5\x68\x33\xc5\x00\xa4\xe1\x24\xb2\xc4\x9c\x88\x4a\ \xf9\x41\x65\x4c\x2f\x18\x85\x51\x66\x3d\xf2\x23\x9f\xf3\xe5\x84\ \xc0\x51\x77\x61\x66\x09\x81\x3b\x30\xf5\x2a\xcb\x81\x03\x08\x81\ \x03\xa8\xc1\xdc\x39\xd5\x72\x58\x50\x72\xc8\x00\x95\x40\xc9\x71\ \x04\x92\xdd\x19\xc0\x15\xc3\xb3\x3a\xbc\x40\x5f\xbc\x0f\x9b\x86\ \x0a\x3c\xf4\x52\xfc\x74\xd1\x18\x4c\xb4\x58\x91\xfe\x2a\xd6\x0c\ \x54\x0d\x86\xa3\x58\xc0\x15\x74\x7d\x9b\xe4\x39\xd2\x38\xe6\xd0\ \x1e\x92\xd2\x5c\xa1\xa6\x7f\xa0\x26\xf2\x4e\x86\x34\x9b\xf0\x45\ \x30\xc3\x33\x47\x0a\x97\xfa\x0d\x36\x0b\x53\x89\x88\x8a\xe0\x1c\ \x32\x9b\x4e\xda\x4f\xbf\xd7\xfd\x6c\x9e\x7d\xa1\x33\x3a\xf7\x45\ \x80\x40\x94\x16\xaa\xc1\x16\x22\xb5\x68\x7f\xf6\xe2\xb8\x83\x1c\ \xc0\x33\x54\x0b\xc4\x54\x43\x4b\xb3\x08\x9b\x0c\x40\x07\x2c\xd8\ \xc2\x35\x24\x07\x58\xb3\x99\x03\xbc\x00\x3c\x3f\x03\x01\x2f\x1a\ \x36\x8f\x41\x0e\x8c\x42\x5a\xc3\x43\x27\x0c\x4e\x30\xbd\x83\x05\ \xb8\x35\x25\xc1\x75\x19\xb7\xd5\x92\x3e\xa2\x5d\x73\x26\xb7\x25\ \xe2\x55\x50\xb0\x50\x2a\xd4\x33\x9c\xc5\x1f\x48\x41\x33\x33\xc3\ \x60\x47\xb3\x61\x8b\x1e\x33\xa8\x83\x1f\x93\x1a\x79\xf9\x34\x8b\ \x40\x96\x30\x51\x86\xa8\x74\x42\x17\xc1\x83\x7a\x0b\x8e\xb1\xaa\ \x5e\x50\x73\xb6\x50\xd7\x97\xbd\x78\x11\xa1\x98\x9a\x7d\x41\x94\ \xa9\x6d\xa8\xa9\xa9\x81\x3b\x00\xf8\x15\xcb\x81\x05\x54\x8e\x3b\ \x4c\x35\x3e\x27\x78\x49\xbc\x96\x73\x8c\xe0\x9a\xe1\xb3\x54\xe3\ \xb6\x63\xd2\xc3\x2b\xab\x43\x5f\x70\x33\x0c\xfe\x03\xf7\xc5\xa4\ \x35\x7b\x07\xd3\x27\x20\xf7\x09\xc1\x6e\x7d\x7a\xc5\x2e\xec\x20\ \x5d\x1f\x81\xb7\x79\x1f\x29\x59\x43\x29\x58\x03\x1e\xec\x82\x7a\ \xaa\x20\x5a\x8d\xc1\xd5\xec\x1c\x33\xa7\xe6\x4d\x62\xe2\x18\x20\ \xc3\x77\x63\x04\x33\xa8\xb0\xa4\x4c\x9a\xdd\xa8\xb0\x6f\xc2\xc3\ \x63\xf7\xd2\xe0\xc0\xf0\xa3\x0c\x0e\x14\x8c\xc2\xbe\x0d\x6b\x0b\ \xff\xd0\x00\xd6\x37\x79\x4d\x4c\x53\xbc\x43\x80\x08\x28\xbd\x10\ \xca\x58\xd2\x0b\x5b\x84\x91\x1c\x64\x80\x66\x01\x38\x53\x33\x75\ \x82\xe3\x33\x4b\xd8\x82\xe0\xd5\x76\x91\xc2\x73\x91\xa2\xcd\xa2\ \x15\x2b\x2f\x75\xc2\x6f\x3f\x82\x70\xb7\x80\x91\xc3\x43\x30\x35\ \x01\x7b\x8e\x6a\x66\x02\xd4\x5c\x3b\xb7\x45\xd7\xb5\x0d\xb6\xf8\ \x8b\xdf\x02\x31\xbb\x18\x23\x0e\xaf\x0e\x69\x77\x33\x8b\x01\x33\ \x44\x2f\x10\xf4\xf8\x45\x44\xc0\x2e\x64\x12\xfd\x88\xc8\xf5\xd2\ \xf4\x30\xa5\xd4\x7a\x0b\x8e\x92\x3f\xb4\xb1\x7a\x73\x89\xa4\x54\ \x08\x7c\xac\xdf\x04\xf5\xc5\x50\x5d\x7a\xf3\xd2\xfb\xf4\x23\xc0\ \x55\x79\xba\xd9\xcb\xf0\x20\xb5\x9b\x07\xb8\x7a\x5a\xc0\xd0\xe0\ \xb3\xe0\xbd\xc0\x33\xb6\x79\x2c\xab\x83\xfe\x3b\xc4\xb2\x0f\xc1\ \xf0\x6f\x87\xca\x23\x3c\x42\x0b\x80\x33\x3c\x80\x43\x0e\x74\x42\ \x1d\x1c\x37\x92\x12\xc5\x0c\x99\x2a\x7d\x80\x63\x29\xdc\xe4\xe3\ \x35\xb7\x0f\x86\xcd\x46\x9f\x83\x50\x46\xcf\x47\x9f\x58\x73\x4f\ \x77\x52\x8a\xc1\x16\x48\x41\x26\x16\x36\xf3\xa6\x7b\x5f\x60\x8c\ \x25\xba\x0f\xc0\xad\xd0\x84\x1a\x7b\xa8\x0c\xf7\x3b\x80\x73\xb1\ \xa6\xd4\x0c\x67\x2f\xc7\x70\xcc\xc5\x7c\xf9\x56\x8a\x0a\xdf\xfe\ \xe6\xf6\x4e\xda\x30\xa9\xb5\xf5\x12\x8e\x4b\x6d\x69\x05\x02\xb8\ \x63\xaa\x81\x05\x40\x41\x81\x67\x56\x6e\x17\xf0\x0b\xc4\x72\x0a\ \x68\x3c\x2c\x43\x88\xc5\xf8\x81\x91\x83\x03\x3c\xe0\x79\x0b\x94\ \x3c\x3c\xd8\x39\x7b\xb7\xee\xb4\x0f\x45\xb5\x87\x45\xf2\x38\x2c\ \xbc\x68\xa3\xa9\xf6\x47\xb6\x33\x83\x22\x46\x0f\x4f\xd2\x09\x8b\ \x3b\xa2\x8b\x9b\x26\x32\xc4\x10\x32\xf8\xc5\x18\xe4\x71\xdc\x46\ \x80\xd0\x15\x00\x33\xff\x80\x4a\x23\x2f\xe0\xcc\xcf\x0c\x87\x8a\ \x1f\x10\xb7\xa4\xb8\x77\x4a\xa5\xf5\x6f\x67\x6f\x43\xb3\xe9\xdc\ \xf0\xad\xfd\xf0\xd2\x86\xaf\xba\x91\x93\x81\x9e\x83\xf3\xff\x01\ \x5c\xd4\x33\xfc\xa6\x93\xdb\x4b\x89\xfe\x39\xc5\x4b\x3c\x52\x5b\ \x80\x63\xaa\xc3\x2b\xbf\xf2\x38\xa8\x6e\xbe\x8e\x70\x57\x0e\x77\ \x27\x90\xbc\xc9\x37\x7b\xb2\x3f\x02\x38\x64\xc0\x02\xb7\x27\x77\ \x64\x4d\xf2\x84\x45\x29\x88\x01\x7f\x5c\x3b\xe2\x7b\x7b\x7f\xec\ \xe4\xc0\x86\x50\x36\xee\x7c\x7f\x04\xdd\x4c\x2a\x3e\x32\x40\x8a\ \x3a\xe8\x2a\x6c\x22\x76\x0f\xcd\x64\x29\x44\x40\xe2\x6f\x81\x21\ \x00\x41\x92\xd5\x34\xd4\x1b\x32\xe1\x90\xc8\x63\x13\xfc\x89\xf8\ \x3b\xbf\xaf\x7a\xa9\x43\x3d\x3c\x18\x79\x0e\xd8\x7e\x0e\x3c\x02\ \xc3\x83\x7c\x87\xdb\x40\x5a\x07\xd3\x70\x47\x7d\x30\xd5\x34\x14\ \x58\xa2\xd0\xd5\x57\x80\xac\xec\xb0\xe7\x2b\x53\xaa\xb4\xc6\x23\ \x83\xda\x8c\x01\xbe\x0f\xb7\xc9\x97\x3c\x38\xa4\x81\x13\xa4\xc1\ \xdf\xab\x03\x88\x8b\x18\x79\xec\x32\x56\xc4\xfc\xb6\xbb\xd0\x89\ \x3b\xe9\x53\xa0\x4b\x36\xf6\x20\xbc\x18\x2f\x1e\x14\x40\x01\x5c\ \xfe\x45\x04\xfd\x18\x84\xa3\x09\x5f\xc2\xa2\xd1\xc3\xb9\x27\xbe\ \x4b\x6f\x41\xd0\x8f\xa6\xec\xaf\x37\x40\x74\xb2\xd1\xe9\x5d\x27\ \x3f\x39\xc8\xe4\xc8\xe1\xe7\x20\x99\x51\xa3\xea\x25\xf4\x03\x85\ \x21\x42\x32\x09\xa1\x28\xcc\xf1\xfe\x68\xd4\xa3\x8d\xa3\x72\x10\ \x7c\x07\xcf\xcf\x3b\x93\x9d\x50\x9e\x64\x28\xd0\x06\x3c\x84\x08\ \xeb\x65\x60\x38\x06\x0a\x19\x28\x37\xc9\xb8\xcb\xa2\x0e\x48\x4f\ \x20\x64\xd4\x21\x43\x06\x64\x61\xc1\x16\x9d\x5a\xc0\x6b\x01\x07\ \xce\x82\x32\xb8\xd2\xa4\x59\xf0\xe8\x11\x97\x42\xff\xb0\x66\xd5\ \xba\x95\x6b\x57\xaf\x5f\xb3\x16\xe2\x72\x6d\x58\xa9\x52\x47\x86\ \x0d\xc3\x33\xec\xcf\x5a\xb3\x47\xce\xd9\x49\x55\x27\x55\xaa\x5d\ \xe7\xac\x01\x00\x50\xca\x9a\x59\xbe\x78\x6a\xd5\x92\x32\x4c\xef\ \x5e\x28\xef\xd4\x6d\x29\xbc\x98\xf1\x16\x29\x19\xa4\x08\x2d\x2b\ \x46\x4c\xe1\x68\x36\xea\x64\xb6\x51\x71\xa1\x1f\x81\x22\x0d\x22\ \x04\xc9\xd0\xa5\xc3\x84\x39\x28\x56\x3c\xed\xc7\xa5\xc2\x87\x20\ \x37\x86\x2c\xb8\xd2\xe4\x3b\xcf\x05\x3b\xc1\x43\x69\xd0\xe1\xeb\ \x87\x39\x6c\xe4\xc8\x60\x33\x44\xcd\x84\x36\x87\x23\x87\x11\xe1\ \x02\x94\x81\x2e\x95\x82\x03\xd7\x02\x1c\x2e\xeb\x0b\xa4\x83\x1b\ \x75\x15\x6c\x77\xef\xdf\xb5\x16\x12\x7f\x16\x2d\x9e\xb6\x7f\x8e\ \x98\xb5\x76\xae\x6e\xe6\x54\xb7\xf0\xf8\xc5\x73\x0e\x8f\xb5\x23\ \x7f\xfe\x04\x46\x56\xd6\xec\xfe\xb0\x31\x75\xc6\x20\x8c\xb1\x01\ \x99\xc9\x20\x03\x64\xc6\x41\xb0\x94\xca\xf4\x8a\xa0\x80\xcc\x34\ \x63\x08\x0a\x92\x3c\xfb\x6c\x36\x8b\x16\x0a\xed\xa5\x84\x28\x3c\ \x48\x21\x3f\x36\x83\xc7\xa5\xd7\xa8\x1a\x05\x9e\x93\x72\x23\x08\ \xa5\x0a\x77\x5b\x11\x9e\x32\xea\x29\xe3\xa1\x32\x72\x10\x31\x87\ \x0b\x46\x01\x11\xb5\xd4\x0e\x62\xc8\x8f\x03\x0d\x89\xa6\x46\x3f\ \xa8\x2a\x12\xbb\x05\xd2\xb8\x8e\x29\xed\xb8\x03\xcf\xc9\x27\xc1\ \x3a\xe0\x08\x3c\xe2\x33\x8b\x99\x52\xfe\xb8\xe5\xbd\x5b\x6e\xb9\ \xcb\xbe\xb8\xe4\xba\x6b\x17\x42\x02\x4b\xeb\x87\xc0\x0a\x78\xa7\ \x8e\x26\xa0\x28\x65\xc0\xc5\xb6\x00\xc2\x02\x7a\x84\x8a\xac\x14\ \xc5\x00\x70\x0c\x33\x08\x7d\xcc\xc8\xb3\x81\x0a\x32\xe9\xa0\xdf\ \x4a\xe2\xed\x11\x87\x3e\xf4\x90\x0c\x92\x34\xcc\xc1\xb7\x87\x74\ \x2b\x88\xd1\xcf\x44\xdc\x4d\x37\x94\x1c\x2d\x43\xc6\x51\xca\x78\ \x44\xc4\x32\x2e\x28\x03\x25\xe8\x66\xd3\x6d\xb3\x32\x8c\x61\x0e\ \x24\x8e\xd2\x78\x24\xbb\x05\x16\xc0\xe5\x29\x70\xe0\x58\xaa\x49\ \x28\x71\xcd\x35\xac\x6b\xf2\xd2\x0b\x4b\x2e\x6b\x39\x47\xd8\xf4\ \x8e\xd8\xa5\xae\x54\x08\xfe\xd9\xe5\x16\x42\x0a\x38\x07\xbf\x5a\ \x98\x85\xe2\x96\x3d\x33\x70\xf3\x4d\x00\xc6\x31\x70\x30\x29\xd4\ \x89\x8c\x41\x31\x32\x80\xb0\x8e\x77\xc6\xa8\x88\xd1\x40\x55\x1c\ \x74\xd1\x42\xe1\x31\x0d\x36\xd6\x1c\x1d\xcd\x25\x8e\x38\xe2\xb4\ \x8c\x50\x3c\xc5\x2d\xa9\x16\x45\xac\xb0\xdf\xdc\xea\x7d\x24\x8d\ \x32\xd2\x10\x71\xe0\x51\x08\x72\xc9\xb3\xa4\x74\x13\xf1\x82\x1b\ \x6e\xb8\x20\x8d\x51\x06\x4e\x23\x3b\x70\x60\x85\x0a\xbb\x5a\xe1\ \xb9\x55\xd7\x8f\xa1\x14\xaf\x10\x66\xe0\xda\xe5\x2e\x61\xeb\xe3\ \x8b\x3d\xf7\xde\xb3\x2b\xad\xfc\x6a\xa1\x27\x2d\x7a\x08\xb1\xa1\ \x89\x6a\x09\x1c\x87\x5b\xa1\x78\x1e\x06\x19\x6b\x99\x81\x42\xdc\ \xcd\x2a\x82\x22\xa5\x40\x2f\x7c\xd7\x24\x78\x7c\x5b\xb4\xb5\x51\ \x4e\x8b\xd7\xb7\x7b\x43\xc9\xd1\x52\x3f\x8e\xca\x4d\x21\xdd\x5a\ \xd8\xa8\x61\x12\x29\x4e\xa3\x85\x16\x04\x7e\x64\xd4\xb1\x45\xf4\ \x54\x44\x70\xca\x88\x98\xe0\x8a\x5d\x85\x43\x3a\x24\xa3\x3a\x12\ \x1c\x75\x3c\x06\x59\x6f\x27\xc5\xe3\x42\xd8\xbf\x8f\xd0\x4b\x0c\ \xf6\xe6\xa2\x8b\xae\x3f\xca\xfa\xc3\xd9\xc9\x4a\xc1\xa3\x80\x5b\ \xc6\xc8\x20\x3e\x66\xfe\xae\x44\x86\x9e\x0c\x78\xfa\x79\x1c\xb3\ \xb6\x28\x25\x02\x5f\xf7\xd4\x6c\x33\x3f\x2d\xac\x4d\xeb\xdf\x5a\ \x28\xc8\x35\x88\x3c\x1a\x14\xd2\xa7\x41\x7a\x28\x94\xd9\x3d\xdd\ \x6d\x5f\x4b\x6b\xcc\x0d\x1c\x4f\x93\x7a\x84\x60\xaa\x5a\x3d\x6a\ \xf7\x47\x8e\x12\x31\x6d\x8f\xc0\x81\x27\x8d\x87\x9d\x88\x6a\xe0\ \x8d\x97\x82\xb5\x6e\x58\x61\xed\x21\xef\xbd\xb1\x77\xf2\x9a\xed\ \x03\x07\xe0\x88\x5b\xc4\xa5\x8b\x90\x3f\x4a\x61\x0b\x3f\xbf\x1a\ \xa7\xe7\xf1\x5b\xa0\x88\xd9\xc0\x10\x8a\xdb\xa5\xdb\xc9\x7c\xad\ \x6c\x8b\x0b\xc4\x7d\x27\xc4\x44\x45\x32\xdd\x35\x0e\x07\x42\x24\ \x4e\xc1\x46\x44\x0e\x79\x04\x45\x4a\x73\x28\xd9\x85\x42\x46\x97\ \x6a\x18\x8b\x8c\x97\xb6\x51\x4c\x07\x1e\x02\x7b\x5b\xc1\x90\xd2\ \x2a\xe2\xa5\x6d\x77\x5e\x83\x07\x38\xd2\x70\x03\x27\x5c\x10\x56\ \x4c\x69\x41\xc6\xa4\xc2\x14\xea\x59\x25\x7b\x2d\xcc\x95\x78\x2e\ \x51\x0a\x63\x89\x0b\x59\xb5\x38\x0f\x7e\xd2\x92\x16\xf3\xd4\x42\ \x59\x21\x28\xc0\x2e\x7c\xb8\x0b\x03\x61\xce\x4e\x77\xa2\xcc\xb7\ \x84\x06\x21\xfd\x49\x28\x43\xfd\x3b\x89\xd4\x3e\x84\xa9\x1c\xc4\ \xc8\x69\x1f\x79\xfe\x84\x67\x5a\x13\x2f\x4d\x69\xaa\x46\xc6\x2b\ \x9e\x41\xba\xa6\x90\x22\x75\x44\x29\x16\xd4\x14\xf1\xa8\xf3\xbb\ \xb4\x4d\x0c\x1c\x1b\x71\xd5\x23\x9c\x60\x9d\xb7\x95\x90\x29\x4d\ \x79\x8a\x54\x16\xd0\x14\x38\x00\xe1\x7a\x2e\xf4\x63\x77\xfa\x66\ \x07\x1a\xee\xc2\x86\xe6\x69\x8b\x0e\xf1\x93\x1f\x65\xc5\x8c\x1e\ \x3c\xcc\xc0\x1f\xa4\x60\xa7\x2d\x50\xa6\x3f\xd6\x12\xc3\x7f\x20\ \x14\x22\xd6\xfc\xcb\x89\xae\xe3\x90\x03\xc9\x00\x23\x90\x8c\x88\ \x46\xba\xd1\x08\x47\x60\xb4\x29\x02\x32\x4c\x29\xc7\xa3\x8a\xa3\ \xa8\xb2\xc6\x81\x75\xea\x28\xa3\x60\xa0\xa7\x40\x28\xa3\x1a\x95\ \x68\x60\x22\x6c\x1e\x1e\x4d\x08\xc2\xeb\xe4\x91\x7a\x29\xe8\xe3\ \x1f\x91\xf9\x15\xf1\xec\xe1\x58\x36\x54\x8b\x21\xa9\x64\xc8\x73\ \xd0\xa3\x4b\x52\x78\x56\x60\xe8\x11\xc9\x3b\x01\x40\x0c\x7e\xb9\ \x00\x32\x2a\x83\x8c\x24\x8e\x8b\x35\x13\xea\xd1\x51\x90\x76\xba\ \xdf\x74\x91\x35\x33\x5a\x94\x42\x62\x34\x24\xe8\x38\x8a\x81\x8f\ \x4a\x5e\xc3\x8e\x92\x83\x83\x75\xa4\x48\xb8\xf4\xdd\x1d\x37\x58\ \x86\x11\x0e\xaf\x62\x22\x7a\xc8\xc0\xe2\xe8\x84\x38\xe2\x91\x56\ \x4d\x19\x26\xfe\xf5\x16\xe0\x04\xf1\x24\x93\xa2\x21\x63\x02\x59\ \xca\xa7\x38\x1b\x22\x4e\xa3\x3c\x34\x19\x0f\x0b\x00\x85\x02\xd8\ \xf0\x07\x32\xf3\x8b\x21\x90\xf1\x98\x1f\x0c\x25\x7f\xa4\x21\xcd\ \xa4\x70\x63\x10\x8e\x20\x6a\x6b\x23\x82\xda\x42\xda\xa5\x4b\x8d\ \x88\x71\x76\xf7\x8a\x11\x19\x5b\x59\xa9\x47\xcc\x2e\x0d\x6e\xe4\ \xe7\xc4\x10\x3a\x42\xa5\xe4\x40\x53\xab\xb2\x20\x05\x67\x99\x54\ \x5c\x38\x81\x7a\xb4\xc2\xd8\x43\x33\x26\xd1\x8a\x6e\x35\x64\x85\ \x38\x00\xcc\x82\x75\x8e\x5a\x70\xc9\x64\xbb\x28\xc0\x18\xa6\x75\ \x8b\x5a\xe0\x01\x19\xf9\xa1\xc7\x0f\x7c\x56\x0a\xa1\x00\x61\x38\ \x39\x18\x9a\x8f\x72\x63\xbc\x16\xe1\x26\x5e\x1a\xc9\x22\x87\x2a\ \x02\x91\x51\x6a\x24\x94\xf5\x98\x5d\x3d\xb7\xc6\xca\x4f\x8d\xf0\ \x8d\x1d\xe9\xc8\x2c\x9d\x00\x31\x8b\x31\x2d\x54\x6e\x04\x5e\xf2\ \x72\x59\xb1\x38\x1a\x83\xaa\x02\x9b\xce\x55\x71\x01\xd1\x58\x45\ \xe0\x98\x5c\x35\x2d\x57\xc4\xc2\x05\x1e\x8c\x89\x10\x5a\x7a\x4f\ \x23\x95\x85\xac\x5b\x48\xa1\x3f\x90\xe4\x8f\xe7\x16\xc4\x0c\x64\ \x90\x61\x68\x8c\xf2\x11\xd7\x76\x73\xa1\xa8\xd9\xc8\xaf\x9e\x19\ \x54\xd5\xfe\x38\x33\xc5\xc3\x86\xe2\x06\xf8\x12\x11\xda\x7a\xc7\ \xa9\x11\xe6\x60\x78\xac\x8a\x8a\x40\x25\x0b\xbc\x4e\x01\x2f\x2a\ \x9e\x82\x83\xef\x64\x45\x30\x5c\xdc\x80\xb3\xc0\xfb\x60\x75\xac\ \x83\x47\xe9\x59\xe3\xb4\xed\xe5\x9b\x78\x98\xc0\xa5\x2e\x41\xb2\ \x91\x8f\xb3\xa1\x9b\xba\x59\xbe\x05\xe1\x49\x2f\xcc\x50\x47\x13\ \x32\x63\x9b\x95\xa0\x24\x29\x2c\xc2\x9d\x47\x76\x3a\x24\xe3\x32\ \x04\x22\x65\x58\xd7\x88\x98\xbb\x8c\xd9\x2d\xc3\xc1\x5e\x4c\xdb\ \xbd\xce\xf8\xc1\x87\x94\x88\x62\x0a\x15\x61\xa7\x06\x08\x12\x81\ \x4e\xcc\x55\x18\x8b\x63\x68\x93\x64\x0c\xce\x4a\x2f\x79\xb1\x4a\ \xaf\xf4\x9c\x52\x5a\xf7\xce\x18\xb5\x3c\x78\x46\x7a\xce\xe2\xd6\ \x9f\x15\x86\xbf\x8c\x29\x05\x6f\x23\x74\x29\x83\x10\xd8\x20\x03\ \x19\x48\x82\x39\x12\xc5\xdd\xb4\x33\x14\xf5\x80\x4d\x8d\xea\xb1\ \x8c\xe6\x1e\x96\x80\xad\xf4\x9d\x42\x81\x4a\xaf\xc7\x46\x25\xb2\ \x22\x6c\x55\x88\xd3\xa0\xd0\x56\x4d\x05\x84\x91\x25\x18\xaa\x0c\ \x61\x8c\x32\xd0\x8d\x56\x49\x4a\xaf\x7a\x65\x4c\x63\x39\x6f\x45\ \x3c\xdc\x2c\x5f\x0e\xef\xd4\x63\x1e\x23\x23\x03\x00\xce\x4c\x6e\ \x58\xfe\x83\x35\x21\xb7\xc8\x20\x59\x8c\x97\x47\x40\x13\xd8\x9f\ \xae\x66\x14\x37\x80\x81\x8c\x42\xe1\x84\x7a\x14\x29\x3a\x69\x08\ \x85\xac\xd4\xa6\xdd\xeb\x6a\xaa\xcb\x12\x9b\xd1\x41\xcf\x58\xb6\ \x5e\xde\x80\x60\x4e\x30\x46\x9a\xd7\x1c\x15\xe9\x84\x10\x2a\xce\ \x8b\x4a\x9c\xe7\x1c\x6b\xac\x88\xcc\xce\xe7\x53\x8c\x9e\x4b\x01\ \x05\x3f\x8f\x6b\x0c\x5d\xd4\xab\x8b\x5c\x34\x2f\xa9\x91\xe1\x36\ \x2a\x71\x94\x93\x63\xe3\x92\x50\xc0\xc0\x09\x0c\x94\x72\xd5\x3a\ \x82\xb6\xa7\x30\xf6\x83\x4c\x83\x51\x1a\x62\x24\x50\x85\x8e\xf0\ \xcb\x14\xe3\x94\xc4\x08\xda\xb6\x1b\xc8\x2a\x49\x86\x30\x44\xab\ \xa9\x82\xb1\xa7\xa0\xd8\x79\xe3\x80\xb5\xac\x65\x2d\xb2\x03\x10\ \x72\x18\x95\x61\x50\x61\x80\xb0\x6b\x72\xd6\xf4\x5f\x58\x83\xe0\ \xd3\x7a\x53\x23\x40\x15\xba\xb0\xa3\x84\x47\x46\x6c\x29\x69\x81\ \x2e\x03\x47\x54\x19\x9b\xef\x38\x6b\x31\xea\x70\x84\x81\x5b\xdc\ \xb6\xa6\x34\xe8\x91\x19\x11\x6c\x77\xd7\x1d\x37\xc6\xc9\x6b\x08\ \x52\x93\xf9\xaa\x24\x8c\x8a\xf5\xe0\x9d\x72\xbe\x59\xe3\x12\x8d\ \x29\x85\x3a\x86\xa6\x21\xe3\xf9\xcb\xc0\x1e\x6a\xda\x90\x56\xd4\ \xfe\x09\x28\x3c\x82\x8a\x24\x91\x60\x4f\x13\x2e\xa3\xe4\xf5\xae\ \x6d\x04\x3b\x9e\xa6\x9c\x7c\x2f\x63\xb8\xad\x53\x35\xda\x25\xa8\ \x7e\xd7\xaa\x30\x8b\x39\x2a\xa7\x46\x75\x77\x1f\xe1\x94\xd0\x22\ \x09\x49\x12\x7d\xb7\xca\x55\x4e\x6b\x31\x44\x12\x19\x98\xac\x83\ \x0d\x88\xe6\x91\x49\x15\x9a\x5f\xae\x7b\x08\x19\x0e\xa5\xe0\xd0\ \xd8\xb2\x6a\x21\x19\x94\xa5\x9b\xad\xa9\x48\x9b\x08\x6d\x51\xc5\ \xac\xc0\x6c\xb9\x29\x27\x68\xc1\x18\x38\x4a\xb6\x8d\xb4\x3d\x15\ \x81\x71\xf9\x6d\xa8\xa2\x8c\x9a\x15\xef\x14\x57\xd3\xcd\xdd\x60\ \xb7\xfc\x7b\x3f\xd1\x04\xb3\x9f\x1d\x44\x1e\xc2\x22\xb0\xf9\xe5\ \x28\x87\x38\x79\xc3\x19\x82\x97\x2d\xe3\xc9\x1a\xed\xcc\xae\xb9\ \x09\x27\x75\x50\x25\xcf\xbb\xe1\xdd\xcb\xb1\x4e\x48\xf3\x60\x0b\ \x96\x94\x30\x93\xba\x44\x16\x4c\xe8\x53\xac\x7e\x03\x8b\x51\xe5\ \x8e\xae\x8e\x8a\x31\x2f\x9f\xfc\xef\x88\x4c\x05\x6d\x00\x30\xd1\ \xce\xb9\x60\x21\xfb\xd6\x51\x0a\x19\x3d\xa1\x46\xe5\x1a\xd2\x7b\ \xc4\x77\x91\x6e\xb6\x74\x9b\x2b\x7b\x4a\xdf\x53\x3b\xf6\xe2\xd4\ \x32\x0c\x01\x83\x82\x59\xbb\xa8\x2d\x18\x85\x99\x8b\x74\x5d\xfe\ \x85\x8e\xd7\xea\x86\x70\xc2\x1b\x93\x74\x41\xe7\x95\x61\xa2\xca\ \xf7\xff\x77\x78\x00\x16\x1c\xc0\x02\x10\xc8\xa5\x0c\x82\x35\xd8\ \xee\x74\x4e\x83\x53\x7e\xaa\x45\x3e\xc2\x37\x14\xe8\xb0\x64\x64\ \xe1\xee\x2f\x29\x76\xe7\xb9\xce\xab\x82\x30\x4c\xba\x44\x2e\x76\ \x04\xaa\x53\xe0\x61\x01\x22\x4d\xe8\x16\x4f\x53\xe8\xcf\x10\xc4\ \x20\xcd\x9c\x40\x3a\xe0\xc8\x3a\x5a\x8d\x7a\x2e\xe0\xeb\xfe\xef\ \xff\x0a\xe1\x13\xb8\xa0\xd0\x5c\xca\x81\x2a\xc5\x0f\x38\x65\x21\ \xe2\xa5\xe7\x92\x06\x02\x3f\xe2\x5e\x46\x88\x08\x35\x25\x79\x3c\ \x2b\x3a\x58\x50\x3b\x88\x90\x81\x22\xcb\x09\x70\x04\x54\x9a\x67\ \xd5\xb6\x28\xe3\x92\x2a\xe4\x52\x50\xcd\x5c\x25\xcc\x96\x0e\xc5\ \xb8\x8e\x8f\x66\x30\x0c\x9d\xc4\x2a\x2c\x20\xd0\x5c\x02\xd8\x58\ \x03\xd9\xe0\xc9\x9d\x2e\x45\x80\xa0\x46\xed\x48\xa9\xd9\xb6\xed\ \x96\xa4\xa3\xd9\x36\xa8\xba\x04\xa6\xa7\x9a\xcd\xfb\x42\xa5\x0a\ \x29\xee\x77\x62\xe9\xca\xa6\x2a\xb2\x50\xd0\xdc\xca\x40\x3a\x80\ \x4f\xf8\xa4\xa2\x6e\xfa\x4f\x0c\x1d\x11\x90\xc4\xc3\x01\x64\xa2\ \x61\xb6\xa6\xaf\x10\xee\xd8\x3c\xe5\xf4\x48\xa4\x61\x86\xfe\xca\ \x09\x96\x61\x0f\xb9\x2d\x79\x50\xe5\x06\x90\x90\x9f\x88\xcf\xe2\ \xb6\x8d\xb3\xce\xac\x53\xa6\x4e\x46\xd2\xed\x83\xda\x46\xa1\xd0\ \x4c\x0c\x96\xae\x60\x7c\x87\xbc\x84\x8f\x7a\x5e\xed\x11\x79\xd1\ \x49\xf6\xe0\x05\x32\xc0\x6b\x44\x03\x36\x5e\xa3\xaf\xc4\x48\x6a\ \x4c\xa4\x9d\x4c\x4d\x84\x66\xa7\xd9\x86\xef\x06\x0c\x21\x14\x7a\ \xa7\x55\x90\x10\xe3\xb0\x0b\x62\x44\x0e\x47\x2a\x66\xf7\x70\x01\ \x97\xa2\xc3\xd4\x38\xcb\xd4\x52\xd0\xfe\xb6\x10\x1c\xb7\xce\x82\ \x62\xb0\x17\xd5\x71\xf9\xb8\xe0\x13\xe6\xe5\xa6\x5e\xa2\x18\x1f\ \x90\x23\x48\x2f\x6d\x22\x4d\x0b\x6e\x80\xc2\xe4\x50\xea\x54\x2c\ \x0d\x90\x82\x62\x32\xad\xa9\xda\xe6\xd4\x54\xec\x06\x46\xc1\x29\ \x7e\x29\x16\x89\x27\x10\x43\x4e\xc5\x50\x30\x05\x49\x0d\xbb\x96\ \xae\x79\x16\xcf\x09\xd8\x6b\x1d\x31\x12\x12\x0b\xe1\x19\xe0\xf1\ \x0d\x03\xee\x35\xb2\x8d\x46\x36\xa2\x1e\xc0\x91\xd9\x9a\x30\x2a\ \x70\x61\xe9\x1a\x06\x49\xd4\x26\xf0\x94\xce\x10\x08\x8f\xe9\x9a\ \x67\x2a\x62\x51\xea\xb6\x10\x1a\xcd\xed\x21\xc7\x51\xc5\x1c\xf2\ \xc3\xc6\x8c\xff\x32\x32\x28\xbf\x83\x0b\x5e\xc0\x1d\xfe\x62\xe7\ \x37\x1e\x85\xf6\x0c\x2a\x14\x8c\xa1\x06\x38\xcb\x5e\x2a\x6e\x20\ \x0f\xb1\x13\xb4\x03\x3b\x76\xe7\x29\x38\xed\xd4\x44\xe8\x02\xb6\ \x0d\x2a\x72\x69\xbc\xe2\x88\x81\xa6\x2e\x27\x4f\x8d\x32\x1e\x32\ \xcd\xd2\xcc\x97\x34\xe8\x1a\x64\x50\x28\x31\xb2\x08\x8a\x00\x08\ \x90\xf2\x51\x3a\xe2\x23\x4c\x2d\xfd\x36\x85\x08\xad\xc3\x18\xba\ \xb1\xd2\x8a\x44\xdb\x7a\x49\xe4\xb6\xcd\x1c\x81\x67\xbc\x20\x66\ \xdc\x64\x25\x25\x0b\x31\x27\xc7\x31\xcd\x78\xd2\x27\xa5\xa3\x08\ \xda\xd2\x2d\x31\x32\xb5\xea\x25\x21\x48\xa4\x44\x06\xcf\xfe\x5e\ \x43\xdb\xc8\x8b\xb3\x28\x68\x78\x90\x04\x2c\xb9\x50\x30\x45\xe8\ \x33\xbb\x51\x60\x64\x71\x19\xa7\x0a\x1a\x8f\x68\x31\xcd\xad\xb9\ \x70\xd2\x18\xe8\x30\x03\x1a\x91\x32\x71\x53\x99\xc4\xe3\x05\x34\ \xa2\x2e\x67\x84\x29\x5b\xef\xdb\x42\x0e\xd5\xcc\xa6\x82\x80\x87\ \xb9\x22\xf2\x2e\x0b\x52\x84\x54\xec\x10\xe9\xe6\xba\xa6\x6a\xaa\ \x74\xd2\x2c\xcd\x6d\xe9\xb0\x8b\x32\x48\x0d\x8f\x9e\x61\x32\x73\ \x93\x32\xb3\xe1\x05\xd4\x81\xf8\x42\x81\x2b\x19\x6e\x02\xef\xd2\ \x03\x94\x21\x1a\xff\xee\x8d\xb0\xab\x08\xeb\x6f\xfe\xe9\xc8\x8b\ \xaa\xfe\xae\xe3\xee\x08\x17\x0a\x51\xc5\xa8\x53\x15\x71\xf2\xdc\ \x18\x0f\xe5\xba\xf3\x3f\xc1\xa3\x06\x8b\xe0\x02\x24\xb0\x9e\xb8\ \xb2\x2c\x3d\xc0\x10\xca\x40\x09\xcb\xa8\x3d\x35\x65\x3f\x1d\x93\ \xb1\xa8\x23\x3b\x16\x0f\x25\xab\x33\xb2\xcc\x92\xb3\x0e\xb4\x10\ \x9b\xe7\x29\x90\x81\x3b\x01\x34\x37\xc5\x23\x05\x30\x4c\xef\x20\ \xc6\x18\x94\x41\x0c\x94\xa1\x0c\xd0\x46\x29\xa8\xe3\xfd\x7c\xd2\ \xf6\x32\x14\x62\x0e\x71\x6c\x76\x07\x84\xea\x26\xcc\xcc\x6d\x84\ \x9c\xc0\x2c\x8b\x50\x46\x53\x30\xd5\xd2\xc0\x18\x40\x34\x44\x45\ \x54\x3c\x32\xc0\xc9\xb8\x92\x81\x0c\x61\x0b\x0c\xc1\x1f\x73\x83\ \x61\x6e\x51\x84\x4c\x6c\x31\x0b\xb2\x02\x3f\x48\xd4\x16\x0f\x27\ \x43\x61\x48\xb3\xd0\xe2\xee\x73\xcd\x62\xac\x48\x8d\x14\x40\xaf\ \x21\x05\x80\x40\xa0\x0c\xc1\x03\x6a\x60\x01\x90\xe2\xb9\x6e\xf1\ \x29\x43\x50\x46\xab\x53\xc5\xba\xd1\x02\x9d\x07\x78\xee\xd2\xfe\ \xc4\xd1\xfe\x3a\xa5\x6d\xcc\x8d\x16\x17\x11\x17\xc8\xb4\x4c\x43\ \xb4\x10\x7a\xa0\x07\x50\xd0\x18\xcc\xc6\x02\xaf\x4c\xc5\x42\x21\ \x79\x86\x34\x27\x1b\xf2\xfe\xca\x08\xeb\x06\xfe\xc6\x3e\x55\xd0\ \x3e\x69\x71\x15\xf7\x93\x2f\x91\xe4\x43\x0d\x75\x54\x75\x45\x3c\ \xc6\x21\x19\x35\x2c\xb2\x6a\xf1\x83\xf6\xf4\x44\xd3\xac\x1b\x59\ \x70\x60\xf4\x74\x36\x53\xf2\xf1\xde\x66\xb3\xaa\x53\xbc\x2e\x81\ \x54\x79\xf5\x85\xc4\xa2\x26\xf4\xa9\xcb\xba\xb4\xcc\x54\x90\x10\ \x55\x70\xf8\xa4\x4e\xea\xc0\xd1\x31\xc9\x92\x60\x46\xd3\xea\xf8\ \x72\x17\x7b\x75\x5a\x73\xa5\x08\x52\x20\x1a\x14\xaa\x6a\x02\x33\ \x1c\xa1\xf5\x97\x9c\x87\x62\xb2\x92\x27\xcb\xf2\x55\x9d\x07\x43\ \x8f\x55\x54\xa9\x35\x5d\x43\xc6\x13\x7a\xa0\x4b\x4b\xd3\x97\x08\ \xf2\x47\xab\x90\x53\x0c\x93\x27\x73\xf2\x58\x51\xd2\x18\x52\x70\ \x84\x70\xa1\xf2\xd4\xf5\x5f\xdf\xcb\x2a\x2e\x20\x2d\x55\x55\xe4\ \x4c\x30\x3e\x95\x15\x17\x1d\x32\x05\xc7\x91\x47\x9f\x22\x27\xa1\ \x82\x50\x0b\x15\x60\x7b\x55\x64\x8c\x01\x19\x7c\x69\x84\xb0\xd1\ \xfe\xa4\x6e\x20\xb1\xd0\x2c\x53\x30\x3a\x15\xb3\x53\x51\x65\x62\ \x29\x36\x5d\x0b\x61\x1c\xc6\x61\x43\x1d\x13\x5f\x2c\x88\xbc\x46\ \xf6\x88\x68\x71\xdc\x8c\xd5\x60\x71\xc1\x13\x4c\xf6\x64\xd5\x15\ \x51\x2f\xa1\x58\xa1\x2d\xcc\x06\xd1\x35\x8f\x5f\xd3\x34\xf7\x13\ \x2a\xd2\x51\x67\x91\xb6\x54\xc5\xe3\x13\x8b\xb0\x3d\x55\x55\x66\ \xab\xf3\x04\x69\xb1\x79\x8e\x36\x69\xad\x16\x57\xc4\xc3\x13\x80\ \xe0\x40\x0b\x72\x61\x1b\xd3\x55\xa3\x16\x28\xaf\x76\x6c\x4b\x55\ \x65\xab\x53\x68\x1f\x12\x3e\xc7\xb5\x0b\x73\x96\x6c\x91\xb6\x10\ \x3c\x61\x1c\x3e\x36\x0b\xed\x35\x0b\x6f\xc0\x5f\xdd\x36\x6f\xb1\ \x56\x3c\xf4\x35\x3f\xcb\x72\x1c\x6f\x00\x67\xf5\x76\x70\x7d\xd5\ \x13\xe8\x76\x3a\xd3\xec\x36\x09\x77\x71\xf9\xa6\x07\x2e\x01\x6a\ \x0d\x81\xb4\x18\x77\x72\x5f\xe8\x12\x0a\xc1\x2c\x2d\x97\x72\x35\ \x77\x6f\x3d\xc1\x1a\xda\x36\x99\x02\x02\x00\x21\xf9\x04\x09\x00\ \x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\x04\x02\x13\ \xff\xff\xff\xff\xff\xff\x8c\x89\x44\xff\xff\xff\xff\xff\xff\xd3\ \x87\x8b\x94\x4a\x33\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xce\xc8\x9a\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x56\x88\x3e\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x52\x67\x1d\xff\xff\ \xff\xff\xff\xff\xcf\xc8\xe3\x50\xa8\xdf\x13\x28\xa8\xff\xff\xff\ \x0f\x27\x68\x94\x63\x3e\xff\xff\xff\x09\x68\x9c\xf3\x89\xb9\xff\ \xff\xff\xf6\xa7\xb7\xb0\xa8\xae\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb0\x88\xac\xf9\xc8\xe4\x13\x29\xe1\xff\xff\xff\ \x4d\x68\xf8\xff\xff\xff\xf8\xe7\xb7\xff\xff\xff\x93\xf2\xfc\x2e\ \x48\xeb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf1\x70\x45\xae\xa9\xef\xf0\xa8\xf1\xff\xff\xff\xff\xff\xff\ \xfb\x8e\x5e\xff\xff\xff\xf6\xe8\xf1\xff\xff\xff\x92\xc9\xfb\x36\ \xa2\xd6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x74\x89\x3a\xff\xff\xff\xff\xff\xff\x8f\x89\xf0\x6d\x69\xe6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xd3\x90\xf4\xff\xff\xff\xaf\ \xc8\xf5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xce\xd8\xf1\x38\x56\ \xf6\xff\xff\xff\xff\xff\xff\x11\x38\x67\xf9\xd8\xeb\x0a\x17\x18\ \x2d\x8d\xbc\xfa\xfd\xfa\xfa\xc9\xa1\xf1\x98\xb4\xff\xff\xff\xb4\ \x86\xf0\xff\xff\xff\xff\xff\xff\x3a\x64\xf3\x72\x68\x67\xff\xff\ \xff\xff\xff\xff\xd0\xaf\xf6\xff\xff\xff\x90\xa8\xf7\xff\xff\xff\ \xff\xff\xff\xae\xb9\xf2\xf0\x91\x90\xff\xff\xff\xfa\xb8\xbd\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xaf\xb7\x79\x70\x88\xf9\xb1\x70\ \xf2\xff\xff\xff\xff\xff\xff\xf7\xb9\xf2\x6f\x78\x29\xff\xff\xff\ \x77\xf3\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\xa6\x88\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x6e\x2b\x34\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x93\x57\xf4\xd0\xf5\xfb\xff\xff\xff\x93\x6e\xf8\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb4\x28\x84\x4e\x97\xe0\xb1\xf2\xfc\xff\xff\xff\xff\xff\xff\x6f\ \xb4\xf5\xff\xff\xff\xa7\x1d\x61\x53\x8f\x73\x75\xca\xf9\xff\xff\ \xff\xf4\x72\x70\xff\xff\xff\xff\xff\xff\x76\x9d\x6c\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\ \xd8\xfb\xff\xff\xff\x8c\x24\xc2\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x96\x55\x31\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x76\x25\ \x57\x79\x9f\x18\x36\xa4\xff\xff\xff\x12\x78\xa8\xff\xff\xff\xff\ \xff\xff\x19\x36\xe0\x59\x76\xfa\xff\xff\xff\x2d\x38\x66\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x47\x5a\xf6\x68\x7a\xf4\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x8f\x3b\x2b\xff\xff\xff\xf8\xd8\xa9\xff\ \xff\xff\x08\x19\xdd\xff\xff\xff\x33\x56\x65\xb5\x59\xb5\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xb8\x8b\x71\x5a\xef\x6f\ \x5a\x6c\xff\xff\xff\xff\xff\xff\xff\xff\xff\x39\xb2\xee\xff\xff\ \xff\x8e\x97\x4b\xd3\x97\x91\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xf7\xbe\xee\x79\xa8\x76\ \x95\xb3\x91\xd7\xfb\x91\x99\x6b\xff\xff\xff\x8a\x99\xf5\xb0\x99\ \xef\xb3\x58\x37\x8f\xb9\xfa\x78\x96\xf9\xff\x00\x00\x08\xfe\x00\ \xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\ \x87\x10\x23\x4a\x9c\x48\xb1\xa2\x45\x8a\xa1\x50\x69\xd4\x78\xb1\ \xa3\xc7\x8f\x20\x43\x8a\x1c\x59\x91\xc7\x18\x1e\x28\x51\xb2\xda\ \xc8\x91\xa4\xcb\x97\x30\x63\xca\xf4\x38\x47\x8c\x98\x21\x38\x71\ \x06\x61\xc5\x93\x27\xbf\x8c\xa8\x66\x0a\x1d\x4a\xb4\x28\x48\x32\ \x36\x93\x2a\x4d\x3a\xc4\x05\xb9\x47\x27\xe6\xf0\x00\x1a\xd4\xa8\ \xd5\xab\x58\x8b\xd6\x5c\xca\x75\x29\xce\x6a\xd5\xc8\xd5\x59\xc9\ \x32\xab\xd9\xb3\x68\x29\x3e\xea\xca\x96\xad\x96\x01\x00\xe2\x4e\ \x9a\xcb\x72\x63\xda\xbb\x78\xcd\xa2\x5a\xdb\xb6\xaf\x52\x14\xca\ \xe2\x0a\x16\x4c\xb7\xae\xdd\xbc\x88\x13\x8f\x64\xe5\xb7\xb1\x4d\ \x2d\xe6\xc0\x0c\x9e\x3c\xb8\xb0\xe1\xaa\x8a\x33\x6b\x76\xc8\xd8\ \xb1\xdf\x21\xf6\x42\x50\x1e\x3d\x79\xee\xa4\xcb\x98\x37\xab\x56\ \xdd\xd9\x73\x5f\x5b\x91\x47\x8b\x26\x4d\xd9\xb4\xe5\xc3\xab\x73\ \xdf\x6d\xed\x9a\x2d\x68\xc9\x71\x45\x87\x18\x3e\x9c\x34\x70\xd2\ \xb6\x2f\xeb\x5e\x6e\x95\x77\x6f\xae\x43\x50\x00\x07\x33\x1c\x8c\ \x97\xeb\xd9\x8e\x0b\x06\xa3\x2c\xbb\x76\x30\xda\x01\xfe\x80\x39\ \x20\xc2\x40\x90\x47\x3c\xea\x32\x5f\xff\x92\xc7\x90\xe7\x7d\xb5\ \xa8\x91\x6c\xfd\xba\x97\x6c\xd9\xbc\x84\x07\x83\x1f\xbf\xfe\xb8\ \xd6\xed\xa7\x41\x2a\xf8\xe4\xd1\x40\x03\x79\x18\x20\x82\x08\xbc\ \xa0\x96\x1a\x7b\x10\x42\xe4\x1e\x7c\x7d\x75\x10\x98\x78\xf6\x65\ \x43\x82\x77\x83\x59\xd7\xdf\x7f\xe0\x5d\xf7\x5d\x36\x1a\x44\x60\ \x20\x82\xec\x30\xa1\x81\x32\xa6\x0d\x60\x80\x83\x2d\x45\x28\xe3\ \x41\x3c\x50\x18\x5f\x36\x00\x66\xe8\xdf\x77\xd8\x81\x27\x5e\x88\ \x3e\x02\xc8\x9d\x32\x1a\xe0\xd3\x00\x26\xd5\xe4\xa1\xc1\x74\x1a\ \xb0\x93\x07\x3b\x03\x88\x10\x25\x4b\xa1\xa4\x57\xd6\x8c\x33\xb2\ \xf2\x9e\x8d\x6c\xe1\x13\x62\x7e\x1f\xfe\xb7\x5d\x7d\x41\x82\x17\ \xa4\x90\xe0\x69\xc0\x44\x03\x33\x34\xf0\x8a\x06\xdb\x15\x99\x87\ \x8a\x1a\x68\xf0\x0a\x3b\x7f\x64\xa3\x46\x03\x43\xb0\x92\x12\x2b\ \x54\xc5\x88\x65\x6e\x13\x72\xd9\x95\x1c\xca\xf0\xd7\x5f\x04\xfa\ \xed\x67\x5f\x78\x93\x81\xa7\x4c\xa2\x60\x18\xa9\xc5\x9c\x89\x02\ \xf8\x07\x9b\xaf\x00\x73\x5f\x04\xaf\x04\x73\x9f\x15\x4c\xdd\x44\ \x4e\x4f\x7e\x1a\x36\xa8\x66\x35\x1a\xda\xd5\x0c\xfe\xf3\xdd\x07\ \x4c\x30\xf9\x8d\x46\x26\xa4\x65\x76\x47\xe9\x9a\x98\x3c\x09\x4c\ \xa6\xca\xb0\x43\x0f\x3d\x98\xbc\x82\x1f\xa8\x9e\x06\x43\x6a\x5f\ \x5f\xcc\xf1\x88\xb3\xce\xb2\xc2\x0f\x6e\xab\x9e\x15\xca\x17\xae\ \xb2\x65\x4f\xa2\xca\x04\x93\x0a\x87\x1d\x3e\x8a\x6b\x90\x44\x2e\ \xa9\x0c\x13\x27\xbe\xf2\x87\x06\xd9\x28\x03\x4c\x03\xc3\xd2\x93\ \x07\x30\x25\xa6\x42\x4c\x36\xa9\x8c\x02\xdf\x10\x5f\x8c\x51\x87\ \x0b\x73\xfc\x44\x6d\xb5\x44\x15\x9a\xed\x52\x0d\xe0\xc8\x5f\x30\ \xca\x84\x70\x26\x86\x22\x8e\xcb\xa4\x39\x93\x02\x63\x60\x1e\x11\ \xd4\xa9\xc1\x1f\xec\xcc\x30\xec\x28\xaf\x44\x00\x4c\x04\xa9\x90\ \x6c\xca\x0c\xf0\x61\xe2\x15\x3d\x33\xcc\x50\x87\x01\x02\xab\x4a\ \xb0\x4b\xa1\xd0\x73\x30\x74\xaf\x28\x73\x9f\x77\x22\x0e\x16\x42\ \xc4\x94\x9d\xc9\xdd\x8a\xdc\xa1\x3b\x2f\x78\xd9\xa0\x4b\x2c\x82\ \x21\x93\xfc\x4a\x2a\xa9\xdc\xa3\xf2\xcd\x36\x6d\x29\x06\x3d\xe8\ \xfd\x34\xad\x7a\x33\x7b\x64\x30\xd5\x8f\xe1\x93\x9f\x99\x3f\x8b\ \x29\x9e\xc3\x0e\xd3\xf6\x23\x91\x92\xfe\x91\x47\x1e\xaf\x48\xea\ \xe4\x28\xf4\x20\x28\xb2\xd3\xaf\x78\xa0\x05\xfe\xd8\x6c\x4d\x3d\ \xc4\x18\x52\xf1\xc3\x8f\x95\x57\x76\x1d\x51\x28\x7c\x2b\x35\x44\ \x1e\x38\x6e\xe7\x45\xa6\x63\x4e\xf7\x70\x87\x93\x56\x7c\x71\x76\ \x76\xe6\x41\xcf\x28\x70\x47\x40\x22\xc9\xa9\xbc\xa2\x6f\xe2\x7d\ \x61\x62\x3a\x26\x5a\xcc\xb1\x93\x9f\x81\x3e\x68\xf8\x41\x7b\x91\ \x9e\x14\x60\x3e\x4f\x0a\x69\x87\x93\x0b\x46\x64\xb9\xaf\x1c\x98\ \x71\x93\x0d\x8c\xc2\xb9\xc8\xfd\x91\x40\x8c\xe8\xb2\x2b\x35\x75\ \x52\xa3\xd4\xb0\x7c\xd5\x4f\xcd\xa1\xfa\x1c\xad\xbf\x5e\x10\x2a\ \x36\x27\x2f\xdd\x98\x65\xdf\x1e\xa9\xad\xec\x92\xe8\xf6\xa5\xec\ \x00\xf3\x4a\x1e\xa3\xb8\x49\x7c\xa3\xd9\xbc\xf2\x7c\xf2\xcb\x63\ \x32\x4a\x20\xa3\x73\x65\xba\x4d\x63\x3c\xf5\x48\x3b\x5b\x0f\x5c\ \x2d\x2a\xc9\xbb\x09\x0a\x66\xe3\x33\x2f\x10\x50\x6d\x41\xd3\xd8\ \xa4\x80\x37\x83\x79\x99\xe8\x6d\x11\x88\xa0\x77\xac\x63\x8a\xf7\ \x91\xee\x7d\xcd\xab\x9f\xfd\x96\xd2\xbc\x7b\x68\x61\x0c\xfe\x9a\ \x83\xcc\xb0\x04\xc0\x00\xd2\x6e\x32\xd5\x41\xa1\xf7\x26\x43\xa4\ \x76\x81\xc7\x62\x6e\x62\x82\x89\x5e\xf1\x34\x1a\x02\x03\x38\xd9\ \xb8\x47\x00\x95\x97\x14\xf9\xd5\xa0\x7e\xfe\xc2\xd3\x20\x07\x03\ \xa1\x8a\x51\xc4\x4f\x0b\x98\xb0\x85\x2d\x50\x30\x0d\x07\x2d\x07\ \x7b\x01\xec\x40\x76\xc4\x13\x9c\xeb\x1c\x30\x04\xc2\xc8\x06\x01\ \x85\x16\xa2\xfb\x50\x8a\x3f\xe7\xa3\x21\x13\x9a\x76\x3e\x55\x30\ \x0a\x3c\xa9\xb0\xe0\x05\x95\x17\xc4\xa9\x65\x90\x2d\xcd\x0b\x04\ \xfd\xa6\xa6\x32\x1f\xca\xb1\x06\x35\x08\xc4\x0f\x43\xc1\x47\x3e\ \x8e\x30\x31\xad\x4a\x5e\x07\x18\xd6\x2e\xe2\x64\x43\x18\x06\x24\ \xce\x7d\xd2\xd0\xb0\xe1\x00\xad\x3e\x5e\x1c\x1b\x7f\xcc\x07\xb7\ \x90\xd1\x30\x0f\xaa\x78\x1a\x31\xbc\x40\x82\x0a\xee\xd0\x26\xf7\ \x03\xa5\xf0\x96\x17\x44\xfb\xf9\x10\x8f\x46\xa4\xa3\x1d\xe5\xc8\ \x4a\x3c\xde\x71\x14\x82\x13\x1c\x0f\xfa\xe7\xbf\xac\x7c\x52\x0e\ \x6a\xc8\x86\x39\x18\x36\xa9\x6c\xd0\xea\x90\xd8\xc1\x0f\x22\x83\ \x69\x1f\x1d\xe9\xa7\x51\x5e\x18\x10\x0d\x5f\x51\xa0\x7b\xc0\x0d\ \x6a\xf7\x4a\x85\x2a\x3e\x09\xca\xf8\x09\x4f\x29\x46\x84\xe3\x28\ \x4f\x97\x4d\x50\xe6\x31\x8f\xac\x8c\xe3\x1d\x51\x69\xba\x21\x18\ \x20\x25\x53\xe1\x1a\x56\x76\x08\x9a\x76\xe1\xa7\x91\xd9\x48\xc3\ \x2f\x11\x49\xcf\x9d\xe1\x67\x43\x1f\xfe\x7a\x67\x17\x8f\x09\xaa\ \x4b\xda\x42\x0b\xf7\x30\x56\x7e\x48\x90\x2f\x35\xae\x51\x94\x1a\ \x0c\xe5\x52\x4c\x97\x4a\x31\xf8\x30\x94\xcd\x03\x67\x2b\x25\x1a\ \xc7\x1f\x32\x14\x8f\x2a\x03\x9c\x01\x36\x4a\x38\x41\x09\xc5\x6a\ \x7c\xfb\x82\x16\xf0\x61\x0e\xe2\x88\x86\x3a\x3b\x43\x64\x71\x1c\ \x99\x45\x5f\xe6\xd3\xa5\x0e\xc3\x4e\x86\x22\x60\x8f\x4b\x36\x20\ \xa0\xa9\xf0\x82\x78\xc2\x60\xd0\xc4\x3d\x4f\x7e\x3f\x6d\x0b\x50\ \xbd\x79\x4d\x86\x46\xb4\x95\xac\xd4\x23\x1e\xc9\x69\x54\x7d\x19\ \xb5\x06\xb6\x78\x84\x54\xa1\xf2\x47\x97\xc8\x0e\x97\x5a\x0c\x8f\ \x49\x13\x09\x00\xe2\x64\xb1\x3b\xfd\xc9\x0f\x76\xbe\xe8\x21\xb1\ \x06\x53\x03\xc1\x38\x9f\x2d\x5e\xf1\x9f\x6c\x50\xb3\x2b\x43\xed\ \xa1\x50\x43\x29\xbf\x54\x3e\x75\xa9\x77\x4c\x6a\x44\x7f\xe8\x50\ \x86\x9e\xae\xa9\xa1\xfc\x1b\x82\xac\x60\x85\x22\xe0\xa3\x7f\x23\ \x81\x22\xd5\x86\xd0\x01\x14\xa8\x41\xa7\x94\x31\x29\x71\xba\x4a\ \x9c\x49\x09\xc3\xab\xf6\xf9\xd9\x71\xca\x8a\x1f\x33\x99\x29\x1b\ \xf6\xb0\x45\x11\x14\x16\x86\xb7\x72\x65\x94\x9e\x39\x1d\x42\xeb\ \x68\xc4\x0c\x7e\x33\xa9\x77\xac\xfe\x6b\x43\x8d\x0a\x58\xbb\x9e\ \x52\xa2\x3f\xbc\x47\x20\x4c\xe1\x3a\x8b\x54\x03\x6c\x6f\x01\xeb\ \xed\x42\xd0\xb0\xe0\x08\xa7\xb2\x2b\xed\xaa\xce\xd0\x16\x59\x9d\ \x99\xc9\x71\xde\x4a\x45\xa2\x42\x60\x0f\xd3\xb2\xb1\x9b\x8d\x51\ \x6d\x5d\xef\x77\x51\xe1\x2d\x15\xaf\x7a\x6c\xaa\x53\x57\xdb\xda\ \xd6\x72\x73\xaf\xb0\x0d\x04\x3e\x7a\x5b\x11\x6c\x65\xeb\x0b\x1d\ \xc0\x07\xc3\xc0\x93\xb6\xe6\x0a\x07\x00\x1f\x20\xe0\x01\x29\x7b\ \xd9\xae\x1a\x27\x68\x65\x6d\x98\x75\xfa\xd1\x53\xf8\x5d\xd3\x35\ \x75\xdc\x6e\x35\x23\xba\xd7\x20\xea\x31\x95\x11\x55\x68\x10\xcb\ \x3b\xdb\x20\x82\x37\xa9\x22\x60\x2f\x45\xdc\xcb\x25\xc6\xe6\xd2\ \x76\x0e\xf3\x1e\x75\x56\xba\x42\xfc\x4e\x16\x81\x1d\x0a\x41\x7e\ \x52\xd8\xd5\x60\x68\x01\xa4\x01\xe4\x2e\x6a\x5d\x43\x61\x20\x36\ \x18\x95\xde\xb5\xa8\xfc\xe8\x87\x5d\xd9\x96\x97\xbb\xb2\x75\xe5\ \x6b\x03\x71\x00\x0d\x4f\x84\xc3\x14\xea\x40\x0b\xd4\x10\x18\xee\ \x98\x94\x3a\x5a\x35\xa9\xda\x86\x93\x5f\x14\xa3\x50\xc5\xf8\xd9\ \xaf\x30\x82\xa1\x0f\x5b\x50\x93\x94\xd8\xcd\xee\x84\xbb\x69\xc7\ \x1f\x8e\xb9\x8d\xa6\x5b\x6a\xfe\x8f\xfd\x8a\x66\x9b\xe4\xf8\xa8\ \xae\x0c\xc4\xb4\x42\x82\xe4\xde\x44\x87\xc9\xe2\xa9\xdc\x88\x93\ \x7b\xe5\xfd\x8e\x26\xbf\x7e\xbe\xf2\x65\xb7\xaa\x52\xff\x1e\xd7\ \x0b\xc1\xf0\xb2\x69\xe3\xea\x18\x34\x63\x77\x7e\x3a\xce\xe0\x98\ \x2f\xaa\x63\xb9\x8a\x97\x79\xae\x55\x73\x44\x33\x12\x92\xdf\xee\ \x0b\x05\x93\x00\x0e\x8b\x04\x2c\x59\xd9\xd4\x97\x36\x27\x9e\xf2\ \x07\x94\x31\x68\xca\xee\xf9\x03\xc2\x88\x75\x7e\x3f\xe0\x05\x7b\ \xf4\xa3\x03\x2f\xfe\x24\x43\x53\xdb\xbc\x04\x2b\xe5\x9b\x10\x66\ \x2a\x50\xeb\x6a\x51\xb8\x2e\x95\x8e\x0c\xfe\x6e\x10\xef\x11\x8a\ \x90\xd4\x81\x42\x43\x68\xc1\x6c\x86\x54\x5c\xca\x06\xba\xab\x25\ \x16\xcc\x07\xaa\x1c\xd9\x10\x6c\x1b\x00\xd7\xb0\x76\x08\xae\xb1\ \x67\x6f\x2b\xc3\x19\xe6\xd8\x02\xab\x59\x7d\x9d\xee\xc4\xc0\x1e\ \x7b\x33\x70\x81\x95\x57\x6c\x87\xf6\x50\xd2\x62\xa8\xa8\x5d\x21\ \xfc\x60\x85\x32\x8f\x9c\xff\x7e\xb0\xa6\x47\x81\x02\x23\x4b\xe4\ \xd9\xcf\xd1\x42\x0b\x44\x3d\x09\xdb\x1d\xe7\xda\xc5\x41\xe0\xac\ \x03\x9d\xdf\xca\xed\x97\xdc\xdb\x06\xf4\x70\x2e\x2b\x0c\x65\x70\ \x5b\x30\x3f\xf3\x87\xa2\xfe\x2f\xe8\xef\xbe\xb4\x71\xa1\xa7\x4c\ \xe5\xb1\x89\x4d\xe9\x86\x72\x10\xe0\x36\x01\x27\x8e\x25\xfd\x22\ \x67\x3f\xa7\x03\x6a\x38\xe9\x70\x2c\xee\x33\xd9\x64\x5b\xb9\x93\ \xda\xaf\x57\x95\x61\x03\x65\x84\x7b\x32\xd7\x20\xce\xd1\xfd\xbb\ \x74\xe3\x4a\x86\xb8\xf6\x90\x83\x16\x90\x08\xe3\x6c\x95\x5c\xa8\ \x33\x06\x65\xbe\x71\xdc\xdd\x09\x5b\xd4\xbb\x61\xfe\x37\x6a\x55\ \x36\xbf\x71\xfe\x10\x95\x73\x06\x09\xc2\x3d\xd3\x81\x6d\x51\x36\ \xe8\x95\x43\xf1\xb5\x27\xb3\x6a\x8f\x47\x56\xe3\xd7\x0e\xf7\xd1\ \x9b\x0e\x6e\xe3\x76\xa7\xbf\xc3\xf1\x65\x30\x82\x61\x8f\x0e\x54\ \xfd\xad\x59\xef\x2b\x26\xbe\x79\xde\x0c\x0e\xdb\xa1\x8e\xef\x8a\ \xa4\x13\x5c\x76\xb3\x3f\x38\x3d\x36\xf7\x8c\x16\xdc\x2e\x9c\x46\ \xf2\x7c\xee\x56\x06\xc0\xa4\x3e\x1e\x97\xa4\x83\xbe\xab\x7c\xef\ \x33\x71\x9d\x51\xc8\x88\xbf\x5d\x0d\x72\xe8\xca\xe1\xf9\xc6\xe8\ \x6a\x32\xfe\xae\x2e\xef\x6b\xe2\x45\x19\x5e\xd6\x4a\x54\x8f\x4a\ \xad\x41\x03\x9a\x0d\x12\x2d\xb9\x46\x8a\x20\x07\x3a\xcf\xd5\xf6\ \x73\xfc\xda\x1d\xe4\x49\x27\x3d\x0a\xc3\x3d\x77\x6f\x67\xb1\x1c\ \xed\x6a\xa4\x71\x94\xfe\xd1\x82\x2d\x7d\xa1\x0e\x3e\xa8\xc3\x17\ \x66\x4f\xb5\x35\x43\xbe\xd8\xc4\xce\xbd\x28\xaf\xbe\xf8\xf0\xea\ \x5e\x8e\xaa\x50\x45\x20\xee\x51\x03\xfa\xd7\xa0\xe6\x20\xd9\x8a\ \x63\x36\x7f\x45\xe2\x2e\x3f\xf4\xa8\x16\x74\x83\x91\x74\xa3\x47\ \x1a\xd4\x97\x7a\xda\x26\x0c\xe6\x10\x03\xc1\x60\x0e\x97\xf5\x73\ \x93\xd0\x06\x36\xe1\x02\x30\xa3\x0d\x06\x50\x07\xe4\x77\x30\xaa\ \x65\x6f\x08\xb5\x6f\x3a\xe6\x6f\x7e\xf5\x72\xfd\x96\x6f\xa3\xa0\ \x0a\x46\x10\x06\xea\xa0\x0a\xf7\x30\x0a\xb6\x50\x7f\x2b\x11\x12\ \xfa\xe7\x17\x5a\x10\x0c\xf5\x35\x6e\xfe\x37\x7a\xcd\x87\x40\x37\ \xe8\x33\x75\xf7\x01\x6a\x83\x80\x20\xf7\x01\xd9\x00\x05\xfa\x14\ \x7a\xca\x80\x02\x37\x51\x07\xda\x60\x1a\x07\x30\x07\x2e\x90\x81\ \x56\xa7\x78\xab\xd5\x78\x7f\x85\x72\x18\xf4\x4a\xdc\x14\x08\xc4\ \xb0\x85\x2a\x68\x0b\xc2\x73\x0f\x2d\x60\x70\x11\x11\x83\xbe\x61\ \x05\x34\x38\x18\xb4\x96\x0d\xac\xd7\x71\x7c\x06\x80\x74\xa7\x0c\ \xe5\x40\x7a\x1f\x50\x74\xa8\x06\x84\x20\x57\x39\xd5\x16\x7a\x93\ \x80\x84\x43\x70\x02\x07\x30\x17\x00\x70\x1a\xfc\x80\x81\x3b\x14\ \x54\xe6\x75\x88\xfe\x76\xd5\x43\xb5\x67\x47\x64\x86\x09\x81\xa0\ \x0e\x90\xa8\x82\xf5\xb7\x82\x69\xf7\x11\x48\xd1\x17\x43\xd0\x03\ \xa2\xe2\x23\x1b\xc7\x80\xc2\x94\x48\xa7\xa7\x83\xff\x87\x5f\xab\ \x36\x77\x40\x48\x65\xc7\x15\x8a\x41\x53\x02\x37\xe1\x03\x5b\x63\ \x1a\xa8\xc0\x0f\x06\xf0\x84\x31\x46\x57\xb2\x05\x58\xf1\xd3\x54\ \x2f\xe7\x3c\xc8\x26\x3c\x77\x74\x0f\xf4\x77\x0f\x56\x50\x89\x1d\ \xc1\x03\x6b\x27\x7b\x6f\xa0\x45\x11\x17\x78\xc1\x00\x05\xbc\xd4\ \x48\xaa\x18\x80\xcf\x17\x84\xd1\x08\x72\xa8\x58\x8d\xa4\x51\x0f\ \x38\x71\x02\x80\xb2\x11\xb0\xc8\x0f\x2e\x50\x8b\xd6\xe4\x68\x89\ \xc7\x60\x3f\x95\x75\x69\xa6\x72\xc1\x17\x08\x05\x17\x12\xce\xc1\ \x15\x66\x78\x5f\xa2\x21\x84\x31\xb0\x4b\xed\xc2\x86\xd8\xf8\x67\ \x02\x38\x80\xe3\x46\x1b\x08\x78\x5c\x79\xe8\x86\x83\x71\x00\x4f\ \xe8\x07\x3d\x61\x25\xb6\xa1\x0d\x84\x48\x7b\x55\x88\x69\x88\x78\ \x8e\x30\x57\x4d\x10\x19\x6c\x79\xd5\x8e\xc5\x17\x1f\xf6\x90\x55\ \xb3\xa1\x62\xce\x98\x0d\x36\x90\x7d\xa7\x26\x90\x77\x48\x87\x48\ \xf7\x83\xf8\xe5\x33\x93\xe5\x7a\x22\x29\x18\xa8\xe0\x02\x5f\x00\ \x30\xac\x30\xfe\x07\xa9\x82\x0a\x85\xe1\x84\x50\xf8\x1c\xdc\xa4\ \x50\x7f\xf5\x57\xb9\xd7\x7e\x07\x26\x57\x0b\x35\x63\x17\x66\x91\ \x1f\xf1\x8e\x4c\x91\x8c\xdd\x01\x68\xf8\x25\x78\xef\xd4\x6a\x2b\ \x59\x3b\x01\xd9\x77\x76\x18\x7d\x47\xc7\x52\x2a\xf9\x94\x71\x31\ \x0d\x64\xf0\x05\x5f\x40\x06\xf5\x20\x3d\x7e\xd2\x51\xfc\x50\x0f\ \xe1\x48\x35\x3b\xa9\x3c\xaa\xa4\x60\xf7\xf6\x81\x73\x75\x60\xb7\ \xa5\x47\x44\xe9\x11\x46\xf9\x18\x0c\xf3\x55\x26\xa5\x86\x1e\x39\ \x29\x06\x84\x95\x68\x58\x74\x57\xe4\x5f\xfe\xe8\x7a\x8e\xb4\x97\ \x7c\x59\x19\x25\xe0\x02\x2e\x10\x15\xd2\xf3\x08\x64\x20\x93\xb3\ \x14\x0a\xfc\xc0\x0a\x27\x80\x13\x1a\xd8\x90\x5a\x07\x64\x8f\x77\ \x6f\xdb\x54\x60\x71\xb5\x78\xf6\x87\x47\x06\x20\x12\x46\x39\x04\ \x56\x90\x91\x1d\x87\x8f\xe6\xd6\x1f\x7e\x59\x98\x23\x79\x45\xdf\ \x46\x1a\x4a\x87\x92\xf9\x88\x40\x93\xa0\x90\x75\xe0\x95\x73\x40\ \x06\x27\x70\x02\x75\x70\x02\x5e\xc9\x13\x06\x70\x02\x2e\x79\x93\ \x8e\xb1\x81\x40\xa9\x78\x27\xd7\x43\x66\x66\x41\xc6\xa9\x93\x2b\ \x18\x51\x56\x20\x86\x10\x11\x0a\x7c\xb1\x14\x9b\x47\x74\xe6\x70\ \x48\xad\xfe\x86\x45\x1d\x07\x92\xac\x29\x1c\x1d\xe7\x83\xda\x36\ \x8d\xdd\xc6\x9a\xa1\x37\x96\x64\xd0\x98\x50\xc1\x98\xbc\xf9\x92\ \xbb\xc9\x9b\xe2\x57\x67\xc5\xa9\x93\x74\xd5\x57\x41\xd9\x6b\xcf\ \x13\x61\x16\xb4\x7b\x68\x19\x44\x0d\x20\x9d\x0f\xf1\x35\x37\x51\ \x9a\xeb\x26\x0c\x36\x70\x62\xe6\xe6\x97\xb3\x29\x1b\xa6\x17\x90\ \x59\x24\x0c\xb0\x69\x87\xe6\x39\x19\xa8\xa0\x0d\x8d\xd9\x98\x27\ \xf0\x2c\xc2\x89\x13\x5c\xe9\x92\x2e\x29\x9f\x8d\xd1\x93\xef\x53\ \x47\xd7\xa5\x7e\x8b\xc7\x9f\xc6\x09\x57\x90\xf7\x9f\x21\xf1\x35\ \xa4\x29\x2a\x89\xb4\x5c\xc3\x11\x6e\xab\x76\xa0\x39\x28\x77\xc4\ \x21\x7d\xdb\x16\x68\x57\x39\xa1\xc8\x31\x0d\x2d\x50\x02\x73\x20\ \xa4\xef\x79\x02\x63\x30\x7e\x5c\x99\xa4\x1f\x4a\x9c\xf7\x86\x96\ \x28\x67\x3f\x89\xe8\x90\x57\xd7\x1b\x98\x50\x07\x00\xea\x10\x5f\ \x63\x86\xd7\x31\x68\x4a\x39\x8f\x2a\xd6\x5f\xe6\x79\x8d\xb2\x11\ \xa1\x3e\x8a\x62\x73\xa1\x0d\xe5\x41\x06\xed\xa0\x9b\x75\xd0\xa6\ \xbd\xe9\x9b\xba\xe9\x07\xe0\xb7\x9b\x2e\x99\x5a\xcd\x39\xa2\x20\ \xb8\x5d\xb6\x98\xa2\x36\x32\x06\x57\xda\x10\x06\x63\x86\x2b\xc6\ \x6a\xfe\xa8\x48\xa3\xdc\xb9\xa0\x06\x08\x06\x4a\x99\x7c\x53\xa6\ \x8a\xd4\xc1\x9a\x93\x60\x0e\x2d\xd0\x02\xed\xd0\x0e\x25\x60\x00\ \x64\x50\x07\x72\x5a\x02\x5a\xc3\x0a\x5f\xf9\x9b\xf5\x70\x98\x20\ \x45\x7e\x20\x08\xa5\x3f\x25\x5b\x5a\x97\xaa\xae\x32\x04\x1e\x65\ \x11\xa8\x10\x48\x66\x48\x2b\x89\x74\x9a\xb3\x61\xa8\x33\x5a\x98\ \x26\xb5\x6a\xe2\x29\x18\x12\xda\xa3\xb6\xa2\x4b\xb3\x39\x09\x1d\ \x02\xa4\x54\xd0\x0e\x2d\xa0\x0d\x2d\x10\x9c\xbb\x59\x0f\x54\xd2\ \x13\x91\xc9\x0a\x3e\x60\x35\x2e\xd0\x06\x28\x20\x52\x30\x36\x6f\ \xb5\x77\x7e\x7c\x45\x3a\x33\xf0\xa7\x0c\x11\x0a\xef\x31\x04\xb6\ \x90\x91\x9c\xf4\x1f\xb4\x6a\x5c\xfd\xf8\x9d\xba\x8a\x8a\x3e\x23\ \xa1\x00\x08\x06\xe5\x50\x52\x02\x09\x06\xe6\x50\x1a\x92\xda\x02\ \x22\x60\x81\xca\x7a\x02\xf5\x30\x2d\xa7\x81\x0a\x55\xd2\x13\xf5\ \xe0\x07\x56\xe3\x87\x0d\x67\x0e\x6a\xd0\x02\x86\x67\x9f\x58\x97\ \x50\x4f\x35\x6f\x5c\xf2\x05\xde\xba\x10\x13\x32\xae\x3a\x63\x45\ \x5d\xb5\xae\x4c\x37\xa1\x3b\x57\x0e\x05\x88\x92\x13\xca\x1d\xf2\ \xea\x86\xdc\x11\x29\xa6\xc1\x0b\x93\x9a\xa9\x3e\x90\x9e\xfd\xba\ \xfe\x11\x2a\xc1\x0a\x25\x40\x06\xb4\x68\x13\x3e\xa0\x0d\xd3\xa1\ \x0c\x6a\x80\x02\x4a\x34\xa5\x90\xf7\x93\xb8\xd8\x53\x38\xd1\x58\ \x28\x80\x6b\x4c\x2a\x06\x12\x1b\x12\x35\xd3\x4e\x56\xb4\x52\x29\ \xe9\xae\x02\xb9\x6a\xd8\xb7\x8f\xa5\x67\x83\x1c\xeb\x7f\x21\x5b\ \x9b\xed\xd0\x9b\xed\x90\x9b\xbb\x19\x96\x3d\x51\x02\xc2\x39\xb3\ \x62\x40\x81\xd3\xb0\x59\x15\x63\x0f\x3d\x85\x8e\x4c\xd5\x16\x8c\ \x85\x0f\x4c\x26\x29\x1a\x80\xb0\x48\xd8\x18\xdd\x8a\xb4\x62\xb0\ \x79\x99\x25\x6e\xf7\xd5\x77\x61\xba\x6a\x50\xe0\x80\xbb\x9a\x7c\ \x4e\xab\x83\xd3\x86\x0b\x14\x73\x40\x60\x20\xac\x37\x2a\x17\x07\ \x40\xa9\xc6\x8a\xa9\x9a\x7a\x9b\x64\x50\x02\xf5\x50\x0f\x99\x8a\ \x98\x56\xc3\x2f\x3e\x60\x00\xa1\xd6\x21\xc1\x30\xb7\x70\x25\x61\ \xf5\x17\x76\x4c\x81\x73\x53\x34\x1a\x47\xd8\x18\x47\x0b\x12\x3c\ \xf0\x05\xc9\x88\xb1\xc6\x15\x1c\x80\xd9\xb7\x93\xf2\x91\x1e\x87\ \xa8\x00\x18\x02\xe6\xa0\x09\xe6\x30\x09\x21\x40\x17\x73\x81\x0b\ \x0d\x27\x90\x93\x20\x02\xc9\x6a\x81\x61\xfb\xa1\xdf\xd7\xa6\x7e\ \x90\xa4\xa3\xca\x58\x22\x20\xac\xdb\x11\x0c\x1d\xe0\x19\xa3\xfe\ \x00\x8c\x6a\xc4\x58\x91\x91\x6d\xe6\x10\x6f\x6d\xc1\x0f\x21\x81\ \x0a\x5f\x20\xa8\x82\x29\x98\x3e\x6a\x7d\x1d\xc7\x6a\x3e\xb8\x77\ \x1c\xdb\x74\x21\x50\x0e\x2d\x50\x0e\xc1\x5b\x9b\xe6\x60\xb8\xc2\ \xfb\x1d\x25\x96\xb8\xda\x20\x38\x17\x38\x9c\x55\x63\xb4\x5c\xc9\ \x2f\xe3\xd7\x15\x5f\xb0\x70\x1d\xa2\x06\x45\xe0\xbd\x7d\x73\xbd\ \x42\xf4\x18\x03\x80\xb8\x92\x31\x0d\xfc\xd0\x02\xfc\x20\x02\x7f\ \x28\x02\x6d\x90\x81\x13\xab\x10\xe2\x4b\xae\x52\x86\xa0\x65\xba\ \x6a\x79\x09\x68\x7a\x57\x7a\xe6\x19\xb8\xbf\x0b\xbf\xbc\x5b\x0e\ \xc8\xba\x07\x7b\xa0\x0d\xe6\x60\x0e\x97\x20\xbd\xc1\xa1\xb8\x0d\ \x67\x1b\x84\x31\x09\x07\x70\x00\xda\x90\xb5\x0b\xe9\x15\x49\xca\ \x16\x5f\xc0\xb9\xdb\x81\xb3\x28\x90\x6b\x6d\x41\xba\x46\x3b\x1f\ \x00\x32\x0d\x22\xc0\x03\xf5\xf0\x08\xe3\xb7\x25\x7f\x53\xa9\x7c\ \xd2\x16\x1b\x9c\x10\xa8\xd0\x01\xc4\x20\x59\xa5\x56\xa6\xf8\x25\ \x0c\xce\x30\x7a\xa2\x51\xc2\x83\x6b\x65\xde\xb6\xa3\x19\x7b\x09\ \x2d\xf0\xb7\xc8\x4a\x05\x64\x40\x05\x2d\xb0\x07\xc7\x1a\x1b\x72\ \x61\xb8\x31\x7c\x09\x31\x6c\x0e\xa1\x30\x0d\x85\x31\x0d\xfe\xd3\ \xc0\xc3\xb9\x89\x81\x30\x26\xc0\x85\xcc\x14\x0d\x10\xbd\x73\x81\ \xb0\x6a\x60\x0f\x47\xfc\x1e\x23\xca\x81\x49\x01\x5f\xf8\x90\x28\ \x93\x30\x0d\xed\x30\x03\x03\xec\x1b\x63\x50\xa7\x6c\x91\xc5\x08\ \x81\x0a\x28\x00\x78\x5e\xec\xab\x58\xb9\x73\x79\x39\x80\x60\x1c\ \x17\xb3\xe6\x5f\xb8\xa0\x09\x9a\xa0\x06\x6c\x4c\x05\x3e\xe0\x03\ \x54\x40\x05\x6d\xc0\xbb\x04\xa4\x0c\x50\xa0\x0d\x9a\x30\xa9\x2e\ \x6c\x00\x2d\x50\x0f\xfb\xcb\xc3\xfc\xa0\x0d\x90\x39\x96\x27\xd0\ \xbc\x94\xc9\x14\x85\xdc\xcc\x36\xf1\x05\x28\x60\xac\xc9\x2a\x02\ \x6a\x90\xb3\x43\xab\xc0\x42\x4c\x52\x4e\x3c\xa9\x9e\xd6\x18\x39\ \x81\xc5\xe1\x1b\x1a\xe8\xfa\xc5\x3e\x9a\x74\x06\xea\x6d\x25\x09\ \xc6\x7a\x57\x59\xe5\xf0\xcb\xbf\x8c\xcb\x1d\xe0\x03\x6d\xd0\x06\ \x2d\x80\x0b\x85\x3b\xa9\x66\xd0\x02\xc5\x7a\xcb\x7e\xf0\xcf\x2b\ \x5b\x02\x94\x6b\x00\x9e\x1a\x93\xbc\x39\x9c\xe1\x1c\xae\x8a\xe3\ \x15\xfc\x52\x0d\x75\xd0\x01\xd4\x9c\xb0\xd9\x5c\x75\x8c\xd5\x01\ \x5f\xd0\x00\x2d\xd0\xb8\x6d\x80\x32\x37\x23\x42\xe1\x9b\x73\xa5\ \x57\x6e\xa9\xc6\x9a\x34\xaa\x7d\xab\x1c\x59\xd1\x17\xfe\x17\x86\ \x6b\x06\xfb\x30\xa9\x2d\x50\xcf\x1d\xd0\x06\xfb\xf0\xb7\x20\x67\ \x0e\xe5\x40\xc7\x7b\x70\xcb\xb5\xac\xbc\x2f\xe9\x02\xbd\x99\x9e\ \xe9\xb9\x9b\x6d\xda\xc9\x53\x7c\x13\xd0\xdc\x16\x1d\x9a\x98\xed\ \x30\xcd\x4c\xbd\xb0\x4c\xe1\x58\x22\x80\x02\x75\xd0\x00\x6d\x30\ \x06\xd9\x73\x35\x58\x7d\xd5\xcf\xc1\x69\x20\x71\x02\x69\x80\xae\ \xc9\x87\xbb\xb0\x59\xc6\x27\xcd\xb7\xbc\x9a\xc6\x34\x7a\x09\xfb\ \x20\xd3\xbf\xbc\xd6\x32\xdd\x02\x23\xdb\x55\x32\xac\x06\x74\x8c\ \xcb\x6d\xe0\x07\x3c\x9d\xa4\x1d\x2a\xa7\x6e\x3a\xd4\x88\x19\xc0\ \x45\x8d\x89\x5f\x30\x03\x38\x31\x03\x3e\x7d\x02\x28\x40\xa9\x7c\ \x12\xb4\xed\xd0\xbb\x40\x4a\x0e\x5d\x11\x2f\x86\xc2\xd5\x1f\xd1\ \x0f\x89\x94\x74\x65\xcd\xa8\x99\x0d\x6e\xd7\xd0\xd9\x7d\xf7\x01\ \xb8\xb0\xbe\x70\xd8\x03\x6d\xf0\xb7\x9a\xe0\xd6\x3d\xf0\x04\x17\ \xd2\x55\x93\x10\xaf\x39\xdd\x06\xb4\x4c\x06\xcd\x8b\xa4\x39\x11\ \xae\x1c\xea\xd3\x6d\xea\xd3\x9d\xfc\xd7\x53\x4c\x7e\xfc\x42\xd8\ \x4c\xd1\x2f\x95\x8a\x0f\xed\xd0\x01\x27\x80\x0f\x0c\xc2\x0b\xe5\ \xd1\x0e\x63\x90\x14\x36\x13\x2f\x1e\x13\x2f\xcf\xfe\xdd\x1b\xc4\ \x07\x12\xc1\x40\xca\x9b\x9d\xdd\x52\x59\x1c\x34\x7a\x0c\x36\x60\ \x03\xdb\x86\x0b\x50\xb0\x0f\x66\x60\xd3\x2d\xc0\xd2\xfb\x10\xd3\ \xe5\xf0\x74\x70\x28\xc3\x2f\x5d\xcf\xb8\xcc\xcc\xbe\xdd\xa1\x7d\ \x9d\xdb\xce\x7b\x78\xfc\xf2\x2f\xfe\x5b\x35\xd5\x00\x42\x53\x6d\ \xac\x7f\xc8\x0b\x17\x58\x0d\x2e\x30\x06\xd5\xf0\x1e\xd2\x2d\xdd\ \x59\xad\xd5\x8d\x51\xdd\x1f\xa1\x45\x94\x75\xc6\xda\xbd\x92\xed\ \x9c\x71\x9d\x3d\x87\xe5\x60\x03\xb8\x20\xc6\xe3\xad\x07\x36\x0d\ \x05\x4f\xf0\x04\x3d\x20\x52\x9a\x20\x19\xca\x60\x0e\x36\x60\x0e\ \xaf\x5d\xcb\x3b\x5d\xd4\xb3\x77\xdb\x3e\x2d\xa7\x3c\x7d\xd4\x93\ \xfc\x08\xf5\x10\x04\x27\x40\x0e\x2e\x00\xdc\x84\x3d\x04\x2c\x93\ \x3f\xed\xb0\x20\x06\xd0\x0e\x5f\x00\x16\x9d\x7c\xe0\x5b\x32\x2c\ \x2d\xa3\xe0\xc3\xe2\x19\x63\xe0\xe0\x1e\x21\x1c\xd4\x37\xe1\xeb\ \x4c\xd2\x9f\xbd\xa3\xdb\x66\x03\x19\xae\xe5\xe5\xf0\x0c\xfa\xa0\ \x09\xe8\x06\x05\x20\x3e\xe2\x5a\xa0\xda\x70\xf8\xb7\x2c\xbc\x0f\ \x54\xb0\x0f\x3e\xf0\xcf\x01\xac\xd0\x14\xcd\x2f\x88\xe9\xd3\x73\ \x8e\xd0\x14\x3d\x16\x2f\xfb\x08\x3b\x7e\x13\xfe\xd9\xf3\xe3\x0d\ \x50\xa9\xed\x20\x16\x75\x00\x42\xd5\xf0\x05\xcf\xcd\x32\x2c\x53\ \x0d\xd1\x7d\x35\x4d\xee\x18\x98\x07\x12\xa8\x60\x68\x66\x4d\xe5\ \x26\x5c\x98\x49\xd7\xce\x9d\x3d\x6e\x44\x57\x0e\x06\x6a\x03\x62\ \xae\x07\x4f\x00\x05\xf1\x3a\xe6\x5a\xd0\x01\x9a\xc0\xcb\x4f\xf0\ \x0c\x2c\x02\x05\xfc\xdc\x0e\x54\xf0\xcf\x4b\x1a\xce\x37\x61\xd4\ \x1c\x9a\xd4\x73\xee\xbc\xb2\xf7\x05\xa7\x32\x15\x2a\x21\xc5\x36\ \x33\x04\xc0\x0d\xec\x4e\x51\x07\x62\x41\x0e\xc6\xde\xc9\x84\x9d\ \xec\x2d\x33\x03\x8a\x9e\xe0\x58\xdd\x18\xc4\xd8\x11\xac\x6c\xca\ \x94\x6e\xe9\x9c\x2d\x95\x59\xbe\xe5\x06\xea\x0c\xce\xf0\x0c\x7a\ \xf0\x0c\xce\x50\x0e\x50\xa0\x0f\x1d\xd0\x01\x3d\xf0\xb7\xcf\x30\ \xd3\x2c\x02\xbf\xfc\xcc\xe6\xb0\x8e\xd0\x5e\x71\x13\xb6\xae\xd7\ \x81\x3d\xaa\x46\x3b\x06\x27\x10\x04\xe8\xc4\x0a\xe4\x00\xec\xfe\ \x9e\xec\x83\xdd\xdf\xfe\xf2\x08\xc7\x3e\xd8\xc0\xae\xe8\x2d\x83\ \xf0\x4d\xde\xe8\x8d\xf1\xe8\x1f\xe1\xa5\x12\x5e\xed\x00\x78\xe9\ \x52\x79\x0d\x1f\x70\x0c\xe1\xce\xed\xdf\x3d\x87\x5e\xae\x0f\xce\ \xf8\x04\x56\xd0\x01\x72\xa0\xda\x29\xfe\xfe\x0c\xe6\xb0\x6a\xda\ \x40\xc7\x66\x50\xac\x6d\x8e\xd7\x81\xed\xcc\xb6\xce\xdb\x2f\x3f\ \xeb\xc1\xbd\xbc\x51\xe1\x27\x31\xa9\xe7\x3d\x4e\xe0\x63\xe0\xe3\ \xc0\x9e\x3f\x04\x0f\x42\xca\xbe\xec\x1e\x13\xdd\x0b\xef\x19\x0e\ \xef\x11\x19\xbb\xb7\x12\x6f\xe5\x52\xc9\xd9\x17\xaf\xe5\x31\x10\ \x03\xce\xf0\xdd\x06\xfa\x0c\x72\xd0\x03\x31\x00\x05\x72\x80\x13\ \x72\x00\x05\x54\x56\x39\xb8\xf0\x04\xe7\xcd\xcf\xb4\xdc\xe6\x01\ \x4c\xf3\x55\x73\xdb\x78\x8d\xd7\xf0\xbe\xf6\xb2\x2e\xef\xb5\x5d\ \x07\x8e\x19\x93\x3d\xdf\x2f\xff\x12\xec\x2e\xf3\x14\x42\x4f\xf4\ \x4b\x9e\xe0\xd3\xed\x18\x94\xad\xf4\x26\xd6\xf4\xb8\x6a\xc6\xe0\ \xf6\x01\x99\x6e\xf1\x52\xff\x0c\x50\x10\x03\xe5\x50\xf5\x5b\xa0\ \x07\x6f\xe0\x0f\x62\x1c\x7b\x62\x60\x05\xce\x10\x84\x27\xae\x09\ \x4f\xf0\xcb\x66\xd0\x06\x6d\x1e\xeb\x8a\x53\xeb\x75\xfe\xe6\x6a\ \x6f\xc8\xb3\x1e\xf7\xba\x5e\xf7\x73\x80\xe4\x9a\xac\xc9\xc3\x32\ \x04\xfd\x5d\xf0\x08\xff\xf7\xce\xce\xe0\x48\xcd\x03\xe1\xcb\xca\ \x86\xcf\x97\x14\xbf\x77\x36\x68\xf1\x51\xef\x0c\x50\x80\x0c\xc8\ \x10\x03\x69\x50\xf5\xce\xa0\x07\xfe\xfe\x10\x03\xdb\xa6\x0f\x36\ \xd1\x03\x36\xf0\x86\xe2\xae\x06\xbf\x5c\xcb\x6e\xbe\xc9\xff\x2b\ \xe7\x32\x4f\xe3\x70\xbf\xc9\x85\x4d\xc5\xf8\xae\x3a\x06\x4d\x8b\ \x0d\x3d\xd8\x01\x0f\x42\x06\x0e\x16\xb8\xcf\xe4\xae\xf1\x82\x20\ \x41\xc3\xbf\x8f\x95\x16\x8f\xf8\x9d\x7d\xe9\xb1\xc6\xed\xc8\x9f\ \xfc\x54\xbf\x05\x00\x91\xe6\xd9\x33\x1b\x00\x3e\xe8\x1b\x82\xa9\ \x47\x41\x00\x0d\x1b\x7e\x50\x66\xae\x9c\x36\x33\xfb\x7c\xf8\xf0\ \xe3\xe2\x8b\x98\x21\x43\x38\x0e\xf9\x12\x52\x63\xc8\x8e\x62\x4c\ \x9e\x44\x59\x52\x65\x47\x96\x21\xc7\xb8\x38\x31\x87\x55\x90\x13\ \x2e\x3c\xce\xf8\x32\x66\x4c\xb5\x21\xf4\x86\x54\xd3\x09\xf4\xcb\ \x0c\x31\xf4\x8a\x9a\x34\x8a\x52\xe9\x52\x31\xac\x50\xfd\x83\x1a\ \x55\xea\x54\xaa\x55\x27\x39\xc4\x9a\x55\xeb\x56\xae\x5d\xbd\x7e\ \xc5\x7a\x2d\xc4\x87\x0f\xd7\x00\x98\xbd\x26\xf6\xda\x07\x61\xc7\ \x6c\xd8\x48\x13\x03\xd9\xdc\x34\x69\xb6\xc8\x45\x66\xe3\x9a\xb0\ \x1e\x98\xb4\x3c\x11\x66\x36\x6b\x08\x5c\xd9\xca\xb5\x30\x73\x31\ \xe3\xc6\x8f\x20\x45\x86\xfc\x52\x92\x29\x53\x96\x8e\xbf\x54\x1b\ \x39\xc3\x45\x9d\x39\x9d\xc9\x85\xfe\xc4\x39\xa6\x8e\x8b\x19\x37\ \x77\xee\xac\x46\xcf\xa8\xea\xa4\x49\x27\x2f\xe5\xf1\xb4\xea\x6c\ \xda\x51\xc1\xde\xc6\x9d\xfb\xb6\x5a\x61\x1f\xce\x9e\x0d\xb1\xf6\ \xc3\x5b\x61\x36\xb6\xa4\x99\x4b\xd7\x2e\x72\x3d\x69\x84\xc5\xb0\ \x82\x49\x8e\xb3\x10\x0e\x05\x3f\x2c\x77\x49\xd3\x1e\x2a\x18\x23\ \x7b\xec\x28\xd2\xc5\xc8\xef\x1e\x97\x9a\x3f\x59\x19\xf2\x17\x8d\ \xd5\x48\xe2\x3c\xf1\xe8\xc4\x89\x31\xdf\x67\xb8\x5f\x7d\x1f\x68\ \xea\xa3\xab\x5f\xbf\x76\xaa\x36\x01\xad\xd2\xad\x40\x03\x71\x13\ \x8e\xac\xb2\xd2\x4a\x8b\x2c\xb7\x6c\x28\xee\x38\xe6\x90\x89\xa1\ \x2e\xb9\xf4\xa0\xf0\x99\x37\xde\x70\xc6\x37\xc1\xd0\x3a\x4b\x19\ \x5c\x24\xa2\x68\x24\x95\xd6\x23\x8f\x25\xca\x38\x62\xb1\x25\xc7\ \xdc\x63\x6f\x3c\x8d\x58\xaa\xe3\x91\x47\xea\x60\xac\xa3\x6a\xaa\ \x21\xaa\x28\xfd\x66\x50\xed\xa8\xff\x5e\x8b\x6d\x40\x23\xa1\x42\ \xe5\xaa\x03\x97\x64\x12\x2b\x05\x3f\x78\xe1\xc9\xde\x1c\x7c\x0b\ \x42\xe3\xe2\x42\x06\xc3\xe4\x90\x11\xe5\x99\x0a\x6d\x38\xa6\xac\ \xdf\x1a\x02\x11\x17\x61\x70\x51\xe6\x92\x36\x4c\xb4\xec\x8b\xc5\ \x48\x92\x2c\xbd\xc6\xd4\x5b\xfe\x0f\x32\xcc\x44\x13\x6d\x34\x9c\ \x60\x3a\x81\x1c\xd2\x90\xca\xe9\x0b\xff\x66\xb8\x0f\x48\xa4\x86\ \x64\x8a\x0c\xd9\x8e\x1c\x50\xc9\x26\x1f\x2d\x30\xad\xe0\xd6\x72\ \x6b\xb8\x2a\xcb\x7a\xb0\xb8\xb7\x8e\xe3\xf2\x19\x3d\x44\xd1\x23\ \xd4\x18\xc2\x14\x0e\xc4\x0f\x01\x78\x8b\x2c\x5c\xf6\x68\xe3\x4d\ \xc8\x5c\xc8\x68\x46\x16\x29\xb3\x2c\x3c\xf1\xdc\x93\xb1\x8e\xd1\ \x46\xdb\xac\x8e\x97\xf0\xac\x83\x27\x8e\x0a\x75\x4d\x8c\x42\x0d\ \x45\x94\xa9\x39\x16\x65\xb4\x36\x47\x21\x85\x16\x2c\xb5\xca\x1a\ \xae\x2d\x1b\xca\x01\x13\xca\x6a\xc1\x3c\xc6\x2d\xe4\xb2\xd4\xc3\ \x1f\x7f\x30\xdc\x42\xd2\x52\x7f\x43\x8b\xb0\x72\x70\xc1\xa5\x1c\ \x56\xfd\x80\x57\x46\x78\xe1\xfd\x6e\xb2\xca\xda\x14\x49\xd7\xcd\ \xf2\xec\x55\x57\x7f\x7d\x65\x4f\x34\x72\x76\x32\x8f\xa8\x20\x7d\ \xdc\x11\xd9\x64\x51\x5a\xb6\xd9\x46\xa3\x85\xb8\x2b\xb4\x9e\xb4\ \xb4\xca\x54\x5f\x78\x01\xcc\xb6\xba\x35\x4e\x2e\x50\xc5\x15\x05\ \x99\x72\x1b\xb4\x61\x41\x74\xcf\xfa\xc0\x19\x67\xca\xd1\xc4\x0c\ \x2a\xda\xc0\x68\xde\x79\x65\x7d\xcd\x56\xf6\xc4\xeb\x55\xc6\x7e\ \xff\x1d\x0d\xd8\x3a\xc8\xfe\xd1\x95\x47\xf3\x58\x5b\x8d\x9e\xfd\ \x7a\x5c\xf8\xa4\x20\x98\x75\x98\xc0\x88\x9f\x26\xf3\x2c\xb1\x1c\ \x7c\xf0\x2d\x6c\x9d\xb1\x01\xe3\x6e\xb7\x06\x13\xae\xb9\x3e\x0d\ \x55\x8f\x67\xd2\x78\x81\x52\x30\x19\x3c\xf9\x1a\x65\x58\x6e\xd9\ \x0c\x98\x65\x9e\x37\xb2\xff\xd4\xd3\xa8\xee\xf1\xea\x88\xf5\xa5\ \x9e\xf7\x75\xe1\xa5\xbb\x7f\x76\x01\xa8\xc0\x7b\x54\x8d\xd0\x20\ \x7f\x04\xf2\xe0\x64\x97\x6e\xda\x59\xa8\x1f\x17\x2b\x38\xb2\x2c\ \xc6\xd6\xe2\xb7\xdc\xda\xfa\x41\x4e\xb3\x14\x37\x54\x64\x8e\x59\ \xeb\x52\x06\x4d\xbd\x06\x97\x67\xcc\x68\xb9\x3b\x98\x2f\xf2\x0e\ \x3d\x7b\x6d\x7e\x15\x56\x5e\xed\xf6\x1b\xb3\x9c\xfa\xee\xfb\xd7\ \x9c\x76\x12\xd4\xa4\xfb\xc6\x48\x1c\xe1\xa0\x8a\xfd\xef\x8b\x50\ \x98\x6e\x5c\xaa\x67\x1f\xff\xea\x3a\xaf\xa6\x4e\xf0\x5a\xcb\xad\ \xae\x92\xeb\xae\xbd\x46\x46\x5c\x53\xc2\x26\x3b\x63\xac\xcb\x1e\ \x3d\x2d\x94\xcb\x79\x62\x8f\x8a\xba\xa3\x22\xfd\x8c\xe2\xa4\xd5\ \xd6\xba\x63\xdc\x6c\xbc\x3a\xd7\xc3\xb5\xbe\xcb\x02\x77\x4f\x27\ \xde\x8d\xfa\xf1\x24\xa3\x83\xe2\x0f\xa2\xea\x80\xbc\xe4\x21\x89\ \x79\x10\x5b\x4b\x70\xfe\x84\x31\x25\xcb\x61\xeb\x41\x2b\xc3\xda\ \xe5\xba\xe6\x16\x4e\x85\xeb\x0d\xe2\x1a\x17\x98\x20\xa8\x97\xf0\ \x31\xe8\x03\x2c\x33\x83\xf9\xcc\x30\x42\x97\xf9\x41\x6e\x35\x6b\ \x89\x78\xe0\x17\x2b\x92\x40\x06\x27\x2e\x1c\x4f\x7d\xf6\xa4\x13\ \x17\x00\xed\x11\xe4\x30\xd4\xd1\x56\xb3\xa3\x1d\x01\xaf\x68\x42\ \x52\x0a\x39\x08\x58\x40\x54\x80\xe1\x80\x90\x1a\x0b\x84\x8a\xa3\ \xb2\xe9\x59\x6e\x65\x31\xc0\x5a\xd5\x38\x06\x97\x34\xe8\xc1\x14\ \xfe\x30\xc5\x86\xf4\xf0\x16\x67\x50\x28\x6b\x1d\x4c\xcb\x31\x40\ \x58\xbe\x3d\xa4\xce\x07\x36\x99\x1b\xec\x64\x04\x3f\xf9\x85\xc7\ \x8d\x20\x79\x61\xdf\xec\x84\x27\x81\x3d\x22\x08\x75\x28\xcd\xff\ \x78\x84\x30\x1e\xf2\xa8\x35\x93\x39\xc1\x10\x93\x87\x8a\x23\x42\ \x6a\x2f\x4c\xb4\x01\x14\xa0\x00\xc5\x08\x62\xad\x72\xd7\x72\x06\ \x14\xab\xb4\x05\x6e\x6d\xaa\x8a\xfe\xd0\xc7\x1b\xfa\xd1\x0f\x82\ \xd8\xc0\x19\x62\x73\x06\xf8\xc2\x67\x35\x4d\x3c\xe1\x12\xda\x69\ \x59\xab\x18\x83\x42\xc7\xe8\xcc\x6e\x6b\xbc\xd7\xbd\xe2\xf8\xab\ \x9d\x91\x83\x1c\x36\xba\x61\x35\x8c\x55\x0d\x5f\x11\x85\x50\x3c\ \xd4\x89\xc2\x98\xfe\xf2\x08\x41\x36\x8e\x90\x85\x64\x92\x58\x1e\ \xd8\x45\x64\x3c\x43\x65\x58\x83\x66\x34\xcb\x01\xcd\x2b\x59\xae\ \x82\xfe\xe8\x87\x15\xe4\xb0\xc5\x2d\x80\xeb\x7b\xa3\x54\x59\x39\ \xa0\x70\x89\x72\x94\x93\x3b\x26\xb4\xd7\x9c\x70\xf6\xbe\xc7\x94\ \x67\x4e\x74\xc3\xcc\xcf\x74\x05\x34\x7a\xc6\x27\x08\x34\x29\x4d\ \x35\x6c\x09\xbc\x5f\xf2\x48\x7f\xfc\xf1\x0f\x4a\x88\x59\xc0\xaa\ \x1c\x13\x99\x06\x9a\x98\x30\xb6\xe0\x0c\x28\xcc\x25\x06\x50\x78\ \x66\x44\xa7\xf9\x4c\x2e\xc6\xa0\x42\x94\xdc\xd4\x5d\xb2\x67\x05\ \x8e\xea\x61\xa1\xcf\xd0\x87\x3e\x3a\x89\xb1\x6b\xbc\xe0\x18\x2a\ \x5b\x24\xb6\x70\xf1\x82\x4b\xec\xa3\x03\xab\x4c\xc9\xbd\x50\x24\ \x3f\xf2\xac\x47\x25\x31\x0d\x09\x66\x7a\xd5\xa7\x3a\xf4\xc9\xa7\ \xe4\x90\x09\x2b\x6e\x48\xa8\x31\xdc\x72\x27\xc7\xd2\xa7\x2d\x01\ \x5a\xac\x21\x14\x89\xa0\x52\x09\x85\x1a\x8c\x78\xd0\x48\x09\xc7\ \x93\x72\xb1\x68\x24\xb3\x1a\x51\xae\x7a\x72\xa1\x14\xb2\xcb\x16\ \xc4\x7a\x9c\x18\xf8\x43\x0e\xb6\xd8\xa6\x45\xf5\xf0\x86\x6d\x62\ \xd4\xa4\x9e\x84\x82\xd8\xa0\x88\x31\x5c\x68\xa2\x0d\xae\x33\x89\ \x4c\x41\xd2\xfe\xca\x9b\xd5\x14\x4e\xae\x93\xa5\x78\x74\x15\x1f\ \xc2\xe2\xd2\x46\xf7\x0c\x42\x2e\xab\x61\xc7\x20\x00\x6f\x08\x84\ \x9a\x01\x39\xee\x89\x43\xa2\x1d\xc5\x05\xc5\x6c\x1a\x0f\xe4\xa0\ \x0c\xaa\xea\x66\x62\x70\xb5\x28\x44\xb1\xca\x48\xae\x86\x33\x9a\ \x0e\xb5\x68\x58\xef\xf2\x8c\x7e\x68\xc1\x0a\xfe\x18\x88\x3f\x38\ \xea\x8f\x18\x60\xd4\x38\xd9\x1b\x97\x33\x40\xd7\xae\x7d\xa0\x07\ \x3c\x74\xc2\xd7\xfc\x6c\xb5\xd7\x16\xe9\x55\x24\x79\x9a\x0f\x2e\ \xe3\x43\x06\x1b\xcd\x21\x08\xac\xe0\x41\x62\x6b\x94\x58\x72\xf0\ \xe8\x97\x45\x9d\xac\xe1\xfa\x53\x0d\xcc\x3a\x8c\x07\x5a\x08\xc6\ \x54\x3b\x3b\xa6\xad\xac\x65\x6a\x89\x44\x2d\x6a\x49\xcb\xd0\xf5\ \x4e\x54\xab\xc9\x81\xa2\x58\x91\xa3\x0f\x8e\xbe\xc1\x82\x56\xd0\ \x02\x27\xe3\xeb\x0c\x90\x6a\x71\x64\x36\xd8\x03\x1a\x5d\x14\x99\ \xf9\x95\xa7\x56\x7a\x8d\xe5\x77\x66\xea\xaf\xe4\x92\xa1\x33\xce\ \x85\xf0\x3d\xa1\xcb\x83\x1b\x4a\xd6\x46\xc0\xd3\x9f\x2d\x13\xbb\ \x93\xca\x8e\xa1\xbb\xcd\xe2\xc1\x17\xde\xe0\x85\xf1\x5a\xa7\xbc\ \x63\x51\x90\x0d\xe4\xb2\xc8\x48\x52\xa8\x42\x15\x6a\x31\x44\x3d\ \x19\x49\xfe\x67\x88\x55\x65\xe0\xd2\x43\x6d\x35\xba\x56\x6d\x6e\ \xa8\xb5\x98\x78\xad\x97\x62\xa0\xa1\xfa\xc6\x20\x6b\x36\x50\x13\ \x9d\xea\x54\x53\x15\xdd\xab\x45\x90\x51\x32\xfd\x72\xe5\x87\xc1\ \x3e\xa2\x33\xf7\xac\xc7\x4c\x82\xe0\x5c\x1e\x74\x99\xc2\x63\xb0\ \xe3\x0d\x75\x32\x30\x0d\xdb\x68\x60\x86\xa3\x87\x87\x9f\x3a\x15\ \x1e\x0c\x41\x0b\xd9\x28\xb1\xc4\x00\x70\x0c\x8c\x2e\xd1\xa1\x2a\ \xab\x50\x5d\xec\xd2\x62\xd2\x96\x63\xab\x5f\xf5\xd4\xb8\x2c\x2a\ \x97\x67\x98\xd5\x16\x1c\xb5\x05\x26\xc4\xa0\x85\x0b\x86\x2a\x9b\ \x5a\xb0\x85\x3e\x74\xeb\x0c\x4d\xc8\xc1\x84\xb1\x7b\x53\x8a\x7c\ \x9b\xd7\xe2\x16\x38\x76\xae\xdc\x0c\x95\x7b\x1a\x93\x2b\x4f\x98\ \x07\x33\x71\xee\x84\x13\xcb\x58\x31\x17\xd5\x96\xb7\x9c\xac\x1f\ \xe9\xc1\xb8\x35\x23\x69\x0e\x1c\xd1\x47\x75\xe2\x9c\x15\xb3\x58\ \x2a\x82\x89\x1c\x74\x8d\x29\x79\x97\x8b\x6a\x15\xcf\x50\x0c\x36\ \x96\x30\x88\xa1\x67\xcc\x85\xb5\x98\xf0\x8b\xa2\xc5\x00\xe4\x7e\ \x68\x52\x0b\x26\xb1\x82\xc8\x62\xf0\x06\x2b\x74\xa0\x0d\x1d\x78\ \xe9\xcc\xd8\x24\x19\xbc\xaa\x13\x7e\x7d\x75\x25\x2d\x79\xd6\x53\ \x07\xfe\x3f\xd7\x00\xfc\xe0\x47\x97\xe7\x60\xe5\x20\xf0\x20\xde\ \x14\x66\x35\x6a\xf6\x29\xd9\xec\x1a\x2d\x14\xb5\x8e\x4a\x28\x4e\ \x02\xde\x83\x3a\x4f\x2b\xc2\x29\xce\x12\x8f\x5d\xdb\x49\xc6\x25\ \xac\x11\xcd\xaa\x45\x5d\x7c\x21\x0c\x76\x6e\x2e\x6f\xb8\xb6\x52\ \x30\x71\x68\x2d\x48\xfb\x0d\x59\x92\x83\x5f\xe4\xd0\x83\x6f\x97\ \x7c\x4d\x68\x1c\x52\x94\x61\xe5\xca\x58\xe5\xca\x5f\xa2\x9e\x0f\ \xa9\x0d\xc0\x0a\x7e\xd0\xbc\xe6\xf3\x7e\xc4\x84\x43\xd1\xe5\x7b\ \x46\x57\xdf\xaf\xae\xf7\x86\x67\xa0\x66\x80\xff\x43\xe0\x27\x91\ \x83\xae\x0f\x68\xf0\x83\x7f\xc0\x2d\x9a\x9a\x31\x43\x55\x46\xc9\ \x63\xd4\x45\x64\x94\x4c\xc3\xc2\xf1\xec\xd0\x66\x7a\x2a\x54\x1b\ \x1a\x17\x16\x33\xae\x71\x69\x2f\xda\x1f\x18\x9f\xb6\x15\xde\xf0\ \x84\x7d\x90\x1c\x66\x34\x9b\x1b\x47\x66\x0a\x37\x58\x51\x59\xd4\ \xbb\x62\x70\xcc\x1f\xe1\x60\x03\x18\x40\x1b\xf6\x66\x85\x01\xa2\ \xfb\x5c\x7b\xdf\xbb\xde\xd1\x7d\x84\xab\x71\x79\xf8\xc6\x02\xe5\ \xc3\x8c\x3a\xba\x49\x3a\x00\xe7\x42\x32\x9d\x4c\x53\x63\xcb\x31\ \x16\x08\xc9\x85\x46\xd2\x2e\x54\xfc\xfc\x58\x17\xca\xc8\xbb\x34\ \xfe\xf4\x6b\xe3\xc2\x90\x29\xe4\x50\x04\x2b\xf4\x23\xe4\x88\x3a\ \xb4\x47\xfc\xb2\xf6\x52\xba\xbd\x5e\x29\x6f\x93\x46\xe6\xe5\x03\ \xbc\xc1\x4b\x57\x77\xe7\x59\xcc\xe7\x33\x87\x76\xf4\xdd\xf8\x34\ \x0f\xbc\x97\xbd\x0c\x6f\xe5\x53\x97\xb1\x88\x45\xec\xc0\x1e\x7f\ \xa4\xc8\x73\xc4\x1c\x47\xb4\x3c\x99\x20\x12\xa6\x17\x6c\x8c\x8b\ \x53\xf7\x7c\x1a\x40\xaf\xda\xb1\x4e\x7d\xf4\x12\x0f\x57\xe7\xb0\ \x99\xe8\x68\xa7\xbc\xec\xae\x85\xed\x33\xf6\x21\x07\x9b\x94\x5b\ \x29\x4a\x96\x5f\x46\xfc\x70\x02\x1f\xf0\x7f\x3e\xfd\x17\x3e\xde\ \x1b\xb5\xf9\x20\x03\x32\x68\x87\x07\xeb\xbb\xc0\xe3\x87\x77\xab\ \xb9\x06\x5c\x3e\xe5\x43\x3c\xc6\x1a\x3c\xc6\xa3\x35\x80\xab\x3e\ \x31\x08\x06\xa5\xeb\x0a\x30\x50\x86\x0e\x04\x03\x23\x12\xaf\x03\ \x11\x8b\x6b\x79\x24\x2b\xc1\xb3\xb8\x70\x86\xac\x93\xaf\xba\xb8\ \x12\x8c\x5a\xa8\xf2\x4b\x41\x8a\xd3\x87\xb3\xb3\x36\xfb\x1b\x92\ \xd9\x0b\x95\x1e\x78\x29\x44\xf9\xad\x4f\x1b\x0f\x78\xb9\x08\xff\ \x03\xc0\x13\x20\x03\xe1\x8b\xb9\x02\x34\x40\xe2\xeb\xbb\xce\x38\ \x3e\x07\x8c\xb7\x7b\xeb\xb2\x7b\x33\xbc\x9e\x9b\x40\x7b\x73\xfe\ \x2a\x80\x43\x05\x56\x50\x8a\x1e\x50\x86\x10\xdc\x0a\x73\xe8\x87\ \x0e\x40\x01\x7d\x08\x06\x28\xc8\x86\x10\xf8\xc0\x10\x50\x43\x04\ \x41\x99\x25\x9a\x31\x17\xd4\x2a\x1b\xab\x0b\x09\x81\x41\x8c\xaa\ \x31\xe3\x78\xc1\x48\x0a\x9b\xb3\xeb\x87\x44\x4b\x1a\x94\x00\x32\ \x8e\xb2\x02\xf6\x59\x11\xf7\xa9\xbb\xdd\x03\x42\xfe\x23\x83\xfe\ \xf3\x81\x22\xec\xbf\x22\x6c\x87\x36\x68\x87\x02\x9c\x44\x03\x68\ \x87\x12\x30\x3e\x07\x2b\x3e\x9b\x63\xc0\x27\x9c\x30\x78\x83\xb7\ \x9d\xab\xc2\xe8\xf2\xb2\xe3\x29\xba\x7f\x40\x05\xe2\xd1\x02\x73\ \xf0\x42\xad\x78\x03\xf4\xd0\x02\x2d\x90\x83\x27\x40\x06\x86\x7a\ \x82\x27\x80\x02\xdf\x68\x1e\xb6\xb0\x01\x65\xe8\x45\x2e\xb2\xc3\ \x60\x5b\xc1\x17\x5b\x8e\xf8\xda\x14\x3c\xc4\xc3\xf7\x0a\xb4\xd6\ \xfa\xc3\x94\xc0\x04\xf0\xa8\x99\xc6\xc0\x34\x20\x64\x9d\x20\x5c\ \xc4\x02\x6c\x44\x24\x24\x42\x2a\x68\x87\x6e\x9c\x44\x6f\xc4\xc4\ \xbe\x2b\x81\x03\x2c\xbe\x77\xfb\x3b\x50\x04\x45\x2b\x44\x85\x75\ \x4c\xc7\x51\x3c\x3c\x7e\x98\x3e\x23\x41\x05\xbc\x1a\x02\x7b\xd0\ \xc0\xad\xb0\x02\xca\xb0\x82\x1e\x90\x03\x2d\x18\x02\x2b\xfe\x80\ \x02\xa5\xb3\xbc\xb5\x28\xc1\x2a\x81\x26\xd3\x4b\x2d\xad\x1a\xad\ \x60\x9b\x3a\x3c\x14\x2b\xe3\x38\xb6\xaf\x79\x03\x3f\x6c\xc6\xa5\ \x90\xb6\x28\x9b\x46\x3f\xa8\xc6\x12\xf0\x01\x8e\xf4\xc8\x6b\x2c\ \x40\x2a\x38\x01\x2a\x30\x40\x03\x2c\x47\x71\x34\x3e\xe3\x9b\x83\ \x26\x44\x47\x7e\x08\x85\x96\x84\x47\x54\x78\xc2\x78\x4b\xac\xc3\ \x53\xbe\x78\x1c\x90\x54\x5c\x8a\x1e\xb8\xc7\xac\x00\x03\x3d\x28\ \x37\x37\xe3\x36\x93\xc0\x84\x67\xe8\xc9\xb0\x48\x99\x95\xf1\x45\ \x83\xb4\x31\xbc\x00\x2b\x89\xdb\x12\xac\xa2\x10\x16\xe3\xaa\x41\ \x8b\x0b\xbc\x90\xad\xb2\xab\xc8\x69\x8b\xc5\x0e\xd0\x02\x17\xe8\ \x00\x79\x39\x44\x6a\x64\x1d\x2a\x28\x01\xb3\x34\xcb\xb3\x54\x4b\ \x92\x24\xc9\x92\xfc\xc6\xbe\x6b\x01\x03\x68\x81\x7a\x30\x3e\x4c\ \x0c\xc7\x04\x5c\x40\x98\x44\xc7\xc2\x63\x47\x2b\xa4\x42\x08\xc4\ \x49\x01\x99\xc7\xa5\xd0\x02\x35\x38\x4a\x87\x50\x06\x8c\x7b\xc6\ \x81\xeb\x87\xb3\xf3\x08\x2b\x70\x86\xe7\x61\x0b\x8a\x32\x48\x61\ \x53\xc8\x41\xc3\x8b\x90\x09\x19\x87\x1a\x88\x81\x40\x86\x86\x82\ \x82\xce\xf4\x94\xae\x0b\x97\x3e\xd4\xca\x66\x74\xad\xfe\x37\xd0\ \x87\x1e\x60\x4d\x92\x23\xb9\x7d\x68\x83\x97\xa9\x46\x1f\x48\x1f\ \xb4\xac\x07\x2a\xb8\xcd\x12\x28\x01\x32\xd0\x4d\x92\x8c\xc4\x6b\ \x94\x44\x2a\x30\x3e\x6d\x30\xbe\x4b\x24\xc7\x95\x1c\xce\x77\xeb\ \x44\x98\xb4\x37\x54\x98\x06\x54\x80\xc0\xc3\x13\x45\x78\x3c\xc5\ \x0b\x44\xba\xeb\xdb\x40\x61\x80\x02\x4c\x6a\x2d\xd7\x12\x9b\x7e\ \xd4\x02\xa3\x94\x18\x5e\xe4\xa2\x5f\xb4\xa6\x85\xca\xba\xac\x73\ \xca\xa8\x74\xca\x86\x5a\x4f\x4f\x19\x08\x0b\x32\xcd\xad\x34\x09\ \x5b\xe8\x07\x7d\xd0\x83\x27\x08\xa9\x1e\x68\xbb\xd8\x84\x99\xd5\ \xb9\x88\xee\xe8\xc8\x8e\x44\x4b\xb5\x24\xd0\x6b\x64\x44\x45\xa4\ \xc4\x76\x88\xcb\x4c\x9c\x44\x32\x30\x00\x08\x9d\xb9\xbe\x13\x81\ \xe5\x64\x4e\x78\x73\x4e\x29\x1c\xbc\xd8\x88\x37\x53\x2c\x3a\xa4\ \x51\x0a\x2d\x80\x82\xaf\x00\x83\x6d\x93\x03\xfc\x92\xc5\xb3\xeb\ \x38\x2b\xe0\x2c\xae\x08\x01\x85\x9a\x1e\xa8\x83\x3a\x60\x14\xab\ \xda\xb2\xba\xd4\xfa\xb3\x1a\xd3\xd1\x85\xb3\x0b\xbc\xe0\xb6\x8e\ \xa3\x4f\x37\xe3\xa8\xae\xfc\x82\x0e\xf0\x03\x23\x95\x19\x8c\x98\ \xcd\xd9\xe4\x48\xd6\xe1\x3f\xde\x83\x52\xbc\xa9\xfe\x83\xfe\xfb\ \x46\xbb\x2c\x40\x22\x4c\x42\xe4\x34\xbe\x16\xc8\x4b\x9a\x2b\xbc\ \x99\x84\xc7\x27\xe4\xb9\x7a\x63\xbe\x75\x3c\x45\x1b\xec\x80\x0c\ \xf4\x8a\x10\x90\x03\x68\x14\xb9\x41\x14\x83\x1e\xd0\xc5\xad\x18\ \x0e\x67\xc8\x06\x2b\xd9\x3c\xe2\xe0\x1a\xcd\x19\x2b\x3c\xd4\x33\ \x15\xb4\x98\x07\xc1\x9c\xea\xf1\x53\x0d\xa1\xc8\xad\x7c\xc6\xb2\ \xfb\xad\xdc\xfb\x41\x8d\x54\x0c\xd6\x71\x54\xd6\xe9\x3d\x99\x91\ \x52\x00\x44\xc2\x49\xc4\xd2\x02\x9c\x03\x07\xd3\x52\xb9\xcc\xcb\ \x77\xfb\x52\x74\x94\xc9\xc2\x23\x45\x75\x0c\xcc\xda\x08\xca\x0e\ \xe8\x01\x35\xe8\xc2\xae\x50\x86\xd3\x74\x33\x45\xc3\x84\x5c\x73\ \xd1\xe1\xa8\xb3\x84\x4b\x38\xcd\xcb\x9c\x07\x7a\xc8\x8c\x12\x3d\ \x6e\xd9\x55\x41\xa5\x33\xad\x32\xd4\xd3\xfc\xc3\x58\x8c\xc5\x26\ \xcb\x2b\x99\x12\x0f\xfd\x1b\xcb\xb1\xb4\x3b\x9d\xc1\x3b\x4b\x35\ \xc2\x47\x78\x50\xe2\x33\x49\xe3\xe3\x87\x0a\x65\xbe\x74\xc4\x50\ \x50\x84\xce\x99\x30\xd5\x33\xbd\x3f\x39\xb0\x87\x5b\x34\xcc\xae\ \x30\x87\xb1\x23\x4a\x69\x13\x51\x89\x99\x51\x25\x6a\x8b\x8d\x71\ \xba\x8d\xe9\x96\xb1\x9a\x22\x87\xfc\xb5\x40\xfe\xcd\xa8\x8e\xc1\ \xa0\x89\xb4\xc1\x64\xd9\x38\x39\x70\x3d\xaf\x7c\xa9\x3a\xc1\x3f\ \x50\x93\x17\xdf\x8b\xd6\x95\x93\xd6\x9e\x82\x58\x23\x14\x3e\x93\ \xec\xc6\x94\xcc\x4b\xbd\x94\xc9\x98\xe4\xb9\x28\x34\xd3\xa2\x73\ \x1d\x2d\x40\x01\x73\x30\x87\x60\x68\x01\x3d\x68\xd1\xad\x50\x06\ \x38\xcd\xab\x64\x15\x03\x2b\x60\x08\x3a\x55\x22\x2b\x51\x22\xa7\ \xdb\x1a\x6d\x31\xa9\xaa\xb9\x1e\x3d\x23\xbd\xf2\x6c\xa4\xd4\xca\ \x9e\x6c\x42\xb4\xf6\xab\x48\x6a\x63\x4d\x39\x90\x83\x36\x38\xda\ \x56\x61\xa1\x1f\x84\x56\xb8\xd9\x3d\x46\x8c\xd6\xd9\xc9\x88\xdf\ \x1b\x2c\xe1\x9b\x27\x9e\x9a\x8f\x8a\xe5\xd6\xbd\x84\x49\xe7\x1c\ \xd5\x77\x3c\x55\xda\xa8\x83\x94\x68\x81\x6c\x30\x07\x28\xb0\x07\ \x14\x68\x01\xea\xe0\x0a\x30\x70\x06\x6e\xeb\x80\x43\x73\xbd\x44\ \x7b\x83\x93\xcd\x0a\x4b\xd9\xbc\x05\x22\x8b\x28\xb9\xd9\x6e\x81\ \x12\xcc\x19\xd4\x2b\xf9\x96\xad\x2a\x2d\x3e\x03\x29\xfc\xea\x31\ \xee\x64\xd7\x85\x19\x58\x39\x60\xab\xa3\x75\xbb\x36\x58\x9d\xa7\ \x65\xd2\x25\x2d\xc0\xdd\xbc\xd2\xfe\x8b\x17\x5e\x99\x9d\x9d\xd1\ \x95\x06\xf0\x95\xd0\xad\x83\x06\x38\x81\xfe\x8a\xa5\xd0\x77\xdb\ \x5a\x51\x9d\x06\xe6\xf3\xb2\x8e\x05\x38\x17\x38\x89\x0e\xb0\x07\ \x91\xb5\x87\x16\x68\x01\x7d\x40\x81\x7d\x18\xd1\xae\xf8\x80\xed\ \x54\x4d\x7d\x08\x43\x2d\xd0\x83\xa3\xdc\x8b\x2d\x58\xa0\xe3\xed\ \xbe\xee\xcb\x1c\x61\xd0\x1a\x7e\x5d\x41\x0a\x99\xb8\xd0\xc2\xcc\ \xe4\xe0\xb1\x43\xb3\xaf\xf9\xba\x36\x63\x45\x94\xfc\x7a\x03\x7e\ \x44\x5a\xc9\x85\x4d\xd9\x2c\xcb\xb5\x3c\xcb\xdc\x4c\xcb\xb5\xbc\ \x4d\x6d\x9c\x0f\x29\x95\xd2\xf8\x61\xb0\xd0\xc5\x9d\xd0\xed\x13\ \x6b\xd5\xd6\x6d\xf5\xd6\x6f\xcd\x58\x28\xa4\xce\xa2\x1b\x03\x8e\ \xe8\x00\x35\xc8\x86\x88\xd8\x07\x14\xa8\x5d\x39\xe8\x80\x27\xd0\ \x40\xe7\xe1\x8b\xfa\x1a\x52\x39\x88\x81\xa3\x64\x0b\xbd\xad\x57\ \x5d\x0d\x56\xeb\x19\x36\xf9\x92\xca\x41\x6b\x26\xd0\x7c\x28\xf8\ \x2c\x4d\x6d\xa2\xad\xe3\xd0\x87\x44\xc3\x2f\xed\x65\x0a\x69\xc3\ \x84\x0e\x30\x5a\xd6\x6c\x03\xb7\x43\x9f\xda\xc4\xcd\xf4\x29\xdf\ \x3d\xd8\x83\x7a\xa8\x61\x19\x26\x49\x03\xd0\x4d\x6c\xf4\xbf\x98\ \xf3\x97\x9d\x39\x81\x7f\xc1\x93\x7d\x81\xd8\x03\xd4\x56\xe5\xac\ \xb9\x50\xfd\x56\x9e\xf3\xd0\xd7\x5d\xfe\xb4\x01\xe8\xc2\x88\xa8\ \x5d\x7b\x18\xe0\x59\xb4\xdb\xeb\x00\x83\x67\xe8\x08\x20\x93\xbd\ \x37\x78\xd9\xb0\x90\x9c\x04\x71\x3a\xe5\xe5\x98\x3d\xf5\xd5\x2b\ \x91\x0b\x0b\xe9\xba\x66\xeb\xcc\xb0\xf1\x94\x0d\xe9\x81\x10\x76\ \x06\xd9\xb2\x82\x4c\x5a\xdc\xd7\xf0\x0b\x5b\xe8\x38\x37\x53\x55\ \xfe\x6c\x83\xf0\x85\x61\x2a\xa0\xe1\x1a\xa6\x61\x1b\x36\xe4\x1b\ \x26\x83\xda\x3c\x4b\x1e\x26\xc0\x22\x3c\x01\x51\x83\xb9\x75\xf3\ \x95\xbe\xf1\x17\x1b\x29\x47\x6e\x65\x40\xc1\xb3\xb9\x96\xdc\xd8\ \xb0\x9d\x0d\xd8\x0d\xd9\x86\x00\x83\x49\x30\x07\xdb\x4d\xdb\x7d\ \x98\xdd\xa3\x0c\x81\x7d\x58\x59\x93\xd0\x02\x7d\x98\xd3\xb0\x50\ \x0b\xf3\xd2\x16\xeb\x91\xa0\xaa\x19\x2b\x0b\x91\x38\xe4\xf0\x3a\ \xb1\x09\x97\x27\x10\x9b\xd8\xca\x24\x7f\xa8\xc5\x2a\xaa\xb6\xb9\ \xe8\x07\xf3\x58\xcc\xc9\xf0\x8b\x22\xd8\x90\x7e\xec\x08\x6f\xdb\ \x87\x7d\x48\x1f\x6a\x1e\x64\x1b\xde\x03\x6d\xe0\x0e\x1b\x2e\x01\ \x42\xe6\x66\xb6\x6c\x07\xba\xc4\xdc\x6c\x54\x5f\x00\x84\xd8\x51\ \xbb\x11\x7f\xc9\x93\x4a\x3e\x49\x78\xe3\x56\x05\xd4\xcb\x52\xf4\ \xe4\xaa\xa8\x0f\x35\x30\x87\x49\xfe\xf8\x40\x29\x6e\x01\x54\x6e\ \x81\x5b\x34\x87\x9e\x0c\x01\x14\x90\xbd\x58\x34\xbb\x58\x8e\x1a\ \xe1\x90\x9c\xbd\x75\xba\xeb\x99\x1e\xf9\x92\x10\xbc\xc0\x4a\x0c\ \x7a\x02\x4c\x12\x29\x8b\x2a\xb4\x0b\x82\xad\x2c\xc1\xcf\x1a\xd3\ \x83\x8c\xfb\x47\x76\x7d\xbf\x51\x50\x3b\xfc\xd4\x07\x68\x2e\xd2\ \xd8\xdc\x87\x10\xba\x66\xee\xa0\x61\x6d\x26\x64\xdc\x24\x64\x97\ \x61\x4b\x03\xa8\x87\xb9\xac\x07\xde\xc4\xe9\x2b\x0d\xe2\xf5\xdd\ \xe9\x9e\x92\x0f\xa0\xd9\x95\x7a\xaa\xd8\x8b\xed\x52\x2b\x04\x53\ \x75\x3c\xc5\x39\x18\x82\x0e\x18\x00\x35\xb0\x67\x52\x56\x83\x36\ \x50\x5b\x35\x48\x5b\x15\x86\x02\x2f\x04\x03\x28\x40\xdc\x13\x05\ \x32\x3d\x28\x1b\x59\x56\x90\x28\x21\x0b\xe1\x78\x2b\x64\x3c\xc6\ \x61\x5c\x4f\x2e\xc1\x24\xd5\x14\x97\x19\xcc\x31\x95\xb9\xe8\x0b\ \xf2\x4c\x86\x43\x86\xe8\x48\xbb\x89\x9c\x36\x57\xce\xde\xd6\x63\ \xeb\x5b\xe4\xc7\x83\xf5\x36\x2a\x50\xe9\x95\xb6\x61\x6d\x30\xec\ \x1a\xd6\xe6\x7a\x30\x03\x03\xa8\xe1\x16\x40\x4b\xc3\x26\xce\x7a\ \xd0\xcd\x1d\x76\x64\x23\x1c\xb5\xcb\x9e\xa7\x7f\xa1\xdf\xbe\xb3\ \x5f\x24\xb6\x39\x25\x6e\xce\xfe\xa4\xfe\x02\xb5\x45\x01\xa9\x6e\ \x81\xda\x05\x37\x14\x78\x02\x35\xe8\x81\x8e\xd8\x2c\x2f\x1c\x8b\ \xed\x44\xd1\xe9\xb8\x47\xe1\xf0\xdb\x28\xa1\xe5\xb2\x16\xbd\x5c\ \xd6\x65\xe8\xed\x14\x71\x61\xeb\x50\x19\x88\x67\x42\x86\x4c\xea\ \x07\x2d\x61\xb8\x93\x42\x3b\xef\x94\xad\x51\xe8\x38\xd7\x2a\x02\ \x91\x0b\x6e\xfd\x7c\x02\x33\x20\xb9\x1f\x8c\x4d\x41\xce\x66\xee\ \xd0\x6e\xc8\x86\xec\x42\xce\xe6\x16\xd8\x83\x70\xac\x07\x7e\xd0\ \x86\xc0\xa3\x69\x9a\xd6\x69\x89\x1d\xac\x9f\xf1\x29\x5d\x19\x83\ \xf8\x30\x5d\x24\x06\x45\x0b\x6d\xc9\x26\xae\x35\x03\x68\x00\x14\ \x40\x81\x97\xea\x80\xfd\x2e\x6d\xfe\x3e\xed\xfe\x06\x09\x7d\x50\ \x06\x80\xd6\x03\x57\xd6\x03\x0f\x41\x4a\x4a\x1a\x6b\x85\xbe\x06\ \x0b\x86\xc1\xab\xdc\x92\x2e\xf1\x3a\x8c\x16\xee\xda\xca\x18\x28\ \x28\xe9\xfb\xa4\x10\x4a\xc2\x18\x1b\xc8\x4a\xb4\xa2\x2d\x3d\x28\ \x02\x82\xb5\x02\x5b\xd8\x10\xfc\x3a\xee\x50\xb9\xc5\x7d\x78\x82\ \xb6\xb9\x6e\x3f\xc8\xee\x6b\x86\x69\x6d\xc0\x05\x6d\x08\x85\xef\ \x26\x64\xc3\x9e\x4b\xc8\x36\xef\x7a\x88\x6c\xf5\x56\x5f\xcb\x4e\ \xae\x73\xd6\x15\x6b\x3d\xfe\xc9\x77\xe3\x05\xae\xed\x5a\x97\x9c\ \x67\xaa\x60\x85\xfe\xae\x03\x2d\x28\x52\x31\x6c\x83\x06\x90\xea\ \xda\x45\x01\x03\xd6\x02\x55\xc5\x4e\x27\x49\xf0\x21\x90\x03\x61\ \x28\x2f\x61\xc0\x9a\xc0\xa0\x16\xbe\xfd\x5b\x3a\xeb\xbc\x1a\xd3\ \x60\xbc\xf0\xe5\x4e\x09\x1b\x0c\x91\xa4\x44\xe2\x36\xfb\xf4\xa8\ \xac\xd1\x1a\x64\x38\x2b\x10\xae\x10\x3d\x70\x5c\x4d\xaa\x63\x1e\ \xb3\xaf\x67\xb8\xc5\xea\x8e\x71\x4d\x48\x1d\xa5\xa5\x4d\xed\x1e\ \x64\xef\xbe\x04\xc8\x36\x64\xef\x36\x6c\x56\xb8\xf4\xf3\xbe\x74\ \x9a\xde\x54\xcc\x55\x5f\xf9\x00\x75\x9e\xaa\x91\x76\x78\x84\x94\ \x64\xf2\x03\x40\x47\x0b\x95\xc9\x75\x8c\xf2\xa9\x98\x83\x22\xcd\ \xa9\x0e\xa8\x03\x14\x68\x00\x31\x54\x5b\x7c\x18\xe0\x6f\x73\xb3\ \x27\x68\x55\x87\xf8\x80\x67\x88\x45\x64\x20\xde\x93\xda\x02\x52\ \xf9\x5b\x93\xaa\xe5\xb7\xa8\x8b\xf7\x82\xe8\x2d\xd9\x12\xaf\x93\ \x31\xfe\xea\x81\x58\x8c\xb4\x62\x07\x9f\x17\x70\x06\xfa\x32\xda\ \x10\xde\x82\xb3\x03\x6e\x39\x68\x36\xb3\x5a\xbb\x67\x28\xa5\x5b\ \x64\xf4\x53\xd2\x0e\x97\x59\x9d\xda\xbc\xcd\x48\xf7\xee\x6c\xd6\ \x66\xc6\x36\xec\x03\xfe\x78\x49\xf3\xb6\xf7\xbf\x3b\x6f\xc9\xb6\ \xcb\x07\xeb\x8c\x02\x0c\xf5\x76\x58\x5f\x72\x98\xef\xbc\x3c\x80\ \x82\xbf\xd8\xc2\x5b\xdd\x0c\x6d\x75\xa9\xe0\x81\xb1\x0d\x0f\x2d\ \xa8\x86\xff\x96\xf8\xfd\x6e\x07\xfe\x06\xb7\x68\x16\x4f\x87\x08\ \x81\x18\x20\xd8\x2d\x68\xc5\xb3\x48\x24\xaa\xdb\x55\x92\x2a\xeb\ \xf7\x82\xaf\x3c\x43\x8e\xb4\x96\xab\x21\xa3\xaf\x8e\x8b\xb4\x18\ \x10\xa5\x17\xd8\x82\xb5\x72\x5c\xd8\x2a\xf6\x4f\xc2\x4f\x3d\xc8\ \x24\x2f\x41\x86\xee\xd5\x87\x44\xd7\x04\x54\x42\xf7\x53\xe2\x8e\ \x00\x4d\x9f\x6d\x6e\x69\x6d\x98\x74\x6f\x46\x6c\x6d\x98\x84\x24\ \x59\xc7\x50\x78\xc9\x9d\xd3\x06\x7e\xa0\x4b\x56\xa0\xcb\xac\xd7\ \x61\x03\x78\x30\x7f\x9f\x0f\x72\x48\xae\x25\xdf\x56\x83\x87\xb7\ \xe5\x5c\x5d\x0c\x5d\xf8\xa8\xd0\xc2\xf4\x50\xb0\x0e\x18\x03\x59\ \xf7\xb6\xd2\xee\x00\x96\xd0\x82\x1e\x30\x87\x03\xd7\x35\x61\x08\ \xa9\x33\x6c\xba\x2e\x32\x32\xc0\x3d\x06\x93\xc2\x98\x9b\xad\xd1\ \xb4\x9e\x43\x09\x51\xe3\xe4\x28\xb4\x7e\x4c\xbb\x27\xd0\xad\xd1\ \x51\xb1\x4c\x52\xcd\x67\xb0\x43\xe1\x2e\x34\x62\x8e\xa4\x27\xe8\ \x01\xda\x3b\x77\xfe\x46\xdf\x83\xa1\xa7\xe1\xf4\x79\xf4\xdb\x84\ \xe9\x6c\xce\x71\x96\x2e\x6c\xa7\x6f\x88\x49\x78\x7a\xf3\xde\xf1\ \x50\xc0\x74\x4d\xaf\x87\x39\xa0\x4b\xda\xe7\x7a\xae\xdf\xd4\xbd\ \x03\x78\xb0\x27\xf5\x72\x74\x67\x78\x43\x75\xfb\x6d\xc9\xb3\xdf\ \x5f\x80\xbb\xb5\x65\xed\x08\x9c\xa8\xf5\xe5\xcf\xf2\xb0\x54\x09\ \x15\x4e\xe5\x86\x08\x01\x4f\x31\x73\x5e\x0b\x01\x3a\x33\xc6\xea\ \x09\xd6\x4d\x21\x34\xcf\xb9\xa8\x2a\xd1\x59\x39\xa7\x2f\xf3\x10\ \xde\x2f\x62\x90\x93\x7a\x82\xe0\x36\xb2\x8c\x89\x01\xb1\xf9\x1a\ \x0c\xf1\x24\xcd\xef\x01\x33\x20\xf7\xa0\x0f\x7a\xf3\xf9\x7c\xa2\ \xe7\x6e\x76\xaf\xcd\x77\x57\xec\x7a\x00\x88\x7a\xda\x50\x01\x28\ \x08\x60\x12\x2a\x6d\xac\xb4\xf1\x0b\xc5\xea\x61\x3d\x03\xf5\xe6\ \x4c\x34\x50\x62\xce\xc5\x76\x64\x34\xb6\xab\xd3\xee\x04\xb9\x76\ \x22\x0d\x18\xe0\x27\x82\x1f\xbf\x03\x28\x57\xb2\x6c\x89\xea\x1f\ \xcc\x98\x32\x67\xd2\xac\x19\x64\x88\x98\x21\x3a\x67\x74\x68\x80\ \xa2\x41\x9b\x06\x1d\xbe\x7c\xe9\xd0\xa1\x8d\x1c\xa3\x5a\x86\x74\ \xd0\x67\x0e\x8c\x41\x61\xd9\x42\x18\x34\x78\xed\x83\xb3\x34\x31\ \xd2\xa4\xc9\xfe\xba\xc5\xc6\x57\x1b\xc7\xc0\x8a\x05\x1b\x03\x19\ \x5a\x3d\x68\xd3\x84\xb5\x61\x83\x2b\xdb\x18\x7a\xe4\x60\x12\x63\ \xd7\x8a\x9e\x63\x2f\xae\xf1\xbd\xf6\xc2\xd9\x33\x7d\xfe\xfc\xe9\ \x89\x61\xe3\xc5\x0b\x1b\x31\x9e\x21\x3b\xfb\xac\xb0\xb3\x72\x4f\ \x90\xee\xd3\x64\x59\xd3\x1e\x33\x66\xa8\x68\xde\xb3\xe7\x92\x67\ \x2a\x54\x4a\x88\x26\x4d\x65\x8f\x36\xcf\xf5\xf6\x88\x46\x4d\xb0\ \xaa\xc3\x7a\xac\x1c\x2a\xac\x57\xef\x22\xee\x39\x18\x35\x96\xe0\ \x78\xe2\xf7\x09\x14\x27\xda\x91\xe4\x57\x12\xe5\xc9\xe4\xfc\x78\ \xb1\xe4\xc1\x8f\x07\xaa\x97\x35\xa7\x53\x8f\x59\x6f\xc8\x17\x17\ \x1d\x5c\x00\x45\xd1\xe2\x67\x87\x6a\x44\x3b\xa0\xf0\x8e\x42\xce\ \x10\x4c\x72\x82\x29\x83\x0a\x20\x04\xd5\xaa\x56\xb5\xc6\xa8\x0f\ \xb7\xfe\x56\xb6\x5b\xf6\xbb\x05\xab\x75\x0b\x5c\x69\xb8\x75\xcc\ \x31\x00\xc6\xb0\x05\x60\xfd\xd4\x95\x13\x5e\x5b\xec\xd5\xd7\x35\ \x36\x40\x31\x18\x61\xcf\x38\xa3\x57\x62\x8c\xe1\x87\x0c\x14\x50\ \x94\xa3\xc9\x64\x6d\x54\x76\x09\x66\x99\x51\xd1\x46\x6b\x9e\xa9\ \x28\x1a\x8b\xa6\x8d\x26\xda\x6a\x02\xa1\x32\xc9\x24\x06\x21\x54\ \x82\x6d\xfe\x10\xd9\x46\x06\x46\x3c\x92\xf1\xe3\x1c\x3c\x6a\xb4\ \x91\x48\x6d\x3c\x32\x12\x49\x06\x9c\x74\x80\x4a\x4a\x9a\xc4\x0b\ \x93\x28\x39\xe7\x5c\x74\xd5\x59\x49\x53\x28\x73\x54\xd3\x53\x03\ \x75\x74\x90\x47\x3b\xf8\xa0\xe0\xc2\x96\x3e\x95\xd7\x82\x98\x28\ \x18\x65\xcf\x54\xf0\xc1\x27\x5f\x55\xc7\xe0\x47\x5f\x7d\x68\x31\ \x16\x17\x57\xfd\xed\xd7\x16\x7f\x6e\xed\xe9\x4c\x82\x3a\x31\xe8\ \xcf\x85\x10\x46\x28\x97\x1e\x89\x5a\x78\xd8\x35\xc7\x38\x03\x45\ \x63\x80\x42\x61\xd9\xa4\xfb\xb4\x21\xe2\x1e\x9a\x90\xb8\x19\x8a\ \x29\x6a\x73\x49\x6a\xac\xbd\xf8\x62\x09\x3e\xc0\x48\x85\x40\x34\ \xd6\x68\x10\x3f\xb7\xd9\x66\x5b\x09\x3f\x9e\xf0\x23\x90\x3e\xfe\ \x38\xe4\x70\x47\x6e\x54\x5c\x0b\x28\xa9\x24\x82\x72\x2a\x35\xc7\ \x4f\x95\x57\x1a\x0b\x13\x0f\xdc\xb9\x50\x54\x97\xe5\xa1\x50\x8d\ \x16\x45\x79\x27\xa6\x51\x1d\xc8\x81\x02\x9b\xca\xc0\xa7\x8c\x30\ \xc2\xbc\x29\x5f\x08\xc2\xa0\x15\x83\x33\x8b\x21\xc3\x18\x32\x6a\ \x35\x76\x96\x80\x7a\x0e\x58\x96\x7f\x6c\xbd\xf5\x4c\x3f\x5a\xd8\ \x85\x89\x15\xfa\x18\x86\x58\x5f\x8a\x3d\xf6\x04\x61\x50\x6c\x71\ \x8c\xfe\x5f\x36\x38\xc3\x61\x64\xe5\x3c\xf3\xc4\x65\x4f\xf4\x80\ \xe2\x13\x24\x9a\xd8\xe9\x69\x9f\x82\x1a\x5a\x8b\x54\xf8\xb0\xb1\ \x1f\xa6\xba\x36\x23\x8d\x05\x4d\x12\x4a\x09\x38\xc2\x1a\xeb\xac\ \xb4\xaa\xac\xb2\x6f\x1f\x11\x97\x24\x3f\xbd\x42\xb9\x1c\x2f\x35\ \xb7\xe4\x1c\xb1\xd2\x1d\x7b\x65\xb2\x44\xd1\x23\x6d\x3b\x28\x8c\ \xa1\xd3\x10\xd5\xe4\x81\x4f\x3b\x1d\xe4\x24\x46\x07\xc1\x98\xa3\ \x8c\x32\xd9\x48\x3d\xb5\xb7\x70\x02\xf6\xcc\x56\x8b\xa1\x6b\xe7\ \x59\x8d\x71\xb5\x67\x59\x04\x8e\xa5\x15\x32\xce\x20\xa8\x47\x0f\ \xf6\x62\x32\x44\xbe\x8b\xf2\x9b\x18\x60\x7a\x3c\x31\x77\x61\x87\ \x21\x66\x43\x39\xc8\x94\x53\x4e\x64\x20\x6a\xf2\x8c\x65\x66\xb4\ \xd1\x19\x68\x9c\x9a\x7a\x1a\x2e\xb8\x80\xa6\xa2\xa8\xa2\x71\xec\ \x82\x0f\x02\x85\x82\x0b\x2a\xb8\xac\x5a\x10\xc9\x25\xdf\x16\xab\ \xca\x9c\xd3\x1a\xe4\x47\xb3\x0e\x27\x12\x92\x22\x1c\x97\xd2\x01\ \x35\x47\xd9\x12\x4a\xc5\xee\x6c\x25\x2b\x82\xe6\x34\x46\x79\x0d\ \x7c\x61\x97\x4e\x5f\xd8\x8e\x93\x5d\x0d\x64\x13\x75\x36\xe6\x4c\ \x1d\x4c\x30\x5e\xc4\x67\x50\x08\xce\xe8\x53\x58\x9d\xf8\x9d\x85\ \xfe\x9f\x86\x70\x0d\x48\xe0\x0b\x04\xd2\x99\xae\x1c\xb6\xac\xad\ \x85\x1c\xfe\x34\xf6\x95\xd8\x60\x41\x21\xb7\x1e\xfa\xe8\x03\x45\ \xa1\x2f\xec\x3d\xa9\x87\x7b\xfb\x7d\x99\x26\xfb\x70\xb6\xe2\x89\ \x1e\x5f\xa2\xb8\x36\xa9\x85\x2a\x2a\x69\x3e\xb8\xe0\x82\x1f\x24\ \x97\x3f\x6d\x84\xc2\x3d\x23\x3b\x59\xc9\x68\x95\xc0\x20\x05\xa9\ \x56\x2d\xfb\xcd\xcb\x8e\xd3\x2b\xd4\x4d\x83\x49\xcc\x61\x1d\x95\ \x5e\x77\xa5\xd8\xd9\x25\x27\x5f\x10\x8f\xec\x3a\x38\x04\x7a\x88\ \x10\x05\x1a\x00\x43\xd4\xd4\x20\x35\xe2\x15\xef\x78\x05\x01\x83\ \x33\x14\xf5\x3c\xfd\x6c\x61\x2b\xe5\x1a\xd7\x9c\xc4\xa2\x17\x02\ \x81\x65\x0b\xe9\x7a\x83\x15\x96\xa2\x85\x7e\xa8\x05\x3f\xce\xd0\ \x53\xb9\x1e\x23\xb7\xb9\x41\xc1\x6e\xb8\x70\xc6\x25\x9e\xd0\xbe\ \x4b\x4c\xca\x0c\x0c\x23\x91\x26\x36\x63\x06\xcf\x6c\x86\x45\xa8\ \x49\x1c\xfe\x40\x05\xaa\x50\x8d\xc6\x0f\x66\xf4\x01\x01\xf3\xe7\ \x07\x17\x90\xe1\x72\xa1\x80\xd5\xe6\xc8\xe0\x83\xcf\xa9\x8c\x81\ \xb8\x72\xd9\x70\x92\x64\x3a\x7e\x68\x43\x04\xd3\xa8\xe0\x01\xa6\ \x61\xb3\xe6\xf0\x00\x3a\x1a\xac\x0e\x2a\x58\xe1\xc1\xa1\xf1\xfe\ \xae\x83\x8e\x74\xe4\x17\xf2\x60\x0f\xa8\xfd\x6e\x6a\xd9\x20\x5e\ \x36\x8c\x57\x15\x30\xd8\x20\x51\xcc\x3b\x90\x9f\xf6\xe4\xbc\xc5\ \x6c\x05\x7c\x62\x23\x50\x0c\xf4\x61\x85\xf4\xe0\x4b\x5f\x5f\x29\ \x17\x14\x9c\x07\x85\xc7\x3c\x83\x96\x4f\x78\x46\x39\x0e\x73\x8c\ \x72\x40\xe1\x09\x66\xd0\x04\x14\xa8\x18\xb8\x5f\x5e\x62\x71\x5b\ \xdc\xa2\x17\xef\xa7\xb8\xc4\x15\xf3\x53\xce\x44\x8d\xe3\x3a\x26\ \x10\x6d\xd4\xc3\x0f\x38\xf1\x83\x36\x44\x96\xb9\x92\x25\x70\x63\ \xa2\xa3\xd5\x23\x68\xe5\x1b\xe0\x8c\xae\x24\x4e\xf2\x15\x93\x02\ \x99\xba\x95\x4c\x89\x58\x87\xac\x0e\x0f\xbe\x50\x34\x14\xb4\xa3\ \x91\x8f\xbc\x67\x1e\xd4\xa0\x0c\x2f\x4c\x4d\x03\xd9\x00\x86\x25\ \xa5\x26\x8c\xaa\x88\xab\x96\xc8\xc8\x53\x7f\xc8\x02\x28\xb3\x8d\ \xf2\x6b\x62\x49\x8c\x3f\xac\x50\x17\xb6\xe9\xe1\x88\x63\x01\xd4\ \xb9\x6a\xf9\x18\xc1\xd4\x32\x51\xb7\xdc\x1b\xde\x24\x63\x45\x4d\ \xec\x6d\x53\x5b\xb4\x8c\xc4\x44\x83\xcc\xd6\x80\x11\x54\x89\x73\ \xe6\xc5\x52\x53\x0f\x8d\x99\x6a\x80\x3e\xf0\xc3\xed\xbe\x50\x8f\ \x19\xa1\x82\x64\x3e\xd0\x5c\xa9\x4e\xe0\x87\xdf\x90\x01\xfe\x38\ \x74\xfc\xc8\x46\x4e\xd0\x80\x5d\x19\x60\x82\x4b\xaa\x99\xea\xa2\ \x64\x3a\x1e\x94\xc4\x90\xef\x9c\x4e\x28\x7e\xd6\x00\x03\xa0\x80\ \x84\xf7\xbc\xe7\x10\xf0\x11\x02\x30\x80\x41\x03\x6a\x50\x61\x30\ \xfc\xc9\xcf\x60\xd8\xe3\x19\x53\x89\xca\x62\x98\xc7\x27\x24\x02\ \xca\x88\x8e\x11\x50\x81\x90\x61\x85\x9c\x68\xc1\x0a\x4f\x70\x06\ \x62\xc6\x22\xa1\xf2\x99\xcf\x7c\x6f\x58\x9e\x27\xf5\xd0\xa1\xbd\ \x7d\x68\x6e\xbf\x2c\x47\x31\x87\x99\x29\xcc\x74\x91\x45\xa2\x51\ \x26\x33\x97\x99\x3f\xc6\x95\x66\x63\xd3\xac\xc7\x4d\x97\x85\xcd\ \xe8\x24\xb2\x54\xdc\x2c\x99\x37\x89\x2a\x2b\xd0\xd1\x8a\x9c\x1f\ \x29\x8e\x49\x50\xc7\x24\x11\x40\xc9\x82\xc6\x49\x92\x55\xaf\x4a\ \x93\x78\xce\xc0\x05\x63\x98\xc1\x57\xc1\xda\x80\x13\x92\x35\x1b\ \x1a\x48\x6b\x30\x00\x2a\x35\x7b\xbc\xc1\x1e\xc1\x18\x68\x41\x3e\ \xb0\x85\x67\x78\x4f\x5e\x3d\x0c\xcb\x9f\xca\x95\x95\xb8\x1e\x14\ \x19\x11\xd5\x02\xbe\xde\xf0\x0c\xf0\x05\xb6\x5c\xfa\x78\x83\x1c\ \xfa\xd1\x8f\xf4\x22\x76\x79\xb7\x44\x1f\x2f\x7d\x39\x37\x4d\x41\ \xb6\x70\x99\xfa\x0c\xc6\x58\xe4\x83\x3d\x58\xee\x03\xfe\xb8\x18\ \xe0\x33\x1b\xc7\x1a\xd3\xa2\xe6\x36\x37\x35\x63\x3d\x2c\x87\x90\ \x99\x9e\xb6\x54\x45\x4d\x59\x51\x7d\xc4\x5a\x97\xd5\x01\x82\x24\ \x39\x89\x6c\x2d\x08\x2c\x0d\x9b\xce\x00\xed\xc8\xad\x6e\x65\x92\ \x55\x31\x90\xd0\x9e\xf4\x38\xf1\x23\x87\xd0\x80\x54\x64\x03\x0c\ \xfc\xf4\x67\x3f\x93\x9b\x0a\x14\xbc\xe1\x0d\xc1\x78\xeb\x7b\xb6\ \xa0\x07\x7f\x3c\xa3\x2b\x08\x02\x54\x5b\xe8\xba\x21\x3d\xbc\xa1\ \x08\xe0\xd5\x42\x0f\x9e\x91\xd0\xf0\x01\x06\x88\x5a\xd0\x82\x2d\ \xd8\x3b\x18\xc1\xe8\xc1\x42\xf1\xf5\xe5\x3e\x7e\xa9\x29\x89\x75\ \xc6\x32\x26\xd2\xaf\x68\xc0\xf8\x5f\x31\x92\x51\x63\xa5\x31\xb3\ \x40\x4a\x80\xd3\xff\x61\x73\x55\x3e\x35\xed\xc6\x1c\x2c\x2b\x09\ \x63\x84\x24\xb2\x02\x0e\xe9\x8e\x23\x02\x26\x01\x12\x58\xb2\xed\ \xb0\x48\x82\xa0\xb3\x10\xc7\x24\x9e\xf6\x74\xe4\x08\x11\xdd\x80\ \x57\x68\xc0\x0b\xfc\x34\xae\x06\x28\x69\x56\x31\xe1\xc3\x1e\xf6\ \x50\xc3\x33\xcc\x41\x95\x10\xd8\xc0\x1f\xcb\x3b\xd0\x0d\x41\xd9\ \x1f\x1e\xd6\x90\x5c\x35\xac\xd7\xbd\x7a\x10\x83\x07\x09\xb6\x2c\ \x31\x94\x03\x78\xc5\xd0\xd7\x7e\x14\xf6\xb0\x90\xfe\xe9\xa5\x19\ \xf4\xb1\x8f\x2c\x3f\xe1\x33\x25\xf2\x0c\x66\xb8\xbc\x31\x9a\xf2\ \x17\x8c\xa8\xd9\xec\x99\x87\x6d\xaa\xcf\xfa\xe0\x76\x44\xab\x87\ \xc8\xb4\x51\xaa\x9f\x3a\x78\x8e\x9c\x83\xf0\x45\x0c\xb0\x91\x39\ \x88\xe4\x04\x15\x0e\xc9\x85\xd1\x09\x48\x93\x1c\xc0\x1c\xb3\x6d\ \x81\x87\x1f\x31\x68\x42\xc3\x24\x14\xd5\x38\x74\x07\xbd\x6a\x17\ \x7a\x34\x80\x09\x30\xe6\xa7\x17\xfc\xd9\x68\x65\x98\xb5\x3c\xf8\ \x38\xab\x1a\x6e\x69\x8e\x0f\x24\xcf\xd3\x3d\x26\x5b\x7d\xc2\x32\ \x16\xc1\x2e\x34\x2b\xfe\x58\x10\xdb\x90\xf1\x20\xbe\x5c\x54\x52\ \xfe\xa0\xcb\xbd\x86\x78\xd8\x7e\xd4\xb8\xa2\xce\x78\xc2\x1b\x7a\ \xf0\x84\x5d\x67\x79\xcb\xf6\xfd\x4c\x31\x43\xc3\x31\x53\x81\x11\ \xc0\x33\x9d\xa9\xa8\x86\x2d\xb9\x50\x68\xa3\xd9\x8e\xf4\x03\x4f\ \x59\xb1\xb1\x9f\xee\xdc\xb4\xb1\xf2\x41\xca\x4a\xa6\xed\x07\x96\ \xb3\x24\x7d\x4c\x67\xea\x6a\x5b\x41\x5e\x98\x0e\x69\xea\x66\xb7\ \x88\x67\x30\x42\x79\x07\x77\x08\x5a\xc0\x07\x30\x34\xa0\x75\x18\ \x67\xd2\x0b\x51\xd3\x00\x13\x50\x80\x8f\x16\x00\xbc\x05\x3d\xe8\ \x81\x3e\x6e\x59\xcb\xad\xac\xa5\x5d\x60\x31\xfe\x9b\x5b\x1a\xfe\ \x8c\x37\xd8\x4b\xd6\x56\xb0\x90\x5e\x20\x64\xb0\x58\xce\x5d\x7b\ \x1d\xc4\x97\x7a\xe5\x60\x05\xf1\x9e\x45\x1f\x67\x3f\xfb\xae\x7f\ \x89\x5f\xc6\x6d\x39\x33\x07\x06\x20\x15\x5a\xee\x99\xd4\x90\x66\ \x0f\xab\xe9\x5f\x09\xbe\x98\x3f\xd0\x36\xf2\x0b\x03\x41\x45\x35\ \x7b\xce\x73\xd4\x16\x15\xe8\x27\xc8\xc8\xad\x92\xfa\x88\x3c\xf2\ \x11\xb6\xfc\x58\x3a\x94\x26\x51\x6e\x11\xa0\x9b\x74\xeb\x26\x74\ \x28\x80\x0b\xd6\x47\xd2\x1b\x1f\x4c\xf8\x03\x30\x22\x90\xf5\xae\ \x7b\x81\xac\xc7\xad\xf4\xbf\x5b\x60\x8f\x16\x24\xe5\xc9\x68\x0f\ \xc6\x9c\x1c\x4a\x02\xb3\x34\x1c\x50\x73\xc1\x89\xd5\x09\x15\x77\ \x46\xf1\xe5\x05\x31\xf0\xb4\x3f\x50\x2d\x42\x5b\x58\xc1\x0a\xb6\ \xb0\x05\x11\xcb\x77\x58\xc3\x23\xbe\xd7\xc1\x66\xdc\xe2\x58\xd3\ \x06\x9c\x7e\xc1\x0f\x91\x4f\x1c\x6b\x0a\x6c\x79\xd5\xd0\x14\x55\ \x34\xcf\x9f\xc6\xdc\x8e\x5d\xf8\x41\x28\x44\x07\x68\xc5\x19\xb5\ \x25\xd0\xac\x98\x1e\x84\xdd\x91\xcb\x10\x07\x72\x90\x84\x36\x1c\ \x40\x28\x30\x1d\x6d\x4d\x83\x39\x74\x18\x3d\xa1\x80\x01\xdc\x5e\ \x88\x8d\xd8\x23\xcd\x80\x08\x8a\xd0\x0c\xfe\xe0\xc3\x00\xfc\x01\ \x13\xa4\x42\xf0\x0d\x9f\xa3\xb9\x18\xd8\xa1\xc0\x00\x94\x5d\xb5\ \x58\x81\x1c\xf4\x80\x3f\x40\x41\x1a\x04\x03\x5c\x90\x00\xa9\x71\ \x45\xc3\xc5\xc0\x13\xa0\x87\x18\xa8\x87\x1e\xd8\x4d\xdc\x1d\x51\ \x79\xcd\x85\xf9\x2d\xc8\xdf\x3d\x19\x26\x0c\xd1\x79\xc9\x41\x8d\ \xa1\x57\x07\xf4\x40\xc9\x69\x0a\xe3\x70\x16\x15\xac\x11\x51\xb8\ \xc0\xfd\xe1\x02\xaa\xec\xcf\xfe\xb9\x48\x09\xe4\x4f\x28\xec\xc1\ \xb4\xc9\xd3\x10\xb8\x80\x36\xd0\x08\x2a\x4c\x1b\x37\x51\xdb\x8f\ \x98\x1e\xd0\xcd\x11\xcb\x0c\x47\x52\x49\xa0\x71\xf0\x91\xaf\x58\ \x20\x94\xf0\x42\x0b\x04\x62\x9e\x79\xa0\x6e\x81\xa0\x08\x0d\x81\ \xd4\x39\x52\x03\x9c\xe0\x1f\x0c\x00\x13\xa4\xa0\x72\x65\x52\x26\ \x69\x80\x3d\xfc\x9b\x39\x98\x83\x1a\xa0\x00\x52\x58\xe1\xf2\x3c\ \x03\x14\x40\x1f\x42\x25\x14\x80\x20\xc8\x62\xe8\x43\x07\x4c\x94\ \x1c\xc4\x00\xc1\xf8\x45\xf5\xec\x5d\xd9\x00\x0a\xbd\x80\x17\x13\ \xfe\x5d\x5d\xa8\x87\xf9\xa1\x9f\x1c\x08\x5e\x0d\xee\x03\xc3\x2c\ \x9e\x89\x68\xc6\x89\x70\x21\x51\xd8\x9f\x36\xfc\x97\x8a\x6c\x16\ \x35\xa1\x61\xa9\x54\xcc\x7f\xa9\xd9\xfe\xff\x88\x56\x09\x10\xc4\ \x01\xa1\x56\x83\x71\x0e\x1d\x56\x98\xe8\x88\x0e\x47\x40\xa0\x93\ \xf4\x91\x49\x68\x83\x05\x8a\x40\x06\xd2\x5e\xd0\x94\x23\x21\x5e\ \x55\x28\xdc\x13\xd5\xd9\xc5\x0c\xe4\xc1\x1f\xa8\x01\x13\xbc\x42\ \x3c\x46\x40\x04\x68\x1d\xa4\x69\xdd\x00\x98\xe0\xd3\x98\xc3\x00\ \x3c\x81\x3d\x80\xdc\x13\x04\x43\x2c\xcd\xc9\x16\x4c\x5f\x0f\xf9\ \x18\x60\xc0\x9a\x5d\x70\x4f\x1a\xbc\xc0\x07\xf4\xc5\xdd\x1c\x4c\ \xf9\x54\xc8\x1b\xac\x4d\x70\x65\x1c\x26\x3c\xe1\xf9\x91\xdf\x2e\ \x5e\x11\x65\x89\x06\x8a\xec\xdc\x9a\x0d\x23\x15\x5c\x8c\xe5\xe9\ \x8f\xfe\x91\x06\x69\xa4\x51\xcd\xa9\x61\x76\x44\x4e\x8d\x4c\x63\ \x35\x92\xde\x1c\x92\x53\x36\x6a\xc4\x1c\xc0\x0c\x43\x78\x63\xea\ \x00\x0b\xed\x01\x8b\x36\xb4\x40\x3b\x08\x25\x3d\x85\x02\xd4\xc5\ \x04\x2a\x8c\xc1\xee\x21\x5a\x1e\xc4\x60\x3e\xfa\xde\x2b\xbc\x42\ \x3d\x6a\x1d\x30\x64\x9d\x59\x05\x43\x0c\xaa\x01\x26\x06\x1c\x0a\ \x9c\x9d\x1e\x98\x83\x0d\x40\x5f\x7e\x00\x08\x5b\xc4\xc5\x62\xbc\ \x01\xf6\x69\x81\x3f\xd8\xc0\x43\xf2\xc5\x07\x20\x46\x62\x18\x0c\ \x91\x95\x9f\x15\xf4\x83\x44\x5d\xfe\xa4\x08\x0d\x61\x46\xf6\x55\ \x0f\xbc\xc1\x7c\x65\x91\x19\x70\xcc\x19\x85\x16\x51\x64\x87\xfd\ \x9d\x06\xaa\x1c\xdb\x49\x52\xd3\x4c\xd5\x14\x01\xa9\x19\xee\xe8\ \x44\x9b\x01\x40\x4f\xe1\x88\xc9\x20\x90\x1d\x96\x5e\x1d\x0c\x15\ \x39\x3d\x42\x4e\x92\x04\x2b\x88\x40\x1f\x2d\x49\x05\x89\xe6\x00\ \x04\xa5\x08\x0c\x40\x20\x7a\x47\x0b\x88\xc0\x39\xbe\x13\x2a\xc0\ \x1b\xef\x35\xa5\x1a\xfc\x01\x3e\xf8\x5e\x04\x30\x01\x3d\x0a\x1f\ \x3d\xaa\x01\x40\x01\xc3\x53\xaa\x41\x3f\x96\x47\x2e\xf6\x40\x61\ \x64\x03\x60\x1c\x94\x56\x04\x48\x1a\x20\x43\x10\xaa\x8d\x15\x40\ \x41\x5b\x42\x64\x2b\x9a\x45\x60\xd8\x42\x7a\xb0\x12\x5e\x82\x15\ \xf9\xf9\x65\xda\xed\x5a\x1b\x84\x16\x00\xf9\x41\x78\xb6\xc1\xb2\ \xb0\x59\xc7\x58\x16\x80\x0d\xd0\xe5\x8d\xc6\xb1\x51\x81\x0b\xd8\ \x93\x0b\x44\x23\x42\x48\xdb\xab\xc0\x11\x4d\x6a\xe6\x66\x56\x58\ \x84\x91\x81\x44\x18\x80\x36\x98\x13\x93\x4c\x42\x05\x99\x9b\x70\ \x06\x62\x0b\xa8\x66\x20\x6a\xe5\x6b\x1e\x12\x2a\xac\x63\x8a\x35\ \x80\x08\x34\x22\x3b\x54\x28\xf0\x45\x80\x54\x3e\xa2\x3c\x4e\x25\ \x13\xa4\x49\x79\x74\x00\xd1\xfe\xc8\xc1\xf9\x74\x08\xa4\xa0\x45\ \xdb\xd5\x47\x42\x4e\xd4\xdd\xed\x05\x00\x18\x4a\x2b\x26\xd1\x5c\ \xce\xe2\x76\x3e\xd2\x13\xd6\x65\x2e\x56\xcb\xff\x14\xa6\x19\x85\ \x67\x68\xad\x91\x19\x9d\x91\x68\xac\xe7\xe6\xdd\x46\x18\x52\x93\ \xcd\x89\x90\x1f\x44\xa3\x01\xba\x0a\x1c\xc5\x91\xca\x9c\x80\x0f\ \xec\x67\x36\xe6\x64\xeb\xf1\x11\xb0\x4c\x03\x8d\x98\xdb\x25\xae\ \x66\x3b\x94\x9d\x1a\xb4\x40\x83\x6a\x50\x6c\x56\x9d\xd1\xc4\x20\ \x85\x3a\x62\x55\xe6\xa6\x3c\xbe\x02\x3e\xbc\x82\x1a\x98\x95\x1a\ \x78\xe8\x50\xe0\x8e\x8d\xcd\xd2\x63\x28\x67\x77\xa5\xcb\xb9\xd0\ \x5d\x4e\x88\x5c\x0c\x08\xc3\x35\xb4\x28\x84\x44\xe4\xf8\xa0\x97\ \xdf\xcd\xe8\x57\x65\xa4\xd5\x6d\x0f\x76\x6c\xc7\x79\x76\x00\x79\ \x86\xa7\x19\x01\x90\x61\xa6\xe7\xe4\xb9\xdc\x4c\x55\x0c\x35\x6d\ \xe1\xb2\x60\x47\xfd\xd5\x43\x01\xf6\x14\x93\x8e\xaa\x81\x25\x90\ \x1c\xd5\x81\x94\x8a\x0e\x8e\x18\x5d\x72\x94\xdb\x24\x98\xc3\xab\ \x7e\xe9\x77\x9c\xc9\x25\xaa\xc1\xc3\x84\xe9\xeb\x8c\xe9\x57\x0d\ \x01\x0a\x4c\xe8\x84\x0e\x00\xb0\x3e\xa2\x9a\x62\x68\x1e\xbc\xc2\ \x1f\xe8\x9b\x06\x0c\x80\xfe\x9a\x40\x8b\x3c\xad\x8d\xc8\xcd\xcd\ \x13\xa8\x45\x73\x22\x83\x28\xdc\xa9\x3f\xd0\x9d\x4e\xe0\xc5\x63\ \x34\x91\xa1\xf0\x45\xdc\x79\x97\x93\x21\x2a\xa2\x6e\x4f\x51\x68\ \xc7\x8f\xf2\xe8\xfc\x4d\x2a\x9b\x1d\xce\xa5\x6e\x96\x4a\x96\x21\ \x00\xfa\xcf\x79\x02\xd0\x4e\xd1\xc8\x1b\x8d\x2a\x8e\x30\xe6\x69\ \xdd\x59\x94\x62\xe3\x6f\x50\xe9\x4e\x8a\xa6\x39\x60\x20\x06\xd2\ \xde\x97\x3a\x4b\x0b\x98\x03\x14\x7c\x47\x07\x1e\x25\x4c\x28\x52\ \x70\x95\xa0\x08\x68\x40\x23\x3e\x22\x3b\x30\xc1\xc5\xae\x29\x3e\ \x14\x2b\x30\xb4\x47\xbe\xa9\x41\x1e\xa8\xa1\x16\x18\x05\x0d\xa6\ \xdd\x13\x74\x62\xba\xa8\x85\xba\xf0\xa9\xac\x3d\x83\x30\xd8\x80\ \xc3\xf4\x40\x39\x18\x8a\x60\xc5\x15\x10\x65\xa4\xb8\x6e\xe7\xc8\ \x46\x4b\x51\xf8\x01\xa4\x42\x2a\x8f\x4e\xea\x9a\x59\xea\xfe\x6d\ \x16\x83\x8d\xc6\xe6\x91\x01\x4e\x61\x47\xc7\x0c\x04\x54\x88\xea\ \x7d\xda\x06\x01\xdd\x2b\x50\x3d\x98\x50\xf9\x2b\x19\xe4\xab\x71\ \x04\x25\x2f\x60\xe9\x25\x62\xa2\xf2\x95\x47\x1b\xa0\xc0\x3e\xe0\ \xc3\x13\x74\xa5\xeb\x40\x9d\x3c\x45\x2c\x3e\xfc\x41\x6a\x02\x83\ \x86\xc6\x63\x85\xbe\xfe\x42\x1e\xd4\xed\x2b\x00\x94\x8b\x65\xc3\ \x1f\x34\x00\xf6\x75\xc0\x3f\xa2\x80\xf9\x44\x2b\xdd\x24\x4a\xb5\ \xaa\x85\x3f\x2c\x85\xac\xe9\xc3\x07\xb4\xa8\x33\xec\x83\x16\xbc\ \x01\xa0\x5e\xc5\x45\x29\xcc\xb5\x06\x91\x8c\xe6\x2c\x8d\x3e\x59\ \x07\x2c\x85\xb9\xa6\x6b\x79\xfe\xe8\x33\x1e\x26\x4a\xca\x14\x1a\ \xbe\xc8\xe6\x35\x9b\x3c\x41\x4e\xbd\xba\xe1\xbd\x46\x6d\x28\xbc\ \x2e\x2b\xdc\xa7\xe7\x78\x1b\x67\x16\x15\x95\x02\x68\x49\x88\x40\ \x96\x02\xa2\xac\xda\x03\x71\x5a\x4b\x57\xca\x41\xda\xb2\x9b\x00\ \x8e\x50\x23\xcd\x40\x03\x98\xe0\x1f\xa0\xa0\x6e\xc6\xa3\x86\x16\ \x2b\xf4\xda\x1b\xd4\xfc\x41\x1e\x68\xc1\x0c\xac\x8d\x1c\xb4\x00\ \x5b\xf9\xe3\x2c\x99\x0f\x8f\x79\x8d\x77\x21\x2e\x26\xe8\x83\x0d\ \xb4\x28\x00\x7c\x00\x14\xd0\xa0\x74\xc6\x65\x12\x55\x2e\xce\x62\ \xee\x45\xd6\xe8\xe6\x7e\x81\x16\xfc\x0f\xd0\x92\xa7\xc6\xfc\xe8\ \x8f\x9e\x06\x6a\x28\xe6\xe5\x2d\xa6\xb4\x09\x6d\x92\x86\x82\x1b\ \xf6\x54\xec\xba\xee\xeb\xc2\xee\x01\x5f\x5b\x94\x1a\xd5\x09\xe4\ \x64\x80\x92\x44\x6b\x66\x69\xef\x8e\x5d\x0f\x34\xdf\xc8\xe6\x62\ \x01\x3a\xec\x3f\xfe\xf0\x8e\x3d\xa9\x18\x3e\xb0\xc3\x00\xa4\x66\ \xc6\xca\x63\xf3\xb2\xc3\x2b\xb0\x43\xdd\xb2\x83\xd6\xd9\x66\x03\ \x40\x4b\x03\x3c\xd9\xb5\x70\xef\x3f\x9a\x8f\xba\x08\x88\x5e\xdd\ \xcb\x13\x68\x8b\xf9\x5e\x83\x30\x8c\x5c\x11\xbe\x68\x29\x3a\x99\ \x45\xc2\xef\x3d\xd5\x68\x52\x18\x45\xb9\x02\xd0\x51\x9c\x48\xba\ \x76\xcc\xb0\x25\xe6\x69\x08\xc4\xfe\x7d\xd6\xb4\xfd\x94\x6d\x14\ \xa0\xbd\x1e\x70\x6d\xe4\x48\x02\xf3\x40\x02\xc7\x6e\x37\x61\xed\ \x1c\x9c\x80\x44\x44\x70\x0b\x68\xc3\xd7\x7e\xe9\xd8\xd9\xc3\x3e\ \x9c\x07\x88\xea\xc4\xc8\x76\xc0\xf0\x12\x9a\x00\x86\x60\x03\x88\ \x70\x85\xce\x6d\x54\x46\xa5\xb0\x5a\xec\xc5\x6a\xc0\x01\x24\xeb\ \xc6\x36\x40\x1e\x6c\x6e\x06\x5b\xda\x33\xd8\x03\x47\x89\x42\x77\ \xf1\xe9\x10\xbc\x01\x0f\x17\x44\xa0\x5e\xc3\xf8\xa0\x4f\x60\x19\ \x8c\x5c\x9c\xd7\x12\x1a\x71\xa2\x96\x5f\xb5\x38\xaa\xb9\xfa\x40\ \xa7\xdc\x94\xb2\x59\x96\x69\xf4\xef\x34\x91\xc6\xa4\x46\xce\x40\ \xa8\x4a\x42\x2c\x04\x01\x71\x71\x02\xc3\xee\xeb\xd6\x86\xac\x30\ \xa0\x8f\x24\x09\xba\x91\x1d\xd8\x2e\x9f\xa5\xd1\x98\xe0\xa9\x0d\ \x5f\xb5\x01\xfe\xae\xbe\x8e\x6c\x96\x69\x6a\x06\x6b\x3c\xd2\x6d\ \xb1\x32\x01\x30\xa0\x20\x3b\x58\xa5\xd6\x99\xc3\x1f\xfc\x84\x15\ \x34\x80\x15\x74\xc0\x36\xcb\xc1\x3e\xfc\xe3\x60\x74\x97\x28\xd0\ \xdd\xda\xbc\x41\xf9\xc2\x09\x56\x78\xa2\xc2\x69\x32\x75\xbd\x81\ \x5d\xd6\x9d\x27\x23\x1a\x26\xd0\x6f\xa3\xba\x40\xb4\x00\x50\xa7\ \x84\xa7\x99\x59\xd6\xd1\x96\x8c\xcb\xc1\xa7\x1a\x42\xce\x2b\x47\ \x07\xcd\xcd\x86\x2c\x2f\x84\x43\x84\x02\x0f\xcc\x46\x2d\x8b\xb1\ \x4d\xce\x4a\x09\xf0\xf2\x50\xaa\x81\x26\x04\x9c\xef\x1e\x96\x3b\ \x17\xc1\x12\x2e\x48\x46\x82\x18\xbb\xf1\x80\x6c\x8e\x81\xf2\x6e\ \xdd\x09\xdb\x2d\x34\xff\x41\x20\xf3\xdb\x84\x26\x2b\x0a\x58\xef\ \x1c\x3f\x19\xf7\xe8\xc3\x22\xfb\x83\x0e\xa6\x81\x3f\x60\xe7\x10\ \xf4\xc3\x39\xc3\x49\x84\x40\x4a\x0c\x78\xc8\x11\x3d\x8a\xfa\x65\ \xcf\xfb\xc6\xf3\xae\xe6\x4e\x76\xb8\xc0\xfc\xa1\x48\x29\xef\xf3\ \x80\x1d\x8e\x19\xd2\xdc\x16\xaa\xe1\x10\x04\x10\x4f\x25\xb4\xe4\ \x3c\x84\x42\x84\xf1\x43\x70\xf5\xe6\x64\xe6\xac\x44\x84\x01\x50\ \xc1\x50\x92\xdd\x6a\xd2\xe0\xb5\x98\x42\x11\x14\xc1\xf9\x8d\x42\ \x2d\x0e\xfe\xa1\x3b\x39\x6c\x1d\xec\x6a\x1e\xa4\xa6\x06\x4c\x42\ \x59\xc1\x2d\x0a\xd7\x6d\x1e\xfc\x5e\x87\xb6\x2d\xc5\xa2\xc0\xd1\ \xe0\x03\xdf\xde\x4b\x76\xc6\xb4\x3d\x54\x59\x7e\xa0\xa5\xac\x41\ \x01\x9c\x58\x85\x30\x74\x54\xf9\xe0\xd2\x59\x24\x4a\x14\xde\x62\ \xac\xc5\xb3\x6c\x7a\x2a\x00\xed\x9c\xb2\x45\x71\xa6\x9a\x19\x01\ \x59\x4e\x4f\x69\xcc\x33\x46\x4e\x01\xfe\xdf\x42\xc4\xee\x56\x27\ \xf4\x01\xcf\x06\x18\x43\x84\xa9\x96\x00\x51\x09\x04\x49\x88\x04\ \x82\xae\x52\x7a\xd8\x42\x11\xf4\x43\x11\xdc\x43\x5b\xbb\x35\xce\ \x7a\x34\xa1\xcd\x75\x8a\x8d\xc1\x00\x50\x6c\xa4\x95\x15\xc6\xa6\ \x70\x54\xee\xb1\x0a\x37\xa5\x6d\x96\xc9\x4f\x58\x2f\x4e\x6c\x4f\ \x0d\x1e\x96\x3d\xc4\x80\x0e\xea\x83\xf6\x68\x81\x3e\xb8\x90\x7c\ \x5c\x45\x60\x98\x4f\x0d\x62\x4d\x5c\xed\x98\xa7\xd5\xd8\xa1\x62\ \xee\x5e\x82\xd7\xa1\xe9\xc4\xba\xf2\x28\x4d\xed\x5c\x8b\xc4\x59\ \x31\xda\x48\x28\x8c\x75\x9c\x09\x84\x6c\x4c\xd3\x42\xbc\x4a\x57\ \x1f\xb0\x6c\xb8\xf6\x02\xff\x08\x6d\xcf\x51\x53\x09\x62\x20\x06\ \xe1\x1d\x6b\x41\x11\xa8\xb5\x2d\x8c\xc2\x46\xfa\x1d\x26\x10\x77\ \x88\xfe\xb9\xc0\x57\x2d\xa2\xdb\x6e\x1d\x4a\x5f\xec\x1e\x63\x2c\ \x3b\x6c\xec\x60\x0b\x05\xf2\xfa\x84\x36\x3f\x99\xd5\x71\xcf\x05\ \xeb\x43\x30\x64\x85\x3d\xe8\xb6\x24\x3f\x36\x25\x9f\xef\x33\xa0\ \x9d\x3e\xe4\xa2\xc7\xd5\x89\x89\xea\x41\x3f\xc8\x26\x5e\xee\x65\ \xf9\xd9\xc2\x52\x10\x0d\xd1\x74\x76\x7d\x8b\xe4\x60\xf6\xcf\xb0\ \xbd\xf2\x41\x8c\x4c\x0b\x94\x0c\xaa\x8c\xc6\x65\x46\xad\x95\xcb\ \xc6\x43\x64\xf9\x02\xcf\x6e\x44\x2f\x78\x0b\x3c\xc1\x77\x60\xdc\ \x10\x42\xb8\x84\x8f\xc2\x28\xdc\xc3\x6f\x8f\x82\x5d\x60\xb8\x6e\ \x29\xe5\xa1\x71\xf8\xb1\x12\xf2\xdc\x86\xf8\x00\xa8\x70\x21\xe7\ \x41\x03\x98\x38\x97\xf8\x04\x3e\x0c\x73\x06\x07\xa4\x54\x54\x24\ \xdb\xc4\x80\x7b\xd0\xf8\x35\x84\x00\x14\xac\x5f\x2e\x3e\xc1\x57\ \x64\x17\x32\x28\x88\xb8\xe2\x6c\x8d\xae\x97\x9f\xf3\xac\x8e\xa2\ \x48\xcc\x29\xb9\x29\x7b\xb6\x2b\x2b\x18\x8d\xe4\x4f\x0b\xcc\x94\ \x1c\xc5\x99\xe6\x5c\x39\x93\x76\xb1\xd4\x6e\xb9\x1c\x6d\xc4\x77\ \x4c\xb4\x1a\xf8\x6e\xf6\xc8\xa2\x2d\x98\x82\x2a\xdc\x43\x0d\x50\ \x38\x9a\x17\x81\x5b\x37\xac\xc3\x86\x82\x52\xd6\x81\x3d\x2d\xe2\ \xfe\x9b\x2e\x6f\x74\xe7\x01\x74\x4b\x33\x5f\x37\xc0\x18\xf4\x44\ \x07\x48\x1d\x26\x34\x80\x2d\x60\x4b\x9f\x0b\x91\x1c\xd8\x83\x33\ \x84\xc0\x16\xa0\xc7\xf8\x2e\x2e\x8d\x5b\x05\x14\x04\x2e\x7a\xe9\ \xc3\xc0\xb4\xe2\x74\x91\xf3\x13\x16\x35\x8d\xda\x9d\xf9\xd5\x65\ \x8d\xad\x57\xb5\x44\x4b\xfd\x9a\x51\x8a\x00\x63\xfe\xea\x2f\xa7\ \xa3\xc6\xe4\x54\x4e\x1f\x05\x65\x80\x52\x01\x94\xfe\x94\x1c\xe1\ \x08\xaa\x5c\x66\x7f\x07\xb8\xe6\xe4\x0f\x2b\x8c\xf5\xd0\x51\x41\ \x53\x51\x81\x77\x5c\xda\x3e\x08\x5e\x5d\xfa\xf6\x5a\xd7\xfa\x3d\ \x98\xf9\x3d\x58\xfc\x28\xf0\xfa\x51\x3e\x42\x4e\x0c\x40\x35\x28\ \x22\x23\x02\x6b\xb1\x57\xe8\xef\x45\x73\x85\x82\x49\x35\xcc\x40\ \x91\x4b\x5d\x89\x69\x41\x1e\x94\x07\x76\x72\x0f\x14\x64\x83\x0d\ \xd8\x03\x78\x75\x80\x33\x74\xbb\x55\x00\x80\xf2\x00\x4c\xc8\x31\ \x3a\x5c\xda\x40\xdf\xf5\x95\xe0\xb5\xf7\x10\xe2\xce\x91\x71\x5c\ \x8d\x19\xd6\xd9\xdd\xe8\x76\x44\x3d\xfe\xa6\x88\xa8\xe8\xaf\xbd\ \xff\xd4\xb1\x05\x65\x20\x82\xba\x36\x68\x04\xd0\x65\x2d\xc0\x23\ \x78\xd6\xa2\x0c\x19\xbc\x0a\x37\x69\x35\x49\x90\xf5\x3e\xe0\xfe\ \xf6\x99\xa0\x00\x98\x67\x0f\xf9\xf5\xb6\xc5\xd7\xc0\xc5\xd3\xbd\ \x2a\xdc\xfd\xdd\xc7\xf5\x51\xce\x01\x3d\x54\x43\x3b\xdc\x31\xbd\ \x91\x7c\x08\x83\xb8\xb1\xff\xde\xb1\x52\x68\xdd\xbe\xb0\xf1\x8e\ \x10\x26\xd0\x83\xd5\x91\x47\xbd\x8c\x6c\x0f\x08\xa4\x3d\xa0\x07\ \x78\x8b\xb7\xa1\x2b\x03\xc0\x9c\xac\x5f\x36\x91\xa3\x7c\x3b\x0d\ \x62\xf4\x3b\xe3\xec\xa2\x0e\xa1\xe5\xa6\xdf\x60\x60\xf4\x1b\xec\ \xc3\xc3\xb4\xc1\x51\x30\x71\x7a\xce\x8f\x89\x28\xf9\x78\xc6\x3e\ \x8b\xb4\x80\x19\xf0\x3b\xba\x6d\xc6\x09\x98\x19\x19\xd4\xf7\xaa\ \x73\x4e\xa9\x63\xc4\x67\xa6\x7d\x39\xee\x43\x0b\x20\xbf\xf2\x29\ \x1f\xac\x81\x17\x85\xd3\xfd\x28\xdc\x7a\xf4\xab\x82\x29\xa8\x03\ \xde\xab\xc2\x40\x70\xf0\x23\xe8\xc4\xbb\xe1\x4e\x35\xa0\xc0\x88\ \x1f\xcd\xc5\x8a\xb8\xc9\x53\x2c\xc9\xab\x70\x9e\x6f\xae\xe3\x17\ \x8d\x16\xc4\x70\x1e\x6c\xf3\xf6\x88\x9c\x3d\xb4\x81\x5d\xc8\x41\ \x8b\xf1\xbc\x55\x28\xc3\xf8\x9c\x6c\xda\x55\x99\x14\xa9\x1f\x40\ \xe8\xd3\xa3\xc7\xdf\x9b\x7e\x56\xac\x68\xc1\xa4\xa5\x9f\xad\x21\ \x98\xde\xbc\xb1\x25\xe7\x59\x0c\x3d\xfa\xf4\xbd\xd9\xa7\xfe\xb1\ \x47\x8f\x36\x1f\xdb\x74\xf0\xe3\xa3\x8d\x0f\x2a\x54\xf6\xec\x31\ \x43\x65\x1f\x95\x92\x7e\xfc\xb8\x80\x09\xd3\xe4\x49\x2a\xed\x5a\ \xe4\x6c\x61\xc6\x40\x8b\x7d\xed\xa8\xb4\xa0\x42\x66\x68\x51\x32\ \x40\x0d\x1c\xad\x67\xa0\xc4\x9c\x12\x06\xb4\xf5\x34\xb0\x0f\x45\ \xce\xaa\xf6\x5a\x60\x45\x21\xc7\x16\x26\x4c\xa3\xbe\x8e\xba\x57\ \x83\xac\x2a\x0f\xea\x3c\x78\x50\xb5\x96\x1f\xaa\x7f\x6f\xe1\xc6\ \x95\x3b\x97\x2e\x19\x31\x62\x86\xdc\xbd\xdb\x00\xdf\x00\x7c\x79\ \xf0\xb1\x0b\xcc\x8e\x30\xbb\x3f\x7f\x34\xf8\x25\xdc\x2e\x0f\x8a\ \x3c\x0d\xbe\xd0\xd3\x92\xa7\x71\x42\x85\x43\x86\x68\xe9\xf1\xe4\ \x4d\x5e\x2d\xcf\x42\x00\x10\x3d\x9a\x74\xe9\x0f\x36\xa0\xe8\xdb\ \x87\x51\x4e\x87\x89\x7a\x9e\x3d\x1b\x78\x31\x62\xbf\x37\x09\x8b\ \xf8\x4b\x88\xc9\x9f\x9e\x83\xfe\x90\x21\xf3\x87\x51\x75\xc7\x8e\ \x20\x4b\x7e\xb4\x49\xc5\x4c\x4a\x33\x2b\xf7\xf9\x98\x39\xd3\x07\ \x49\x1f\x2d\xdb\xb8\x3c\xb9\x4f\x28\x77\xa1\xd9\x81\xb6\x03\x7f\ \x93\xca\x89\x76\x64\xc8\x98\x97\xaa\x33\x27\x56\xac\x6a\xec\xc5\ \xdf\x1d\x76\x14\xd9\xb1\xaa\xd4\x19\x31\x62\x6a\x2d\xfe\x5b\xb7\ \x74\x01\x0c\x10\xae\x47\xf4\xd2\x8b\x9e\x6a\xfa\x1a\x40\x30\xc0\ \x28\xcb\x83\x09\x26\x10\x13\x81\x9d\x3c\xda\x19\xc0\x42\x11\x06\ \x40\x61\x86\x21\x1a\x40\x01\x85\x06\xb4\xa0\x07\x2f\x2d\x86\x90\ \xe3\x89\x60\xe4\xc8\xeb\x0d\x65\x4a\x6b\xb1\xc5\x0f\xca\xd1\xa7\ \x07\x39\xe4\xb0\xc2\xb3\x37\x62\xd3\xe3\x09\x7d\xfa\xe9\x47\x8e\ \x88\x10\xea\x4d\x22\x5b\xf4\x41\x46\x22\x8a\x64\xc3\x68\x35\xd5\ \xf6\x69\xc3\x23\x90\x4c\xca\x8e\x39\xe6\x9e\x33\x03\x3b\x90\x44\ \x12\x29\xb9\x8f\x3a\x70\xc1\x85\x0e\xda\x40\x81\x0a\x14\xb8\xdb\ \x27\x3a\x3f\xda\x68\xa9\x9d\x9f\x9a\x3c\x01\x05\xe4\x82\xd2\x49\ \x8d\xac\xd4\x50\x23\x18\x3a\xa1\xc0\xa7\x87\xae\xe8\xab\xe1\x9e\ \xb1\x02\x51\xc5\x88\x30\xd4\x51\x25\x90\x43\xed\xf9\x4f\xc0\x45\ \xe5\x62\xa5\x40\xbd\x66\xe0\x4b\x41\xc2\x5e\x69\x90\x1d\x08\xff\ \xb0\xd0\x42\x76\x06\x40\x4c\x03\x7c\x3a\xc8\x8b\xc3\x50\xef\xd2\ \x42\x8b\xad\xec\x51\x03\x0a\x39\xc4\xf8\xcc\xc5\x57\x47\x0b\xc1\ \x99\x7d\x2c\xcb\xab\x55\x39\xfc\x79\xa2\xa0\x1a\xb5\x40\xa8\x21\ \x2b\x06\xba\xcd\x96\x7e\x08\x4a\xe8\x8d\x81\x76\xfe\xcc\x68\xa3\ \x7d\x8c\xfb\xa8\x07\xed\xda\x78\xce\x4c\x96\x9a\xf4\x28\xcb\x8f\ \xbc\xcc\xb2\x83\x2f\x30\xfb\xa2\x83\x6f\x3f\x92\x83\xaa\x36\x5c\ \xf8\x02\xcd\xaa\x7c\x0a\x13\xcc\x36\xea\x08\x29\x4c\xee\x9e\x50\ \xd5\xce\x60\xee\xb4\x27\x18\x35\x9e\x41\xa1\xab\x51\x6c\xf9\xd3\ \x4f\x43\xf1\x53\x87\x50\x43\xc9\x6a\x41\x51\x46\x11\x9e\xe3\x51\ \xbc\xf8\xe2\xb4\xb0\x4b\xff\x00\x46\x83\xc3\x14\xd3\x54\x04\x0d\ \x26\xf9\xa3\x1d\xbd\x32\x9b\x41\xaf\x0e\xf0\x09\x26\x9b\x91\xed\ \x69\xa3\x44\x16\x61\x7d\xf5\x1a\x73\x52\xb4\x75\xc4\x88\x30\xba\ \x4d\x21\x5b\x6c\x31\xd5\x0a\x7f\xfc\x69\xa8\x57\x9c\xad\xb0\xc5\ \x0a\x81\x62\x7e\x82\xd9\x66\x9f\xfc\xc8\xcc\x34\xb1\x04\xf3\x5b\ \x6f\x95\xee\x40\x8b\x2f\x9e\xbe\xec\xa1\xcc\x4c\x1d\xe2\xdb\x6d\ \x31\xb3\xda\xc9\x16\xde\x04\xb3\x81\x90\xd6\x25\x13\x85\x13\xed\ \x79\x22\x55\x7d\x7e\x14\x39\x18\x89\xf8\xbd\xa7\x08\x55\xde\x5e\ \x2b\x10\x75\xe8\x36\x82\xe0\x1a\x0c\x46\x58\xef\x7f\x1c\x7d\x14\ \x41\x4d\x03\x7b\x85\x1d\x60\xb2\x51\x66\xe2\x06\x07\x10\xe1\x30\ \x0d\xc0\x98\x84\x1d\x8f\xef\xa2\x07\x33\x4c\xfe\x32\xcb\x63\x80\ \x60\xcc\xc9\x06\x0a\x7b\x9c\x7e\x02\xe5\x94\x5f\x7c\x42\x0b\xbd\ \x28\x9f\xe8\x8d\x1e\x22\xea\xc1\x0a\xca\x17\x52\xe8\x67\x61\x7d\ \x7e\x23\x67\x2d\x86\x05\x3a\xa3\xd3\x67\xb4\x36\x5c\x90\x3c\xea\ \xc8\xe9\xcc\xbe\xa0\xdc\xea\x0e\x7a\xc0\x9a\xc4\x85\x30\xc1\x6b\ \xa1\xa9\x69\x37\xf5\xae\xcc\x88\xa7\x0a\x85\xab\x5b\x0b\x89\xc6\ \x1e\x50\xb0\x87\x2a\x7b\x32\xea\x59\x0e\xb5\xed\x29\x82\x66\x53\ \xf8\x93\x7b\xad\xba\x0b\x3d\xf4\x9e\xbc\xf7\x66\x34\x88\x47\x39\ \xc4\x27\xd3\x3f\x98\xa0\xf4\x0f\x65\xc0\xd0\xa0\x9d\x06\xaa\xb1\ \xfc\x8f\x49\x26\x61\xb8\x3f\xe0\xe3\x0b\x1c\x6b\x40\x03\x3a\xc0\ \x17\x3b\xe1\x23\x3e\x28\xe8\x81\x16\xe4\xf0\x39\xd0\x91\xe6\x1a\ \xca\x78\xa0\xcb\x20\xf8\x06\x19\xa1\xee\x81\x5e\x69\x9e\x16\x8a\ \xd0\xbd\x9a\x0d\xab\x20\x5d\xb1\x82\xec\x62\x36\x23\x1a\xd5\xc8\ \x69\xeb\x92\x03\x97\xda\xd0\x9a\xe3\x91\x48\x0c\x0b\xb1\xc2\x8c\ \x48\xd4\xbc\xe4\xd5\x50\x21\x5e\xa9\x61\xcd\x76\x98\x19\x2b\xfc\ \xc8\x1e\x6f\xe0\x55\x07\x68\x64\x85\x6f\xc9\xc1\x47\x35\x1a\x62\ \xcf\x7a\x65\x8f\x6c\x90\xc0\x37\x45\xe8\xfe\x07\xf9\xd6\x72\x0f\ \x43\xd1\x8d\x8b\x81\x5a\x0b\xfb\xda\x27\xa0\x7a\x3c\x6a\x06\x79\ \xf0\x94\x1a\x22\xb6\x38\x0d\x1c\xe0\x0f\x0d\x98\x41\xa4\x06\x80\ \x31\x30\x80\x81\x17\x8f\x81\x9c\x18\x3a\x84\x02\x7c\xe0\xa3\x4e\ \x4c\x28\x5e\x12\x35\xf3\x81\x09\xb6\x68\x65\x33\x4a\xc8\x5d\x6c\ \xa1\x41\x83\x44\x44\x0e\xa3\xf3\x20\x26\x6a\x77\x10\xb0\xf4\xca\ \x14\xfa\x58\x1d\x43\xf4\x31\x9c\x8c\xac\xb0\x35\x4a\xd4\x02\xb8\ \x3a\x89\x44\xa7\x21\x6f\x87\xbd\xaa\x91\x57\x68\xc6\x27\x0f\x8e\ \xe2\x21\xa8\x54\x08\x0f\x7d\x66\xc5\xf8\x70\x85\x66\xb6\x49\x88\ \xcf\x0e\xd2\x95\x54\x7e\xa5\x08\xa2\x20\x41\x30\xc2\x40\x3e\x53\ \xa0\xc5\x50\x81\x0a\x14\xdd\xfa\xb3\x16\x0f\xb4\x25\x8c\x8b\xea\ \x9b\x5e\x14\xa8\x81\x89\x79\x4a\x9a\x89\x61\xc7\x01\x0f\x98\x38\ \x65\x64\x0c\x1f\xd5\xd8\xd0\xf3\x24\x85\x0f\x14\x30\xc1\x1e\x28\ \xb8\xcc\x27\xb5\xb0\x8f\x41\x96\xe6\x1a\x00\x70\x86\xd9\x5a\x30\ \xba\x56\xf5\x60\x57\x40\x92\x67\xeb\x12\x69\x8a\x83\x68\x61\x14\ \x20\xac\x8d\xeb\x64\xa7\x07\x46\xd6\x08\x90\x9f\x44\x62\x6b\x92\ \x38\x42\x53\x79\x30\x96\xbb\xf1\x59\xfe\xcd\xee\x02\x49\x55\xf2\ \x0b\x2c\x0b\xb9\x47\x8f\x30\xaa\x4f\x5b\x8c\xa2\x1f\xf1\xb9\x07\ \x24\x8b\xd0\xb3\xaf\xd0\x6c\x14\xfc\x2a\x42\x2a\x88\x11\x8c\xfd\ \x0c\x53\x2d\x04\x3b\x26\x32\x8d\xa9\x0e\x53\x1c\xac\x99\x73\xe1\ \x81\xcb\x38\x64\x46\x8c\x01\xc3\x42\x1a\xc0\x5f\x62\x18\x33\xa1\ \x03\xb6\x23\x42\x79\xa8\x86\xdf\x50\x60\x21\x0f\x79\xa8\x01\xcf\ \xc3\xc4\x17\xac\xf0\x8c\x75\x52\x10\x00\xca\xb0\x93\x3d\x68\x88\ \x09\x39\x6c\x12\x75\xab\x8b\xa8\x57\x4e\x68\x90\x8d\xce\xac\x36\ \xb6\x10\x43\xed\x70\x76\x1b\x26\xae\xd5\x54\x9f\x4c\xe2\x13\x13\ \xc2\x2f\x85\xda\xc2\x8a\x7c\xa2\x9d\x2a\x47\xea\x95\x91\x82\x85\ \x5f\xfd\xf0\x87\x07\x84\xc9\x9f\x7b\xd8\x42\x15\xa2\x10\xc5\x47\ \x31\x51\x04\xf1\x95\xf4\x4f\x83\xd5\xa2\x28\xc2\x10\x86\xb4\x0c\ \x33\x7d\x35\x08\x84\x16\xbb\x08\xb0\x40\x24\xaa\xa6\x01\x62\x85\ \xa8\x22\xf5\x0a\x6a\xfe\xe1\x52\x18\x53\x06\x69\x29\xa3\xa0\xa0\ \x1a\x20\x0f\x63\x10\x51\x81\x86\x60\xb9\x3a\xf9\xc5\x43\x79\x70\ \x24\xf4\xcc\x31\x55\x0a\x7e\xe0\x09\x2d\x20\x55\xa9\x92\xb8\xc2\ \x1d\xc2\xd2\x36\xe2\xf3\x4a\x5f\xfe\x7b\xc4\xa7\x9b\xe1\xac\x47\ \x45\x60\xa2\x8f\x2c\x83\x90\x15\xe6\x52\xae\xa9\x74\x5b\x8f\x2a\ \x8a\x89\x7b\x54\x54\x0c\x25\xcd\xae\x77\xfb\x69\x0b\x53\x78\xe0\ \xaf\xe4\xf3\x40\x3f\xfe\x54\x58\x0f\x14\x61\xa4\x63\xe1\x17\xdc\ \x1a\xab\x8a\xc8\x8a\x42\x2d\x85\x52\xc7\xa1\xc8\x32\x37\x2e\x02\ \x6c\x2d\x9c\xed\x2c\x5d\x6e\x3a\x84\x32\x8a\x36\x1b\xd5\x9c\x9f\ \xc4\x12\x33\x80\x76\xb0\x63\xc1\x0c\x9e\xd0\x51\x1f\x75\xa0\xbe\ \x68\x00\x8d\xe6\xa0\xf0\x2b\xec\xd1\x1a\xca\xc9\x21\x1b\xba\x25\ \x8d\x32\x68\x25\xcf\xe7\xd5\xcc\x94\x36\x22\x1d\x26\xac\xd0\x23\ \x91\x7a\x30\xc5\xbc\x42\xb1\x29\xd2\x8a\x51\xdb\xe8\x8c\x9f\xbd\ \xc2\x68\xcf\x68\x66\x05\xc5\xba\x4d\xb1\xfd\xc8\x2e\xcd\xf4\x1a\ \x96\xe3\x82\xf7\xbd\xe3\xe5\x8f\x91\xc7\x52\x84\xf1\x6e\xb7\x3e\ \xfd\x1a\x45\xdc\x1a\x6b\x8a\x41\x19\xc1\xbe\x72\x0b\x84\x65\xf1\ \x43\xa8\xf4\x05\xcc\xbf\xff\x95\x0b\x0f\x0e\x98\x87\x57\xc8\x4f\ \x9a\xa4\xdd\x63\x5f\x28\xa6\xa0\x3c\x38\x98\x31\xe4\x78\xad\x01\ \x93\x6a\x21\x35\x30\x6e\x8e\x1a\xc8\x86\x9e\x48\xd4\x03\x09\xea\ \xd6\x06\x28\xf0\x2a\xe9\x6c\xfe\x66\x10\x11\xb7\x8a\x76\xcd\x55\ \x65\x2d\x73\x59\x4b\xd9\xe9\x73\xc6\x06\x81\x62\x8e\x7b\xe4\x44\ \x1e\xab\x42\x9f\x8a\x55\x45\x43\xf4\xba\xd1\x1f\x6b\xfa\x2b\x83\ \xf5\xae\x92\xf9\xd3\x0f\xb3\x78\x60\x2c\x35\xe8\x4f\x49\xfd\x94\ \x5e\xb8\x15\x01\xb3\x91\x35\xc2\x59\xf0\x63\xcc\x43\xe5\x87\xca\ \xfd\xe1\xa2\x39\x68\xea\xe5\x7f\xf0\x63\xcd\x97\x62\x42\x99\x1f\ \x13\x66\xc3\xfc\x41\x42\xec\x30\x40\x61\x1e\xe1\xc6\x37\xdf\xa5\ \x8c\x9d\x12\xe7\x00\x3e\x07\x06\xab\xbe\xc1\x54\x72\x08\x8d\x87\ \x45\xa3\x0c\xce\xc9\xf3\x21\x36\xc3\x95\x3e\x44\x8c\xca\x14\xf7\ \x63\xb1\x0a\xe1\xd7\xb8\x71\x6c\x45\x53\x28\xb2\x36\x35\x1a\xe1\ \xb8\x8d\x18\x52\xc5\xaa\xdb\x14\x96\x56\x05\x9f\x4a\x0a\x64\xef\ \x3a\x39\xdf\x83\xdd\x28\xa8\xcb\xa7\x96\xed\x9a\x7a\x2d\x35\xe8\ \x57\xdc\xec\xad\x45\x0f\x0c\x4a\xb2\xc8\x2c\xa6\x9f\xd0\xb7\xc5\ \x2c\xe7\xda\xcb\xa8\xe0\x07\x61\x98\x20\x31\xc3\xe1\xa3\xa9\x78\ \x24\x73\x62\x28\xb4\x98\xd6\x7a\x53\x72\xaf\x3d\x50\x1e\x30\x84\ \x8f\x76\xfc\x1a\x00\x73\x54\x46\x36\x98\xa0\x8f\x6d\xf5\xe0\xda\ \xd8\x56\x46\x0b\x4c\x4c\xfe\x68\x85\x30\xe4\x09\xfd\x10\x71\x66\ \x62\x99\xcb\x1e\x42\x72\xdc\x89\xb6\xe2\x1b\x60\xbc\xee\x44\x43\ \xda\xd1\x34\x9b\xb7\x30\x45\x2d\x6a\x7c\x8b\xa5\xa4\x61\xb9\x47\ \xcf\x18\xcb\x6a\xc6\x52\x1a\xb0\x94\x36\x94\x58\xbc\x9e\x64\x61\ \xb2\xfa\x6d\xfc\x11\x58\x18\xf4\xf3\xea\x42\x19\xea\x1e\x73\xd3\ \x0f\x4c\xf1\x23\x0a\x8a\xff\x37\x14\x18\xd7\xb8\x06\xae\x19\x39\ \x9d\xb2\x31\x0f\xc9\xa6\xd0\x63\xaa\x11\x78\x6f\x8a\x41\x44\x33\ \x48\xe0\x99\x07\x30\x67\x8c\x49\xd3\x1c\xf6\xc0\x87\xa9\xf4\x8c\ \xed\x6c\x63\x55\x2f\x1f\x6c\xd5\x41\x5c\xb6\x90\x86\x2e\x56\xaf\ \xb4\xb3\x22\xb9\x73\x9c\x62\xa4\xe7\x2c\xa4\xa9\xc4\x65\x48\xc3\ \x7b\xf0\x2b\x06\x16\xbd\x43\x66\xf2\x48\x77\xdc\xb6\x2c\xf6\x6b\ \xd4\xe3\x55\x4b\x0d\xc4\x32\xd9\xf4\x22\x59\x8b\xc2\x5c\x78\x64\ \x23\xdb\x52\xb6\xcf\x0d\xed\xc8\xb4\xaf\x07\xe6\xde\xd9\xba\x1b\ \xc6\xa7\x9f\x82\x1c\x1c\xcb\xcc\xf1\xc7\x04\x7b\x0c\x80\xd9\xdf\ \xf3\xab\x31\x54\x7c\x60\x48\x53\xaf\x50\x43\x04\xe0\x23\xf3\x74\ \xee\x79\xaa\x21\x40\x41\xe6\x11\xb2\x43\xca\x3d\x8a\x76\x3a\xc6\ \x71\x90\x89\x7e\xe3\xfe\x1c\x17\x21\x22\x95\x2e\xfd\xfc\xa1\xc8\ \xcb\x1e\x93\xcf\x1f\x86\x35\x05\x5f\xfb\x0d\xbc\x1a\xcb\x16\x6a\ \xa0\xec\x4a\xed\x1e\x58\x2a\x2d\x54\xa1\xa4\xcc\x42\x14\x4c\x21\ \xbd\x16\xee\x01\x47\xc1\xbc\xd2\xc2\x03\x20\x8b\x18\x06\x86\xd2\ \xd2\x4b\x60\xa8\xcc\xbe\x0a\x65\xa6\x74\x4d\x2e\x42\x61\x00\x1e\ \x44\x03\x80\x81\x1d\x5e\xab\x8c\x80\x61\x12\x34\x40\x42\xa6\xaf\ \x41\x28\x84\xd8\x06\xa0\x01\x0a\xaf\x03\x3c\xa4\x42\xd0\xa8\x05\ \xf8\x48\x0d\xfa\x22\x18\x98\x20\x18\xf0\xa1\x91\x50\x80\xfc\xd6\ \x09\x0c\xcc\xa9\x86\x32\x43\x0e\x32\xec\x32\x1e\x45\xa2\xdc\x6f\ \xa3\xbe\x22\xd3\x86\xc5\xd0\x4c\xea\xf3\x9a\xeb\xd1\x3e\x2f\x95\ \xd4\x6d\xf5\xc6\xcb\xff\xa0\x90\xb1\x38\xad\x6d\xc8\xae\xec\x54\ \x61\xbb\x14\xce\xf6\x16\x70\x02\x0d\x2b\x99\x86\xa9\x0c\x4d\x2d\ \x2d\xd0\x62\x98\xc2\x00\x03\xd5\xa2\x7c\x4c\x4d\x1d\x30\x70\xbf\ \x3e\x30\xf9\x6a\x0a\x15\x20\x04\x18\x48\x8b\x06\x09\xcf\x41\xa2\ \x8f\x32\x38\x25\x53\x2e\x84\xd8\x8c\x4a\x72\xfa\x87\x31\x06\xc0\ \xc2\x78\x30\xa9\x34\xc0\x1c\xc8\x49\x0d\xb2\x21\x18\xcc\xc9\x0a\ \x82\x41\xf2\xaa\xfe\x4a\x5f\x6c\x06\xc3\xe8\x05\x45\x06\x0d\x2f\ \x6a\x46\xde\xc6\x2a\xc8\xf8\xe5\xb9\x8c\xeb\xdc\x64\xac\x21\x68\ \xe6\xa2\x9a\x8b\xc7\xc8\xe7\x8a\xae\xa8\xff\x1c\x90\xc9\x28\xca\ \xe0\xf6\x8d\xc7\xc8\xb0\x0c\xb5\x68\xd4\x5e\x6d\x2c\x10\x30\x2d\ \xd0\xab\x3f\xf8\xe3\xb2\xf0\x03\x0e\x05\x85\x18\x98\x71\xed\xd4\ \xa1\xed\xf0\x83\x18\x3a\x10\x3f\xf0\xa3\xcb\x42\xd0\xe2\xd2\x88\ \x09\xf2\x80\x1e\x24\xa3\x01\x2c\x67\x52\xfe\x82\x53\xa4\x09\x43\ \x28\xa6\xb5\xc6\xc0\x1b\xb7\xcf\x2f\x1e\x91\x9b\xf4\x68\xce\x78\ \x50\x64\xb2\xc1\x9c\xb4\xc0\x1e\xc0\x00\xdb\xc0\xc0\x1c\xf4\x05\ \x05\x5e\x21\x15\x82\x81\x70\xbc\xc0\x0b\xb2\xe1\x0d\x86\xab\x55\ \xe6\x0f\xc8\xe0\x0f\xa4\x0c\x02\xd3\xe2\x4f\xc6\xc4\xe7\xea\x56\ \x4f\xde\xb6\x50\xd4\x4c\xc1\xb0\x1c\x50\x7c\xfa\x45\x17\xb7\xeb\ \x15\x95\x6c\x2d\xc8\x30\x6e\xc6\x6b\x50\x6e\x0f\x01\x1d\x10\x6e\ \x8e\x2c\x8b\x10\x70\xca\x00\xcb\x08\x88\x81\x04\x06\x66\xed\xd6\ \x42\x25\x3b\xd0\xf8\xf8\xb0\x99\x50\xe1\x62\x0e\x23\xd8\xbc\xd1\ \x10\x53\xcb\x42\x88\xad\xcc\x34\x65\x7f\x28\x24\x71\x14\x07\x43\ \xda\x21\x30\xfe\x94\x2a\x9c\xee\xe5\xe5\xb0\x6a\x08\xac\xa0\xc3\ \x3c\x2c\x04\x82\xa1\x03\xac\xe0\x15\x46\xe6\xe5\xbc\x60\x8e\xa0\ \x72\xd0\x4c\x25\xc7\x48\x2a\x0a\x8f\x8b\xae\x68\x11\x0a\xb5\x8b\ \x0b\xc9\x6d\xb0\x94\xcc\xd0\xc0\x52\x9f\x54\x01\xe9\x0c\xcb\x1f\ \xea\xad\xb1\xa8\xce\xd3\x86\xb1\x7c\xd8\x90\xeb\x3c\xc0\xd5\xca\ \xb0\x08\x3c\xc0\x1e\xe0\xa6\xf6\xe4\x46\x8b\x18\x6e\x98\x8c\x80\ \x04\x48\x80\x18\xd4\x42\x01\x03\x65\x50\x8c\x2f\x19\x67\x32\x8c\ \x50\xe1\x30\x80\xa1\x7e\x1a\x44\x70\x0a\xa3\x53\x0e\x63\x71\x14\ \xc7\xc1\xd6\x2c\x71\x76\x2a\xf1\x66\x30\x52\xb6\x4f\x9c\xf4\x88\ \x04\x83\x41\x19\xbc\x80\x09\xac\x00\x2f\xe8\xd1\xc3\x94\x61\xa9\ \x98\xa0\x70\xc0\x20\x1b\xe6\xa8\x1e\x83\x01\xa7\x52\xc9\x0a\x3c\ \x4d\xaf\x7e\xec\xf3\x14\x2b\xd3\xf4\x29\xe9\x2c\x92\xde\x2c\x92\ \x17\xaf\x48\x14\xdc\x72\x16\x59\xed\x4f\xc4\x82\x00\x09\xcb\x02\ \xeb\x6d\x23\x8f\xcc\xf6\x06\x45\x1a\x1f\xd0\xbc\x48\xf2\xd5\xb0\ \xa8\x3f\xe6\xb0\xd6\xc2\x80\x30\x89\xc1\x25\xfb\xe3\xed\xa8\x71\ \xe2\x42\x30\x2e\x6a\x72\x9a\x0a\xa3\x7e\x4a\xb0\xf9\x0e\x60\x62\ \x2c\x73\xfe\x42\x7a\x4d\x71\x58\x70\x80\x16\x0c\x1f\xea\x80\x61\ \x1e\x91\x09\xfc\x02\x3e\x34\xe0\x2a\xb3\x81\x55\xc4\xa0\x03\x88\ \x30\x65\xf0\x91\x81\xe6\xac\x70\x64\xb3\x1e\x43\xa0\x33\x00\xed\ \xae\xc4\x87\x9f\x0e\x72\x14\x52\x4c\x9f\xac\xa0\xa2\x86\x25\xb0\ \x42\x6a\xb0\x68\x31\x23\xe9\x4a\xb1\xc8\xc7\x01\x03\xeb\x01\xcd\ \xd0\x4f\xc0\xce\xff\x7e\xf1\x37\xb9\x4e\xca\xb6\x33\x3a\xb1\xe8\ \x2e\xbb\xae\x7c\x04\x46\x1a\x01\xab\x3b\x59\x52\x01\xf9\x4b\x3c\ \xed\x4b\xca\x1a\xb3\x7d\x1e\x13\x31\xe8\x87\x09\x22\xe0\x47\x7d\ \xaa\xe5\x26\x81\xa7\x38\x65\x52\xe2\x73\xf1\x44\x60\x7f\x1a\x80\ \x31\xdc\x88\x43\xee\x67\x12\x99\xc0\x40\xaf\x52\x19\x5e\x61\x74\ \x86\x20\x18\xea\xb1\x08\x31\xd1\x1e\x28\x2c\x18\xec\x6c\x8e\x44\ \x23\x1b\x3a\x80\xfd\x6a\x46\xc7\xf0\x2a\xc8\xc0\xd2\xd0\x8e\x4b\ \xdd\xdc\x12\xbd\xe8\x8a\xd2\xea\x4d\xae\xe6\xad\x1f\x8c\x13\xb0\ \x92\x0e\xbd\xc6\xa2\x5f\x1c\xcb\x14\xc2\x40\x14\xca\x30\x99\xe4\ \x74\xbc\x80\x6f\x24\xc7\xeb\x38\x2d\x50\xf8\x04\x13\x03\xd5\x6e\ \x0e\x0b\xf3\xd5\x92\x89\x8b\xda\x50\xa6\xd0\x62\x47\xf7\x06\x15\ \x3a\xfe\x65\x62\x1e\xe4\x47\x11\x43\x19\x3c\xd5\x48\x09\x63\x53\ \x0e\x71\xf1\xfe\xc0\xa8\xb2\xcf\x1b\x8b\x12\x30\xe2\x88\x05\x3f\ \x45\x9c\xe8\x2c\x1b\x32\xcc\x6a\x64\x73\x9d\x6e\x6e\x9c\xb2\xe1\ \x0f\xfa\x71\x56\x5b\xce\x1c\x06\x6d\x21\xce\x0d\xeb\x0e\x92\x97\ \x68\x91\xd5\xa0\xf0\xba\x80\xf3\xba\x00\x6b\x38\x71\x53\xc9\xda\ \xd2\x38\xc9\x47\x39\x85\xf1\x4f\x26\x92\xbe\xf2\x72\x16\xbd\x2e\ \x2d\xe6\x10\xed\xea\x30\xb0\x74\xaf\x3f\x7e\x0f\x3b\xef\x92\x30\ \x59\x52\xa6\x6c\x0d\xd6\xaa\x4c\x1d\x0e\xa0\x3c\xe3\xe2\x10\xe9\ \x87\x30\x7a\xad\x53\xe7\xb3\x30\xd2\xa8\xa7\x02\xc8\x70\x66\xd0\ \x9b\x0e\x68\xc2\x78\xa1\x05\xa5\x29\x7f\xf0\xc1\x0a\xf2\x40\x64\ \x66\x53\x03\xe4\x40\xab\x06\xb4\x45\x58\x06\x05\x52\x41\x0d\x52\ \x21\x64\xfa\x53\x34\xc0\x20\x18\x7a\xf5\xae\xd0\x34\xbb\x92\xa7\ \x4d\x69\x11\x4e\xf3\x4d\xbc\xfe\xea\x0d\xc4\xc7\x8a\xdc\xf2\x63\ \x15\x4b\xc7\x60\x8c\x22\x2b\x52\x39\x09\xd0\x6d\x26\x52\x01\x59\ \x6d\x2d\xa2\x33\x25\x0b\x95\x45\xed\xb2\xa5\xf8\xe3\x5b\xeb\xab\ \x3b\xbd\xa0\x46\x5d\x16\x2d\xe8\x66\x98\x26\x75\x1a\xd4\x15\x2e\ \xfe\x08\x03\x31\xd4\xcc\x10\x25\xa6\xce\x30\x44\x1c\xcb\xac\x5f\ \xed\x75\x7f\xb2\xef\x1b\x2f\x86\x55\x4d\x0b\xef\xbc\x31\x15\xe8\ \xac\xe5\x52\x61\x08\xe8\x01\x05\xbc\x60\x82\xc0\x40\x0d\xac\x20\ \x64\x80\xc1\xf1\xee\x85\x71\x44\x43\x62\x0b\x44\xf3\x7c\xe6\xfd\ \x22\x94\xde\x40\x8f\xa4\xdc\x14\xf4\xac\x20\x4f\xaf\x6e\xde\x6c\ \x51\x14\x90\xe1\x4f\x4d\xa1\x42\xdd\x4b\x5a\x2d\x10\x50\x93\x73\ \x50\x6d\xef\xf7\x82\x2f\xd4\xea\xad\x38\x6d\xb4\x66\xd3\x0e\xb0\ \xc2\x35\x67\x83\xe9\x17\xf3\xc3\x5c\x5d\x56\x15\x80\x36\x68\xff\ \x61\xd8\x32\x05\x3e\x1d\xe4\x68\x05\x68\x7e\x18\xa7\x9a\x02\x28\ \x7f\xae\x29\xf0\x2c\x07\x43\xa4\xa9\x5e\x3d\xd5\x70\xb4\x31\x0f\ \xac\xf6\x2a\xc1\xe0\x34\x3d\x03\x1f\x0e\x76\x4c\xb9\x06\xfc\x80\ \xe1\x5e\x46\x46\x4b\x5b\xae\x36\xd3\x56\xf3\x14\x8b\xd3\x7c\x08\ \x95\xce\xb2\xb9\x88\x35\x2d\xdf\x56\xc9\xdc\x32\xdd\x40\x16\x19\ \x0c\x4b\x0f\xc2\x40\x0f\xea\x8d\x4f\xff\xc5\x02\x25\x2b\x39\x41\ \x6d\xb2\xd2\x42\x3f\x24\x4b\x01\xff\xa4\x65\x27\x72\x3f\x8c\xf1\ \x23\xb5\x55\x25\xc5\x35\x0c\x8c\x71\xca\x20\xb5\xca\x2c\x75\xfe\ \x6f\x2e\xf3\x30\xea\x07\xe3\xa4\xc9\x53\xdd\xf3\xd7\xe4\xd7\xa7\ \xf0\xe7\xb4\xda\x61\x06\xe8\xa1\x8c\x14\x87\x17\xf0\x07\x75\x0d\ \x47\x03\x98\xa0\x52\x5e\xa1\x9a\x22\x33\xe7\xb4\x40\x76\xb7\xb4\ \x34\xa4\x0d\x3e\xbc\xb4\xc0\x60\x13\x20\x67\xd3\x1e\x9a\x90\x62\ \x53\xc9\x62\xc3\xc2\x6d\x77\xac\x7b\x7b\xc4\xdf\x7c\x06\x38\xe7\ \xcf\x4e\xd3\xe0\x79\x3d\x40\x0f\xce\xcb\xd2\xcc\xd0\x2c\xb4\xb5\ \xb1\x1e\xcb\x2d\xd3\x02\xb2\x82\xc1\xb0\x92\xf5\x4f\x0e\xee\x2e\ \xa9\xd5\xeb\xd0\x82\xe1\x22\x8b\x30\xbd\x00\x03\x55\xe1\x0d\xb3\ \x95\x52\x93\x69\x7d\xf5\xc6\x7d\x23\xc6\x04\x21\xd3\x7e\x05\x88\ \x04\xa5\xa9\xc0\x3c\x55\xda\xf0\xae\x1a\x0a\xaf\x01\xc4\xd1\xe5\ \xd4\x08\xb5\x28\x23\x15\x80\x21\x02\x5e\xa1\x01\xac\xa0\x01\x30\ \xe1\xb5\x26\xc3\x6c\x47\x63\x8e\xd4\x60\xa9\x52\xc5\xce\xf0\x67\ \x8e\xae\x12\x00\xbc\x00\x05\x7a\x97\x2b\x69\xb8\xea\xd4\x54\xc9\ \x12\xf2\xea\xea\x76\xde\xc6\x8a\xae\xfa\xcf\x63\xfb\x85\x64\x91\ \x81\x18\x90\x61\x5a\x45\x01\xe9\x44\xad\xd4\x54\x94\xbe\x84\x71\ \x2d\xda\xb2\x64\x99\x31\x0c\xf8\x12\x85\x0f\x0e\xb2\x82\xfe\xc9\ \x5b\xcd\x6b\x3a\x57\x32\x67\x59\xd2\xd6\xe6\xf0\x3b\x6d\x4d\x1d\ \xac\xb1\x3c\xe7\xb7\x9a\x4c\x30\x7e\xbd\x40\x80\x1e\x04\xc1\xe2\ \x57\x80\xf2\x40\x7f\x23\xa7\x01\x06\x60\x1a\x1a\x47\x1b\xc9\xa1\ \xd7\x82\x4d\xcc\x06\x38\xcc\x5e\xa1\x52\xf2\x20\x79\x86\x40\x1f\ \xab\x32\x1b\xce\xf8\x5b\xac\xc0\x43\x0a\x38\x1b\xae\xf2\x1f\xc5\ \xf4\x8d\x87\x6b\x08\x24\x14\xc7\xfa\x25\x0c\xab\xae\xaf\xec\xcf\ \x2c\x33\x94\xa4\x6a\x69\x22\xed\x8f\xae\x4c\x21\x90\x1d\xd0\x1f\ \xc2\x20\x0d\x46\xb2\x0c\xeb\x43\xca\xa8\xf3\x87\x5d\x76\xb2\x3e\ \x34\x0d\x48\xe0\x64\x37\xf2\x3e\xee\x52\xb2\x92\xa9\x02\xa7\x93\ \x87\x1d\x37\x50\xef\xb2\x19\x6d\xcd\x14\x70\xcd\x72\xff\x21\x33\ \x55\xb9\x94\xc3\xb4\xc0\x00\xf1\x32\x31\xc5\xa7\x26\x61\x06\xb9\ \x71\xa1\xc7\x20\x8e\x0e\x47\x7f\x4f\xee\x80\x46\x21\x0f\x22\xe0\ \x04\x29\xa3\x80\xff\x11\x18\x2a\xc5\x54\xbc\xd1\x31\x1c\x03\x21\ \x3c\x84\x81\x46\xe6\x1f\xbd\x40\x03\x22\x20\x41\xbd\x80\x82\x01\ \xcd\x83\x1d\x0b\x78\xf9\x0a\x2c\xe7\x4d\x8f\xc5\x72\xa3\x48\xc8\ \x59\xc9\x2d\xa4\x26\x52\x9c\x27\x72\xbe\xd4\xd2\x3e\xfe\x0a\x0b\ \xed\x7c\xb1\xf7\x26\xd2\x1f\x2e\xcd\x97\x7e\xe9\xde\x86\x51\xe0\ \xee\xe1\x6f\xbb\xce\x5b\x19\x8e\x7c\x35\xd9\x7c\x01\xf3\x91\xd7\ \x8e\xa5\xa6\x81\x88\xf5\xc6\xe2\x44\x80\x17\x0e\x80\x17\x00\x31\ \xe3\xfa\x33\x80\x23\x26\x32\x99\x38\x7e\x81\x81\x06\x0f\x44\xd8\ \x34\x80\x17\x14\x7a\xa1\x49\xae\x01\x0a\xd8\xa4\x77\xf9\x35\x5f\ \x57\x80\x39\x0e\x44\xbc\xd1\x8b\x01\x63\x8f\xec\x25\x41\x63\xb3\ \xc0\x52\x21\x15\x10\x14\x8e\x49\xc7\xf4\xda\x86\x00\xa7\xf9\xb8\ \xae\x2b\xa6\xcb\xd2\x62\x3f\x18\x38\x7f\xf7\x1e\xde\x00\xb2\x8c\ \xb3\xff\x98\xf7\x2d\x71\xef\x24\x47\xf2\x3e\xe4\x14\x44\x27\x92\ \x30\x1d\x90\xae\xfe\xd6\x14\xfc\x64\x70\x05\x4b\x99\xd0\x4e\xb2\ \x70\x96\x30\xed\x06\x30\xb3\xd5\x6e\xce\xc7\x03\xae\xda\x9f\xe7\ \xc2\xe2\xf8\x81\x1f\x0e\x60\x1a\x26\x81\xa0\x81\xe1\xab\x21\xc4\ \x7e\xfd\x75\x06\xfa\x67\x33\x57\x55\x03\x16\x31\x72\xb8\xb1\x01\ \x7e\x4d\x80\x09\x83\x70\x0a\xcc\xae\xb1\x89\x32\x1c\x43\xcc\xf0\ \xe1\x15\x32\x6e\x36\x47\x66\x64\x52\x01\x05\xde\x20\x15\xa8\x2d\ \x6d\x69\x87\xa2\x5e\x51\xd3\x00\x50\x42\x63\x5a\xfe\xdd\x50\x4f\ \x37\x6b\xe9\x4d\x33\x54\xc7\xae\x48\x0f\xe8\x8b\x90\x45\x81\xd5\ \x52\x6d\xd4\x82\x5a\xa8\xfd\x0f\xc6\x56\x32\x18\x84\x09\xb2\x5e\ \x54\x9d\x4d\x52\x50\x80\xaf\x71\x59\xfb\x25\x3b\x59\x5b\xeb\x50\ \x1d\x50\x01\xab\xaf\xf1\xaa\xa7\xe1\xc1\x45\xe0\xb7\x67\x53\xda\ \xae\x69\x27\x07\x80\x17\x5c\x6e\x00\x5c\x19\xb9\x1b\x20\x02\x4c\ \xb0\x7e\x3c\xfc\xc3\x25\x73\xfa\x76\x79\xcc\x2e\x7a\xcc\xac\xbb\ \x89\x9b\x98\x1f\x67\xa9\x57\x69\xc6\xdc\x88\x6c\x5f\x46\xaa\x43\ \xf7\xcf\x8f\x87\x0e\xa4\x6a\x71\x6f\x5f\x11\x01\x77\x1a\x7a\x2d\ \x10\x98\xc8\xf9\x5f\x04\x2b\x5a\x7b\x8f\xbe\x18\x57\x14\x30\x10\ \x44\xe3\x9b\xeb\x8c\x60\x24\xdf\xe6\x3e\x90\x1c\x03\xe7\x90\xa4\ \x59\x12\xf8\x56\xb2\xca\x9b\x5a\x15\x42\x81\xc1\xfd\xd9\xe2\x16\ \x1c\x15\x26\xa1\xaa\xb0\xb8\x32\x35\x40\x34\x26\x61\x1b\x0d\x64\ \x10\x1f\xe4\x7d\xc7\xfa\x7d\x05\x43\x97\x17\xc4\x16\x4e\xfc\x2f\ \x5e\x41\x62\x20\x38\x98\x31\x71\xb8\xee\xaa\xea\x68\x1a\xbc\xf8\ \x49\x0c\x7b\xec\x21\xc5\x72\xc6\x4b\x36\x7a\xc5\x02\xd4\x28\x1b\ \xb0\x90\xbc\x7a\xeb\xdb\x17\x2f\x4b\x8b\x14\xfe\xce\x64\xa9\x37\ \xf8\x2a\xb0\x0e\xa7\x4c\x44\xdd\xb0\x08\x1c\xb5\x30\x49\x80\xca\ \xc5\x95\xd3\xa5\x5c\x14\xd2\x07\x05\xb8\x9c\xb6\xcd\xf3\xcb\x51\ \x81\x07\x14\x64\xd5\xc3\x1c\x0c\xda\xa8\x40\xb8\x91\x32\xd6\x7c\ \xcd\xb3\xf1\x41\xfe\xa2\x41\x0e\x48\x0b\x0e\xe8\x15\x82\x74\x97\ \xf1\xe1\xa4\x47\x5a\x4c\x5b\xce\x1e\x0a\xe8\x2e\xe4\x6a\xdf\xc0\ \x8b\xd3\x68\x3a\xd0\xd7\xf2\x39\xbf\xd0\xe9\x4a\x36\x67\x36\x4a\ \x65\x21\xeb\xb2\x77\x5a\x6f\x17\x99\xc8\xe7\xd9\x64\xff\x94\x92\ \xf9\x7b\x70\x05\xdc\x30\xff\x25\xbd\x36\xdd\x9e\x73\xf6\x1f\x3f\ \x5d\xca\x95\x7a\x00\x4a\xdd\xd4\xe9\x02\xd5\x17\x5c\x96\x0f\x00\ \x1f\xee\x88\xf0\xe8\x61\xcd\x80\x34\x32\x0b\xa3\xb7\x25\x33\xcc\ \x6c\x2b\x44\xbc\x22\x0f\xfc\xd1\x04\xed\x7c\xc2\x47\xa3\x35\x83\ \xa8\xba\xf8\x74\xbb\xf6\x6a\x17\x49\x76\xf5\x54\xcc\xb0\xc1\xb2\ \xff\x42\xd6\x58\x29\x3b\xbe\x0d\xeb\x4f\x7d\x51\xb0\x1a\xdd\x65\ \xb5\x59\x14\x74\x78\x25\xe5\x19\x0e\x09\xd5\x30\x27\x17\x3f\xc8\ \xf7\xd3\xcf\xbd\xd3\x1f\xd9\x3b\x97\x5c\x15\x44\xa0\xdd\xdd\x3d\ \x8c\xea\x60\x0c\xaa\xc1\x05\xaa\x2f\xc4\xfe\x4f\x10\x3e\xdd\x95\ \x06\xcb\x08\xd7\x31\x21\xcc\xfa\x73\xc2\x5d\xb7\x34\x5a\x33\xdc\ \x40\x88\x85\x3d\x4d\xbc\xf7\x2d\x2d\x61\xac\x47\x18\xcd\xd3\x9c\ \x8e\x0b\x91\x93\xff\x24\x9d\x22\x6f\x4f\xca\x00\x55\xd5\xb2\xc8\ \xf6\xba\x10\x03\x57\x12\x03\x29\xd0\xec\x20\xeb\xd5\xce\xe2\xec\ \x55\x12\xdd\xc5\x55\x93\x6b\x34\x93\x65\x34\x60\x0e\x40\xe6\x67\ \xbe\xb3\x70\x1b\x80\x5c\x10\xd7\xd1\x1a\x13\x00\x83\x1d\x4c\xfc\ \x31\x78\xbd\x8d\x85\x9d\x81\xed\xc1\x65\x7e\x68\x64\x69\x98\xa6\ \xa5\x79\xea\xd7\x6d\xf1\x91\xf3\xa5\xfb\xe5\x8a\x90\x8e\x7c\x3c\ \x54\xbe\xb1\xde\x17\x07\x33\x0c\xb6\x4b\x4e\x7d\xd1\x2c\xcc\xcb\ \xa8\x0b\x93\xd2\xf5\x63\x67\xb3\xd5\xd5\x7e\xaf\xd3\xa9\x9c\xed\ \xb7\x97\x18\xfe\x51\x1a\xe9\x66\xe1\xb6\x7c\xee\x61\x7f\x51\xf8\ \x81\x07\x54\x9d\x07\x82\x00\x27\x2d\x07\xc1\x34\x5a\x70\x3c\xdc\ \xaf\x5b\xce\xe8\x09\x1b\xd0\x76\xec\x15\xf9\x6a\xe9\xc3\x82\x9b\ \x33\x6a\xf4\x34\xea\xa5\x41\xed\x21\x77\x2f\xe3\xa1\x1f\xb0\xb4\ \xa8\x3b\xc3\x00\xf7\x34\xdf\xe0\xba\x90\x50\x09\x73\x84\xff\x34\ \x9e\x5b\x4a\x1d\x28\x99\x19\x19\x15\xfe\x67\xd1\x5d\xed\x3f\x3f\ \x9f\x59\x5e\xa6\x7e\x6f\xc1\x63\xbf\xfd\x11\x26\x14\x68\x9f\x07\ \xf8\x61\x1a\xd6\x18\x20\xed\xcc\xa4\xaf\xdb\xe0\x47\x83\x4c\xc1\ \xfb\xe0\x16\xab\xa4\x00\x42\xcb\x28\x5b\xa3\x46\x61\x1a\x38\xb0\ \x48\x3f\x53\x45\xac\x2c\xf4\x67\xca\x83\x29\x82\x98\x30\xdd\x2b\ \x62\xca\x54\xbf\x22\x45\xee\xd9\xba\x67\x4a\x94\xa8\x34\x22\x4b\ \x8a\x52\x85\x92\x18\x09\x51\x05\xef\x79\x40\x79\xaf\x46\x48\x0f\ \x34\xc3\x90\x20\x11\x26\x8c\xa8\x54\x61\x88\x11\x53\x87\xd2\x83\ \x91\x30\xea\x8c\x18\x21\x96\xd3\xa6\x17\x2f\x37\x97\x32\xc5\x19\ \xc6\x83\x52\x2f\x3f\x55\x15\x0d\x86\xea\x9f\xd6\xad\x5c\xbb\x7a\ \xfd\x0a\x36\xac\xd8\xb1\x64\xcb\xfe\x43\x85\x36\x2d\x00\x30\xd9\ \xd8\xe5\xc1\xa7\x01\x8c\x5c\x00\x74\xe5\x9a\xd3\x22\x26\xef\x10\ \x2d\x98\x6c\x59\x29\x62\x8b\xa0\xad\x83\x1f\x0b\x0e\x14\x8c\xb1\ \x9f\x15\x5b\x0b\x4d\xf9\xf3\xf0\xe6\x9e\xc1\x81\x19\x35\x9a\xf2\ \x38\x0a\xa3\x28\xa4\x3a\x45\x75\x36\x65\xd5\xa7\x87\x96\x19\x55\ \xd5\x28\x22\x54\x54\x48\x95\x9c\x73\xb2\x06\x6a\x95\xa6\x2a\x53\ \x46\x8d\xf6\x24\x41\x55\xe5\x52\xfe\x12\x48\x3d\x6c\xde\x5d\xd5\ \xaa\x9a\xac\x66\x8b\x1b\x3f\x8e\xfc\x78\x5a\x54\xa1\x42\x4d\x9a\ \x4b\x57\x19\xb0\x60\x28\xf0\xe6\xc5\xa4\x45\x4b\x60\xc0\x81\x11\ \x76\x0f\x2c\x79\x94\x96\x22\x10\x1b\x16\x79\xa3\xb1\x7c\x60\x5b\ \x89\x2b\x73\x47\x8d\x8c\x58\x9a\xce\x9e\x55\xab\x32\x82\xd3\x54\ \x8d\x51\xb3\x61\xde\x8f\x2a\x14\x6b\x49\xe5\x84\x13\x50\xf7\xa0\ \x84\x60\x51\xea\x14\x85\x1b\x09\x46\x78\x40\xcc\x6e\x51\xd9\x03\ \x21\x6e\x54\x19\x61\x95\x3a\xe6\x10\x97\x5c\x87\x1e\x7e\xd8\xe1\ \x72\x68\xfd\xf1\xc5\x17\x5a\xd0\x93\x57\x5e\xb6\x68\xf7\xdd\x7a\ \xeb\x19\x86\xd9\x28\x8d\x2d\xb6\x50\x63\x1a\x75\xc4\x51\x3f\xaa\ \xa0\xa7\xd1\x3d\xf7\xf4\xe3\x99\x7c\x61\xf8\x63\xd2\x82\x3d\x85\ \x61\xda\x81\x08\xfe\xa7\x53\x80\xbc\x1d\xe9\x5a\x18\xa6\x04\xa2\ \xa4\x2a\x07\xaa\x23\xd1\x7d\x37\x91\x20\x51\x18\x4b\x11\x63\x04\ \x68\x47\x35\x08\x26\x50\x1a\x72\x08\x62\x9a\x6a\xae\x59\x16\x0f\ \x75\xb8\x00\x67\x1b\x2e\x82\xe7\x22\x66\x74\x32\x66\xca\x1b\x1c\ \x29\xa4\x51\x8d\x1c\x69\xa4\xca\x43\x0c\x5d\xe4\xdb\x4d\x3a\x65\ \x24\x92\x50\x47\x85\x61\x44\xfe\x4c\xb6\x2c\xa9\x4e\x18\xf3\xd1\ \x54\xe1\x96\x3e\xf5\x84\x61\x4c\x07\x06\x32\x1b\x68\x62\xaa\xc4\ \x25\x84\x4b\x45\x95\xd1\x98\xb8\x95\x59\xd4\x01\x68\xb2\xc9\x6a\ \xab\xae\x9e\x35\x87\x01\x2d\xb4\x43\x6b\x9d\x04\x15\xc4\xd1\x45\ \x7e\x3a\xd4\x4f\x8d\x3a\x6e\x54\x59\x48\xaa\x75\xa4\x8a\x3f\x61\ \xd8\x40\x02\x49\x19\x3d\x36\x94\x4f\xc4\x78\x50\x44\x0d\x35\x2c\ \x49\x5b\x4e\x0f\x4a\xd5\xd4\x4d\x97\x66\x2a\x2d\x82\xa5\x99\xc2\ \xe0\x85\x47\x31\x05\xa0\x50\xb7\x19\xaa\x4e\x44\xd3\xbc\xca\x6e\ \xbb\xaf\x1a\x60\x80\x36\x06\xb0\x22\x47\x42\x1c\xb1\xd7\xd8\x46\ \xbd\xf6\x9a\x91\xbe\x95\x3d\x06\xd1\x45\xaa\x6c\x76\x93\x6a\x0b\ \xf9\x76\xee\xb3\xaa\x8c\xe2\xe3\x92\xa2\x0c\xc5\xa8\x93\x4f\x6d\ \xeb\x81\xb4\x0d\xbf\x84\x12\xb8\x36\xdd\x34\x54\x83\x44\xc5\x76\ \x2e\x6f\x46\xa8\x93\xca\xaa\xee\x9e\x8c\xf2\x87\xfc\xb0\xc2\x8f\ \x36\xfc\xb4\x83\x6f\x9f\xbc\x76\xba\xef\xb2\xc1\x5e\x86\x91\x07\ \xc8\x14\x6c\x59\x90\x24\x08\x53\x70\x92\x28\xd5\x70\x20\x4d\x48\ \xa9\x66\x8a\x6e\x13\xf7\xb6\xb0\x8f\xe0\x82\x36\x9b\x3a\xa0\xe2\ \xa4\x1b\x6f\x2f\xd1\x14\xfe\xa9\xc7\x23\x63\x95\x72\xd7\x5e\x83\ \x18\x0a\x0f\xcd\x85\xb2\xb2\x42\x1b\xf1\xf8\x6b\x9f\xf9\x16\x31\ \x9b\xb1\xf2\x21\x1d\x52\x30\x37\x09\xf3\x01\x4e\xd1\xfa\x28\x19\ \xd1\xd5\x46\x85\x92\x97\x4f\xf1\xe6\x13\x86\xdd\x3e\x8d\x12\x96\ \xa0\x22\x55\x35\x98\x50\x77\x4c\xae\x07\x67\x7e\x0d\x79\xe4\x21\ \x32\x37\x36\x7a\x7c\x0e\xaa\x10\x4a\x8d\x21\x1c\x8c\x28\x12\x85\ \xb4\xb1\x17\x21\x7c\x80\x24\xc3\x3e\x12\x0d\xd2\x91\x97\xa9\xa2\ \x94\xb6\xac\x65\x7a\x60\x65\x19\x1f\xc5\x1a\xa8\x4c\xa1\xaa\xb1\ \xc7\x45\x6d\x28\x79\xef\xbe\x1b\x27\x22\x2a\xfb\xc8\xe1\xd0\x1b\ \x6f\xf4\x03\x92\x6f\x26\x51\x68\x4f\x90\x2a\x7d\x40\x7a\x11\x05\ \x11\xcd\x30\x6d\x3e\x89\x12\x53\xd2\xa7\x3a\x6b\xe8\xea\x85\x77\ \x5a\x94\xb3\x3e\x65\x8b\x13\xd6\x63\x5e\x28\xd4\x24\x26\xff\xce\ \x7e\xfb\x65\xb5\xf0\x84\x3d\x6a\x40\xd1\xbc\x6f\x19\x21\x2c\x12\ \x31\xd0\x13\x13\x9e\xa6\xaa\x60\xfb\x2c\x1f\x49\xcd\x50\x09\xfb\ \x58\x50\x32\x92\x2e\x88\x71\xaf\x41\xb7\x7b\x50\xb3\x4e\x35\xb2\ \x30\xac\xcb\x7d\x14\xac\x60\x71\x42\x21\x02\x6d\xa8\x41\x1b\xf6\ \x20\x92\xe7\xa4\x22\xfe\x0c\xaa\x48\xcf\x74\x18\x19\x93\x94\x7c\ \x54\x21\x30\x11\x88\x63\x12\xc1\xd2\x4b\x40\xa3\x8e\xcd\xf4\xc4\ \x76\x4c\xb9\x1d\xa3\x56\x28\x32\x75\x70\xcd\x82\x3c\xec\xe1\x58\ \xc8\xa6\x8d\x03\x68\xc3\x1c\xc4\x00\x9a\x94\x06\x42\xb4\xff\x1d\ \xc9\x3e\xf7\x79\x5d\x01\xcd\x15\x15\xa0\x44\x64\x86\xe3\xdb\xcd\ \x6e\xa0\x72\x2e\xaa\x38\x6e\x87\x3e\xec\xa2\x17\xbd\x82\x96\x69\ \xa0\xa5\x65\xdb\x89\x88\x67\x9a\x14\x11\x13\xba\xc6\x50\x35\xb9\ \x14\xd4\xa4\x72\x29\xa5\x39\x25\x37\x6b\xd4\xd6\xc8\xec\xb1\xbe\ \x2f\xea\xf1\x8b\xcc\x11\x5b\x73\x3a\xd7\x19\x25\x3e\xc9\x35\x48\ \x71\xe0\xe1\xde\x08\xb1\x15\xce\x51\x5b\x6b\x7c\xca\x83\xb8\xb8\ \xc7\x48\x4a\x52\x2b\x22\xd2\x06\x1c\x07\x99\x93\x33\x1e\x8e\x6f\ \xf7\x1b\x4a\xc7\x2c\x74\x45\xce\x24\x4e\x27\x68\x99\xa4\x29\x4f\ \x79\x16\x11\x4d\x23\x1b\x61\x08\x46\x2a\xe4\x46\x40\x51\x40\xa4\ \x5a\xad\x91\x23\x99\x66\xd8\x20\xa8\x4c\x10\x95\xbc\xec\x25\x25\ \x95\x91\x0d\x73\xa8\x21\x18\x39\xa1\x89\xf3\xb8\x67\xc5\xdb\x8d\ \x2f\x97\x48\xc9\xa3\x2f\x9f\x39\x49\x54\x1c\xc0\x1c\x2d\x50\x83\ \x39\xcc\x61\xa9\x3b\x2a\x3a\x05\x70\xb6\xe4\x8d\x33\xa1\x09\xce\ \x53\x4e\x62\x12\xd3\x3c\x40\x37\x01\xb7\x48\x12\x40\x32\x9c\xec\ \x84\x26\x2a\xc4\x28\x46\x65\x2c\x73\x8e\x4c\x29\x65\x3b\xef\xd9\ \xce\xe0\x6d\x93\x04\xdf\xc4\xa7\x3f\x7b\x19\xbc\x7e\x82\x28\x20\ \x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\ \xf0\x00\x87\xff\xff\xff\x3c\x86\x3c\xff\xff\xff\x8c\x89\x3f\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x4c\x2f\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xce\ \xb0\xb8\xff\xff\xff\x97\xa8\xac\xff\xff\xff\xff\xff\xff\x0b\x27\ \x17\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x27\xa8\x4f\xa8\xe0\ \xff\xff\xff\xff\xff\xff\xd0\xc8\xe8\xf3\x89\xb8\xce\x68\x98\xff\ \xff\xff\x8f\x69\xa4\x0c\x28\x69\xff\xff\xff\xff\xff\xff\xf6\xa7\ \xb7\xb0\xa8\xa9\x12\x28\xe2\xff\xff\xff\x4d\x67\xf9\x22\x46\xea\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xc8\xe7\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x73\xab\xa7\xf9\xf0\xbf\xff\xff\xff\x92\xf4\ \xfc\xff\xff\xff\xff\xff\xff\xae\xa9\xf0\xff\xff\xff\xff\xff\xff\ \xee\x95\xea\xf3\x6e\x3f\xff\xff\xff\x93\x68\xf8\xff\xff\xff\xff\ \xff\xff\xf6\xb1\xf1\x4a\x4b\xe3\xff\xff\xff\x2f\x90\xc1\xfb\x8f\ \x5e\xff\xff\xff\xfa\xfc\xfa\x91\xc8\xfb\x8d\x95\xf6\xd3\x8e\xf4\ \xff\xff\xff\xff\xff\xff\x6f\x69\xe7\x38\x56\xf6\xff\xff\xff\xff\ \xff\xff\xc2\x26\x30\xff\xff\xff\x11\x78\xc9\xb1\x8f\xf2\xb5\x67\ \x5a\x0d\x38\x67\xf9\xd0\xa5\xff\xff\xff\xcf\xd9\xf2\xff\xff\xff\ \x6f\x69\x68\xff\xff\xff\xd1\xaf\xf6\xff\xff\xff\x2d\x48\x67\xff\ \xff\xff\xff\xff\xff\x54\xb7\xeb\xf2\x98\xb4\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x72\x8d\xfa\xff\xff\xff\xaf\xc8\xf7\x90\xb2\xfa\ \xf9\xd9\xed\xff\xff\xff\x8d\x37\x2e\xff\xff\xff\xff\xff\xff\x19\ \x37\xe1\xff\xff\xff\x07\x18\x64\xb2\x69\xee\x32\x4a\xed\xad\xb9\ \xf2\x6f\x78\x26\x6e\xb3\xf6\xef\x91\x90\xff\xff\xff\xff\xff\xff\ \xfb\xb7\xbc\xff\xff\xff\xff\xff\xff\x72\xe9\xfc\xff\xff\xff\xff\ \xff\xff\xbc\xe2\x8c\xff\xff\xff\xcc\x29\x67\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4f\x96\xe1\ \x93\x6e\x66\xb1\xf3\xfc\xff\xff\xff\xff\xff\xff\xd0\xf7\xfc\xff\ \xff\xff\xb6\xc8\x86\xff\xff\xff\xff\xff\xff\x69\x3d\x98\x74\x3e\ \xc4\x72\x8b\x5f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd1\x38\x67\x75\xcb\xfa\xff\xff\xff\xff\xff\xff\x77\x8b\x34\xff\ \xff\xff\xff\xff\xff\xb4\x26\x7c\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x91\xd8\xfc\xaf\xd8\xfb\xff\xff\xff\xff\xff\xff\x98\x37\xd4\ \xaf\xb7\x72\x78\xfc\xfc\xff\xff\xff\x8d\x97\x44\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x92\x98\xad\xff\xff\xff\x4e\x58\x11\xcd\x57\ \x2e\xff\xff\xff\x44\x99\xc4\x12\x36\x17\x56\x76\x1f\xff\xff\xff\ \x14\x35\x9d\x0e\x78\xa8\xff\xff\xff\xff\xff\xff\xff\xff\xff\x57\ \x76\x63\xae\x97\xab\x57\x76\xfa\xff\xff\xff\xff\xff\xff\x75\x97\ \xab\xff\xff\xff\xff\xff\xff\x92\x77\xf0\x47\x5a\xf5\x27\x3a\xe3\ \xff\xff\xff\xff\xff\xff\xf2\x78\xa7\x91\x59\xf8\xff\xff\xff\x07\ \x19\xe2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x33\x57\x62\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x36\x56\x16\xaf\x77\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb4\ \x58\x31\xb4\x57\xa2\xff\xff\xff\xff\xff\xff\xfb\xb8\x8d\x6f\x5a\ \xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x00\x00\x08\xfe\x00\x01\x08\x1c\x48\xb0\xa0\xc1\x83\x02\x8d\ \xd9\xc9\xc0\xb0\x61\x86\x85\x10\x1f\x46\x74\xc8\x70\x21\xc5\x87\ \x0d\xed\x44\x44\xa7\xca\x86\x85\x52\xa5\x6e\x88\x14\xf6\x4b\x98\ \xb0\x01\xc8\x52\x22\x13\x56\x8a\xe4\x97\x66\x5f\x54\xa9\xa2\x46\ \x0d\x9d\xae\x25\x08\x73\x0e\x5c\x82\x53\xa7\x41\x9e\xa3\x7a\x02\ \x58\x32\xaa\x28\xa8\xa0\x3b\x79\x12\x2d\x4a\x90\x68\x8e\x1c\x41\ \x85\x2e\x01\x05\xea\x29\x30\x60\x56\xaf\x6a\x05\x26\x08\x98\xae\ \x1c\x58\x8f\x8e\xaa\x8a\xb5\xe8\x54\xaa\x4f\x73\x1c\xe5\x39\x74\ \x54\xd6\xad\x58\xb9\x0a\xf2\x49\xf7\xe0\x12\x74\x17\x2b\x56\xd4\ \x98\x37\xa3\xc5\xbe\x7f\x19\x32\x53\x65\xb2\x50\xa9\x42\x86\x85\ \xcd\x42\xc6\x0c\x59\x86\x76\x7a\x7e\x49\x36\x69\xec\xd7\x80\x99\ \xe8\x50\xd9\x10\x5a\x37\xa9\xd2\x82\x9f\x7f\x12\x65\xdb\x96\x2a\ \x52\xcf\x45\x4f\x0f\x74\x2b\x08\x2a\xdb\xa5\x68\xe3\x6e\xb5\x2a\ \xa8\x75\x56\xb1\x6e\x9f\x06\x4d\x5d\x55\x6d\x6a\xa5\xb9\xc1\x82\ \xbd\x3a\xbc\x6b\xe7\xe3\x02\x43\x04\x96\x08\x51\xe3\xc4\xbc\x7c\ \x31\xf6\x75\xc8\xd1\xc6\xaf\x2e\x5b\x8c\x6d\x11\xa6\xa7\x9d\xc3\ \x95\xdc\xdb\xfe\x79\x6f\x96\xcd\x42\x36\x2d\x19\xd0\x8d\x42\xde\ \x54\x29\x67\xf7\xa2\x55\x4f\xd5\x9d\xd3\xac\xd4\xaa\xb5\x41\xb9\ \xe7\x3d\x7c\xf8\x55\xb2\xb5\xa5\x05\xd6\x5a\x63\x51\xb5\x16\x51\ \x06\xa6\x66\x96\x51\x02\xce\x26\x17\x7b\x9d\x2d\x41\xcd\x72\xcc\ \x39\x17\x1d\x45\x1a\x8d\x41\xe1\x74\x8f\x35\xa6\x4a\x48\x37\x18\ \xa6\x07\x45\xc8\xfc\x52\x88\x05\xb3\x78\x37\x98\x0d\xaa\xe0\x45\ \xcd\x7a\x10\x0e\x15\x9a\x67\x9c\x09\xe4\x1e\x4e\x40\x81\x05\xa3\ \x67\x36\x92\x36\x14\x28\x82\xc0\x22\xc8\x81\x40\x4d\x85\x95\x7f\ \x61\x81\x15\x60\x6f\x61\xed\x96\xa0\x82\x06\x1e\x85\x9b\x94\x6a\ \x21\x79\x55\x6d\x31\xd6\x95\x07\x7a\x7e\x59\xa8\x91\x09\x1b\xda\ \xc1\x0c\x4d\x63\x30\x73\x91\x99\x17\x95\xd9\xce\x17\x26\x86\x58\ \x8d\x63\xdf\x15\xb2\xc4\x0d\xa5\x04\xc0\x4c\x3b\x01\xa8\xb2\x0c\ \x3a\x5a\x2c\xb3\x23\x84\x33\xf2\x08\xda\x6e\x3b\xe5\xa6\xdf\x40\ \x06\xbe\x87\x63\x6e\x61\x2d\xb5\xdf\x5b\x0e\x76\x55\xe5\x53\x04\ \x2e\x35\x16\x94\x52\x8e\x05\x1b\x5a\x69\xc5\x55\x5c\x96\x75\xb5\ \x61\x42\x97\x16\x69\x31\x06\x5e\x79\x31\x33\x46\x3b\x35\xa1\xd9\ \x10\x33\xfe\xae\xe6\x85\x8c\x31\x37\x74\xd1\x12\x63\x0e\xe9\x71\ \x03\x4f\x37\xfc\x12\x00\x9e\x32\x05\x80\x8e\x9f\x35\x82\x2a\x28\ \x8d\xa4\x21\xe8\x1b\xa2\xc0\x1c\x0a\x1a\xa7\x97\x16\x88\x94\xb2\ \xb2\x11\xa7\x55\x57\x9c\x9a\x16\x55\x50\x09\x8a\x95\x20\x50\x51\ \x32\xd9\x20\x30\xc6\xfa\x74\x57\x46\x18\x99\xa0\x85\x16\xe8\xf0\ \xd9\x17\x33\xe8\xb4\x03\x2b\x87\x7d\x0d\x50\x08\x9d\xc2\xa8\xd2\ \x8c\xab\xc2\xec\x3a\x67\x21\x29\xe6\x69\x43\x00\x01\x6c\x56\x6c\ \xb9\x32\xc6\x07\xdf\x58\xcb\xfe\xd8\x6c\x8d\xe0\x52\x05\xae\x6f\ \x40\x31\xdc\xa9\xa7\x72\x61\x6b\x94\x69\xa3\x21\xf8\xa4\x94\xa3\ \x31\xa8\x16\x59\x94\xf6\x86\xb0\x4e\x14\xfc\x65\xc2\x18\x26\x30\ \xc3\x2e\x3a\xd0\x30\xb3\x21\xac\xe8\xc4\xca\x61\x63\x0d\x7d\x71\ \xaf\xad\x27\x35\x83\x4c\x3b\xcd\xfc\x22\x52\x88\x75\x12\xcc\xa2\ \x0d\xcb\x18\x7c\x72\x7b\x76\x39\xda\xd3\x7c\xfa\xe1\x68\x60\x7c\ \x1c\xf3\x04\x4a\xb3\x53\x16\xd8\x29\x92\x01\x32\x58\x75\x69\x23\ \x4b\x59\xb5\x53\x55\xf5\x56\xb2\xc9\x4b\xdb\x95\x8d\xca\x65\xbe\ \xec\xee\xbb\x36\x73\x98\x12\x9a\xc8\xa8\x80\xd8\x2f\xaa\xa4\x04\ \x99\xfe\x30\xf7\x86\x58\x88\x62\x01\xcc\x62\xc3\xe0\x36\x30\xa1\ \x5a\xda\x3a\x75\x1c\x71\xd4\xe0\xfa\x58\x68\x6a\x36\x3e\x89\xa0\ \x5b\x9c\x0a\x97\x95\x5a\xca\xfa\x06\xa3\xd5\xda\x46\xb9\x1e\xe7\ \x65\x93\x1c\x2e\xe2\xa2\xa1\xfa\x10\x9a\x5a\x40\x53\x93\x16\x71\ \x67\xc0\x3a\xbd\x0e\x8d\xf1\xc5\x17\x66\x7e\xc1\x52\x17\xc2\xec\ \x9b\x01\x33\x7a\xf0\x7d\x2f\x62\xb3\xfc\x8a\x27\xc1\x01\xdc\x74\ \x30\xe9\x8f\x47\x05\x9b\xf2\x45\x1e\x6c\x29\x70\x1c\x6f\x1c\x7a\ \x5a\x06\x52\x9f\x39\xc7\x32\xee\xc6\xdf\x51\x36\x06\x67\x76\xe8\ \x54\x21\x0f\x9a\x72\x15\x8d\xc1\xfa\x18\xd4\x94\x39\x1d\xbb\xb0\ \x7f\xf7\x05\x9c\x2b\x75\x61\x19\x9a\xed\xb0\xf4\x7b\x29\xc1\x0f\ \x4f\x30\x34\x4a\x8b\x8f\x90\xd3\x3f\x3a\x50\xf7\x8e\x07\x00\xa3\ \x54\x4c\x62\xda\x43\x8b\xd9\xc2\x16\x3a\x06\x35\xe9\x33\x8a\xb3\ \x0a\xf7\xda\xd2\x9f\x70\x25\xc8\x7f\x4d\x31\xdd\x17\xda\x85\x0e\ \x6a\xa0\x87\x42\x62\x1a\x03\xec\x02\xa3\x12\xc1\x0c\x00\x24\xbf\ \xf0\x4e\x06\x56\x82\x98\x10\x0d\x4c\x78\xf2\xba\x93\x0d\xfe\x84\ \xc1\xa6\x30\x6f\x72\xaf\x21\x0a\xd3\x0a\xc5\xb8\x6f\xe5\xa8\x64\ \xfe\x94\x82\x8a\x02\x15\x54\x25\xb1\xc0\xa7\x34\xb6\xd9\xdc\x12\ \x64\x03\x44\xea\xd5\xd0\x46\x14\xc0\x48\x07\x3b\x58\x93\x30\xad\ \xab\x7d\x24\x12\x21\x43\xd8\xd4\x85\x42\x0c\x80\x21\x2c\x2c\xc4\ \x28\xfe\x26\x3c\x57\x31\xc3\x0c\x8e\x7b\x22\x70\x7a\xf4\xb5\xb6\ \xb4\x27\x59\xbf\x29\xd0\x04\xcf\x72\xb5\x66\x49\x2f\x5c\xfc\xa1\ \xd8\x6b\x76\x02\x24\x8a\xc9\xc8\x4a\x93\x6a\xd8\x13\x01\xa0\x0a\ \x86\xb0\x8b\x1a\xcb\xf0\x20\x60\x5c\x66\xa6\x0d\x4d\x07\x4e\x8d\ \x61\x09\x9d\x50\xd2\x8c\x59\x1c\xc6\x30\xc4\x0b\x00\x45\x6c\x30\ \x48\xd1\x3c\x0d\x87\x38\x2a\xa0\x0d\x51\x33\x15\x39\x6e\xce\x2d\ \x61\xa1\x52\xd9\xcc\x82\xc0\xde\x7c\x4d\x28\x0c\xab\x9a\xc8\xb4\ \x22\x9c\xff\xd0\x10\x83\x5d\x40\x95\x09\xa8\x91\x0d\x6a\x80\xe9\ \x42\x7a\xb9\x22\x16\x5f\xc5\x98\x94\xa8\xc2\x6e\x21\xfa\x45\x77\ \x4c\x54\x0a\x1b\xcc\x22\x78\xaa\x70\x95\x16\x6e\xd2\x49\x1a\x15\ \x0a\x73\x52\xd9\x49\x7c\xe4\x68\x9a\xd5\x68\x45\x3f\x45\x49\xa5\ \x93\xbc\x25\x1c\xc8\x3d\xcb\x34\x07\x1a\x4b\xc6\x74\xe1\x95\x1c\ \x7c\x25\x7c\x9d\x5c\x82\x31\x1a\x32\x45\x43\x6a\xc8\x21\x1a\xfe\ \x41\xcf\x2f\x31\x72\x21\x0a\x35\x46\x25\x90\x41\x66\x4b\xda\x61\ \x1d\x1b\x08\xa3\x60\xcd\xd4\x24\x43\xd0\xe1\xac\x6a\x86\x92\x8f\ \x12\x7b\xa3\x4e\x4c\xd9\x4d\x1b\x0d\x08\x9c\xa2\x93\x5e\x6a\xd2\ \x62\xce\xa6\xb8\x52\x41\xa8\xac\x4d\x3b\x75\x41\x52\x4a\x39\xf4\ \x0d\x5a\x3c\x95\x16\x2c\x62\xbe\xc0\x38\x07\x43\x12\x79\xe4\xec\ \xda\xe1\x18\xde\x5d\xe7\x56\x26\x09\x9e\x30\x6c\x80\x49\x2e\x21\ \xa1\xa1\xd5\xec\x91\x52\xaa\x12\x15\x6b\x22\x84\x61\x0a\xca\x21\ \xf5\x1c\x08\x15\x91\x89\x8d\x52\xb7\x74\x98\x1d\xc1\x26\x08\x33\ \x78\xc0\x03\xb0\xc8\xc1\x2e\x8e\xb2\x8b\x5d\xe4\x20\xa8\x4b\x08\ \xc1\x17\xc6\xa0\xc5\x98\xa2\x03\x4c\xc3\x94\x0e\x45\x98\xf1\x92\ \xb2\x22\xc3\x02\x92\x71\xa6\x4c\x64\x62\x83\x66\xea\x62\x60\xd0\ \x40\xc7\x4f\xd3\x18\xcf\x6d\x51\xee\x4f\x47\xb4\x11\x41\xca\xb6\ \xa8\xfd\x7c\xb4\x28\x25\xe3\xe6\x82\x88\x1a\xd5\xb1\x68\x6c\x62\ \x66\x80\x86\x64\xcd\xb0\xd5\xad\x56\x45\x17\x60\xe5\x49\x34\x5d\ \x4a\x56\x47\xa6\x35\x03\xa7\x2a\x6b\x06\xa8\x51\x50\x16\x75\xe4\ \x17\xcd\x64\x91\xb0\x60\x36\x43\x02\x36\xed\x64\x4b\x29\xfe\xcd\ \x5a\x8e\xe5\xc6\xc8\x61\xf3\x46\x4e\x1d\xe7\x10\x21\xb7\x14\x3f\ \xda\xf0\x6a\xad\xc1\x8d\x63\xaf\xf0\x8c\x2b\x98\x81\xa4\xc8\x05\ \x05\x66\x1d\xca\x93\xb5\xf9\xc5\x54\x26\x40\x2b\x3e\x81\x09\x98\ \x85\x98\xa0\x5d\x65\xb2\x48\x3b\x3a\x02\x57\xc2\x1c\x06\x14\xa5\ \x68\x11\xaa\xd0\x61\x86\xc3\xd1\x25\x50\x31\x02\x0a\x0f\x99\x92\ \x13\x1f\xc5\x52\x89\x21\x13\x8e\x70\xa1\x65\x96\xc7\x55\x94\x87\ \x5c\xb1\xe3\xc4\xaa\x6a\x86\xda\x7c\xe5\x2b\xbb\x58\x6e\x50\x01\ \xa0\x02\x7c\x4a\xe4\xba\x2b\x9d\x2e\x30\xa9\x6b\x4f\x74\x94\xc9\ \x8c\xe8\x28\x98\x05\x0c\xaa\x0b\x31\xb6\xc1\x06\x8a\x7c\xc8\x8b\ \xd8\x83\x5e\x40\xc1\x67\x72\x51\x6d\x0a\x1f\x1b\xb6\x1f\x54\x96\ \x65\x63\x4b\xd5\x61\xf2\x8a\xca\x47\xae\x34\xf5\x80\x97\x0b\x70\ \x1d\xc9\x35\x60\x00\xe4\x01\x43\xce\xd1\x82\x74\xf7\xd2\xd2\x89\ \xfc\x85\x2f\xa1\x6d\xc8\xa8\x04\xd3\x8c\x8e\x70\x17\xb5\xa5\xd0\ \xc5\x2e\x02\x50\xaa\x10\xb7\xd7\xb5\xc7\x51\x71\xe4\x26\x78\xde\ \xe5\x7d\xd2\x49\x1c\x85\xcd\xc8\x7e\x73\x44\x8f\x49\x45\x9d\x7a\ \xf4\xd8\x46\x1d\x44\x63\xb0\x92\x0f\xc7\xd1\x75\xa9\xfe\x16\xa2\ \xe0\xe0\x1c\x93\x75\xc8\xe7\xc3\x2e\x5f\x18\x29\x98\x0e\xce\x84\ \x26\xd9\xb0\x41\x17\x46\x71\x63\x43\x3a\xf9\xc9\xe5\x4a\x63\x29\ \xff\xfc\x13\x69\x15\xea\x87\x12\xf3\x98\xb6\xb8\xfc\x34\x6d\x11\ \xe4\xbd\x32\x32\x92\x6b\x96\x90\x83\x21\x55\xab\xc6\x73\x1a\x32\ \x3e\xd5\xa5\x63\x0b\x5d\xb7\x05\x0e\x36\xd5\xa9\x60\xc6\x41\x0e\ \xb2\x59\x84\x76\x60\x17\x59\x59\x77\xbe\x79\xed\x8e\x1a\x16\xd8\ \x85\x0d\x34\x64\x07\xf5\x78\x18\x61\x10\xeb\x68\x84\xee\x1b\xdb\ \xb3\x34\x95\x37\xe8\x4c\x2a\xf4\x5c\xf3\x68\x5e\x5b\x2c\x2a\x57\ \x7b\xcb\x57\x6b\x0c\x00\x85\x78\xc9\x0e\xa3\x46\xc7\x33\xcc\x37\ \x6a\xb2\x3e\xc3\x6d\x53\x2c\x75\x4d\x68\xcd\x90\x53\xd5\xa4\x66\ \x7a\x29\x1f\x69\xcf\xa3\x91\x0d\x23\xa7\xc3\x27\x63\x71\x84\x40\ \xdc\x96\xd3\x6c\x0c\x4a\x97\x1a\x9b\x96\x27\xbd\x9a\xa8\x09\xd5\ \xd0\x00\xb8\x1a\xc9\x9e\xc2\xec\x25\xe4\xc1\xc1\x1b\x5c\xf5\xa9\ \xa2\xf0\x6d\x3c\x8c\xe1\x19\xd7\x56\x57\xb4\x41\xdd\xae\x75\xa9\ \xda\x22\x1a\x81\x17\x4d\xce\xba\x9c\x10\xb2\xcc\x39\x63\xd8\x83\ \x79\x13\xc7\x57\xd8\x42\xb9\x3e\xf6\x21\x54\xbb\xfe\xe3\x6d\x14\ \x69\x31\xcf\x62\xd8\x3c\xf4\xa1\xb1\x97\x6f\x58\x2c\x70\xd9\x35\ \x16\xab\xec\x4e\x0d\xed\x31\xb4\x80\x1a\xa0\xbe\xf8\x97\xb4\x30\ \x6d\x74\x30\x3c\xd4\xd1\x7d\xc6\x82\x2d\x74\x91\x54\x9b\xef\x97\ \xce\x31\x41\x0b\xb2\xe1\x06\x50\x30\x9b\x74\x45\x3a\xb9\xa2\xbd\ \xe5\x43\x1c\x55\x5a\x8f\x42\x7d\x5a\xbb\xe7\x08\x0a\x0f\x28\x50\ \x2d\x4f\xdf\x92\x09\xbe\x90\xbe\x1c\x73\xf0\xda\x16\x22\xab\x11\ \xd6\xc5\xb2\x6b\x27\xdc\x0e\x3b\xa6\x57\x86\xd2\x87\xf4\x67\x9b\ \x20\x1b\x40\x7d\xba\xb1\x80\xa3\xb8\x89\x2d\x5a\x5b\xb0\x54\xae\ \xe6\x9a\x67\x97\xb1\x14\x4a\x17\xf1\xae\x4a\xbf\x8d\x41\xeb\xba\ \xaf\x0c\xed\x9e\x1e\x83\x11\x74\xfe\x25\xca\x7b\x76\xba\xd5\x7e\ \xb6\x97\x9e\x81\x84\x35\x78\xc2\x1a\xd4\xb0\x86\xc6\xf5\x9e\xa5\ \xa7\x5d\x0a\x38\x14\x7d\xb7\x54\xa0\x6a\xc4\x2f\xe7\x90\xbd\x8f\ \x4e\x3c\xb3\x2d\x80\x0e\xcd\xc3\x3d\xba\x8e\x8f\xae\xe5\xe1\xfe\ \x0c\xa4\x4f\xc7\xee\x26\x40\x78\xa7\x79\x2f\x79\xc9\x0b\xbf\xee\ \x76\x78\x46\x36\xe4\x43\xfa\xc2\x2b\xaa\xe4\xeb\xb5\x54\xb4\x3c\ \xba\xe8\x19\xe1\x7b\x28\x13\xdd\x38\x06\xe5\xfe\x49\x71\x0c\xa9\ \x8b\x39\x48\x4f\xb3\xe6\x57\xf6\x52\xe8\xe4\x53\xfc\x5e\x8a\xae\ \x16\x8c\xf0\x85\x6e\x7c\x61\xf2\xbd\x1f\xba\x16\xac\xe1\x86\x36\ \xec\xc2\x0d\x36\xc8\x46\x17\xfe\xf7\x86\x8f\x23\x0e\x82\x96\x22\ \x16\x3d\x12\x72\x62\x06\x58\xa1\xd3\x31\x83\x55\x15\x1d\xf7\x5a\ \xd5\x94\x0d\x6a\x85\x4f\x9d\x95\x74\x9a\xe7\x17\xc1\xc7\x60\x5d\ \x32\x6d\x07\x87\x7c\x70\x67\x07\x1d\x70\x70\x63\xd0\x01\x5e\x72\ \x60\x9a\xb7\x2e\xd1\xf5\x05\x4d\xf0\x06\x4d\x21\x03\x67\x50\x0d\ \x67\xf0\x07\x32\xe0\x7f\xb8\x56\x62\x49\xd5\x3d\xbb\x11\x80\x46\ \x34\x62\x61\x06\x4b\xca\xb3\x6e\x9d\x14\x02\x2a\xf0\x05\xbf\x17\ \x81\x5f\x12\x77\x98\x07\x82\x20\xf4\x6c\x1d\x10\x7e\xc1\xd7\x7b\ \x1a\x68\x77\xe8\x10\x05\x96\xb7\x17\x19\x51\x0d\x28\x08\x00\x6f\ \x50\x04\x59\x60\x0b\xf4\x40\x0f\x23\x80\x0f\x7f\xb0\x80\x1e\x87\ \x5b\xb8\x91\x14\x0b\x72\x47\x45\x65\x35\x50\x25\x65\xcd\x57\x17\ \xc6\xa0\x2a\x6d\x66\x7e\x4d\x68\x7e\xc9\xc7\x60\x9e\x66\x7b\x1c\ \x18\x5d\x46\x68\x87\x19\x12\x70\x42\x57\x7e\x45\x97\x02\x38\x72\ \x06\x08\x10\x07\x19\x40\x88\x55\x40\x0f\xfe\x22\xf0\x85\x50\xc6\ \x57\x60\x98\x75\xd2\x27\x1f\x3b\xe8\x31\xbf\x56\x6c\x8e\xb6\x86\ \x9d\x11\x02\xa8\x26\x1d\x15\x77\x7e\xfb\x54\x5d\x1b\xb8\x89\xd0\ \x86\x0a\x7d\xa8\x87\xa4\x68\x74\x46\xe0\x60\xc8\x37\x1d\x25\x60\ \x23\x29\x60\x0b\x84\x58\x88\x85\x58\x05\xf5\xc0\x07\x2f\x98\x5e\ \x51\xe6\x34\xfb\x81\x5b\xdc\xe4\x38\x26\x07\x83\xcd\xd7\x05\xc6\ \xf0\x05\x10\xd7\x25\x15\x02\x77\x9d\xf6\x7b\x5f\x62\x84\x0a\xf6\ \x0c\xa8\x90\x19\xa5\xa8\x87\xd3\x16\x05\x1b\x34\x8a\x97\xc7\x10\ \xf5\xd0\x13\x45\x90\x0c\x55\x50\x05\x71\xd0\x8d\x85\xd8\x8d\x55\ \x30\x02\x32\x00\x75\x36\x14\x47\x21\x13\x1a\x05\x68\x1f\x07\x44\ \x68\x96\x68\x85\x85\xc4\x4f\x4d\xf8\x63\xb7\xe7\x59\x49\x87\x0a\ \x7e\xe8\x1c\xa8\xe0\x81\xd4\xf8\x8c\xcc\x31\x06\xf9\x40\x0d\x6b\ \x40\x0d\x7d\x38\x4c\x71\x50\x85\x32\x30\x02\xdb\xb8\x8d\xdd\x48\ \x88\x86\x58\x0f\x7f\x50\x85\xb8\x06\x89\xf6\x91\x3d\xb0\xd7\x3d\ \xc2\x25\x75\xed\xe8\x13\x6f\xf0\x05\xbf\x84\x7e\x75\x87\x63\x7e\ \x58\x74\x1a\x81\x0a\xbe\xd7\x1c\xf1\xa8\x87\x38\xf6\x0c\x51\x40\ \x70\xdd\x70\x4f\x69\x15\x07\x22\x30\xfe\x14\x32\x10\x0e\xc9\x40\ \x93\xaf\xa0\x90\x0b\x19\x07\xe1\x98\x02\x10\x79\x6e\x7f\x72\x7a\ \x34\xb8\x23\x15\xd3\x65\xa6\xa4\x5e\xe8\x96\x91\x03\x21\x56\xf6\ \xb8\x10\x24\x99\x4f\xc3\x07\x92\x0f\x88\x66\x24\xa9\x8c\xc5\xf8\ \x6c\x7b\x31\x81\x38\x86\x0a\xd4\x30\x79\x44\x88\x45\xf5\xf0\x06\ \x6f\xa0\x82\xe1\x10\x0e\x7c\x00\x04\x40\x90\x90\xdc\xa8\x93\x71\ \x90\x0c\x22\xd0\x93\x3c\x18\x39\x13\x09\x40\x34\x38\x5b\x16\x69\ \x52\xda\x84\x94\x39\x11\x02\xe8\x42\x92\x07\x76\x8c\x0a\x66\x81\ \x7e\x91\x8f\x4d\x89\x84\x79\xe8\x52\xb6\x87\x2e\x95\x77\x70\x80\ \x09\x3b\x55\xc0\x93\x4b\xf0\x07\xe1\x00\x04\x67\x90\x02\x7c\x10\ \x99\xc9\xf0\x0a\x87\x90\x90\xf5\x30\x02\x0f\x19\x58\x4f\xc6\x19\ \xa7\x87\x7a\xbc\xd8\x51\x5a\xa6\x0b\xf6\xa6\x13\x0a\xf1\x80\xa8\ \xb0\x7f\x35\x46\x01\xa8\x90\x11\xf9\xe8\x78\xd4\xf5\x25\xd5\xf8\ \x25\x08\x67\x7b\xf9\x38\x74\xcf\x68\x21\x79\xf8\x59\x14\x11\x0e\ \xfd\x27\x96\x7c\x30\x9c\x7c\x30\x99\x7c\x90\x04\x40\xf0\x0a\x23\ \x00\x04\x7c\x90\x02\x2e\x08\x96\xe9\x15\x9a\x43\xf9\x65\xf5\x35\ \x97\x84\x45\x40\xf3\xf4\x7b\x21\xfe\x30\x60\x21\xf0\x9a\x15\x91\ \x8f\xb4\x66\x95\xa4\xd2\x3e\xa1\xa8\x81\x1d\xd0\x01\xcf\x40\x95\ \x57\x19\x82\xc5\x88\x7e\xd5\xd8\x3e\x9c\x09\x96\x29\x10\x0e\x49\ \x30\x99\xce\x29\x03\x7f\x90\x02\x29\x70\x06\xc5\x39\x99\xcf\xe9\ \x96\x11\xa2\x8e\x85\x55\x6c\xb0\x57\x4a\x80\x77\x3c\x6d\xd0\x3e\ \x9f\xd0\x88\x69\xf3\x06\xde\xc9\x94\xe1\x29\x9e\xc4\x38\x42\x70\ \x37\x98\x16\x92\x8f\xbd\xf9\x97\x2f\xe5\x25\x64\x15\x9e\xbe\x99\ \x17\x8d\x19\x96\x94\x29\x02\x7c\x80\x0f\xfa\xe9\x9c\x60\x19\x96\ \x32\x20\x03\x29\xda\x7f\x0c\x5a\x68\x91\x38\x23\xf3\xa1\x1a\xef\ \xa5\x6e\x05\x01\x84\x7d\x91\x93\x71\x90\x05\xd5\x40\x01\xbe\x58\ \x7a\x25\xd0\x1c\x82\x59\x95\xb3\xb9\x98\x5d\x22\x8a\x1b\xca\x81\ \xa8\x60\x04\x21\xb9\x9e\x76\xb8\x84\x46\xfa\x92\x23\x90\x02\x45\ \xc0\x9f\x67\x60\x9f\xc3\xf9\x90\x43\x01\x96\x4b\x90\xa2\x2b\xca\ \xa2\x00\x6a\x2e\x3b\x98\x30\xab\x41\x1f\xb6\x35\x32\x1d\xd7\x67\ \x17\x11\xa2\x4a\x71\x03\x32\x40\x99\x14\xd0\x7f\x35\x24\x8c\x2f\ \x15\x5d\xe0\x29\xa1\xeb\x49\xa1\x64\x35\x98\xfd\x38\x90\x20\x49\ \x74\xb6\xd7\x89\x1f\x7a\x11\xfe\xb6\x30\x02\x67\x20\x02\xfc\x79\ \xa2\xc5\xd9\x99\x5e\xaa\xa2\x55\x3a\x99\x45\xe0\x23\x5d\xea\xa2\ \xc5\x22\x72\x47\x65\xa6\x43\xe1\x4e\xa6\x19\x62\xd5\xb0\xa6\xc9\ \x70\x06\x38\x72\x23\x73\xf2\x06\x5b\x10\xa6\x4b\x93\x07\x48\x37\ \x06\xaf\x59\xa1\xbb\xf7\xa7\x72\x37\x92\x93\xa7\x8c\xce\xe1\x0d\ \xea\x49\x2a\x49\xfa\x89\x44\x37\xa8\x79\x11\x07\xb6\x30\x9c\xfc\ \xd9\x9c\x7f\x60\xa2\x7f\xf0\x90\x6f\x4a\xa2\x27\x2a\x02\xc9\x39\ \x96\xe3\x38\x10\x6f\xe0\x04\x5f\x20\x98\x5f\x50\x02\xc6\x10\x02\ \xeb\x71\x29\x89\x33\x91\x3f\x02\x0b\xa6\x89\x10\xc2\xd8\x10\x71\ \x40\x0f\x29\xb0\x2b\x22\x06\x1a\x35\xd4\x05\x74\x8a\x71\xb8\x17\ \x9b\xec\x39\xa1\xaf\xaa\xaa\xdc\xc6\x9b\x5d\x49\x8a\x6c\x27\xa8\ \xba\x7a\x11\xdd\xe8\x04\xc5\x69\xac\xc3\x8a\x9f\xf3\x79\x93\x97\ \x29\x02\x22\x10\x99\xaf\x00\x04\x63\x19\xa9\x3b\x11\x0e\xaf\x18\ \x3b\x9f\x30\x13\x36\xb0\x0b\xe6\x02\x80\xca\x85\x78\x07\xd1\x05\ \x0e\x41\x0f\x2e\xba\x86\x12\x62\x77\x24\xf9\x66\x78\x9a\x56\x5f\ \x82\xa1\xf2\xc8\x81\x16\xe8\x1c\x85\x69\x8c\xd0\xb0\x52\xef\xe9\ \x9b\x71\x80\x0a\xf5\xf0\xfe\x09\x4e\x30\x99\x57\x7a\x9f\x2a\x98\ \x96\xdb\x38\xb0\x40\xb0\x9c\x03\x1b\x0e\x2c\xba\x13\x67\x50\x0f\ \x09\x8b\x98\xcc\x60\x01\xac\xf9\x3f\xc9\x72\x16\x51\xb5\x91\x0c\ \x11\x07\x23\xf0\xa2\x9d\xd4\x06\x5c\x12\x79\x82\xd9\xb1\x1e\xcb\ \xaa\xd1\x81\x95\x7f\x59\xb2\xa9\xb6\x2e\x29\xfb\x59\x76\x10\x07\ \x25\x50\x0d\x23\x40\x01\xd5\xc0\x07\x23\x30\xb6\xce\x59\x04\x22\ \xf0\x0a\x39\x59\xb3\x04\x1b\x0e\x57\xba\xb3\x03\xa1\x82\x3e\x3b\ \x1d\xcc\x60\x0c\xbb\x70\x94\xf6\x65\x10\x6f\x60\x0c\x71\x30\x06\ \x71\xc0\x07\x94\xda\x23\xa4\x87\xaa\xeb\xb9\x32\x07\x37\x7c\x4d\ \x3a\xb5\x64\x05\x82\x1a\x1a\x26\x24\x6b\x95\x51\x8a\x45\xcb\x11\ \x07\xf5\xd0\xa3\x2b\x98\x05\x9f\x90\x05\x53\x5a\x04\x94\x39\x02\ \x37\xc9\x8d\x35\x3b\x96\xc0\x0a\xb7\xcc\x1a\x96\x3d\xfb\xb3\xd4\ \x91\x07\x6d\xf0\x71\xea\x55\x10\x14\x00\x84\x16\x2b\xaa\xbb\x22\ \xae\x82\xdb\x49\x5d\xa0\x0a\x68\x95\x74\x0e\xe6\x81\x52\x3b\x4c\ \x23\x99\x9b\xb6\xea\xb8\x1c\xb8\x8f\xf5\x0a\x18\x18\x82\x00\x25\ \x40\x01\x67\x30\x02\x9f\xb0\x99\x14\x30\xac\x7f\x70\xa8\x67\x40\ \x93\xb6\xf0\x0a\x35\xfe\x49\xb0\x7c\x40\xac\xd0\x49\xae\x8f\x59\ \x0f\x7d\x31\x3b\xaa\x3b\x2d\x6a\x88\x7d\xa0\xf1\x06\x62\x1b\x07\ \xa0\xea\x1e\x43\x23\xbb\x78\xbb\x34\xa3\xc0\x27\x1c\xea\x7e\x2d\ \xc9\x84\x1f\x39\xa8\x70\x87\x0e\x78\xd0\x4f\xeb\x8a\x66\x89\x5b\ \xbc\xb0\x39\xb9\xa8\xf0\x09\x25\x80\xbc\x59\xf0\xbc\xf9\x19\xb3\ \xc3\xfa\xab\x87\x4a\x96\x2d\xb8\xa2\x5c\xea\x3c\x4b\xc0\x07\xa8\ \x9b\x01\xc8\x3b\x3b\xc6\xa0\x02\x5d\x90\xc1\x43\xfb\x13\xd5\xf0\ \x09\x3d\x8a\x0f\x6f\xe0\x2f\xea\xbb\xbe\x24\xdc\xbe\x08\x33\x0a\ \xd9\x80\x7c\xcf\x70\x73\xd6\x80\x8a\xd3\x26\x7e\xf5\xaa\x11\xa7\ \xd8\x89\x1a\x71\x9b\xc2\x1b\x92\x91\xeb\xbb\x08\x00\x42\x49\x1b\ \x07\xd5\x40\xa5\x32\x40\xb6\xcd\x89\x9f\x44\xcc\xa2\xd0\xeb\xc0\ \x29\x7a\x3c\x3c\xf1\x06\x12\xdc\xb5\x71\x80\xbc\x9f\xf0\x05\x08\ \x80\x0a\x5f\xf0\x09\x16\x40\x01\x79\xb0\x04\x5d\x50\x2c\x2a\xf0\ \x9a\x08\x90\x05\x5b\x90\x14\xb3\x3b\x34\x22\x31\x27\x73\x52\xc6\ \x26\x0c\x2a\x16\x10\xa1\x1a\x81\x0e\xa0\x77\x6a\x2f\x9c\xab\x1f\ \x8a\x71\x93\x57\xb5\xd0\xc6\xa4\x47\x28\xc7\x31\x85\x63\xf6\xeb\ \x9d\xbf\x47\x0f\xfe\x2c\x48\x01\xcc\xbb\xa8\x0e\xec\x1e\x49\x3c\ \xa9\x17\x2b\x62\x37\xc2\x9f\x7f\xa0\xbc\x62\xdb\xc1\x9f\x60\x0c\ \x3d\x4a\x01\x94\xbc\xc5\x42\x11\x02\x9f\xb0\x90\x7c\xb0\x05\x9f\ \x44\xc6\x9e\x3c\xc6\x68\xfc\xa3\xc7\xd1\x04\xbb\xc7\x2e\x04\xd7\ \xc2\x1f\xc8\xc6\x73\x0c\x7e\xe8\x80\xc7\x7b\x71\x8a\x8c\xdb\xb8\ \x2e\x55\x74\x63\xa5\xab\xef\x49\xb9\xd5\xc0\xa3\x23\x10\x9f\x5c\ \x6a\x17\x2d\xea\x38\xbd\x9c\x14\xfd\x17\x96\x6f\x30\xac\x29\x40\ \x01\x7c\x30\xc9\x9f\x30\x00\xd5\x20\x03\x37\xf0\x06\x21\x50\x0d\ \x08\x30\xcd\x59\x30\xac\x5b\xc0\xc9\x66\x3c\xbb\x67\x4c\xc6\xdb\ \x6c\xc6\xa2\x1c\x2a\xb5\x87\xab\xd7\x45\x70\xec\xc7\x95\xf4\xea\ \x9b\x5e\xd2\x81\xa3\x28\x11\xcf\xe0\xca\xd3\x95\xa1\x1c\x32\x06\ \x51\x60\x8f\xf6\xdb\x3e\xdd\x38\x02\x59\x90\xcf\x29\xc0\xa2\xa4\ \x5b\xbe\x21\x2c\xa9\xc1\xac\xb7\x21\x0c\x96\xcf\x5c\xcc\xc7\x9c\ \x05\xcc\x8c\x0f\x21\x40\x01\x99\xfc\xc4\x54\x38\x27\x5b\xf0\x07\ \xa5\xea\x2f\xa0\xbc\x05\xdc\xbc\xbe\x69\x7c\x6e\x6b\xf3\x6c\xf2\ \x8c\x73\x67\x07\xc3\xf6\x8b\x84\x4d\x78\xce\xb4\x59\x74\x79\x81\ \x0a\x25\xd0\xfe\xad\x73\x9c\xb2\x0b\x39\xcd\x86\x8a\xa2\xa6\x2a\ \xaa\x11\xc2\xa2\x52\x41\xaa\xc1\x4a\x01\xf8\x40\xc9\x98\xdb\x8d\ \x59\x90\x02\x16\x4d\xaa\x5b\xe0\xcc\x2e\xea\xc9\x16\x7d\xd1\xde\ \xcc\xb4\x9d\xd1\x06\x2d\x80\xb2\x69\x17\x7a\xe9\x33\x79\x88\x6b\ \xcb\x49\x67\x02\x58\x6b\xb5\x0f\x71\xce\xd5\xb5\xa7\x80\xd9\xbf\ \x39\xbc\x90\xae\xb8\xa3\x23\x10\x0e\xfb\x7c\xc8\x4b\x6c\xc8\x30\ \x38\xd0\x52\xd1\xa5\x13\x7d\xcd\xf8\xc0\x07\x03\x90\xb9\x25\x1a\ \xac\x5e\x58\xaa\x9c\x4c\xc6\x45\x7d\xcd\x24\x2c\xc2\x48\x5d\x17\ \x28\x1c\x5a\x75\xd7\xd1\x93\x67\x6d\x7a\xcc\xb5\x24\xeb\x9e\x87\ \xd9\x1c\xfd\x2b\x92\xf8\x98\x9b\x55\x9b\x93\xa8\x10\x07\x9b\x98\ \x11\x2b\xdb\x8d\xb6\xf0\xd5\x94\x3d\x88\x71\xf0\x0a\xf4\x90\x0c\ \x23\x50\x9c\x32\x9b\xa2\xcf\xbc\xc4\xc3\x4c\x17\x05\xfd\xcc\xe2\ \xca\x2b\x22\x7c\x03\xd7\x9c\x02\x39\xed\x85\xc1\xea\xd3\xf8\x50\ \xaa\x21\x6c\xda\x9f\x6c\xd4\x22\xbc\x34\x6d\xc0\x32\x92\x47\x71\ \xf9\xb4\xbb\xa7\x68\x04\xf5\x8b\xce\x49\x67\xc3\x88\xad\x9b\x83\ \xed\x89\x15\x61\x02\x25\x50\x02\x4b\x49\xd9\xa8\x80\x0a\xbe\x80\ \x0a\xa9\xfe\xf0\xdc\x2e\x05\xd9\xcf\x8d\xd2\x25\x50\x0f\xcb\x9d\ \xdd\x71\xe0\x0b\xf5\xb0\x99\xe1\xb0\xcb\xbb\x4c\x96\xcd\xe9\x9c\ \xd6\x8c\xc4\x2d\x1a\xb8\x07\xf1\x06\xfb\x69\xde\x9d\x79\xc6\x6d\ \x0a\xd1\x5b\x80\x0f\x73\x3d\xdf\xf4\x1d\xdb\x45\x2d\x12\x16\x9d\ \xdf\x9e\x7c\xd4\xdf\x9c\x13\x3c\x20\x74\xa2\x46\xbf\x08\xa7\x76\ \xa8\x78\xdc\xe4\xc9\x9b\x16\x8a\xa7\x89\xfd\x7b\x3b\x66\x07\xee\ \x80\x05\xcc\xdd\xb5\x2c\xfb\xdd\x08\x90\x0a\x53\xfc\xd8\x3f\xc6\ \xb2\xd8\xed\x0e\xd5\xe0\x0e\x23\xf0\xb2\x45\x50\x04\xc6\x4c\xa5\ \xfa\x69\x9f\xfe\xc9\xda\x12\xbd\xe2\xc4\x9c\xc4\x89\x0c\x1a\xf3\ \x69\x96\xf4\xc9\xda\xd8\xdc\xa5\xa1\x5c\xd0\xd7\xbc\xda\xf7\x3d\ \xd1\xb5\xfd\xc9\xfe\xbd\xd7\x3a\xd1\x06\xd9\xd0\xa1\xbc\x9b\x74\ \x06\xb7\x7b\x5b\xfb\xa7\x70\xa7\x98\x87\xc9\xae\x09\x5e\xb5\x28\ \xdd\x04\xcc\x0d\xdd\x23\xe0\x0e\x4e\x80\x05\x23\x50\x02\x77\xb0\ \xdc\xf4\xfc\x9d\x25\xe0\x04\xd5\x00\xe6\x2f\x5b\x0d\x45\xe0\xe2\ \x60\x09\xa6\x5f\x4a\xc4\x2e\xb8\xe6\xf8\xb9\xaf\xe9\xfd\xe2\x36\ \x22\x03\xc8\x69\xbd\x32\x9e\x04\xe1\x3a\x14\xb4\x0d\xda\xbc\x42\ \xaa\xfe\xf8\x90\x04\xf4\x7d\xcd\xb3\x1d\xc2\xfc\x5d\xc2\x37\x72\ \x32\x5d\x00\x85\x46\xd0\x02\xb1\x4a\x8d\x2b\xe3\x0d\x71\x38\xb5\ \x43\x98\x84\x58\xeb\x7b\x57\x09\xe9\x5e\x82\xd2\x58\x50\x0d\xd8\ \xfd\xb2\x29\x10\x06\x4e\x00\xe6\x3f\xc0\x0d\x5d\xfe\x10\x25\xe0\ \xe1\x4e\x60\xe5\x4e\x10\x06\x3f\x50\x04\x60\xfa\xe6\x5d\x2a\xda\ \x2a\x0a\xbd\x6c\xde\xea\x0f\x0c\x31\x6f\x70\x06\x66\x39\xb0\x36\ \x9b\xbd\xa6\xbd\xc4\xf3\x5d\xaa\x6d\xca\xe7\xf7\xad\xda\x82\x9e\ \xd7\x3f\xee\x99\xa0\xe2\x06\xd2\xf6\x32\x42\x57\x77\x18\xd8\xe4\ \xbe\x5b\xa1\x18\xda\x84\xeb\x9c\xa7\x09\x8e\xb5\x98\xee\x0e\xcc\ \xfd\xe5\x4e\x30\xe2\x9f\x5e\x04\x61\x20\xe1\x7e\x6c\x07\xa9\xa0\ \xe5\x1e\x5e\x0d\x3f\x10\x06\x23\x9e\xde\x65\x1d\xaa\x5b\xea\xa5\ \x6d\xee\x82\x48\xbc\x2b\x00\xca\x13\x11\x7d\x06\xc8\x69\x96\xc9\ \x60\x96\xcd\x19\xdb\xa6\x8d\x9f\x78\x4d\xd1\x39\xfe\xe7\x39\xae\ \xda\x65\xac\xcd\x7a\x9d\xd1\xe6\x42\x7b\x7d\xc8\x8c\xc8\xb7\x32\ \x46\xb0\x8f\x0d\x2e\x87\xcd\xd8\x02\x8c\x8d\x92\xc5\x28\xb9\x76\ \xb0\x94\x97\xce\x0d\xdc\xb0\xdd\x1e\x5e\x04\x21\x20\xf2\x61\x10\ \xfe\x06\xc6\x30\xea\x1b\x0f\xf2\x9f\xae\xea\xac\x3e\xcc\x32\xdd\ \x1e\x67\xfe\xa5\xf2\xde\xea\x0f\xd5\x23\x60\x19\xd1\xd0\x1b\xe3\ \x66\x69\x96\xfb\x6c\xe3\xe9\x4d\xc2\x40\x9d\xe3\x01\x8f\xda\x09\ \xaf\xf0\x3e\xf1\x6f\x5a\xcb\x7b\xcf\x86\x70\x12\x9f\xc3\xd3\x65\ \x02\xe5\xcc\xe4\x18\x1f\x53\x5b\xcb\x9b\xcf\x56\xee\x1e\xff\xb5\ \xa9\x1e\x02\x32\x50\xf2\xe2\x0e\x71\x63\x57\xee\xee\x50\xf2\xaa\ \x4e\xe6\x64\xdd\x61\xaf\x1e\xf3\x0e\xdc\xea\x82\x25\xa9\x93\x1a\ \xda\x05\x1d\xe3\x39\x9b\x04\x03\x2d\x23\x40\x2d\x03\x13\x3d\xaa\ \x42\x9f\xdf\xd9\xdc\xa6\x64\x5a\x2e\xbb\xe0\x41\x8f\x47\xd5\x86\ \x8d\x70\xf1\x18\x95\xc8\x58\xa1\xd4\x30\xcf\xe9\x39\xf5\x13\xaf\ \xe4\x58\x5b\xee\x58\x10\xee\x1e\x3e\xf9\x61\x10\x02\x3c\x80\x05\ \x2a\xfd\xbb\xcb\x9d\xea\xe0\x9e\xee\xac\xfe\xea\x2f\x6f\xf3\x6f\ \xfe\xcb\xa2\x0a\x91\x4a\xa1\xde\x4b\xb0\x05\xbf\x8a\x9c\x62\xfd\ \xde\xa3\x1a\xac\x79\x6f\xef\x7b\x8f\xf0\x47\x9d\x14\x7b\x37\xe4\ \x60\x32\x06\xde\xf0\x81\x5a\x50\xb2\x55\xdd\xbb\x7f\xda\xce\xad\ \x8c\xe4\x1b\xea\xe4\x1c\x62\x7b\xe7\x89\x8f\x42\x70\xf9\x61\xfe\ \xb0\xdc\xee\xc0\x03\x25\x9f\xf9\xdc\x00\x71\xaa\x6a\x04\xa5\x9e\ \xea\xea\x3e\xe2\x60\x9a\xf6\x5d\x1a\x69\xb0\xae\xf6\xbf\x1c\xb8\ \x69\x2f\x54\x75\x6f\x23\x6f\xe0\x85\xfa\x59\x96\x04\x8b\x0f\x42\ \x8d\xe3\x41\x8d\xc6\x76\xcd\xf7\x2f\x6f\xf4\x3f\xe1\x06\xe9\xa3\ \x63\x4b\x98\x81\xbb\xb9\xbf\x9e\x38\x6d\x00\xf1\x6c\xcc\xb3\x0e\ \x76\x0c\x1e\x44\x98\x41\xa1\xc2\x83\x0b\x1d\x3e\xcc\x80\x50\x62\ \x07\x54\x07\x3b\x94\x08\x13\x86\x07\xaa\x12\xdc\x78\x38\xe1\x11\ \x26\xc4\x46\x86\xa8\xbe\x18\x29\x81\xc5\x49\xc6\x1f\x61\x64\xbc\ \x7c\x13\x73\xc9\x9b\x25\x35\x6d\xce\xc4\xf9\x52\x27\x4c\x9a\x37\ \x67\xc6\xa4\xd9\xf3\xe7\x92\x1b\x35\x81\xde\x78\xf3\x27\x05\x1f\ \x20\xe1\xf8\xfc\xf9\x13\xb3\xe8\xcc\x2d\x5b\xde\xdc\x98\x8a\xf5\ \xc6\x96\xad\x5a\x7d\x02\x00\x0b\x60\x49\x58\xb2\x65\xcd\x86\x6d\ \x43\xed\x0a\x3a\x74\xcf\x0c\x3e\x43\x35\xa6\xa0\x44\xba\x74\x21\ \xde\x35\x68\x62\x8c\xb7\xbd\x26\x4c\xd4\x35\x08\x31\xf0\xdd\x87\ \x80\x0d\x7a\x43\x45\xee\xa0\xb8\x90\xdc\x50\xe5\xab\x86\x45\x72\ \x88\x25\x21\x4a\xe4\x2d\xd1\x62\x4c\x89\x12\x4e\xaa\x39\xfe\x71\ \x52\xa4\x08\x4c\x19\x32\x85\xde\x0c\xfa\xe6\xe5\xe8\xd2\xa6\x6d\ \x8a\xfd\x19\x14\x76\xec\x37\x56\xaf\xde\x4e\xaa\x34\x45\x0a\x7c\ \x57\x67\x6f\xc1\xc7\xd5\x27\x56\xae\x5e\x6b\x9e\x45\x9e\x1c\xec\ \xa8\x6c\x63\xc6\xb4\x40\x77\xd0\xc4\xb3\xbf\x86\x0d\x13\x76\x78\ \xd0\x08\x3a\x23\xd4\xad\xdb\x11\x8c\xbd\x30\x60\x8a\x88\xed\x90\ \xeb\x90\x8a\x07\x0f\x6e\x63\x50\x71\x33\xc6\xad\x49\x88\x98\x4d\ \xfc\x96\x68\x12\x05\xd5\xfe\xcf\x9f\xc3\x88\xd6\xc9\x34\xb0\xc6\ \x82\x0d\x28\xd5\x58\x03\xea\x38\x02\x0b\xf4\x29\x35\x03\x6b\x4b\ \x50\xac\x1b\xfe\xe0\x83\x8f\x14\xac\x3a\x0e\x80\xad\x64\xc0\x6a\ \xb8\xaa\xaa\x9a\xea\x2b\xe5\x94\x1b\xc5\x0d\x74\xc6\xd0\x22\x45\ \xe9\xbc\xb3\x6e\x21\xbb\xb0\x3b\xe8\x99\xed\x8c\xa8\xee\x3a\x17\ \xc1\x03\x4f\x3c\x86\x0c\xf3\xc6\x08\x1f\x11\x7b\xac\x09\x1e\xf4\ \x8b\xa2\x48\xfc\x42\xe8\xa2\x0b\x2c\x82\xe4\x61\x8d\x31\xec\x40\ \xe5\x8e\xcf\x40\x73\x22\x05\xd1\x46\x3b\x2d\x2c\xa3\x62\x0a\x50\ \xa6\x05\xc9\x22\xb0\xc1\x07\x6d\xeb\x32\x35\x7c\x76\xfb\xc3\xaa\ \x1b\x06\xf4\xaa\xc3\x9a\x88\xfb\x30\xc4\xa9\xc0\x1c\xfe\xb1\xac\ \xb4\x9e\x49\xb1\xc6\xef\x1a\xca\x31\xa2\x88\x06\x23\xec\xa0\x31\ \xb6\x93\xeb\xbb\xec\x00\x15\x6f\xa2\xb9\xd0\x43\xcc\x47\x54\xf0\ \x30\x22\x8a\x26\xb0\x58\x23\x8a\x48\x8b\x6c\x22\x8f\x37\xba\xb0\ \x54\xd2\xfc\x0c\x8a\xb2\x1a\x77\xa6\xfc\x01\xc0\x04\x33\x14\x2b\ \xb5\xd6\x84\xaa\x73\xcb\x9f\x90\x02\x4a\x86\x2d\xa0\x4a\x33\xaa\ \xda\x64\xad\xea\x8f\xe0\xae\x1a\xeb\x4d\xad\x8a\x02\x16\xc4\xae\ \xbc\x9a\xed\xa6\x3a\x01\xb0\x60\x0c\x13\x54\x44\x48\x4f\xc0\x5c\ \xdc\xb1\x4f\xbc\x04\x35\x62\xa0\x3d\xc3\xd3\xf1\x4f\x83\xc8\xf1\ \xa6\x03\x6f\xed\xf0\xd6\x47\x23\x7a\x2c\x72\x8d\x4a\x9b\x30\xe2\ \xa4\x28\x78\xc8\xa3\x8b\x3c\xa2\x70\x6f\x8d\xcc\x4c\xd8\x4f\xb2\ \x51\x9d\xa0\xe0\xca\xd2\x7e\x12\x6b\xc0\xd8\x78\x32\xd6\x2c\x54\ \x53\x9d\x09\xd6\x98\xb6\x90\xe1\x8f\x9d\x5e\xd2\x55\x56\xd5\x74\ \x85\x0a\xc4\xd9\x7e\xed\xf0\x57\xe0\x82\x13\xce\xa6\x10\x07\x3e\ \x6b\x09\x4f\xb4\xd0\x4b\x0b\x1c\xfd\xda\x53\xda\x68\x4d\x3e\xf4\ \x2d\x6b\xaf\xcd\x56\x30\x84\xbc\x2d\xa8\x03\xc5\xc4\x1d\xd7\x88\ \x6e\xba\xc9\xc7\xdc\xfc\x8c\x68\x81\x9b\x5d\xba\xfe\x08\x01\x5d\ \x3b\xf4\xaa\x96\xde\x94\xb0\xe0\x0c\x34\x7d\xbd\x44\x2d\xd6\x04\ \xbd\x14\x78\xa6\x02\x1f\x04\xca\x2a\x5a\xaf\x4e\x38\xe2\xac\x31\ \x4e\x93\x57\x5f\x81\x23\x96\xa8\x0f\xe3\xcc\x8a\xa8\xd7\x94\xdb\ \x25\x1b\x90\x45\xc6\xd1\x0e\xb6\x0d\x4d\x19\xd1\xb8\xed\x78\x86\ \xa0\x92\x71\x6c\xf9\x46\xc5\xce\xdb\xd6\x5b\x6e\x79\xee\xae\xc7\ \x67\x5c\xb0\x26\xd3\x26\xba\x89\xc2\x8d\xb1\x94\x34\x82\xae\xc7\ \xb8\xe1\x86\x33\x6e\x32\xd2\x77\x5f\x9c\x1e\x5c\x55\x36\x81\x83\ \xc2\xe9\xdf\x83\x19\x96\x95\xd6\x14\x20\x9e\x75\x56\x7c\xd2\x2c\ \x6d\xec\x9b\xe0\xdc\xc2\x43\xae\x84\xdd\x38\x60\xe4\x4c\x04\xd9\ \x59\x67\x6d\xbc\x11\xe5\xdc\xef\x96\xe8\xcf\xbc\x2d\x92\x08\xbd\ \x70\xf3\xb1\xa6\x9b\x1e\x5d\x20\xa8\x85\x26\xda\x70\x23\xd2\x3c\ \xc2\x6a\xc2\x2d\xc7\xbf\x88\x22\x1f\xce\x54\xba\xb2\x88\x98\x18\ \x8c\x35\xf3\x81\x9b\x36\x0d\x28\x5a\x41\x87\x2a\x6b\xd4\x65\x2d\ \x2d\xf4\x34\xad\xaa\x0a\xd7\x36\xb7\x2a\xee\x6b\xf8\xc9\x1e\x2e\ \x4c\xb3\x98\x43\xb1\xc6\xbf\x96\x7d\x56\xdb\x1c\xdb\xbe\x91\xcb\ \x78\xd7\x3f\x1d\x21\x04\x3d\xc1\xeb\x40\x8f\xfe\xac\xd1\x82\x16\ \x18\x41\x0a\x52\xf0\xc6\x33\x94\xd7\x86\xe8\x79\xa3\x09\x61\x71\ \x83\x37\x0c\xb3\x1f\xeb\xb9\x03\x34\xff\xb1\xdc\x96\xb8\xf4\xa0\ \xb3\x69\xc9\x41\x98\xcb\xda\x4b\x10\xa6\x30\x85\x21\x0c\x7d\x08\ \x73\xa1\x55\x1c\xf6\x21\x5d\x9d\x29\x44\x63\x6b\x1d\x51\xe6\xb7\ \x15\x7c\x04\xc7\x4d\xc0\x92\x1d\x58\xf2\xd0\x16\x90\x49\x87\x64\ \x75\xf1\x53\x42\x4e\x06\xa3\x01\x36\xc4\x7f\xd9\xfa\x0e\xa3\x6c\ \x16\x05\x6b\x44\xa1\x05\x37\xc3\x83\x37\x94\xe7\x06\x6b\x18\x04\ \x0f\xa3\x00\x0b\x0f\x34\xb8\x41\x94\xb8\x43\x25\x4e\x00\x98\x83\ \x78\x72\x9a\x2f\x19\x85\x36\xdd\x4b\xa1\x0a\x5f\xe8\x30\x08\xbd\ \xf0\x36\x55\xa9\x8d\xae\x52\x90\x04\x3e\x54\xc5\x57\x3d\x8c\x1f\ \x71\xb4\x72\x31\x7c\x54\xac\x62\x25\x5c\xc2\x1e\xbc\xb3\xbf\xda\ \xd5\x0e\x89\xbd\x7b\xa4\xb4\x9a\xe8\xc4\x1d\xb5\x8c\x2e\x7b\x53\ \x8c\x14\x5b\x50\xc5\x05\x32\x50\x0a\x78\xb0\x86\xb9\xba\x78\x9e\ \x2e\x88\x25\x0f\x8d\xdb\x60\x14\x4a\x60\xbd\x3b\x68\xaf\x27\xe1\ \x53\x4d\x6b\x7c\xd2\xc6\x13\x1a\x88\x61\x0a\x6b\x4d\xfa\x32\x57\ \x35\x87\xc1\xaa\x74\x69\xea\x21\x3e\x92\xfe\x70\xa6\x8c\x11\xb2\ \x38\xc3\xc2\x8a\x30\x87\x79\x4c\x43\x66\x68\x14\x36\x78\xdb\xd0\ \xa6\xb3\x2c\x3c\x25\xe4\x3a\x93\xe4\x9d\x9f\x7c\x57\xc0\x4b\x62\ \x92\x5b\x3d\x6a\x41\xa5\xac\xd1\xc9\x07\x86\x73\x0d\x52\x30\x08\ \x1d\x4a\x39\x8a\x26\xcc\x05\x30\xa8\x30\x42\x2a\x50\x91\x8a\x56\ \x1a\xe8\x5f\xa6\x9a\x25\x98\x2e\xf7\x93\x55\xe9\x04\x97\x54\x33\ \x90\xc1\xe8\xb8\xa1\xd3\xd5\xaa\x87\x7b\x04\xc2\x30\x07\xd9\xc3\ \x65\x0e\x12\x7e\x49\x80\xa8\x0f\x0f\x09\xac\xe5\x78\x42\x22\x7e\ \xd9\xdf\x11\xb1\x79\xcd\x26\x46\x2b\x51\xe4\x39\x8f\xf0\x7a\x24\ \x85\x6e\x8c\xd3\xa4\x2d\x78\xa0\x14\xac\xe1\x89\x16\x90\x83\x1c\ \x2d\xd8\xc5\x12\xba\xd0\x82\xef\x50\x04\x4a\xa9\x70\x47\x18\x62\ \xd9\xbd\xd1\x60\x29\x88\xfe\xaa\xe5\x08\x41\xb7\xcb\xdb\xc0\x0a\ \x29\x08\xbb\x95\xfa\x48\x57\xc3\x24\x24\x34\x09\x6a\xda\x4a\x53\ \x31\x16\xac\xaa\x28\x13\x08\x12\xa5\x58\x98\x2c\xba\xd1\xfe\x19\ \x0a\x9b\xd0\x0a\x14\x60\x32\x69\x10\x6f\x0d\x0e\x0f\x25\x0d\x25\ \x03\x51\x2a\x85\x4d\x86\xb2\x1b\x2a\xcd\x43\x1b\xac\xb1\xb7\x77\ \xa6\x02\x66\xbe\xc0\x42\x4f\x59\x23\xfe\x03\xbd\xb6\xa6\x5f\x1d\ \xbb\x9c\xd3\x62\xc9\x57\x9e\x20\x05\x29\xfb\xc4\x0d\x97\x0a\x6a\ \x3a\xa8\x1c\x14\xa1\x4e\xc5\xd8\x16\x10\x1a\x59\xd6\x01\x67\x98\ \xc3\xc4\x2a\x51\x06\xb4\x55\xae\xbe\xa8\xb3\x2d\xe2\x26\x5d\x0f\ \x92\x49\xf4\xac\x60\x70\x2e\x78\xe0\x38\xd7\x30\x4e\x94\x5e\x41\ \xa5\xa1\x5c\x2d\x6b\xbf\x25\x56\x1f\xc9\x33\x15\xa9\x50\x5a\xe5\ \xb2\x57\x9a\x11\x21\x56\x35\xbf\x5d\xd8\xbe\x38\x37\xdc\x82\x39\ \xac\xb1\xa3\x3b\xee\x6e\xf0\xc1\x07\x7c\x9c\x81\x0f\x4d\x4d\x28\ \x6f\x18\x8a\xd9\xb1\x05\x27\x98\x11\xed\x21\xc5\x2a\xda\xac\xcf\ \x6a\x93\x92\xba\x3b\x59\x8b\xc0\x1b\x2d\x99\x05\xef\x3c\x09\xec\ \x8e\x0b\x50\xcb\x40\x93\xb2\xb6\xad\xb0\x6d\x81\x0b\x56\x00\x33\ \xd1\x4a\xc4\x08\xf9\x88\x67\x3e\xcc\x88\x05\xca\x65\x0f\x9f\x5f\ \x2a\x8b\x1b\x51\xa8\xcb\x35\x76\xee\x95\xaf\x8a\xe5\xac\x74\x93\ \x82\x33\x9c\x69\x8f\x4b\xb9\x6c\x12\xc2\x01\x04\xc8\x56\x05\xa2\ \x4f\xfd\x50\x30\xad\x0b\xd1\xab\x16\x92\x38\x60\x01\x05\x4d\x81\ \x37\xc9\xbc\x69\x33\x3b\xfe\x03\xed\x47\x13\x58\xde\xd1\xc2\xec\ \x78\xea\x4d\xa9\x6a\x3d\x61\xd2\xfe\x19\xaf\x61\xc6\x2e\xc8\xe4\ \x8a\xeb\x8b\x90\x15\xa4\x22\x1f\xdc\xc0\x02\x37\x3c\xf8\x1f\x22\ \xb7\xc4\x95\x00\x0e\x70\x2d\x49\xb3\x53\x59\x36\xc8\x28\x02\x55\ \xb0\x6e\x96\xfb\x60\x3e\x56\xa8\x42\x1c\x06\x42\x32\x80\xd0\xc7\ \xe9\x52\xb7\xaa\xd6\xc5\x07\x85\xaf\xfa\xba\x2d\x80\x85\x09\xd1\ \xd9\xe8\x36\xf1\x62\xc9\xbb\x71\xf3\x3c\x76\xdb\xd6\x79\xc3\x65\ \x04\xf5\xc2\x38\xb5\xe6\xaa\xb1\xb9\xcc\xd5\x0d\x3a\xf0\x6d\x05\ \xdd\x72\x29\xdf\xe8\xe2\x0d\x21\x00\xd9\x1d\x66\x2c\xb2\x13\x8c\ \xdc\x93\xe4\x04\x16\x8e\x44\xe5\xdc\x2c\x53\x83\x14\x7f\x8e\x6e\ \x29\xcb\x7d\xee\x1e\x2f\xcc\x47\xe8\x6a\x39\xa1\xc2\x7c\x6e\x44\ \x5f\xa7\x61\x61\x52\xb8\xa1\x6b\x1a\x85\x07\xa4\x37\xb4\x01\x9e\ \x38\x50\x6c\x66\x59\x58\xdf\xdc\xad\xf2\x0a\x4f\x66\xe8\xad\x73\ \x9d\xef\x0c\xdb\x3d\x34\x61\x0f\xe7\x0c\x34\x39\x64\x04\x68\xbe\ \x8d\xb5\x6f\x3f\x6e\xc2\xa1\xa9\x64\xaf\x1f\xec\xab\xd1\x8e\xde\ \x09\x40\x99\x26\xe0\xa1\x08\x55\x74\xcd\xb5\x32\x44\x27\x0c\x84\ \x11\xf0\x11\xc2\x14\xf6\x34\x43\x3f\x4d\x66\xec\x42\xf7\xc2\x55\ \x01\xc0\x2e\xae\xf0\x55\xb0\xfe\xae\x19\xd6\xcf\xa2\xe4\xb4\x5c\ \x4c\xdf\x1e\x79\xa3\x5b\x7f\xa6\x73\xae\x61\x6c\x52\x3d\xeb\xd9\ \x1a\x38\x76\x69\x8f\xb2\x38\x56\x82\xf3\x2d\x15\x42\xc0\xc2\xa1\ \xed\xa5\xec\xd1\x70\xcc\x5f\x22\xe4\xd2\x92\xa9\xd6\x39\xc4\xbe\ \x31\x61\xe6\xdb\xcd\x95\x99\x32\x82\x2c\x64\x19\xa2\xbc\x81\xee\ \x2b\xaa\x60\x6a\x73\x03\xb2\xcb\x9b\x36\x35\x3e\x96\xe0\x86\xdb\ \x95\xac\xc4\xe3\x1d\x4f\xac\xa7\x65\x6f\x6f\xd9\xbb\x5b\xe2\xea\ \xc0\x7c\x57\x30\xae\xba\xd1\xc1\xe7\xeb\x5d\xa9\x8d\xfd\xbd\x86\ \x16\xd0\x01\x3d\x74\xb0\x99\x37\x56\xe0\xd2\x82\x33\xdd\x1b\xf9\ \xb0\x97\x90\x15\x5e\xaa\x37\xfc\x55\x4b\xd4\xb6\xe5\x6f\x01\x6a\ \x60\x47\xa3\x90\x85\xa2\xb3\xf2\x84\xb5\x9c\x0c\x2d\x57\x68\xb9\ \xe0\xae\x82\x96\xa1\x4b\x72\x61\x5a\x75\xd3\x64\xa7\xf0\x12\x3c\ \x40\x62\x98\x97\x38\xe6\x70\x13\x60\xb1\x3b\x30\xae\xbd\xfb\x28\ \x8b\xb7\xf6\x86\x0b\x7c\x4e\x07\xc1\xab\x77\x93\xab\x35\x97\x07\ \xfc\x2d\x85\xa5\x7b\xa3\x1b\x57\x34\x3a\xd3\x83\xed\xd2\x9d\x43\ \x3d\xc8\x42\x10\x87\x7e\x57\x42\x93\xa8\xc1\x12\x73\xf6\x24\xee\ \x70\xa9\x26\x43\x86\x15\xfe\xe1\x6a\xce\x7d\x2e\xc7\x39\x9e\x8c\ \x11\x6c\x99\xd3\xe0\x06\x42\xda\x3d\x2d\x66\xcc\x62\xd9\xa9\x4d\ \xad\xc2\x2b\x80\x90\xc8\x18\xb5\xd9\xee\x26\x83\x39\x68\x75\xd7\ \xe2\xf3\x8e\x4b\xe0\x7e\xef\x96\xcd\x9f\xf1\x73\xc2\xa3\x96\xdf\ \xbd\xfe\xb5\x9e\xe5\xeb\x78\x2b\x2a\x5d\xf2\x92\xc7\xf7\x8f\xb9\ \x21\x84\xdb\xea\xd7\x25\x55\x4f\x72\x60\xdf\x48\x42\xd1\x3f\xcd\ \x96\x31\x0c\x9d\xf9\x74\x83\x7a\x3e\xb4\x3e\x0b\xdd\xee\x38\xb7\ \xe5\x2f\x66\xb8\x77\x9a\xc2\x56\xbd\x3d\x74\xd3\xce\xfb\xb7\xb8\ \x9c\x21\x76\x87\x11\x13\x4b\x31\x01\x12\x1e\x29\xea\x11\x1f\x91\ \x02\x23\xc8\x22\xa5\xf3\x06\x3c\xf8\xb9\x5c\x63\xab\xc3\x5b\x03\ \x37\x68\x02\x73\x71\x03\xa2\xa3\x03\xc7\x5b\x2d\xe3\xb9\x3e\xa7\ \xeb\x86\x29\x12\x82\x78\xf2\x31\x2c\xe0\xad\x00\x1b\xbf\xa7\x89\ \x0d\x31\x91\x36\xe0\xf2\x27\x16\x32\x3d\xa8\xd8\x8d\xa5\xa8\x90\ \x11\xe0\x83\xf7\xe3\xb6\x24\xe0\x38\x0a\x8b\x3f\xfa\xf3\xb4\x64\ \x48\xbb\xfc\x5b\x3b\x0e\x23\x3b\x00\xe0\xac\xba\x91\xb9\xba\xfb\ \xbf\x44\x11\x40\xdc\xd9\x1d\x70\xa1\x39\x7b\xfb\x11\x07\x92\xc2\ \x7a\xb3\x37\xc1\x6b\xfe\xbe\xe6\x8b\xc0\x50\x72\x83\x5e\x73\x83\ \x2e\x2c\xba\xb3\x32\x97\x16\xb0\xb7\xa5\x93\x3c\x70\xda\x24\xfc\ \x52\xba\x54\x10\x07\x9d\x4a\x32\xcf\x73\x8d\x8a\xeb\x3a\x5b\x0a\ \xae\x8b\xbb\x9a\x05\x63\xb0\x0a\xa9\x86\xf6\xe3\x83\x6a\x00\x82\ \x2c\xe8\x38\x3f\x94\xbf\x8e\x63\x8a\x2c\xf3\x41\xb2\x33\xc4\x4f\ \x5b\x3b\x53\xcb\x32\x22\x3c\x88\x68\x1a\x40\x13\x03\xc0\x8f\x7a\ \x91\xb9\x11\xa9\x7a\x13\x97\x4f\x82\x94\x04\x44\xbe\xc2\x53\xaf\ \x9f\xc3\x03\xb6\x5a\xa9\x2e\x6c\x02\x37\x60\x02\x2e\xf2\x06\x92\ \x5a\x83\x0a\x1c\x17\x3a\x58\x01\x32\x5c\x01\x3c\x78\x2f\x31\x74\ \xa9\x54\xe0\x06\x19\x08\x13\xdf\x22\xbf\x59\xb2\x89\x13\x9a\xc3\ \x9d\x60\x21\x3a\xb4\xb4\xdd\x60\x3f\x2b\xd3\xc3\x3f\xec\x43\xb2\ \xcb\x82\xd9\xcb\xb2\x2a\x60\x46\x43\x1c\xb9\x08\x13\xb3\x68\x1c\ \x85\x35\x68\x39\xb8\x41\xc2\x24\x2a\xa0\x24\x42\x22\x02\xec\x9b\ \xbe\xab\x99\x04\xc4\x83\x70\xb4\x99\x2b\x52\x40\x4e\x34\xc7\xd4\ \x0a\x25\x5f\x6b\x83\x3c\xc8\x03\x6b\xf8\xc4\x70\xaa\x40\x77\xb4\ \x37\x56\x7c\x45\x09\x5c\x83\x6e\x58\xba\xdb\xc2\x02\xf0\x3b\xc1\ \x11\x8a\x34\x5d\xfe\xa4\x1a\xc2\x5a\x98\x17\xac\xc3\x84\x89\x41\ \x06\x43\xbd\x3c\x24\xc6\x3d\x4c\x06\x3f\x4c\xc6\x64\x34\xc4\x8e\ \x4b\x06\x7a\xa8\x82\x38\x60\x46\x42\x54\x3b\x2c\x7b\x85\xd9\x4b\ \xb5\x6a\x54\x22\x6d\x29\x0c\x4b\x82\xc4\xbc\x9b\xc4\x94\x81\x19\ \x27\x14\x17\x48\xe9\x86\x05\x54\xc0\x16\xb0\xa2\x95\xd4\x35\x2b\ \x24\xbc\x72\x82\x2d\x37\x68\x83\x5d\xc8\x83\x7b\x7c\xbc\x4c\xe1\ \xa2\x95\x5c\xc0\x53\x2c\x9c\x26\xa8\x40\x6f\x98\x45\x21\x08\x83\ \x01\x91\xb6\x34\xa2\x93\xa9\xf9\x17\xbe\xd2\x17\xd1\xf8\x83\x22\ \xb0\x12\xe4\x12\x1d\x61\xac\x10\x0a\xe0\x03\xa7\xd8\x43\x2b\x7b\ \x3f\xd6\x6b\xc8\x89\x7c\x05\x7a\xa0\x87\x89\x24\xbb\x8a\x6c\x46\ \xb8\x23\x39\xdc\x4b\x3b\x88\x62\x02\x24\xf0\x48\x3e\x51\x33\x91\ \x44\xc2\xb6\xd9\xc6\xb9\xd1\x31\x70\x49\x49\x48\x59\x40\x95\x74\ \xc9\x0f\xfc\xa4\x94\xca\xb5\x4f\x04\x45\x6b\xb0\xc9\x2e\xa0\x20\ \xf6\x5a\x83\x9b\x6c\x82\xe2\xc1\x44\x50\x1a\xc5\x2e\x8c\x02\xa2\ \xec\xb1\x7d\xa4\x8d\x68\x7b\xc3\x8e\xf1\xbc\xd5\x80\xca\xcd\x44\ \x93\x18\x94\x4a\x61\x3c\x83\xd0\xdc\x43\xa7\x50\x48\x2b\xa3\x41\ \x7a\xf0\xc3\xfe\x89\x14\x4b\x04\x48\x86\xb0\x84\xbb\x89\x34\xcb\ \xd9\x4b\x86\xb7\xbb\x48\x20\xf0\x04\x29\xd0\x13\x14\x03\x14\xb9\ \x19\xc9\x90\xc4\x9b\x90\x0c\x2f\x6b\xba\x3b\x3b\xc0\x37\x9b\x53\ \x40\x71\x24\x29\xbf\xbb\x2f\x06\x72\xa0\x77\xbc\x22\x29\x70\x81\ \x70\x4c\x29\xc4\x6c\x83\x51\xa0\x20\xd5\x5a\x9e\x51\x68\xc7\x05\ \x7a\xab\x6e\x98\xc0\x36\x60\x9e\x16\x68\xc5\x6e\xc0\x02\xfa\xe8\ \xa7\x9e\x0a\xa1\x67\xf3\x1c\xcd\x54\x0a\xa9\x34\xbd\xdd\xf8\x81\ \x83\xa4\x80\x33\x98\x4f\xfa\x24\x46\x1a\xa4\xc1\xab\xac\xc1\xd5\ \xcb\x02\xb1\xa4\x87\xb0\xf4\xcf\xb1\x8c\x3f\x04\x60\xc6\x1f\x24\ \xc4\x0b\x5b\x46\x0a\x83\x86\x22\x72\xa2\x49\xe4\xcd\xf1\xe2\xcd\ \xf0\x78\xc4\x3f\x69\xc0\xb2\xe2\x99\xe7\xd4\x4b\x95\x54\xce\xc7\ \xc3\x2f\xc1\xdc\xa4\xe7\x4c\xa9\x10\x0d\xa7\x76\xe9\x82\x0b\xd4\ \x99\x98\xda\x85\xc5\xec\x24\xc2\x4c\x92\x14\xc5\x83\x15\xe8\x86\ \x26\x00\x1a\x91\xe8\x82\x03\x09\x01\x97\x28\xc1\x46\x03\x28\x9d\ \x10\x8d\x14\x88\x4f\xf7\xf4\xd1\x18\xfc\x81\x33\x48\x01\xac\xa4\ \x00\x11\xe0\x03\xcf\xd8\x4a\x1a\x54\x48\x8e\xab\xc1\xf7\xf3\xc3\ \x00\x35\xfe\xc4\xb1\x44\x4d\x20\xa0\x07\x02\x65\xcd\x1e\x74\x2a\ \xd8\x03\x02\x68\x58\xb5\xc0\x28\xc9\x78\x8b\xcb\xf1\x80\x44\xba\ \x64\x99\x3e\x31\x08\x2c\x6a\xc0\x4d\xa2\xa2\x9b\x79\xa0\xb3\xba\ \x99\x38\xcd\x87\x9b\x39\xce\xc1\xec\x24\x4f\x4a\xa9\x92\x6a\x02\ \x26\x30\x4c\xa1\xdc\x03\x37\xd8\x05\xb1\x60\x02\x7f\x03\xd4\x51\ \x18\x85\x2e\x58\x03\xc7\x93\x51\xed\xcc\x08\x91\x68\x54\x57\x52\ \x0e\xf0\x09\x10\xcd\x0c\xd2\x22\x20\xd2\xf8\x9c\x4a\x06\xcb\xc3\ \x6a\x18\x01\x85\x74\x0a\xad\xcc\x43\x26\xe5\x36\x4e\x75\x48\xd4\ \x44\xcd\xd4\x14\xd0\x8e\x1b\xcb\x2a\xa0\x48\xb8\xfb\xc1\xe7\xc2\ \x48\x16\xe1\x93\xde\x39\x94\x77\x1b\x3e\x90\x14\xaf\xe0\xe1\x99\ \x4f\x2a\x29\x51\xba\xa2\x38\x05\xd6\x16\xc8\x87\x04\x8c\xd3\x07\ \x42\xab\x93\x5a\xa0\xe9\x1c\x27\x9b\xdc\x05\xe6\x61\xc7\x2e\xa8\ \x89\x5d\x10\xc5\xc4\x24\x90\x36\x40\x29\x37\x18\x85\x25\xd8\x05\ \x1e\x98\x94\x90\xa0\x1c\xce\x8b\xd4\x01\xf3\xaf\xa9\x8c\xcf\xf8\ \x24\xd2\x2a\x09\xcd\x6a\x10\x81\x4e\xc5\xcf\x50\x2d\xcd\x25\xad\ \xc1\x1a\x24\x55\x87\x04\xc4\x87\x24\xbb\xb1\xbc\x57\x8b\x24\x3b\ \x8b\xfe\x4c\x28\x58\xcd\x32\x68\xf0\x3f\x57\xfb\x1d\xbc\x81\x24\ \x34\xdd\xc6\xba\x08\xc7\xb3\x72\x49\xa2\x63\xaf\x5f\x05\xd6\x87\ \xcd\x07\x10\x7d\xbc\xc3\x0b\xa5\x64\x25\x29\xec\x6c\x83\x2e\xd8\ \x85\x8d\x05\x23\xb1\x68\x56\x26\x60\x82\x8e\x05\x00\x37\x68\x01\ \xc5\x59\x02\xed\x6c\x02\xf9\xc0\x02\x6f\x05\xbf\x67\x53\x15\xcd\ \xf4\xaf\x21\x2d\xd7\x20\x0d\x4d\xfa\x44\xd2\x3c\xcc\x02\x4e\x6d\ \xbf\x3c\x74\x2e\xac\x5c\x48\xae\xdc\x4f\x3f\xe4\xb8\x7a\xed\x4f\ \xd4\xbc\x57\x56\x65\xcd\x66\xdc\x52\x2d\x33\xc2\x82\x8d\xd0\x48\ \x34\xd3\xef\x0a\xce\xe1\x14\xb6\xc1\x31\x02\x93\xba\x99\x3b\x45\ \xa9\x5f\x65\xa0\x0f\xbc\x19\x2b\x32\xd6\x2b\x82\xad\x78\x54\xab\ \xf6\xc2\xd6\x9a\xc8\xd6\x30\x19\x85\x5d\x10\xd9\x25\x20\xcc\xe3\ \x28\xd1\x4a\x91\x0f\x1e\xa0\x8c\xde\x7a\xd9\x98\x2d\x82\x1f\x90\ \xd9\x33\x88\xcf\x2a\x71\x82\x33\xf8\xdb\x33\x50\xd7\x3d\xec\xd4\ \x9d\xad\x90\xd0\x44\xc8\x9f\xdd\xc3\x4d\x7d\xd2\x3e\x7c\xd2\x64\ \xc4\x57\x2b\x5d\x55\x1f\xb4\x48\x7a\x50\xc4\xd9\xac\x26\x26\x0c\ \xc0\x6c\x0c\x2f\x35\x2b\x49\xbd\xf1\x16\x3a\x80\xc5\x71\x8a\x82\ \xfe\xac\xed\xa4\xc7\x9b\x58\x2b\x1a\xd6\x71\xb4\xa2\x4f\x54\xd8\ \x9a\x14\xa5\xd8\x52\x2d\x30\x02\xb0\x12\x4a\x37\x26\xd0\x92\x14\ \x25\x3a\x8f\xa8\x3a\x24\x03\x13\x39\xbc\x12\xbd\x15\x5e\xbe\x3d\ \x03\x11\xf8\x5b\x74\xad\x4f\x0a\x30\x57\x27\xe0\x03\xe7\xca\xc3\ \x70\x50\xc8\xf9\x44\x48\xd1\x5c\x48\xc6\x7d\xbf\x01\xe8\xc3\xfe\ \xa4\x57\xb1\x24\x4b\x8a\xd4\x57\xb4\x4c\xa8\xa6\xad\xcb\x4a\xc2\ \x16\xce\x0d\xce\xa8\x45\x14\x33\x45\x8f\x86\xb5\xa2\xf6\xea\x5a\ \xb6\x52\x29\x86\x1d\xc7\xae\x55\xab\xc1\x4c\xc5\x5e\x5b\x03\xfc\ \x1d\xa7\x3d\x05\xac\x2f\x29\xa5\xb0\x28\x91\xd8\xca\x03\xdf\xbd\ \xba\xbb\x15\x0d\xe1\xfd\x01\x11\x48\x60\xbd\x15\x81\x06\x06\x5c\ \xe5\x3d\x83\x30\x90\xcf\x22\x15\x5c\x2b\xab\x59\x22\x15\x46\xac\ \x5c\x8a\xd0\x34\x52\x3c\x8c\xd7\x52\x6d\x48\x1d\xa4\xc8\x2c\xf3\ \xde\x56\x25\xbb\x88\x82\x86\xdc\x4c\x42\xe0\x04\xc0\xe1\x0b\x58\ \xdd\xe4\x16\x2a\xa2\xa2\xe2\x89\xc5\xfa\x6d\xab\xd2\x8d\x40\xb5\ \xd2\x61\xc4\xd4\xb3\xc7\xac\xc0\x09\x64\x02\x87\x8b\x54\xdd\x65\ \x82\x10\xb0\x3a\x7d\x92\x43\xa7\xcc\x5b\xbd\x75\x82\x70\x00\xfe\ \x8d\x11\x70\x02\x05\xfe\x81\xbf\x9d\x59\xf7\xbc\x92\xa8\x8c\xc1\ \xfa\xa4\x4f\x22\xc5\x60\x06\xdb\x0d\xe9\xe5\x83\x0e\xde\xc3\x9c\ \xcd\xde\xed\x15\x50\xb1\xfc\x5e\x13\x96\xaa\x16\x88\x26\xef\x8a\ \xc4\xcd\x1d\x4e\x02\xd2\x96\x1c\x7b\x86\xc7\x5b\xad\xae\x6d\xd3\ \xd4\x22\xa9\x1c\xbe\x19\x97\xec\xda\x93\x6a\xab\xa1\x63\xd6\x8f\ \x65\xdb\x63\x21\x0b\xeb\x8c\x29\xe4\xa8\x4c\x1e\x0d\x5e\xe1\xa5\ \x12\x27\x46\x60\xbe\xf5\x51\xff\xc2\xa5\xd2\x6b\xcf\x83\xc4\x64\ \xde\xe0\x8d\x1a\xfa\x03\x0a\x38\x13\x9f\x95\x57\x7a\xa5\x57\xf7\ \x83\x4d\x7c\x8d\xdc\x61\xba\xcd\x8f\xfc\x1d\x28\xea\xcd\x17\xd6\ \x16\x3a\x70\xb1\xd1\xad\xa2\x3e\x7e\x2b\x50\x5c\x2b\x3e\x56\xab\ \x3e\x6e\x2f\xd5\x8a\xdd\xef\x4c\x5b\x21\x8e\xd4\x01\x69\x43\x2e\ \x09\x81\xec\xf9\x0f\x04\x56\x34\x04\x8e\xe4\x2b\xb1\x12\xd3\xdb\ \xab\x39\x14\x9d\xf7\x54\x8a\x4e\x3e\x93\x5a\xa9\xc3\x33\xc1\x07\ \x15\xa8\x90\x2c\x78\x5c\x7a\xd5\x41\x43\x74\x46\xb4\xc4\x87\xb4\ \x61\x1b\x16\x7e\x63\xf2\x05\xbe\x33\x7d\x19\xbd\xac\x9b\x29\x1a\ \xa7\xb7\xfa\x44\xc3\xb3\x58\x63\x25\xa9\x5c\xbe\x58\xd2\xfe\x4d\ \x47\x0a\xd4\x33\x52\xa4\x5d\x60\x36\xe4\x93\x4d\x12\xa0\xb9\xd1\ \x46\x5d\x89\x95\x68\x89\x52\xc9\xdb\x25\x46\xe8\x84\xf6\x2f\xa8\ \x1c\xaa\xd5\xf0\xc5\xaf\xa3\x15\x4f\x46\xae\x84\x81\xa1\x28\xe3\ \x0d\x3c\x4c\x02\x3e\xf4\x66\x27\x3d\x46\x70\x3e\xc4\x2c\x50\x39\ \x26\x70\x01\x17\x3e\xe7\x00\x12\x20\xdd\xdc\xcd\x97\x01\x9c\x2c\ \x7a\x5d\xc6\x84\x4e\x79\x5e\x2b\xd4\xea\xce\x5c\x56\x58\x2b\x92\ \x40\x5f\x7b\x4c\x26\xa8\x4e\x43\xee\xad\x6d\x5d\x0f\x1e\x90\x8c\ \xf5\x58\x09\x1e\x30\xb2\x86\x46\xea\xa7\x74\xca\xa5\x7e\x66\x68\ \x6e\xc1\xab\x69\x9f\x15\x5a\xa1\xd3\xf9\xe4\x8d\x06\x82\x6a\x10\ \xe5\x2c\x48\x02\x1b\x84\x48\x90\x3e\x61\x6d\xd5\x82\xb0\x3a\x69\ \xf2\x8d\x63\x07\x1d\x2d\x19\x11\x47\x38\xd5\xe1\xb7\xaa\xb3\x0f\ \x0d\x51\x11\xad\x65\x3e\xe6\xe5\xfb\xb5\x49\x91\xf5\xe9\xb3\x18\ \x05\x26\xf8\xe1\x54\x0c\xea\x47\x15\xc8\xe0\x02\x90\x5e\x84\x59\ \x00\x41\xcf\xe0\xaa\xe4\x5b\x1a\x9f\x88\x41\x9d\x28\xd3\x15\xa0\ \x15\xe5\x1b\x4c\x4d\xd6\x23\x61\x70\x4e\x02\x00\x18\x05\x17\x18\ \xeb\x97\xf3\x2e\x1b\x31\xd8\x9a\x73\x81\xbd\x80\x94\xfe\x2b\xa2\ \xdf\xe7\xbc\x02\xe7\xbb\x65\xf8\x45\x2d\xf8\x7d\x6b\xfb\xed\xe1\ \x9e\xbe\x6b\x81\x01\x05\x13\x0d\x25\xba\x0d\x01\xfa\xa8\xd1\x15\ \x4c\xe2\xc1\xda\x89\x2b\xde\x0d\x67\x56\x0a\xf5\x3b\xec\x3a\x14\ \x6e\x8b\x56\x6c\x3d\xc2\x4a\xac\x2e\x63\x7a\x4d\x82\x86\xb4\x57\ \xd8\x9c\x48\x20\xb0\x6c\x6a\xb8\xc6\x73\x96\x24\xdf\x09\x53\xba\ \x4c\xa0\x67\xb0\x37\xb4\x66\x2b\x29\x6c\xd8\xe9\xbc\xe5\x99\x86\ \xd3\xbf\x8c\xeb\xc7\x6b\x2f\x0b\x2c\xe4\xd7\x36\xc1\x43\xed\x82\ \xb4\xf5\x97\xab\x43\x8d\xa6\xdc\x6d\xbd\x2a\x02\x05\x56\xe0\x9a\ \xfd\x51\xdf\x7e\xc1\x14\x12\x1d\x5a\xa1\x6a\xad\xa1\x15\xd3\xe1\ \xca\xac\x2e\x63\x64\x9c\xd2\x12\x06\x8b\x35\x98\xee\xb1\x36\x53\ \xdd\xa4\x5a\xed\xb6\xb9\x08\xe2\x19\x37\x15\xed\xf8\x4a\x29\xd7\ \x2a\xa7\x37\xfd\x44\x78\x76\x5d\xc1\x9c\xd8\x0f\x2d\x1c\x3e\xf5\ \xe7\xd7\x76\x38\x11\x92\x6f\xfa\x3e\xe0\x84\xb6\x6f\xe3\xe5\x83\ \xfb\xce\xe4\x33\x88\x4a\xe1\xbe\x1a\x4c\x5e\x2c\x19\x28\x28\xa5\ \xd8\xca\x6a\xd8\xea\x28\x3d\xd5\x02\x2f\x65\xb3\xa4\x07\xb0\xd8\ \x05\x13\xc8\xec\x81\x9d\x55\x55\xf6\x9f\x03\xaa\xfe\x39\xed\x56\ \xeb\xae\x7d\x3c\xf0\x0e\x51\x6b\x48\xa9\x84\x0d\xc7\xee\xac\xe7\ \xad\x45\xcc\x3d\xcd\x56\xf5\x16\x18\xf6\xae\xd1\x51\xf8\x3c\xe0\ \x55\x62\x65\x56\x66\xe3\xa5\xc1\x28\x26\xd2\x2b\xb9\xe0\xde\x8e\ \x71\x2b\x99\x71\x4d\xbe\xf1\x00\xc7\xf1\x6d\xfe\xe0\x2b\x15\x4b\ \x87\xfc\xca\x00\x65\x55\x56\x1d\x90\x3d\x58\xf0\x37\x8e\x24\x24\ \x3f\x88\x03\xfc\xb3\x06\x74\x81\xc0\xcb\xe1\xf0\x56\xa9\x1d\x5e\ \x6b\xbf\xb4\x19\xd4\x7d\x2f\x7e\xeb\xc2\xf4\xe6\xf2\x43\x96\x56\ \x37\x60\x97\xda\xae\x6d\xca\x29\xe6\xbd\x3a\x60\x65\x6e\xe2\x28\ \x56\x34\xe3\x9d\xe2\xe3\x15\x01\x49\x8e\xc1\x0b\xc6\x60\x3b\x44\ \x93\x69\xa6\xca\x38\x6f\xac\xe3\x8e\x57\xec\xfd\x84\x38\xb8\x52\ \x87\xcc\x5e\xb1\xac\x02\x04\xa0\xc8\xb1\x04\xe0\x27\x61\x70\x59\ \x93\x9b\xcf\x25\xab\x54\x88\x14\x07\x22\x29\x97\x4e\xf4\x28\x8f\ \xf4\x86\x5d\x20\xad\x3d\xef\x54\xdc\xe7\x51\xbc\x49\x43\xb5\x6b\ \xf5\xd6\xd6\x3c\xc0\x74\x76\xcc\x03\x6f\x7d\xd4\x85\x06\xf5\x26\ \xbe\x83\x11\xb8\x83\x70\x28\xf7\x28\x2e\xd7\x28\x3e\x75\xbe\xdd\ \x5b\x55\xf7\x4c\xe4\x6a\x75\xa5\xa8\x66\x4d\xfe\xb6\x66\x19\xe4\ \x66\x1d\xaf\x41\x7a\x88\x03\x5e\x37\x5a\x40\x5c\xcd\x5e\xd7\x32\ \xb2\x60\x39\x81\x3d\xe9\xf1\x5d\xa2\xdd\xd9\xb9\x47\xaf\xe7\x84\ \x35\x6f\x72\x62\xaf\x5d\x7e\x76\xd2\xad\x14\xd9\x45\x3c\xd8\xe2\ \xce\x3b\x35\x17\x4a\xc7\xf6\xb5\x6d\x83\xf5\x60\xc7\x8c\x08\x09\ \xa3\x0e\x03\x83\xce\x5b\xd0\xb8\x83\x29\x36\xf7\x72\x57\x79\x72\ \xa7\x12\x0a\x38\x5e\x28\xa6\x41\x07\x2e\x5e\x99\xcf\x64\x4b\x73\ \x75\x79\x8f\x41\xff\x2e\xd2\x14\xe0\x68\xac\xee\x4f\x04\xe0\x77\ \x51\x0e\x50\xb1\xec\x43\x30\xe9\xa2\x22\x17\xeb\xb9\x89\xb9\x42\ \x17\xb8\x2a\xff\xcb\x66\x2f\xdb\x71\x9a\x31\x64\xad\xd8\xd8\x6a\ \x53\xae\xf5\xc9\xe8\xc4\x03\xd4\x9a\xc0\x6b\x7f\x6d\x43\x65\x1e\ \x37\xf8\xf8\x3c\x68\xd4\x8c\x48\x66\x45\x33\x79\x27\xb8\x03\xd0\ \x70\xe2\x47\x76\x82\x11\x68\x7b\xe3\x3d\xd2\x11\xa0\xfb\x7a\xa0\ \xfb\xe2\x75\x0a\x07\xae\xf9\x2e\x66\x75\x07\x2b\x28\x19\xdc\xc3\ \xad\xce\x77\xa0\xbf\x73\x1e\xf7\xcf\x89\x4c\x46\xe8\xd6\x92\x36\ \x10\x19\xa4\x87\x22\x41\x37\x88\x9d\x43\x85\x61\xb3\x37\xc1\xa4\ \x49\x40\x6e\xab\x1a\x5b\x29\x93\xa2\x22\xfe\x27\x8f\xeb\x70\x3c\ \x74\x2b\x3c\x45\x06\xea\xfa\x4a\x3f\x64\x6d\x0f\x6a\xb2\x27\xfb\ \xb2\xa7\x12\x93\xbf\x83\xd7\x37\x77\xb6\x2f\x77\x0f\x5a\x7b\x28\ \x06\x0d\x05\x6e\xbf\x2c\xb0\x7b\x1a\x0c\x87\x11\x58\xd7\x16\x57\ \xf5\xe0\x3f\x48\x0b\x59\x8a\x22\xc5\xe6\x30\xee\xe6\x9f\xa7\x87\ \x7a\xd0\x5e\x5e\xe7\xf7\x2a\x55\xd5\x00\xcb\x03\x60\x77\x7c\x49\ \x74\x19\x61\xa3\x19\x3a\xab\xf2\x95\x2c\xa9\x87\x8f\x7a\x88\x77\ \x72\x4c\x6c\x40\x9b\xf3\xb9\x79\x04\xca\x7d\x0e\xd4\xf7\xae\x74\ \xc3\x0c\xea\xf5\x20\xe8\xd6\xf7\x20\x73\x4f\x79\xd8\x5f\x7b\xf9\ \x77\x87\x70\x38\x34\xba\xc7\x02\xc0\x7d\xfb\x11\x60\x7e\xb8\x07\ \x88\x11\x7c\x46\x8c\x08\xc7\x47\xc4\x19\x84\x67\xf8\x2c\x5c\xc8\ \xe7\xe1\xc3\x14\x29\xf0\x51\x90\x88\x2f\x05\x05\x88\x7c\xb2\x70\ \xcc\x42\x0f\x81\x47\x8f\x1f\x3f\x22\x48\x96\x0c\xc8\x49\x7a\xc9\ \x00\xb0\x6c\xb9\x24\x8f\x9d\x0c\x32\x67\xd2\xac\x69\xf3\xa6\x9d\ \x9c\x3a\x67\xea\x8c\xc9\x33\x67\x07\x23\x51\xba\x19\xf1\x66\x44\ \x0a\x1e\x29\xdd\xba\x49\x51\xda\xad\xc5\xd3\xa6\x52\xac\x35\xb5\ \x66\xd5\x5a\x0b\xa8\x4d\xf1\x78\xeb\xfe\x4a\x67\x85\x37\x3a\xde\ \x5c\x20\xc5\x83\xa7\xc5\x1a\x37\x6e\xf2\xb4\x19\x35\x6a\x17\x93\ \x51\x2d\xe7\xd2\xad\x3b\x6a\x09\xde\x25\xa3\xba\x74\x69\xc3\x03\ \x0b\x60\x1e\x4e\x9c\x60\x71\x77\xe7\x4e\xb8\x3b\x4e\x0e\x8f\xa8\ \x77\xf8\xce\x08\xc8\x90\x07\x8f\x70\x57\x62\x84\x13\x82\x8d\xb3\ \xd4\xd3\x9c\x45\x33\x1f\x83\xe1\x44\x18\x0c\x6d\xba\x74\xc3\x85\ \x16\x25\x66\xac\x96\x65\x23\x49\x7a\x59\x06\x78\x44\x10\x5b\xe5\ \x49\x93\x55\xea\xb2\x44\x47\xd3\xe7\x4d\x99\x76\x4c\x18\x19\xe3\ \xed\x59\x87\x67\xde\x74\x3e\x8b\xd2\x04\xcb\x9a\x67\x39\x33\xf4\ \xfc\x6d\xa7\x43\xd0\x28\x2d\x8c\xe0\x71\x61\x76\xab\x59\xef\x52\ \x5a\x48\x1d\x5f\xbe\x3c\x53\xae\x5d\xd7\x87\xf5\x36\x9e\x7c\x0b\ \x6b\x6e\xda\x74\xd9\xd5\xc6\xcd\x9a\x35\x6d\x96\x00\xe0\xcf\x9b\ \xb7\x5e\x4c\x30\x41\x1f\x7f\x4b\xbc\x11\x42\x18\x61\x60\x41\x98\ \x3b\x86\x3d\x36\xd8\x60\x77\xd4\xe3\x4b\x3d\x15\x4a\xc8\xd8\x62\ \x15\xd6\x73\xd9\x08\x9f\x79\xd6\x59\x32\x9a\x89\x66\x9a\x40\xa5\ \x69\x94\x02\x43\x14\x61\xe4\x90\x0a\x40\xb8\xc6\x11\x02\x20\x71\ \x44\x8f\x1e\xb1\x99\x74\xa3\x6e\xfe\xff\xf1\x00\x5c\x70\x34\x19\ \x71\x43\x5e\x6f\xf0\xd5\x45\x1e\x6b\x34\xc1\x43\x17\xfc\x75\xd1\ \xc4\x74\x3b\xfd\x74\x1d\x77\x46\x30\x65\xc4\x33\xdc\x75\x77\xe5\ \x95\xe7\x49\xe1\x02\x59\xe5\xb9\x90\x1e\x57\xe2\x21\xe5\x5d\x7c\ \x58\x19\xb9\x0b\x5f\x4c\xac\xf1\x94\x1b\x78\x8d\x02\xca\x7f\x75\ \xe9\xb5\x4b\x1e\x4d\xa4\x95\x47\x17\xfd\x1d\x98\x20\x83\x0e\x1e\ \xe6\x44\x38\x8b\x49\xe8\x0b\xa1\x1a\x3a\x86\x59\x64\x1b\x1a\x5a\ \xcf\x2b\x08\xbc\xf2\xe8\x08\xaf\x8c\x10\x22\x68\x26\x9a\x76\xd0\ \x42\x19\x9d\x51\x11\x6b\x19\x6d\x34\xc2\x8b\x31\xd2\xf3\x09\x3d\ \xb7\x95\x7a\x23\x3d\x55\x98\xf4\x5f\x17\x26\xc4\xc4\x23\x4e\x3c\ \xfc\xb7\x04\x91\x6e\xe4\xd9\x5f\x13\x1d\xf4\x08\x54\x57\x63\x48\ \x61\xe5\x33\xe1\x29\xf7\x8c\x77\x2e\xd0\x41\x47\x52\xe4\x6d\xc9\ \x25\xb3\x4d\x69\x85\xd4\xaf\x4b\x31\xf5\xd4\x55\x4d\xa0\xd9\x05\ \x13\x2d\x24\xb5\xc6\x5d\xbb\xb4\xe9\x5f\x9c\xfd\xb9\xc5\x84\x1b\ \x76\xae\x81\x45\x08\x21\x74\xf1\x06\xbb\x08\x42\xf8\x18\x62\xef\ \x4a\x58\x21\x85\x87\x42\xe6\x8e\x08\x80\xd6\x13\x87\x2d\xfc\xf2\ \xcb\xe8\x2b\x8c\x6a\x56\x90\xfe\x68\xa4\x1d\x84\x69\xa6\x0c\xf1\ \x91\x11\x05\x0e\x55\xc3\x87\x6b\x49\xc0\x58\x8f\xa8\x35\x8a\xaa\ \x52\x16\x26\xe1\x06\x44\x9c\x5f\x4c\xd7\xa3\x70\x21\xc4\xb9\x44\ \x1b\x4d\x24\x09\xc0\x28\x4c\xc2\xca\x53\x07\x65\x71\x39\x06\x97\ \x66\x71\xf5\xcc\xb1\x63\x1d\x4b\x07\x59\x4c\x31\xcb\xe5\x78\x56\ \x65\x25\xed\x52\xf1\x65\x55\x66\x7e\x6d\xa0\xe9\x86\x35\xdd\x59\ \xd3\xc5\x28\x79\xc8\x07\xae\x5c\x73\xe1\xc5\xd2\x5b\x6d\xd4\x69\ \xa4\x91\x47\x86\x11\x82\x0c\x6f\xc8\x20\x43\x11\x10\x0a\xfa\xe7\ \x61\x8e\x95\x6d\x76\x64\x04\x65\x56\x8f\x2d\x76\xc4\x91\x41\x15\ \xb6\xd8\x12\x29\xc0\x22\x1a\x24\xc2\x43\x67\x34\xa4\xb0\xde\x0d\ \xf7\xbd\xe9\xc2\x1b\x6d\xd4\x51\x16\xb6\xc5\x78\xb8\x6d\x33\x9e\ \x7a\x52\x12\x71\xb6\x81\xce\xca\x36\xd9\xd1\x04\xb8\x74\x2d\x29\ \x5f\x9e\x21\xe0\x11\x39\x75\x76\x78\xb3\x1d\xcc\x2e\x10\xfb\x4c\ \xb0\xc4\xd2\xd1\x41\xcd\x2b\x3c\x03\x56\x52\xdd\xe1\x4c\x56\x56\ \x57\xfd\x3c\x34\x56\xf1\xad\x61\xd5\x9d\xf7\xad\xc1\x95\x35\x79\ \x78\x1b\xdf\xad\x28\xef\x42\x97\x5b\x2c\xd1\xa9\x56\x7e\x4d\x3c\ \xc7\x0d\x60\x58\x24\xd8\xfe\x35\xd8\x61\x88\xbd\x18\xa0\x8f\xd1\ \xeb\x58\xa0\x93\x45\xd6\x36\x4d\x55\xd4\x13\x4e\xa4\xe1\x87\x33\ \x3e\xa6\x0a\x31\xa4\xf7\xc2\xa9\x01\xce\x30\xc4\x1b\xb9\xd6\x21\ \x47\x71\x20\x7e\xb1\x47\xc9\xa8\x04\x44\x16\x8d\xc7\x69\x8c\x4f\ \x9c\xcb\x64\xc2\xad\xf4\xe2\x12\xa4\xb5\x20\x0f\x6e\x51\x59\x70\ \x72\x32\x9e\xa4\xc0\x8c\x74\xa2\x5b\x8f\x72\x4e\xd7\x81\x15\xdc\ \x8c\x59\xdd\xe9\xd2\x55\x6a\x57\x26\x6b\x44\x01\x2b\x51\xc8\x0f\ \x08\x9b\xa0\x96\x26\x74\xc3\x05\x2d\x68\x42\xc9\x90\xd2\x84\x01\ \xba\x81\x6a\xc6\x8b\x0b\x00\xba\x50\x2e\xac\x29\x0f\x0b\x4d\x10\ \x02\x37\x1a\xb4\xa0\x30\x14\x01\x6c\x45\xf8\x41\x84\xa8\x37\xb6\ \x09\x39\x86\x32\x99\x81\xcc\xdb\xba\xf7\x8a\xf1\x85\x0f\x08\xe4\ \xd3\x1b\x14\xa3\x28\x45\x4d\x01\xce\x21\xed\x23\x5c\xfc\xe4\x87\ \xb8\x51\xc9\xa6\x23\x40\xd8\x48\xb8\xde\x30\x86\x57\x51\x27\x81\ \xde\xc8\x9a\x08\x0d\x78\x1f\x6b\xac\x21\x49\x4b\x58\xc3\xc7\x24\ \xd7\x81\xd6\x85\x07\x0f\xc3\x1a\x56\x58\x4e\x47\x0e\x0a\x72\x29\ \x8f\xdf\x99\x4a\x06\x63\x77\x95\x0e\xde\x0e\x6b\xd6\x10\xe1\x0c\ \xc9\x93\x96\x35\x20\xfe\xa5\x05\xc3\xeb\x4f\x1b\xd2\xd2\xad\xbb\ \x94\xac\x2d\xa3\xc0\x4f\x7e\xb8\xf1\x1c\x1e\x70\x83\x1b\x42\x10\ \x87\x10\x84\xe0\x8e\x1d\x16\xa1\x94\x3f\x00\x22\xa0\x00\xf5\x83\ \xb2\xd5\xcb\x1d\xa9\xcc\x8c\x2f\x92\x38\x93\x38\xd4\x43\x04\xa4\ \x01\xdf\xf8\x10\x92\x02\x29\xf2\x92\x0f\xbb\xdc\x25\xc3\x30\x72\ \x45\xf8\x7d\x26\x0b\x71\x90\x1f\x32\x0f\x27\x9b\x2f\xbe\xe6\x35\ \xe1\x02\x40\x36\x76\xe2\xbf\x9c\xb8\x20\x3f\xf3\xe1\x4b\x9d\xbe\ \x95\xb2\xea\x58\x27\x58\x30\x93\x99\x0b\x8e\x83\x1d\xb0\x78\x65\ \x82\xc7\x0a\x4f\xcc\x7a\x26\x3b\x40\xae\xe1\x83\x1f\x34\x12\x37\ \x6e\x47\x48\xe5\xd9\xc9\x2a\x76\x92\x02\xb2\x9a\x20\x97\x25\xec\ \xa2\x09\xf2\xd9\x05\x9d\xda\x00\x8a\x48\xae\xe1\x68\xf2\x3c\x57\ \x13\x3a\x19\x4a\x71\x30\x94\xa1\x8a\x71\x42\x18\x7e\x10\x51\x54\ \x0e\x06\x88\xf3\x12\x47\x64\x20\x94\x98\x7e\xd9\xe4\x15\x3f\xb8\ \x65\x2e\xcf\xf0\x03\x89\x40\x91\xa4\xbb\x84\x62\xc3\xfc\x86\x22\ \x4f\x5d\xf1\x45\xb5\x29\xdc\x27\xe6\x27\x9b\x87\x55\xe3\x8b\xd5\ \x08\x17\xad\x3c\xd6\xbf\x5d\x75\xe3\x2e\xfd\xa1\x5a\x1b\x44\x86\ \x17\x38\x0a\xa7\xfe\x26\x39\xa9\x92\x03\x49\x47\x3a\xd4\xa9\xee\ \x66\xa8\x3b\x96\x98\xce\x23\x34\xda\x81\x30\x84\xca\xb3\x06\xb5\ \x10\xb9\x87\x42\x52\x45\x2c\x2d\xd8\xcf\x5e\x98\x60\xa6\xe3\xcd\ \x27\x92\xd6\xe0\x41\x1b\x22\xf9\x41\x4d\x2a\x74\xa1\x0c\xf5\x45\ \x2a\xc4\xd1\xa0\x8a\x9e\x32\x95\xa8\x7c\x0c\xa2\xe2\xe5\x04\xb6\ \xb9\x8d\x26\x71\xf0\xe8\x47\x73\x29\x82\x1f\x9c\x21\x05\x84\x85\ \xe2\xf9\xd0\x77\xa2\x4d\xb1\x06\x45\xcd\xec\x88\xe1\x0e\x17\x53\ \x04\x68\xf1\x13\xcd\x54\x01\x1f\xf0\xf1\x4c\x5a\x95\xc0\x7f\x3c\ \xc9\xc3\xd4\xa4\x16\xb5\x2e\x58\x83\x73\x50\xb2\xe3\xe8\x4e\xb7\ \x82\xe4\xdc\x2c\x8f\x7c\xe4\x59\x52\xa4\x12\x3b\xda\x1d\xd2\xaa\ \x22\x24\xa1\x52\x0e\x89\xbc\xab\x48\x61\x05\x2b\xc0\x43\x1b\xab\ \xb6\x06\x45\xea\x0e\x85\xf8\xe9\x46\x5a\x4a\x96\xd0\x84\x72\x03\ \x94\xa2\xbc\x43\x43\x1b\x7a\x07\x57\x56\x94\xae\xa8\x0c\x54\x75\ \xef\xf0\x83\x70\xc4\xf2\x98\xb2\xcc\xc0\x21\x6c\x29\xde\xc1\x46\ \xd1\x96\xe7\x3b\x1f\x8a\xfe\x56\x58\x8c\xb0\xe6\x8a\x90\x8d\x2c\ \xa9\x26\x7b\xb8\x2c\x3c\x6c\x61\x9a\x7d\x26\x00\x60\x02\xb2\x99\ \x9c\x4c\xb4\xfe\xa3\xed\x46\xe4\x72\xe2\x8d\x12\x92\x8e\x0e\x34\ \xa3\xd9\xcd\x6a\x96\x60\x2c\x49\x55\x90\xd6\xf0\x84\x91\xca\x45\ \xcf\xfc\x0c\xe5\x2c\x88\x44\x1a\x56\xf0\xb0\x02\x72\xd0\x01\x73\ \xf6\xf1\x27\x1e\x90\xcb\x04\x73\x21\xef\x29\x6b\xc8\x03\x0f\x94\ \xd7\xd6\x50\x8a\xb2\x41\x0d\x3a\x8c\x38\xa6\x3b\x3d\xba\xd2\xf5\ \x87\x4e\x10\x01\x64\xda\xd6\x2f\x1e\x1d\x62\x34\xa4\x11\x2f\x61\ \x77\xa9\x10\x5e\xa2\x28\x6f\x2b\x92\x88\x44\x20\x56\xcc\xc2\xcd\ \x0f\x01\xf1\x45\xdc\x27\xaa\xf1\x30\x8a\xe0\x17\x00\x16\x40\x05\ \x19\x7b\x94\x07\xbb\xa8\x0b\x2f\xbb\x90\x42\x80\xed\x90\x94\xa5\ \x1e\xd8\xc0\x66\xc6\x99\xeb\xc6\xd2\x2c\xd9\x3a\xf8\xc1\xd6\x54\ \x5e\x55\x5b\xd0\x15\xe4\xce\x07\x3f\x50\xf1\xc6\x86\x57\x20\x05\ \xfd\x1c\x6f\x4d\x64\xc1\x5a\xf2\x90\xc6\x14\x6b\xa0\xeb\x2f\xdc\ \x88\x02\x8b\x85\x70\x87\x05\xc9\x0b\x5e\x33\xae\xeb\x29\x7b\x68\ \xe3\xc6\xc8\x4d\x6e\xdf\x9d\x9b\x60\x6d\x49\xd8\x52\xea\xed\x97\ \x26\x3d\x9f\xdf\x0a\x5b\x11\x8a\x40\xa4\x23\x1f\xd1\x62\x8c\x2c\ \x8b\xb8\x2f\xbc\xa6\x1a\x14\xc0\xc7\x7d\xc3\xd5\x05\x1e\x7c\xc1\ \x55\x9e\xfe\x8d\x42\xe5\x5e\xa2\x96\x5d\x90\x6c\x73\x92\xbb\x8e\ \x1d\xb1\x23\xec\x04\xbf\xce\x1b\xe8\xf4\x4e\x77\x9c\x45\x5b\x4f\ \xe0\x2e\x2d\xe5\xda\xea\xed\xc8\xf3\xdb\x35\xa0\x55\x86\xbb\xc3\ \x33\x39\xf6\x78\xc2\xe3\x81\x78\x05\xc8\xad\x27\x1b\x05\x8d\x87\ \x7c\x34\x21\x04\x3c\xe0\x64\x28\xb9\x31\x5d\x57\xf2\xc9\x09\x2f\ \x86\xd7\x43\x9d\x00\xe9\x1f\xf4\xd0\x87\x22\x60\x9b\xdc\x3a\x63\ \x0b\xbf\x7a\x34\x1c\xdb\x15\x6f\x11\x52\x10\x70\x93\x22\x19\xb1\ \xe9\x43\x32\x45\x16\xf2\xb0\x19\x21\xae\xb2\xf3\xb3\x2c\x4d\x29\ \x40\x81\x67\x76\xa1\x1a\x09\xad\xb5\x67\xed\x70\x56\xab\x91\x2b\ \xc2\xf4\xc9\x83\x0b\xb2\x2c\x9c\xeb\x74\xc0\x0e\xe4\xb0\xc3\x86\ \xb1\x83\x60\x34\xb7\x2e\x66\x7f\xa4\x2d\xee\xd8\xf8\xe6\xfc\x58\ \x25\x0a\xf8\x5c\x41\x0b\x78\xb0\x8b\xbd\xb8\x41\xc3\x1b\xce\x36\ \x72\xf3\x90\x87\x19\xe2\x93\x0e\xdd\x90\xb9\xed\xfc\xd9\x0d\x6f\ \xe4\x83\x1b\x5b\x03\x0c\x8b\x75\x08\x51\xb1\x1d\xc6\x17\x31\xfe\ \x13\x84\x4e\x19\x69\xe8\x85\x4d\x6e\xbe\x70\x42\x0f\x7f\x20\xcb\ \xbf\x0e\x36\xb0\xb6\x14\xb8\x0c\x90\x6c\x52\xc4\x3a\x44\xd4\x6a\ \x6f\xfe\x8d\xa9\x9b\x4c\x31\xca\xa6\x3a\x0b\x98\xc5\xec\xc4\xe3\ \xf4\x86\x35\x7c\x21\x0a\x16\x30\x86\x4e\x25\x37\x72\x31\x27\x2f\ \xb9\xea\x72\xc3\x72\xe2\xd8\xb9\x93\x33\x5e\xd8\xab\x55\x5d\xb1\ \x62\xfb\x47\x67\x4d\x65\x83\x6c\x74\x73\x55\x29\x2c\x05\x63\x47\ \xc1\x56\x4c\x6b\x83\x35\xe8\x90\xed\x6c\x0f\xf8\xb6\x76\xd2\x96\ \x6f\x91\x1b\x6d\xdb\x45\x21\x1f\xf9\x88\x02\x16\xf2\x80\x20\x2c\ \x7c\xb2\xc5\x4e\xe0\x01\x45\x17\x43\x28\x78\xc7\xbb\xc6\x5e\x2b\ \x02\x77\xe7\x56\x04\xbc\xbc\x61\x04\x49\xac\x82\x47\x8b\x30\x58\ \x20\x97\xb2\xe0\x27\x45\x9f\xc2\x4b\x4a\x81\x3f\x5c\xa4\xd4\x30\ \x42\x80\x2d\x48\x72\xb8\x63\x3a\x99\xbe\x12\x97\xf2\x4d\x59\x65\ \x8c\x31\xa0\x42\x15\xe7\x8e\x82\x93\x46\x5e\x46\xea\x18\xa1\x3e\ \x7e\x61\x9a\x5e\xd6\x50\x72\x27\xe9\x84\x1c\x1d\x60\xfc\xea\xee\ \x3f\x4e\xef\xb8\x47\x29\xd0\x0a\x1a\xcc\x41\xd8\xe5\xdd\x0e\xee\ \xd4\x53\x88\x9d\x15\xd3\x8c\x42\x08\xac\x81\xe8\x8d\x1e\x39\xec\ \x59\xb9\xcc\xd0\xd2\x91\x83\x7b\xd4\x5c\xec\xb8\x13\xa2\x35\xc1\ \xd6\x28\xc8\x42\xc9\x18\x44\x15\x81\xf4\xb8\x83\x38\x10\x8a\x2f\ \xfe\xf0\x1e\xd6\xc9\xdb\xd7\xfc\xd0\xbc\xfc\x80\x0c\x10\x5f\x11\ \xd4\x43\x15\xfc\x0b\xbd\x7d\x94\xa6\x15\x56\x11\x14\x56\x14\x29\ \xcc\x43\xe0\x4d\x7d\x71\xca\x44\x50\x00\xa8\x70\x44\x87\x8c\x00\ \x3d\x70\x9f\x65\x7d\xc2\x31\x7d\x41\x94\x05\x0e\x05\x3c\xcc\xfe\ \xa0\x02\x3a\x94\x40\x36\x54\x03\x0f\x18\x03\x37\x60\xd9\xab\xf4\ \x44\xff\xf0\xc0\xd4\xf0\x9a\xb8\xc0\x11\x37\xd5\xdf\xb0\x48\xd0\ \x6a\xd9\xdf\x39\x4d\x1e\x53\xbc\x47\x06\x35\xdb\x1a\x5e\xc5\xea\ \x9d\xd8\x3e\x91\x16\xb6\x8d\x5e\xe9\xc1\xd9\x70\xf9\x9c\xd1\x7d\ \x10\x54\x3c\x45\x14\x74\xd2\xa1\x01\x06\x9f\x60\xc1\x1d\x84\x12\ \xbb\x99\x92\xee\x11\xca\xd5\xc1\x58\x3d\x5c\x5d\xa0\xd0\x5b\x29\ \x35\xc6\xf7\xf4\xd0\x1b\x18\xc8\x0b\xf6\x8b\x2d\xd4\x83\xd6\xd1\ \xe0\xf2\x8d\x54\x90\xe5\x20\x0f\x82\x9a\x2f\x4d\xc4\x42\x10\x8e\ \x92\x19\x53\x1c\x8c\x4a\x16\x7c\x01\x65\x41\x9c\x94\xa5\x54\xde\ \xd5\x05\xad\x8d\x41\x09\xa8\x00\x37\x18\x83\x0a\x20\x09\x02\x75\ \x0e\xfd\x89\x0c\x4b\xf4\x57\x17\xac\xc1\xc9\x69\x61\x4e\x50\x20\ \xcd\xa8\x4e\x19\x62\x07\x87\x89\x85\x98\x40\x05\x7c\xcc\x96\xfe\ \xec\x04\x92\x1b\x72\x10\x1b\x19\x10\x7f\x8c\xc2\x1a\xb8\xc0\xcf\ \x8d\x9e\x11\x1c\x92\xb9\xac\x09\xb6\x0d\x98\xcf\x2c\x45\x1f\x32\ \x17\xa2\x71\x03\x0f\x48\x4f\x61\x28\x1a\x75\xf1\x89\x61\x90\x60\ \x09\xbe\xe3\x1d\x94\xe0\x63\x44\xda\x0f\xb1\xcd\x2b\xc8\x5b\x11\ \xb0\x8b\x0c\x88\x40\xdb\xf0\xcb\x68\x9c\x52\xd9\x95\xd2\x0f\x25\ \xc4\x7a\x91\x94\xc1\x28\x56\x30\x09\x13\x31\x2d\xd9\xdc\x39\x19\ \x02\xa8\xe2\x27\x44\x19\xa8\xb8\x5a\x13\xf2\x06\x05\x7c\x01\x14\ \x56\x43\x17\x18\x43\x09\xe4\x01\x05\xbc\x01\x0f\x48\xc7\xe0\x7d\ \x8c\x1d\x80\x4b\x5f\xc8\x45\xca\x24\x9e\x16\xda\x5f\x57\x20\x87\ \xfd\x8d\xd3\xe3\x55\x10\xec\x34\x63\x20\x65\x85\xb2\x91\x87\x99\ \x54\x0b\x35\xf6\x87\x1b\x18\x41\x36\x92\x1e\x5a\x74\x63\xd2\x34\ \xe0\x97\xf8\x8c\xeb\xbd\x5e\x42\x85\x52\x14\x8c\xd2\xed\xb9\xdb\ \x61\x50\xd7\x5d\xb9\xe3\xee\x89\xc3\x84\xe0\x95\x62\x44\xda\x0f\ \x54\xc8\x08\x38\xa2\x29\xbd\x82\x4f\x54\x81\xbf\xfd\x50\x40\x12\ \xd6\x61\x9d\xc1\xc0\x29\x56\x43\xf8\xcd\x43\xb0\x94\x4b\x0d\xe1\ \x47\xd4\x43\x4c\x45\x64\x16\xc8\xa5\xab\x29\x59\x44\xd6\xfe\x45\ \x08\x7c\x41\x06\x8c\xc1\x17\x48\x99\x31\x18\x43\x35\xb0\x45\x13\ \x60\x61\x93\x00\x87\x1d\xc8\x0a\x24\xb9\x41\x08\x28\x60\x13\xac\ \x00\xfd\x5d\x87\x0b\x70\x07\x32\x9a\xdc\x6a\x7d\xc5\x33\xd8\x1f\ \x05\xc5\x16\xed\x58\x1e\x79\x74\xc9\x7b\x34\x23\x5a\xec\x07\x4b\ \x90\x8c\x35\xcc\x61\xb6\xad\xc0\x36\x76\xe3\x9a\x68\xd8\x1e\x99\ \x10\x07\x1d\x65\x3e\xe0\x10\x16\x78\x52\x6c\x32\x4f\x9f\x50\xd7\ \x60\xb8\x83\x54\xba\xe3\x22\xe2\x95\x2b\x85\xe5\x29\x85\x83\x63\ \xd4\x5b\x0a\x8e\x80\x4f\xd8\x42\x38\x98\x92\xd6\x19\x96\x61\x21\ \xc4\x48\x0d\x9c\x90\x41\x5f\x45\x64\xc4\x2e\x95\x22\xe1\x7c\x02\ \xc5\xcc\xa5\x5c\x46\x64\x44\x52\x64\x35\x7c\x02\x2a\x7c\x01\x5d\ \xbc\x81\x2a\x98\x00\x75\x84\xe7\x5f\xfe\x25\x16\x54\x83\x31\x34\ \xc1\x17\x8c\x11\x4f\xf0\x84\x37\xa0\x55\xb9\x18\xd0\x1b\x80\x9e\ \x16\x2e\x5e\x88\xe1\x81\x1e\x99\xa1\x81\xf9\xd6\xfd\x51\x10\x1d\ \x34\x05\xb5\x0c\x20\x56\x34\x05\xcf\xdc\xa4\x52\x9c\x58\x68\xed\ \xc2\x1a\x98\x66\xb6\x8d\x47\xe6\x61\xd5\x37\x1a\x41\x0b\x1c\x5a\ \xeb\xb9\x5e\x1f\xce\xa6\x27\xc5\x98\x2b\xcd\x55\x83\xfe\xf0\xc9\ \x08\xda\xc2\xee\x91\x60\x55\xf6\x9e\x75\xad\xd2\x56\x76\x8d\x81\ \x18\x88\xd8\xc9\x44\x15\x70\xe5\x29\x09\xdc\x29\x25\x84\xa7\x09\ \xe4\x49\x35\x4c\x7a\xad\x25\xc4\x84\x43\x47\xd4\x03\x67\x48\x16\ \x5c\x46\x59\x35\x80\x4a\x77\x4a\xd9\x27\x7c\x41\x09\xd0\x05\x05\ \xa0\x02\x4d\x84\x27\x37\xf8\x65\x09\x18\xc3\x39\xd2\x9a\x61\x3e\ \x89\x37\x50\x0e\x4f\xd2\x41\x7e\x76\xce\x59\x74\xc3\xb1\x3c\x55\ \x82\xf9\xd6\x1e\xe1\x8c\x7b\x08\x12\xcd\x1d\x28\x82\xe2\xcc\x7b\ \x34\x92\xad\x4c\x8d\x0c\x2d\x5d\x03\x92\xde\xd1\x25\xcf\x73\x58\ \x43\x51\xec\x91\x11\xd4\x26\x37\x68\xa8\x6c\x8e\xd2\x42\xa9\x63\ \x6e\x56\x97\x13\xf8\x02\x2a\x74\x00\x89\x16\x8a\xd5\x15\xd1\x60\ \x44\x14\x8d\x69\xc6\x0f\xbc\x01\x5d\x2c\xc1\x2b\x1c\x93\x2d\xb0\ \xa0\x29\xfd\x10\x59\x0e\x16\x73\xde\x60\x0a\xfc\x01\x49\x15\x64\ \x92\x95\xda\x42\x52\x56\x1c\xa0\x82\x43\x76\xa7\x0a\x80\xdf\x43\ \x4e\xa9\xab\xd1\xc5\xf8\xd5\x44\x09\xb8\x1a\x16\x94\xc0\x17\x18\ \x43\x18\x18\x48\x08\x18\x81\x61\xf6\xaa\x96\x02\x00\x18\x86\xa1\ \xe7\x64\x85\xb1\x10\xdb\x57\x1c\x6b\x05\x1d\x20\xfe\xcd\xa5\xa9\ \xb2\x18\x0b\x59\xa8\x69\x41\xf9\xc7\x12\x20\xcd\xe6\x65\xe3\x80\ \xb2\x51\x3c\x61\x41\x8a\x45\x01\x6b\x7a\x43\x2a\x34\xdd\x0d\xb9\ \x9e\x73\x31\x4f\x83\xd4\xde\x5c\x05\x91\xbc\x15\x2a\x2a\xac\x6b\ \x09\x2e\x62\x6f\x3e\x14\xbd\x4d\x94\x45\x11\x11\xbd\x85\x56\x7f\ \x14\x81\x25\x8a\x80\x40\xd6\x28\x61\xd9\xd2\x7a\x3d\xa7\xc0\x81\ \xaa\xf3\x15\xd9\x43\x08\x84\x10\x06\x29\x2a\x70\x1f\x02\x84\x67\ \x94\x51\xc0\xaa\x82\xe7\x17\x7c\x01\x37\x50\x00\x2f\xb2\xc4\x1b\ \x20\x61\xc2\x9a\xc0\xa9\x7e\x82\x0a\x84\x80\x0a\x70\x64\x36\xf0\ \xc0\x24\x2e\x81\x0a\x04\x5e\x1c\xe5\x04\xb7\xc4\x50\xc8\x0d\x9e\ \x2e\xe2\x81\x55\x6c\xc9\xeb\x14\xab\x80\x72\x89\x99\x26\x8b\x06\ \x0d\xcd\x15\xec\xcc\x79\xe8\xc7\xd4\x90\xcc\x9a\x70\xc7\x57\x90\ \x93\xea\xc5\x93\x8a\x75\x03\x6b\x7e\xab\x26\xcd\x66\x3e\x88\x43\ \x6d\x36\x8f\x3b\x98\x6b\xd6\x0d\x06\x08\xc6\xe3\xa1\x92\x68\x3c\ \x9a\x8d\xd8\x68\xdd\x44\xed\x95\xd7\x6d\xe5\xf0\x81\x0b\xbe\xfa\ \xe3\x0f\x89\xe5\x47\x95\x2d\xa7\x22\x59\x11\xfc\x01\x74\xaa\x5d\ \x91\x19\x2c\xfc\x94\x00\x12\x9e\xea\xc6\x2a\xfe\x61\xc3\x36\x21\ \xe0\xa1\x67\x18\x04\x0f\x00\x84\x80\x2a\x7c\x82\x2d\x7e\x42\x09\ \xa8\x42\x35\xe4\x2d\x05\x80\xac\x46\x1a\x08\x91\x70\xc3\x18\x9d\ \xac\x1d\x7c\x95\x0c\x95\x9c\xfa\xe9\x67\x7e\x94\x10\x38\xed\x4c\ \x82\x5e\x10\xec\x20\xa8\x67\x32\x4b\x54\xfc\xd9\x9b\x7a\x99\xd2\ \x21\xc5\x7a\x84\x58\x7c\xc4\xd3\x1a\x68\x52\xeb\x15\x85\x51\x90\ \x9b\x0d\xf5\x29\xd3\x12\xa2\x8b\x3d\xed\x61\x2c\x48\x5d\xe1\x63\ \xa1\xda\x02\x2a\xec\x5e\x3c\xc6\x4b\xee\x39\xe2\x2a\xb1\x0d\x85\ \x14\x44\x3e\xb6\xc4\x1b\xec\x0b\xdc\x24\x27\x40\x9a\xed\x47\x89\ \x14\x73\x3e\xa7\xda\xaa\xad\xa7\xa1\x48\x91\x7a\x08\x7d\x21\xec\ \x31\x21\x03\x02\xc0\x2d\x60\xaa\x80\xc3\x56\x83\x14\x1a\x43\xec\ \x55\xec\x12\xd8\x2d\xc5\x86\x80\xc3\x76\xac\xf9\xfe\xa5\xe0\x0a\ \x9d\xba\xbc\xc1\x28\x60\xc1\xe2\x0e\xde\x33\x98\x8c\x1b\xac\xec\ \xfa\xe9\x04\x1d\x1c\x45\xd0\x44\x05\x81\x76\x26\x81\x8e\x49\x82\ \x2e\x8b\xce\x0a\x8d\x59\x1c\x92\x1b\x8d\x42\xc9\x58\xc5\x52\xc8\ \x8c\xb2\xca\x9c\xe9\x72\xc3\x76\xa4\xc2\x9e\x32\x0f\x87\x32\x2d\ \x43\x89\x52\x61\x94\xab\x3a\xee\x90\xbc\xfe\xf1\x50\xa1\xa6\x02\ \x2a\xd8\x82\x38\x8c\xcd\x8d\x8d\x8d\xd6\xfd\x10\x77\x69\x08\x10\ \xf5\x10\xf1\xf1\x63\x06\xf0\xcb\x56\x2e\x9f\x78\xf9\x18\x27\x96\ \x54\xda\xfe\x81\x0c\xfc\xc1\x1f\x14\xe4\x19\x80\x0f\xfc\x74\x48\ \x8c\x7c\xc1\xa9\x22\x43\x1c\xdc\xaa\xab\x52\x80\x47\xf2\xc0\x2d\ \x52\xa1\xec\xf1\xc5\x16\x98\x6f\x35\xa8\x00\xbb\x1c\x88\xc3\x22\ \xb1\xc3\x72\xa4\x0a\x64\x31\x0f\x84\x00\x5e\x74\x01\x16\x40\x8e\ \x2e\x52\x07\x1e\xa8\x05\x80\x19\x95\xc9\x9d\xc5\xd0\x80\xa6\xcf\ \x90\xc7\x53\x34\x6b\xb1\x08\x70\x05\xa1\xc5\x81\x1e\x92\x25\x11\ \x09\x56\x74\x83\x76\x48\x4b\xec\x5c\xd5\x3b\x65\x52\xea\xba\x5e\ \xd2\xe6\xd0\x27\x2d\xad\x5c\x7d\xa8\xba\x11\xe2\x82\x80\x20\x57\ \xde\x81\x2d\x20\x2a\x62\x5c\x08\x76\x25\x06\x66\x80\xdd\x29\xb9\ \x03\xdb\xd4\x12\xbd\x7d\x4d\x71\x26\x11\x72\x92\xc6\x76\x8d\x86\ \x8f\x9d\x6d\xa7\x39\x2f\xd8\x80\xea\x7a\x2d\xc4\x10\xce\x25\x5c\ \x2e\x2c\x2b\x47\xac\xab\xda\xa2\x47\x06\x55\x08\x08\x9d\xd0\x95\ \x82\x0a\xfc\x42\x15\x87\xc0\x1b\xdc\x40\x17\x48\x9c\x47\xa6\x4b\ \xf7\x72\x6f\x18\x50\xec\x24\x1e\x88\xfe\x31\xa0\x82\x09\x98\x67\ \x16\x1a\x09\x7c\x76\x53\x1a\x3f\x73\xcc\xd5\xce\xcb\x9e\x07\xb3\ \x1c\x0b\x1f\xa5\x71\x5a\x30\x0d\x5f\xb8\x01\xb7\x2a\x85\xe5\x15\ \x20\x7e\xc8\x5c\x26\x59\x43\x3e\x4c\x70\x13\x8c\x52\xeb\x3a\x94\ \x5c\xb9\x5b\xb9\x82\x92\x07\x96\x52\x0a\x52\x6d\x09\x8e\x4d\x62\ \x24\x86\x5d\xd5\x15\x11\x61\x62\x3e\xea\xe3\x1b\xfc\x80\xf1\xbd\ \xf0\xdc\x7c\x72\x2e\x0d\xf4\x8c\x1e\x96\x44\xdc\x70\x0e\xab\x1d\ \x2a\x1f\x2c\x67\xc4\x2d\x32\x28\xe1\x94\xfa\xad\x31\x58\x80\x0a\ \x34\x31\x5f\xcc\xb2\x12\x0b\x83\xc4\xa5\xcb\x0d\xb4\x8b\xf9\x52\ \xec\x13\x4b\x9c\xc3\xf2\x00\x31\xe7\x45\x5f\x54\x61\x36\x34\xb3\ \x1d\x3c\x03\xe4\xc0\x0a\x35\xdd\xec\x06\x15\x12\x01\x96\x89\xb2\ \x34\xab\x80\xfa\x16\x9b\x4a\xe8\xe7\x5e\x4e\x57\x90\x6e\x1f\xd3\ \x13\x13\xf0\x40\x55\x99\xcb\x50\xbc\x1e\x42\xfd\x45\x3a\x7e\xd2\ \x53\xbe\xd8\x27\x5d\x9d\x3b\x84\x81\x26\xbf\x41\x11\x50\xad\x08\ \x6f\x17\xbc\x24\x06\xbc\xa2\xd2\x08\x90\xe8\x56\x06\x09\xbb\x00\ \xdf\xbe\x1d\xaf\x40\xff\xa3\x60\x1d\x96\x2e\x05\xec\x0d\xaf\x6d\ \x68\x14\xd3\x08\x5c\x06\x78\xbe\xfe\x30\xdc\x7e\xe7\x5f\x46\x31\ \x9e\x8c\xec\x45\xe7\xc1\x1f\x54\x83\x2e\xef\xb2\x90\x3c\xf1\x16\ \x74\xc1\x13\x97\x82\xf9\x02\xb3\x5e\x17\xb3\x81\xb8\x6f\xe2\x2a\ \x73\x97\x5a\x87\xcb\x6a\x50\x34\xc7\x1c\xd1\xd8\xa4\x4d\xca\xec\ \xcc\x72\x09\x1c\xf6\x47\x9c\xb6\x87\xb1\x1d\x9d\xf2\xa8\x85\x5a\ \x0c\x9d\xb9\xd8\x89\x3f\x15\x35\x42\x69\x6b\xf3\x34\x57\x22\xba\ \x18\x74\x79\x28\x0a\x7e\x8d\xd7\xa8\xab\x08\x8f\x8d\x55\xfa\x5b\ \x5d\x09\x67\x2c\x25\xa7\xbd\x02\x80\x54\xf7\x4b\xdc\xbc\x02\xf0\ \x8d\x8f\xbf\x81\x54\x59\x6a\x1a\xda\xe2\xb0\xc0\x9e\x14\x41\x78\ \x08\xc4\x98\x2a\x2a\x10\x29\x60\xb2\xe7\x16\xe7\x89\x49\xf7\xc5\ \x12\x74\x74\x5e\x1c\x36\x90\xf0\x75\x08\xfc\x75\x48\xa7\x8b\x77\ \xf3\xc5\x24\xce\x9a\xc7\xe8\x22\x49\xf2\x88\x1d\x48\x01\xb3\xc1\ \xc7\xe5\x3d\x23\x9a\x62\xc5\x1a\x2f\xcb\x98\xea\x99\xc9\x8c\x66\ \x24\xe1\x19\x39\x9d\xc5\x9d\xb0\x85\xd5\x0c\x1d\xd6\x48\x18\x56\ \xe5\xc3\x59\xfd\xc5\x91\x38\x2d\x74\x3d\x06\x53\x3b\x94\x2b\xc1\ \xf3\x24\xca\xc0\x0f\x90\xe0\x23\x4b\x46\x64\x3c\x72\xd9\x59\x14\ \x89\x82\x9d\xa4\x4a\x8d\x0c\xfe\x18\x9f\xdc\x6c\x25\x28\x07\x16\ \x2e\xfd\x23\x69\x94\xd4\x19\x3c\xaf\xc0\x8e\x38\x2a\x0b\x44\x35\ \x9c\x41\x2a\xae\xab\x12\xca\x75\x7b\xb2\x05\xd3\xf4\xc7\x75\xfb\ \x54\x68\x11\x5f\x8b\x1e\x48\x21\x50\x00\x60\x4f\x31\x14\xb3\xa7\ \xba\xc4\x50\x4a\xdb\x9a\x09\x68\x81\xad\xa5\x1f\xfb\xd5\xd3\x66\ \xd6\xf4\xec\xac\xf1\x3a\x29\x0b\xcc\xfa\x56\x1b\xb9\x09\xe8\x81\ \xa9\x6f\xb1\x0e\x9d\xd5\xc7\x5e\x70\xdb\x85\xf9\xd3\xaf\x50\xdb\ \xb9\x69\x2b\x52\x1f\x72\x81\xbf\x9b\x61\x14\xe2\x14\x2f\x81\x0c\ \x14\xea\xee\x55\x0f\xda\x48\x46\x23\x86\x0d\x24\x8a\x40\x0b\x16\ \x08\x5e\xc8\x40\x38\x54\xda\x12\x8d\x35\x69\x3c\x4a\x9e\xdb\x92\ \x8f\x99\xd4\xf3\x7a\xda\x5a\x83\x0a\xc4\x94\xc0\x43\xde\x2a\x60\ \xb6\xa7\x1b\x0c\x08\x40\xb9\x85\x9b\x38\xfa\x68\x82\x0b\xf1\x75\ \x41\x08\x94\x82\x48\xa7\x8b\x76\xbb\xb8\x8e\xcf\x1a\x3a\x24\xf3\ \x5e\x8e\xc1\x18\x68\x81\x16\x70\x93\x70\x9c\x90\x9d\xb4\xf1\x81\ \xc6\x56\x1a\xb6\x31\x53\x08\x92\xd0\xbc\x2c\xce\xb4\x80\x1b\xdc\ \x85\x1d\x5b\x09\x9e\x85\x85\x84\xe2\x49\x5e\x20\xf0\xb3\xb9\x01\ \x0f\xa8\x05\x56\x9d\xd0\xfe\xaf\x9f\xdb\x97\x17\x86\x98\xaf\x1b\ \x88\x0e\x46\x54\xeb\xe3\x0f\x38\x48\x84\x5c\x08\x64\x34\x06\xc1\ \x9c\x12\x64\x74\x06\x0b\xb2\xcb\x61\xef\xa3\xdc\xd8\xc1\x21\x14\ \xc4\x58\x8f\xcf\x21\x1c\xc2\x12\x01\xb7\x8f\x75\xda\x0d\xe3\xa0\ \x2f\x9d\x01\xa8\x10\x7a\x09\xd8\xea\xf7\xb6\xa7\x31\xec\xc1\x1e\ \x30\xc1\x2e\xe8\xc2\x2e\x80\x82\x5b\x38\x3a\x8d\xf7\x2c\xb6\xbf\ \xc1\xf7\xb9\x5a\x29\x6c\x41\xbb\x04\x33\x15\x56\x74\x1e\x18\x83\ \x4c\x8c\x81\x09\xa0\x03\xa8\x8f\x41\x0b\xb4\xb4\x79\x3f\x03\x08\ \xf9\x0c\x56\xa4\x53\x59\x38\xc5\x67\xda\xa4\xcc\x51\xc5\x9e\x31\ \x81\x36\x37\x41\x0b\xb0\x8e\x59\xb4\x47\xae\xdf\x45\x35\x62\xcb\ \x67\xa7\x15\x86\xa5\x05\x3d\x05\x15\x8a\xcd\xa6\xec\x0a\x6a\xd6\ \xf1\xd0\x3e\x4f\x31\xd8\xd0\xd8\xbc\x48\x86\x56\x36\xe2\xda\x20\ \x46\xbd\xe9\x23\xd8\xd4\xc3\x0b\x83\x97\xb7\x0f\x74\x38\xbc\x42\ \xb8\x8b\xfb\xd1\x03\xb7\x48\x89\xd4\xf3\xae\x17\x42\x40\xcc\x08\ \x34\xe1\x08\x00\x6e\xbb\xff\xa5\xd0\xb9\x81\x0d\x08\x08\x40\xdd\ \xfb\xce\x39\x7a\x6e\x4f\xf1\x1b\x84\xf4\xaa\xba\x1a\x5f\xdb\xf2\ \x00\xd8\x22\xb6\x77\xfe\x41\xc9\x82\x3a\x3a\x84\x27\x3a\xa0\x03\ \x34\x64\x03\x35\xb4\xb4\x51\x49\x3c\x08\x09\xcd\xb2\x7c\xc7\x77\ \xe8\xf1\xd0\x38\x4b\x9a\xee\x01\xaf\xd1\x8a\x1b\x74\xc3\xe8\xfd\ \x96\xd1\x22\x05\x67\xc3\x50\x4b\xf0\x1c\x5b\x18\xd4\x89\x8d\x90\ \x62\xb6\x41\x18\x08\x38\x8b\xc5\x58\xa3\x26\x88\x40\xba\xb6\x3e\ \x2a\x67\x5d\x0d\x8a\xa1\x10\x84\xbf\xed\x95\x56\x66\x32\xd0\xff\ \x40\xa5\xca\x04\xbf\x8c\x3b\xb9\x1f\x7d\xd2\x3f\xca\xd2\x8f\x86\ \xb9\x1f\xb7\x15\x41\xcc\x19\x20\xa9\x14\x76\xac\x36\x7b\x0b\xd7\ \x7b\x7d\xbd\x7f\xfd\x5c\x64\xf7\x16\x50\x2c\x05\x84\xb4\x46\x0b\ \xb6\x90\x50\x80\x30\x44\x19\x17\x4f\x8d\x0a\x8c\xc1\x5e\xa2\xc3\ \x17\xd4\x7d\xdc\x67\x83\x35\xa0\xc3\xa8\x2b\x9e\x1d\xa8\xde\x7b\ \xbb\x5c\x59\x24\xc5\xb4\x3c\x45\x1b\xdb\xa4\x24\x8d\x66\x1e\x18\ \xbe\x03\x22\xbe\x20\xa1\x90\x4f\x35\xbe\x7d\xec\xdc\x12\xa8\x89\ \x1b\xd8\x87\x5a\x58\x0d\x46\x57\xb0\x28\x49\x2d\x3c\x97\x12\x0f\ \x75\x8d\xd7\xa4\x20\x40\xc8\x28\x52\x24\xcc\x8f\x3b\x77\x7c\xd5\ \x4b\x78\x27\xdc\x0f\x87\x22\xee\xd4\xab\x17\xae\xc8\x9b\x37\x4b\ \xde\x08\x0c\x67\xfe\x2b\x43\x9c\x38\x55\x0e\x85\x13\x39\x32\xdc\ \xab\x57\x87\x0e\x99\x54\xf9\x2a\x9c\x88\x1f\x67\x52\xa4\x28\x02\ \x33\xe6\x99\x70\x23\xaa\xf1\x39\x43\x61\x44\x09\x63\xd5\x42\x2c\ \x59\x02\x60\xc9\x2e\x26\x7b\x98\xe8\x02\xb5\x0b\x94\x2e\x26\x4c\ \x40\x0d\x25\x2a\x54\x46\x08\xab\x14\x42\x94\xda\xa2\x42\x45\x88\ \x37\x37\x6e\x2c\x09\x41\x41\x05\x85\xb0\x00\xd0\xaa\x40\x97\x61\ \xcc\x18\x74\xaa\xd0\xa1\xa3\x46\x2d\x1b\xba\x31\x5a\x4c\xd8\xb1\ \x93\x81\xaf\x9d\x67\xd6\xac\xad\xb1\xd6\xa2\x9b\x14\x17\x78\xa4\ \x24\x96\x82\x87\x31\x63\x6f\x87\xbb\xb5\x18\xec\xc2\xc5\x9a\x51\ \x52\x47\xad\xf1\x46\x8e\x73\x67\x72\xdd\x02\x37\x59\xe3\xa6\xcd\ \x28\xb4\xa7\x97\x8c\xda\x25\x74\x54\x1b\x37\x5d\x5a\xb7\x69\xd3\ \x65\x57\x1e\x1e\x3c\x9a\x70\xe3\x26\xc4\x1d\x96\x30\x45\x64\x64\ \x1c\x48\x10\xb8\x0c\x81\xc6\x91\x17\xf9\xe1\xe4\x60\xbd\x88\xce\ \xc3\x39\x71\xf8\x23\x9c\x44\x8a\x17\x2d\xca\xf8\x61\xcb\x63\x1c\ \x5b\x2c\x6f\x8e\x18\x31\xd2\x24\x4a\x96\x28\x53\x8a\x3c\x73\xe6\ \x47\x8a\xf5\x67\x8a\xb8\x1f\x91\x05\xe7\xce\x6a\xd5\x8c\x85\xe9\ \x82\x56\xe8\xfe\x2e\x37\x7b\x74\x61\x6a\x29\xa7\x60\x01\x05\x94\ \x51\x46\x79\x83\x82\x2e\x42\xc0\x67\x0b\xb0\x14\xbc\x8f\x82\x2d\ \xf8\xc3\xe8\x86\x07\x85\xe2\x4f\xad\x0c\x98\x69\x2b\xae\x0f\x3f\ \xa4\xc6\x1a\x74\xf6\xea\xcb\x04\xc9\x44\x6b\x21\x31\xc4\xba\x69\ \x71\xb1\xc3\xf0\x70\xc1\x1b\x3a\x5c\x88\xcc\x9a\xc4\x5a\x70\xe3\ \xb4\x51\x78\x50\xd1\x9b\x15\x3c\x23\xc7\x9b\x16\x9a\x70\x23\x0f\ \x37\x76\x31\xed\x34\xfe\x2e\x1b\xaa\x8d\xa8\x46\x81\x2d\xca\xda\ \xdc\x68\xc2\x4a\x6e\x78\x08\x23\x8c\xe0\x32\x32\x4e\xcb\x1f\x7e\ \x3b\x0e\x39\x81\x96\x63\x2e\x9c\x83\xee\x18\x81\x21\xe9\x1c\x72\ \x47\x22\x27\x2a\x0a\x4e\x23\x8e\xbc\x1b\xef\xa6\x57\xc4\x13\x49\ \xa5\x94\x46\x28\x8f\xcf\x96\x5e\xaa\x89\xa6\x33\x46\xf8\x24\xa7\ \xfb\xaa\x71\xa7\x9a\x3c\xf6\x43\x4b\xb5\xa3\x60\x51\xca\x40\x5d\ \x74\x89\x54\xc0\x10\xc0\xaa\x4a\x28\x8c\x28\x30\xd4\xac\xa1\x96\ \xb8\x61\xc9\xd3\x6e\x68\x43\x95\x31\x98\x41\xc6\xc3\xb9\xe2\x62\ \x06\x9d\x6c\xd6\x80\x55\x8b\x12\xf5\xc2\xc3\x1a\xd1\x06\xc3\x51\ \xb2\xc2\x62\x3c\xcc\x9b\x5f\x8d\x30\x22\xb2\x6e\xa2\x70\xe3\x32\ \x00\x78\xfe\xec\x06\x0f\x23\x08\xc3\x83\x8e\xce\x56\xb0\xd5\xd8\ \x28\x33\x1c\xb5\xda\x63\x53\x4b\x2d\xca\x36\x44\x6b\x82\x87\x3c\ \xc2\x08\xc1\x38\x8b\x84\x1b\xe8\xb7\xe2\x80\xcb\x4e\x39\xe6\x0e\ \x3a\x53\xcd\x33\x1d\x72\xe2\xa6\x7a\x46\x10\x01\xb8\x1f\x44\x10\ \x61\x04\xee\x3c\xb2\xe5\xce\x3e\xc1\xc3\x53\xa5\x92\xc2\x41\x0f\ \xbc\x7c\x45\x38\x23\x5f\x98\x66\xe2\xa3\x1a\x9c\xaa\x29\x21\x62\ \x0b\x42\x48\xf2\xb2\xa5\x98\x30\x23\xd2\x03\x9b\xa2\x14\x96\x8f\ \x61\xb1\x28\xd4\x4d\x01\xb8\x30\x04\x0c\x37\x95\x6a\xd4\x10\xbe\ \x68\x87\xc3\x2f\xbe\xa0\x26\x66\x6a\xd0\x69\x47\x8b\x57\x2d\x70\ \x23\x9b\x6e\xf2\xca\x40\xaf\x67\xd6\x28\x72\x0d\x17\x01\xcb\x15\ \x8f\xc7\x7e\xf5\x26\xd8\x16\x41\x6b\xe2\xd8\x51\x9a\x70\xf6\x57\ \x3c\x22\x8b\x82\xb0\xc5\xf0\x68\x61\x8d\x36\x2a\x1c\xd5\x6b\xaf\ \x1f\x75\xe3\xdb\x2e\xc8\x15\x57\xce\xaa\x08\x3a\x57\x4c\x39\x8b\ \x70\xc2\x9d\x34\xd1\x7c\xd7\x09\x88\x46\x90\x68\xbc\x1f\x06\xfa\ \xa1\x9e\x43\xf8\xf5\xce\x16\xf1\x04\x26\x78\x25\xf2\x06\x17\x69\ \x61\x85\xe1\x73\x4f\x04\x44\x7b\xfa\xc2\x18\x0b\xf2\x90\xcd\x0d\ \x1b\xfe\xdc\x48\x8a\xd2\x1c\x72\x00\x25\x07\x90\x39\x17\xf5\x0d\ \xa2\xf8\x13\x99\xbf\xaf\x97\x2c\x85\x19\xbe\x32\x98\xf9\x0b\xb9\ \x68\x96\xcb\x86\x3c\xf2\x30\x86\x1a\x9e\xf7\xd2\xeb\xd6\x14\xa5\ \x00\xac\x05\x15\x0d\x93\x02\x34\x65\x73\x2f\xac\x1b\xa7\x41\xe5\ \x01\x0f\xce\x56\x98\x3a\xb2\x35\x98\x67\x3e\x30\x63\x55\x26\x9d\ \xf4\x28\xbb\x80\x6d\x53\xb2\xdf\x10\x57\x5c\xe0\x42\x30\x77\xa0\ \xb5\x05\x72\x82\x5d\xb8\x9d\x5b\x53\x3c\x7a\x1d\x4a\xae\x24\x3a\ \x6d\xf9\xae\x4f\x82\xc7\xc3\xd3\x3c\x92\x4c\x7a\x7f\xa4\x84\xd7\ \x8b\x29\x85\xc5\x1d\xa6\xc0\x98\x2f\x4a\x90\x8d\x3c\x84\xa0\x0d\ \x4c\xa8\x1c\x2c\xa0\x92\xb9\x49\x99\xc1\x03\xcb\xd0\x18\xc8\x30\ \xb2\xa4\x37\x6c\xe1\x73\xa4\xab\xd6\x69\x54\x70\x3a\xbe\xa0\x63\ \x75\x34\xa3\x86\x2a\xe6\x92\x0d\x0b\x58\x20\x1b\x01\x2c\x41\x14\ \xc6\xa0\x17\x3b\xdc\xca\x0d\xd6\x88\x8c\x27\xac\x71\x85\xc4\xb8\ \x40\x31\xb9\xba\x1a\x91\x1a\xb5\x84\x26\x48\x21\x48\x2b\xa0\x83\ \x37\x96\x97\x87\x5d\xb4\xc1\x3f\x46\x52\x92\xf4\xbe\x96\x32\xfe\ \x54\xef\x0d\x64\xdb\x5e\xf7\xb6\x64\xae\x30\xa1\x2b\x6f\xed\xba\ \xfe\x03\x73\x9c\xa0\x26\x35\xa5\x69\x04\x78\x23\x17\x46\x64\xb0\ \x91\x7e\x01\x4e\x70\x82\xb3\x9f\x9e\x48\x42\x30\xc3\xe5\xab\x3d\ \x3f\x78\x98\x0a\x78\x70\x1f\x63\x94\x80\x07\xb3\xd9\xc5\x1d\x29\ \xa5\x14\x05\xe6\x80\x81\x48\xf0\xc0\x03\x05\x01\x0b\xb4\x54\x30\ \x42\x17\x59\x92\xca\x2e\x08\x80\x42\x7c\x41\x83\xed\x68\x07\x32\ \xda\xc1\x0c\x49\x22\x43\x15\x5c\x51\xc1\xff\x60\x96\x0d\x63\x70\ \x23\x0a\xe8\x88\x82\xf3\x76\x27\x19\xde\x51\x86\x86\x2a\x02\xcd\ \xd5\xd6\xd0\x28\x00\xb4\x81\x87\x1d\xe0\x4c\x07\x56\x10\x4b\x6f\ \x50\x8d\x79\xa5\x41\xcd\x81\x90\x98\xc4\x6a\x69\x2b\x04\x64\xc3\ \xc8\x13\x8b\x00\xc5\x82\x4c\x71\x38\xeb\x12\xdf\x43\x98\xa3\xc5\ \x77\xfd\x20\x38\x29\x7b\xc3\x0f\x5e\xd1\xbe\xbf\xe1\x69\x3c\x76\ \x22\x4f\x1a\xf1\x44\x12\xf1\x8c\x87\x0f\x4e\xa8\xc6\x4e\x16\x87\ \x28\x0a\x60\xc1\x18\xc6\x98\x0d\x82\x46\x61\x20\xcd\xe5\x40\x17\ \x98\x83\x85\x19\x90\xa0\x31\x41\x08\xa2\x52\x82\xcc\x90\x82\x3e\ \xf1\x29\xd4\x4c\x25\x7a\x00\xe8\x82\x30\x90\x21\x49\x66\x3c\x92\ \x1a\x8f\x8c\x24\x32\xbe\x60\x01\xae\x0c\xe0\x0b\xa8\x00\x20\xfe\ \x0f\x7a\x19\x82\x3c\x34\xc1\x6a\x2d\xb8\x42\x0c\x67\x48\x4a\x29\ \xf0\xce\x46\x4d\x50\x65\x1b\xac\xe1\x4a\x72\xb8\x32\x96\xc9\xf3\ \x86\xef\x42\x63\x4b\xd0\xe5\x92\xa5\xc8\x62\x50\xf5\x9c\x58\x15\ \x81\x40\x51\x7c\xdf\xcb\xdb\x74\xca\x84\xd3\xe5\x28\xa4\x1e\xb6\ \x60\x08\x33\xc9\x25\x10\x11\xf4\x34\x9b\x79\x4a\x23\x49\xf2\x75\ \x93\xfb\x89\xe0\x5f\x23\x38\xc3\x37\xab\xe1\xcd\x70\xca\xf1\x71\ \xe7\x44\xa7\x3a\x31\x97\x03\x41\xc0\x33\x9e\x82\xc0\xdc\x3c\x61\ \x81\x11\x0b\x39\x0c\x1f\x88\x14\x4a\x58\x2e\x78\x83\x5f\xa8\x22\ \x92\x03\x75\x24\x3a\x20\x39\x50\x74\xe8\xc1\x18\x5c\xf9\x04\xcc\ \x7e\xd2\xcb\x25\x74\x81\x5b\x43\xb3\x91\x8a\x48\xe9\x82\x2b\x94\ \x72\x31\x52\x48\xe5\x69\xda\xd0\x02\x72\xd8\xa1\x33\xb0\x4c\x1e\ \x8b\x42\x43\x9a\x63\xb5\xb4\xa5\x45\x69\x43\x2f\x9b\x98\x1d\xe3\ \x74\x8f\x20\x4e\x28\xc8\x4d\x3d\x5b\xa6\x63\x4e\xa7\x3a\xbe\x90\ \x26\x2a\x26\x82\xb7\xbc\x89\xc4\x1d\x2d\x19\x89\x35\x5f\xeb\x12\ \xe5\x84\xa7\x25\xeb\x09\x8f\xc3\x9e\x6a\x1f\x44\xcd\xb1\x9c\xc6\ \xa8\x23\x3a\xd3\x69\x20\x76\x7e\xd5\x0c\x57\x40\x42\x3c\xfe\xb3\ \x3a\x4f\xec\x84\xea\x42\xbb\x3c\x2b\x5a\xa5\xb2\x84\x5f\x14\xd4\ \x91\x6e\x75\x64\x5b\x1f\xa9\x8a\x6a\xa8\x40\x18\x9f\xf0\x09\x44\ \x19\x24\x51\x1e\x30\x4f\x94\x16\x15\x2c\x29\x11\xb3\xd1\xdd\x59\ \x83\x6b\x44\x69\x43\x37\x18\x1b\x5f\xe4\x3d\x16\x34\x2c\x3c\x27\ \x65\x2b\xbb\xad\x01\x7a\xa5\x0b\x55\xe9\x52\xda\xc4\x37\x4c\x30\ \x49\x47\x3a\x07\x19\x6d\xdb\x14\xa2\x17\xbe\xd8\x02\x01\x23\x98\ \x1b\x75\x9c\xc0\x1e\xe5\xb8\x84\x3a\x76\x92\x97\xe1\x64\xa2\x30\ \xa5\xea\xe4\x0c\x7c\xc0\x89\x53\xab\xf1\x03\x15\x20\x4a\x8e\x25\ \x08\x60\x39\x4b\x83\x20\xac\x56\x4a\xab\xef\x3c\xae\x19\xcc\x00\ \x8c\x3d\x2e\x37\x43\x66\x7d\xee\x92\x6e\xa0\x8a\x66\x38\x32\x00\ \xd7\x6d\x2b\x5f\x98\x91\x50\x0b\x30\x14\x66\x40\x61\x10\x6e\xd6\ \x10\x05\x25\x47\x61\x30\xbc\x4b\x8c\x0c\x75\x75\xab\x3c\x1c\xab\ \x0b\xd6\x58\xac\x7c\xa1\x35\xcb\xe5\x8d\x26\x49\xfd\xc4\x6f\x12\ \x55\x03\x3b\xab\x84\x20\x5c\xc8\x11\xd7\x30\x3d\x5b\x90\xe9\xa8\ \x59\x7c\xc7\x1c\x88\x13\x7a\x1a\x07\xd4\xc5\xc1\x17\x0e\x16\xc1\ \x83\x07\x92\x02\x7c\x3d\xc4\x25\x6c\x4c\x98\x4b\x62\xfe\xc2\x54\ \xc3\xf1\x41\x04\x1e\x1e\x81\xc3\xfa\x77\x9f\x00\x72\xc3\x18\xaa\ \x30\xb1\x31\x5e\xa3\xe2\xa5\x60\xae\x52\x81\xdc\x2a\x03\x61\xec\ \x55\x4d\x5b\xe4\x06\x17\x49\x64\xca\xd0\xca\x9f\xb5\x22\x83\x1a\ \xcd\x08\x40\x8f\xdb\xaa\x41\x66\x54\x52\x05\x30\x43\xa8\x31\x28\ \x10\x06\x1e\x18\xa3\x09\xc6\x48\x32\x61\x24\x33\x98\x2b\xec\x4e\ \xbd\xea\xb5\x06\xa3\xd0\xd2\x85\x26\x18\x41\x85\x8b\x35\x36\x67\ \x7e\x88\xd2\x22\x31\x6a\xb2\x5f\xd6\x65\x6c\xac\x52\x3d\xe3\x60\ \xaf\x5c\x5f\x12\x70\x31\xc5\xd7\x10\xd5\x1a\xc4\x16\x0a\xee\x0e\ \xbd\xaa\x71\x93\x22\xfc\x61\x20\x7d\x56\x8e\x84\x63\xd2\x1e\xfc\ \x29\x8c\x0f\x7c\x08\x07\x87\x3d\xfc\x30\x12\xcf\x11\x80\xaa\xd8\ \x24\x5d\x44\xb8\x0b\xd8\x80\x82\x09\x1f\xeb\x37\x2c\x02\x09\x63\ \x3f\xc2\x18\x18\x96\x0e\x19\xb9\xc0\xe2\x35\x92\x81\xea\x06\xa5\ \x60\xa8\x2a\x66\x41\x8d\x59\x04\x60\xc7\xa9\xce\x40\x3b\x84\xcc\ \xd0\x31\xc4\x01\x80\x25\xf4\xad\x6d\x3a\x39\x06\x23\x04\x66\xbd\ \xb9\x6a\x72\xee\x42\x10\xec\x14\x6d\x46\x2f\xc7\xe6\xcc\x2c\x99\ \xc5\x3c\xd2\xe0\xd2\xd9\xd2\xab\x31\x22\x45\x96\xfe\x9d\x6a\xe3\ \x4d\xb5\xc3\xc1\xa9\x72\x94\xa3\x90\xbe\xa1\xb6\x04\xf4\x79\x58\ \x84\x07\xc2\x1e\xf6\xe8\x39\xdd\x7a\x5e\x8f\x13\xba\xc9\x87\x97\ \x7c\xb3\x26\xf2\x36\xf1\xd5\x69\x66\x0d\x63\xe4\x21\x1b\xd4\x18\ \x43\x37\x8c\x61\x31\xa3\xec\xe1\x63\x95\x0e\x38\x8c\xcd\x10\xc8\ \x77\xbe\x53\x28\x9c\x0e\xd5\x21\x49\xc6\x9f\x52\x54\x43\x0f\x7a\ \x50\x05\xc4\xe7\x82\x6a\x1f\xb7\x83\x1a\x03\x68\xf4\x17\x54\x85\ \xd0\x2f\x44\x61\xeb\x21\x70\x43\x92\x99\x55\xb4\xa2\xe5\xba\x68\ \x3c\xd8\xcf\x12\xfa\x6a\xa5\x26\x74\xc3\xe5\x42\xa2\x9a\xd6\x46\ \x53\x1a\x2f\xd7\x3c\x97\x38\xef\x92\x76\xce\x05\xf4\x62\xe6\x8d\ \xf4\x7a\xeb\x69\xfb\xea\x51\x02\x27\x64\xc1\x1d\x59\xb8\x43\x16\ \xb0\x20\xdb\x14\x84\x41\xe9\x60\x7a\xc9\x0f\x28\x80\xfb\xa7\xf2\ \x81\x02\xbd\x9f\x3d\x41\xee\x13\xc7\x88\x0d\x5e\x15\x51\xa0\x46\ \x09\x20\x67\x8c\x11\xa1\x83\xcb\xfc\xde\x03\xd9\xcb\x6e\x69\xb4\ \xa7\x1d\xe0\xd4\x6f\xbb\xa7\xd3\x9a\xf0\x25\xfd\x62\x00\x94\x14\ \xc6\xdd\xbf\xaf\x77\x64\x34\x43\x15\x80\x6f\xc6\x17\xfc\x7e\x57\ \x9f\x54\x03\xbc\x20\x6f\x01\x93\xd7\x10\xca\xfe\xc1\x58\xc3\x13\ \xcd\xf3\xa8\x69\x84\xad\xb4\x26\x30\x2a\x04\x8a\x65\x6c\xf2\x84\ \x05\x30\x8a\x44\xf3\x36\x8f\xf3\x0e\x49\x7a\xd4\xe5\x37\x7a\xce\ \xa6\x04\xc2\xe7\x7c\x2e\x22\x7c\xc1\x17\xee\x20\xaa\x7a\xa2\x04\ \x3e\xac\x1a\xb0\x20\xaa\x28\xc0\x9b\xc4\xe7\x0c\xc2\x80\x03\x37\ \x70\x03\xab\x21\xd6\x7a\x2f\xd6\xa0\x08\x0b\x54\x80\x9c\xb8\x21\ \x1b\xbe\x20\x1b\x5c\x30\x1b\x98\xa0\x0b\x74\x26\x2e\x3c\xc1\x02\ \x9e\xe2\x28\xcc\x60\x0f\xe8\x69\x9e\x2e\x2d\xd3\xe6\x29\xed\xe6\ \x69\x53\xa0\xab\x42\x9a\x0b\x91\xb8\x0f\x19\x06\x40\x15\xbe\xcf\ \x06\x66\x61\xe2\x76\xac\x19\x24\x0e\x19\xd0\x81\xfc\x7e\x42\x18\ \x7e\x62\x41\x86\xe2\x0d\xf2\xc0\x1a\x4e\xe8\x56\xe2\xcf\xa2\x8a\ \x86\xbc\xd6\x60\x17\x4e\x23\x0f\xbc\x41\x2f\xbc\x81\x1b\xaa\xc7\ \x78\x46\x4a\xcb\x40\x23\x68\x8c\x84\x88\xac\xc7\x00\x15\x2e\x4a\ \x26\x2b\x65\xc0\xa8\x6d\xae\x08\x4e\x78\x0e\x38\xbe\xe7\x38\x8a\ \x49\xb4\xda\x8c\x02\xdd\x41\xf5\xb0\x80\x03\xa3\x2a\x51\xa2\xaa\ \x20\x42\xd0\x9b\xee\x23\x0c\x48\x10\x12\xbb\x87\xcc\x6e\x63\xc4\ \xb2\x81\x1b\x2c\x00\x37\x20\x47\xdf\x76\xfe\xa1\x2e\xc6\xe0\x0a\ \x60\x10\x16\xf6\xe0\x8f\x3e\x46\xab\x74\xa1\x07\x81\x10\xac\x02\ \xa9\x42\xe2\x6e\x64\x3c\x8d\x54\xba\x4b\x0f\x84\xc1\x02\x9a\x30\ \xfc\x9a\x01\x0a\xed\x4e\x15\x48\xed\x0b\x94\x90\x2b\x46\xb0\x0b\ \xa2\x2b\x0f\xa8\x21\x0a\xba\xe5\x0b\x03\x83\xfe\xbe\x10\x7a\xfc\ \x69\x0d\x54\x88\xb1\x3c\x2a\x04\xb8\xa1\x1b\x4c\x8a\x6a\xde\x10\ \x0e\xe5\xf0\x88\xe8\x50\x5b\x64\x03\xa6\xc8\x25\xa8\xda\x86\x39\ \xdc\xc1\x6d\xc4\x71\x8a\xc6\xc4\x38\x7c\x6e\x39\xe2\xc5\x11\xbd\ \x49\x04\x11\x51\x51\xaa\xe1\x37\xa0\x88\x02\x14\xd1\x09\x4c\x90\ \x04\xc7\x2c\x5c\x6c\x83\x07\x20\x27\x72\xf2\x80\x09\xc4\x2e\x1b\ \xae\x00\x1d\x90\xc0\x13\x9e\x8f\x81\x3c\x00\xe0\x92\x0b\xd3\xe4\ \x49\xed\x34\x86\x15\x6f\x0e\xba\xa2\x6b\x0b\xea\x6e\x00\x2c\xe0\ \x17\x66\xe1\xee\x30\x32\x00\x94\xf0\xee\xa8\x81\xd4\x06\x60\x04\ \x29\xa0\x14\xb0\x70\x28\x78\x24\x68\xb0\xe0\x4a\x00\xa3\x79\x9c\ \x67\x0d\x82\x62\x28\xf2\x60\x05\x9a\xd1\x0e\x8c\x80\x07\xaa\xa4\ \x05\x7e\x44\x79\xde\x70\xd9\xba\xac\x00\xf3\x6b\x5b\xb6\x91\x1b\ \x13\x24\x3b\xb4\xa4\xcd\xde\xc6\x1d\xfe\xc2\xd1\x09\x1a\x70\x38\ \xc6\xc4\x0f\x7f\xa3\x20\x78\x80\x1e\x9b\xd2\x5c\xd8\xef\x36\x30\ \x30\x4b\xca\x46\x4b\x10\x65\xbf\xc6\x6c\x2b\x2f\xeb\x48\x84\x88\ \x29\xee\x48\xc5\x76\x61\x0f\x90\x00\x1a\x06\x12\xed\xfe\x68\x9e\ \xb2\xca\xc5\xba\x0a\xac\xd0\x0e\x35\x9c\x4b\x54\x76\x69\x0b\x84\ \xe1\x0b\xf4\x60\x00\x84\x41\x18\x4a\x8d\xfc\x9a\x50\x09\x6d\x40\ \x2f\x49\xcd\xfb\x7e\xc1\x2a\xc8\x85\x6c\x8e\xec\x4a\x82\x46\x25\ \x05\x43\x6b\x3e\xaa\x03\x62\x92\xb1\xf2\x41\x34\x8c\xe0\x47\x64\ \x29\x00\xe1\x90\x34\xa4\x04\x9d\x12\x89\xa5\x52\xa3\x80\xe2\xb0\ \x97\x98\x28\x7b\x32\x82\xb3\x44\xeb\x6d\xee\x20\x1c\x87\x52\x29\ \xc5\xc4\x0f\xd3\x46\x4b\xc2\xc5\x22\xc2\x4b\x4b\xc8\x2c\x0c\xc0\ \xc5\x22\x88\x22\x7b\x64\xed\x27\x78\xa0\x2b\x60\xca\x36\x84\x88\ \x36\xda\x20\x72\xd0\xe9\x8e\x96\x62\x29\xf6\x60\x19\xcc\xd2\x13\ \xde\x09\xed\xd4\x32\x07\x80\xc1\xc5\x48\xf1\xec\x3c\x00\x09\xf6\ \x49\xe1\x50\xe3\x06\xea\xf2\x2e\x85\xc1\x22\x6f\x31\x00\x84\xc1\ \x3b\x6d\xe0\x17\xbe\xaf\xe2\x90\x81\x92\xba\x22\x2c\x9a\x48\x1f\ \x6f\xc3\x0d\x36\x29\x68\xac\x84\xfe\xbc\x0c\xc3\x05\x74\x84\x3f\ \xa2\xe0\x31\x6b\xe5\xd6\x8c\x20\x1f\xba\x41\xcb\x24\xe3\x32\x23\ \x47\x36\x5c\x83\x0c\x5b\x0a\x41\xb4\x85\x4a\x96\x4d\x2b\x7b\x49\ \xa6\x66\x8a\x20\xca\xc4\x28\x8f\xf2\x10\xd3\x6c\xf4\xb4\xc7\x7b\ \x08\x13\x3b\x9a\x88\x89\xa2\x84\x80\x72\xe8\x42\x6d\xc3\x02\x9a\ \xc0\x02\x88\x28\xcc\x28\x27\x49\xba\xe0\x06\xc5\x52\x29\x50\xf4\ \x38\x91\x60\x19\x48\xd1\x07\x9d\x53\xab\xb8\x2a\xed\x34\x06\xed\ \x8e\x6b\x2a\x38\x13\x1f\xf4\x00\x09\x85\xa1\x1a\x06\xa0\xee\x9a\ \xe1\x22\x99\x70\x3b\xff\xb2\x19\x04\x0a\xe3\x84\xa1\x82\x96\x80\ \x02\x4a\x60\xf0\xb2\x81\xa2\x86\xb1\x48\x70\x25\x86\x5c\xe0\xd7\ \x4e\xc3\x0d\xec\x13\x0d\x01\x03\xfe\x92\xac\x45\x30\x8f\x79\xa0\ \x74\x0f\x82\x86\x09\xbe\x8c\x09\x88\xc8\x28\xaa\xe4\x4c\x6f\x23\ \x4b\xc6\x2c\x98\xd8\x94\x41\x89\xd2\x28\x4f\x13\x0b\x20\x54\x36\ \x65\x13\x38\xfa\x2b\xda\xde\xa0\x49\x52\xa3\x7a\xb2\xa5\x7a\x56\ \x23\xba\x80\xd3\x0d\x74\x06\x06\x93\x64\x17\x6c\x60\x0d\xf6\xc0\ \x62\x6e\x90\x63\xca\x2e\x8f\xcc\x60\x19\x56\xb4\x45\x53\x11\x73\ \x80\xa1\x8f\x7c\xf0\x07\xa7\xfe\xd3\x46\x91\xe8\x06\x28\x80\xa1\ \xf4\xe0\x13\xf2\xb2\x47\xef\xee\x47\x81\xf4\x17\x2c\xd2\x65\x50\ \x47\x0f\x54\xe0\x2c\xc4\x82\x84\x5a\xb0\x09\xb2\x81\x18\xab\x44\ \x30\x60\x08\x45\xda\x2b\x04\xce\xf0\x4a\xed\xa0\x3f\x03\xe3\x36\ \x9a\x60\x77\x98\x2c\x30\x04\x43\x30\xac\x61\x3e\x59\x4a\x49\x76\ \xa1\x48\xce\xb4\x48\x70\x23\x4d\xb3\xc4\x35\xdb\xd4\xda\xda\xcc\ \x6d\x7a\x43\x4e\x65\xad\xcc\xc8\xcc\x2a\x64\x80\xda\xf6\x4a\x4f\ \x61\xc3\x7a\x52\xe3\x8e\x1e\x6f\x09\x40\x41\x36\x98\x20\x0f\xf6\ \xc0\x06\xf6\x00\x49\xee\x88\x2c\x97\x41\xec\x92\x62\x52\xfc\x2d\ \x8f\x60\xe1\xb8\x06\x8e\x39\x01\x4e\xc6\xb6\xea\xc5\x64\xf4\x63\ \x60\xcc\x03\x2c\x28\x7a\x28\x20\x47\x11\x60\x00\x0c\x76\x00\x66\ \x41\x18\x12\xf6\x2f\xc3\xd3\x54\xc5\x73\xc7\xf8\x02\x19\x7e\xe1\ \x41\xa8\xa7\x7a\x60\xc7\x18\xa2\x20\x56\x9b\xf4\xf0\xe2\x0f\x86\ \xf6\x40\xf3\xfa\x4f\x57\xd1\xd0\x3d\x07\x70\x0b\xb9\x34\x94\xb8\ \xd4\x32\x98\xa4\x9f\x54\xe6\x8e\x88\x62\x0f\x84\xd5\x3d\xc5\xc6\ \x5b\xd2\xd4\x35\x6d\x96\x41\x3f\x50\x4e\x0f\x51\x4e\x6f\x43\x36\ \xb5\xc7\x67\x2d\x22\x41\xfe\xa8\xa5\x49\xec\x90\x35\x10\xc4\x62\ \x10\xc4\x80\xd6\x15\x16\xfe\x83\xec\x52\x74\x20\x99\x40\xc5\x72\ \x60\x17\xa6\x96\x40\x2c\x47\x17\xe0\xc9\xb8\x1c\x08\x5f\xbd\xaa\ \xc5\xf8\x55\x46\xc1\x56\x97\x10\x89\x02\xca\xb3\x47\xf5\xe0\x47\ \x85\xe1\x2f\xf3\x72\x3b\x4d\xb5\x61\x01\xaa\x6c\x55\x60\x0b\xba\ \x40\x24\x4b\x81\x6c\x46\x81\x80\x68\xcd\xd6\x82\x06\x66\x5b\x60\ \x4a\xdd\x60\x53\x9a\x60\xb1\x7c\xe6\x4a\x3b\x60\x0d\x68\xd2\x4a\ \xac\x62\x0d\x96\xa5\x45\x1a\xc3\xb0\xb8\xa6\x28\x2c\x26\x7a\x68\ \x6e\x14\x90\x04\xf2\xe6\x0f\x0e\xbd\x85\x66\x6b\x16\x5c\x5c\xd3\ \xb3\x3c\x6b\x67\xb1\x40\x4d\xc3\xa5\x42\x13\x44\xbc\x18\x65\xaf\ \x68\x83\x5a\xf6\x14\x69\xd3\x29\x2c\x8f\xf6\x28\x10\xf5\xf9\x64\ \x37\x8f\xf6\xc0\x13\x0e\x52\x9d\x3a\xc6\x63\x10\xc8\x51\xa7\xf3\ \xc5\x3c\x80\x14\x3f\x46\xd3\xea\xf5\x6b\x2f\x6d\x9e\x2c\xe8\x90\ \x24\xb2\x60\x7b\xb4\x09\x99\xb7\x16\xd5\x96\x6d\x7f\x21\x47\x3f\ \x75\x3b\x4b\xe1\x17\x54\xa0\x14\x2e\x0b\x34\xf9\x0a\x56\x55\x12\ \x1d\x5c\xa0\x05\xda\x80\x35\xea\x13\x75\x74\x35\x0a\x8e\x24\x68\ \x66\x63\xf2\x92\x66\xfe\x6a\x7e\x6d\x4a\xc8\x34\xc5\x9a\x64\x95\ \x04\x34\x33\x52\x29\x33\x76\xc7\x4b\xad\xa4\x59\x43\x37\x4b\x9e\ \xd5\x66\xc3\xe0\x10\x9f\xd2\x35\xed\xb6\x89\x88\xb6\x0b\x60\xe7\ \x74\xfd\x34\x72\x5b\xb7\xcb\x82\x8b\x29\xa2\x04\x14\xfe\xc3\x76\ \x65\x37\x07\x37\xa6\x52\xc8\x6e\x8f\x3c\xc6\x29\xfa\xed\xdf\x1e\ \xd5\x5e\x8f\x2b\x2d\xe5\xa9\x29\x04\xc1\x5e\xa7\x0f\xed\x04\x49\ \x53\x93\xc8\xe1\xea\x4e\x0f\x26\xae\x79\x03\xa0\x16\x15\x36\x2f\ \xff\xb2\x3c\x91\x41\x0f\xec\xb2\x1a\x4a\x21\xa2\x4a\x21\x72\x2e\ \xa2\x0b\xc6\x0b\x56\x04\x23\x31\x3c\x01\x18\x97\x20\x0f\x3a\xc0\ \x67\x06\xf7\x4a\xbd\xc1\x36\x98\x67\x80\xf2\xa0\x05\x4a\x2a\x79\ \x7e\x8d\x36\xce\x34\x0e\x53\xf7\x32\x04\x15\x41\x84\xcd\x1a\xf6\ \x80\xaf\xe2\x2f\xb2\x24\xcf\x5b\xf6\x37\x74\xaf\x55\xd6\x3c\x2b\ \x4b\xc0\x65\x80\x80\x71\x8d\x53\x86\x41\x30\x13\x41\x0a\x48\xdf\ \x2e\xe3\x68\x0f\x44\x2c\x33\xa7\x75\x75\xe1\xf9\x08\xb2\x52\x1a\ \xc8\x0c\xda\x09\x14\x40\x46\x52\xea\xc9\x69\x29\x05\xfa\xfa\x08\ \x52\x91\xc0\xb8\x00\x6e\x0f\xfc\xf8\x14\x61\xc1\x03\x8c\x8b\x39\ \xa7\x6f\x2a\x90\xfe\xb4\x15\xb7\x80\xfb\xcc\x36\x2f\x9b\x50\x6d\ \x9b\x90\xe2\x6a\x71\x16\x76\x0c\xa1\x68\xb8\x1a\xba\x00\xad\xaa\ \x47\x8b\x25\xca\x4a\x62\x15\x1d\x24\x63\xca\xf6\xaa\x05\x4a\xa4\ \x2f\x08\xd7\x5b\xd6\x80\x1b\xf6\x8f\x07\xa2\x60\x33\x84\xa4\x1b\ \xb6\x46\x06\xed\xaf\x72\x82\xb3\x50\x6b\x49\x35\x5a\x88\xbd\x46\ \x21\x0f\x92\x8c\x64\x9b\xd5\x59\x69\x73\x36\xfd\x77\x74\xc1\x45\ \x4a\xa4\x84\x35\xa8\x38\x06\x5f\xd7\x81\xb5\x65\x29\xae\x0a\x77\ \x5b\x57\x14\x9f\xcf\x82\xff\x48\x90\xd7\xae\x6a\x65\x17\x40\xc6\ \xae\x20\x7f\xb7\x77\x23\x19\x6b\x01\x84\x9d\x86\xf7\x6b\xa7\xaf\ \xed\x48\x45\x54\x48\x85\xfb\x78\xd4\x60\xd7\x36\x61\x7f\x41\x6d\ \x6f\xb1\x19\x34\x59\x92\x3e\xc1\x60\xed\xf2\x17\x42\x2d\x74\x0c\ \x0f\x76\xc6\xab\x05\xd0\x81\x8b\xf7\x83\x47\x8e\xb8\x2f\x64\xd9\ \x3e\x89\x51\x34\x7c\xf5\x57\x85\x25\x77\xa0\xb4\x09\x84\x55\x50\ \x39\xfa\x35\x5a\x28\xf3\x6a\x43\x30\x22\x0d\x99\xf1\xb7\x4a\x68\ \xf2\x5b\xc4\x2c\xda\xb2\x75\x80\xb2\x37\x72\xb4\xf7\x94\xa7\xc4\ \x3f\xa0\xa2\x40\x23\x97\x5c\x0d\x04\xb8\x70\xf7\x40\xce\x19\xfa\ \xd6\x4e\x90\xfe\x1f\xa8\x9d\xf2\xd8\x03\x08\xd2\x40\x32\xc6\x03\ \x18\xf9\x77\xb3\xd6\x2c\xa9\xef\x81\xb4\xaa\x2c\xe3\xa9\x84\x19\ \xa8\xc6\xd0\xa2\xa0\x01\xe0\x92\x07\x40\x3c\xf1\x52\x3c\x37\xd9\ \x61\x85\xe1\x16\xf5\x40\xab\xcb\x53\x0f\x26\xe4\x17\xaa\xe1\x17\ \x4a\x59\x4f\x53\x23\x04\x6e\xe3\x48\x9a\x00\x1d\x9e\x21\x47\x2e\ \xa3\x0b\x98\x11\x75\x20\xfa\x4a\x87\xe7\x3d\xab\xa4\x5b\x24\x6f\ \x58\x85\x55\x59\xf3\xda\x1f\x3f\x1a\x49\xa8\x78\x98\x65\x50\xaf\ \x99\xf5\x5b\xbe\x45\xa2\x40\x73\xcc\xc0\x85\x80\x24\x6a\x1b\x55\ \x83\x29\xaa\xa7\x5c\x0d\x28\x6a\xe7\x98\x38\x71\x5a\x40\x82\x8b\ \xdf\x88\x73\x29\xbc\x19\x29\x02\xd9\x40\xde\x29\x9c\x3d\x06\xa9\ \x53\xd4\x20\x69\xf4\x0a\xa0\x01\x1a\x1e\x08\xc6\xda\xe9\x91\x95\ \x5a\x92\x8b\x4b\xe1\xa2\x87\x53\x07\x20\xa0\x85\x61\x79\x5f\x98\ \x7a\xab\x17\x94\xfd\xf9\x08\x91\xe1\x13\x0a\x41\x2c\x7e\x81\x02\ \x06\x73\xcc\x60\xaa\x7a\x08\x88\xa2\xe0\xeb\x19\x1c\xcf\x9f\x88\ \x8d\xae\xc9\xd7\x3e\x3b\x80\x1b\x98\xe7\x24\x83\xa6\x8e\x52\x03\ \x99\xdf\xcf\x4b\xff\x73\x88\x62\xd0\x80\x65\x8e\x36\x7c\x79\x34\ \x60\xc3\xfe\x35\xbc\x14\x4d\x0f\x98\xa5\x93\x5b\xa2\xc4\x2c\x38\ \xcb\x34\xb2\xef\xe8\x8e\x9e\x02\x81\xea\x38\xb2\xef\xbb\x75\x8b\ \x13\x8f\x61\x41\x40\x76\x41\x14\x91\xfa\x51\xcd\x40\x81\x60\xc1\ \x13\x90\x00\x29\xea\x09\xd3\xda\xe9\xd2\x02\x1c\x9e\x56\x1b\x1a\ \x0e\xd2\x84\x4f\xb1\x77\xc1\x76\x39\xa1\x81\xa5\xb6\xc0\xe1\x90\ \x01\x01\x72\x14\x19\x40\x59\x9f\x7f\xa1\x7a\x43\xd5\x7a\x4d\x55\ \x18\xb0\x02\x2c\xe6\xf6\x7a\x4b\x41\x05\x2c\xe0\x71\x42\x20\xae\ \xdf\x80\x07\xea\xa2\x03\xd0\xc1\x96\x8c\x58\xba\xe9\xfa\x4a\x8d\ \xe0\x93\xf6\xcf\x5b\x66\x23\xd8\x78\x20\x34\xf6\xef\x9c\xf8\xea\ \x9c\x48\xfa\x35\x92\x04\xbd\x9b\xc0\xb2\x5d\x43\xaf\x8d\xe4\x3f\ \x61\xe7\xb2\x94\xdb\x2a\xa2\xdc\x35\xe4\x70\x29\xe6\xdb\x29\xcc\ \xb4\xbf\xb3\x19\xb3\x25\x2d\x29\x04\xa4\x29\xda\x79\x52\x8e\xda\ \x20\x01\xe4\x40\x0a\xfc\xc0\x11\x28\x52\x18\x39\x52\xd8\xa9\x8f\ \xfc\xe8\x9d\x90\x73\xb5\xe3\x69\x39\x1d\x19\x9e\xfe\xc8\x84\x05\ \x0e\xc3\x0f\x16\x92\x2e\x0e\x6d\xd7\x36\xd0\xf3\xd2\x54\xb9\x4b\ \x24\x4f\xe6\x06\xba\x20\xc3\xb3\xa2\xd1\x34\x09\x18\xd3\xd3\x1a\ \xc6\xfe\xa0\x32\x80\x31\x33\x62\x59\xba\x6b\xc7\x3e\x51\xa1\x05\ \x20\x0a\x76\x80\xd1\x51\x26\x4a\xf2\x84\xd3\x0e\xa5\x24\x59\x05\ \x15\x36\x92\x84\x09\x9a\x60\x5d\x27\xfd\x7c\xfd\x93\x1f\xad\xb8\ \x37\xd7\xfb\x5c\xe7\xdb\x28\x8e\xa2\xbe\xfb\x2d\x51\xb7\x59\x52\ \x1a\xd8\x28\x94\x42\x35\xea\x89\x09\x32\xa7\x52\xd0\x32\x9c\x0d\ \xa4\x76\xf7\xb8\x9e\x02\xd9\x9d\x21\x39\xce\xeb\x15\x1a\xb4\x00\ \x1a\x96\xc1\x5f\x01\x4e\xd8\x9f\xba\xb5\xdf\x12\x89\x96\xa0\x14\ \x94\x17\x19\xf8\xa2\x1d\x12\x56\xd0\x2f\x72\x3b\x2b\xd2\x54\x73\ \xb8\x14\x72\x18\x2c\x84\x96\x41\x2e\x09\x72\x94\x1b\x97\x99\xaf\ \x51\xba\xc0\x08\x70\x3c\xc7\x75\x35\x32\x61\xaa\x5a\x0c\x98\x59\ \x07\x30\x5b\xf4\x0d\x36\xd8\xda\x1f\xbf\x15\xbd\x25\x8b\x98\x45\ \xc3\x1a\x25\x47\x50\xaf\x91\x36\xc0\x1b\xe1\xcb\x54\x83\x9f\xef\ \x06\xfb\x4d\x17\xb6\xb9\xb3\x11\x84\x52\x9e\x62\x52\x2c\x78\x63\ \xdc\xf9\x5f\x97\x41\x07\x45\xdb\x13\xf6\xf8\xd6\x29\x18\x16\x36\ \x7e\xb5\x1d\xa8\xd9\x9f\xbd\xce\x1b\x75\xab\xf2\x1c\xc6\x96\x13\ \xc6\x72\x69\x0b\xaa\xa1\x86\x73\xd4\x65\x90\x61\x3b\x63\x58\x93\ \xfe\xb5\xd3\x61\xb7\x40\x6e\x29\xa8\xd3\x20\x12\xd1\x59\x7c\x36\ \xd6\x30\xc9\xf2\x40\x2a\x78\xa0\xd2\xe7\x3d\xa2\x9b\x71\x26\x6f\ \x0e\x59\xd4\x7a\xff\xaa\x44\x38\xf7\xd4\x4f\xb9\x65\x0f\x84\x48\ \x35\x1e\x25\xd5\x5f\xa3\x33\x39\x76\x5d\x81\xb9\x72\x10\xfe\x94\ \x81\xf3\x48\x48\xa3\x0d\x34\xf8\x29\x64\x37\x29\x8e\xa2\xd7\x83\ \x4b\x52\x38\x66\x40\x9c\x82\x5e\x9f\x8f\xe4\x9b\x62\xb4\x97\xc1\ \x81\xf4\xa8\x76\x3d\x20\x29\x18\xd9\xe5\x35\xc6\x91\x97\x1d\x09\ \x46\xfb\xc1\xaf\xc0\x84\x41\x46\xc0\xa1\x1a\xe6\x6d\xee\x92\x91\ \xb0\xfb\xca\xb3\xc4\x63\x58\x3c\x85\x81\x85\xc9\x9a\xdc\x3b\xed\ \xac\xc4\xea\xac\x18\x04\x44\x09\x29\x76\xd4\x70\x28\xba\xa0\x05\ \x96\x7e\xde\x1f\xd3\x7c\xa3\x6b\xbb\x71\xe3\xc9\x87\xdc\x68\x49\ \x14\xd5\xd7\x15\x69\x87\xa8\x4a\xfc\xf1\x62\xfe\x43\xe6\x48\xc3\ \x80\x38\x5a\x0e\x39\xd1\x35\x18\x9e\xed\xd5\xfe\xe1\xd7\x7e\xe2\ \x03\xe4\xa6\x0d\x84\xd7\x35\x58\x14\x1b\xb5\xdf\x7e\xf7\x83\x23\ \xc5\x29\x08\x32\x52\x1e\xd9\x81\x78\x5a\x14\x9d\xfa\xa9\xe7\xdc\ \xe4\xf3\xfc\xe5\xa1\x5a\xda\x73\x49\xad\x10\x60\x16\x72\xd4\xfe\ \x60\x1d\x96\xf2\xf3\xf2\x6c\x65\x51\x3c\x55\x00\x1f\x0a\xe1\x2b\ \x9e\xab\x94\x0b\x21\x2b\xb0\x17\x36\x82\x2d\x04\x62\x25\xe5\x00\ \xe0\xc6\x4b\x9f\x7c\x99\xde\x0e\x9a\xe0\xc5\x01\x02\x80\x40\x00\ \x5d\xf2\xac\x69\xe2\x26\x8f\x9b\x26\x79\xda\x2c\x79\x38\xaa\xcb\ \xa8\x5d\x4c\x10\x32\xd9\xd5\x05\x94\xc4\x5d\x6e\x3a\xb6\x91\x38\ \x4a\xe1\x1a\x4f\x1d\x4b\x96\xcc\xb3\x6b\xd7\xc4\x5d\x0a\xdd\x30\ \x69\x93\x32\xa5\x2e\x26\x4c\xf6\xd8\xdc\xb3\xc6\x03\x13\x50\xa3\ \x46\x81\xfa\xb9\x2b\xc7\xcf\x9e\xa0\x76\xcd\xa4\xc9\x04\xd6\x1e\ \x58\xb0\x92\xc2\x32\xe3\x61\x19\x12\x68\xcb\x98\xea\xda\xe3\x41\ \x67\x4d\xa9\x1e\x98\x9a\x59\x6a\x66\x2a\x12\x24\x66\x60\x79\x80\ \xa6\x45\x0b\x34\x68\x5d\x75\xe9\x7a\x9a\xd5\x8c\xdc\xb9\x82\x9e\ \x0e\xbc\x7b\x77\x49\x29\x3d\x7a\x90\x21\x1b\x30\xeb\xd7\xaf\x52\ \xbf\x84\x09\x9b\xa5\xa7\xd9\xdf\x01\x03\x84\x09\xde\x52\x2a\x44\ \x88\x37\x0f\x21\xab\xb0\x90\xa7\xcb\x8d\x87\x5d\x96\x84\x31\x16\ \xe5\x4b\x1b\x00\x4b\x9a\xd8\xc9\x80\x3a\xb5\xea\xd5\x76\x5a\xbb\ \xc6\xd2\x25\xf6\x12\x81\xa3\xda\x34\x59\x93\x30\x0f\xc2\xfe\xce\ \x0f\x97\xf4\xec\xd2\x66\x4f\x47\x95\x3d\x27\xb6\xf1\x88\x71\xa2\ \x9b\x3d\x4d\x84\x9b\x74\x09\x33\x66\x1b\x26\xc3\x25\x16\xbd\x48\ \xfd\xa6\xa7\xed\x4c\x74\x11\x2d\x9a\x63\x57\xd1\x9f\xa0\xde\x2e\ \x65\x9a\x34\xa9\xcd\xaf\x66\xa4\x42\x23\x6b\x1e\x67\xd3\x3d\x52\ \xcd\xb8\x7d\x6a\xf6\x3d\xd9\xa7\x66\xd6\x9a\x50\xdb\x55\x5d\x4f\ \x8d\xe5\x01\x5d\x72\x31\x85\xd7\x66\x79\xe1\xc3\x17\x5f\xc2\x34\ \xe6\x98\x60\xb3\x20\xd6\x4c\x83\x8d\x09\x46\x41\x29\x19\x86\xb0\ \x59\x08\x2a\x38\x46\x19\x67\xc0\x81\x46\x4d\x14\x5d\x10\xc4\xcd\ \x6a\x2a\xaa\xe8\x9a\x1d\x1d\x84\x91\x07\x0f\xc6\x74\x46\x5a\x17\ \xb7\x35\xd1\x86\x6e\x6e\xec\xd2\x9b\x6f\x4b\x00\xd7\xd1\x45\xc5\ \xf5\xb4\xcb\x71\x2f\xe9\x12\x53\x49\xcd\xad\xc1\x9c\x1b\xd1\x15\ \xd9\x05\x45\x2f\x11\x77\x1d\x4d\xc2\xd9\xe4\x89\x35\x48\xec\xa1\ \x0b\x79\xa0\x08\x25\xde\x4f\xf7\xdd\xe4\x14\x53\x4c\xed\x21\x57\ \x54\x62\x75\xa5\x14\x56\x37\x45\xc5\xa5\x57\x66\x11\x78\x60\x58\ \x68\xad\x55\xd6\x5b\x50\x8d\x45\xd6\x81\xf8\x99\x81\x57\x35\x5b\ \xe4\x55\xc8\x27\x8c\x0d\x50\x98\x2a\xb3\x18\xc6\xe8\xfe\x2c\xc8\ \xe8\xf1\x89\x60\x8c\x39\x26\x8c\xa1\x1c\x2e\xb1\x85\x0a\x2a\xf0\ \x06\xc0\x1b\xa5\x18\xf3\x05\x35\x63\xa0\x13\x85\x43\x21\xe4\xb3\ \x62\xaa\x2d\xba\xc6\x0d\xa8\xd9\xe4\x31\x1b\x00\x21\x21\xd4\x46\ \x8e\x79\xe4\x31\xca\x43\xa4\xf9\x74\x9c\x93\xc4\x11\x55\x24\x75\ \x4c\xa0\x54\x14\x45\xcb\xb9\xc1\xa4\x4b\x53\xc6\x14\xec\x45\xe2\ \x4d\x67\xd3\x72\xb0\x2c\xe7\x09\x12\x9e\xec\xb1\x93\x4c\x61\xba\ \xf5\x13\x13\x1e\x78\xe2\xc1\x98\x4b\x8d\xbb\x9e\x7b\x48\x78\x40\ \xee\x4d\x58\x15\x08\x8b\x9e\x70\x21\xb1\x4c\x81\x72\x4d\xa5\x16\ \x5b\xb0\xe4\xa0\x4b\x7b\x6b\xf5\xe9\xd5\x81\x03\x3d\xf4\x09\x05\ \xb1\x92\xb6\x85\x61\x83\x09\xa3\xe8\x84\x8b\x16\x36\x80\x5f\x03\ \x54\xf3\x4b\x35\x87\x22\xa0\x87\xa0\xb3\xdd\xd0\xc5\x16\xba\x12\ \xa4\x82\xa8\x5a\x8c\x41\xcd\x1a\x21\x14\xd4\x41\xaa\xaa\xae\x6a\ \xc4\x17\x5f\x64\x13\x42\xac\x3f\xd6\x3a\x72\x8e\x0e\xc5\xfa\x9b\ \xb1\x34\xfd\x1a\x51\x91\x25\xbd\x54\xd4\x74\x1d\x39\x07\x5d\x4a\ \x39\x0b\x1b\x9d\x95\xc2\x09\xbb\xc7\x76\xd7\xde\xec\x56\x78\xe5\ \x75\x09\x0a\x13\x4a\x77\x87\xde\xb4\x4a\xc9\x65\xfe\xc3\x58\xef\ \xa1\xdb\xa6\x4d\x35\x45\xd5\xd6\x9f\x59\xc1\x3b\xf6\x5a\xf5\x56\ \xe5\x16\x54\x6b\x41\x23\x57\x5d\x73\x01\x4a\xda\x12\x37\x64\x81\ \x8f\xcb\x37\x44\x2c\x8c\x0a\x82\x31\x5a\x58\x61\x7c\x55\xc8\x18\ \xc3\x0d\xfb\x25\xf0\x40\x18\x0f\x1c\x82\x2a\xa1\xae\xdc\x44\x35\ \x23\xf3\x70\x9a\xc9\xac\xad\xea\x62\x09\xaf\xbe\x91\x57\x6c\xb1\ \x25\xc4\xe3\xbf\x51\xea\xec\x92\x4a\x3c\x11\x69\xac\x93\x17\x7d\ \xde\x6b\x90\xd4\xc1\x54\xec\xb1\xdd\x49\xb9\x1c\xb6\x6d\x6e\x97\ \xac\x5b\xb6\x7f\x69\xd4\x4f\xb0\x54\xeb\xc9\xbd\x35\x35\xa5\x54\ \xf0\x61\x89\xb5\x4c\x59\xb1\xab\x07\xf6\x79\x65\xa1\xe9\x01\x9f\ \x5a\xa7\xb5\xaf\x7d\x6f\x2d\xb3\x36\xbb\xfd\x2e\x23\x90\xdc\x37\ \x6c\xa1\xa0\x40\x5b\xfc\x02\x58\xde\xc2\x58\x60\xc3\x60\x84\xcd\ \x52\xa1\x1e\x87\x3e\x3c\x80\x1e\x19\xc4\x31\x40\x88\xd9\xbf\xb1\ \x99\xa7\x8a\xab\x62\x41\x1b\x3c\x34\x14\x9b\x69\x92\x4f\xbe\x2a\ \x13\x18\x23\x33\x1b\x93\x95\xe6\x6c\x83\xa3\x81\x2d\xa1\x67\xd3\ \x99\xd2\x90\x72\xe6\x33\x9a\xb4\x01\x28\x2f\x11\x96\xea\x62\x32\ \x93\xa3\x5d\xa4\x81\xca\x12\x8e\x07\x98\xa4\xfe\x2e\x9a\xe8\x22\ \x3c\xf8\xea\xd2\x2e\x92\x76\x2e\xdb\x05\xef\x4c\x5f\x69\x1e\x9f\ \xb8\xd6\x14\x9a\x28\x65\x19\xf1\xb2\x8f\xf0\xe6\xa5\x35\xb3\x41\ \x0f\x1a\xed\xca\x57\xf3\xd6\xe2\x81\xba\x08\x42\x2e\x52\xc9\x5e\ \x8f\xee\x72\x03\x15\x1c\xca\x60\x11\xf2\x9b\x83\x94\xb8\x3e\x64\ \x64\xe0\x2f\x37\x40\x62\x08\x32\x64\x81\x2f\x20\x03\x1d\x9f\x18\ \x59\x17\x24\xd3\xbf\xc8\xfd\x2f\x03\x94\x7b\x4d\x66\x46\xf1\xaf\ \x88\x44\xc9\x0d\xd6\x58\x03\x8d\xe2\x16\x1b\x29\x45\x67\x74\xb9\ \x2a\x56\xaf\x6e\xe6\x93\x94\x08\x2b\x3b\xcb\xca\x0e\xb6\x9c\x75\ \x14\x9a\xc4\x6e\x69\x21\x24\xa1\x5b\x8c\x72\x95\x6a\x71\xc9\x2d\ \xe4\x6a\xd3\xd8\xc6\x12\xaf\x45\x76\x87\x91\x52\x29\xde\x5b\x58\ \x08\x15\xa9\x4c\xe5\x4e\xd0\xb3\x4f\x0e\x60\xe1\x9e\xf7\x94\x85\ \x3f\x72\x31\xe2\xc0\xb2\x77\x83\x52\x3c\x48\x15\x8c\x32\x0c\x62\ \xfa\xa2\x3e\x0a\x80\x4f\x0f\x14\x43\x46\x1c\x98\x81\x00\x61\x68\ \x6c\x20\x5d\xf8\x85\x31\x84\x61\x0c\xc5\x7d\xc1\x02\x27\xfa\x4d\ \x6c\xb8\x21\xc6\xff\x95\xb1\x35\x25\x20\x66\xae\x0c\xd8\x99\xd8\ \x18\xa4\x09\xbb\xc8\xcb\x4a\xa6\xd3\x06\xfe\x24\x3d\x90\x48\x3e\ \x83\x4e\x71\x60\x47\x1d\x65\x21\xc9\x58\xc2\x31\xa1\x94\x64\x38\ \x12\x75\x45\xab\x69\xe2\xb1\x1d\x56\x3c\x91\x27\x46\xaa\x0b\x2a\ \x6a\xa2\x21\xbb\x0e\x29\x93\x3d\xf0\x29\x4e\xfc\x41\xd7\x9e\x36\ \x79\xa7\xb5\xdc\x6b\x7a\xd5\x93\x97\x99\xe0\x86\x17\xc3\x6d\x81\ \x02\x0f\x62\x94\x0d\x84\xa1\x18\x66\x30\x43\x0f\xc2\x28\x05\x3e\ \x66\xe9\x17\xd4\xe4\x92\x02\x1a\x9b\x8d\x5e\x06\xf0\x09\x63\x68\ \xaa\x1a\x9b\x52\xe0\x1b\xba\x90\x8d\x64\x4a\x6e\x99\x76\xf8\x82\ \x31\xda\x80\xb9\x1a\x45\x09\x8d\xb5\xc1\x95\x02\x51\xb7\xac\x88\ \x3c\x30\x25\x3b\x13\x52\x4f\xa0\x15\xbb\x3d\x44\x27\x83\x7f\xe4\ \x89\x51\xb2\x49\x93\x6f\xdd\x04\x84\x93\x14\x13\x23\xbf\xd5\xbb\ \x8b\x5c\xf2\x2b\x68\x4a\x5a\x54\xec\x69\x83\xa5\xbc\x4e\x28\x57\ \x41\xc2\x15\xce\xd5\xc3\xa6\x10\x91\x4f\x76\x82\x5e\x0a\xf3\x45\ \xbd\x7d\xc5\xab\x2d\x75\x49\x28\x12\x0b\xd3\x50\x26\x36\xa3\x1d\ \xa8\xd1\x03\xf7\xb6\xd7\x3e\x04\xa4\xe6\x13\xa5\xb8\x41\xf7\x6e\ \xc0\xd0\x4f\xe4\xad\x14\x91\x89\x0c\x67\x46\x71\xd2\x14\x8d\x91\ \x8c\x2c\x1d\xc3\x8c\x5c\x56\xa4\x99\xfe\xed\xaa\x80\x04\x49\x49\ \xad\x2e\xa2\x11\x3a\x02\x2b\x3b\x2e\xe1\x89\x6f\x28\xb2\x54\x2e\ \xc5\xc4\x68\x3b\x19\x85\x2e\xb2\x99\x4d\x6a\x29\x6d\x69\x5d\x82\ \x5a\x78\xba\x7a\x05\x9d\x20\x92\x29\xdb\xc1\x92\x9a\xde\xc3\xda\ \x9a\x34\x0d\x14\x28\x04\xd7\x79\x2e\xa9\xa6\x73\xfd\x70\x87\xc5\ \x73\xe1\xda\x5e\x08\x0b\x41\xe8\x42\x10\x6e\x1d\xc8\x1b\x1e\x34\ \x29\x0b\x50\xca\x51\xcc\xf8\xcb\x5d\x0b\x21\x31\x29\x66\x00\x01\ \xf8\xa8\x22\x12\x95\xf8\x85\x01\x88\x54\x05\x24\xb5\x40\x08\x76\ \x11\x82\x5c\x75\x61\x0d\x8b\x65\x6c\x8b\x52\x73\x9a\x19\xdd\x65\ \x73\xbc\xa1\x2c\x6d\x30\x42\x91\xe8\x6c\x93\x48\xe1\xc4\x23\x51\ \x82\xea\xb5\x43\x5e\xc5\x6b\xe2\x31\x8a\x54\xa5\x36\x92\x2c\x2d\ \xad\x9d\x5c\x7d\xcb\xb7\xf6\x83\xaf\x1c\xd0\xc4\x13\x4c\x02\xa1\ \x35\xa0\x81\x8e\x16\xc8\x36\x83\x6d\xc1\x97\x19\xc0\x05\xcf\xdf\ \x9a\x45\x93\xe7\xa2\x97\x59\xd7\x66\x36\xfd\xc4\xab\x5d\xf8\x6a\ \xae\xf7\x84\x11\x5e\x55\x34\x48\x0f\xaa\x50\x4c\x1c\xf4\x30\x98\ \x2d\x14\xe2\x7b\x03\x40\x40\x1c\x10\xf0\x8b\xcd\x9c\x72\x0b\x03\ \xd0\xe2\x17\xf4\xa0\x45\x64\x34\xfe\x83\x1a\xd4\x30\x06\x31\x97\ \xf0\x06\x63\xa8\x74\x45\xad\x61\x0d\x6a\x5a\x53\x8d\x67\xd2\x26\ \x0f\xc6\xb0\xc1\x8e\x24\x72\xca\xca\x06\x2b\x25\x9a\xa5\x23\x28\ \x80\xca\xb3\x3a\x0a\xf2\x26\xca\x3a\xb3\x1b\x3e\x08\x0b\x3d\x4a\ \xb0\x26\x09\xf6\xc4\x15\x5a\xe0\x09\xa6\x8d\xd0\xc3\xd5\x02\xeb\ \x08\x2f\x99\x34\x42\xda\xd9\x05\x6c\x69\x2d\x56\xce\xc5\x04\x7c\ \xb9\x89\xaa\xed\x2a\x8f\x9d\xf4\x83\xe1\xff\xd4\x6b\x87\x6b\xbb\ \xc2\x32\xe0\x69\x15\x58\xb8\x58\x2f\xaa\xf0\x8b\x62\xf8\xa2\x64\ \x87\x35\x91\xa3\xb2\x54\x5f\x90\x0b\xf8\x90\x52\xb4\xef\xc8\xc8\ \x60\x86\x6a\x98\xe1\xd2\x2e\x9c\xd4\x7f\x8b\x3d\xcd\x94\x33\xf0\ \x85\x13\xf9\x06\x38\x16\xa0\x06\x3a\xd0\x41\x0d\x6b\xb8\x21\xcc\ \x51\x8a\x92\xb3\x34\xe2\x93\xe2\xf8\xe6\xcc\x7b\xf4\xa9\x4f\x90\ \xb2\x86\x9c\xf8\x8a\xa8\x7f\x6c\xe0\x71\x14\x4c\x61\x45\xde\xac\ \xd1\xe5\xd9\xdd\x57\x3b\x1c\x1f\xdf\x4e\x18\x1a\x63\x80\x86\x27\ \x62\x42\x1f\x78\xb5\x0b\x2e\x36\x31\x53\x97\x3e\x89\xe2\xb5\x99\ \x40\xd2\x69\x41\x07\x8a\xd5\x72\xae\xb2\xcc\x45\x20\x31\xcd\xcb\ \x2f\x3e\x81\x8c\x76\x3c\x6a\xfe\x00\x73\xcd\xc0\x44\x07\x70\xd1\ \x49\xfd\x02\x1f\x0f\xea\xee\x29\xe5\x56\x30\xc1\x3e\x48\xbb\xa9\ \x81\xf5\xab\x10\x0b\xb9\xf6\x9a\xac\xa5\x6d\xa8\x4d\x29\x2c\x90\ \x0d\x26\x6b\x21\x03\x26\xc8\x00\x35\x4e\x34\x5f\xfc\xce\x71\xbf\ \x79\xac\xc9\x72\x8e\x4d\x14\x68\x5d\x2b\x74\x1c\x89\x36\xcd\x91\ \xe2\x86\xed\x58\x23\xdb\xc9\xb2\xd2\xbd\xbe\x84\x95\x6f\xf7\x30\ \x3e\x1f\xf4\x9a\x3e\x9f\x41\x15\x2e\x79\xcb\x5a\xed\x0e\x74\x5b\ \x66\x02\x8b\xa2\xc0\x22\xc5\x3a\x84\x9e\x5a\xd4\xe2\x1e\xb5\x5c\ \xe1\x6d\xcd\xfb\x57\x5e\xbe\xd7\x97\x47\x19\xe6\x0b\x74\xcd\x40\ \x16\x04\xc3\x30\x88\x09\x83\x0f\xbf\x18\x14\x5e\xe4\x06\xe3\x8a\ \x51\xa0\x1a\x5f\x58\x0d\x32\x4a\x40\x8d\xcc\x7c\xb1\xe4\x1a\xa7\ \xf2\x17\x4a\xd1\x05\x90\xab\xe2\xd7\xe8\x70\xb5\x6b\x46\x93\x72\ \x8c\xcc\xa4\xe3\x9a\x1d\x12\x39\x95\x15\x26\x0a\xe2\xe4\x68\x7a\ \xc4\x8a\x1b\xc6\x19\x2c\x36\x5e\x61\xe7\x36\xe1\xbc\x4b\xca\x22\ \x14\x50\x78\x1b\xac\x25\x0c\xde\xb7\x3c\xe0\x92\xa4\x41\xe3\x19\ \xf1\x5a\x4e\xd6\xac\xd7\xbc\x2b\x5c\x2b\x07\x9f\x64\x31\x2c\x36\ \x59\x2f\x4e\x12\x37\x2c\xfe\x69\x51\xcb\x5c\xf8\x14\xb7\x53\xde\ \xad\xc6\xa2\x6e\x9f\x5f\x16\xd3\x44\xc6\x24\x41\x18\xdd\xfd\x97\ \x47\x89\xec\x20\xc1\x7c\xc1\xd5\x53\x44\xc6\xca\x54\xc1\x03\x59\ \x87\x60\x0c\x7d\x5f\x91\x09\xaa\x11\x1b\x63\xb4\xda\xe0\x63\x30\ \x3c\x19\xf3\x80\x97\x89\x64\xa4\x56\x42\x7b\xe0\xb2\xa3\xc6\xc7\ \xd7\x89\xc7\xd8\xd1\xc2\x6c\xcd\x51\xcf\xac\xd3\x26\xed\x0a\x57\ \x10\x4e\xb5\xae\x90\x13\xbf\xf3\x13\x9f\xd4\x3c\xf7\xd4\x6d\x67\ \x92\x13\xda\x71\x05\xef\xb1\x56\x1e\x90\x0d\x59\x71\x26\x5e\xb5\ \x75\x5d\x62\x26\x43\x34\x5c\xb9\x97\x7b\x5b\x33\x5c\x78\x92\x26\ \x63\xe1\x75\xa4\x31\x7c\x01\x27\x70\xea\x63\x7c\x7d\xb1\x3e\xcb\ \x27\x31\xbf\xc0\x51\x42\x26\x37\xbd\x41\x18\x20\xf5\x21\x20\x85\ \x64\x9f\xf0\x05\x83\x97\x0d\x5f\x90\x7d\x11\x51\x02\xdd\xa7\x22\ \xa8\xf0\x52\x9f\x42\x0d\x12\xc5\x0c\xe8\x00\x5f\x5a\xd0\x6f\xb4\ \x51\x6c\xd3\x21\x1e\xc9\x96\x2b\x3d\xf1\x59\x2e\xa7\x41\xaf\x53\ \x1e\xfd\xa5\x12\x95\xc7\x24\xce\x22\x13\x9a\x87\x67\x39\x77\x67\ \x48\x90\x0d\x49\x31\x42\x5f\xf2\x14\xe0\xd2\x43\x25\x34\x60\x50\ \x85\x2e\xe9\x06\x49\xfe\x59\xb5\x2e\xfa\xe6\x01\xfc\xc7\x26\xa4\ \xd4\x1e\x26\x66\x75\x01\x15\x2f\x69\x05\x3d\xec\x32\x2f\x77\x81\ \x39\x5d\x50\x0a\x35\xd6\x0e\x23\x48\x82\x86\xc1\x17\x87\x02\x57\ \x0d\x77\x57\x7e\xc5\x82\xdb\x43\x01\xb2\x04\x52\x9f\xa0\x0a\x0f\ \xf3\x0b\x2a\xa0\x0a\x8a\xc3\x64\xb0\x12\x02\xb4\xc6\x83\xa8\x31\ \x06\xe5\xc5\x64\xe8\x30\x06\xed\xc0\x7d\x57\x86\x0e\x09\x95\x33\ \x7a\x04\x13\xee\x57\x1c\xf0\x77\x25\x7a\x26\x25\xd8\x32\x7f\x45\ \x41\x2d\x6b\x80\x14\xce\x22\x35\x2d\x60\x2d\x35\x81\x04\x2d\xd0\ \x7a\x6f\xc1\x55\x4a\x71\x4f\x66\x68\x1e\xab\x45\x43\xdb\x41\x3d\ \x63\x01\x16\x71\x71\x68\xb1\x55\x20\xe0\x22\x2f\xd4\xd3\x7b\x57\ \x97\x81\xe7\x02\x8d\x9d\x64\x06\x43\x14\x16\xf5\x95\x6a\xbf\xa0\ \x38\xa2\xa6\x37\x84\xa5\x44\x03\xf7\x0b\x7c\x00\x5d\x0b\xa7\x88\ \x77\x05\x82\x5b\x90\x31\xe0\xf3\x09\xea\x63\x0c\xed\x58\x83\x03\ \xa0\x0a\x4c\xd6\x64\xb1\xd1\x06\xd9\xb0\x89\xa9\x81\x0a\x79\x60\ \x01\xc2\xa4\x07\xe8\x40\x71\x64\xf4\x05\x0f\x77\x8a\x2c\x41\x66\ \xca\xe6\x84\xcf\x76\x2c\xca\x72\x24\xb5\x48\x66\xf8\xc5\x04\x09\ \xf6\x72\xa1\x23\xfe\x35\x77\x76\x2d\x4d\xe0\x09\x97\xb6\x34\x42\ \xf1\x5a\xf8\xf1\x67\xc2\x18\x68\x19\x29\x15\x19\x39\x15\xe8\xb0\ \x25\x33\xa4\x87\x2e\xf4\x55\x5e\x25\x5c\x74\x28\x8d\xc4\x15\x15\ \x68\x61\x56\xc9\x35\x2f\xba\x86\x31\x85\x21\x5d\x9f\x56\x51\x9b\ \xf1\x82\x7e\x21\x58\xf8\xf0\x82\x14\x80\x0f\x5b\x00\x19\x42\xd9\ \x51\x37\xe0\x29\x8d\x08\x52\xe1\x05\x31\x03\x10\x88\xc8\x60\x0c\ \xa0\x02\x8a\xd4\xd0\x71\x4b\xc0\x03\x23\x97\x8f\x5f\x90\x07\x1d\ \x83\x0c\xd4\x10\x72\x75\xa7\x1a\x63\x40\x59\x11\x71\x66\xf9\x55\ \x60\xfb\x35\x85\xf5\x27\x55\x14\xc1\x96\x42\x53\x60\x74\x86\x7a\ \x90\x47\x4e\x4a\xb3\x14\x6b\xb0\x4f\x41\xf1\x25\x97\x64\x3b\x12\ \x66\x26\xc0\x98\x15\x0f\x06\x2f\x9b\x74\x05\x36\x30\x20\x01\x32\ \x27\x12\xc8\x7f\xce\x83\x0e\xbd\x57\x75\x6b\x11\x2f\x36\x70\x16\ \x32\x29\x4a\xfc\x81\x04\x5f\x10\x02\x84\xd5\x28\x7d\xd1\x0e\x7a\ \xd0\x57\x04\x33\x38\xc8\xe0\x18\x16\x25\x9a\x3a\xf6\x6f\x38\x26\ \x64\x37\xe0\x21\xb2\x04\x70\xcc\xf0\x09\x2a\x40\x01\x2a\x60\x64\ \xf2\x28\x2a\x43\xa8\x02\x98\xb3\x04\x52\x96\x8f\x25\x10\x02\x16\ \xd0\x0c\xe8\xfe\xa0\x0a\xc6\xc0\x64\xa3\x88\x1a\x5a\x80\x46\x69\ \x74\x8a\x4a\x38\x14\xdb\xc4\x6c\x13\xd9\x1d\xd9\xc4\x96\x43\x61\ \x54\xc6\xc2\x54\x6c\x79\x14\x21\x79\x13\xbb\x68\x2d\x8d\x26\x8c\ \x0d\xd6\x97\xeb\x62\x13\x52\xc1\x7f\xc7\x85\x2e\x05\xb8\x6e\x7d\ \xc6\x27\x2b\xf9\x3c\xf8\x66\x62\xf6\xb6\x0c\x68\x02\x8d\x01\x25\ \x2f\x61\x01\x6b\x6e\x00\x57\xe8\x13\x88\xed\x30\x00\xde\xb5\x04\ \xbf\x10\x76\x7a\x20\x94\x84\x05\x94\xa5\xb0\x05\xd5\xa0\x07\x37\ \xe6\x70\x72\x23\x31\xd5\x40\xa0\x71\x20\x70\x88\xa2\x21\x95\xa2\ \x0a\x37\x48\x84\x63\x90\x0d\xb9\xf2\x10\x5f\x70\x6b\xca\x34\x23\ \x59\x84\x0c\xf8\x33\x8f\xbe\x06\x5f\x28\x67\x44\x05\x39\x4e\xc9\ \x49\x14\x9b\xe5\x06\x31\x84\x54\xfe\x45\x96\xcc\x66\x13\xb4\xa8\ \x2d\x44\x95\x25\x4c\xa7\x7a\x63\xd1\x3b\xe1\x61\x26\x79\xd9\x97\ \x67\x92\x15\x36\xb1\x81\x0c\x18\x5c\x6c\x02\x15\xb1\xf5\x7b\x2d\ \x29\x99\x59\x81\x16\x26\xb0\x35\x4a\x91\x35\x92\x29\x4a\x73\xd1\ \x0e\xcc\x10\x18\x87\x31\x0b\x51\xfa\x28\x34\x22\x37\x83\x63\x28\ \x02\xba\x37\x7b\x03\x70\x15\x73\x57\x05\x03\x52\x0f\xf3\x20\x9f\ \x60\xa6\xfe\xc2\x40\x01\x97\xa9\x02\xb3\x10\xa1\x44\x98\x01\xe8\ \xc0\x03\xb1\xd2\x05\x7c\xd7\x77\x76\x00\x7e\xbd\x86\x0e\x4e\xf6\ \xa1\x60\x49\x46\x22\xba\x2b\xc5\x32\x5a\x64\x36\x3a\x66\x06\x5a\ \x73\x86\x14\x13\xf4\x40\xc6\x86\x2c\x94\x07\x14\xd3\x82\x42\xb2\ \xe7\xa3\x7c\x72\xa3\x39\xe0\x26\x1d\xa9\x55\xf7\xa1\x54\xde\xb6\ \x7a\x0c\x48\x43\x9b\x64\x98\x71\xe1\x15\x71\xa1\x36\x68\x81\x04\ \x4a\x81\x04\x5a\x60\x02\x26\xa9\x13\xa0\xb4\x36\x66\x15\x9f\xcc\ \xd0\x0c\x8b\x32\x21\x22\xa8\x07\x85\xd0\x1b\x85\xf0\x99\xa1\x39\ \x4b\x8c\xd1\x8e\x7a\x40\x0f\x6d\x47\x94\x12\x83\x00\x8f\x62\x28\ \xf8\x40\x3f\xfc\x19\x5e\x7a\xb3\x4a\x78\xc7\x0c\xa7\xf1\x05\x9d\ \x03\x00\x3c\x40\xa7\xed\xc5\x0c\x30\xf2\xa1\x08\x53\x78\x20\x83\ \x95\x76\xa0\x65\x48\x58\x24\x18\x84\x24\xd0\xc9\x84\xd7\x01\x1d\ \xd5\x19\x3a\x09\x09\x14\x27\x44\x61\xb0\xd8\xa8\xef\xa4\x25\x82\ \x66\x2d\xbd\x23\x7a\x76\x66\x1f\xa2\xd7\x6e\x61\xf8\x4e\x91\x4a\ \xaa\x34\x14\x4a\xa2\xe4\x36\xa3\xd4\x4f\x73\x91\x62\x65\x71\xaa\ \xf8\x96\x26\x31\x19\x6f\xf9\x86\x04\x15\x12\x18\x13\xd2\x0c\xd5\ \x55\xfe\x0a\xbd\x71\x37\xad\xf6\x17\x68\x27\x0c\xfd\x09\x29\x14\ \xc5\x51\x85\x31\xac\xc8\x80\x00\xed\xc3\x57\x0f\xf1\x06\xbf\x60\ \x64\x90\xf2\x9b\xf3\x88\x95\xcc\x90\x0d\x9b\x42\x1a\x79\x30\xad\ \x63\xe4\x52\xbd\xd6\x95\x20\xca\x89\xa9\x41\x9c\xa7\xb4\x12\x58\ \x88\x48\x61\x92\x6c\x3c\x51\x25\xcd\xe9\x47\x07\xb9\x8a\x45\x82\ \x13\xb5\xe5\x06\xc5\xf2\x35\xbc\x93\x86\x50\x75\x2d\x23\x04\x0b\ \x0b\xe8\x09\x5c\x55\x55\x23\x44\x11\xa7\x17\x74\xd0\x80\x9e\x39\ \xe4\xaf\x97\xa4\x5c\xd8\x08\xb0\xf4\xc2\x16\xfd\x81\x0e\x4a\x5a\ \xaa\x07\x8b\x7b\x5a\xc0\x8c\x61\x91\x18\x54\x8a\x3e\xcd\x20\x0c\ \xb6\x2a\x37\xb8\xba\x18\x88\x52\x0d\x0f\xd2\x9f\x0a\x37\x89\xc6\ \x17\x07\xc8\xd0\x94\x21\x9b\x6a\x9f\xf0\x94\xea\x63\x01\x83\xcb\ \xa7\xa8\x81\x0e\x16\x40\x1a\x21\xd0\x77\x25\x10\x4c\x64\x87\x0e\ \x51\x9a\x2a\x0e\x71\x17\x2b\xf1\x90\xda\x42\x1e\xe3\x6a\x60\xb5\ \x78\x13\xac\xe3\x78\xcc\xf6\x41\x9e\xd0\x1c\x07\x86\x25\xab\x65\ \x8c\x2b\xb6\x6e\x57\xd0\x01\x48\x20\x26\x68\xc2\x62\xbc\xd5\x3c\ \x5f\x91\x56\x0c\x08\x49\x9b\x54\x15\xb4\x77\x49\x9f\x84\x26\xfa\ \xfe\x56\x56\x54\xd1\x1f\xd0\x60\x07\x5a\xb0\x1f\x45\x8a\x16\x48\ \x27\x2f\x48\xa0\x07\xb2\xda\x0c\x0c\x1b\x64\x9b\x71\x37\xe0\x93\ \x21\x93\x62\x7c\xa2\x26\x18\x12\xd3\x63\xad\x56\x31\x1a\xa2\x82\ \x43\xe9\x57\x14\x10\x76\xd5\xa5\x07\x2a\x50\x0a\x79\xa0\x0a\x90\ \x5b\x71\x28\xd7\x05\xc2\xb9\x71\xd5\x40\x01\x16\x60\x0c\x21\x57\ \x70\xa8\x21\x51\xf0\x95\x0d\x0f\xc7\x2c\x79\x44\x42\x97\xdb\xb3\ \xe7\x84\x73\x94\xb7\x84\xe3\x41\x4e\x20\x14\x3b\xc0\x43\x2d\x4c\ \x3b\x92\xe8\x32\x42\xfd\xe1\x02\x1e\x90\x03\x3e\xc1\x1f\x2a\x44\ \x27\x91\x69\x6f\x9b\xa4\x35\xb1\xc5\x62\xf8\xb2\x6e\x00\x3b\x2f\ \x77\x72\x2e\x4e\x5a\x27\x03\x02\x9f\x6a\x43\x51\x6d\xbb\xb6\x85\ \x70\x03\x85\x40\x18\x4d\x84\x51\x33\x66\x6a\x11\x83\x51\x3f\xc6\ \x7c\x44\x09\x94\x82\xd3\x3e\x61\x37\x45\xc2\xd0\x05\x85\xd0\x6b\ \x65\x07\xbf\xa5\x90\x3d\x89\x23\x39\xcc\x00\x7e\x21\xc0\x8f\x94\ \xf8\xb8\xf0\x3b\x8f\xc2\x19\x05\x0f\x77\x66\x45\x31\x11\xfe\x0b\ \x14\x3e\x0b\xa8\x81\x74\x2c\x31\xf4\xad\xf9\xe7\x47\xcb\x81\x2e\ \x48\x31\x3b\xf1\xaa\x34\x05\x92\x36\x6b\x11\xb5\xa3\xf0\x49\xfe\ \x72\xb1\x5c\x87\x39\x9e\x6b\x61\x6f\xc7\xa5\x1f\x05\xc2\x91\x80\ \x86\x1f\xc0\xb8\x80\xf5\x82\x7b\x11\x5c\x27\x6a\x93\x16\x96\xa6\ \x36\xae\x94\xbc\xa6\x56\x08\x26\x7c\x88\x76\xeb\x17\x85\xb8\x44\ \x7b\x13\xbd\x9b\x49\x01\x8a\x88\xbd\xab\x49\x31\x48\x26\x45\xa0\ \x49\x58\xfd\xa8\xc3\xcc\xa0\x0a\x7e\xba\x04\x3e\xac\x22\x5f\x40\ \x01\xb1\xe1\x21\xfd\x58\x78\x42\xe8\x9b\x36\x30\x8f\x76\xe0\x95\ \xe9\x17\x13\x3d\xeb\x25\x3f\x01\x12\x40\x81\x24\x6b\x76\x34\x0c\ \xd9\xbf\xa3\xe5\x72\x35\x21\x5a\x13\x36\xa3\x5c\xbc\x1d\x6d\xf1\ \x86\x09\x0c\x35\x2b\xc4\x14\x2c\x59\xbc\x68\x8c\x61\x28\x96\x6f\ \x61\x38\x55\x18\x1c\x99\x6a\x4c\x69\xf1\xf9\x68\x00\x92\xc7\x87\ \x91\x18\xcd\xe0\xa0\x7b\x63\x18\xed\xe3\x6a\xde\x0b\xbd\x17\x02\ \xc8\xb7\xf4\xb1\x61\x2a\x29\x1d\x5b\x5d\x19\xe5\xbd\xc6\xf0\x0b\ \x90\x2c\x70\x8e\xa1\x19\x0a\x04\x65\x94\xb8\x45\x35\x38\x40\xb1\ \xb1\xbe\xd9\x30\x78\xa9\x71\x9f\x5e\x69\x0c\xbb\x40\x4c\xb0\x92\ \x17\xa5\xec\xb3\x3c\xeb\x13\xe3\x91\xae\x33\x11\x54\x3f\xf3\x72\ \x5d\xd2\xcf\xd7\x51\x7f\xec\x9a\x48\x63\x81\x8b\x4a\x63\xfe\x2d\ \xc5\xc3\xaa\x6c\x21\x08\x79\x89\xc1\x12\x58\x20\x08\x5b\x87\xef\ \xf1\x55\xa0\xf7\x34\x72\x71\x1e\x70\xb1\x80\xf1\xe6\xa4\xf9\x66\ \x5c\x5a\x80\x74\xc5\xd3\x1f\x84\x08\x6a\x38\xe6\x4a\xc7\x2b\x0c\ \x01\x97\x1a\xc8\x37\xcd\x8d\x61\x7c\xae\xf6\x28\xd5\x20\xa0\x3c\ \xc6\x18\x7d\x81\x00\xf1\x8b\x1a\x81\x2c\x0c\x36\x50\x0a\xb3\x10\ \x00\xcd\x60\x01\x85\xb0\x0b\x26\x4c\x58\x80\xd7\x84\x5f\xe4\x21\ \xbf\x20\x19\x1f\x17\x4c\x37\x58\xb8\xed\x40\x78\x5e\xc9\x8f\x6e\ \x60\x03\x7e\xba\x12\xfe\x5c\x1e\x83\x9a\x3b\x5e\xa2\x47\xc7\x72\ \x25\x21\x84\x33\xd4\x26\x42\x14\xf4\x7f\x9b\xc7\xb4\xe0\x92\x26\ \x70\xf8\x6e\x65\x72\x98\x36\x9a\x49\x3a\x14\x6f\x96\xc6\x25\x12\ \xcd\xd1\x3c\xfa\xd1\xf7\x16\x50\x6c\xf1\x48\x01\xd5\x27\x48\x20\ \x8f\x15\x42\xd8\xce\xcc\xb0\x2d\x5d\x76\x37\x86\x28\x84\x08\x38\ \x34\x3c\x45\x88\xc2\x3d\xa5\x40\xa0\xed\x88\x00\x02\xb7\xb7\xb6\ \x54\x5d\x8d\x41\x58\x85\xc1\xa6\xbf\xe0\xc7\xd4\x10\xa5\xed\xe0\ \xb6\x83\xf1\x06\xa3\x50\x08\x97\xe9\x87\x9f\x82\x30\x95\xa8\x0a\ \xd5\x1c\x88\xbe\xe6\x9b\xd4\xd0\x7b\x70\x5a\x9c\xa4\xfe\xf1\x90\ \x45\x71\x48\xe4\xc1\xcf\x14\x04\x85\x25\xc1\x24\xcd\xb1\x07\x4b\ \xd8\x13\x03\x76\x34\xa2\x25\x75\x59\x82\xb5\x4c\xa7\x34\xc5\xc5\ \x92\xf5\x6a\xc1\x07\xb5\x1d\xbe\xec\xc1\xcc\x40\x69\x6b\xe3\x49\ \x8a\x96\xd7\xef\x02\xd2\xd2\x18\xc1\x9a\x44\xd7\x7d\x62\x06\x70\ \x95\x18\x8f\x42\x21\x0a\xd3\xd2\x14\xfb\x17\x8c\xd2\x30\x82\x38\ \x7e\x19\x00\xa6\x7e\x55\x30\x19\x5b\x71\x14\x93\x3e\x83\x81\xd4\ \x36\x30\x21\x40\xad\x4a\x3a\xdc\x0c\xf8\x93\x63\x9b\x6d\x01\xe3\ \x3c\xce\x86\xc1\x4a\x0f\xf5\xa1\xd4\xb0\x45\x6e\x7a\x65\x5f\xa0\ \x65\x4b\x60\x14\x31\x8a\x59\x13\x01\x35\xfd\x2c\x1e\x6b\xd6\x40\ \x6f\x72\x85\x54\xc2\x11\xea\xf4\x3a\x89\x74\x05\xe8\xa0\xd6\xa3\ \xab\x26\x89\xe9\xdc\x4e\x81\xa9\x1f\xf6\x55\x0e\x5d\x8d\x8b\xf9\ \x1e\x77\xf2\x74\x67\x72\x13\x38\x04\x50\x32\x29\x8d\xfa\xc1\x27\ \x29\xd6\x27\x1e\x20\x21\xe9\x73\xbc\x8b\xd2\x4a\xe0\x3c\x70\x8d\ \xd1\x17\xd5\xa5\x18\x19\x35\x45\x6d\xc7\xbc\x14\xc0\x18\x3b\x5d\ \x57\xc0\xfa\x82\x3a\x66\xc2\x55\x3a\xda\x16\x50\xa5\xa8\x21\xda\ \x38\xe6\xd4\x85\x90\x28\xb3\x10\xe0\x8f\xfc\x50\xfe\xfa\x3d\x8f\ \x73\x55\x7e\x2a\x62\x0c\x1b\xb3\x40\x7a\xc6\x2d\x4f\xdc\xbf\x14\ \x4e\x1d\x4d\x51\x2b\xcb\xd1\x1c\x70\x16\x26\x06\x36\xd6\xd8\xb2\ \xca\xfa\x24\x05\x58\x3b\x73\xeb\xf2\x7f\x58\x4b\xc1\x1d\xd9\x2e\ \xca\x35\x86\x0b\x28\x3d\xfd\x51\xdd\xc7\x25\x3d\x72\xe2\x86\x2c\ \xd9\xaa\x34\xbe\x43\x37\x1e\x50\x44\x8a\x04\x87\x48\x70\xa0\x29\ \x18\x98\x79\xde\xa8\xb1\xb7\x0e\x32\x57\xcc\x20\x70\xed\x6d\xa0\ \xa7\xe9\x57\x17\x2b\x45\x71\x80\xe4\xf0\x3d\x18\x7e\x55\x0a\x73\ \x85\x0c\x0d\x3b\x57\x23\x38\x21\x7a\x73\xda\xdc\x48\x63\xe6\x53\ \x0a\x0f\xd5\xd9\xc1\xd4\xe9\xd4\xa7\x1a\xe8\x70\x84\x0b\xd4\x40\ \x48\x32\x4e\x79\x44\xd0\xba\x6d\x1c\x36\x51\x34\xce\x41\x26\x99\ \x8b\x73\x24\xd1\x14\x09\x4d\x68\xd0\x60\x0d\xe4\x92\x91\x0b\x88\ \x74\x5f\x15\x75\xf7\xe1\x5a\xb0\xb5\x25\x23\x74\x16\x8f\xbe\x16\ \x48\xb7\x1f\xa4\xc4\xba\x7b\xb2\xd7\x8e\xce\x98\x36\x8e\xc6\xcf\ \x80\xb6\x25\x16\x21\x0f\xd2\x0c\xb9\x74\xe9\xe7\x63\xe4\x4a\x26\ \xe4\x01\xf7\xcd\x14\x07\x9a\xb6\xba\x88\xff\x16\xc8\x77\xa5\x3d\ \x8a\xb8\x9f\x51\x1a\xab\x87\x91\xbc\x05\xcf\xfe\x37\xe0\x18\x21\ \x21\x50\x08\xa3\x10\xd4\xf7\x99\xbc\xd4\xf0\xbe\xab\x31\x06\x94\ \x1c\x11\x47\x11\xae\xc2\x2d\xa8\x79\x34\x14\x74\x66\x8b\x2f\x37\ \x79\x9a\x2b\x43\x49\x63\xe7\x14\x51\x2d\x5a\x97\x67\xd4\xf1\x2d\ \x71\xfc\x0c\x2d\x7f\x05\x8d\x76\x3b\xdd\xf6\x86\x19\xed\x68\xc0\ \xac\xb5\x40\x74\xb0\xec\xe2\xa3\xe1\xa9\x35\x8b\x19\x8d\xb9\x97\ \x43\x40\x7f\x2e\x71\xd5\x30\x6e\x6b\x30\x9c\x1d\x51\xd6\x6c\xf0\ \xc7\x77\x7c\x06\x67\x9a\xcc\xab\x88\xe0\xe3\xb1\x88\xe2\x57\x12\ \xcb\xbc\xbf\xa0\x18\x08\xbf\xc7\x3e\xce\x4a\xdf\x48\x58\x1c\x72\ \x03\xa3\x70\x37\xa0\xdd\x5e\x5f\xf0\x76\x3f\x25\x42\x91\x47\xec\ \xba\xad\x4d\x67\x96\x34\x3b\xc2\x11\xcc\xf9\x72\xd0\xf2\xa2\xb7\ \x3c\x49\xde\x62\x67\xcf\x00\xa9\x35\x91\x0d\x76\x16\xee\x24\x1d\ \x5b\x03\xb8\x5c\x79\xb9\x7f\xef\x91\x68\xf9\x12\xcc\x81\x89\xe3\ \x7f\x29\xdd\x4c\x11\x7b\x90\xfe\xf3\x42\x8f\xc6\x24\x6d\xe3\x99\ \xc9\xb0\x13\xb2\xd2\x7e\x41\x57\x7e\xe1\xe3\xcf\x7c\xbc\x7e\x51\ \x5d\x40\xa6\x31\x7e\xb5\x63\xe0\x33\x38\x7c\xb1\xbc\x2e\x23\x37\ \xbf\x80\x3e\x06\x83\x3e\x89\xd1\xe3\x0b\xfe\x83\xbd\x80\x17\xf6\ \x25\xcc\x8d\xbc\xfe\x3f\x66\x3f\xb9\x1b\x71\x33\x31\x11\x9d\x4b\ \xb8\xb3\x3c\x31\x60\x70\x1f\x4e\xd3\x12\xcb\x46\xe3\xa3\x57\x58\ \x9d\x9e\xb0\x16\x57\x90\x0d\xed\xb6\xf2\xc3\x6b\x02\x76\xa0\xcb\ \x82\xdf\x6d\x66\xf0\xd1\xa5\x5a\x1e\xc7\x4c\x8d\x8b\xff\x43\x7a\ \x7e\xc1\x2e\x04\xf9\x8c\x29\xc7\x67\x2b\xcc\xaa\x74\xb1\x85\x98\ \xf5\x7f\x53\xe4\x06\x07\xeb\x14\x42\x51\xd1\x6b\xbd\x7d\x95\x4a\ \x32\xac\x5d\xc8\x90\xfa\x0f\x41\xfa\xac\x4f\xa5\x6c\x7b\xf0\x81\ \x01\x10\x5d\xb6\x94\xfa\xa5\xe2\x57\xa9\x42\x5b\x0a\x75\xf9\x65\ \xa1\x59\x06\x88\x11\x25\x4a\xfc\xb2\x04\xc0\x45\x00\xa3\x76\x75\ \x19\xd5\x86\xc9\x2e\x50\x20\x41\x76\x09\x09\x12\x54\x48\x5d\x25\ \xdd\xec\x71\xc3\xc4\x23\x13\x96\xb0\xdc\xc8\x64\x02\x73\xcf\xcd\ \x95\x37\x61\xd5\xbc\xe9\xc9\x1a\x34\x6b\x48\xd6\xdc\x5c\xb3\x0c\ \xda\x95\x2b\xd0\x9e\xd9\x79\x86\x24\xc7\xa8\x93\xba\xa4\xc2\xf2\ \x84\xf4\x8a\x27\x58\x52\x3d\x40\xe3\x8a\x64\x99\x51\x68\x5a\x90\ \x78\x30\xe3\x01\x49\x58\x68\x48\xb2\xc2\xda\xe3\xc1\xec\x57\x24\ \x67\xc3\x6a\x99\x8b\x8e\xeb\x5d\x2d\xfe\x79\xe9\x1e\xfd\x35\x40\ \x4f\x33\x3d\xb3\x84\x21\x23\xdc\xac\x19\xb2\xc3\xc8\x98\x65\x60\ \x86\x4c\xcf\x5f\xc0\x82\x85\xe9\x21\xdc\x8e\xb1\xb0\x1b\x5b\x7e\ \x09\x1b\xd0\x59\x4f\x44\x64\x5b\x96\x8c\x1e\x7d\xe3\x46\x29\x61\ \xc2\x66\xcd\x6a\x26\x78\xb3\x30\xc0\xbf\x0a\x2d\xb9\x51\xa8\x5a\ \xea\x86\xc2\x2c\x10\x64\x7d\x78\x71\xc4\xdf\x12\xd1\x61\xbc\xd8\ \xc5\x78\x17\x5d\x6d\x44\xee\x62\xce\x5c\x2a\x28\xa8\xba\x6a\xee\ \x62\x92\xb3\x66\x9b\x96\x2d\x71\xee\xbc\xd9\x44\xe6\xf7\x96\x6c\ \xf7\x78\x5a\xe6\xd5\x93\x87\x9b\x1e\x3c\xc5\x35\xeb\xc2\x4e\x87\ \x2b\xba\xa0\x82\x9a\x6a\xa6\xea\x95\xb1\x7b\x60\xc1\x02\x2b\xb6\ \xfc\xdd\xb1\xcc\x90\x8b\x2b\x4f\x6e\xda\xc3\x8c\x65\x92\x8a\x4b\ \x2e\x13\xf4\xca\x0b\x40\xae\x1a\x7c\x50\xac\xc7\x10\x0b\x0c\xb6\ \x76\x0a\x33\x8c\xb2\x76\x98\xc9\xd0\xb0\x0d\x05\xa3\x8c\x99\xdf\ \x98\x19\xe0\xa0\xd7\x52\x43\x00\xb4\x1b\x48\x23\xed\x34\xd5\x40\ \x9c\xe5\x17\x1a\x69\x44\xc8\xb4\x25\x34\x9b\xa5\xc2\x76\x5a\x53\ \xc5\x30\x55\x52\xb3\x6c\xa2\x88\xc6\x30\x86\xb8\x8c\xba\xd8\x88\ \xb9\x92\x9a\x6b\x2e\xa5\xe8\x98\xfe\xd0\x85\x3a\x98\xdc\x68\xa9\ \x26\xed\x6e\xaa\xce\xa6\x2b\xab\xd3\x8f\x09\xb6\x3c\x11\xd3\x93\ \x35\xc4\xb4\x61\x8f\x6c\xc8\x2b\xd0\x8c\x2b\xec\xb0\xe3\x8a\x3d\ \x4e\xca\xa1\xbe\xfb\x96\x39\xef\xc0\xad\xba\x2a\xef\xac\xaf\xfa\ \x4b\x0b\x09\x6b\xd0\x6b\xcb\xac\xbb\x0a\x85\x46\x42\xba\xf6\x9a\ \x2b\x51\xba\x90\x68\xa7\xc3\xc7\x62\x04\xf1\xb1\xd5\x38\x6c\x0c\ \x44\xc0\x62\x0c\x2e\x03\xc7\x6a\xec\x6c\xb3\xcf\x20\xfa\xe5\x06\ \x00\x5c\xa4\xad\x10\x0c\xdb\x99\xf1\xa0\x52\x10\x2a\xc4\xb4\x84\ \x08\xd2\xa3\xc3\xc5\x48\xac\x75\x96\x85\x66\xd9\x14\xa2\x2f\xba\ \x78\xa3\x0b\x24\x97\x58\x92\x49\x27\x8b\x45\x69\x3a\xea\xac\x6b\ \x03\x3b\x2c\xf7\xf0\x8e\xa7\x96\xa6\x04\x73\x0f\x29\x61\x1a\x33\ \xbd\x02\x7b\xfa\x8a\xac\xb0\x9e\x81\xc6\x0c\x26\x42\xa2\x0f\x26\ \xb7\x90\xa8\xca\x13\x26\xca\x2a\xf4\xac\xb8\xe0\x42\x0b\xbf\x3d\ \xd1\xcb\x13\x1a\xbb\xd2\xc2\x4b\xaf\x42\x19\xc5\x17\x1a\xc6\x1c\ \x9b\x71\xc7\xd5\x00\x16\x8c\xb5\x0c\x2d\xa4\x94\x35\xc5\x80\x3b\ \x91\x46\xce\x52\x1b\x00\x01\xcb\x10\x10\x0d\xa3\x17\x0b\x99\xc5\ \xb2\x1e\x85\x29\x84\xa0\x1b\xfe\x6b\x23\xa8\xaf\x21\x89\xcc\x00\ \xd7\x1b\x54\x11\xb9\x0b\x8b\x90\x2c\x55\x23\x8f\x36\x3a\xa9\x24\ \x97\x4c\xa2\x4e\x3f\x90\xda\x60\xcb\xca\x64\x77\x62\xa2\xc0\xec\ \xa8\xfd\x68\x17\x5d\x56\xe2\x49\x4c\x3b\xd7\x43\xd7\xa6\x31\xff\ \x0b\xeb\x0a\x0f\xa4\x4b\x0e\x4c\xf5\x82\x12\x33\x9b\x9b\xcc\xe0\ \x4a\xd1\x3f\xe3\x52\x2a\xad\x3d\xcd\x85\xc5\x03\x3f\xff\xb4\x77\ \xdf\xab\x1d\x7c\x10\x1a\x12\xfd\x55\x2d\x35\xdc\x52\xab\xf4\xb0\ \x1e\x25\x93\x34\x38\x3d\x84\xf9\x78\xb3\xce\x3c\xab\xbb\x45\x8b\ \x5c\xac\x2d\x54\x4e\x35\xfe\x38\xa1\x8d\xfb\x1a\x51\x64\x88\x9a\ \x41\x48\x18\x22\x91\x09\x96\x87\x3c\x46\x19\x2d\x84\x98\x47\x82\ \x8a\xb9\x36\x52\x02\x1a\xa6\x70\x43\xb2\xce\x25\x2c\x57\xb2\xf2\ \xba\x2e\xbb\x4c\x4f\x3d\xf5\xc8\xd3\xc9\x0d\xb7\x04\x3c\x6b\x2f\ \x24\x6c\x9a\xb6\xcc\xb8\xae\x35\x43\xc0\x42\xeb\x15\x9b\x2b\xb8\ \x90\x60\xda\x8c\xaf\x0d\x85\x86\xd0\xb9\xba\x7a\xdd\xec\x07\x3b\ \x44\x6c\x00\xd7\xd8\xde\x6c\x35\x4c\x09\x6b\x3e\xc6\x47\xdb\xd1\ \x63\xe1\x1a\x1d\xfe\x14\x1f\x1c\x4d\x35\xad\x94\x87\x20\x52\x35\ \x7b\xdc\x18\xd6\x23\x6d\x5e\x0e\x81\xeb\x51\x95\x5f\x54\xd9\x35\ \x8f\x94\x2f\x6a\xe3\x0b\x74\x50\x5e\xa2\x0b\x2b\x95\x83\x6e\x14\ \xfe\x77\x51\x4e\x24\xe9\x30\x81\x7f\x97\xdb\x1f\xff\x90\x13\x34\ \x9f\x79\x44\x74\x0a\xac\x09\x5b\xdc\xa2\x2d\x31\xe5\x24\x3d\x60\ \x41\x4b\x7e\x60\x91\x03\x41\x08\x42\x3d\x80\x2a\x9a\xa0\xe4\x92\ \x17\xdd\x89\xcd\x2b\x0b\x1a\x8b\x03\x8f\x67\xaf\x3c\x29\x6a\x41\ \x8b\xda\x57\x40\x00\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\ \x00\x00\x00\xf0\x00\xf0\x00\x87\x04\x02\x13\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\x88\x8d\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\ \x93\xb3\x60\x8a\x3e\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x99\xa7\xb9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6b\x09\x9d\x13\ \x28\xa7\xff\xff\xff\x0f\x27\x69\x08\x68\x9b\xff\xff\xff\xff\xff\ \xff\xd7\xc8\xe4\xff\xff\xff\xf5\x95\xb6\xff\xff\xff\x8d\x68\xa2\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x50\x69\x5f\xf8\xaf\xba\x12\ \x29\xe0\x4e\x68\xf8\xb9\x88\xb4\x9b\xf2\xfc\xff\xff\xff\xfa\xc8\ \xe4\xff\xff\xff\xff\xff\xff\x28\x47\xeb\xff\xff\xff\xff\xff\xff\ \xd9\xe8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\x98\xc8\xfb\x94\ \x49\x52\x7b\x87\xab\x94\x68\xf7\xff\xff\xff\x79\x88\x3a\xff\xff\ \xff\xff\xff\xff\xd9\x91\xf3\x8c\x25\x82\xff\xff\xff\xb7\xb3\xf2\ \xff\xff\xff\xff\xff\xff\xf7\xb2\xf0\xfb\x8d\x5e\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf9\xe8\xf0\x29\x28\x19\xff\xff\xff\x6d\x68\ \xe8\xff\xff\xff\xff\xff\xff\xb8\xc9\xf3\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x96\x27\x2a\x96\x94\xf6\x38\x56\xf7\xff\xff\xff\xff\ \xff\xff\xd7\xd9\xec\x0a\x18\x1c\xff\xff\xff\x11\x38\x68\x3a\x64\ \xf2\xff\xff\xff\x09\x18\x62\x97\xb1\xf8\x73\x88\xf7\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xba\x8e\xf3\x57\xa8\xe5\xff\xff\xff\xdb\ \xae\xf8\xff\xff\xff\x5b\xb8\xeb\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb3\x67\xe9\xfb\xd0\xa5\xfa\xd8\xeb\x13\x37\x1e\ \x7b\x95\x44\xfb\xfd\xfa\xff\xff\xff\x7d\xf5\xfc\xd1\x48\x66\xff\ \xff\xff\x36\x4a\xeb\xb7\xd8\xfa\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xc4\xe3\x99\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb5\ \x52\x2c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb0\x6a\ \xa0\xff\xff\xff\xff\xff\xff\x3c\x1e\xe4\xff\xff\xff\xff\xff\xff\ \xe9\x55\x98\xff\xff\xff\xb9\xf3\xfc\xae\x33\x60\x79\xcb\xf9\xff\ \xff\xff\xb4\x26\x84\xff\xff\xff\x58\x92\xeb\x78\xb3\xf8\xff\xff\ \xff\x36\x4e\x19\xfa\xae\x89\xff\xff\xff\xfa\xec\xba\xff\xff\xff\ \xff\xff\xff\xa6\x18\x5c\xff\xff\xff\xf7\x92\x8e\xff\xff\xff\x2a\ \x7b\xc9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9d\xb5\x77\xf4\x79\ \x5d\xb5\x76\x6e\xff\xff\xff\xff\xff\xff\x2c\x86\x9c\xff\xff\xff\ \xff\xff\xff\x1e\x96\xcc\x99\xd8\xfb\xff\xff\xff\xd0\x39\x26\xff\ \xff\xff\x41\xb6\xed\xff\xff\xff\xff\xff\xff\xdd\x97\x93\x04\x58\ \x8b\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x76\x24\xff\xff\xff\ \x18\x35\xa7\x11\x78\xa8\xff\xff\xff\xd1\x78\x9b\xff\xff\xff\x19\ \x37\xe0\x58\x76\xfa\xff\xff\xff\x2c\x38\x66\xff\xff\xff\xff\xff\ \xff\x93\x78\xf0\xff\xff\xff\x47\x5a\xf6\xff\xff\xff\x68\x7a\xf5\ \xef\x79\xa4\x4e\x59\x66\xff\xff\xff\x87\x3c\x2e\xff\xff\xff\xff\ \xff\xff\x09\x19\xde\xff\xff\xff\x93\x5b\xf6\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xb1\x78\xf7\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb6\x58\xa7\xff\xff\xff\xff\xff\xff\x73\ \x5b\xf1\xff\xff\xff\xff\xff\xff\x88\x22\xbc\x96\x98\x52\xff\xff\ \xff\x96\x97\xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd9\xfb\xfc\xff\xff\xff\x6f\x78\x29\xff\xff\xff\x7d\x97\xf9\xff\ \xff\xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\ \xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\ \x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\x63\x41\x5e\x20\x43\ \x7a\x1c\x49\xb2\xa4\xc9\x93\x25\x43\x86\xe4\xc3\xa7\xd1\x89\x79\ \xf3\x50\xca\x9c\x49\xb3\x66\x4a\x95\xbc\x96\xcd\x9a\x87\x81\xd3\ \x9e\x9f\x3f\x31\xf0\xb2\x49\xb4\xa8\xd1\xa3\x02\x71\xca\x5a\xc5\ \x74\xd5\x08\x18\x40\xa3\x06\x1d\x8a\xb4\xaa\xd5\xab\x14\x71\xf2\ \x0a\xc6\xf5\x48\x30\x4d\xf8\xf2\xe4\xc1\xa7\x09\x86\x59\xa9\x53\ \xb1\xaa\x5d\xbb\x56\x2b\xaf\x2a\x23\x46\xc8\x18\xa1\xa9\x2c\x0c\ \xb0\x60\xf1\x91\xb5\x0b\x55\x2a\xa7\x46\x6c\x03\x0b\xbe\xa9\x35\ \x15\xaf\x59\xba\xfe\xe0\x58\x6c\x16\x86\x5e\xbd\x75\x23\xe7\x8d\ \xdc\xb8\x6f\xe5\x59\x83\x33\x6b\x96\xe8\x56\x25\x0f\x9f\x67\x7f\ \x4e\x8e\xfc\x58\x72\xdd\xd2\x75\x2b\xef\xb9\xab\x69\x4f\x30\xaa\ \x9b\x63\xcb\x76\xcb\xb2\xa5\xa4\xbe\x3f\x71\xaf\x5e\xed\x18\xf5\ \x69\xbc\xa4\xc7\x92\x35\x5b\x96\x77\xea\xd7\xb2\x93\x07\xd6\x8a\ \x49\x96\xf3\x12\x7b\xd1\xf2\x06\xda\x78\x75\x5e\xe1\xc3\x4d\x83\ \x15\x3b\x5c\xf5\xdd\xbb\xc8\x95\xfe\x8b\x2f\xaa\xd2\x30\xa6\x25\ \xab\x5e\xbc\xa8\x12\xf6\x09\xf6\xe2\x68\x71\x37\x2e\x9b\x37\xec\ \x58\xfa\xa6\xf5\xde\xaf\xfc\xbd\x71\xf8\xf1\x00\xde\x64\x18\x2f\ \xd8\xb0\x10\x0c\x0b\x2c\xd4\xe1\x5e\x1e\x50\x71\xe2\x98\x58\xc2\ \xc1\x27\x1d\x75\xf9\xd9\xb7\xd7\x6f\x66\x59\x88\x0f\x75\xc4\xf9\ \x07\x5b\x80\x20\x5a\x04\x92\x61\xa9\x34\x22\x83\x0c\x75\xc8\x60\ \x07\x77\xf6\x41\xd8\x60\x6f\x2d\x0e\x37\x21\x85\xf8\x34\xa6\x1f\ \x8b\xa5\x11\x67\xa1\x6e\xd5\xb9\xf6\x61\x88\x40\x1a\xd4\x19\x2f\ \x7c\xcc\xb2\xca\x13\x38\x6c\x07\xe1\x92\x37\x72\x77\x96\x63\xa7\ \x71\x97\x9a\x6e\x52\xe1\x05\xd5\x5d\x4d\xee\xc8\x9b\x96\x52\x5d\ \x09\xc3\x32\x3f\x06\x19\x60\x67\x7c\x2c\x25\xc3\x13\xf8\x2c\x98\ \xdd\x92\x63\xb1\x09\xa1\x5d\xc0\x61\x09\x19\x5f\x57\xee\x66\x1d\ \x64\xc6\xb5\x08\x61\x77\xdb\x85\xd5\x5a\x54\x30\xe8\xa2\x4b\xa0\ \x60\x8a\x39\x9e\x56\x2c\x35\x57\x82\x1d\x0b\xba\xd7\xe4\x7d\x7b\ \x68\xb2\x64\x94\x6c\x5e\x18\x56\x76\xa8\xf5\x67\x1c\x5f\x56\xea\ \xa8\xa7\x58\x70\x3e\x46\xd6\x4f\x9c\x94\x3a\xa8\x2e\x9a\xe8\xc2\ \x47\x98\x86\xb6\x85\x53\x73\xfe\xb2\x14\x28\x83\x9b\xb4\xc6\x68\ \x97\x85\xf4\xb9\x39\xa7\x94\x72\xee\xc5\x1f\x71\xf8\x4d\x76\xe7\ \xa7\xfb\x9d\xa6\x17\x54\xbe\xf8\x92\x0b\x27\x83\xfe\x41\x28\xab\ \xad\x1e\xa5\x15\x36\x4c\xb1\xb0\x60\xad\xb4\xb6\xc9\x24\x7d\xf6\ \xe5\xaa\xeb\x75\x79\x90\x96\x63\x87\xac\x55\x58\x1c\xa5\x4c\x5e\ \xa9\x5f\x5d\x7b\xf8\x92\x4c\x32\xbe\x30\x7b\xea\x2c\xd0\x46\x3b\ \xd3\xab\xa4\x20\x88\x60\xb6\xfc\xea\xaa\x6d\xb1\xb8\x12\x1b\xe1\ \xa5\x7b\xe1\x7a\x25\x65\xac\xcd\xd9\x1d\x96\xba\xf6\x55\x5f\x6b\ \x6f\xe4\x92\xcb\x1b\x7b\x08\x6a\x16\x0f\x20\xd9\x7b\x2f\x4e\xab\ \xc8\xc0\x02\x8a\xd7\xf6\x2b\x72\xa5\xdb\xde\xb5\xe7\xa3\x4c\x3e\ \x36\x16\xc3\xfb\xdd\xc9\xe9\x85\x08\x2b\xb9\x6d\x6e\xa2\xfe\xe9\ \x53\xc5\x51\x35\x52\xaf\xc6\x9c\xb9\x95\x4a\x2a\x3d\x64\x93\xcd\ \x0b\x8c\x8e\x6c\x74\xbf\x2a\x83\x5a\x17\x93\x48\x8f\xd6\x1b\xa8\ \xa2\xe1\x15\xf5\xa8\x58\x4e\x89\xf2\xa8\x77\xde\x27\x19\x5a\xab\ \xf2\x9c\x55\x61\x03\xce\xa2\xcf\x2c\x41\xc4\xa3\x4f\x36\xd0\xf8\ \x20\xe9\xd1\x6c\xd7\xaa\xe1\xd2\x27\xf3\x7b\xa9\x69\x7b\x4e\x5d\ \x5c\xb9\xc6\x6a\x2d\xb3\xfe\x94\x34\xcf\x0d\x63\x9d\x3f\x75\xed\ \x35\x43\x43\xfe\x9c\x05\x14\xdb\xe8\x13\x4f\x3c\x41\x18\x33\xca\ \x0a\x78\xcc\x03\xc2\x1d\x2b\xfc\xd1\xf6\xe5\x29\xe3\xba\xb7\xc8\ \x73\x46\xb6\x67\x6b\x55\xc3\x69\xac\x86\x05\x57\x6a\xdd\x9e\xc4\ \x41\xfa\xa4\xce\x83\x1f\x54\xde\x4a\x65\x06\xb3\xb8\x3e\x50\x40\ \xf1\x05\x14\xfa\xc4\xc2\xf8\x28\x77\x8c\xe2\x00\x1e\xb6\x8c\x62\ \x0b\x0f\x98\x17\xff\x28\xba\xff\xd6\xca\x6d\xd2\x7c\xce\x39\xdf\ \xd5\x90\xe9\x19\x1c\xaf\x6b\x6b\xe2\x60\x63\x47\xec\x1c\x64\x48\ \x3f\xa7\x92\xc5\xe1\x87\x67\x13\x44\x2c\xb1\x10\x12\xcb\x08\xba\ \x8f\xf2\x05\x00\x00\x7c\x61\x4c\xf9\x84\xe0\x31\xca\x28\xc6\x38\ \xe0\x40\x32\x2b\x10\x22\x70\xf1\x6d\x23\x3f\x72\x59\x97\x6a\x13\ \x9e\x32\xe4\x2b\x4f\x7d\xaa\x74\x9f\x8b\x11\x02\xad\xc7\xa9\x8c\ \x19\x8a\x7b\xdd\xab\x5d\xed\xd8\x47\x41\x00\x50\xce\x01\xf1\x88\ \x45\x1d\x08\x51\x87\x78\xa8\x8f\x82\xc6\xa8\x43\x1e\x4c\x41\x08\ \x07\x18\xc3\x16\xf6\x43\xa1\x2e\xf8\x87\x39\x3d\xd5\xe8\x80\x72\ \xcb\xd0\xb7\x72\xe3\xb4\xd1\x65\x89\x35\xdb\xaa\x14\x59\x2c\x84\ \xaa\x0b\x39\x70\x4c\xfe\xbc\xe8\x5e\x16\x2a\x48\xc4\xf5\x11\xb1\ \x77\xa3\xc8\x46\x3c\x08\x81\x03\x42\x78\x10\x0a\x20\x24\x84\x29\ \xf2\x60\x3e\x63\xd4\x6f\x0d\x78\x78\x03\x7b\x58\xc8\x42\x6e\x71\ \x8e\x7a\x31\x6a\x59\xaf\x82\x05\x2e\xc8\xc8\x10\x69\xd0\x7b\xcc\ \x0f\x05\x03\x36\xef\x0d\x91\x88\x70\x64\xdf\xed\x8c\x48\x41\x09\ \x3e\x2e\x16\x24\xdc\x9d\xfa\x70\x27\x45\x12\xc6\xc2\x7e\xbf\xc3\ \x22\x27\x70\xc0\x45\xe3\x21\x70\x64\x96\xca\x5c\x6a\x1e\x56\xa1\ \x37\x1d\x8c\x69\xba\xda\x9f\x58\xd6\x68\x95\x36\x7e\x0f\x8a\x71\ \xac\x20\x19\xbe\xc0\x49\x0a\x7e\xe1\x0e\x77\xa0\x63\xfb\xa0\x10\ \xca\x51\xc4\xc3\x0b\xe6\x63\x9c\xe3\x8c\xb1\x44\x12\xc6\xcf\x8a\ \x28\x44\xe1\x1b\x08\x59\x48\xb6\xe9\x27\x91\x47\xf3\xdc\x9e\xa4\ \x44\x1a\xed\xc0\x0d\x54\x36\x4a\x1a\xa8\x50\xc6\x2f\x4c\x68\x0f\ \x25\x60\x3b\x1c\x26\x33\x19\xc7\x2f\x40\x23\x1b\xbc\x5b\x1f\x27\ \x41\x59\x41\x4e\xd6\xee\x76\xb9\x43\x65\x10\x56\x30\xbf\xdc\x11\ \xe2\x9b\xaf\x9c\x1f\x08\x46\x21\x0c\x07\xac\xad\x96\x46\xb3\xd5\ \xe6\x9a\x56\x46\xcd\xf5\x12\x66\xe9\x2a\x97\x0b\xfd\xd7\xaf\x63\ \x76\x84\x39\xce\xfe\xc1\x46\x09\x58\x70\x02\x51\xc2\x91\x0c\x64\ \x68\x66\xef\x56\x20\x8c\x50\x4a\xb3\x93\x9e\x44\x62\xed\x94\x98\ \xca\x51\xd8\x6e\x14\x78\x00\x67\x09\x8d\x31\x4e\x50\xde\xc1\x16\ \x5e\x40\xe7\xd1\xe6\xb9\x4e\xb9\x5d\x47\x98\x39\xfa\xcd\xf4\x8a\ \x05\xae\x37\x11\x93\x5f\xf6\xbc\x88\x4a\xca\x44\xad\x55\xb0\xa0\ \x68\x4b\xf2\xc2\x0a\xfc\xc9\x3e\x80\x02\xf4\x03\xfe\xfc\xe4\x1d\ \x84\xc1\x3b\x4f\xd2\xf4\x0b\x49\x74\x28\xfd\xe2\x81\x3e\xda\x01\ \x00\xa2\xf0\xfb\xa3\x15\x43\xc9\xbe\x15\xac\x50\xa3\xe9\x4c\xa0\ \x24\xdd\x76\xcb\x00\x46\x48\x9e\x79\x73\xe4\xd3\x0a\x99\x52\x88\ \x8c\x88\x48\xbc\x70\xe9\xc7\x60\xda\xaf\x23\x64\xc3\x9f\x01\x25\ \xc3\x07\xc2\x50\x50\x38\xea\x94\xa9\x6e\xa5\x63\x12\xa1\x89\xcd\ \xf3\xc5\x63\x05\xbd\x1b\xdf\x37\xff\x68\x3f\xa6\x7e\xc1\x16\x55\ \x80\x6a\x0b\x4f\x1a\x55\x51\xb1\xa8\x3e\xb8\x04\xa6\x9c\xb8\x7a\ \x4f\x5e\x24\x88\x51\xb3\xba\x1c\x0e\x30\x70\x56\x0a\x02\xf4\x0b\ \x61\xd8\x69\x36\xe0\x5a\x41\x8b\xfe\xd4\xa0\xec\x83\xc2\xfc\xf6\ \x68\xca\x6f\x9a\xcd\x8a\x49\xb5\x1f\x1e\x1c\x60\x50\x5b\x10\x42\ \xb0\x97\x23\xfe\xac\x2d\x41\x8a\xd8\x91\xae\x6c\xb1\x5c\xec\xaa\ \x43\x9e\x10\x32\x16\x56\x01\x1a\x14\x5c\xeb\x1d\xd8\x3a\x0a\x10\ \x14\xd4\x9f\xa0\x14\x06\x4d\xdb\x47\xc7\xdb\x89\x96\x94\xa3\xc8\ \x5d\x15\x4c\xab\x8f\xf7\xe1\xe1\xba\xb1\xe0\x44\x2c\x6c\x01\x4a\ \x5b\x3c\x15\xb6\xe0\xf5\xa8\x92\x54\x16\xd2\x2c\x89\x8b\xab\xba\ \x65\x08\x54\x9f\x30\x0f\x3a\x0e\x77\xb8\xc2\x80\x66\x66\x8b\x98\ \xd9\xe5\x36\x53\xb4\xf3\xcb\x06\x2b\x09\x81\x3e\x3c\x18\xe3\xba\ \xbf\x23\xdf\x1b\x1c\x60\x0b\x10\xd8\xe2\x0f\x53\x0d\x2f\x17\x15\ \x58\x52\xec\x68\x2d\x61\xdb\x3a\x27\x17\x9f\x90\xde\x85\x08\x16\ \x07\xf3\xc0\x24\x66\x41\x19\x86\x15\xd4\xb7\x9a\xef\x45\x28\x33\ \xeb\x18\x54\x87\xb2\xb2\x7c\xab\x4d\xf1\x1b\x62\x31\x60\xee\x0a\ \xc3\xa9\x0a\x8e\xf1\xc9\x90\xc7\xe0\xd1\x09\x50\x92\x48\x1a\x81\ \x17\x7a\x4b\x2b\x0a\x73\x04\xb6\x38\xf0\x01\x26\xc3\x00\x8d\x0e\ \x4f\x8e\xa6\x1f\x08\x71\x35\x99\x09\x05\x63\x70\x73\x8f\x27\xc6\ \x00\x1e\x7c\x80\x87\xf2\xf1\x20\x16\x04\xe5\x64\x18\x30\x90\x60\ \x19\xb7\x70\xc6\x37\xb2\x2a\x2f\xeb\x03\x49\x08\x3d\xa1\x0a\x18\ \xf0\xc1\xfe\xd9\x46\x91\xb6\x11\x8c\x2c\x15\x3f\x86\xed\x08\x66\ \x0a\xd4\x15\xd8\x79\x05\xd0\xf8\xa9\x70\x3b\xc9\x49\x11\x17\x31\ \xa8\x50\xfc\x24\xe4\x30\x10\x0b\x3c\x10\xfa\x0f\x84\xc0\xc0\x1a\ \x66\xda\x3e\x5b\xd0\xd2\xcb\xe0\x35\x2c\xc1\xbe\x95\x55\x5a\x61\ \xf8\x83\x15\x84\xc2\x09\x46\xc0\xe3\x25\xc1\x79\x23\xb2\xe8\x34\ \x0b\x9f\x10\x8b\x6c\x40\xe1\x03\x8f\xb3\x85\x87\xfb\x5c\x44\x9c\ \x22\xf4\xd5\x6e\x85\x46\x12\x0d\xda\x3b\x14\x62\x91\xd0\xb1\xb8\ \xf2\x1f\xb0\xcc\xc9\x15\x48\x18\xd2\x50\x35\xec\x8d\xe7\x99\xba\ \x6c\x79\xc1\xa8\x99\x86\x42\x16\x7a\x10\x8f\x33\xf1\xeb\xd3\x1a\ \xe1\x85\xa8\xb9\x48\x59\x2d\xfb\xc0\xc3\xc3\x0d\x83\x9f\x03\x3a\ \x62\x9f\x0e\x37\x1b\x99\xb5\x28\x28\x57\x00\x48\x55\x3b\x00\x03\ \x3c\xd0\x85\x2d\x38\x99\x8d\x5f\x03\x1b\x9d\xc2\xc6\x0e\x47\x59\ \xc6\xa6\x2a\x54\xb6\x8e\x3d\x98\x45\x30\x62\xa1\x2f\x4e\x67\x8b\ \x05\x15\x4e\x88\xb4\xc1\xfb\x04\x0c\xdc\xa1\x7d\xd9\xc0\xeb\x17\ \x92\x0c\x8d\x0f\x74\x3b\x93\x98\x0d\x03\xb8\x43\x19\x6e\x9d\x66\ \x83\xa7\xb6\xbb\x43\x36\x1c\x70\x6d\x80\x22\x83\x1f\x7f\x40\x52\ \x21\xfe\x79\x2b\xe3\x4f\x6d\x6e\x87\xea\xa4\xb7\x58\x9e\x70\x84\ \x51\x54\x30\x0b\xb3\x88\xac\x99\x4d\x31\x6d\x3b\x04\x1c\x21\x03\ \x07\xaf\x17\x82\x40\xca\x0f\x03\x80\x0c\x44\xb6\x6f\x11\xf9\x3c\ \xdc\x67\x86\x01\xa7\xd9\x1e\x45\xc5\x2b\xc8\xd6\x6c\x38\xfc\xe7\ \x12\x17\x83\x0f\x42\xe1\x85\xc5\x8c\x80\x07\x47\xc0\xc1\xb5\xd0\ \xc4\xe3\x27\xc8\xa0\x0d\x08\x52\x11\x59\x35\x4a\x29\x61\xe2\xe8\ \x73\x95\x5e\x39\x06\x96\xb9\xec\x60\x4c\x9b\x5f\x32\xb8\xb9\xeb\ \xde\xce\x45\x2f\xa4\x19\xd3\xed\x2b\x72\x18\xb8\x6d\xd9\x0f\xe0\ \xb4\x7d\x40\x0f\x77\x18\x9a\x0e\xee\x2f\x00\x3d\x89\x20\x28\x7c\ \x35\x89\x9c\xd6\x9a\xde\x14\x04\x3e\x00\x45\x36\x90\xf1\x4c\x50\ \xf0\xc0\x0b\x7f\xf8\x43\x9a\x31\x50\x05\x98\x3e\xc1\x0e\x06\x68\ \x44\x0f\x46\xbf\x0c\x03\x7c\x8c\xe4\xb5\x8c\x5e\xdc\xd0\xae\x39\ \x95\x8b\xa5\xe5\xa1\xdd\xc6\x2c\x44\x58\x3c\x3b\x40\x1b\x23\xbc\ \x28\x41\x8c\x71\x10\x0b\xe0\xca\x11\xa7\x1f\x28\x32\x11\xc9\x00\ \x0d\x31\x1c\x7d\xad\xf1\x15\x46\xf2\x85\x26\x8c\xbf\x63\xd6\xe8\ \xa2\xfc\x42\x7c\xb5\xfd\x73\x9b\x7e\xa0\x03\x1f\x40\xc6\x07\x02\ \xfe\xba\x3e\xb5\x66\x43\x0c\x2b\x40\x1b\x91\x85\x36\x8f\xc8\xca\ \x60\x19\xdb\xe0\x80\xb2\xbf\xd7\x03\x75\x2c\xe3\xf4\x74\xff\x5f\ \x96\x38\xba\x24\x1b\xb9\x69\x04\xd9\x60\x9f\xec\x69\xcf\x3f\x9b\ \x73\x84\x17\x32\xe6\x05\xf9\x67\x59\x3f\xe7\x77\x7c\x87\x59\xcc\ \x37\x78\xf1\x95\x70\x17\x57\x64\x4e\x57\x4d\x7e\xd6\x3e\x12\x57\ \x64\xd6\x87\x0c\xd9\xe0\x07\xd0\x80\x0c\x9b\x54\x7d\x36\x05\x50\ \x3f\x27\x4a\x50\xf0\x02\xee\x01\x7a\x97\xa4\x6c\xeb\xf7\x3d\xea\ \x40\x0a\xce\xc6\x42\x66\x27\x3d\x26\xe3\x24\x82\x42\x2c\x3e\xa0\ \x7f\xf1\x10\x7f\x22\xf3\x04\xb2\x20\x77\x06\xc1\x07\x32\xf6\x04\ \x33\x08\x47\x6b\x85\x53\x00\x15\x06\xc8\x00\x02\x19\x28\x71\xd9\ \x90\x78\x46\x38\x78\x47\x27\x74\xc1\xb5\x56\xc7\x97\x7d\x17\x98\ \x81\xdb\x97\x56\x12\xa7\x7d\x1e\x98\x49\xd9\x30\x2b\x4f\x50\x02\ \x7c\x20\x44\x97\x74\x38\xa9\xc0\x07\xa6\xb7\x22\xfc\x63\x76\x6c\ \xe2\x45\xf7\x31\x28\x9f\x82\x7f\x88\x83\x01\x66\x58\x48\x00\xb7\ \x11\x00\x28\x63\x19\x36\x7c\x44\x26\x0c\xd0\xa0\x87\x7a\x88\x0c\ \x4c\xb8\x80\x18\x08\x0d\x45\xb6\x70\x42\xd7\x81\x1d\xe8\x77\xfe\ \xc8\x40\x79\x1d\xd0\x81\x00\xf0\x01\xdf\xd7\x70\x86\xc7\x64\x6d\ \xe0\x1e\xe7\x07\x56\x41\xe4\x46\x86\xc3\x07\xef\xc7\x28\xa8\x37\ \x5b\x68\x24\x3d\xa8\xb2\x24\x4f\x30\x02\x27\xb0\x0d\x27\xa0\x20\ \x10\x32\x45\x4b\xa2\x8a\x47\x33\x87\x1a\xc1\x83\x32\x66\x6f\xd2\ \x54\x80\xd0\xb0\x02\xad\x10\x7e\x35\x00\x0d\xd6\x27\x88\x1d\x70\ \x7c\x83\x57\x85\x99\x04\x74\x0d\x57\x85\x6a\xb5\x88\x86\x68\x88\ \xcf\xd4\x70\x7c\x97\x49\x50\xc0\x07\x67\x22\x03\x25\x10\x2b\xce\ \xb1\x2a\x38\xa1\x89\x2e\xa5\x22\x36\xa8\x43\xb3\xb5\x37\x5e\x10\ \x0f\xdb\xd0\x03\x34\x97\x8a\x23\x24\x16\xaa\xc8\x8a\x23\xe3\x8a\ \x19\xc1\x0b\x71\x18\x5e\x05\x87\x36\x42\x23\x88\x48\x28\x06\xe0\ \xb6\x7d\x3f\xf7\x4c\x58\x48\x8b\x4f\x17\x47\x6a\x95\x88\xc4\x88\ \x7d\xc4\xe8\x78\x00\xd5\x01\xd9\x50\x0d\x0d\xf7\x70\xa1\xb5\x0c\ \x76\x60\x07\x4a\xb0\x0a\x2d\xd5\x14\x25\x80\x0d\x10\x59\x2d\x63\ \xd5\x89\xa2\x88\x24\x5e\x60\x07\x5e\x10\x17\x8b\x91\x79\x5d\xb6\ \x7a\x2b\x37\x02\xc1\x70\x02\xc1\xc0\x26\xa6\x50\x92\x25\x39\x42\ \x27\xd9\x8a\x3a\x68\x10\x98\xe0\x65\x23\xe0\x03\xb5\x28\xfe\x05\ \xc3\xc8\x56\x45\x46\x8f\xfb\xa8\x8c\x35\x65\x80\xc1\x78\x8c\x36\ \x65\x8c\x36\xe5\x78\x16\x28\x05\x1e\xb6\x8c\xdd\xb6\x09\xd6\x62\ \x07\xd1\xc8\x14\xfb\xa4\x2f\x75\xf0\x31\x27\x92\x90\x27\xf2\x94\ \x5b\x37\x02\x2f\x70\x02\x68\xc3\x66\xd9\x70\x6d\xe4\x56\x05\x8f\ \x86\x48\x62\x61\x07\x71\x11\x0c\x23\x10\x8e\xe3\x68\x92\x66\x89\ \x92\xe6\xd8\x2f\x71\xc7\x11\xa1\x26\x63\x7f\x80\x67\xe2\x67\x78\ \x81\x47\x8c\x7e\x47\x8f\x8e\x87\x7d\x44\xc9\x81\x59\xa8\x97\x8c\ \x68\x59\x02\xe9\x02\x78\x96\x97\x23\x06\x73\x2a\xb2\x90\xd4\xc2\ \x02\xf9\x32\x91\x09\x09\x95\xd0\xf8\x90\x1f\x63\x66\x2c\xd0\x03\ \xcb\x14\x5a\xec\x43\x39\xf3\xc0\x95\x69\x62\x34\xec\x95\x0d\xfa\ \x86\x8a\xe2\x68\x96\x27\x39\x45\x29\x29\x32\x76\x20\x38\x19\xd1\ \x92\x32\x36\x67\xc0\x78\x53\xac\xd9\x97\x96\x45\x7c\x79\x09\x50\ \x19\xb8\x97\x69\xf5\x93\xc3\xe7\x07\x03\xa9\x8b\x06\x49\x44\x3d\ \xf0\x31\x2c\x50\x02\xab\x50\x02\xa4\x00\x9c\x1d\xc3\x28\x76\x80\ \x20\x4a\xf0\x9b\xd8\xd0\x1c\xd8\xa0\x04\xd7\xa2\x04\xcb\x70\x38\ \x10\x57\x8b\xf3\x70\x04\x23\xa0\x18\x48\xb2\x18\xb4\xfe\x32\x02\ \x3d\xb0\x0d\xdb\xf0\x02\x9e\x29\x9a\xe2\x79\x96\x69\x29\x32\xab\ \xb0\x92\x04\xd1\x96\x0a\xc6\x5e\x79\xd6\x77\xd4\xa7\x56\x7b\xa9\ \x49\x64\xb0\x88\x40\x68\x81\xd0\x60\x8c\x3f\xa7\x97\xfa\xf8\x4c\ \xf4\xb9\x9b\x2f\xa7\x0e\xfb\x04\x9c\x25\x20\x9c\xbf\xe9\x9b\xc1\ \x80\x0d\xb1\xc2\x90\xcd\xd1\x1c\xce\x69\x66\x4a\xf0\x02\xcb\x20\ \x09\xdd\x49\x53\x50\xb0\x02\x27\x10\x04\x3e\xc0\x13\x47\x60\x9d\ \x5e\xb0\x63\x1f\xf9\x02\xa3\x17\x0c\xa4\x50\x07\x24\xfa\x04\xe5\ \x68\x92\x75\x40\x9e\x6c\x73\x9e\x1b\x81\x9a\xe1\x55\x05\x78\x26\ \x4a\xc4\xb7\x77\xb5\xb9\x93\x76\x69\x59\x82\x58\x09\xba\x59\x9b\ \xae\xf9\x9a\xd8\xe7\x9f\x71\x94\x05\x92\xa0\x4f\x02\xaa\x2f\x08\ \xb2\x0c\x9b\x90\x05\x63\x88\x09\x0b\xba\x14\x4a\x20\x73\x79\xc0\ \x5b\x09\xe9\x05\x2c\x30\x0b\xdb\xb0\x4c\x88\x73\x02\x5a\xda\x03\ \x27\x30\x0b\xf1\x10\x0c\x5e\x81\x01\x9c\x06\x96\xb3\x90\x0d\x8d\ \x10\x0c\x25\x89\x22\x75\x50\x34\xa0\x99\xa2\x2a\x6a\x34\x25\x80\ \x9e\x03\xc1\x0b\xb2\x10\x5e\x73\x36\x99\xc1\x45\xa3\xf1\x39\x7c\ \x78\xa9\x49\x3e\x99\x9f\x00\x69\x9b\x81\x0a\xa4\xfe\xcc\xb8\x09\ \xcb\xd0\x00\x25\x60\x00\x4b\x79\x22\xab\x90\xa4\xde\xf3\x33\x74\ \x2a\x0b\xfb\xf4\xa4\x14\xb9\x24\x38\x00\x92\xb3\xd0\x9d\xb3\xa0\ \x6f\x5c\x11\x0f\x2f\x10\x0c\x18\xd0\xa9\xb3\xc0\x6f\xb1\x60\xa5\ \xb2\xa7\x82\x24\x9a\x22\x6d\x0a\x9a\x26\xd9\x36\xff\x91\x11\xd8\ \xa0\x73\xf3\x70\x6f\x40\x18\x84\xcc\x24\x9b\xf1\xd9\xa3\x83\xfa\ \x9a\x64\x70\x8f\x84\x0a\x47\x1c\xb0\x0d\x92\xb0\x0c\xc1\xd0\x00\ \xc5\x7a\x20\x2c\x80\x0d\x7c\xe0\xa8\x86\xc1\x52\xd7\x88\x8d\x37\ \x38\x8a\x2a\x32\x02\x50\x59\x07\x72\xd1\x94\x5c\x91\x2f\xb2\x93\ \x6f\xb3\x80\x98\xde\x4a\xa2\x8c\x82\xa2\xac\x7a\x39\x71\x27\xa7\ \x02\x51\xa7\x82\x35\x67\x68\x83\xa7\x35\xb5\x70\x7e\x77\xab\x1d\ \xa0\x8b\xdc\xd6\x93\x7b\xca\x97\x35\x45\x8b\xba\xf9\xab\x99\x96\ \x05\x5d\xfa\x02\x0d\x00\xa1\xb3\xd0\x00\xfa\x82\x0d\x06\x80\x09\ \x2c\x11\x2b\xd4\xb2\x4f\x62\x37\x76\x51\xda\x63\xbc\xa5\x20\xee\ \x21\xa5\xd6\x5a\x07\x5e\x40\xa2\x5c\x21\xa2\x24\x4a\x0a\x1a\x0b\ \xae\x26\x69\x07\x2a\x5a\x9e\x22\x93\x83\x1b\x11\xab\xeb\x25\x64\ \x84\xb8\x93\x1b\xb8\x9f\xd0\x50\x09\x59\x68\xfe\x53\x95\x70\xa3\ \xbc\xca\x77\x87\x08\xb3\xfa\x0a\x05\x45\x70\x02\x9f\xda\x00\xb3\ \x20\x09\x01\x8b\x20\x03\xaa\x2f\x62\xc5\x02\x4f\x8a\x8d\x9f\xb7\ \x8e\x51\x6a\xb4\x10\x92\x90\x21\x63\xa2\xe2\x69\x07\xa9\xda\x94\ \x75\xa0\xb1\x1b\x6b\x0a\x1e\x6b\x0a\x6e\x8a\x92\xfc\x83\x0d\xe6\ \xfa\x0f\xe8\x8a\x4e\x93\x75\x56\xae\x26\xa8\xaf\x09\xaf\x82\xc8\ \xa3\xbd\x9a\xaf\xc3\x47\x9b\xfa\xa9\xaf\x70\x04\x05\x5c\xfa\x02\ \xb3\xd0\xaf\xc1\xa0\x04\xc7\x1a\x76\x67\x12\xb1\x24\x57\xb4\x9d\ \x18\xb1\x0e\xcb\x5b\xa8\x47\x73\x0b\x22\x9a\x4e\xeb\xb4\x19\x3b\ \xa2\xa9\x6a\xb5\xa1\x39\x8e\xc5\x23\xb2\x1a\x41\xb2\x23\x37\x67\ \xd0\x00\x05\x64\x20\xb9\xf0\xf9\x4f\x29\x9b\x49\xc1\xc7\xb2\x8e\ \xa7\xa3\x9a\x6b\xb9\x2d\x0b\x74\xc0\xc8\xb6\xfe\x84\x38\x3d\x00\ \x0d\xdf\xf8\x02\x08\x62\x00\xb3\x60\x7a\x4f\x99\x2d\x7e\x7b\x34\ \x4e\x8b\x20\x1c\x4b\x8e\x34\x47\x73\x1e\xeb\x1e\x69\x1a\xb5\x1b\ \x7b\xb8\x89\x0b\xb2\x23\x63\x00\x5b\x9b\x7b\x8f\xbb\x02\x92\x7b\ \x6a\x6a\xa5\x93\xf2\xe9\x84\xf5\x88\xb6\xc4\xe7\x07\xf9\x28\x9f\ \xb6\xa9\x56\xc2\x70\x74\x6c\xcb\x3e\x91\xfe\x5b\x44\x50\xa4\x6c\ \x27\x60\x00\xea\x31\x0b\xef\x77\x22\x95\xba\x72\x78\xfb\x76\xc7\ \x89\x0d\x4b\x80\x1e\x2e\xb5\x22\x26\xca\x5b\x56\xab\xaa\xb4\xfb\ \xb4\xf0\xcb\x8a\xbe\x3b\x32\xaf\x8a\x11\xab\x50\x48\x5e\x70\x02\ \x91\x4b\x7c\xdb\x57\x97\x44\x59\xaf\x70\x14\xaf\x9d\xfb\x73\xf1\ \x5a\xaf\x3c\xa9\x56\x83\x27\x98\xfe\x59\x04\x4e\xf8\x8d\x3b\xdb\ \x08\x92\x60\x7a\x08\xc2\x89\x79\x9b\xb7\x51\xfa\xba\xb4\x22\x03\ \xd3\x58\x26\xce\x31\xa2\x54\x6b\xbb\x1e\xa3\x20\x29\xea\xb7\xb5\ \x1b\xbf\xa3\x59\x3c\x4f\x60\x4c\x1b\x41\x0a\x13\x76\x02\xb5\x43\ \x7c\x3b\x1a\xba\x04\xd8\x6d\xc4\x87\x36\x32\x4b\x06\x03\x0c\xbd\ \xde\xd0\xb2\xca\x6b\x90\x92\xdb\x6d\xca\xf6\x8d\x9b\x00\xc1\xb2\ \x20\xb0\x4e\x69\x07\x0b\xbb\x98\x4a\x1b\xbe\x4f\x50\x07\xab\xd0\ \x1c\x65\xc2\xc1\x4c\xa1\x82\x1f\xec\xb7\x84\xbb\xa6\xaa\x68\xa2\ \x29\x4a\xa2\x67\xc9\x3f\x2a\xac\x11\xba\xc7\x3f\x05\x87\x49\x82\ \xf8\xc3\x62\x7b\xaf\x34\x0c\x0d\x18\x78\xc3\x00\xcc\x93\xd5\x5b\ \xb3\x1c\xb0\x6c\xcb\xc6\x07\xee\x77\x98\xb2\x9b\x20\x27\xb2\xa6\ \x4a\x5c\xa9\x5e\x47\x0a\x4b\x20\x0b\xfe\x7f\xec\x1c\xce\xd1\x1c\ \xe9\x4b\x72\x54\x9b\x22\x09\x52\xbb\x65\x59\x92\x6e\x7a\xc2\x6d\ \xc3\xb8\x19\x71\xbf\xfc\xd3\x06\x2e\x07\x00\x50\x50\xb6\xf7\x2a\ \x98\x0a\x8c\xa3\x98\xbc\xab\x9e\xbb\xc9\x6f\xdc\xb6\x50\xa0\x7e\ \x1c\x10\xc7\xed\x47\xc7\xb3\x20\x0b\xcb\x10\xb4\x61\x97\x20\x4e\ \x29\x76\x4c\xec\xb4\x1e\x83\x22\x32\xc0\x14\x82\x8c\x1e\xf9\x42\ \xc1\x1e\x9b\x90\x5c\x6c\x8e\x8c\xdc\xcb\xa2\xd9\x36\x5f\x9c\x11\ \x7c\x80\xb4\x46\x43\x8a\xa1\x55\xc6\xf3\x1a\x8c\x0f\xd7\xbc\xb4\ \x79\xc6\x9e\xdc\x4c\xcf\xeb\x9f\xcb\x68\xb3\x45\xf0\x8d\xa3\xd7\ \x03\xc3\xba\x0c\x03\xfa\xb3\xfa\x42\xcb\xbe\x39\xcb\x8b\xc9\xc4\ \x45\x1b\x8e\x9f\x47\x0a\x4d\xb1\x0a\x09\x8a\xc7\x1e\x4b\x8e\x4d\ \x2c\x03\x8e\xfc\xcb\xe3\x6a\x34\xc0\xcb\x11\x2c\x80\x39\x63\x9c\ \x77\x82\x88\x93\x00\x6c\x90\x30\xbc\x8c\xba\xca\xab\x23\x96\x8c\ \xdd\xf6\x53\x1c\xc0\x49\x1c\x90\x0d\x5a\x7a\x02\xcb\x40\x04\x93\ \x3a\xb4\x49\xcc\x98\xb3\x1c\xce\xb0\xec\xba\x18\x1c\xa5\x29\x72\ \x9c\x2c\x30\xc5\x04\x0a\xb1\x2b\x87\xb8\x8a\xbb\xc8\xed\xfb\xb4\ \xf3\xbb\x24\xf5\xbc\x11\x50\x7a\xfe\x34\xf8\x97\x56\x91\xbb\xcf\ \x3b\xca\xb6\xc1\xe7\x07\x00\x0d\xcd\x1c\xd8\x6d\xd9\x20\x93\xf6\ \x15\xac\xea\x17\x7d\xd0\x50\x04\x0a\x2d\x09\xea\xf1\x02\x44\xf0\ \x94\x4a\xcc\x89\x0d\x5b\xb4\x48\x1c\x95\x44\xbd\x75\x14\xe9\xb7\ \x11\xbb\x98\x54\x6b\x9c\x4d\xb9\x0a\xf9\xa2\x20\xbe\x8c\x96\xad\ \x2a\x9a\x26\xec\xc8\x6c\x42\x61\x5b\x7b\xcf\x6d\xe3\x83\x94\x2b\ \x88\xdb\x47\xd6\xfd\x6c\x90\xf1\x8a\xb6\x04\xdc\x9f\x69\x0b\xca\ \x00\x90\x8c\x6a\x0d\x00\xc1\xba\x0d\xd9\x50\x04\x3d\x50\x04\xcb\ \x78\xb3\x38\xab\x1e\x44\x40\x04\x6d\xa0\x04\x7b\x4c\xce\x12\x3d\ \xce\x8d\xe2\xd4\x15\x8c\xd4\x7a\xbc\xc4\xbc\xe5\x31\xae\x9c\x22\ \x25\x9a\x8a\x8c\x7c\xc2\xf0\x1b\xb5\x57\x8b\x96\x6c\x42\x49\x16\ \xc1\x7f\x2a\x9d\x0d\x69\x75\x6a\x2e\xdd\x78\x6c\xdb\xbc\xcc\x6b\ \x81\x1d\xf0\x4f\x6c\x3d\x62\xc4\xe7\xd3\xf0\xa0\x8b\x71\x6c\x8a\ \xa3\xd7\x0e\x3d\xd0\x0e\x0c\x4c\x41\xd0\x70\x02\xe5\xf0\x02\xe5\ \xa0\x06\x0d\xf0\xd7\x0b\x3b\x6d\x52\x9a\xd4\x48\x4c\xc1\x66\xa6\ \xd8\x2b\xb7\xcb\xd5\x9a\xc7\xb4\x4c\xa2\x27\x92\x2f\x86\x3b\x9a\ \xbf\x5c\xd9\xf2\x9c\xaa\xcd\xfe\x8d\xd5\xa2\x69\x9a\x18\x81\x0d\ \xd9\x18\xa5\xf3\xe0\x70\xbb\xb8\xcf\x01\xbd\x9b\xbd\x3a\x79\xcb\ \x88\x0c\x32\x6d\xb9\xcd\x4c\xdb\x52\x60\x95\x1c\x00\x0d\x5c\x4a\ \x07\x74\x20\x09\xb6\xad\xa5\xcb\x04\x0d\xe0\x60\xdb\x2f\xa0\x06\ \x6d\xe0\xd7\x80\xfd\xba\xbd\x65\xc5\x49\xbd\xd4\x4b\x7b\xc1\xe3\ \xbb\x98\x6b\x7a\x22\x14\xfd\x31\x8e\x9d\x20\x8e\x8d\xc5\xa1\x39\ \xd2\x59\x8d\xb8\x8c\xec\xc7\xcd\x1d\xcc\x53\x04\xc9\x19\x91\xdd\ \x6f\xd9\x7d\xd5\xb7\xcf\x1a\x08\xda\xbf\xea\x71\xd9\x50\xda\x7d\ \xb7\xa7\x67\x3d\xb6\x6f\x7d\x02\xd3\x60\x95\x3d\x40\x07\x2f\x50\ \x02\x7d\x8d\xdf\x55\x09\x0f\xb4\xbd\xd0\xb9\x9d\xdf\x0d\x00\xd8\ \x9e\xb7\x72\xe2\xfb\x79\x4a\x0d\xcb\x5d\x67\x66\x48\x7d\xdc\xae\ \xcc\xd8\xae\xdc\xd8\x0b\xee\xd8\x27\x0a\xb5\x8d\xec\xa6\x19\x7b\ \xbe\x53\x0b\x9a\xf4\xc2\x11\xc6\x9c\x2d\x2b\xed\x78\xf6\x58\x93\ \x34\xdd\xcc\x01\x89\x9f\x6b\xab\x49\x5a\x4e\x41\x1c\x70\x02\x5a\ \x90\xe2\xed\x20\x09\x7d\xdd\x06\x68\xde\x06\x47\xa0\xbf\xdc\x06\ \x0d\xf0\xd0\x0e\x27\xe0\xd7\x69\xbe\xdf\x86\x5d\x91\x8b\x2d\x03\ \x43\xcb\xb0\x6e\x62\xc5\xfe\x9f\xb7\xa6\x4d\xe9\x9b\xb2\xeb\xd8\ \x21\xac\x22\xca\x2d\xb5\x55\x5d\xbb\x4e\x3b\xa2\x13\xfe\xcb\x1a\ \xbb\x04\x86\xde\xc8\xa4\xb0\xb5\xff\x30\xe5\x7b\xce\x03\x03\xf8\ \x73\xc8\x50\x0d\x42\xe3\x87\xca\xe8\xd6\xfa\x68\x7d\x86\x08\xa8\ \xfa\xda\xb2\x8e\xc8\xe2\xb0\x8d\xb3\x68\xae\x04\x6a\xae\x06\xfa\ \x4b\xdb\x0a\x5d\xe3\xa9\x0e\xe0\x7c\x0b\xe4\xff\xad\xb4\xd1\x5a\ \xd4\x06\x4e\xe4\x29\x82\xdc\x0b\xae\xa6\x4d\xa9\xb1\x54\xfd\xe4\ \x24\xea\xe4\x4b\x2e\xdd\x12\xee\xe8\x1e\x6c\xb5\x92\x4e\xe9\x6c\ \x22\x53\x36\x69\x81\xce\xb0\x02\x35\x40\x64\xf2\x3a\xea\x01\xb9\ \x9a\x62\x5b\xe2\xd0\xeb\x81\x64\xc0\x01\xe9\x8d\xe2\xd3\x70\xdf\ \x6d\x30\x02\x6a\xfe\x02\xed\x30\xaf\xd9\x00\xe7\xd3\xd0\x00\x47\ \xa0\xdf\x4a\x6d\xd4\x76\x0e\xdc\xe1\x2b\xe0\x4e\x8d\xc4\xbb\xde\ \x94\x83\xce\xeb\x79\x2c\xd5\x21\x9c\x20\x8d\x0e\xc8\x23\x4a\xb8\ \x7e\x8c\xec\x4f\x2b\xb5\xba\xfb\xc7\x8e\xbe\xc5\xcb\x7e\x34\x18\ \xf0\x74\x1e\xb7\x02\xd1\x3e\x79\x38\x69\xed\x78\x39\xaf\xda\x8e\ \xda\x2c\x6b\x88\x1c\xd0\x0e\xd3\xa0\x05\xb8\x3d\x0f\xf7\xbd\xa1\ \x6a\x00\x93\xdd\xd7\xfe\x0e\xe9\x8e\xb3\x44\xa0\xdb\x7f\x0d\xd1\ \x17\x5d\xdc\xbd\xfd\xe3\x86\x9d\xd4\x76\x4b\xcb\x83\xae\xc7\xf7\ \xfe\xce\x55\xed\xad\xe8\xec\x1c\xb8\xac\xe8\x8d\xbe\xb1\x86\x4b\ \xd9\xff\x0e\xf0\x23\x2a\xe9\x60\x2d\x32\x30\x6a\x93\xc4\x07\x98\ \x2e\x80\x36\x1a\x58\xbd\x01\x59\xed\x5d\x4e\xa8\x2e\x6b\x88\xd9\ \x50\x0e\x1b\x5a\x95\xd3\xa0\x06\x47\xa0\x06\x71\xf1\x03\x92\x5b\ \xdb\xed\xc0\xde\x3f\xc0\xd7\x44\x70\xe3\x4a\x40\xa9\x7b\x2b\xa5\ \x52\xd9\xf2\x02\xce\x89\x8c\xe9\x94\xbb\x4e\xd4\x4a\x9c\xdc\xc9\ \xad\xf3\x52\xbb\x0a\xe7\x7b\xcb\x54\x5d\x07\xe7\x4b\xec\x85\x2b\ \xb5\xb7\xec\xe8\x92\xfe\x0f\x23\xe3\x05\x3e\xa0\xa7\x00\x60\x81\ \xad\xb0\xe9\xc3\x18\xda\xb2\x89\x9f\xa1\x3e\xc3\xe7\x5d\xf5\x36\ \xc5\x01\xd3\xd0\xee\xdf\xae\x06\xf3\xa0\x06\x17\x79\x04\x2b\x7b\ \x02\xfc\x20\x93\x37\x1b\xee\x6a\x70\xe6\x69\xbf\xc4\x47\xcd\xe3\ \x81\x2d\x8a\x17\x0c\x95\x12\xfd\xca\x2a\x82\x22\x09\xf9\xc1\xb0\ \x8f\x22\xfa\xc2\xdc\x88\x29\x9c\x4c\x11\xc8\x82\x2c\xb5\x7f\x9f\ \xf0\x85\x1b\xfc\x7f\x4c\xa7\x98\x6d\x11\x23\x53\x06\x9c\xcd\xed\ \xd0\x20\x94\x4d\xfe\xbf\x87\x34\x4b\xcd\x51\xcf\xed\xae\x79\xf1\ \x8e\xc7\x81\x95\x90\xf1\x64\xd0\x0e\x5d\x2f\x93\xd3\xf0\xfd\x5a\ \xa0\x63\x47\x20\x05\xd9\xa0\x05\x5a\x20\x93\xd0\x50\xe6\x6a\x70\ \xdf\xbb\x9d\xf6\x44\x7b\xd4\x8c\x39\xce\x7b\xfe\xdb\x62\x17\x95\ \x47\x4c\xd8\x9f\x67\xc5\x6b\x9a\xfb\x78\xdf\x14\xe8\xb1\xf7\x00\ \x21\x8b\x97\x2c\x82\x4b\x48\x2d\x59\x22\x6b\x49\x9d\x3a\xa4\x0e\ \x22\x84\x28\x90\xd7\xc4\x7f\x15\x2d\x5e\xc4\x98\x51\x63\x1e\x8e\ \x1d\x3d\xe6\xc1\x31\xef\x03\x19\x00\x64\x4c\x86\x59\xe1\x2c\x1b\ \xb2\x95\x26\x01\xbc\x84\x19\x53\x66\x4c\x32\x1d\xa0\x41\xeb\xe0\ \xd2\xe4\x4e\x92\x30\x7b\xce\x94\x49\x52\xa8\xc9\x4a\xd0\x2a\x91\ \xa9\xd4\x6e\x9a\x96\x13\xed\xb2\x49\xf1\x31\xad\xca\x88\x23\x52\ \x9e\xfa\xc8\x56\xf4\x44\xb9\x79\x27\x5e\xa8\x69\xa3\x44\xac\x0c\ \x3b\x4f\xf2\x3c\x79\x62\xc7\x0e\x59\xb5\x65\x3f\x72\x44\xdb\x76\ \xad\x5a\x19\x32\x94\xd4\x55\x9b\x56\x2f\xda\xb4\x6a\xeb\xc8\xa8\ \xc3\x82\x05\xa9\x12\xa4\x56\x1d\x5e\x05\x71\x49\x62\x82\x7c\x26\ \x2a\x4c\x58\xd0\xe0\x43\xc9\x04\x05\xa6\xd2\x98\x59\xf3\xc5\xb7\ \x1f\xbd\xf8\xfe\x08\xf3\x61\xe4\xc9\x6c\xd9\xfc\x64\xab\x01\x4d\ \x28\x50\xd6\x2f\xc9\x40\x33\xad\x7a\x67\x49\x9e\x34\x5b\xfb\xe4\ \x69\xb2\x43\x25\x3f\x95\x6c\x2a\xd5\x72\x4d\x4a\x3b\x29\x50\x8f\ \x54\x39\xd2\x0e\xda\x69\x64\x37\xc1\x4d\x9b\x76\x62\xda\x0b\x22\ \x61\xef\xba\x3d\x4b\x97\xad\xd9\xb7\x7c\xfb\xb6\xad\x1b\x9e\xac\ \x77\xf2\xa6\xb4\x0b\x16\x6c\xf8\x70\xe4\x65\x04\x57\x19\x4e\xf8\ \xd8\xf2\x7c\x83\x91\xe7\x13\xa4\xb8\x59\x7f\xc6\xce\x1e\xcb\x64\ \x83\x0d\x99\xd1\xc2\x68\x4e\x98\x9b\xc2\x70\xe9\x36\xa0\x3e\x38\ \x4d\xb9\x9c\x68\x4b\x50\x41\xa0\x72\x23\xca\x0f\x3f\xaa\xf1\xa3\ \x9d\x76\xae\xe1\x67\x9a\x6b\xb2\x21\x4e\x8b\x11\xaa\xd0\x22\x1b\ \x9e\x2a\xf9\x00\xc4\xa6\xa4\x53\x83\x08\x22\xee\x22\x6f\x2d\xbc\ \xb8\xeb\x8c\x2f\xed\x64\x14\x8f\xbc\xb3\xce\xea\xeb\x2f\x19\xd0\ \x63\x61\x95\x12\x0e\x33\x40\x96\x59\xf8\x68\x44\x21\xf8\xf0\x9b\ \x68\x20\xfc\x24\x43\xe8\x3e\x82\x30\xdb\xaf\xca\x8a\x78\xe9\x0f\ \xa4\x79\x84\x69\x2e\x9b\xd0\x4c\xfa\x80\x25\x01\x7b\xfa\x49\x42\ \xda\xa0\x71\x0a\x27\x0a\xcb\x34\xd3\x35\x32\xbc\x31\x09\xce\x0e\ \x2c\xec\xfe\xcd\x0f\x29\x5c\x90\xc2\x0c\x7e\xae\xa9\x46\x8a\x32\ \xce\x3a\xc2\x8f\xd9\x20\xbc\xa9\x9d\xad\xa8\x1b\xcf\xc6\xba\xae\ \xcb\xd2\x3b\xba\x70\x0c\x2f\xaf\x8e\xcc\xb2\x31\xad\xba\x58\xf8\ \x51\xb0\xf5\xda\xe3\x43\x96\x24\x65\x59\xc5\xb2\x4f\x3d\x95\xc5\ \xb1\x46\x78\xf9\xb4\x3e\x81\x56\x15\xc8\x4a\x2b\x79\xa1\xf1\x23\ \x1c\x7c\xb8\x09\x19\x64\x10\xdc\xc9\x56\xd5\x7c\x6a\xd3\xb5\x0f\ \xa0\xa9\xa6\x25\x0a\x7b\xa5\xe9\xcd\x9a\xe0\xf4\x66\xce\x76\xe8\ \xb4\xb0\x1a\x33\xb4\x28\xe3\xce\x23\x38\xaa\x42\x8a\x04\x57\x43\ \x6a\x45\x70\xd4\x60\x0b\x3c\xbb\x60\x8c\xd5\x23\x47\x71\x24\xb7\ \x2c\x4a\x79\x8c\x4b\xbb\x4c\xd1\x23\xd2\xc8\x46\x66\x31\x32\xde\ \x51\x3f\x45\x75\xa2\x53\x9d\x8c\x52\x22\x27\x79\x71\x75\x3f\x58\ \x6b\x3c\xc2\x87\xd3\x0c\xec\x60\xb4\xd7\x6a\xf8\xa0\x24\x62\xdd\ \xb4\x09\x1a\x64\x72\x1a\x76\xe1\x13\x73\xa2\xb8\x59\x64\xfc\xa8\ \xc1\xd6\x6b\xca\x28\xa3\x1a\x64\xb4\xc0\x21\x0f\x2f\xae\x99\x0d\ \xdb\x4a\xb2\x81\xc7\x0f\x75\xca\xb9\x8b\xac\xf0\xc6\xc2\xae\x3b\ \x1e\xd5\x9d\x4b\xae\x73\x63\xb4\xa3\x8e\xb5\x30\xe5\x99\x85\x21\ \x0d\xfe\x30\x80\x53\x78\x8f\xf4\x94\x68\x82\x1a\x39\x35\x0b\x54\ \x25\x82\x92\x69\xc7\xfa\xd5\xef\xdf\xb7\x66\xbd\x49\x0c\x68\x0c\ \xae\xe9\xa6\xdc\x88\x35\xe9\x62\x87\xd7\x64\xd3\x4c\x63\x8d\x4d\ \x36\xd9\x0c\xa5\xa0\xb3\x86\x1a\xa4\xe0\x87\x1f\x41\xfd\x98\x16\ \x07\x7e\x8e\x1a\xb6\x92\xa2\x38\x68\xa7\x9c\x36\xbe\x5d\x14\xe6\ \x70\x27\x4d\x57\x3c\xb9\xf2\xba\xf9\xbb\x9c\xc5\x03\x32\xc8\x60\ \x80\x5e\x66\x16\x03\x88\x7e\x17\x49\xa4\x3b\xf5\x94\x17\xa5\xed\ \x3d\x1a\x32\xa6\xf3\x83\x3a\x33\xa9\x3f\xaa\xa2\x95\xab\x6f\x82\ \x58\xb7\x87\x07\x0d\xbb\x35\x32\x58\xfa\x1a\xec\x85\x69\x83\x73\ \xa7\x64\x9b\xb1\xd3\x85\x6a\x6e\xb7\x50\x0c\x7e\xcc\x10\xb4\x03\ \x7e\xf0\xf1\xc2\x8c\xd2\x73\x2b\xaa\x12\xbc\xf5\xb6\x4e\x2c\xe5\ \x65\xf8\x1b\x70\x4b\x23\xed\xd6\x5c\x9c\xc5\x03\x4c\xb0\x75\x09\ \x5b\x1c\x68\xa0\xdd\x85\x1c\x69\xef\x91\xb4\xbc\x5e\x52\x2b\xd3\ \xb7\x73\xcd\x06\x7a\xeb\x0f\x5a\x75\x13\x2d\x37\x83\x15\x26\xd6\ \xa6\xd3\x86\xaf\xed\xf5\xb1\xe3\x24\xa3\x85\x0b\xa5\x70\xc6\x05\ \xdb\x31\x14\xc3\x35\x78\x57\x13\x90\xfd\xc1\x5a\x6b\xf2\x06\x3c\ \xfe\xaa\xb1\x2c\x70\x94\xa3\x45\x6d\x08\x4b\x1b\xaa\x03\xa3\xfe\ \x50\xca\x5b\x73\xd9\x8b\xf4\xbe\xe3\x32\xc0\x28\xa1\x67\x82\x29\ \x41\x09\x16\xb7\x0a\x03\xac\x22\x7b\x7c\x80\x97\xf7\xbe\x97\x24\ \x16\x5e\x2e\x49\xa8\xea\x94\x7d\x38\x67\xbe\x8c\x60\x49\x5c\x18\ \x10\x06\x81\x44\x53\x30\xb0\xa5\x4e\x41\x35\x31\xcd\x98\x20\x54\ \xbf\x5e\xc9\xce\x88\x95\xa8\x41\x9f\x84\xe3\x3f\x31\x6c\x41\x0c\ \xce\xe8\x5f\x33\x6a\xc0\x0f\x1e\xf0\x03\x19\xb1\xa3\x10\x6f\x34\ \x04\x1d\x07\x42\x50\x82\x2e\x52\x42\xcc\x26\x35\x33\xf0\xd4\x6c\ \x5c\x83\xa3\x1e\xa6\xd6\xe5\xb3\x60\x88\xd0\x00\x8b\x0b\x06\x09\ \x1f\xa7\xc2\xc9\xa9\x90\x54\x8d\xc8\xc2\xa9\x90\x26\x90\x24\x45\ \xe6\x54\x34\xf4\xdc\x47\xd4\x17\x1a\x87\x39\x0c\x6b\x44\xe4\xda\ \xea\xb2\x51\x3a\xda\x28\xcc\x87\xaa\x33\x22\xb2\x2e\x56\x0d\x17\ \x40\xb1\x7f\x2e\x70\xe2\x13\xcd\xd0\xbf\xfe\xf9\x21\x27\x58\x24\ \x5e\x25\xa4\x50\x0e\x2d\x94\xc3\x81\x2e\x52\x43\x8b\x94\xd0\xbc\ \x33\x0e\x0e\x2d\x33\xeb\x56\x1a\x33\xb5\xae\x12\xb0\x20\x18\xd9\ \x2b\x61\xf6\x96\x81\xc2\x77\xa9\x70\x16\xbe\xf4\x1e\x2f\xb6\xfe\ \x51\x2f\xf9\x34\x46\x16\x54\x02\xe4\x45\xf8\xf0\x11\x0c\xac\x20\ \x34\xa2\x69\x0e\x32\x5c\x27\xb1\xae\x8d\xa9\x64\x83\x2a\x22\x4f\ \x90\x95\xbf\x8b\xf9\xa1\x92\x50\x74\x81\x18\xc4\x59\x49\x50\x5c\ \xc3\x05\x35\xe8\x40\x3a\xb7\x09\xca\x9d\x88\xf2\x07\xa5\x54\x83\ \x29\x4d\x19\x96\x70\xc5\xa8\x2f\xf7\xa4\x54\xe0\xa8\x27\x16\x16\ \x78\x30\x71\x22\x6c\x00\x2e\x0d\x10\x50\xc6\xcd\xe2\x48\xbf\xec\ \xe5\x2f\x8b\xe6\xbd\xca\xe9\x31\x0b\x79\xbc\x0f\x32\x93\x79\x25\ \x8f\x78\x01\x14\xd9\xc8\x61\xd7\xae\x36\xac\x47\x42\xb2\x26\xa8\ \xd3\x49\x50\x24\xa4\x4d\xb2\x75\x00\x19\x35\x70\xa2\x25\xa1\x28\ \x06\xff\x39\xc3\x0c\xd7\x10\x03\xb2\x3a\xd0\x8c\x0e\xc4\x6e\x9d\ \x6f\xf2\x46\x25\x7e\x60\xca\x69\x94\x03\x3a\x60\x11\x23\xba\x6c\ \x46\x9e\x7c\x3e\xef\x2e\x47\xf5\x67\xe2\x82\xc1\x82\x06\xb8\x51\ \x7b\x4f\x6d\x9c\x91\x7e\x39\x55\x14\x2e\x74\x8f\x74\xbc\x1c\xaa\ \x46\xc5\xaf\x89\x5a\xc4\x86\x1c\xc1\x40\x36\x40\x90\x8d\x84\x75\ \xed\x90\xf0\xa3\xe6\x35\x1d\xd9\xd1\x09\xe5\x66\x9b\x2d\x40\x86\ \x14\x6b\xc0\x52\x28\x82\xc2\x92\xa0\x30\x83\x5d\x6b\xe0\xfe\x0d\ \x38\xe9\xaf\x12\x7c\x25\x1b\xd9\xbc\x91\xa1\x52\x4e\xa3\x1d\xe0\ \xf8\x81\x1a\x56\x29\xae\x74\xb5\x85\x2f\x1f\xb1\xd1\x5a\x94\xc7\ \x4f\x20\xd5\xb2\x01\x4c\x0d\x46\x40\x1b\xf0\xd4\xcd\x6e\xaf\x71\ \x9f\x35\xa8\x41\xdf\x35\x55\x3a\x06\x33\x8f\x7a\xb4\x0c\x57\xbb\ \xfa\x0f\x5e\x94\x80\x23\x38\x00\x05\x34\xc2\xf0\x25\x30\x45\xec\ \x75\x43\x24\x93\x6d\x47\x7a\x3f\xfc\xc1\xd5\x0f\x27\xdd\x42\x26\ \x5d\x7a\x0d\xbc\xea\xe9\xa5\x5b\xe0\xab\xd9\x7e\x9b\xdc\x75\xf2\ \xf5\x42\x3f\x30\x6c\x3b\xe0\x31\x8d\x36\xd8\x81\xb1\x8d\x95\xde\ \x75\xbd\xc5\x4f\x0f\x7a\x30\x84\x4a\x68\xaa\x66\x5f\x90\xbd\xcd\ \x6e\xb6\x04\x4f\x45\xef\x2c\x1a\x37\xb4\x84\xba\x4b\x85\xf5\xd2\ \x23\xbd\x56\x6b\x11\x4c\xe4\x01\x1f\x65\x70\x26\x6d\xd7\x84\xd6\ \xb4\xae\xc6\x4d\xd8\x14\xdb\x36\xf1\xa7\xdc\x1a\x08\x43\x6d\x73\ \x7d\xa2\x5d\x41\xd1\x36\xbc\x9e\x33\x59\xfa\xc3\x50\x0b\x98\xcb\ \x5c\x08\x13\xa7\x1d\x49\xf9\x41\x1b\xb8\x73\xc6\x44\xd5\x53\x9f\ \xfc\x2c\x81\x3f\x43\x7c\x59\x12\x37\xe0\x05\x06\x78\xc1\x32\x80\ \xd6\x80\xa6\xc6\xb1\x01\x72\x24\xe1\x78\x17\xa7\x5e\xfe\x83\x7a\ \x0a\x69\xa4\xb5\x71\x7c\x4f\x35\x3e\xd5\x76\x55\x16\x4f\x08\x49\ \x0e\x11\x54\x92\xf6\x0d\xf1\xb6\xbc\xba\x26\x47\x03\x3c\x3c\x99\ \xd2\xee\xb7\x35\x90\xeb\x16\x2a\x69\x86\xbc\xe2\xd5\xae\xce\xa8\ \x41\x0b\xf4\x67\xbb\xbd\x4e\xd8\xb9\x94\x44\x9b\xdd\x2a\x51\x0e\ \x2f\xa0\xcb\x70\xdb\x91\xd9\xa3\xfa\xe6\x33\x25\x84\xb8\x04\x4d\ \x6d\xc3\x9b\x83\xf1\x02\xf5\x06\x6d\xc5\x22\xc4\x73\x1c\x4d\x78\ \x4b\x3e\x07\xc3\x71\xa1\x25\x2d\xd1\x8e\xb4\xc2\xab\x3e\x6d\xbe\ \xf5\x9d\xd5\x6c\x87\x4c\xe4\x92\xd9\x86\x6b\x8e\x5c\x2b\xa4\xdb\ \xf4\x26\x75\xc6\x29\x9d\xe9\xe4\xcd\x93\x9b\x21\xd7\x27\x3a\x03\ \xaf\xbb\xa3\xb2\x19\xce\x49\x3b\x3c\x55\xa3\x19\x12\x66\x6e\x33\ \xfa\xc4\xbf\xde\x24\x45\x0d\xd6\xcd\x4e\xcd\x08\x57\xa3\xbe\x88\ \x47\x2c\x25\x88\x33\x11\x70\xfd\x66\x16\xb3\xf8\xc4\x29\x46\x71\ \x8b\x7d\x86\x67\x3c\x93\xe2\x96\xb6\xbc\xe5\x9f\xa7\x3a\xd5\x78\ \x79\xaa\x53\xc1\x7c\x61\x8f\x27\xfa\xe3\x59\x09\x83\x0c\x09\xa3\ \xcd\x48\x20\x24\x52\xb1\x39\x3a\xd2\xfe\x1d\x69\xb2\x1e\xc6\xd7\ \xdd\x34\xa3\x12\x70\x55\x5b\x5c\x37\x2d\x45\xba\xfe\xba\x94\x1f\ \xa1\xd8\x5d\xdb\xce\xe9\xcd\x97\x9a\xba\x19\xc9\xdd\x32\x95\xaf\ \xe1\x87\x9c\xb6\xe3\x08\xe6\x82\x14\xf3\x2a\x18\x17\x5b\x2b\x2f\ \x84\x71\x0e\x2f\x8b\x31\x7b\x4b\x14\x2f\x0e\xcf\x3e\x13\xcc\x52\ \x13\x37\x18\x3e\x3f\x4e\xaa\xa3\xed\x94\x42\xaf\x1a\xcc\x19\x4e\ \x94\x17\x76\xf8\x83\x2d\x36\xba\x93\xf6\x45\xc8\xdb\x13\x92\x34\ \xca\x4f\xae\xba\x64\xed\xe6\xd2\x74\x42\x46\x0b\x76\x93\xb1\x4d\ \x43\x59\x6d\x74\x5d\xf0\xbb\xdf\x1d\x0a\x67\x58\xc8\x05\x54\xc6\ \x24\x94\x6b\xee\xac\xb6\x5d\x63\xaf\x7e\xc8\x70\x59\x64\x14\x16\ \xb2\x54\x30\xd6\x7d\xbb\x75\x09\x74\x8d\xeb\x06\xc4\x99\xa9\x6d\ \x48\xf8\x2d\xc3\x0b\x71\x5b\x02\x29\x30\x81\x49\x8f\xb1\x81\x06\ \xe8\xd1\xb2\x17\xa1\x48\xab\x97\xd2\xe6\x5b\x11\x59\xe0\x97\xb6\ \xa2\x81\xbb\xc9\x79\x75\xe4\xb9\xbb\x66\xd2\x97\x9e\x69\x9d\x30\ \xd4\x9b\x99\xae\x5b\x8a\x51\xa6\xab\x9e\xe0\x7d\x84\x32\x98\x61\ \x0b\xde\xe4\x87\x16\xf8\x51\x8d\xc3\xab\x0d\xf1\x1c\xbb\x86\xb9\ \x5d\xa0\x86\x11\x54\x5e\x06\x23\x80\xe0\x08\x82\x0a\x38\x19\x19\ \x3c\x84\x53\x27\x02\x8b\xdf\x4c\xd9\xee\x4e\xfe\x3c\xe2\xe9\x61\ \x01\x43\x52\xbf\xfa\xc0\x18\x3b\x7b\x29\x44\x68\x0a\x91\x94\xe3\ \x53\x0d\x53\xda\xd3\xe6\x87\x30\xe2\xfe\x81\xd0\xd0\x76\x26\xe0\ \x3e\x32\xb6\xf8\xcb\xf2\x9a\xce\xa9\x9b\x74\x5a\xb7\x1f\xd6\xad\ \xb6\x9a\x07\xd7\x05\x39\x2f\x03\x0f\xaa\xc0\x0f\xdb\xfd\x9c\x63\ \xa2\xde\xbb\xb3\xca\x50\x85\x32\x18\x7d\x0b\x5a\xf8\x03\x55\xda\ \x80\x79\x08\x6e\x1e\x2e\x46\x6d\xb3\xae\xd5\x2f\x75\x6c\xe8\xba\ \x0d\xfd\xec\xe7\x51\x7f\x94\x54\xd3\x07\x06\x30\xf7\x07\x92\xeb\ \x1f\x17\x68\x14\xa6\xf0\xbd\x7a\xec\xb8\x64\x5a\x86\x79\xc0\x95\ \x6b\x83\xbb\x92\x83\x34\xe0\x0b\xbe\x46\x92\xbb\xb6\x92\xa9\x4c\ \xbb\x10\x66\xb1\x90\xbf\x63\x3e\xc0\x73\x01\x01\xda\x3e\xee\x33\ \x27\x0e\xa9\x82\x3f\xe8\x3e\xff\xa9\xa4\xed\xc3\x01\x1e\xc0\x24\ \x33\xf8\x03\xe4\xd0\x02\x35\x38\x82\x23\x18\xbf\xe6\x81\xa5\x6f\ \x71\x11\xf5\x6b\xbf\x10\x0a\xb1\xee\x5a\x1e\x59\xea\xa7\x35\xb2\ \xbf\xd5\xfb\x91\xaf\x1b\x0c\xb1\x63\x2f\x3a\x0a\xad\xff\xbb\x97\ \xb5\x5b\x06\x7e\x08\x03\xdc\x42\x1d\xf8\x69\xc0\x05\xd4\x09\xb6\ \xa2\x34\xdf\x70\x32\x09\xdc\x3b\x8c\xb1\xfe\xb9\x0a\x54\x9b\x94\ \x72\x06\x2a\xaa\x82\xe9\xbb\x06\x0e\x29\x03\x1c\x98\xbe\x97\xda\ \xc2\x2a\xc0\x01\x31\xbc\xc0\x2a\xc0\x07\x0f\x5c\x0a\x2d\x38\x02\ \x81\xa3\xb5\x97\x51\x02\x17\x69\xbf\xf6\x53\xbf\x36\x9b\xac\x96\ \xb9\x94\xf0\x50\xa3\x4b\x59\x3d\x9e\x01\x3b\xd5\x5b\x17\x86\xdb\ \xbf\x5f\xea\x81\x84\x62\x21\xef\xd9\x06\xb4\xbb\x3d\x40\x92\x85\ \x50\x28\xab\xfa\x01\x37\xb6\xba\xad\xa1\x18\xbe\xa0\xa8\x09\x93\ \x82\x40\x2a\x6c\x07\xdc\x39\xb0\x4f\x44\xa9\xe0\xa2\xa4\x8d\xe9\ \xc2\x32\x68\x1b\x2a\xc2\x01\x7c\xe0\xbe\xb6\x29\x83\x3f\xe0\x88\ \x32\x70\x86\x3f\x79\x02\x2f\x5c\x8a\x11\x60\x25\xf4\x8b\xc1\x5c\ \xa4\x41\x83\xe3\xa7\x97\xa1\x9e\x1f\xd9\xc3\xc4\x21\x05\x20\xa9\ \x9e\xd4\xd3\xbf\xb1\x33\xc4\x43\x44\x44\x3a\x92\x88\xb5\xfb\x87\ \x13\x80\x06\x23\x0b\x29\xe1\xa3\x3b\xd6\x20\x93\x4b\x74\x13\x39\ \x99\x42\x66\xc9\xb4\x3e\xc1\x9d\x4c\x12\x83\x2c\x0c\x45\x27\xb2\ \xbe\x52\xe4\x18\x35\x04\x89\x3f\xe0\x01\x1e\x70\xc5\x57\xfc\x13\ \x90\xe0\x01\x33\xc8\x13\x5b\x84\x2c\x82\xfb\x96\x39\x54\xbf\xf5\ \xcb\xc3\xe5\x59\x1e\x35\xea\x99\x60\xfe\x9c\xb8\xa5\x22\x05\xb0\ \x5b\x3d\xfd\x73\x9c\x39\x6a\x04\x65\x3c\x3b\xef\x41\xa8\x00\x4c\ \x26\x49\xa8\x01\x8e\x12\x3e\x4a\x74\xc2\x26\x1c\xb0\x74\x92\x40\ \x4e\xdc\xbb\x2d\xa0\xa4\x70\xaa\x06\x31\xb8\x9d\xe0\x72\x22\x30\ \xec\xc2\x3f\x30\xc9\x8e\xc0\x87\x33\x0c\x19\xfb\x32\x43\x8e\xf0\ \xc0\xdd\xa9\x82\x58\x51\x14\xe5\xf9\x22\x3c\x7c\x91\x7d\xbc\xc7\ \xd2\x13\x0c\x9d\x84\xbf\x0f\xea\x99\x61\x44\x0f\xa0\x44\x0f\x42\ \xfc\xb3\x84\x4c\x48\xd2\xb2\xa3\xca\x69\x44\x40\x9a\x05\x6b\x73\ \x9d\x6b\xac\xc6\x1f\x6a\xa4\xdf\xa3\x34\x4a\xcb\x48\x66\xe9\xc4\ \x8d\x1c\x45\x10\x84\x22\x91\xf4\x1f\x01\x0a\x85\x3f\x48\x45\x7c\ \xf8\x08\xb2\xe4\x88\x94\xec\x08\x75\x2c\x03\x2f\x90\xc9\x27\xb8\ \x3c\x2f\x92\xa0\x7d\xac\x41\xf9\x93\x43\x1a\x74\x33\xf4\xa8\xa5\ \x5a\x32\x3d\x61\x1c\x8c\xf4\x68\x3d\x20\xdc\x3f\xa4\x39\x44\x84\ \x52\x46\x86\x6a\x92\xa5\x34\x1f\x88\xec\xa1\x94\x8b\x4a\x6b\x9c\ \x4a\xaa\xf4\x06\x64\xa8\x04\x5b\xa1\x42\xdc\xb9\x9d\xcb\xf4\x03\ \x8e\x6c\x29\x67\xf8\xc2\x4d\xaa\x3e\x4b\xda\x18\xb3\xcc\x12\x59\ \xf1\x02\xd1\x44\x0b\x2f\x78\x4b\xfe\x09\x52\xcd\x7d\xa4\xcb\x45\ \xf9\x96\x10\x6a\x80\xd0\x6b\xaa\x36\x1b\xb6\xbc\xdc\x4b\xd3\x13\ \xca\x88\x63\x38\xd1\x9a\x85\x1e\x20\xad\x43\x5c\xc4\xf7\x6a\x92\ \xb5\xeb\x81\x02\x4c\xb2\xc6\x14\x1b\x05\xcc\x46\x32\x20\x35\xcb\ \x6c\x96\x0b\xc9\xca\xdb\xc9\xca\x0b\xb1\x1d\x28\x32\xae\x4d\x22\ \x43\xce\x0c\x85\x32\x1b\xcd\xb2\xe4\x0e\xe0\x39\xc1\x15\x54\x41\ \xb0\xb0\x8e\x48\x51\x17\xa8\x13\x0b\xf5\x5b\x86\xa6\xda\xc5\xbc\ \xa4\x41\x10\xe2\x3a\xbd\x4c\x8f\xc2\x10\x21\x81\xa4\xb8\x19\x23\ \xcc\x77\xd1\x87\x46\xd8\x4f\x86\xe2\x38\xc4\xec\x1c\x5e\xe0\x00\ \x25\x0c\x29\xe4\x54\x9d\xc7\x94\x89\xc8\x8c\x2b\x64\xc0\x13\x67\ \x90\x82\xcb\x84\x50\x08\xa5\xce\x90\x74\x3e\xce\x3c\xc5\x0b\x15\ \x3c\x74\xec\xce\xce\xf0\x40\x2d\xf0\x50\x37\x1c\xbf\x11\xd8\x8e\ \xc8\xea\xbc\x5b\x5b\xbf\xd0\x23\x82\x19\x0c\xa1\xda\xb4\xcb\xf8\ \x84\x38\x21\x21\x8c\xf7\x28\x8c\xae\x73\x3d\x3f\x9b\xa3\x1e\xf0\ \x4d\x15\x0a\xce\x85\x6c\xc6\xb5\xc3\xad\x6f\x33\xd0\xb6\x2a\x50\ \x99\x98\x93\xbd\xbb\xc0\x6b\xb8\xa4\x08\x55\xd2\x76\xf0\x1f\x08\ \x25\x27\x3d\x59\xb0\xe8\x5b\xfe\x47\x33\x14\xcd\x0d\x4d\xcb\xc2\ \xe3\x87\x32\x38\x82\x11\xf0\x02\x73\xd9\x11\x45\xb9\x47\x5d\x74\ \x11\xa9\x93\xba\xcd\x0a\x3d\x6c\x08\x2f\x34\xc5\x86\xf7\xb4\xcb\ \x21\x19\x12\x13\x12\x21\x64\x3b\xbd\x64\x0b\xad\x43\xec\x81\xfd\ \xd4\x87\xe0\xec\xcf\xab\x72\x48\x40\xe2\x00\x25\x6b\x42\x03\x1d\ \x0a\x8b\x24\x83\x1a\xb8\x90\xad\x04\xc1\x26\xbd\x1d\x3c\x79\xd0\ \x43\xad\xbe\x44\xb5\xce\x4d\x7a\xb7\x56\xb4\x2f\x2b\x4d\x1f\x53\ \xd4\x52\xb6\xac\x47\xb9\x98\xac\x18\xc4\x06\x6c\xa0\x03\x50\xb5\ \x43\xd9\x5c\x86\x52\x55\x87\x52\xc5\x06\x03\xc0\x86\x65\x58\x53\ \x1a\x7c\xb1\x12\x62\x9c\x12\x7a\xb1\x63\xeb\x3a\xa2\xcc\xcf\x45\ \xc4\x55\x86\xdc\x23\x26\xf1\xd1\x4c\x5c\x42\x8a\xa4\xbb\xda\xf8\ \x09\x6d\x32\xa9\x0b\x01\xa7\x8e\xf4\xc8\x45\x35\xa7\x45\xbd\x13\ \x4a\x02\xa7\x29\x83\x52\x3d\x69\xc5\x95\xb4\xd4\xb7\x48\x49\x1a\ \x01\x53\x5b\xcb\x45\x22\xa0\x83\x6e\xc5\x86\x72\x58\x86\x72\x68\ \xbf\xd8\x4c\xd1\x65\x50\x87\x73\x2d\xd5\x74\x65\xd5\x54\x65\x57\ \x55\x55\x55\x12\xd2\x2c\x80\x0a\x86\x36\xe0\x33\x3a\x23\xbb\x1e\ \xd8\x86\x7c\xcd\x53\x86\xfe\x1c\x1a\x78\xe9\x53\xf3\x19\x50\x04\ \xb4\x3b\x60\x0d\x3e\x00\xc3\x0d\x71\xdb\x1f\xae\xbc\x24\x8f\x7c\ \xa2\xff\xe9\xc8\x8f\xfc\x26\xeb\xbc\x50\x8e\x69\xc7\x6a\xed\x0e\ \xf0\xf4\x82\x8c\x25\x3f\x08\xea\x54\x3a\xe4\xd6\x4f\xfd\x58\x70\ \x55\x83\x65\x40\xd1\x06\x30\x57\x14\xc2\x84\x65\xc0\x04\x49\xc0\ \x04\xf5\x92\x85\x4f\x75\x57\x34\x35\x80\x10\x6a\xa3\xcc\xba\xac\ \x60\xa8\x51\x64\x24\xad\x6d\xc0\xd7\x7c\xbd\xd3\x1b\x3b\x48\x03\ \xf8\xd7\xce\x81\x82\xad\xb1\xbb\x20\x3d\xd0\xd4\x91\x9d\x24\xaa\ \x24\xae\x0c\x27\x71\x62\xbc\x45\x5d\x54\x87\x85\x54\x2a\x3b\xc5\ \xe8\x4b\x45\x8b\x9d\x1a\xee\x5b\x41\xe4\x68\x03\x16\x84\xa0\xea\ \x88\xc1\x50\xa5\x83\x14\x2d\x07\x6e\x0d\xd9\x70\x95\x84\x65\x48\ \x31\x73\x55\x87\x96\x55\x07\x14\xe2\x83\x96\x4d\x59\x56\x5d\x05\ \x6c\x58\x85\x57\xcd\xb3\xfa\x44\xb6\xdd\x2c\xc4\x84\xb4\xd3\x84\ \xe4\xd9\xc1\xd4\x9e\x60\x18\x5a\xa8\x49\x85\x6d\x5b\x39\xa4\xc5\ \x0d\xa5\xb5\xca\x0b\xec\x1f\x64\x75\xbe\x70\x12\xc5\xcb\xfc\x1f\ \xcd\xe4\x4a\x2a\xfb\xb4\x56\xac\x52\xad\x5d\x43\x1e\xe0\x98\x15\ \x5c\xc1\xaf\x15\x5b\xfe\x4f\xed\xd6\x6e\x15\x57\xb2\x0d\xd7\xd5\ \xa5\x03\x49\xa0\x03\x73\x5d\x59\x3e\x90\xdd\xd9\x9d\xdb\x59\xf8\ \xd4\x56\x15\x12\x21\xc9\x33\x9f\x09\xa8\x79\xad\x38\xd1\x92\x84\ \x77\xc1\x51\x7d\xb0\x53\x1c\x1d\xcc\x78\xb8\xa5\xc3\x85\x1a\x05\ \x24\xd8\x6a\x54\xce\x01\x43\x06\x44\x0d\x49\x94\x62\xa9\x26\xa2\ \x5e\x8e\xa4\xa4\xc3\xc3\x5e\xcd\x84\x22\x24\x95\xd6\x8a\xd5\x5a\ \x97\xe4\x5a\xd1\x25\xdd\x2f\x72\x11\x53\xa2\x83\x72\x38\xdd\xf5\ \x7d\x5d\xb2\x3d\xd7\x73\xed\x01\x3e\xe8\x81\x4d\xd8\x04\x75\xd8\ \x04\x3e\x78\x5b\x95\x05\x9a\xdc\x75\x55\x21\xa9\xd9\x9b\xed\x5b\ \x1b\x15\xad\xe2\x1d\x5e\xc0\xbd\x53\xc7\xc1\xd9\x56\x59\x3b\xb9\ \x53\x4e\xc6\x65\xc0\xa0\x68\xb9\x62\xad\x86\x25\x6a\xbc\x9b\x73\ \x86\x26\x12\x49\x8c\xe1\x48\x91\xe4\x60\x96\xda\x4c\x33\x08\xcb\ \xce\xad\xd6\x35\xe4\x18\x2d\x25\xdf\x23\x20\x82\x16\x51\x5f\xb4\ \xed\xd6\xf7\x75\xe1\xd7\x05\xd7\xd7\x55\x87\x1e\x28\x82\x2c\x28\ \x82\x54\xc0\xdf\xd9\x55\x07\x59\x60\x55\xbb\xe4\x5f\x57\x85\x38\ \x5a\xe5\xb3\x21\x0c\xdc\xc1\xbc\x53\x7c\xf5\x4d\x03\x40\x5e\x52\ \x00\xd0\xce\x61\xfe\x60\x07\xae\x3b\x4b\x0c\x8a\x0e\x30\xd4\x93\ \xa2\xce\x26\xad\xe0\xea\xdd\x82\xb9\x6a\x3c\x51\x64\x96\xca\x0d\ \x3c\x7e\x10\xcb\xf0\xf5\x08\x1c\x20\xbc\x15\x4c\xc1\x23\x68\x91\ \x54\x52\x5f\x6f\x4d\xd1\x16\xf6\x84\x17\x6e\xdf\x65\xa0\x83\x4d\ \x18\x50\x28\xe0\x80\x2c\x98\x5b\x95\xc5\x84\x94\x6d\xd5\x36\x0d\ \x21\x52\x08\xa8\xfa\xbc\xac\x5a\xdd\xcd\x46\x08\xde\x9e\x2d\x60\ \x24\xd6\x87\x59\xb8\xa5\x58\x30\x5c\x67\x94\x62\xc5\x45\x5a\xff\ \x42\x24\xda\x28\x52\x3a\x79\x58\xdb\xb1\x5e\x71\xc2\x60\x90\x3c\ \x3c\x3a\xd1\x5e\xcc\xe5\x4c\x77\x3b\xc7\x3f\xd0\x04\x32\x7e\xad\ \xf0\x43\x0e\x35\x4e\xa5\x78\x5a\x5f\x22\x38\xdb\x16\x06\x87\xf7\ \xed\x56\x4c\x78\x5d\x73\x2d\x02\x28\x80\x89\x2c\xd8\x84\x4f\x4d\ \x59\x4c\x68\x55\x16\x5d\x85\x61\xf3\xdf\x16\x03\x60\x5b\x0a\x4c\ \x02\x36\x5e\x1c\xe5\x59\x83\x42\xde\x17\x78\x81\x26\x46\x5c\xfe\ \x6a\xe0\xa8\xb4\xe4\xc7\x94\x9d\x39\x61\x96\x08\x7d\x5a\x70\x14\ \x49\xdc\xc9\xcc\xcc\x44\x56\x01\x7a\x29\xe2\x42\x52\x4f\xa3\x54\ \xcf\x55\x49\x1c\x00\xb2\xd4\x64\x63\x6e\x3d\x5d\x59\x06\x55\x75\ \xa0\x83\x5a\xfe\xae\x65\xd6\xc5\x06\x75\x18\x50\x98\x80\x82\x5f\ \x2e\x81\xdb\x05\xe4\x10\xfa\xe1\x9a\x5d\x2a\xf9\x5c\x2a\xfc\x04\ \x5c\x5c\x35\x5e\x7d\x9d\x85\xf1\x3a\x82\xe4\x75\xc6\x7f\x40\xd0\ \xe6\x2d\x58\x93\xd3\x0d\x93\xba\x98\xe8\xf5\x66\x4c\x0a\xae\x26\ \x6a\xa2\x26\xfd\x9f\xcf\xfc\xc2\x52\x76\x86\xc3\x0b\x69\x13\x14\ \xe1\xee\xc4\x01\xb5\xdc\x3e\xb6\xc4\x01\x3b\xa8\xbc\x2f\x3a\xdb\ \x59\x2e\xdb\xf5\xb5\xe5\xb3\x6d\x3f\x3a\x50\x87\xc4\x8d\x09\x80\ \x16\xe8\x36\xd5\x5d\x1a\x24\x8c\x16\xab\x25\x21\xa6\x53\xef\x31\ \x5e\xfe\x14\x5c\xdf\x94\x31\x0c\x30\x5c\x6a\xee\x97\x6b\x86\xe2\ \xba\xf3\x09\x84\xa5\xcc\x66\xf9\x48\xc6\x03\xe9\x71\xf2\xe0\x96\ \x2a\xe9\x74\x4e\xd4\x2d\x56\x1b\x4a\x02\xe1\x90\x79\x82\x95\xee\ \x0f\x31\x34\x45\x0f\xdd\x52\xcb\x5b\x14\xf3\x9d\xe5\x14\x95\x67\ \x3a\x80\x87\x73\x0d\xd5\xb3\x5d\x06\x4f\xc8\xe3\x98\xc8\x02\x61\ \x0e\xe8\xc0\x5e\xd1\x16\x75\xcf\xff\x2d\xe4\xa1\xf4\xb3\x59\x90\ \x04\x83\x72\xe6\x46\x38\x01\xe2\x3d\xe0\x79\x90\xe6\x39\xdb\x04\ \xa9\x76\x95\x40\x85\x62\x83\x3d\xd8\x74\x6a\x86\xb8\xf2\x39\x26\ \xfa\xe8\xfe\x76\x83\x54\x24\xfd\x42\x87\x25\x6b\x9b\xbb\xc0\x77\ \x33\x43\x93\xa4\xd6\xee\xfc\x5c\x50\xfb\x50\x15\xf4\x22\x11\x4d\ \x4f\x3a\x2c\x5b\x17\xa1\x65\x18\xde\x69\x3b\xee\xeb\x97\xe0\x80\ \x1e\xb8\xdd\x35\x5d\x53\x3c\xb4\xcd\x40\x1e\x12\x16\xab\x59\x1a\ \x9d\xb1\x77\x69\x1c\x03\x16\x5e\x7d\x58\x6c\x47\x8e\x85\x17\x58\ \x81\x1e\x90\xa8\xae\xaa\x6a\xc7\x6c\xc0\x6d\x4e\xa7\x74\x73\x54\ \xdb\xe1\xc8\x76\x53\x29\x4e\x52\x54\x2b\xac\x39\x29\xda\x02\x10\ \xce\x40\x53\xe4\x81\xb4\x56\x6b\x94\x3c\x41\x53\x4c\x3c\x0f\xed\ \xa9\x9e\x4a\xa5\xea\x88\xa0\x5c\x3c\x5b\xdc\x86\x61\xb3\x05\x55\ \xde\xee\xe7\x97\xf0\x04\x4c\x08\xec\x3f\x06\x31\x9f\x21\x8c\xe3\ \x06\x9a\xcc\x92\x38\xd7\x6b\x1c\x75\x30\xa8\x65\x68\x04\x75\x48\ \x48\x7d\x38\x81\x59\x38\x81\x1e\x08\x82\x17\x80\x6a\x1f\x38\x81\ \x13\xb8\xee\x89\xb2\x68\x6c\xd6\xec\x37\xa1\x42\x8c\xf1\xa6\xa6\ \x85\xd8\xbb\xb2\xa4\xf2\x16\xba\xe4\xdb\x60\x67\xd0\x82\x0e\x2c\ \xbc\x9f\x13\xcb\x31\xee\x0c\x7c\x20\xcb\x59\x0c\x05\xc5\x33\x83\ \x36\x9c\x86\x1f\x00\x07\xc4\x42\xac\xfd\xde\xd6\x6d\x1d\x55\xdc\ \xb6\xfe\xdf\x54\xb8\xe1\x2c\xe8\x65\x3e\x08\xa1\xa0\xf6\x2e\x62\ \x36\xaf\x59\xe5\xb3\x88\xe3\x4d\x14\x3a\xc4\x0b\x07\xb4\x79\xc0\ \x70\x0c\x3f\x81\x79\x08\x86\x10\x4f\x26\x9f\xce\x6e\x4c\x64\xe0\ \x7e\xb3\xcc\xec\xfb\x26\x48\x1d\x6f\x0f\x6e\xbc\xf3\xce\x42\x10\ \x34\x03\x76\xac\x02\x33\x10\xa7\x30\xe4\x18\xee\x3c\xc3\x32\xa6\ \xd2\x2a\x08\x85\x50\xf3\x50\x9f\x12\xf2\x21\x37\xf4\xf4\x35\x72\ \x8f\xcd\x45\xe5\x49\x51\x75\x28\x82\x4d\x28\xd5\x1e\x80\x09\x0e\ \xe0\x03\x15\x35\xf0\xc1\xa6\x41\x58\xd5\xac\x00\x0e\x86\xe6\x0e\ \x5e\x49\x68\xe6\x3b\x3d\x81\x78\xe0\xf0\x17\xd0\x87\x6c\x38\x01\ \x1f\x38\x02\x32\x07\x24\x5e\x38\x73\xaa\x64\xe0\xd5\xb9\x4a\x3f\ \x10\xed\x44\x7d\xa2\x5b\xf7\x48\x8c\x91\x22\x2a\xac\x24\x52\x9c\ \x3e\x17\xf0\x03\x33\xa8\x02\x1e\xd8\x98\x95\x1c\x76\xb2\x4c\x45\ \x0f\x6c\x45\x0f\x7c\x29\x20\xff\x81\x67\x37\xf4\x43\xaf\xe9\x23\ \x07\xa3\xa3\x2a\x01\x3a\xf0\x84\x4d\xa0\x83\x30\x52\x02\x3b\x86\ \x82\x2c\xf0\x84\xcf\x8b\xf2\xef\x7a\xcf\xda\x9c\xd9\x16\x3b\x36\ \x3e\x7b\x70\x44\x0e\xf5\x0c\x1f\xf5\x60\xc0\x80\x17\x38\x01\x54\ \xfe\x9f\x87\x06\x30\xb4\xd5\x72\xf5\x57\x2f\x16\x36\x89\xc2\xe5\ \x58\x8e\xcc\x14\xc5\x47\xe5\x6a\x4c\xf2\x64\x0e\xb6\x10\x43\xd5\ \x6a\x67\x05\x43\x0f\xbc\x06\x29\xe3\x98\xfe\x79\x47\x1c\xa0\x58\ \x93\x34\xc9\xc2\xdb\xbe\xc2\xbb\x06\xe8\x08\xf2\x67\xff\x81\xf4\ \x65\xdf\x79\x4e\xf4\x31\x6d\x19\x25\x70\xdb\x12\xb0\xae\x27\x68\ \x80\x4d\x48\x85\x54\xf8\xe5\xf4\x1b\x6e\x40\x06\x21\x1a\x6c\x23\ \xa6\xb2\x25\x82\x5a\x2f\x76\xcf\x57\x9e\xcd\x06\x0b\xe7\xf0\x23\ \x88\x77\x1f\x98\x87\x79\x38\x82\x06\x60\x75\xf3\xe1\x85\x11\x9f\ \x34\xaa\xfc\xbd\xc1\x62\x16\x43\x65\x3c\x51\x0c\x6f\x91\x0c\x47\ \x94\xca\x42\xec\x65\xf3\xea\xe4\x4c\x30\x34\xc5\x12\xdc\x93\x2d\ \xb8\x86\x2a\x60\x49\x2a\x2b\xc5\xe3\x00\x35\x8e\xf1\xd0\x1f\xff\ \x01\x29\xe0\x78\x07\x62\xe3\x6e\x05\x87\x79\xbe\xed\x18\x0c\xb1\ \xba\xb8\x76\x3e\xd8\x76\xe6\x79\x02\x25\xe0\xe7\x54\xf0\x84\x19\ \x9c\xba\x36\xb3\x4b\x3c\x8c\xf9\x38\x35\x68\x64\xd4\x72\x67\xde\ \x86\x6c\xe8\x81\x51\xe7\x70\x16\xf0\xf9\xc7\x3f\x82\x69\x5e\x3b\ \x5e\x88\x46\x7d\x3f\xda\x62\x51\x96\x59\xb7\x42\x0e\xae\xe0\xfe\ \x2c\xf4\x60\xcb\xc5\x93\xaf\x7c\xa9\x28\xdd\x1d\x68\xdd\x62\x95\ \xf6\x02\x9e\x8b\xc5\x32\x80\x37\xd0\xed\x9f\x8d\x39\x82\x52\x32\ \x03\x8e\xdf\xa9\x16\x39\x5f\xf5\xad\xe5\xd3\x55\xdf\x69\xbf\xc9\ \x39\xc4\x04\x75\xc0\x86\xeb\x90\x01\x6c\xd8\x65\x28\x48\x85\xe0\ \xd7\x47\x40\xa6\xcd\x29\xb7\xcd\x38\x52\xd5\xf5\x5a\x6c\x7c\x85\ \x06\x9d\x9f\x05\xa0\xc7\x00\x0c\x78\xeb\x11\xf1\x79\xcb\xae\x12\ \x5e\xc8\x06\xcb\xa7\x64\xd7\x88\xcc\x05\xb2\x90\xe3\x03\xc5\x4d\ \xbb\x10\xb2\x46\x6f\x71\x7a\xd6\x06\xc5\x13\x73\xb6\x5a\x2d\x08\ \xf4\x92\x16\x83\x66\xd8\x02\x7e\x38\xc3\x78\xa4\xa4\x50\xc0\x52\ \x68\x71\x06\x4a\x02\x88\x69\x47\x8e\x68\x99\xf6\xe3\x60\xb9\x72\ \x44\xda\x10\x69\x58\x4e\x1d\x3c\x70\x74\x26\x52\x9c\x88\xad\xa1\ \x92\x12\x74\xd4\xa9\xbb\xa8\xe4\xe3\xb2\x22\x00\x00\xa4\x2a\xf1\ \x91\x88\xc9\x12\x2a\x57\x66\x54\xc2\xe2\x65\x09\x98\x2c\x54\x36\ \x30\xb0\x6c\x16\x9f\x59\x8d\x4e\xf4\xe8\x99\xad\xc7\x09\x1f\xb3\ \xe6\xcd\x1b\x38\xc2\x0b\xd2\x11\x6a\x78\xfd\x6b\xea\xf4\x29\xd4\ \xa8\x52\x53\x41\x1b\x69\xf5\x2a\xd6\xac\x5a\xb7\x5a\x25\xfe\x43\ \x06\x2b\x99\x0e\xc8\xfc\x54\xab\xe6\x67\xec\xd9\x66\xc8\x9a\xd5\ \x50\xcb\xd6\xcf\x96\x1a\x72\x6b\x88\x11\xe3\xcc\x99\x8b\xbc\xce\ \xae\xf1\x35\x63\x86\xef\x5e\x7e\xfc\xca\xfc\x75\x26\xa6\x59\x33\ \x17\x65\xfe\x54\x29\x73\x8d\xac\x19\x2d\x7f\x05\x5f\x33\x2b\x45\ \x4b\x9b\x23\xe5\x0e\xfe\x28\xa7\x46\xcd\xc2\x86\x74\xc0\x45\x54\ \x47\x11\x9c\xe9\x89\x0d\x4d\x62\xe3\x48\x44\x89\x8c\xd8\x4a\x36\ \x41\x81\x92\x0a\xdb\xc7\x8c\x28\x55\x62\x4b\x39\xd3\xa5\x4b\x99\ \xa4\x4a\xac\x32\x80\x73\x96\x3a\x49\x3e\xb7\x6d\x3b\x11\xe4\x04\ \xd1\x79\x18\x8e\x3e\xc9\xf3\x04\xdf\x08\xa6\x52\xb7\x73\x77\xca\ \xcb\x47\x55\xae\xe2\xc5\x93\xf9\xe0\xb5\xeb\xd7\xab\xde\x3a\xf8\ \x69\xef\x7e\xac\xdb\xb5\xc8\x5a\x20\x9e\x2b\x77\x8b\x5d\x17\x78\ \xf7\xf2\xbd\x66\x86\x9f\x64\x65\x39\x33\x18\x3f\x66\x38\x53\x4d\ \x33\xf4\x5d\x73\xc4\x1f\x65\xf0\x53\x4d\x0d\xd5\xf8\x65\xe0\x35\ \xfc\x54\x56\x8d\x14\x6a\x54\xd1\x86\x1a\x06\x21\xb4\x10\x43\x44\ \xd0\x01\x0f\x89\xa8\x99\x98\x1a\x1d\x1e\x35\x84\xc9\x45\x76\x3c\ \xf1\xe2\x13\x44\xa4\x92\xc5\x6d\x1f\xad\x74\xe3\x8d\xfe\xbf\xb1\ \xf0\x91\x4c\x33\xd9\x24\x49\x23\x92\xcc\xa2\xdc\x36\xd0\x34\x47\ \x94\x0f\x44\x1d\xe1\x05\x0e\x79\xe0\xe3\x24\x0e\x2c\x68\xd7\x1d\ \x95\x4f\xf1\xe2\x85\x0f\x1f\x8c\xb7\x25\x00\x5f\x8c\xf4\x01\x34\ \xd7\xa8\xc1\x4f\x36\xe9\x65\x15\xd6\x58\x69\xa6\x99\x56\x82\x2d\ \xb8\x59\x5f\x7d\xf8\xe9\x57\x97\x7e\x13\xfe\x47\x59\x59\xd7\x68\ \xe1\xa0\x33\x71\x79\xe3\xcd\x16\x83\x1d\xe1\xd8\x16\xcd\xf8\xe1\ \x8c\x81\x77\xf1\x25\x45\x3b\x97\x1d\x91\xd9\x66\x3f\xd0\xe1\x59\ \x88\xe5\x8c\x48\x1a\xa6\xea\x48\xa4\x9a\x42\x28\x89\x88\x4d\x1b\ \x76\xe4\x31\xaa\x75\xcb\xa4\x92\x8a\x3a\x2d\xed\xd6\x5b\x6f\x29\ \xa9\xb4\x23\x0b\x32\xbc\x34\x53\x4c\xd8\x2c\x93\x93\x3a\xb3\xcc\ \x72\x02\x73\xd9\xe8\x1a\xdd\x11\x55\xfc\x81\xc3\x93\xf8\x18\xcb\ \x42\x2a\x55\x2a\xdb\x14\x1f\x79\xfc\xe1\x83\x97\x5c\x5a\xf5\xc5\ \x17\x1f\x80\x99\x4d\x35\xd9\x6c\x21\x45\x19\x4c\x7a\x61\x46\x07\ \x5b\x91\x11\xa1\x1f\x35\xa8\xb9\x56\x7c\x2d\x74\xd0\x82\x7d\x35\ \x6c\x81\xdf\x7e\x76\x0d\x28\x98\x60\x7f\xb9\xe0\x87\x0b\x83\xf1\ \x60\x06\x84\x7f\xb6\x50\xcd\x9e\x0e\xde\xdb\xc2\xfe\xa1\xd7\xe0\ \xa5\xdf\x35\x52\x4c\xb3\xb0\x1a\x47\x10\xa1\xc6\x66\x93\x36\x24\ \x5a\x44\x24\xc2\xb3\xd1\xa6\x13\x6b\x8c\x89\x6b\x32\x88\x3a\xea\ \x13\x21\xa5\xe2\x89\x4a\x28\xb1\xda\x2a\x8e\x2f\xb9\x24\xab\x4c\ \xab\x2c\xb3\x8c\x3a\x2f\xdf\xb4\xcd\x4f\x49\x26\x59\x06\x0f\x3c\ \xfc\xa1\x89\xb1\x3d\x4b\xb9\xac\xb2\xbc\x58\xc7\x43\x36\x5a\x4a\ \xfb\x45\x36\xd2\x0d\x54\x05\xd3\x8d\x1d\xd1\xe4\x13\x5a\x84\x97\ \x15\x7b\xee\x99\x8b\xcc\xd5\x88\x21\xb6\x2e\x5b\x35\xc0\x05\x97\ \x9c\x73\x22\x4a\xef\x7f\xd7\xdc\xeb\xc7\x35\x65\x30\xed\x4c\x0d\ \x2d\xfc\x59\xc3\x80\x0e\x9a\xe1\x42\xdb\x35\xb8\x60\xb0\x0b\xd5\ \xb8\xb0\xb0\x14\x3f\x30\x7c\xc4\x67\x93\x7a\xf6\xf0\x88\xf0\x68\ \x0a\x11\x44\xaa\x69\x5c\x82\x88\xea\x78\x62\x5a\x09\x32\x54\xf7\ \x84\x0c\xea\x70\x60\xdb\x45\x99\x63\xb3\x39\xca\x37\x06\x17\xdc\ \x4c\x3e\xde\xb4\x8c\x01\x2f\x9c\x90\x4d\x50\xd1\x85\x82\xb3\x2e\ \x7f\xec\xbc\xf3\x93\x3f\x03\x4d\x25\x2f\xd8\x8c\x5a\x85\x0f\x66\ \x8e\x97\x4d\x15\xd5\x81\x3c\x2a\x0e\x83\x56\x91\x07\x0e\x66\x18\ \x4d\x35\x5d\xe5\x96\x8b\x0c\x32\xeb\x76\x80\xfe\xd8\x7c\xf5\xb9\ \xfb\x2e\x7e\x62\xe8\x77\x17\x28\x83\x69\x51\x60\xc2\x7e\x34\x03\ \x70\x15\x38\x94\xe1\x82\xdb\x7f\xa2\x5d\xc6\xf6\x95\xb9\x1d\xa1\ \xd9\x65\xb5\x73\xcd\xc2\x3f\x28\x3c\x38\xc4\x09\x39\x44\x1a\x07\ \x25\x1e\xae\x78\x1b\x4a\xbc\x46\x04\xc7\x8a\xa0\x0e\x4c\xbc\x46\ \x06\xd6\x99\x0d\x00\x68\x44\x40\xce\x9d\xac\x73\x2b\x99\x55\x70\ \x5e\xe5\xb2\x59\x90\x6e\x57\x27\x08\x0a\x06\xca\x80\x81\x50\x70\ \x42\x67\xba\x80\x81\x2e\x42\xa8\x89\x3c\x64\x67\x76\x55\xc2\x04\ \xc8\x70\x90\x8d\x68\x8d\x47\x0a\x4d\x22\x15\xa9\xc4\x97\x36\x1c\ \x54\xc1\x05\xba\xbb\x8a\x58\xa0\x21\x17\xe6\xcd\x27\x7a\x5a\x93\ \xde\x7d\xaa\x77\x3d\x67\x80\xe2\x4e\x05\x32\x90\x59\xfc\x60\x86\ \xf0\xfd\x81\x1f\x35\xf8\xd3\x9f\x24\xb4\x3d\x7e\x38\xc3\x0f\x6f\ \xaa\x46\xfb\xda\xd1\xa8\x82\x18\x04\x1c\x9d\x49\x88\xfd\x40\x43\ \x04\x12\xe5\x8f\x23\xa8\x51\xdc\xc4\xfc\xd7\x38\x01\x62\xc4\x63\ \x32\xc0\xc6\x26\x00\x60\x1b\x4c\x94\x80\x81\x44\xe0\xdc\x4a\x1c\ \x08\xab\x99\x0c\xc7\x26\xcb\x78\x81\xe9\x2e\x58\x94\x2a\x78\xa1\ \x0a\x3c\x08\x05\x0f\x74\xa1\x89\x3f\xe8\xfe\x22\x67\x8a\xc4\x81\ \x01\xa6\x64\x42\xa9\xc8\xc2\x77\x79\x38\xc2\xd4\xc4\x93\x8d\x11\ \x90\xca\x77\x4f\xa8\x82\x81\x8e\x90\x07\x2f\xb8\x40\x5c\xec\xe1\ \xe1\xd5\x9e\x87\xae\xb6\x00\xf1\x5d\x62\xd0\xdb\xf5\xf8\x92\xbd\ \x7a\x19\x88\x2c\xd7\x08\x9f\xf8\xb6\x00\x45\x6f\x24\x86\x5e\x66\ \x7b\x22\xbb\x30\x24\x05\x46\xb5\xc3\x6f\xd3\xd8\x4c\x31\x3b\xe3\ \x90\x4e\x11\x01\x1c\x1c\xc8\x9f\x44\x38\x42\x07\xd1\xa4\x08\x23\ \x8c\x7b\x1c\x1d\x4c\x62\x07\x3b\xc4\x86\x08\x96\x53\xe0\x1d\x37\ \x17\x4e\x16\xb5\x6a\x73\xaf\x32\x49\xcb\x4a\x60\x80\xd2\x05\xe3\ \x05\xb3\x48\x12\x06\xaa\x83\x0f\x1c\x1c\x32\x91\x9a\xd0\x44\x08\ \x39\x11\x42\x5d\xbc\x40\x92\x93\x84\x0a\x0a\x63\x38\x8f\xe3\x71\ \xe5\x0b\x66\x60\x12\x0e\x18\x33\xac\x2a\x08\xe6\x0f\xc4\xbb\xc6\ \x0d\x47\x12\x96\xb3\xf0\x50\x2d\xf4\x91\x5e\xd7\xe4\x02\x17\x3a\ \xdd\x85\x88\x44\xf4\xcf\x5e\xfc\x72\x20\x33\x1c\x01\x1f\x9f\x74\ \x46\x33\x76\xe9\x07\x29\xfc\x07\x89\xc0\xfc\x5e\xc2\xb4\xd8\xa8\ \x69\x74\xa8\x8b\x93\x12\xa3\xc6\xe8\xf0\x4c\x0e\xa4\xc6\x34\x77\ \x14\x11\x33\x1b\xb7\x89\x65\x28\xc1\xfe\x45\x30\x7a\x63\x16\x38\ \x90\x0a\x3e\x68\x6e\x73\x98\x78\x2a\x39\xcd\xf9\xaa\x08\xce\xa4\ \x38\xcb\x68\x40\x3b\x4d\x37\x9d\x18\x1e\x52\x9f\x30\xd0\x04\x0c\ \x38\x21\x56\xb1\x9e\xc0\x9f\xff\x74\x4a\x25\x61\x58\x85\x15\x10\ \x74\x2b\x1f\x70\x81\x0f\xfe\xa3\xb6\x84\x56\xe1\x69\x0f\x8d\x28\ \x00\xc6\x45\x51\xe6\xb5\x40\x3e\x88\xb1\x9a\xd7\xc0\x06\x4b\x45\ \x5d\x03\x14\x80\xb9\x8b\xbd\x66\x48\xbc\x32\xf8\x61\x97\xde\xc0\ \xe2\x84\x2a\x53\x83\x4a\x54\xc2\x0f\xed\x30\x88\x4c\xfd\xe6\x99\ \xcd\x78\x31\xa8\xff\x1b\x51\x19\x2b\x82\x0d\x4b\x61\x63\x9a\x9e\ \xe2\x18\x3c\x88\x6a\xc9\x03\xaa\xe3\x54\x2c\x0a\xa7\x53\x3d\xc1\ \x87\xa7\x62\x83\x9c\x0f\x74\x49\x4c\xea\xf8\x32\xac\x62\xe0\x05\ \xd2\x19\x81\x3c\x35\xc1\x03\xb1\x7e\x10\x9f\x63\x25\xab\x59\xcf\ \xfa\x0f\x5e\xb0\x00\x86\x97\x2c\xd3\x96\xbe\xd0\x81\x05\xe1\xe0\ \x85\xd5\x6d\x12\x0e\xb2\xa4\x15\xb1\x98\xcb\x79\x7d\xd5\x9a\x46\ \xdd\x03\x36\xeb\x0d\x11\x14\x1d\xdd\x4f\x47\xd3\xe6\x85\xdb\xb1\ \x6d\x97\x76\xf3\x0f\x80\xd4\xe7\x8d\x4a\x6c\x71\x1a\x5a\x3c\xc8\ \x31\x13\xe2\x21\xfb\xa5\xd1\x7f\xfe\x3a\x35\x5c\x8a\x28\x52\xda\ \x72\x5c\x64\x62\x1b\xd9\x04\x1d\x8a\xfa\x3b\x19\x2c\xc3\x13\x23\ \x5b\x20\x03\x31\xe1\x09\xd9\x42\x95\x45\x0f\xbc\xb0\x01\x84\x04\ \x48\x40\x0e\x72\x58\x8c\xcc\x19\x27\x40\x18\xd6\x35\xf8\xe2\x0d\ \x62\x9d\x47\xb2\x94\x1b\x15\x59\x38\xf7\x09\x18\xc8\x24\x57\x3e\ \x80\x81\x27\xc1\x70\x9e\xc4\x33\xde\x99\xc8\xd0\x3c\x32\xac\xa7\ \x03\xce\xab\x0f\xd8\xc0\xb6\x85\xbc\xe8\xa7\xc8\xfb\x71\x41\x5d\ \xce\xcb\x8f\xde\xcd\xf3\x41\xe5\xf3\x06\xc1\xf8\x02\x20\x2d\x48\ \xa1\x1a\x95\x68\x41\x25\x14\x56\x90\x1f\x68\xb1\xb3\x10\x93\x94\ \xa4\x06\xd7\x86\xfe\x29\xa1\x0d\xa0\x35\x4d\x69\x05\x5c\xcd\x89\ \xb5\xc6\x34\x45\x9d\x9c\x1d\x94\xc0\x87\xcb\x79\x22\xaa\x4e\xe5\ \xc3\x84\x79\x81\x67\x3e\xcc\x16\x65\xb4\xa2\xd5\x1f\x39\x0c\x9d\ \x79\x30\xed\x90\x65\x08\x21\x0c\x12\xcd\x09\x5f\xac\x61\x0d\x63\ \x45\xb1\x8a\xa3\x62\x3b\xe7\x62\xa9\xad\x5a\xf9\x82\x28\x61\x88\ \x03\x2f\x0c\x0b\x07\x5a\xb0\x34\x8f\x43\xbd\x9e\x1e\x7b\x63\x2d\ \xca\xa3\x5e\x35\x86\x6c\x64\xeb\xd5\xa5\xd5\x48\xd6\x5b\xda\x9e\ \xf4\x49\x33\xb4\x0d\x8a\x89\xfe\xf1\xcf\x34\xb4\xa0\x85\xc7\x4c\ \x76\xa5\x5a\x28\x07\x66\xc1\xd1\x59\x30\x72\xe6\xa6\x64\x96\x81\ \x12\x0a\x07\x0f\x11\x4d\x04\x13\x14\xb1\x6d\x43\x38\x82\x9b\x6d\ \x52\x8e\xc1\x45\x80\x82\x02\x9d\x7a\x67\x4f\xe8\x19\xcf\x14\x76\ \xa0\x4a\x94\x50\x9c\x0d\x07\xc5\x07\xc1\xca\x59\x22\x3f\x98\x68\ \x18\xbc\xc1\x17\xb9\x78\xc3\x1e\xe2\x1d\x8a\x46\x24\xf7\xac\x2c\ \x6e\x31\xee\x60\x9c\x95\x2f\xcc\x63\xb5\x5e\x28\xc3\x62\x70\xc0\ \x0f\x64\xe4\xd8\x1b\x3c\xf6\x71\x07\x46\xfd\xbc\xb9\xbc\xab\x1a\ \xaf\xd4\xcb\xc1\xc4\xc0\x70\xfc\xa4\xba\x1a\xfc\x70\xe8\x62\x07\ \x06\x65\x82\xb9\xc0\x4e\xd3\xb8\x46\x3b\xfc\x40\xdf\x85\x71\x11\ \x1c\xed\x10\xb6\xe0\x22\xe5\x45\x3a\x80\x26\x36\xdc\xf4\x26\x89\ \x14\x52\x11\x67\x5b\xa4\x21\x30\x9b\x26\x6c\xb8\x29\x03\x22\x6c\ \xe2\x72\x0a\x64\x11\x39\x31\xb1\xe7\xa7\xf2\x82\xdb\x51\x4d\x59\ \x03\x5e\x10\x0c\x0c\x60\xe0\x9d\x45\xf1\x30\x58\x3f\xf8\xc1\x45\ \xe7\xe2\xdd\x7b\x48\xf4\x1e\x24\x51\xef\x7f\x4e\xda\xb9\xd6\xd1\ \xc2\x96\x78\x87\x14\xa6\x85\x62\x30\x4c\x1b\xf8\x0d\x0f\xee\x5d\ \x1f\xaf\xe7\x4d\x71\x82\xfe\xe5\x10\x0d\x23\xf1\xb9\xd0\x69\x0b\ \xce\x28\x83\xef\x40\x69\x16\xad\x91\x45\x0a\xb8\xf6\xcb\x30\xab\ \xa1\xc5\x6b\x94\x43\x0b\x35\x15\xb6\x44\xc0\x38\x1a\x61\x7b\xe6\ \x23\xdb\x8c\xf3\x88\x2c\x42\x07\x9a\x4f\xde\xd9\x99\xdb\xc8\x32\ \xb4\xc9\x4d\x25\x60\x22\x0b\x9e\x4f\x05\x6d\x43\x2f\xe1\xd9\x3e\ \x55\xb6\xa4\x97\xea\x8d\x92\xde\x00\x0c\x34\x80\x28\x18\x08\xdf\ \x3d\xef\x89\xf5\x3d\x50\x3d\x17\xbe\xe0\xc4\xd5\x61\x30\x8b\x14\ \x47\xba\x29\xf7\xf6\xfa\x73\xb7\x84\x0c\xbf\x0b\x66\x4f\x84\xf4\ \x34\x32\xbe\x62\xa6\x83\xaf\x85\xed\x6b\x7f\x93\xd7\xe4\xb4\x17\ \xc3\xe2\x45\x0c\x71\x41\xcc\x16\xca\x92\x2f\x8c\x37\x28\x6f\xe2\ \xc5\xa2\x7f\xfc\xe3\x97\x98\x0a\x3e\xd7\x86\xff\xf5\x0f\x50\x2e\ \x38\x49\x25\x7e\x21\x1e\x7b\x42\x9c\x99\x2d\x1a\x8e\x38\x1b\xcd\ \x0d\x69\x73\x82\x25\xb7\x4d\x25\x58\x6e\x8e\x15\x06\x3a\x9e\xfd\ \x1f\xe9\xd9\x19\x36\x34\x40\x03\xb4\x41\xe9\xbc\x00\x06\x00\xcb\ \xb0\xe0\x43\xec\x81\x90\x2e\xd0\x9e\x2f\xb8\x5b\x89\xd1\x1e\x27\ \xec\x5e\xef\x39\x05\x26\x7c\x8c\x73\x05\x8f\x14\x40\x83\xa5\x81\ \x05\x32\x74\x0b\xd3\xfe\x60\x57\x19\x74\x80\xee\x1c\xdc\xd6\x28\ \x5c\x5f\xb9\x49\xc2\xd1\x87\xbb\x54\x03\x61\x99\x17\x92\x4d\xdc\ \xbb\x28\x96\x0c\x49\x41\xde\x94\x85\x0c\xb6\x54\x5f\x00\x5e\x3b\ \x54\x83\xf9\xa9\x81\xe1\x25\x44\xfa\x4d\x84\xa5\x24\x61\xa7\xe4\ \xdc\xe6\x69\x4c\xe3\x70\x84\x34\x15\x98\x37\xc5\x4c\xce\x21\x1b\ \x36\x78\xc2\xe7\x01\x9d\x00\xd6\x99\x16\x8a\xde\x32\x14\xe0\x0b\ \x18\x60\xd2\x29\xa0\x6f\xb9\x5e\x15\x38\xa0\xec\x45\xa0\x58\xed\ \xc1\x04\x4e\x20\xbc\x89\x95\x0f\xf0\x5e\x06\xae\x82\xd7\x3d\xc1\ \x08\xcc\x83\x0f\xf8\x00\x74\x89\x47\x35\x70\x12\xf1\x3c\x49\xf0\ \x54\xc3\x79\x48\x14\x19\x10\xcc\x59\x24\x1c\xd7\xb4\x89\xdb\xc9\ \x85\xde\x74\x54\xab\xc5\x85\xbb\xbc\x12\xbe\xf0\xc3\x08\xe0\xc3\ \xbf\x99\x0d\x91\xdd\x8d\x7f\xec\x89\x85\x90\x4d\x65\xb0\x94\xae\ \x01\x8e\xe1\x19\x04\x1d\x1c\x44\xca\x89\x51\x1b\xb8\x9c\xce\xe5\ \x06\x35\x99\x91\x4f\xad\xc6\x46\x10\x10\xb2\x95\x40\x83\xa5\x82\ \x52\x81\xde\xff\x3d\xd5\xe9\xd5\x96\x9d\xdd\xca\x6e\x35\xc0\x11\ \x90\x21\x1e\xa6\x0e\x06\x34\x20\x23\xe5\xd3\x58\x4d\xa0\xed\x89\ \xd5\xed\xad\x01\xfe\x2f\x6c\xdd\x24\xd1\x21\xa5\xf9\x00\x74\x68\ \xc1\x09\x24\x1f\x58\x0c\x62\x36\x58\x57\xf8\x7c\x92\x0b\x18\x1c\ \x7a\x10\x4c\xa1\xa8\xcb\x77\x21\x06\x7d\x5c\x14\xdd\x21\x19\x24\ \x32\x5c\x5e\x94\x85\x19\xf0\x00\x93\x38\x06\x0f\xf2\xc7\x9d\x00\ \x5c\xbd\x00\x88\x19\x54\x99\xa3\x68\x01\x41\x00\x0e\xb0\x49\x0a\ \x12\xa2\x62\xff\xb8\x9c\x6c\xe4\x86\xff\x58\xca\x46\xd4\x5c\xe6\ \xc0\x0c\x51\x65\x44\x6b\xcc\x88\x52\x0d\xa0\xe8\xd1\x96\x53\xb1\ \xc8\x2a\xe8\x16\x05\x35\x80\x1a\x2c\x5d\x19\x0e\x63\x1e\xbe\xde\ \x3d\xe9\xc2\x71\xe1\xde\xa2\xb5\x21\xed\xed\x01\xbc\x6d\x02\x34\ \x9a\x50\x09\x50\x1a\x06\x9c\xc0\x0a\x24\xc9\x3c\x4c\x83\x14\x2c\ \x9f\x57\xa4\x07\x32\xe4\x1d\x83\x88\x8f\x0d\x0d\x62\x5e\xb1\xc7\ \xbd\xfc\x90\x39\x02\x91\x7d\xbc\xcb\x5c\xd4\x87\xf5\xe0\x85\x19\ \x74\x4b\xf0\x98\x81\xf2\xe8\x4d\x64\x00\x1c\xce\x38\x88\x60\x50\ \x65\xde\xe8\x09\xfa\x0c\x04\x41\xa0\x1f\x42\x80\x06\x99\x95\x19\ \x6c\xc4\x86\x58\x22\x1b\x35\x35\x9b\x6a\x8c\x16\xc7\x78\x04\x59\ \x62\x82\x2d\xa6\xc2\x26\x70\xcc\x00\xd9\x99\x85\xd5\x91\xad\x60\ \xc3\x45\xda\xfe\xca\x6e\x29\x5d\x6f\x51\xa3\xcd\xac\x80\x14\xcc\ \x83\xce\xe0\x83\x2e\x84\x82\x89\xad\x61\x49\xde\xde\x49\x8a\x55\ \x0f\xac\xe4\xec\x48\x23\xa9\x8c\x40\x36\x64\xc3\x34\x24\xc9\x40\ \x60\xc0\x1e\xe6\xd5\x55\x90\x81\x16\x30\x0d\xc0\x55\x17\x63\xdd\ \xa4\x99\x78\x03\xbe\x48\x5c\x46\xb5\x8b\xf5\xad\xa3\xbb\xc8\xc5\ \x50\xca\xc9\x0c\xe1\x43\x13\x15\xca\x5b\x74\x9c\xda\xb8\x4e\x5d\ \x39\x88\x54\x96\x81\x52\xea\x5a\x19\x68\x25\x11\xda\x94\x42\xc0\ \x06\x58\x8e\x19\x70\x8e\xa5\x1a\x4d\xc4\x32\xa8\x19\x00\x4d\x84\ \xe6\xc1\x1f\xff\x9d\x0a\x1f\xc4\xe5\x17\x72\xce\x17\xde\x48\x5d\ \x5e\xa4\xcb\xdc\x44\xd2\xcd\xc3\x0b\xf8\xc0\x0a\x60\x10\x77\x66\ \x83\x33\x60\x40\xeb\x1c\x52\x61\x26\xa6\x49\xe2\xde\xed\x2d\x66\ \x06\x36\x85\x63\x8e\xd2\x3c\xa0\xce\x02\xfe\xd6\x11\x7c\x20\x5e\ \x01\xc0\x07\x30\x4f\x35\x64\x9a\x16\x84\x0b\x66\x12\xe2\xa1\x48\ \x81\xc4\xbd\xcb\x46\x9d\x26\xab\xc5\x05\x24\x6a\x0d\x3a\xda\x4d\ \xb7\x10\xcf\x11\xa0\x14\x96\x19\x4a\xbe\xc0\x23\xb1\xd0\x53\x19\ \x84\x82\x16\xf0\xc0\xa0\xf8\x05\xc0\x59\x68\xb0\x0c\x44\x87\xf8\ \x4d\xcb\xfe\x89\x65\x99\x2d\xc4\x70\x8a\x28\xb3\x3d\x9b\xe4\xd1\ \xc1\x17\xc2\x06\x8c\xc4\x59\x6b\xf0\x41\x74\xd6\xe5\x17\x46\xa7\ \xab\x70\xce\x45\xae\x53\xa0\x05\x45\x50\xf8\xe5\x3c\x68\xd0\x35\ \x64\x43\x2b\xf8\x00\x22\xbd\x01\x91\xe2\x5e\xbc\x1d\x26\x62\x9a\ \x98\x2f\x64\x83\x1c\xf6\x5e\x73\x59\xc7\x4b\xc2\xa7\x76\x16\x05\ \x51\x48\x41\x36\xa0\x20\x57\x74\x00\xde\x65\x97\xd1\x2c\x9f\x68\ \xd2\x89\xc3\x91\xd7\x5d\x20\x19\x91\xb9\xd2\xbb\x20\xe8\x0f\x39\ \xc3\x19\x3e\xc1\x1f\xf0\xcb\x50\xe2\x0b\x49\xd1\xd8\x13\xd0\x10\ \xce\x08\x4b\x13\xf1\x03\x0f\x34\x46\xd3\x00\x5c\x41\x18\xde\x11\ \x8c\x80\x1b\xc9\xc0\x08\xf4\xcf\xb1\x85\x25\x59\x32\xdb\x68\xdd\ \x91\x59\xfa\x94\xa1\x66\x44\x74\xfe\xd4\xe6\x7c\xe1\x6e\xe0\x88\ \x01\x1a\x40\x03\x94\x40\x1b\x6c\xd8\x3c\xe8\x68\x1e\xfa\x40\x31\ \xf2\x80\x0f\x24\x43\x36\xd8\xc2\x1a\x10\x26\x89\xc1\x5b\x04\xb2\ \x21\x05\x32\xe3\x04\x32\xe9\x7a\x36\xc5\x93\x8e\xc0\x09\x40\x01\ \x34\x74\x27\x1e\xfa\xd6\x34\xcc\x43\xc3\xbc\x67\x7d\x76\x80\x14\ \xb8\x8e\x19\xa4\x5d\x21\x66\x1f\x99\x26\x25\x7f\xa0\x17\x92\x3d\ \xa2\xfe\x6a\xb2\x12\xbb\xf0\x03\x0e\xb0\xa9\x16\xdc\x0b\x2b\x79\ \x4d\xc7\xf1\xc0\x0b\x41\x09\x63\x10\x4b\x83\x84\x8f\xce\xd0\x26\ \xfa\x84\xe2\x11\x84\x25\x37\x8d\x40\x99\x8d\x59\xa1\x22\xdb\x49\ \x38\xa1\xa2\x3a\x4e\x11\x6c\xc2\x26\x48\x82\xa7\x30\x0e\xe3\x64\ \xc4\x4a\x4c\xea\x4a\x88\x21\xbe\x9a\xeb\xea\xa9\x01\x1e\x76\x2a\ \x3f\x60\x80\xb5\xfe\x41\x28\xd8\x02\x08\xb4\xc2\x1a\x10\x69\xbb\ \xe1\x1e\x0c\xc4\x1b\x05\x22\x66\x89\xb9\x9b\x4a\xbe\xaa\x01\xb9\ \xd8\x28\x74\x09\x34\xa0\x0e\x19\xe6\x21\x70\x3d\xc1\x11\x9c\x00\ \x08\x9e\xc9\x08\x82\x12\xc1\x65\x26\x19\x24\x06\x99\x42\xdc\xb1\ \x22\xcc\xc1\x44\x1c\xf5\x40\xa2\x0b\x04\xac\x16\xc0\xa6\x78\x0d\ \xd9\x52\x5e\xeb\xa8\x2c\x12\x20\xc2\x0e\xb1\xcc\x53\x83\xec\xc9\ \x9f\x7a\x81\x1d\x8c\x00\xa0\x92\x2b\xb9\x96\x6b\xa1\xaa\xd1\xfd\ \x39\xe1\x46\x14\xc1\x33\xd9\x46\xcc\x10\x41\x03\x64\x9e\x8d\xd8\ \x6b\x1b\x98\xc4\x42\x18\x60\x18\x8e\xd9\x11\xb0\x40\x1b\x8c\x40\ \x65\xf2\xab\x74\xe0\x8c\xce\x2c\x12\xa8\xb6\x82\x2d\x80\x02\xc2\ \x22\xe6\xd5\x51\x5d\x1b\xa2\xe7\x04\xa6\x02\x63\x02\x4d\x73\x3d\ \xfe\x81\x0f\x40\xc1\x48\xd0\xea\x2c\x60\xc0\x11\x6c\xaa\xa7\x7a\ \xc1\x9c\x56\x81\x16\x80\x47\x0a\x92\x81\x1f\x08\x06\x36\xaa\x87\ \xdd\x64\xe2\x5e\x9c\xd7\xca\x1e\xcc\xdd\x90\xe9\x5d\x58\xdf\xdd\ \xc5\x63\x35\xf8\x4b\x65\x95\x05\xf1\x59\xab\xd7\xd1\x98\x8d\x91\ \x0a\xcf\x1a\x12\x93\x3c\x01\xd0\x7a\x81\xa0\x2a\x01\xd1\x8e\xe8\ \x57\xfa\x0f\xd2\x32\x13\xe3\xb4\x06\x07\x8c\xc4\x33\xf5\x80\x24\ \xc8\x0c\x4a\xd8\x08\xe3\x54\x2d\xd4\x42\x6d\x03\x40\xed\x11\x00\ \x23\x0b\x18\x85\xd6\x56\xe6\x62\xb8\xce\xce\x2c\x12\x27\xac\x81\ \x2d\x90\x2a\xc2\xc2\x5b\xbc\x31\x6c\xd5\xdd\x9e\x2f\xa0\xa4\x89\ \x6d\x43\xdc\x2e\x4b\x73\x79\x01\xaf\x40\x03\xad\x6e\x83\x0f\x74\ \x6d\xd3\x51\xa6\xd0\x02\xed\x08\x68\x41\x99\xf8\x24\x19\x64\x83\ \x0b\x84\xc1\x99\xc0\xcd\xc9\xe2\x0d\xab\xf1\x60\x3b\xc2\x5d\x23\ \x26\x4a\x19\x10\x4b\x15\x48\xc1\x93\x41\xd9\x24\x0a\xca\x08\x01\ \x9f\xff\xce\x13\xb1\x38\x09\x52\x8c\x6e\xe9\x92\xab\xb9\x82\x08\ \xd2\xb2\x99\x69\x9d\x84\x3a\x30\x2d\x14\x70\xc0\x36\xc8\xae\x24\ \xbc\xc0\x04\xef\xae\xff\xec\xee\xee\xb6\x01\x06\x07\xe3\x0b\xfe\ \x3c\xca\x9f\x76\xed\x08\x54\x41\x08\xd7\x55\x9e\xfe\x81\x6b\xb6\ \x0e\x04\xae\x41\x2e\x28\x2f\x91\xde\x9e\x91\x8a\xd5\xf3\xb6\x6d\ \x7a\x56\x6f\xd0\xd8\x41\x1d\x70\xa7\xae\xf8\x80\x6f\xfd\xe9\x02\ \xea\xb0\xde\xfe\xe9\xb3\x02\x6e\x64\x16\x8d\x55\x74\x40\x18\x44\ \x94\x8e\xf1\x05\x91\x55\xdf\x16\x90\x05\xaa\x39\x1c\x2c\xa5\xda\ \xf5\x80\x42\xfd\x8e\x4a\x19\xe8\x92\x63\xfd\xcb\x52\x76\x9a\xff\ \x76\x71\x27\x59\xe2\x51\x88\x6f\x01\xcb\xc0\x98\x4d\x4c\x19\xff\ \x8f\x13\x96\x4c\x03\x3f\x53\x16\x48\xb0\x24\xcc\x6e\x39\x58\xaa\ \x1a\x8c\xe1\x1c\x9b\x2b\x07\xcf\x03\x30\x86\xb0\xd7\x2e\xcd\x08\ \x30\x46\xce\xc4\x9e\x48\xe6\xd3\x1b\x80\x42\xd5\xb5\x5b\xbb\x59\ \xe0\x91\xba\x9b\xed\x41\xef\x04\xaa\xe7\xab\x06\xad\x76\x4e\xc7\ \x11\x60\x40\x30\xfc\x29\x47\x52\xf2\x40\x18\x95\x1d\x02\xae\xe0\ \xe6\x55\x7d\x02\x00\x32\x50\x06\x79\xb9\x40\x5c\x7c\x4d\x7b\x34\ \x1c\xfc\xe6\x85\xf5\x99\x01\xc6\x79\xc1\x83\x78\x8f\x9b\xfc\x09\ \x5b\x88\xc1\x92\xd1\x98\x17\x7b\xb1\x6b\x8a\x30\x52\x04\xad\x1b\ \x1d\x30\x43\x30\x84\xea\xa6\x6b\xed\xfa\x57\x6b\x09\x50\xfe\x39\ \x50\xf0\x1b\x6f\x98\x1a\x74\x30\x20\xa9\x41\x2a\x0a\x6a\x66\xf8\ \xd6\x0f\xf7\xf1\x1f\xf0\x40\x06\xbd\xce\x1f\x1b\x97\x3e\x89\xe4\ \x1b\xac\x70\x2e\x90\x58\x89\x99\x98\x79\xc6\x30\xf4\xbe\xc1\x0a\ \xd0\xb0\xb2\xd4\xc1\x08\xc4\xc3\x11\xd4\x81\x17\xa8\x73\x2c\xfc\ \xa9\xd0\x52\x32\x25\x53\xc7\x9c\x6e\xda\x08\x80\x87\x44\x99\x07\ \x5e\x21\x83\xf8\x99\x8d\x61\x94\xcb\x7d\x68\x54\x13\x9f\x32\x2c\ \x0d\x99\x16\x98\x60\x12\xf1\x20\xdc\xf9\x47\x28\x60\xdc\x2d\x77\ \xb1\x25\x32\x8d\xd0\x56\xb4\x58\x1a\x70\x68\x00\xb3\x41\xbe\x86\ \xab\x3c\x84\x69\xbc\x00\x11\x6c\xd8\x0b\x80\xc6\x32\x7f\x86\xae\ \xfe\x2c\xfc\x79\x81\xd7\x32\x9d\x74\xb4\x4e\x83\x94\x6a\xf1\xa6\ \x1b\x08\x8d\x55\x08\xbd\x81\x0a\xdb\xc2\x37\xbf\x1b\x27\x10\xe9\ \x4c\x2b\xf2\x22\x3f\xec\x1a\x34\x69\xa4\x55\xf2\xd6\x8a\xef\x08\ \xfc\xae\xd0\x06\x83\xd0\x1a\x85\x4a\x1f\x85\x1d\xd0\x90\xc7\x96\ \x47\x18\x84\x01\x32\x84\x81\x79\x80\x45\x36\x84\x5f\xf5\x29\x8f\ \x29\x07\x56\x5b\x78\x8d\xde\x48\x88\x43\xf1\x24\x90\xd9\x92\x5c\ \xa9\xcd\x4e\xda\x72\x44\x77\x20\x63\xc8\xb3\xd0\x3e\xfe\xde\xe6\ \x09\xe7\x49\x18\x24\x5d\x0b\xf3\xc4\x8c\xb4\x33\x6b\x6d\x66\xec\ \xf1\x92\x4c\x0e\x0e\x84\xb0\x3d\x22\x92\xeb\x70\x82\x0f\x38\x1a\ \x0e\xe0\x93\xd4\x0d\x17\x22\x25\x63\x2e\x10\x72\x2b\x2c\xe3\x4e\ \xeb\x13\x1b\xe6\x42\x32\xb8\x61\x38\xfb\x42\x16\xbc\xea\x3f\x28\ \x75\xf8\xaa\xb3\xd0\x7a\x36\x21\x54\xb4\xd0\xb6\xc1\x02\x2e\x89\ \x17\x58\xa6\x55\x5f\xac\x30\x44\x26\x32\x5c\xf5\x55\x20\x43\xc7\ \xe1\x4d\xaa\x45\xdf\x6c\x0b\xf4\x5b\x90\x05\x16\x1d\x41\x75\x78\ \xc1\x35\xb8\x0d\x96\xb1\x0b\x9c\xce\x26\xe7\xae\xf5\xff\x72\xda\ \x08\x54\x17\x8c\xc0\xdf\x2a\x96\x6b\x5d\x37\x37\x1a\x33\xc4\xa3\ \x74\xad\xa0\x0a\x2d\x21\x19\xf7\x7a\x01\x4f\x35\x57\x28\x06\xac\ \x41\xba\x1d\x2f\xda\x3e\x60\x23\x75\x90\x3e\x89\x95\x4d\x13\x32\ \x21\x27\xc3\xc1\xee\xb4\x38\x77\x73\x21\x17\xa9\xbb\x65\xf6\xab\ \xf2\xc2\x08\xd4\x41\x4a\xdb\x81\x29\x20\x85\x67\xcf\xb7\xf8\x4e\ \xa9\x24\x83\x07\x34\x8c\x42\x36\xac\x76\x2b\xac\x00\x08\xb8\x76\ \x57\xc0\x8d\x48\x59\x9f\x1f\x90\x97\x59\xcc\x85\xc8\xc1\x6f\x42\ \x13\x8f\x13\x41\x11\xf4\x41\x65\xc0\x11\xf7\x2d\xfe\x9b\x94\x2d\ \x7b\x12\x37\x85\x08\x1a\x1b\xa4\x6c\x14\x64\x6e\x98\x6b\xd7\x02\ \xed\x9c\x22\xc5\xb3\x56\x97\xeb\x5c\x87\x6b\xf2\x40\x85\x86\x02\ \x61\x72\x50\x4d\x13\xa9\x22\xcd\x34\x4d\x73\x02\x8c\x37\x1a\xa3\ \xe5\x42\x2b\x24\x83\x4e\x17\xa9\x48\x36\xec\xf2\xfa\xc2\x36\x68\ \xf6\x3f\x78\x12\x8c\x98\x82\xd0\xc6\x42\x45\xab\x33\x3d\xcf\xb3\ \x1e\x02\x78\x36\xac\x40\x64\xc6\x64\x36\x4c\xf5\xc7\x5a\xc5\x07\ \x88\x81\xf8\x91\xf2\x90\x55\x9f\x46\xa5\x5a\xf6\xb9\xe3\xf0\xd0\ \x50\x35\x20\xe2\xc6\x19\x4a\x0f\xce\x15\x86\xb7\x39\xc8\x30\xe7\ \xc3\x30\xd3\x6f\x82\x78\x58\xc2\x86\x01\x97\x99\x53\xcb\x13\x42\ \x19\x4b\x42\xf1\xcc\x3c\x1d\x12\x3f\xc4\x38\x90\xdb\x78\x88\xe5\ \x53\xa9\x6e\x73\x28\x1c\xec\xa9\xae\x41\x32\x34\x7a\x38\x17\x26\ \xdb\x0e\xf9\x1b\xf4\x80\x91\xc3\xd0\x8b\xa8\x74\x2c\x04\x03\x93\ \xbb\xf3\x3a\xbf\x00\x93\x5f\xba\x0f\x8c\x42\x18\xd4\xea\x0a\x08\ \xc3\x0a\x9c\x3a\x08\x4c\xb9\x33\x10\xb1\x44\xf9\xb3\x60\x1c\x48\ \x7e\x58\x5f\x24\xe6\x4d\x3b\x2a\xc6\x6e\x9b\x41\x4a\xf9\x0b\x7d\ \xc0\xc5\xdd\xec\x89\x09\xbb\xb9\xff\x4e\xce\xfe\xef\x1c\x55\xa5\ \x20\x64\xa7\xfc\xb2\x5c\x77\xad\xe9\x4e\xf7\x51\x54\x57\xb1\x38\ \x7b\xcf\xb8\x8e\x26\x1c\xf6\x21\x35\x1a\x8c\xdb\xb4\xa3\x29\xda\ \x4e\x4b\x5d\xa2\x97\xaa\x20\x93\xd8\xc1\xfa\x42\x32\x80\x80\x8f\ \x23\x2c\x49\x76\xf3\xa3\xb7\xb0\x33\x6a\x36\x92\xdb\x21\x47\xb6\ \xb3\x4a\x07\x43\x3c\xcc\x03\x70\x01\x4f\x3c\x40\xc3\x1d\x40\xc3\ \xc5\x52\xb9\x30\x00\x78\x90\x86\x82\x0f\xd4\xc0\xf1\x74\xc0\xbc\ \x18\x46\xe4\xce\x5d\x24\x12\xeb\xe4\x4a\x78\x4a\xf1\x58\xdb\x19\ \x0a\x9c\xe2\xe9\xb0\x00\x3b\xf0\x25\xd4\x75\x29\xf7\xb8\x26\x70\ \x42\xdc\xd4\x67\xa0\xe2\xa0\x8e\xd9\x5b\xbb\xc8\x75\x15\x8b\xeb\ \xf4\x0c\x58\x15\x2f\x23\x75\x3b\x07\x1d\xaf\x89\x7d\x95\x2e\x00\ \x79\x90\x1f\xac\xa2\xa9\xf0\xa2\xe7\x02\x08\x80\x80\x2d\x98\x18\ \xa4\xb7\x9b\x1b\x2e\xef\x1b\x08\xb5\x8a\x81\x8c\x1d\xbc\xf3\x92\ \x73\xb6\x7d\x8f\x40\xa6\xfb\x2d\xf0\xcc\xc3\x28\xdc\x01\x80\x8f\ \xc2\xa9\x8f\x42\xbf\xaf\x00\xd3\x71\x67\x35\x40\x83\x57\x7c\x80\ \x84\x18\x08\x92\xb5\x02\xc2\x27\x7c\xf6\x1d\xd4\x62\xf9\x81\xa8\ \x51\x78\x33\x64\x5f\x85\xa8\x8d\xb1\x50\xfe\xbc\xe7\xd2\xe6\x1f\ \xa8\xf4\x00\x17\xf0\x19\x13\x01\x18\x81\xd1\x67\x3c\x4a\x45\xef\ \xf5\x71\x6f\x5a\xa7\xf1\x79\xeb\x18\xcb\x22\x7d\xd5\x3d\xa5\x3c\ \x8c\x8b\x15\x61\x86\x98\x26\xec\x74\x7a\x93\x37\x8d\x07\xb9\x37\ \x13\xa9\xcd\x0b\x43\x65\x43\xfa\x4e\xf7\x7c\x38\xef\x34\xd0\x2b\ \xd7\x8b\x04\xad\xd7\xb2\xc0\x08\x78\x3a\x7d\xef\xb6\x29\x3c\x81\ \x29\x80\x4c\x2c\xac\xc0\x7f\x4f\xf9\xa9\xdb\xc2\xa9\x67\x83\xa7\ \x62\x40\xa7\x4a\x01\x95\xbf\x8f\x0f\xac\xec\xd7\x4f\x8f\x5e\x54\ \xb1\x17\x48\x81\xc1\x95\x3d\x94\x51\x6b\x85\xc0\xa3\x49\xb1\xbd\ \x00\x37\x48\xb0\x88\x70\xf8\x0a\x2a\xba\xce\xfd\x67\x78\xc6\xdd\ \x83\x30\x75\x0f\xc4\x1f\xcc\x29\xf1\xf6\xcc\x61\xdf\x13\x1a\x9e\ \xfc\xe0\x93\xe7\xe1\xb7\x3c\x3e\xad\x41\x2b\xac\xbc\xe1\xaf\xe1\ \xcb\x33\xfa\xbb\x0d\xf2\xcd\xfb\xf8\xc1\x16\x66\x1b\xa6\xfb\x4e\ \xc3\xf7\x7a\xae\x42\xd0\xaa\x73\x1d\x1c\x41\xa6\x1f\x41\xe9\x5b\ \x47\x1d\xc6\x03\x14\x7c\x01\x14\xa8\x3e\x40\xac\x10\xb8\xc2\xc1\ \x3c\x0c\x3e\x56\x9c\x38\x31\xef\xc8\x91\x32\x18\xcc\xb8\x10\x23\ \x46\x22\x88\x1a\x35\x2c\x4e\xac\x76\xfe\x4d\xcb\x9f\x27\x4f\xca\ \x54\xf3\x46\x66\x64\x49\x6f\x2d\xfc\x54\x93\xc2\xaf\xcc\x1f\x1c\ \xf8\xf2\xc4\x94\x39\x93\x66\x4d\x7c\x38\x78\x94\xd1\xd9\xb0\xca\ \x91\x11\x23\xda\x00\x05\xaa\x84\x48\x1b\x22\x6a\xd4\x1c\x55\xd3\ \xf0\xa7\x97\x8f\x38\xbc\x38\xac\x82\x03\xc7\x1f\x1e\x7f\x34\xe1\ \xd3\xaa\x09\x2b\x3e\x4d\x5f\x75\xe9\xfa\xaa\x89\x53\xa8\x37\x6b\ \xce\xa2\x15\xab\x6b\x0d\xa8\x37\x3c\x38\xc5\x7d\x13\x97\x93\x2e\ \x4e\xb9\x72\xd9\x42\xbb\x26\x19\x08\x10\xc9\x72\xcd\xe5\xf4\xe6\ \x4d\xae\x35\xbe\xde\xf8\x1a\x3c\x77\xdb\x3f\xc7\x8f\x21\x47\x96\ \x3c\x99\x17\x8b\x11\x4e\x4d\xb1\xc0\x10\x6c\x84\xa9\x9a\x32\x71\ \x04\xf9\x02\xe0\x4e\xb6\x15\xa3\x50\x8f\xd2\x37\x2f\xd6\xbc\x78\ \x27\x56\xf8\xc0\x70\xb9\x4a\x19\x33\xd7\x5c\x38\x9b\xb8\x85\xf7\ \x16\x31\xbe\xc5\x5c\x3b\x82\x23\x4f\x15\x7e\x52\xaa\xf9\xe9\x60\ \x12\xa5\x1f\x17\x66\x58\x56\x71\xf9\xf2\x73\xf5\x98\x5a\xab\xea\ \x64\x59\xa6\xe1\x91\x36\xde\xdb\x84\x17\x7f\x54\xa9\xf7\xcb\x5e\ \xbc\xe0\x78\x92\x07\x9f\x97\x2a\x3c\xaa\x68\xc2\xa1\x49\x57\xd7\ \xad\x63\xc7\x86\xe5\xb1\x76\xf1\xfe\x61\xb5\x30\x60\x08\xc5\x2d\ \x4e\x78\x20\x8c\x30\xba\x12\x03\xcc\xbf\x5c\x84\x69\xd0\x16\xc1\ \x38\xf1\x25\xaf\xc0\xe6\x32\xd0\x07\x5e\x26\xcb\x50\xc3\xc7\x78\ \x91\xa1\x8e\xf5\x9e\xb0\xe3\x32\xcf\xac\xf3\x62\x05\x28\xbe\xb8\ \x63\x94\xd3\x46\x51\x31\xb6\x58\x5e\x40\xe8\x04\x9f\x46\xe8\x69\ \x1a\x1f\xa4\x70\x21\xb7\x89\x78\xd4\xe8\xb9\x2a\xf2\xc0\xe1\x88\ \x6b\xcc\xd0\xe2\x08\x2d\xfc\xf0\xc6\x9b\x0e\x9a\x49\x49\x8a\x6b\ \xf8\x61\xe9\x88\x3f\xfe\x80\xc9\xba\x9a\xaa\xaa\xe2\xbd\x28\xcb\ \xd0\xc2\xcb\x23\xbb\xfb\x2e\xbc\x23\x88\x20\x73\xa9\xa5\x7c\x4a\ \x8f\x2a\xad\xf2\xa0\xb2\x0c\x1e\xb2\xc2\xe7\x8f\xfa\xb4\xf2\x6a\ \x4e\xb1\xc0\x8a\x2b\x2c\x00\xfb\x5b\x63\x0d\x4e\x60\xd0\x25\x2d\ \xb8\xd2\xaa\x70\xb0\x09\xd1\x7a\xc3\x16\x10\xc2\x10\x26\x99\xb9\ \xec\xf2\xc5\x16\xc0\x10\x8b\x0b\x31\x50\x52\xd9\x50\x53\xc9\x78\ \xb1\x63\xbd\x3c\x9e\x30\x85\x44\xeb\x9e\x88\xc5\x98\x3b\x54\x1c\ \xc5\x98\xd4\x56\x0c\xc2\xb5\x13\x66\x61\x68\x84\x23\xb5\xf0\xc1\ \x99\x6a\xb2\xc9\x4d\xb7\x56\x74\x13\xc3\x99\x5f\xb5\x70\xca\x0b\ \x33\x6a\xa8\xc6\x8c\x23\xbc\xfe\xd0\xa2\x9a\x4a\x9a\xa9\xc1\x8f\ \x94\x5c\x20\x52\x27\x1e\xd2\xbb\x69\xbe\x2b\xaf\xab\x2d\xca\x28\ \xb5\xd0\xc9\xc8\x23\xce\x6c\xe8\xbb\xa2\x1a\x52\x43\x4c\x2d\xd5\ \xf4\x42\xbe\xaa\x78\x08\xe5\xaa\xad\xa8\xcc\x2a\x3f\x5d\xe0\xa4\ \xcf\xae\xb8\x02\xb5\xcb\x4f\xc3\xea\xd2\x25\x14\x3f\xe3\x5a\x43\ \x2f\xb9\x08\x43\x94\x30\xbe\x1a\x4c\xe6\xcf\x80\x73\x49\x26\x99\ \x4a\x09\x93\x34\xd3\x4d\x29\xfe\xa7\xd3\x98\x9e\xf8\x10\xdb\x3c\ \x08\x89\xa7\xc5\x54\x51\x43\x75\x45\xd7\x7c\xd0\x67\x85\x59\x1a\ \x9a\x67\x9e\x2e\x7d\xc0\xb5\x9a\x5f\x61\xce\xed\x36\x7e\x80\xc4\ \xe7\x88\x66\xc8\x20\xa3\x12\x29\x8e\xa8\x42\xd9\x0e\x5a\xa8\xc4\ \xd9\x97\xa1\x9b\xf6\x3d\x1e\x78\x20\xce\xba\xf6\xa8\xb2\xcd\x19\ \xe8\xbc\x8c\xda\xc8\x70\xbd\x03\xcf\xbb\x2a\x6a\xec\xd9\x0b\x2a\ \xb9\x9e\x13\xe9\x77\xed\xc4\x53\x3e\xfa\x90\xae\x0f\x86\x76\x21\ \x0d\xf4\xe0\xbc\x20\x5c\x23\x94\x50\x38\x69\x4b\x31\xb9\xe2\xce\ \x05\x94\x44\x1b\x6e\x10\x84\x5c\xe8\x92\xd4\xe1\xc0\x08\x06\x25\ \x8b\x8a\x29\xee\x10\xd4\x11\x82\xf1\x02\xdb\x52\x05\x62\xf5\xe3\ \x14\x57\x9b\x47\x9f\x6d\xfe\x4c\x3b\xc1\x07\x1f\x18\xea\x12\x39\ \x29\x9c\x91\x48\x47\x67\x40\xb9\xc6\x99\x32\x88\x7b\x42\x8b\x9c\ \x73\xee\x40\x0a\x2d\xf8\x49\x8e\xd9\xa1\x9f\xe6\x92\xa5\x28\x81\ \xbc\x92\xdd\xaa\xf8\x91\x99\x4b\xa9\xbb\x13\xb7\x0a\x31\x79\xea\ \x49\xcb\xaa\xb8\xd6\xaf\x5d\xb1\xb6\x0a\x14\xab\xaf\xbc\x0e\xeb\ \x5e\xb8\x09\x94\x2b\x2f\x5b\xf8\x2e\xcb\xcf\xb7\xfd\x5c\xb8\x4f\ \xbc\xd6\xc8\x2b\x19\xbd\x6d\x51\x4c\x50\xef\x29\x1c\x6c\xb0\x4d\ \x08\x2f\x3c\xe3\x60\xe2\xb1\x83\x26\x51\x67\x1a\x01\x8f\x55\xe9\ \xff\x18\xd5\x3b\x56\x88\x67\x9e\x20\xb2\xc9\x66\x9b\x84\x64\x55\ \x06\x1c\x3d\xc9\x0c\xba\xf9\x55\xe8\x7e\x75\x84\xf5\x54\xa1\x1a\ \xa8\x4b\xdd\x93\x90\xe3\x82\x6a\x54\x63\x0b\x2f\x23\x92\x19\x6e\ \xf3\x2b\xd2\xb1\x47\x69\xa0\xd1\xc4\x7a\xfe\xc0\x8f\x50\xbc\xe7\ \x36\x44\x8a\x5a\x97\xc0\xc4\x14\xac\xfd\x44\x78\x3d\x3b\xc2\x55\ \xb0\x62\x15\x7a\xc1\x05\x2e\x9c\x90\x17\x58\xf0\xa3\x89\x40\x21\ \x2d\x7a\xd0\xeb\xd3\xa4\x06\x84\xbd\xb7\x15\x8a\x6e\x69\xa1\x9e\ \x2d\x16\x25\x8c\x46\x81\xe0\x4f\xfa\x72\x98\x5e\x7c\xa1\xbd\x1e\ \x60\x28\x7d\x1b\xe2\xfe\x45\x88\x48\xd1\x99\x99\x78\x66\x54\xa6\ \x20\x44\x10\x56\x60\x0c\x07\x38\x60\x55\x2d\x32\xa3\x31\xf4\xe1\ \x83\x20\x9c\x40\x1f\x96\x4b\x93\x17\xca\x20\x05\x1f\x5c\xc3\x07\ \x05\x7c\x0e\x28\x4a\xc8\x0f\xe2\xe0\x40\x0b\x1f\x70\x60\xce\xfc\ \x20\xba\x68\x15\xe9\x1a\x39\xd2\xd1\x21\x83\x53\x85\xf6\x50\xa9\ \x4e\x20\x4c\x9a\x9c\x6e\x53\x06\x2d\xf1\x03\x83\xdc\xea\x16\x77\ \xba\x83\x35\xf4\x60\x8d\x27\x2f\x84\xcf\x9d\xda\xf5\x36\xb8\xb8\ \x0b\x79\x60\x09\x0b\x7e\xe8\x45\x97\xb8\xc0\xcd\x2c\x46\xa4\x1e\ \x5a\xac\xc7\x4a\xb9\xad\xb2\x3f\x13\xea\x4b\x83\x1a\xc4\x37\xbb\ \x78\x2f\x19\xb6\x00\x45\xa5\x74\x31\x8b\x89\x55\x31\x43\x57\x34\ \x05\x0e\x46\xb5\x45\x99\x78\x21\x1e\x41\xd0\x07\x19\x8d\x61\x0b\ \x56\x19\xc3\x18\x02\xd1\x87\xfe\xf4\x87\x01\x4f\x81\xea\x08\x3e\ \x98\x46\x91\x30\x48\x24\x41\x3a\xa3\x76\x55\x90\x02\x19\x00\xf0\ \xc7\x0e\x6c\x04\x83\x46\x2a\xc3\x35\x26\x38\xc1\x67\xb9\x40\x8f\ \x7f\xa8\x8d\x96\xa8\xf4\x12\x1e\xf0\x03\x86\xef\xe4\xa7\x3d\xa3\ \x04\xb5\x2e\x71\x47\x92\x3d\x43\x97\x7b\x7a\x92\x93\x37\x55\xc1\ \x78\x6f\x83\x5b\xfe\x28\x4b\x69\x2f\xfc\xcc\xa9\x2c\xd0\x63\xe5\ \x60\xcc\xd2\xbd\x5e\xfa\xe9\x0d\x0e\xb5\x9e\x61\x04\x73\x30\x23\ \xb6\xa2\x2f\x4b\xb4\xc5\x62\x26\xf5\x97\xbc\xa0\x65\x0f\x9c\xc0\ \xc0\x30\x89\xc9\xa9\x4f\x61\xcb\x14\xb1\x88\x47\x1a\x83\x30\x46\ \x68\xaa\x0a\x8d\x2b\xc8\x46\x1a\x61\x14\x8b\x36\x28\x2e\x48\x3e\ \xf3\xd2\x34\x58\x87\xc1\x5e\x91\x13\x54\x65\xe8\x40\x3a\x01\x90\ \x4e\xd4\xd5\x80\x23\x65\xe0\x47\xcf\xf8\xb1\x05\x3f\xd4\xa0\x59\ \x7e\x30\x83\x74\xac\x5a\x06\x77\xbd\x07\xac\xd0\xd1\xd2\x3e\xf9\ \xd1\x11\x1c\x68\x6b\x5b\x3b\x91\xa4\xd1\xfe\x80\x1e\x7b\xbe\x47\ \x27\x47\x43\x9a\x43\x85\x58\xaf\xaf\xc0\xe0\x0f\xca\x0b\x94\xf5\ \xe8\x62\xd1\x56\x0a\x8c\x7a\xb9\xb0\x28\xd2\xce\xa2\x17\xe8\xcd\ \x65\x2f\x78\x31\xcc\xf7\xc2\x00\x82\x57\x22\xd1\x2f\xbd\x04\x05\ \xe0\x38\xe1\x03\x98\xc6\x14\x32\x57\x0c\xd5\xe2\x62\xa1\x0f\x7d\ \x04\x21\x08\x78\x30\x2d\x35\xa9\x39\xc6\x30\x02\x95\x46\x5e\xb0\ \x83\x17\x66\x55\x86\x79\x54\x92\x75\xbf\x9a\x88\x19\xfe\x90\x07\ \x2f\x9c\x33\xaa\xe8\xf4\x2d\x49\xae\xd1\xa5\xe8\x1c\xc1\x05\xcd\ \x68\x41\x0b\xfe\x9a\x51\x0d\x2d\x68\x4b\xa0\x3a\x79\x13\x25\x59\ \x42\x25\xb4\x86\xc2\x25\x7f\xb0\xea\xb6\xba\x45\xd7\xba\x76\xcd\ \x9e\xce\x85\x0f\xbd\xe8\x35\xc4\xb6\x80\x22\x14\x62\xd3\x05\x5f\ \x03\x45\x9f\x7f\x81\x22\x7a\x65\x21\xd8\x59\xa6\xe7\x16\x52\x86\ \x85\x13\xa0\x40\xa2\xf6\xfa\x43\xbd\xcb\xda\x42\x89\xc2\xf8\x8b\ \x5f\x2a\xab\xd2\x44\xf9\xc2\x07\x83\xe3\x2c\xa7\xf8\x60\x87\x64\ \x82\x2a\x99\xa6\xc0\x80\x68\x83\x10\x0f\x07\xe0\x41\xa7\x63\x2c\ \x99\x4f\x8d\x11\x61\x16\x10\xc2\x53\x23\x38\xc8\x3c\x6a\x75\x8d\ \x13\x04\x14\x14\x07\x24\x1d\x1f\x3f\x10\xd5\xde\x4a\x15\x90\xdd\ \x2a\x52\x43\xae\xe1\x87\x4a\xa0\x04\x4a\x56\xad\x64\x28\x9c\xdb\ \x92\x23\x40\x07\x86\x6c\x7d\xa4\x75\xb7\xc5\x12\x1e\xbc\xd0\xb9\ \xd2\x21\x9e\x42\x61\xe8\xb5\x50\xae\xf7\x6e\x3c\xe0\xeb\x9e\x24\ \x6a\x97\xcb\xc2\xcd\x5f\xee\x35\xcb\xbf\xf4\x0b\xcb\x7e\xd1\x4b\ \x60\x20\x55\x65\x62\xf5\x0b\xd9\x46\xe1\x52\x18\x93\x72\x10\xde\ \x6c\x61\xe0\x03\x47\x86\x0f\xa6\x98\x29\x83\x15\x2c\x13\x3b\xdc\ \x34\xc2\x12\xae\xb0\x03\xe2\x41\xe1\x32\x66\x23\x08\x47\x70\xdf\ \x13\x46\xfe\x30\x0f\xcb\x5d\x8e\x8e\xd7\x75\x46\x2b\xe8\x99\x5b\ \x1c\x5c\x03\x9d\x2a\x86\x2a\xea\x54\xe7\xa5\x22\x69\xae\x1a\x83\ \x2c\x21\x06\xb9\x73\xd6\xa9\xe8\x22\xac\x2e\xd1\x84\xb6\x46\x28\ \x1f\x20\x43\x07\xc7\x0a\x85\xab\x74\xa7\x15\xc3\x2a\xe3\x15\x14\ \xad\x70\x9b\xf3\xf6\x04\x65\x01\x19\x96\xbe\x1d\x1d\xac\xc0\xba\ \x87\x96\xfd\xc4\xfa\x2c\xa0\xb8\x1b\xf4\x9c\x38\x29\x33\x7f\x20\ \x0c\x8d\x6a\x14\xf5\x5a\xa1\xc4\xbd\x25\x46\x60\x53\x5c\x73\x64\ \x30\xb1\xe0\x50\xbd\x79\x04\x37\x9d\x45\x9e\xc5\x38\xe1\x09\xc7\ \xc2\x54\x1f\x53\x4d\x2c\x3c\x03\x95\x23\x60\x00\x03\xfc\xb8\x9c\ \x19\x7c\x10\xa5\x5e\x81\x42\x71\x23\xa8\xc6\x68\x1c\xfd\x47\x32\ \xf8\x21\xad\x69\x65\x5d\x5a\x7b\x66\x9b\x6b\x98\xf0\x2a\xc4\xab\ \x6e\xa7\xab\xdb\xae\x7f\xde\x24\x27\xa0\x10\x61\x8e\x4b\x2d\x1d\ \xe9\x22\x2d\x86\x56\x71\x68\xbb\xc6\xeb\x36\x1e\x9e\x17\xd6\x82\ \xba\xdb\x1b\x9e\x47\x98\x7f\xb5\xc5\x97\x7e\xe2\x21\xf4\x60\x30\ \x18\x8e\x42\x2a\x2c\xbe\xe8\x0b\x80\xfb\x3b\xe6\xbd\x09\x4c\x6f\ \x14\xf2\x85\x2f\xb2\x41\xc5\x67\x3b\x26\xda\xef\x7b\x5f\x33\xaf\ \xd9\xfe\xcc\xd4\x9a\x16\x0f\xb1\xa0\xf0\x28\xa0\x10\xf4\x20\x9c\ \x87\x10\x72\xed\x89\x43\xe6\x81\x47\x7e\xf4\x8a\x1f\x5e\xb0\x19\ \x34\x1c\x1d\x6f\xa9\xaa\x0e\x6a\x51\x9b\xca\x13\x70\x60\x9b\xb4\ \x72\xa7\x4a\x54\xf9\x37\x8e\x3d\xfd\xe9\x22\x57\xc9\xe1\x51\xc2\ \xf1\xdb\x52\x3d\x27\x7b\x7e\x8d\x4a\x76\x79\xf8\xdb\x7e\xed\xd1\ \x58\xd7\xfa\x6e\xfd\x12\xf9\xc6\xed\x0b\xc4\xf2\x42\x5c\x2d\x82\ \xba\x1e\x5d\xfe\x9a\x44\x94\xe3\x52\xb2\x7e\x82\x6c\x99\x11\x93\ \x98\x6c\x6c\x76\xcd\xb2\x78\xf3\x67\xea\xe0\xcc\x6b\xe3\xc1\x99\ \x3a\xed\x39\xb7\x83\xb0\x2a\x28\x18\x23\x1e\x23\x20\xc4\x08\x62\ \xc1\xc2\xf3\xf8\x6c\xb6\x3e\xa0\x48\x70\xdb\x63\x86\x14\x47\xfd\ \xd1\xa8\x83\xc6\x93\xba\xd5\x2d\x8f\xb0\xc7\xa8\x03\x75\xba\xd7\ \xb7\x36\xd0\xab\x88\x1a\xc9\x5d\x13\xab\x58\x45\x78\xf0\x24\xcf\ \x49\xac\x5f\xbb\x6b\x19\x2a\xfa\x2f\x87\x76\xb4\x2e\x81\xca\x97\ \x80\xfa\xbe\xca\xbb\x89\xb0\x2d\x7d\x21\x6f\x58\x66\x2d\x98\xb6\ \x34\x51\x4f\x30\x28\xcc\x2d\xc9\x0c\x3e\xbd\xf0\xb7\x51\x0f\xb3\ \xd4\x0a\x18\x7f\x60\x4c\xd0\x34\x16\x6c\x8c\x30\x69\x27\x6c\x5a\ \xfe\x9b\x72\x5b\xe7\xaa\x89\x47\x3c\x82\x11\xfa\xd0\x0f\x2f\xf7\ \xac\x33\xbd\x18\x7c\x20\xb7\x76\x8b\xf5\x54\xec\xb7\x00\xa9\x1d\ \x7c\xa0\x67\x46\x40\x69\xd6\x2a\xf6\x74\xc2\x23\xac\x45\xba\xde\ \x26\x3e\xe6\x43\x4e\x14\x8a\xa1\xb8\x46\xa1\x42\x41\x84\xdc\x85\ \xed\x3e\xad\x5d\xde\x64\x86\xda\xe5\xae\xda\x42\x88\xe6\xcb\x5e\ \xea\xc6\x2d\x9c\x27\x2e\xee\xc6\x6d\x04\x24\xd9\x5a\xa1\xbc\x04\ \x45\x2f\xfe\xe4\x5f\xf0\x02\xe3\x42\x8e\x2e\x04\x86\x51\xc2\xcf\ \xbf\xf4\x22\x2f\xfa\x6b\x6f\x10\x43\x62\x66\x8e\x43\x96\x80\x54\ \x48\xc1\x99\x46\x2b\xc2\x78\x0e\x0f\xe2\xc1\xe7\xe6\xef\xa6\x46\ \xa1\x07\xd0\xe8\x09\xd5\x83\x2a\xa8\x22\x2a\x1c\xe2\x9d\xb2\xc1\ \x0f\x40\x01\x48\xfe\xa0\x1a\x08\xb0\x00\x59\x8c\x0c\x54\x07\x59\ \xac\x04\x1f\x66\x65\x3b\x32\x0d\x26\x6e\xc2\x02\x85\xac\x4a\xb2\ \x62\xe1\xde\x04\x86\x66\xe8\xf7\xbc\x0b\x86\xee\xaa\x03\x95\x6c\ \x94\xf8\x21\x7b\xfe\x50\x06\xcf\xeb\xaf\xda\xc2\xb0\x00\xc5\xed\ \xb6\x0f\x6e\xd6\x20\xd9\x40\x80\xbc\xca\xe2\xe2\x18\x2b\x19\x5c\ \xed\xbd\x24\x84\xfc\x8a\xed\x12\x1d\x85\x06\x93\xa8\xfc\x86\xfe\ \x10\x14\xd0\xa7\x08\x1d\x03\x1b\x4a\x24\x1e\xb2\xa1\x07\x20\x2c\ \xfe\x9a\x90\xe7\xf2\xec\x34\xf4\x61\x14\xf8\x4c\x8b\x30\x46\xb7\ \x1c\x62\xdc\xae\x01\x1a\x90\xe1\x1a\xaa\xe0\x09\xaa\x00\x19\xc6\ \x90\xf5\xd0\xe9\x03\x78\x46\x26\xb0\xce\x21\xba\x65\x0b\x6b\x87\ \x83\xd6\x2a\xd5\xc6\x46\x4e\xb4\xeb\x4d\x32\x50\x03\x41\xb0\x6c\ \x38\xcd\xa1\xea\x83\x6c\x48\xd0\xd7\x7c\x6d\x0d\xf6\x83\x3e\xf2\ \x25\x42\x72\xa1\x15\x20\x05\x41\x7e\x4d\xac\x40\xc1\x2f\x5a\x30\ \x7b\x12\xa5\x7b\x5a\x01\xa4\x72\x2d\x8a\xbe\x87\xd8\xfc\xab\xd8\ \x32\x11\x2d\xcc\xac\xe5\x5e\xce\x17\x7a\x00\x14\x1d\x43\x16\xac\ \xc3\x14\x6e\x0a\xc2\x9e\xc9\xb4\x2c\xcf\x01\x4a\x6b\x7e\x46\x61\ \x1b\xee\x2f\x08\x66\x21\x16\xa0\x22\x0b\xd1\x03\x2a\x46\x40\x80\ \xb6\x00\x1a\x40\xc1\x25\x8e\x00\xea\x7a\x91\x0c\x73\xa6\x1d\x72\ \x11\x34\x8c\x83\x0d\x97\xab\x83\xec\x24\x27\x90\xe6\x2b\xe6\x83\ \x5d\x48\x32\x04\x63\xe8\x6b\xc4\xaa\x03\xeb\x63\xc9\xaa\x71\x3f\ \x64\x92\x1f\xee\xa6\xd5\xc8\x6b\xd7\x06\x31\x6e\xd6\xf1\x4f\xf6\ \xc0\x2e\x6c\x2d\xee\x38\x0e\x89\xce\x71\xe4\xd4\x11\x2f\xfe\xd6\ \x11\x2f\xcc\xac\xfc\x16\xa5\xd8\x14\xa6\xa3\xf8\x02\x04\x70\x89\ \x52\xf0\x51\xe6\x66\x4e\x14\xab\xe3\x09\x82\x41\xb4\x46\x8b\xc2\ \x52\x51\x1f\xd0\xc8\x09\x4f\x83\xf3\x7e\x42\xff\xc6\x72\xdc\xa6\ \x02\x2a\xaa\xc0\x07\x72\x05\x03\x9e\x00\x1f\x4e\x27\x23\xe3\x2d\ \x67\xa4\xa0\x0a\x1e\x32\x26\x80\x8c\xa0\xb8\x83\x3a\x38\xc8\x2a\ \xea\xd0\xd3\xe0\x05\x69\xea\x10\x4e\xe6\x83\x2f\xf1\xea\x2a\xf4\ \xe3\x6d\xea\x42\x13\x64\x12\xe2\xb0\xb1\x15\x6e\xb2\x86\xf8\x44\ \x1d\x9b\x88\xbe\x32\xea\x1c\xed\x2b\xef\x06\xa4\x7b\x2a\x44\x1d\ \xd7\x51\x12\x91\xb2\xbf\xf4\x22\x19\x8a\x6d\x6f\x32\xaa\x61\x6e\ \x49\x41\x60\x2e\xfd\x38\x8b\x1f\xab\xa3\xa6\xfe\x91\x09\xe5\xcf\ \xe7\xe6\x87\xf3\xfe\x51\x1f\x30\xc0\x14\xea\x00\xf4\x74\xb3\x35\ \xc8\x6d\x2a\xa2\x42\x0b\x5c\xc0\x07\x14\x67\xd1\xe0\x32\x2e\xc9\ \x80\x67\x30\xa0\x0c\x9c\x02\x54\x6a\x43\x92\x12\x8a\xa8\x82\x24\ \x4b\x48\x72\x79\x5e\x42\x4e\xac\x22\x1a\xbb\x02\x07\xfc\x05\xaf\ \xca\x80\x5e\x1c\x4e\xe2\xfa\x30\x14\xcc\xa0\xc4\xb0\x51\x94\xa8\ \x0c\x40\x42\xc1\x6e\xc4\xa7\xa5\x10\xb1\x26\x0d\xe3\xfe\xb2\x48\ \x6a\x60\x38\x8a\x61\xf0\xe2\xb2\xb8\x27\x6f\x98\x48\x51\x94\x6d\ \xc0\xa6\x07\x2a\x11\x6f\x0d\x16\x4f\x1f\x0d\x07\xf2\xee\xef\xda\ \xf2\x8c\xe7\xb8\xcd\xe7\x44\xeb\x09\xef\x0f\xff\xbc\x80\xc3\x08\ \xa1\x0e\x1e\x14\xf4\xc8\x0d\x59\x60\xab\x56\xb4\x80\x38\xbc\x20\ \x1b\x8a\xb3\x00\x73\x26\x1b\x6e\xc4\x07\x3a\x32\x48\x6a\xc4\x3d\ \x86\x2c\xb7\x64\xe2\x19\x61\xc8\x2b\xe0\x85\x30\xbb\x53\x5e\x1c\ \x2e\xaf\x0e\x53\x94\x8c\x6f\x9f\x6c\x72\xbc\x0c\x0e\x31\xf7\x80\ \x3e\xea\x86\xca\xe8\x4b\x5f\x2e\xcb\xd7\x8e\xa8\x2f\xf4\xa2\x30\ \x30\xab\x7b\xdc\x02\xbe\xfc\xe3\x7b\xca\xac\x30\x18\x65\xd9\x0c\ \x44\x52\xfc\xb3\x15\x2a\x51\x35\x39\x6b\x15\x40\x64\xa6\x00\xad\ \x41\x9b\x29\xa7\xb6\x2d\x41\xf3\xec\xfe\x12\x94\x46\x08\x21\x54\ \x4a\x27\x2a\x62\xe1\xea\xa2\xc2\x07\xca\x60\x81\x78\xb1\x43\x59\ \xac\x03\x10\xd0\x07\x46\xc0\x4a\x82\x64\x6b\x7c\x86\x1f\x50\x34\ \x26\x8e\x8c\xe1\x4c\x32\x4e\xb8\x22\x27\xf8\xf0\x25\xc8\xe6\x6d\ \x38\xb0\x6c\xc4\x6a\x0d\xba\xf3\x3a\xdb\xe5\xd0\xa6\xaf\x15\x1c\ \x73\x61\x28\x6e\x31\x30\x4e\x17\x7a\x52\x07\xd1\xfe\xd1\x16\x20\ \xf5\x89\xfc\xe4\x95\x2c\xe5\x30\x16\x23\xf1\x14\x05\x2a\x15\x26\ \x17\x78\x30\x7c\xa2\x34\x6f\xc2\x40\x61\x24\x45\xcd\x8a\xb0\x04\ \x64\xa2\x8b\xea\x00\xe7\x44\x8b\x9a\x0a\xd2\xa6\xc2\xf4\x09\xf3\ \x2f\x37\x23\xd4\x53\x3e\x05\x2d\xe9\x72\x3d\xd6\x34\x58\x9e\xe0\ \x22\xe1\xb4\x0c\xa1\x21\x01\xa1\x33\x3a\xb7\x84\x66\x66\xe2\xc8\ \x5a\xa2\x3e\x2a\x30\x4e\xbc\xa6\xd4\x90\x47\x4e\xc2\x4b\x40\x44\ \xc8\x6b\x02\x51\x0f\x1b\x35\x19\x9c\xc1\x6d\x6e\x54\x06\xf9\xc4\ \xbd\x2c\xf5\x5e\x02\x06\x1d\x49\xca\x2f\xf4\x6b\x52\x1e\xa6\x42\ \x20\xc4\x40\xcc\xc2\x17\xa0\x72\xe5\xa0\x72\x55\x29\xe4\x60\xbe\ \x07\x19\x1e\xa6\x7b\xb2\x80\x2a\x9f\x6d\x15\xaa\xa3\x0e\x42\xab\ \x15\xa1\x40\x55\x9c\xd0\xb4\xba\x54\x4c\x63\xa1\x0e\x22\x54\x3d\ \xcc\xd4\x8b\x74\xb3\x5a\xdc\x03\x47\x44\x54\x48\x30\xb2\x38\x0d\ \xb0\x03\x5e\x80\x5a\x40\x23\x0b\xad\x4b\x92\x66\xc2\x3a\x8f\x86\ \x3a\x97\x31\x50\x8b\x6f\x3f\x96\xa7\x50\x45\x88\xe1\x04\xce\x5d\ \xd4\x0e\x69\x5a\xad\x15\xf8\xe1\x0d\x6c\xb2\xc9\x00\x84\xbe\x9a\ \x0f\x5d\x57\xe9\x7a\xba\x07\x2a\x5b\xc1\x97\xfe\x90\xa8\x2f\x00\ \xa7\xa5\xf4\xc4\x40\x06\x03\x14\xbe\x47\xb2\x4c\x15\x97\xa8\x67\ \x6d\xf8\xcb\xbf\x0c\xc3\x17\x36\x01\x60\xd7\x4c\x60\x3f\x63\x04\ \x14\x52\x1f\x82\x0e\x0a\x60\xf3\xfe\xf0\x60\x41\xe7\x4f\x42\x15\ \x0c\x1f\x42\xc5\x0b\xb8\x6d\x01\x85\x15\x03\xe6\xa1\x7f\x84\x23\ \x59\x56\x4f\x63\x51\x27\x9d\xa6\x01\x03\xd2\x83\x3d\xb6\xc6\x25\ \xee\xb4\x83\x40\xe5\xc8\x30\x50\x5e\x58\xd4\x2b\xf6\xb0\x6c\xc6\ \x22\x46\x61\xd6\xe1\x0c\x8e\x40\xca\x66\x9f\x78\xe5\xd7\x38\xae\ \xee\x72\x72\x67\x55\xc9\x5f\x38\x4a\x40\xfa\x22\x68\xed\xc6\x5d\ \x03\x63\x52\x11\xc4\x52\xf0\xb3\x97\xee\x95\x5d\x17\x04\xfc\xa6\ \xb6\x6a\xf5\xd1\xf1\x3e\x83\x14\xb4\x12\x35\x68\x53\x61\xf3\x6c\ \x41\x75\xb5\x61\x3f\xaf\x33\x70\xa0\x0e\x30\x20\x16\x88\x0a\x6d\ \xd5\xb2\x7f\x94\xf5\x2d\xe1\xd4\xb7\xd2\x29\x1b\xe6\x61\x44\xd7\ \xca\x25\xd6\xc3\x4e\x53\x74\xe1\xb0\xe2\x24\xe3\x64\x24\x1f\x8e\ \xe1\xc4\x22\x94\x76\x6f\x4e\xa0\xaf\xd4\xca\x06\xee\xb2\x51\x40\ \x34\x95\x5f\x6a\xed\xbc\xe8\x86\xee\xf6\xa5\x15\x98\x16\x89\xf0\ \x02\x30\x70\xd0\x52\x09\x26\x5d\x4f\xce\xfe\x61\xfc\x33\x61\x1c\ \x2b\x2f\xfc\xf3\x61\xa8\xd6\x6a\xd7\x8c\x05\x6a\xa2\xa6\xb4\x72\ \x1b\x32\x0c\x4c\x5f\x57\x2b\x1b\x94\xdb\xf2\x2f\x16\xce\xf6\x27\ \x48\xc4\x0b\x1e\x6c\x05\xe8\x08\x03\xe8\xd2\x77\x35\x16\xaa\xa2\ \x2a\x59\x8f\x11\x2a\x9c\x33\xae\x96\x55\xb7\x32\x30\x5e\x00\xf5\ \x2f\xd1\x6e\xbe\x8c\xc7\x4f\xdd\x44\x5b\x5d\xf2\x1a\xed\x66\xbd\ \x34\x15\x2d\x42\x8e\xa3\x02\xe5\xca\x28\xce\x66\xa3\xe8\x29\x7b\ \xe9\x88\x30\xf7\x4f\xca\x55\xe3\xa4\xa7\x61\xfe\xc2\x61\xc2\xef\ \xbe\x52\xaa\xe5\x40\xe1\x04\xe8\xf7\xc0\xec\x97\x26\x32\x46\x2b\ \xab\x90\x7f\x9d\x09\x8d\x72\xee\xfe\x82\xc1\x99\x82\x61\x3d\x4c\ \xc1\x0b\x34\x06\xd0\xd6\xc8\x20\x86\x8c\x2e\x8f\xa0\xd1\x8e\xb5\ \x00\x57\x60\x44\xe5\xe4\x20\x62\x03\x14\xe6\x81\x6f\xfd\xcd\x4f\ \xeb\xa4\x8c\xd5\x8b\x46\x17\xf7\x6b\xc4\xa2\xed\xf6\xc9\x6d\x42\ \xf0\x30\xdb\x22\x52\xb1\xec\xe2\xc2\xc2\x54\x71\x30\x6e\xe6\x22\ \xe4\x0a\xc3\x2d\x9e\xf2\x86\x6f\x78\x27\x71\x30\x07\x91\x16\xbe\ \x1c\x86\x7d\x53\x4e\x6a\x87\x54\x6f\x8e\xf2\x87\x39\x4b\x06\x3e\ \x83\x99\xb4\x72\xb4\xc4\x14\x6c\xb5\xfe\xd2\x40\xef\x4f\x1f\x7e\ \x6a\x04\x84\x31\x0b\xab\x00\x8c\x6c\xf3\x21\xd1\xa3\x0c\x32\x36\ \x8b\xa3\x2a\x1b\x30\x80\x4f\x0d\xd8\x01\x56\x20\x0c\xee\xe0\x03\ \x84\xe1\x18\x83\x84\x6b\xde\x63\x79\xca\x78\x2b\xf6\xb0\x03\x65\ \xd2\x3b\x57\xb6\xec\x48\x89\x8d\x6d\x76\x5c\x0b\x91\xfb\x92\x6d\ \x0d\x60\x80\x2c\xcc\x02\x50\x74\xd2\x30\x04\xe6\xe4\xf4\xe6\x89\ \xb8\x37\x07\x13\x45\xe4\x78\xc9\x3f\x2f\x31\xb2\x7a\xc9\x86\xa3\ \x12\x2f\x78\x81\x91\x89\x29\x88\xdf\x27\x2b\x61\x97\xf2\xb8\x34\ \xf3\xb6\xc1\x09\x6d\x2a\x08\xb6\x61\x14\x66\xa1\x4c\x31\xe6\xf3\ \x6c\x0a\x36\xe8\x14\x26\xd4\x23\x2a\x38\x94\x94\x0b\x70\x1e\xf0\ \x14\x03\x54\x59\x18\xee\x60\x34\xc8\x80\x2d\x65\x62\x91\xa4\x2b\ \x5e\x02\x17\x5e\xca\xe2\xf7\x72\x79\xf7\xc6\x46\x02\xbb\x15\x2b\ \xc2\xab\x10\x2d\x13\x60\xe2\x82\x41\x40\x81\x3f\x42\x0a\x49\x0f\ \x03\x7e\x1b\x24\xb2\x6e\x58\x41\x0e\x71\x31\x2a\xf3\x1b\x0b\x59\ \x89\xaa\xd9\x07\x4d\x93\xf0\x1c\x26\x15\xb8\xb9\x8a\x82\xf8\xf1\ \xbe\xc8\x40\x29\xcf\x75\xc3\x16\xc2\xe2\xe1\xda\xb8\x76\x14\x82\ \xa0\x0e\x84\xb1\xda\x5e\x20\x1e\xfe\x30\xe0\x09\xb7\xc9\x5a\xaa\ \xa0\x9e\xed\x19\x00\xbe\x40\x44\xab\x00\x0f\x7c\x4a\x45\xfa\x39\ \x9d\xe6\x61\x26\xb0\x8e\x4a\xc8\x8a\x96\xcd\x58\x31\x9f\xd7\xf8\ \xae\x95\x79\x38\xad\x2d\x44\xa8\x3e\xb0\x0f\x47\xed\xc6\xbe\x40\ \x6a\x97\xf6\xc6\x86\xf4\x58\x7a\x20\x15\xa4\xe0\x57\xe5\xd8\x17\ \x30\xea\xe2\xbd\x32\xea\x6f\x6e\xa9\x9a\x97\xe8\x9a\x0f\xcf\xbf\ \x92\x41\xa5\xf5\x91\x14\xd6\x23\x18\xdc\x47\x26\x48\x81\x61\x19\ \xf6\x9c\x61\x57\x09\x27\x47\x9d\x61\xb1\xa6\x22\x8c\x35\x66\x25\ \x4d\x35\xe9\x09\xbc\x60\x1a\x8a\x3a\xaa\xa0\x20\x01\x5b\xe3\x63\ \x58\x39\xaa\x3e\xe0\x94\x47\x56\xaa\x55\x96\x96\x01\x37\x50\x47\ \xf0\x6b\x7a\xb9\x4e\xe4\x83\x5e\x68\x92\xbc\x3a\xb0\x67\xc7\x2b\ \xac\xb3\x71\xa2\xcb\xfa\xaf\xcc\xc7\x66\x8d\x92\xa3\x10\xe6\x0e\ \xf0\xfa\xe4\x30\x4b\x5e\x0f\xc5\x34\xb1\x19\x13\x73\x1b\x87\x31\ \x11\x04\xf4\x5a\x1f\x15\x2c\x1e\xbc\xd9\x14\xaa\x6d\x92\xe7\xcf\ \xa6\x60\xb7\xa6\x27\x27\xe8\xf4\xa1\x61\x95\xa6\x54\x66\x61\x35\ \x1a\x54\x8d\x64\xc3\x37\xe7\x01\xde\xec\xb9\xb2\x8f\x20\x16\x10\ \x02\x35\xc2\x00\xde\x8e\x9a\xfe\x26\xbc\x4e\x17\xde\x63\x2d\x42\ \x5b\x5e\x6a\x54\x7a\xeb\xa5\x45\x21\xce\xec\x98\x2f\x94\x1e\x17\ \xa2\x5f\xee\x2c\x48\xb3\x5c\xfb\xc6\xd7\x36\x6a\x30\xc8\xcf\x51\ \xd8\xf7\x2f\x06\xec\x6e\x14\x83\x30\xf6\xab\x3f\x49\x9a\xa4\x3b\ \x9a\xa4\xc7\xec\x5f\xf5\xf1\x1f\x3e\x64\xc3\x3e\xe5\x09\x3a\xa6\ \xce\xb8\xb4\x56\x83\x20\x18\x3a\x46\xb4\xba\x36\x1e\xea\xa0\x8b\ \x6e\x6a\x05\x4c\x26\x1b\x82\x0e\x35\x30\x07\x3d\x8c\xb5\xa8\x2b\ \x9b\xdc\x4c\xc6\xa7\x46\xc1\xbb\x57\x80\x26\xec\xc4\x6b\xd4\x2e\ \x87\xf2\x63\xb4\x47\xe9\x70\x99\xa7\x50\xf1\x4a\x94\xc2\x6b\x66\ \x5d\x4d\x48\x93\xf4\x1b\x69\x4d\xb6\x11\x64\x11\xf9\x25\x42\xfc\ \x73\x68\x2b\x4b\x99\x27\x65\xc9\xe1\xcb\x6e\xca\x77\xa3\x8d\x2d\ \xc0\x1c\xbc\x51\x62\x2e\xc2\x15\xcc\xcd\x66\x62\x56\x9b\x49\x61\ \x0d\xf2\x60\x39\xbc\x0e\x92\x90\x6b\xa1\x60\x1b\x42\x7c\x26\x20\ \xd9\x14\x47\x21\xaa\xbe\x00\x0a\xa0\x61\x05\x86\xd7\x3d\xa4\xc0\ \xbb\xb3\xf8\xa8\x7f\xda\x34\xc6\xfb\x0e\x54\x2c\x0c\xf8\xf6\x26\ \xba\x06\xbc\xc6\x82\x45\x99\xa7\x46\x9f\x37\x5e\xda\xee\x3a\xf1\ \x6a\xcb\x5e\x10\x52\xdd\xfe\xb3\x05\x4d\x75\x73\x65\x5b\xb6\x35\ \x6a\x0d\x9c\xc8\xa4\x4f\xd3\x30\x6c\x38\x19\xd8\xcb\x7a\xc4\xda\ \x5d\xef\xf5\x12\xff\x0b\x2a\xb3\xe0\xd4\x4f\xdd\x4a\x39\xeb\xaf\ \xb7\x08\x6d\x9b\x29\xcf\x7c\x4e\xf3\xa6\x5b\x54\x3a\x66\x16\xb6\ \xe1\x9a\x74\x3a\x56\xab\x2d\xc2\x4e\x20\xc6\x29\x7b\x45\x94\x75\ \x04\x7c\x00\x0a\x8a\xfa\xa8\x8f\x80\x7f\xd2\x48\x95\xb3\xc1\xcf\ \x8d\x9a\x07\xde\x4c\x3b\xad\xe2\x4e\x4e\x09\x3f\x06\x73\x86\x08\ \x04\xed\x8c\x6f\x97\xb3\xd5\x5d\x38\xc1\xa1\xd3\x13\x52\x23\xd5\ \x4f\xec\xf3\x72\x9b\x28\x07\x01\x24\xe4\x94\xd6\xd5\x2c\x95\xe5\ \x14\x24\x89\x5c\x4d\xa3\xfc\x22\x06\x4b\xb3\x2f\x9e\x08\xfc\x8a\ \xed\xd4\x37\x21\x0b\x54\xbd\x08\x59\x3d\x56\x6d\x6a\x16\x9c\xf0\ \x09\xc3\xf6\x20\xa7\xdb\x61\x49\xc1\xb9\x67\x21\xd7\x65\x62\x56\ \xf5\x61\x21\x6f\xaa\x6b\x05\xe2\x72\x14\x58\x48\x88\x3a\xcf\x67\ \x44\xa9\x57\x00\x03\x30\x3e\x1b\x46\xe3\x0b\x38\xfb\x3a\x3e\xad\ \x3e\xda\xce\x79\x70\xbc\x83\xb9\x93\xdb\xab\x91\x79\x92\x8f\x83\ \x5f\x10\x04\x1c\x13\x7b\xaa\xaf\x5e\xc1\xd1\x7b\x29\x6e\x7c\x1c\ \xa6\x89\x46\x75\xa3\xfe\xd6\xd7\xf0\xfe\x22\xdc\x63\xbe\xb2\xd0\ \x8f\x17\x52\x61\xe8\x57\x3a\xc2\x2d\xe6\xf1\x4a\xa5\x4b\x0d\xbb\ \x15\xaf\x89\x7d\xb8\x2d\xb0\x39\x7c\xc1\x3a\x3c\x08\x7a\xda\x93\ \x47\xeb\xc5\x65\x63\xad\x30\x60\x94\xe1\xf4\xa8\x03\xcd\x18\x7c\ \x00\xe3\x5d\xb1\x9f\x8f\x1a\x79\xb5\xf3\x6f\xe7\x84\x3e\x7a\xbc\ \xda\xc3\xab\x25\x5b\x12\xc8\x6f\x88\x07\x5c\xf0\x6d\x9c\xc7\x72\ \x21\xdd\x29\xed\x6b\x5f\xfd\xeb\x4f\x74\x68\x4f\xca\xc2\x54\xa9\ \xb4\x2e\x46\x75\x7c\xaf\xb9\x8f\x31\xf7\xdd\xd7\xa0\x11\x54\x7a\ \x9b\x8b\xde\xe8\x25\xa3\x26\x9e\xa0\x36\x49\xbc\x8c\x1a\x9e\xfe\ \xf0\xef\xfe\x48\x41\xe1\x31\x86\x60\x0d\x74\x16\xd6\x08\x9b\x2e\ \x27\xe2\x2d\x74\xeb\x49\xf9\x0b\x4e\x40\xe3\x05\xc2\x01\x62\x3c\ \x45\x3a\x7e\x05\xf6\x94\x3d\x6e\x9c\x2b\xd4\xbe\xc7\x0b\x77\x86\ \x7e\x7c\x03\xc1\xf3\xd0\x6f\x9f\xcb\xc4\x57\x18\x1c\x93\x40\x38\ \x0e\x2a\x91\xe1\x03\x90\xa1\x15\x6c\xa8\xef\x7d\x92\xa4\x5c\x6d\ \x2e\xfc\x66\x6f\x8e\x28\x73\xb3\x41\x18\xb2\xa1\x15\x2e\xc4\xf1\ \xf5\xf1\x7e\xa5\xf0\xd6\x3d\xfc\x60\x95\x98\x4b\xf3\x6f\xc1\x9e\ \xf8\xe0\x71\x2e\xfe\x1e\x4a\xe6\xa7\x82\x60\xbc\xb3\xc1\x07\x3e\ \x08\x07\xe6\x81\xeb\xe1\xb2\xc5\x11\xa2\x7f\xc8\xbe\xa9\x01\x20\ \x0c\x3e\x1e\xf6\x31\x18\xc7\xf9\x2a\x3f\xac\xa2\xa2\x74\x02\xf7\ \x01\x82\xdf\x9a\x50\xba\x34\xfd\xd1\xc5\x83\x13\x8f\x50\x03\x15\ \x2e\x04\xd5\x4a\x58\x2b\x50\xa1\x2a\x82\xb2\x95\x0c\x84\xb0\x0e\ \x1f\x40\xbc\xd1\xa4\x09\x86\x2e\x5d\x9c\xd6\xb4\x6a\x95\x0b\xd4\ \x9a\x35\x6f\x30\x82\xb0\xb5\x22\xdb\x89\x15\x27\xb2\xfd\xbb\x89\ \x33\xa7\xce\x9d\x3c\x7b\xfa\xfc\xd9\xf3\x49\x9e\xa1\x43\x9f\xc4\ \xd3\x37\xca\x58\x90\x20\x48\x47\xe9\x9b\x15\x2f\x5e\xac\xa8\xf1\ \x48\xd5\x31\x85\xd5\x54\x1e\xac\x84\x46\x04\x0b\x72\x22\xc8\x8b\ \x78\x27\x9c\x86\x5d\x01\xed\xce\x8a\x2a\x38\xf2\xe0\x98\x07\x0d\ \x80\xdc\xb9\x74\xeb\x42\xf3\x31\x4f\xdf\x8a\x15\xa3\xee\x7c\x51\ \xdb\xf7\x0b\x34\x0c\x6d\x89\xfe\xf9\x63\x10\xe4\x48\x90\x9a\x0a\ \x32\x6e\xcc\x63\x61\x99\xc8\x15\x2b\x0e\x2c\x33\x32\x61\x19\x8b\ \x03\x47\x32\x6c\x05\x02\x84\x4a\xcb\x27\x93\x25\x43\xd6\x01\x19\ \x28\x5d\x22\x49\x96\x5c\x93\x6b\x22\x28\x1f\x92\x6a\x6e\xcb\x02\ \x34\xb7\xee\xfe\xdd\xbc\x73\x0a\x25\xfa\x84\x50\xbc\x6c\x4e\x97\ \x22\xd5\x67\x4c\x1f\x55\xaa\xa4\xb0\x5e\xd5\x9a\xa7\xce\x88\x58\ \x79\xb7\xe9\x9b\x17\x2b\xd6\xac\xa5\x3e\x1c\x64\x0b\x33\xca\x47\ \x95\xa1\x6f\x47\x7d\xa9\x8b\x1e\xc0\x17\x1f\x18\xe6\xcd\x73\xc0\ \xf7\xce\x9d\x51\x0e\x7c\xc4\xb4\x75\xa4\xf0\x50\x83\x88\x11\x2f\ \x36\xa8\x0b\x62\x8c\x1d\x24\x19\x0f\x7f\x2c\x14\x4a\x19\x02\x85\ \x12\x19\x82\x0c\x8d\x46\xd2\x83\x27\x81\xa2\xd2\x1a\x14\xda\xb2\ \xd2\x69\x61\xb4\xf2\x46\x41\x23\x95\x74\xc2\x26\x3d\xf4\xd0\x08\ \x2f\xbd\x9d\x88\x62\x8a\x39\xc9\x42\xd4\x56\xb1\xe8\x43\x9c\x3e\ \xfa\x04\x11\x0f\x53\x32\x46\x15\x4c\x54\xa4\x10\x52\x47\x2c\x3b\ \x0a\x65\xca\x74\xc1\xcc\x62\xcc\x28\x3d\xd0\x38\x1d\x06\xf1\xf8\ \xe0\x43\x36\x7e\xdd\xc1\x9e\x17\x38\xe0\x70\xc4\x0a\xe7\xa5\x27\ \xd7\x17\x2b\x1c\x31\x02\x06\x18\xf8\xd0\x97\x7c\xa3\xd8\xc2\x9e\ \x97\x3c\x78\xd1\x22\x0e\x23\x1d\x34\x52\x80\x8a\x3d\x56\xd0\x81\ \x15\x19\xc8\xc3\x66\x15\x6d\x96\x90\x83\x95\x85\xa2\x90\x45\xb6\ \x5c\xb4\xd2\x83\x29\xf9\x12\x91\x30\x20\xac\xc1\x47\xa2\x89\xf2\ \x62\xa2\xfe\x8a\x8e\x3e\xca\x1b\x2f\xbf\x3d\x51\x45\x10\x7c\x25\ \x17\xd5\x54\x41\xf4\xa0\x5c\x30\xb1\x78\xba\x63\x8e\xf1\xb0\xa0\ \x95\x29\xda\x45\xb5\x5d\x10\xdb\xc5\xe3\x29\x77\x7c\x7d\xf1\x57\ \x36\x2b\xf8\xe0\x05\x3e\x23\x80\x79\x65\x5d\x50\xac\x30\xc2\x08\ \x47\x60\x80\x87\x93\x7f\x8d\xb2\x57\x7d\x30\xad\x30\x0f\x9a\xe4\ \xb5\xc9\x2c\x0c\x00\x3a\x96\x98\x41\xa1\xf0\xe3\x10\x9e\x7c\xce\ \x69\xd9\x9e\x7c\x72\xf2\x20\x85\x16\xae\x21\x90\x85\xb9\xf8\x90\ \x4a\xb9\x8c\x36\x0a\x69\xba\xea\x02\x25\xa9\x50\x84\xbc\x58\xa4\ \x72\x23\xf4\x78\xd4\x28\x41\x78\xfa\xee\x8e\x51\x6d\x13\xc4\x73\ \xda\xc9\xf8\x42\x2c\x76\x8c\x50\x63\x36\x32\x9e\x80\x47\x3c\x5f\ \xca\x77\x87\x5c\x77\xe0\xd1\x16\x95\x41\x64\x03\xc5\x95\x50\x10\ \x8b\x41\x92\xf6\x41\xa1\x1e\xb1\xc4\xc6\x54\xb1\x60\x55\xfc\x86\ \xcf\x81\x3c\x30\x2b\xa0\x80\x8d\x39\xf6\x47\x65\x55\x50\xc6\x60\ \x82\x31\xef\x89\x60\x9f\x16\xaa\x44\x61\x19\xb3\x9c\xcb\xe8\xba\ \x3e\xff\xfc\x93\xa4\x79\x78\xa1\xe9\x0a\x33\x8e\x80\xd5\x08\x41\ \x6c\x63\x8c\x54\x3d\x92\x92\xdd\x2c\x32\x06\xd3\x55\x3c\x3d\x24\ \xf7\xfe\x54\x2c\x43\xd5\x31\xdc\x28\x49\xe9\x83\x41\x2c\x18\x38\ \x60\xde\x79\x50\x38\xa0\xdf\xd0\xb1\xf8\x10\x44\x7d\x18\x1c\x51\ \xc5\xda\x35\x36\x95\xd4\x5e\x5e\xe7\x9a\xcd\x78\x43\x95\x8c\xd0\ \xc9\x2a\x1f\xd4\x9f\x48\xfd\x71\xcb\x60\x64\x93\xd1\x4c\xf8\xc9\ \x09\x69\x81\x41\x19\xf3\xf8\xb0\x09\xd0\x92\x4f\x9e\x1b\x2f\x76\ \xbc\x1b\x55\x53\xf1\x68\x85\xcf\x8b\x4e\x55\x35\x55\x54\x36\x82\ \x7e\x94\x75\x50\xcd\x12\x8b\x29\x4f\x78\x51\xef\x36\x50\x34\x1d\ \xb7\x0f\xc6\x30\x6c\x0c\x61\x5a\xe1\x60\x0a\x3e\x38\xf4\x1a\xcb\ \x11\xef\x8a\x1d\x0f\x1e\x78\xf8\x90\x9d\x03\xf0\x85\x39\x17\x14\ \xf3\xe8\xa7\x7b\x83\x01\xc6\x09\x20\x48\x6c\x66\x76\xa7\xe1\x33\ \xcf\xfc\xc2\x0b\x47\x64\x8f\x2e\xe5\xde\x7f\xaf\x13\x2f\xb2\x84\ \x6e\x4c\xbc\x84\x68\xc5\xf5\xe7\xd9\x1d\x25\xe3\x53\x99\x06\xa3\ \xcf\x36\xa3\xb0\x9a\x1d\xd4\x53\x49\x4d\x77\x10\xd9\xc5\x52\xa4\ \x31\x78\x54\x41\x08\x42\x00\x2b\x3b\x00\x1c\x01\x21\x88\xb6\xbf\ \xec\x00\x0b\x0f\x62\xc3\x43\x7c\x72\x05\x80\xbc\xb5\x48\x77\x26\ \x8b\x53\x7f\xd8\xa4\x98\xbe\xd5\xa9\x7a\x0b\xe1\x81\x16\x24\x01\ \xfe\xc2\x59\x48\x02\x7c\x24\x2c\xe1\x4e\x78\x21\xba\x22\xcd\xaf\ \x54\x9e\xeb\x54\xe6\x9c\xa2\x1c\x56\x95\xce\x5e\x54\x23\xc5\x74\ \x66\xd8\x94\x8b\xe9\x83\x81\xb1\x70\x80\x31\x1c\x10\x8b\x77\x91\ \x6d\x3e\x0e\x90\x8a\x01\xd7\x27\x95\xb8\xf5\xd0\x78\xf0\x59\x81\ \x5f\xea\x92\x8d\x11\xa4\xe9\x30\x07\x7a\x1e\x15\x31\x08\x19\xc5\ \x55\x64\x1e\xea\xc0\xc4\x2c\xf8\xb0\x8c\xee\x99\x70\x8c\x26\x44\ \x21\x1e\x9a\x12\x04\x42\x0c\x45\x38\x4e\x81\x4a\xe6\x8e\x93\xa9\ \x17\x6e\x23\x1e\x57\x21\x04\xd4\x88\xe4\x35\xd7\x5d\x4c\x7d\xb1\ \xc0\x43\x11\xf7\x37\xbb\xf9\x28\x25\x3b\xf4\x0a\x42\xd8\xba\xe2\ \xc0\xf9\x30\x0c\x82\x72\x19\xc5\x11\x5a\x74\x18\x1c\x00\xae\x31\ \x6c\x02\x5c\x80\x38\xc1\x89\x65\x28\x8a\x0f\x62\x24\xa3\x27\xc7\ \xc8\x0b\xe3\x14\x69\x73\x5b\x21\x18\x8d\x34\xd5\xbe\x1b\x49\x45\ \x6a\xf2\x53\xce\x55\x08\x36\x43\xd7\x79\x4d\x7d\xbf\x33\x5e\x76\ \xf0\x30\xbb\xaf\x45\x65\x3a\x62\x8b\x85\x01\x4d\x41\x08\x3c\x04\ \x46\x3d\x58\x82\x02\x06\xa6\x78\xc5\xc3\x3c\xaf\x0a\xba\xe0\x24\ \xcf\x3e\x09\xcd\x68\xfe\x23\x94\x4b\x49\x4e\xea\xf2\xf0\x3b\xfe\ \xa9\xb0\xaf\x7d\x4b\xd1\x26\xdd\xf4\x41\x35\x7a\xc9\x48\x7e\x3a\ \x54\x65\x00\x09\x61\x29\xa5\xd4\x28\x5e\x34\x4a\x98\x2f\x09\x79\ \x3e\x1c\x64\x67\x76\x59\x82\x15\xac\xe6\xf2\x85\x51\x1c\x13\x38\ \x87\x79\xd9\x61\x78\x76\x2e\x69\x0a\x34\x9a\xa1\x44\x8e\x72\xce\ \x19\xba\xb9\x8d\xc2\x3a\x34\xaa\x91\xe8\xf4\x01\x85\x8b\x39\xad\ \x47\xf8\xe3\x18\x14\x82\xb0\xa3\x3a\x40\xad\x8e\x41\xf0\xda\x0e\ \x83\x50\xbe\x1d\x0a\x4f\x2a\xfb\xeb\x4a\x00\xa7\xe3\x43\xaf\xf9\ \xc5\x9e\x0e\x9b\x07\x5b\x9e\x60\x87\x98\xda\x61\x15\x03\xad\xa9\ \x4d\x71\xc2\x8b\x46\x60\x2d\x1e\x01\x4c\x28\x52\x22\x6a\xaf\x87\ \xb6\x6f\x14\x40\xad\x8a\x73\x32\x57\xd4\xac\x00\x33\x2b\xb8\x54\ \x8a\xf0\x92\x83\x35\x06\xd6\x81\x10\x9e\xd2\xa6\x54\xce\xe8\xbf\ \x1e\xae\x54\x2e\x50\xd8\x46\x30\x58\xc0\x02\x4c\xdc\x74\xac\x64\ \xe5\x45\x48\x49\x1a\x15\xac\x56\x0c\x0a\x31\x3c\x4a\xbc\x7e\x2a\ \xd1\x3a\xe0\x63\x2b\xa6\xc8\x51\x2b\x9b\x43\x14\xe8\x98\x2a\x39\ \xc2\xc3\x43\x35\x07\x99\x34\x54\x12\xa7\x48\xf3\xc1\x03\x21\x66\ \x71\x1b\x28\x64\x21\x15\x64\x6d\xac\x63\xcd\x2a\x23\x06\xfe\x9e\ \x71\x46\x39\xfc\x9c\x42\xf3\x48\x54\x89\x42\x67\x2b\xc2\x81\xe3\ \xf9\x5a\x04\xcc\x3e\x2e\x25\x08\x09\x0b\x1e\x03\xcf\x07\xcc\xa3\ \x38\x69\xad\x59\x68\x6d\x23\x38\xe9\xd8\xd8\xc6\xd6\xac\x21\xb5\ \xd1\x68\x8d\x01\x54\x19\x19\x67\x8f\x5e\x8b\xa8\x3e\x52\xa7\x54\ \xe1\x2c\xed\x73\x58\xc9\xeb\xbb\xb0\xba\xc3\x92\x4e\xb5\xa7\xb1\ \x68\xc4\x62\xcb\xc5\x58\xd9\x4a\x57\xb6\xbc\x90\x51\x71\x48\x9b\ \x30\xa6\x64\x96\xa1\xc8\x99\x25\x6e\x75\x78\xcd\xd0\xe6\x08\x29\ \x00\x80\x02\x29\x8d\x1b\x0b\x90\x5a\x33\x3b\xef\x92\x05\x40\x3b\ \x39\xdd\xf8\x96\x35\x95\xa7\x5c\x5f\x91\xa0\x70\x87\xe4\x54\xf3\ \x6b\x74\xe3\x57\x1d\x49\xf1\x46\x8b\x9e\x37\xaf\xfc\xf3\x9a\x31\ \xde\x2b\xdf\x04\x27\xb8\xa0\x4d\x4b\x60\xbd\x88\x7a\x5d\x1b\xb5\ \xef\xbe\xa3\x30\x2c\x12\x8f\x62\x51\xad\xc5\xd4\x14\x57\x21\x85\ \x82\x3f\x0c\xe2\x9c\x34\x62\x9b\x71\xd4\x2e\x84\xf5\x6b\x50\xe3\ \x64\x96\xad\x68\x8d\xc7\x2c\x1a\xa1\xd8\x2c\x2c\x81\xa6\x21\xae\ \xb1\x8d\x0b\xca\x4d\x51\xf6\x76\x3e\xc8\x89\xea\x4f\x61\x75\x07\ \xe5\x2c\xa1\x11\x44\x2e\x91\x8d\x8f\x8c\x64\x1c\xf7\x42\x18\xaa\ \x49\xe9\x8b\x81\xcb\xa7\x14\x90\x8e\xa2\xb5\xad\xcd\x29\x7c\x91\ \x8c\xe5\x0f\x43\x76\x46\xde\xc5\x1a\x61\xf9\xcb\xb3\x72\x65\x79\ \xcc\x63\xe6\x85\x75\x9e\x0a\x55\xdd\xc6\x8f\x17\xa9\x60\xf3\x95\ \xc9\x0c\x67\x1b\x9f\x59\xc2\x6e\x0e\x68\x9c\xef\x0c\xcd\x80\x00\ \x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\ \xf0\x00\x87\x04\x02\x14\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xd9\x88\x8d\x94\x4a\x35\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x5e\xc9\xf6\xff\xff\xff\xff\xff\xff\xde\x93\xb2\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xcc\x47\x8f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x57\xa9\xe3\x12\x27\xa7\ \x0f\x27\x67\xd8\xc9\xe6\xff\xff\xff\x08\x68\x9b\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf7\x89\xb9\xff\xff\xff\x9b\xf2\ \xfc\xff\xff\xff\xf7\xa7\xb7\xff\xff\xff\xff\xff\xff\x13\x29\xdf\ \xba\x88\xb6\x4e\x68\xf8\xff\xff\xff\xff\xff\xff\xfa\xc8\xe7\xd9\ \xe8\xf9\x22\x45\xea\xff\xff\xff\xee\x68\xa6\x98\xc8\xfa\xff\xff\ \xff\x0b\x47\x71\xff\xff\xff\xff\xff\xff\x7d\x88\xad\xff\xff\xff\ \xff\xff\xff\x79\x88\x3b\xae\x99\x5b\xff\xff\xff\xda\x91\xf3\xd0\ \x29\x27\xf7\xb2\xf0\xff\xff\xff\xb6\xb3\xf2\xb7\xc8\xf2\xfb\x8e\ \x5e\xff\xff\xff\xff\xff\xff\xb4\x68\xae\xf9\xe9\xf0\x6b\x6a\x22\ \x4a\x4b\xe4\x7a\x88\x73\x24\x06\x4c\xff\xff\xff\xff\xff\xff\x6c\ \x69\xec\xff\xff\xff\x0b\x18\x1c\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x39\x56\xf6\x95\x93\xf4\xff\xff\xff\x0a\x18\x62\x96\x27\x37\ \xff\xff\xff\x10\x38\x67\xff\xff\xff\x97\xb1\xf8\x74\x89\xf6\xd6\ \xd8\xed\xfb\xce\xab\xff\xff\xff\x07\x15\xdc\x39\x63\xf3\xff\xff\ \xff\xff\xff\xff\xbb\x8e\xf3\xff\xff\xff\x5c\xb8\xeb\xff\xff\xff\ \xfb\xfd\xfa\x7b\xe9\xfb\xff\xff\xff\xb7\xd8\xfa\xff\xff\xff\xff\ \xff\xff\xfa\xd8\xed\xda\xae\xf8\x7c\x95\x45\xff\xff\xff\x32\x49\ \xea\xf5\x99\xb5\xff\xff\xff\x35\x57\x1e\xfb\xb7\xbd\xb2\x68\xee\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x0b\x12\xc4\ \xe8\x98\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf4\x27\x25\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x68\xfa\xff\xff\ \xff\xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\xe9\x56\x9a\ \x79\xcb\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x75\ \x12\x52\xfa\xeb\xb9\xfa\xad\x87\xff\xff\xff\x92\x6e\x73\x78\xb4\ \xf9\xff\xff\xff\xa4\x1a\x60\xf7\x90\x8b\x58\x92\xec\xf3\x73\x6c\ \xff\xff\xff\x27\x7b\xc9\xff\xff\xff\xff\xff\xff\xf3\x7a\xb4\xff\ \xff\xff\x43\xb6\xee\x9a\xd8\xfb\xcf\x38\x2c\xff\xff\xff\x96\x37\ \xd5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x4e\x59\x9f\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x77\xa7\xff\ \xff\xff\xff\xff\xff\x59\x77\x62\x19\x37\xdf\x58\x76\xfa\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x47\x5b\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x68\x7a\xf5\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x34\x58\x63\xb1\x58\x36\xb5\x58\ \xb1\xff\xff\xff\x73\x79\x9c\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf4\x38\x35\xff\xff\xff\xff\xff\xff\xaf\x59\x60\x72\x59\xf0\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7f\xfb\xfc\x96\x97\ \x51\xdd\x97\x93\xff\xff\xff\x98\x98\xb3\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\xfb\xfc\x7f\x97\xb3\x6f\ \x78\x27\xff\xff\xff\xff\xff\xff\x98\x98\x77\x7d\x98\xf9\xb0\x78\ \xf9\xff\xff\xff\xff\xff\xff\x71\x58\x65\x92\x5a\xfc\x92\x78\xf5\ \xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\ \x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x44\xa8\x48\xd1\xc4\x8b\ \x18\x33\x6a\xdc\xc8\xb1\xa3\xc7\x8f\xff\x14\x0d\xba\x45\x04\xa4\ \xc9\x93\x28\x53\xaa\x5c\x99\x50\x24\x91\x17\xf7\x3e\x1d\xb0\xc8\ \xb2\xa6\xcd\x9b\x38\x6f\x8e\x64\x87\x03\x0e\xba\x9f\x0b\x06\xe5\ \x1c\x4a\xb4\xa8\x51\x85\x15\x15\xdd\xfa\x86\xe3\xa7\xd3\x9f\x70\ \x88\xd0\x3c\x4a\xb5\xaa\x55\x90\x49\x15\x79\x72\xb5\x69\x13\xba\ \x14\x4f\x9d\xa2\x9a\x7a\xb5\xac\xd9\xb3\x48\x07\x11\x31\xf0\x82\ \x8c\xbc\x37\xf2\x36\xa5\x98\xfb\x14\x2c\x8e\x92\x68\xf3\xea\xb5\ \x5a\x71\x24\x12\x24\x38\xba\xca\x1b\xdc\x55\x2e\xdd\xaf\x5d\x53\ \xdc\xda\xcb\xb8\x71\xcd\xa4\x44\xb0\xd9\x81\x9b\xb8\xf0\xe0\xb8\ \x86\xe5\x7e\x4d\x21\x37\x08\x59\xc7\xa0\x43\x63\x4c\x2a\x8e\xdd\ \xdc\x4d\x97\x0b\x0b\x4e\x3d\x97\x2e\x67\xce\x72\xf0\x8a\x9e\x4d\ \x9b\xa1\x48\x71\x06\x8e\xc4\xe5\x8c\x9a\xb0\xea\xc1\x94\x5b\x9f\ \x16\xee\xe9\x73\xed\xe3\xa1\x93\xaa\x3d\x82\x04\x71\x6a\xd5\xa8\ \x7f\xbf\x79\x63\x78\x73\x6b\x74\x9b\xb0\x19\x47\xce\x1d\x6d\x5f\ \x22\xb7\xe6\xfe\xc1\xf1\xe9\xb4\xf7\x65\xcc\xbc\x13\xbf\xa5\x5c\ \x17\xec\x57\x03\xdb\xbb\xcb\xa7\x2a\xf2\x16\x93\x7b\x4f\x7d\x6a\ \xe6\x0c\x7c\xba\x3c\xde\xbb\x71\x36\x1d\x75\x61\xa1\x63\x8b\x2d\ \x29\xd8\xb2\xd8\x7c\x0c\x1e\x25\x92\x22\xe2\x88\x41\xde\x66\xe8\ \xf8\xd4\x9a\x65\xeb\x9d\x17\x20\x6a\xfe\x81\x35\x1e\x1c\x08\xca\ \x91\xe0\x82\x0d\x96\xf8\x58\x56\x48\x20\x58\x20\x54\x3f\xf1\x76\ \xda\x7a\x70\xad\xb7\xdf\x79\x5e\xc1\xb1\xc0\x02\x07\xa6\x20\x22\ \x0e\xf1\x99\xe8\xa3\x46\x59\xdd\xc2\x4a\x13\x98\xad\xe8\xd4\x78\ \x29\x6c\xd8\xdb\x80\xfe\xc9\x25\x18\x5c\x29\xc0\x51\xcb\x30\xb0\ \xe0\x68\x0b\x88\xb6\x08\xf5\xe3\x96\x40\x8a\xe4\x89\x38\xf7\x90\ \xe1\x5f\x6a\x46\x56\xf8\xd5\x60\x60\xf1\x07\xe3\x80\x99\xa5\x26\ \x25\x95\x0b\x80\x48\x97\x38\x3d\x72\x69\x27\x45\x83\x78\xc2\x4a\ \x1f\x9b\x8c\xc7\xe1\x80\x45\x96\x29\x98\x61\xfc\x31\xd9\x24\x76\ \xac\x49\xb9\x40\x85\x51\xfe\xf4\x89\x96\x77\x46\x6a\x90\x45\x8a\ \x80\x07\x42\x19\x4d\x4c\x27\xd7\x27\x49\x5e\xd6\xa4\x70\x9b\x11\ \x1a\x57\x5c\xce\xad\x09\xe5\x4f\xe6\xed\x56\x9d\x53\x77\x49\xea\ \xaa\x40\xfe\x49\x7d\xe3\x49\x8c\x4c\xd6\xe8\xe2\x73\x84\x86\x0a\ \xdd\x6e\xce\x19\x4a\x1d\x92\x9b\xc4\xa8\x66\x9f\xee\xa5\x70\x4f\ \x9d\xaf\xca\xd7\x97\x2b\xae\xf4\x31\xe6\x9a\x4e\x12\xa6\x26\x7a\ \x84\xa6\x17\x9d\xb4\x85\x32\x39\x18\xa3\xc1\x42\x99\x24\x5c\xd6\ \xa5\xc0\x0e\xb2\xc9\x1e\x57\x9f\x3a\x2b\xf8\x6a\x28\x66\xc1\xa2\ \xd9\x29\x7a\xa7\x25\xc6\x5f\x65\xf2\x76\xab\xad\x57\x7f\xfe\xc7\ \xa1\x3c\x57\x3a\xa9\x18\xb9\xe5\x36\x06\xd9\x2d\x7d\x90\xd1\x95\ \xb6\xa6\xc6\x78\x30\x65\x4b\x92\x8a\x18\xa1\xd1\x01\xc8\xee\x9f\ \x03\x9e\x36\xe6\x93\xd4\xd9\xa2\x1a\x7c\x01\x23\x47\x5a\xba\x9a\ \xce\x05\xa3\x5c\x09\x8f\xfa\x96\x6f\x9f\x22\xfa\xdf\xc3\x96\x01\ \x4a\x18\xb4\xf6\x2a\x0c\xe3\xcc\x7d\x00\xdc\x71\x59\x49\xb9\x62\ \x40\x1f\x6b\xfe\x27\xa0\xa6\xd8\xa9\x4b\x98\xb0\xf9\xa6\x29\x2d\ \x76\x2d\x23\xbc\xf0\x98\xeb\x26\xcc\xa4\xcd\x37\x3b\x28\xd2\x37\ \x7a\xe8\x01\x28\x5c\x63\x8a\xdc\xa4\xd3\x94\x5d\x96\x2d\xa9\x00\ \x42\xec\x69\xad\x18\xfb\xe7\x2b\xd7\xd3\x19\x10\x75\x5e\x59\x11\ \xb1\x42\x1d\x99\xae\x7b\xef\xcf\x63\x9f\xad\x70\x61\x80\xc6\x0b\ \xef\xfe\xb4\x19\x1a\x56\x32\xda\x86\x36\x01\xf5\xda\x2b\xc5\x5a\ \x41\x13\x71\xab\x8b\x35\xa0\x78\x33\xad\x38\xc3\xab\x29\x5c\x2a\ \xbd\xa3\x62\xed\x73\xa7\x8b\x77\xfd\x38\x93\x82\x13\x2e\xb5\x56\ \xae\x80\x60\xf7\xd9\xfd\x31\xdc\xf3\xe3\xfa\x9e\x9c\x37\xaa\xbd\ \x41\x47\xf1\x7f\x70\xa8\x49\x36\xe0\x03\x36\xe1\xca\xe0\x9e\x77\ \x94\x94\x1e\x3c\x67\xbe\xb9\xcb\x4d\x52\xfc\xbb\xcf\x33\x07\x77\ \xa6\x6f\xbf\xf5\x2d\xf1\xef\x9b\xd7\x9c\xfb\x89\x15\xb9\x32\x43\ \x1d\xcc\x2b\x5e\x77\xe5\x57\x5b\x4f\x32\xc2\xd2\xb6\xee\xba\xb6\ \xcb\x57\xaf\xae\xf3\xcf\xa3\x14\xeb\x2d\x88\x8b\x3f\x3c\xe3\xc2\ \x8f\x4e\x5d\xb6\x66\x53\xe7\x3a\xf2\x33\xfb\x4d\xfb\xef\xac\xe0\ \x5e\xfe\x42\x7d\x6d\x05\xb2\xfa\xcc\x83\xd9\xfd\x82\x97\xaf\x99\ \x51\x6b\x50\xc2\xf3\x59\xfb\x00\xf8\x06\x8e\xed\x6f\x23\x5e\x32\ \x45\x1f\x12\xc7\x40\x00\x36\xae\x7a\x2f\xcb\x50\x86\x20\x87\xab\ \xfa\x61\x4e\x71\xe9\xdb\x9c\x1e\xa4\xf2\xc0\x89\xf4\xc5\x0b\xfc\ \x00\x41\x29\x2a\xc8\xc2\x0e\x2d\x70\x73\xa9\xaa\x5b\x8c\x68\x54\ \xb6\xae\x99\xaa\x09\x64\xb8\xc7\x35\xc0\x80\x8a\x23\x50\x30\x70\ \xfe\xc5\x29\xe1\x43\xfa\x52\x29\x27\x5c\xe3\x1a\xf3\x18\x60\x0b\ \x81\xe7\x1b\x25\xc6\x8f\x71\x1a\x3c\x4f\xf8\x64\xf8\x06\x1a\xb0\ \x83\x1f\x56\x00\x80\x16\xad\xc0\x0f\x75\x90\xe1\x87\x03\xba\x9d\ \x10\xf9\xe7\x92\x5b\x60\x03\x08\x50\x98\x87\x31\xc0\x70\x8d\x98\ \x2d\x31\x80\x17\x7b\x21\x06\x97\x34\x43\x85\x85\xcf\x57\x64\x40\ \x45\x16\xb7\x48\x0a\x7e\xa0\x42\x1d\x7d\xc0\x94\xba\x40\xa0\xbf\ \xa8\x9d\xf0\x00\x41\x48\x07\x10\xf8\xc0\x07\x63\xdc\xc1\x18\x3a\ \xb8\x86\x2d\xde\xa8\x3e\x03\xca\x71\x78\x43\xcb\x1e\x07\x4b\xc7\ \x39\x28\xec\x11\x00\xa4\x40\x45\x19\xca\x50\x0a\xc4\x81\x71\x40\ \xd8\x18\xe3\x40\x94\xe3\x85\x03\x58\x81\x0f\x4e\x48\x47\x3a\xe8\ \xc1\x07\x30\x34\xf2\x0e\xc3\x30\xc6\x27\x28\x29\xbe\x9e\x71\xb2\ \x92\x26\x7b\x62\x1c\xdd\x38\x1d\x1a\x6c\x63\x8f\x51\x10\x25\x00\ \x1d\xf8\xc0\x58\x61\x43\x91\x4e\xb0\x82\x34\x63\x49\x08\x24\xdc\ \x81\x96\x8e\x7c\x64\x1b\x9c\xc8\x4b\x4d\x62\xf0\x62\xfd\x51\x1d\ \xd9\xb4\x66\x28\x76\x20\x13\x1b\x2b\x04\x60\x13\x64\xf3\xbc\x8a\ \x44\x06\x9d\x84\x48\x24\x1f\xf6\x68\x85\x20\x94\x42\x1e\x84\xfe\ \x78\xa4\x23\x3b\x70\x87\x36\x10\xa2\x9b\x00\xc5\xa0\xa7\xce\x33\ \xb7\x6f\x31\xe9\x08\x7c\xd0\xa2\x17\x82\x40\xbd\x0a\x7a\xa2\x9d\ \x22\x69\x25\x10\x82\x40\x08\x10\x20\x21\x9e\x09\xdd\x62\x3a\xe4\ \x51\x8a\x52\xe4\x33\x9b\x1d\x30\xc6\x24\x03\x4a\x52\xa1\x5d\xef\ \x7a\x49\x9b\x0e\x19\xf8\xa1\xc5\x03\xa8\xe3\x94\xd5\x5b\x41\x21\ \x19\xd4\x97\x41\x90\x62\x8b\x8d\x84\x02\x14\x28\x5a\x8a\x20\x38\ \x61\x9e\xaf\xbc\x03\x21\x3c\x7a\x87\x3b\x30\x72\x18\xc3\xe0\x43\ \x1b\x68\x50\xd2\xa6\x22\xcc\x50\x74\x64\xd7\x9a\x9a\xe0\x49\x00\ \x1c\x40\x74\x4b\x24\x5f\xb2\x44\x32\x08\x9b\x6a\xf1\xab\x00\x78\ \x25\x23\xef\x41\x08\x32\x04\xe1\x9a\x8c\xa4\xa6\x47\x09\x41\x4b\ \x46\xea\x00\x0c\xc6\x90\x83\x53\xe7\x8a\xbd\x26\xe5\xed\x67\x03\ \xa2\xc1\x35\xc2\x6a\x0a\x4a\xce\xe0\x1b\x33\xad\x4d\x57\xbd\x1a\ \xd6\x4f\x6e\x51\x9a\x7c\xe0\x07\x45\x09\x71\x8f\x3b\xfc\x94\x0f\ \xe9\x20\x84\x64\xd3\x61\xd4\x5a\x6a\x51\x92\x73\x05\xe8\xd8\x38\ \x89\x19\x36\x25\xc8\x8d\x20\x20\x05\x1f\x0c\x10\xb7\x74\xbe\x61\ \x85\xa6\x65\x5e\xfe\x22\x95\x94\x9b\x82\x55\x9a\x86\x45\xfe\x6c\ \x58\xef\x00\x82\x6a\xd2\xf2\x95\x13\x95\x2c\x21\x8c\x61\x0c\xcb\ \x02\x80\x0f\xbb\xcc\x2c\x2f\xcb\x56\x3a\xcc\x64\x08\x44\x31\xcb\ \x23\x3f\x48\x3b\xa0\x8e\x9e\xf6\xb4\x1d\x4d\xed\xe3\x56\xfb\xa3\ \x9a\x0e\x02\x00\xd8\xcd\x6e\x76\x6d\xa9\xdd\x57\xc2\x16\xb2\x14\ \x5d\xa4\x34\xe9\x11\x59\x42\x50\xd6\x91\xb5\xb4\x82\x0e\x52\xc1\ \x4d\xe1\x0a\xed\x75\xe0\xcb\xd7\x26\x6c\x01\xa3\x26\xa8\xc3\x8f\ \x0d\x85\x6e\x74\x51\xfb\x5c\xe6\x35\x21\x88\x0d\xe2\xaa\x4d\xa3\ \xd0\xdd\x2e\xc0\xb6\xb0\xd2\xcc\xee\x34\x19\xc9\xc8\x9d\x22\x21\ \x1d\x0c\x16\x6a\x3e\x8b\xba\x00\x5c\xf2\x41\x07\x1d\x60\xaa\x7b\ \x97\x48\x45\x97\xc5\xac\x6c\x34\x38\x02\x2a\x4c\xa1\x61\xfd\x46\ \x57\xbf\xe2\x03\x70\x77\xb8\x4a\x0a\x52\x10\x58\xbb\xd8\x3d\xe2\ \x85\xb3\x78\x60\x05\xbf\x92\x1f\x40\x85\xac\x64\xcf\x0a\x04\x27\ \xdc\xa1\xb1\x45\xfd\xc4\x27\x8c\x31\x8c\x6b\x74\x80\x98\x1b\x06\ \xe0\x2f\x37\x57\x3a\x32\xf4\xc1\x14\xa5\x9c\x8e\x73\xf7\x3b\xe5\ \xfe\xfe\x4e\xab\xe6\x1a\xf0\x8b\x61\x8c\xdd\x57\x5e\x03\xa8\x5d\ \xee\x32\x3d\xc5\x3a\x4f\x58\x42\xa1\xb6\xf1\x04\x02\xfe\x10\x8a\ \xca\xcf\x4f\x3c\xf2\xad\xd7\xc0\x41\x7b\x7d\x85\xb8\x3a\xc0\xcd\ \x94\x9a\x9d\xf3\x1b\x40\x80\x8a\x3f\xfe\x90\xca\xfb\x05\x20\x89\ \x44\x23\x60\x2e\x1b\x3a\xac\x3a\x98\x31\x97\x6b\x8c\x58\xef\x3a\ \xc1\x09\xf4\x20\xab\x35\x8b\xfa\x63\x5b\xdc\x83\xc8\x34\x36\x46\ \x89\x59\xd8\x84\x22\x18\x80\x09\xe2\x70\x05\x13\x0c\xe0\x80\x15\ \xf4\x61\x06\x21\x6c\x61\x87\x37\xd7\x04\x54\x90\xc2\x09\xea\x20\ \x65\x13\xa6\x1c\x5d\x52\x06\x3a\xc5\x81\xcd\x49\x4d\x5d\x0b\xe3\ \x2e\x74\xe1\x03\x5d\x80\xb1\x34\xc1\x00\x86\x04\x77\xd7\xd8\x62\ \x86\x65\x2d\xc7\x7a\x8f\x7b\xcc\xe3\x0e\xf3\x90\xac\x2d\x70\xa0\ \xc6\x2c\xea\x00\xc9\x8a\xa3\x01\x05\x9b\x50\x07\x03\x1c\xa0\xc5\ \x2d\xf6\x82\xb8\xbd\x80\x9b\x22\xa0\x7a\x3a\x30\xe5\x1c\x0d\xc8\ \x40\x03\x39\x88\x41\x0c\x84\x80\xe9\x0d\xf9\xbc\xdc\x51\x06\x92\ \x7a\x80\xbe\xb5\xf8\xd6\x29\x30\x91\x88\x9a\xa5\x86\xf6\x35\x18\ \x74\xa0\x03\xc3\x16\xd6\xb7\x87\xee\x2e\x8e\x81\x6a\x05\x47\xb6\ \xc1\xd9\xd0\x06\xcc\x45\x53\x51\x6c\x30\x88\x81\xa9\x9b\xa6\x01\ \x12\xd8\xfd\x86\x26\x68\x7c\x1e\xec\x38\xc2\x11\xfe\x40\x90\xa9\ \x26\x38\xc0\x0b\x2e\x06\xb7\xca\x6f\x81\x9b\x3e\xdc\xf9\x94\x88\ \x23\xc3\x11\xee\x81\x0a\x7e\x18\x83\x1f\xb6\xec\x81\x18\x36\x4e\ \x83\x9e\x7b\x9c\x0c\x5f\xd4\x76\xc7\xf3\x78\x80\x9d\x95\x62\x94\ \x65\xa8\x43\x29\xf3\x6d\xe5\xea\xf1\x5b\x2f\xfe\x3e\x75\xc7\x8f\ \x00\x86\x5e\x03\xa0\x0b\xc4\x3e\x22\xb2\xb1\x4b\xec\xad\x27\xfc\ \xc6\x0c\x67\xa4\xc3\x8b\xca\x5b\x28\xa4\x62\x1e\xd7\xb0\xc2\x07\ \x90\x38\x8f\x79\x88\x41\x0e\x72\x60\xc7\x36\x7e\x81\x06\xb7\x8b\ \xa1\x07\x3b\x94\x66\x14\xf8\x31\x99\x37\x14\x41\x1c\x83\xb5\x69\ \x8b\xbb\xea\x05\xfb\xb0\x62\x05\xd3\x03\x23\xb7\x5f\xc0\x8f\x28\ \xd0\xd3\xc6\xc6\x80\x02\x3b\xee\xc1\x8e\xca\x8b\x1c\x04\x23\xbf\ \xd4\x3d\x0e\x80\xc8\x3e\x78\x1e\xe9\x4a\xef\xa8\xad\xf9\xcb\x40\ \x3d\xe4\x1a\x2b\x15\xb9\x85\x01\xf2\xcb\x24\x24\xa4\x3d\xbb\xbf\ \xfe\xc0\xc0\x8f\x48\xf0\xd8\xbe\x15\xd9\x06\xef\xae\x8c\x61\x6b\ \xcb\x46\x7e\x79\xd8\xd7\x30\xc6\x07\x60\xef\x6b\x1d\xfc\xe2\x1a\ \xc1\xbe\x3a\xd6\xbd\x0e\x00\x7e\x50\xaf\xdb\x15\xc0\x86\x2b\xb0\ \xf1\x8d\x5b\x58\xff\x4b\xcc\x32\xf5\xf4\xea\xfe\x30\x83\xc4\x0f\ \x68\x06\xe2\x88\xc2\x96\x17\xcd\x0f\x3f\xfa\xf1\x1e\x06\x50\x47\ \x10\x50\x11\x04\x53\xa8\x03\x15\x07\x40\xc5\xce\x4c\x41\x7f\x53\ \x8c\xfe\xc4\x55\x06\x60\x1f\xd8\x69\x94\xa4\xac\x9e\xd5\x64\xd0\ \x03\xf4\x24\x7b\xc4\x16\x49\x60\x96\x5d\x04\x58\x6c\x62\xe6\x75\ \xc3\x46\x6c\xc5\x76\x7b\x0e\x68\x6c\x03\x37\x7c\x57\x77\x75\x1e\ \xe0\x01\x60\x00\x6c\xca\xe7\x6b\xc9\xc7\x65\x1f\xf0\x52\x4d\xd0\ \x07\xac\xe0\x0a\xb3\xc0\x0a\x23\xc8\x0a\x7a\x70\x78\xda\x67\x67\ \x33\xd0\x07\x7a\x30\x0b\x7a\x30\x03\xb5\xe3\x00\xa0\x76\x00\xe5\ \xe7\x78\x34\x16\x05\xf1\xe7\x00\x2f\xf0\x02\xea\xa0\x0e\x20\x80\ \x2e\x41\xd0\x07\x20\xe0\x7e\x3f\x58\x06\x81\x54\x7f\xa3\xa4\x74\ \xb6\x26\x65\x9c\xf6\x50\xfd\x27\x12\x26\x28\x83\xd5\x43\x06\xc6\ \x30\x66\x05\xb8\x46\x06\x37\x6c\x8c\x66\x68\x6a\x17\x49\x15\x67\ \x4b\x89\xa6\x80\x5d\x16\x49\xc1\xe6\x6b\x1e\xf0\x0b\x3a\x70\x0c\ \xc9\xd7\x05\x47\x04\x6c\xe3\xa7\x5d\x3a\xe8\x00\x4d\x30\x03\x2b\ \x70\x02\xae\x60\x82\x2b\x60\x6a\x2e\x67\x67\x2c\x78\x87\x37\xb0\ \x15\x45\x90\x38\x75\x08\x02\x75\x50\x06\xfe\x20\xd0\x07\xeb\x27\ \x0e\xf1\x07\x48\x97\x92\x74\x34\x70\x88\x87\x58\x6b\x48\x37\x4a\ \x4a\x58\x89\x4d\x48\x7a\x00\x44\x5d\x38\xd1\x3f\x81\x94\x6e\x8a\ \x53\x07\xec\x50\x75\x61\xf5\x65\x47\xb4\x57\x8b\xf6\x01\xcc\x27\ \x6c\x6c\x94\x77\xb2\x77\x8a\x64\x08\x00\xad\xc8\x81\x60\xf0\x0b\ \x4f\xe0\x01\x1f\x10\x05\x02\x77\x7c\xbe\x96\x70\x00\xa0\x83\x83\ \x58\x07\x2b\xc0\x0a\x27\x70\x78\xa6\x60\x6a\x75\xe6\x82\x7a\x80\ \x87\x5b\xe1\x0a\x88\x47\x88\x81\x53\x67\x77\x66\x67\x84\x18\x65\ \x4b\x37\x6b\xa1\x67\x6f\xf6\x57\x89\xf9\x57\x41\x32\x85\x13\xd5\ \x57\x01\xac\xd7\x42\x08\x55\x8a\xc1\x67\x0c\x69\xa7\x76\xb9\x77\ \x68\xea\xa8\x5e\x91\xf4\x0b\xaa\x08\x7c\x86\x85\x75\x19\xf8\x01\ \xb2\xf7\x04\x19\xd8\x05\xba\x78\x75\xd7\xf0\x0b\xfa\xe8\x8b\xd8\ \x15\x05\xe2\x30\x3d\x7d\x50\x8c\x7a\x60\x0a\x29\x88\x78\x22\x58\ \x01\x15\xe0\x0a\x9e\xd0\x8c\xbc\x83\x6a\x30\x47\x67\x4a\x17\x42\ \xb3\x36\x6b\xa7\xd5\x04\x98\xb2\x42\xb3\x46\x89\x48\x47\x65\x2d\ \xa4\x62\x2c\xf1\x3f\xbc\xd4\x04\xec\x90\x76\xb6\x74\x0d\xdb\xb0\ \x43\x04\xb8\x8e\x61\x85\x80\x04\x77\xfe\x0d\x91\xd4\x8f\xaf\x97\ \x70\xf6\xe8\x6b\x37\xc9\x81\x1c\x98\x86\xf0\xd8\x81\x00\xe9\x05\ \x06\x50\x04\x2e\x88\x82\x7a\xc0\x87\x7d\x60\x00\x5e\x40\x78\xe0\ \xc1\x2c\x31\xd8\x7d\xa9\x86\x6e\xa7\xe4\x87\x49\x97\x4e\xa5\xc4\ \x6d\x48\x58\x91\xa5\x60\x67\xd6\x58\x6b\x47\x17\x68\x9a\xa8\x89\ \x86\x02\x58\x37\xf1\x0d\x25\x75\x04\x57\x68\x05\xad\xc8\x7b\x35\ \xa9\x5d\x04\x68\x8f\xad\x48\x7b\x6f\x45\x81\x8b\xf6\x6b\x1c\xf8\ \x01\x1e\xc0\x81\x04\xc6\x81\x79\xf0\x0b\xf0\x08\x90\x30\xe6\x05\ \x4c\x60\x90\x28\x68\x94\x37\x20\x6e\x5d\x45\x04\x5b\x01\x83\xa7\ \xe6\x87\x84\xf8\x94\xd3\x51\x07\x9e\x77\x8c\x12\x54\x95\x4b\x37\ \x03\x98\x92\x74\x1f\x99\x29\xfc\xe5\x91\xa2\xd7\x95\xd2\xe5\x84\ \x03\x82\x65\x2b\x41\x96\x24\xd5\x04\x48\x90\x50\x56\x70\x0d\x14\ \xa8\x76\xf5\x68\x58\xb5\xa8\x86\x33\x79\x0d\xb0\xc0\x92\xf6\x18\ \x70\xc4\x76\x97\xbf\x86\x8b\x78\x89\x5d\x5d\x90\x86\x2b\xe9\x97\ \x30\x16\x05\xe4\xe6\x00\x27\xe0\x00\xe8\x62\x6a\x45\x30\x0b\xe2\ \x10\x7d\x15\x20\x0e\x7a\x78\x6a\xd2\x08\x8a\xd3\xd1\x07\x49\xc0\ \x2c\xcc\x92\x04\x2b\x00\x7a\x17\xfe\xd9\x71\x47\x17\x48\x53\xf9\ \x99\x47\x47\x4a\x98\x78\x62\xcd\xf5\x5c\xa8\x75\x7a\x11\xe1\x0a\ \x4d\x95\x43\xe8\x68\x63\x6e\xd9\x81\x5d\x60\x7c\x6f\xc5\x46\xc7\ \xb7\x43\x19\x68\x05\x3e\xc9\x9b\xbd\x09\x6c\x3a\xa9\x93\xb0\xc7\ \x97\x3a\x90\x9f\xc0\x49\x0a\x07\xf0\x02\xa4\x66\x00\x08\x5a\x94\ \x2b\x50\x35\x0a\xba\x7d\xe9\xc3\x6d\x8e\x49\x67\x2b\xe0\x0a\xdf\ \xf0\x0d\x14\x6a\x9d\x79\xc8\x0a\x65\x20\x91\x10\x6a\x4a\x1f\xd9\ \x5f\x9b\x19\x9e\x98\x38\x4a\x80\xf6\x5c\x62\x69\x13\xae\x20\x9d\ \x9c\x46\x06\xa8\xf8\x92\x57\x77\x9f\xbf\x36\x70\xc4\xf6\x01\x04\ \x17\x97\xb2\xa7\x81\x01\xf7\x8f\x1c\x78\x06\xff\xa8\x5d\x1e\x70\ \x0d\x79\x10\x87\xc0\x09\x4a\xa8\xf0\x02\x3c\x08\x6a\x2f\x60\x6a\ \x0e\xc0\x3b\x8b\xa9\x78\x50\x19\xa1\x1d\x67\x0a\x23\x98\x04\x54\ \x8a\xa1\xae\x90\x04\x7a\xb8\xa1\x82\x24\x65\x1d\x69\x62\xa6\x25\ \x7a\xe2\x69\x89\xf4\x77\x7f\xfb\x85\x9e\x0f\xa1\x9e\x73\x75\x0f\ \x5b\x38\x7b\x6c\xa4\x03\xb8\x59\x8b\xba\x89\x86\xb9\xd8\x6b\x1c\ \xa8\x5d\xfe\xd9\x6b\x38\x3a\xa4\xd9\xb5\x77\xe2\xe0\x83\x2f\x50\ \xa4\x80\xe4\x00\x08\x6a\x6a\xfe\x70\x43\x67\xa6\xd4\xa1\x8e\x59\ \x87\xf4\x87\x78\x48\x28\xa5\x26\x78\x82\x07\x49\xa8\x51\x66\x65\ \x60\xea\x5c\x52\xd6\x99\x47\x67\x0a\x54\x9a\x04\xdb\x38\x7a\x65\ \x00\x29\x2c\xa1\x08\x56\xe3\x54\xa7\xd9\x6b\xc6\xc7\x97\xbf\x00\ \x06\xb4\xd8\x93\xbf\x88\x75\x02\x6a\x97\xaa\x1a\x6c\xba\xa8\x8b\ \xbd\x68\xa7\x3d\xaa\xa7\xda\xd5\x47\x7d\x06\x7f\xe2\xe0\x00\x76\ \xa0\x0e\x2f\xc0\x04\x88\xe7\xa0\x87\x0a\xa1\x7e\x48\x8d\x3f\x14\ \x9d\x25\x07\x99\x48\xe8\x79\x9e\x37\x8c\x12\x04\x7a\xa9\x05\xa6\ \xe2\x89\x5a\xfb\x25\xa6\x9c\x4a\xa5\x63\x7a\x74\x49\x60\xa6\x0e\ \xc1\x0a\x73\x65\x92\x34\xe6\x96\xb5\xd8\x8f\x3a\xc0\x9f\xf6\x38\ \xa7\xca\xe7\x01\x71\xd8\x9b\xb6\xb8\x8f\x1b\x78\xab\x72\x8a\xab\ \x86\x26\x7e\x2e\x26\x9c\x45\xfa\x02\xe2\x80\x1b\x3f\x18\x91\x2d\ \x68\x99\xff\xba\xa1\x8c\x99\xac\x87\x8a\x6e\x4a\x07\x37\x2f\x87\ \x84\xcd\xea\x9d\xf7\x77\xa9\x96\xc8\x8d\xd4\x5a\x7f\x9a\x7a\xa5\ \xdb\xa8\x0e\xde\xda\x10\x9e\xf0\x99\x00\x15\x80\xb5\xc8\x0f\xb4\ \x49\x70\xaa\xba\x81\x5b\x16\x7b\x3e\x19\xa3\x70\x48\x7c\xb5\xaa\ \x7c\x33\x2a\xa0\x00\x29\xfe\x7e\xdd\xa5\x60\x04\x7a\x00\x8c\x78\ \x00\xcd\xa9\x33\x87\xe7\xac\x81\xe4\x79\xdd\x87\xac\x1d\x17\x8d\ \x87\x2a\xb0\x49\x67\x67\x5a\x6a\x99\x0c\x3b\x4a\x96\x49\xa2\xd0\ \x65\x89\x9c\xfa\x91\x0f\xab\xb4\xd5\xb9\xa9\x49\x30\x08\x17\xcb\ \x10\x54\x48\xaa\x1e\x7b\x7c\xba\x98\xae\xfd\x19\x9c\x74\x69\xa7\ \xec\x7a\xab\xf1\x1a\x90\xb4\x9a\xa7\x7a\x0a\x06\x42\x0a\x63\xa4\ \xd0\x4a\xad\x24\x0e\x37\x60\x00\x45\x89\xb3\x3a\x7b\x6a\xde\x07\ \x95\x3d\x6b\x4a\x42\x2b\xb4\x2d\xb8\xa1\x9f\xe7\xac\x95\x18\x99\ \xac\x10\xad\xb6\x56\x06\x9a\xca\xa9\x63\x8a\x74\x12\x3b\xb1\xd5\ \x69\xa1\x15\x71\x13\x65\x90\x59\x64\xb0\x0d\x37\x8a\x9f\x37\xa9\ \x76\x64\xab\x9f\xec\x6a\xab\x60\x1b\xb6\xad\x5a\xa7\xf4\xfa\x8b\ \x19\x75\x68\x51\x40\xa0\x15\xc0\x04\x24\xf8\xb6\x01\xfb\xaf\x72\ \x7b\x67\x50\xf9\x72\x1d\xc7\x6d\x78\x8b\xba\x7c\xbb\xb7\x87\x68\ \x99\xf5\xb7\xa9\x9d\x2a\xb8\xf4\xa7\xad\xdb\x98\xa9\x50\x5b\x9d\ \xae\x40\x12\xa0\x5a\x38\x2a\xda\x42\x8f\x6b\x05\x2f\x86\x75\xc3\ \xc7\xb9\x5c\x86\x8b\x23\xdb\x9b\x02\xaa\xbc\x38\x59\xb9\x7a\x2a\ \xa4\xa1\x9b\xb6\xe4\xfe\x36\x6a\x2b\x60\x6e\xd4\x88\xb0\xdd\xd7\ \xbd\x89\x17\x37\x76\xfb\xa0\xae\xeb\x87\x70\x1b\x48\xdd\xa7\xa5\ \x87\xa8\xb0\x91\x89\xb8\x57\xaa\xbb\xb9\xab\xad\xd8\xfa\xb4\x55\ \x5a\x7d\x24\xf4\x18\xc3\x5b\x41\x26\xd9\xa2\x2f\x1a\xab\x2c\x6b\ \x81\xea\xba\x93\xea\x8a\xb2\xc7\x3b\x81\x9d\x9b\x70\x7d\xe4\x47\ \x06\x6a\x07\xdd\xab\xba\x25\x57\x67\x3b\x3b\xb0\xb5\x63\x91\xd2\ \xa8\xa5\x38\x3b\xb4\x53\x79\x88\x38\x2b\x41\x52\x5a\xa5\x18\xaa\ \xa9\x83\xdb\xbe\xb5\x7b\x9d\xd7\x99\x04\xd8\x50\xbf\xa1\x8a\xa6\ \xa5\x79\x04\xfa\xcb\x9b\x5a\x1b\x70\x1f\xd0\x93\x79\xd9\x9b\x97\ \x4b\xa7\xbd\x28\x70\xe7\x5a\xc0\x7b\x9a\x5d\xe5\xc7\x04\x4c\xf0\ \x02\xda\x0b\xc1\x9c\xc3\x82\x0f\x0c\xa5\xad\x2b\x95\x44\x7b\x6a\ \xa7\x06\xb4\x96\x39\xbb\x82\xfb\x64\xf5\xf7\xb7\xac\xe0\xbb\x16\ \x6a\x9d\x54\xfa\x0d\xf2\x0b\xb5\x56\xfa\xbb\x53\xbb\x10\xa4\x49\ \x52\x20\xb0\xc2\xb0\x77\x93\x2e\xcc\xbc\x79\x79\x81\xbf\x20\xa4\ \x5b\x9b\xb2\x38\xfc\x8b\xa1\x5b\x7e\xf9\xd0\x83\x76\x50\x04\x03\ \x4b\xb0\xdc\xe7\xbd\x85\x0a\x42\xaf\x8b\xba\xe8\x8b\xb7\x14\x1c\ \x99\x4f\x96\x82\xfe\x51\x1c\xc5\x9b\xfa\xbb\x4b\xe1\xbb\xcc\x62\ \xa1\xbd\x7b\xa1\x53\xbc\xc5\x48\x31\x8e\x94\x44\x06\x27\x99\x7b\ \x59\xf4\x6b\x2e\xd9\x05\xbf\x30\xc3\xfa\xf8\x04\xd2\xeb\x6b\x3c\ \xaa\xc6\xd3\x1b\x87\x5c\xf4\x0b\x3d\xfc\x02\x6b\x60\x07\xd9\xcb\ \xb3\x3e\xcb\x82\xda\x9b\xa8\xad\xcb\x6d\xdd\x67\xbe\x1b\x7a\xbe\ \x5a\xc9\x82\x18\xfc\x64\x2b\x70\x8c\x7f\x8b\xa5\xd7\x99\xcb\x14\ \x4a\x7d\xd4\xc7\x2c\xd8\x60\x46\xb7\xc0\x2c\x1f\x5c\x7d\xc3\xcc\ \xc8\x0a\x81\xc2\x25\x79\x92\x7c\x70\xb6\x57\xe7\x92\xbf\x78\x93\ \xc7\x7b\x81\x68\x7c\xa7\xa9\x08\xba\x2d\xc6\x0f\x2e\xf6\x49\xa4\ \x40\x05\x2f\xf0\xc6\x43\x30\x04\x71\xfc\xbd\x75\xfb\xa4\x75\xb8\ \xb3\x89\x7a\xa8\x2c\xa8\xb3\x76\x8c\xb0\x75\x96\x74\xcf\x7a\x8c\ \x07\x69\x82\xc0\x7c\x9d\x52\x6a\xa5\xd2\x27\xcc\xbe\x3c\xc2\x54\ \x6a\x7d\xda\x81\xcc\x08\x91\xa2\x00\xf5\xc5\xb0\x85\x9f\x06\xe7\ \xc9\x76\x0a\x06\x4f\x00\x9f\x51\x70\x97\x01\xe7\xd0\x87\x76\x0d\ \xfc\x20\x97\x7b\x7a\xc0\xfc\xf0\x0b\xda\x8c\x80\xfc\x90\x0f\x3d\ \x5c\xca\xe2\xec\x7d\x78\x16\xc1\xb4\x7c\xc7\x9c\x53\x67\xae\xdc\ \x82\xa9\x3b\xfe\xc7\x70\x93\x95\xaf\xdc\x07\x7b\xe8\xa8\x23\x38\ \x7d\xd3\x67\xc8\xd2\x67\x9d\xc1\x6c\x7d\xc3\x3c\xcc\x32\xcd\xc1\ \xdf\xa0\x1d\x37\xa1\x08\x24\xb9\x44\x39\x54\x6c\xfc\xa9\xc6\x08\ \x6d\xa7\x7c\xd9\xa3\xbb\xc9\x65\xca\xcb\x65\x60\x40\x05\xfc\xa0\ \x8f\xc6\x0b\x4a\x7d\x94\x0d\xb9\xc0\x0f\xd9\x80\x09\x8d\x17\x90\ \xbf\x30\x0e\xa8\xb0\x06\x1e\xbd\xca\xaa\x1b\x38\x75\xcc\xba\x11\ \xec\xba\xd3\xd3\xbd\x29\x5d\xac\xd2\x78\xc4\x2e\x3d\x8c\xac\x60\ \x00\xae\x10\x6a\xd2\x27\xd7\x35\x2d\x7d\x78\x7d\x0b\xe2\xe6\xcf\ \xf5\xdc\xbe\x87\x0c\xd0\x08\x01\xae\x94\x54\x07\x3d\xd0\xcc\xc0\ \x96\xae\x74\xea\x8b\xbf\x76\xc6\xc9\x47\xab\x2c\xdb\xd4\xc1\x69\ \x8f\x17\xad\xcd\x1f\x10\x4a\xa3\xfc\x02\x43\xb0\x06\xa8\xf0\x04\ \x5d\x86\xd1\xfd\x50\xca\x76\x30\xce\x43\xbc\x6d\xae\x8c\xca\xe8\ \xd6\x71\x23\x5d\xc7\x72\xcb\xd6\x76\x3b\xbb\x28\xbd\x87\x29\x88\ \xa0\x73\x6d\x00\xd2\x47\xd7\xd8\x70\xdb\x32\x7d\xdb\xb7\x70\x00\ \x85\x67\x46\x84\xec\xd7\xd4\x07\xd8\x06\x91\xb1\x6f\x24\xae\x51\ \x90\x8f\xb2\xa7\xc6\xd0\x1c\x90\x0a\x5d\xb2\x47\x7d\xd4\x72\xf8\ \x8b\xe3\xfe\xb0\x0d\xe3\xb0\xc3\xe1\x6c\x07\xe2\x7c\x04\x98\xe0\ \x5a\xc7\x9d\x0b\xdb\xf0\x02\xd8\x1d\xda\xe6\x86\xce\x12\x9c\xda\ \x74\x4c\xcb\xde\x4b\xac\xe2\x3b\xbe\x28\xfd\xac\xc3\x88\xa0\x9f\ \xa6\x33\x78\x7d\xdb\xc1\x5c\xdf\x79\xbd\xdb\xfa\xec\xdb\xd7\xe9\ \xd3\x37\xe1\xc8\x00\x04\x02\x13\x9d\xae\x92\x9b\x9f\xfd\x1b\xc6\ \x67\x8c\xb9\x4c\x0d\xdd\xbc\xc9\x9b\x1b\x4d\xdd\xfc\xe0\x07\x3e\ \x1c\xda\x76\xb0\x06\xdb\x40\x8a\x96\x2c\xca\x6f\xbc\x06\xbe\x1a\ \xc7\x45\x60\x6e\x21\xed\xc0\xc4\x5a\xd2\xd2\xe8\x87\x6a\x4d\x8d\ \xa7\xdd\xda\xb1\x2c\x94\x6f\xcd\x0a\xea\x00\xdf\x72\x2d\x0e\xf3\ \x4d\xdf\x32\x3e\x7d\xf5\x2d\xcc\x7a\x8d\xd7\x7f\x7d\x13\xce\xd2\ \x42\x75\x00\x05\x8e\x47\x0a\xd7\xb0\x8f\x08\x5d\xe0\x57\xf7\xc2\ \xf2\x7a\x81\x04\x4e\xe4\xf0\x1a\x05\xa2\xfc\x02\xe3\x90\x0d\xa8\ \x90\x0f\xbe\x0a\x02\x76\x70\x04\xfe\xb0\xd5\x4c\xee\xd9\x3d\xa8\ \xe1\x43\xe0\x00\xe3\xcd\xc0\x27\x6d\xda\x67\x2d\xc4\xe9\xcd\xc0\ \x45\x2c\x89\xed\xfd\xd6\x2b\xd0\xe2\x2e\x6e\x00\xfb\x8a\x0d\x30\ \x6e\xdf\xf4\x4d\xe3\xba\x7d\x00\x7a\xed\xcf\xd2\x97\x04\x27\x6a\ \xbf\xfe\x9c\xc6\x0e\xc3\x97\x9a\xaa\xd8\xaa\x9d\x1b\x05\x2f\x4c\ \xd1\xf1\xb9\xd0\x89\x9d\x70\x3d\xda\xd0\xfc\x80\x09\xdb\x80\x09\ \xfe\xf0\x02\xec\xb0\x06\x47\x30\xe1\x47\xb0\x05\x66\x7b\x0d\xd3\ \xfd\x04\xa4\xb0\x0d\x19\x2e\xce\x1d\x8e\xce\x67\xee\xa0\xea\xd2\ \xda\x3b\x9b\xd6\x3c\x6b\xea\x00\xdb\xde\x7b\xa8\x0e\x71\x6d\x00\ \x2c\x2e\xdb\x6f\x7e\xdb\x74\x4d\xe7\xf3\x6d\x46\xd8\xe0\x05\x37\ \x7d\xd7\x8b\xcb\xe7\x15\x54\x07\x7a\x44\xe8\x8d\xd7\xd8\x00\x50\ \xec\xc6\x7e\xec\xc8\x7e\xec\x2f\x8c\x8b\xc7\x8e\x81\x04\xee\xcc\ \xc5\xde\x9f\xe2\xf7\x04\xfd\xf0\x02\x47\x90\x0f\x9e\xbe\x06\x21\ \x07\x02\x33\xe0\x0f\xb5\xb8\x05\xfe\x90\x8b\xd5\x1e\xe9\x98\xcd\ \xe1\x72\xdc\xc0\x75\x7c\x6e\xa5\xde\xd6\x0f\x8c\xac\xea\xcc\x7d\ \xb1\xec\xac\x45\x00\xdb\x3f\x48\x6a\xae\x8e\xa0\xb8\x01\xe7\xb3\ \x4e\xdb\xb6\x2e\xe3\x78\x2e\xcc\x57\x6a\xc2\x85\xa3\xcc\xea\x73\ \x04\x7f\x1e\xe0\xb9\xa8\xe0\xc9\x7e\xec\xee\x0a\xd1\x22\xbb\xf0\ \x10\xdf\xd0\xb3\xaa\x8f\xfa\x38\x0e\x94\xbe\x06\x8d\x3e\xe9\x5b\ \x00\x02\x32\x37\x0e\x54\xd0\x03\xfe\x00\x8f\x1b\xdd\x03\x98\xf0\ \xfe\xd5\xa0\x7e\xee\x20\x7e\xee\xeb\x8e\xd6\xed\x3e\xc7\x2c\xff\ \xca\xaf\xbd\xa0\xea\x20\xa8\xf0\xdd\xe2\xa3\x86\x1b\xf9\x4e\xdb\ \xd8\xa0\xf3\x77\x7d\xeb\xba\x3d\xe7\x02\x3f\x9a\xf8\xab\x47\xbf\ \x98\x81\x38\x97\xbc\x10\x9f\xf4\xd1\x8e\x75\xfe\x48\x60\xe2\x07\ \xed\x49\x8f\x86\x51\x70\x06\xb3\xea\x01\xf9\x70\x04\x6b\x80\xd1\ \xfe\xe0\x0f\x3d\x60\x07\x32\x87\xaa\xb6\xf8\x01\xd3\xad\xd5\xe3\ \x00\xce\x43\xf0\xbd\xaa\xac\xf2\xeb\x9e\xee\xdb\x87\xac\xee\xcc\ \xf6\x70\x2b\xf3\x34\xdf\xe6\x3a\x63\x00\xf2\x27\x7f\x38\xcf\xf3\ \x33\x4e\xdf\xc3\xfc\xf3\x66\x24\xdc\x05\xa1\x08\x55\x2b\x3e\x20\ \x70\xc6\xc7\x6d\xb6\x6c\xa4\x8f\x2e\xab\xf4\x0b\x8f\x86\xd2\x7e\ \xec\x8b\xcf\xf8\x3a\x49\xcd\xfa\x48\x05\x5b\xb0\x05\xe3\xd0\xd5\ \x54\xb0\x0d\x62\x80\x79\xe3\xd0\x9b\xb3\xfa\x01\x9a\xfc\x04\x8d\ \x8e\x09\x4c\x30\x04\xc7\xca\x7d\xa1\x4e\xd2\x25\x4d\xe2\x6d\xdf\ \xda\x64\xae\xe2\x7d\x20\x94\x7b\x58\x6a\x73\xdf\xe6\xb8\x8f\xa0\ \x41\xe0\x0a\xf2\x87\x0d\xa8\xb0\xf3\xb5\x5d\x9d\x38\xee\xf7\xc1\ \xbb\x12\x04\xff\x3b\x26\xe9\x78\xe4\x6a\xe4\x67\xc8\xf8\xc9\xfe\ \xde\x9f\x67\xa8\xf0\x10\x1f\xfd\x5d\x70\x06\x17\x68\xfd\xe3\xe0\ \x0f\x5b\x40\x05\x54\xa0\xf9\x23\x77\x04\x4d\xef\xf4\x4f\xef\x01\ \xe3\x50\xdd\x16\x3f\xde\xdd\xd7\xe1\x1d\xee\xdf\xcb\xca\x7d\xee\ \xff\x72\x27\xed\xbd\x42\x39\xef\x7b\xb8\x02\xc6\x69\x9c\x07\xea\ \xb6\xb7\x9f\x7e\x3f\xd8\xe2\x41\x80\xa0\x00\x81\xcd\x80\x40\x6c\ \xa8\x5c\x89\x1b\xe8\x0a\xdb\xc2\x5b\x0c\x0f\x10\x51\xf4\x4f\xe2\ \x44\x8a\x15\x2d\x5e\xc4\x38\xd1\xd5\x1b\x8e\x1d\x3d\x7e\x7c\xd3\ \xa4\x07\x80\x2e\x51\x3e\x7c\xb8\xf6\x01\xcc\x87\x2e\x25\x01\xbc\ \x84\x19\x53\xe6\xcb\x96\x1e\x3c\x74\xa1\xd9\x52\x66\x94\x99\x33\ \x75\xd6\x7c\xf2\x84\x54\x9e\x27\x54\xb6\xf8\x93\x46\xe5\xd7\x18\ \x10\xf2\x68\x8c\xb9\xc9\x33\x66\x94\xa0\xa4\x9e\xf8\xb1\x53\x44\ \xeb\xd6\x22\x33\xea\x80\x6c\x12\xb2\x49\x1d\xb2\x65\x9b\x9c\x3d\ \x5b\x67\xc6\xda\xae\x45\xfa\xac\x80\xbb\xc2\x81\x3a\x75\x0e\x0c\ \xbc\x30\x60\xc0\xc1\x5e\x56\x0e\x58\xa9\xfb\x4b\x57\xb0\xba\xbc\ \x41\x0c\x88\x43\xb5\x30\xa1\xc2\x85\x8d\x6f\xdd\x3a\x70\x6b\x50\ \x46\xca\x95\x33\x2a\xd2\x03\x52\x33\x47\x32\xd7\x78\x96\xfe\x54\ \xf9\xeb\x64\x4b\x9c\x3d\x4d\x93\xec\xe2\x81\x65\x4e\x9d\x34\xa5\ \x9e\x2e\x49\x3a\x75\x50\xa2\xbf\xa8\x50\x91\xb6\x65\xcb\x6d\x24\ \x1c\x8f\x1c\x8b\x22\xbb\x65\x14\x0f\xa4\x8a\xfb\x1b\x62\x27\xab\ \xf2\xe4\x45\xc2\x76\x0c\x8b\xb6\x6c\x9d\xb1\x68\x43\xaa\x9d\xc1\ \x75\x45\x11\x3d\x2b\xf4\x38\x90\xfb\x02\x6f\x5e\xbd\x7a\xcc\xab\ \x33\x6f\x1e\x6e\x9f\x3e\xa6\xe8\x92\x1f\x38\x10\x1b\x42\x6c\x0a\ \x15\x36\xc4\x06\x19\x1b\x11\xcb\xfd\xfd\xff\xcb\x6c\x33\x90\x8e\ \x00\x23\x27\x30\x7e\x01\x23\x41\xd5\x4a\x3b\xcd\xa7\xd4\xc0\x70\ \x29\xb5\xd6\x00\x08\xae\x41\xd4\x48\x3b\xc3\x83\xa0\x9e\x38\x86\ \x36\x64\xf0\x11\x03\x99\x3c\x7a\x20\xa3\x09\x32\xa8\x18\x4e\xb6\ \x33\x36\xcc\xc5\x9f\x7c\xd6\x48\xce\x8e\x21\x66\x74\xee\x23\xe9\ \xa8\x43\x2b\xba\x37\xca\x62\x6b\x3b\x1f\xbb\xb3\x23\xbc\xbb\xc6\ \x2b\x0f\xae\xee\x56\x30\x85\x3d\x25\xdb\x73\x8f\xbc\x85\xc4\x79\ \x72\xbe\xc6\x16\x3a\x20\x3f\x6c\xbe\x89\xe8\x3f\x2d\x2f\xfa\xe6\ \x39\x01\x39\x6a\x02\x89\x02\x51\xfb\xa5\x4c\x30\x3c\x80\xd0\xc2\ \x99\x82\x4b\xed\xa6\x0b\x27\xa4\xd0\xc2\x2e\xce\x98\xfe\xb3\xa5\ \x0c\x69\xcb\xe3\x98\x63\x96\x0a\x31\xb5\x2d\x9c\x42\x51\xb8\x92\ \x34\x7c\x62\x1c\x7f\x5c\x5c\x43\xc6\x35\xf2\x19\x62\x06\x2f\xc5\ \x1a\xcb\x2c\x2f\x6f\xcc\xae\x88\xb8\xba\x1b\x62\xaf\xbd\xd4\x19\ \x8f\x89\xf2\xd4\x89\x4b\x1d\xf6\xca\xe8\xa3\x0c\x52\xd9\x43\x92\ \x30\xc3\xc4\x09\x22\xca\xf8\x1c\x5b\xc8\x95\x5b\xb2\xdc\xb2\xd6\ \x89\xbe\xfa\xb2\xa3\x23\xae\xa1\xa9\x86\x5f\xb6\x41\x70\xa5\xd7\ \xd4\xcc\x69\xc1\xcf\x64\x23\x96\x35\x9b\x3c\xb8\xb3\xa8\x3c\x9e\ \xad\xe1\x18\x69\xf0\x41\x66\x4e\x64\x68\x20\x03\x06\x41\x87\x73\ \xe1\x89\x7e\xfc\xd9\x22\x9f\x17\xc5\x85\x71\x06\x8f\x6e\x24\xeb\ \x51\xb1\xb0\xab\x54\x8f\x22\x86\xf0\x4e\x2e\xb9\x36\x35\xa0\x2e\ \x07\x8e\x5c\x41\xd4\x15\x4e\xe5\x57\x49\xf7\x08\xcb\x4b\xca\x2a\ \x1b\x63\x6c\x4a\x6c\x14\xa1\xd5\xd6\x2d\xfb\xc8\x95\x33\x63\x70\ \x6a\xe9\x9a\x5f\x90\xf9\xe5\x9a\x05\x93\xa5\xc9\x03\x04\x3d\x60\ \x93\x24\x8c\x61\xaa\xf3\x26\x3a\x3d\xe8\x10\x06\x18\x9e\x70\xc6\ \x99\x3c\x60\x68\x45\x9a\x63\x3c\x80\x41\x0c\x31\x6a\xa0\x53\xd0\ \x33\x82\x73\x61\x1c\x4c\xf2\x09\x17\x93\x9d\xed\xfe\xa0\x0e\xba\ \x48\xd3\x7d\x34\x2d\xb2\xd8\xe2\xce\xdd\x4c\xf7\xd2\xc3\x0e\x50\ \x1d\x70\x3a\xae\xb8\xde\x1a\xb5\xd4\x19\x4e\x55\xf2\xbd\xc3\xe4\ \x3b\xa0\xca\xc4\x0c\x76\x45\x56\x88\x14\xb6\x55\x11\x75\xc1\x42\ \x42\x07\x2b\x28\xec\x42\xe2\x32\x53\xfa\xe0\x63\x92\xca\x14\x2d\ \x36\x64\x93\x65\xf3\x66\x3a\xef\x74\x06\x37\x93\x9d\xd1\x02\x0d\ \x18\x90\x81\x41\x0b\x18\xa4\xd1\x42\xe4\xbd\xeb\xac\x33\x43\x43\ \xd7\xc0\x64\x9c\x71\xf2\xb1\x63\x52\x1e\xd3\xb5\x71\xac\xb5\x2a\ \xe5\x6e\x88\xef\xec\x68\xba\x3b\xad\x94\x5c\x81\xea\x25\x4f\xaf\ \x9a\x3d\x53\x9a\x34\x2c\xaf\xae\xa5\xa4\xd2\xe0\x5b\xc6\x26\x7b\ \x4b\xb3\x73\x6d\x62\x1e\x1d\x48\xfb\x60\xe2\x6b\xae\x59\x09\x4e\ \x35\x7b\x2f\x73\xc1\xbb\x31\xae\x19\x43\x0f\xf2\x70\x26\x29\xc2\ \x61\x40\xc3\x70\x64\xc6\x90\x06\x86\x1a\x6c\x72\x81\xd9\xc6\x1b\ \x3f\xa3\x5b\x4c\xfc\x19\x27\x97\x27\xf2\x01\x01\xcc\xa1\xcd\x3a\ \xf7\x3a\xa4\x3b\xff\x2e\x53\x3d\xe0\x1d\x7d\x86\x3e\xb2\xeb\xa3\ \xab\xf9\x51\xf5\xb7\x3d\x25\x4f\xd5\xfa\xb0\x56\xab\x84\x12\x95\ \x06\xf6\x8d\x85\x7c\x83\x76\xb5\xf3\x8f\x22\xfe\x36\xf2\x25\x39\ \xd4\x0d\x27\xbd\x33\x06\xdd\x56\x33\x2c\x39\x3d\xa1\x4c\x2c\x11\ \x0e\x05\xe5\xb4\x38\x3a\x75\xeb\x09\x83\x43\x06\x32\xd0\x10\x3d\ \x34\x20\xa3\x15\x22\x64\x16\xc9\x5e\xb6\x37\x16\x9e\xe1\x0c\x1d\ \xa2\xc2\x38\x36\x44\xbe\x75\xa9\x05\x73\x60\xc1\xce\x56\x4e\x50\ \x84\x13\x0c\xe1\x04\xf7\x0a\x92\x5b\x36\xb7\xb9\xfb\xad\x65\x49\ \x71\x49\x92\xfe\xfc\x05\xb0\x81\x04\x10\x4a\x89\x19\x58\x7d\x08\ \x76\x40\x04\xf6\xe7\x1b\x5f\x6a\x82\x18\xc0\x60\x05\xde\xbd\x2d\ \x0f\x16\x13\x5e\x83\x5a\xf2\x81\x27\x7c\xe0\x26\xc2\xf9\x18\x86\ \xec\xd4\x05\x17\xe4\x21\x70\x21\x0c\x21\xf4\x42\x38\x06\x64\x68\ \x61\x6f\x1d\x3a\x86\x0b\x5c\xb8\xc7\x3d\xa2\x0c\x06\xce\x78\xc2\ \x19\x5a\xf4\x15\xcd\x6d\xee\x6c\x68\x41\xda\xfb\x7a\x78\x82\x1e\ \xba\x6b\x2b\x44\x1c\xe2\xfd\x48\xa7\x3a\xaa\x25\x09\x49\xaa\x7b\ \x4f\x10\xc4\x01\xa5\x03\x7c\xcd\x09\xd8\x88\x62\x7e\xec\x93\xb0\ \x2a\x56\xe6\x8a\x5f\x62\x07\x84\x74\xf2\x01\x1d\x7c\x51\x07\xbf\ \xd0\x89\x06\x4d\xf3\xa0\x33\x61\x50\x36\xb2\x9c\xa5\x1a\x33\xe4\ \x81\x1a\xe4\x41\x70\xc8\x90\xc6\x09\x4d\xfe\x38\x06\x7c\xb4\x42\ \x0b\xc7\x70\xa1\x86\x54\xa6\x47\x3e\x76\xcf\x19\x87\x1b\x87\x1e\ \xc7\x87\xa3\xb5\x64\x25\x68\x99\x53\x8b\x56\x7c\x38\x84\x59\xcc\ \xc8\x3c\x96\xd2\x0a\x5b\xd8\xb2\x24\xf9\xd5\xaf\x74\xe7\x44\x27\ \x92\xe0\x62\x8a\x54\x39\x49\x1c\x5e\x13\xa0\xc1\xb0\x91\x04\x03\ \x4c\xa6\x94\xfd\x51\xc4\x0a\x04\x44\x83\x79\x20\xe8\x1a\x5d\x60\ \x89\x4a\xc0\x90\x07\x06\xe1\xd2\x27\x1a\xcb\xc3\x07\xd8\x74\x3c\ \x62\xe9\x32\x35\x7a\x72\xe3\x2f\x83\x19\x4c\x7c\x8c\x81\x8e\xce\ \xc8\x63\x1b\xff\xf8\x04\x66\xee\xb1\x06\x87\xa3\x63\x1e\xce\x30\ \x8e\x35\x80\x80\x2c\x20\xb0\x03\x08\xbc\x02\x16\xcd\x69\xb3\x87\ \xdd\xf4\x1c\x57\xdc\x32\xd3\xfa\xd5\xd4\x52\xe6\x44\x27\xd5\xd4\ \x09\x2a\x7d\xfd\x4b\x1d\xa8\x38\xcc\x3b\x41\x89\x0d\x27\xbc\xae\ \x31\xf0\xa1\xe2\x3d\x33\xb2\x40\xcd\xd0\x60\x1b\x60\xb8\xc6\x31\ \x82\xd7\x92\x63\xfc\x13\x26\x06\x95\x49\x17\x8a\x47\x9a\x85\xba\ \xa4\xa1\x2a\x9a\x93\x9e\x6a\xd0\xcb\x11\x96\x70\x7a\x63\x68\x05\ \x5a\xa9\x87\x8c\x68\xad\x4c\x1a\x2a\xcb\xa8\x0b\xda\x38\xad\x2d\ \xb8\x2c\x67\x47\x40\x29\x4a\x95\x73\xfe\xcd\x73\xe5\x70\x46\x7f\ \x8d\xa9\x4c\x47\xe7\x23\x23\x4d\x2d\x9d\x52\x43\x92\x1e\xfe\xf5\ \x16\xc1\x18\x00\xa8\xf3\xe9\x5a\x64\x8d\x8a\x8d\x20\xb8\xc2\x30\ \x07\x53\xaa\x65\x5c\x71\x36\xce\x6c\xc3\x8c\x70\x23\x4d\x2d\x63\ \xf9\xd5\x2f\x9e\x91\x24\x51\xf8\x4c\xb2\x6c\x96\xa1\x3d\x1d\x63\ \xac\xaf\x35\x6b\x5a\x89\x99\x56\x6a\xe5\xc9\x19\x16\x3d\x59\xb4\ \xc6\x7a\x5b\x99\x8d\xa1\x06\x4f\x10\x03\x12\x8e\x30\xdc\x23\xa4\ \x54\x5d\x69\xa9\x14\x60\x87\x20\xd3\x4a\x79\x27\x3d\xee\x72\xae\ \x7a\x10\x5b\xd8\xbf\xfc\x25\x54\x7d\xd0\x9a\x41\x50\xb1\x49\xc9\ \x4a\xb6\x20\x79\xa1\x0b\x7f\x32\x5b\x19\x7d\x6a\x86\x0c\xc8\x90\ \x98\x6a\x6c\x99\x07\x55\xe2\x04\xab\x31\xe9\x02\x18\x9e\xa0\x4a\ \xd4\x92\x46\xb5\x8b\x5b\x23\xc9\x9e\x90\x87\xb1\xba\xb6\x06\xd2\ \xa3\x28\x3e\x04\x2c\x06\x7c\xc0\x80\x79\xb9\x29\xb0\xca\x9e\x05\ \x03\x7c\x20\x01\x09\x63\xd0\x02\x32\xe4\x40\x06\x31\xb8\x68\x0b\ \x26\xc5\x66\x72\x97\xbb\x5c\xae\x6c\xae\x73\x0e\x68\xa4\x91\xcc\ \x73\x82\xf4\x44\x57\x0f\xac\x30\x00\x8a\xfb\xa2\x07\xc1\x38\xad\ \xb1\x41\x1d\x48\x77\xbb\x0b\xd4\xfe\x20\x98\x02\xb3\xe3\xcd\x48\ \x79\x41\x22\x06\x04\x21\xc8\x96\xaa\x89\xca\x7b\xe1\xfb\x20\x37\ \xa5\x96\x41\x6a\xca\x90\x1a\xb3\xb7\xbc\x68\xe9\xc9\xbf\xbf\x9c\ \x5e\x2a\x06\x2c\x86\x31\x1c\x58\x66\xd4\xfa\xe3\xe1\xc4\x40\x03\ \x39\x14\x58\x0c\x4d\x90\x83\x18\xa4\xe1\x8f\x23\x90\xc1\x46\xd9\ \x7c\x57\x9a\xb9\x13\xce\xf5\x29\x52\x2f\x24\x7e\x2e\x23\xe1\x9c\ \x9e\x1f\xa2\x38\x2f\x73\xa9\x0b\x4f\xf3\xa5\x0e\xc3\x00\x35\x31\ \xdc\x8d\x2c\x36\xf8\x11\x59\xc3\xbc\xc7\x9e\x38\xbe\x88\x22\x70\ \x75\xae\x79\xac\x04\x4d\xb6\x94\x90\x57\x55\x0b\xd0\xd8\xa0\x76\ \xa1\xaa\xb5\xc9\xe2\xe4\xea\x81\xec\xf1\x57\xac\xae\xf5\xa5\x59\ \xf1\x91\x0a\x99\xe1\x80\x5a\xce\xf8\x90\x1c\x90\x80\x0f\x69\x84\ \xb0\xc1\xf2\x68\x42\x45\x69\xf0\x06\x39\xd4\xf5\xc2\x93\x6a\x42\ \x76\x98\xc3\xdc\x21\x6e\xc5\x73\x99\xe2\x66\xa6\x7e\xf8\xc3\x59\ \xe4\x65\x16\xac\x60\x24\x7c\x66\x71\x6c\xbf\xdc\x2b\xcf\x3c\x05\ \x18\x42\x02\x58\x25\x7e\x40\x71\xd0\x9d\x0c\x42\x10\x08\x23\x5e\ \x44\x5f\x64\xd1\x1d\x69\x20\x84\xcc\x08\x69\xae\xa6\xb1\xdc\xa7\ \x3d\xf7\x06\x97\x75\xa7\x3c\xfe\x64\xcf\x05\x4e\x76\xad\x7f\xff\ \x6b\x38\xda\xe2\xc0\xc1\x74\x9c\x16\x12\xe4\x11\xe6\x01\xcf\x5a\ \x1e\xc1\x6d\xc2\xbe\x59\x7d\x84\x59\x83\xa9\x0e\x7a\x6d\x4e\x57\ \xd6\x92\x43\xad\x28\x72\x9b\x99\x32\x36\x13\x98\x50\x6c\x03\xdc\ \xc0\x53\x06\x28\xf6\xb2\x8b\xdd\x97\x66\xb3\x58\x5e\x83\x19\xcf\ \x76\x41\x29\x59\x28\x76\x0d\xa8\x9c\x0a\x42\x05\x48\xd9\x6d\x89\ \xb0\xc2\x46\x62\xd0\x81\x19\xcf\x74\x46\x34\x9a\x7b\x42\xb7\x14\ \x32\x00\x76\xf9\x32\x0d\x11\x85\xa3\xef\xce\x93\x7f\xc5\xfa\x5f\ \x89\x06\x17\x09\x54\x16\x30\x12\x68\x00\x66\x24\xe0\x40\x0e\xf2\ \x08\x89\x1c\x0a\x7e\x74\xa5\x9b\x0f\xa5\x47\x18\x42\x71\xbb\x92\ \xae\xa3\x69\x73\x46\x3d\x9c\x91\x03\xc2\x3e\x0b\x26\x88\xa3\x02\ \x4c\xb0\xb8\x38\x6e\xa0\x76\x57\x18\x1b\xd9\x29\xbe\x17\x8b\x3d\ \xae\x0e\x3b\x98\xc2\xc5\x79\xd9\xe4\x3b\x25\xfb\xce\x41\xf3\xc3\ \x00\xda\x3e\x82\x3a\x5c\xb1\x72\x96\xdf\xae\x23\x4e\x5d\x89\xc5\ \xc0\x88\xf3\x9c\x83\x2c\x45\x96\x1e\x0e\x6a\xd5\xd4\x26\x9b\x70\ \xd4\xe7\xcf\xc2\x63\x93\xfb\x0b\x6a\x2d\x18\x0e\x06\x63\x10\x83\ \xaa\x65\x16\x7a\xa8\xbf\xfe\xc1\x29\xb0\xe6\x48\xe9\x69\x2d\x87\ \xc3\x93\x61\xb8\x6b\xd0\x3a\xd1\x22\x95\xdc\x13\xcc\xc2\x0f\xb6\ \xbf\xc1\x0b\x80\x3d\x04\x03\x30\xc1\x13\xe2\x28\xfb\xda\x7f\xef\ \x09\xb4\x63\x7c\xc5\xac\x38\xb1\xb3\x3f\xae\x0e\x76\xaa\x6a\x93\ \x90\x8d\xec\xb5\xbd\xe0\x04\xf1\x68\x9b\x1d\xa8\x20\x7c\xb7\x0d\ \xcf\x11\x39\x18\x23\x78\x32\xcf\xa0\xdc\x3c\x06\xb1\xd3\xf2\xc4\ \xfc\xc4\xda\x65\xb7\x3a\x44\x94\xcb\x3f\xe1\xb5\xef\xef\x65\xe7\ \xb5\x80\x6a\xd0\x3b\x58\x0e\x52\x57\xbd\x80\x54\x2f\x87\x23\x88\ \x61\x0b\xc3\x35\xa9\x1c\x39\x0b\x0d\x1b\x02\x3f\xb8\x81\x7c\xb0\ \xbd\x17\xb8\xbd\x7c\x30\x00\x6e\x92\x38\xb5\x33\xbb\x0a\xa8\x80\ \xdf\x6b\xbb\x63\x23\x31\xe4\x7b\xae\xb9\xc8\x17\xb8\xa8\x3b\xad\ \x41\x8c\xee\xfa\xc0\x03\xa8\xb6\x21\x79\x01\x54\x18\x84\xec\x43\ \xb4\x53\x0a\x09\x1e\xbb\x86\xdd\x31\x09\x9a\x1b\x2d\xf1\x1b\x16\ \x49\x13\xb2\xc6\xe9\xb9\xfd\xc2\x41\x94\x09\x8a\xb1\x1a\x21\x2d\ \x70\x23\xf9\xeb\x3c\x54\x93\x06\xd0\xa3\x81\xfc\x6b\x98\x37\xa0\ \x01\x2a\xfb\x3f\x10\x30\x33\x83\xf3\xab\x19\xe9\xa6\x59\x40\xc0\ \x29\x94\x42\x89\xb3\xfe\x42\xb3\x33\xbb\x5b\xa8\x00\xb3\xbb\x81\ \x1b\x30\x80\x39\x7b\x2e\xb9\x9b\x8b\xee\x60\x3e\xb8\x78\x0f\x28\ \xe1\x2e\x2f\x38\x00\x71\x28\x2a\x7e\x28\x08\xeb\xbb\x07\x7e\x98\ \x15\x96\xb3\x08\x15\xe4\xa7\x6b\x10\x81\x02\x01\x28\x48\x8b\x13\ \x8c\x91\xbc\x35\x99\x8a\xf7\xea\x20\x4e\xc3\xc1\x67\x79\x96\x67\ \xfa\xa3\x20\xfc\x1b\x93\x31\x99\x20\x84\xa3\x31\xc0\x01\xce\xd2\ \x8c\xe8\xc0\x01\xff\xc3\x81\x82\x43\x2e\xce\x79\x97\x6e\x9a\xc2\ \x21\x40\x40\x3f\x10\x0f\x89\xcb\x06\x26\xc8\x06\x71\x58\x05\x2f\ \x58\x05\x09\x94\x40\x4f\x68\x3b\x30\x3c\xb1\x57\xac\x8b\xbe\x90\ \x97\xba\xdb\x33\xc7\xda\x1a\x40\x43\x85\x5c\xd4\x45\x76\x28\x41\ \x76\x58\x03\x14\xc4\xb1\x7c\xe2\x3e\x63\xd0\x81\xa9\xb2\x2f\x38\ \xc1\xaa\xf3\x33\x0d\xc9\x83\xbc\x06\x09\x0e\x15\x2a\x44\x0e\xc1\ \x41\x67\x90\x21\x37\x7a\x26\xc2\x09\x21\x69\x68\x35\x10\x6a\x35\ \x69\x48\x05\xd6\x3b\xc2\xd4\x23\x03\xa9\x3b\x8b\xa5\x23\x03\xbd\ \x62\x0e\x19\xb1\x3d\x3f\xb8\x3d\x03\x64\x47\x26\x30\xc0\x35\xb0\ \xc2\x0a\x20\x85\x7a\xf4\x82\x0a\xe8\x42\x71\xf0\x84\x1b\x98\x05\ \xf5\xd0\x83\x0b\xfe\x7c\xae\xbe\xa0\x8b\x0d\x2c\x9d\x33\x94\xb6\ \xbc\x43\x0c\x3f\x7b\x81\x20\x40\x85\x6a\xeb\x81\x23\xe0\x36\x3a\ \xd4\x08\x8e\xe0\xb1\x98\x7b\x20\x96\x58\xa8\xd7\x48\x46\x35\xb1\ \x34\x4b\x13\xa3\x91\xe9\x90\x1c\x34\x44\x94\x49\x99\xfd\x9a\x3f\ \x93\x01\xa6\x56\x10\x30\x8b\x12\x30\x95\x24\xbd\x70\xf4\x08\x79\ \x20\x03\x07\x03\x81\xe1\x52\x8e\x44\xf9\xab\x7c\x70\x47\x76\xf4\ \x83\x6c\xf0\x49\x78\xbc\x81\xdb\x63\x02\x2f\x90\x0a\x52\xf0\x02\ \x8c\xeb\xc2\x59\x98\xb3\x13\xc0\x40\x7f\x34\x0f\x4d\xc9\x97\xf6\ \xc8\x97\xc3\xd8\xae\xa0\xea\x24\x5d\x0c\x82\x17\xe0\x45\x7e\xf8\ \x05\xad\x74\x00\x60\x1c\xaf\xcd\x7a\x03\xdd\x49\x10\xd6\x28\x89\ \x3f\xbc\x2a\xf1\xdb\x89\x8e\x3c\x32\xf8\xda\x9b\xca\xdb\xaf\x67\ \xd9\x90\xa0\x00\xa4\x94\x09\xc2\x6b\x1c\xc2\x96\x2c\x35\xa9\x83\ \xc9\x73\x09\x33\x31\x20\x2e\x3b\xc0\x3a\x19\x99\x11\x3f\x28\xc0\ \x02\xcc\x86\x0a\xc8\x05\x9f\xcc\x06\x3f\x00\xca\x7c\x60\x02\x52\ \x78\x0d\x52\xb8\x01\x39\x53\xca\x7f\x0c\x43\x11\xfb\x0b\xbb\x18\ \x8c\x5a\x44\x48\xbe\xeb\x9a\x6a\x7b\x81\xc0\x63\x87\x6d\x60\x07\ \x76\x38\x82\xfe\x17\x38\x34\x89\x94\x08\x7d\x12\x83\x94\x48\x13\ \x4a\x8b\xc1\x97\x68\x3c\x0b\x39\xbf\x30\x22\x8d\x65\x59\x1e\xf6\ \x0b\x8a\xf9\x2b\xc9\x94\xf9\x23\xc0\x39\xc9\x94\xa4\x9e\xa4\x2b\ \xb8\xbe\x4c\xbd\xa3\x03\xcc\xc0\xc4\xba\x45\x69\xc7\x02\x9c\x85\ \x7e\x60\xcc\xc5\x6c\xc7\x17\xb8\x81\x6c\x90\xcc\xab\xaa\x00\xa5\ \x94\x33\x12\xd3\x8a\x78\xe9\x0e\xf3\xe8\x0b\xb8\xd3\xb3\xa9\xcc\ \x3b\x54\xe8\x1a\x2f\xe8\x3b\x54\xb8\x07\x75\x18\x2e\xd4\x24\xae\ \x39\x64\xcd\xd6\x7c\x83\xd7\x5c\x8d\x31\xc2\x20\x0a\x42\x4b\xb5\ \x9c\x0a\xd4\xd0\xa0\x39\xa9\x3c\xf6\x7b\x96\xf9\xf3\xcd\xdf\x1c\ \x87\xe0\xcc\xb2\xc1\xb1\x28\xb4\x02\x91\x4d\x30\xc2\x70\xdc\xb7\ \xfe\x23\x2e\xd8\x1b\x02\x18\xd1\xc9\x05\xf4\xc4\x9e\x94\x4e\x9f\ \x34\x4c\x26\x28\x40\x26\x58\x85\x3f\x8c\x02\x2f\xa8\x4c\xa5\xe4\ \x4e\x47\x0a\xcf\x57\x6c\x36\x67\x1b\x0c\xc2\x00\x2a\x40\x23\x85\ \x41\xcb\xc5\xd3\x04\x40\x26\x74\x30\xd5\x9c\x4f\x89\x50\xb4\x79\ \x00\x9e\x80\x3a\x89\xd1\x28\xa8\x3e\xe4\xcf\xb5\xdc\x4f\xc7\x5b\ \x9e\x0f\x42\x86\x94\x51\x52\x25\xa5\x82\x25\x65\xc4\xe7\x01\x26\ \x01\x1b\xfe\xb0\x4b\x44\xce\xc3\xfb\x4b\xc0\x84\xbd\x35\xd0\xd2\ \x0b\x65\x47\xe8\x64\xc7\xc6\x5c\xcc\x6c\x40\x40\x6e\xc2\xce\x7a\ \x94\x8a\x28\xc0\x47\x46\x3a\x51\x4b\x01\x4f\xf1\xfc\xc2\x7a\x81\ \x0b\x3c\x23\x8c\xf3\x14\x07\x7e\x88\x51\x7e\xe0\x87\x1e\x38\x4d\ \xd4\x04\x01\x1a\x30\x47\x07\x88\x48\xd6\x2c\x83\x54\x88\x39\x1f\ \x55\x89\x09\xba\xcd\xda\x9c\xbc\x22\x25\x09\x27\xfb\x20\x6d\x64\ \x44\x27\xad\x1e\xe0\x4c\x50\x38\x9a\x1e\x29\x05\x91\xa7\xab\xd2\ \x8e\x98\x49\x10\x40\x02\xc1\xb4\x03\x2d\x85\x11\x3f\xb8\xd0\xc3\ \xe4\xc9\x6c\xc8\x05\x78\x94\xc2\x21\xc8\x86\x55\xa8\x47\x52\x80\ \x09\x52\xf0\x84\xee\x64\xa4\xcc\x74\xae\x1f\x3a\x0f\x33\xb4\x0b\ \xbc\x3b\x8c\xbe\x13\xc1\x19\x3d\x4d\x26\x7c\x0e\x79\x90\x07\x03\ \x00\xcb\xcc\x9a\x05\xdd\xe1\x1d\x3e\x3c\x3f\x45\x9d\x3c\x8f\x99\ \x89\x33\xc8\x83\x5f\x70\xa3\xc3\xf9\xa3\xe7\x51\xd2\xc1\x41\xd0\ \x44\x64\xc4\xc1\x19\xc2\x05\xcd\x54\x49\xcc\x95\xd3\x3b\x8b\x73\ \x44\x38\xc0\x92\xc2\x28\xfc\x50\x26\x60\x14\x6e\xca\x87\x56\x25\ \x85\x53\x2c\xca\x5b\x20\xb1\xee\x74\x97\x39\xbb\x14\xe9\xe2\x29\ \x14\xfe\x2b\xbb\xa0\xaa\xd3\x3b\x45\x05\x76\xd0\xd3\xe1\x2a\x42\ \xd3\x23\x56\x63\xcd\xd1\x7f\x50\x84\x46\xb3\x9b\xd1\xba\xcd\x21\ \xed\x89\x8e\xe9\x89\xd4\xd0\x82\x27\xd0\x02\x2a\x20\x9c\x6b\x84\ \x1e\x34\x00\x4e\x27\x05\x1c\x44\x44\x44\x4b\x4d\xb5\x07\x1d\x57\ \x55\xa3\x49\x1a\x38\x1a\xb6\x60\x8e\x9c\x04\xac\xdb\x03\xac\xeb\ \x5c\x85\x6c\xe8\xa6\x03\x90\xcc\x78\x9d\x05\x1e\x62\xa4\xa4\xc1\ \x4c\xe8\x62\xd3\x78\x31\x12\x07\x68\xbb\x4d\x62\x02\xf4\xb4\xd3\ \x6a\xbb\x87\x17\x18\x58\x1c\xd8\x84\x22\x24\x56\x79\xa8\x83\x6f\ \x48\x58\x45\x80\xb9\x37\x29\xbf\x38\x71\x2f\x88\x0d\xc4\xe3\xa9\ \xaf\x87\xda\x93\x27\x25\x1c\x8e\x85\x9e\xbb\xec\x58\x20\xec\x3c\ \xb0\x55\x50\x31\x58\x5a\x92\xdd\xa7\xa3\x1b\x83\x2d\x58\xce\xe2\ \x52\x0e\x10\xf0\xb5\xbf\x82\x29\xc0\xf2\x3a\xc5\x64\x02\x47\xb1\ \x83\xa1\x8c\xd7\x1b\xf0\x9c\x46\xe2\x21\xcc\xf4\xd9\x9e\x75\x2e\ \xef\xa8\x38\xe0\x03\x3e\x26\x10\x41\x52\x00\x56\x31\x70\x3a\x5b\ \xd8\x84\x4d\x78\x3a\xa8\x13\x87\x63\x55\x2a\x22\xd0\x96\x0b\xa9\ \xaf\x38\x71\x56\x8e\xec\x98\x19\xb4\x93\xe5\x31\x2b\x8d\x0d\x9c\ \xfe\xb0\x25\x5b\xbb\xfc\x41\x6b\x64\x44\x97\x2c\x35\xb5\xd5\x0c\ \x39\x30\xb5\x8a\x3a\x14\x17\x71\x11\x72\x51\xae\xdb\xe5\xb0\xec\ \x18\x02\x09\x7c\x01\x73\x69\x02\x3d\xa0\x47\x59\xdd\x21\x30\x84\ \x33\xa9\xa1\x29\x4b\x39\x12\xbb\xd8\xa4\xde\x73\x2c\x3c\x85\x82\ \xd3\x9c\x87\x54\xc0\x01\x5b\xb8\x3f\x5b\xb0\x5e\x62\x55\x07\xcb\ \xbd\xa7\x6f\x98\x07\x72\xfb\x5c\xac\xcd\xa5\x30\x0a\x8e\x3b\x41\ \x06\x8c\x0d\x4e\x1f\x7c\x23\xf4\xed\xbc\x01\x55\x30\x45\x04\xa6\ \x6f\x35\x19\x7c\x00\xc7\x86\x09\xb8\x30\xdb\x82\xb6\xd5\x0d\x7f\ \xc0\x84\x7e\xe0\x5f\xfe\x25\xd5\x76\x9d\x11\x00\x8e\xa9\xb5\x60\ \xd5\x6c\x68\x14\xb5\x18\x02\xc9\x44\x53\x47\xda\xb0\x7f\x74\xc5\ \xed\x20\x1d\xcd\xb4\xb8\xb6\x7b\x81\x3a\xdd\x06\x3d\x95\x19\xe9\ \xa5\xde\x14\xb0\x05\x1c\xf8\x04\xc8\x4d\x01\xed\x2d\x25\x45\xe0\ \x87\x63\x20\x09\x9a\x0b\x8e\xce\xc5\x9b\x14\x76\x90\xd4\xa8\x01\ \x54\xcb\x58\x68\xa9\x01\xc1\x89\x9e\xc0\x31\x44\xf4\xf5\x23\x90\ \x1a\x83\x1a\x8e\x30\x7c\x98\xb5\xe3\x64\xa0\x4a\xac\x28\xdd\x80\ \x9c\xfd\xed\x5f\xff\xfd\xdf\x55\x55\xae\xb6\x98\x85\xc4\x5c\xfe\ \xae\xec\x38\x01\x2f\xa0\x90\x55\x70\xa4\x7a\xad\x57\x5b\xa5\xa9\ \xb7\x88\xd3\xad\x11\x8f\x86\x34\x4d\x07\xc3\x01\x0f\x76\xba\x4d\ \xb0\xde\x4f\xf0\xe0\x54\x10\xe1\x52\x3a\x80\x1a\xc8\xa0\xc8\x03\ \xdf\x65\x94\x34\x90\x49\x26\x0d\xd1\x56\xbb\xac\x01\x11\x28\xab\ \xb2\x55\x19\x1f\x54\xdd\xf7\x25\x1c\xfe\x8a\x30\x48\xe4\x32\xbe\ \xe4\xac\x82\x4d\xc2\x8a\xca\x8d\xa3\xf0\x99\xfd\xc5\x04\x9e\x74\ \x64\xc3\x34\xcc\x25\x2e\x02\x3f\x38\xbb\x1d\x6a\x8b\x17\xb0\xc7\ \x9b\xed\x1c\x5a\xbd\x57\xe9\x72\x0b\x54\x09\x4f\x56\xf0\x94\x12\ \x44\x85\x6d\x28\xa9\x59\x83\xdd\x54\xb0\x85\x14\xd8\x04\x0e\xfe\ \x84\x57\xfe\x04\x76\x48\x63\x04\x22\x82\xf6\xfa\x89\x0a\x51\xe1\ \x86\x12\x52\x92\x60\x2d\x88\x7a\x26\x2a\xf8\xa3\x11\x8a\xa8\x1a\ \x7e\x26\x4a\x3d\x9c\x38\xf2\xc1\x68\xd1\x82\x69\xb1\x37\x02\xd3\ \x37\x4d\x0d\x09\x8f\xa0\x01\x24\x90\xba\x55\xd3\xc6\x43\x61\x64\ \x72\x59\x94\x0b\xcd\x85\x47\xe6\x49\x98\x2a\x02\xdc\x1b\x82\x6b\ \x6a\x02\x03\x20\x85\x41\xa8\x80\x77\x71\x60\x35\x25\x5e\x7c\x71\ \x8b\xe8\xca\x8b\x17\xe0\x14\x54\x18\xcd\x82\xa3\x01\x1c\xfe\x48\ \x85\x05\x58\xe5\x14\xf8\x84\x0e\x68\x83\x57\x46\xe3\x84\xfd\x07\ \x52\x08\xbf\xd8\x78\xe3\x88\x65\xd4\x2e\xd8\x93\x69\x54\x52\xc1\ \x11\xce\x1e\x34\xdb\xf7\xad\x9e\xc2\xe1\xaf\xb6\x62\x30\x07\x0b\ \x11\x69\x98\xb0\x2d\xe3\xbe\x1f\xf6\x53\x02\x6b\xe6\x31\x98\xdd\ \x45\xc6\x04\x18\x09\x60\x3f\xc8\x85\x7e\x70\x64\xe9\xe4\x49\x1a\ \x19\x82\xa0\x2c\x82\x6f\x9b\x01\x7a\x5c\x85\x6e\xb2\x4c\x13\x85\ \x33\x7c\x85\x0b\x36\x45\x3e\xf2\x70\x00\xa4\x45\xcd\xb0\x90\x87\ \x4d\xf0\x60\xeb\xe5\xe7\x0e\xa8\x85\x7f\x86\x83\x36\x90\xcf\xf9\ \xdc\xda\xe1\xb0\xda\x83\x9e\xd8\x38\xa6\xaa\xb8\x9c\xd6\x8f\x2d\ \xe6\xb2\xea\xd6\x6c\x9c\xe8\x64\xe6\xbc\x08\x0b\x3d\x1c\x90\x06\ \x34\x90\x5f\x2a\xf3\x37\xc7\x1d\xe4\x30\xb3\x28\x99\xd1\x8d\xa3\ \xa0\x02\x9f\x79\x91\x96\xcd\x85\xb9\x66\xc7\xc5\x64\xe9\xba\x7d\ \x69\x0f\x5d\x29\x8e\x98\x01\x2f\xa8\xc7\x59\xad\xbd\x65\x0b\xec\ \x5a\xad\xbd\x39\x7b\x67\x37\xc5\x8b\x9f\xd6\xca\x23\x98\x30\xd8\ \x9d\xde\x14\x80\xec\x7e\xae\x85\x05\x80\x83\xca\x96\xe5\x84\x1d\ \x04\xe2\x38\xa3\x33\x95\x6a\xda\x3c\x53\x38\x09\xdd\xfe\x3c\xd8\ \x4d\x8b\x75\x06\x8e\x0d\x9c\xd2\xb5\xd4\x6e\x55\x99\x26\x3b\x06\ \xe6\x31\x99\x31\x70\x30\x7c\x00\x1c\x99\x99\x1e\xce\x10\x30\xd1\ \xeb\xad\xc3\xf9\xbf\x23\xc0\xe6\x9d\x79\x91\x95\x45\xe9\xb9\x96\ \x4e\x96\x26\x55\x93\x26\xd3\x5c\xf0\x5b\xe7\x38\x8b\x21\x90\x62\ \x52\xd8\xce\x65\xab\xcc\xda\xe3\x47\xee\x3c\x51\xc2\x32\x92\x1b\ \xa0\x67\xad\xd4\x4a\x76\x68\x3a\x31\x50\xe5\x7d\xb6\x85\x5a\x80\ \x85\xc9\x86\xec\x14\xb8\xec\x84\x0d\x0e\x0c\x4a\x4b\xa9\x4e\x2d\ \xb6\xb9\xb9\x36\x09\xba\xd6\x16\x9c\x44\x9c\x3f\x6c\x4c\x6d\xc0\ \x89\x6f\x43\xf4\xd6\xb2\x46\x1c\x64\x10\x33\x2d\xf0\xe1\x37\x78\ \x30\xff\x26\x30\x10\x49\x30\xa3\x18\xae\x7c\x58\xe4\xb8\x56\x0e\ \x9d\x9c\xeb\x07\xcf\x06\x95\xbe\x5d\x54\xf5\x82\x6c\xf0\x5b\x47\ \xa9\x83\x13\x08\x51\x9b\x0d\x6c\xe8\xf6\x84\x0f\x9f\x85\xa4\xc4\ \x57\x7f\xec\xbd\x79\x46\x85\x87\xa4\x66\xa3\xe6\xe0\x14\x80\x03\ \xf1\xae\x85\xc9\xae\x6c\x5b\xa8\x5c\xf4\xf6\xcf\xf5\x3e\x68\x65\ \x94\x58\x39\xb6\x89\xd6\x6e\x6d\x44\x84\x9e\x90\x3d\xa1\x56\xf8\ \x1b\xb8\x92\x4b\xa2\xb8\x46\xd0\x93\x99\x3f\xb2\xfe\xa8\xe8\xc1\ \x07\xa7\x08\x11\x06\x5b\x49\x01\x13\x11\x67\xf8\xbf\x50\xd5\x5f\ \xb8\x06\xac\x07\x87\xf0\x2e\xcd\x8a\x5f\xbb\xce\x54\x7d\x62\xb6\ \x28\xd3\x55\x98\x55\x8d\x0b\x71\x95\x9b\xc0\x0f\xe7\xc7\x12\x73\ \xca\xbb\x38\xcd\x13\x67\x6c\x1a\x88\xdc\x56\xae\x6c\x38\x58\x00\ \x17\xa7\xec\x4f\x58\x00\xec\xc3\x6c\xfb\xb2\xf1\xce\x86\x0d\x00\ \xdd\xcd\x5e\x5a\x99\x3a\x06\xa1\x10\xa2\xe1\xf5\x1d\xc9\x2c\x03\ \x26\x62\x22\xb0\x39\xb2\x1e\x2d\xd8\xb2\x2e\x2b\x9c\x69\xa1\x23\ \x8b\x92\x86\x42\xf1\x87\x92\x3a\x82\x45\x69\xe4\x76\x5d\x83\x7e\ \x80\x70\xbb\x8e\x64\x1a\x79\x97\x7c\xa8\x00\x0b\x1f\x67\xa3\x29\ \x02\x9a\xf6\x04\x13\x5d\x36\x4f\x50\x84\x55\xf8\x06\x09\xd4\xc2\ \x35\xcf\x69\x77\xd9\x0b\x79\xde\x53\x24\x20\x03\x07\x8d\x5c\x0e\ \xae\xec\x3b\x7f\xf1\x05\x30\xf6\x05\xd8\x86\x59\xae\x9d\xcc\xd6\ \xcf\x5c\x76\xc6\x38\x66\x9b\x15\xc1\xc1\x8a\xad\xd6\x38\x32\x99\ \xb2\xca\x63\x02\x35\x72\x44\xfc\x56\x47\xaf\xa8\x10\x3a\x26\x67\ \x08\xbd\x23\xc0\x07\x1f\x64\xb0\x56\x7b\xdf\xdb\x00\x97\x44\xd1\ \x52\x3f\xd8\x99\x0a\xcd\x87\x5c\x20\x85\x07\xfe\x47\x69\x03\x64\ \x94\x52\x7f\x1f\x54\x65\x02\xe5\x06\x93\x19\xb8\x81\x55\x58\x05\ \x7e\x3c\x81\xe9\xf6\x84\x0a\x20\x82\x0a\x30\x20\x5a\x7f\x75\xc2\ \x56\x8f\x9f\xa6\xd1\xd3\x54\xba\x39\x77\x65\x3d\x27\xf6\xc9\xa6\ \xec\x05\xf8\x84\x03\x50\x76\x85\x51\x84\x0a\x49\xcb\xb6\x04\xdf\ \x4b\x93\x89\x3b\xf9\x05\x8b\x5d\xdf\xf9\xbe\x76\xc3\x51\xf4\x88\ \xca\xd6\x43\x1f\xc2\x28\x5d\xc9\x24\x95\xab\x98\x39\x3a\xc4\x39\ \x86\xe6\x99\x68\x60\xc2\xe6\x43\x11\x55\x71\x01\x60\x79\x9f\xf7\ \x9e\x6c\x4c\x28\x34\x40\xba\xcd\x85\x54\xd7\x83\x49\x29\x02\x57\ \x8d\xd9\xe9\x8e\x75\x22\x50\x78\x83\x97\x40\x81\x67\xa4\x7b\xd9\ \x75\x75\xe0\x45\x0c\x7e\x3a\x32\xb6\x05\x58\xb6\x73\x62\xbf\x78\ \x3b\xe7\x87\x8d\x57\x98\x41\x38\x4b\x90\x71\xf6\x40\x47\xc6\xd9\ \xb0\x6a\xf9\x5b\x52\x20\x7c\xbf\x12\xea\xd6\xea\xf9\xd6\xea\xf9\ \x10\x02\xab\x9e\x1a\x78\x37\x2a\xb8\x32\x69\x68\xb7\x3c\x00\xa6\ \xe0\xa4\x82\x43\x79\xeb\xef\xd9\x52\x4f\xfc\x2b\xa0\xa7\xeb\xc6\ \xec\x26\x52\x55\x2e\x54\x35\xe0\xa0\xc9\x35\x07\xa8\x59\x7c\xec\ \xc2\x2e\x2c\xf8\x6f\xf8\x70\x34\xb7\x7c\xfe\x57\x50\xca\x9f\x76\ \x80\x35\xd8\xee\x0b\x66\x87\xd0\x93\x73\x5b\x48\x85\x57\x86\x83\ \x4f\x68\xf1\x62\x1f\xf6\x05\x40\x86\xd5\x94\x48\x66\x1f\x96\xb4\ \x87\xe3\xb6\x04\x50\x0e\xc9\x13\x6b\x74\xa3\x1f\x94\xbf\x8a\x9e\ \x61\x10\x32\x19\x6d\x1c\xc2\x2d\xc0\x87\x26\xfd\xbc\x47\x6f\xb7\ \x17\x92\x86\x2b\x33\x30\x17\xf8\xa8\x49\x1d\x87\xc1\xc7\x66\x9d\ \x71\x7c\x46\x69\xd7\x78\xaf\xc7\xc6\xfc\x66\x77\xac\xdb\xeb\xcc\ \x86\x13\xc0\xf0\xec\x08\x5e\x74\xde\xc7\x7d\xbc\x01\x59\x4f\xf3\ \x82\xff\x70\x57\xd8\x47\x4f\xd9\x8b\xd4\xdc\xd3\x52\xd6\x53\x24\ \x88\x5c\x1c\xf8\x67\xd6\x5f\x7d\xb0\xbf\xf8\x17\xf7\x82\xa8\x05\ \x08\x52\x00\xba\x00\x28\x68\xf0\x20\xc2\x84\x0a\x15\x46\xe9\xe2\ \xd0\x60\x43\x0f\x4f\xf2\x3c\x99\xf8\x44\x4b\x9e\x8c\x35\x6a\x1c\ \xab\xa1\x05\xe3\xc6\x1a\x68\x90\xc1\x20\x29\xed\xe4\x18\x7c\xf8\ \xc6\x50\xd1\x22\x0d\x1f\x12\x7c\x68\x8e\x9d\x39\x93\x47\x9a\x98\ \x95\x30\x6a\xb8\x38\xe6\x8c\xe4\x38\x67\xe3\xfc\xf9\xcb\xe7\x0f\ \x53\x3f\x4c\xf9\x86\x30\x1d\x62\xa7\xc8\x90\x5c\xa4\x48\xe5\x1a\ \x72\xc3\x0f\x56\xac\xb3\x86\xcc\xd2\xfe\xc3\x34\x1b\x93\x21\x33\ \x66\xd4\x99\x31\xc4\xcb\xd4\x55\x37\x3c\xb1\x5d\x5b\xe1\xed\x8d\ \xb8\x6c\x67\xcd\xba\x21\xce\xc0\x0b\x07\x0e\xd8\xb1\x7b\x01\xa5\ \x47\x8f\x6d\xbf\xb6\xa5\x42\x22\xe7\x53\x87\x36\x9f\xe0\x30\x5e\ \x50\xeb\xf1\x82\xc8\xb5\x60\xfd\xfa\x67\xf9\x32\xe6\xcc\x9a\x37\ \x73\xc6\x2c\xb0\x4b\x94\x85\xa2\x47\x2f\x04\x8d\xf0\x8c\x87\x5f\ \x15\x35\xe6\xe1\xd8\xf1\x18\xec\x1a\xad\x37\xa2\x29\x59\x1b\xc6\ \x98\x94\xba\xa5\x65\x1c\x63\x18\x5f\x8d\x9a\x67\x5c\xaa\x1c\xe3\ \x8c\xe6\xb1\x27\x30\xa8\x50\x19\x37\x0e\xd3\x96\x7c\xf9\x30\x51\ \xf7\xb3\xa6\xe9\x90\x22\x76\xa2\x52\xf5\x33\x0b\xab\x27\x3f\x57\ \xb3\x6d\xb5\x9a\xed\x86\xd8\x3a\x65\x67\xad\x9a\x2a\x97\x2d\xdb\ \x0a\xdf\x3c\xdd\x98\x35\x97\x15\x2b\x03\x4c\x5c\xe5\x65\xa7\x2e\ \xf0\x36\x7c\x09\x76\x4d\x2b\xa9\xe0\x90\x4a\x62\x0b\xc0\x91\x02\ \x3a\x8e\xc1\x52\x4b\x64\x92\xb5\xa2\x48\x67\x15\x5a\xd8\xd9\x20\ \xa1\x91\xb6\x21\x87\x04\x1d\xd4\x50\x72\x54\x3c\x71\x8c\x46\xb0\ \x99\xe8\x41\x6c\x24\x6a\x51\x1b\x32\x2c\xa6\x54\x9c\x34\xc7\x39\ \x23\x86\x1c\x64\x8c\x41\x53\x4d\xfe\xce\xec\x06\x03\x4d\x2e\x3c\ \x41\x85\x34\xce\x25\xe5\xcf\x1a\x46\x55\x97\xcf\x75\x76\x3c\x05\ \x55\x2e\x4d\x7a\x97\x15\x78\xe2\x71\xe5\x07\x58\x45\xcc\xd0\x44\ \x59\x37\x4c\x35\x08\x7c\x5d\xb6\x45\xd7\x0d\xae\xcc\xc2\xca\x09\ \xb3\xe8\x87\xd7\x0b\x3d\xa0\x22\x18\x3b\x62\x88\x61\x8c\x08\xc6\ \xb4\xd2\x46\x1b\x1d\xd4\xb2\x58\x0a\x29\x38\x06\x59\x84\x0b\xb4\ \x71\xcb\x85\x81\x0a\xfa\x8f\x40\x1c\x1a\x5a\x90\x87\x06\x3d\x74\ \x50\x17\x36\xfd\x92\xc7\x2f\x21\xc1\x86\xa2\x07\x2e\xb8\x10\x92\ \x6c\x2b\xc2\x50\x52\x49\x2a\xa9\x74\xd2\x44\x54\x20\x41\x06\x12\ \x30\x08\xe7\x82\x8e\xb9\xc5\x98\x87\xa5\xe3\x50\x71\x94\x73\x98\ \x14\x55\x24\x75\x98\xf8\x81\x64\x76\x63\xcd\xe0\x47\x2e\xab\xf4\ \x93\x0f\x95\x7e\x84\x97\x4d\x78\x27\x0c\xc1\x44\x36\xd9\xe8\x41\ \x16\x54\x15\xa4\x55\x81\x27\xd0\xd2\xb7\x56\x7d\x27\x94\xb9\xdf\ \x09\x7a\x18\xb0\x6d\x9a\x6b\x6e\xf3\xad\x18\x48\xe0\x30\x0f\x2c\ \x04\x26\xd6\x06\x84\x70\xa0\xd3\x60\x2d\xc3\xf0\xe9\xd8\x02\x3d\ \x50\x38\x28\xbd\x9b\x15\x7a\x28\xbe\x8c\x6a\x88\xa8\x07\x1e\x94\ \x28\x9b\x89\xc7\x54\xea\x81\xfe\x6c\x79\x7c\xf4\xd1\xa6\xc8\x20\ \xd3\x0a\x3e\x39\x8d\x21\x0d\x0c\x79\xcc\x48\x06\x0d\xc0\x9d\x9a\ \xea\xc3\xc7\x9d\x51\x11\x51\xfe\x08\xa9\x94\x74\xd3\x1d\xf9\x14\ \x59\x75\x0c\xc1\xab\x1f\x56\x51\x99\x6c\x36\x29\x33\x75\x02\x58\ \xd9\x15\x31\x4b\x05\xed\x0d\xb2\x0a\x7c\x71\xd1\x45\x97\x1e\x2b\ \xe8\x71\x82\x01\x66\xea\xa1\xed\x0b\x45\x7f\xdb\xc3\x3c\xf3\xe0\ \x40\x83\x1c\x62\xc0\xf2\xf4\xb9\x91\x31\x86\x0e\x1c\x8f\xb9\x0b\ \x21\xbc\xa8\xcc\x5b\x2f\xd7\x97\xed\x9b\x2f\xbe\x8b\x22\x7a\x4c\ \xa4\x35\x80\x71\xcc\xd9\xfe\x9a\x78\x69\xc1\x07\xb3\xd8\xca\xc2\ \xc5\xe5\x06\x83\x8e\x64\xbc\x21\x07\x32\x2e\x08\x77\x0c\x15\xb9\ \x6d\xb1\x85\x33\x79\x6c\x3c\xd4\x16\xb0\xf6\x93\x54\xc8\x7e\x1c\ \xae\x54\xae\x58\x42\xe5\x32\xb0\x15\xe4\x92\x2c\x7a\xc6\x0e\x71\ \xde\x2c\x45\x40\x75\x43\x7b\xab\x54\x40\x2c\x13\xf5\xd1\x15\xf4\ \x09\x3e\x9f\xe0\x80\x01\x0e\xe8\x61\xc7\x5e\x6b\xb0\xd3\xc3\x16\ \xec\x1c\x81\x83\x1c\x9b\x6c\x62\x4b\x07\xb0\xd8\x49\x67\xba\x8c\ \xe9\xd9\xee\x63\x58\xd7\xd2\x03\x11\x5b\x77\x5d\xef\x07\x60\x6f\ \xd8\xc5\x07\x1e\x24\x8a\xfe\x90\xbf\x19\xb5\x36\x69\xbf\x93\xc6\ \x96\x29\x1a\xb7\x29\xdc\x8a\x34\x0f\x77\x2f\x0d\x32\xd2\x1c\x21\ \xcf\x1b\x62\x38\xa3\x77\x4d\x5a\x84\xff\xf7\x18\xe3\xb0\xfa\xc4\ \x38\xd1\x1d\x75\x38\xe2\xd2\xd9\xda\xcf\xad\x4f\xa9\x57\x16\x76\ \x27\x07\xdb\xf2\x56\xea\x42\x1e\x3b\x90\x65\x06\x45\xb8\x81\x17\ \x70\x56\x1f\xd1\xbd\xc0\x5a\xaa\xd3\x8b\x5e\x56\xe0\x00\x25\x1d\ \xe1\x08\xb2\x6b\x93\x61\xe4\xa0\xc1\x14\xd8\x02\x41\xc3\xb0\x13\ \xd6\x16\xb0\x18\x38\x7c\xa2\x5d\x57\x0b\x5e\x2d\xbc\x60\xbc\xe3\ \x0d\x6a\x10\xca\x1b\x0d\x18\xa8\x60\xc1\x5f\x3c\xcf\x20\xfe\x8a\ \x54\x46\xd0\x26\xb0\x80\x5d\xef\x23\x68\x70\x46\x49\x16\x76\x12\ \x85\x85\x0f\x7c\x5b\x90\xc3\x1b\x2a\x26\xb8\x9a\xb8\xc0\x25\x7e\ \xf3\x87\x88\x2a\xd2\x0f\x7f\xfc\xcd\x28\x49\xc1\xdf\xad\xfc\x60\ \xab\xa5\x10\xb0\x80\x06\xd4\x1c\x54\xbe\x83\x95\xab\x70\x25\x1f\ \x31\x23\x4b\x13\x9a\x60\x96\x1b\x30\x21\x80\x43\x30\xc0\x10\xb2\ \x35\x04\x3d\x40\xf0\x05\x14\x04\x81\x1d\xf0\x58\xc1\x70\xd5\xee\ \x76\xb6\xf8\xe3\x02\x3a\x30\x8c\x07\xd5\xc2\x4e\x9f\x10\xa1\x2d\ \xe0\xe0\x98\x13\x42\xfe\xa8\x16\xfc\x58\x21\x0b\x03\xa5\x88\x1a\ \x2a\xcf\x0a\xcc\x7b\x42\x0f\xc8\xd0\x04\x1a\x6c\xc1\x03\x0a\xe9\ \x42\x6b\xa6\x47\x29\x13\xe5\x01\x36\xac\xd1\xc2\x4f\xb6\x07\x3e\ \x22\x12\xd1\x37\xe4\x23\x03\x6f\xd0\xe7\x93\xee\xf9\x23\x37\xcd\ \x81\x1f\x15\xb6\xb0\x86\x35\xc8\x0f\x8b\xb7\x0a\xd9\x75\x34\xa7\ \x9e\xb1\x58\x49\x73\xfe\xbb\x8a\x78\x6e\x75\x95\xcc\x95\xcc\x80\ \x74\x99\xe3\xe9\xbc\x32\x34\x9f\xb1\x6e\x08\x76\x54\x07\x08\xb0\ \x09\x82\x23\x20\x01\x04\xe2\x5a\xda\xed\x3e\xf1\x89\x3f\x96\xf0\ \x69\x93\x81\x4c\x2a\x16\x90\xc8\x12\x5e\x8d\x4e\x7e\x6a\x45\xf1\ \x22\x49\x2f\x45\x90\xc2\x0a\x2f\xb4\xc2\x07\x06\xd3\x30\x37\xd9\ \x4d\x1e\x5b\x48\x5e\x42\xba\x50\x03\x1d\xf8\x2b\x6d\x01\x93\x5e\ \xa6\x34\x15\x44\x22\xc2\x20\x7b\x9b\x82\x01\x3e\x68\xf0\x86\x26\ \xe0\x20\x62\x96\x22\x11\x0c\x50\xa2\xaa\x5b\x12\x45\x97\xba\x14\ \x19\x16\x71\xf5\x14\x92\xe9\x8a\x98\x4c\xc9\x4a\xcb\x92\x89\x2c\ \x29\x0d\x61\x05\x50\x71\x80\xcc\xa4\x39\x34\xa6\xc0\xd4\x01\x47\ \xb0\x23\x12\xec\x80\x04\x24\x54\x30\x83\x38\xc0\x81\x2d\xc2\x39\ \x4e\x71\xa2\xeb\xfe\x41\x4f\x6b\x85\x08\xe9\x94\x48\xe0\xd5\xa2\ \x0d\x7e\x7a\x8c\x0a\xe5\x49\x2f\x22\x5c\xc3\x9e\xf8\xb2\xc2\x2f\ \x64\x87\x04\x1a\xa4\x91\x0c\x39\xa1\x01\x0d\xc6\x00\x50\x84\x08\ \x34\x0f\x28\xda\x21\x29\xa5\x97\x11\x54\x3e\x94\x24\x0d\xad\x0d\ \x5c\xb5\x00\x03\x31\x48\x94\x06\xe6\x1b\x91\x6c\x9e\x70\x12\x8d\ \x3e\xcc\x55\x63\xf8\xdb\x11\x78\xb9\x06\x7f\x68\x11\x2b\xc1\xd4\ \xdc\x92\xbe\x58\xc0\xc7\x89\x27\x1f\xb3\x58\x83\x1f\x90\xd5\x2b\ \x52\x78\x81\x09\x4c\x38\xdd\x0b\x7a\x56\x04\x69\x32\x85\x75\x6b\ \xb8\xe9\x0b\x64\x77\x04\x6f\x82\x00\x07\x6e\x92\x83\x3c\xe4\x00\ \x54\x0e\xe2\x40\x9c\xad\xad\xd3\x64\x60\x31\x8c\x61\x28\xc6\x9d\ \xe2\x3c\x27\x9d\x72\xbb\x0d\x48\x4a\xb5\x33\xdf\xc0\xc1\x2f\xac\ \x6a\xa8\x6d\x68\xf2\x0d\xc6\x35\xae\x1c\x56\x02\x02\x4e\x7a\x32\ \x21\xd1\x03\x43\xf5\x76\xb8\x11\x83\x61\xe4\x23\x40\x54\xd8\x5b\ \xab\xbb\x22\x67\xa8\x0f\x09\xc8\x1d\x03\x0c\x30\x42\x11\x88\xae\ \xa4\x7b\xe5\x75\x46\x2e\x8f\xb0\x05\xf5\x1e\xc1\x48\xd4\x59\x4a\ \x31\x95\x24\xb3\x92\x1a\xf0\xa4\xd8\x39\x81\x1f\x9c\x45\x8a\x28\ \x50\xd6\xb2\xfe\x2f\xb8\xc1\x0b\xe6\xe8\xd9\xbc\x28\x89\x82\xa1\ \xd5\xaa\x06\xc7\xd5\x81\xa0\x6e\x82\x83\xe4\x6c\xed\x27\x52\x51\ \x27\x3b\xc9\xf6\x6a\x7e\x52\xa7\x64\x20\x83\x2e\x3a\x0d\xa2\xb7\ \x82\x52\x84\x2b\xe4\xf0\x8b\xb1\x92\xc6\x0a\xec\x90\xe8\x71\x27\ \x2a\x87\x87\x49\x14\x09\x79\x50\x88\xda\xfa\x25\xe3\xb4\x1a\x8c\ \xbb\x40\x5c\x68\xf6\x42\x92\x87\x4d\xd5\xed\x0d\xf2\x38\x02\xc4\ \x9c\x71\xdd\x97\x88\x21\x37\xf8\xd8\x02\x3e\x62\x04\x83\xbf\x89\ \xa1\x82\x81\xdd\x42\x75\xd6\x60\x25\x62\x16\x18\x8c\x5f\x84\x4a\ \xff\x98\x32\x8b\x6c\xec\x37\x0a\x51\x38\x00\x58\x2c\xcb\x84\xa2\ \x0d\x61\x0d\x45\x3b\x02\x01\xeb\xa0\x47\x0b\xce\x83\x1d\x41\xc5\ \x41\x07\x0a\x94\x02\xdb\x91\x73\x9c\x1d\x44\x50\x21\xad\x36\xdb\ \x73\x89\x13\x0e\xe8\x6a\x6a\x53\x23\x14\x55\x0f\x5f\xc8\x15\x49\ \xdc\x06\x18\x84\x3b\x9a\x5f\xa0\x18\xac\x14\x43\x02\x3f\xef\xf6\ \x0b\x18\xf7\xab\x0b\x03\x9b\x71\xdb\xe4\x7a\x5d\x86\x7e\x84\x23\ \x1e\x91\x2b\x5d\x69\x80\x04\xe3\x2c\x27\x7c\x29\x71\x53\x4e\x1a\ \xa6\x12\xf4\x36\x6c\xbd\x3c\x3d\x42\xc7\xd6\x90\xe6\x19\x80\x40\ \x3b\xda\xfe\x49\xac\x31\x9b\xe2\x32\x3d\x3c\x4e\x2a\x53\x11\x07\ \x2a\x98\x80\x8a\xa2\x39\xc0\xcc\xae\xfb\xec\x95\xba\x0a\x69\x31\ \xa4\xc2\x40\x7f\x44\xd0\x82\xf3\x64\x8b\x05\x20\x08\xa8\x9f\x98\ \x70\x53\x05\x29\x02\x77\xd1\x49\x9c\x4f\x2d\xe4\x86\x23\x33\x8f\ \x0e\x13\xda\x42\xdf\xa8\x43\x12\x8f\x10\xdc\x0d\x7d\xa0\x07\x3b\ \xcd\x89\x18\x28\x46\x06\x39\xd4\x55\x1a\x9f\xf4\x40\x4d\x64\xac\ \xb7\xb3\x76\xc4\x23\x37\xde\x9e\xc2\xd0\x30\x5d\x34\x60\x04\x19\ \x5b\x25\x03\x3e\x6c\x8c\x8c\xbf\xba\x69\xd9\x2a\x41\xf5\xc2\x51\ \x1d\x2e\xf5\xfe\x6d\x0b\x79\x04\x81\xae\x6a\x5d\xe0\x25\x61\x19\ \xcb\x27\x63\x4a\x18\x7d\x0d\x96\x17\xf8\xd7\x9a\x9f\x45\x73\x05\ \xed\x96\x44\x39\x88\xab\xd9\x1d\x70\x36\x09\x15\xf3\x47\x5b\x20\ \xa6\x03\x9f\xe0\x60\x20\x1f\x94\x98\x5a\x88\x60\xdb\x51\xbb\x36\ \x08\x13\x44\xa7\x54\x90\xbb\xdc\x15\xea\xc3\x71\x91\x30\x69\x76\ \x5f\x23\x0f\xbe\x41\x71\x12\x8d\x5b\x31\x12\x03\x20\x0a\x67\x68\ \x94\xa5\x5d\x80\xef\x4a\x69\xdd\x52\x99\x4a\xe5\x18\x02\x2e\x70\ \x83\xd1\xcd\x19\xf8\xa8\x91\x18\x22\x36\xde\x86\x65\x10\xd2\x6c\ \x87\xfe\x74\x4a\x20\x8d\x83\x77\x8b\xe1\x6f\x20\x20\x03\xad\x69\ \xfd\x14\x8d\x3b\x45\x49\xda\xc9\xf2\x1c\x37\x7b\xb9\xcf\xa5\xac\ \x68\x6b\x98\xa0\x1d\xd0\x4c\xda\x51\x19\x37\xb5\xcc\x6e\x76\x6e\ \x6d\x91\xa7\x43\xaa\x33\x05\x40\x6f\xc3\x3a\x63\x9b\xed\x9e\x8b\ \xe0\x41\x8a\x01\xfa\x20\x03\x5d\x73\x7e\x18\xdd\x42\xac\x48\x31\ \x12\x12\xcd\xa1\x28\xf4\x00\xea\x2b\x7f\x74\x73\x19\x85\x1a\xea\ \x0d\x4c\xeb\x67\xe8\x49\xa6\x82\x88\x86\xd9\x88\x84\x53\x4f\x5f\ \x31\xab\x48\xa4\xa3\xa5\x49\x5d\xb5\xe1\x62\x9a\x18\x96\x46\x6f\ \xa6\xc5\x44\x0c\xcb\xad\x03\x19\xd4\x5c\xeb\xe9\xcb\xb7\xb3\x20\ \xcf\x75\x76\x78\x3d\x04\xe9\x34\x45\xd6\x79\x24\xc3\xdd\xc9\x40\ \x06\x79\x30\x8d\xde\xa9\x3d\x50\x07\x5e\x2e\xe1\x0e\x2c\xc0\x76\ \xd7\x56\x0c\x84\x13\x73\xf3\x43\x0a\xf2\x31\xb9\x1b\x46\xcf\x69\ \x4b\x54\x13\x06\xfa\xa9\xc6\x28\x7a\xe9\x6d\x46\x13\x1c\x57\x13\ \xa8\x1b\x25\x25\x84\x15\xf4\x40\x8a\xbd\xc1\xb2\xb1\x5c\x1e\xd4\ \xd0\xec\xf5\x4b\xbe\xf5\x84\xa5\x5c\x54\x47\xe4\xc1\x0f\x09\xdc\ \x46\xf4\x5b\x6d\xe0\x04\x57\xa5\xdd\x31\xf4\x84\xc4\x8c\x01\x5d\ \xfe\x35\x5e\x13\x68\x10\x6a\xc9\xc3\x56\xc9\x03\x0b\xae\x9c\xf9\ \xd1\x80\xf8\x41\x5f\xde\x69\xdc\x76\xd4\xa0\xcc\x80\x11\x0e\x1a\ \x93\x57\x6c\x87\xe2\xd5\x41\x57\x81\x95\x8f\xd1\x80\xed\x08\xe1\ \x81\xe0\xc3\xcb\x45\x18\x9d\xcc\x19\xee\xcc\x89\x38\x1d\x52\x13\ \x4e\x9b\x20\xe9\xce\x63\x88\x80\x0e\xe8\xc0\x07\x8d\x53\x20\xcd\ \xd6\x30\x44\x06\xfd\xb5\x02\xa0\x04\x20\x67\x0c\xe0\x71\xd1\xc0\ \x11\x5c\x03\x87\x5c\x83\xdd\x6c\x52\xd3\xc0\x04\xcb\x3d\x01\x41\ \x68\x88\x43\x5c\x8a\xc0\xf4\x4b\x4f\x84\xa0\x1d\xca\x46\x48\x74\ \xda\x46\xe0\x9e\xc1\x8c\x81\xdd\x54\xcc\x71\x58\x4a\x46\xe0\x04\ \x12\xa5\x18\x0d\x90\x4f\xd4\xa5\x18\xf9\x89\x21\x0d\x84\x9f\x0c\ \x62\xdc\x58\x6c\x5c\x76\xdc\x60\x0e\xe2\xe0\xc6\xdd\xdd\x00\x92\ \xdf\x21\xb2\xe0\xed\xd4\x0e\x0d\xd8\x02\xfa\xa5\x02\x51\x89\x53\ \x9e\xc4\x59\x07\x40\x98\x84\x89\xd0\x21\xb5\x42\xe8\xd1\x09\xfe\ \xe9\x80\x08\x20\x95\x38\x09\xd2\x6c\x35\xd5\xb5\x89\x93\x38\xf0\ \x16\x18\x7e\xc3\x02\x16\xe0\x35\x7c\x8d\x42\x24\x20\xaa\x21\x59\ \xbc\x81\x15\x32\x88\x4d\xa3\x48\x44\x29\x55\x0a\x0f\x75\xc4\xfe\ \x47\xf0\xde\xf4\xd8\x21\x6c\x68\x41\x44\xa9\x20\x6f\xe4\x10\x45\ \x20\x03\x8d\x2c\xa0\x8f\x71\x63\xe3\x19\xe2\x4e\x81\x80\x38\x62\ \x5c\x59\x50\x59\x25\x6a\x8e\x01\x11\x53\x3a\xee\xdd\xdd\x01\x21\ \xf9\xd5\x0e\x27\x32\x18\x9d\x1d\x48\x1b\x48\x58\x9d\x7c\x82\xed\ \xa4\x42\x2b\xd8\x5c\x84\xf1\x99\x53\xd5\x5f\x53\xd5\x09\xe7\x5d\ \xa1\x9f\x99\x10\x2c\xd4\xc9\xe7\xe5\x22\x18\x6e\x86\x22\x70\x63\ \x01\x22\x1a\x69\x38\x84\x07\xb8\xdb\xbc\x0d\x60\x13\x00\x07\x32\ \x7a\xc0\x8a\x94\x52\x8a\x4c\x97\x0f\x11\xdc\xc1\x70\x44\x1d\x86\ \xa0\x16\xe0\xc0\x09\x8e\x41\x29\x51\x84\xc4\x84\xcf\xf1\x79\xa3\ \x4b\x1a\xa2\x1c\x70\xd3\x38\x96\x4c\x39\x6e\x47\xc7\x55\xe2\x17\ \xe5\x11\xad\xa9\x07\x58\x1d\xe2\x1b\x6c\x82\x06\x71\xa2\xed\xa4\ \x40\x1f\xd1\x5c\xfa\x1d\x25\xe6\x59\x5e\xfa\x7d\x02\x9c\xa5\x5f\ \x52\xd5\xc9\x83\xb4\x42\x21\xc9\x56\x15\x76\x9e\x3a\x21\xc6\x6c\ \xe9\xce\x41\x2e\x06\x0e\x10\xc1\x42\x6a\x86\x22\x20\x1d\x37\x92\ \x41\x0f\x50\xdd\x27\x8d\xc1\x00\xf6\xa4\x0a\x3a\x83\x43\xec\xcb\ \x19\xd4\x40\x43\x85\x92\xc1\xc4\xd5\x43\xad\x48\x8e\x61\xfe\x0a\ \x47\x18\x9c\x57\x2d\xd1\x19\x60\x14\x09\xd2\x08\x22\xbe\xa4\x4b\ \xa6\xd6\x4e\x69\x52\x1a\x4d\x54\x59\x6c\x47\x53\x2c\x45\xdf\xf5\ \x5d\x1e\x29\xc9\x38\x6a\xd2\xbc\x6d\xa2\x3c\x00\xe5\x26\x70\xa2\ \x1c\xcc\x5c\x83\xd1\x1c\x9d\xa4\xdf\x9d\x70\x50\xfa\x89\x62\xee\ \xf0\xe3\xfb\xd5\x42\x2b\x68\x25\x55\xc2\xe2\x07\xd1\xdc\x64\x64\ \x65\xfa\x7d\xde\x17\x7e\x25\x66\xf0\xa2\x43\x1e\xc1\x36\x7c\x00\ \x30\x22\x04\xeb\x89\xe1\x4e\x91\x21\x5b\x22\xa3\x0b\x50\x01\x32\ \x7c\x24\x8b\x90\x04\x11\xfd\xd0\x43\x39\x14\xc1\xa1\x01\x5d\xc9\ \x81\x34\x08\x07\x13\x3d\x81\x36\xd2\x9b\x60\x0a\xa6\x3c\x50\x8c\ \x18\x12\x60\x1d\x40\x45\xc8\x00\xcb\x52\x5c\x47\x92\x40\x66\xe2\ \x8d\x16\x58\xa9\x16\x3c\x92\x9f\xed\xa4\x67\x83\xb5\xd6\x1f\xe1\ \xdc\x84\xcd\x09\xcd\x21\x88\x28\x42\xdb\x02\xe0\x00\xb5\x3d\x55\ \xfd\xcd\x16\x15\x5a\xe1\xb9\x68\x9b\x6b\x3a\x55\x2d\xec\x96\x6c\ \x62\x86\x27\x78\x63\x01\x06\x06\x18\x00\xa3\x43\x78\xc8\x2f\xd8\ \x4d\xd3\x20\x81\x0a\x3e\x41\x68\x24\x4a\x17\xb8\x00\x5c\x65\x60\ \x11\x81\x4f\x10\x25\x0c\x49\xa4\x12\xf8\x44\x14\x03\xfe\xc2\x00\ \xfa\x30\xd1\x31\xb8\x04\x5d\x05\x66\x75\xa6\xe8\x44\x61\x49\xf5\ \x2d\xc5\x2f\x49\xc7\x2e\x29\x9e\xf8\x6d\x53\x31\x6a\x90\x2d\x50\ \x66\x27\xce\x19\x50\x3e\xa1\xe4\x01\x9d\x39\xd5\xa7\x7c\xba\xdc\ \x52\x1e\xd2\xfa\x99\x66\x85\x0d\x43\x55\x7e\x90\x6c\x6d\xdb\xb6\ \x11\x52\x9d\x0c\x03\x00\xca\x26\x88\x8d\x25\x60\xbc\xce\x2f\xc4\ \xde\x40\x98\xc6\x40\xfc\x02\x4b\x48\x83\xdd\x90\xc1\x8b\x55\x5d\ \x41\x58\x1d\xd9\xdc\xd8\x42\x85\x4f\x5b\xf1\xd8\xa6\x74\x20\x32\ \x9c\x9d\x71\xa5\x9d\x5a\x49\x4c\x46\x35\xcc\xd2\xa0\xa8\x8a\x12\ \xa0\x8f\xa5\x51\x1a\x25\xa6\x62\x96\x19\x8c\x22\xc9\x67\x7d\xdf\ \x26\x91\x01\x0e\x1c\x41\x0a\x66\x66\x0a\x56\x66\x66\xfe\xd1\x66\ \x46\x98\x3a\xd1\x1c\x62\xb4\xcb\x41\x8a\x10\xb4\x41\xdb\x90\x76\ \xa6\x9d\xe4\x4e\x6b\x26\x29\x15\x6e\x1b\x92\x76\x5e\xf0\xc0\x42\ \x3c\x0d\xa8\x65\x9c\x5e\x8a\x35\x01\x3b\x0c\xc6\xb1\xb1\xc3\x13\ \x88\x46\x43\x00\xc0\x31\x8c\x8f\x8b\xd5\x90\x40\xc1\x55\x49\xac\ \x52\x5d\x02\x91\x90\xdd\x98\x90\x35\x14\x88\x22\x9c\x45\x3c\x81\ \x33\x74\x4f\xf2\x61\xa7\x9d\xde\x69\x10\xd2\x9b\xfe\xf8\x45\x1f\ \xc6\xd5\xda\xdf\x75\xdf\xc9\x85\x1f\x23\x7e\xd3\x65\xa6\x96\x3c\ \xce\x23\x50\x91\x53\xb3\xa9\x22\x54\x42\x4d\x3d\xca\x67\x84\x9d\ \xe6\xe7\x21\x21\x54\x4e\x46\x07\x50\x21\x18\x54\xa1\x6a\x0a\x92\ \x6a\x02\xda\x64\xe8\x62\x00\x1a\x5a\x8a\x81\xc0\x36\xf0\x43\x0f\ \xf0\xc5\x68\x6d\x83\xf3\xe4\xa6\x41\x7c\x80\x34\xf0\x14\x0c\x40\ \xe0\x8e\xb5\x55\x87\x1e\xcc\xc1\x70\x57\xd9\x01\x11\x2a\x95\xa0\ \xf9\xc4\x46\x46\xcc\xe9\x89\x22\xab\x43\x8a\xda\xa8\x80\x1f\xf8\ \x4d\xdf\xad\x6d\xc7\x2e\xed\xd2\xf7\x81\x15\x0b\x12\x61\xf2\xa5\ \x20\x50\x32\x98\xa2\x82\x22\x28\xb6\x96\x28\x46\x58\x91\xca\xd6\ \x6b\x36\xdb\x4f\x21\x86\xee\x8c\xab\x8f\x3e\x0d\x55\x82\x41\xba\ \xc2\xa2\xee\xe0\x1f\x18\x88\x80\x9d\xf8\xc9\xff\x91\xaa\x65\x28\ \xc2\x0c\xa4\x98\xba\x05\x08\xbe\xaa\xd7\x36\x50\xc1\x88\x2d\x44\ \x14\x78\x80\x36\xce\x03\x96\x16\xc4\x31\x04\xdc\x2f\xd8\x86\x76\ \x49\xcf\x33\xfa\x1b\xdd\xfc\xeb\x1b\xc0\x92\xa5\xdc\xde\xa5\x28\ \x07\x09\x12\x9f\xc4\xc2\xe4\xdc\x85\xa3\x38\x3e\x66\x81\x39\x45\ \x8c\x56\xd0\x72\x95\x67\xf9\x21\x01\x53\xda\xfe\x82\x50\xda\x42\ \x1f\x0d\x25\x28\x36\x61\x84\x11\x15\xa6\xee\x19\xfc\x0d\x55\xee\ \xc4\xac\xde\xde\x9f\x16\xaa\xab\x6a\xe6\xec\x7e\xd2\x56\x64\xb4\ \xc2\x20\xc0\x6b\xe9\x89\xe5\x44\xd5\xeb\x36\x1c\x58\x68\xf5\xc0\ \x1a\x88\xa3\xba\x81\x01\x6e\x06\xd4\x2f\x20\x03\x18\x38\xd7\xc2\ \x41\xcc\x43\xc9\x65\x9c\x9a\x52\xaf\x32\xac\x16\x30\x91\x20\xaa\ \x4f\x4a\xa0\x56\xd9\x8e\x61\xd3\xb8\x89\x93\xa1\xdc\xc6\x29\x49\ \xa0\xa2\x5c\x6f\xa2\xa0\x8d\x1e\x08\x3e\x56\x26\x9d\x5d\xeb\x61\ \xec\xed\xde\x42\x5e\xb7\x9a\xa6\xcc\xd9\xad\x2d\x40\xe5\x6b\x8e\ \x93\x52\xe2\x1f\xe7\xf5\xdc\xe1\xe6\x0e\xba\xb6\x53\x2d\xfc\x2c\ \xd0\xba\x02\x6f\xf2\x03\x18\xf0\xc3\x36\xa0\x02\x5f\xa8\x09\x3b\ \x2c\x57\x13\x6c\xd3\x16\x5c\x69\x14\x58\x92\x87\x7c\x00\x18\x50\ \x52\x17\xfc\x42\x79\x91\xc4\xee\xad\x95\x78\x85\x52\x72\x70\xd7\ \xbf\xa6\xd1\x18\xd8\xde\x45\xad\x24\x09\x52\xe7\xeb\x92\x9f\x69\ \x1d\x59\xdd\xad\xd7\xc9\x39\x99\xac\xd1\xee\x4e\xed\x94\xee\xe6\ \x2d\xca\x06\x95\xef\x32\x6a\x50\x65\x26\x62\x18\x88\xf0\x22\x61\ \xfa\x45\xe5\xf1\xf6\xe8\x84\xd5\x23\x29\xfe\xe2\x8e\xf3\xc2\x62\ \x55\x36\xa9\x40\xaa\x6b\xe8\x05\x68\x94\xca\xa6\x45\xb2\x83\x15\ \x58\x41\x14\x5c\x03\x3f\xbc\xc0\x4d\x6d\x43\x0f\x8c\x96\xc5\xd6\ \xc1\x0c\x5d\xc3\xd2\x66\xe9\x42\x80\x41\xf7\x84\x5d\x43\x3d\xc1\ \xa7\x71\xd7\x6c\x58\x84\x90\x6d\x81\x44\xc9\x81\x33\xe0\x1b\xd8\ \xba\xc0\x78\xc5\x9d\xeb\x22\xeb\x3b\xae\x61\xab\xb1\xd7\x67\x7d\ \x96\x53\xd0\xae\x4c\x72\x93\x61\x00\xe5\x81\xb8\xec\x81\x00\x95\ \xef\x72\xd0\xed\xac\x67\x1b\xc0\xa7\x38\xcd\xe7\xfa\x8d\x66\x62\ \xbc\x56\x52\xd6\x9c\x28\xd2\x1c\xcd\x2d\xc0\x92\xde\x2c\x09\x1f\ \xa4\xb6\x75\xea\xd5\x74\xc0\xa0\x91\xaa\x45\x42\x81\x86\x44\x81\ \xf7\x26\x5e\x95\x3a\x99\x61\xbe\x5a\x0f\x7c\xee\x40\x7c\xc0\x82\ \x92\x55\x1e\x14\x51\x8b\x58\xd7\x9a\xae\x15\xc2\x02\x11\x12\x6c\ \xd2\x16\xb8\x40\xa3\xa8\x6e\x72\xcc\x29\x84\x4a\xec\x00\x9a\x56\ \xaa\x6d\xc1\x00\xaf\xd7\x7a\x39\x59\x37\x61\x6e\x4f\xc9\xdd\xee\ \xaa\xac\xca\xa6\x82\x3c\xca\x01\x07\x71\x50\x66\x96\x71\x2b\x0c\ \x15\xf1\xa6\xdf\x69\x1e\xe4\x4f\x41\x9b\x62\xf0\xf2\x50\x89\x50\ \x16\xea\x00\x1d\x57\xe1\x07\x25\xc6\xfe\x92\x0e\xe4\x63\xf0\xc3\ \x09\x2f\x64\x43\x92\x01\x2a\xf0\x01\x3f\x44\x33\x14\x8c\xd6\x4d\ \xdd\xc3\x3d\xf8\x07\x08\xf8\xe0\xa0\x92\xe5\x2f\x7e\x80\xba\x5e\ \x83\x22\x93\x55\xe7\xe6\x06\x32\x20\x2c\x49\x68\x81\x47\xfc\xd0\ \x8d\x81\x28\x12\xb8\xe1\xd5\x41\x67\x89\xe2\x06\x60\x36\xc1\xb1\ \xbe\xe4\x09\x8a\x01\xf8\xbc\x04\x31\x56\x1c\x7b\x8d\xd6\xdd\x89\ \xe3\xab\x99\xd6\xdc\xfd\x54\x17\xbb\x5c\x2b\xc8\x19\x50\x8a\x71\ \x7b\x76\x90\x54\xba\x32\x91\xd6\x63\x9c\xc9\x96\xee\x00\x15\x0e\ \x88\x2b\xe8\x21\x15\x67\x16\x12\xbb\xa6\xeb\x2b\xee\xec\x56\x12\ \xee\xba\xd6\xc2\x35\x78\x25\xd0\x36\x64\x13\xdc\x03\x3f\x78\xaf\ \x7f\x84\x6f\x05\x05\xc1\x11\xa8\x03\x0d\x37\x81\xf8\xc9\x34\xa2\ \xa9\xef\x35\xe0\xf0\x2f\xe8\x80\x43\x28\x9a\xbf\x30\x0c\xc4\x8c\ \xc4\x5d\x8a\x04\x48\x22\xc3\x11\x24\x51\x27\xbd\x73\x26\x33\xf1\ \xb0\xbe\x9d\xf9\x49\x9d\x3d\x03\x25\xd3\xe0\x83\xc2\xe8\x33\x93\ \x35\x59\x2a\x1b\x86\xf8\xed\x14\x28\x27\xdf\x4f\x9d\xac\x41\xef\ \x63\xb6\xce\x9c\x83\xa5\x80\x3e\xda\x5c\x7c\x1e\x25\x82\xb0\xe2\ \x30\x14\x88\x51\xee\x23\xb5\x05\xfe\x6e\x9e\x9d\x66\x6b\x8a\x80\ \x47\xb7\x02\x5d\xeb\xc0\x41\xfe\xd9\x92\xe2\xec\x64\x78\x01\xd0\ \xfe\x83\x22\xb0\x42\x1d\xf4\xc5\x11\x94\x81\x37\xc1\x74\xda\x8e\ \x27\xe6\x86\x2f\xa9\xdc\xe6\x4d\xff\xc2\x35\x6c\x43\x2b\x5c\x83\ \x30\xe7\xf0\x40\x78\x00\x15\xa8\x44\x8b\x20\x03\x2c\x68\xa0\x48\ \xb0\x95\x6f\x74\xad\x34\x60\xf2\x3b\xd7\xc4\x26\x9b\x57\xc3\x2d\ \x9f\x06\x19\xa8\xd4\x35\x5c\x4c\x3c\x4c\x4a\x20\xd9\x7a\x59\x35\ \xa4\x15\x26\x0a\x8a\x4b\x6a\xff\x11\xca\x36\xdb\x69\x16\x08\x45\ \xc3\x81\xe4\xcd\x5c\x19\xcb\xdc\x19\x33\xcc\xcb\xe5\x0e\x5e\xab\ \xdf\x51\xb2\x5f\x51\xd1\xac\x6c\xb5\xe6\xa7\xa6\x1f\x92\xe2\x75\ \x40\x06\x4f\xa7\x12\xd2\x35\x38\xae\xd1\x7d\x43\x01\x06\xc1\xdd\ \x95\x81\x3f\x8f\xa3\x78\xab\xc3\x35\x5f\x10\x3f\xdc\xf4\x79\xdf\ \xb4\x31\xe0\xb0\x64\xff\xc2\xfa\x22\x0a\x97\x86\x1d\x5c\x61\xca\ \x76\x79\x60\x01\x4a\x03\x15\xc0\xc0\x38\xe0\x08\x13\xcb\x69\xf8\ \xec\x13\xcb\x99\x96\x77\x71\xa3\x10\xd2\x33\x0e\xa4\x04\xed\xbc\ \x76\x6c\xef\xd3\xec\x1c\x41\x6a\x4f\x66\xec\xd2\x08\x17\x17\x74\ \x59\x17\x48\xca\x2e\x74\x07\xfe\x99\xe2\x1f\x91\x50\x59\x37\x9b\ \x3e\xf6\xdc\x41\x2f\xf7\x6b\x36\xf7\xd3\x94\xf0\x2b\x1e\x64\x2d\ \x10\xf3\xee\x74\xe6\x2b\x5e\x0d\x2c\x68\x77\xb9\x7d\x43\x36\x75\ \x93\xf4\x89\xb7\x38\x96\x81\x9a\xf1\xc5\x38\x42\x81\xcd\xe2\xf0\ \x4d\xff\xf8\x35\xcc\x83\x18\xf4\xc0\x2f\xb8\x77\xf3\x70\x29\x32\ \x54\x6d\x67\x6b\x81\x08\x7c\x76\xf6\x88\xcf\x26\xe1\xf3\x18\x70\ \xd3\x11\x50\x01\x6c\xf4\xb7\xc4\xbc\x84\xaa\xad\x04\x88\x92\x9f\ \x71\xa5\x25\x8d\x88\x5a\x92\xb1\xa1\x14\x1f\xd9\x3e\xc9\x9d\x9b\ \xd0\x8e\x06\xe1\x36\xed\x30\xcd\x9d\x89\x81\xca\x5a\xb8\x87\x4b\ \x1e\x2c\x4f\x9b\x5c\xdb\x19\x12\x1e\xb4\x87\xb3\x22\xd4\xcc\x09\ \x6c\x29\x06\x85\xa1\xd0\x63\xd8\x75\xcf\x6d\xaa\x15\x82\x1b\xba\ \xbc\x22\xa8\xd6\x02\x8c\x97\x9b\x2b\x14\x76\xf4\x95\x42\x1d\x94\ \x42\x29\x60\xee\x3f\x07\x41\xf8\xa6\xe5\x3d\xf0\x81\x15\xf0\x81\ \x7a\x5f\x03\x1f\xe8\x80\x31\x08\x79\x60\x00\x46\xec\xd4\x5d\x8b\ \xac\x29\x71\xfe\x10\xd7\xc2\x52\x88\x34\x99\x18\x88\xc8\x45\x09\ \x2b\x5f\x29\x8c\x18\x44\x31\xbd\x6d\x82\x10\xaa\x04\xed\xe0\x80\ \xa7\xd0\x1b\xcb\xa5\xda\xfe\xc3\x6d\x75\x6a\x27\x58\x57\x67\x66\ \x41\xa3\x9f\x72\xbf\x71\x70\x77\x90\xb9\xaa\x13\x09\xbd\x75\x68\ \xe2\xf2\x69\x0e\x12\xa0\xc3\x42\x52\x11\x92\x63\xbc\xe6\x64\x50\ \xa1\xbb\x4c\xf7\xb6\x69\x34\x2d\xae\xab\x1e\x37\xba\x87\xb9\x02\ \x08\xe8\x69\x57\x81\x80\x4b\x83\x40\x19\x90\x01\x79\xdf\x03\x08\ \x1c\xd7\x11\xf0\x01\x18\x78\x3a\x3f\x18\xc3\x7a\xeb\x3b\x3b\xdc\ \x83\xe4\x5e\x2e\xa9\x6c\x41\x0f\xb8\x55\xf6\x14\x7c\x10\xe1\x83\ \x26\xc9\x81\x84\x3a\xc4\x13\x50\x91\x34\x54\x44\x45\xa0\x52\xf8\ \x60\x57\x77\xd1\x80\x40\x6b\x35\xcb\xe5\x06\x8d\xb0\x9c\x4a\x14\ \x06\xf9\xb9\xdd\xa9\x25\x1f\xb3\x71\x35\x0a\xfe\x54\xf2\x79\xf5\ \x17\xa7\x02\x3e\xcc\x89\x3e\x3a\x9b\xe4\xe1\x5c\xee\x48\x25\x9e\ \xf3\xb6\x29\x1e\x34\x74\x1f\x25\xb6\x1f\x52\x21\xed\x9f\x53\x09\ \x64\xcf\xed\x75\xfe\x9d\x93\x7e\x5a\xe1\x83\x18\x83\xb9\xf7\x56\ \x58\x12\xe0\xf8\x1e\x41\x10\x78\x37\x19\x94\x02\xd3\x17\xb6\xd4\ \xdd\x43\x55\xe5\xfb\x35\xec\x3b\x14\x5c\xb3\xbf\xdb\xeb\x11\x90\ \xca\x11\xb0\x44\xd5\x62\x97\xd8\x3f\x4c\x09\x22\xc1\x31\x2c\x68\ \x17\x1c\xc3\x49\x00\xfe\x91\x34\x6c\x41\xc6\xd0\x4d\x75\xf9\x46\ \x4c\xec\x13\xaa\xbd\x76\x61\x24\x18\xbc\x79\xe2\x1a\x32\x4c\x2a\ \x30\x1b\x9d\x66\x50\x82\xf5\x3d\x50\xa9\x16\x41\xa7\xf5\x41\x83\ \xb5\x58\x2b\xa5\x39\xdd\x1c\xa4\x22\xc6\xe1\x3b\xf7\x6c\xed\x63\ \xe8\xa9\x22\x22\xbd\xdf\xb5\x1d\xf3\xd0\xc3\x62\xb8\x97\x38\x1e\ \x3f\xcd\xd1\xf7\xd6\x0a\x7c\x79\x13\x18\x36\x79\x43\xba\xa4\x53\ \xfa\x71\x91\x01\x3d\xac\x30\x1f\xfc\x02\x1f\xbc\x3e\x1f\x18\x83\ \xd6\xaf\x09\x4b\xff\xcd\xc0\x17\x79\x10\xc1\x02\x49\xc0\xcd\xfd\ \xbe\xc1\x16\x80\x06\xda\xe7\x01\x90\x68\xbc\x7a\x45\x8c\x6b\xcc\ \x08\xdc\x85\x7c\xc8\xfa\x3a\x1b\x32\x4d\x00\x03\x26\x50\x36\x5b\ \xc7\xe3\x83\xca\x13\xf4\xee\x7a\xf1\xa2\x16\xfe\x3e\xf6\xb6\x81\ \x40\x58\x83\x39\x86\xcc\x27\x92\xb6\x1e\x65\x6c\xb9\xe6\x91\x8a\ \x10\x09\x35\xa1\x62\x3c\x15\xfe\x69\x21\xf4\x26\xa9\x09\x29\xfa\ \xd3\x3c\xd2\x5f\x63\x6f\x1a\x89\xb7\x77\x97\x82\x45\x2e\x20\x19\ \x38\x01\xeb\xc3\x3e\x40\x80\xe1\xc3\xe7\x5e\x41\x54\x50\x8e\xd8\ \x11\xc3\x4e\xcc\x91\x1e\x30\x7e\x51\x41\x06\x03\x0d\x32\x64\x63\ \x2e\x22\x79\x43\xfe\x83\x4a\x17\x8f\x1f\xbb\x68\x91\x86\x0f\x5f\ \x43\x24\x63\xf2\xb8\x70\x71\x8c\x4a\xc9\x31\x23\xc5\xe0\x40\x82\ \x44\x0e\x0d\x24\x62\x70\x6e\x92\x23\x4f\x0e\x8e\x54\x31\xe5\x90\ \x91\x83\x04\x07\xce\x54\xf8\x7e\xc6\x14\x63\x4b\x8e\xad\xa2\xa9\ \x52\xe1\xd0\xe9\xd4\x69\xaa\x56\x57\xaf\xfe\xfc\x94\xea\x53\x8a\ \x14\x38\x6a\xb5\x6a\xf3\xc9\x56\xd9\x4f\x9f\xda\x74\x50\xdb\xa1\ \xd5\x30\x11\xc3\x5a\xc1\xea\x30\x8c\x6e\xad\xae\xb6\xe0\x7c\x5a\ \xd0\x86\x6b\xaa\x0e\xb0\xe8\xd2\x15\xa1\x83\xb0\x0e\x11\x6f\x61\ \x01\x26\x7c\x78\xd8\x35\x45\xff\x20\x47\x96\x3c\x99\x72\x65\xcb\ \x92\x9b\x34\x01\x01\xa2\x0f\x88\x20\xea\x8e\x94\x7a\x33\x9a\xf4\ \x68\x32\xf4\xac\x58\x19\xe8\x64\x20\x1f\x7e\x50\xd8\xa1\xe2\xc7\ \x0f\xd5\xbd\x1e\x3d\x8e\x1c\xd9\x42\x85\x8a\xb4\x31\x30\x90\xb5\ \x1a\xd3\x0a\x19\xbe\x26\x6f\xc8\x1c\x03\x00\x20\x0a\x80\x8f\x1e\ \xa8\x88\xd9\xb2\xa5\xa1\x18\x67\xc7\x8e\x3d\x19\x29\xcd\x37\xbe\ \x23\x35\xe5\x80\x17\x53\xb2\xa6\x4e\x39\x38\xc5\x20\x61\xda\x14\ \x47\x7b\xa3\x3e\xc5\x7c\xc2\xd1\xd3\x27\x57\x5b\x9b\x9c\xb6\xb7\ \x8a\x35\x2b\xfe\x57\xb2\x29\x6c\x59\xa0\x83\x05\xba\xca\xeb\xac\ \x4f\xd6\x6a\xa3\x2d\xc4\xe6\x02\x0c\x16\xbb\xbc\xb2\x05\xad\x36\ \xc6\xda\xab\x96\xc0\xdc\x22\x0c\x0c\x30\x0c\x1b\x06\xb0\x0c\x17\ \xbb\xc6\x8b\xc7\x2e\x2b\xd1\x44\xcb\x4a\x99\xa1\x0c\x10\x4a\xf1\ \x8c\x9d\x32\x8e\x2b\x8d\x34\x10\xe8\xe1\x43\xa0\x81\xc0\x48\x8d\ \xa0\x7b\xa0\x18\x68\xb6\x1e\xd6\x00\xc1\xa1\x6d\x7c\x7b\xc9\x37\ \x69\x60\xd0\x42\x8c\xd1\x8e\xf0\xa0\xb9\xe6\xba\x88\xc2\xa3\x63\ \xa8\x1b\x83\xba\xe9\x7a\xab\x92\x3b\xea\x90\xa0\xc1\xcb\xf0\x7a\ \x12\x23\x15\x9a\x36\xa1\x41\xa7\xa2\x62\x6a\x0f\x4c\xf7\x9e\xfa\ \x09\x07\xa6\x6c\x81\x2a\x2a\xa6\xda\xc3\x01\x1f\x58\x82\x63\x0b\ \x96\x56\x3a\xe0\x2a\xc2\x03\xcb\x92\xf0\x40\xbf\x3a\x48\x0b\x96\ \xb7\x1a\xbc\xf0\xc1\xb1\x00\x0c\x90\x42\xae\xf4\x0c\x4c\x87\x0d\ \x37\x24\xac\x2e\xb7\x2a\xd5\x61\x18\x2f\x06\x39\xd1\xd3\x4f\x15\ \xd9\xac\x94\xcc\x66\x20\x43\xc6\xd2\x4a\xb9\xc7\x18\x1b\x71\xe4\ \x43\x47\x28\x78\x94\x8d\x1f\xdc\x8e\x23\x03\x1f\x69\xa6\xdb\x62\ \x8c\x97\xd0\xe8\x15\x1f\x2f\xc7\x68\x6e\x39\x28\x3f\x7a\x02\x1f\ \x5d\x73\xfe\xdd\xe2\x08\x2f\x91\xd8\x82\x24\xea\x76\x92\x87\x06\ \x32\x68\xb0\x13\x28\x79\xa4\xdd\x84\x28\x34\xd5\x34\xcf\x96\xf8\ \xc4\x8c\xea\xcd\xaa\xfa\xac\x53\x3f\x64\xf6\xb4\x2a\xb1\x56\xe6\ \xfc\xf3\xae\xb3\x16\x78\x13\x41\x3e\xff\x72\x0b\x43\xba\x16\xb5\ \x05\xc0\x09\x29\xec\xe0\xc2\xc0\x06\x9b\x94\x43\xc3\xde\xc2\xb4\ \x30\x1d\x48\x21\xf1\xd3\x85\x2d\x53\xa4\x8c\x3a\x46\x6b\x42\xb4\ \x53\x49\x23\xe3\x8e\xd6\x70\x54\x4d\x35\x63\xa0\xe8\x98\x47\x75\ \x4c\xdd\xe8\x08\x76\xb6\xf0\xc7\x4a\x7c\x88\x43\x43\x1a\x1c\x9a\ \x20\xe3\x97\x2e\x96\x5b\x0e\x66\x90\xc6\x19\xe3\x58\x67\xd3\x1b\ \x8d\x06\xf4\x70\xd2\x48\x5a\x33\xcf\x8b\x4a\x8e\x4d\x88\x06\xba\ \xa8\xa3\xe7\x2b\x73\x93\xfa\xac\x12\xb7\x2a\xa4\xde\xa4\x4f\x5d\ \x58\xf0\x61\x0b\xab\x0e\xfe\x13\x54\xdf\xad\xfc\xb4\x45\xc1\xb5\ \xec\x3d\xac\x60\x0f\x0b\x85\x43\xc2\x54\xf8\xa2\xb0\x2d\x0f\x05\ \xd3\xb0\xb0\xb7\x0e\x9b\x34\x0a\x52\xbc\x60\xd8\xee\x86\x5d\x89\ \xb8\x8e\xcc\x28\x1e\x0d\x04\x20\x56\x35\x66\x55\x8c\xe9\x59\x15\ \x88\x7b\xd8\xc9\x0d\x84\x26\x68\x10\x52\x8c\x1e\xa4\xe9\x81\x24\ \x69\xfe\x2c\x6a\x45\x8e\x26\xe4\x78\x22\xe6\x61\xa3\x90\xd2\x23\ \xe8\x70\x6d\xe8\x08\x53\x19\xd7\x4d\xba\x86\xe4\x19\xed\x67\x6e\ \xc3\x93\x96\x27\xfa\xc4\x6c\x6f\x13\x69\x7b\x92\x53\x4e\x3a\xab\ \x5e\xaa\xa7\x9e\x88\x4b\xd7\xea\xc4\x06\xd4\x37\x2d\xb2\xbc\x1e\ \x0b\xaf\x54\x1e\xf4\xb7\x6d\x82\x31\x0c\x5e\xaf\x47\x05\x4c\xac\ \x96\x5a\x3e\x74\x9b\xe0\xc1\x38\x55\xf8\xee\xed\x25\xf3\xc4\x6f\ \x90\x51\x9d\xf8\x8d\x26\x08\x29\x1c\x70\xc1\x5b\x2b\x9c\x0f\x27\ \x8c\xb9\x27\x88\xcd\xc8\x20\xc3\x0e\x76\xe6\xd9\x82\xc8\xfa\x51\ \x86\x01\x16\x69\x4c\x45\x02\x8c\xcd\x63\xd6\xb9\xe7\xfc\x62\x1c\ \x5b\x40\x02\xb5\xde\x20\x8f\x9b\x28\x0b\x27\xcb\x22\x0d\xed\x90\ \x66\xa6\xd9\xc9\xe3\x4c\x4f\x49\x1a\x05\xe3\xe4\x93\x56\x40\xad\ \x76\xec\x7a\x53\x7b\x9c\xc2\x9f\x3e\xfd\x65\x4f\x58\xb3\xc5\x5f\ \x3a\xb0\xaf\x36\x2c\x40\x42\x0b\x90\x9e\x5a\x96\x57\x30\xc6\xac\ \x30\x2d\x6a\x19\x4b\x1b\xa6\xe7\xa1\x7f\x05\x6c\x43\x22\x38\xc0\ \x20\xb4\xc7\x3d\x21\x42\xe6\x1b\x75\x28\x85\x3a\x82\x50\x06\x19\ \x95\x62\x62\xa9\x02\xc2\x13\xef\x70\x07\xf4\x19\x83\x1e\x80\x63\ \xfe\x1f\x14\xde\x67\xaa\x3a\xb0\x63\x1b\xb7\xb9\x8d\xcd\xf0\xf1\ \x9b\x3c\x20\xe3\x72\x62\xf0\x00\x00\x03\xe8\x1c\xe6\x74\xe1\x18\ \x3d\x08\xd9\x46\x9a\x55\x12\xf4\x20\x21\x75\x1b\xa1\x01\xec\x98\ \x32\xc1\x6c\xd5\x2e\x4d\xd1\xaa\x60\xd3\xe6\xf3\xad\x0d\x8a\xab\ \x4e\x7e\x89\x0b\x9f\x0c\xf9\x20\xb2\xd4\x42\x04\xb0\xb8\x4f\x0a\ \x28\x74\x96\x36\x00\x4f\x2d\xb5\xe8\xc0\x60\xc0\xc0\x18\x7b\xb5\ \xc2\x92\x0e\x22\xd0\xbc\xee\xd5\x98\x0d\x05\x71\x88\xa5\x84\x0c\ \x2b\x9a\xb0\x22\xf1\x9d\x8a\x0c\xe9\x70\x02\x14\x80\x10\x45\x29\ \x16\xee\x0e\x80\x5b\xdf\x2b\x83\xa0\x33\xc7\x2d\x64\x0b\xf3\xe8\ \xc1\xae\x60\xf1\x8b\x5f\xd1\x60\x0b\x1f\x40\x63\x1a\xa3\xe4\x11\ \x2a\xbc\xb1\x65\xe3\x11\x5d\x7a\x68\x40\x9a\x3b\x6e\x2b\x69\x66\ \xa2\xe0\xeb\xc4\x14\x93\x3c\x12\xad\x29\x50\x11\xc3\x9a\xac\x82\ \x94\x39\xe9\xe7\x2a\xb0\x20\x14\x5b\x4c\xc8\x48\x58\x2c\x60\x13\ \x29\x40\xcb\x59\xc2\x92\x98\x45\x4d\x72\x30\x63\x3b\x4c\xf2\xec\ \xd5\x27\xbf\xec\xf0\x1a\xfc\x38\x80\x29\x01\x5a\x19\x57\x48\x2c\ \x46\x7d\x03\x81\x2b\x63\x29\x4b\x63\xc8\x52\x8a\xac\x72\x02\xfe\ \x3b\x4a\x31\xad\xf8\x91\xe1\x80\x37\xc1\x07\xe4\x7e\x51\x1c\x1a\ \xc8\xa3\x98\xc7\x04\xa0\x00\xa9\x00\x02\x6a\x1d\x47\x81\x3d\x9b\ \x89\x03\x75\x16\x9e\xf6\x90\xc9\x4c\xd6\xe4\xc9\xb7\xa0\x02\xc2\ \xa1\x2d\xcd\x27\x49\xeb\x60\x4c\xe1\xb4\x95\x43\xae\xe5\x2a\xb5\ \x60\xe1\x24\x87\xd1\x01\x7d\xc5\x89\x40\x38\x24\xe1\x3a\xd1\x52\ \x4f\xb9\x88\xed\x41\x80\x79\x0b\xbd\xea\xe5\x05\x2f\x10\x21\xa0\ \x55\x9d\x8c\x22\xfa\xd0\x37\x54\xb9\x12\x56\x80\x63\xe8\x3d\xa4\ \x98\x23\x2b\xd0\x03\x09\x84\x28\xc3\x11\x66\x82\x04\x10\x4c\xeb\ \x08\xd2\x99\xc7\x2f\x44\x30\x06\x6a\x75\xd4\xa3\x9b\xf3\xc8\x2f\ \x72\xf3\xcd\x88\x51\x94\xa2\xe3\x79\x23\xed\xb6\x95\x47\x97\x62\ \xb0\x3e\x75\x0a\x94\x53\x74\x37\x15\x31\x71\x90\x3d\x86\xe4\x8f\ \x5c\xf8\x74\x16\xc0\xb4\xe2\x5d\x07\xa2\x10\xf5\x60\xd1\x95\x36\ \xd8\x4b\x2e\x6e\x69\x64\x5a\x10\x53\xc2\x6d\x28\x82\x08\xa4\xb4\ \x6a\x55\x57\x60\xc4\xf0\x15\x94\x0c\x40\xa0\x47\x3a\x6a\x29\x38\ \x59\x7e\x22\x1d\x40\x48\x5f\x10\x8e\x10\x04\x42\xa8\x35\x7e\xd3\ \xaa\x0e\x3e\x7e\x01\x9d\x9a\xb0\xc3\x98\x75\xe5\x5c\x17\xfe\x3c\ \x60\xbf\x6d\x20\xa1\xa0\xd3\x14\xc3\x18\xba\x24\x4d\x95\xd2\x64\ \x68\x14\x9c\xdd\x75\xf5\x13\x53\x10\x1a\x56\x27\x67\x6a\xda\x52\ \xf0\x13\xa7\xb4\xf0\x49\x2e\x7f\xe1\xe4\x80\x14\xd5\x15\x77\x9e\ \x65\xbd\x0d\x62\x21\x82\x0a\xf6\x2f\xb2\x31\x66\x1b\xc6\xa0\xea\ \x69\xf1\x4b\x19\x57\xc0\x48\x7c\x04\x25\x4d\x19\x5c\x9b\x8e\x74\ \xd0\x83\xc0\xb2\x2c\x08\x6c\x59\x83\x0a\x20\xa4\xe3\x1e\x64\x88\ \xe8\x46\x30\x87\x04\xb4\x6e\xe1\x17\x3a\xd8\xc6\xe5\xb6\x60\x05\ \xe3\xc6\xcc\x23\x51\xf8\x45\x17\x41\x50\x9a\x69\x0d\x05\x1f\x1a\ \x21\x0d\xe6\x86\x12\x35\xa2\x61\x8b\xc5\xde\xd5\xca\x07\xbb\x45\ \x34\xc5\xee\x67\x9c\x5c\xd3\xd3\x55\xcc\xeb\x2f\x79\xb2\x70\x5f\ \xfa\x72\x67\xbd\xda\x20\xa1\x0b\x21\x0a\x30\x24\x14\xd1\x3f\xf3\ \x9b\x64\xca\x40\xac\x34\x7c\x1b\x4d\xaa\xe8\x81\x0a\xd8\x42\x31\ \x8a\xf7\x20\x04\x83\x07\xbc\xbe\xf5\x05\x81\x74\x34\x60\x5c\xfc\ \x34\x23\x86\x6d\x08\xb3\x09\xf2\x98\x07\xcc\x36\xec\x9c\xcf\xe1\ \xd5\xc4\x1b\xa1\x96\x97\xbc\x24\xa3\x35\x35\xc5\x9a\x7a\xe4\x09\ \xd3\xd2\x54\x96\x37\x4d\x10\x68\x9f\x40\x19\xbb\xe4\xfe\xa4\x9f\ \xa3\xfe\x4e\x2d\x1f\xb2\x0b\x5e\xb2\xf6\x89\xb5\x0d\x08\x41\x18\ \xfa\x17\x36\x6e\x71\x5f\x25\x4f\x3a\x32\xaa\x25\xcd\x2a\x53\xe5\ \x84\x05\x53\x39\x8a\xb0\xbd\x03\x82\xd7\xa7\x60\x2b\x8b\x74\x26\ \xec\x38\x20\x5b\xa5\xb1\x8d\x25\xd1\xc0\x1f\x1a\x4e\xf3\x47\x3c\ \x6c\xea\x68\x4a\x8b\x26\xd1\x4c\x60\x41\x37\xb2\x26\x24\x14\x8d\ \xc5\xd8\xc2\x4f\x7d\xd2\x54\xa7\xea\x5a\xb7\x76\x24\xb1\x5d\x59\ \xfc\x22\x4f\xa8\xc6\x45\x30\x72\x19\xea\x50\x1b\x0d\x97\xb1\xa8\ \x85\x31\x8e\x29\x2d\xa5\xb1\x1d\x19\x45\x68\x55\x33\xf4\xd0\x34\ \xa7\x19\x1a\x45\xdb\xf2\xe1\x7d\xa6\xb8\x07\x12\x74\x5b\x90\x7b\ \xcc\xe3\x3b\x64\x00\xc1\x16\x68\x45\x83\x6d\xa0\x79\xc3\x1d\x8e\ \xc2\x07\xb6\xc1\x8e\x90\x45\x38\x3d\x38\xf8\x4e\x41\x51\x9c\xe2\ \x99\xf6\xda\xba\x4f\x91\x4f\x76\x2f\x08\xb4\xaa\xd8\x8e\x78\x27\ \x6c\x4b\x09\x09\xe5\x54\x0f\xe8\x60\x9d\xed\x6c\xd4\x02\xe2\x42\ \xc9\x36\x6c\xe3\x1a\x92\xce\xf6\xc7\xff\xb1\xed\xbe\x95\x22\x08\ \x4e\x70\x02\x2a\xaa\x28\xcb\x58\xba\x96\x1e\x51\x64\x4d\x3a\x40\ \x40\x08\x77\x13\x42\xa4\x14\x3d\xf7\xe2\x68\xa0\xfe\x1b\x76\x78\ \x79\x0c\xae\xae\xb7\x1a\xbb\x00\x06\x7d\x4b\x53\x0c\xf3\x30\xc6\ \x35\xae\x71\xe1\xd2\x80\x89\x3e\x03\xf7\x35\x05\xd9\x13\xec\x98\ \x86\xa7\xbb\x4d\xe9\x09\xd7\x7c\x32\xb4\x38\x25\xa6\x91\x72\xfa\ \x4b\xc0\x26\xde\x8a\xfb\xe0\xe7\x2c\x7f\xa1\xde\x36\xc4\x21\x0e\ \x90\xaf\x5d\xdb\xdc\x2e\xf9\xb7\x13\xaa\xf2\x02\xdf\xe3\x89\xef\ \x2b\x83\x59\x1d\x4c\x83\x52\x50\xf4\x80\xc8\x39\xc2\x36\x2e\xdc\ \x84\x0c\xa7\x59\x8d\x01\x5c\x2e\x49\xe5\xa0\x2a\x1d\x58\xc1\x23\ \xf3\x28\x0d\x60\x65\x32\xd3\x15\x4f\xde\x29\x07\x67\x5a\x59\xac\ \xae\x13\x00\x31\x7c\x5c\xc8\x3b\x14\x22\xd5\x95\x21\x0f\x78\x60\ \x18\xa9\x68\xa7\x59\x14\x74\x00\x22\x78\x9c\xed\x20\x57\xc4\x40\ \x0d\x4a\xe0\x94\x1b\x78\xca\x2d\x0f\xc2\xed\xd1\x7a\x84\x32\xe8\ \x5d\x67\x33\x21\x83\xb4\x40\xd0\x83\x0f\x8b\x81\x0c\x74\x25\xfc\ \xe6\x3e\xc0\x0e\x69\x91\x81\x1d\x47\x77\x55\x6a\xb6\xd1\xe4\x3b\ \xd2\x67\x3d\xd7\x95\xf1\x9d\xeb\xc4\xb5\x60\x6f\x93\x27\xb6\x83\ \x4a\x55\x82\xf9\x16\x7c\x6c\x85\x2d\x1e\x3a\xd4\xe8\x33\xab\x52\ \x45\x90\xd6\xb4\xad\xff\xb8\xf7\x28\x96\xca\xfe\x74\x28\xd8\xd3\ \x51\x24\xc4\x95\x3b\x6d\x65\xdd\x96\xc1\xc1\x99\x29\x05\x21\xd0\ \x0a\xe7\x40\x00\x0a\x7e\x21\xe9\xb6\xa0\xf8\x8a\xeb\xf8\x36\x07\ \x0a\x66\x42\x55\xae\x61\x43\x5c\xed\x17\x64\xa4\x4c\xc2\xc3\x16\ \xd4\x63\xec\xac\x8f\x68\xf2\xe3\x13\xc2\xc5\xfb\xc6\x8e\x82\x98\ \x06\x2a\xe4\x43\xd1\x0e\x05\xe2\xf4\xa4\x93\x08\xe3\x17\xd8\xa1\ \x02\xdc\xaf\x05\x29\xc3\x61\x28\xa6\x45\xd2\x21\x08\x04\xec\x89\ \xe2\x4e\xc0\x04\xec\xf6\x68\x8e\x10\xf8\x66\xef\xd0\x0d\x09\x44\ \x83\x06\x54\xc5\x18\x7e\x81\xdd\x28\xea\x17\x14\x10\x80\xae\x01\ \xad\xee\xe1\x01\x6d\xc4\xd5\xae\x41\x0e\x1e\x6f\xfa\xc6\xa5\x2c\ \x52\x40\xc6\x24\x48\xcf\xf0\x0c\x2a\xc4\x49\x2a\x7e\x2d\x2a\x9a\ \x86\x2c\x70\x20\x52\x70\x4c\x2d\xe2\x22\x2c\xbc\x80\x14\x58\xcf\ \x05\xd9\x90\x15\x62\xf0\xf6\x6a\xcb\xdb\x0a\xec\xd3\xc4\x8d\xc1\ \x74\x70\x45\xe2\x87\x89\xd0\x6d\xdf\xd8\x01\x0a\x7a\x20\x3d\xd4\ \x0a\x09\xf8\x21\x09\x37\xe7\x1a\x4c\x4d\x55\x5a\x23\x66\xac\x80\ \x1d\x0a\x8a\x76\xd6\xa3\x29\xca\xa2\xbb\xb8\x09\x12\xeb\x43\x9c\ \xaa\x26\x77\xe0\x04\x07\xb8\x06\x91\x34\xfe\x31\xd9\xae\xa6\x6a\ \x5a\x01\x15\x56\x8f\x0d\x49\x51\xbf\x8e\x23\x33\x0a\xaa\x0c\x5c\ \x89\x35\xac\xc0\x09\x18\x0a\xb6\xaa\x68\x06\x83\x00\x09\x4c\x01\ \xdd\x44\x6a\xef\x76\x6f\x7c\x06\x90\x1e\xf4\x8d\x5a\xe2\x67\xf0\ \x08\x11\x00\xc0\xe0\x1e\x8e\x00\x0a\x04\x07\xe9\x52\x63\x39\xa2\ \xb0\x34\xce\xc4\xea\x30\xef\x0a\x95\x86\x9b\x10\xcb\x4d\x3a\x50\ \x9f\xb2\xcb\x2f\xaa\x26\x2a\xc8\x0f\xc7\x5a\x61\x1e\x52\x61\xfd\ \xda\xaf\x14\xd9\x30\xab\x4e\x85\xe4\x80\x80\x15\x5d\xb1\xd3\x10\ \xac\xe5\x72\x90\x06\x81\x20\x08\x9a\x48\xef\x90\xe0\x1e\xd8\xe7\ \x08\x48\xaa\x65\x8e\xe0\x1a\x82\x91\x39\x10\xa7\x47\xb6\xc1\x18\ \xaf\x81\x0f\x96\xe3\x03\x8e\xe0\xf1\x76\x47\x12\xc7\xee\x3e\x30\ \x70\xe1\x0a\x89\x0b\xb5\xcb\xfb\x44\x50\xa7\x5a\x01\xf0\x90\x4c\ \x1c\x2d\x92\x32\xc8\x51\x46\x5a\xcb\xdb\x06\xe2\xb5\x68\xf0\xd3\ \xbc\x4d\xd3\x70\x70\xc0\x9c\xe0\x1e\x62\x04\x1f\x83\x80\x47\xee\ \x61\xad\xbc\x84\x5a\x40\x60\x1b\xf6\xd1\x0a\xb6\xa1\x18\xd9\x87\ \x47\x8e\x4e\xac\xa0\xc0\xd6\x52\x6a\xa6\x24\x4f\x03\x65\xac\x02\ \xe1\x63\x3e\xb2\x09\x0c\x89\x52\x04\xfe\xe3\x03\x0c\xc5\xe1\x00\ \xc2\xf1\x22\xc5\xf1\x1b\x28\x46\x15\x9d\x20\x24\x67\xf0\xca\x6a\ \x4f\xd3\xe0\xd0\xb6\x0e\xc0\x24\x67\x84\xc1\x12\x27\xb7\x90\xc0\ \xd4\xba\xa4\xf8\xe8\x4d\x01\xad\x80\x1f\x8e\xa0\x09\x3b\xc6\x18\ \x6e\x44\x19\xdb\x6c\x23\xaa\x0f\x3f\xa0\x51\x0e\x52\xa0\x27\xbb\ \x29\x2a\x88\x22\xd0\x62\x2a\xd0\xf4\x83\x09\x6e\xe1\x16\x98\xf2\ \x2f\x2d\x03\xd7\x46\xa3\x0e\x4a\x2e\x24\x3f\x6d\x06\x05\xec\x0e\ \xe4\x10\x31\x6b\x84\xdc\x42\xa6\x14\x90\x20\x1d\x60\x25\x25\x8d\ \x91\x0f\x8c\xa1\x07\x0e\x08\x04\x7e\xc1\xe7\x14\x70\x09\x87\xb0\ \x47\x52\xc3\xd5\xac\xa0\x07\x74\xf2\x75\xba\x0b\xf3\xa6\x42\xc6\ \xf0\x43\x27\xc4\xa0\x5c\xa6\x11\x2f\xbd\x09\x09\xc0\x11\x30\x69\ \x13\x23\xcb\xf1\x6f\x4c\xee\xb5\x64\x09\x07\xbd\x6d\xd3\xce\x91\ \x14\x9c\x20\x1d\x60\xc4\x6f\xd2\x81\x1f\xd4\x27\x34\xf9\x20\xdf\ \xe2\x87\x1d\xfe\x87\x10\xf9\x80\x1d\x9a\x8f\x0f\x1e\x10\x00\x54\ \x43\xac\x8c\xe1\x8d\xde\x60\x2a\x20\x31\x12\xf1\x63\xa6\xb6\xa9\ \xb0\xd8\x84\x69\xd8\xe1\x05\x58\xb0\x36\xcd\xf3\x05\xdf\xd0\xb5\ \x3e\x52\x1d\xef\xc0\x2a\x57\xd1\xfe\x55\x9c\x40\x1d\x08\xe1\xc9\ \x70\xd3\x09\xf8\x41\x34\xf9\xc1\x18\x12\xc7\xdd\xb6\x21\x01\x8f\ \x4f\xe8\x86\xf0\x09\x2d\x53\x70\x7a\x60\x4c\xea\xc8\x2d\x0f\x8b\ \x3b\xe5\x52\x03\x23\xb1\x4d\xd2\x24\x2a\xb2\x41\x1c\x2a\x60\x29\ \xcf\x13\x30\x45\xee\x54\x0e\x2a\x25\xef\x41\xc0\xac\x2c\x0e\x19\ \xf3\x00\xac\x80\x14\x80\x40\x89\xfe\x0b\x08\xa4\xcc\x09\x90\x93\ \x7d\x7a\x60\x1e\x2a\xaa\x07\x38\x33\xcd\x66\xa5\x07\x2a\xd3\x55\ \x2c\xd3\x1b\x8b\x0e\x33\x63\x04\xfb\x02\xa5\x68\xde\xf2\xb0\x80\ \x0d\x07\x5e\xa0\x2f\x29\xb4\x42\x69\xf3\xf5\x50\xf1\x24\x55\xd1\ \x0e\x37\x74\x43\xdb\xf3\x1d\x09\x21\x08\xce\x51\x35\xe0\xf1\xd2\ \x68\x70\x06\xe9\xd1\x35\xe8\xa1\xbe\x04\x47\xd6\xc8\x60\x1e\x9a\ \x33\xcd\xac\x00\x21\xd8\x01\x11\x55\x43\x3a\x8f\x31\x47\x94\x4e\ \x67\xf2\xe3\x2d\x21\x51\x03\xb7\xeb\x58\x6e\x61\xfd\x88\x74\x4e\ \x2d\xc3\x7b\x48\x8e\xc9\xde\xe0\x49\x63\x09\xb6\x60\xd1\x55\xd2\ \x81\x89\xca\x20\x08\xe8\xe1\x00\x46\x14\x55\xee\x81\x1e\xb0\xe8\ \x50\x45\x2d\x2d\x91\x8e\x1d\xa4\xb0\x09\x04\xf1\x45\xd1\xa8\x2c\ \xd5\xea\x2c\x9f\x6f\x20\xae\xfe\xe1\xe8\x5c\x8d\x1f\xde\xe8\x8e\ \x64\x6a\x2e\xc1\x24\x12\x11\xcb\x01\x5e\x80\x4e\x4d\xf5\x32\x1c\ \xa6\x09\x92\x28\x62\x48\x0e\xac\xee\xc0\x55\x5b\x63\x44\xcd\x0a\ \x0e\x4d\x61\x95\xc8\x00\x0e\xef\xe1\x20\xa0\x80\x1e\x8c\x13\x0a\ \x38\x0e\x0c\xf4\x33\x9a\x20\x95\xe3\x24\x35\x66\x9e\x93\x0c\x8a\ \x51\x2d\xcb\x74\x55\xae\xc1\xe7\xe6\x41\x27\xcd\x64\x5b\x9c\xd1\ \x19\x37\x81\x09\xc4\xe1\x1b\x4e\x35\x5b\x2d\x03\x95\x60\xe4\x24\ \xf5\x14\xb6\x36\xb4\x46\x08\x55\x07\x4d\xe1\xf6\x48\xf4\xd2\x6e\ \x35\x08\x76\x35\x25\x51\xc1\x35\xd2\xf2\x03\xc0\xc0\x10\xdf\xcc\ \x26\xa0\x40\x1f\x01\x48\x35\x30\xb3\x20\x8c\xb1\x70\xd0\xe7\xf9\ \x96\xc3\x0a\x0a\x92\x34\xc2\x83\x06\x30\x6f\x5a\x8f\xe0\x1b\xe2\ \x54\x5b\x15\x56\xbf\xc6\x07\x55\x8e\x00\x07\x65\x89\x35\xe8\xe1\ \xf6\x68\x90\x62\x79\x10\x55\x56\xa4\x38\x6b\x83\x1d\x34\xf4\x0e\ \x2a\x53\x47\xae\xc1\x09\x0e\x0f\x52\xfb\x90\x59\x5f\x89\x1d\x84\ \xc4\x55\x5f\xb5\x20\x56\x25\x47\x14\x91\x1d\x44\x8c\xe9\xf0\x63\ \x26\xbe\x41\x4e\x17\xf6\x66\x27\x23\x23\x9f\x0c\x4a\x59\x8e\x23\ \xad\x92\x62\x67\xb0\x56\xfe\x99\x48\x34\x4a\xa1\x0c\xd0\xed\x1e\ \xb0\x14\xb7\x8e\x96\x51\x43\x33\x35\xae\xb3\xc9\x84\x44\xc2\x00\ \xf0\x1e\x70\xa0\x20\x18\x6a\x55\x5e\xf4\x69\x75\x46\x28\xe4\xe0\ \x08\x5e\x40\x1d\x70\x36\x6c\x2b\xe3\x5c\x23\xe6\x08\x42\x92\x23\ \x55\x03\x15\x28\xd6\x62\xcb\xa0\x68\x45\x83\x7c\x3e\x63\x15\x15\ \x6c\xc1\x60\x09\x56\xfa\x70\x20\x34\xcc\x0a\x8c\x61\x3e\xf5\x8e\ \x0c\x64\x8e\xe6\x52\x92\xc1\xee\x0f\x11\xf1\x56\x52\xf9\x20\x60\ \x75\xc6\x00\x3c\xc1\x2f\xc5\xb6\x71\x25\xe3\x1b\x70\xcd\x1c\xd7\ \xe7\x89\x58\x83\x0f\x3c\x12\x0e\x93\x28\x50\x41\x40\x89\x64\x10\ \x8b\xd4\x61\x33\x04\x95\x1f\xd6\x87\x1e\xce\x4d\x0c\x2e\x66\x63\ \xac\x6c\x1e\xab\x4c\xad\x08\xc1\x55\x53\xf7\x62\x16\x2f\x19\xa9\ \x53\x11\xdd\x68\x34\x66\xe0\x1b\x6a\xd6\x71\x75\x57\x32\x30\xd4\ \xb6\x34\x6d\x57\x73\xf3\x1d\x2b\x56\xb7\xa0\x54\x38\xf7\xce\x95\ \x14\x0c\x1e\x69\x40\x15\x31\xc6\x49\x61\xc9\x32\x71\xa0\x75\xe9\ \x41\x20\x16\x4a\xb7\x72\xab\x20\xee\x4f\x7a\x5d\xb6\x69\xf3\xf6\ \x1e\x54\xc4\x13\x6c\x76\x77\xc5\xf7\x1f\x74\x56\x72\x4d\x6e\xc1\ \x48\x72\x62\x9f\xd4\xfe\x14\x08\xc1\x14\xd2\xe1\x00\xf6\xef\x7d\ \x4f\x0e\x08\xd4\x41\xef\x0e\xca\xe4\xe0\x73\x65\xa5\xe8\x0e\x74\ \xeb\x74\x07\xe2\xd3\x74\x0b\xdd\x78\x70\xef\x08\x61\xdc\x0a\x57\ \xc3\x48\x21\x61\xc6\x77\x81\x25\xe3\x42\x91\xe3\x4a\x45\xf2\xf6\ \xce\xf1\x1d\xd9\x97\x62\x09\x4c\x1d\x02\x35\xc1\x28\xd6\x33\x42\ \x12\x1d\x49\x17\x07\x0c\x0c\xac\x5a\x83\x4f\xf5\x6f\xb7\x4c\x18\ \xac\x5a\x6e\x43\xf9\x20\x81\x3b\x85\x81\x5d\x18\x32\x2e\x94\x7c\ \x7c\x97\x74\xff\xef\x4a\xd3\xa1\x5c\xe1\x70\xc0\x64\x11\x08\x0e\ \xc0\x09\x92\x28\xe6\x04\x75\x20\xbc\x40\x63\x5c\xf1\xfe\x60\x51\ \x96\x6a\x24\xee\x66\x31\x25\x53\x52\x31\x0d\x98\x10\x22\x6d\x0d\ \x5f\x78\x7c\x15\xc1\x7b\xc8\x87\x47\x5e\x6e\x80\xe9\x31\x38\x75\ \x8b\xe5\x4c\x94\x62\x59\x03\x1b\xe0\x31\x50\xa1\xf4\x00\x30\x26\ \x2a\x75\xeb\xfe\x24\x36\x8a\x64\x2f\x16\xef\xef\xa0\x14\x93\x46\ \x43\x34\x7c\xa7\xb8\x8e\x61\x0f\x8e\x5f\x4e\x34\x5a\x6b\xcb\x68\ \xd0\xe4\x7e\xb6\xb6\x5e\xae\x6d\x9f\xd4\x95\x5c\xc5\x0b\xb8\xb8\ \x5c\xcd\xaa\x7c\x2c\x57\xdc\x64\xef\x0e\x08\x81\x89\xae\x0c\x45\ \x59\xb8\x8e\x29\xfe\xf9\xaa\xd8\xb7\x4f\x4b\x72\x34\x04\x15\x8d\ \x83\xa0\x3d\x2d\x57\x16\x09\x99\x50\xd9\xd7\x7d\xbd\x8d\x14\x54\ \xc3\x78\x1f\xf9\x91\x4b\x41\x31\x5b\x2e\xdc\xd2\xe1\xfe\x02\x35\ \x29\x5b\xb8\x92\x69\x39\x32\x5c\x01\xac\xc6\x0d\x08\xe6\xf3\x0d\ \x56\x11\x31\x7b\xd6\x97\xe1\x33\x1d\x42\xe3\xa0\x50\x01\x1d\x6b\ \x75\x89\x0a\xd8\x89\x01\x38\x7b\xcb\x00\x77\x87\xb4\x96\x19\x18\ \x1b\x04\xac\x31\xd3\xe1\xc9\x6a\x4b\x82\x83\x17\xb6\x3a\x19\x1d\ \x8d\xb7\x45\x6e\x8f\x35\x7c\x98\x89\x2e\xed\x49\x6b\xa9\xc0\x9e\ \x34\x08\x5c\x81\x8e\xa1\x79\x9d\xff\xa1\x93\x39\x32\x97\xfe\x8f\ \x62\xdb\x33\x2a\x3f\xcd\x06\xa3\x54\x35\x46\x94\x68\xdf\xa0\x8c\ \xad\x52\x9c\x9f\x8c\x10\x3c\x99\x1e\xc4\xf8\x99\xd9\xb9\x8e\xe7\ \x96\xc0\xb2\xb7\x4a\x2f\xa6\x23\x6b\xd0\x8f\x59\x91\x0f\x50\x61\ \x97\x21\xd9\x95\x54\x83\x1e\x30\xad\x80\x9d\x40\xaa\x0a\x7a\xa3\ \x29\xe3\x89\x08\x4c\x97\xdb\xd7\xd3\x9e\x8f\x50\x41\x0d\x63\xac\ \xe0\x00\xba\x39\x9e\xbd\x4d\xc3\x9c\x60\x97\x47\xc3\x15\x6a\x76\ \x96\x39\x7a\xa6\x43\x2e\x2a\x6d\x0f\xa0\xd9\x18\x6f\x45\xd2\xb5\ \x68\xf4\x52\xdf\x75\x79\xa2\x5d\xcb\x09\x96\xc3\x09\xfa\xa0\x0c\ \xfa\x60\x36\x69\x3a\xa9\x23\x43\x0e\xd1\xd7\x89\xcf\x11\x3e\xa3\ \xf2\xa9\x6f\xa9\x72\x35\x0d\x88\xc1\x78\x85\xbd\x00\x5b\x95\x7a\ \xab\x25\xe3\x00\xe4\x90\x8d\x5b\xee\xa9\x53\x23\xaa\x9f\xda\x8f\ \xf1\x96\x0f\x6e\xb8\x4a\x83\x80\x08\x80\x88\xab\xdd\x5a\xdb\xfc\ \xb8\x8a\xf6\x34\xcb\xa0\xba\x9c\xe5\xba\x31\xc7\x7a\x06\xb1\x41\ \x9d\xdf\x9a\xab\x15\x21\x2a\xa3\xda\x91\xdd\xf1\xa1\xa3\xfa\xa3\ \xa3\x94\x39\xbc\x80\x1e\x90\xba\xaf\x19\xfb\x1f\x6e\x81\xc0\x5c\ \x51\xc0\x00\x5a\xaa\x55\x03\xb0\x3f\xda\x09\x26\xb9\xb1\x35\x3b\ \x32\x6e\x01\x90\x5b\xb9\x9c\x5b\xa3\x4c\xe5\x90\x1e\x6e\x41\x29\ \x37\xfb\xb4\x61\x18\x1b\xce\x51\xf6\x00\x1b\x7f\x5b\xc3\x09\x54\ \x8f\xa0\x51\x5b\xa9\xb1\xe1\xa3\x1b\x33\x37\xbd\xed\x00\x12\x86\ \xaf\x67\x7b\xb3\x6f\xa1\xb0\x2d\x17\xb0\x21\xad\xb7\x89\x9b\x32\ \xbc\x9a\x8d\xbd\x40\x48\x8b\x7b\xb9\xbb\x5a\xa0\x47\x91\xb9\xe7\ \x34\x20\x00\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\ \x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x3c\x82\x54\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\x8b\x94\x4a\x34\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x5e\xc8\xf6\xff\xff\xff\xff\xff\xff\ \xde\x93\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x0f\x27\x1f\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x52\x66\x1c\x44\x1a\x94\x56\xa8\xe3\x13\x27\xa8\ \xff\xff\xff\x09\x68\x9c\xff\xff\xff\xff\xff\xff\xd7\xc8\xe5\xff\ \xff\xff\xf6\x89\xb9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf7\xa7\xb7\xff\xff\xff\x90\x6a\xb7\xff\xff\xff\x9b\xf2\xfc\ \x13\x29\xdf\xb9\x88\xb5\x22\x46\xeb\xda\xe8\xf8\x4e\x68\xf8\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xfa\xc8\xe8\xff\xff\xff\xf0\x6c\ \xaa\xff\xff\xff\xff\xff\xff\x98\xc8\xfb\xff\xff\xff\xf0\x6f\x45\ \x7d\x88\xad\x78\x88\x3b\xff\xff\xff\xda\x91\xf3\xf9\xe8\xf0\xff\ \xff\xff\xf6\xb2\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb3\xa9\ \x6e\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\x8e\x5f\xff\xff\xff\ \xff\xff\xff\xb7\xc8\xf2\xb6\xb3\xf2\xff\xff\xff\xff\xff\xff\x39\ \x56\xf6\xff\xff\xff\xff\xff\xff\x09\x18\x62\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x97\xb1\xf8\x4b\x4b\x62\xff\xff\xff\ \xff\xff\xff\x11\x38\x67\x0a\x17\x1c\xfb\xcf\xab\xff\xff\xff\x5b\ \xb8\xeb\x74\x88\xf7\xff\xff\xff\xff\xff\xff\xba\x8e\xf3\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xd7\xd9\xef\x07\x15\xdf\xff\xff\xff\ \xfb\xfd\xfa\xff\xff\xff\xda\xad\xf8\x7c\x96\x44\x7a\xea\xfb\x32\ \x49\xec\xb7\xd8\xfa\xff\xff\xff\xfa\xd8\xec\xff\xff\xff\xff\xff\ \xff\xf5\x99\xb5\xf3\x72\x6e\x32\x47\x95\xfb\xb8\xbd\x15\x37\x1c\ \xff\xff\xff\xb3\x68\xee\xff\xff\xff\xb4\x26\x80\xff\xff\xff\x4e\ \x29\x62\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x9a\x34\x8a\xff\xff\xff\xbb\xc7\x99\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf0\x26\x22\xff\xff\xff\xff\ \xff\xff\x71\x59\xec\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x94\x68\xfa\xff\xff\xff\xff\xff\xff\xb0\x35\x60\ \xff\xff\xff\x7a\xcb\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb9\ \xf3\xfc\xff\xff\xff\xfa\xad\x88\x58\x91\xec\xfa\xec\xba\x78\xb4\ \xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xa4\x19\x59\xff\xff\xff\x52\x3a\x9a\xf7\x91\x8e\xa0\xb6\x76\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\x97\x94\x1f\x97\ \xca\xff\xff\xff\xb7\xb9\x80\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x41\xb5\xec\x1c\x82\x9c\xf3\x7b\xb3\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x4f\x59\x15\x57\x76\x28\x18\x36\ \xa8\x55\x78\xa0\x12\x78\xa8\xff\xff\xff\xff\xff\xff\x19\x37\xdf\ \x58\x76\xfa\xff\xff\xff\xff\xff\xff\xb1\x78\xac\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x69\x7a\xf5\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x47\x5b\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb5\x57\xb0\xff\xff\xff\x37\x58\x93\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x71\x3a\x53\xff\xff\ \xff\x7e\xfb\xfc\x96\x98\x52\x99\x98\xb6\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xd8\xfb\xfc\x7d\xb7\xb8\x99\xd8\xfc\x80\ \x96\xaf\x6f\x78\x28\x7c\x98\x6f\x2c\x19\x53\x7d\x97\xfa\xb2\x58\ \x37\xb1\x78\xf8\xff\xff\xff\xff\xff\xff\x92\x5a\xf8\x8e\x77\x76\ \x94\x78\xf3\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\ \x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x16\x8c\x14\x49\ \xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\xa3\x47\x86\x14\x2b\x7e\x1c\ \x49\xb2\xa4\xc9\x93\x28\x21\x52\xec\x14\x6f\x5e\xa7\x94\x30\x63\ \xca\x9c\x49\xf3\x20\x45\x7c\x9f\xd2\xa5\x93\xd3\x4f\x64\xcd\x9f\ \x40\x83\x0a\x6d\x48\xb1\x9f\xce\xa3\x72\x5c\x0d\x5d\xca\xb4\x69\ \x4c\x8a\xae\x64\xc9\x39\x4a\x75\x9d\x4f\xa7\x58\xb3\x6a\x55\x89\ \x8f\xcf\xa8\x16\x60\xa9\xb6\x18\xc5\x88\xe2\xd6\xb3\x68\xd3\x52\ \xd4\xe3\x06\xde\xa8\xaf\x60\x5b\xa4\x03\xfb\xd5\xc0\xd5\xb4\x78\ \xf3\xd6\x0c\x29\x8b\x0e\xbc\xbf\x6e\xe1\xca\xa5\x3b\x8a\xce\x5d\ \xbd\x88\x13\x8f\x5c\x29\x6b\xec\x28\xb7\x7f\xe1\x0a\x8e\xdb\xe2\ \xc5\x61\xc5\x98\x33\x47\xa4\x68\xc0\xad\xe3\xc7\x80\x27\x8f\x1d\ \x3c\xea\xb2\xe6\xd3\xa8\x09\x86\x44\xb2\x26\xf4\xdb\xb7\xf0\xdc\ \xb8\x79\x3b\x97\xf2\x60\x24\xa6\x53\xeb\x4e\x1c\x72\xdd\x5c\xd0\ \x81\x5f\xc7\x6e\x3b\x8a\xaa\xce\x16\xf2\x5a\xec\xe8\x94\x7b\xb7\ \xf3\xb3\x14\xd7\x05\x7f\x2d\xfc\xeb\x63\xd9\xf0\xe4\xea\x94\x23\ \x2f\x39\x1d\x79\x7a\x9a\xfe\x3f\x1f\xbf\xb4\x77\x72\xc0\xae\xa9\ \xd3\x95\x3d\x5b\xae\x9c\x05\x72\x46\x25\x97\xb7\x43\x3c\xf9\xfb\ \x34\x57\xae\x9b\xaa\x13\x78\xdb\xe0\x9e\x81\x15\xdb\x5f\x3b\xf9\ \x82\xcb\x18\xdd\x25\x97\x4e\x4f\xf8\x35\x28\x14\x45\xf3\xc8\x31\ \x15\x65\xa0\xb1\xf7\x17\x76\x84\x01\xd6\x82\x1c\xb8\x7c\x80\xcb\ \x27\xdc\x1d\xa5\x94\x83\x24\x3e\x15\x9d\x1c\xee\xa1\x18\x97\x70\ \xec\xb5\x25\x9b\x64\x03\x16\xe7\x8b\x2f\x0b\xcc\x55\x95\x7d\x25\ \xe6\x68\x51\x48\xfd\xe4\x64\xe3\x4e\xbf\x49\x76\x5d\x8b\x2f\xd2\ \x85\x1e\x61\x3f\x82\x85\x0f\x8e\x3a\x36\x09\x52\x24\xf8\xf0\x67\ \x9c\x84\xe9\xfc\x45\xda\x85\x44\x16\x97\x0e\x6c\x91\x81\x26\xd8\ \x96\xd1\x30\xe9\xe4\x98\x13\x45\xd2\x09\x23\xf2\x18\x47\xd5\x54\ \x8f\x09\x56\x61\x8b\x6e\x4d\x38\xdc\x7a\xd9\x25\xf7\x96\x61\x64\ \xe6\x49\x54\x24\x3d\x88\xe0\x99\x9a\x62\x79\xb9\xe2\x70\x16\x16\ \x17\xdf\x70\xd6\xbd\x28\x8f\x97\x76\xe9\xe9\xa8\x4d\x7d\xfe\x67\ \xa5\x76\x47\xd9\xe6\x65\x7f\x43\xb6\x28\xd7\x28\x85\x72\x8a\x9d\ \x8b\x6e\x08\x21\xe6\xa3\xf8\xad\xc4\x08\x1d\x44\xb6\x47\x59\x90\ \xd4\x05\x66\x64\xaa\xfe\x89\x4a\xea\x69\xaa\x6e\xa4\x30\x2a\xa9\ \xce\x51\xd4\x03\x14\x2d\x7c\x32\x16\x60\xff\xbd\x65\x29\x97\x8e\ \x4d\x87\x25\x76\xb3\x62\x47\x68\xaa\x42\xf4\x70\x2b\xae\xa7\x85\ \x24\x82\x6c\x1b\x1e\xca\xe5\x6b\x2b\x0a\x99\x5d\x0b\x17\x42\x06\ \x1b\x9c\xcb\xd2\x4a\x64\x78\xd0\x96\x28\x6d\x8b\x70\x05\xe8\x5a\ \xb6\x9b\xb6\x0a\xee\x5b\xb4\x86\x2b\xae\x1b\x76\x3c\x5b\xae\x5e\ \x37\x79\x45\xa8\x67\x9c\x02\x48\xdc\x60\x56\xb2\x7a\x2c\x86\x99\ \xb2\xf7\xed\xbc\xec\x35\x7a\xef\x73\x21\xd9\x60\x61\xa7\xc3\x05\ \x16\xf1\x95\x93\x01\x17\x31\x8c\xfb\xba\x85\x70\x8b\xa2\x2e\xbc\ \x5b\xc3\x42\xcc\x2b\x31\x71\xf0\xbe\xf8\x5b\x97\x18\x63\xf9\xd5\ \x96\x03\x6f\x9c\xaa\xad\x1e\x47\x0b\x25\x1c\x31\x14\x9a\x2a\x7a\ \xb1\xb1\xf8\xef\xaf\x01\xba\x8b\x21\xcf\xf2\xba\x2c\x9b\x10\x4b\ \xc6\xac\x98\xae\x0e\x1c\xdc\x5e\xd0\x38\x17\x8b\xe1\xc9\xd3\x71\ \x89\xac\xd3\x42\x8b\x4b\xae\xd1\x79\x35\x1c\x83\x5b\x5b\x1a\x3c\ \x96\xb8\xe9\x45\x9c\x1d\xd4\x51\x17\x6c\x5d\xcb\xec\x09\xb1\x46\ \xc8\xf3\xd6\x8b\xb5\x5a\x14\xf1\x51\xf3\xcf\x43\x16\x0c\x2b\xb7\ \xc7\x06\xc8\x73\xfe\x9b\x3a\x17\xf9\x6b\xaa\x6b\xac\xd3\x07\x17\ \xfd\x88\x60\x07\xdb\xa9\x2a\xfc\x76\x56\x7c\x3a\x00\xea\xd4\x43\ \xa2\x0d\xe7\xd7\x0f\x47\xf6\x19\x6c\x7c\x2f\xdb\x77\xa8\x3e\xf4\ \x01\xc6\xe7\x83\xf4\x73\x4b\x18\x88\x73\x6c\xd6\xe2\x4c\x81\xfc\ \x30\xc4\x70\x8a\xfc\xb7\x85\x03\x76\x59\xac\x70\xfb\x16\x2c\x02\ \x17\x9f\x83\x61\xcf\x01\xa3\x1f\x3e\xef\x2d\xf6\xa2\xee\x51\x48\ \x7c\x94\xee\xe2\xbe\x94\x7f\x3a\xef\xd9\xb0\x3f\x4c\xbb\xbf\xab\ \xcb\x16\x03\x3d\xb9\x9f\x73\xcb\x29\x42\x37\x1b\xbc\xf0\x1a\x35\ \x2e\x32\xa8\x23\x0b\x0d\xa0\xd8\xe0\xc6\x7e\xb6\xe4\x3e\x54\x7f\ \x4b\xd5\xb2\xc1\xcc\xbd\x4c\xaa\x23\x9c\xf7\x9b\xca\xc7\x2b\xf1\ \x80\x92\x2a\x1b\x23\xed\x80\xdb\x03\xfa\xfa\xec\x93\xcd\xe9\xde\ \x77\x92\x90\xa4\xc0\x78\x60\x9b\x5f\xd0\xe4\xf7\x29\xc8\x90\x2f\ \x58\x52\xe3\x18\xf5\xc0\x30\x88\x58\x20\xd0\x65\x8a\x23\x20\x49\ \x28\x72\x8b\x69\x05\x10\x79\x76\x0b\xe0\x6c\x24\x47\xb2\xe4\xc9\ \x06\x0a\x12\xa0\xa0\x01\x2e\xe8\x32\x51\x6d\x4f\x83\x36\x09\x89\ \x08\xc5\xf5\x9a\x19\x2a\xeb\x4d\x2d\x13\x56\xb2\x62\x80\x3b\x7b\ \x18\x60\x6e\xfe\x36\x04\x1e\x0c\x3b\xa2\x2b\x87\xd9\x90\x48\x28\ \x5b\xe0\xc6\x20\xd3\x3c\x38\x29\xcd\x0d\x22\xf0\xdc\x01\xb0\x97\ \x2a\x2a\x0a\x4d\x0f\x43\xec\x5e\x24\x0c\xc0\x87\x23\x22\x11\x76\ \xf4\x5b\xa2\xfe\x80\x85\x9e\x1b\x16\x6c\x1d\xba\x03\x20\x15\xb1\ \x77\x8a\x36\x5a\x11\x61\x36\x78\xa1\x06\x65\xe8\x45\xfb\x19\x2c\ \x84\x2e\x03\x56\xa1\x2e\x66\x42\x37\xbc\x60\x10\x2f\x58\xa3\x1b\ \xd9\xe8\x86\x37\x22\xcc\x59\x59\x54\x09\x9f\x8c\x58\xc7\x25\x2a\ \xd1\x91\x19\x9b\xd8\xa1\xd8\xb3\x86\x7e\x1c\x60\x0d\xec\x19\x64\ \x1b\x0b\x69\xc8\xb6\xc9\x71\x71\x6b\xe9\x62\x23\xbf\xd7\xba\x19\ \xea\xf1\x45\xb3\x42\x0e\xaa\xd8\x83\x84\x73\x44\xc3\x8a\x9a\xdc\ \x64\x27\xc5\x25\x84\xab\x25\x12\x21\x1c\x64\xe1\x28\x77\x59\x3e\ \x0b\x25\x2f\x3b\xb3\x12\x82\x08\x46\x27\x1b\x59\xc6\x72\x96\xe2\ \xe2\xc3\x27\x17\x06\x15\x2e\xec\x80\x97\xd0\xcc\x12\x96\x96\x15\ \x3e\xb7\xcc\x4d\x6d\xba\xb0\x03\x91\x06\x19\x86\x41\x06\x30\x83\ \xb7\x84\x8a\x06\x34\xf0\x85\x64\xac\x32\x9a\xd0\x54\x1a\x35\xd7\ \x79\xc2\x7e\x74\xe5\x14\x42\x30\x66\x2c\x45\xe8\xb6\x5b\xfe\x83\ \x22\xe7\xfe\xa0\xc7\x0f\xea\xe1\x03\x2e\x7c\x20\x1e\xe8\x8c\xe6\ \x29\xab\x26\x84\x7e\x9c\xa3\x2b\x61\x08\x83\x1d\xd8\x38\x4f\x64\ \xce\x0b\x91\x59\x5c\x49\x3f\x7e\x60\x0c\x63\xd4\xa3\x1e\x01\xd0\ \xc0\x3c\x92\x15\xd0\x46\x92\x70\x5e\x95\x3c\x40\x0a\x4e\x91\x50\ \x85\xc2\x93\xa4\xb2\xb4\x61\x3d\xe7\x18\x09\x57\x1c\x40\x1d\xea\ \xa0\x47\x1f\xfa\xa0\x81\x00\xd8\x94\x03\x8c\xe8\x28\x2f\x3f\x4a\ \x2b\x21\x20\xe1\x00\xd1\xe0\x43\x18\x84\x2a\xd4\x78\x7a\x73\x93\ \x22\xac\xe5\x32\x73\x14\x12\x57\xcc\xd4\x18\xea\xd0\x85\x2c\x64\ \x91\xd1\x00\x5c\xb4\x1e\xf1\x78\xa4\x4e\xd9\xc7\x44\x5a\xad\x21\ \x06\x31\x58\x9b\x30\x0f\x70\x50\x3e\xf0\xa1\x14\xa5\x28\x29\x4a\ \x91\xea\x50\x38\x0e\xf0\x6d\x2b\x39\x80\x31\x52\x08\x86\x1f\x9c\ \x02\x1e\xa7\xa0\xea\x31\xe2\x80\x51\x5c\xe4\x74\xab\x5e\x14\x02\ \x3c\xe8\x30\x8f\x78\x88\xe0\xab\x61\x5d\xc3\x13\xa0\xa0\x0b\x28\ \xdc\x02\x09\x48\xe0\x03\x12\xdc\x79\x8b\xb4\xa2\x35\xad\x25\x4d\ \x28\x52\x8f\x08\x4e\x8f\xe9\xca\x00\xb2\x90\x69\xee\x8c\x91\xd3\ \x53\x30\x22\x0e\x36\xb5\xe9\x07\xea\xa1\x55\xc0\xf6\x14\x0a\x3e\ \xe8\xfe\x07\x17\x24\x30\xb8\x63\xf8\x20\xb6\xfd\xc8\xed\x0b\x74\ \xf1\x82\x17\x44\xf6\x16\xc0\x1d\x6a\x42\x2f\x2b\x54\xb5\x7a\x33\ \x93\xf3\x22\x24\x49\x97\x3a\x9e\x90\x74\x42\x17\x8c\x60\x84\x2e\ \x90\x60\x8c\xdc\xf5\x41\x17\x77\x3d\x6d\x00\xfa\x10\x80\x14\x7e\ \xe0\xaf\xd0\x64\x9b\x2e\x7b\xba\x86\x7e\xfa\x2f\x77\xb9\xb3\x47\ \x6e\xfb\x11\x0d\x24\xa4\xe0\xac\xba\xb0\x01\x49\xd5\xaa\xd0\xcc\ \xda\x97\x9b\x6e\xec\xe6\x71\x39\xa9\x5c\x88\xde\x0b\x2a\xfd\x50\ \x87\x2c\x18\xd1\x4d\x59\x1c\xa3\x0f\x12\x90\x80\x06\x64\x71\x0a\ \xb2\x50\x75\xbb\x9f\x93\x40\x56\x47\x69\x07\x1b\xf0\x21\x05\x18\ \x76\x80\x86\xf9\x60\x03\x1b\x84\x8c\x85\x42\x80\xc3\x01\xce\x8b\ \xde\xdc\x01\xf5\x16\x70\xe0\x83\x08\x84\x60\x87\x16\xb3\x31\x9e\ \x6c\x1b\xa4\x51\x35\x49\x5f\xfb\x76\x53\xb3\xc7\x0c\x03\x73\x53\ \x03\x15\x7b\xf4\xc1\x18\x01\xa0\x47\x3d\x18\x11\x03\x46\xa8\xe3\ \x07\xf4\x30\x06\x3d\xe2\xc0\x88\x06\x53\x55\x03\x9e\xfb\x1c\x07\ \x80\x78\x44\x3e\xbc\x00\x1f\x64\x3d\x47\x27\x5c\x71\x0e\x57\x74\ \x02\x1f\x06\x48\x81\x0d\x5a\xfc\x61\x8e\x39\x60\xc4\xf6\xb0\xc7\ \xfe\x20\x06\x91\x66\x35\xf3\xce\x06\x26\xcd\x64\xc8\xb0\x27\x04\ \x93\xc2\xd3\xc5\xc5\x6c\x51\x2c\x33\x4b\xd2\xcb\xa2\x95\xcf\x24\ \xf5\xaf\xa3\x28\x42\x62\x30\x0c\xee\xc7\x43\xce\xab\x3a\x8c\x31\ \x53\x7a\xc8\xe2\x2d\x0f\x46\x2d\x6d\x3f\x20\x8f\x3a\xda\x21\x05\ \x07\x60\xb3\x2b\xec\xb1\xe9\x4e\x7f\x19\x18\xef\x6d\x71\x85\xc7\ \x9c\xb6\x14\x38\x20\x0f\x7c\x20\xa9\x59\x85\x7a\x38\x16\x0b\xa1\ \xcc\x46\x7d\xb5\x70\x5b\x0c\x68\x43\x2a\x77\xbe\x28\x0d\x43\x29\ \x98\xc0\xeb\x5d\x33\xe1\xcf\xba\x7e\xeb\x98\x08\x5d\xe2\x08\x27\ \xd8\x18\x48\x88\xae\x2c\x34\x90\x42\x63\x30\x99\x11\xb2\x88\x43\ \x1c\xe2\x81\xd1\x0f\x04\x60\xc2\xec\x2b\x73\xa8\x88\xb0\x65\x57\ \x78\xfb\xdb\x37\xd1\x43\x2c\xf8\x30\xea\x3c\x00\x03\x18\xc5\x4b\ \xdb\x78\x43\x45\xeb\x85\x7e\xf8\xce\xf0\x8c\x67\x42\x0f\x37\xd4\ \x63\xea\xb9\x8d\xfa\x2d\xa9\x9f\x99\xd0\x83\x5e\x33\xa1\x68\x79\ \x6a\x69\xa1\x4b\x1c\xe5\x05\x43\xb7\x1e\x50\x36\xc6\x31\xa6\x1a\ \xed\x78\x38\x3c\x00\x5f\xe8\x03\x38\x2a\x2d\xb4\x35\xc4\x63\x1d\ \xb7\x75\x40\xcd\x84\x60\x80\x2d\x7f\x19\x4a\x3d\xd0\x03\x30\xfe\ \x62\x21\xe6\x16\xdb\x20\x05\x38\x08\x39\x09\x3c\xcc\x3e\x3b\x0c\ \xb5\x14\x79\xc0\xec\xbc\xe3\x1d\xaa\x57\x87\xaa\x90\xf1\xe4\x24\ \x8e\x8f\x89\x6f\xcb\xea\x9a\xdf\xfd\xee\x81\xb3\x76\x8c\x17\xa8\ \x14\xbb\xc4\x12\x30\xc6\x20\x9e\xba\xf0\xe8\x22\x21\x0e\x3f\xd8\ \x2b\x46\x65\x41\xed\xee\x7e\x2e\x19\x54\x66\x4f\x0c\xe8\x80\xd8\ \x1d\x80\xe3\x0b\xe9\x7d\x41\xc8\x6c\x60\x80\x90\xc7\xe2\xec\x24\ \x27\x37\x8b\x4f\x9e\x02\x12\xe8\x01\x07\x7a\x58\xb9\xef\x38\x66\ \x73\x8e\xa5\x40\x0f\x7a\x10\xba\xd9\xc5\x4d\xf2\x14\x84\x01\xce\ \x73\xcf\x79\x26\xf1\xad\xeb\x84\x16\x77\xbe\xc3\xd5\x35\x5a\x79\ \x0d\xf4\x90\x34\xa9\xa5\xae\x28\x76\x82\x4b\x5c\xd1\xb9\x82\x41\ \xc9\x03\x5e\x83\x74\x7f\x20\xed\x7a\x0c\x98\xda\xe0\x48\xe1\x17\ \x9e\xe9\x86\xad\x95\x1e\x0a\xc9\xd8\x03\x38\xaa\xf1\xf5\x62\x0f\ \xe2\x16\xaf\xe6\x03\x09\x62\x31\xf2\x3c\x60\x58\xed\x36\x88\x05\ \xdc\x9d\x25\x72\x31\x8f\x79\xee\x43\x63\x56\x2c\xf4\x2e\x74\xbc\ \x87\x5c\x0f\x4c\xd0\x83\xed\x51\xad\xd6\x85\x2a\x57\xe7\x8b\xff\ \x35\x66\x65\xee\x6b\xc6\xeb\x1d\xe0\x24\x12\xf8\xc0\x23\xfe\x7c\ \x74\x2e\x18\x63\xb6\x49\x3f\x86\x80\xa3\x7b\xd5\x7a\xd0\x81\x0e\ \x68\x92\x47\x00\xc0\x60\x85\x64\x5c\x9c\x0c\xf3\xd8\x82\x0f\xbe\ \x60\x05\xf6\x5b\xa1\xfe\x47\x3f\x87\x03\x4c\x1e\x0b\x71\xa7\xa0\ \x14\xb1\x80\x6a\x36\xa0\x07\xdd\xe6\x0a\x3d\x00\x77\xa1\xe6\x6a\ \x1b\x23\x04\x77\xa7\x72\x79\x90\x07\x67\x07\x81\xb6\x77\x56\xa5\ \xf0\x5e\x66\xd5\x7c\x38\x66\x54\x09\x25\x7d\xbd\x46\x7d\xbb\x26\ \x74\xfc\xd6\x78\x44\xd7\x14\x46\x87\x5e\x11\x17\x65\x47\x97\x3b\ \xb4\xc5\x68\xdf\xf7\x63\xfb\x14\x0f\xb2\x70\x51\x31\x78\x51\xf1\ \x90\x0c\xf5\x77\x7f\xf7\xf7\x05\xf4\x67\x7f\xf7\x97\x82\xa0\xa3\ \x07\x63\xc6\x07\x12\x88\x61\xef\x95\x07\x05\x68\x80\x71\x97\x02\ \xad\x46\x66\x08\x53\x67\xef\xe5\x61\xf1\xc4\x6a\xee\x56\x67\xc5\ \x45\x54\x86\x77\x59\x67\x57\x0a\xc5\xe5\x67\xd5\x27\x7d\xbe\x16\ \x74\xc4\xb7\x24\x23\x38\x14\x2d\xd5\x7d\x10\xe6\x83\xe8\xf5\x63\ \x8c\xf6\x39\xdc\x75\x0c\x57\xb5\x5d\x5f\x00\x0e\xa9\x97\x3b\xf7\ \x87\x0c\xc8\x80\x7f\x7b\xb0\x07\x5f\xb0\x7d\x25\x76\x0e\x06\x40\ \x04\x42\x28\x81\xab\x96\x02\xf8\xd0\x09\x5f\xd6\x03\xfe\xe8\x36\ \x66\x1f\x66\x73\xaf\xd6\x88\xa9\x22\x6a\x54\xc4\x62\x0b\x25\x6a\ \x2e\xd7\x61\x17\x98\x59\x14\xc8\x6b\xfd\xc6\x78\x5e\xa8\x89\x9b\ \xc8\x89\x9e\xa8\x2b\xc2\xc6\x63\x91\x90\x66\x92\x27\x71\x28\x88\ \x86\x9f\x63\x0c\x1a\x30\x5b\x60\x40\x5b\xe0\x00\x64\xe0\x10\x65\ \x12\x00\x76\x38\xd8\x01\x79\x88\x83\x56\x00\x0e\x5c\x60\x0f\xf8\ \x87\x86\xae\x10\x0d\x23\x37\x7b\xa7\xf6\x5e\x44\x30\x7b\x01\x98\ \x07\x2c\xc7\x31\x35\x47\x66\x75\x37\x34\x8d\xc8\x88\x0a\xd5\x61\ \x7f\xb7\x6a\x43\x25\x54\x70\x06\x67\x14\x58\x7d\x79\x47\x7c\x9b\ \xe8\x8d\x9b\xf8\x81\x42\x77\x88\x63\x98\x1f\x02\x87\x86\x33\x95\ \x8a\xaa\x38\x38\x7b\x80\x60\x09\x36\x53\x74\xf5\x39\x5f\xb0\x07\ \x37\x88\x0c\x5c\xb0\x07\x1d\x80\x83\xf6\xf0\x75\xbf\xa8\x8a\xf6\ \xd0\x09\xd1\xa0\x61\xb7\x60\x00\x06\x60\x7b\x29\x80\x6a\x44\x00\ \x7c\x37\xe7\x6a\x94\xf8\x8c\x74\x27\x89\x95\xb8\x6a\x17\x08\x67\ \xf5\x65\x61\x5a\x78\x56\x29\x80\x76\xc9\xa7\x77\x20\x47\x7c\x50\ \xd2\x91\xd6\xe7\x2c\x3d\xc0\x1c\x3c\xb6\x69\xe8\xd5\x8f\xe8\x45\ \x5b\xea\xe8\x83\x12\xd0\x8e\x08\x16\x71\x3a\x98\xfe\x8a\x79\x48\ \x7f\x56\x90\x8b\xba\x08\x0e\xe0\xc0\x87\x3e\xe8\x0a\xfd\x60\x00\ \x0e\x10\x0d\x40\xf9\x5e\x04\x59\x72\xbe\xf3\x6a\xb4\xd6\x61\x1d\ \xe6\x8c\xc1\xb7\x90\x92\x38\x8d\x43\x65\x61\xd8\xf8\x77\xa4\xe3\ \x72\x66\xa5\x85\x00\xb8\x6b\xb1\xc0\x04\x67\xc7\x6f\x4b\xb2\x24\ \x3d\x80\x0f\x5d\xf9\x95\xc4\xe7\x89\x43\x27\x33\xa6\xf8\x39\x38\ \x08\x76\x92\x17\x71\xaa\x98\x3b\x5f\xc0\x05\x5f\x50\x8b\x12\x17\ \x00\xe0\x70\x92\x3a\x98\x83\xba\x78\x7f\x7b\x90\x0c\x75\xd9\x96\ \xe8\x75\x0e\xde\xf0\x02\xb7\x10\x0d\xf8\xf0\x02\x17\x06\x94\xb7\ \xc0\x61\x1c\x66\x89\x8a\xb9\x6a\x15\x16\x78\xd1\x58\x73\x10\x09\ \x95\x8e\x29\x95\x63\x76\x8d\x56\x09\x80\x59\x89\x7c\xb1\x00\x80\ \xe0\xb8\x24\x2e\xd5\x91\xf8\x20\x96\x9a\x28\x86\x47\x73\x8e\x25\ \x96\x83\xb3\x18\x8f\x6e\xb9\x92\x29\x18\x87\x71\x69\x05\xb5\x18\ \x97\x27\x99\x96\xba\xc8\x7e\xc8\x40\x09\xc9\xa0\x93\x29\x68\x0f\ \xe7\x70\x00\xbd\x45\x56\xd1\x20\x98\x84\x19\x0d\x7a\x40\x90\x67\ \x77\x7b\x44\xa5\x98\x4c\x38\x34\xad\xd6\x8c\xb4\xd6\x98\x52\x59\ \x89\x86\x57\x95\x19\xb9\x99\xa4\xc9\x6b\xdd\xfe\x78\x7d\x85\x68\ \x88\xcc\x31\x9a\x61\x09\x86\xa3\x08\x1d\x91\x70\x0e\x47\x57\x7f\ \x7d\xf0\x05\x1f\x30\x8b\xea\x38\x9b\x6d\xa9\x83\xc9\x80\x3b\x29\ \xa8\x8b\x5f\x90\x8f\x3d\xc8\x7e\xaa\x47\x8f\x7e\x59\x62\x83\x70\ \x0e\x6c\xe6\x66\x07\xe0\x4e\x9d\x70\x00\x9d\xe0\x0d\xca\xf7\x5e\ \x4f\xa9\x98\x8a\x28\x5e\x8e\x08\x9d\xd5\x18\x95\x94\x38\x6a\x18\ \x09\x73\x9a\x99\x77\xa3\x89\x77\xf8\xa0\x07\x60\x29\x96\x60\x09\ \x96\x91\x70\x00\x07\x00\x25\x4b\x72\x88\xa3\xf9\x6f\xe5\x38\x3c\ \x5b\xa4\x62\x68\x94\x9a\x31\x09\x0e\x10\x77\x9e\xac\xb9\x96\x38\ \x09\x97\xe7\x69\x9f\x56\x60\xa3\xf7\x69\x05\xf6\x88\x92\xfb\x59\ \x6c\x69\xc6\x65\x03\x8a\x0f\x01\xb8\x98\x48\x89\x94\x4a\xd9\x53\ \x2e\x37\x6a\xd5\xf8\x7b\xaf\x76\x0a\x11\x79\x61\x30\x77\x76\x65\ \xe7\x0d\x5f\x69\x00\x60\x06\x9e\x1d\x0a\x9e\x5f\xf9\x65\x21\x4a\ \xa0\x5e\xe6\x95\x42\x77\xa2\x5a\x14\x09\x7a\x80\x38\x42\x80\x7a\ \x85\x26\x97\x12\xa7\x96\xc5\xc6\xa3\xf2\x88\x93\x5f\xa7\x83\x31\ \xca\x7e\x5f\x70\x87\x79\x89\x92\x38\xd8\xa3\xbc\xa9\x3b\x5c\xe6\ \x0d\x24\x97\x90\xad\x66\x94\x8f\x79\xa4\xfe\x44\xb2\x76\x50\x69\ \xa4\xce\x78\x38\x47\x69\x56\x18\x26\xa5\xc7\x79\xa5\x1a\xfa\x95\ \x85\x08\x96\x5f\xd6\xa1\x92\x4a\xa9\x95\xba\xa1\x61\xba\x15\x6b\ \x71\x41\x31\x20\x38\x29\x19\x87\x74\xd9\x96\x3d\x68\x05\x3a\x08\ \xa7\x30\xc9\xa3\xb7\x99\x97\xb5\xe9\xa6\x3e\xa8\x93\x6a\xe6\x52\ \x38\x90\x02\x09\xe9\x90\x86\x8a\x94\xc6\xb3\x88\x2d\x66\x56\xd4\ \x28\x6a\xd1\x28\x89\x8c\xc9\xa8\xb1\x30\x90\x04\xf9\xa8\x59\x9a\ \xa5\x1c\xea\xa1\x98\xda\x95\x96\x3a\x9e\x41\xb1\x16\x8c\x24\x2e\ \x22\xd0\x0f\x74\x25\x01\x38\x19\x00\xc7\x00\x76\xb1\x79\x9e\xe0\ \xa0\x87\x71\xe8\xa2\xde\xaa\xaa\x39\xca\x83\xad\xda\xa3\x9f\x73\ \x96\xe8\x35\x08\x03\xea\x0d\x0e\xf0\x7b\x0a\x69\x94\x45\xaa\x90\ \x92\x69\xa8\xbc\x4a\x66\x81\x2a\xa8\x0f\x7a\x61\x07\x49\xac\x04\ \x69\x00\x1a\xaa\xa1\x95\x2a\xa9\x97\x7a\xa9\xc7\x2a\xa2\x8e\x57\ \x1e\x9d\xca\x3e\xb7\xf3\x8a\x83\x23\x87\x60\x37\x9b\xdb\x17\x87\ \x7a\x88\xaa\x3a\xb8\x83\xb5\xe9\x8b\x37\xc8\xaa\xf6\x47\x8f\xae\ \xba\x9f\xbe\xa9\x08\x2b\xd0\xae\x92\x68\xab\xf0\x9a\x94\xb9\x0a\ \x91\xa3\x66\x61\x0b\xca\x88\x8d\x68\xfe\x72\x7c\x00\x88\x50\xda\ \xaf\xfd\x4a\x98\xc7\x9a\xa1\xc8\xba\xa1\xe0\xc9\x27\x58\x8a\x0f\ \xae\xe0\xac\xf0\xb3\x45\xda\x24\x42\x6b\x50\x0f\xae\x78\x68\x6e\ \x79\x97\x74\x38\x93\x15\x4b\x93\x37\x8a\xa7\x36\xc9\x83\x39\x7a\ \x9b\xe6\x5a\x6c\xe7\xb0\x02\xbd\x05\x07\x4c\xda\x53\xc0\x0a\x85\ \x85\x0a\xac\x26\x87\xa8\xe2\xd5\x8c\x7f\x47\x99\x18\x96\x07\x03\ \x39\xac\xb1\x30\xa5\xc5\x79\xa5\xd1\x60\xa5\xc7\x8a\xa1\xc9\xba\ \x24\x5e\x2a\xa6\x0a\x91\xb0\x47\x24\x04\x8c\x80\x3b\x12\x20\x9f\ \x68\x49\xa7\x37\x58\xb1\xa6\x9a\x8b\xf6\xe7\x8b\x27\xd9\x01\xb0\ \x90\x8f\x74\x98\xa7\x50\x3b\xb5\xe8\x95\x66\x83\xb0\x02\xc3\x19\ \x04\x44\x50\xab\x8c\x48\x77\x26\xf7\x9c\xea\xe6\xb5\x12\xda\x61\ \x95\x8b\xaf\x2a\xab\xaf\x66\xdb\xaf\x79\x40\x90\xd1\xd0\x03\x6d\ \x0b\x66\x84\x69\xa5\x56\xea\x4e\x56\x5a\xba\x6e\x7b\xac\x95\x4a\ \xb7\x06\x11\x12\x65\xba\x4b\x9a\xb7\x0e\x7d\x69\x97\x79\xd8\xad\ \x34\x89\x8b\xa5\x7a\xa3\xa9\x89\xb1\xad\x7a\x83\x7e\xcb\xb8\xe9\ \x55\xb5\xbd\x15\x04\x70\x00\x07\x44\xc0\xb5\x95\xeb\x9c\x8f\xe9\ \x90\xd0\xf9\xb5\x46\xca\xb2\x6b\xfe\x37\xb6\x8c\x8a\x61\xb7\xe0\ \x00\x32\x2b\xb3\x6d\xdb\xbd\x3d\x79\xa5\xfd\xf0\x95\xa5\xab\xa1\ \xe0\xf9\x65\x99\x2a\xbb\xaa\x51\xbb\xe8\x54\x0f\x31\x6a\xaa\x72\ \xd8\xad\xba\x48\x62\xf7\x47\xb8\x74\x88\xb8\x89\xab\xb8\xa6\x6a\ \xb1\xc6\x6b\x0f\xb0\x10\x0d\xf9\xf0\x02\x67\x10\x04\xca\xcb\xa4\ \x0d\x0a\xbd\x2b\xfb\x90\x5f\x3b\x6a\x4a\x29\xa8\x48\xd9\x98\xfb\ \xca\xbd\x04\x29\xc1\xc7\x49\x90\xc0\xc5\xaf\x04\x79\xa5\x1d\x4a\ \x98\xe6\xdb\xa1\xb1\xeb\xb3\x24\xd1\x03\xeb\x76\x44\x31\xd0\x0f\ \xa9\xb9\xbb\xfc\x48\xae\xf9\x8b\x7f\xf5\x7b\x9f\xf9\x6b\x7f\x48\ \xeb\x97\xbe\xb9\x01\xe8\xfa\xb8\x2b\x10\xc0\xcb\xcb\xbc\x0d\x59\ \xa8\x83\x2a\xaf\x2d\x9b\xb2\x0d\x19\x8d\x29\x2b\x91\x19\x26\xc1\ \xc8\x29\xb3\x17\x0c\x5c\xba\x80\xc1\xee\x44\xb3\x92\x5a\xba\xc7\ \xfa\x95\x20\xbc\x18\x41\x1b\x50\x0b\x0b\x06\x6f\xb9\x07\x58\x7c\ \x97\x8a\x7b\x92\x1b\xf0\x8b\xf7\x87\xbf\xc3\xcb\x7e\x64\xec\x97\ \x5c\xa6\x08\x55\xcb\x66\xe7\x0a\x0b\x2b\xb0\x02\x67\xb0\xbc\x93\ \x5b\xa4\x8e\xe8\xc0\xcd\xa9\xc0\x0c\x1c\xc4\x25\x4b\xb6\x45\x2c\ \xc1\x24\xa0\x61\xb1\xe0\x00\xfe\xb7\x00\x81\xca\x89\x56\xc0\xd5\ \xaf\xa3\xe9\x4e\x07\x50\xb3\x38\xdb\x03\x3d\xab\xbe\x02\x11\x0b\ \x5b\xf5\x04\xf1\xc9\x05\xbb\xb9\xaa\x2e\x7c\xbf\x51\xfb\xc5\x78\ \xaa\xb1\x25\xc6\x87\x5c\xd6\xc6\x90\xbb\x02\x83\x90\x3b\x83\x40\ \x09\x6e\x0c\x07\xca\x3b\xb9\x71\xfc\x9c\x74\x2c\xbd\x92\x09\xc4\ \x89\x2a\x6a\x0f\x4c\x04\x44\x08\x07\xc0\x25\xc1\x80\xfc\x80\x81\ \x4c\x84\xa5\x20\x02\x17\x79\x56\x85\x9c\xc1\x60\x99\xc8\xf8\xe0\ \x4e\x51\x3c\xa2\x8e\x7c\x4f\xd1\x1a\x4d\x67\x7a\x8f\xb1\x69\xaa\ \x2a\x7c\x92\x6a\x86\xb8\x61\xac\x9f\xa9\x69\x05\x6c\xd0\xc5\xe9\ \x95\x0c\xa3\x9c\x5e\xf6\xa0\x08\x40\xf9\x07\x0e\x10\x04\x67\x00\ \x0b\xe7\x65\x8f\x56\x7b\x06\x0e\xa0\xce\x92\xdb\xbc\x4c\xe8\xc0\ \xcb\xd8\xb5\xb7\xea\x8c\x5e\xdb\x61\xb4\x4c\xab\xa6\xb6\xbd\x2f\ \x20\xb3\xc5\x78\x90\xff\x67\x8d\x12\x89\x56\xdd\x8b\x65\xc4\xdc\ \xa1\xc4\x2c\xa2\x82\x06\x13\x90\xac\x53\x6b\xb0\x9b\x49\x4b\xbc\ \x47\xd7\x01\xc8\x40\xb8\xf7\xb7\x01\x1c\x7b\xcd\x97\x5c\x62\xb0\ \x00\x0e\x83\x00\x0b\xb0\xb0\x66\x80\x49\xc0\x29\x00\x07\x50\x70\ \x06\xbd\xf8\x39\xb0\x40\xfe\x09\x5c\xe0\x0d\xe9\x3c\xc0\xcc\x1b\ \xc7\x8c\x58\x61\xcd\x7b\x41\xf0\xec\xab\x25\xdb\xbc\x80\x48\x04\ \x06\xa9\x61\x06\xf0\x02\x6d\x1b\x0d\x7d\x9c\x02\xb7\x80\x61\x5a\ \x58\x52\x94\x69\x56\xc1\x2c\xcc\x89\x6c\xcc\x05\x6d\xa9\x09\x8d\ \x12\x91\x30\xc2\x47\xd4\xd0\x25\xc6\xb4\x6e\x6a\x0f\xf8\xc8\xc2\ \x56\xb0\x01\x1d\x70\x9e\x19\x2d\xcd\xfe\xeb\x0f\x2b\x00\x0b\x8a\ \xd0\x5b\x44\x90\xc3\x67\x20\xca\x28\x9d\x0c\x1e\xdd\xc6\xbd\xf5\ \x02\xa9\xec\xce\x2d\x6b\x03\x33\x4d\x4b\x97\xfb\xce\x6b\xa7\xca\ \xf7\x6c\x7b\x70\x90\x07\x0e\xb0\xcf\xfd\xda\xcf\xca\x29\x9d\x01\ \x4d\xac\xe1\x5b\xb3\x4d\xad\xa5\x53\xfc\x11\x6c\xd1\x51\x48\xd0\ \xcd\x76\xc9\xa6\xc1\x3b\x08\x39\x6a\x9f\x6d\xfa\xd5\x3e\xba\x02\ \xeb\x00\xca\xd1\xf0\xc6\x22\x00\x05\xa0\xbd\x02\xbe\x48\x09\x3e\ \x40\x09\xfe\xdb\xd9\x2b\xe0\x0f\x70\xdd\xce\x4b\x48\xd7\x75\xcd\ \x2c\x28\x7b\xaf\x42\x60\xcf\xfa\xaa\xd3\x29\x10\x04\xdb\x3b\x90\ \x7f\xbd\xbd\x44\x68\x81\x17\x28\x91\xd7\x08\xcc\xc4\x7a\xa5\x01\ \x5a\xcc\x58\x16\xc5\xa7\x9b\xcc\x91\x50\xc5\xd0\xf4\x04\x7c\x5b\ \xae\xf3\x89\x8f\x68\xfe\x29\xb5\xd0\x7d\xd9\x6b\x9c\x0f\x3e\xd0\ \xc6\xf9\xb0\x0e\x02\x5c\xd2\x6b\xb0\x06\xfe\x00\x0e\x2b\x70\x0f\ \x6c\xcd\xc6\xd5\xb0\x02\xa6\x7c\x06\xf9\x10\x04\xee\x6a\xcf\xaf\ \x6d\xc7\x91\x79\xd3\xb6\x6d\x7b\xb8\xed\xd7\xa6\xd6\xdb\x83\xed\ \xdb\x15\x58\x95\x85\x4d\x90\x4c\x6d\xd0\x20\x6a\xa9\xdf\x0b\x3c\ \xc9\xcc\x04\x01\xb5\x0e\x73\x4a\x87\xaf\xba\x07\xb0\x00\xc6\x5f\ \xad\xcd\xd7\xcc\x7e\x1b\xc0\xc6\x6e\x9c\xd6\x15\xbe\x0e\x87\x05\ \x05\x2b\x00\x0e\x94\x00\x0e\xc8\x30\x08\x0c\x0e\x0b\x5c\x80\xde\ \x37\x0c\x07\x32\xed\xda\xef\x0d\x8d\x23\xfb\x8c\x5b\x4b\xcb\x79\ \x40\x04\x41\xe0\xd7\x79\x00\x07\x0e\x40\xcb\x30\x0b\x88\x9f\x7b\ \x56\xfa\x6a\x95\x50\x8a\x91\xc1\x4c\x98\x89\x7c\x00\xf4\x00\xa2\ \x01\x5e\xcc\x3d\xa0\x0e\x06\x50\x0a\x9d\x55\x40\xcb\xdc\x48\x95\ \xf4\xdc\xb5\xe9\x83\x1d\x70\x8f\x0e\x9e\xd1\x98\x3d\xdd\x83\xeb\ \xbf\x94\x00\xda\xf9\xc0\x05\xfe\xe0\x03\xfe\x70\x06\x8a\x55\x0d\ \x83\x30\xd1\xf5\x6b\x0f\x1d\xb0\x01\x94\x40\x09\xb0\xc0\x0f\x2f\ \xad\xca\xa9\x7c\xb2\xf4\xac\x6e\x29\x3b\xb9\x79\x10\x04\xb7\x6d\ \x6a\x36\x9e\xe3\xfe\x39\x9e\xbd\xbc\xfc\x7f\xb7\x57\x0a\x4b\x6c\ \x00\xa7\x8b\xc8\x44\x7e\xe8\x01\xda\x03\x48\x00\x5c\x2f\x31\x13\ \x0b\xbd\x4b\x42\xe0\x03\x93\x57\xc6\x0a\xee\x83\x5b\x7d\x87\x2b\ \x1c\xe1\xf3\x89\xb1\xba\xb8\x01\xf9\x50\xd2\x29\xbd\x02\xd5\x40\ \x06\x50\xf0\x04\xfe\x60\xa7\xc4\x7b\x7f\xb0\xb0\x01\x13\xee\xd2\ \xcc\x4b\xc0\x92\x5b\x3a\x82\x5a\xc7\xec\x36\x6a\x76\x7e\xe7\x1a\ \x06\x07\xb4\x4a\xa4\x0f\x1c\xac\xfa\xad\xaf\x42\xad\x0b\xda\x6b\ \xd8\x97\x8a\xe8\x87\xde\x93\x8b\xbe\xe4\x26\x11\x09\x8f\xde\x48\ \xd3\x73\xa7\x27\x89\x86\xa6\xda\xe0\x89\x2b\xdd\x51\x3e\x9f\x5b\ \x9d\xed\x15\x9d\x0d\xeb\x70\x06\xce\xc0\xe1\xa4\x2d\x02\x31\x00\ \x05\x17\x9d\x97\x13\xae\xe6\x7f\x90\x0f\x6f\x4c\xce\x67\xf0\xc6\ \x66\x3a\xeb\xb2\x6e\xa8\x70\x2e\xe3\x78\x1e\xc7\x2a\xdb\xe7\x17\ \x76\xcf\xef\x45\x84\x95\xa5\xbd\xda\x4b\xba\xec\x35\xcc\x44\x6e\ \x49\x44\x5e\x98\x06\x80\x04\x76\xa1\xdc\xbc\xb4\x0e\xb3\x85\x97\ \xa9\xe9\x8f\x7b\x60\xbf\xf8\x89\xe9\xd1\x8e\xed\xf7\xc7\x06\xac\ \xae\xea\x9a\x70\x0f\xfe\x50\x0d\xc9\x90\x0d\x64\x80\x49\x6b\x40\ \x06\x77\xba\xfe\xed\x6b\xee\x0f\xf9\xa0\xee\xed\xae\xee\x44\xf0\ \xee\x83\x1a\xef\x32\xad\xd3\x24\x70\xe7\x24\x50\xef\xcd\xbb\x98\ \x37\x4f\xcb\x2f\xdb\xdb\xc0\x6e\xb6\x66\x0b\x5c\x7c\x90\xc4\x19\ \xac\x07\x4c\x1d\xe0\x04\x1f\xa0\xea\x70\x0b\xbe\xe5\x0d\xc9\xfc\ \x0f\xcd\x7e\x44\x0b\x6b\x0f\xf4\x47\x93\x0f\x6f\xe9\x82\xfb\xc2\ \x3d\xaa\x8b\x86\xeb\x02\xb0\x30\x07\x94\x30\xea\x64\x70\x06\xd5\ \x20\x03\x5b\x10\x32\x4f\x90\x0d\x25\xcf\x06\x1e\x4d\x09\xfe\xd0\ \xf6\x29\xaf\x09\x9a\xe0\xee\xd0\xb8\xc3\x1c\x13\xf3\x04\x5c\xf3\ \x33\xaf\xca\x2f\xeb\xda\x3b\x6f\x90\xf8\x4c\x84\x10\x88\xb6\x81\ \xcc\xdb\x28\xf6\xe3\xf8\x00\xe4\xc7\x4e\x56\x01\xda\xd3\xba\x00\ \xc8\x24\x09\x3f\x52\x3d\x2f\x05\xa5\x3b\x56\x3d\xb5\x3a\xba\x07\ \x14\xdf\xc5\x1d\x9b\xb8\xf6\x67\xb8\x73\x00\x0b\xd9\x10\xfa\x32\ \x40\x06\x5b\x40\x06\x0c\x5e\xf6\x31\x40\x09\x25\x8f\xcd\xd8\x0c\ \x0b\xd5\xa0\xee\xfe\xb0\xe6\xf9\x10\xb4\xb3\xee\xc3\xb3\x3d\xb9\ \x41\x80\xf7\x31\x3e\xb9\xb4\x3a\xb9\xc0\x7e\x90\x0f\xe8\xf7\xc0\ \xff\xc7\xc8\x99\xcb\xc0\x25\xd4\x49\x4d\xb3\xc6\xae\xf8\xec\x25\ \x98\xeb\xfe\x60\x50\x4d\x2f\x4a\x50\xdf\x8b\x83\xb0\x87\xf6\xc7\ \xb8\x37\xca\x05\xd4\x4c\xe9\xdc\xef\xd5\xb7\xe8\xf5\x9f\x3f\x07\ \x7b\x30\x07\x32\x70\x0f\xf7\x90\x8f\x53\x40\x07\x31\x20\x03\xab\ \xcf\xfa\x6c\x30\x07\x9a\xe0\x0f\x9a\x90\xd2\x9a\x30\x2d\x25\x2b\ \xaf\xec\x46\xd7\x77\x7f\xf7\x7a\x0d\x88\xc1\x0f\xf8\x00\x91\x47\ \xe0\x40\x81\x0e\x0c\x00\x3b\x78\xcb\x41\x9e\x5b\x79\x1c\xa4\xb8\ \x15\x11\xc9\x2d\x03\xd1\xf0\x5d\x3c\x90\x31\x63\x3f\x8d\xfd\x6e\ \x21\x79\xd1\x6f\x45\xa7\x7f\x25\x4d\x9e\x44\x99\x52\xe5\xca\x93\ \x91\x84\xb8\x81\x19\x53\xe6\xcc\x99\x42\xd6\xd9\x03\x33\x88\x0b\ \x18\x2b\x3c\xc1\xfc\x04\x1a\x54\x28\x50\x2b\x56\x3a\x14\x45\xda\ \x73\xe8\x52\x9e\x49\xd9\x6c\x68\x36\x27\x5b\xd4\x39\xc8\xa6\x90\ \x21\x33\x85\x0d\xb2\x2d\x5b\xe6\xb0\x61\x63\x25\xec\x58\xb1\x60\ \xe7\x50\xaa\x46\x69\xc3\x06\x4d\x36\xdc\x08\xb1\x63\x83\x88\x0d\ \x3b\x2f\x65\xc2\x95\x4b\x24\x08\x89\x20\x41\xf2\x10\x99\x0b\x98\ \x08\xdf\x85\x7f\x05\x92\x40\x1c\xeb\xf0\x41\x03\xb1\x1a\x3b\x88\ \xb5\x10\xe2\xad\x14\xba\x52\x40\x34\x60\xa0\x1f\x46\x8d\xf8\x38\ \x1e\xfe\xe8\xd7\x2f\xda\x8b\x75\xfd\x5e\xdc\x8a\xc4\x52\xf5\x6a\ \x96\x91\x62\xd1\x84\x0d\x7b\xcd\xce\x9c\x45\x7f\x2a\x65\xba\x34\ \xa9\x6d\xa4\x41\x71\xeb\x2e\x1a\xf6\xa8\x0b\x4a\xd9\xb2\x49\x9d\ \x33\x47\x06\x19\x67\xc9\xab\xc9\x40\xd6\xa1\x03\x59\xea\x6c\xa4\ \x66\xa3\xe4\x82\xad\x08\x21\x78\xe1\x88\xb0\x43\x53\x88\x0d\xb9\ \x7d\xfb\x0a\x26\x2f\x97\x84\x03\x07\x24\x06\x22\x36\x88\xe3\x20\ \x42\xfa\xb1\xd6\x2b\x8e\x78\xf9\xe1\xe5\xc9\x06\xf0\x59\xbc\xa8\ \x93\x8e\x42\x23\x50\x24\x1f\xa0\x88\x24\x35\xd6\x16\x5c\x30\x92\ \xd8\x1e\x8c\x49\x84\x41\xc0\xb0\x87\x0b\x7b\xbe\x48\x2a\x37\xe0\ \xa4\x53\x2a\xc3\xdb\x34\x0c\x6e\x83\xe9\xa4\x9b\x82\x12\x19\x64\ \xc8\x46\x86\x29\x52\x74\x86\x39\x19\xa4\xeb\xa0\x99\xe9\xc0\xa2\ \x11\x2c\x17\x94\xab\x26\x1b\xed\x28\x01\xcf\x0e\x11\xe0\x80\xc3\ \x06\xbb\x62\xc2\x4b\x2f\xbf\xd0\xcb\x6b\xb0\x20\x1c\x00\x66\x49\ \x60\xa2\xa1\x2f\x1a\x1c\xa2\xd1\xc3\x00\x1c\xf4\x20\x21\x32\xc5\ \x08\x72\x80\x32\x2f\x2f\x8b\xc8\x3f\x8b\x2c\x3a\xc0\x33\xcf\xa2\ \x31\x00\x89\x68\xb8\x10\x09\x8a\x68\x14\x64\x30\x4e\x96\x5e\x83\ \xfe\x10\x36\x9b\x7e\xba\x70\x90\x3d\x06\xe9\xe9\x37\x0d\x6f\x2b\ \x0a\xc3\x3e\x7b\xfb\x30\x37\xa4\x8e\x12\xcb\x2a\x19\xaa\x71\xe6\ \xc4\x6c\xa6\x38\xd1\x14\x67\xb4\x12\x2b\x39\x19\x6b\xb4\x31\x9b\ \x6a\xc8\x90\xc1\x05\x17\xfc\xf9\x2e\x54\x38\x86\x84\x09\x2e\xc0\ \x82\x20\xe2\x2f\xc0\xc8\x13\x6c\xaf\xbe\x0c\x7a\xd2\x1b\x6f\xa4\ \xc4\xc7\x9b\x1e\x64\xad\x12\x18\xfb\xf2\xd8\xb2\x21\x85\xf6\x83\ \xa3\x94\xfe\x2c\xaa\xa8\x56\xd0\x42\x53\xe7\x05\x28\xd6\x59\xc7\ \x87\x75\xa0\x80\xa2\x13\x38\xe5\xa4\xd6\x24\x97\xea\x14\xaf\x1f\ \x3c\xbf\xb8\x50\x50\x9f\xfe\x24\xca\x0a\x7b\x90\xe1\x8d\xd0\x42\ \x75\x0b\x4b\xac\x44\xcf\x62\xb4\x51\x15\x65\x70\xc6\x94\x6a\xb4\ \x62\xa3\x83\x1b\x8f\x73\x01\x53\x18\x96\xbb\x87\x8c\xe4\xc8\x78\ \x02\x8a\x33\xa0\xe5\xee\xae\xbc\xe0\x10\x6c\xd5\xbc\xf2\x30\x8f\ \xe1\x25\x5f\xc0\xc1\x1b\x7c\x22\xbe\xb5\x93\x5b\xb1\x2c\x8c\x20\ \x5e\xbb\x64\x08\xa2\x14\xf8\xc0\xec\x3f\x91\x35\xda\x68\x9d\x5b\ \xa0\x40\x02\x0a\x11\x9e\x78\xe2\x85\x69\xab\xad\x96\x0f\x6c\x67\ \x8a\xc1\xc2\x3c\xbf\xe0\x82\x5b\xdb\xc0\xf5\xad\x03\x7b\x76\xfe\ \xdb\x19\xdc\xe0\x90\xda\x4a\x2a\x78\x9d\x41\x1a\x5e\x53\xc8\x30\ \x45\x06\x18\xa6\x8b\xca\xc4\x39\x9a\x69\xc6\xd3\x1b\x65\xd8\x02\ \x8a\x7b\xe6\x98\xe2\x09\x3a\xb6\xf0\xe7\x9e\x33\x48\x8d\x8b\x08\ \x20\xd1\x8b\x2b\xaf\xbe\x9a\x6c\xd2\x81\xb5\xa5\x94\xd8\x9b\x4e\ \x3a\xc1\x81\x6e\x5d\x09\x52\x6c\x4b\x87\x14\xf2\x92\x8f\x52\x22\ \x02\x10\xa3\x73\x0e\x58\x21\xb4\x75\x52\x56\x79\x0d\xc5\xd7\xc0\ \x07\x66\xc7\xff\xb9\x76\x66\x98\x44\xf8\x59\xdc\x2f\xf6\x24\xd7\ \x5c\xa1\x8d\x3a\xaa\x29\x3f\xff\x54\x57\xdd\x7a\x93\xcb\x06\xe9\ \x78\xe3\x25\xa3\x5f\x79\x65\x98\xe3\xea\x6a\x72\x9c\x03\x06\x18\ \x92\x73\x66\x8b\xaf\xb3\x21\x63\x8d\x18\xfa\xf5\xe7\x89\x21\xe3\ \x02\x12\xe1\xb9\xec\x20\x5e\x2e\x86\x71\xf8\x03\x98\x3f\x46\xcb\ \xc7\x80\x17\x20\x96\x78\x6e\xb9\x23\xd6\x03\x18\x82\xdc\x53\x2c\ \x05\x86\x18\x5a\x28\x3f\xca\x32\xfb\x4f\xe2\x73\xc6\x3f\xd6\x59\ \x68\xd7\xb0\x0b\x9e\x35\x5e\x7e\xbc\x41\x3a\x25\x7f\x02\x27\xa4\ \x2e\xff\xa2\xfe\xa0\x41\xb7\x07\x96\x3d\x2a\xf7\x90\x67\xa2\xd5\ \x75\x01\x32\xb8\x76\xa2\x78\x55\x63\x69\xa6\xe8\x17\x56\xfe\xe6\ \x05\x83\x29\x54\xa3\x5f\x28\xe2\x9a\xa6\x9e\x10\x03\x3a\x38\xd0\ \x0d\x31\xd8\xc2\xa6\xd6\x50\x2a\x21\xfc\x28\x78\x74\xe9\x4e\xd9\ \xf4\xa2\x3c\x60\xe4\xa3\x84\xca\x8b\x86\xac\x24\xa6\x88\x40\xd0\ \xad\x6e\x38\xc0\x81\xf5\x0e\xb3\x25\xed\xa5\x20\x16\x91\x31\x40\ \x97\xbc\x77\x0b\x00\x91\x69\x7c\xe7\xe0\x42\x34\x98\xb5\x0e\x46\ \xc4\x00\x26\xf0\x80\x87\x10\x0c\xc0\xbe\xf6\xad\xc6\x41\x92\x73\ \xc3\x3a\x24\xe0\xb9\x3d\x80\x63\x0f\x3a\xe3\xd9\x6d\x90\x01\x0e\ \xfd\x01\x2d\x8b\x9e\x13\x1d\x32\xf6\x20\xbb\x29\x94\x11\x5e\x06\ \x4c\xdd\x3d\x10\x88\x0a\x7f\x29\xe7\x1e\x5a\x63\x14\xbc\xc8\x60\ \xc4\x35\xdc\x83\x0e\x17\xdc\xc2\x3d\x7c\x07\x13\x1f\x09\x0c\x0a\ \x44\xa8\x4b\x08\xcb\x13\x84\x13\x9a\x30\x1f\xd1\x08\x42\x0a\x65\ \xa5\x08\x57\xd8\xc3\x15\xae\x80\x21\x0c\x81\xe1\x1e\x8d\x5d\x66\ \x20\x90\xe1\xd8\x64\xc2\x34\x26\x7c\x0c\x6e\x70\xa1\x71\xd6\x3a\ \x9e\xb0\x06\x24\x96\x32\x16\x4c\x6c\xa2\x6a\xde\x87\xad\x2d\x10\ \x05\x19\xc9\xb0\xe2\x17\xc8\xf5\x45\x2b\x0c\x22\x19\x5d\xdc\x4d\ \x16\x9d\x22\x96\x0e\x54\x45\x76\xbf\x84\x54\x01\xef\xfe\x81\x8a\ \x7b\xdc\xa3\x2b\x28\x92\xc1\x3d\x76\xb0\x86\x3c\xa6\xd1\x88\xf0\ \xd8\xc2\x4b\xe0\xb1\x83\x3d\x0a\x61\x0d\x50\xd8\xc2\x19\xc0\xf3\ \x12\xb8\x94\x6d\x6d\xf9\x08\x82\x21\x91\xf7\x07\xe4\x41\xe9\x1c\ \x38\xa1\x50\x27\x10\x03\x8c\x49\x52\x92\x08\x96\xd4\xde\x0d\x13\ \xd2\x25\x8f\x51\xc4\x00\x7a\xb0\x08\x47\xc6\x47\x0f\xd3\x98\xef\ \x09\xf2\x18\x05\x1d\x46\x31\x0a\x78\xb8\xa1\x07\xa8\x4c\xa5\x4a\ \x22\x87\xad\x27\x7c\xa1\x29\x7b\x48\x46\x32\xb8\x80\x8c\x9f\xd1\ \xb2\x03\xb0\x00\x47\xe6\x72\xe9\xbf\xff\xf5\x72\x0e\x63\xfc\x25\ \x03\x1b\x15\xaf\x61\x76\xe5\x09\xf7\x78\x0e\x19\xb6\x10\x03\x0a\ \x6e\x61\x07\x3b\x28\xa8\x1b\xee\xf8\x16\x52\xba\x01\x1e\x5f\x7b\ \xa3\x08\x8c\xe8\x06\xe2\x05\xa6\x2f\xc9\xfb\x43\x3e\xc6\x29\xab\ \x68\x24\x2f\x1f\xde\x70\x45\x50\x20\x89\x18\xa6\xba\x07\x30\xda\ \xd3\x58\x7b\x3a\x06\x11\x83\x70\xd2\x1b\x1c\x19\xc4\x39\xfa\xb9\ \x8e\x97\xd2\xc1\xab\xf2\xd8\xc1\x40\xd7\x81\xd0\x84\xa6\x44\x66\ \x33\xd3\x05\x86\x78\x02\x51\x4a\xc4\xf2\x73\x86\xb2\xc7\x1e\xf6\ \x80\xa8\xfe\x81\xce\x29\xf5\x12\x60\x55\xa8\xd6\xfe\x0c\x32\x12\ \xd0\x81\xca\x64\x59\x02\x6d\x67\x53\x96\xee\x74\x26\x31\xc5\x20\ \x19\x54\x56\x2a\x1f\x99\x0d\x61\x84\xfc\x43\x64\xff\xa0\x42\x6f\ \x44\x76\x56\x11\x3b\x27\x50\xec\x41\x37\x12\xb0\x93\xa9\xef\x84\ \xaa\x25\x09\xe2\x31\xed\xdd\xd3\x22\x12\x8b\xc6\x01\xc6\xd7\x8f\ \x75\xcc\x23\x1e\xa8\x90\x07\x40\x63\xfb\x89\x1d\xc8\xe3\x13\x24\ \x29\x6b\x83\x48\xf5\x20\x1f\x0c\x0a\xa2\x56\xdc\x83\xe6\x40\xd4\ \x81\x3d\x68\x74\xa3\x20\x02\x4b\x52\xa4\xe3\x82\xa8\x20\x83\x6a\ \x30\xe0\x2b\x19\xa7\x80\x34\x07\x7a\xed\xa4\x5d\xa1\x43\x4c\x19\ \x6a\xcc\x0d\x0a\x21\x06\x1e\x84\x83\x79\xc2\x29\xd4\xc9\x52\xd6\ \x1b\x38\x10\xea\x19\xbc\x11\x08\x7b\xb4\x17\x4f\x9c\x6d\x2a\x25\ \x07\xf2\x4e\xd0\xf2\xa7\x86\x8e\xc1\xc1\x7f\xf0\x19\x0d\xad\x3a\ \xab\x2b\xf1\xa8\xad\x40\x6d\xfb\x09\x02\xa3\x82\xac\xb9\x2d\x89\ \x6b\xb0\x15\x83\x64\xf0\x06\x1c\xb0\xe4\xc2\x15\xfb\xe4\x3f\x31\ \x1a\x37\x43\x13\xde\x90\xe8\xaa\x26\x1d\xbe\x3e\x17\xba\xc0\x84\ \x14\xbc\xde\xc8\x32\xaf\x6a\xb7\x4e\x31\xd0\x9d\x10\xd4\xf7\x04\ \x11\x40\x0b\x48\xe6\x31\x6a\x10\x2c\xeb\x0d\xfe\x7e\xc8\x0a\x9c\ \xf9\x20\xc1\x1f\x3a\xf1\x48\x74\x82\xc1\x15\xde\xb0\x5e\x53\x53\ \x25\xdf\xcb\xd4\x17\x9e\xbc\xa2\x92\x37\x9c\x17\x8d\x7e\x24\xe3\ \x59\x5e\xdd\x01\x6c\x5b\x30\x8a\x16\x7c\x62\x01\x0b\x20\x30\x3e\ \x0e\x8c\xe0\x27\x42\x68\x0d\xe0\x90\x00\x52\x7e\x0b\xdc\xfb\x81\ \xa8\x8a\xc1\xcd\xe5\x5b\x85\xc2\xcb\xa3\xb0\x01\x16\xc9\xd9\x80\ \xa7\xa6\x16\x5d\xe8\xf2\xb5\x8c\x2b\x2a\x5d\xea\x06\x0b\xc5\x98\ \xc0\xe3\x09\x59\x73\x31\x14\xe0\x70\x86\x70\x06\xb5\x49\xf9\x28\ \x2f\x8d\x15\x41\x4e\x70\x02\x43\x11\x83\x78\xa4\x52\x81\x31\x18\ \xc4\xa4\xea\x30\x7f\x29\x72\x0a\x88\xc0\x07\x23\xe7\x81\x04\x54\ \x42\x93\x48\xfa\x01\x05\xf4\xc5\x60\x07\x04\x96\x47\x0b\xe4\x31\ \x06\x0e\x60\x59\x0e\x3e\xd8\x32\x82\x57\x09\x1b\x28\x08\xaa\x27\ \x1d\x88\xb0\x5c\x27\xac\x66\xdf\x54\x98\x37\x4d\xf1\xdf\x72\xed\ \x95\x1c\x4b\x4d\x6d\xce\x21\xe5\xda\x9d\x83\xe9\x8c\x6a\xa0\x62\ \xa6\x7c\xfe\x1a\xa0\x5d\x4c\xe8\x33\x48\xf6\x0f\x32\x56\xde\x8c\ \xbd\x61\x48\x60\x20\xf5\xc7\xde\x18\x84\x23\x7f\xcc\x17\xbe\xfc\ \xc5\x3d\x24\x80\x6a\x1e\x34\xcd\x07\x3e\xfe\xd8\x00\x64\xa2\xad\ \x88\xf3\x42\x13\x8d\x27\x1c\x91\x0e\xa8\xae\x32\x07\x7c\xf1\x09\ \x39\xa8\x5a\xcb\x08\x76\xe2\x6e\x67\xb2\x05\x5b\x07\x4a\xae\x6a\ \xfd\x96\x5d\x61\xa1\x51\x60\xf3\x1a\x28\xf5\xe2\xf0\x9b\x91\x43\ \xec\xe4\x30\x50\xd9\x29\x7a\xd4\xb2\x5b\xb4\x03\xc3\x4a\x2e\x06\ \x7f\x86\x96\x1f\xcf\x70\x06\x44\x4b\x16\x9c\xd7\x96\x71\x65\x51\ \x9e\x72\x45\x78\x03\x90\x24\xd8\xb1\x2b\x02\x41\x82\x54\xf9\xe5\ \x30\x94\x0c\xed\xba\x37\xcd\x1f\x24\xe7\x90\xc9\xeb\xe0\x0e\x3c\ \x62\x00\xd6\x16\x14\xfd\x13\xb8\xf0\xc5\x02\xfa\xdd\x82\x78\xc4\ \x3a\xb7\x67\x8d\x0d\x14\xdc\x7a\x28\x09\x63\xd8\xae\x74\x05\xa3\ \xc3\x6f\xb3\x5c\x58\x50\x85\xd8\xc5\x79\xd4\x00\x4f\x74\x34\x49\ \x31\xbb\x5f\xc3\x9c\x20\x9f\x6d\xba\x83\xae\x40\xeb\x0c\x83\xa6\ \x36\x8c\x4f\xd8\x97\x7c\xe0\x18\x61\x0c\xeb\x84\x22\x80\x11\x1e\ \x3b\x04\xe1\x9c\x90\x04\x8c\xb9\x3d\x2d\xdf\x81\xf0\x87\xd3\x7c\ \x18\x88\x63\x72\xf8\x3c\x51\x7a\x15\xc0\x3b\x28\x7a\x0b\x16\x80\ \x0b\xa4\x2b\x5d\x0e\x0b\x38\x80\xd3\x13\xba\x50\x9a\x6c\x21\x67\ \x07\x47\x0a\x32\x18\x6e\x75\xe0\xfc\xfe\xfa\xc2\x09\x1f\x8a\xe8\ \x28\x4e\x6c\xec\x40\x70\x45\x49\x6b\x51\x31\x8b\x89\x0a\x97\xd6\ \x54\xed\xea\xa3\x83\x08\x44\xb0\x06\xdd\x07\x4f\xbc\xbf\x17\xef\ \xaa\x82\x80\x03\x45\x04\x81\x2e\x76\x20\xc1\x84\x36\x2b\x18\x72\ \x33\xf5\x7a\xea\x56\xf7\xbb\x37\xe6\x3c\x07\xac\x83\x34\xa2\x7c\ \x42\x6d\x53\x2d\x0f\x39\x7c\xc2\x17\x94\xc7\xf2\x95\x51\x81\x5b\ \x80\xaf\x44\xc1\x76\xda\xc1\x15\xab\x1e\x28\x44\x25\x9c\xd7\x69\ \x3e\x6e\x6e\xc2\xe2\x82\x8b\x92\x4e\xe2\x52\x29\x4e\x72\x56\x34\ \xf6\x16\xa5\x6e\x69\x5d\x89\x01\x13\xe3\xb3\x00\xf4\x2e\x3b\x58\ \x83\xf4\x10\x8c\xf0\x32\x8f\x26\x31\x8f\xb9\x90\x8b\xc9\xa2\x39\ \xc0\x20\x01\x6f\x68\x2f\x57\xa0\x39\xbf\x60\xaa\x76\xba\x39\xf7\ \xd0\x9e\x9d\xd3\x9e\x09\x1c\x8d\x90\x38\x10\xaf\x11\xa8\xa2\x93\ \x87\x74\xb8\x3c\x5f\x50\x41\xa5\xc3\xb2\x7e\xd0\xbc\x54\xea\x32\ \x9a\x78\x02\x70\x88\x30\xe3\x62\xb8\x73\x61\x8a\xd3\xdb\x99\x5d\ \xcb\xc1\x0e\x80\x8a\xe4\xb8\xbf\xe4\xa0\x04\x3c\xcb\x38\x33\x52\ \x1a\x05\x1a\xa6\x67\xe3\xb3\x9b\x82\x16\x16\x13\xb4\xe0\x79\xbb\ \xdf\x03\x06\x42\x6b\x98\xb9\xc8\xfe\x83\x88\xc1\x01\xc0\xe8\x29\ \x1c\x78\xa4\x4e\x10\x88\xbd\x98\x24\xcf\x8a\x2f\x77\xaa\xa1\xd2\ \x7a\x9e\x90\x60\x2d\x3a\x88\x81\x81\xa2\x32\xdb\xba\x32\x15\xf4\ \x85\xcb\xbb\xbc\x37\x29\x3f\x55\x8a\x3a\xe0\x2a\xb8\xf8\x03\x11\ \xd3\xc3\x30\x87\x63\xb3\x66\x90\xb8\xe3\xa0\x84\xeb\xc0\x0e\xe3\ \x40\x11\xe3\x48\x91\x45\x91\x3d\x63\xca\x2e\xb5\x93\xa9\x66\x12\ \x9b\x33\xf0\x87\x7c\xf0\x07\x4d\x88\xac\xba\x0b\xa7\x4c\x04\x3e\ \xc0\x98\xac\x3f\x00\x24\xbb\xb0\x03\x6f\xc3\x81\xce\x62\xa7\x30\ \x8c\xa1\x75\x9a\xa4\xf9\x2a\x3c\x12\x48\x13\xeb\x9b\x07\xdb\x59\ \xc3\x81\xe2\x3e\x7e\x7b\xc3\xa4\xeb\xbe\x05\xf0\x85\x73\x78\xc1\ \x26\xe2\xbc\x52\xd9\x82\xe0\xfa\x02\xba\xd2\x43\x1c\x5c\xb3\x6f\ \xe1\x41\xd2\x0b\x17\xa3\xb8\x17\xd6\x2b\x44\xe4\x30\x91\x44\x1c\ \x29\xac\x58\x44\x6a\xea\x38\x6c\xb9\xa9\x2d\x48\x9d\x33\xb8\x87\ \x4a\xd4\x04\x7e\xf0\x46\x6f\xb4\x36\x19\x93\x31\x43\xb2\xb9\xe1\ \xcb\xc2\x21\x51\x22\x71\x33\x45\xc4\x88\xa4\x76\x1c\x45\x8d\x51\ \x37\xf6\x50\x96\x21\x7a\x02\x24\x1a\x85\x01\x23\xb0\x14\xb4\xc5\ \x14\x4c\x06\x57\xa8\x43\x96\xfe\x80\xba\x98\x88\x01\x1f\x10\x14\ \x0b\x13\x2e\x10\x39\x97\x5d\x2b\xb3\x70\x81\x38\x8f\x62\x3d\x42\ \x1c\xc2\x44\x24\xa0\x68\xc4\x8a\xa5\x51\x29\x25\xb4\xc6\x3f\xc3\ \x0a\x6d\xac\xc4\x6f\xe4\x07\x6b\x03\xc9\x70\x44\x15\x19\xbb\x36\ \x22\xe8\x8e\xb7\xc0\x81\x0a\x1c\xc5\x52\x04\x06\x1c\x08\x84\x48\ \x08\x04\x1c\x88\x84\xf3\x1a\x45\x4a\xe2\x40\x07\x60\xbc\xeb\x83\ \x82\xec\xb2\x2d\x54\xc8\xc7\x14\xac\xbc\x5a\xd4\xc5\x7f\x54\xa8\ \xdd\x5a\x83\x64\xb8\x1c\x5f\x4b\x33\xff\xc9\xc1\x86\x5b\xc8\xa2\ \x88\x38\x44\x94\x4a\xec\x70\x06\x44\x3c\x44\x89\x9c\xc8\x33\xda\ \x82\x51\x08\x40\xc9\xc1\xa9\xb3\x3b\x03\x4d\x10\x4b\x4d\xa8\xbb\ \xba\xfb\x83\x1a\xfb\x48\xcb\x4a\x4b\x06\x9c\x40\x59\x99\x34\x21\ \xb1\x01\x60\x68\xa4\x47\x0a\x43\x76\x72\xc9\x97\x5c\x2f\x98\x84\ \xa1\xa6\x62\x0f\x9c\xb4\x3e\x1f\xe8\x87\x79\x58\x07\x81\x1a\x85\ \x1d\x18\x03\x57\x93\x03\x39\x80\xc3\x2b\x7b\x43\x0e\x20\x3f\xa2\ \xb4\x96\x59\x9b\x41\x2b\xc0\x90\x2b\x12\x46\xad\xf3\x09\x3f\x04\ \xb6\xcd\xf4\x8d\xd1\x81\x17\x64\x92\xca\xcf\x34\x44\x14\xd9\xbf\ \x32\x92\x48\x67\x30\x26\xfe\xec\x12\xc0\xd8\x30\x35\xde\xf1\x07\ \x6e\x24\x4b\xf1\x9a\x2c\x45\xf8\x48\xb4\xac\x2c\x4d\xec\xb6\x96\ \xc3\x01\xe3\x63\x15\x2e\x84\xb4\x95\x8c\x21\x99\x7c\x49\xe1\x8c\ \x84\x48\x9a\xa4\xbe\x84\x82\xea\x2b\x8d\x64\xf0\x01\x1f\x40\x05\ \xaf\x41\x85\x31\x18\x83\x4f\x48\x87\x16\x50\xcc\xa0\xbc\xbc\x05\ \x18\x03\x6f\xd8\xc5\xf6\xe1\xbc\x1d\x00\x07\xfb\xa1\xcc\xa5\xf4\ \x93\x3e\x04\x9d\x64\x4c\x3d\xa3\xb0\x8a\xd7\x21\x20\xd0\x4c\x44\ \x43\x34\x0e\x65\x33\x4d\x39\xba\x07\xa4\x21\x03\x8c\xa4\x89\x9b\ \x62\xa9\x93\x22\x83\x6a\xf0\x07\x32\x18\xcb\x7c\x88\xc2\x70\xe2\ \x87\x40\x68\x39\xb4\x5c\x39\xf3\xf0\x86\x96\x9b\x34\xe2\xc1\x0b\ \xa4\x8a\x49\x96\x84\x21\xbc\x8c\x84\xb9\x69\x47\x3d\x78\x01\x79\ \x2c\x0d\xc1\xf4\x01\x70\x00\x07\xe7\xfc\x04\x54\xd0\x37\xea\xb4\ \xce\xc9\x43\xba\xa4\xc3\xc5\x05\x70\x41\xc8\x4c\x89\x55\x5a\x07\ \x58\x72\x28\xa0\xc1\x0d\x35\xc3\x4c\xa2\xc8\xcc\xf2\x6c\x86\xe3\ \x48\x91\x1c\x19\xbb\x43\x5c\x91\x1f\x45\xc4\x29\xe0\x9a\x08\x6a\ \x11\xa4\x79\x94\x64\x62\x29\x35\xb4\x29\xd8\x78\x02\xda\xc3\xa9\ \xb0\xe1\xc6\xba\x23\xfe\xb4\xf0\x3a\x2a\x45\xb0\x52\xda\xbc\x4d\ \x54\x39\x15\x1d\xf3\x06\x54\x91\x89\x50\x7c\x24\x9a\x8c\x24\xbd\ \x1c\xd3\x48\xaa\x95\x1c\x82\x02\xd2\x10\x09\x0e\xf5\xd0\x64\x90\ \xce\x31\xb0\xc5\x74\x40\xc1\xef\x3b\xd1\xa4\x53\x41\x69\x61\xd1\ \x96\x18\x92\x79\x08\xcf\x3c\xfc\x35\x62\xfc\xa2\x35\x7b\x2b\xa3\ \x98\x02\x70\x98\x03\x77\x59\x14\x64\x52\x11\x65\x4b\xb6\x32\xba\ \x0e\x66\xe3\x94\xd8\x59\x14\x67\x63\x3b\xf5\xd9\xa9\xae\x5c\x43\ \xfe\x34\x26\x68\x79\xcd\x00\x7d\x3b\x2a\x5d\x50\x2b\xe5\x87\x45\ \x4b\x50\xbf\xc8\x4d\x1c\x10\x92\xb7\x70\x03\x1b\xe8\x04\x48\x83\ \x24\x77\x2c\x4e\x77\x04\x06\x7c\xc2\x81\x0c\x55\xd3\x88\x12\x25\ \x54\x48\x86\x0f\xf8\x05\x53\x78\x53\xcb\x4b\x4c\x5c\xa4\xbc\x15\ \x54\xc1\x7e\xcc\xd3\x93\x38\xab\x18\x98\x87\x0f\xf0\x53\x73\xe1\ \xc1\x40\x2d\xc6\xcf\x29\x0a\xaa\xc1\x91\xf6\x34\xc2\x29\xb0\x38\ \x6c\x65\xbd\x33\x6a\x14\x32\x52\xa9\x3f\xab\x86\x95\xda\x33\xb6\ \xfb\x38\x6a\xca\xa0\x45\x51\x2c\x81\x81\x4d\x70\xfa\x29\x51\xc5\ \x52\x94\x33\x21\xf1\x5a\x50\x97\x0b\x0f\x53\xe9\x84\xf6\x8a\xd5\ \x48\x0a\x84\xe1\xfe\x34\x4e\xfb\x88\xb7\x17\x60\xb2\x64\x58\x01\ \x1f\xb0\x1d\x3a\x88\x87\x64\xf8\x05\x0e\x68\xb5\xc3\xb4\x3c\xeb\ \xa4\xd3\x13\xbd\x32\x0e\x48\x86\xee\x7c\x9c\x6b\x61\x30\xfb\xc9\ \x3a\xd4\xab\x51\xbb\xfa\x53\xa2\xe9\x00\x64\xd0\x14\x47\x79\x14\ \x06\x3a\x91\x3b\x53\x91\x08\x62\x91\x46\xc1\x56\xd9\x49\x26\x3a\ \xd8\x81\xe7\xd8\x82\x27\xa8\x86\x7a\xc3\x20\x65\xea\x0a\x63\xba\ \x87\x47\xd1\x84\x33\x78\x82\x41\xab\xc4\xa0\xa2\x42\x7e\x70\x85\ \x0d\x08\x84\x1a\xab\xac\x26\x89\x2c\x79\x95\x15\xe3\xc3\x8b\x20\ \x78\xa4\x1f\x9b\x50\x18\x8a\xd5\x96\x8c\x18\x5d\x61\xc5\x8a\x88\ \x06\x1f\x18\x58\xd7\xe2\xb8\xc2\xe4\x80\x5f\xc0\x05\x7d\x83\x53\ \x2c\xe3\x37\x79\x30\x51\x5c\xd0\xce\xc3\xf4\x05\x53\x78\x4c\x16\ \x55\xb0\x8b\x45\xb8\x8d\x3a\x46\x68\xf5\x8d\xba\x6a\x8a\xad\x30\ \x11\x46\x09\xbb\xbe\x5a\xd4\xd0\x4c\x9a\xe3\xe0\x2b\xda\xb1\x9d\ \x2d\x48\x91\x1d\xb8\x07\x19\xa0\xd9\xfa\xc4\xd9\x34\x6a\x8e\x6c\ \xf0\x07\x41\x13\x98\x7c\x20\x4b\x6a\xe3\x87\xb5\x08\x84\xf2\xba\ \x36\x12\x12\xaf\x6e\xeb\xd2\xe1\x89\xcb\xb9\x74\x47\x2c\x3c\xc5\ \x59\xc5\x01\xfe\xc5\x60\xc5\xe7\x99\x87\xe6\x8c\xd9\x27\xb8\x47\ \xdb\x32\x05\xca\xd3\x37\x14\x9d\x4e\xee\x33\x51\x5f\x38\x4c\x38\ \x1d\x83\x15\x3d\x56\xc8\x79\x8b\x79\xc0\xd8\x40\xe9\x58\xd4\xa3\ \x5b\x40\x41\xc6\x43\xc9\xd1\x45\x89\x4f\x6c\x95\xcf\xb1\x7b\x9d\ \xe7\xc8\x86\x0f\x33\x1a\x32\xa0\xa6\x7b\x98\xae\x2d\x98\x14\x98\ \xaa\x23\x11\x43\x29\x05\x42\x0b\x7f\x18\xb9\xef\x0d\x2a\x76\xfd\ \x83\xa1\x75\x85\xb4\x8c\xac\x71\x8a\x21\xbf\x48\x39\x9a\x2b\x1e\ \xa7\x0d\x53\x99\x0c\xdd\xcb\xb8\xda\xf5\x80\x83\xea\x5b\x96\x27\ \xa3\x83\xd8\xba\xc7\x4f\xe0\x00\x5c\x48\xd8\xb0\xe5\x00\x2b\x9b\ \x5d\x61\x5d\xc1\x37\x75\xcc\xdd\x2d\x89\xd7\xd8\x02\x70\x48\x8a\ \x60\xf4\x96\x67\x1d\x5e\x1b\x7d\x4a\x5e\x12\x20\xac\x5c\xd4\x10\ \xe3\x3f\x23\x4d\x0e\xe6\x1a\xa0\x16\xd1\xc8\x06\xca\x8a\x29\x58\ \xa9\x93\x2a\x23\xac\x30\x9d\xd7\x11\x4b\xff\x1c\xb9\x4c\x64\xd7\ \x20\x60\x24\xa2\x25\x27\xc9\x42\xdf\x46\x83\x40\x93\xb4\x03\x22\ \xe0\x42\x47\xa2\x1b\x31\xdd\xcb\x4b\x62\x8f\x50\x09\xb9\x98\x1d\ \xa8\x7b\xb3\x2d\xb3\xa5\xbc\xd7\x05\xdb\xe9\x94\x4e\x5a\xf4\x05\ \xb1\x95\xfe\xce\x2b\xd3\xdd\x63\x75\x89\x78\x08\x4f\xf6\xeb\x0d\ \x08\x8e\xe0\x64\x2c\xcf\xa2\xd9\x03\xa3\xb1\x4a\x23\x84\x3d\x78\ \x01\x5c\xaf\x83\x14\x07\xea\x0a\x32\xd0\x94\xe6\x98\x83\xc1\xcd\ \x8a\x7d\xe9\x4f\x02\x7a\xcd\x75\xc5\xc4\x16\xce\x07\x46\x5a\xb4\ \x92\x3b\xdf\xc9\xda\x4d\xce\x8d\x86\xc0\x70\xb4\x47\x8a\x49\x31\ \x65\xa7\xf6\x58\x88\x1f\xbe\x85\x1f\x69\xb1\x80\xe9\xaa\xfd\xfd\ \x84\x01\xe3\x80\xd7\xc5\x05\x65\x50\x06\x5c\xf8\x84\x27\xb6\x2d\ \x38\xc4\x5d\xf1\xf3\x47\x04\x4e\x01\xf0\x9c\x1f\xd3\xcb\xcc\x2c\ \x4e\x3d\xe1\x35\x8a\xe3\x20\x9d\xa9\x0c\x31\xa4\x29\x3b\xd2\x34\ \xb6\xeb\x58\x14\xd4\x34\x26\xe6\x40\xe3\xa8\xd0\x23\x6c\x9c\x9a\ \xe9\x72\xde\xee\xad\x44\x4a\x10\x4b\x01\x35\x0f\xe1\xf9\x03\x45\ \xd8\x00\xbd\xb3\x2c\xcb\x42\x1e\xbe\xe0\x5c\xc3\xa8\x9b\xa7\x6d\ \x47\x60\x70\x9b\x82\xc0\x49\x07\x80\x03\x41\x5b\x99\x95\x59\x83\ \x97\x92\x2d\x02\x3b\xb5\x4a\x56\xd8\xaf\x95\xe4\x85\x25\xb0\x4a\ \x6e\x62\xdb\xbd\xdd\x31\x80\x35\x04\x8e\x84\xc9\x94\xd1\x50\x16\ \x65\xe0\x10\xd4\x8f\x7a\xb3\x3d\x80\xcf\x3b\x33\x9d\xa4\x39\x59\ \x66\xfe\x94\x23\x69\x2c\x26\x4e\x81\x81\x1b\xa9\xe5\x79\xb9\x97\ \x5c\xa6\x84\xd7\xa4\x44\x70\x64\xd7\xf0\xda\x52\x03\x05\xaa\xca\ \x92\x95\xe4\x31\x0f\x29\x41\x15\xb9\x80\x03\xb9\x71\x21\x42\x92\ \x2a\x86\xa9\xdf\x81\xd1\x3d\x46\x08\x18\x21\x1e\xba\xd8\x9a\xad\ \x53\x13\xd1\x71\x8e\x64\x5e\xb5\xdd\xf0\x13\x56\xb1\xbd\xb2\x31\ \x60\x5b\x74\xd6\x83\x06\xf3\x9c\x86\x63\xe7\x76\xfe\x90\xa0\x09\ \x0e\xe7\x6a\x06\x01\xda\xbf\x45\x25\xbb\xa4\x31\xcd\x53\x96\x01\ \x4a\x68\x11\x46\xc1\xd9\x1c\x69\x06\xeb\x28\xea\x29\xf0\x94\xe9\ \x0a\x6a\x4a\x18\x68\xef\x95\xdc\x5e\x5e\x61\x07\xb4\x01\x17\xbe\ \x63\x6d\x03\xb2\xb5\x39\xaf\x20\x08\xa4\xb8\xcc\x6a\xc4\x50\xdf\ \x14\x58\x12\x07\x38\x83\x93\xf9\x0e\x16\x8b\x87\x79\x40\x05\x36\ \x4c\x35\x6d\xb6\xad\x6e\xf6\x05\x11\x55\x86\x0f\xf8\x80\xb0\x5d\ \xe2\x78\xe8\x5f\xbb\x16\x60\x5f\x98\x58\x74\xf6\x86\x66\x45\xc6\ \x2c\xee\x43\x9b\x56\x4f\xe7\xaa\x0a\xa3\x41\x54\x77\x91\x4f\xab\ \x64\xb6\x4d\x79\x8e\xe5\xc8\xa3\xe6\x30\x0b\x95\x42\x29\xa5\x76\ \x1d\xa7\xe6\x65\xa8\x8e\xea\x3f\x88\xcd\xe1\xb9\xe1\x6a\x13\x5f\ \xfe\x15\x8a\xac\x26\x59\x5a\x10\xba\xe1\x72\x53\x92\x2f\xac\xdf\ \x34\x1d\x22\x68\x11\xa8\x1d\x78\xe4\x78\x18\xa8\x16\x38\xb5\x31\ \x80\x2d\xb3\x65\x35\x5c\x90\xce\x92\xe6\xd5\x00\x26\x30\x5f\xf8\ \x05\x65\xf8\x85\xa4\xab\x64\xdb\x6e\x5b\xb7\x6d\x30\x19\x0d\x6c\ \x68\xed\x90\x1b\xfd\x8d\x3f\xdc\x56\x7b\x86\x94\x3b\x23\x59\x77\ \x61\xb6\xd8\x43\x63\xdc\x39\xa6\xa3\xb6\x8e\x34\x02\x68\x36\x68\ \x06\x5e\x4e\x0b\x5e\x26\xcb\xb2\x14\xcb\x8f\xcc\x07\x84\xa9\x8b\ \x41\xd2\x0b\x6b\x43\x9e\x12\x3a\xe6\x84\xd9\x0b\x07\x08\x3c\xb1\ \x5e\x92\xe0\x99\xe6\x21\x02\xb0\xfc\xc5\xeb\xe9\x2c\xba\x28\xe3\ \x00\xff\xae\x64\xff\x0d\xf0\x31\xf8\x05\xba\xe6\xd5\xe9\x1c\x70\ \x49\x46\x5b\x05\xff\x04\x97\x41\xe0\x7f\xf0\x01\x83\xfc\xd3\x76\ \x1e\xec\xba\xb5\x02\x6a\x35\x65\x16\x29\xd9\x32\x02\x31\x7b\x6e\ \xec\x7d\x36\x0e\x3d\xda\x81\x4e\x99\xec\x7e\x31\xea\x1b\x79\x6a\ \x4d\xa0\x04\x7e\x90\x6a\xc9\xfd\x48\xb2\x0c\x12\xba\x48\x92\x11\ \x2a\x66\xf4\x65\x68\x29\x79\x01\x12\x78\x01\x9b\x0b\xaf\xe7\x01\ \x12\x1b\xd0\xbd\x16\xdb\x82\xb4\xbe\x6d\xb3\x45\x85\x05\xa8\xfe\ \xad\x7c\x6b\xb5\xd9\xfa\x5a\x00\xe6\x00\x65\xa8\x1f\x65\x08\xe0\ \xee\xf3\xe6\x84\x55\xd8\x05\xb0\x2d\x8a\xad\x58\x0b\x8b\xe9\x8d\ \x3d\x4f\xe1\x6d\x0a\x58\xc8\xbf\x22\xf4\x51\xea\xee\x2b\xeb\xd6\ \x67\x7f\x68\xdc\x9d\x7c\x02\x7a\xe9\x6e\xac\x98\xe5\xa7\x18\xe8\ \x7b\x60\xf1\x16\xb7\x44\xb3\xec\xc6\x6b\x0b\x92\xe2\x91\x8b\xf2\ \xc0\xe3\xa1\x5a\xd0\xb9\x54\x84\x68\x90\x12\x43\x5f\x92\x33\x20\ \x0d\x6d\xe2\xa6\x35\xc8\x3e\x54\x88\xce\x78\xf8\x04\x13\xbc\xb2\ \x70\xae\x64\x57\xb3\xb2\x48\xd6\xed\x31\xe0\xed\x84\x25\xb0\xc9\ \x0b\x6e\xb0\xf5\x55\x02\x9b\x07\x2e\x87\x99\x48\xe0\x13\xb9\x6d\ \x6e\x9a\x2e\x5e\xf0\x8e\x67\xd2\x19\x52\xe5\xf5\x70\x32\x42\xd4\ \xbf\x42\xf1\xa9\x70\x86\x51\xf2\x0a\x1a\x81\x81\x4d\xc1\x8a\x41\ \x54\x71\x49\xec\x48\x70\x0c\xdf\xf0\xd5\xd2\xf4\x40\xc0\xbe\x38\ \xaf\x16\x8e\x98\x0d\x68\xaf\xcd\x9a\x15\x43\x7f\x9e\x81\x51\x16\ \x52\x93\xa6\xaf\x81\x74\x48\x0f\x70\x80\x6a\x01\x56\x1b\x83\x6d\ \x0e\xd1\x70\x06\xf5\x02\xff\x5a\x66\x4d\xf0\xd8\x2a\x77\xb0\x4d\ \x06\x14\xc5\x85\xe3\x86\x4c\x57\xf0\xa2\xe5\x8e\xe0\x41\xfe\x79\ \x6e\x2b\xd8\x00\x8a\x73\xd4\x8a\x0b\xdc\x95\x2d\x23\x7b\x46\xa0\ \x7d\x9e\x97\x39\xc8\x9d\x18\x20\x03\xee\xb6\x8e\x4d\x11\x9b\x6a\ \x68\x1d\x32\x27\x03\x49\x94\xc4\x6e\x4c\x4b\x29\xd5\x52\x07\x74\ \x40\x6f\x2a\xd5\x20\x58\xaf\x0a\x3c\x80\x68\x58\x81\x59\xe9\xf1\ \x75\x98\x66\x95\xa1\x83\x97\xa0\x20\x62\xe2\x80\x24\x67\xb5\x49\ \x6f\x01\x54\x30\x05\xdf\x2e\xee\xc3\xac\x64\x48\x56\x58\x5f\x98\ \xeb\x2f\xa0\x6b\x4a\xe6\xdf\x03\x17\x6e\xbb\xee\xdf\xbe\xde\x5d\ \x54\x87\xca\x1d\xa4\x69\x41\xbd\x1f\xa3\x80\xe7\xd5\x43\x86\x3a\ \xf3\x30\x92\x9d\x48\x33\x36\x61\x48\x81\x02\x96\x32\x71\xb0\xd0\ \x94\x34\xf2\x87\x41\x9c\x03\x7e\x08\x9b\x91\x9b\x44\x4b\xcc\x73\ \x42\x73\x2c\xe1\xf9\x73\xb5\xf9\x3d\x23\x61\x24\x57\x38\x87\x3f\ \x00\xd8\x68\x90\x66\x20\x19\x25\x14\x53\x43\x78\x08\x28\x11\x3d\ \x79\x02\x9b\x5d\x2a\x7b\x64\x9f\xa4\x7b\x25\xe6\xdf\xbc\xf6\xdf\ \x03\xaf\x9f\xde\xf6\x66\x04\xaf\x6b\x38\xed\xdf\x4d\xde\xdd\xa4\ \x32\x0a\xf3\x1c\x7a\xf4\x24\x8a\x5e\x3a\x8e\x2e\xfe\xa8\xbd\x92\ \x11\x0f\x4b\xb6\x89\xfc\x77\x05\xc2\x9d\x0d\xa2\x83\xfe\xa9\x77\ \x01\x10\xfe\x4f\x32\xc0\xec\x81\x3e\x83\x6c\x22\xb9\x9f\xb5\xc4\ \x20\x08\x12\xc0\x38\x9b\xc0\x20\x7b\x71\x3c\x0f\x19\xb3\x52\x6f\ \xe8\xf1\x1e\xd7\xbd\xc5\x79\x26\xc2\xa4\x20\x79\xc8\x76\x9f\x64\ \xb5\x05\x98\x32\xba\x3f\xb5\xd7\x6d\xe4\x4b\xef\x66\x5c\x48\x06\ \x49\xae\x79\x5e\x9d\xeb\x0f\x90\x64\x9b\xa7\xf2\x37\xf5\xf9\xdd\ \xe5\x9f\x9a\x6e\xfc\x0e\x29\xfa\x8b\x1a\xc2\x2e\x96\x1d\x64\x08\ \x20\xfa\x0b\xdc\x46\x55\x1a\x92\xea\xcf\xfe\x44\xcd\x97\x78\x02\ \x1d\xc9\x14\x5f\xff\xcf\xb4\xa8\x7a\x6d\x14\x98\x7b\xa8\xbb\x5e\ \x9e\x71\x1b\xc0\xef\x55\x39\x15\xd9\xbc\x40\x22\xc8\x36\xf3\x10\ \x34\xf4\x01\x08\x21\x6b\x62\xc4\x80\x07\x6f\x94\xbc\x51\x0a\xe5\ \xc9\xfb\x34\x86\x03\x87\x87\x63\xe4\xb5\xd8\x01\xf1\xd3\x27\x0e\ \xa6\x7c\x61\x1c\xe3\xf0\x21\x07\x5c\x22\x7f\x7d\xf8\xf2\xe5\x43\ \xc9\x0f\xbf\x4c\xa5\xc4\x35\x66\xc1\x18\x5c\x91\xfe\xd1\xac\x69\ \xf3\x26\xce\x9c\x3a\x6d\x46\xb2\x62\x05\xcc\x4f\x30\x40\x85\x12\ \x2d\x6a\xf4\x28\x52\xa2\x41\x95\x76\x98\x93\x6d\xcf\x9c\x3d\xcd\ \xa4\x36\x6b\xe6\xc2\x45\x33\x18\x73\xa6\x70\x95\xfe\x21\xc3\x99\ \x33\x53\xd5\xaa\x81\x25\x4b\xe6\x89\x1b\x78\x50\xa6\x58\xc5\x9a\ \x6d\x6c\x35\x32\x72\xab\x65\xa3\xb4\xe5\xcc\x16\x28\x50\xce\x9c\ \xf1\xa7\x49\x53\x10\x22\x76\xec\xd8\x20\x02\xc7\x30\x9c\xc3\x44\ \x82\x30\x5e\xcc\x38\x70\x1e\xc7\x8c\xe1\x04\x81\x23\xc2\x8e\x10\ \x37\x04\x47\x19\x1c\x45\xa7\x85\x42\xcf\x0d\x25\x42\x9c\x28\x0f\ \x15\x07\x54\xa8\x40\x72\xc0\xb8\x3a\x1e\x44\x5c\xa6\x42\x2a\x33\ \x69\x12\x25\xed\xdb\xb8\x16\x2c\xf0\x95\x6c\xe6\xce\xe0\xc2\x75\ \x46\xb2\x37\x54\xa8\xcf\xa5\x49\x97\x2f\x57\x0e\xb4\x03\xd4\x39\ \xc8\x9a\x4d\xa7\x4e\x1d\x2b\x0c\x18\x5c\xa7\x7c\x05\x4b\x06\x2c\ \x78\x67\x64\xe8\xb8\x11\xb2\x25\x1b\x8c\xaa\x73\xc4\x93\x89\x7b\ \xaf\xbd\x0c\x4a\xf7\xee\xea\x85\x72\xcf\x9f\xbf\x33\x50\x6c\xf0\ \x17\x41\xc4\x3f\x65\x95\x1d\x16\x58\x60\x44\x18\x78\x20\x82\x89\ \x89\x30\x10\x3c\x69\xd1\x41\x07\x67\x07\x21\xc4\xd0\x42\x9f\x2c\ \x10\x5b\x44\x18\x41\xa4\x1a\x44\x19\x5a\x38\x06\x88\xb8\xfc\x82\ \x4b\x32\xca\x94\x74\xd2\x17\xca\xe0\xc2\x01\x49\x27\xa9\xe8\xcb\ \x43\x07\x00\x37\x1c\x8d\xc3\xb9\xf2\xd3\x52\xfe\xce\x31\xd7\x5c\ \x51\xc9\xf5\xe8\x02\x0c\x7b\x20\x23\x15\x32\xc8\x60\x65\x55\x55\ \x5a\x69\xe7\x15\x58\xa6\x80\xe5\x95\x0c\xd9\xc8\x70\x4f\x0c\x9a\ \xdd\x23\xc3\x1c\x59\xbe\x75\xcf\x7b\x64\x70\x79\x8f\x94\xf3\xdd\ \xf3\xc4\x13\x50\x6c\xe1\xcf\x3d\x96\x89\x20\x82\x0d\x70\xb4\xd9\ \x66\x80\x95\x15\x88\xe0\x81\x85\xfd\xf7\x9f\x1d\x04\x15\x64\x10\ \x84\x12\x4e\xf8\x09\x43\x2d\x8c\xc6\xe2\x2f\x19\x72\xf8\x09\x2a\ \xa6\xac\x88\x11\xa3\x0f\xfd\xa2\x8c\x89\x29\xa1\xa4\x12\x8b\x27\ \x7e\xa0\x22\x07\xbe\xcd\x58\x23\xa7\x39\x45\x32\xc8\x50\x41\xe9\ \xb8\x23\xa9\x3e\xf5\x18\xd5\x1c\xd9\x4d\xd7\x41\x75\x49\x6a\xd5\ \x55\x77\xce\x40\xc9\xdd\x14\xd9\x50\x69\x65\x94\x52\xc6\xb5\xc5\ \x16\x5c\xf2\xfa\x5e\x35\xbc\x6e\x41\x66\xaf\x67\x3c\xb1\x86\x10\ \x76\xb0\xb9\xe6\x9d\x89\x51\x36\x20\x82\x85\xf1\x77\xe7\x65\xc8\ \xae\xd1\x67\x67\x10\x86\x86\x10\x2a\x0b\x00\xda\x82\x43\x21\x8d\ \x18\x91\x6a\xa8\xec\x90\x51\x32\x2b\xa2\x82\xd1\x68\x24\x4d\x8a\ \xd2\x49\x94\x56\x9a\x12\xa6\xb8\xb8\xd2\x29\xbe\x39\xb9\x72\x1c\ \xa9\xfd\xf6\x6b\xc5\x56\xe0\x40\x85\x4c\xfe\x07\x47\x66\xa9\x55\ \x96\xdc\x7d\xb5\xf0\x76\xb4\xca\xb0\x05\x3c\x42\x3c\x51\x0d\x93\ \xd5\xcc\x27\x2c\x97\x3b\x3c\xf1\x9e\xc6\x4f\x3c\xf8\x04\xaf\x04\ \xad\x61\x2d\x7f\xfd\x21\x66\x18\x9d\x74\x2a\x68\xd9\x40\x1f\x73\ \xe6\xc6\x42\x74\x24\xf4\xd9\x0e\xaa\x35\x0a\xd1\x2f\xe3\xae\xfb\ \xc9\x0e\xa7\x89\x34\x9b\x47\x14\x59\x64\x22\x8a\xb7\x51\x0a\x1b\ \x49\x44\xff\xe2\x8b\x2f\x5c\x6c\x9a\x6f\xbe\xf6\x98\xea\xaf\xbf\ \x56\x48\x8d\x94\x15\x43\xaa\x4a\xb0\x75\xcd\x1c\xbc\x95\x94\x0b\ \xcb\x30\x45\x76\xda\x71\xe5\xcc\x16\x42\xc4\x70\xa5\x57\x16\xe7\ \x45\x2c\xaf\x1e\x6f\xfc\x60\x41\x31\xd0\xf1\x44\x95\x31\x2c\x38\ \xf2\x1a\x6b\x12\x46\x18\xca\x8f\x1d\xe6\xac\x82\x22\xc0\x51\xa6\ \x08\x04\xc9\xf3\xc4\x28\x7b\x2e\xd4\x33\x43\xf2\x2c\xb0\xf3\x6a\ \x0f\x89\x98\x4c\x86\x91\x9f\x36\x5b\x6a\xde\x32\x14\x53\x8b\x45\ \x5f\xca\x01\x6c\x22\x12\xfd\xc1\x8a\x32\x41\xbd\xfa\x3f\x91\xf0\ \x4b\x35\x73\xb0\x40\xf1\x84\x33\x3a\x5a\xd1\x54\x91\xd6\x55\x97\ \x70\xc3\x4c\xca\xca\x55\xd9\x5c\x55\x83\x37\xed\x5a\x06\x8b\x37\ \x3c\x76\xef\xb0\x05\x1d\x04\xd1\xd1\xfe\x60\x83\x9a\x45\x6f\xf7\ \x13\x6b\x2e\x3b\x18\x61\x71\xe6\x93\xcf\x63\x7c\x29\xd8\x77\x99\ \x3b\x3c\x1f\x83\x3c\xda\x4a\xc8\x10\xe4\x8c\xae\xbb\xda\x6a\xa6\ \x8c\x1b\x74\xa0\xf2\x48\x04\x28\xa3\x17\xfe\x62\x1b\xd1\x27\x45\ \xe4\x4b\xa6\xb8\x98\x88\xcc\xd2\x38\xf0\x1b\xd6\xe5\xab\x38\xb0\ \xdb\x91\x15\xc0\x01\x85\x88\x6d\xa1\x03\x48\x81\x0e\x75\x8c\xd4\ \xaa\x54\x6d\x27\x1b\x52\x6a\xd2\xef\xb2\x53\xab\x29\x8c\x67\x0d\ \x60\x42\x98\x33\xee\xf1\x3c\x37\xa4\xc5\x6e\x05\xd1\x0c\x09\x53\ \xa8\x42\x78\xac\x01\x71\x6b\xc0\x4c\x79\xec\xb0\x98\xed\x6d\xef\ \x0f\xf9\x38\xc3\xf6\xf4\x03\x07\x64\xa9\x6d\x79\xcf\x33\x48\xf9\ \xb6\x25\x9a\x86\x50\x0e\x51\x30\x71\x54\x48\xcc\x85\xa8\xa0\x5d\ \xc8\x14\x1e\x69\xc1\x11\x2b\x75\x92\x11\x9d\xc8\x25\x20\xb2\x5c\ \x4b\x7c\x61\x0a\x19\x11\x10\x5f\xfb\x3a\x20\xd6\xf6\x20\x1f\xbc\ \xb9\x01\x0a\x7b\x40\x0a\x1b\xa4\xd2\x81\x35\xba\xa0\x60\x59\xc9\ \x92\x53\xc2\x16\x96\x27\x91\x4d\x61\x0f\xb3\x1b\x19\x60\x80\x15\ \xa7\xdc\x03\x0a\x55\x5a\xa1\x0a\x03\xa9\xc2\x18\x90\x69\x0d\x2a\ \x14\x82\x10\x24\xc3\x3d\x1a\xf2\xfe\x05\x0a\x0b\xaa\x52\xf2\x9e\ \xb0\x83\x1d\x44\x68\x42\xda\x0a\x0d\xa2\x94\x48\xb9\xd5\x84\x64\ \x36\xf1\x38\x97\x46\x3c\xe2\x28\x5c\xac\x2b\x24\x2b\x6a\xd1\x07\ \x92\x31\x06\x96\xa4\xc8\x8a\x30\x11\x11\x4a\x5e\x34\xc0\x2e\x72\ \xea\x53\x60\x2c\x8a\x3d\x14\x38\x10\x90\x6d\x81\x90\x7b\xb0\x9d\ \x74\xd6\x28\x4c\x37\x66\xe5\x55\xdd\x21\x0b\xf0\xb4\x23\xab\xf1\ \xb8\x81\x76\x57\x71\x81\x53\x82\xf5\x47\x41\x52\x73\x90\xd3\x2c\ \x4f\x79\x6c\x60\xb8\xc7\x04\xe1\x0c\xdd\xd4\xcf\x23\xeb\x36\x8a\ \x27\x7c\x62\x0b\x09\xf1\x13\x45\xb4\x25\x0f\x8b\x30\x71\x7d\x20\ \x49\xc6\x4a\x50\xb1\xce\x78\xac\xc8\x23\xb4\x51\x94\xa2\x46\x24\ \x92\x49\x65\x2a\x25\xef\x13\x17\xbd\x42\xd2\x09\x5a\x76\xea\x8b\ \x60\xb4\x42\x32\xfc\x98\x19\x37\xd0\xc1\x62\x03\x21\x83\xed\x9a\ \x61\x05\x36\xb0\x91\xa2\x05\xbb\xca\x1b\xb9\x03\x16\xb2\x05\x8f\ \x3b\xb7\x7a\x42\x36\xb2\xe4\xb5\x39\x58\x6c\x84\xd5\x3c\x69\x20\ \x11\x99\x2c\x3b\x21\x86\x31\x8d\xdc\xa1\x9e\x9a\x27\xb3\x73\xa1\ \xa2\x4f\x31\x03\x0d\x45\x50\x63\x0a\xfa\xa9\x66\x0c\x3a\xc5\x05\ \xa5\x7a\xa6\x91\x88\x80\xc8\xfe\x94\xfe\x3b\x2a\xce\x4a\xa2\x4f\ \x49\x89\xc4\x94\x91\xba\x14\x2e\x56\xf0\x34\x82\x06\xc7\x38\x60\ \x5c\xc7\x42\x53\xb8\x06\xb9\x54\xe9\x09\x1b\x38\xca\x44\x27\x3a\ \xcc\xab\x14\x8c\x0d\x40\x7a\x55\x36\x38\xaa\xc7\x62\x66\xa3\x97\ \x6b\x9b\x02\x1c\xb3\x21\x9e\x61\x5d\x13\xa5\x82\xd4\x53\x0c\x5e\ \xb8\x26\x6d\x0e\xee\x9b\x70\xd0\xcb\x82\x1e\x24\xd8\x49\x9e\xeb\ \x13\x0a\x39\x88\xa0\x26\x34\x0a\x8b\xac\xa8\x21\xe1\x4a\x8d\x46\ \xc0\x91\x4a\x9f\xc2\xa6\x43\x3e\x5d\x65\x53\x21\x02\x23\x5f\xb8\ \x2b\x67\x92\x52\xc9\x29\x51\xa9\x12\x65\x4c\x95\xaa\xc4\x01\xa3\ \x3d\xd0\x92\x42\xe7\x99\x29\x6f\xe0\x70\x8e\x58\x0b\xd6\x01\x8a\ \x3e\x13\xa3\xc5\xd4\x60\x76\xaa\x82\x15\x20\x11\x4f\x06\x2e\x60\ \xc3\x48\x2d\x86\x3c\xbb\x56\x13\x1e\x74\xe0\xdb\x82\xd6\xb4\xb2\ \x20\x40\x81\xb9\x50\xf8\x2b\x99\x64\x7a\x9a\x9d\x6d\xc1\x5c\xdb\ \x4a\x27\x45\x36\xc7\x01\x86\x20\x8a\x03\xf7\x48\x4d\xa2\x50\x62\ \x0a\xce\x15\x95\x23\x0b\x50\x54\x6a\xc6\x00\xa3\xc9\x01\x15\x25\ \x8f\x4a\xc9\x14\x47\xe4\xae\x78\x7d\x00\x1c\xa5\x35\xed\x4d\x22\ \x71\x0e\xab\x52\x0d\xab\xfe\x9a\x01\x19\xf2\x08\x52\x9e\x7b\xc0\ \xf6\x76\xcd\x58\x23\x6d\xaf\xa3\x9e\x83\x69\x27\xb7\x47\x6a\xc6\ \x14\x7a\xb9\x85\x66\xb0\xa1\xc2\x66\x9d\x42\x08\x9b\x47\x5c\x6a\ \x12\x92\x4c\x88\x5b\x19\xe1\x9e\xeb\xc8\x32\x79\x6c\xb1\x35\x2b\ \x17\x6a\xe4\x39\xc4\x16\x08\x8a\x21\xa8\x19\x43\xcf\x34\x34\x9b\ \x9e\x9a\x42\x19\x39\x5b\x49\x51\x39\xe0\x2d\xfe\x79\xe4\x23\x9c\ \x9c\x14\xa4\xe0\xeb\xde\x11\xe5\x2f\x5e\xae\xb8\x2f\x7e\x6b\xd2\ \x83\x2d\x80\x03\x76\xf6\x10\xd3\x98\xa6\x49\x10\x78\x3c\xe1\x97\ \x3d\xa2\x68\x55\xd8\x58\x95\x2d\xc3\xc0\x82\x0d\x53\x2b\x47\x4d\ \x71\x5c\x32\x58\xb8\xc2\xd0\x94\x01\x19\x98\x17\xbd\x0d\x93\xd0\ \xb8\xbc\xaa\x0f\x9c\xff\xaa\x1f\x11\xcf\x4e\x92\x1a\x9b\x69\x26\ \x75\xea\x44\xc8\x45\x4e\x50\x0e\x71\xa2\x3c\xe4\x40\x44\x8d\x94\ \x4b\x23\xb2\x79\x14\xe9\x44\xe2\x11\x98\x60\x44\x0e\x3e\xb5\x50\ \x48\x2e\x15\x64\xdb\xdc\x86\xc8\x27\xba\xcd\x17\x90\x9c\x64\x9a\ \xe4\x61\x0d\xf3\x38\x23\xd5\xac\x76\x8f\x43\x02\x78\x62\x53\x03\ \x8a\x15\x46\x6a\xdb\x62\x72\x25\x6c\xb0\xea\xca\x93\x76\xa0\x36\ \x32\xcc\x61\x8f\x18\xfe\x4e\x33\x1d\xb2\xca\x66\x12\xc6\x60\x07\ \x17\xbb\x87\x7e\x82\xad\x17\xcb\x1c\xee\x70\x7a\xd9\xc2\x24\xed\ \x3c\x49\x0e\x8d\x37\x35\xe7\x8a\x1f\x43\x86\x6a\x9a\x4c\x0e\x15\ \x22\xe3\x7d\xef\x29\x55\x34\x11\x39\xd4\x6f\xd1\xab\x7c\x54\xa4\ \x28\x1d\x2f\x48\x15\xf9\x1c\x9b\x1e\x4e\x0f\xf2\xf4\x04\x1f\x80\ \xda\x5f\x3e\x18\xe4\x7c\x8e\x75\x8f\x0e\x4c\xcd\x27\x1d\xa8\x55\ \xd9\x8c\x09\xa5\x27\x75\xc7\x77\xa6\xb8\xd5\x56\xe3\x28\xa5\x34\ \x0f\x77\xd7\x6d\xa6\xc3\xaf\xee\xc2\x2b\xbc\xcc\xb9\x7a\x23\x23\ \x13\x14\x76\x60\x26\x64\xa3\xef\xc4\x7a\x2e\xd7\xb7\x28\x92\x11\ \x45\x03\x4a\x0e\x93\xd3\xb3\x48\x4c\xf7\x0b\xcc\x25\x8d\x23\x2c\ \x76\xcd\xa3\x2f\x24\x92\x49\xdb\x46\x52\xe1\x3e\xf2\xb9\x69\x64\ \x07\x12\x0a\x41\x04\xc9\xa0\x1a\x17\x0c\x29\x04\x84\xcf\xa7\x20\ \x4f\x90\xc1\xa9\x7d\xd2\x0c\xaf\x24\xac\x62\x4f\xe2\xb7\x57\x34\ \x3a\xa5\xae\x62\x69\xa4\xba\xba\xc7\x0e\xea\x4a\x5c\xea\xf5\xca\ \x57\x67\xe0\x12\x9c\x0b\x09\xbe\xbb\x2d\xef\xce\x74\xa0\x69\xb9\ \x66\x5c\x2e\x0a\x8d\x06\x9f\x80\xe2\xee\x9f\x35\x62\x8a\x12\x81\ \xd6\x7d\x8f\xc2\xfe\xc5\xb7\xc0\x75\x44\x9f\xfa\xc2\x7f\xe0\x86\ \x17\xa5\x27\xe5\x8a\x7b\xc5\x9c\x46\x91\x50\xe1\x1a\x7c\xc0\xdf\ \x1d\xed\xc1\x07\x63\x19\xd6\x1a\x1a\x64\x1e\x89\xd6\x9b\x0d\x72\ \x4d\x7a\x77\x9c\xc4\x24\xc8\x47\x69\x6c\x53\x18\x35\x3c\xee\x61\ \x15\xb3\x42\x73\x4b\x05\x67\x33\xcf\xdd\xf3\x25\x86\xe7\x65\x76\ \xb3\x3b\xae\xdd\x10\xce\xab\xe7\xad\x53\x35\x27\x06\x6f\x6a\x32\ \x7e\x72\x0e\x68\x5b\xd0\x82\xee\x6e\x44\x68\x73\x29\xf7\x8d\x64\ \x51\xd9\xf5\xf1\x43\x6a\xac\x22\x58\x5e\xfa\x0b\xe0\x30\x77\xdf\ \x6b\x99\x02\xc0\xaf\xa3\xc9\xff\x4a\xa0\xce\x47\x46\xc8\x39\xf8\ \x08\x39\x4e\xa9\x3c\x78\x18\xe6\xe5\x5c\x85\xed\x61\x6e\x58\x83\ \x33\xcc\xbc\xc7\x2d\xa9\x79\xd7\xc9\xa3\xc3\x3d\x64\xe5\x9e\x5e\ \xbd\x79\x58\xc2\xf2\xd8\x60\x91\x2d\xd8\x4c\x9e\x78\xc6\xb3\x99\ \x64\x9f\x25\xa7\xa8\x75\xa1\xfd\xb1\xa8\x49\x9a\x88\xdc\xd8\x4a\ \xc0\x48\x76\x4d\xce\x4b\xa8\x97\x88\x84\x9c\xbb\x94\xc4\x39\x68\ \x5a\xf2\xe5\x44\x0f\xe8\x9a\xc4\x70\xc1\xa8\x20\x05\x2c\x88\x40\ \x5a\x48\x92\xdd\x50\xdf\x71\x4c\xd4\x1e\x40\x49\xbf\x45\xc9\x97\ \xc1\x95\x76\xfe\x58\xd0\xf0\x34\xd3\x14\xcc\x16\x46\x39\x45\x08\ \x0d\xcb\x9a\x11\x17\xdd\xa0\x9f\x5c\x90\x01\x9a\x00\xdb\x7c\xcc\ \xce\xf2\x20\x9b\xf8\x7c\x0c\x61\x55\xdc\x16\xf0\x0c\x2a\xdc\xc3\ \x78\x35\xdb\x24\x61\x04\x8b\xc9\x4f\x44\xfc\x9e\x6b\x74\x88\x46\ \x0c\x19\xb9\x3d\x4a\xa1\x2c\x40\x43\x1c\xd1\xfa\x18\xda\x8d\x41\ \x4a\x03\x3e\x20\xd4\x2c\x5f\x20\xad\x01\x14\xac\x40\x05\x22\x07\ \x50\xac\x03\x41\xe4\x45\x79\xc8\x80\x51\xf8\x84\xc2\x80\x03\x78\ \xc0\xd5\x56\xc0\x11\x5c\xa9\x87\x05\x91\x41\x95\x40\x01\x85\xa9\ \x20\x34\xcd\x81\x0c\x04\x4b\xae\xed\xda\xda\xcc\xc7\xdd\xfc\x8a\ \x97\xf8\x0a\xb2\x15\xe2\xea\x0d\x56\xcd\x4c\xd2\x4c\x11\xd6\x2a\ \x69\x84\x0c\x98\x82\xb9\x74\xcb\xef\xf5\x18\xb8\x30\x4a\x43\x84\ \x12\xed\xbd\x4b\x2c\x99\x88\xb6\x65\x44\x48\xb4\x46\xb8\xbc\x17\ \x38\x1c\x80\x16\xb2\x4e\xba\x51\xd3\x1a\x24\xc3\xd5\xa4\xe1\xd4\ \xd8\x43\x35\x50\xc2\x1e\xd0\xa1\x10\xd4\x4e\x1a\x36\x03\xd2\x8d\ \x0d\xc2\x90\x60\xaa\xc4\x55\x5b\x65\xc6\xbc\x95\xd9\x55\xe8\x21\ \xae\x35\xcf\x28\xf0\x9a\xd4\x25\x8f\x41\x3c\x81\x58\x30\xcf\x83\ \x2c\xcf\xfe\x97\x5c\xcc\xf2\xa0\x02\xb2\x3d\x41\xf9\x7c\x5d\xcd\ \x50\x9c\xcc\xac\xd3\xe6\x0c\xe1\x50\xf1\xdf\x11\xb2\x8b\xa0\x4c\ \x8e\xa0\xc9\xc3\x27\x02\x94\xa5\x5c\x4a\x2c\x65\x0a\xed\xa9\x08\ \x8d\xfd\xc2\xf1\x39\x60\x29\x0a\xc7\xcc\x09\x92\x10\xac\x83\x0f\ \x70\xc1\x2a\x22\x87\xed\xec\x01\xf3\xdc\x83\x95\x31\x85\x33\x90\ \xc5\xe4\x69\x10\x57\xa4\x0a\xc2\x58\x90\x0c\x40\xc1\xf7\xc9\x00\ \x1b\x4c\x94\x85\x79\xcd\xae\x0c\x4b\xd4\xc5\xc0\x62\x49\x9d\x10\ \x78\x5d\xaf\x10\x9c\xf3\x80\x8c\x10\xde\x83\x34\x7a\x24\xd4\xdd\ \x99\x89\xd9\x0c\x84\x58\x63\xcd\x38\xc9\x6c\xb8\xcf\x78\xc9\x53\ \x76\x35\x84\xc6\xad\xc6\xb7\x60\x56\x44\xc0\x92\xd1\x3c\x55\xea\ \x44\x0a\xd0\x70\xc0\x01\xf0\x5d\x3c\xb2\xce\xdf\x09\x92\xa7\xf9\ \xc0\x19\x24\x03\x25\xc0\x42\x18\x22\x07\x32\xa4\x19\xd0\x1d\x85\ \xad\x90\x81\x29\x24\x1d\x38\x80\x4d\x5a\x69\x45\xae\xa0\x59\xe2\ \x41\x01\x32\x84\x95\x85\x5d\xdf\xfa\x49\x24\x97\x40\x92\x41\x84\ \x25\xfb\xc9\x4d\x10\x42\xdd\xf3\x3c\x48\xd5\x81\xa4\x34\x16\xa2\ \xf8\xac\x93\xc5\x25\x04\x61\x6d\x41\x8d\x41\xa2\x93\xac\x44\xec\ \x69\xfe\x1c\x88\xe0\x25\xff\x81\x0e\x79\xd1\x9e\x49\xd8\x58\xa4\ \x28\x03\x44\xa0\x84\x6c\xe0\x42\x3f\x0c\x54\x4f\x76\x51\x24\x70\ \xa1\x0a\x3d\xc1\x0a\xf8\xc0\x3a\xac\x03\x14\xac\x83\x51\x86\x21\ \x8e\x80\xc3\x6b\x81\x15\x9a\x7d\x87\xac\x80\x4d\x06\xd5\x0a\x42\ \xde\xca\x2f\x6a\x65\x53\x5c\x9f\x78\x40\x99\x97\x9c\xdf\x71\xdd\ \x0d\xc2\x79\xc9\x0e\x82\x4c\x10\x8a\xcf\xf9\x5d\x63\x75\x79\x24\ \xb2\x99\x4b\xcf\x7c\x5d\xb9\xe0\x1f\x61\x3d\xa5\x32\x40\xa2\xda\ \x8d\x88\x13\x09\x1a\xed\xa1\x82\x9f\xbd\x84\x43\xe0\x82\x33\xfc\ \xcc\x4b\xb4\xd7\xf0\xb9\x57\xa5\x28\x43\x32\x24\x43\x27\xc0\x63\ \x62\xd2\x48\x04\x1e\xd2\x3a\x70\x81\x0f\x40\xa6\x08\x40\x81\x0f\ \xac\x00\x51\x0e\x02\x8e\xd8\xce\xa9\x15\x05\x32\xbc\x45\x7b\x38\ \x43\x5a\x41\x09\x41\xb6\x67\xda\xc4\xc0\x79\x38\x05\x2c\x24\x98\ \x96\xec\xa1\x97\xc0\x07\x95\xa8\x5e\x0e\x4a\xd2\x7b\x30\x0f\x45\ \xfa\xe7\x21\x36\x63\x5c\x56\xd7\x89\x99\x53\xf9\xd4\x8c\xb3\x89\ \xcf\xb2\xa1\xa4\x77\x05\x9f\x70\x02\x0a\x07\x7c\x80\x29\xe0\x14\ \x6f\x20\x4a\xdd\xd5\x18\x2e\xc4\x83\x3c\xc4\x43\xd2\xe4\xd3\xee\ \xfe\xb9\x4b\x24\x58\xe7\x75\xd6\x08\x63\x6a\xc6\x3d\x46\xe6\x0b\ \x44\x66\x64\x26\x8e\x08\x44\xe6\x0a\x80\x83\x3d\xd8\xc3\x17\x90\ \x27\xaa\xe1\x08\x58\x61\xd8\x7b\xc8\xca\x57\x28\x43\x47\xa1\xd9\ \x02\x89\x00\x0d\xae\x03\x99\xdc\x03\x25\xd4\x5a\x1e\xbe\x85\x40\ \x72\x07\xf3\x54\x9d\xb0\xec\xc0\x1a\xf8\xda\xb0\x94\xe4\xd7\xf1\ \x8a\xc6\xec\x20\x22\x46\xa3\x6a\x50\xdc\x3a\x71\x49\x4d\xc9\x8c\ \x6e\x0e\xa1\xfd\x35\x9b\x14\x8e\xc1\xa5\x8c\x01\x8b\xd5\x4c\x47\ \x58\x8e\x60\x72\xdb\x84\x52\x4a\xce\xc8\x06\x17\x20\x66\x89\x9a\ \x56\x76\x92\xd0\x1a\xf4\x03\x25\xb0\x28\x8c\xae\x43\xe2\xd4\xdc\ \x40\xbc\x28\x64\x3a\x9f\x15\x7c\x81\x15\xfc\x92\xed\x64\xc3\xbf\ \x91\x01\x86\xe1\x22\x41\xee\x21\x5a\xac\x41\x35\x70\x87\x3f\xe8\ \x05\x19\x84\x54\x5d\x74\x5f\x48\xc1\xc0\xc3\x6c\x8c\x97\x48\x24\ \xde\xa8\x1e\x33\x1e\x04\xd7\xb1\xe5\x0e\x2a\x84\x6e\x06\x21\x78\ \xf5\x8c\xc5\xc9\x13\x6f\xfe\xd4\x8c\x7d\xe2\xce\x00\x55\x6b\xf8\ \x99\xe7\x20\xca\x5c\x7e\x42\x0b\x44\x67\x00\x26\x03\x17\xd5\x69\ \x92\xcd\x63\x19\x71\x01\x17\xf4\xc3\x0a\xf4\xc3\x3a\xbc\x40\xfe\ \x77\x4a\x66\x99\x60\x86\x40\xb4\xd0\x0a\x18\xea\x17\xec\x01\x38\ \x24\xc3\x1e\x18\x6a\xd0\x59\xc1\x94\x50\x8c\x0c\x28\x03\x47\x75\ \x05\x86\x3d\x81\xc4\x64\x83\xbd\xcd\x01\x0d\xc6\x47\x08\x41\x01\ \x19\x60\xc9\x1c\x54\x05\xda\x6c\x81\x5c\xf0\xca\xb5\xac\xe6\xc6\ \x98\x0b\x45\x16\x44\x33\x5a\x29\xfe\xdd\x6b\xaa\xaa\xaa\xfc\xf9\ \x1a\x24\xea\x20\x61\xa9\x9d\x6c\x58\xdb\x46\xec\x18\x3b\x9e\x5c\ \xdc\x2d\xc0\x51\x4d\x44\x4c\x98\x48\xce\x8c\x28\xb0\x9e\xdb\x4f\ \x0a\x01\x12\x58\xd5\x20\xf4\x83\x5e\xac\x03\xb2\xae\xc3\x2d\x1c\ \x0b\x22\x89\x8c\x2a\x4e\x2b\x66\x26\x43\x00\x50\xeb\x74\x62\x2b\ \x50\x80\x03\x19\x24\xc3\xac\x4c\x81\x32\xec\x1b\x33\x3d\x41\x65\ \xda\xdb\x57\xb8\x87\x5e\x80\x49\x30\xca\xc7\x58\x68\x24\x0b\xc9\ \x54\x75\x31\x0f\x67\x34\x8e\x67\x4c\x52\xd0\xf6\x4c\xb6\xac\x13\ \xa2\x78\xe4\x83\x9c\xc6\x77\xb9\x1e\xfa\xe8\xd9\x10\xca\x06\xd0\ \x3c\x6c\xad\x32\x84\x1c\xf8\x19\x4b\x08\xe6\x18\x20\x0d\x17\xf0\ \xe4\xc4\x6e\x5a\x24\xe4\x41\x79\xac\x03\xc6\x6a\xac\x08\xe8\xc2\ \x8a\x4a\xa6\x2e\xd8\x01\xf8\xf4\x4d\x32\x7c\x01\x17\x60\xfe\x26\ \x38\x04\x00\x38\x70\x41\x32\xcc\xc3\x3d\x10\xe5\xdc\xae\x00\x97\ \x50\x8c\xcb\xda\xd1\x23\x86\x90\x21\x3d\x01\xf5\x25\xc7\xed\xa0\ \x99\xaf\xe8\x05\x5d\xcc\x81\x7c\xb4\xc7\xa7\xfa\x91\x41\xa4\x5e\ \x0e\x06\x11\x45\xaa\x66\x34\x52\xdc\xd0\x16\x6d\xb9\x94\xe4\x49\ \x86\x24\x84\x9c\x06\x66\xe1\x13\x3e\xad\x08\x8b\xb0\xa3\xc6\x05\ \xca\x27\xd4\xd8\x4a\x38\x91\x0f\xfc\x6a\xd8\xc6\x5c\x0f\x94\x2d\ \x17\x0c\x82\x31\x20\x2b\x12\x3c\x17\x23\xdc\x02\x14\xdc\x82\x65\ \x4c\xa6\x9f\x42\x81\x06\x10\xeb\x31\x80\x83\x06\x80\x83\x31\x7c\ \x41\x32\xc4\x83\x3d\x26\x83\x64\xae\xc9\x16\x54\x83\xcb\xc6\x8a\ \xac\x88\xc5\x3d\x18\x12\x14\xd0\x1b\xe2\xde\x4e\x35\xd8\x07\xd6\ \xdd\xc7\xf0\xb4\x50\xd5\xe1\x45\xae\x85\xa5\xf2\xe8\x20\xb6\x1c\ \x04\xf9\x44\xa3\x22\x6e\x8b\x6e\x9e\xea\xb2\x79\x64\xcf\x20\xc4\ \xeb\x19\x9a\x98\x9a\xa3\x4b\x24\x44\x8b\x6d\x1c\x89\x98\x42\x75\ \xc6\xae\x16\xea\x81\x10\x30\x42\x3f\xf4\x03\x1c\x30\xc2\x5f\xe9\ \xc2\x9a\x30\x82\xf5\xbc\xe8\x0b\xe8\xc2\x13\x6c\x67\x1f\xc8\xad\ \xf1\x4a\x96\x31\x24\x83\x2c\x70\x2c\x17\x44\x43\xf5\xfe\xa8\xeb\ \x0a\xc8\x00\x38\x88\x0d\x06\xdd\x43\x66\xac\x83\xa9\x94\x27\xf7\ \x9e\x89\x0d\xf6\x11\x79\x48\x4c\x5e\xf4\x0a\x19\xb5\x59\xaf\x75\ \x1d\x84\x5c\xae\x84\xe8\xa6\x81\xb6\x65\xc5\x51\x92\xe7\xa2\x86\ \x47\xe2\x26\x46\x9c\xa4\x74\x72\xce\x6c\xf8\xcf\x07\x14\x09\xdc\ \x2d\x44\xd9\xad\x00\x9d\x02\xb0\x16\xd6\xdc\x8a\x5e\x06\x02\x2b\ \x30\x03\x8b\x40\x18\xc4\x00\x23\xbc\x00\x23\xcc\xdc\x1a\x1c\xc3\ \x17\xf4\x01\x17\x1c\xef\x31\x1c\x43\x32\xd4\xc3\x3a\xa8\x83\x78\ \xfa\x69\x04\xbf\x47\x32\xd4\x05\x58\x28\x43\x58\x1c\x9e\x2f\x9e\ \xf0\x8d\x72\xef\xe8\xf5\x91\x21\x35\x53\xaf\x4c\x1c\x79\xc8\x30\ \xd7\xb5\xaf\x0d\x93\xea\x89\x11\x16\xe4\xe0\x9f\xb6\x34\xa3\x10\ \xfe\xdb\x6e\xee\xc0\x2a\x41\x4a\xa1\xa0\x86\x00\x1d\xf1\x17\xb0\ \x0a\x2e\xe8\x2f\x43\xac\x83\x37\x90\xa8\x13\x13\x54\x24\x58\xac\ \x02\x2b\x4b\x18\x58\xb1\xf5\x84\x32\x12\xbc\x00\x06\x96\xc7\x3c\ \x10\xab\x06\x24\x43\xf1\x6a\xc0\x31\xac\x03\x12\x70\x2c\xda\xae\ \x03\x5e\x40\xc1\x2b\x26\x03\x67\xca\x85\x33\x5c\x5e\xc4\x90\x01\ \x7f\x6d\xaf\x15\x6c\x40\x35\xf8\x43\x9a\xcd\x4e\xfe\x66\xc4\x80\ \x7d\x08\x4b\x5e\x9c\x90\x66\xfc\x71\x89\x5d\x2e\x67\x50\xe4\xb2\ \xb9\x1e\xab\xae\x13\xb6\x88\x86\x6a\x40\x22\x6a\x00\x0a\x1d\x64\ \x84\x33\xc4\xac\x36\xeb\xde\x11\x5b\x01\x0c\xb4\x86\xcc\x48\xec\ \x26\xf7\x64\x24\xf0\xae\x15\xaf\xc1\x15\xd7\x9c\x2e\xe8\x42\x18\ \xf4\x8d\x3a\xf8\x29\xaf\xf5\x83\x04\x48\x80\xf1\x72\x41\x1f\xf4\ \xc1\xed\xce\x83\x3a\xf4\x03\x3d\xac\x80\x3d\xce\x83\x5e\x18\x1e\ \x31\x43\xee\x2e\x5f\x5e\x5e\xa1\x21\x2b\x26\x47\x07\xc0\x42\x36\ \xf8\x80\xb8\xf2\xda\xc6\xf4\x91\x5e\x68\x4c\x56\xf1\xe0\xa9\xaa\ \xef\xd0\xf6\xab\x0e\xba\xe5\x35\x73\xee\x22\x27\xc4\x69\xbc\x97\ \x36\x27\x0a\x14\x2a\x03\x32\x9c\x84\x0f\xe0\x43\x3a\xd7\x69\x0f\ \xdc\x02\x0f\x61\xc6\x1a\xec\xae\x23\x85\xb2\x3c\xff\x51\x0c\x1c\ \x83\x50\x18\x83\x31\x68\x80\x31\xf8\x73\x32\xa8\xc3\x3d\x86\xf1\ \xb1\x42\x41\xdf\x90\x81\x0f\x90\xc1\x3a\xe4\x27\x59\xa0\x0d\x41\ \x50\x42\x8f\x88\xe1\xf6\x52\x82\x42\xae\xd6\xc6\x0c\x0b\x80\x4d\ \x93\x71\x59\xe3\x25\x05\x32\x49\xe3\x66\x0f\x56\x52\xd3\x4e\x33\ \xd4\x9e\x64\x2c\x85\x1d\x3e\xf9\x82\x32\xec\xfe\x01\xcc\xc5\x74\ \x89\x46\x42\x2c\x2c\x14\x22\xf1\x41\x2c\x23\x81\xb3\x22\x52\x0a\ \x09\x01\x3e\x4b\x40\x1f\x1c\x6f\x3f\xf7\x01\x3d\x9c\x71\x3f\x18\ \xc3\x39\x20\xab\x21\x21\xf3\x3a\xdc\xc7\x97\x80\x07\x2a\x08\x01\ \x3c\x24\x83\xed\x84\x8a\x4f\x20\xc3\x16\x0c\x04\x4f\xb7\x90\xf8\ \x92\x41\x1e\xf3\x1a\x81\x3e\xc8\x41\x84\x65\x67\x9c\x46\x0e\x0f\ \x72\x10\x95\x24\x36\xa3\x58\xcf\xa8\x34\x38\xfc\x66\x87\x88\x69\ \x5c\xcb\x75\x9d\xea\x41\x5f\x2b\x8b\x2e\xdc\x02\x23\x64\x86\xae\ \x91\x50\x3d\x0c\x36\x50\xf7\xb3\x04\x18\x43\x3d\xd4\x43\x01\x9b\ \xb1\x08\xf0\x36\xc8\xf8\x83\x0f\xd4\x60\x8d\xd9\x4a\x0c\x08\x01\ \x55\x63\x4d\x07\xda\x83\x3f\x80\x8c\x1f\xad\x96\xf8\x8e\x49\x56\ \xa5\xde\xd7\x05\x11\x69\x27\x6d\x22\x12\x96\xeb\x51\xe3\x25\x79\ \x06\x8a\xad\x4b\x6b\xd7\x98\x0c\x14\x2c\x6a\xf4\x03\x29\xd2\x76\ \xec\xce\x5c\xcd\x2d\xb0\x16\x0b\xab\x0a\x9d\x42\x3d\x0c\xf5\x50\ \x0f\xb6\x3f\x6b\x00\x3d\xfc\x40\x64\x22\xc1\xde\x4c\xe6\x3c\x18\ \x9e\x0f\x70\xc9\x77\x80\x83\x08\xc5\x40\x35\x94\x8a\x4f\xc0\x82\ \x3d\xfa\xc0\x67\x8b\x0c\xdd\x74\xe1\x60\xfe\x3d\x48\x84\x90\xf6\ \xe3\x90\x37\x35\xd7\x0c\x78\x2f\x56\xa1\xf1\x5f\xfb\x50\x2d\x07\ \xac\xc3\xff\xca\x77\xec\x46\xa0\x1d\x84\x01\x23\xf0\x81\xda\xf2\ \x41\x6f\xf3\xda\x0f\x04\x75\x00\x08\x75\x3f\xdb\x38\x17\xfc\x80\ \x3a\xe8\x82\x23\x29\xcb\x3a\x3c\xe6\x3c\x30\x75\x82\xfb\x80\x33\ \x30\x38\x41\x40\x14\x84\x77\x00\x25\x38\x6f\x1e\xab\x8d\x86\xa5\ \x85\xae\xd9\xcd\xb5\x48\xd2\x25\xf9\x89\x20\xf3\xcc\x34\x57\xd7\ \xd8\xa1\x6a\x43\x9c\xa4\xb3\xe1\xea\x6c\xf8\x00\x3a\xab\x78\xec\ \x2e\xe6\x9a\x20\x92\x0d\xec\x76\x35\x31\xc2\x0f\x68\x80\x06\x04\ \x40\x00\x00\xb5\x2b\x8f\xb1\x2b\x23\x2b\x9b\xdf\x74\xe9\x99\xc9\ \x3d\x0c\x39\x08\x8b\x90\x79\x0c\x5e\x52\x20\x2e\x17\x18\x73\x09\ \x45\x97\xf8\x5e\x93\x77\x2b\xa2\xf9\x84\xc6\x41\xb8\x65\xab\xaa\ \xc6\xd3\x42\x4e\xa1\xfd\x70\x26\x99\xc2\x61\x9a\x79\x4c\xf7\x00\ \x1f\x84\x01\x6f\xcf\xb8\x56\xd1\xc3\x31\x04\xc0\x18\xdf\xb8\x2b\ \xff\x40\x32\xc0\xf9\x31\xd0\x03\x12\x84\xec\xc3\x0d\x84\x17\x6e\ \xc1\x3c\x54\x03\xb5\xf6\x12\x14\x7c\x01\x84\xfb\xc4\x06\x50\x74\ \x1e\x97\xe1\x3c\x24\x03\x66\xfa\x80\xfe\xa2\x37\x23\x35\x26\x84\ \xa3\x87\xc6\x22\x4a\x7a\x10\x4a\xfa\x82\x46\xba\x7a\xa3\xb8\x26\ \x6b\x7a\x29\xd2\xf5\x42\xd9\xc1\x29\xe4\xb7\x0a\xb9\xf9\x0f\xfc\ \x40\x3d\xc4\x01\xa9\x93\x7a\x3d\xbc\x39\x3f\x1b\x83\x3a\x8c\x0c\ \x23\x30\x30\x99\x10\xd2\xc4\x59\x2b\x3f\x12\x12\xa8\xe4\xfa\xa1\ \x52\xf4\x42\xc5\x40\x3c\x24\x43\x1f\x48\x00\x50\xa8\x16\x68\x37\ \x63\xf9\x50\x88\x10\x35\xad\x3c\x70\x79\xfc\xa2\xd8\x6d\xee\xa6\ \x34\xa6\xb8\xb4\xc7\xb4\x00\xbb\x81\x1d\xe8\x82\x0d\xe4\xf7\xb5\ \xbb\xc1\x29\x30\x02\x3d\xd0\x43\xb8\x77\x7b\x00\x70\x7b\xb7\x6b\ \xc0\xbd\xf7\x81\x3a\x9c\xfb\xb9\x8f\x8c\xda\xb4\x90\x23\xed\x6d\ \x36\x28\x24\x1d\xb4\x1b\x8f\x88\x0a\x17\xc8\x02\x24\x3d\x41\x3d\ \x68\xc0\x17\xe0\x3b\x18\xbc\x5b\x0a\xf1\x89\x60\x69\x0e\xaa\x52\ \xa4\x12\x8f\xb7\x96\x72\x79\x24\xaa\x06\x43\x78\x43\xc2\x9b\x79\ \x66\x88\x80\x01\x9c\x32\x3d\xea\x42\x3f\x1c\x83\x3a\x6c\xfb\x0f\ \xc4\x41\xd4\xcb\x42\x3d\x1c\x43\x8e\xab\x03\x12\x20\x81\x2e\x20\ \x0b\xaf\x49\x9f\x17\x8a\x27\x5a\x88\x80\xca\xaf\xbc\x50\xd8\x43\ \x32\x88\x2b\x1d\xac\x83\xcc\x1b\xfe\x03\x51\x80\xc3\x67\x97\x50\ \xbf\x83\xa9\xb1\xff\xfb\x3a\x19\x28\x35\x56\x57\x39\xb9\x9e\xeb\ \xbd\x40\x0f\x14\xbd\x99\xff\x5d\x18\xc8\xf3\x49\x31\x82\x3a\xd0\ \x83\x3a\x54\xfd\x31\xc4\x41\x1c\xd4\x83\x2c\xc8\x82\xd4\xd3\x83\ \x31\x40\x3e\x3d\xe8\x82\xda\xe4\x15\x23\x6c\x41\xe2\xb4\xd0\x53\ \x43\x81\xda\xdc\x5c\xa9\x18\x85\x3d\xf8\xc0\xb9\xdb\xfb\x04\xd3\ \x3c\x18\xcc\x83\xae\x35\xa3\x86\x9b\xb4\x12\xbb\xef\x20\xe3\x70\ \x9e\xf5\x4a\x99\xfb\x3d\x6d\x47\x82\x8c\xcf\x78\x56\x9d\x02\x3d\ \xf4\x83\x3a\xc4\x41\xa9\x2b\x7e\xe3\xcb\x42\xe1\x1b\xc3\x01\xec\ \xfe\x3a\x30\x30\x23\xe8\xc2\x3c\xcc\x03\x91\xea\xd5\x53\x0f\xc4\ \x19\xdc\x12\x18\x70\xc1\x13\x30\x82\x0f\x0c\xaf\x31\x98\xfe\x17\ \x64\xf5\xc1\x05\x11\xaa\x86\xc6\xdc\x23\x04\x7a\x7f\x78\x24\xde\ \x43\x34\x44\x3b\xed\x03\xeb\xc2\x07\xd2\x29\x44\xbc\x1b\x84\xc1\ \x0f\x18\x3e\xd4\x2b\x3e\xe3\xc7\x81\x3a\x0c\x3f\xab\x6b\xbd\x2e\ \x9c\x7b\xf5\xfb\xf8\x6e\xc3\x03\x40\x88\x20\x93\x0c\xca\x9a\x2d\ \xf6\xc0\x24\x54\xb8\x90\xe1\xc2\x41\xeb\x18\xf9\x38\x96\x4c\xc3\ \x1e\x09\x0a\x93\xc5\x70\xb3\xfe\x11\x5e\x0c\x3a\x74\x46\xc5\x18\ \xd5\x42\xde\xa8\x51\x74\x4a\x9a\x4c\xb9\x03\x15\xaa\x2d\x3b\x76\ \xbc\x8c\xd6\xe9\x5f\x4d\x9b\x37\x71\xe6\xd4\xb9\x93\x67\x4f\x9f\ \x3f\x81\x06\x15\x8a\x33\x52\xac\x53\xa7\x36\x6e\x3c\x25\x24\x29\ \x23\x7a\xfd\xd4\xa9\xfb\x11\x87\x6a\x55\xaa\x1a\xfa\xf4\x63\xb4\ \x66\x8d\x08\xae\x4b\x9f\x30\xa2\x13\x43\x08\x94\x64\x5c\x7c\x88\ \x80\x02\xab\x61\xdb\x86\x12\x7c\xac\xfb\x01\xee\x87\x8f\x00\xc7\ \xb8\x24\x94\xf0\x24\xa9\x1b\x78\x1f\x41\xca\x13\x0c\x92\x4e\x0b\ \xc2\xf2\x08\x6f\x69\xb9\x85\x71\xa4\x48\x43\x21\x47\x96\x3c\x99\ \xf2\x50\x3d\x36\x98\x6e\x14\x92\x79\xa3\xae\xa7\x3f\xa6\x52\x9d\ \xfa\xe3\xd8\x0f\xa9\xf4\xe8\xe9\x12\x11\xe6\x28\xd2\x18\x8c\x9e\ \x08\x89\xf1\xc4\x07\x17\x70\xeb\x9e\xac\xf1\xe1\x96\xb7\x42\x2e\ \x50\xea\x69\x48\x56\xef\x2c\xd6\x84\x5c\xf8\x26\x8d\x81\xd8\xb0\ \xe0\x94\x28\x55\xca\xdb\x21\xbd\x65\xb4\xc7\x95\xb1\x67\xd7\xbe\ \xbd\xa7\x9d\xbe\xdf\x4f\xdd\x42\x4d\x0f\xb4\xd5\x63\xc7\xe8\x45\ \x55\x87\x44\x17\x23\xaf\xa7\x62\x9c\x62\xb4\x75\xb3\xac\x64\xc7\ \x7c\x6c\xc9\x7d\xb0\x37\xfe\xef\x87\xf6\xe9\x99\x47\x03\x09\x08\ \x54\x68\x1e\x8d\x38\x42\xc9\xb9\x94\x4e\x62\x50\x3a\xc1\x5e\xa0\ \x89\xbb\x09\x29\xac\x30\xb2\x48\xbe\xeb\x6b\x0d\x75\x8c\xe9\x87\ \xbc\xd0\xe2\x90\x25\x8e\x1f\xe8\x89\x83\xbd\xf6\x44\x58\xca\x0d\ \x21\xd6\x60\x4f\x23\x21\x74\xe9\xc7\x87\x27\x72\xeb\x2a\x99\xfe\ \x78\x5b\x07\x8a\x1f\x92\xa1\x27\x2f\x30\xfa\x08\xf2\x8b\x75\xe8\ \xe0\xcc\x23\x98\x06\x3b\xa9\xc1\x92\xe4\x69\xec\x3a\x0b\xa1\x8c\ \x52\xca\x9a\x22\x09\x23\x43\xa5\xd4\x39\x00\x35\xab\x64\xe9\x52\ \x9d\x38\xd4\x91\x85\xbd\x30\xd6\x80\x0f\xbe\x35\x54\x63\x2a\x86\ \x75\x8e\x59\x67\x8d\x15\x63\x88\x01\x8a\x41\x70\x6c\xeb\xb7\x1f\ \xb8\xc0\x4a\x82\x3e\x02\xf0\x61\x9e\x78\xb6\x98\x11\xc1\xbf\xa4\ \xdb\xa1\x30\xc0\x10\x2b\x69\xa6\x29\x19\x6d\xb4\x42\x3d\xae\x5c\ \x31\x8c\x38\x50\xfb\xb2\x2a\x2f\xc1\x5c\x4f\x16\x46\xc8\x74\xef\ \xa8\xaf\x84\x60\xa4\x1f\x0d\xd6\xd1\x28\x4e\x21\x44\xd8\xad\x4e\ \x86\xd0\x92\x48\x03\x70\x82\x14\xae\x9e\xda\xfa\xe0\xe2\xcd\x04\ \x77\xf8\xe4\xa3\x44\x51\x72\x00\x1f\x47\x81\x0d\x16\xbb\x48\x52\ \x88\x34\x0c\x24\xd4\xfe\x03\xed\x18\xab\x40\x5b\x4f\x1d\x5d\xa0\ \x8d\xca\x3b\x37\x4e\x59\x83\x91\x75\xea\x59\xa7\xbd\xb0\xb6\x58\ \x63\x36\xb6\x56\x55\x68\x90\x79\xd6\x99\x27\x99\x20\xf9\x14\xae\ \x8f\x84\xec\xa1\x43\xb9\x8f\xa6\xdb\x95\x0e\x28\x1c\x13\xd6\xde\ \x7b\x2d\xe3\xac\xaf\x30\xa2\xf2\x50\x83\x65\xa9\x8a\x8a\xc4\xf4\ \xa2\x42\xf6\x80\x7a\x32\x43\x15\x59\x6d\xd7\x59\xc7\xc7\x64\xd6\ \xf1\x0a\x8a\x1f\xc3\xd5\x00\x0a\x5d\xe6\x39\x86\x40\x63\xc0\xe1\ \xd8\xb7\x5b\xdd\xf0\xc8\xa3\x92\xe8\x30\xe0\x49\x7c\x51\x4e\x79\ \x27\x7d\x93\x3a\x05\x09\x12\x8d\xe9\xc3\x98\xd0\x04\xd6\x80\x3c\ \xf5\xe8\xe9\xd0\xca\x8d\x18\x51\x07\x2a\x87\xb9\xd8\x53\x03\x1f\ \x0a\xd2\x8d\xe2\x3a\x23\xde\xa2\x9e\x75\xfb\xd0\xe0\xd5\x75\x8f\ \x03\xd9\x23\xc0\x5e\xe8\xe1\x64\x95\xb1\xc6\xba\x87\x84\x93\x0a\ \x55\x9d\x9c\x25\x30\x26\xc4\xa8\x46\xa4\x47\x83\x7e\x90\x40\xc2\ \xc3\x41\x8c\x61\x24\xb3\x53\x1c\x1e\xf5\x22\x30\x24\x68\x15\x0a\ \x3a\x0c\x4a\x06\x21\x1c\xb9\x10\xe1\xda\x51\xff\x0d\xc0\xb8\x85\ \xd6\x31\x52\xad\x7a\xb3\x4e\x3c\xeb\x48\xf8\xe0\x7a\xa3\x30\x3c\ \xcc\xd9\x18\x24\xfe\xba\x44\xa2\xec\x4a\xa3\x3a\xc0\x98\xc9\x91\ \x72\xc3\x0e\x24\xcc\xa6\x67\x6f\x63\x84\xe3\x91\x48\x16\xcd\xea\ \xaf\x0f\x88\xe6\x89\xa3\x9e\x7a\xe2\x41\xa2\x9e\x98\x59\x05\x39\ \x8f\x1e\x14\xcf\x3d\x71\x48\x33\x0c\x63\x60\x63\xd2\x13\x13\x67\ \xd4\xfa\x81\x79\x10\x7a\x18\xe9\xdc\x65\xa8\x38\x64\xbb\x9f\xe2\ \x8b\x23\x72\xa3\x35\xd6\x39\xab\x2d\x63\x20\xc2\xf8\x75\xd7\xe3\ \x18\x7c\x21\x2e\x18\x71\x23\x05\xab\x75\x2f\x5f\x65\x62\x33\x74\ \x19\x35\x9b\xbf\x9c\x2a\x2a\xcc\xd7\x06\xe3\x00\x15\x57\x04\x7d\ \x3d\x0f\xfb\xa9\xa7\x2e\x7a\x60\x05\xc7\x07\x46\xc8\x42\x96\x35\ \x40\xc1\x07\x1e\x4a\x46\xfe\x90\x30\x9f\x2e\x31\xa2\x1e\x66\xeb\ \xc3\xdc\xbe\xa7\x1a\xc4\x99\x8f\x82\xf8\xe2\x5d\x5f\x84\xc0\x2f\ \x0f\x99\x26\x60\xb2\xf8\x1a\x3d\xd2\x96\xa5\x3e\x0c\x42\x1d\x9d\ \xa3\xd6\xd7\xa0\x52\xbc\x51\x71\xa1\x2e\x67\xd9\x13\x17\x7a\x94\ \x0c\x59\x64\x06\x1e\xb2\xf1\x0a\x23\x64\x51\x0f\x59\xb4\x47\x16\ \x03\x72\xcb\x01\xae\x56\x41\x21\x0a\x8b\x65\x3c\xfb\x01\xda\xd4\ \xb3\x43\x75\x94\x86\x53\xc8\x32\xc6\x01\x74\xc1\x19\x18\x21\xeb\ \x79\xea\x88\xfe\x1b\x68\xe6\xb2\xae\x3d\x25\x44\x03\xee\xa2\x96\ \xb5\xe6\xc3\x88\x97\x41\x24\x06\xb2\x38\xc6\x03\x0b\xc4\x2e\x57\ \x04\x71\x88\x6d\x6c\x14\x86\xd2\x87\x2c\xca\x85\x69\x44\x9b\x53\ \x07\x6b\xc4\x18\x95\x9d\x29\xc5\x6f\x6a\xa3\xc7\x3a\x4e\xa4\xb6\ \x59\xe1\xe9\x81\x09\xf9\x01\xde\x64\x31\x95\x7a\x84\x31\x4c\xc9\ \x7b\x8d\x19\x4b\x13\x07\x63\x80\x61\x82\x6e\xb4\xa4\xa3\x22\x61\ \x03\xcd\xf4\xa5\x67\xa6\xa9\x07\x98\xe8\x11\x24\xe4\xcd\xa7\x14\ \x69\xdb\x23\xb5\x4e\xa1\x8b\x17\xd0\xe3\x1c\x4f\x41\xc2\x3a\xa4\ \xf2\xba\x78\xd4\x23\x00\xb1\xda\x54\x1c\x62\xf5\x83\x04\x32\xa2\ \x3d\x00\x54\xe0\x31\x34\x50\x0f\x93\x5d\x92\x98\xc2\x82\x94\x10\ \xf8\x70\xab\x0c\x4a\x85\x6c\x52\xd9\x1c\xda\xe4\x68\x4a\x54\x52\ \x4b\x04\x69\xcb\x99\x0a\x35\xb0\xb9\x3f\xce\xa7\x1e\xc0\x5c\x24\ \x23\xce\xd8\x87\x48\xb2\x87\x97\xf3\x91\x4a\x38\x81\x58\x4c\x75\ \x62\xb2\x58\x48\x28\x45\xcb\x7a\x16\x95\x7a\x48\x85\x7d\x21\x8c\ \xca\x2d\x5a\x83\x14\xf9\xbc\x40\x1d\x2f\xd0\x85\x7c\x38\xb4\xb9\ \x3e\x04\x2f\x91\x3f\xd0\x61\x22\x37\x47\x33\x31\xe6\xf0\x07\x31\ \x93\x80\xfe\x3d\x2a\xb9\x4e\x89\x42\x69\x6b\xa7\xd8\xe3\x32\x8f\ \x48\xa2\x63\xd8\x31\x84\x06\x50\x47\x29\xc2\xc0\x08\x90\x52\x0b\ \x74\xcf\x0b\xc3\x66\x44\x95\x4d\xb6\xd1\xe3\xa0\xa0\xd1\xe1\x0f\ \xfe\x55\x1e\x5d\x58\x0b\x74\x93\x84\xe8\x44\x71\xca\xa8\xcd\x7c\ \x47\x17\xa7\x41\x4d\xcc\x3a\x54\xb0\xa8\xe8\xe2\x58\xcf\xb2\x68\ \xe4\xd0\x16\xd2\xaf\x69\x4e\x66\xf4\xd8\x94\x88\x8c\xb1\x2c\xd2\ \x9c\x67\x59\xc9\x3b\x45\x0f\x5d\xe1\x8a\x9c\x6e\x55\x4a\x70\xec\ \x8b\x08\xd4\x91\x4d\xf2\x64\x13\x78\xcc\x5b\x4f\x18\x3c\x43\x8f\ \x52\x6c\xe8\x89\x69\xd3\x05\xb2\xce\x01\xd4\xb0\xfd\xa0\x3d\x6b\ \x90\xa4\x06\x44\x83\x45\x59\x1c\x45\x17\x56\x63\x23\x57\x01\x9b\ \x9d\x4c\x82\x27\xa0\xe9\x09\x1d\x6a\xd2\x56\x0a\x68\x21\xe1\x00\ \xcf\xf2\xcc\x01\xe8\x8a\xd6\x9a\x1a\x83\x6d\x1a\x58\xcf\x3f\xe5\ \x73\x1e\x2e\x6d\x8a\x11\xe4\x0b\xec\x67\x1f\xf5\x1d\x21\xd4\x14\ \x73\x03\x3b\xd1\x5b\xbf\xf6\x2c\x03\xd8\x31\x0c\x21\x55\xdb\x01\ \x46\x08\x42\xd6\xb0\x06\x1e\xa7\x10\xcd\xb2\xba\xa4\x0b\x26\xfc\ \x15\xb4\xbd\xa5\x0c\xfa\x94\xa3\x8b\x6c\x6a\x40\x97\x3d\x6d\x2b\ \x6a\xfe\x89\xb7\x9e\x9c\x35\x96\x35\x7e\xb4\x29\x12\x8e\x42\x2d\ \x54\x8a\x48\xb3\x48\xd8\x2d\x6f\x7d\x9b\xdd\xc8\xe8\x81\x33\xa7\ \x98\x1d\xf0\x66\x2a\x2a\xe0\xb1\xe7\x6b\x36\x0b\xa1\xe4\xd4\xd1\ \x44\x12\xc1\xd6\x18\x25\x34\xe1\x51\x44\x94\x4d\x7c\x60\x57\xbb\ \xf5\x85\xcc\x05\x19\xe8\xb4\x1f\x94\xe9\x14\x0d\xd5\xe5\xcb\x12\ \x1a\x42\x63\xc4\xb5\x1f\x78\xb4\x26\x47\x59\x03\xcf\x38\x1c\x40\ \xab\xf6\x75\xb0\x60\x77\xda\xb3\x9c\xfd\x40\x9f\x13\x46\xd6\xc0\ \x40\x18\x15\x63\x84\xcd\xa8\xa8\x54\xdb\x80\x39\xd7\xb2\x52\x44\ \xf4\xc1\x25\xde\xae\x1b\xd6\x90\xc3\x8d\xd2\x43\x23\x8c\xc8\xa6\ \xc0\xc6\x83\x33\x63\xd8\x43\x02\x6a\x55\x5e\xcf\x26\x09\x06\x0a\ \xaf\x68\xb7\x26\xf6\x71\x65\x18\xd7\x49\x3b\xf2\x2c\x3d\x2f\x43\ \x8d\x69\x30\x4c\x59\x09\x68\x40\x17\xa8\xe4\xd7\xd7\x12\x62\x8c\ \x53\xe4\x81\xbe\x3f\xb6\x72\x4f\x7a\x20\xa2\x86\x1a\x43\x16\xd4\ \xca\x63\x58\x81\xf7\xbe\xe1\x3a\x54\x03\xd0\x85\xaf\x54\xf0\xf1\ \x50\x20\x56\xf9\xca\x6d\xd6\xc9\x97\x72\xa6\x81\xbd\xa6\x12\x59\ \xa2\x1b\x84\x65\x9d\x29\xb3\x98\xd9\x63\x66\xff\xfc\xb2\x3a\x3a\ \xd2\xc1\x66\x37\x0f\x1a\x27\xf8\x18\xd1\x79\xfc\x2c\xa2\x9c\x01\ \x89\x60\x39\xd3\xf3\xe6\x62\x56\xe6\x3c\xce\x97\xd0\x95\x1e\x4a\ \x24\xc8\x43\x9e\x4d\xe9\x82\x2a\x8e\xd6\xe6\x58\x3f\xbd\x39\x02\ \xa5\xc7\xaf\x96\x36\x75\x50\xf0\x31\x9e\x1d\xe6\x75\x73\x60\x60\ \x1b\x68\xc6\x03\xb3\xb9\x05\xfa\xd4\xb5\x06\x4a\x24\x0e\x80\x9e\ \x10\x91\x68\x2a\x60\x6b\x2a\xac\x3f\x34\xc9\xac\xda\x9a\xd8\x3f\ \xc1\x87\xcd\x88\x5b\xa2\xf5\xc0\x14\xa8\xc0\xa3\xc7\x79\xd6\x4b\ \xe2\x62\x4f\xfb\x26\x66\xb3\x19\x98\x74\xe1\x41\x47\x87\x2d\xaa\ \xe8\xa1\x34\xb5\xc1\xbd\x93\x4e\x8c\x27\x44\x5d\xea\x5e\x36\x83\ \x44\xba\x74\x86\x9b\xdd\x39\xc1\xf4\xc0\x80\x6d\x6d\xa0\xd2\xba\ \xdd\xf5\xbe\x09\x3e\x3e\x68\xed\x7f\x8d\x87\xde\xf6\xf6\xf7\x3f\ \x22\x91\x6a\xf2\x6c\x6e\xdf\xdf\xfe\xf7\xc1\x8f\x5d\xa2\x67\xd3\ \xc3\xe0\x07\x77\x38\x71\x29\xd5\x6f\x87\x4f\x7c\xdc\x12\x9f\x38\ \xa3\x02\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\ \x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x1d\x85\xb1\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\x8d\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x5e\xc7\xf6\xff\xff\xff\xff\xff\xff\ \xde\x94\xb3\x5b\x88\x3c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\x4c\ \x96\xff\xff\xff\x64\x05\x99\x57\xa9\xe4\x53\x67\x1d\xff\xff\xff\ \xff\xff\xff\xd7\xc9\xe6\x0f\x27\x69\x09\x68\x9b\x99\xa7\x67\xff\ \xff\xff\xcf\x67\x47\xf6\x89\xb7\xff\xff\xff\xff\xff\xff\xf7\xa7\ \xb7\xff\xff\xff\xff\xff\xff\x9b\xf2\xfc\xff\xff\xff\xff\xff\xff\ \xb9\x89\xb4\x13\x2a\xdf\xfb\xc8\xe7\x4e\x68\xf7\xff\xff\xff\xd9\ \xe7\xf9\xff\xff\xff\x28\x46\xeb\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x99\xc8\xfa\xf0\x6c\xa9\xff\xff\xff\x7b\x88\xae\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf6\xb2\xf1\xff\xff\xff\xff\ \xff\xff\xda\x90\xf2\xff\xff\xff\xf9\xe8\xf0\x21\x8b\xc6\xff\xff\ \xff\xb4\x68\xae\xfb\x8e\x5f\xb8\xb2\xf3\xb7\xc8\xf1\xff\xff\xff\ \xff\xff\xff\x96\x94\xf4\xff\xff\xff\xff\xff\xff\x90\x22\x7c\x6f\ \x69\xe6\xff\xff\xff\xff\xff\xff\x34\x8a\xcb\xb7\x65\x49\x39\x56\ \xf6\xff\xff\xff\xff\xff\xff\x09\x18\x61\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x28\x3a\xe2\xd6\xd8\xee\x5b\xb8\xeb\xfb\ \xcf\xab\x08\x15\xdc\x97\xb1\xf8\xff\xff\xff\x7c\xf4\xfc\x39\x65\ \xf2\x74\x89\xf8\xfb\xfd\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x49\x26\x24\xfa\xd8\xed\xff\xff\xff\xff\xff\xff\xf4\x99\xb5\x71\ \x69\x64\xba\x8d\xf3\x7c\x96\x46\xb8\xd8\xfa\xfa\xb8\xbc\xff\xff\ \xff\x36\x4b\xea\xff\xff\xff\xda\xae\xf8\x6e\x78\x27\xb3\x68\xed\ \xff\xff\xff\xce\x2c\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x31\x47\x95\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x71\x5b\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xea\x5a\ \x9e\x78\xc7\xf9\xff\xff\xff\xff\xff\xff\x93\x6e\xfa\x92\x35\x57\ \xff\xff\xff\xff\xff\xff\xaf\x34\x5f\x3c\x1a\xdc\x58\x92\xe9\xff\ \xff\xff\xb9\xf3\xfc\xff\xff\xff\xfa\xae\x88\xff\xff\xff\xfa\xec\ \xb9\x78\xb4\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x2f\x7b\xc9\xf7\x92\x8f\xff\xff\xff\xff\xff\xff\xff\xff\xff\x99\ \xd8\xfc\xff\xff\xff\xff\xff\xff\x96\x37\xd0\xd8\xd6\xac\xff\xff\ \xff\xff\xff\xff\x34\x99\xb4\x64\x3d\xd9\xff\xff\xff\xf2\x7b\xb3\ \xff\xff\xff\x19\x5a\x2c\xff\xff\xff\xff\xff\xff\x4d\x58\x9e\x15\ \x37\x22\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x11\x77\ \xa8\xff\xff\xff\xff\xff\xff\x19\x37\xe1\x58\x76\xfa\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7a\xf4\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x47\x5a\xf7\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb4\x57\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x4d\x36\x5b\xff\xff\xff\xff\xff\xff\xff\xff\xff\x73\x78\x9d\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x72\x39\x62\xff\xff\ \xff\x8e\x28\xca\x78\x14\xa8\x95\x98\x51\xdd\x97\x94\x98\x98\xb6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xfb\xfc\x7f\ \x97\xb6\xf5\x77\x49\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7e\x97\ \xf9\xff\xff\xff\xaf\x78\xf8\x76\x18\x2c\x7d\xd6\xfa\x5d\x98\x74\ \x8f\x5a\xf7\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\ \x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x48\xb1\ \xa2\xc5\x8b\x18\x33\x6a\xdc\xf8\xe7\xcf\xc6\x8f\x20\x43\x8a\x1c\ \x49\x52\x63\xc7\x3f\x57\x3c\x96\x5c\xc9\xb2\xa5\xcb\x97\x0e\x3b\ \x5e\x39\x73\x26\x25\xcc\x9b\x38\x73\xea\xb4\xd8\x31\x07\xcd\x33\ \xf3\x54\xee\x1c\x4a\xb4\x28\xce\x8e\xa0\x66\xfd\xa4\x29\x42\xa8\ \xd1\xa7\x50\xa3\x5e\xec\xd8\x6e\xc5\xd2\x15\x58\x5d\x38\x95\xca\ \xb5\xab\x57\x82\x1d\xd9\x9d\xb1\xfa\x73\x05\xa9\xb3\x1d\xbf\xaa\ \x5d\x6b\xb4\x23\x3d\x35\xa4\xb0\xc6\xb5\x2a\x77\xc5\x92\xad\x6c\ \xf3\xea\x2d\xd9\xf1\x95\x1a\x79\xf2\xce\x62\x1d\x3c\x98\x94\xcd\ \xbd\x88\x13\x9b\xec\x08\x18\xf0\xd9\xb9\x85\xe9\x92\x22\x81\x57\ \xb1\xe5\xcb\x0b\xff\x90\x30\x7b\xb6\x31\x64\xc2\x63\x57\x94\xa9\ \x8c\xb9\x74\xe9\x8e\xb7\xe2\x3e\x06\xfc\x37\xee\xd5\x15\xb3\x60\ \x6b\x35\x4d\xdb\xb4\xe6\x3b\x8f\x73\xcb\x53\xd3\x7a\xe9\x99\xd8\ \x76\x64\x93\xae\x4d\xdc\x6b\x47\x03\x8d\x1d\xe7\xe6\xfd\x97\xec\ \x99\x05\xb3\xa2\x2b\x3d\x33\xbc\xb8\xf5\xa7\x9a\x63\x77\xce\x2d\ \x98\x14\x6f\xc0\x34\x75\xfe\x1d\xd9\xc0\x0f\x36\xcd\x4c\x69\xaf\ \xab\xc7\xae\x79\x06\x77\xd5\x81\xad\x76\x6e\xce\xef\x08\xb2\x0d\ \xbe\x57\x50\x5e\xcf\x7f\x68\xc7\x25\xa4\x24\xb7\xdb\x6a\xf1\x99\ \xe5\xd9\x19\xfc\x2c\x30\xd6\x82\x63\xcd\x02\x4a\x75\xfd\x45\x18\ \x52\x47\x64\x05\xc8\xda\x77\xbb\x35\xc7\xd9\x6e\x81\xc1\xf7\x19\ \x5a\x10\x4a\x28\x22\x4f\x7f\xb4\xa3\x94\x7c\xf3\x31\xa7\xa2\x3c\ \x28\x26\x67\x16\x6f\xb0\x71\x46\x8a\x29\x21\x8e\x68\x23\x44\x54\ \xd1\x44\x98\x6e\x2a\x32\x47\x8a\x8e\x01\x6a\xc8\xe1\x2c\x41\xaa\ \x61\xc4\x7e\x37\x26\x49\x91\x4c\xce\x8d\xf5\x98\x93\x8d\xf5\x18\ \x98\x8e\x1c\xa6\xd8\x23\x6f\xf4\xd4\xa8\xe4\x96\x02\xc9\x14\xda\ \x55\x05\x62\x75\x21\x73\xe0\x9d\xe1\xdd\x77\x67\x5d\xc9\xdc\x1d\ \x5a\x72\x79\xe3\x49\x4d\x5e\x15\xe0\x67\x63\x92\xf9\x22\x86\x19\ \xaa\xa9\x06\x0a\x6d\xba\x29\x22\x4a\x71\xfa\x66\xa1\x6b\x9c\x5d\ \xd9\xa1\x9e\x88\x22\xe9\xa7\x9f\xff\x05\xaa\xa3\x5c\x9d\xb1\x08\ \x69\x9e\x18\x22\xaa\xe7\x1b\xe9\x2d\xba\xe5\x1f\xf4\xcc\x10\x9f\ \x6f\x4e\xaa\xa6\xdb\xa8\x94\x66\x58\xa4\xa5\xbc\xb1\xd9\xa7\xa6\ \xb4\x75\xa4\x84\x11\xfe\x2e\x12\x56\xd8\xa0\x06\xfe\x35\xa0\x95\ \x68\x9e\x89\x2a\x96\xab\xb2\x8a\xd9\x1f\x18\x8c\x21\x65\x7c\x90\ \xcd\x35\xe7\x0a\x75\xc6\xc7\xe1\x8a\x94\xa2\x6a\x04\x26\xbd\xfa\ \x8a\x58\x47\x18\x18\x18\x65\x87\xc5\xfe\x28\xe3\xa9\xdf\xc9\x15\ \xe5\xae\x7a\x8e\x01\xad\xb4\xeb\x75\x84\x1b\x3f\xe5\x75\xe8\x99\ \x6b\x9d\x49\x16\x29\x6b\x80\x15\xd6\x2c\xb8\x3d\xb2\x13\x2d\xb9\ \x6a\x75\x24\xac\x3c\x34\x3d\x66\xed\xa7\xc8\x86\xb9\xe1\x98\xc6\ \xd6\xa9\xe2\x07\xed\xb4\xf3\xc1\x1b\x46\x18\xa1\xa7\x12\xf7\xe2\ \xcb\xd5\x1f\xaf\xbc\xd1\x2d\xb2\x70\xd5\xda\x9b\xb7\x4f\xf2\x98\ \xab\xb5\x57\xb6\x33\xcc\x16\x6e\xcc\xc1\xce\x1d\x0e\xab\x69\x44\ \xa6\x12\x5b\xd6\x11\x0a\x79\xaa\x9b\x6b\x86\x53\xfe\xdb\xdd\x6a\ \x2a\x16\xac\xe2\x0c\x73\x6c\x41\xf2\x39\xec\xdc\x92\xb2\xca\x6c\ \xb6\x7c\xd9\x1f\x98\xdc\x31\x26\xb6\x68\x6a\x5c\x60\xa4\xef\x2d\ \x1d\xd7\x98\x61\x9c\xe3\xf3\x16\x57\xdc\x42\x6f\xd1\x46\xef\xe5\ \xd6\xd0\xcc\x06\xb6\x6e\x9e\xae\x99\xe9\x19\xb6\xdc\x8a\xad\x62\ \x3b\x57\x5f\x31\x03\xbd\x46\xb2\xdc\xf5\x57\x1d\x0d\x3d\xaf\xad\ \xca\xcd\xe7\x98\xfe\xbc\xab\xcd\x99\x76\x9e\x1f\x8c\xbc\x45\x27\ \x16\xc3\xad\x06\x2a\x11\xcf\xed\x52\x47\xa8\xf8\xa8\xeb\xb0\xea\ \xc6\x8c\xf6\xcd\x68\x2f\xdb\x23\x0f\x3e\xbb\x61\x80\xe1\x6b\x26\ \xae\x38\x49\xa8\xbd\x7d\xf1\xdd\x4d\x0f\x8b\xe7\x63\xb6\xc2\x67\ \xf0\x0c\xde\xf8\x4c\x02\xd8\x86\x67\xf9\x79\x54\xfa\xc2\x87\x26\ \xe9\xbc\xd9\x4e\x26\xe4\xeb\xe2\xca\xdb\x12\x3e\x77\x82\x0a\xec\ \x8d\x83\xfb\xec\xec\x6d\xfd\xa1\x04\x0c\x19\x3b\x8d\xbb\x90\x92\ \x5b\x7e\xed\xe4\x2a\x1a\xd1\xb3\x1b\xec\xf4\xd8\x78\xf1\xe0\x62\ \xea\x39\xf2\x24\xde\x41\xa6\xa4\x92\x23\x9a\xb7\x80\xdf\xfe\xc5\ \xac\xb7\xcc\xb1\xbe\xc5\x39\xc5\xc7\x7f\x38\x2a\xdc\xa3\xfa\xca\ \xf7\xe0\x4f\x84\xb4\xfa\xe3\x6b\xfc\x1d\xaa\x32\xbb\x1d\xcd\xa4\ \xa4\x1a\x15\xdd\x62\x18\x6e\x58\x47\xca\xb6\x77\xb8\x06\xd6\xcf\ \x52\xaf\xc8\x1f\x4c\x5c\x95\xb2\x52\xf9\x8e\x73\xa9\x1b\x5f\x8f\ \x70\xf5\x01\x6f\x9c\x43\x58\xf3\xa3\x9f\x08\x1b\x48\x2f\x23\x60\ \x00\x7f\x12\xcc\xcc\x1f\xea\x67\xb9\xd6\x70\x0b\x83\x62\xe3\x50\ \x72\x72\xf5\xb8\x0f\xcc\xc1\x05\xcc\x11\xa1\x0e\xe9\x67\x38\xae\ \xa5\x70\x24\xfe\x14\x2b\x5c\xd8\xc8\x74\x41\x7a\x39\x66\x69\x17\ \x92\x94\xae\x8c\xd0\x0e\xa0\xf1\x66\x7b\x3b\x1c\x21\xdc\x14\xf5\ \x43\x8e\xfc\x41\x7c\xe6\x8b\x59\x11\xcd\x37\x44\x0c\x9d\x29\x30\ \xb1\xc9\x13\x3b\xd6\x01\x42\x28\x46\x91\x73\x47\x42\x61\x15\xff\ \xc1\x29\x2c\x66\x31\x67\x5b\x04\x60\xfa\xe0\x72\xa1\xb8\xd8\x21\ \x43\x46\xf8\x80\x1b\xcd\xa8\x43\x0c\xaa\xe1\x0d\x27\x5c\x23\x46\ \x28\x06\x3b\x70\x61\xcb\x60\x46\x24\x18\xc6\xd0\xc4\x1b\x23\x2c\ \xc1\x05\xa6\x30\x02\x2a\xde\x00\xc5\x31\x8c\xf0\x81\xf4\x82\x98\ \x20\x2b\xd2\x17\x3f\xca\x30\x8e\x96\x4a\x1f\x8b\x74\x15\x25\x1b\ \x02\x6d\x0c\x77\x18\x83\x24\x25\x79\x49\x4c\x6a\x2f\x87\x4f\x44\ \x85\xbd\x36\x29\x11\x4e\x15\xd2\x90\x94\xb2\x50\x22\x35\x88\xa7\ \x2b\xe5\xf1\x1c\x57\xb8\xc3\x2d\xc6\x40\x4c\x4a\xf6\x91\x84\x6a\ \xaa\x1f\x03\xb7\x27\x3b\x5a\x36\x44\x5f\xb7\x34\x22\xb3\xe0\xa6\ \x36\xc3\xb1\x63\x0e\x06\x20\xe6\x1d\x52\x69\x49\x62\x5e\x52\x7b\ \x3c\x7c\x62\x2c\x77\x08\x31\x35\x76\x0d\x69\x6e\xf4\xa3\x3a\x89\ \x88\x48\x44\x85\xe1\x0a\xe7\x30\x80\x29\xee\x60\x8a\x7a\x12\xf3\ \x9e\x96\xfe\x8c\x22\xfd\xf2\xd9\xcd\x7b\xa2\x02\x9f\xff\xa4\x91\ \x33\x13\xd2\x97\x68\xae\x13\x86\xed\x24\x93\x11\x66\xd0\x30\x1b\ \x76\x42\x9e\x63\xa8\xa7\x29\xf0\xe9\xcf\x7d\xee\x93\xa2\x11\x55\ \x82\x29\x34\xba\x51\x8e\x46\x54\x6e\x03\x65\x23\xc5\x0e\x4a\x52\ \xd3\xa9\x2c\x0c\x1f\x40\x58\xd0\xd8\x61\x80\x75\xcc\x53\x9b\x11\ \xf5\x67\x3e\xff\xe9\x4d\x80\xde\x73\xa3\x38\x55\x02\x3d\xe8\xa1\ \xd3\x2c\x81\x94\x96\x48\x03\x61\x49\x87\x8a\x37\xe6\x2c\x34\x0c\ \x4b\x48\xd8\x18\x5d\x10\xb4\x97\xde\xc2\xa2\xc3\x93\xa2\x03\x43\ \xe8\xcd\x8b\xc6\xb4\x9e\x3a\xd5\x29\x65\x7e\xba\xc6\xaf\x11\xf5\ \xab\x33\x98\xc7\x3c\xca\x20\x82\x32\xb4\x83\x07\x73\xb8\xe1\xc9\ \x4c\xf1\x54\x11\x4a\xd2\x48\x93\x1c\x5e\x32\x55\xb4\x3d\x7e\x46\ \x54\xa2\x1d\x55\x42\x4f\x49\x40\x45\x41\xea\x6b\xa8\x06\x45\x23\ \x52\x1f\x30\x0c\x04\x0e\xc3\x1b\x69\x4d\x02\x24\x6f\xf1\x86\x31\ \x50\xd2\x48\x8d\x6d\x18\x4d\x61\x40\x53\x3e\x46\xd1\xae\xf8\xc4\ \x2a\x4f\x77\xba\xd3\xad\x6e\xf2\x24\xae\xfc\x2a\x06\xc3\xd0\x0e\ \x6f\x08\xee\x6a\x6e\xb8\x02\x3b\x3e\xa0\x4a\x23\x49\x56\x92\xa8\ \x74\xfe\xec\x18\x60\x50\xcc\xaa\x5a\xf5\x9e\xf4\x9c\xe8\x44\x63\ \x4a\xcc\x8e\x72\xb6\xb3\xf4\xf0\x6c\x15\xc3\x22\xda\x92\x3a\xf2\ \x1c\xa7\x45\xed\x15\x3e\x00\x03\x86\x69\xaf\x61\x6f\x70\xae\x11\ \x1e\x2b\xce\x1c\x8a\x30\xb6\x7a\xd5\x68\x76\x75\xab\xd9\xbd\x76\ \x44\xb8\x29\xec\x48\x27\x78\x20\xba\x75\x06\xd6\x70\x46\x70\x80\ \xd5\x32\xe7\x86\xf6\x9e\xc3\x05\x77\x60\x98\x2a\x5f\xbb\xca\xe1\ \x35\x4c\x92\xce\x25\x21\x03\x0f\xc7\xca\xbb\x62\x55\xaf\x3c\xcd\ \xae\x5e\x37\xda\x59\xcd\x80\x17\x79\x48\xe1\x43\x61\xe7\xf1\xbc\ \xe2\x5a\xca\x08\x7b\xb8\xc2\x3e\xde\xbb\x5a\xd6\x1a\xa9\x91\xd3\ \xa5\x27\x0a\x26\x7a\x87\x57\x98\x62\xc3\xdb\xdc\xa6\x6c\xef\x29\ \x49\x6e\xee\xd6\xbf\x12\x05\x70\x70\x49\x10\xdc\x9d\x66\xd5\xbb\ \x5c\x6d\x19\x52\xd6\xd1\x0f\x71\xfc\x02\x19\x4c\x68\xb0\x1f\xef\ \x3b\xdd\xe8\x32\x8c\xc7\xae\x65\xce\x1b\xf6\x10\x5f\x83\xc2\x80\ \xc0\xbf\xa5\x87\x0e\x74\xfa\x0a\x14\x34\x39\xc4\xdc\xbc\xab\x12\ \x5e\xf1\xe2\x24\x27\x99\x32\x58\x6e\xb1\x8b\x39\xdb\x57\xa3\x9d\ \x84\x0f\x7c\xe0\x40\x3f\xfa\xf1\x00\x64\x88\xe0\x71\x24\xed\xf1\ \xfe\x1d\x50\x60\x00\x6d\x5c\x81\x04\x3a\x30\x00\x0a\x60\xd0\x5c\ \x23\xc0\x20\x08\x30\x00\x9b\x9e\x7b\x64\x04\x14\xd0\x03\x03\x24\ \xc0\x84\x92\x95\xfc\x8a\x57\xc8\x21\x95\x22\x16\xb1\x36\x73\x4b\ \xe0\x57\x00\x17\xcb\x94\x09\xae\x66\x0c\xbc\x62\xbe\xb2\xf8\xb7\ \xe6\x54\x8f\x4c\x44\xa0\xe0\x61\xfc\xe2\x01\x63\xee\x47\x0e\x74\ \xbc\x2b\x3b\xb3\xe3\x0a\xa0\xe8\xc4\x3e\x56\xbd\x6a\x50\x5c\xa1\ \x04\x73\xa6\x73\x09\xe8\xd1\x8b\xf8\xaa\x0c\x76\x46\x70\xb4\xa0\ \x3d\xbc\xe6\x54\xe6\xb9\x61\xb3\x8d\x6d\xb0\x63\x5b\x4f\x0f\x53\ \xb9\xa7\x92\x66\x31\x5f\xff\xb0\x0f\xa4\x18\x18\x29\x96\xde\x69\ \x8c\x35\x25\xde\x3a\x88\x60\x1d\x75\x78\x00\x07\x1e\x00\xea\x31\ \xe7\xf8\xa0\xd3\x4d\x42\x27\xdc\xc0\x6a\x56\xbb\x45\x0e\xcd\x85\ \x01\x0a\x30\x21\x68\x74\xe7\xd7\xa8\xbe\xec\xb0\x12\x8a\x6c\x04\ \xc7\x4e\xb7\xde\x30\x48\xb4\xaf\x51\x49\xcf\x35\x17\x7a\xca\x86\ \x76\x34\x97\x25\x0d\x8a\x82\x17\x1c\xcb\x05\x9f\x34\x67\xa7\xcd\ \xa5\x8e\xec\xc3\x0d\xc3\xe0\xc3\x2d\x6e\x21\x8f\x5b\x64\x9b\xdb\ \x0f\xf8\xb4\x1d\x1e\xbc\x2b\x18\x48\xb8\xdc\xcd\xe6\x54\x93\xfe\ \xa3\xab\xee\x59\x0b\x7a\xce\x3e\x3e\x2f\xbe\x1b\xc6\x9b\xc6\x36\ \xf6\x0e\xf9\x16\x31\x6d\x1b\x8b\xca\x79\x16\x1b\xd9\x1e\xae\x74\ \xa5\x2d\x0d\x0a\x12\x18\xdc\xe0\x3e\xb7\x34\xc3\x95\x84\x14\x0e\ \xf8\x6c\x18\xeb\xa0\xdf\x2d\x44\x90\xf1\x5f\xfc\xa2\xb0\xfd\xd8\ \x31\x86\x51\x00\x8a\x90\xd3\xe3\xe4\x30\x6f\xd8\x1d\x4c\x2e\xe8\ \x5e\xa0\x20\xbe\xd1\xdd\x73\xf5\xa0\x6b\xdf\x7a\xbf\x81\xce\x21\ \xa6\xed\xcc\x27\x19\x62\x53\xc8\xa1\xd0\x95\xd6\xaa\xd0\x83\x6e\ \x69\x54\x07\xbd\xe0\x76\xef\xf9\xb2\x33\xfd\x2b\x94\x28\xf8\x6a\ \x1c\xa0\x38\x2a\x98\xee\x74\xc1\xfd\x82\x14\xe7\xad\x5e\x18\x90\ \xba\x07\x87\x19\x41\x0e\x82\xa6\x07\x95\xe5\x80\x82\x39\xdb\xd9\ \x00\x0f\x7a\x50\xbb\xeb\xfc\x63\x1e\xb3\x7c\xec\xf7\x8d\xee\x6c\ \xa1\x1c\xec\x7c\xbf\x9c\x9e\x72\x30\x05\x95\x0d\x60\xe9\xd6\xdf\ \xdd\xe7\x6f\x7e\x33\x09\xec\x6e\x77\x9e\xff\x21\xe1\x7c\x4f\x8c\ \x5b\x96\xbe\x0e\xa3\xfb\x8c\x03\x22\x40\x05\x29\x2c\x9e\x71\xc1\ \x0d\x63\x03\xa4\x36\x82\x1d\xc4\xb1\x08\x37\x90\x4c\x1c\x0e\x7b\ \x03\x0a\x4a\xd0\x8b\x42\x6f\xf8\xc9\xaf\xa8\xfa\xaa\x95\xfe\x87\ \x72\x0c\x43\xb6\xf3\x7a\x9a\xae\x63\xdf\x00\xe5\x99\x37\x96\xb6\ \x6b\xfe\xb0\xea\x5f\x61\x80\xe0\x02\x9a\xf5\x7c\x45\xf5\x15\x62\ \x3f\x7b\x57\xcf\x3e\xfe\x7a\x37\x30\xaa\x1f\x94\x7b\xaf\x69\x66\ \xe2\x13\xc7\x01\xbf\xe0\x06\xbf\x00\x7c\xa9\xb1\x74\x18\xf7\x74\ \xbf\x60\x05\x1b\x87\x28\x0e\x23\x0f\x4c\x20\x0e\x20\x70\x35\x24\ \x93\x04\xcd\x45\x7e\xaf\x50\x7d\x94\xf7\x75\x77\x80\x79\xdf\x35\ \x72\x7a\xd6\x63\x61\x97\x32\x8e\x57\x82\x3e\xa6\x76\x30\x27\x5b\ \x27\x98\x6f\x95\xe7\x64\x85\xa6\x03\x24\x00\x7f\xf7\x27\x7f\xf3\ \x37\x83\xb1\xa7\x77\xae\xd7\x73\x07\xf7\x20\x0d\xd7\x11\x75\xb0\ \x0e\x22\x00\x80\xd7\x16\x66\x11\x17\x84\xa4\x20\x02\x63\x26\x02\ \x62\xd0\x74\x0c\xa8\x32\x65\x30\x0f\xf8\xc0\x03\x8b\x40\x81\xa8\ \xd5\x09\xec\x90\x67\x30\x50\x68\x86\x36\x4f\x41\x20\x07\x71\x56\ \x02\x87\x16\x82\x67\x47\x67\x29\xd7\x48\xe0\xc7\x30\xe7\x97\x76\ \xf6\x26\x7e\x67\x17\x62\x95\x57\x68\x06\x10\x87\x72\x88\x01\xf3\ \x27\x7f\x36\x58\x87\x7c\xb5\x62\x35\x88\x77\xf6\x37\x74\xd7\xd1\ \x11\xed\xc5\x01\x82\xf8\x00\x4c\x30\x71\x22\xc0\x01\xfe\x23\x33\ \x0c\xd6\x76\x0b\xfc\x50\x07\xfd\x20\x02\x99\xf0\x00\x13\xb8\x05\ \x1c\x80\x47\x46\x32\x03\x3c\x30\x89\x93\x48\x85\x57\xb3\x0f\x49\ \xf0\x75\x72\x20\x07\x25\x60\x68\x95\x77\x07\xa1\xf8\x75\xf9\xd5\ \x63\xb1\x05\x73\x17\x88\x61\xf7\xe5\x5a\x24\x37\x5b\xe6\xd7\x79\ \xa2\x17\x73\xdb\x84\x02\x2c\x25\x87\x71\x58\x87\xbc\x78\x87\x35\ \x18\x83\xf1\xf7\x66\xae\xd6\x87\x7e\x48\x1c\x1d\x71\x35\x85\x75\ \x58\x0f\x00\x80\x75\x80\x88\xc3\xb0\x6d\x22\x80\x84\xd6\xd6\x0f\ \xc8\xf0\x0b\x57\x53\x06\xf2\x30\x03\x4c\x90\x03\x65\xe0\x0a\x9c\ \xf8\x8d\xa8\x05\x0a\x49\x50\x7d\x0e\xe0\x00\x06\xc0\x54\x28\x20\ \x07\x72\x46\x86\x24\x07\x65\x69\xf7\x6b\xf0\x66\x86\xa3\x47\x67\ \xb3\xd5\x79\xd0\x35\x86\x6e\x98\x8e\x2c\xf5\x0a\xb9\xc8\x8b\x6f\ \x96\x04\x31\xe8\x8f\x78\x38\x7b\xb1\xd7\x8b\x07\xd6\x1f\x0e\x47\ \x85\x10\xb7\x05\xcf\x68\x6d\x4c\x10\x8d\xeb\x80\x6d\x0f\x50\x07\ \xd6\xb6\x02\x4b\x97\x03\x0f\xe0\x33\x8b\x20\x0c\xc2\x00\x02\x20\ \x30\x85\x1a\xb9\x89\xe0\xd8\x89\x9d\xe0\x02\x06\xe0\x00\x49\x70\ \x05\x0e\x70\x07\x0e\x60\x92\xa0\x48\x8a\x1c\x98\xfe\x6f\x74\x56\ \x67\xb7\x34\x5d\x31\xc7\x8e\xf6\xa8\x8a\x74\x16\x04\x6b\x86\x8b\ \xec\x67\x00\x3f\x19\x83\x49\x10\x87\x26\x69\x00\x57\xb0\x8b\x02\ \x29\x90\xf6\xb7\x77\xfd\x07\x15\x80\xf8\x8d\x86\x05\x71\x7c\x10\ \x84\x42\x38\x91\x8f\x68\x07\xdb\xc8\x04\x65\x60\x8d\x57\xe3\x91\ \x93\xb8\x91\x22\x39\x92\x3f\x93\x04\xec\xe0\x02\x57\x40\x96\x7b\ \x60\x94\x67\x39\x7b\x71\xf6\x75\x33\x39\x93\x23\x58\x3d\xb0\x88\ \x76\x64\xe8\x79\xa1\xd7\x86\x3d\x99\x8e\x72\x68\x8e\x06\x30\x94\ \x72\xc8\x0e\x80\x99\x8b\x48\x39\x7f\xc3\x58\x87\x85\x09\x69\xc5\ \xa8\x18\x0e\xe7\x7c\xdf\xe8\x0d\x02\x08\x71\xcf\xf8\x00\x40\xb8\ \x74\x22\x30\x0f\xd6\xc6\x74\xdc\xe6\x0a\xc9\xb5\x08\x20\xb9\x05\ \x9c\x29\x96\x0a\x79\x0e\x37\xe4\x02\x73\x20\x9a\x29\x29\x6e\x9d\ \xe0\x6a\x72\x06\x76\x24\x47\x86\xf0\x68\x54\xf7\x88\x76\x30\x07\ \x7e\xb0\x18\x6c\x77\xc0\x93\xfa\xa8\x8b\xba\x19\x98\xec\x60\x0a\ \x81\xb9\x8b\x6a\xd9\x09\x57\x20\x9c\x75\x28\x9c\x7a\xd7\x73\x3e\ \xa5\x69\xcc\x46\x81\xc9\xc5\x90\x6e\xf0\x98\x85\x85\x88\x82\x98\ \x84\xf3\xd0\x0f\x1c\x30\x81\xc3\xd0\x99\x5b\xfe\x20\x0c\xda\xb9\ \x08\xad\x03\x9a\x14\xe8\x06\xe7\x30\x9e\xce\xd7\x5e\xe4\x46\x9c\ \x25\x80\x67\x9e\x37\x86\x75\x06\x7a\x3e\xc6\x9e\x34\xe9\x5a\x3d\ \x86\x7e\x2c\x88\x8b\x82\xb9\x8f\x40\xc9\x8f\x1c\xa8\x7e\x80\x29\ \x87\x47\x39\x9c\xc5\x09\xa0\xc2\xd8\x7a\x4d\xa9\x13\xc7\x48\x85\ \xcd\x99\x39\xd1\xc9\x01\xa6\xc5\x90\x05\xc8\x6d\xc2\x60\x7c\x9b\ \xc8\x99\x13\xca\x7c\xe0\xc9\x89\x8c\x89\x5a\xfb\xd0\x09\x49\xe0\ \x6e\x43\xd3\x30\x6f\xf9\x6e\x66\x78\x76\xad\xc9\x8a\x9f\x07\x5d\ \x33\xe9\x86\x72\x50\x8e\x71\xe8\x00\x25\x00\x98\x2f\x4a\x79\xf3\ \x04\x65\xf5\x24\x98\x01\x3a\x7f\xc2\x49\x9c\xbf\xc8\x7a\x05\x3a\ \x41\xcb\x79\xa1\xe1\x29\x88\xc6\x37\x0c\x20\x50\x58\xc8\xd8\x91\ \x5b\xf0\x91\x54\xc8\x91\x09\x0a\xa4\xa8\xe5\x06\x0f\x85\x67\x22\ \x8a\xa2\xea\x19\x82\xf3\x09\x9f\x61\x37\x97\xb2\x99\x97\x7c\x69\ \x00\x72\xc0\x0e\xa1\x28\xa3\xfa\x16\x62\xfd\xe9\x9f\x38\x7a\x05\ \x7c\x20\xa0\x75\x28\x87\xaf\xd0\x65\x8a\xf9\x07\x19\x6a\xa4\x17\ \x7a\x58\x4f\x97\x8c\xc9\x48\x81\x1f\xe9\x91\x9c\x08\x02\x1c\xe9\ \xa4\x19\x1a\x9e\x52\xd0\x09\x0e\x70\x81\xfe\x56\x4a\x72\x3f\xe6\ \x9e\x24\x0a\x97\x39\xc9\x9e\xb7\x88\x02\x0e\x20\x98\xe5\x78\x8a\ \x27\x93\x68\x8b\x96\x5b\x2c\xf5\x9f\x6a\xda\x09\x7c\xd0\x09\x39\ \x3a\x7f\x2d\xc5\x0e\x9a\x74\x1a\x0f\x87\x8c\x02\xe8\xa4\xd9\x49\ \xa4\x85\xb5\x08\xbf\xa0\x9d\x9a\xb8\xa7\xdc\xe9\xa7\x9c\x38\x61\ \x49\xb0\x07\x84\x7a\x61\xb0\x69\x67\x23\x28\x86\xad\xf9\x9e\xb4\ \x28\x9b\x41\x50\x79\x7b\x50\x96\xba\xe8\x00\xe9\x58\x79\x2f\x05\ \x73\x63\xfa\x9b\x75\x38\x07\xc2\xc9\x01\x9d\x2a\x9c\x73\x30\x7f\ \xbf\xd9\xa3\xa0\x03\xa7\x08\x5a\xa7\x4e\xfa\x0b\xad\x43\xa4\xab\ \xfa\x8d\x7a\xca\x89\xda\xe9\xa4\xa8\x35\x07\x8a\x25\xa5\x27\x3a\ \x76\xec\x68\xa5\xf3\x89\x93\x22\x38\x86\xbf\x5a\x79\xe5\x58\x96\ \x2e\x30\x94\x91\x5a\x8a\xee\x78\xaf\xf4\x14\x98\x66\x79\xa6\x9d\ \x70\x0e\xfd\xea\xac\x9c\xca\x07\x9f\xea\x81\x8a\xb9\x6a\x9c\x68\ \xa7\x40\x9a\x9d\xbf\x10\x96\x7b\x2a\xae\x4e\x7a\x0e\x49\x40\x07\ \x0e\x40\xab\x87\xfa\x79\x18\x46\xa2\x22\x7a\xb1\x63\x98\x72\x2b\ \x78\x67\x79\xe9\xa8\xba\x49\xac\xa5\xc8\x81\xdb\x64\x73\xfd\x36\ \x4f\xbd\x79\xa9\x6a\x39\x9c\xd0\x0a\xfe\xa0\xcc\x2a\xad\x4c\x65\ \x00\xd4\x0a\x12\x3f\x0a\x8e\x72\x0a\x9e\xc3\xf0\xaa\xdf\xa8\x9d\ \x64\xe0\xb0\xa0\x29\x9e\x8a\x45\x07\x7b\xb0\x07\xe6\x0a\x64\x18\ \x76\x81\x19\x1b\x7a\x8a\xaa\xb4\x77\x16\x04\x4e\x9b\x8e\x44\xe0\ \xa8\x2d\xc9\x0e\xe5\x68\xaf\x50\x66\xac\x5f\x57\x79\x6b\x75\x07\ \xfd\xb9\xaf\xc5\x29\x9c\xc0\x34\x9c\xcc\xba\x0e\x80\xf9\x48\x29\ \x31\xb3\x19\x51\xb3\x23\x79\xb3\x6b\xcb\x99\x5c\xd9\xb0\x62\xc9\ \xb0\x0f\x4b\x09\x2e\x50\xb7\x44\x70\xb7\x48\x7b\xa8\x23\xda\x9e\ \xbe\x64\x93\xe9\x0a\x59\x3b\xb9\x66\x5d\x28\xb5\xe5\x28\xb2\xbd\ \x76\xb5\xb7\x98\x7e\x1b\xc6\x0e\xb8\x68\x9f\x2c\x65\x96\x29\x39\ \x7f\x2f\x1b\xad\xfe\x1a\xad\xed\xc0\x54\xeb\x30\x07\x89\xb9\x13\ \x6a\x9b\xa4\x4d\x7a\xa7\x36\xab\xb0\x8b\xd0\xa4\xe0\xe9\x95\x3e\ \x9b\x39\xfe\x90\x04\xfa\xa0\x0f\x4b\x30\xb4\x78\x36\x93\x40\xe6\ \xb7\x19\x3b\xa2\x18\xcb\x63\x67\xf7\xb4\x72\xd0\x85\x44\x40\xac\ \xc4\xca\x93\xbe\xcb\x8a\x6e\xd8\x93\x3d\xc9\xb8\x27\x53\xbc\xfd\ \x18\xa0\x9c\xda\x09\xcc\xca\xa9\x57\xe0\x02\xeb\xe0\x00\xed\x70\ \x43\x81\x64\x1c\x9d\xbb\x05\xab\xfe\x4a\xba\x72\xcb\x90\x8b\x10\ \x02\xaa\x9a\xbd\xa7\x0b\x9e\x7f\xea\x0d\x53\x30\x07\xfa\x30\xb4\ \x28\xe0\xb4\x4e\x1b\x9f\xb1\x99\x67\x7d\xdb\xae\xd2\x45\x72\x4e\ \x9b\xbb\x0e\x40\x79\x13\x7b\xbe\xac\x28\x93\xf9\x86\x9b\xbd\xd6\ \x82\x60\x6a\x9f\x5c\x5b\xa6\x26\x89\xa3\x9c\x1a\xad\xc2\xc9\x07\ \xa2\xd9\xbc\xed\x90\x04\xe2\xe0\x02\x7b\x80\xb6\xb5\x64\xb0\xd7\ \xaa\xaa\xa4\x0b\x8e\xbf\xc0\x91\xab\x2a\xb7\xdf\xfa\xbd\x0a\x39\ \x61\xed\x45\x81\xe7\xe0\x0f\x2e\x20\xb4\x44\xb0\x07\x44\x80\xbe\ \x75\xe9\x5a\x77\xd6\x5c\xb7\x96\x72\x26\xe8\xae\xa1\x18\x04\xbb\ \x1b\xb5\xaf\xfb\xba\xb6\xf8\xb1\x6f\xc8\x8f\xfc\xf8\xa8\x8f\xca\ \x9b\x46\x19\xb9\x73\x90\x6a\x2d\x3b\x7f\xe2\x70\x05\x68\x35\x07\ \x3c\xb0\x04\x49\xe0\xc0\x31\x51\xbd\x47\x37\x0c\xdc\x3b\xc1\x5d\ \xb9\x08\x1f\xb9\xbd\xdc\x99\xc1\x14\xe8\x9d\xa0\x69\xc5\x23\x39\ \x61\xe7\x60\x0b\x9c\x70\x0e\xdf\xb9\x05\xde\x20\x0c\x41\x1b\xc2\ \x0e\x30\xc2\xe9\xfb\x6b\x36\xe9\xb4\x49\x0b\x5d\xaf\xa8\xa5\xe8\ \x2b\x07\xbb\x5b\x79\x4e\x7b\xbf\x21\xe6\xbb\x2d\x98\x8e\xfc\x08\ \x94\x8f\x4a\x79\xec\x10\xac\xfe\x8e\x8b\x94\xc4\xc9\xbc\x69\x75\ \x05\x97\x4b\x9a\x37\xd4\x0e\x4b\xe0\xa6\x06\xaa\x19\x61\xcc\x9c\ \x45\x3a\x0c\xc8\xf0\xc8\xe0\xb8\x91\xd9\xc9\x99\x82\xc3\xb0\x20\ \x40\xc9\xde\xfa\xb6\x23\x49\x6e\xfe\xa0\x0d\xe2\xe0\x00\x74\xb0\ \x5e\x62\xcc\x91\xa9\x1b\xc2\x21\x4c\xb4\x44\xfb\x6b\xee\x1a\x04\ \x42\xe4\x8a\x71\xb9\xb7\x4d\x5b\x02\xbb\x7b\xc6\x69\x2c\x93\x36\ \xdc\x82\xa1\x68\x00\xbd\x60\x00\xec\xf0\xa2\x8f\xda\xb8\xc6\x5b\ \x96\xfe\xd8\xa9\xeb\x90\x04\x22\xc0\x0e\x09\xa3\xc8\x4c\xc0\x04\ \x77\xa1\xc4\x04\x75\x45\x46\x70\x0b\xa5\xd5\x9c\xa9\xca\x01\xc8\ \x90\x88\x44\xba\xb3\x52\x0c\x02\x0b\xdb\xaa\xa7\xab\xc5\xdf\xb8\ \x0f\xda\xa0\x58\x23\xbc\x04\x53\xc0\x98\x6e\x40\x09\xc2\x30\x9e\ \x9c\xe0\x02\x3c\xa0\x0f\x2e\x70\xb7\x44\xf0\x9e\x4d\x0b\xcb\x85\ \x3a\xa5\xf0\xab\xbb\x25\x00\x86\x75\x8c\x67\x4f\x9b\x8e\x61\x5a\ \x79\xa1\x58\x02\x72\x38\x8a\xf3\x0b\xa6\xc4\xca\xb8\x5f\x57\xa6\ \xf3\xe7\xb5\xd1\x9a\x56\x2e\xa0\x30\x4b\xb0\x04\x8b\x17\x06\x33\ \xf0\x01\xd2\x6c\x10\x1d\x81\x09\x60\xa3\x8d\x73\xf0\xa7\xc2\xf0\ \x0b\xe2\xf0\x00\x9d\x59\xfe\x58\x22\x99\xa7\x53\xbc\x89\xde\xeb\ \xb3\xc2\x90\xa1\xee\x95\x04\x23\x3c\xb4\x74\xe0\x02\xc2\xe0\x33\ \x20\xc0\x03\x53\xe0\x0d\x20\x10\xcf\x9c\x30\x07\x9c\xc0\x09\xfa\ \x40\x07\x33\xdc\xb4\xb4\xaa\xab\xef\x46\xa5\x41\x60\xcb\x72\x9c\ \xbb\xe7\x8b\xc7\x06\x7d\xd0\x61\x2a\x8a\xbe\x6c\x00\x0a\x6d\x68\ \x0d\xdd\xd0\x7b\x80\xb2\x2c\x15\xb9\x29\x39\xc0\xca\x9b\xc8\x4b\ \xf0\x01\x61\x40\x26\xb7\xd0\xd1\x03\xf1\x32\xe1\xc7\x04\xa5\xd5\ \xc4\x1b\xf9\xb6\xd8\xa9\x89\x52\xac\xd3\xe1\xfa\xd2\xe2\x3a\x07\ \xde\xe9\x41\xbb\xe0\x0d\xbb\xe0\x02\x13\xbb\x07\x1f\xb0\x04\x74\ \x80\xc4\xde\xe0\x0d\x4f\x90\x06\xc2\xe0\xd7\xe2\x40\x09\xbb\x40\ \xc6\x94\xa0\x0d\x74\x90\xcf\x24\x5c\xc2\x1f\x3a\x9f\x16\x0b\xb8\ \xfe\x4c\x04\xb9\x8b\xbe\xbf\x1a\xa6\x9f\xfd\xcf\xa2\x7d\xd5\xd5\ \xf7\x0a\xa3\x18\x8a\xaf\xb0\xc3\x5a\x5b\x8a\x80\xe9\x8f\xfe\x0a\ \x4c\x89\x9c\x30\x4c\xc0\x72\x80\x61\x04\xcd\x74\x13\x1d\x61\x0a\ \xbb\x32\x78\x73\x30\xa4\x7b\xca\x99\xdc\x99\xc9\x17\xca\xc9\x40\ \xea\x7c\xde\xc0\x09\x3c\xa0\x0d\x73\xa0\x0d\xf4\xbc\x04\x44\x70\ \xd1\x28\xa5\xd8\x53\xfe\x30\x05\xdf\xdc\x3a\x7e\xbd\xd8\xbb\x50\ \xd4\x43\x4b\xc2\x74\x20\xb4\x42\x74\x8f\xfc\xdc\xb4\xf6\x6c\xcb\ \x9e\x3d\x7d\xf3\x1b\xa6\x25\x60\x8e\x71\x46\x02\xbf\xfc\x85\x86\ \x16\xa6\x0c\xfd\xa5\x0d\x9d\x7e\x5f\x7d\x05\x6e\x36\x9e\xe3\x99\ \x56\xcd\xcc\x04\x61\x20\x20\x98\x82\xdb\x9c\x62\x38\x22\xfd\x0b\ \xbd\xfd\xdb\xc2\xe0\x0a\x9e\x0c\xb7\x14\x18\x0a\x1a\xec\x33\xe4\ \xcb\x09\x53\x20\x0e\xf4\x1c\xcf\x4f\x50\xd8\x61\xb0\x07\x3d\x2d\ \xb7\xbb\x10\x0a\x1a\x30\x05\x45\x4d\x07\x44\x40\x07\xab\xab\xcf\ \x7b\x9b\xd9\x6b\x4c\x04\xb6\x4c\xde\x02\xdd\xd4\xbb\x0b\x86\x44\ \xf0\xcb\xbd\x00\x90\x49\x80\x09\x81\x86\xd5\xef\xfd\x76\xa8\x2d\ \xdf\x54\x0b\x98\xf6\xb9\xb2\x94\x9b\xdf\x49\xc0\x03\xb2\x6d\x07\ \xa4\x60\x07\xb3\x40\xe4\xf2\xd0\x0e\x0e\xec\x55\x9c\x33\x03\xb7\ \xf0\x01\xe2\xb0\xa7\xab\xfa\xcd\x9f\xbc\xd2\xe1\xea\xb3\x63\xac\ \xc0\xac\xab\x0f\x42\xdd\x0e\x9c\xf0\x04\x1f\xc0\x04\xd2\x90\xbd\ \xa1\xe0\xd7\x1e\xbe\xba\x22\xae\x0f\x9c\xb0\x07\x85\xd3\xae\x7c\ \x36\x5d\x4e\x7b\xb7\xe4\x3d\x93\xba\x6b\x00\xbb\x1b\xe3\x24\x90\ \x04\x30\x98\x04\xfe\x80\x86\x01\xbe\x0c\x86\x60\x88\xe3\xf0\x9d\ \xc3\xf6\x69\x9f\x90\x6b\xdf\xa2\xa9\xbc\xeb\x50\xd1\xed\x90\x03\ \x47\x0e\x1b\x8e\x3e\x0b\x99\x90\xc4\x2c\xf1\xd1\x89\x87\x2a\x3c\ \x43\x81\x3e\xed\x95\x13\x98\xbd\x3e\x4d\x85\x8b\xc0\xe0\x0d\xbe\ \x05\x1a\xf0\xd7\x84\x2d\x0c\x94\x20\x0e\x11\x5e\xd6\x4b\x90\xd3\ \xdf\x18\x0a\x8e\x3d\x05\x5f\xbe\xba\x9c\x40\x09\xfe\x40\x07\x26\ \x48\x67\xb8\x76\xbb\xf6\x9c\xbe\x2b\x8e\xe2\x44\xe0\xcb\xf3\x8a\ \x01\x29\x89\x01\xc6\x0e\x68\x71\x56\xd5\xef\x4d\xd0\xec\xb7\xc3\ \xc4\x9b\x8b\xa7\x09\x4f\xf9\x4d\xc4\xed\x90\x0a\x8e\x6e\x07\x46\ \x8e\x2e\x99\xb0\xed\x87\x01\x3a\xf4\x10\xcb\xeb\x74\x0b\x05\x3e\ \x07\x11\x7a\x74\xa0\xe9\x0d\x60\xa0\xe0\x0d\x0e\x02\xbb\x50\xd8\ \x53\x20\x0c\xbb\x30\xdd\x4b\x90\x8d\x4f\x90\xee\xdf\x48\x06\xa1\ \xb0\x08\xbb\x40\x09\x4f\xa0\xe6\xbb\xd0\xee\x16\xb3\xc6\xec\x5b\ \x3d\x6f\x10\xe7\x2f\x3c\xc3\x29\x6e\xcf\x0e\x80\xe7\xda\x40\x87\ \xa0\x70\xec\xbd\x00\x86\xe9\x18\xe8\x94\xa7\xd5\x58\xbd\xd0\xc4\ \x1b\x87\x79\xbe\xac\xe2\xd9\xcc\xd6\xee\xe8\x71\x21\xe9\xdb\xce\ \x0f\xf3\x00\xfe\x0a\x40\xf4\x57\x5f\x85\x54\xdc\x59\xd7\x49\x0a\ \x9e\x9f\x3e\xea\xe0\x18\x0a\xc2\xf0\x04\x4f\xc0\x09\xe2\x20\x0c\ \x31\xf0\x04\x0e\x33\x03\x4f\x20\x96\x64\x40\x06\x60\x40\x09\x10\ \xbe\xe1\xfa\xf0\x01\x46\x72\x67\x49\x3d\x76\x71\xee\xd9\x3b\x29\ \xc7\x77\x7b\xc6\x50\x3f\xe3\xa8\x76\xec\xc8\x4e\xf1\x05\xad\xc7\ \x2f\xea\xa5\x0e\x4d\xb5\x06\xa0\x03\xf3\x77\xce\x29\x29\x9a\x42\ \x9e\x03\x39\x60\xed\xda\x31\x0b\x62\xb0\x01\x0b\x80\x2e\xa9\xb0\ \xb9\x31\x91\x34\x0e\x66\x04\x3c\xb0\x99\x78\x2d\xc6\x30\x7f\x35\ \x0c\x2e\xea\xf9\xee\x0f\x69\x90\x06\xf8\xf0\x04\x53\x60\x0d\x69\ \x70\xd6\x4c\x60\xef\x57\xd3\xb3\x88\x0f\xf4\xd6\x40\x09\xd6\x10\ \x0a\xb0\xde\x78\xd1\xf5\x01\x82\x8d\xae\x41\xb0\x07\x9d\x4d\xe7\ \x77\xdb\x0b\x3a\xd0\x07\x06\x40\xcf\x8a\x95\x04\xda\xd0\x09\x52\ \x00\x0a\x98\xa0\x03\xa6\x1f\xf1\xa0\x4d\x79\x55\x2d\x8a\x12\x2f\ \xb2\x4e\x16\x87\x6e\x76\x94\x88\xdc\x0e\xfc\x3d\x03\x65\x9f\x09\ \xb1\xc1\x0f\x1b\x40\x1e\xa1\xd1\xed\x69\x3b\x52\x0e\xc6\x1b\x4c\ \xc0\xc9\xe4\x4c\x81\x8b\x7d\xf7\x78\xef\x0d\xf9\x1e\xef\x53\x10\ \x03\x69\xfe\x50\x06\xf8\xe0\x91\xd2\x30\x03\x61\x90\x07\x5b\xd0\ \xb3\xd7\xef\x33\x89\xff\x02\xd6\x10\x03\x94\x00\x06\xa1\x60\x0d\ \x65\x9d\x52\x43\x1b\xcb\x76\x06\xc3\x69\xcc\xeb\x25\xd0\x07\xfa\ \xd0\x0b\xed\xaf\x0f\x49\x00\xfa\xa1\xcf\x6a\x7e\x4e\x7d\xa2\x0d\ \xd0\x9f\x5d\xac\xaa\xbf\x81\xfa\xaf\x8e\x79\x7e\x8e\x00\xe1\x62\ \x4e\x92\x76\x6f\xd4\xc8\xb3\x93\x23\xd3\x8a\x15\xfc\x74\xe9\x5a\ \x70\x66\xc5\x99\x54\xa0\xfe\x5d\xc4\x98\x51\xe3\x46\x8e\xff\xe8\ \xa9\x01\x19\x52\xe4\x48\x92\x25\x49\xb6\x1b\xb6\x45\xe5\x4a\x96\ \x2d\x57\x7a\x5b\xe4\x52\xe6\xcc\x99\xbb\xf2\xec\x02\x93\x67\x11\ \x98\x18\xf8\xf0\xe5\xd9\xb2\xac\x4c\x19\x30\x5b\xc8\x90\x31\x6a\ \xf4\xe8\x51\x9e\xd2\xa4\xe5\x79\x61\x8d\xce\x07\x3a\x4b\xe8\x30\ \x31\x12\xd2\x08\x8c\x3d\x7b\x82\x04\x81\xf1\x66\xeb\x57\x22\xbd\ \x74\xe8\xeb\xa5\xcf\x85\x8e\x3e\x49\x92\x60\xd8\xb7\x72\x1f\x86\ \x12\x25\x7a\xd9\x2d\x21\x47\x0e\x0a\x14\x7a\xf7\xa2\x08\xc2\x57\ \x70\xdf\xbe\x72\x7a\x91\x48\x62\x40\xa0\xb8\x3d\x33\x40\xda\xe1\ \x37\x8b\xa1\xc3\x23\x10\xf9\xf1\x5b\xb0\xe0\xcf\x9f\x8e\x9d\x3d\ \x63\xfe\x32\x68\x52\xf4\x68\x91\x61\xe6\xd0\x44\x0d\xc2\x9b\xcb\ \x45\x20\x50\xa3\x26\xb3\x28\x8f\xce\xd9\x60\x16\x31\x4b\x13\x03\ \x0c\x18\x66\x68\x5e\xfc\x06\xb1\x54\x38\x19\x9e\x69\xf0\xc5\x78\ \x11\x83\x09\x93\x27\xcd\x3f\x68\xe5\xba\x87\x48\x10\xb1\x46\xde\ \x90\x4d\x4b\xa4\x4f\xaf\xb6\x68\x93\xf4\xd2\x16\x57\x2e\x26\xbc\ \xe5\xf5\xe6\xdd\x1b\x38\xc8\x9d\xf5\x77\x06\xeb\x35\xa0\xd8\x45\ \x12\x17\xed\xc2\xcc\xb0\x93\x2a\x87\xe4\x86\x62\x1e\x66\xce\x8c\ \x1f\x50\x38\xf3\xac\xc0\x8d\xfe\x20\x2d\x41\xd1\x98\x48\xe9\xb5\ \x99\x5a\x6b\x09\x84\x98\x1c\x9c\x29\x94\x45\xac\xd9\xa5\x86\xd9\ \xf2\xc0\x82\x19\x0f\x99\xd1\xcd\xa8\xdd\xc0\x78\x61\x38\xe2\x98\ \xc1\xa7\x8c\x34\x6a\x90\xc6\x0e\xe6\xa4\x79\x22\x0c\x90\xac\xa3\ \x6a\x8f\x0f\xaa\x7b\x03\x86\x20\xca\xd2\x4e\x3b\xb6\xdc\x6a\xab\ \x8f\xf0\x58\x72\x63\xae\xbb\xea\xaa\x2b\x88\xf3\xfc\x12\x8c\x3d\ \x27\x05\x93\xc3\x81\xf8\xd8\x71\xa1\xbe\xe5\x72\xd8\x8f\xa1\x33\ \xce\xc8\x4c\x17\x31\x22\x5a\x00\xb3\x39\x08\x34\xb0\xcc\x3f\xee\ \x50\x30\x4d\xad\x96\x58\x8d\x42\x97\x60\x72\xd3\x41\xa4\x88\xb3\ \xfe\x26\x06\x3b\x63\x40\x03\x0b\x34\x3c\xcc\xad\xc4\xa0\xf2\xb0\ \x26\x0f\x12\x7f\x7b\x61\x19\xde\xca\x60\xa2\x0c\x6b\xf0\x31\x62\ \x06\x7c\x60\xcc\xca\x08\x23\x96\x58\xc2\x46\x1c\x75\x2c\xab\x0f\ \x4d\xd9\xd2\xa6\xd3\x3e\xd8\xea\x25\x09\x29\xf6\x11\x4f\xa5\xb9\ \x4a\x08\xa2\x2e\xbd\x52\xcd\x8b\x2f\xbd\x00\x03\xec\x0e\x59\xfb\ \x7a\xa5\x04\x17\x0c\x70\xa0\x3e\x1e\xda\x61\xc2\x0e\x3b\x48\x59\ \x61\x96\xcb\x32\x13\xe3\x4b\x7e\xb8\xf4\x6f\xb3\x32\x97\xfd\x63\ \x0c\x35\xd3\x9c\x61\x8e\x06\xe3\x5c\x49\xc2\x36\xa9\x75\x29\x14\ \xa3\x40\x78\x21\x8f\x29\x40\xb4\x13\x0b\x3d\x71\x63\xa6\x86\xa5\ \xc0\xb0\x66\x8a\x18\xac\x19\xb1\x86\x1a\x98\x29\x03\x3f\x69\xca\ \x38\xa8\x0c\x7c\x98\x00\x69\x06\xaa\x96\xf8\x20\x52\x1d\xc9\xd2\ \x54\xd3\x4e\x6d\xf1\xd4\x05\xb4\xf4\x81\x8b\xd4\x95\xdc\x90\x42\ \x07\x22\xe4\x28\xe1\xe1\xf3\xd0\xf3\xeb\xaf\xc0\xee\xd8\x4b\x8e\ \x57\xe8\xab\x52\x1c\x71\xda\xf1\x95\x14\x91\x1b\x1a\x76\x81\x2f\ \xc1\x5c\x40\x97\x31\x97\x65\x36\xab\x67\x49\xfb\xe0\x5a\x6c\x55\ \x92\x70\xc2\x99\x57\x22\xc3\x35\xe2\xf2\x88\x41\x1a\x70\xf1\xfe\ \x64\x46\x94\x34\x44\x89\x01\x8b\x1a\x0c\xcd\x03\x37\x9f\xad\x11\ \xd7\x1a\x78\xe5\x31\xa2\x8c\x1c\xd4\x98\x21\xd1\x7c\x97\x78\xa2\ \x8c\x7e\xd5\xd8\xca\x2b\xe9\x88\xd0\x8e\x3b\x6d\x08\xf6\x34\x3b\ \xf0\x34\xd8\x47\x0a\x50\xdc\x28\xd2\xc8\x1d\x2b\x56\xb5\xe2\x57\ \xd3\x73\x55\x0e\x03\x48\xa8\xd2\x85\x8f\xef\x93\x07\x58\x61\x33\ \x39\x36\xe5\x93\x01\xd4\x45\x1c\x32\x59\xf6\xec\x95\x97\x47\x33\ \x82\xc1\x94\x40\x70\xed\x66\xc8\x6f\xc6\x39\xa9\x17\xc0\xa0\x24\ \x86\x0f\x3f\x34\x2e\x8d\x34\x9c\x2a\x17\x5d\x69\x52\x4c\x83\xf3\ \x1c\xb2\xb2\x43\x46\x35\xec\x90\x07\x24\x26\xf0\x89\x11\xa4\x37\ \x3e\xe8\x0a\xec\xb0\xf5\xd1\x4e\x48\x21\x09\xde\x0e\xf7\x24\x40\ \x91\xa2\x97\x20\x1c\xd0\x66\x54\x29\x30\x91\x83\x2c\x88\x91\xf4\ \x2b\xee\xe4\xdf\xb3\xbb\xbe\xfa\x78\x9d\x41\xe4\x59\x32\x01\x3c\ \xf0\x05\x8e\x18\x3c\xb3\x0d\x0e\x47\xbc\xa3\x3f\x14\x5f\xbc\x24\ \x23\xc4\x71\x23\xf2\xc8\x67\x5e\xff\x66\xa4\x54\x3a\x4a\x36\x34\ \x34\x17\x45\x1a\xa1\xef\x17\xda\x27\x69\xb0\x48\xfa\xde\x44\x7d\ \x42\x54\xbe\x5a\x27\x92\x19\xd8\x8b\x09\x8e\x09\xc3\x07\xfe\xac\ \x52\x3b\x3a\x68\x0a\x6c\x01\x13\x98\x36\xfa\x80\x16\x22\xfc\xce\ \x16\x72\x90\x54\x10\xe0\xc2\xb0\xaf\xa4\x8a\x08\x48\xba\xcb\x79\ \x8e\xf4\xaa\xc2\xf4\xc5\x01\x0e\x60\x47\x3b\x54\x08\xb2\xea\xcd\ \x22\x15\xd8\xdb\x12\x97\xfe\x03\x20\x93\x7d\x0f\x7c\xe1\xdb\x08\ \x0c\xca\x47\x92\x25\xa4\x64\x18\xed\x63\x1f\xe5\x2a\x07\xbf\x65\ \x2c\x42\x4f\x76\xe2\x9c\x28\x7c\x02\xc0\x54\xa4\xa1\x4e\xf3\x9a\ \x81\x3c\xc2\x10\x32\xd1\xcc\x20\x07\xf7\xa9\x1a\x13\x28\xb5\x87\ \x25\x10\xa1\x81\x01\xeb\x45\x8f\x26\xd8\x16\xb0\xed\x08\x3c\xa0\ \x20\x82\xa4\x60\xa0\x0d\x37\x6c\x61\x2e\xc9\xfb\x20\x5e\x7a\x31\ \xc7\xba\xcc\xb1\x17\x72\x6b\x55\xae\x56\xb8\xab\x1c\xfc\xca\x85\ \xc6\x9a\x88\xc9\xb8\x47\xc3\x05\x6c\xc0\x70\x38\xf4\x0c\x3d\x5c\ \xb6\x43\xae\xb5\xa3\x8d\x32\x93\x1c\x10\x67\x36\xa7\xa0\x2c\xa3\ \x06\xe2\x12\x97\xe6\x82\x66\x9c\x54\xa4\x02\x51\x2a\xc2\x0d\x3e\ \x58\x77\x90\x45\x9a\xaf\x75\x05\xa4\xd4\x16\xbb\xf8\xc5\x80\xe1\ \x2e\x8c\x44\xc0\xdd\x74\xc0\x42\x04\x6d\x60\x60\x3a\x3a\x92\x43\ \x78\xd2\x86\xbc\x0f\xd2\xd1\x2c\x3a\xd0\x81\x59\x30\xfe\x11\xcc\ \xbc\x50\x2c\x4a\x55\x6a\x87\xc7\x78\xc0\x03\x44\xe5\x20\x15\x1b\ \x10\xc3\xb1\x02\xa9\x8b\xca\x98\xcc\x64\xfe\x19\x10\x22\xc5\xa7\ \x48\x46\x72\xed\x34\x6e\x80\xe4\xcc\x42\x21\x49\x6c\xcd\x09\x04\ \xb6\xb1\xa4\xbb\x2e\xb9\x27\xcd\x19\x27\x45\xcb\xb1\xd7\x3b\x07\ \xa8\x20\x23\xd8\x61\x28\xa9\xac\x0a\x1d\xe8\x10\xcb\x07\xf6\xc8\ \x76\xb2\xd4\x11\x78\x74\xf0\x15\x18\x58\x27\x08\xa0\xd8\xc7\x1f\ \xc8\x63\xc7\x39\x62\x42\xa1\x18\xc0\xc0\x1f\x30\x30\x4c\x24\x95\ \xe0\x84\x0e\x68\x87\xf4\xc4\x31\x07\x61\xf4\x63\x03\xa9\x10\x03\ \x34\x23\xb2\x25\xcc\x1c\xc1\xa4\xc5\x42\xa9\x2e\xb2\xa9\xcd\x03\ \x39\x8b\x91\x6f\x68\xe3\x16\xc2\x89\xad\xc9\x09\x11\x7e\x5b\xb8\ \x5c\x0d\x16\x71\xb4\x65\xa4\x13\x0d\xf3\xa3\x5f\x1a\x10\xe5\xa2\ \x3e\x46\xf1\x59\x55\xbb\xe7\x13\x56\xf9\x4f\xa6\x36\x15\x2c\x41\ \x10\x52\x12\xc0\xe2\x32\x23\x10\x81\x54\xc1\xb3\x8b\x1d\x1d\xba\ \x99\x88\x6e\x06\x98\x76\xcc\xd5\x1e\x54\xf8\xb1\x79\x88\x23\x04\ \xc2\x70\x05\x34\x8b\x15\x91\x63\x71\x69\x7b\xd5\x3c\xd9\x06\xbe\ \xc7\x52\x8e\xfc\xa1\x94\x2f\xfb\x40\x1b\xc1\x09\xfe\x82\x98\x46\ \xd2\xa6\x37\xdd\x19\x4f\x7b\x9a\xce\x75\xd6\x49\x73\x29\x42\x94\ \x63\x5e\x26\x8f\x44\x2d\x81\x09\xb4\xfb\xc0\x07\x82\x20\xd9\x20\ \x48\x67\x47\x3c\x62\xea\x57\x4a\xa0\x0d\x4c\x10\x21\x34\x20\x29\ \x41\x5c\x8c\xc4\x50\x1d\x6c\x46\xa2\xa6\x1d\x26\x26\xf0\x76\xc2\ \xfa\x6c\x94\x99\x65\xe0\x01\x32\x84\xa1\x8b\x0d\x10\xf2\x58\xb3\ \x10\xa4\x97\xbe\x54\xac\x0d\xac\x8c\xae\x1a\x41\x50\xf9\x8c\xd0\ \x0e\x95\xa4\x0f\x26\xe4\x74\x10\x4c\xb4\xf5\xd7\x6d\x5d\x6e\xa7\ \x3d\x75\x17\x74\x35\x24\x2e\x34\x3c\x51\x1a\x42\xb5\xc3\xe2\xe4\ \x31\x83\x19\x48\x6a\x06\x39\xa2\xdd\xd7\x6c\xc7\x4f\xdb\x85\x11\ \x8e\xdb\xf9\x8a\xa4\xaa\x8a\xd0\x5d\x66\xd5\x2c\x5d\xc5\x84\x43\ \xe3\xab\x03\x12\x60\x22\x09\xb9\x4a\xe1\x1c\xc4\xc1\x83\x5e\xe5\ \x60\x1e\x01\xb0\x82\x5a\x4f\x86\xbd\xc0\x3d\x04\x22\x28\x5d\x40\ \x45\x6e\xc8\xd2\x3f\x98\x62\x87\x2e\xa0\xd9\x0f\xbd\x81\xdc\xd7\ \x08\x63\x11\x13\xfe\x2b\x52\x08\x75\xb9\xc1\x46\x37\x9d\x98\xc4\ \x82\x26\x71\x93\x03\xc5\x1e\x35\x75\x1f\x60\xc2\x1e\xf4\xd9\x40\ \x7d\xe8\x63\x8c\x2e\xce\x5d\xc0\x6c\xb7\x59\xfe\x6d\x24\xe1\x96\ \x39\x22\x02\x42\xa5\x80\x81\x39\x06\xb3\x17\x5b\x8d\xef\x7c\x5f\ \x11\xaa\xf8\xb4\xd6\x63\xf3\xb0\xc3\x0c\xae\x67\x60\x2f\x79\x89\ \x58\xd9\x13\x1c\x4a\x4f\xc6\x83\x05\x33\xd8\xc1\x8b\x23\xee\x16\ \x8c\x2b\xa1\x9b\x09\xc3\xc2\x14\x86\xcd\xfb\xc8\x70\xb9\x50\xfc\ \x66\x37\x96\x24\x6c\x61\x8f\x88\x9b\x34\xa4\x82\x09\xf3\x54\x10\ \x42\xca\xf0\x04\xd8\xd1\x81\x13\xfa\xe0\x84\x3f\xf4\xec\x0f\x08\ \x06\x4c\x82\x12\xfc\xa7\x36\x40\xa1\x0d\xe1\x85\xe5\x0d\xd7\xc1\ \x80\x14\xfe\x00\x4c\x46\xcb\x17\x98\xf1\xed\x45\xad\xee\x56\xa5\ \x24\xec\xf7\x09\xfb\xb1\x5e\x2a\xa8\x59\x19\x6a\x8a\x01\x7b\xc6\ \xc2\x8c\x6e\xd7\x5a\x2c\x2a\x57\x19\x91\x76\x7d\xd9\x70\xab\xb5\ \x88\xd6\x40\x88\x5a\xde\xf8\x32\xe5\x5e\x90\x14\x30\x08\x43\x50\ \xbb\xc9\x83\x3a\x7f\xfa\x53\x3b\x39\xc5\x29\xf8\xf0\x64\x92\x17\ \x9b\xa8\x34\x34\xe7\x09\x9c\xc8\xb3\x9e\x21\x68\x8b\x65\x6b\x8a\ \x9f\xe0\x49\x07\xa1\x83\x20\x29\x90\x1c\x94\x54\x13\xd5\x41\x6a\ \xbd\xfa\xe8\x48\x97\xe0\x15\xf2\x59\x26\xaf\x7a\x35\x0b\x72\xf3\ \x43\x0c\x56\xa8\x8c\x49\x07\x59\x2c\xc0\xfe\x75\x09\xc1\x35\xec\ \x84\xa9\x71\xf8\x87\x8f\x3c\xcb\x08\x3c\x60\x49\xcd\x20\x07\x66\ \x97\xe8\x5b\xd6\x2f\x28\xf3\x86\x04\xce\xa1\x4b\xde\xa9\x67\xee\ \x5c\x22\xa2\xe0\x4c\x4f\x3b\xf8\xa4\xd8\xc7\x56\xf6\x04\x5b\xdc\ \x07\x5b\xf0\x59\x1b\xfe\x90\x60\x1f\x6c\xb7\xa3\x3e\x60\x40\x1b\ \xd3\x81\xce\xda\x12\x9a\xed\x20\x63\xbb\xc7\x06\x88\x34\x6b\xdb\ \x41\x87\x76\x94\xe1\x57\x76\x10\x16\xb9\x0b\x49\xdb\x23\x04\x00\ \x19\x01\xa8\xed\x02\xda\xed\x9f\x87\x9c\x2c\xa4\xfd\xb0\xc8\x6f\ \x35\x22\x07\x7b\x67\x99\x66\x5e\xe6\x32\xb5\x24\x34\x6b\xca\x95\ \x79\x27\x39\xb1\x09\xa0\x32\xc7\xa1\x4c\x82\x88\x19\xf6\x1b\xda\ \x75\xf1\xd1\xc7\x61\xdb\xab\xd8\x78\x46\xb6\x3e\xe8\x60\x3b\x8a\ \xdb\xc2\xec\xfe\x60\xf6\xd8\x77\xb4\xa3\xcd\x4a\x41\x1b\xd4\xe1\ \xda\x75\x46\xb5\x8f\x20\xd7\x7d\x98\xf0\xe9\x05\xae\xba\x92\xca\ \x25\xf4\x11\x58\xd8\xcb\x84\x42\x42\x2a\xd7\x23\x20\x23\x04\x38\ \x67\x77\x26\x52\x66\x52\x2f\x61\x46\xe7\x99\x50\x96\xd0\x2f\x82\ \x09\x54\x88\xe6\xae\x6a\x30\xfa\x16\x16\x21\x0e\x0b\xff\x50\xe9\ \xac\xa6\x5c\xce\x7e\xb3\x13\x0e\xcd\xfe\xc6\x1a\x75\x0a\x14\x87\ \x4e\x6f\xd8\xab\xe3\xc3\x9d\x7d\x5c\x38\x69\xac\xe8\xfa\x62\x23\ \xdb\x1f\x77\x26\xc2\xd7\xf4\x61\x76\xde\x03\xfa\x9f\x1c\x1f\xf4\ \x40\xad\x03\x83\x1c\x93\xaa\xe4\xf3\xd5\x41\x09\xfa\x62\xd1\x13\ \xda\x68\x0f\xcb\x61\x02\x96\x48\x01\x73\xc0\x67\x22\xa4\xbc\x35\ \x7c\x08\x2a\x53\x5b\x7e\x58\x3f\x00\xdf\x87\x88\xf5\x01\xe7\x02\ \x79\xe3\x10\x13\x97\x5f\xd0\xb4\x36\xef\x8a\x58\xc7\x09\x04\x16\ \x16\xe2\xac\x2f\xb7\x0b\xfe\xe5\x44\xea\x81\x3a\x3d\x26\x0d\x9b\ \xbf\x84\x5f\x51\x4d\x8c\x55\x91\x29\x48\x03\x64\x0b\xbb\xb1\xfb\ \x1a\xde\x33\x3b\x09\xc2\x9d\xed\x28\x2f\x8a\x93\xaa\xb0\xd0\x11\ \xf6\x9a\xa8\x89\xc2\x04\xb3\x98\x23\xbd\x68\xbe\xae\x50\x20\x14\ \x4b\x88\x2c\x51\x88\x59\x70\x26\xb9\xd2\xad\x0d\xc8\x3e\x64\xf0\ \x12\xc0\xf1\x0f\x9b\x0b\x00\xda\xe2\xbe\x4c\xb8\x82\xf2\x0b\x9f\ \x7a\x53\x90\x30\xb0\x99\x45\xf0\x32\x56\xe3\xb7\x08\x01\xbd\xd0\ \x03\x81\x50\x18\x38\x30\xb0\x89\xd5\xcb\x9c\x75\xd1\x1c\x4d\x32\ \x0e\xa1\x71\x8a\x54\x60\x9d\x12\x33\x09\xfc\x98\xa2\xd7\x79\x82\ \x01\x24\x40\xb1\xa3\x03\xe9\xa0\xfe\x83\x04\x64\x36\x40\xe3\x0e\ \x8d\x0b\x34\x87\x31\x34\x0d\x22\x15\x89\x9a\xaf\x39\x72\x00\xe6\ \x0b\x2b\x7e\x71\x2c\x44\x21\x05\x79\x08\x96\xeb\x09\x3c\x61\x09\ \xa9\x9e\xf3\x0f\xc3\x03\x81\x10\xd0\x05\x28\xd3\x05\x9b\xab\x8c\ \x00\xb3\x3e\x5d\x88\x3c\xc9\x6b\x96\x34\x09\x03\xf5\xf3\xb2\xf6\ \x73\x3f\x9b\x99\x24\x30\x58\x86\xd9\xb0\x89\x5d\x60\x9a\xd3\x73\ \xc4\xd3\x23\x42\x0f\x41\xa2\xab\xfb\x90\x66\x1a\x25\xcb\xcb\x01\ \xc4\x2a\x03\xac\x39\xb6\x3c\x9b\xa0\xb1\xd3\x8e\x74\x50\x07\xb2\ \x61\xb6\x07\xe2\x8e\x88\x01\x9b\x24\xf8\xb8\x82\x22\xbe\x3f\xb8\ \x36\x6c\xd3\x01\x03\x90\x18\x07\x20\x02\x07\xa8\x94\xc8\x5a\x8e\ \x79\x48\x85\x59\x10\x19\x52\xe8\xbe\x0d\xc8\x04\xc9\xc8\x84\x0d\ \x60\xbc\x90\x3a\x82\x10\x50\x46\x13\x04\x9c\x62\x2c\xbc\x9b\x0b\ \xb0\x62\xd1\x05\x61\x80\x41\xc4\x39\x13\x05\x61\x02\x9b\x01\x01\ \x71\x70\x05\x1b\x44\x44\x37\xc9\x41\xd4\x70\xae\x0d\xc1\x82\xd5\ \x5b\xbd\x72\xb4\x13\xc3\x5a\x17\xc3\x72\x9a\xce\x61\x86\xd3\xd9\ \x2e\xae\x99\x91\x7c\x99\xbe\x47\xb9\x2e\xa5\xda\x83\x27\xc0\x33\ \x3e\x8b\x25\x7d\x48\x07\x0d\xfe\x28\x45\x08\x62\x8b\x4f\x61\x40\ \xf0\x90\x36\x18\x90\x03\x1d\x30\x1e\x85\x72\x18\xf3\x92\x83\xdc\ \xcb\x95\x54\xba\x05\x5f\xd9\x00\x5d\xe8\xc5\x36\x2c\xc6\xda\x12\ \x16\x73\x0b\x00\xb8\xd2\x05\x65\x54\xc6\x23\x18\xc6\x94\x31\xbc\ \x9b\xa3\x2d\xff\xd8\x00\x6a\x94\x3c\x8c\xc0\x04\x05\xf9\x80\x69\ \xd9\x82\x1b\x74\x35\xe6\x72\x13\xa4\x08\x05\xfb\x33\x3d\x49\x54\ \x17\x49\x5c\x97\x72\x64\x1a\x3d\xa9\x13\x72\xe9\x90\x03\x62\x82\ \x30\x40\x88\x7c\xc9\x01\x84\x88\xbe\x25\x70\x22\x2c\x98\x82\x27\ \xa0\x1d\x7d\xc2\x33\xb1\x03\x1b\x5b\x50\x07\x0d\x48\x87\x3e\xc3\ \x04\x4d\xd9\xca\x30\xd2\x81\x1a\x93\x25\x22\xd0\x01\x0c\x00\x05\ \x1e\xfb\x20\x07\xd0\x8b\x5b\x74\x00\x96\xab\x8f\xbe\x83\xb9\x1c\ \x90\xab\x68\x22\xc6\xeb\x8b\x8c\x92\xaa\x0c\xec\x0b\x81\x3a\xb4\ \x43\xef\x0b\x81\xec\xb3\xc3\xdd\xda\x80\x73\xa8\x46\x66\x51\x82\ \x04\x29\x03\x44\xac\x99\x99\xa4\x49\x0a\xc9\x99\x9c\x38\x47\x49\ \x04\x11\x49\x3c\x3d\xaa\xe3\x9f\x76\xec\x0d\x40\x49\x83\x1c\x78\ \x9d\x24\xa3\x97\xd5\x19\x8a\xff\xb1\x17\x66\x38\x3d\x7d\x78\x02\ \x2e\x92\xca\x16\x03\x9b\xfe\xdd\x53\x87\x52\x9c\xa3\x80\xd9\x4a\ \x6d\x70\x98\x55\x3c\xc8\x1c\xd9\xac\x30\x42\x0f\xb0\xd9\x03\x5c\ \x5c\x02\x17\x28\x83\x76\x98\x87\x79\x18\xc6\x72\x03\xbc\xbf\xc1\ \x9e\x30\x51\x3c\x6a\x62\xc1\x3c\x0c\x81\x61\x58\x84\xc3\xd3\x05\ \x2b\x50\x46\x9b\xd3\x4b\x88\x30\x19\x3f\x1c\xcc\x65\xf9\x2c\x93\ \x58\x82\xf6\x71\x0d\x09\x09\xc7\xc5\x6c\x4c\x40\x11\x4d\x22\x5c\ \xbd\x74\x2c\x4f\xfe\x51\xbd\x18\xf8\x1c\x6b\xb8\x24\xa1\xda\x44\ \x66\x58\x8e\x34\x70\x0c\x3b\xf0\x1c\xaf\xeb\x9c\x18\xa0\x04\x4e\ \xd0\xc7\x15\xc3\x1d\xdc\x39\x40\x75\x48\x07\x5b\x88\x31\x21\xf1\ \x3d\xbb\xb0\xb1\x69\xdb\x8a\x0f\x4a\x9e\x87\x7c\x48\x07\xe8\x0a\ \x18\x88\xac\x25\x28\x83\x4e\x7a\x21\x7e\x58\x01\x60\x0c\xa9\x17\ \xfa\x34\x4f\xe3\xd0\x87\xb0\x02\x6a\x42\x86\xec\xd3\xcb\xe5\x0c\ \x81\x0f\x0d\x81\xe6\x34\xc1\x1a\x3a\xa4\x95\xf4\x08\xd2\x08\x03\ \x61\x60\xce\x9a\xd2\xbc\xef\x04\x4f\xd9\xb8\x3a\x83\xb3\x86\x3c\ \x29\xc7\x1d\x05\x31\x40\xd1\xa4\x18\xc8\x83\x65\x58\x94\xe8\x03\ \x91\xf7\xc4\x17\xfa\x54\xcf\x26\xf2\x10\xa7\xe0\x04\x69\xe0\x84\ \x29\xb8\x33\xf2\x0a\xfe\x4b\xab\x64\x36\xee\xf0\xb8\xb2\x01\x1b\ \xce\xda\x83\x2f\x8c\x98\xaf\x00\x8c\x2a\xa9\xc2\xea\x08\x83\xe8\ \xeb\xa4\xeb\xe3\x0f\x4d\x13\xc6\x1c\xb8\xbe\x4f\xb3\x3e\xc2\xdb\ \x34\xe8\xfc\x85\x3a\x9c\x4e\x12\x8c\x53\x65\x94\x43\xdf\x02\xc4\ \xf3\x13\x8d\x17\x65\xb5\x99\x94\xd1\xc5\x7c\x8d\x73\x4a\x1a\x69\ \x08\x4a\x3c\x09\x17\x4c\xca\xb5\x0d\x09\x4a\xd1\x3c\x9a\x1a\xe8\ \x09\x7b\xaa\x93\x32\x90\x06\x34\x28\x03\xc6\xfa\x09\x6b\xb8\x2e\ \xab\x13\x40\x02\x54\x36\xf2\xea\x20\x22\x30\xbb\x31\x22\x50\x09\ \x3a\x0b\xee\x70\x18\xb6\xbb\xc5\x5e\x70\x01\x55\x74\x01\x96\xdb\ \x1a\x23\x20\x85\x10\x7c\xa1\x90\x1a\x46\x52\x98\x85\x0d\x10\x85\ \x54\xe0\x07\x4d\x13\x05\xe3\xe4\x50\x68\xda\x80\x0f\xa5\xa6\xbc\ \x04\x81\x5f\x68\xce\x0f\x85\xce\xd6\xe8\xcb\x15\x7c\x88\x95\x5a\ \x49\x34\x69\x42\x71\xf0\xce\xf5\xe1\x16\x40\x75\x90\x6e\xc9\x03\ \x61\x28\xc2\x22\xe4\xb5\x3c\xa9\x81\x3c\xc9\xc9\x22\x64\x4f\x30\ \x10\x17\x78\x69\x38\x3b\x39\x8e\x3c\xc0\x87\xaa\xf9\x09\x47\x75\ \x8a\x75\xc9\xcf\x34\x00\xbb\xdb\x0b\xc5\xdc\x03\x8b\xeb\xc8\x9d\ \x07\x72\xcd\xed\xfe\xf8\x94\x4e\xe9\x84\x4e\x70\x8b\xf9\xe0\x18\ \x96\xab\x8a\x25\x70\x0c\x29\xca\x01\x51\xf8\x28\xc0\xf3\xb4\x0b\ \xcd\xc8\xc0\xab\x48\x61\xdc\xd0\x38\x7c\xce\xe7\x3c\xd1\x8b\x75\ \xce\x0d\x08\x00\x90\x8c\x4e\x2f\x41\x86\xeb\x34\x93\xca\x33\x89\ \x79\xb8\x41\x1a\xb5\x56\x95\xd8\x10\x83\xeb\xc9\x23\xd2\xd1\x75\ \xec\xb5\x75\x39\x1a\x30\x98\x1f\x78\x79\x1d\x74\x65\xcf\x34\x48\ \x08\x7c\xc0\x82\x45\xbc\xd1\xd3\x0b\xbb\x16\xcb\xb3\x28\x55\xbb\ \x43\xc3\xd7\xe9\xd0\x57\x08\x62\x45\x5b\xd8\x07\xb4\xe9\x84\x1a\ \xe3\x98\xb5\xe4\x97\x0f\x48\x9d\x28\x8a\xd5\x67\xea\xa4\x36\x8d\ \xa6\x60\x49\x85\x5c\x6d\x53\xb9\xaa\xbe\xdd\x02\x51\x8e\xfd\x05\ \x90\x64\xc1\x8d\x55\xc6\x3a\x3c\x82\x8a\x54\x49\x16\xd5\x53\x92\ \x30\x02\x7c\xc0\xc1\x3f\x3d\xd9\x40\x2d\xa2\x18\xd8\x49\xa6\x71\ \x17\x3d\xd1\xd1\x10\xd3\x1c\x9f\xc1\x82\x33\xab\x01\xa7\x19\x1d\ \x7b\xf1\x19\x66\x80\x8a\x79\x59\x02\x7c\xb0\x86\x65\x88\x0a\x10\ \xa1\x84\xc7\x9d\x02\xd2\x04\xda\x3e\xe0\x33\x4e\xc8\x3d\x43\xfb\ \x17\x80\xe9\x83\xae\xd4\x87\xaf\x94\x02\x0d\xd0\xb2\x73\x70\x0b\ \xfa\x20\x82\xfe\x4a\x29\x4a\xee\x0a\x19\xfc\x00\xc1\x67\x92\xab\ \xb8\x1c\xc6\x4c\x60\xdd\x4e\x8a\x58\xc0\xeb\xbe\x62\x34\x5b\x65\ \xc4\x41\x65\x0c\xb0\x67\xca\x43\xc3\x6b\x4e\xee\xd1\x05\x6d\x00\ \xd9\x02\x69\x30\x93\x38\xcc\x2d\xd8\xb7\xb9\xad\x49\x10\xe0\x99\ \x9e\x25\xb8\x6f\xcd\x93\xea\xfa\x51\x76\xd9\x0d\x0d\x11\xdc\x14\ \xf1\x09\x10\x21\x91\x18\x18\x8a\xe3\x20\x11\x74\x61\x86\x29\x78\ \xdc\x9f\x05\xda\x4e\xdd\x52\x08\xd4\x11\x4c\x91\x31\xb2\x0b\x8f\ \x22\xe9\x04\x4a\x73\x01\x1b\xf9\x80\xfb\x38\x88\xe9\xfb\x45\x5b\ \x15\x3c\x68\x7a\x08\x89\x2d\x46\x0a\xad\xc8\x68\xc4\x9e\xfd\x70\ \x08\xc3\x8b\xd3\x45\x88\xd3\x62\x45\x06\x60\xa5\x2d\xe5\x5c\x04\ \x13\x4c\x16\x16\xfd\x87\xe2\x25\x89\x79\xd8\x37\xc5\x54\x5e\xd8\ \xc8\x89\x6d\xcd\xd1\x9f\xd2\xdb\x22\x8c\xcc\x5b\x03\x14\xc1\x1d\ \x1a\xec\x25\x54\xc6\xc5\x02\xec\xd5\x8d\xdf\xf0\x96\x29\x10\x5f\ \x3d\x8b\xd2\x89\xe3\xb3\xb1\x43\x5f\x18\xa0\xe1\xcb\x7a\xa5\x32\ \xd2\x0e\x29\x50\x07\x29\xe8\x83\x2a\x21\x82\x1b\x79\x03\x2c\x92\ \x87\xbe\xf1\xc5\x15\xf8\x15\x5b\x15\x96\x1a\x32\x29\x68\x82\xdd\ \x8f\x52\xfe\x08\x51\xf8\x50\xaf\x5d\x08\x61\xb1\x58\x09\x01\xc9\ \x3a\xd4\xad\x6b\x2a\x3c\x14\xa5\x2d\x57\x18\x5e\xe2\xbd\x2b\x23\ \xa0\xe0\x56\xb3\xe0\x0b\x9e\x89\xcb\xe1\x99\x74\xc4\x93\x0e\xfe\ \x90\x74\xac\x01\x30\x08\x5c\x24\xfa\x9c\x50\x2a\x83\x72\x39\x8a\ \x3c\x70\xa7\xa7\x30\xb3\xc8\xe5\x84\xc7\xed\xd4\x89\xc3\x3d\xaf\ \xa0\xe1\xf4\xcd\x91\xcb\xe2\xa7\xf3\xf2\x38\xdb\xe1\x97\xac\xe0\ \x2e\x52\xa0\x5a\xeb\x01\x41\xfe\x80\xc3\x8a\x44\x86\x00\x13\x46\ \xfd\x20\x37\x4d\xb3\x64\xda\xe5\x87\x8a\xcc\xcb\x61\x30\x41\x57\ \x88\x53\x07\x4e\xa9\xdb\x45\x86\xca\x88\x37\x16\xa5\x37\x92\x10\ \x85\x1f\xea\x4e\x93\xb5\xd6\x31\xdb\x09\x73\x3c\x3d\x5e\xf3\x10\ \x51\x88\xcc\xd4\xf3\xd1\x9e\xf1\x99\x9e\x09\x4d\x73\x21\x83\x1a\ \x28\xb6\x47\xd9\xd9\x9b\xd4\xcf\x27\xd0\x33\x4a\xe0\x33\x67\xc3\ \x3d\x59\x22\x28\xb0\xf8\x17\xb2\xdb\x38\xb0\xd1\x01\x03\xec\x8a\ \xfb\x30\x82\xed\x3a\xe2\x21\xb6\x1e\xda\x25\x37\x8a\xfd\x3e\x68\ \xca\x81\xc8\x28\x37\xb9\x7a\xa1\xbf\x89\x43\x3a\xc4\x39\x12\x9c\ \xce\x26\x0b\xdb\x3a\x3c\x65\x2f\xfe\xe2\x44\x12\x09\x31\xde\x41\ \x33\xfe\xa6\x90\x9c\x90\x0d\x6b\x10\x86\x5a\x6e\x9a\xcd\x59\x63\ \x9f\x0c\x4a\xad\x1b\x4f\x44\x49\x83\x65\x60\x0a\x14\xf9\x1c\xdd\ \x20\x83\x50\x80\x52\x7d\xb4\x3d\x3e\xe3\x47\xb5\xeb\x8a\xae\x78\ \xaa\x4f\x65\xaa\xe4\x21\x8b\xca\xd2\x40\xee\x6a\x9d\xbe\x39\xe2\ \x5f\x5c\x01\x85\xd0\x50\xd8\x8d\xc3\x00\x70\x05\x8b\x0c\x4e\x61\ \x59\x81\x62\x14\x85\x68\xea\x64\x03\x2b\xbc\x65\xa4\x64\xbd\x34\ \x41\x03\x33\xdb\xe6\xc4\x5d\x67\x95\xbc\x91\x98\x87\x13\x85\xe5\ \xb9\xad\x35\xda\x48\xe3\x9e\xac\x44\x0e\xce\xa4\x5e\xbb\xba\xe6\ \x30\x5c\x69\x58\x82\x86\x43\xe8\x31\x53\x4f\xcf\x79\x8a\xdd\xa0\ \x04\x79\x6d\x8e\xc9\xe5\x84\x09\xba\x25\x8e\xae\xac\x67\xc6\xe1\ \xb7\xe9\xa0\xb1\xfe\x00\x18\xb8\x8f\x30\x58\x43\x6e\xb6\x03\x23\ \x9e\x05\x3f\xc2\x1e\x0d\x45\xa9\x60\xdd\x5f\x0d\x65\xe2\x4c\x10\ \x85\x25\xae\x48\x75\x7b\x88\x12\x54\xce\x61\x00\xc9\x15\x34\x29\ \x02\xae\x43\xbf\x16\x4c\x08\x06\x0d\x90\x90\x87\x79\x30\xe0\x6a\ \xc1\x67\x71\x1c\x91\x9c\xe0\x5b\x83\x43\xea\x6f\xdd\x56\xa7\xb8\ \x4f\x30\x98\x82\x03\xc2\x87\x12\x19\x33\x6b\xf0\x9c\xe6\xc0\x10\ \xfe\xcc\xd1\x4f\x7d\x82\xe8\xad\xf6\x07\x7d\x38\x5f\xae\xe0\x68\ \x7b\xf5\x0a\x67\x1e\xeb\xa7\x92\x2c\x20\xc6\x0f\x26\x48\x6b\x90\ \x8e\x64\x72\xab\x3e\xd8\x05\xa9\xff\xa5\x2d\x2c\x41\x53\x90\x3a\ \x37\x75\x13\x6e\xde\x02\xc9\x9b\xc3\xdd\x3a\xbd\xb9\xef\xa3\x43\ \x39\x5d\x84\x79\xf6\x8c\xc2\x04\x09\xc5\x0e\xea\xb9\x7d\x81\x45\ \x70\xae\x45\x44\x22\x3b\xa9\x2e\xa3\x71\x97\x99\x6d\xa7\x3c\x66\ \x17\x66\x48\x32\x69\xe0\xec\xa8\xb8\xc7\x34\x98\x02\x0c\xb1\x86\ \x63\x7e\x02\x3a\x68\x6f\xdb\xab\x42\x08\x94\xac\xda\x11\x2f\xd7\ \x7e\x2a\x1d\xd1\xc0\xc8\x42\x5d\xbf\xe3\xe6\xe9\x13\x16\x85\x00\ \xbc\x92\x66\xdd\xe7\xdc\x80\xfd\x48\x58\xda\xba\xa6\x60\xc5\x6b\ \xb5\x4a\x99\xe2\xf6\xdd\xbc\xfc\xeb\x99\x6e\x8d\x61\x38\x07\x08\ \xc6\x88\x3f\x08\x0d\xc5\xf6\x3c\x9a\x69\x6c\x9a\x78\x81\x73\x72\ \x97\x34\x06\x11\x34\xa0\x3a\x9f\x02\x97\x50\x72\x3d\x42\xc5\x63\ \xee\x62\x06\xce\x26\x03\xcf\x1e\xc0\x27\x70\x52\x4a\xc0\xd4\xf6\ \xee\x44\xf7\x06\x3b\x3a\xa0\x0e\x08\xfd\xea\xda\xc9\x3d\xcb\x7a\ \xed\xaf\x80\x2c\x2e\x7a\xea\xea\xf1\x95\x6d\x1e\x19\xea\xd3\xfe\ \x8f\xb7\x36\xe9\xff\x75\x05\x57\xe8\x45\xb8\x6c\x5d\x26\x3e\x37\ \x27\x43\x30\x8d\x5d\x46\xc3\xfb\xa1\x09\xcf\xf2\xb3\xf5\x06\xe7\ \x36\x90\x6b\x2c\x83\x03\xae\x16\xb9\xed\x70\x9c\x82\xec\xd9\xe0\ \xdb\x9f\x14\x17\x5d\xeb\x8d\x76\xf2\x3a\x42\xb5\x86\x32\xc8\x66\ \xf2\x3e\x8a\x17\xc0\x82\xeb\xfa\x9c\xcf\x91\x06\x4a\x78\x4a\xac\ \x71\x2c\x4f\x2c\xcd\x04\x9a\xac\xc9\xe2\xf1\x8a\xfe\xd4\x0e\x92\ \x8e\xfc\x46\x31\xa9\x89\x22\x22\x0e\x99\xfb\x75\x21\x61\x74\x43\ \xe0\xc6\x55\x51\x50\xc6\xb4\x62\xdd\xd6\xf5\xb4\x42\xe2\x3e\x93\ \xc1\x9e\x8a\xb4\x39\xbf\x04\x81\x1f\x82\x70\x90\x5c\x04\x0b\xe7\ \x88\x8f\x08\x03\x57\xa8\xa9\x7d\x9b\x6e\x9b\x22\x03\x9b\x00\x31\ \x71\x99\x8d\xbc\xcd\xb5\x75\x3a\xf1\x25\xf2\x1c\x5f\xa6\x1a\x69\ \x00\x83\x3b\xb7\x2e\xcf\x79\x14\xa7\xc9\x9a\x27\xd0\x22\x4f\x5c\ \x82\x30\x08\x62\x08\x75\x76\x1e\xff\xea\x7f\xb2\xc2\xaa\xb0\x91\ \x46\x41\x2a\x5f\xe4\xe6\x36\xb4\x5f\x72\xc3\xd5\x0d\x88\x0c\xeb\ \xb3\xda\x67\x72\x85\x13\x15\xd6\x8f\x4a\x99\xda\x52\x3c\x9d\xbb\ \x8c\x2f\x51\xbc\xbc\xb6\xb9\xb3\xfd\xe4\x53\x5f\x5b\x55\xfe\xcf\ \x88\xf1\xb1\xe7\x57\x8e\xf5\xbf\x7a\x01\x2f\xa3\x8d\xd4\xf3\x30\ \x38\xb6\xa4\x23\x0a\x2a\xfd\x29\x9d\x16\xa1\x9a\x15\x31\x33\x4c\ \xdd\x73\x87\x5b\x97\xac\x91\x9a\x44\x69\x8e\xfb\x08\xe2\x66\x2f\ \x6b\x1a\xc6\x31\xb0\x69\x20\xa9\xd4\x27\x7e\x51\x1d\x25\xc3\x92\ \x59\xe8\x6f\x24\x66\x08\x5b\xb5\x6b\x51\x78\xdd\x92\x07\xb6\x4e\ \x12\x05\x94\xb6\x02\x57\x58\x41\x4d\x4b\xdb\x30\xb9\x8c\xb7\xf6\ \xb4\x50\x2f\xbc\x77\x87\xf7\x52\x07\x81\x3f\xa4\xf7\xa1\x2b\x83\ \xbc\xe4\xf0\x33\xcf\x96\xa7\x4b\x73\x80\x67\x5c\xc2\xa2\xae\x0f\ \xa9\x9f\x25\x45\x11\x19\x99\x81\x34\xc8\xb5\x0c\xe6\x75\xd8\x01\ \xa5\xad\x73\xb9\x29\x52\x38\x7d\x09\x83\xad\x8f\xac\x43\x1b\x0b\ \x58\xd2\x0e\x17\x6b\x31\x6a\xe7\x1b\x23\x77\x26\xe9\xeb\x1b\x5b\ \x45\x62\x5f\xbc\x55\x2b\x10\x03\xe2\x54\xd8\x8f\x92\xdd\x0f\x1d\ \x77\x61\x0d\x51\x5d\x88\x0c\x92\x29\xa4\xb8\xbe\xf9\xca\x78\x77\ \x63\x75\x03\x30\xd7\xa6\x3f\xb8\x05\x61\x10\xfa\xd7\xb0\x0d\x81\ \x5b\x84\xc1\x2a\x94\x80\xa7\x2e\x4d\xaa\x9f\xc2\xf5\x90\x75\x3d\ \xf8\xd4\x73\x1a\xc4\x02\xa0\x1c\x50\x11\x97\x4b\x32\xfe\x84\x10\ \xb6\xd9\x8e\xac\xc8\x52\xaf\x37\x90\x0e\xdc\x19\x3b\xd3\xaf\x0a\ \xee\x9a\x81\xfb\x78\x4b\x00\xc7\x76\xeb\xf1\x1b\xdc\xfe\x28\x72\ \xbb\x9e\x90\x8a\x7b\x5c\xd5\x85\x95\x47\x86\x94\xd6\x85\x10\x3d\ \x82\x30\x61\x88\xda\x17\x83\xdd\x36\xc6\x8e\x04\x51\xc3\xeb\x84\ \x9e\x27\xde\x3f\x98\x87\xc3\xf7\xf0\x5d\xb0\x35\xd9\x50\xc4\x9e\ \x22\x14\x38\x5e\xa7\x10\x63\xfa\xde\x88\x4c\x7c\x70\xfa\xe3\x78\ \x22\xa1\x1a\x8a\x27\xf0\xa4\xa2\xd4\xcc\x21\x46\x6c\x02\xd2\x22\ \xac\x10\x89\xeb\xf0\x71\x8c\x27\x7b\xd4\x6d\x6b\x00\x77\xa6\x5e\ \x84\x64\xc9\xa0\x7d\x31\x50\x58\xc0\x11\x16\x0a\x15\x85\xfe\x7f\ \x4e\xe8\x04\x08\x64\x56\x74\x59\xb1\x12\x20\x80\xae\x05\x99\x56\ \xcc\x9a\x95\x69\x81\x98\x54\x10\x37\x10\x3c\x82\x0c\x99\x30\x50\ \x7f\xfe\x71\xec\xe8\xf1\x23\xc8\x90\x22\x47\xb6\x13\xb6\xe5\x24\ \xca\x94\x2a\x57\xb2\x6c\xe9\xf2\x24\x08\x6b\xd6\x84\x81\x59\x54\ \x63\xd1\xb2\x9c\x2f\x5e\xd4\xe8\x89\x05\x0d\x1a\x66\xcc\xa4\x89\ \x62\x16\x03\x28\x1a\x2c\x69\xec\xa8\x09\x93\x26\x46\x0c\x69\x69\ \xca\x94\xb1\xc3\x24\x07\x55\x3b\xf2\x66\x30\x55\xfe\xe3\xf5\xab\ \x57\x79\x56\x8d\x7c\x35\x62\xe4\xcd\x87\x20\x41\xf6\xec\x21\x42\ \x87\xce\x92\xb8\x4c\xec\xd0\xb5\x93\x23\x15\x5e\xbc\x1b\x52\xe5\ \x68\xe8\x97\xe1\xac\x0d\x56\x44\x89\xe1\x37\x8b\x5f\xa6\x4c\xa9\ \x36\x6c\x10\xd5\xd8\x4a\x88\x10\xae\x08\x06\x30\x38\x70\x43\x26\ \x7e\x2b\x32\x89\x61\x9c\x38\xd3\x06\x8b\x21\xbc\x6d\x1c\x69\xfa\ \x34\x6a\x8f\x7f\xda\x2d\x7a\xe9\xfa\x35\xec\x2d\x79\x66\xe7\xc1\ \x09\x26\xe7\xb2\x17\x39\x7d\x62\x81\x2a\xf4\x68\x52\x99\xd6\xd2\ \xcc\x90\xc7\x24\x86\xb5\xa8\xf8\x72\x84\x51\x33\x83\xab\x9d\xe2\ \x60\xa7\x7f\x9d\x01\xd6\x2c\x5a\x18\x7b\xd6\xb6\x5d\x42\x64\xc9\ \x1e\x26\x4b\xe6\x92\x9a\x75\x37\xaf\x28\x51\x56\xf8\xe6\x30\x3c\ \x0b\x30\xe8\x23\xba\x32\xaf\xe0\x67\x7f\x31\x63\x31\xba\x5c\x85\ \x40\xa6\xeb\xe0\x45\x00\xea\x22\xc6\x43\x82\x59\x41\xe0\x62\x90\ \xfd\x51\x5a\x6a\x0d\x3a\xf8\xd1\x1f\x73\xc4\x36\x21\x85\x27\xd5\ \xb4\xc8\x6d\xcb\x80\xa0\x1b\x6e\xcb\xf8\x84\x86\x6f\x40\xf5\x94\ \x07\x50\xc3\x85\x31\xc3\x13\xd6\xd4\x90\x47\x0c\xf8\x30\x61\xdd\ \x57\xf2\xc8\x43\x1d\x8d\x61\x19\x31\x43\x18\xfe\x39\xc2\xf0\xc1\ \x1e\x3c\x76\x07\x1e\x13\x41\xe6\x30\x57\x0e\x45\x2a\xb6\x58\x7a\ \x7b\xe1\x95\xc9\x7b\xe5\xc5\x77\x04\x66\x7e\x21\x86\xdf\x5e\x56\ \x20\xd3\xdf\x95\x91\x5d\x14\x19\x94\xfa\x5d\x09\x25\x63\x3c\x30\ \xf8\x20\x99\x0f\x6a\x03\x42\x85\x69\xba\x06\x46\x6d\xcb\xe0\xa4\ \xdb\x0b\x60\x80\xd1\x53\x0d\x58\xfc\x14\x83\x51\x47\xf5\xb4\x4c\ \x1e\x76\x2e\x15\x06\x3e\x72\x82\x61\x0d\x33\x55\xd5\x78\x28\x58\ \x61\xd8\x91\xe3\x07\x3e\xb2\xb5\x47\x5c\x90\xca\xb5\x04\x56\x4c\ \x98\x57\x64\x5e\x8d\x89\xb2\x18\x5f\x0d\xad\xc0\x50\x7c\x1b\x2c\ \xd0\x10\x62\x89\x75\xc6\xd8\x06\x01\x44\x16\xc2\x2f\x8b\x68\xa9\ \x25\x94\xba\x5c\xe9\xca\x60\x1a\x95\x79\xeb\x83\x7f\xb8\xa1\x26\ \xaf\x2c\xd5\xd6\xe6\x22\x1b\xee\x46\xa7\x9d\xbe\x19\x95\x14\x6f\ \xd6\xe0\x33\x03\x13\xcc\x80\x11\x27\x18\x31\xa4\xf1\x22\xa2\x87\ \x72\x15\xa4\x78\x71\x69\x0b\x1e\x5b\x1f\x8c\x47\x29\x55\x39\xd8\ \x71\xa9\x62\x77\x29\xb9\x18\x93\xa4\x7e\xba\x40\x7e\x9a\x95\xda\ \x50\x63\xa8\x06\x70\xe5\x2f\x20\xfc\x82\xa5\x96\xba\x6c\x70\x65\ \x41\x63\xe2\xfa\xef\x69\x7f\xf4\x3a\x30\xfe\x4a\x58\x08\xd3\xd3\ \x22\x3b\xe1\xb6\xa2\x9d\x76\x12\x2a\xd4\xb1\x3d\xf9\xb6\x84\x71\ \xd2\xe4\xc6\x93\x35\xd2\xa4\xa2\x55\xb5\x34\xce\x80\xd5\xb6\x4b\ \xc0\x05\xd7\x12\x1f\xd8\xd1\xa8\x90\xe1\xd2\xe5\x50\x5e\xa9\xe0\ \xc3\x58\x7a\x9d\x66\xf6\xde\x2c\xec\xa6\xeb\xd0\xcc\x81\x81\x49\ \x91\xac\x21\x80\x10\x42\x00\x47\xe4\xbb\x41\x64\x9d\x80\x02\x30\ \xd2\xa8\xfd\xb1\x0f\x4c\x04\xab\x69\x13\x4e\x1a\xe2\x36\x67\xc3\ \xc9\x05\xc5\x4c\x1a\x11\x63\x61\x94\x34\x4c\xd9\xc1\x4c\x1e\x54\ \x4b\x5b\x06\x13\x1d\x53\x27\x16\x55\xf8\x3c\xf1\x84\xc8\xdb\x7e\ \xc0\x44\x8e\x61\xcc\x75\x55\x19\xe2\xca\x83\x15\x5e\xe7\xa5\xa7\ \x9e\x28\x75\xdf\xa5\x19\xa8\x4c\xd6\x17\xd1\x42\xfc\x88\x71\x84\ \x15\x14\x89\xe1\xe5\xbd\x08\xf1\x17\x42\x41\x21\x9c\xe3\x6f\xd2\ \x95\x83\xc4\xb4\xd3\xbc\x66\x88\x1b\x87\x79\x24\x8b\xa7\x50\xc8\ \x7a\x98\xd4\x52\x46\x2c\x61\x0d\x9b\x35\x10\xba\x5c\x73\x66\x83\ \xc5\x55\x19\x4f\x50\xb5\xf6\xda\xda\x62\x3b\x17\x74\x2a\x8f\x9b\ \x43\x26\x45\x9a\xbb\x77\x92\x4b\xd2\x7c\x58\xba\x9c\x11\x68\xb8\ \x15\x47\x20\x3e\x1f\x3f\xfb\xf6\xa7\xfe\xcb\x7f\x08\x89\x63\x39\ \xf5\xa6\x09\x9c\x79\x4b\xc2\x08\x83\x26\x4b\x8b\x04\xbb\x21\xf8\ \xbb\xcd\xd9\x27\x88\x46\x61\x51\x43\x87\x35\x30\x13\x86\x3c\xf8\ \xd4\xf0\x02\x19\x71\xb2\x38\x55\x74\x33\xba\xfe\x71\x19\x6a\xd3\ \x1e\x7b\x19\x4b\xf4\x4f\xd5\x5c\xea\x62\x17\xdf\xf5\x85\x80\x77\ \x01\x1e\xdf\x52\x21\x38\x50\x89\x0a\x54\x0a\x29\x50\x41\x94\x27\ \x06\x87\xe8\x22\x32\x08\x31\xc8\x1c\x28\x57\xbd\x0d\xfe\x03\x73\ \xd8\x4b\x09\x0f\x72\x34\x85\x96\x78\x68\x27\x1b\x8a\xdf\x4e\x14\ \xe6\xa1\x3c\x58\x43\x44\xe8\xe3\xd0\x0b\x62\xf0\x22\x69\x90\xa1\ \x86\x35\x1c\xd4\x54\xa4\x63\x36\xb1\x60\x25\x0d\x69\xc0\x07\x10\ \xd7\xf6\xbf\x20\x51\x05\x80\x75\xc1\x5b\xdd\x66\xb1\x32\x4c\x15\ \xc5\x31\xa2\x70\x85\x2b\x92\x84\x99\xcd\x1c\xc1\x15\x99\x20\xc5\ \x66\x08\x64\x3c\xc1\x4c\x86\x49\xfa\xb1\xa0\x2b\x16\xc4\xc1\x31\ \x7e\xc4\x83\x1f\x14\xc6\x07\xbc\x52\x86\x96\x80\x00\x0c\x5b\x88\ \x1f\xf8\x52\x18\xbf\x61\xd5\x09\x7d\xb9\xc1\x4d\x0c\x16\xc5\x0c\ \x1b\xbe\x80\x45\x2e\xb2\x9f\xeb\x9c\x53\x86\xa7\x44\x25\x0d\x4f\ \xc0\x47\xec\x10\x49\x29\xac\xa8\xfe\x4c\x89\x76\x59\x52\x0e\x48\ \xb1\xbb\x03\xd2\xea\x65\xe9\xb1\x02\xad\x12\x67\x1f\xc8\x58\x61\ \x05\x4e\x4a\x4c\xa9\x52\x85\x8c\xc2\xf0\xe3\x3f\xac\xd2\x20\x19\ \x39\xb8\xab\x33\xca\xee\x44\x4c\x68\x0d\x4b\x5e\xf0\xc6\x13\xa6\ \x30\x85\x74\x22\x96\x1d\xcf\x57\x03\x7c\x6c\x45\x1a\x72\xc2\x02\ \xa1\xa6\xc2\x1c\x40\x56\xcb\x08\xf2\xb8\x11\x13\xf0\xe1\x43\x1f\ \x2a\x13\x88\x45\x44\x62\x91\xea\x62\x9e\xbc\x28\xf1\x52\x77\x61\ \x06\xad\x32\x25\x8a\xca\x44\x49\x0c\x17\xd9\x00\xcd\x12\x43\x33\ \x31\xb8\x42\x20\x11\xd1\x8f\xad\x52\xa9\x4e\x8e\x5c\xcf\x69\xc2\ \x78\xd1\x0c\x80\xf8\x01\x14\xb9\x04\x85\x2f\xd8\x10\x9c\x76\xf3\ \x13\x3b\x25\x85\x9f\x10\xcb\x81\x1a\x8c\x90\x06\x6b\xf4\x89\x85\ \xca\xc9\x01\x8c\xcc\x86\xbf\x21\x59\x25\x6d\xf9\x6b\x26\x55\x5c\ \xc6\x9e\x22\x59\x33\x2f\xbd\xb3\xe6\x06\xb0\xb9\xb7\xbd\x08\x66\ \x03\xc7\x23\xda\x11\x04\x67\x9f\x70\x5a\x64\x30\x1b\x70\xc1\xd1\ \xd6\xa9\xd2\x0e\x3a\x2d\x84\x64\x31\x42\x19\x98\x51\xb6\x19\x98\ \x84\x25\x64\xc8\x0d\x08\x50\xb8\xb0\x1a\x00\xe7\x4e\x47\xc1\x93\ \x28\xba\xe6\x1c\x5f\xde\x46\xfe\x4e\x19\x73\x11\xc7\x5c\x67\x87\ \x66\x8a\x0b\x3a\x58\x01\xe2\xa6\xf0\x21\xd1\x67\x8a\xab\x21\x07\ \xe4\xcb\xca\xae\x92\x8a\x4b\x26\x0e\x49\xfa\x22\xd0\xe1\xa0\xb4\ \x90\xc3\x68\xc6\x21\x1b\x70\x45\x65\x32\xb8\xd2\x95\x2e\xad\x57\ \xc2\x58\xc2\x74\xf2\xc7\x04\xb2\xe0\x83\x7b\x2a\x79\x41\xc2\xe0\ \xd7\x21\x7e\x3e\xcc\x58\x3f\x85\x4a\xd9\xc2\x80\x06\xf8\xed\x64\ \x50\x58\x23\x5b\x42\xad\x55\x9c\x8f\x01\x11\x88\x08\x7d\x8e\x5d\ \xca\xe0\x32\xc9\x52\x36\x13\x92\xed\xd4\xa5\x24\x5a\xc0\x02\xe2\ \x85\x6f\x8f\xf1\xac\x97\xc4\x4a\x33\x50\x89\x61\x30\x9d\x40\xe5\ \x5a\x39\xd8\x56\x35\x95\xad\x3a\x8b\x5a\xd4\x8c\x66\x20\x0e\x9b\ \xae\x68\xa7\x3f\x31\x0a\x6e\x8d\x92\x1c\x99\xc4\x00\x98\x65\xb3\ \x03\x18\x6a\x58\xd8\xe4\x48\x63\x39\xd6\xb1\x9f\x31\xc9\x72\x1d\ \xac\x58\xc5\x0e\x92\x95\x6a\xdd\x48\xb1\x95\x59\x5c\xa5\x48\x75\ \xab\x5b\xcb\x7c\x37\x8b\x32\x6c\x40\xaa\x58\xa1\x68\x0e\x18\x33\ \x18\x93\x8a\x42\x17\xe5\xa5\x48\x96\xac\x70\x45\x2c\x12\x4f\x4c\ \xa9\x7d\xaf\x19\x29\x04\x57\xaf\x30\x81\x6c\x61\x39\xd1\x0c\xca\ \x00\x4b\x95\xd4\x00\x59\xfe\x3d\x01\xca\x50\xa4\x91\x27\xe4\xec\ \x36\x39\x78\x2a\x1b\x13\x82\x9b\x42\xb1\xb9\x88\x2b\xc5\x11\x4b\ \x57\x62\x74\xb7\x1f\x06\xf0\x2a\xce\x0c\xa0\x00\xa9\x3b\x4d\xbc\ \xbc\xcc\xbb\x8f\x14\xc5\xcb\x30\x3b\x0b\x24\x3d\x66\x30\xe9\xd1\ \x97\xd0\x72\x22\x99\xf5\x36\xa4\x1d\xa8\x7d\x2f\x19\xe3\x1b\x1b\ \x6f\x8c\x67\x90\x73\xf5\x8a\x11\xea\x1b\xa4\x34\xb4\x24\x0f\xe6\ \x43\x03\x71\x7f\x23\x9c\x16\x62\xa1\x4f\x32\x91\x46\x73\xca\x00\ \x3f\x3e\xb2\x89\x19\x88\xac\xdb\xdc\xa8\xa2\x86\xad\x90\x42\x51\ \x56\x51\x66\x55\xec\x20\xc9\xc8\xfa\xcd\x77\x74\x21\x05\x57\xb6\ \xab\xc0\xad\x62\xf5\xc3\xa9\x28\x83\x12\xcb\xc3\x3b\x24\x61\x52\ \x5f\xf1\x82\x8c\xcf\xb6\xf0\x82\x00\x4c\x90\x09\x2f\x86\x71\x2a\ \x65\x1c\x9b\x60\x4d\x21\xa1\xf2\xc8\x5f\x74\x98\x90\x87\x58\x5a\ \xcd\x58\x79\x6a\x58\x91\x6b\x60\xd4\x8c\x25\x59\x96\x36\xbc\xe9\ \xd6\x7e\xf8\xe4\x64\x22\x52\x0d\x56\x19\x12\x00\x1f\xda\x54\xa7\ \x32\x32\x5c\x7d\x91\xae\x3c\xd4\x8c\x37\xac\x4a\xf2\x2e\x52\xc5\ \x2c\xef\x28\x09\x45\x25\x09\x66\x55\x1a\x02\xc1\x11\xb4\x71\x67\ \x3c\x93\xf1\x0f\xde\xfe\xe8\x95\x37\xba\xc2\x2c\x44\x5a\x27\xbf\ \x83\x5e\x49\x1e\x84\x71\x14\x88\xf5\xd3\x73\x2b\x0a\x1b\x9b\xac\ \xa1\x94\x19\x18\x01\x1f\x64\x78\xe3\x1b\xc9\x30\x28\x3c\x49\x05\ \x91\xf8\x10\x70\x19\xf0\xf7\xe4\x2c\xe7\x00\x91\xe2\x22\x05\x98\ \xe9\xe2\x3b\xca\x16\x09\xcc\xa1\x96\x24\xcb\xc4\xb5\x32\xc9\x82\ \x78\x03\x97\x2d\x20\x17\x91\xc1\x8c\x88\x6c\xb5\x9c\x03\x89\xcc\ \x3e\x66\x4d\xeb\x5a\x8b\x63\xbf\x15\x9a\x43\x90\x0e\x09\xb7\xe7\ \x18\xc1\x0e\xd2\x60\x09\x4f\x41\x84\xa7\xde\x8e\x28\xd1\x23\x62\ \x51\x8b\x86\x0a\x6d\x1b\xb2\xc9\xc8\x52\x91\x86\x34\x80\x9c\x0a\ \x4a\x7b\x1b\x77\xce\x5d\x0e\x5d\x64\x04\x66\x52\x58\x0a\x53\x7e\ \x9b\xc5\xc8\x4b\x5d\x37\x2d\xa3\x9b\xbb\x31\x13\x9e\x79\x9e\x28\ \x19\x56\xab\x47\x5f\xc2\xe8\xc4\xbe\x73\xfe\x0f\x14\x84\xa1\x24\ \x76\x9d\x10\x08\x82\x85\x0f\xb2\x30\x6b\x51\x4f\x60\x49\xb4\x98\ \x21\x0c\x85\xc7\xa0\xe1\x89\x66\x91\x81\xcb\x70\xa3\x29\x3c\xbb\ \xea\xd0\x4a\xf6\x50\x98\x41\x50\x6b\x90\x8d\xa9\x56\x8e\x0e\xde\ \xbe\x3d\xf2\xad\x88\xfb\xdd\x14\xf5\x8b\x79\x50\x0e\xee\x30\x3f\ \x37\x2f\x9f\x0e\xfe\xef\xe3\x98\xc1\xd1\xc6\xe8\x42\x1c\xfa\xd6\ \x79\xad\xef\x30\xe5\x30\x7c\xa0\xa6\x15\x12\x46\xaf\x97\xc0\x14\ \x26\x2c\x83\x25\x68\x10\xf0\x80\x3d\xd7\x1b\x86\xef\x53\x26\x52\ \x9f\xc1\x40\xd3\xb0\x84\x27\x4c\x01\x75\x71\xe2\xad\x4c\xd0\x67\ \x0d\xd9\xf9\xf0\x09\x2f\x22\x3b\x57\x18\x39\x24\x70\xcb\x48\xe4\ \xe2\x3e\xf3\x44\x37\x3b\x8b\x07\x83\xdb\x2e\x47\x52\x60\xaa\x47\ \x2c\x73\x5a\x39\x26\x15\x62\xba\x3b\xde\x6b\x6d\x8a\xea\xb4\xc3\ \x1b\x3f\x87\x4d\x3b\xc2\xb0\x84\x42\x35\xc5\xef\x29\x59\x44\x71\ \xd3\x20\x0d\xa8\x14\x59\xe1\xba\x0c\x4e\x0c\xa4\x6e\x87\x27\x48\ \x83\x6d\xe2\x91\xc6\x2e\x32\xb6\xb6\x81\xbe\x50\x29\x18\xff\x61\ \x55\x1e\x0c\x59\xd1\xaf\x7e\xec\xe7\xc6\x14\x5e\x4e\x5e\x40\xd2\ \x8b\x65\x05\xbb\x6b\x19\xec\x15\xf3\xc4\x28\x6e\x60\x1e\xf3\xc0\ \x7d\xee\x53\xa9\x04\xe5\xd2\xb7\x24\x15\x0a\xd6\x16\x2c\x42\x55\ \xe8\x57\xf7\x48\x85\xf2\x31\x03\xf4\xb9\x50\x7f\x45\x05\x5c\x39\ \x85\x9c\x2c\x42\x21\x19\x85\x21\x89\xc7\x40\xc5\xc9\x14\x00\x51\ \x71\xc9\x0e\xb5\x4c\x19\xd9\x11\x90\x96\xcd\x00\xfb\x85\xda\x23\ \x41\xd2\x66\xfe\x45\x52\xeb\x69\x99\x96\x9d\x87\x44\x19\x46\x67\ \x99\x97\x28\xa4\x53\xfe\xe1\xdd\x2b\x50\x47\x18\xf0\x80\x38\xdc\ \xda\xff\x49\xcb\xc1\xb1\x04\x08\xe0\x89\x0f\x2d\x5f\x50\xa0\x01\ \xb1\xdc\xc9\xb2\xcc\xc0\x0e\x9e\x44\x28\x58\xc3\x14\x48\x9a\xe7\ \x2d\x41\x1a\x4c\x81\x34\xbc\x48\x7d\xc9\x8e\x06\x22\x17\x84\x7d\ \xd7\x97\x9d\x9b\xc8\x95\xc7\x65\x75\x59\xde\x04\x90\xda\x81\xdb\ \x88\xe9\xc5\x5e\xac\x99\xa6\xa4\x54\x0c\xe6\xde\x1f\x28\x01\x75\ \x20\x93\x30\xac\x12\x85\x04\x9d\x4b\x04\x9d\x93\xe1\x03\x02\x22\ \x60\x0d\x84\x40\x7f\x25\x45\x0c\x3c\x01\x59\xf0\x58\x4a\x80\x40\ \x0d\x14\xd7\x20\x51\x61\x2b\x05\x94\x73\xf9\x4f\xff\xd8\x01\xff\ \x5d\x4b\x34\x7d\x60\xa8\x95\x5e\xa8\xa1\x9f\xef\x1c\x09\x01\xa1\ \x1c\x08\x0e\xd0\x62\xe0\x83\x16\x2d\x86\x5a\xa5\x61\x0c\x62\xc2\ \x1b\xd0\x88\x11\xb4\x83\x0d\x0a\x83\xef\x7d\xd0\x32\x38\xd9\xf2\ \xb9\x82\x88\x20\xc5\x50\x94\xc1\x31\x1d\xdd\x4a\xbc\x40\xf5\x1d\ \xd2\xda\x20\x52\x73\xe4\x98\xec\x14\x51\x19\xb0\xcf\x7d\x89\x5b\ \x5f\xb0\x9c\x24\xca\xc8\x24\xb1\xc7\x65\xa1\x5e\xde\xa0\xdc\x9a\ \xc1\x1f\xfe\x56\xc8\x1a\x28\x82\x22\x26\xf0\x5f\x59\x98\x22\x1d\ \xb4\xc3\x13\xd0\xc1\xf6\xb8\x01\x08\xc0\x21\x4a\x74\x63\x20\xfe\ \xde\xf1\x61\x9c\xb0\x21\x85\xc2\x65\xcd\xd0\xa9\x01\x3e\xb0\xd1\ \x12\x2a\x13\xdb\x2c\xc1\x71\x51\x5a\xff\x88\xc7\x06\x4e\x19\x5d\ \x5c\xc5\x97\x81\xa0\x24\x82\x5b\xa9\x55\x62\x32\x76\x56\xde\xa0\ \xdf\x92\xa4\x82\x8b\x45\xa3\x41\x52\xa3\x57\x84\x81\x38\x88\x03\ \x0f\xb4\xc3\x78\x58\x23\x13\xb4\x83\x44\xba\x00\x0f\xcc\xc1\x1c\ \xf0\x00\x2c\x05\x9d\x30\xb8\x42\xb0\x78\xcf\x7e\x81\xc0\x14\x3c\ \x81\x28\x2c\xdc\x1d\x22\x60\x50\x2d\x8b\x1a\xd0\x62\x8f\x4d\xc1\ \x12\xfe\xe2\x4b\x31\xcb\xda\xcc\x05\xa0\xbd\xce\x11\x89\x9d\xc8\ \xdd\xa4\x9a\xf5\x8e\x0a\x4a\x54\x88\xf1\xc5\xeb\x15\x89\x0b\xe0\ \x9f\x41\xae\xd5\x1f\x8c\xc1\x74\xf4\x9d\x38\x48\xa4\x52\xd2\xc1\ \x5c\x19\x41\x8e\x38\xe5\xdb\x7c\x80\x38\xa0\xc9\x22\xfc\x82\x30\ \xf4\x83\x30\xfc\x82\x38\xd8\xdf\x42\x26\xa5\xb7\xa4\x81\x38\xc4\ \x80\x30\x84\x8e\x50\xa0\x23\x59\xac\x91\x6b\x78\x0f\x27\xb4\x8e\ \x57\x3c\xc7\x5c\x84\x41\xfe\x64\x5b\xa2\xd4\x24\xcb\x49\x17\x3f\ \xf2\xfe\xe3\xee\x1c\x49\x44\xc1\x1f\x5f\xe4\x45\x19\x08\xe5\x50\ \xa6\xd6\x1f\x8c\xe2\x57\x20\xa5\x0b\xb4\xc3\x61\xda\x60\x3b\xbc\ \x4d\x8f\x98\x05\xb3\x29\xe4\x30\x78\x43\x55\x0a\x03\x07\x64\x25\ \x0f\x10\xe4\x42\x3e\xc1\x07\xc0\x25\x0f\x4c\x81\x30\x6c\xcd\x1d\ \x8a\xc2\x53\xa4\x41\x73\xa8\x64\x5a\xc2\xe3\xa2\xc4\x48\x8e\x60\ \x0b\x35\x16\xdc\x11\x05\x10\x3f\x9e\x5b\x26\x5a\x15\xb9\xdd\x05\ \xb9\xe5\xcd\x99\x01\x66\x60\xa6\xd6\xee\x15\xe6\x1c\x08\x83\x0d\ \x1e\x26\x45\x2a\x65\xc9\x98\xc5\x66\xd6\x60\x55\xfe\x26\x07\xb0\ \x8a\x55\xb6\xc3\x3c\x58\x24\x0f\x78\xcb\xf6\x79\xa6\x54\x94\x25\ \x33\xfc\xc4\x8b\xa0\x25\x6c\x78\x5e\x3b\xfc\x62\x75\x3c\xc7\x94\ \x19\x13\x58\x90\xdd\xa5\xf5\x45\x18\xde\xe5\x96\x61\x4a\xef\x44\ \xd6\xeb\x9d\x19\x06\xe8\xe6\x6e\x12\xe5\x0c\x7a\xc5\x12\xb8\x81\ \x1b\x78\xc3\x39\xf0\x40\xc9\x50\xa4\x0b\xb0\x43\xc9\xbc\x8d\x43\ \x2e\x01\x0f\x48\x26\x07\x2c\x42\x65\x56\xe6\x03\x88\x40\x3b\xcc\ \x81\x38\xb8\x80\xb7\x74\xa7\x80\x42\xe1\x32\x09\x58\x50\x20\x98\ \x38\xb6\xc4\x2e\xd8\x60\x08\xe1\x18\x74\xe0\x48\x0e\xb4\x03\x23\ \xfe\x7e\xe7\xb8\xd8\x85\x55\xbd\xc7\x07\xf2\xa3\xfb\x51\xa2\x75\ \x59\x56\x2a\x24\x01\x06\xc4\x27\x8c\x62\xc2\x57\x2c\xc1\x30\x9c\ \x84\x1b\x88\x03\x3b\x88\x07\x3b\x88\x40\x5c\xf0\x88\x44\x2e\xc1\ \x2d\x88\xc3\x2f\x0c\xc3\x30\x18\xe8\x03\x08\xc3\x03\x34\xa4\x08\ \xb8\xc0\x1c\x38\xa4\x29\x8e\x07\x58\xd2\x8e\x32\x35\x51\x19\x34\ \x85\xbf\xa5\xa5\x30\xb4\xc3\x8d\x6d\x05\x11\xf5\xdb\x30\x00\xde\ \xeb\x6c\xd9\xca\x54\x93\x18\xde\xa5\x96\x8d\x98\x77\x59\x57\x0e\ \x04\x25\x8c\xb6\x29\x3d\x90\x45\x7d\xda\x67\x93\xc6\xc5\x2d\x00\ \x69\x8f\xdc\xc2\x07\xb8\xc0\x12\xa0\x42\x8e\xcd\xc1\x97\x1e\xe8\ \x2f\xfc\xc2\x1c\xac\xc3\x82\x5a\x24\x83\xba\xc0\x89\x60\x23\xe5\ \x19\x92\x1d\xba\x42\x1e\x14\xa1\xf1\xbd\x46\x28\xe8\x67\x88\x3a\ \x47\x0e\x3c\xc0\x2f\xa0\x44\x3b\x4c\x87\x53\xad\x0c\x16\xf1\x63\ \x18\xba\x9f\x24\xa5\x5f\x91\xb4\x43\x12\xb4\x29\xaa\xfe\x03\x3d\ \xa8\xc1\x2d\xcc\x81\x37\x48\xe4\x07\xf8\xe7\x2d\xdc\xc1\x07\xe0\ \xe9\x18\x2c\x81\x08\xa4\x91\x73\xac\x43\x64\x72\x00\xa6\xf6\xaa\ \x38\x88\x80\x45\x7a\x03\x83\xea\x2a\x5c\x3e\x01\x0f\x48\x43\xfe\ \x3b\x00\x91\x58\x8a\xc2\x89\x00\xe2\x84\x78\x83\x38\xc8\xa5\x20\ \xcd\x41\xa6\x9e\x84\x30\xb0\xe5\x94\x91\x5c\x9a\x49\x12\x5e\x76\ \xeb\xb8\x94\x5a\x5e\x3c\x01\x7c\xa6\x2a\x8c\xfd\x81\x59\xb4\xc3\ \x3a\x2c\xc1\x18\x44\x65\xad\x02\x69\xad\xba\xc0\x3a\x7c\x00\xd1\ \x89\x43\x8d\x0e\x03\x07\x70\x00\x91\xfe\x02\x1f\xa8\xab\xa1\xe6\ \xaa\x59\x2c\x81\x44\x4a\x03\x0f\xa4\xc1\x3c\xa4\x81\x28\x1c\x1e\ \x23\x2e\xc1\x85\xbe\x04\x08\x88\xc3\x07\x1c\x53\x18\xf4\xc3\x2f\ \x78\x43\x8d\x62\x6b\x62\x41\x47\x18\x36\x44\xeb\x79\x52\x79\xa0\ \x5d\xb7\x89\x91\xb9\xa2\xea\x1f\xa0\x42\x9e\x2e\xc1\x1b\xcc\xea\ \x2d\xa4\xec\x12\xdc\x01\x9e\xee\x28\x61\xa2\x82\x08\xec\xca\x30\ \xfc\x02\x07\x0c\x29\xbe\x8a\xc3\x3a\xd4\x41\x3b\xf0\xe8\x07\xa0\ \xc5\x3c\x6c\x25\x0f\xcc\x03\x3e\x14\xac\x38\x2c\x5d\xb6\x85\x41\ \xa4\xc6\x86\x38\xdc\x82\x1d\x88\x80\xbd\x12\x69\x4a\x88\x43\x62\ \x41\x18\xcb\xf9\x05\xb8\x89\xdd\xee\x50\xd7\x8b\x8e\xac\xb9\x16\ \x65\xae\x8e\x41\x18\xbc\x81\x11\xd4\x69\xae\xae\x6c\x18\xf0\xe9\ \x57\x30\x01\x91\xd6\xac\xbe\xde\x2b\x1f\x70\xc0\xa0\xb2\xfe\x43\ \xad\x1a\xc1\x07\x48\xe4\x3c\x2e\x41\x63\x6d\x8f\x4c\xc9\x96\x9a\ \xdc\xa8\x55\x58\xeb\xcd\x5e\xec\x49\x6c\x2a\x58\x88\x29\xda\x81\ \x19\xc7\x7a\x92\x79\x24\x41\xb9\x7a\x2d\xad\xfd\x81\x01\xec\xc1\ \x2d\x98\x85\x71\xb2\xc3\x3a\xec\x81\xda\x4e\xc7\x2d\xdc\xec\x90\ \xe2\xac\x37\xe4\xab\xdc\xf2\xac\x08\x10\x5d\xdc\xcc\x93\xf0\x51\ \x85\x34\x2c\x82\x30\x30\x85\x76\x56\x88\x37\x88\x00\x13\x54\xa4\ \x45\x0e\xee\x49\x0c\x83\xd4\x81\xc5\xb8\x54\x53\xb7\x96\x1a\xca\ \xcd\xc2\xa9\x42\xae\xd7\xfe\xc1\x2b\x28\x97\x59\xd4\x69\x8e\xa2\ \x42\x40\x71\x2e\xa6\x8a\x2e\xbe\xf2\xeb\x03\xe4\xeb\x1c\x3c\x40\ \x3b\x54\x6e\x18\xdc\x02\xb6\x30\xcb\xb7\x94\x84\x4c\xa9\x01\x13\ \xe0\x60\x9a\xf0\x80\x08\xd4\x01\x07\x88\x43\x3f\x88\xc3\x1c\xe8\ \xeb\xed\x56\x69\x8c\x6c\x6d\x35\x49\x93\x1d\x2c\x01\x09\x3c\xae\ \xf0\xee\xdb\x9b\xe2\x58\xa3\xdc\x81\x08\xb0\x03\x42\xd2\x97\xe8\ \xfa\xaa\xcd\xfa\xaa\x38\x44\x6f\xc5\xf2\x01\x90\xde\x42\xae\x86\ \x81\xe9\xba\x92\x0d\xce\x95\xd2\xf2\xca\xab\x2e\x28\x07\xcc\xc3\ \x03\xb4\xed\xed\xf2\x40\xa5\xda\x63\xaa\xd9\x81\xfb\xfe\x29\x11\ \x13\xb0\x69\xfd\x0a\xef\x0c\x9e\xc5\x07\x98\x02\xae\x6a\x2e\x8d\ \xdc\x02\x1f\xf0\xc1\x03\xb4\x70\xf4\x72\x40\x1d\xd4\x01\x1f\xe0\ \x2c\x07\x88\x00\x02\xdf\xc2\x71\x31\x0b\xea\x4a\xe7\x3c\x28\x70\ \x19\x78\x23\x85\x88\xc3\x12\xf4\x43\xf9\xfa\xe9\x16\x10\x69\x65\ \x76\x27\xb5\x3a\xc7\xa5\x38\x12\x75\xd1\x6f\x08\xeb\xdc\x1a\xda\ \xed\x2d\x84\x41\xbb\xde\x42\x8d\xdc\xc2\x3a\xcc\x41\x3f\xc4\x70\ \x3f\xb4\x70\x1d\x8c\xaf\xbe\xba\x01\x07\x6c\xf1\xbc\x1a\x53\x9d\ \x4a\xe4\x5c\x38\x65\x19\x88\xc3\x13\xc8\xcd\x95\x46\x2b\xae\x8a\ \x83\xed\xfe\xc2\xd0\x96\x41\x3f\x2c\xc2\xab\x8a\xa8\x23\xb9\x1f\ \x14\x47\xb1\xce\x61\xc2\x18\xb8\x6c\x40\x99\x05\x58\xa0\x82\xf2\ \xb2\x6a\x1d\xcc\x41\x1d\x3c\x40\x23\x3f\xb2\x08\x8c\x6f\xdc\x8a\ \xee\x1c\xd8\xf0\xdb\x44\x72\x77\x56\xee\x0c\xb4\x83\x67\x96\x0c\ \x0f\xf4\xca\x1c\x94\xc1\x0b\xb7\xad\xaf\x1a\xf1\x16\xf0\x80\x72\ \x59\x2d\x5d\xbc\x27\x20\x03\xb2\x20\x8f\xe2\x59\xf0\x5f\x22\x7b\ \x85\x16\xaf\xf0\x3a\xb0\xb0\x23\xf7\x43\x24\x47\x72\xdc\xce\x01\ \x1f\xac\x43\x8e\xda\xf0\x89\x60\x2f\xfb\x7c\x00\xfe\x0f\x08\xc3\ \x56\xf2\xdd\xd2\xce\x98\x29\xa2\xef\xe7\x56\xe6\xb5\x9e\x72\x59\ \x38\x15\x09\xb4\xb2\x35\x4f\x63\x40\xb1\xc3\x2c\x4f\x87\x11\x88\ \xc0\x2f\x8b\x31\x18\xef\xb2\x37\xbb\x01\x1f\xb0\xc3\xf5\xde\x42\ \xe5\xa2\xc2\x0c\x60\x2f\xb3\x41\xed\x2f\xcc\xc3\x78\x08\x1f\x10\ \xc7\xc6\x30\x48\xa4\xb0\x92\x72\xc5\xa2\x04\x07\xb0\xe5\x56\x38\ \x80\xc8\x5a\x73\x14\x17\x25\xab\xba\x40\xe5\x66\xb1\x2f\xdf\x32\ \x1f\xc4\x70\x18\xc7\xf0\x3a\xbc\xb0\x0d\x57\x71\x22\xd7\x69\xe5\ \xc2\xd4\x1c\xcc\x03\xee\xe0\xc8\x3c\xfc\xed\x78\xcc\x03\x07\x1c\ \x71\xbe\x0e\xe9\xd4\x2a\x17\x0c\xbc\x02\x40\x97\xf4\x60\x0e\x32\ \x16\x97\xc5\x2c\xd7\xf2\x3a\xdc\xb2\x42\xc7\xb0\x23\x23\x34\x8f\ \xa2\xf3\x8d\x60\xaf\x08\xb4\x4e\xab\xd6\x41\x1a\xdd\x88\xdd\xce\ \x56\x85\x70\x80\x78\xf0\x80\xbe\xb2\xb0\xfa\xa6\xc4\x30\x94\xcd\ \x1b\xfc\x71\x49\xa7\x21\x0a\x6c\xb3\x57\xf0\xa9\x72\xb5\xea\x2f\ \xef\x2c\x4c\xcb\x30\x07\xf0\xc1\x2e\xb3\x03\x4d\x1b\x01\x22\x23\ \xf0\x28\xce\x80\xb0\x8a\x83\x02\x33\xcb\x89\x48\x65\x85\x44\xe7\ \xf8\xc6\xb0\x08\x70\x34\xe1\x9e\xc4\x1c\x7c\xfe\xc0\x1d\x28\xf5\ \x52\xc7\x20\xf1\x72\xf5\x75\xcc\xf2\x18\xf0\xc1\xa0\xb2\xf0\x4b\ \xcb\xf0\x37\x3f\xb4\x26\x9b\xc5\xf5\x32\xdb\x2d\x2c\xa8\xec\x32\ \xc1\x5a\x6b\x29\xdf\x89\xc3\x3c\xb7\x44\xec\xf6\x2c\x0f\x28\x74\ \x05\xab\xc4\x30\x2c\x81\x5c\xcf\x75\x1a\xfe\x81\x29\xd8\x75\x59\ \x7c\xc5\x2d\x5c\xc1\x0a\x27\xb4\x23\x8b\x73\x1d\xac\xc3\x2e\xa3\ \xb3\xd9\x26\x72\xd9\xf6\x2c\x8f\x0a\x2b\x07\x48\xab\x62\x33\xc1\ \x3c\x08\x43\x5b\xb3\xc4\x30\xac\x03\x62\xef\xf2\xaf\xae\x84\x1b\ \x5c\x36\x66\xa7\xa1\x28\x1e\x0a\x3b\xc4\x6d\x42\xbf\xf4\x2e\xef\ \xac\x69\xef\x28\x02\xaf\x03\x41\xe3\x98\x16\xcb\xeb\x3a\x74\xb4\ \x47\x37\xa4\xe0\xad\xe6\x31\xcf\x33\x19\x6b\x29\x02\x33\xc1\x2d\ \x90\x6f\x6d\x6f\xc1\x3e\xfc\xb6\x78\xab\x6a\xff\xd2\x32\x42\xff\ \x32\x24\xa7\xf5\x54\x9b\x76\x4b\xfb\x72\x41\xb3\xea\x16\x5b\xe4\ \xc5\x0e\xc3\xf4\x0e\xb0\x96\xbe\x64\x44\x9a\xe2\xa0\xf2\x28\x77\ \x8b\xc0\xce\xda\x70\x0e\xf0\x01\x12\x8f\x71\xbe\x8d\xf7\x6f\x97\ \xec\xa1\x8c\xc1\x3a\x5c\xc1\xce\xf2\x35\x43\x9f\x77\x4b\x2f\x38\ \x07\x9c\x43\xe9\xe2\x98\x37\xfb\xf2\xae\xfe\x90\xf1\x42\x3e\x40\ \x72\xfe\xe2\x3a\xd7\xa3\x73\xa0\xf6\xf8\xda\xb0\x3c\x20\x30\xf9\ \x86\xf1\x15\xf8\xb6\x81\x4b\x23\x61\x52\xc7\x72\xdf\x72\xbe\x2a\ \x74\x4b\x13\x77\x84\xaf\x83\x37\xb8\x41\x1d\xdc\x82\xf2\x96\x6d\ \x84\x4f\xf2\xce\x2e\xe4\xdb\xd2\xb7\xb5\x7a\x43\x3f\xf4\xda\x76\ \xdb\x30\x13\xe0\xb6\x88\xd7\x01\xbf\xd2\x83\x8a\xaf\xb8\x34\x96\ \x37\x2a\x60\x6e\xdc\xba\xc1\x30\x84\x31\x55\xaf\x30\x07\x30\x78\ \x4b\xbf\xf6\x3a\x8c\x41\x54\x6f\x31\xe6\x32\xa8\x45\x26\xf4\xd1\ \xde\xeb\xc5\x72\x00\x3a\x8b\xc0\x03\x24\xb4\x0d\xbf\x39\x3a\x37\ \xf2\x2f\xf4\x36\x94\xaf\xf8\x1f\xe8\x5d\x1b\xd6\x32\x07\xb8\xc1\ \x2f\x98\x76\x24\xcf\xb8\x2d\xeb\xb5\x7d\xf2\xc1\x4a\x83\xb6\x37\ \xb7\x77\xf9\xae\xc3\x00\x5b\xab\xd4\x6e\x41\x1d\x20\x36\x12\x97\ \x76\x24\x23\x30\x9b\xcf\x79\x78\xd7\x39\x94\x0b\x74\x21\x7f\xc5\ \x94\x6b\x79\x19\x8b\x33\x42\xb7\x34\x68\x0f\x3a\xff\x51\xba\x0b\ \xf0\x81\x0b\xec\x6f\xae\xee\xac\x3d\xd3\x31\xbe\x9a\xf8\x90\xc2\ \x70\x18\xdb\xf0\xce\x76\xf4\xa5\x63\x7a\xa6\xc7\x2c\x58\xa8\xb0\ \x96\x47\x78\x69\x37\x38\x7b\x57\xb9\xfe\x08\x6c\xf3\x2d\x98\x82\ \x6b\x13\xaa\x7f\x1f\xb4\xec\x8a\x00\x11\x27\xe8\x2c\x44\xf7\x55\ \xcb\xf0\xb0\x9b\x78\xbe\x3d\x39\xae\x0f\xe5\x7c\x5e\x87\x16\xfb\ \x72\x19\x33\xf4\x9f\xff\xf2\x18\x2c\xf7\x15\xf4\xe6\x53\xe3\xa9\ \xb0\x92\xb3\x2f\xa7\x6f\xe8\x26\x68\x24\x2b\xb4\x24\x5f\x35\x0b\ \x0f\x3b\x2a\x7c\xf6\xb5\x5f\x3b\xf1\xb6\xa1\x82\xdb\x72\x4b\xef\ \x72\xbe\x6a\x73\xb1\xfb\xb7\x8e\x83\xc5\x18\xec\x68\x4b\x6b\xb5\ \x08\xec\x39\xc2\xb3\x3b\x9b\xfb\x6a\x83\xc7\x6d\x8e\xa3\xf3\x3f\ \xd7\x7b\x9d\x63\x82\x53\x9b\xb7\x9f\x7f\xbb\x95\xaf\xc3\x0d\xab\ \x3a\x22\x23\x32\xab\x2e\x29\x30\x1f\x53\xbe\x8f\x31\x56\xc7\xb9\ \xcd\x56\xf5\xa4\x2b\x81\xb5\x4b\x7c\x7c\xca\x68\x9e\xd7\x78\x0c\ \x57\x39\x96\x47\xb8\x29\x20\xf2\x18\x28\x2f\x2a\x6c\xf1\x2f\xdf\ \xc2\x18\xb8\xf6\x9e\x5f\x39\x60\x5f\xb5\x23\xcf\xfa\x2d\xac\x3c\ \xcb\xc7\xe7\x1f\xdc\xef\x74\xf4\xfc\x2d\xef\x3b\xf9\x96\x31\xc1\ \x1b\xc0\x3a\x98\xc2\x9a\x83\xb9\x54\x33\xf8\x8e\xf2\xc1\x39\xd8\ \x67\xbe\x9a\xb6\x8e\xcb\x83\x24\xaf\x70\x24\x57\xf3\xd1\xb3\xbc\ \x40\x1b\x01\x98\x3b\xb7\x7f\x67\xfe\x79\xbe\x62\xf5\x9f\x4f\xbd\ \x16\x5f\xc1\xb0\xaf\xc3\x39\x94\x33\x3a\xc3\x78\xe8\xf2\x41\xcd\ \x7b\xfc\xbc\xc7\xf0\x55\x93\x7d\xd9\x1f\x3d\xba\x1a\xc1\x3a\xe0\ \x79\x36\x37\xbc\x80\x93\x73\x8d\x6b\x3c\x3b\xc8\x30\xd5\x5f\xc1\ \x55\xa3\xb3\xb1\x43\xbe\x7d\xca\x3b\xa7\x23\x30\xa6\x9e\x56\xe0\ \x07\xfe\x1f\xa8\x41\xb8\x73\xba\x7f\xeb\xb5\x96\xe7\x3d\x30\x2b\ \xb7\x37\xcb\xfd\x38\x7f\x39\x3a\x6b\xf9\x11\xaf\x83\xc7\x5f\x7e\ \x8a\x6f\xfe\xe6\x6b\x36\x42\x6a\x71\xdb\xc3\x78\x68\xdb\xb0\xb1\ \x37\x7d\xe8\xd7\x3d\xd5\xc7\x3d\xc2\x97\xfc\x2c\xa3\xc2\xfc\xca\ \xbe\xec\xdf\x39\x37\x0b\xab\x37\xac\xf0\xaf\x5f\xb5\xc1\xdf\x32\ \x83\xfb\xf7\x9e\x63\x75\xb8\xef\xa8\xf4\x4f\x78\x1d\x24\x32\x2a\ \x18\xbd\xf1\x8f\xec\xaa\x6a\xfb\x24\x7f\x73\x74\xbb\x3d\xb4\x4b\ \x7a\x74\x93\xb1\x08\x18\x25\xce\x2f\x78\x8d\xba\x81\x8e\xbf\x02\ \xf7\x77\xff\xd7\x7e\xbf\x67\xfb\x38\xcf\x47\xf7\x7e\x43\xfb\x37\ \x53\xbe\x1b\x68\x7c\x22\xf7\x3c\x40\xf0\x71\xb3\xc5\xcd\x3a\x7a\ \xff\x10\x26\x54\xb8\x90\x61\x43\x87\x0f\x21\x46\x94\x38\x91\x62\ \x45\x8b\x17\x31\x66\x7c\xf8\xfe\xe7\x95\x1a\x8f\x46\x6e\xf1\xf9\ \xc5\x41\x04\x2a\x35\x22\x38\xf0\x11\x21\x62\x1d\x1f\x97\xeb\xd6\ \xd5\x71\x33\x6c\x18\x49\x35\xa8\x50\xb1\x6c\xe9\x66\xdf\x9f\x3f\ \x1a\x81\x06\x15\x3a\x94\x68\x51\xa3\x12\xff\x18\xf9\xc8\x84\x0f\ \x07\x92\x4a\x51\xf2\x81\xe9\x52\x6a\xcb\xa6\xde\x6a\x96\xc4\xa9\ \x73\x5d\xa7\x9f\x47\xc1\x86\x15\x3b\x96\x6c\x46\x4c\x26\x51\x31\ \x69\xc9\x61\x9d\x91\x9c\x1c\xae\xac\xad\xda\xd4\xe9\x4c\x37\x2a\ \x6f\xdd\x62\x49\xc2\x67\x59\xbf\x7f\x01\x07\x26\x4a\xcf\xc8\x0c\ \x11\x75\x38\x0c\x2b\xa9\x26\xe4\x4a\xa7\x55\x39\x60\x75\x3a\xcc\ \x0d\x87\xbb\x2b\xd7\x7d\x15\xbc\x99\x73\x67\xcf\x7f\xc6\xe8\x45\ \xfc\x4b\xc4\x4d\xbd\x22\x04\xde\x9d\x9a\xd8\xe9\xe4\x61\xde\x32\ \x6b\xf6\x3c\x9b\x76\xed\xa3\x7f\x56\x5e\x5d\xb7\x95\x65\xe2\xca\ \x2e\x11\x3f\x6e\x3a\xd0\x8d\x6c\xdb\xc7\x91\x27\x9f\xf8\x87\x44\ \xcc\xa6\x75\xf2\xb2\x6c\x4a\xf9\xb1\xdc\x3a\x4d\xb7\xec\x53\xbe\ \x9d\x7b\x77\x85\x7f\xae\x5c\xe7\x03\x5d\xb4\x4b\xdf\x77\xc7\x53\ \x45\xdc\xd3\x7b\x7b\xf7\xc7\xd5\xaf\xbc\x5e\x07\xf1\xcc\x91\x29\ \x9b\x3e\xb8\xf2\x9e\x7f\x6e\xff\xce\x7f\x9a\x1a\xaf\x8e\x07\xaa\ \x1a\x6d\xa6\xd6\x5c\x32\xce\xbf\x05\x19\xbc\x0d\xc0\x00\xe9\xc3\ \x6c\x3a\x9a\x9c\xea\xab\xc1\x0b\x31\x24\x0a\x40\xfc\x54\x92\xd0\ \xa9\x5f\xdc\xf0\x2a\xc3\x11\x49\xd4\xe8\xc1\x94\x58\xba\x4e\x38\ \x50\x4a\x6c\xd1\x45\x8a\xfe\xb0\xca\xbc\xc7\xae\x50\xf0\xc5\x1b\ \x71\x64\x4e\x3c\xba\xf8\x10\x11\xc7\x1f\x81\xfc\x07\xbc\x94\x82\ \xab\x31\xc8\x23\x73\x24\xd2\x48\x24\x99\x74\xf1\x0f\x50\xf8\xb0\ \xb0\xc9\xed\x02\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\ \x00\x00\x00\xf0\x00\xf0\x00\x87\x04\x02\x13\x1c\x82\xa4\xff\xff\ \xff\x92\x8a\x48\xff\xff\xff\xff\xff\xff\xd7\x88\x8d\x94\x4a\x35\ \x05\x57\x8c\xff\xff\xff\xff\xff\xff\x5f\xc9\xf6\xff\xff\xff\xdc\ \x8a\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x54\x68\x1c\x44\x16\x9c\xff\xff\xff\x57\ \xa8\xe4\x14\x28\xaa\xd7\xc8\xe5\x0f\x27\x69\xf7\x89\xb9\x09\x69\ \x9c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\xa8\xb8\xb6\xaa\xb4\ \xff\xff\xff\x9a\xf1\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd5\ \x11\x12\xfb\xc8\xe2\x14\x2a\xe3\x4e\x68\xf7\xba\x88\xb2\xd9\xe8\ \xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x28\x46\xeb\x97\xc8\xfb\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\x89\xf0\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf6\xb2\xf1\xff\xff\xff\xf9\xe8\ \xf0\xff\xff\xff\xb3\x68\xa3\xff\xff\xff\xff\xff\xff\xb7\xc9\xf1\ \xff\xff\xff\xff\xff\xff\xb6\xb3\xf3\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x38\x56\xf6\xd6\xd9\xec\xff\xff\xff\xff\xff\xff\x0a\x18\x61\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\xb1\xf9\x0a\x17\x1c\x96\ \x93\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5b\xb8\ \xeb\xff\xff\xff\xfa\xd8\xea\xff\xff\xff\xfb\xfd\xfa\xff\xff\xff\ \xda\xae\xf8\xff\xff\xff\x74\x88\xf8\xff\xff\xff\xff\xff\xff\xbb\ \x8f\xf3\xff\xff\xff\x7a\xe9\xfb\x71\x6a\x62\xb7\xd8\xf9\xff\xff\ \xff\xf5\x98\xb4\xfa\xb8\xbb\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x37\x4b\xeb\xdb\x98\xf5\x35\x68\x99\xfb\xcf\xa3\xff\ \xff\xff\xb1\x68\xee\xdf\x98\xb2\x51\x2b\xa1\xcc\x28\x64\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe4\x94\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x74\x46\x54\xff\xff\xff\xff\xff\xff\xff\xff\xff\x93\x68\ \xfa\xff\xff\xff\xff\xff\xff\xad\x28\x68\xff\xff\xff\xff\xff\xff\ \x7a\xcc\xf9\x6f\x58\xef\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\ \x0a\x0b\x76\xa9\xf7\xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\xff\xff\ \xff\xf9\xec\xbb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xa4\x1a\x58\x34\x1a\xe4\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xd0\x59\x33\xa4\x3e\xec\xf7\x92\x8d\x55\x9a\xe5\x4d\x19\ \x3a\xff\xff\xff\xf3\x7a\xb4\x9a\xd8\xfb\xc1\xd5\x94\xff\xff\xff\ \x44\x88\x7c\xff\xff\xff\xb4\x99\x77\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x12\x37\x22\xff\xff\xff\x55\x76\x28\xff\xff\ \xff\x17\x35\xa3\x12\x78\xa8\xff\xff\xff\xcf\x78\xa1\xff\xff\xff\ \x19\x37\xde\x58\x76\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xba\xb7\x80\xff\xff\xff\x68\x7a\xf4\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb4\x58\xb4\x74\x78\xa3\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x74\x58\xa9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x7f\xfb\xfc\x96\x98\x51\xde\x97\x93\xff\xff\xff\ \x98\x98\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xfb\xfc\x04\ \x56\x7a\xf4\x76\x4c\xff\xff\xff\xff\xff\xff\x7e\x96\x6f\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7e\x97\xf9\xff\xff\xff\xb1\x78\xf8\ \x93\x5b\xf7\x91\x79\xf9\xff\xff\xff\xff\xff\xff\x79\xb8\xf8\xff\ \xff\xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\ \xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\ \x48\xb1\xa2\xc5\x8b\x18\x33\x6a\x4c\xd8\x69\xa3\xc7\x8f\x20\x43\ \x8a\x1c\xb9\xb1\x53\x20\x74\x2d\x48\xaa\x5c\xc9\xb2\xa5\x4b\x88\ \x26\x31\x91\x43\xf9\xb2\xa6\xcd\x9b\x38\x31\xb6\xa8\x45\x8e\xdc\ \x1b\x74\x1d\x73\x0a\x1d\x4a\x14\xa7\xc9\x37\x3d\x93\x9e\x48\x59\ \xb4\xa9\xd3\xa7\x1b\x03\xf1\x4c\x4a\x2e\x45\x0a\x67\x41\xa1\x6a\ \xdd\xca\xf5\xe0\x51\xaa\x55\x43\x85\x4a\xb1\xb4\xab\xd9\xb3\x4e\ \x4d\xda\xb2\x6a\xb5\x2a\xb9\xb1\x62\x4f\x64\x45\x4b\xb7\x2e\x4b\ \x93\xa3\xc4\xb2\x6d\x3b\xb6\x2a\x59\xa6\x76\x03\x0b\x2e\x19\x68\ \x94\x10\x76\x62\xe1\xb2\xed\x6b\x95\xe6\xe0\xc7\x90\x25\xb6\xa0\ \xc2\xae\x72\xe2\xbd\x29\xaa\xd6\x4a\x11\x27\x05\xd0\xc8\xa0\x43\ \x23\x0c\x24\x16\x31\x3b\x33\x88\x43\x81\x25\xb7\xb9\xd6\x66\xc7\ \xa2\x63\x43\x56\x9b\x22\x71\x65\xd4\xec\x32\xf7\x7c\x83\xc9\x75\ \x8a\xa9\x65\x65\x0b\xb7\xdb\xa9\x45\xe2\xe3\xa7\xcd\xa0\xce\xfc\ \x66\x41\x07\x31\xbe\x95\x02\x1e\x4e\x7d\x2b\xde\xd4\xc7\x43\x25\ \xaf\x9c\xb9\x83\x88\x00\x6f\x90\xfe\x26\xfd\x5b\xbd\x3c\xd4\xc9\ \x95\x2d\x5f\xae\xad\x1c\x31\x39\x31\x01\x16\xb8\x6d\x5b\x5b\xae\ \xf9\xfb\x42\x4d\x5a\xd5\x8e\x5c\x75\x6d\xed\x96\x65\x06\x60\x28\ \x6f\xfc\xa7\x1d\x1d\x2d\xcc\x85\xdf\x82\x2b\x05\x62\x48\x76\x70\ \x71\xb7\x5f\x7a\xea\x85\x82\x5a\x28\xb5\x68\xa7\x9c\x19\x74\x28\ \xc8\xe0\x87\x1f\x99\x44\x19\x80\xa7\xa5\xd7\xde\x58\xb5\x51\xc8\ \xce\x5b\xdb\x25\xb7\xa1\x09\xd3\x81\x28\x23\x46\xb4\x91\xb8\xa1\ \x8b\x17\x26\xa5\x21\x76\x1b\xf6\xf8\x62\x8c\x33\x06\x29\x51\x27\ \x53\x95\x76\x9b\x8f\xed\xa5\x10\x5e\x0a\xdb\x89\x85\xa4\x8f\x26\ \x78\x28\xe4\x94\x0a\x7d\x95\x99\x81\x00\x3e\x99\x5b\x55\x2e\x9a\ \xf8\xe4\x86\x08\x52\x29\xe6\x42\x81\x60\x52\xe0\x7e\x7b\xd9\xd8\ \x63\x80\x38\x7e\x89\x64\x87\x63\xc6\x59\x50\x20\x48\x89\x97\xa2\ \x7f\xff\x1d\xb9\xa6\x86\x6e\xba\x19\xa5\x9c\x71\x9a\xb4\xd9\x6e\ \x48\x31\xa9\xd7\x95\x7c\xfa\x78\xa4\x9e\x7d\xbe\x28\x25\xa0\x20\ \xd2\xd9\x93\x6e\x4b\x0e\x88\x62\x8a\x8c\xde\xe8\x64\xa3\x50\x02\ \x09\xe9\x82\xfa\x89\xb7\x9a\x6d\xd8\x65\xa7\x65\x9b\x9c\x72\xe8\ \xe9\xa7\xe6\x49\xb5\x5a\x4f\xfe\x28\x66\xa7\x62\x62\xb8\xa5\xda\ \x28\x9c\xac\xe2\x57\x9c\x6a\xaf\x1a\xc8\x5d\xa2\xca\xa1\xe8\xe5\ \x93\x1f\x9c\x70\x02\x15\x74\x90\x21\x84\x9f\x09\xe6\x5a\x9e\x49\ \x0f\xea\x36\xa9\x5f\xc8\xa5\xb8\x66\x6e\x79\x7e\x79\xc2\x2f\x5c\ \xc8\x12\x03\x1d\x54\xdc\xfa\xa8\xb3\xa0\x15\x96\xde\xa1\x98\x4d\ \x68\xe4\xa2\x02\x66\xe9\xe3\x11\x5c\x00\x20\x0b\x1c\x74\x8c\x92\ \x2a\x8c\xe4\xca\x86\x57\x7b\x17\xea\x35\x96\x7b\x68\x92\xd8\x65\ \x6d\x98\xf6\x78\x42\xbc\x00\x0c\xc0\x87\xad\xca\xe1\x9a\x2f\x68\ \x9d\x18\x86\x5a\x7b\xa9\x2d\x06\xf0\x7e\xeb\x6a\x3a\xe1\x86\x54\ \x38\x02\x00\x00\x8e\xb8\xc0\x30\x98\xe3\x3e\x7c\x96\x7e\x98\x92\ \x78\x28\x8b\xc7\x61\x5c\xda\x9e\x2f\x2b\x77\xb0\xbc\xe6\x8c\xdc\ \x23\x8c\x25\x9b\xac\x95\x5a\x95\x0a\x5b\xe2\x8a\x61\x9d\x0b\x17\ \x72\x3e\x02\x0b\xc7\xc7\x8e\x84\x6b\x33\xc9\x3a\xdb\xd5\xc2\xb2\ \x04\xde\x69\xed\x85\x8b\x59\xca\x9f\x6d\x6b\xf6\x28\xc3\x2f\x00\ \x70\xe1\xce\xb2\x4b\xff\xd8\xf4\xc9\x85\x05\x6b\xad\x7a\x03\xb7\ \x7b\xae\x69\xa4\x12\x2b\x8b\xbc\x64\xf8\x68\xaf\xbd\x0c\xff\x39\ \x36\x57\x81\x2c\x7c\x22\xfe\x9f\x88\x4d\x5d\xd9\xa4\x86\xf6\x47\ \x6a\x9b\x33\x1b\x80\xe4\x28\x88\xdb\x1c\xe6\xdd\x4f\x15\xa7\x27\ \x76\xb7\x1d\xa7\xe9\xd0\xfe\x9e\x7b\x27\x92\xda\xc8\x6b\x4b\x8f\ \x73\x9b\x91\xf8\xc8\x38\x33\xde\x94\xb9\x48\xce\x6a\xe4\xc4\xb7\ \x51\x28\x30\x84\x2e\x0a\x01\x07\x17\x8e\xe8\x8d\xf8\xec\x9e\xd7\ \x3e\xb2\xc3\xa2\xe7\xd4\x02\xdd\xa7\xa2\x7d\x2d\xbf\x14\xb7\x78\ \x68\x97\x47\xc3\xb1\xec\xec\xc8\xd3\x6e\xb3\xdd\xb9\xdb\xb4\xef\ \xc4\x7d\x62\x7d\x63\xea\xd3\x5f\xfb\x6f\x8f\xe8\xc8\x72\x02\xd8\ \xc9\x23\x1f\x36\xf3\xcd\xbb\x94\xf7\xde\x7d\xf6\x0d\x6c\xea\x5d\ \x2a\x1a\xb3\xcc\x07\x7c\xb0\x21\xf2\x7c\x78\x3f\x72\xe2\xf8\x86\ \x7f\x57\x0b\x38\x5a\x85\xea\x9a\xbe\xa2\xef\x2e\xa3\xa9\x69\x1d\ \x3a\x1c\x41\x87\xda\xcd\x2d\x79\x0c\x4b\x1c\xf2\x60\x91\x33\xfb\ \x65\x24\x10\x54\x48\x94\x69\x1a\x55\x21\x1c\xfd\xcf\x4b\xe6\x4b\ \x8e\x10\x4e\xa0\x0b\xf7\xbd\x0f\x81\xbc\x6b\x54\xf7\x10\x67\x8e\ \x06\x3a\x90\x22\xc5\xc9\xcb\xc6\x70\xb3\x3f\x4e\x99\xa6\x44\x2c\ \x4c\xce\x6f\x6a\xe1\xa2\x0f\xd4\xcb\x73\x07\x8c\x9f\x02\x43\xc8\ \x39\x1c\xc2\x8f\x0f\xfe\x40\x04\xa2\x3b\x3a\x61\xc2\x13\x3e\x64\ \x5f\x7d\x63\x4f\xd6\x6c\x66\x99\x2e\x21\xe6\x46\xbf\x49\x0e\x15\ \x74\x61\x0e\x3e\x90\xe1\x8a\x86\x01\xa1\xdc\x92\x17\x44\x58\xf0\ \x01\x16\xb0\x70\x87\x3b\xc0\xe8\x0e\x57\xb8\xa2\x88\x46\x6c\xc8\ \xee\xa6\xf7\x9f\xb0\x5d\x0b\x80\x12\xd4\x90\x10\x74\xe1\x08\x22\ \xd0\x21\x88\x64\x98\x9d\x0e\x95\xd3\x39\xc4\x05\x11\x88\x74\x00\ \x63\x18\x03\x29\xc6\x42\xba\xa2\x05\x67\x4c\xe3\x45\x9e\x07\xb3\ \x36\xb5\x50\x51\x6f\xec\xd1\xf5\x28\xa6\x9c\x18\x38\x42\x17\x41\ \xbc\xa3\x15\x47\x01\x44\x2e\xfa\x31\x88\x9c\x04\x24\x1f\x34\x29\ \xc8\x30\x8a\xd1\x8c\x68\x54\xa4\x41\x5c\x21\x32\x00\x06\xd0\x8d\ \xd3\xd3\xd3\x24\x7d\xa4\x8b\x03\x98\xc3\x05\x74\xc8\xa5\x26\xff\ \x18\xbf\x3f\x86\xb2\x93\x9f\xd4\x65\x20\xc3\x68\x4a\x43\xa6\x52\ \x95\xff\x28\x0e\xd8\xf8\xd5\x25\x5a\xc1\x92\x85\x4b\xf4\x91\x10\ \x2c\x69\x0c\x5d\x7a\x71\x97\x3a\x04\xa1\x1e\x83\x39\x4a\x41\x16\ \xf2\x94\xae\x28\x23\x11\x91\xd9\x10\x93\xc4\xed\x46\xd0\xdc\x1b\ \xb0\x6c\x85\xa3\x47\x2a\x47\x08\x54\x80\x83\x23\x8c\x61\x02\x40\ \xee\x32\x8f\x3c\xfe\xe4\x9c\x1e\x79\xf9\x45\x31\x9a\xd2\x8c\x88\ \x74\x45\x20\x8e\x69\xc4\x35\xf6\x6e\x72\xee\x4a\xd5\xb0\xbe\x74\ \x1a\x2a\x50\x61\x94\x03\x30\x46\x15\x7d\x29\x04\x1e\x8e\x70\x94\ \xa2\xf4\x62\x37\xbf\xe8\x4d\x43\x9a\x31\x91\xe4\x44\x08\x23\x19\ \x0a\xb3\xf5\x71\xca\xa4\xd2\xa4\x42\xb1\x74\x71\x02\x13\x98\xc0\ \x19\x40\x3c\x5e\x45\x2b\xda\xbd\x4e\x8e\x92\x0e\x26\x18\x63\x47\ \xc9\x58\xc8\x52\x16\xb3\x8c\x43\x0c\xe9\x41\xc6\xc7\xb0\x66\xba\ \x53\x51\x0b\xdd\x90\x0c\x8e\x60\x2c\x5d\xc4\xc0\x1c\xb3\xab\xa8\ \xe7\x84\x80\x51\x32\x00\xd1\x87\x7e\xfc\x25\x2c\x72\xd9\x51\x70\ \x86\x13\xa8\xfe\xfc\xa6\x3b\x56\xa5\x48\x22\x32\xd1\x91\x23\x5b\ \x28\x3b\x96\x8a\x8e\x01\x10\xe1\x04\xb9\x44\x5c\x45\xad\x7a\x45\ \x20\xe6\x51\x08\x79\x7c\x9f\x01\x43\x89\xd3\x61\x16\xf3\xa3\x66\ \x2c\x23\x60\xc3\x19\xce\x30\x8e\x53\xa8\x65\x5b\xda\x51\x5d\x18\ \x87\x38\x50\xe1\x08\xe8\x40\x07\x1c\xe0\xf0\x56\x2b\xde\xd5\x0c\ \x54\x4d\x96\x61\x2e\xcb\x47\x3e\xf2\xb5\x9b\x62\x05\x2a\x40\x07\ \x6b\xc6\x54\x04\x34\xb0\xa8\x0c\x69\x0a\x9f\xf9\xcc\x38\xe0\x42\ \x03\x7b\xf8\xfe\xc5\xbc\x88\xa0\x8b\x64\x61\x36\x8b\x73\x15\xc2\ \xb2\xf0\x7a\x3c\xab\xfa\x31\x90\x74\x18\xa3\x58\x49\x7b\xc8\x03\ \xb4\xc0\xb4\x07\x10\xa8\x2b\x0e\x90\x8a\xe4\x26\x17\xb0\x87\x4d\ \xe3\x48\x59\x3b\x32\x19\x9c\xe0\x75\x1f\xeb\x1a\x11\x9c\xe1\x82\ \x73\x6e\x68\xae\x75\x25\x43\x2e\x45\x89\x51\x9c\xc2\xc2\x04\xc4\ \xfc\xe9\x47\xc1\xe9\xdc\x03\x04\xe2\x00\xee\x75\x45\x2a\x88\x6b\ \x5c\xb2\xe6\x2e\xb1\xd4\xb5\x19\x15\xb4\x21\x0b\x84\x21\xcd\x04\ \xdd\x55\x16\x5e\xe3\x27\x5e\x97\xa2\xd7\xa5\x5b\xd5\x65\x26\x6f\ \xea\xd3\xae\x7a\x95\xb8\xcb\x0d\xc4\x47\x9d\xdb\x82\xe4\x12\x34\ \x57\x44\xcc\x67\x7e\x39\xf5\x01\x47\xf8\xb7\x5b\x70\x30\xc7\xb2\ \xf2\x28\xde\x52\x7e\xf3\xbc\x0a\xbe\x63\x77\x6f\x9a\x4b\x04\x13\ \x13\xbd\x82\x85\xb0\x19\x9d\xbb\xdc\xc1\xc2\xf7\xa3\xd1\x6d\x1e\ \x7e\x37\x9c\x2a\x21\x74\x38\x5e\xb0\x83\x83\x31\x9c\xb1\x4c\x21\ \xb8\x20\xa7\x62\xa5\x85\x4b\xeb\x65\x55\x17\xdc\xd4\x9e\x2d\xe6\ \xe9\x37\x5d\x61\x8c\x19\xd7\xd8\xca\x32\xae\x71\x85\x67\x7c\x61\ \x39\x11\x71\x99\x3c\xee\xb1\x25\x65\xe1\x08\x03\x7c\x40\xb7\xd2\ \xcc\xe9\xfe\x57\x69\x01\xc6\x3b\x0a\x58\xbc\x77\x74\xb3\x55\x5b\ \x8c\x5e\x30\x9a\xd1\x00\xee\xa8\x32\x96\x3f\x3a\x00\x33\xf6\x99\ \x08\xae\xc0\xb3\x2b\x88\xf0\xdc\x1b\x3f\x37\x41\x5d\xa6\xd2\x74\ \xc3\xdc\x28\x23\x37\xa0\x01\x22\xfb\x92\x10\x90\xec\x0e\x13\x84\ \xf7\x8a\x4e\xd6\xa5\x0b\x02\xcc\x07\x5c\x9a\x97\x8c\x80\xa6\xb2\ \xa8\x6b\x9c\xdc\x50\x9b\x7a\xd0\x79\xb6\x71\x8d\x05\x1b\x08\xfb\ \x3a\xcb\xa0\x8c\x1e\x19\x9a\xdf\x09\x66\xcc\x0e\xd3\xd2\xca\xa9\ \x2b\x2e\x3d\xdd\xe9\x5e\xc3\xf9\xbc\xe8\xc5\xb3\x3b\x88\x60\x0c\ \x3d\x03\xba\xd4\xae\xe8\x73\x9f\x0f\xa0\xec\x41\x07\x3a\xd9\xd0\ \x86\x70\xa2\x67\x64\xd6\x58\x4b\x13\xb3\xbc\x35\x72\x77\x6b\xfd\ \x5d\x24\x19\xd9\x8a\xbb\xbd\xe2\x9c\x73\xb9\xe9\x26\xc3\xd9\x04\ \x9f\x86\x85\x01\x8c\xb1\x6e\x03\x18\xc0\xd9\x84\x76\x76\x95\xdd\ \xea\xec\x3f\xc3\x7b\xb9\x37\xb6\xb2\x38\x75\xd6\x09\x56\x5a\x1b\ \xdb\xb8\x74\xe9\xa6\xbb\xeb\x82\x39\xd0\x62\x0e\x2e\xe0\xb6\xa4\ \xb3\xad\x5b\x2b\x7a\x9a\xdc\x96\xed\x75\x8b\x71\x8a\x5e\x73\xb8\ \xfb\xe2\x55\x06\xb4\x5b\x0d\x10\xd1\x75\xbb\x42\x17\xce\x86\xaf\ \xc8\xfe\xa1\x3d\x72\xc0\xbe\xdb\xd5\x63\xfa\x72\xac\xf1\x4a\x87\ \x06\xb8\xa2\x12\xa5\xde\x2a\x19\x0a\x4e\x0b\x57\x28\x39\xc0\xb3\ \x7e\xe7\x93\x74\xab\x5b\x71\x77\x1a\xe2\xe2\xc6\xf4\xc3\x5d\x3a\ \x07\x75\x1b\xc0\xe8\xc6\x20\x42\x44\xd9\x8d\x71\x5d\xb8\x5b\xd9\ \x55\x76\x6e\xbc\xf3\xfd\xdc\x8b\x8f\x75\xda\xe6\x59\x34\x6b\x8d\ \x6c\x0e\x42\xa7\x42\x16\xb2\x68\x41\x25\xdc\x81\xf0\x99\x87\xa0\ \x8c\xb4\xa0\x43\xb9\x95\x85\xed\xdd\x2e\x5c\xdc\xbb\x56\xfb\x15\ \x79\x2e\x74\x61\x9a\xc0\x1c\xea\xc6\xbb\xc5\x8d\x91\x67\xa7\x53\ \xd1\x1c\x16\xc7\x78\xa0\x07\x30\x72\xc2\x3b\x77\xd9\x03\x30\x80\ \xd3\x2d\x8e\xf5\xf2\xb4\xe0\xcc\x61\x26\x83\x39\x98\x0b\x76\x59\ \x98\x36\x10\x64\x27\xb8\x09\x6a\x4e\x8b\x83\x27\x0b\xaf\x71\xa3\ \xfb\xac\x77\x4b\x7a\xd0\xdf\xd4\xc9\x73\xc7\xeb\x28\x66\x3e\xf4\ \xbb\x07\x7e\xef\x4c\x37\x80\x39\xfe\x70\x77\x3a\x00\x3e\xf0\xba\ \xe0\x3b\xa1\x6f\x6c\x78\x1a\x27\xdb\x18\x54\xcc\x29\xca\x65\x54\ \x1c\x47\xec\x61\x0b\x8b\xb5\x15\x19\x0c\x70\x00\xb0\xa7\xc2\xb4\ \xf3\x3d\xaf\xb2\x5c\x50\xf3\x40\x60\xde\x1d\x21\x48\x38\xcf\xb1\ \xfe\x2d\x6e\x34\xf3\xdc\xfb\x42\x1f\x78\xea\x7b\x2e\x74\x20\x50\ \xdc\xe8\x17\xbf\x38\xe0\x97\x6c\xf7\xc0\xaf\xbb\xcf\xae\x80\x43\ \xb2\x45\x4e\xff\x03\xd0\x56\x17\xf8\x37\x46\xe3\x65\xd3\x02\x38\ \xc4\x76\x0f\x47\x90\x7c\x9c\x42\x06\x0d\xf0\x75\xcf\x27\x61\x64\ \x97\x4b\xba\x35\x07\x95\x70\x80\xd8\x47\x07\x45\x06\x7a\x38\x47\ \x6b\x6c\xd7\x73\x3f\x17\x60\x02\xf6\x7d\x98\xa6\x4b\x26\x30\x07\ \x7f\x60\x0e\xb1\xa7\x6e\xb0\x30\x07\xe6\x20\x4c\xc2\x04\x78\xed\ \x36\x68\x86\x56\x7f\xf4\x07\x7c\xe6\xa0\x0b\x7f\x60\x0c\xc3\xa7\ \x2b\xfd\x17\x0f\xf1\x10\x0c\xed\x80\x0b\x71\x90\x5f\x46\x66\x0c\ \x95\x70\x7d\x45\x67\x60\xb9\x44\x04\xcf\x37\x5f\xd9\x17\x81\x33\ \x27\x77\x6c\x87\x6d\x3d\x72\x45\xe4\x96\x2c\xca\x52\x81\x16\xe8\ \x69\x40\xe0\x52\xe6\xd0\x00\xee\x46\x82\xe6\x40\x82\xec\xc7\x62\ \xb9\x74\x7b\x4f\x87\x6f\x2c\x08\x5f\x70\x40\x86\xb2\x77\x02\x7f\ \x30\x00\x95\xd0\x2c\x54\xd2\x7f\x03\x10\x0c\xf1\x80\x0b\x72\x18\ \x0f\x16\xe2\x46\xdb\x67\x06\x64\x30\x07\xee\xc0\x66\x23\x88\x5e\ \x73\x80\x53\xc6\x20\x61\xc6\xb0\x55\x60\x63\x81\xe4\x56\x6e\xfe\ \x39\xf7\x5d\x78\xe5\x69\x88\xe8\x76\x12\x18\x77\x26\xf0\x81\x06\ \x80\x85\x73\xe0\x81\x73\xb0\x64\xa2\x64\x82\xb6\xe7\x6e\xc5\x46\ \x6f\xf5\x27\x7f\xf4\xe7\x54\x4e\x45\x04\x94\xb5\x7f\x83\x51\x1c\ \x03\x30\x00\xbf\xf0\x0b\xc1\x80\x0b\x36\x18\x0f\x62\x60\x0b\x02\ \xf8\x5d\x54\x80\x0e\xde\xe0\x0d\x90\x27\x5e\x45\xc7\x66\x42\x48\ \x07\x73\x60\x00\x4a\xf6\x79\x00\xa7\x76\xc2\xb4\x6d\xde\xa6\x5b\ \x03\x07\x04\x9b\x76\x87\x3d\xb7\x69\xc4\xe8\x52\x7f\x10\x02\xee\ \x36\x7b\x97\x78\x89\xe3\x45\x8c\x5e\x68\x7b\x28\x98\x71\x7f\x46\ \x7f\x94\x75\x00\x8e\xc0\x6c\xc0\x77\x02\xe8\xa0\x0d\x27\x60\x00\ \xa6\x48\x1c\x2d\x50\x0e\xe5\x10\x0c\xee\xa8\x01\xad\x18\x87\x22\ \x80\x0b\x47\x50\x5d\xda\x30\x0c\xd9\x25\x0b\x76\x14\x85\xbe\x08\ \x46\x97\x68\x60\x1d\x08\x60\x01\x36\x71\xc4\xb8\x76\x89\x48\x77\ \xac\xb7\x6b\x73\xc7\x7d\x03\x47\x67\x92\xe8\x6e\x0d\xb0\x85\xb5\ \x87\x6e\x26\x48\x91\x14\x09\x78\x4e\x67\x0c\xdd\x28\x86\xf4\x57\ \x47\x03\x10\x03\x31\x40\x8a\x31\xa0\x04\x31\x30\x83\xfc\xa7\x01\ \x03\xe0\x0c\xb6\x60\x08\xb6\x70\x83\xad\x18\x0c\xab\x88\xfe\x0b\ \x32\x60\x2b\x32\xb0\x05\x20\x90\x5d\x1f\x03\x3b\xd9\x80\x70\x05\ \x57\x74\x11\x69\x00\x7f\xe0\x8b\xb2\xd7\x62\x95\xf8\x87\x6a\x37\ \x70\x04\xb7\x84\x14\x88\x81\x48\xe9\x7d\x8f\x48\x07\x55\xf8\x07\ \x1f\x18\x03\xec\xd6\x00\x7f\xf0\x8f\xe8\x76\x53\x4b\x66\x85\x13\ \x19\x78\x49\x07\x68\xbb\x27\x72\x65\x38\x96\xa4\x38\x00\xde\x00\ \x07\xe6\x48\x92\xe9\x68\x16\xc5\x21\x0b\xbf\x80\x92\x86\xe0\x39\ \xb6\x80\x0b\x38\xc8\x2d\x00\xf0\x0b\xfc\xe0\x4e\x42\x20\x03\x71\ \x80\x0e\x37\x89\x93\x38\xe9\x08\xd9\x00\x8c\x93\xf8\x8b\x44\x60\ \x00\x68\x10\x83\xc4\x96\x74\xae\x10\x02\xe8\x16\x74\xe2\xe7\x5d\ \xef\x04\x77\x09\x89\x73\x74\x87\x4b\xe6\x67\x60\xe6\x40\x95\x31\ \x90\x85\xec\xd7\x57\x25\xb8\x95\x77\xe7\x0c\xae\xf7\x82\x4f\x77\ \x6c\xf5\x47\x68\x6e\xf5\x91\x31\xa0\x0d\xda\x80\x0e\x4a\xa0\x04\ \x47\x80\x8e\x6b\xb9\x33\x2d\xa0\x01\x5c\x73\x97\xb6\x30\x0a\x86\ \x60\x08\xed\x08\x93\x5c\x10\x9c\x7b\x90\x97\x5f\x42\x05\xc9\xb0\ \x07\x7b\x70\x05\x80\xb9\x9c\x60\x57\x09\xc4\x96\x7b\x44\xf0\x54\ \x7f\x10\x03\xf8\x36\x68\x00\x96\x81\x95\x09\x66\x08\xfe\x39\x73\ \xac\xd7\x7d\xcd\xb8\x69\x06\x26\x95\x7f\x60\x00\x9d\x39\x7b\x9f\ \xd9\x57\xa2\x69\x0e\x00\x59\x9a\x9c\xa8\x91\x1c\x29\x72\x6e\x15\ \x03\x2c\x65\x2c\x4a\xe0\x50\x54\x60\x5d\x26\x79\x8a\x2d\x30\x00\ \x1a\x80\x30\x5c\x10\x0c\x86\xc0\x9b\x73\xe9\x8e\x30\xf9\x0b\xf3\ \xb8\x83\x48\xb2\x5f\xca\x79\x05\xca\xb9\x9c\xcc\x79\x00\x31\x30\ \x9d\x07\x40\x59\x84\xe6\x08\x30\xb7\x93\xda\x37\x99\x64\xa0\x8c\ \x4a\x49\x6b\x8f\xc8\x9d\x73\x07\x77\x2e\x00\x04\x55\x78\x89\x52\ \x29\x7b\x52\xc9\x7e\x0f\x87\x9e\x08\x76\x7b\xb3\xe7\x0c\x5a\xc8\ \x89\x2a\xa8\x82\xf6\x67\x7f\x70\xf0\x91\xc6\x72\x02\x1f\x20\x03\ \xcb\x72\x1a\xa1\x43\x1d\x26\xe1\x0c\xe5\xa0\x8a\xc1\xf9\x96\xce\ \xd0\x9b\x86\xe0\x0c\x72\xb8\x00\x71\xd8\x0e\xbf\xd0\x0e\xf1\x90\ \x1c\x32\xf0\x58\xc9\x09\x00\x57\x00\x02\x0d\xea\xa0\x38\x49\x66\ \x44\xa0\x0d\x70\xf0\x36\x95\x27\x0b\x07\xa0\x64\x1d\xfa\x9d\x02\ \xd6\x23\xdb\xb9\x76\x51\xc8\x7a\xca\x58\x85\x26\xa0\x07\xe2\x99\ \xa2\xe6\x77\x94\x1c\x88\x6e\x06\x06\x0b\x80\xe7\x81\xb4\x37\x7b\ \x25\x88\x91\x49\xe7\x56\x19\x57\xa3\x65\x88\x0e\xfe\x31\x70\x02\ \x4a\xb0\xa3\x94\xb4\x38\xc3\xd1\x02\x7c\x60\x0b\xce\xe0\x0c\xc1\ \xa0\x01\x92\xaa\x01\xe5\x70\xa4\x2c\x69\x83\xb6\x20\x06\xb8\x90\ \x9b\xbf\x70\x03\x53\x0a\x0d\xc8\x79\x93\xc3\xb0\x07\x7f\xa9\xa5\ \x38\xd9\x2d\x8e\xe0\x08\x6f\x83\x93\xa9\x40\x04\x65\x17\x81\x12\ \x98\x81\x68\x4a\x7e\x06\xf9\x9d\x24\x6a\x02\x40\x60\xa2\x72\x7a\ \x88\x47\xe9\xa6\x77\x2a\x82\x1f\x48\x82\x7b\x6a\x02\x2d\x85\x82\ \xef\x46\x6c\xc7\x16\x8e\x8e\xa0\x0d\x03\x10\x59\x27\x70\x04\x32\ \xd0\x44\x95\x61\x1f\xfa\xd2\x09\x2a\xb9\x9b\x86\xa0\x0b\x6f\xb8\ \x8a\xbf\x90\x92\x8e\x1a\x87\xce\x10\x87\x7b\xd0\x9f\x57\x30\xaa\ \xc3\x00\x02\xe8\xda\x35\xc3\xe0\x0d\xa5\x6a\xaa\xee\x0a\x76\x44\ \x60\x69\x1d\xda\x76\x20\xca\x6d\xdf\x69\x99\x8b\x78\xab\x2e\xa5\ \x07\x1e\xa8\x07\xb8\xaa\x8c\xc9\x48\x67\x06\x56\x74\x93\x68\x0e\ \x21\x60\x9e\x08\x4b\x71\x28\xa8\x71\xf1\x07\x8e\xe1\xe8\x0d\xda\ \x10\x03\xf1\x00\x9b\x71\x20\x03\xa1\x10\x07\x9b\x81\xb1\x9f\x21\ \x1a\xc5\x61\x83\xe5\xa0\x0b\xb6\x40\x05\xdf\xda\x9f\x5c\x00\x8f\ \xaf\x18\x0f\x98\xe0\xa8\x37\x70\x03\x7b\x10\xfe\x9c\xf1\xe2\x01\ \xe7\xaa\x9c\xa3\x9a\xa5\xee\xaa\xa5\x5c\x2a\xaf\x85\x28\x4d\xf5\ \xaa\x9d\xb4\x3a\x81\xa0\x77\xab\xfe\x3a\x07\xfc\x8a\xab\x47\xe9\ \x8c\x50\x69\xa7\x44\xf7\x8b\xd2\x08\x0b\x57\x29\x91\xea\xb9\xa7\ \x5f\x68\x71\x84\x96\xac\xa9\x90\xaa\x03\x10\xb1\xe8\xb0\xb2\x18\ \x5b\x0b\x98\x70\x03\x98\xb0\x00\x98\x00\x1b\xb3\x71\x9b\xb0\x25\ \xa9\x70\x70\xa4\x8e\xfa\x86\xee\xe8\x92\x98\x6a\x0b\x37\x70\x02\ \xfc\xd0\xb2\x1f\x03\x02\x79\x00\x08\x0c\x5a\xae\xde\xe0\x5f\xee\ \xaa\xb7\x39\x29\x98\x90\x96\x7a\x98\x15\xb8\x93\x39\x81\xd2\x14\ \xab\xe3\xc7\xa6\xb9\xea\xaf\x7f\xe0\xaf\x00\x3b\xa2\x47\x8b\x95\ \x45\xe9\x6e\xb4\x60\xb0\x23\x28\xac\x1f\xc8\x95\x38\xb5\x77\x2a\ \x98\x0d\xa9\x9a\xaa\x44\x10\x59\x59\x5b\x0b\x71\x80\x21\x5c\x8b\ \x09\xa6\xbb\x00\x40\x51\x9b\x2e\x51\x1c\x39\xb9\x8a\x5c\xf0\x96\ \xf1\x50\xa9\xb6\x60\x0b\x1f\xc0\x92\xe5\xf0\x8a\xe1\x8a\x0b\xed\ \xa0\x01\xc3\xc0\x05\x0c\x3a\xaa\x58\xca\xa0\x7b\x00\x07\x34\x6b\ \xaa\x60\x07\x98\x82\x19\x03\x7a\xb0\x8c\x4e\xa9\x88\xf5\xba\x73\ \xa0\xb7\x90\xb6\x9a\xab\x42\x4b\x7b\x24\xfe\x3a\xa2\x98\xd9\x81\ \x45\x79\x89\x21\xd0\x00\xb4\x70\x74\xb0\x10\x02\x57\x49\x82\x07\ \xab\xa7\x77\x67\x85\x2f\x48\x04\xea\x5b\xa1\xa9\x7a\xa3\xe8\xe0\ \x09\xfc\x70\x03\xa2\x3b\x16\x98\x20\x06\x62\x60\x26\x3f\x91\x9f\ \x4f\xd1\x02\xa7\xca\x2d\x45\x2a\xa9\xf1\xf0\xa8\x2a\x19\xae\xfc\ \x60\x83\x2d\xfb\xba\xbd\x0b\x00\xeb\x1a\xbc\x57\xe0\x01\xde\x50\ \xa5\x35\x3b\xb7\xab\xda\x35\xde\x10\x9d\x7a\x80\x06\x40\x90\x81\ \x07\xd9\x9d\x0a\x17\xbd\xdb\x17\xbd\x23\x9a\xab\x3c\xd0\x00\x8c\ \xab\x8c\x47\xab\xbd\x73\x10\x02\x95\x18\x02\xea\xd6\x79\xe1\xbb\ \xbd\x4c\xab\x85\x7c\xba\x7e\x9a\xeb\x56\xf0\xa5\xaa\x70\x10\x03\ \x91\x15\xbf\xbd\x51\x1b\x98\x10\x0b\x62\x70\x26\x9e\xa1\xba\x2a\ \xc1\xba\xa7\x0a\x3b\x92\xfa\xbf\x93\x1a\x8f\x71\x08\x93\x1f\xf3\ \x0b\xa4\x7a\xa5\xc1\x6b\xa5\x20\x00\x03\x80\xc0\xb7\x11\xfc\x31\ \x80\x10\x9d\x6d\x80\x06\x17\x1c\x60\xf8\x7a\xaf\xf6\x4a\x7e\x11\ \xb8\x69\x24\x2a\xb4\x2a\x3c\x07\x24\x0a\x95\xb9\x3a\xb0\xdd\x4b\ \x0b\xec\x06\xc7\x6c\xc6\xc2\x95\x58\xb9\x45\xf7\x07\x11\x39\xc3\ \xc6\x0a\x96\xea\x3b\x96\xe8\xb0\x05\xfe\x47\x10\x07\x5b\xc0\x0f\ \x3d\xec\x1c\x1d\xb0\x00\xe1\xf1\xb5\x62\x7b\x32\x2d\x10\x9c\x80\ \xf9\xba\x8e\x20\xa9\xb2\xf5\x96\x45\xfa\xa4\x6f\x99\x9b\x5c\x00\ \xbc\xe8\xca\xa0\x1f\x73\xa5\xa4\x9a\xc5\x80\x29\x0b\x80\xe0\x0d\ \x20\xd9\x06\x8b\xab\x07\x8d\xbb\x6d\x85\x78\x45\x1c\x7a\x8c\x80\ \xab\xa1\x21\x1c\x02\x7a\x20\xcb\xff\x5a\xa2\x95\x98\xab\x6f\x5c\ \x65\xba\x6c\x0c\x74\xbc\xbd\x97\xc8\xb4\x06\x70\xb0\xb4\xf7\x81\ \xea\x56\x6c\x60\x99\x74\xcb\xaa\x0d\x47\x70\x18\xa5\x6b\x15\x98\ \xd0\x01\x01\xf0\x1c\xcd\xb1\x00\xa8\xab\xbf\x46\xc1\xbf\x5d\x63\ \x97\x39\x59\xc9\x6f\x99\xc4\xdc\xfc\x0b\x59\xba\xc9\x77\xcb\xc9\ \x56\x0a\x08\xed\x0a\xca\xf2\x42\xca\xf9\x70\x0f\x5d\x8c\xc1\x24\ \x7a\xbd\xe3\x67\x64\x24\x5a\xa6\xa2\x57\x64\x33\x47\xa2\x3c\x10\ \x02\x3c\xa0\xc6\xef\xdc\x81\x24\x5c\x89\xde\xbb\x6e\x80\x96\x0d\ \x36\xc7\x66\x45\x59\xb9\xda\x0b\x0b\x11\x29\xac\xd0\x58\xcc\x83\ \x76\x98\x31\x40\x59\xe8\xa0\x34\x32\x20\xbf\xb5\xf1\x06\xf0\xf1\ \x1c\xd4\x8c\xc8\x0b\xa0\x0d\x39\xb6\x15\xd8\x9c\xcd\xb9\xe9\xa0\ \x48\xec\xa4\xdc\x0a\xc5\xfe\x79\xfe\xb7\xc3\x70\xb7\x38\x59\xbc\ \xe8\xcc\x05\xa3\x5c\xc1\x17\xec\xc5\x5e\xfc\xce\x1c\xda\x8c\xd7\ \x5b\x6b\x1e\x8c\xa6\xf7\x0c\x04\xfa\xbc\xcf\x36\x3d\x07\x23\xac\ \xc2\xc6\x5c\x6c\xae\x40\xd0\xd9\xb0\x87\xdb\xab\xc2\x44\x37\x82\ \x0d\xa0\xd0\x58\xd9\x81\xc5\xbc\x98\x21\xf9\x9a\x54\x70\x18\x2b\ \xbb\x19\xe1\x41\xcd\x1d\x70\xc8\x5b\xbd\x00\x62\xb0\x07\xd6\xfc\ \x12\x21\xdd\x35\x8e\x7c\x97\x7c\xfb\xba\x50\xcc\x2d\x4f\x0a\x07\ \xed\x80\x30\x77\x2b\xce\x2d\x4d\xce\xe8\x9c\x5d\x30\x0d\xb1\x6d\ \x60\xca\xa6\xcc\x03\xa8\xfc\xce\x6f\x16\xc2\xdd\x35\xab\xdd\xe7\ \xbc\x23\xca\x03\xf9\xcc\xaf\x00\x0b\x04\x7a\xf0\x68\x8f\x66\x0c\ \x48\x2d\x50\xd9\x10\x08\xd9\xd0\x79\x69\x5c\x94\x28\x5c\x74\x69\ \x8c\xc2\x08\xe6\x71\x9d\xe9\x56\xb0\x49\x05\x82\xdc\xc3\x5a\x0d\ \xd6\xf6\x8b\xc8\xcd\x01\x1f\x1e\x6d\x1d\x21\xed\xc8\x67\xed\xb2\ \xcb\xf9\x0b\x80\x00\xce\x20\xf0\x0b\x20\xe0\x9f\xe2\xcc\xd2\x9d\ \x0c\x02\x2b\x9d\xc5\xa2\xec\x08\x80\xd0\x5f\x73\xeb\x08\xde\x20\ \x09\x20\x79\x0f\x31\xd0\x06\xca\xab\x07\xa8\x5c\x7e\x40\x80\xc1\ \x09\x47\xd8\x65\xba\xa1\x40\xfe\x60\xd8\x3c\xf0\xce\x23\x2a\xd4\ \xb2\xdc\xd8\xd9\x80\xd4\x12\x16\xd9\x7b\x58\xd9\x25\x1a\x90\xeb\ \xb9\x9e\xd5\xf8\x8b\xc6\x30\x9d\x3a\x8c\x0e\x47\x70\x03\x8d\x85\ \x22\x1b\x4d\xcd\xa5\xfd\xde\x62\x10\x0b\x63\xad\x12\x21\xed\xba\ \x59\xfc\xba\xb1\x55\xdb\x5d\x93\x5d\xc3\xb0\xd2\xe3\x9c\xa5\x52\ \x7c\xce\x0e\x0a\x76\xc2\x4d\x04\xde\xf0\xdb\x5d\x13\xd3\xc2\x7d\ \x0f\xe8\x90\x0f\xda\xc0\xce\xec\x6c\xc6\x24\xea\xc5\xd5\x8d\x84\ \xf4\x1c\xc2\xf9\x6c\xdd\x24\xca\xaf\x70\x6a\xd8\x21\x90\x74\xd9\ \x50\x09\x04\xdd\x79\x94\xad\xc2\xfa\x6a\xd9\x2e\xe5\xa6\x02\xab\ \xbd\xee\x16\xa1\x27\xd0\x9a\x27\xd0\xde\x62\xf1\x06\x5c\x3b\xcd\ \x5d\x2d\x06\xef\x4d\xcd\xda\x50\xdf\x21\x61\xc4\x0a\xac\x01\x4e\ \x1a\xc1\x5c\x30\xdb\xc8\xc9\xb7\xb8\x1d\xe0\x9d\x8c\xdb\xef\xea\ \x0d\xd9\x40\x04\x79\xcd\x5f\x73\xab\x0d\x7b\xb0\x01\x80\x10\xe1\ \x08\xee\x0d\xf9\xe0\x0d\xf8\x30\xd3\xcd\xad\x07\x6d\x70\x0f\x68\ \xe0\x5d\x3b\xad\x88\x23\xaa\xdc\x7d\x6d\xc6\x3f\xdd\x00\x23\xdc\ \x00\x21\xf9\x72\xa9\x40\xe2\x26\x4e\x0b\x21\x50\xe7\x28\xbe\xbd\ \x00\x69\x7e\x26\x4c\x94\xfe\x04\xdb\x99\xad\x69\x8e\xd0\xda\x37\ \xa5\xfb\xd5\x01\xa0\xe3\x1b\xad\xe3\x62\xe0\xd1\x44\x1c\x11\x40\ \x7e\x97\xbb\x7b\xd6\x76\x9d\x93\x76\x0d\xc5\x57\xbc\x9c\xe4\x3c\ \xce\xd9\x85\xe9\xef\x2a\x98\x50\x7e\xc1\xf9\x50\xe9\x20\x20\x09\ \x6a\xc0\xae\x8e\x90\x09\xde\x90\x07\xb7\x98\xe0\xf8\xd0\x06\xca\ \xed\xc5\xf7\x70\x0f\x7a\x50\x81\x98\x26\x99\x98\x25\xdd\xca\x7d\ \xbd\x67\xce\x03\x70\xcc\x03\x31\xe0\x07\xea\x3b\xe2\x60\x6a\x84\ \x21\x40\xd9\x74\x5e\xe7\x3e\x9d\xc6\xd4\x8b\xab\xe8\xa6\xe7\x09\ \x9d\x74\x20\xd9\x9a\xea\x6d\xb1\x18\xc2\x0f\x60\x1b\x1e\xa7\x1d\ \x1f\xf2\x2d\x06\x1d\x20\xd6\x44\x51\xd6\x6a\xcd\xad\x8f\xac\xb7\ \xaf\x8b\x00\xfb\x0d\x98\x9a\x7e\xee\xe5\x4a\xe0\xa1\x9c\x0d\xc6\ \x30\xd3\x68\x10\x59\x09\x3e\x0c\xda\xd0\x05\xde\x30\x0c\x80\x10\ \xb3\x56\x0e\x08\x1b\xe0\x0d\xf7\xb0\xce\x61\xde\xef\x6d\x10\x69\ \x8b\x18\xd8\x3c\xad\xd8\x69\x3e\xa2\xfa\x4c\x0b\xf7\x60\x0c\x0b\ \xef\xd8\xdb\x9d\x0a\xac\x3a\xd9\xc3\x6e\xe7\x28\x5e\xd9\xe5\x3d\ \xb0\x48\xdb\x81\xd2\x28\x9f\x84\x8a\x0e\xcf\xaa\x1d\x5c\xeb\x09\ \x0b\xc0\x13\x4a\xe2\xfe\x1c\xd1\xfc\x1c\xf6\x6b\xbf\x1d\x90\xda\ \xd7\x4c\xd2\x6a\xdd\xda\x1f\xf6\xa4\xfb\x9d\xae\x38\xa9\xdb\x97\ \x9e\xe4\x20\xd0\x0e\xed\xda\xda\xb2\xb0\x01\xb2\x90\x0d\xca\x8b\ \x06\x1f\x80\x06\x4a\x80\x06\x54\xa0\x04\xda\xf0\xc0\x76\x2b\xe0\ \x1b\x60\xef\x99\xb0\xce\x50\x2f\x09\x99\x20\x09\x68\x50\xeb\x23\ \x3a\xe6\x3c\x1d\xc2\xf3\xac\xe1\xb4\xe0\x07\x3c\x50\x6c\x0b\xbf\ \xf0\x7e\x50\x09\xa1\x9c\x0a\x9d\x97\xc2\x2a\x8c\xca\x68\xef\xcb\ \x96\xad\xc6\x44\x47\x74\x06\x60\x2c\xa0\x0b\xc8\x7c\xf9\xcc\x3a\ \x2e\x1e\xcd\x11\x00\x7a\x8f\xf2\x88\x9e\xe8\x3e\x7e\x11\x65\xfd\ \xc8\x27\x0d\xe9\x9d\xdc\x0e\xc8\x49\xaa\x58\xda\xd2\x1e\x70\xef\ \x73\xdd\xa0\x77\xab\xb7\xf2\x6e\xce\xa3\x0c\x08\xc2\x7d\xdc\x7f\ \xd0\x06\x4a\x80\xf9\x64\x40\x05\xf4\xee\x01\x8e\x3f\xce\x99\x10\ \xfa\x4f\x9f\x0f\x5d\x70\x0f\x99\x00\x08\x99\xd0\x06\xbb\xe5\x02\ \x43\x2f\x99\xf2\xdc\xd7\x98\xa6\xd8\x3c\xe0\xf5\x5d\xef\x07\xc6\ \x60\xfb\xc5\x96\x0d\xc7\x9b\x8f\xa9\x90\x0d\x21\x70\xec\x42\xbb\ \xc2\x16\x5f\xe7\x2a\xde\xf6\x6e\xae\xc3\xae\xf9\xbe\x2b\x7b\x03\ \x5d\x6d\xda\xd6\xfe\x0e\xd6\x7a\x5f\xda\x29\x9f\xe8\x8b\xce\x11\ \x81\xbf\x9c\x45\x8e\xae\x84\x5f\xe4\xed\x60\x7c\xb3\xbd\xdb\x99\ \x0e\x02\x76\xdb\xf8\x74\x0d\x98\xbf\x90\xe0\xe7\xff\x9a\xb7\x48\ \x04\xf9\x10\x03\xed\xdf\x05\x5d\x70\xa8\x4a\x00\x0d\x53\x1c\xe0\ \xaa\x70\x05\xaa\xe0\x01\xaa\x30\xf5\xf9\x70\xfa\xaa\x90\x0f\x00\ \xf1\x41\x08\x19\x17\x68\xd0\x08\x31\x93\x70\x20\x10\x3d\x68\x80\ \x90\x59\x08\x84\x07\x0f\x5a\xf7\x78\xf8\xc9\xe6\x87\x88\x1f\x3f\ \xc6\xb2\xa5\x92\x15\x12\xc0\x48\x59\xa9\x68\x85\xd0\xa3\x67\x8e\ \xca\x10\x2d\x43\xcc\x99\xe3\xf2\x24\xcc\x39\x26\x62\xd6\x6c\x10\ \x03\x1d\x3a\x6d\xda\xe0\xec\xd1\xe6\x49\xcc\x50\x31\x0b\xde\x1c\ \x3d\xba\xa0\x43\x80\x00\x0b\x88\x2e\x80\xaa\xad\xc5\x3f\xaa\x55\ \xad\x5e\xc5\x9a\x55\x6b\xd5\x4e\x2d\x46\x02\xb8\x02\xe2\x17\x17\ \x2e\x5f\x47\x72\x11\x6b\x36\x2c\x88\x76\x7b\xf6\x0c\xfb\xe5\x01\ \xc4\x15\xb5\x73\xcd\x8e\xbc\x92\x57\xef\xdd\xb3\x74\xaf\x78\xbb\ \x17\x43\x52\xbe\x36\xe8\xbc\x69\xcb\xe7\x4d\x8d\x92\x0f\x4a\x32\ \xe9\x85\x1c\xf9\xc5\x8b\x3c\x99\x32\xa9\x52\x95\x09\x8d\x8b\x0f\ \x8d\x0f\x2a\xfe\x14\x02\x04\x8d\x9e\x87\x42\x84\xb8\x90\x38\xd1\ \x0f\x2d\x8c\xd9\xb2\x19\x5b\x7d\xb1\x52\x2a\xda\x20\x43\xd2\xa6\ \x05\x44\xf7\x4a\x99\x2d\x63\xd2\x02\xfe\xf2\xe6\x9c\x06\x7f\x4e\ \xe8\x8c\xa1\x0d\x9d\xdb\x3d\xb8\x62\x3d\x85\x8a\x09\x53\xad\x37\ \x4e\x03\x10\x1d\x0a\x75\x81\xd4\xad\xdd\xbd\x67\xed\xfa\x35\x6f\ \xdb\x5f\xe5\xf9\xaa\x1d\xb6\xa7\x1d\x08\xb8\xc3\xf2\x82\x00\x71\ \x77\x2e\x5d\xb5\x91\xcf\x9b\x05\xe4\x4d\x3f\x3a\x25\x6d\xf4\x7b\ \xcb\x44\x9b\x2d\x84\x60\xe7\x03\x18\x3c\x88\x2c\x32\x55\x5e\x98\ \x02\x86\x64\xf2\x50\xc5\x86\x36\x8e\xe8\x4f\x89\xcf\xcc\x18\x08\ \x0d\x0b\x21\x5a\x48\x0f\xd5\x38\xca\xe6\x15\xd7\xfc\xb8\x88\x16\ \x1e\x88\x00\x29\x9b\x06\x1a\x30\x66\x36\x59\x2a\x09\x41\x37\x3d\ \x5a\x02\xae\xc6\x1a\x5d\xa9\xd1\xa5\x10\x8a\xd3\xe3\x84\x9e\x76\ \xda\x42\x9b\x3d\x44\xc0\xa5\x83\xa2\xb2\x8b\x0e\x93\xea\xc4\x30\ \x12\x3b\xa7\x3a\x80\xa3\x93\xef\xa6\xf4\xce\x2b\xf1\xc4\x6a\xab\ \x9d\xb2\xee\x1b\x29\x3d\xb8\xf6\x00\xc4\x2f\x10\x10\x54\x6b\x03\ \xfa\xea\xcb\xeb\xbe\x34\xc1\xba\x62\x83\x0d\x00\x53\xa2\x8b\x4c\ \xbc\x81\xfe\x41\xb1\x23\x12\x3a\x02\x86\x04\xf5\xc2\x8c\x41\x68\ \xa0\x81\xe1\x05\x1b\xb6\xf8\xa0\x8b\x7c\xf2\xb9\x33\x21\x32\x34\ \xdc\xcc\x34\x82\x18\xba\xa8\x35\x11\x43\xcc\x86\x08\x1e\x8c\xb9\ \xf4\x95\x4a\x8c\x71\xc1\x0c\x32\x8c\x91\x05\x00\x59\x02\x21\x0d\ \xa5\xe0\x42\xa0\x25\x90\x54\x53\x0d\x44\xd5\x1a\x8d\x29\xee\x38\ \x9f\x04\x8c\xe3\x06\x4f\x70\x09\x20\x96\x0e\x76\x35\x12\x13\x7e\ \x86\x52\xf2\x49\x27\x87\xea\x80\x3b\x2a\x8f\xb5\xca\x4a\xf1\x7e\ \x69\xe7\x97\x3d\xc6\x3a\x6b\xcb\xbb\x7e\x81\x0b\x04\x40\x86\xd9\ \x32\xac\x33\xf3\x92\xeb\x4c\xbc\xf6\x52\x13\x32\xb0\x36\xc8\x23\ \x9f\x2e\xd4\x50\xe3\x4f\x18\x32\xd9\x42\x06\x21\xd4\xd8\x13\xb3\ \x2b\x16\xcc\x03\x9a\x7a\xd4\xc8\x63\x50\x2a\xb6\x48\x57\x20\x0c\ \x1b\x6b\x83\x0a\x84\xc8\xd0\x2d\xb5\xd5\x40\xcc\x88\x52\x12\x2f\ \xcd\xa6\x12\x3f\x5c\x18\x88\x87\x4a\x6e\x0b\x04\x25\x54\x6d\x6c\ \x35\xe3\x8c\x69\x71\xe7\x35\x03\x72\xd2\xa5\x27\x01\xa9\x08\xa5\ \x96\x0e\x62\x61\x6a\xa9\x00\x8c\x74\xaa\x28\xe9\x94\x5a\xb9\x03\ \xed\xa2\x43\x47\x4a\x64\xa9\x0c\xaf\xae\x5f\xb0\x84\x43\x4b\x2e\ \xa8\xfe\xdd\x19\x84\x2d\xd9\x73\xef\x0a\xb8\xe8\xcb\xcb\xcc\x6f\ \x3d\x08\xf3\x3c\x70\xf9\x82\xcc\xcc\xa4\xbd\x81\x26\x1f\x68\xba\ \xd8\x42\x4f\x0f\xa0\x89\xa3\x9e\x17\x3c\xf0\x40\x95\x79\xc5\xc6\ \x6c\x41\x1b\xd4\xa8\x67\x0b\x68\xf2\x50\x82\x9d\x23\xea\x81\xe6\ \x83\x84\xa8\x88\xd3\x5f\x82\x47\xf3\xf0\xa2\x0f\x11\xb6\x34\x25\ \x3d\x68\x79\xc5\x98\x39\x50\x03\xc2\x05\x3d\x3e\x4a\xa5\x12\x1b\ \x31\x6e\x95\x55\x1c\x69\x71\xc5\x18\x58\x75\xfa\xf1\x86\x38\x4a\ \xae\x85\xc9\x94\x03\x20\xe6\xba\xa2\x16\xc0\xa4\x65\xa6\x56\x3e\ \x92\x1f\x25\xd1\x99\xea\x66\xef\x72\xbe\x0b\xad\xf2\xdc\x82\x63\ \xe7\xb1\xda\x9b\x8b\xad\x3d\xf4\xb2\x4b\x3c\x04\xfd\x6a\xd3\x3d\ \xa7\xd7\xe4\xcb\x4c\xa9\x55\xf1\x60\x03\x0f\xf2\xd0\xa6\x41\x68\ \xf8\x75\x0f\x19\xb8\xc1\x9e\xec\xeb\x3e\xa3\xb7\x61\xf9\x38\xb2\ \x56\xc2\x8c\xeb\xdb\x35\x83\xee\x2e\x8e\x40\x48\x88\x0f\x0c\x4a\ \xe9\x9e\x85\x3f\x8c\xd4\xa2\xc2\x19\x72\x2d\x46\x20\x4c\xf3\x34\ \x9b\x90\x54\xbd\xb8\xc6\x8d\x55\x75\x95\x16\x22\x8c\x89\x21\x39\ \xe5\xb6\xb0\x5c\x0a\x6a\x51\x0b\x4c\x68\x4e\x65\xc4\x20\x46\x93\ \xfe\xc4\xf0\x32\x95\x31\x45\x29\x2e\xdb\x4e\xea\x54\x07\x9e\x4e\ \x9c\x20\x1e\x8e\xd8\x99\xb4\x00\xc0\x85\x3d\x68\xa0\x39\x7b\x28\ \x0b\x5a\xb8\x10\x96\xb6\x38\x02\x01\xf1\xc9\x9d\x78\x36\x90\xbb\ \xbc\x5c\xcb\x5b\xe2\x79\x21\x0c\xf5\xb2\x81\x61\xe4\x21\x0f\x80\ \x98\x42\x1e\x6a\x08\x0d\x35\xc0\xc0\x06\x53\x48\x06\x32\xc0\x86\ \x8c\x7c\x45\xcf\x88\x36\x48\xc6\x16\xd8\x41\x85\x7a\xdc\x00\x43\ \x96\xc3\x53\xda\xa8\xf0\x2f\x25\xe8\xa1\x8a\x3c\x30\x1f\x47\xce\ \x37\x91\x89\x90\x66\x7d\x80\x33\xc6\x43\x12\x82\xa1\x06\x84\x64\ \x54\x27\x61\xdc\xe3\x1e\xd7\x12\x03\x48\x0e\x1d\x44\x50\x4e\x1c\ \xe4\x48\x40\x02\x16\x70\x57\x62\xe0\x9c\x08\x3a\xb7\x2b\xd0\x15\ \x70\x74\xb9\xca\xd5\x91\x62\xb1\x07\x9b\x4d\xd0\x2a\x9d\x08\xc4\ \x28\x10\x22\x83\x38\x1c\xe1\x82\x20\x24\x8b\x08\x7f\xe1\x88\x6c\ \x8d\x84\x3d\x6e\x19\xc6\x7c\xa0\x36\x8c\x30\x21\xed\x0a\x64\xba\ \xcb\xd3\xa0\xc6\xa6\x2b\x00\xa2\x32\x3a\xb4\xe1\x0f\x93\xf1\xa7\ \x1e\x22\xe3\x93\x2f\x40\x46\x83\x60\x90\x2f\x1b\xd8\x20\x0f\x40\ \x1c\x90\x19\x8e\x10\x87\x84\xc8\x40\x06\x09\xd9\x42\x3d\xc0\xfe\ \x27\x03\x0a\x59\x08\x0d\x6d\xd0\x83\x16\x49\xb4\x45\xbf\x79\x51\ \x22\xed\xe3\x10\x86\x4c\x30\xb1\x92\x54\x6c\x71\x8d\x03\x4e\xc5\ \x60\x01\x8b\x10\x18\x40\x27\x27\xd8\xc2\x16\xe2\xc0\x8e\x14\x48\ \xc7\x9c\xc4\x1a\x0a\xe7\x10\x20\x02\x11\xac\x4c\x3a\xd5\x59\x0a\ \x02\x53\xc6\xa4\xa5\x18\xcb\x90\x54\x69\xc1\x28\xc6\x38\x46\x21\ \xc8\x80\x0a\x1f\x78\x24\x59\xca\xa3\x41\x00\x88\x05\x4c\xed\x78\ \xcf\x0b\xc3\x02\x88\x14\x8a\x2b\x94\x31\x84\x21\x9b\x28\x73\xca\ \x5b\x4e\xc1\xa2\xc9\x58\x65\x32\x6c\xf0\x82\x2b\xbc\x40\x15\x79\ \x58\x65\xba\x60\xd0\xa0\x55\x2a\xd1\x0c\x4b\xdc\xe7\x49\xb7\x70\ \x84\x25\x16\x53\x09\x16\x6a\x43\x1b\x2c\xc2\x45\x9a\x76\xd1\x6f\ \xba\x09\xc1\xa5\x78\x40\x1a\x17\x90\x81\x20\x73\xa0\xc5\x6c\xf2\ \x97\x4d\x57\x0c\xd5\x18\xb4\x80\xc5\x1c\xfe\xa0\x84\x13\x30\x55\ \x9c\xa1\x88\x43\x1d\x6f\xc0\x0f\x5e\x1d\x29\x8f\xed\x68\xc7\xca\ \x16\x40\x40\x31\xc4\x82\x18\x7a\x9c\x27\x51\x08\x79\x4f\x44\xea\ \x33\xa5\x29\x25\x10\x15\x2c\xb8\x93\x5f\x98\x45\x2c\xb5\xbb\xc2\ \x08\x21\xba\x50\xdf\x7d\x0b\x78\xe2\xe1\x12\x29\x3f\x49\xfe\x2e\ \x18\xf4\xd5\xaf\x17\x8d\x45\x0f\xf3\x85\x0c\x64\xd8\x92\x87\xe1\ \xbc\x97\x1a\x3c\xc1\xbd\xb3\x62\x88\x1d\x66\x90\x81\x12\xb6\xf0\ \xd2\x0a\xc5\x94\x8b\xcd\xac\x69\x4d\x19\x02\xb8\xd7\xf0\xe0\x21\ \x3e\x25\x03\x2d\x40\xa2\xaa\x6c\xb8\x0a\x9b\xc0\x39\xaa\x01\x0c\ \x62\x10\x25\x1c\xe1\x06\x37\xa8\x85\x00\x31\x01\xdb\x02\x76\x95\ \x74\x5d\x25\x06\x02\xda\x01\x56\x31\x10\xb0\x03\x5f\x15\x01\x02\ \x10\x40\x3a\xa8\x74\x00\x17\x12\x44\x16\x22\xf9\xd0\x58\xe6\x62\ \x08\x43\x27\x68\xeb\x06\xf7\xe0\x0d\xa1\xc1\x87\x4d\xf7\xe1\x02\ \x27\xe3\x23\x43\x88\x86\x8b\x5b\x1d\x1d\x46\x5f\x01\xd5\x57\x92\ \xa2\x4b\x0d\x21\x7d\xd0\x0f\x97\x77\x04\x46\x1e\x61\x97\xcd\x1d\ \x23\x23\xc3\xf9\xd2\x36\x18\xd3\x20\x32\xca\x1b\x4d\xb5\x68\x22\ \x0f\xf9\xa1\x12\x9b\xd2\x03\xc4\xc2\xc7\x03\x8a\x65\x13\x38\xd9\ \x00\x8e\x4d\x68\x61\x8e\x3f\xa0\xa1\x33\xee\xa5\x42\x54\x07\x58\ \x0b\xd3\x0d\xd0\x8e\x29\x33\xd2\x52\x44\xd0\x8e\x75\x7a\x8e\x73\ \x9d\xdb\x30\x02\x12\x78\xa4\x62\x21\x77\x4a\x9d\xe8\x84\x59\xe1\ \xdb\x5c\x25\x68\xe3\x17\xde\xd8\x83\x23\xe8\xc2\x9e\xfe\xda\x71\ \x69\x18\xde\xa8\x2b\x58\x3c\x30\x8c\x61\xe4\xf5\xa1\x60\x03\xf2\ \x0b\x32\x01\x83\x3f\x61\x14\xa3\x81\x45\x32\xda\x3c\xd1\x43\x20\ \xaa\x81\x7b\xec\x78\xec\x8a\x13\xd2\xc8\x70\x1e\xa1\x33\x2e\xc0\ \x32\xf9\xda\x80\x45\xbd\x29\x93\x23\x5c\xf4\x88\x88\xe6\x40\x86\ \x31\x92\x61\x0e\x20\x31\xc9\xaa\x10\x1c\x1c\x98\xfc\xe1\x0f\x26\ \x38\x81\x83\x5f\x7a\xb9\x50\x94\xcc\x57\x1d\xe0\x47\x6c\x43\xa7\ \xb2\x26\xc5\x62\xc3\x58\x6d\xa7\x9f\x77\x8b\x32\x04\x0c\x63\xb7\ \x4c\x61\x92\x18\xc6\x8a\xb3\x44\x4a\x79\xc5\x42\x38\x02\x1c\xe6\ \x52\x96\x2b\x04\x2d\x85\xa1\xe4\xa4\xb7\x8c\x96\xe3\xee\xc2\x50\ \x6c\xaf\xb4\xc1\x90\x1d\x94\x8c\x58\x24\x43\x0d\x81\xad\x47\xaa\ \x17\x1b\x4e\x68\x98\xba\x1e\x71\xf8\xa5\xa3\x13\xc2\x8e\x46\x0a\ \x4c\x08\xff\x3c\x66\x1b\xfc\x20\x09\x2f\x6b\x51\x44\x0b\x4b\x09\ \x0f\x5c\xf3\x9a\xf7\x61\x88\x0c\x3c\x40\x33\x82\x8d\x4a\x0b\xe2\ \x18\x07\x0d\x27\xf8\x00\x85\xf0\x5c\x8b\x3a\x0b\x90\x9e\x46\x79\ \x43\xe8\x30\xac\xb2\x0d\x1b\x7a\xb7\x80\x8e\x85\x57\xd7\xb3\xdb\ \xce\x5d\x67\x90\x26\xde\x4a\x8a\x65\xfd\x68\x25\xfe\xec\x21\x94\ \x68\xe9\xb4\xb5\x72\x4c\x4a\x1f\x73\x97\x4f\xc3\xf8\xe1\xa8\x31\ \xfa\xa7\xc0\x7a\xc2\x13\x69\x73\xef\x16\xba\x90\xb6\x71\xae\x9b\ \x9f\xfe\x04\x58\x1b\xf2\x81\x0f\x7c\xbc\x02\x1f\x7e\x68\xb8\x16\ \xf1\x91\x91\x7b\xa4\x84\x21\xcf\xac\x44\x36\x78\x00\x31\x82\xe8\ \x61\x62\xa9\x08\x84\xb2\x6d\xd4\x66\x1e\xfc\xe1\xc1\x8d\x34\x6e\ \x07\xa6\x23\xdb\x96\x99\x13\x66\x4b\x39\xe0\x57\xc7\x0d\xe8\x95\ \x31\x05\xab\x1c\x0e\x34\x1e\x17\xdd\x9d\x46\x1b\x1c\xbe\x54\xd0\ \x80\xd3\x08\x8a\x1e\x47\x5c\x5a\xa1\x79\x4d\x90\x07\x04\xf5\x43\ \x8b\x92\xd4\xc8\x68\xab\x87\x27\x5a\xdb\xc8\x5d\x46\xd9\xe0\x6e\ \x13\x78\x17\x0c\x25\x09\x86\xe3\x43\x12\x59\x7c\x45\xd8\x43\x34\ \xf1\x8a\x63\x96\x16\x0d\xcb\x86\x6e\x7c\x0a\x04\x63\x8c\x36\x7f\ \x47\x5d\xc9\x1f\x7a\x74\x82\xa6\xee\x32\xaa\x54\x0d\xdd\x74\xea\ \xf8\x2b\x7e\x2c\xa0\xef\xbc\xaa\x79\xb8\x03\x70\x42\xb6\x1c\xba\ \x48\x5e\x65\x67\x70\xd7\xf9\x1c\xe3\xa2\xdb\x2a\x81\x58\xae\xcf\ \xe1\x7b\x84\xed\x3e\x34\xaf\x97\x1c\x06\x99\x44\xd9\x69\xbd\x72\ \x6b\xc7\xb5\x9c\x42\x2d\xf3\xed\xd7\x55\xf2\xfe\x30\x6d\x55\x8e\ \xb5\xc1\xaf\x77\x2f\xad\xe7\x83\xeb\x0f\xdf\x32\x16\xc3\x1e\xf6\ \x86\x67\x63\xa6\x36\xc5\xa2\x6b\x3c\x0b\x11\x20\x88\x36\x71\xae\ \xa1\xc5\x51\x55\xb2\x92\xe3\xe8\x64\x27\xb0\x9d\x70\xe8\x80\xe5\ \xab\xa1\xf4\xdd\xef\x2d\x63\x12\xca\x54\x76\x73\x9c\x93\x0e\x65\ \x4c\x51\xbc\x08\x74\x55\x62\xf0\xf4\x5c\xf2\xcc\x15\x02\x3a\x86\ \x8e\x17\x1f\xc3\xc7\x85\xbc\xab\x0f\x97\x92\xfe\x02\x7c\x23\xc0\ \x06\x84\x15\x7d\xd3\x47\xda\xd7\x90\x1e\x96\x97\x06\x97\xc1\x0d\ \x58\xbf\xf5\xaf\x97\x5d\x35\xb3\x17\xbb\x99\x8a\x0d\x94\xa0\x08\ \x04\xfb\x2c\x3d\x08\x04\x34\x7b\x9c\x99\xd0\x83\x3f\x68\x03\x07\ \x44\x87\x2d\x40\x07\x4f\xe0\x07\xd3\x79\x83\x14\x08\x05\x4c\x38\ \x19\xd3\xd1\xc0\xe7\x78\x19\xa2\x30\x92\xeb\xcb\xa3\xe0\xc2\xaa\ \xe1\x6a\x12\xc0\xcb\xbe\x98\xd9\x03\x13\x2b\xab\xef\x5b\x31\x74\ \x80\x16\x0d\xba\x2b\x35\x81\x8f\x34\x71\xa8\x7a\x83\x0c\x04\xa1\ \x8c\x5a\x1a\x06\xc2\x2a\xac\xf7\x03\xbd\xa6\x73\xba\x64\xf0\x84\ \x82\x5b\xb7\xfc\xe3\x17\x73\x71\x3d\x49\xf8\x3a\x64\x4a\x09\x3f\ \x00\x40\x11\xe1\xa2\xf3\x21\x40\xdd\xdb\xfe\x0d\x22\x28\x2d\xc5\ \x39\x09\x3d\x30\x81\x06\x34\x88\xf1\xa1\x90\x2d\xf8\x15\x31\xf0\ \x84\xad\x4a\x81\x14\xe0\x87\x70\xe3\x87\x1b\xe8\x2a\x0f\x94\x8e\ \xbe\x23\x0a\xec\x23\xc1\x76\x80\x0b\x0e\xf3\x1c\xec\x08\x00\xc5\ \x93\xa7\x73\x3b\x24\x32\x73\xc1\xe6\x0a\x3f\x4a\xba\x2e\xb5\xf0\ \xb1\xef\xb2\x2b\xce\x43\x13\xcf\x3b\x9e\x3c\x40\x86\x1e\xac\x25\ \xf8\x0b\x42\x8b\x72\x10\xb4\xb9\x01\x77\x31\xb8\x50\x08\x26\x74\ \x39\x14\x26\xf4\x83\x98\x22\x9f\x7b\x00\xc0\x6c\x78\x38\x8a\xe0\ \x08\xd6\x98\x88\xb3\xab\x94\x39\x28\x98\xde\xcb\x06\x8b\x89\xbb\ \x86\xe8\x29\x2a\xa0\x82\xd7\xe2\x07\xa1\xe8\x15\x0c\xa4\x30\x5d\ \x61\xbe\xaa\x32\xa7\x0f\xcc\xc3\x0d\x2b\xbc\x13\xda\x2d\x5c\xc8\ \x8e\x74\xca\x43\xe1\xd2\xa3\xce\xf1\x06\x29\x69\xc1\x3f\x6c\x2e\ \x19\xd0\x00\xb9\xba\xb4\x7a\x03\x8b\x1a\xe4\x9d\x19\x54\xbf\x1c\ \x54\x3a\x0f\x28\x2c\x1f\x14\xbd\xc2\x92\xa5\x51\xab\x07\x7e\x10\ \x27\xab\x93\x35\x48\xe3\x97\xaa\xd9\xc4\xfe\x73\x42\x3f\x00\x84\ \x0d\xa8\x84\x57\xc0\x08\x65\x4a\x18\xe0\x98\x08\x8f\xc8\x0d\x88\ \x20\x83\x1d\x51\x45\x86\xf8\x83\x18\xfe\x68\x83\x83\x58\x24\x5b\ \x89\x05\x0e\xe4\xbb\xd8\xa2\xb0\x0e\xa0\x40\x7a\xd2\x95\x05\x32\ \x27\x01\x5a\x00\x42\x33\xb4\x76\x0a\x80\xf5\x68\x27\x5e\xd9\x15\ \xec\x13\x2e\x64\x14\x81\x15\xec\x04\x58\x70\xc6\x9f\x93\x31\xf8\ \xb0\x2e\x6a\x84\xa1\x1d\xb3\x41\x44\x4c\xc4\xbc\x90\x1e\x6e\x7c\ \xbf\x1f\x94\x3f\x22\x8b\x85\x54\x43\x9b\x70\x4a\x3d\x47\x7b\xac\ \xfc\x1b\x38\x43\x59\x42\x5e\x2b\x3b\x28\x74\x13\x79\xa4\x47\xd6\ \xd0\xbd\x19\x11\xb6\x10\x10\x30\x86\x88\x11\x55\x74\x40\x9d\x40\ \x83\x58\xab\x15\x4f\xd0\x15\xd3\xa1\xa7\xde\x7a\x03\x36\x54\xc8\ \x0a\x3c\x99\x5c\x31\x92\x0a\xe3\x2a\xce\xa1\x16\x11\xc8\x48\x8b\ \x2c\xb7\x9a\xd3\xc8\x99\x6b\x87\x54\xf8\x87\x4e\xe8\x94\x90\x6c\ \x2c\x2a\x00\xa1\xda\x99\xc6\x42\x0c\x8b\xdd\xa1\x37\x6a\x8c\x0c\ \xa5\x13\x22\x58\x12\x3d\xd0\x4b\x06\xfa\x33\xaf\xc4\x22\xb8\x9b\ \x84\x2f\x21\xd8\x9e\x23\x98\xaf\x38\x59\x42\x3f\xb8\x87\xd8\xf3\ \x83\x54\xd8\x80\x54\x90\x47\xd6\xd0\xa2\x11\x31\x11\x86\xd9\x38\ \xd4\x98\x03\x1e\x60\x11\x1e\x00\x48\x80\x7c\x29\x2a\x90\x01\x76\ \x90\x01\x0a\xab\x40\xaa\xca\xb0\xfe\x5e\xf1\x15\xaa\xe2\x40\xe3\ \xe2\x4a\x87\x54\x3e\x0d\xc3\xaa\x98\x21\x86\x9b\x63\xa7\x3f\xca\ \x23\xb6\x80\x0f\x59\xb0\x99\x4e\x88\x3c\xb7\xdc\xa7\x13\x90\x85\ \x9d\x11\x25\x93\x4c\x9a\x3d\xc1\xc1\x4f\xe2\x13\x1b\xb2\x21\x53\ \xba\xa5\x8a\xc2\x28\xfa\x5b\xa5\xc0\x52\xac\xb4\xb1\x1c\x73\x7c\ \x46\x7e\x31\x35\x35\xa8\xaf\x5c\xbb\x07\xf3\xb1\x88\xfe\x7a\x85\ \xc8\x94\xc7\x8b\x18\xb6\x11\xb9\x47\x04\xbb\x94\xfd\x91\x1c\x22\ \xe8\x9f\x36\x68\xaa\x0f\x88\xb0\xcb\x91\x01\xa8\xaa\x85\xa9\x22\ \x16\x3e\x93\x99\xd3\x44\xbe\xaa\xcc\xb3\x14\x50\x0a\x98\xe3\x1c\ \x0e\xeb\x1c\x41\xa3\x3e\xb0\x62\x8a\xdc\x82\x0b\x59\xb8\x0a\xb6\ \x04\xce\x7d\xd2\x06\xb4\x10\x9a\x41\x34\xc9\x6a\xcc\xa4\x04\xc1\ \xcb\xc9\xd8\x46\xe6\xb4\x21\xbf\xb2\x21\xf9\x93\xa5\x55\x4a\x35\ \x9a\x4c\x1b\x5f\x0a\x05\xf8\x62\x24\xfd\x4b\x86\x06\x91\x84\x2e\ \xd0\x10\x3d\x90\xa9\xef\xdc\xa9\x27\x7c\x05\x40\x90\xcc\x83\x11\ \xbb\x8c\x00\x8e\x8e\x08\x11\xda\xf0\x06\x22\x00\xd2\x18\xe0\x81\ \x13\xd0\x83\x0f\x18\xcd\xfa\xa4\xb3\x6a\xb3\x30\x62\x61\x8a\x86\ \x94\x0e\xe4\xe3\x2a\x27\x4d\xfe\xc3\xd1\xc1\xa3\x63\xa4\x48\x12\ \xac\x43\x11\xfb\xb0\x0d\xe3\x4d\xac\x70\xd0\x07\x15\x02\x6d\x08\ \x09\x19\x23\xbf\x0a\x05\x00\xa6\x71\x84\xa2\xb9\x41\xa4\xeb\xa8\ \xb0\x21\x22\x0e\x9d\x82\x21\xfb\x50\x21\xa4\x3f\x1e\x42\x97\x7d\ \x7b\xad\x95\x72\x2c\xe7\x82\xac\x71\xba\x81\x70\x0a\xa6\x07\xc9\ \x04\x35\xe8\x82\x98\x32\x54\x1e\xd8\x32\x2f\x4a\xa6\xb0\x5b\x98\ \x79\xa4\xcc\xd6\x00\x09\x51\x39\x00\x20\x75\x4f\x83\x90\x45\x28\ \xa3\x35\x0c\x2c\x99\x38\x38\x43\xd9\xd2\x9c\xd1\x31\x12\xe4\x53\ \x92\xcc\xb9\xbe\xad\x9c\x27\xeb\x48\x3c\x04\xd2\x2d\xdd\x2c\x41\ \x3d\x12\x01\xb5\xd4\x0a\xdf\x04\x53\x38\x28\x28\xe2\xa4\x50\x6a\ \x04\x81\xe9\xe2\x31\x0c\x2d\x44\x20\x23\x22\xe7\xe4\x50\x39\x15\ \x35\xfa\xd3\xb7\xe8\x34\x35\x4f\x68\xb5\x1b\x10\x82\x50\xa0\x02\ \x5a\x9b\xb2\x2a\xe3\x17\x9a\x5c\x17\xd7\x3b\x94\xef\x0c\x4f\x8b\ \xc3\xb2\x64\xd2\xb8\x9d\x8a\x14\x8c\x80\x0d\x8f\xb0\x8d\x17\xe9\ \x9f\x18\x60\x0c\x32\x10\xcd\xd1\x64\x87\x3a\x43\xc8\xd9\xd2\xbb\ \xcc\x19\x8a\xeb\x7b\x0e\xd3\x41\xcd\x3b\xc3\xcd\xaa\x7a\x92\xaf\ \x42\x20\x99\x23\x49\xac\xfe\x32\x34\x62\x70\x84\x42\x02\x8f\xb6\ \x0c\x49\x21\x70\x04\x51\x61\xa8\x1a\x04\x8b\x0a\x2d\xa5\xe9\x9a\ \x0f\xfb\xf0\x31\x20\xe3\x46\x0e\xfd\xa8\x53\x9a\xbf\x8a\xfd\xcb\ \x70\x9c\xc4\x15\x4d\x22\x19\xf0\x84\x23\xd8\x97\x5f\x92\x01\xb8\ \xd9\x82\x25\xfb\x93\x3f\x59\xc7\x4c\x78\xb8\xc6\xdc\x29\x87\xe8\ \x29\x82\xb1\xb8\xbc\xd1\xd1\x29\xfc\x88\xc8\xcc\x86\x36\x00\xc8\ \xd2\x20\xcd\xcb\x81\xb2\x3a\x2b\x99\x1b\xf0\x3b\xd3\x81\xbe\xa5\ \x40\x19\x31\xc8\xb3\x34\x7c\x0e\xa8\x60\x52\x96\x79\x0a\xdc\xca\ \xd7\x3f\x1b\x37\x2c\xf9\xd7\xef\xe8\x04\x3a\x70\x4b\x19\x28\xd8\ \xf2\x00\x84\x34\xb5\x41\xe3\x94\x37\x35\xdd\xda\x5e\x25\x9e\x37\ \xfd\xd0\xca\x68\x10\x1b\x12\x35\x59\x6a\x90\xa6\x5b\xa5\x91\x9a\ \x02\x35\xf8\x53\xeb\x81\x86\x3b\x09\x59\x07\x49\xb5\xbf\xc4\xa8\ \x43\x59\x47\xaf\xb3\x56\x58\xf4\x29\xc2\xd1\x0d\xf4\x99\x51\x0f\ \xd1\x94\x57\x20\x82\x94\x60\x8c\x29\x82\x32\x39\xaa\xb3\x74\x55\ \x57\x9f\x35\x48\x10\x8c\x99\x3c\xbb\x81\x94\x6b\x92\x27\xf1\x40\ \xa4\xad\xad\x98\x9b\xc3\x71\x63\x50\x9c\x11\x58\x17\x24\x58\xb0\ \x00\x84\x9d\x61\xa8\xfe\x35\x45\x3a\x1e\xf3\x5a\x6c\xfc\x1d\xb0\ \x01\x56\xb2\x4d\xdb\x4c\x90\xc4\xbe\x9a\xd3\x5b\x82\x81\xf3\x0a\ \x3d\x18\x58\x29\x4f\x80\x81\x26\xda\xdd\xd1\xcc\x9a\x3c\xa8\xdd\ \x56\x8b\x53\x18\xa8\xd6\x7c\xd8\x35\x5e\xf3\x49\xd2\x00\xad\xc2\ \x41\x8d\xbc\x01\x36\xd2\xf8\x9b\x8c\x98\x51\x34\xb8\x54\x02\x49\ \xd7\xcb\x89\x2a\x4e\xb5\xb0\xd3\x3c\xcd\xe8\x0b\x80\x22\x19\x20\ \xd4\xe4\x15\xd0\x61\x92\x3e\x7a\xbe\xda\xc2\x4d\x39\x14\x81\xa8\ \x3d\x16\x59\xfd\xc3\xd0\xad\xb4\xd1\xe5\x31\x84\x35\xc9\x4b\xd2\ \x24\xf4\xa3\xcb\xaf\x11\xdb\x0f\x1d\xa9\x4c\xb8\xd8\x75\x69\xba\ \x8a\x9a\x44\x1f\x42\x22\x71\xaa\x87\x7a\xd9\x02\x20\x8a\x83\x7d\ \xd1\x28\xe0\x6d\xb5\x75\xb1\x0c\x73\xb1\x56\x26\xf4\x3a\x12\x29\ \x1c\x82\xc0\x32\x2c\x83\x14\x9a\x42\x09\x48\x69\x88\x2f\x3c\x57\ \x4c\x65\xdc\x01\x82\xad\xd7\x7a\xc3\x3e\x42\x4d\xaf\xda\x83\x5c\ \x41\x4d\x62\xd1\x15\xd0\x01\x9d\x6c\x1b\x43\x38\x6c\xa0\x06\x0a\ \x00\x47\x98\xa0\x2f\x75\x41\x6d\x78\x0f\x6b\xa1\x43\x6a\x51\x5d\ \xa7\xb9\x31\x35\xd5\x2b\xba\x04\x32\x38\x85\x5d\x62\x65\x5b\xf2\ \x82\x4e\x40\x01\xfe\x42\xdc\xed\x1a\x20\xaa\x07\x8b\x12\x27\x7e\ \xc9\x03\x41\x21\x32\x08\xce\x04\x76\xfc\xce\x5d\x83\xbd\xcd\xd0\ \x60\x2c\x23\x18\x86\xc8\x2f\xcf\x72\x26\xdd\xf8\x80\x9e\x62\x24\ \x58\xc3\xd4\xc6\xbd\x4f\x5f\x79\xc3\x0a\x74\x61\x75\x22\x06\xe7\ \x70\x0e\x63\x2c\x8a\x37\xa0\x0e\xae\x62\x92\x31\x14\xbc\xd1\x21\ \x86\x65\x34\x24\x1d\xf6\xb9\x30\x95\xab\xec\x02\x93\x4c\xaa\x3c\ \x6a\xe4\xb1\xdb\x49\xc9\x20\xae\x8f\xb0\xa9\xa1\x24\x4e\xdb\xb4\ \x65\xdb\xb1\x55\x1e\x02\xbe\xa5\x24\x7a\x9b\xbe\x52\x83\xd0\x8b\ \xdb\x60\x9a\x02\x64\xa0\x0c\x07\xb1\x8c\x2d\x66\x42\x6b\xcd\xa2\ \x8a\x2b\x18\xd4\x70\x65\xfc\xb2\xa9\x55\x04\x82\x0f\x98\x65\x81\ \x69\xa4\x1b\xa8\xb3\xfa\x64\x5c\xcc\xf9\x95\xe9\x58\x4d\x32\xcc\ \xca\x52\x2b\xcb\x3d\xf2\x2a\x62\x88\x05\x33\x64\xb9\x31\x6c\x99\ \x78\x5a\x5f\x80\x55\x9d\xa9\x75\x41\x74\xf0\x0b\x00\x48\x8f\xb7\ \x18\x5d\x95\x14\x8f\x4c\x7b\x64\x48\x66\x13\x20\xf3\xab\xbf\x62\ \xdb\x1c\xb2\x28\xe6\x24\xa9\x91\x7a\x3f\x92\x9a\xac\x2d\xd8\xb7\ \x2b\xc6\xdd\x60\x82\x86\x8d\x2a\x65\xd7\xb3\x0c\x86\xeb\x3f\x3f\ \x30\x5e\x64\xfe\x12\x0d\x87\xd0\x0d\xc2\xb9\x29\x59\x5e\x1f\x07\ \xeb\x0c\xd1\xb4\xcf\x24\xe5\xd9\x92\xe9\xaa\x0e\xa0\x2d\xaa\x8a\ \x05\x7f\xd3\xca\x70\x43\x99\x8b\x4c\x50\xad\xc2\x84\x33\xe4\x63\ \xa2\xdd\x33\xaf\xc2\xe1\x7b\xe2\x8a\xcf\x5d\x37\xca\xc3\x8b\x61\ \xe8\x89\xb7\x98\xcb\x6c\x2c\x9a\x22\x4e\xd8\x70\x51\x3a\x07\xfe\ \xcb\x6f\x26\xaf\x00\xa6\xdd\x56\xb3\x21\x70\xc4\xa8\xb4\xa9\x5b\ \x8d\xa2\x8c\xb4\xe9\x82\xb5\x99\x8c\xcc\x50\x03\x79\x46\xd9\x87\ \xe3\x88\xef\xf4\xa2\xd1\xb8\xaf\x82\xe9\xe7\x56\x46\x8d\xf1\xd1\ \x90\xd6\x42\x57\xfb\xac\x05\x4e\xbd\x9c\xf0\x0d\xb7\x05\xaa\x05\ \xbf\x0b\xb7\xac\xdc\x95\xeb\x2b\x50\x5c\x01\xd5\x5e\x89\xd2\x95\ \xd1\xca\x0e\x60\x5f\x8d\xa6\x0a\xf7\x35\x38\x2a\xa0\x55\xb0\x48\ \x0f\x18\xdb\x03\xfa\x4d\x4e\xe0\x99\xe6\x32\x5d\x5d\x1b\xc8\xe2\ \x29\x10\x5e\xb4\x95\x44\x59\x52\x97\x2b\x2e\x2c\x07\x56\xb2\x7b\ \x81\x01\x52\x7e\x01\x7b\x01\x6c\x64\x50\x05\x64\xc8\x04\x25\x5c\ \x42\x86\xd3\xa2\x80\x4c\xea\x7c\x26\x6a\xe8\xf5\x67\xc8\x7e\x30\ \xc4\xc4\xe5\x9d\x0d\x05\x01\xd2\x5e\x75\x3d\x68\xbd\xbb\xb3\x93\ \x71\xe8\xfe\x5c\xc9\x2d\x40\x22\x6d\x50\x65\x52\x3d\xba\x6a\x38\ \x20\x6b\x2f\xe5\x68\x29\x0b\xbf\x1e\x2b\x28\xb7\x48\xd3\xb6\xe6\ \xe6\x95\xa4\xd0\xe2\x14\x0f\x41\x01\x5e\x07\xf9\xe6\xd1\x8b\xc9\ \x07\x66\x44\x5b\x72\x60\x3b\xa5\xe9\x40\x99\x0c\x18\x18\xb8\xf3\ \xba\xe2\x8f\x92\xe0\x7c\xe8\x62\x26\xe4\xb5\x36\x60\xde\x82\xc8\ \xe7\x66\xb2\xb8\x55\x4c\x09\x07\x13\x98\x14\xdd\x02\x6a\xc3\xec\ \x92\xc1\x1c\x6a\xc3\x04\x5d\xb4\x30\x5f\x11\x0a\x87\x3e\x19\xe0\ \x02\xa4\x7c\xfd\xc5\x3d\xd2\xb0\x72\x13\xe4\xd5\x6e\xd0\xd6\x5e\ \xb1\x1b\xf8\x05\xbf\x40\x1e\xb7\x70\xa1\x93\xa6\xcb\xb8\xde\xda\ \x6b\x0c\xa5\x58\xea\xd0\x75\x61\x5b\xd0\x0b\x67\xfa\x83\x5d\x46\ \x1c\x70\x1e\xc2\x28\x27\xab\x87\x40\x59\x10\x64\x40\x1b\x91\x32\ \xec\xca\x30\x97\x36\x28\x54\xe7\xe6\x44\xe9\x26\x08\x5a\xa6\x65\ \xf2\x29\xea\x97\x35\xd4\x72\x3d\xa9\xfc\x7b\x2d\xd8\x0a\x85\x11\ \xc6\x45\x0b\x3b\x19\x95\xa3\x8e\x37\xec\x40\x5e\x29\x66\x10\xdb\ \xad\x64\x64\x27\x62\x46\xed\x03\x70\x66\xf9\x2e\xeb\xdf\x74\xb4\ \x23\xb8\xef\xf7\xd0\xd5\xb6\xc6\xab\xe4\xe4\xef\x84\xfd\xef\x4d\ \x9a\xfe\xe4\xe8\xb4\x28\x1b\x10\x81\xd1\x1b\x35\x26\xb6\xa5\xe1\ \xe5\xa1\x91\x5a\x9e\x1b\x80\x06\x8f\x5a\x90\xed\x34\x94\x7c\xc9\ \x8c\x0b\xdf\x82\x98\xea\x82\x7b\x60\xc2\x36\x48\x63\xce\x98\xe5\ \x59\x5e\xad\x8b\x9b\x88\x8a\x93\xa9\x80\x14\x4d\xd2\x2c\xcd\xa9\ \x9a\x2d\x6a\xab\x33\x09\xa3\x68\x93\x99\x6a\xbd\xd3\xe3\xcf\xce\ \x30\xc4\x73\x5a\x72\x03\xae\x04\xca\x43\x7f\xe5\xf1\x74\xa3\x6f\ \xe6\x82\xcb\x34\xc1\xbc\xd2\x45\x72\x33\x25\x44\x4f\x8a\xa1\x4f\ \x3a\x9e\x28\xaf\xd8\xd8\x35\x32\x26\xee\xd0\x90\x82\x1b\x04\x66\ \x22\xc3\x5e\x90\xb6\x25\x54\x35\x38\x65\x18\x68\xd1\x42\x9d\x2c\ \xad\x1b\x0c\x80\xe6\x8c\x56\xcf\x60\xd4\x68\x73\xc6\xfc\xce\xfa\ \x3a\xd7\x35\xbe\xcf\x1b\xc0\x04\x0a\xb4\x9c\xf0\x46\xc8\x5c\x44\ \xb4\x89\xa6\x23\xe9\x88\xbe\xac\x06\xae\x66\x19\x06\x8a\x04\xae\ \x70\x6b\xe6\x43\x4f\x37\xaa\x75\xb4\x45\x87\x0c\xf8\x78\x0b\xdc\ \x56\x13\xbc\x7c\x28\xcf\xdb\xed\x95\xae\xe4\x51\x2b\xb5\x03\x57\ \x1e\x1e\xca\x69\xe0\x55\x82\xeb\x21\x65\x7a\x01\x77\x74\x81\x86\ \x21\xcb\x04\xac\x99\x2c\xfa\xc2\x1a\x81\xa0\x02\x32\x48\xe3\x34\ \xfe\xee\x5b\x86\xb0\x08\x6b\x1d\xf1\x73\x95\xa3\x5a\xa9\x40\x82\ \xc4\x33\xda\x1a\x20\x01\x02\x50\xdb\x3a\xe6\xe9\x90\xe1\xe9\x30\ \xda\x0c\x2b\x92\x3c\x9c\x4d\x94\x91\xa7\x00\x38\x00\x66\x5f\x1d\ \x3f\x5c\x31\x2a\xf0\x06\x52\x9a\x0f\x1a\xab\xed\x22\x47\xba\x23\ \xb7\x2b\xb0\xb1\x25\xd8\xb5\x64\x20\xca\x74\x1f\x0a\xc7\x56\x23\ \xec\x07\xc9\x83\x76\xd9\x02\x1b\xe8\x93\xea\xd1\xc4\x74\x49\x77\ \xe4\x8e\x13\xca\x12\x38\x25\x88\x77\x59\x34\xd7\xce\xd0\x47\xc3\ \xb9\x3d\x3d\x68\x4c\x0b\xf9\x80\x05\x96\xa3\xa9\x3a\xcd\x93\x49\ \x86\xae\xac\xc0\x80\xf7\xd4\x3d\x97\x2d\xe9\x18\x20\x3c\xda\x3e\ \x10\xdc\xb0\x3d\x6a\xd2\x28\x91\xf8\xd5\x71\xf6\xc2\x8c\x85\x46\ \xb6\x8b\xb0\xb8\x50\x6c\xc6\x66\x93\x86\x21\xf6\xb3\x25\xd9\x3d\ \x70\x26\x57\x5b\xf1\x22\x6c\xc1\x62\x1b\x76\x50\x82\x8d\xea\x13\ \x22\x4b\x97\x09\x17\xaf\x7a\xc0\x9a\x80\xab\x87\x66\xfd\xa7\x7f\ \xe2\x79\x85\x28\x88\x86\xf0\x9b\x98\xa2\x2c\xbb\x8b\x2a\xa3\xf7\ \x37\xd0\x56\x48\x0a\x9c\xb0\xd8\x3a\x43\xa2\xf0\x6c\xaa\xce\xb6\ \xdf\xa2\x52\xe9\x78\x6f\x40\x1a\xeb\xac\x47\x74\x29\x3b\x81\xfe\ \x67\xb9\x16\x6b\xdc\x1d\x44\x1c\x7b\x7a\x53\x28\x0f\x10\x6e\xfe\ \x65\xe9\x96\xae\x25\xde\x26\xb2\x11\x4d\x17\x71\xd7\x9e\x29\x30\ \x22\xbb\x26\x6e\xc0\x4e\x22\x00\xda\x77\x96\xea\xd3\xd6\xf2\x17\ \x0c\x39\x0d\x87\x58\x2d\xc3\x45\x03\xf7\x9a\x3a\x12\xc6\xf5\xd3\ \x0c\xb7\x85\xf4\x04\x51\xbd\x40\x88\x34\x1d\xd9\xfa\x95\xad\xf2\ \x23\x78\x35\x0a\x4c\xc0\x95\x64\xcc\x68\xcd\x97\xda\x44\x8f\x2f\ \x1c\xa3\xc3\x86\x35\x5d\x48\x87\x9a\xe2\xcc\x0b\x5b\x02\x04\x1b\ \x18\x86\xd8\x05\xe7\xd0\xcb\xb7\x95\x36\xb5\x81\xfb\x13\xbb\xbe\ \x13\x2a\x48\x86\xe8\x41\x86\xda\x0d\x4c\xac\x49\x17\x71\x2a\x38\ \x58\x9b\x35\x62\x02\x08\x25\x32\xcc\x10\x14\x42\x86\x8a\x8b\x0f\ \x40\xd0\xe8\x51\xd2\x46\x09\x9a\x23\x47\x94\xdc\xb8\x71\xa4\x62\ \x45\x7e\x1a\xf9\x75\xf0\xe4\x29\x56\x2c\x7e\x19\xf9\xd5\x4a\x51\ \xab\xd6\x1b\x4c\x98\x4c\x62\xe2\x27\x66\xc1\x02\x31\x1d\x66\x06\ \x08\x10\x0b\x53\xad\x05\xb8\x02\x88\x70\xd4\xe9\x1f\xd0\xa0\x42\ \x87\x12\x2d\x6a\xf4\xe8\xbf\x4e\x74\x08\x32\x6d\x6a\x46\x88\xa7\ \x3d\xde\x86\x81\xb8\x62\xf5\xea\x15\x00\x5a\xb7\x72\xed\xfe\xea\ \xd5\x6b\xd6\xab\x60\x3d\xd8\x18\x56\x36\x4f\x1e\x18\xc9\x92\xc1\ \x80\x31\xe5\xad\x0d\x64\x36\xa6\xb0\x55\xab\x66\x4b\x3d\x35\x6a\ \x92\x41\x3b\x22\x44\x86\x1a\x1b\x2f\x5e\xa4\xbd\x5b\xef\xf0\x96\ \x1b\x4a\x3c\x6d\x61\x37\xd0\xa9\x19\x76\x71\x1e\x3f\xa5\x42\x46\ \xe1\x07\x34\x9a\xf5\xa0\x51\xe2\xf9\xc8\x96\xd0\x37\xe2\xc4\xa9\ \xb5\x71\x0b\xbf\x8f\x20\x93\xc5\xea\xb0\x11\x67\x0a\x93\x1c\xc5\ \xa4\x08\x95\x93\x9f\x4a\x98\x2e\x89\x11\xeb\xb0\x00\x93\x98\x58\ \x8e\x90\x12\x2f\x6e\x3c\x68\x27\x32\x90\x9b\x2a\xd9\x03\x62\x18\ \x55\xac\x56\xbf\x52\xaf\xde\x35\x6c\xd6\xad\x56\x3d\x0c\x43\x66\ \xd6\x46\x9e\x29\x6a\xdd\xbe\x9d\x62\x63\x6e\x5b\xb6\xac\x0f\x43\ \x53\x03\x0d\x5a\x1c\x33\x32\xea\xc1\x00\x9f\x27\xd9\x5d\xbc\xf5\ \xb6\x1c\x91\x11\xe7\xc8\x72\x90\x09\xc1\x0e\x15\x54\x7c\x70\xa0\ \x66\x9e\x41\xf4\xc1\x67\x14\x25\x16\x47\x28\x71\x6c\x74\x43\x6a\ \x20\xc5\xc2\x9a\x85\x9e\xe0\x76\x52\x0a\x98\x04\xd0\x5b\x6d\xb5\ \x60\xf2\xdb\x49\x6f\xf0\xf3\x61\x00\x33\x89\x01\xc7\x4f\xc7\xb9\ \xf8\xa2\x50\x4a\x05\x68\xc6\x11\xde\x80\x70\xe3\x30\xfe\xd2\x65\ \x97\x9d\x75\x3d\x5e\x07\x00\x8f\xdb\x79\xe0\x01\x32\x68\x85\x47\ \x9e\x79\x79\x9c\x37\x97\x78\x6a\xe1\xb7\x17\x5f\xf8\x01\x28\xc4\ \x16\x6e\xb5\xa5\x46\x17\x16\x85\xb6\xc5\x64\xf2\xcd\xc8\x94\x7f\ \x06\x22\xe8\x59\x43\x68\x1c\xf8\x01\x15\x12\x5d\x14\x1a\x69\x71\ \x64\x84\x11\x3f\x16\x82\xb4\x07\x86\x20\x75\x80\x93\x18\x08\xf4\ \x56\x92\x88\x2a\xb1\x14\x0b\x31\x36\x05\x90\x0d\x8c\x85\x16\xda\ \x89\x0b\x01\x52\x81\x0b\x8e\xd0\x61\xc5\x15\x8f\x3e\xfa\x28\x96\ \x76\x57\x0c\x19\xde\x5b\xe1\x29\x19\x97\x5c\x72\x31\xb9\xd6\x85\ \x50\xaa\xa7\x04\x3b\x66\x28\x01\x4d\x5b\xd0\x64\xf9\x81\x7f\x6d\ \x96\xfa\x25\x98\x6a\x2a\xf8\x90\x82\x47\xa0\x49\x45\x9b\xa0\x55\ \x54\x1a\x46\x37\xd4\x52\xd1\x5e\x20\x7d\x24\x68\x4d\xb1\x88\x81\ \x53\x2c\x22\x04\x20\x46\x49\x1d\x72\x08\x5c\x2c\x01\x24\x73\x40\ \x8b\x86\x5a\x6b\x1c\xa2\xcb\x51\xe1\x1c\x55\x8e\x3e\xaa\x9d\xa4\ \xe1\x52\xaa\xd5\x15\xaa\xc0\x60\x64\xa6\x4a\x22\xf3\x02\x32\x9e\ \xbe\x95\x5e\x94\x75\x89\xb7\xc5\x40\x5b\xb0\x95\xc9\x5d\x47\xbc\ \x4a\xd0\xbe\xb0\x9a\xe1\xe6\x16\x4a\x6c\x41\x6b\xfe\x1b\xb4\xaa\ \x19\x07\x15\xad\x62\x94\x58\x2d\x10\xfa\x5a\xd1\x47\x74\x76\xe4\ \x51\x07\xd1\xb6\x96\x1b\xa0\xc6\xae\x54\xe2\x49\x0b\x54\xec\xd3\ \xb5\x21\x63\xbb\x94\x53\x32\x68\xf3\x4b\x55\x57\xa4\x3c\x2e\xb9\ \xe1\x4e\x3a\x1d\xb9\x57\x20\xe3\x0d\x5a\xf6\xe5\xd1\x1d\x32\x44\ \x32\xf9\xae\x5a\xb1\x40\xc3\x96\x78\x6f\xd5\x23\x03\x3b\x5b\x4c\ \x11\x5e\x32\xf5\xf4\xe7\xef\x72\x92\x85\xd6\xc5\x16\x5d\x48\x1d\ \xb0\x82\x8a\x59\x44\xda\x11\x00\x6b\xe4\xab\xc3\x19\x5d\x28\x6d\ \x6b\x13\x57\xdc\xda\x4b\x62\x7c\x78\x71\x6d\xa1\xb0\xc4\x0f\xa1\ \x22\xbb\x4d\x5c\xb6\x4d\x41\xb5\x47\x3b\xd8\x61\x07\x29\x90\x2e\ \x7f\x05\x73\xa4\x40\xaa\x32\x0c\x20\x46\xe6\xd1\x6e\x77\x1e\xb0\ \x7b\xde\xbb\x6b\xad\x45\x5e\x5b\x53\xd4\x93\x70\x17\x35\x4f\x01\ \x0d\x97\x4c\x43\x26\x03\x68\xfb\x41\x3d\x35\xd5\x37\x6c\xf9\x60\ \x9b\x14\x6a\xe8\xeb\x49\x15\x1d\x81\x89\x27\x18\x62\x28\x93\xc5\ \x64\x03\x2a\x42\xa0\x24\xa9\x7d\x12\x11\xd5\xbe\x7d\x3b\x51\x9d\ \xf0\xe1\xd4\x16\x7b\x38\x67\xd5\xca\x78\xf7\xad\x77\xde\xd5\x59\ \x5a\xe4\xcd\x35\x77\x37\x58\xbb\x88\x37\xb9\xfe\x16\x5c\x3b\xab\ \x71\x04\x15\xf5\x08\x56\xe4\x14\x77\xc5\xd1\x2f\xd3\x4e\xd7\x23\ \xf5\xd4\x5d\x08\xac\x04\x68\x5b\x8e\x36\x1a\xaf\x37\x78\x22\x86\ \x27\xbb\xba\xf9\x6b\x6a\x15\xdb\x24\x67\xeb\x1f\x22\x00\x9d\x08\ \x37\x95\x66\x0c\xee\xfd\x1b\x15\x37\x41\x8e\xe0\x1c\x10\x00\x49\ \x65\x94\x0a\x0b\xf1\xf6\x16\xb3\xeb\x78\x00\x10\x53\xa0\xd9\x30\ \x94\x84\xb3\x61\x1c\x0e\x71\xe9\x21\xcf\x92\xde\x02\x1f\x2a\x04\ \x86\x79\xf7\x51\x1a\x65\x98\xf6\x17\xbc\xe8\xe5\x30\xdf\x83\x9a\ \x68\x3c\xc7\x8f\xc4\xec\xaa\x61\x18\xf1\x44\x47\xb6\xe0\xc2\xf3\ \xa1\x0e\x24\x82\xa2\x1f\x48\x44\x70\x3f\x10\x70\x27\x00\xfc\xa8\ \x9d\xff\x82\x38\x14\x00\xc6\x01\x0e\x37\xb2\x9b\x58\x76\x94\x40\ \x05\xc2\x2c\x66\xc8\xc8\xc4\xd1\xca\x82\xb3\x76\x35\x8f\x49\x4e\ \x6a\x9c\x79\xde\xa5\x86\x84\x6d\x61\x70\xe0\x81\x01\xe5\xf4\x65\ \x39\x82\x84\xe2\x06\xf5\x60\x4b\x7b\xd4\x60\x42\x13\x6e\xc9\x23\ \xa2\x11\xc9\x68\x4a\x97\x9a\xd1\x51\x88\x74\x2e\x91\x13\xd8\x66\ \x52\x31\x62\x88\xa0\x8f\x08\xf0\x00\x02\x40\x26\xc4\x41\x02\x45\ \x46\xf2\xd9\xc3\x30\x7e\x11\x16\x1c\x11\xfe\x10\x81\xc3\x5b\x62\ \x01\x9b\x08\x24\x0f\x18\xc9\x2c\xc3\x18\x52\x15\x2d\x08\xaf\xc6\ \xcd\x85\x2d\x43\x2b\x9a\xe0\xc0\xb8\x9f\xc9\x70\x6f\x46\x7f\x89\ \x03\x09\xd7\x78\x18\x35\xd6\xc3\x23\xad\x6c\x1f\x6a\x56\xf8\xab\ \x5f\xa9\xaf\x1e\xb1\xf0\x08\xd7\x4e\xb2\x91\x0e\x24\xa3\x58\xae\ \x91\x5f\xa0\xa2\xd5\x13\x42\x12\xb3\x90\x89\x32\x03\x3a\xda\x71\ \xc4\x1b\x1d\x31\x6f\x8f\x84\x64\xcc\x22\x65\xa9\x08\x5a\x92\x82\ \x54\x3c\x0f\xa6\xc4\x03\x2a\xa0\xa1\x07\x06\x43\xa3\x92\x60\x3c\ \x08\x83\xbb\xc8\x20\x84\x5f\xf2\x8f\x44\x72\x25\x91\xd0\x78\xe2\ \x95\xa8\x09\x8d\x48\x3c\xa2\x21\x91\x64\x8d\x42\xb1\x68\xa5\x0c\ \x21\xf4\x2b\x4c\xd8\x93\x18\x7b\x20\x46\x48\x34\x62\x43\x90\x08\ \xb2\x98\x84\x94\x91\xc9\x94\xa9\xb2\x66\x3a\x12\x9a\xd4\x91\x24\ \x00\xc8\x92\x07\x44\xe6\x61\x48\x38\x43\x4b\x79\xdc\xb2\x96\x9f\ \x99\x47\x2e\xe6\x51\xc3\x64\xd4\xa0\x8a\x17\xa8\x62\xa4\xc8\x80\ \x01\xbd\xc6\x28\x1f\x33\xaa\x91\x4b\xa4\x0c\x05\xe6\x3c\x27\xd3\ \x85\xcd\xb1\x03\xad\x44\x9f\xe7\x26\xb6\x42\x0a\x89\xe4\x57\x7b\ \xfc\xa7\x6b\x38\x62\xa1\xe1\x18\xd4\xfe\xa0\x88\x2a\x9a\x32\xab\ \x52\x95\x02\x16\xcf\xa1\x0f\xed\x0a\x25\xf7\x70\x1e\xe8\x5c\xd3\ \x3e\x3c\x8b\x52\x47\xa9\x88\x8c\x29\x50\x4f\x0d\x24\x35\x69\x18\ \x89\xa6\x52\x19\xa4\x72\x3f\xa3\x29\x67\x84\x1a\xd6\x26\xd2\xf0\ \x54\x23\x30\x1c\x4d\x84\x3c\xf7\x91\xb9\xa6\x06\x13\x71\x48\xc1\ \x0d\x62\x01\x83\x3e\xb2\xa6\x23\x15\xcb\x86\xed\x8a\x7a\x50\x3a\ \x6c\x6b\x65\xd3\x39\xac\x53\x1f\x2a\xcd\x08\x96\xc5\x06\xdc\xc9\ \x99\xa7\x94\x84\xa9\xf1\x2c\x69\x5d\xed\x9a\x02\xbd\xea\x31\x18\ \xc2\x88\xb2\x1e\x37\x30\x67\x80\x24\x33\x19\x37\xc9\x15\x9f\x5c\ \xba\x48\x69\x48\x13\x8a\x50\xb0\xc3\x36\x0f\xdb\x42\xfb\x1a\x96\ \x56\xf5\xc5\x42\x0d\xf3\xc4\x49\x69\xe2\xc4\x47\x62\x60\xc8\x13\ \x40\x14\x6c\x51\x95\xe2\x89\x61\x44\x52\x47\xcf\x74\x6a\xdf\xb8\ \x03\x9d\xee\x50\xd0\x9a\x9c\xca\x60\x79\xe2\x72\xb8\x93\x02\xc8\ \x68\xd9\xbc\x12\x97\xc4\xfa\x25\x21\xa0\xd2\xb3\x08\x63\xeb\xe7\ \x64\xca\x42\x08\x11\xad\xb5\x69\x15\x09\x84\x22\x54\x1a\xd4\xcc\ \x53\x24\x3d\xad\x61\x2f\xed\x44\x04\xe0\xd2\x57\x29\x8c\x2a\x6e\ \x12\x8f\xeb\x32\xfd\x4e\xf2\x66\xfe\x97\x1c\xd2\x90\x5e\x60\x38\ \xe6\x2d\xa9\xb2\xe7\x71\x0b\x48\xff\x75\x2e\xb9\x70\x56\x8d\xa3\ \x11\x42\x53\x1c\xe3\x14\xc7\xe4\x45\x69\x93\x51\xef\xc2\x12\x83\ \x1a\x8c\xa4\x17\x42\xe9\xab\x85\x0c\x58\x3b\x5b\xd1\x6d\x04\x37\ \x19\x19\x5b\x2c\xa8\x45\xdf\xfa\xa2\x21\x16\x86\xbd\x1b\x7f\x89\ \xf7\xcc\x2b\x98\x07\xc0\x02\x1e\xf0\x80\x3d\xb5\xb3\xc4\xdd\x73\ \x20\x47\xc8\x03\x49\x07\x93\x16\xfc\xd4\x63\x7b\x12\x96\x0c\x15\ \x08\x42\xb4\xd0\x21\x06\x7d\x21\x6e\x15\x69\xe5\xca\xc2\x5c\x96\ \xee\x06\xab\x65\x87\x79\x4b\xa3\x4b\x79\xba\x86\x9f\x02\x4d\xf1\ \x8a\xc3\xdc\x09\x34\xec\x41\x47\x2d\x4b\x2c\xb9\x60\xa0\x8d\x1c\ \x81\xc5\x51\x00\x36\xdc\x80\x85\x5c\x9e\x26\xb5\xc5\x49\xc9\x00\ \xd0\x8f\x37\xfb\x82\x2f\x42\xa3\xc8\xb8\x1a\x2d\x7f\xe4\x83\xb5\ \xd0\xac\x73\x3f\x47\x80\xa9\x88\x43\x8c\xb5\x91\x6c\x81\x9f\x18\ \xa1\x65\xc3\xb0\x1c\xa1\x49\xbb\x69\x23\x20\xc1\x4d\x4b\x62\xe1\ \x8d\xc0\x86\x39\xb8\xe8\xc8\x91\x74\xce\x9c\x58\x68\x40\x8e\x80\ \x5e\x01\xf0\x15\x06\x13\x60\xe6\x6d\x95\x2e\x56\x92\x97\x95\xb6\ \x40\xa3\x8a\xea\xf9\x8b\x28\xfe\xe4\x0f\x68\xee\xe2\xb4\xcf\x01\ \x9a\x31\xa3\x71\x0c\x4c\x25\x3d\x5b\xf6\xae\xd0\xd1\x90\x5e\xeb\ \x95\xe3\xda\x12\x79\x9a\x18\xb0\x9d\xee\x74\x27\x00\x61\x66\x51\ \x43\x73\x18\x4a\x80\xf0\x8f\xf7\x66\xa9\x1b\xe7\xf8\xb2\xcf\xab\ \x4b\xe3\xea\x22\x6b\x2a\x54\x34\xce\x0d\x46\x4c\x68\xf6\x52\x64\ \x25\x1c\xa6\x7d\x59\x1b\x34\x63\xd4\x7a\x65\x2c\x63\x59\x06\x72\ \xd4\xd0\x94\xd5\x57\x91\xd2\xc9\xd6\xb5\x6e\x2d\xf1\x7c\x9f\xfd\ \xec\x4e\x5c\xc5\x03\x4d\x8c\x71\x8f\x40\xa0\x0d\xfe\x40\x8e\xb8\ \xd7\xd9\xb6\xe1\x52\x7d\x38\x3a\x2b\xce\x4a\x41\x6b\xcb\xb8\xa7\ \xe0\x01\x55\x94\x6b\xa4\x36\x00\x23\x5f\x56\x89\x60\x54\xb6\x14\ \x61\xfe\x41\x67\x0a\xad\x1c\x62\x44\xb7\x56\x32\xf0\xa3\x23\xc4\ \xb6\x16\x4b\x92\xf0\x6a\x8e\x8e\xfe\xad\xc0\xa1\x2d\x8b\x6f\x45\ \x12\x92\xc3\x40\xc7\x44\xf6\x53\xce\x2e\x98\x1a\x52\xa9\x0e\xe7\ \xc4\xe9\xf2\xb3\x3a\xcf\x19\x3c\xf3\xfa\xcb\x14\xac\xc2\x71\x8f\ \x63\xea\x3d\x1c\xcd\xc3\xf4\xb6\xd0\x9e\x2d\x24\xcc\x31\x68\x05\ \x18\xe8\x10\xcd\x5a\x7a\xc7\x75\x85\x70\x6c\x2b\x7b\x75\x7a\x03\ \x7e\xe2\xf2\x06\xfc\xcb\xfe\x79\xce\x5b\xb0\xf3\xbe\x21\xfc\x2b\ \x20\x38\xc1\x40\x38\xb8\xc5\x7f\x41\x83\xee\xa9\x0e\x4f\x06\x9d\ \xb4\xf4\x39\x77\x34\x2d\x98\xfd\x4b\x1e\xae\xc2\x71\x76\x49\xb6\ \xce\xf5\x41\x46\xd2\xea\xd1\xe7\x80\xc5\x87\xde\xe5\x8c\xb2\x6c\ \x9f\x3c\x76\x49\xd3\xb2\x8e\x2a\xd4\x90\x3c\x61\x88\xef\x12\x1b\ \x83\xd3\x70\x5f\x31\xc1\x21\xba\xc4\x3d\x28\x01\x4c\x84\x26\x48\ \x1c\x60\x20\xcd\xe3\xb9\xfa\xaa\x40\xcb\x54\x14\x8b\x04\xc5\x2e\ \x98\x81\xdc\x56\x11\xf0\x60\xa8\x9e\x09\xb7\x00\xf9\x05\x8e\x7b\ \xcf\xf7\x02\x16\xc2\x56\x5d\xe4\x6a\xf3\xa6\x77\xcb\x47\xbc\x76\ \x37\xce\xd1\xec\x5b\xd3\x48\xc0\x4f\x0f\xf7\x4e\xcc\xbd\xee\x5f\ \x19\xc6\x07\x9a\x12\xa6\x72\xca\x80\x4a\x89\x7f\xf8\x49\xdb\xb2\ \x87\x2b\x46\xb7\xc0\x47\x42\xa9\x7c\xa0\xa1\x8a\x29\x48\x0d\x55\ \x68\xc9\xc4\xe6\xce\xb5\x67\xca\x45\x6d\x3f\x84\x8e\x0f\xbf\x30\ \xdf\xbe\x91\xd7\xe6\x45\x9f\xf4\xa5\x06\x0b\xc5\x52\x2c\xb5\x4f\ \xf6\x69\xdf\xf6\xdd\x4d\x02\x71\x01\x3a\x80\x09\xf9\x3c\x86\x0c\ \x5c\x4d\x17\x80\x1a\x54\xd9\xc0\xfa\xa5\x4a\x32\x98\x87\xd3\x45\ \x91\xe1\xb9\x45\x17\xfe\x94\x5f\x5e\x88\xcf\x44\xe4\xc3\x95\xd4\ \x03\xf9\x6c\x81\x0a\x66\xc2\xb5\x61\x4e\xd4\x6c\x89\x12\x00\xa0\ \x92\x85\xce\x11\xf4\x5b\xf4\x99\xd7\x6a\x69\x99\x0a\x99\x0e\xa3\ \xa5\x86\xb3\x39\xa0\xf6\x71\x1f\x02\x25\x90\x36\x14\x04\x6c\x51\ \xc6\x11\xb0\x60\x39\xd5\x03\x32\x8c\x8b\xcc\xd0\xd9\x78\x48\x56\ \xd0\x38\x9d\x95\xa8\xc1\x08\x9d\xcb\xfd\x59\x1d\x2b\x05\xcc\x16\ \x60\x09\x80\xf4\xde\x0c\x0a\x0c\x7f\x2c\xdf\x5a\x39\xdf\x6a\x89\ \x58\xb2\xa5\x15\xfc\x6c\xcd\xaf\x24\x86\x48\xb4\x0d\x11\x3a\xa0\ \xdc\x79\xdf\x75\xa0\xc3\x62\x24\x83\xac\x31\x45\x13\x8a\x51\xf5\ \xbc\xc0\x01\x79\x80\xe3\x35\x49\x92\xd4\x99\xf3\x88\x47\x09\x9a\ \x0a\xa8\x59\xc5\x30\xd0\x85\xe6\x60\x89\xd4\x80\x10\x19\x26\xdf\ \x3a\x09\x84\xf8\xfd\x59\xf3\x65\xcd\x1a\x76\xe2\xca\xa5\x95\x84\ \xb4\x5d\x45\x6c\x01\xce\xd5\x61\x11\xe2\x21\x58\x70\x01\x17\x68\ \x03\x84\xd1\x08\x9b\x90\xdf\x11\xc0\x00\x58\x40\x9e\xd5\xc9\xcb\ \x5b\x7c\x20\x74\xa9\xc5\xb5\xc5\x81\xb4\x49\x07\x25\x4d\x62\x17\ \x7c\x0f\xf9\x28\x19\x68\xac\x4a\x13\xb2\x60\xc9\xa4\xe1\xc3\x70\ \x88\x87\xa9\x4d\xfe\x27\xb2\x95\x1b\x25\x46\x03\x9a\xa2\x03\x76\ \xc2\x06\x24\x16\x08\xa0\x03\x59\xf5\x19\x84\x51\x41\x0d\x52\xc9\ \xf0\x5c\x01\xd6\xe5\xc5\xcf\x7c\xa0\x36\x11\x43\x2e\xc2\x9f\x0c\ \xf4\x9d\x71\x11\xa2\x5e\xe4\x83\xf8\x50\xc6\x5f\xe0\x0a\xae\x50\ \x44\x1c\xb4\x22\x53\x38\x06\xd6\xd4\x42\x0e\x9e\x44\x2d\xac\x56\ \x0a\xa8\xd6\x6a\xfd\xa3\xbf\x69\x44\xe9\x51\x23\x35\x46\x1b\x17\ \x38\x15\x17\x44\x07\x2b\x46\x06\xd7\xf5\xde\xf9\x79\xc5\x30\x6c\ \x94\x1a\xd4\x96\xe3\xd9\x80\x08\xf0\x0c\xe5\x08\x81\x10\xa8\x01\ \x62\x49\xc7\x06\xa0\xc5\x1e\xe4\x03\x15\x0c\x08\x3e\xfe\x05\xf9\ \x45\x46\x39\x89\x1f\x94\xa9\x55\xc3\xa4\x8d\x6d\xac\x61\x6a\xd1\ \x92\x27\x0c\x21\x42\x9a\xa2\xdc\x2d\x24\x9a\x79\x80\x40\xc4\x22\ \xa9\x51\x81\x27\xc8\x9e\x57\x70\xc1\x15\x0c\x03\x9d\x60\x89\x1a\ \x74\x60\x46\xa9\x45\x9f\x0d\x44\x17\x04\x09\x7e\x15\x50\x1e\x70\ \xdd\x44\x50\xc6\xc9\xc9\x00\x15\x6c\x81\x36\x68\x63\x84\x89\x56\ \x0e\x7a\x58\xda\xa4\x16\x40\xfa\x23\x3f\x4e\x63\x4e\xd6\x61\x27\ \x4c\x05\x08\xf0\xa4\x43\x81\x80\x37\x48\x1b\x08\x78\x53\x18\x3a\ \x5c\x51\xca\xfe\x8c\x37\xa9\x41\x9d\x11\x83\x36\xb1\x06\x7e\xc4\ \xc7\x11\xd8\xa5\x33\xf5\x9c\x55\x78\x83\x12\xa0\x83\x36\xf8\x05\ \x31\x82\x46\x3c\xd4\x8d\xc2\x41\x06\x28\x52\x1a\x41\xda\xc6\x3f\ \xea\x53\x45\x18\x80\xe9\xa5\x65\x35\x9a\x40\x13\xe2\x02\x20\x38\ \x87\x5b\x4a\xca\x23\x39\x22\x55\x24\x1c\x5f\x74\xa0\xe2\xa8\x87\ \x7b\x00\x08\xb9\x29\x50\xcb\x58\x45\x26\x68\x43\x62\x8a\xd5\x80\ \x1c\x01\x3a\xec\xc1\x2f\x2c\xe4\x30\x9c\x40\xc9\xf8\x47\xbf\x99\ \x84\x6c\x91\xc6\x64\x62\x02\x5a\x6a\xa6\x29\xea\x8e\x7c\x14\xc8\ \x07\x68\x03\x20\x28\xd2\xcb\x1c\x97\x99\x59\xc5\x42\x5a\x05\x20\ \x7c\xcf\x5e\xac\x5f\x5d\xb0\x06\xaa\x0c\x0d\x19\x64\x82\x68\x3a\ \xa2\x37\x9c\x00\xf5\x30\x45\x1c\xc4\x03\x6e\x2e\x64\x43\x9e\x40\ \xbf\x88\x96\x87\x99\xe5\x1a\xce\x52\x1c\x1c\xa4\x71\x6a\xa6\x21\ \x31\xc5\x56\x9a\xa7\xca\x84\xe6\x77\x6a\xc5\x8d\x20\x00\xb7\xf8\ \xce\x1e\xe4\x81\x37\x74\x65\x1c\x28\x81\x1a\x78\xc3\x03\x2d\x0e\ \x7e\x7c\x60\x32\x6c\xcf\x16\xc4\x98\x74\x78\x43\x3c\xa4\x14\x8d\ \xc4\xc3\x2f\x5c\x28\x4f\xfe\x82\x36\x98\x93\xbd\x09\xe7\x49\x50\ \x9a\x70\xfe\xca\xe7\x7c\xd2\xe7\x31\xc9\x0d\x15\x9c\xc0\x61\x02\ \x02\x43\x81\xc5\x55\xc0\xe5\x30\x18\xe5\x30\xb4\x03\x1c\x68\x83\ \xef\x74\x65\x3d\xc8\x26\xd0\x51\x41\x17\xa8\x81\x36\xc0\xc0\x1e\ \xb4\xc7\x7b\xe8\x15\x0c\xc4\x82\x5f\x50\x81\x60\x1a\xcf\x61\x01\ \xc2\x6c\xca\xc0\x09\x04\xc3\x85\xe6\xe6\x56\x48\xa0\x39\x8d\x98\ \x5a\xa5\x96\xdb\x8d\x28\x96\x22\x67\x80\x30\x69\x57\x7a\x83\x37\ \x40\x83\x8a\x02\xce\x1e\x38\xc2\x80\xe2\x28\x62\xde\x48\x3b\x00\ \xa8\x06\xf8\xce\x16\xa0\x03\x1c\xc0\x81\x1e\xda\x66\x68\x68\x03\ \x34\x68\x43\x85\x89\x8a\x27\x94\x93\x37\x40\x68\xf1\x5c\x01\x17\ \xc0\xc1\x09\xa0\x52\x30\xec\x81\x06\xc0\xc1\x93\xaa\xa2\x86\x8e\ \x61\x41\x28\x9b\xaf\xd8\xc6\xfe\x64\x26\x96\x26\x64\x89\x3a\x85\ \x10\x28\x41\x57\xc6\x29\x62\x9e\x00\x9a\x50\x8f\x0c\x1c\x44\x81\ \xa0\xc3\x85\x3a\x02\x6e\x12\xea\x2f\xec\x41\x3c\x20\x26\x9c\x32\ \x88\x1e\x2a\x41\x17\x68\x03\x3c\x62\x89\x2d\xf9\x28\x0c\xdc\xe3\ \x16\x14\x9d\x75\x40\xd4\x1e\x9c\x80\x2d\xb8\x29\x1c\xe0\x82\x36\ \x04\x83\xa1\xa2\xe7\x1e\x9c\x64\x53\xc4\x15\xd7\x90\xc6\xdb\x45\ \x6a\xfe\x96\x4e\x6a\x53\x20\x66\x57\xa2\xe8\x09\x88\xcf\x49\x1e\ \x48\xf9\xfd\x85\x10\xd4\x48\xa9\xc2\x01\xa1\xe2\x26\x9c\xea\x42\ \x3c\xc0\x41\x0c\x9c\x00\x62\x2a\x01\x83\x58\xa7\x36\x74\x41\x3b\ \x25\xc3\xfa\xf5\x07\x15\xc8\xe2\x12\xfd\x69\x9b\x02\x6b\x3c\x98\ \x27\x86\xaa\xa2\x36\x78\xce\x3d\x06\x60\x9b\xfc\x23\x66\x2a\xab\ \xb2\x6a\xa9\xdc\x9c\x80\x37\xa0\x03\x62\x12\xac\x6c\x42\xab\x12\ \x90\x81\x10\xa4\x09\x83\xe0\xa6\x23\xb4\x83\xa8\x06\x03\x2e\xc0\ \x41\x3c\x88\xeb\x9b\xc2\xc1\x80\x86\xdf\xb5\xba\xa0\x36\x94\xd0\ \x75\x82\x90\x12\xd8\xaa\xde\xc8\xc2\xa9\xc6\x43\xa1\x9a\xac\x2a\ \x6a\x00\x2e\x4c\xa8\xa1\x7a\x83\x0d\x42\x59\x7c\x42\xaa\xbf\xe6\ \x24\x00\x31\xc5\x6d\x6a\x83\xb8\xc6\x00\x3a\xc4\xc0\xa5\x9e\x80\ \xa6\x9e\x28\x3a\xf8\xac\xa1\x5e\xe8\x1e\xc0\x81\x06\x1c\x2d\xc5\ \xba\xa9\x23\x38\x02\xa0\x2a\x87\x0c\x1c\x66\xc7\x22\xa6\x5e\x68\ \xc3\x44\xa9\x81\x56\xee\x01\x34\x39\x42\xd0\x4e\x2c\x2e\xe4\x66\ \xa9\xae\xec\xc9\x00\x00\x17\x28\xea\xe5\x1d\x41\xb2\xce\xec\xbf\ \x92\x0c\x53\x28\x01\xc6\x6a\x03\xb8\x2a\x81\xb8\xee\xac\xcf\x66\ \xfe\x06\xc1\x26\xcc\x09\x18\xaa\x23\xe0\x82\x06\x3c\xa9\x06\x68\ \x43\x39\x0c\xc0\x9b\x6a\x83\x2e\x4c\xab\x99\x86\x06\x3a\x84\x21\ \x22\x0d\xab\x19\x74\x81\x7e\xba\x0c\x17\xe4\x2a\x3a\x04\xc3\xd1\ \x3e\x29\xb0\x62\xad\xd8\x4e\x20\x53\xfc\x85\x88\xa2\x6d\xda\x36\ \xc5\x07\x38\xc2\x2f\xc8\x02\x20\x00\xea\x07\xf8\xec\x09\x98\xc9\ \x81\xe8\x02\x6f\xca\x07\xa8\xfe\x82\xa8\x4e\xee\x2f\x24\xed\xbc\ \xaa\x2e\x9a\x7c\x40\xd0\x4a\x44\x81\x6c\x89\x36\x78\xc3\x1e\x84\ \x5f\x6b\x42\x13\xce\xfe\x2a\x6e\xfe\xc2\x9a\xee\x2d\x7a\x3a\xc2\ \xea\x12\x04\x2c\x70\x2e\xf3\x26\x47\x41\x1c\x81\x23\x68\x85\x86\ \xce\xed\x07\x38\xc3\x81\x90\x81\x33\xf8\x6c\x41\x94\xc3\x2f\x00\ \x00\xf1\xee\xad\xd7\x02\x6b\x30\xa0\x43\xf6\x26\xd9\xc2\xe2\x0a\ \xbb\x7a\x06\x83\xd4\xe9\x16\xfc\x05\x3a\x88\xac\xde\xfc\x02\x3a\ \x9c\xea\xd0\x12\x6f\x3b\x74\xaf\x56\x3c\xee\xea\xc2\x82\xcc\x32\ \xaf\x71\x1a\x12\x15\xc0\x01\x17\x30\xad\xe9\x9e\x00\x1f\x1c\x08\ \x1f\x9c\xe8\x00\x9c\x40\x2b\x7e\x80\x06\x70\xc1\x85\x82\xef\xf7\ \x16\x6a\x30\x54\xac\x2d\xfc\x85\x2d\xd8\x0a\xab\x68\x65\x39\xfe\ \x7d\x40\xd4\x1c\xee\xc2\x6a\x83\x43\xe1\xec\xfc\xe6\xe6\xd1\x3e\ \x30\x57\x48\xa0\x19\xb8\x83\xff\xb6\x70\xb6\x08\xc1\x09\x10\xf0\ \x07\xd0\xc1\x99\xd8\xc2\xf5\xfa\x2c\x1f\xb4\xa2\x0c\x0c\x00\xdf\ \xf2\xad\xe4\x52\x30\x1c\x0c\xae\x21\xe8\x6a\xc2\xc8\x07\xf5\x14\ \x88\x37\xf2\xa8\x12\x78\xa3\x07\x40\x92\x04\xda\xee\xc9\x68\x40\ \x3c\x48\x6e\x68\x6a\x00\x15\x2c\x6f\x0b\xbb\xf0\xee\x50\xc1\x00\ \xa0\xc3\x07\x5c\xc6\x07\x24\x30\x1d\xe8\x2a\x19\x90\xc1\x28\xa4\ \xa4\x33\xec\xed\xe4\x9e\x70\x30\xfc\x2a\xf8\x0e\x80\x0d\x3b\x03\ \xb1\x02\x6d\x8e\x2e\xec\xcd\x92\xeb\xfb\xbe\x2b\x3a\xec\xea\xbc\ \x9e\xaa\xde\xe6\xaf\x56\x68\x00\x2d\xf4\x6f\x16\x8f\xa8\x8c\xa0\ \x81\x2e\x5c\x2f\x15\x8c\xc2\x89\xea\x02\x1a\x10\xab\x53\x38\x83\ \xe4\x06\x03\x25\x9f\x30\x2e\x0c\x80\x93\x46\xb0\x2e\x0c\x40\x39\ \x5c\x30\x15\xec\xaa\xe9\x12\xcd\x72\xee\xc1\xc2\xa1\x09\xd1\x45\ \xa0\xcf\xf6\xf1\xbc\xa2\xb0\x2a\x2e\xa4\x2c\x14\x32\x2c\x23\x4a\ \xf5\x7e\xf1\x49\x0a\xc1\x07\xe8\x82\x2e\x38\x03\x3e\x36\xc5\x11\ \x4c\x32\x2e\x50\x32\x25\xf7\xf1\xde\x3a\x42\xa1\x16\xaa\xfe\x2e\ \xd8\x82\x33\x1c\x81\x2d\x7c\xf2\x0d\x9c\xe4\x11\x68\x6b\x62\x2a\ \x67\x1e\xeb\x8d\x06\xa4\x72\x3c\x94\x83\x93\xa2\xa7\x2a\x02\x80\ \x2c\x10\x32\x2c\x67\xa9\x39\x68\x2a\x84\x79\xe4\x81\xf8\xac\x72\ \x40\xc6\x28\x4c\xf1\x25\xcf\xeb\xca\x5e\x73\x39\xfc\xed\x0f\xc3\ \x41\x39\x64\xef\x32\x8f\x82\x0c\x7c\xc0\x05\xcb\x80\x33\x50\xac\ \x40\xa8\x24\x15\xa0\x03\x20\x34\x2e\x75\xfc\x42\x3c\x1c\x81\x33\ \x38\x83\x2d\x4c\xb1\xd7\x3e\x69\x2a\x7c\xb3\x43\x77\x82\x39\xb4\ \xa2\x41\xcc\xf0\x09\xe8\xc2\xee\x5c\xce\x26\x0f\x40\x1f\x57\xf0\ \xbc\x1e\xf4\x3b\x6b\x80\x23\x94\xc3\x07\x30\xf2\x22\xcb\x47\x32\ \x77\xe3\xb7\x2a\x26\x07\x7b\xe3\x1e\x08\x74\x57\xc4\xee\x41\xc7\ \x03\x42\x27\xf4\xde\x06\xc3\x3b\xab\x98\x43\x7f\xb3\x21\x09\xc1\ \x01\x57\x2f\x1a\x8c\x02\x53\x00\x35\x41\x8c\x82\x24\x73\x34\x25\ \xb7\xb3\x33\x5c\xb3\xc9\xfe\xc2\x00\xc8\xb1\x2d\x98\xb1\x10\x0c\ \xb1\x33\x10\x44\x00\xc3\x81\x1c\xff\x33\xd0\xd5\xae\x9b\x26\x12\ \x7a\x8a\xad\xd8\x16\xaa\xae\x1e\x41\x39\xc8\xb4\x21\x50\x41\x52\ \x53\xb2\x33\xb8\x83\x37\xe7\x74\xe7\x82\xf1\x28\x40\xfe\x75\x53\ \x8c\x82\x50\x3b\x03\xe0\x72\x72\x30\xcf\xeb\x58\x5f\xb3\xe4\x36\ \xb5\xf5\x9e\xf1\xc2\x5a\xef\x49\xda\x82\x36\x54\x6c\x52\x13\x6a\ \x57\x52\x4f\x1c\x6c\xea\x09\xc8\x66\x3c\x74\xa5\x33\x20\xcc\x32\ \xdb\xc2\x58\xdb\x82\x0c\x18\x02\x32\xef\xed\x01\xb0\xb5\x66\xeb\ \xce\x65\x28\x87\x47\x9a\x92\x24\x6b\x34\x26\xab\xf2\x14\xbf\xf3\ \x3b\xf7\xf5\x80\x9c\xf1\x22\x17\x88\x33\xa8\xee\x09\x58\xe8\x85\ \x0e\x36\xc1\x66\x8d\x44\x3f\x46\xa9\x44\xf5\x4c\x3b\xc3\x1e\x5b\ \xf6\x52\x77\xb3\x66\x6f\xb6\x09\x8c\xf4\x53\xd0\xf0\x8c\x7c\xc0\ \x00\x1c\x77\x3c\x68\xf4\xbc\x02\xb3\x4d\x1f\x34\x42\x1f\x44\xf5\ \x0a\xf5\x28\x18\xb7\x52\xcb\xc2\x42\xc6\xae\xb6\xae\x29\xce\x4a\ \x44\x3c\xe0\x82\x57\x52\x41\x5e\x1f\x34\x32\xc7\x74\x6e\xbe\xf2\ \x6f\xff\xf6\x4e\xeb\x82\xda\x16\x44\x50\xc3\x81\x4d\x2b\x77\x1f\ \x63\x33\x27\xcf\xf3\x4c\xf3\x41\x39\x0c\x6e\x41\xd8\x82\x2e\xbc\ \xa9\x93\x7e\x35\xc5\xd2\x28\xdf\xb6\x34\x17\x68\xc0\x32\x9b\xac\ \x06\x34\xf7\x09\x38\xc3\x58\x3f\xb0\x6f\x9f\x37\x7a\x2f\x05\xf6\ \xae\xb7\x5c\xb7\xe2\x28\xd4\x75\x05\x73\x34\x7d\xfe\x8f\xf5\x3c\ \xdf\x77\x6b\x0f\x40\x35\x4b\xb4\x2d\x00\xee\x9b\xba\xae\x46\x53\ \xac\xd1\x62\x68\xf7\x0e\x78\x82\x3f\xb0\x06\x28\x37\x42\x27\xb5\ \x06\xa4\xc2\x5a\x3b\x38\xe7\x2a\x85\x10\xc8\xb5\x53\x9c\x71\x41\ \xe8\x42\x8b\x07\x03\x7c\x7b\x74\x72\xcf\xb7\x69\xc3\x81\x23\xc0\ \x71\x2b\x92\xc1\x71\xdf\x37\x26\xbf\xa9\x14\xcb\xa6\xb6\x12\xef\ \x85\xc6\x43\x42\x3b\xa9\x14\xdb\xb4\x2d\x8c\x82\x64\x67\x36\x8d\ \xd3\xb8\x8d\x3f\x45\xe6\xe2\xe3\x28\xf0\x38\x26\xc3\x37\x5e\x27\ \x37\x25\x0b\xf9\x30\xeb\x82\x50\x0b\xc1\x3e\xbf\x33\x72\xbf\x29\ \x7c\x13\xec\x0f\x4b\x39\x8c\x1f\xb8\x4d\x1b\x02\x96\xbb\xc2\x8c\ \x6f\x79\xf3\xd2\x81\x19\xcf\x08\x5d\x1f\x00\x72\x4f\xb1\x52\xbf\ \xf3\x5e\xdf\xf7\x26\x13\x73\x39\xe8\xb8\x19\xd0\xf5\x71\xc3\xc1\ \x02\x3b\x37\x72\x23\xf4\xfc\x72\xf4\x72\x03\x73\x27\x1b\x02\x0b\ \xf3\x39\x9f\x77\x82\x09\xdc\x78\x80\xb0\xf9\xdf\x1e\x77\x30\x6b\ \xf8\x14\x1f\xed\x71\x63\xb2\x23\x70\xc1\x00\x08\xb5\x19\xd8\x37\ \x2e\x43\xfa\x00\xe8\x02\x3a\x78\xf8\xd1\x76\xf4\x59\x53\xf2\x58\ \xdb\xf4\x3c\x1b\x02\xff\x72\x3a\xa7\x77\x79\xfe\x80\x84\x39\xa9\ \xef\xad\x3b\xbb\xb9\x87\xa7\xba\x06\xc8\x82\x2c\x0c\xc0\x39\x13\ \x84\x0d\xef\x37\x31\x43\xfa\x30\x13\x6f\x05\x23\xb3\x81\xf3\x3a\ \x7d\xab\x35\xb0\x03\x3b\xc0\xa2\xb3\x82\x7b\xf8\x85\x72\xb2\x47\ \xff\x6d\x8b\x8f\xfa\xb2\xb7\x7a\x5c\x1f\x34\xe0\xe6\xf2\x09\xd8\ \xba\x2c\x10\x6f\x39\x18\x82\x21\x14\xf5\x14\x73\xb2\x2d\xb8\x42\ \xb7\xef\x7b\x7d\x52\x2a\x1f\xd0\xb5\xd1\x3a\x42\x30\x28\xb8\x69\ \xcb\x37\xbb\x27\xb9\x74\x9b\xc1\x28\x54\xb4\x2e\x94\x43\x92\x85\ \xb9\xd1\xaa\xf1\x3c\xcb\x75\x42\x63\xb2\x4d\xeb\xf9\xbe\xf3\xfb\ \xa4\xee\x72\x88\xbb\xf7\x81\xe7\xb5\x3b\xfb\xb8\x2d\xf0\x01\x32\ \xe3\xf2\xee\xe0\x38\x4f\xa7\xba\x9a\xef\xf3\xb2\x13\x6f\x53\xe3\ \xb9\x19\xd4\xfb\xa9\x6b\x79\xc6\xf3\xfb\x45\x3f\x85\xab\xb3\x39\ \xb5\x6b\xc0\x3b\x5f\xb3\x64\x1f\xad\x33\x8c\xc2\xbf\xb7\x76\xd0\ \xbf\x35\x50\xef\x33\xa4\xe7\x72\x39\x80\xb4\xcb\xf3\x01\x8e\x2b\ \xfc\xcf\x37\x78\xcd\xf3\x3b\x1d\xec\x32\x53\xf0\xc1\x26\x43\x7a\ \xcf\x1b\x7a\xe8\x6e\x78\xc3\x5b\xb4\xd0\x17\xbd\x33\x1c\x40\x10\ \x1f\xf4\x7e\x2f\x7b\x48\xbb\xba\xc2\x8f\xfe\x82\x21\x60\xfc\xd4\ \xd7\x7c\xbf\xaf\x7b\x92\x2b\xb8\x5e\xa3\x7a\xc3\x2b\xb9\x33\x60\ \x7d\x53\xdb\x77\xa1\xe6\xbd\x7e\x0f\xc0\xaa\xff\x82\x9a\x3f\xbd\ \xf2\xbe\xbd\xe1\xd7\xac\xdc\xe8\xb7\xa9\x7f\x74\x8b\x13\xfd\xdf\ \xe6\x7d\xbb\xf3\x01\xe0\x0f\x00\x1d\x10\x35\xe0\x2e\xfb\xc7\x07\ \x3d\x53\xfc\xba\xe1\xbf\x7d\xdc\x07\x75\xb8\x17\xba\x93\xca\xf3\ \x3b\x6f\xb2\xd9\x6b\x40\x2e\x03\xbe\x06\xe4\xbd\xde\x1f\xb7\x06\ \x1c\xc0\xde\x4e\xb5\x19\x60\x71\xe7\x1f\xfe\xb3\x9b\x68\xe8\x9f\ \x3a\x89\x1f\xb7\x73\x3b\xba\x92\x13\x73\x53\x0b\xfd\xc8\xd3\xb5\ \x06\x88\xed\x01\x8c\x02\xe7\xd7\xfe\xe1\x93\x8c\x0b\x54\x7d\x50\ \x67\xf4\x81\x9f\x70\xa1\xf2\x75\x87\x1f\xf7\x26\xbb\xae\x55\xe3\ \x38\x96\x03\xae\x2c\x78\xef\xa6\x2b\x7f\xed\x67\x4b\x98\x87\xdf\ \x50\x17\x75\x8b\x7b\x38\xb5\xf3\xf5\xd2\xb7\x78\xc3\x8b\x7b\x8b\ \x5f\xb4\xe5\x8b\xbb\x8c\x83\x3f\xf8\xcb\x08\xe1\x0b\x81\x7e\x9f\ \x70\x92\xaf\x7f\xea\xa3\xfa\x3c\xf3\x30\x40\xc8\xfa\xa5\xc1\xd9\ \x28\x83\xce\xca\x95\x1b\xe0\xaa\xd3\x3f\x87\x0f\x21\x46\x94\x38\ \x91\x62\x45\x8b\x17\x31\x66\xd4\xb8\xfe\x91\x63\x47\x8f\x1f\x29\ \x76\xa2\x23\xc4\x4c\x49\x93\xce\xe0\x68\x50\x59\xce\x96\xae\x95\ \xce\x06\xa8\x1c\x30\x40\xa1\x86\x5f\xb2\x34\xb0\x3c\xa8\xd0\x15\ \x48\x9f\x3f\x81\x06\x15\x3a\x94\x68\xc6\x4e\x7c\x4c\x9a\x1c\x55\ \x4e\x66\x41\x94\x39\x61\xc6\x9c\x39\x20\x98\x06\x47\xbf\x06\x96\ \x73\xb6\xb5\x1c\xc3\xa2\x5f\xc1\x86\x15\x3b\xf6\xa3\xc8\xa4\x66\ \x84\x30\xd5\x00\xc7\x96\x99\x51\x03\x1c\x4d\xd5\x40\xb3\xaa\x4a\ \xac\x38\xb1\xd2\xec\x49\x96\x6f\x5f\xbf\x7f\x83\x76\x72\x91\x34\ \x6d\xd5\x60\xb6\x84\x8c\xaa\x5a\x73\x6e\xcd\x81\x2a\x6d\xfe\xe2\ \xa2\xc1\x2b\x60\xcb\x97\x31\x67\x36\x5b\x52\x86\xb3\x78\x2b\xdd\ \xea\x1a\xa0\x8b\x69\x5c\x85\x55\x07\xc2\xa9\xca\x85\x4b\xaa\x86\ \x99\x61\xc7\x96\xfd\x75\xb3\x19\xcf\xa0\xcd\xd8\x4a\xa8\x81\xcb\ \xaf\x60\x33\xeb\xce\x8d\x09\x40\xd6\x6c\xe3\xc7\x91\x77\x14\xec\ \xb6\xdc\xe7\x5f\xe5\x46\xe5\xde\x7d\x53\x26\xf0\xdf\x55\x5d\x27\ \xd7\xbe\x9d\xbb\x43\x91\xb6\x60\xaa\x3c\x3c\x0a\xa1\xda\x9b\xbe\ \xaf\x07\xfb\x7d\xa0\x7b\x7b\xf7\xb3\x3b\x91\x8e\x67\xd8\x99\x21\ \x84\xea\xad\x62\x15\xaf\x3e\x58\x8b\xe5\xf7\xff\x01\xf4\xab\x13\ \x9a\xa8\x0a\xc6\x19\xdd\x7e\x9b\xc9\x2e\xfd\x34\xe8\xef\xb5\x00\ \x21\x8c\x10\xac\x01\x0b\xa4\xa9\x9c\xdf\x12\xaa\x0b\xab\x81\xd8\ \x93\xd0\xc3\x0f\x85\xea\x44\x35\xf5\x06\x98\x8f\xa5\xfb\xec\xd2\ \x20\x3b\x10\x59\x6c\x51\xb9\x03\x62\x6a\x30\x21\x84\xa8\x92\x29\ \x15\x17\x71\xcc\x11\xa3\x4e\x1a\x34\x2c\x43\xc3\x06\x38\xe0\x41\ \x1d\x89\x2c\xf2\x9f\x4e\x60\x2c\x10\xbf\x06\xfd\x33\xd2\xc9\x1c\ \x07\xbc\x50\xc1\x06\x3b\x7c\xd2\x4a\x28\x5d\x89\xe9\xba\x26\xaf\ \xec\x12\x44\x24\x7f\x8b\xa7\x4a\x2f\xc9\xfc\xd2\x91\x60\x84\x2c\ \x73\xac\x80\x00\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\ \x00\x00\xf0\x00\xf0\x00\x87\x04\x02\x14\x20\x87\xba\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\x88\x8d\x93\x4a\x35\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc8\xf6\xff\xff\xff\xff\xff\ \xff\xde\x93\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x0f\x27\x1f\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x9a\xa6\xba\x73\x11\xa6\x57\xa8\xe4\x54\x68\x1e\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd6\xc9\xe1\xce\x66\x46\xff\xff\xff\xf6\x89\xb9\xd5\x10\x11\xf7\ \xa8\xb8\x9b\xf1\xfc\x90\x69\xb4\xff\xff\xff\xff\xff\xff\x12\x2a\ \xe3\xff\xff\xff\x4e\x68\xf8\xff\xff\xff\xfa\xc8\xe4\xd9\xe8\xf9\ \xff\xff\xff\xff\xff\xff\x98\xc8\xfa\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf9\xe8\xef\xf6\xb2\xf0\xd8\x88\xf1\ \x7b\x89\xad\xb7\xc8\xef\xff\xff\xff\xb3\xa8\x72\xff\xff\xff\xb3\ \x67\xaa\xff\xff\xff\xfb\x8e\x5f\xff\xff\xff\x6b\x6a\x25\xff\xff\ \xff\xb7\xb4\xf3\xff\xff\xff\xff\xff\xff\x70\x69\xe4\xff\xff\xff\ \xff\xff\xff\x39\x56\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x95\x95\xf4\x09\x17\x62\xff\xff\xff\x5b\xb8\ \xea\xff\xff\xff\xd7\xd8\xec\xff\xff\xff\xff\xff\xff\x99\x93\x82\ \x98\xb1\xf9\xfb\xfd\xfa\xff\xff\xff\xff\xff\xff\x7d\xf4\xfc\xff\ \xff\xff\x04\x0e\xd6\xff\xff\xff\xfa\xd8\xeb\xda\xae\xf8\xba\x8f\ \xf3\xff\xff\xff\x74\x89\xf8\xb7\xd8\xfa\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xf4\x99\xb5\xff\xff\xff\x32\x49\xec\x7c\x95\x45\xff\ \xff\xff\xfa\xb8\xbd\xfb\xd0\xa6\x38\x69\x95\xdb\x98\xf4\xff\xff\ \xff\xb2\x68\xec\xf5\x07\x08\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xc1\xe6\x97\xff\xff\xff\xff\xff\xff\xb4\x12\x18\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x6f\x58\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x94\x68\xfa\xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\xff\xff\ \xff\xff\xff\xff\x7a\xcc\xf9\x58\x93\xea\x78\xb4\xf8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xfb\xaf\x87\xf9\xec\xba\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\x71\x6c\xff\xff\ \xff\x29\x7b\xca\x7f\xa2\x68\xf8\x91\x8c\x40\xb6\xef\xff\xff\xff\ \x9e\xb6\x79\x9a\xd8\xfb\xff\xff\xff\x1f\x97\xca\xff\xff\xff\xd3\ \x3a\x30\xff\xff\xff\xff\xff\xff\xde\x97\x94\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x15\x39\x1e\xff\xff\xff\x57\x76\x27\ \x54\x78\x9d\xff\xff\xff\x12\x78\xa8\xff\xff\xff\x8e\x7a\xa3\xff\ \xff\xff\x19\x37\xdf\xff\xff\xff\x58\x75\xfb\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7b\xf5\ \xff\xff\xff\x47\x5b\xf5\xff\xff\xff\x2c\x39\x98\xb1\x58\x38\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x59\x5e\ \xff\xff\xff\x72\x59\x65\xff\xff\xff\xff\xff\xff\xff\xff\xff\x36\ \x76\x6a\x96\x98\x53\x98\x98\xb6\xff\xff\xff\xff\xff\xff\xbb\xb7\ \xb8\xff\xff\xff\xd8\xfb\xfc\xef\x79\xa9\x7e\x96\xb4\x37\x96\xc1\ \xff\xff\xff\xff\xff\xff\xb0\x78\x44\xff\xff\xff\x7d\x97\xf9\xb1\ \x78\xf9\xff\xff\xff\xff\xff\xff\x92\x5c\xf6\xff\xff\xff\x93\x78\ \xf4\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\ \xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x48\ \xb1\xa2\xc5\x8b\x18\x33\x42\xfc\xf3\x47\xa3\xc7\x8f\x20\x43\x8a\ \x1c\x49\xf2\xdf\x89\x78\x27\x3a\x96\x5c\xc9\xb2\xa5\xcb\x97\x0f\ \xff\x88\x39\xf3\xa9\xde\x09\x98\x38\x73\xea\xdc\x89\x11\xd7\x99\ \x9f\x67\x32\x70\xe4\x49\xb4\xa8\x51\x9e\xb8\x3e\x01\xfd\xd9\x4e\ \x9c\xca\xa3\x50\xa3\x4a\xcd\x78\x22\xc3\xd2\x14\x9c\xb0\x1a\x18\ \x3a\xb5\xab\xd7\xaf\x07\xff\x88\x5b\x7a\x06\x6b\xd6\x14\x62\x52\ \x82\x5d\xcb\x36\xea\x89\xb2\x29\x52\x94\x85\x1b\x17\xab\xd3\xa7\ \x6d\xf3\xea\x65\x89\xcb\x48\xdd\xbf\x58\xe5\xc6\x25\x22\x06\xef\ \xde\xc3\x88\x33\xfe\x81\xf7\x8e\xd3\xd9\xb3\x75\xcf\xd0\x4a\x41\ \x8b\x56\x0d\x5c\x86\x13\x6b\xde\xcc\xf0\x0f\x2e\x32\xef\x1a\x43\ \x96\x0b\x97\x16\xa7\xc9\x67\x42\xd5\xcb\xcc\xb9\xb5\xeb\x7f\xb8\ \x46\x84\x6e\xdc\x98\x34\xd0\xca\xb8\x81\x66\x50\xfb\xba\xf7\xe6\ \x13\xed\x68\xbf\x03\x5d\x7b\x69\xac\x05\x9f\x6c\x97\x35\xe2\xd4\ \xb7\xf3\xbd\x62\x1d\x3b\x0e\x4d\xa6\x7a\xe3\x9f\x0b\x8a\x05\x58\ \x30\xb7\xae\xe3\xad\xcf\xc3\xfe\x83\xf5\x1c\x57\x3a\x27\xea\xc4\ \x39\x9d\x59\x10\xc0\x16\x5c\xb8\xd3\x65\x00\xc1\x2c\xbe\x3e\x54\ \x8e\xed\xcc\x3b\xc6\x3a\x3c\x3d\xd0\xf3\xb5\x99\xd6\x1f\x19\x6b\ \x90\xc0\x9a\x7d\x08\xba\xf4\x07\x09\xb3\x9d\xb7\x5f\x79\xb3\x89\ \x36\x5d\x75\x8e\x55\x67\x21\x19\x40\xa0\x70\x53\x82\x1c\x2a\x68\ \x40\x83\xfa\x95\x35\x61\x83\x71\x0d\x78\xe1\x85\x79\xd0\xd7\xe1\ \x8a\x22\x71\x64\x9a\x79\x29\x90\x58\x1e\x80\xa0\x49\x77\xe2\x8d\ \x04\x1a\xb0\x21\x8b\x3c\x52\xe5\xd7\x74\xa2\xf5\x27\xda\x4f\xfc\ \x59\x47\x1b\x8e\x37\x1a\xa0\x62\x8f\x4c\x4a\xf4\x47\x70\x00\x0e\ \x27\xe5\x85\xef\xd8\xc6\x89\x91\xe8\x21\x79\x21\x10\x06\x36\xe9\ \x65\x4c\x51\x6a\x69\x9d\x60\x57\x8a\x29\x26\x97\x07\x7e\xa9\xa6\ \x67\x93\x01\x48\xa3\x89\x16\x86\x86\x95\x99\x74\xae\xb1\xa4\x9a\ \x78\xfe\xf3\x87\x3a\x40\x99\x15\x26\x92\x15\x1a\x49\x27\x8e\x76\ \xa6\x99\xe7\x8a\x9e\xd1\x35\x1a\x90\x48\x52\x27\xda\xa0\x38\x02\ \x41\x07\x6f\x87\xf6\xf8\xc7\x35\x4a\x79\x77\x16\x7c\xe7\x99\x99\ \xe5\x89\x40\x84\x6a\x26\x9a\x95\xf6\x58\xd5\x55\xa1\x49\x27\x98\ \x9f\x8d\x41\x3a\x82\x3a\xfe\xed\xec\x32\xc2\x1a\x74\x02\xc1\x8a\ \xa1\xa5\x3a\x27\x13\x59\x22\xa6\x9a\xd5\xaf\x0e\x8e\xa8\xa5\x3a\ \x12\x00\x70\xc0\x2e\x6b\x00\x01\x69\x0c\x77\xe6\x1a\xde\x1f\xc7\ \xbc\xb7\x94\x74\xa9\x46\x08\x1a\x84\x9f\x5a\x38\x02\x30\x00\x48\ \x60\x80\xb2\x90\x56\x57\xa8\xb3\xf5\x25\xc5\x2b\xa7\xd4\x52\x79\ \x56\xab\x70\x02\x41\x0e\x00\x00\x88\xf3\x45\xb8\x5b\xe6\x41\x29\ \xb9\xaf\x01\xc7\xeb\x8c\x0e\x16\x19\xa7\x7a\x66\x65\x3b\x04\xbc\ \x07\x8c\x40\xef\x8d\x29\xe2\x8a\x6f\x5e\x89\xee\x6b\x9e\x84\x82\ \xd6\xe8\x5d\x96\x32\xbc\x0b\x00\x39\x07\xe3\x98\x07\x78\x0b\x73\ \xe6\x13\x59\xab\xd6\x25\xa1\xb5\xff\x42\xa8\x6d\xb1\x00\xec\x92\ \x31\x92\xb0\xdc\xdb\x31\xc3\xb8\xc0\xb1\x29\x60\x9b\xee\xe7\xe0\ \x6c\x54\x42\x5c\x5d\x3b\xc5\x4a\x50\xca\x89\xa6\x90\x11\x74\xc6\ \x28\x74\xf9\xb2\x5e\x7f\xb0\xe2\xe6\x63\x33\x86\xec\x27\x8d\x39\ \x0f\x98\x41\xb1\x07\xd0\x7a\xa1\x29\x41\x67\x7d\xf0\x7c\x5c\x1d\ \x3d\x1e\x2b\x53\x4a\x38\xb1\xd8\x4f\x57\x08\xe7\x85\xc4\x02\x50\ \x0f\xb8\x42\xb7\x8d\xf5\xca\xd5\xe9\xd1\xac\xd7\x51\x79\x66\xb5\ \x91\x0f\x9e\x71\xb3\xfe\x7e\x7c\x0f\x08\xa7\x18\xdd\xaa\x5c\x9d\ \xd6\x84\xd3\xab\xb5\x1e\x2e\xd3\x7d\xd4\x1f\xbb\x48\x19\xe5\x6c\ \xa4\xf1\x07\x22\x6d\xfa\x39\x8a\x76\xb7\x79\x0c\x2e\x34\xd6\x9c\ \x0f\x3d\x28\xe1\x58\xeb\x01\x4b\xd7\x8a\x17\xf5\x47\x06\x01\x9b\ \x9c\xde\x5f\x51\x52\x9b\xaa\xe4\x70\x12\x2b\x01\x0a\x6e\x77\xde\ \xb9\x98\x9e\xdb\x6e\x8a\x1e\xbc\x6f\xa5\x70\xe9\x2b\x91\x47\x64\ \x6d\x50\x4b\x4c\xe4\x74\x0f\x4b\x98\xae\x85\x46\x18\xdb\xce\xe0\ \x9d\xeb\xc1\x79\xb8\x9c\xeb\x51\xca\xf5\xa5\x28\xc1\x0a\x2e\x89\ \x03\xaf\x20\x2e\x31\x54\xa9\x37\x88\xc5\x57\xa9\x69\xba\xbe\xda\ \x3c\xa0\xbb\xe4\xdc\xad\xfb\xf4\x48\x66\x1d\x3a\xf6\xda\xb3\xa2\ \x3d\x2e\x24\xe0\xc2\xfd\xef\xde\x7f\xf4\x47\x0c\x12\x2b\x53\x00\ \xd1\x53\xad\x08\x59\x4b\x4a\xe6\x13\x20\x86\x8e\x21\x2f\xb7\x6d\ \x6e\x7a\x9e\xb3\x90\xfc\x76\xa7\x07\x25\x58\x30\x7b\x16\xb4\x5f\ \xfd\xb4\x47\x82\xee\xf5\xaf\x45\x06\xf8\xd7\x88\x46\x06\x9a\x12\ \x5a\x27\x4e\x9f\xf2\xd5\xfa\x8e\x71\x80\xe7\x49\x70\x77\x10\x8c\ \xa0\xd0\x78\xb7\x3b\xec\x61\xcf\x7a\x18\xcc\x20\x2b\x76\xb8\x3d\ \xd2\x7d\x30\x24\xfe\x9e\x61\x5b\x01\xd3\x67\x22\x9c\x99\xf0\x88\ \x22\x5c\x5f\x3b\x8c\x00\xae\xb7\xd9\x4e\x73\x6e\xe3\x9d\x14\x29\ \x58\x0a\x1c\x5e\xaf\x7e\x3c\xd4\x1f\xfe\xf6\xf7\xc3\x91\x30\x4e\ \x81\x08\x5c\xda\x8d\x0c\xe8\xb7\x13\xd5\x26\x05\x17\x5a\x43\x1e\ \x4c\x01\x04\x53\xac\x81\x8d\xba\x7b\x60\xe8\xa4\x28\xbd\x39\x56\ \xf1\x8a\xda\xc3\xa2\xfe\xf2\x97\xbf\xb9\x75\xf1\x22\x4f\x42\xe2\ \x18\x7f\x95\x25\x04\xb6\x0a\x4b\xe8\x39\xcd\x27\xca\x04\x84\x76\ \xd4\x63\x17\x7a\xc8\x83\x1e\xd6\xa0\x87\x36\x4e\xb1\x7a\x34\xcc\ \x24\x26\xa5\x88\x47\x0b\x7a\xd2\x93\x3b\x54\x82\xd1\xfe\x88\x91\ \xa4\x41\x2a\x81\x8c\xea\xcf\x9b\x1a\x24\xa4\x5f\x55\xe7\x0b\xe4\ \x38\x96\x14\x25\x39\x49\x3a\xd6\xb1\x8e\xd0\xdb\x64\x15\x71\xf8\ \xc9\x4f\x6a\x30\x94\xf9\xe3\x1f\x29\x11\xf2\x87\x13\x00\x50\x90\ \x38\x52\x5e\x21\x8f\x84\xc2\x22\x76\x6a\x0d\x2c\x6c\x87\x1a\xf3\ \xb0\x4b\x3a\xde\x6e\x68\x59\xe3\xe4\x15\x73\xc8\x0a\x12\x90\xa0\ \x9b\xde\xc4\x9f\x37\xc7\xb9\x43\x3f\x0e\xb3\x21\xff\xa3\xd0\x9c\ \x4e\x69\x46\x92\x51\x28\x50\x27\xc4\x90\x18\xc4\xb1\x0b\x6a\xda\ \xf0\x92\x2f\xfe\xdc\x1c\xef\x30\xc8\xcd\x6e\xee\x11\x7f\xe0\xd4\ \xa2\x16\xc7\xd9\x41\x0f\x9e\x93\x98\x2e\xbc\x16\x3c\xcd\x48\x27\ \x77\x2a\xf4\x6c\x40\x10\xc3\x01\xc4\x21\x49\x7b\xf2\xae\x8d\x6d\ \x7b\xa0\x36\x2f\x98\xbd\xec\xf1\x90\x8f\x5b\x04\xe9\x01\x70\x71\ \x0d\x92\x6e\xb1\xa4\x87\x10\xe6\x30\x3d\x23\x83\xa8\x1d\xac\x88\ \x46\xb4\x4e\xa7\x4e\x04\xcd\x03\xd4\xa3\x14\xb4\x74\x63\xe1\x30\ \x09\xc3\x7d\xe2\xb1\x9b\xfe\x14\xa8\x49\x47\x7a\x88\x03\x94\x94\ \x04\x25\x2d\xe9\x48\x31\xa3\xd2\x2e\xc6\x8c\x51\x11\x83\x9b\x43\ \x6f\x14\xaa\x11\x18\xe1\x91\x92\x84\xa3\x4e\x29\xe9\x44\x27\xce\ \x30\x0f\xa0\x0c\x69\xfe\x0e\x51\xd4\xa2\xe2\x62\xa4\xd7\x58\x2a\ \x52\x91\x3a\xd4\xfc\x19\xf4\xa0\x49\x13\x9f\xbf\x4e\x78\xb6\x70\ \x65\xcb\x42\x40\x90\xc1\x08\xda\x51\x8a\x5d\xa0\x80\x77\x83\x03\ \x82\x2d\xd9\x96\x4d\x7b\xee\x30\x9c\xe2\xf4\xe7\x35\xae\x81\x54\ \xc6\x1e\x75\xb1\x8c\x0d\x67\x5a\xcf\xea\xcd\x6b\xbc\x95\x94\x0b\ \x92\x29\x21\xe1\x46\x2f\x19\x10\xa1\x1d\x62\xa8\xc7\x08\xa4\xd7\ \xc6\x37\x52\x32\x0f\xc9\xd2\x5c\xd0\x22\xd9\x4f\x1e\x02\xf5\xa3\ \x04\x75\xfe\xec\x62\xd7\x8a\x3f\xc6\x92\xd4\xa8\x91\xd5\x9f\x0f\ \xcf\x99\xb4\xbb\x11\x91\xb3\xd5\xd2\x12\x10\x3e\xbb\x8b\xe2\x62\ \xad\x8d\x31\x98\xe4\x1a\xde\x08\xae\x36\xba\x11\x87\xb0\xc8\x63\ \x2f\x45\xf9\x4d\xda\xca\xb6\xb2\xde\x04\xa7\x6c\x21\x3b\x4e\x92\ \x1a\xa8\xa9\x5e\x3b\xc1\xbc\xcc\xe8\x3a\xb8\xfd\xe9\x44\x32\xc8\ \x80\x18\xc4\x80\x82\xd1\x2a\x8b\x8d\x7a\x88\x41\xd0\x80\xc0\x5c\ \x53\x54\xd4\xa7\xd7\x83\x45\x29\xa2\xab\xdf\xe8\x06\x94\xa4\xb3\ \x6d\xec\x5a\xb3\x5b\x0f\x82\x36\xf6\xa8\xde\xed\x21\x78\x17\xf6\ \x07\x3a\x10\x67\x8c\x41\x92\xea\x4c\x2d\xe4\x59\x31\xa8\xa0\x1e\ \x0e\xf8\x42\x7d\x43\x45\xdf\x50\x45\x32\xb9\x79\xa0\x65\x24\x43\ \x6c\x4f\xff\x6a\x70\x9c\x90\x8d\xac\x63\xd7\x2a\x0e\x12\x20\x61\ \x9c\xe2\xa8\x47\x8a\x67\x7b\xd4\x7a\x18\xe0\xbb\x2b\xfd\x0c\x5d\ \x97\xc9\xaa\x8c\x19\xd0\xb3\x19\x38\x06\x39\x8e\xb1\x8b\x2f\x28\ \xeb\xbd\xa5\x1d\x31\x0a\x4a\x81\x82\x10\x57\x91\x92\xbc\x2b\x31\ \x2c\xc0\x59\xdd\xca\x02\x78\xc0\x8b\xad\x47\x8c\x49\x50\xe0\x16\ \xb7\x58\xc6\x69\x35\xaa\x80\x0d\x60\x80\xe2\x5e\xf6\x68\x41\xa4\ \xd2\xfe\x83\xd5\x65\x9e\x95\xbd\x63\x0c\x43\x10\x86\x35\x80\x41\ \x8e\x7a\xe4\x61\x04\xcd\x9d\x21\x0a\x60\x41\x07\x25\xc0\x02\x05\ \x4b\x06\x71\x7c\x47\xcc\xe4\x52\xf4\xf9\xc6\xde\x44\x34\x09\xc4\ \xc1\x5d\x2e\x3b\xba\xcb\x5a\x16\x07\xa3\x27\x7a\x0d\x71\xe0\x96\ \xbb\x36\x7e\xe4\x2e\x4a\x81\xe3\x0f\x1a\x33\x99\x29\x24\x4e\x4c\ \xc3\x35\x02\x0e\xa0\xcc\x58\x6c\x98\x24\x86\x4e\x9b\x87\x29\xdb\ \x8f\x15\xa8\x1d\x34\x89\x59\x4d\xcd\x3d\x73\xd0\xc0\x5e\xae\x74\ \x8c\x91\x90\x69\x5e\x43\xfa\x00\xc0\xae\xf4\x62\x83\x8d\x69\x32\ \x1b\xc1\x08\xbb\x10\xc7\x99\xc9\x65\xca\x41\xc1\xa9\xae\x67\x6a\ \xc7\x30\xe0\x05\x2f\x09\x20\x8b\xbe\x94\x44\x01\x16\xed\xd7\xe4\ \x50\x4d\x73\xd0\xf4\x65\xed\x9e\x61\x01\x0b\x03\xb0\x02\x09\x64\ \x46\xb4\xa4\xbd\x69\xe3\x1b\x1b\xa0\xdd\xef\x66\x77\x98\xaf\x51\ \x8f\x7a\x18\xf5\xde\xf3\xb6\xb1\x11\x0c\xe0\x80\x5d\x1c\x60\xb7\ \x1d\x5b\x10\xdb\x3c\x05\x6d\x48\x65\xc0\x1a\xd4\x06\x00\x30\x90\ \xa0\x07\x0c\x09\x16\x05\xae\xf5\x33\x6a\x43\x05\xe2\x3c\x24\x37\ \x06\xac\x5e\xf2\xb8\xc9\xcc\x8a\x74\x1b\xe0\xc5\xbc\x46\x37\x99\ \xfe\x77\x51\xe6\x74\xb7\xbb\xcb\x95\x96\x31\xb0\x57\xbe\x72\x72\ \xc4\xd8\x01\xb1\x52\x87\x38\xb8\x48\x37\x5c\xdc\x8d\x9d\x2b\x6b\ \x07\xc2\xab\x7d\x00\x14\xb0\x2d\x43\xfe\x54\xc2\x5f\x31\x4e\xc9\ \x18\x90\xf8\xe2\xb2\x06\x34\x93\xe9\x40\x6e\x8f\x93\x99\x04\xee\ \x2e\x73\x71\x8b\xdb\x57\x92\x93\x39\xd3\x93\x5e\x2c\x13\x58\xce\ \xf5\x63\x88\xc1\x00\xea\x30\xc0\x31\x8e\xd1\x06\x73\xe6\x8a\x71\ \x9c\x3d\xd8\x08\x2c\x66\xd3\x20\x0c\x1c\x43\x10\xdf\x61\x25\x31\ \x34\x49\xa3\x1b\x5d\x92\x6b\xb8\x78\xde\x43\xdc\xe4\x3c\x00\xba\ \xdc\xbb\x80\x85\xd5\x45\x6e\x00\x64\x37\x19\xa7\xd7\x2b\x6e\xba\ \xb9\x6c\x69\xae\xaf\xbc\x1e\xb1\x9c\x68\x3d\xc4\xb0\x8b\x20\x1f\ \x03\x56\x3a\x7a\xd9\x1f\x42\x98\xf6\x70\xad\x01\x09\x12\xd0\xc0\ \x01\xda\xf0\xf6\xea\x00\x01\xac\xfa\xa5\x95\xb7\x2f\x7e\x74\xe5\ \x16\xdd\xe2\x7c\x07\xb4\xd5\x0d\x40\x07\xa7\xef\x82\x0e\x4e\x26\ \x31\x35\xad\x6e\x63\x49\xfb\x9e\xeb\x90\x6f\xbc\xcb\x8f\x61\x00\ \x31\x08\xf9\x18\x19\x70\x02\x12\x96\xcd\xa4\x62\x66\xae\xf3\x90\ \x02\x82\x03\x5c\x6c\x30\xd3\x53\x35\xb9\xc9\xf2\xf6\x72\xef\xfe\ \x6e\xf1\x49\x6a\x7f\xef\x77\x07\x34\x1d\x66\xef\xf1\x3f\xd7\xb3\ \xa2\x4e\x46\xc1\xd4\x79\xaf\x65\x2d\x87\x19\xd8\x8d\x07\x76\x9d\ \xc7\x2e\x8e\x21\x27\x9f\x08\x4e\xf0\x9d\xb3\x4e\xf0\x7c\xe8\x47\ \x3f\xfb\x78\x55\x7a\x1d\xc6\x61\x94\xb4\x77\x21\xa6\x5c\x04\xb8\ \x7d\x79\x10\x04\x7c\xa7\x78\xe5\x77\x7b\x4b\x86\x7e\xba\x67\x3d\ \x0e\x58\x0f\xbc\x16\x63\x92\xc6\x72\xb1\x14\x4b\xf5\x70\x61\xea\ \xa0\x0e\xc8\xe7\x04\x5f\xf0\x05\x32\x20\x03\xfa\x57\x29\x7f\xd0\ \x7f\xfe\x07\x37\xa5\x67\x7a\x1c\x86\x6d\xa7\x65\x74\xcb\x35\x80\ \xcb\x95\x77\xe1\xa7\x7e\x26\x90\x6e\x0e\x00\x0b\x0e\x30\x7e\x07\ \x88\x74\xba\xb7\x64\x0e\xf8\x6e\x2f\x36\x69\x2c\x17\x63\xf3\x87\ \x6c\xed\x90\x01\xed\x30\x02\x2d\x45\x1c\x79\x30\x4a\x6b\x62\x73\ \x05\xd7\x79\x47\x06\x04\x31\x80\x71\x9c\x05\x83\x76\x47\x74\x2f\ \x88\x6d\xf1\x15\x7b\xe3\x47\x66\x3d\x08\x81\x7d\xa7\x7b\xe9\xc7\ \x64\x79\x30\x75\xef\x46\x84\x5a\xe6\x78\x36\x75\x0c\xf5\x70\x79\ \xed\xe0\x04\x4d\xa8\x2c\x38\xf3\x0e\x34\xf7\x25\xe0\xb3\x82\x91\ \x92\x7d\x31\x60\x02\x26\x80\x02\x31\xf0\x82\xa0\x82\x21\xfe\x87\ \xa8\x7d\xf1\xa5\x77\x00\xa8\x7d\x76\xe7\x77\x28\xe0\x00\x0e\x40\ \x86\x7e\x45\x07\xea\x77\x80\xb9\xc7\x64\xea\xb7\x64\xed\xa0\x7e\ \x1e\x17\x69\x96\xd6\x78\x92\xe6\x72\xe4\xa0\x02\x62\xa0\x0e\x4c\ \x48\x04\x32\x10\x1a\x32\xe0\x18\x32\x50\x03\xc7\x60\x76\x1c\xf2\ \x07\x2d\x68\x85\xe0\x97\x85\x31\x40\x07\x3b\x04\x0f\x41\x90\x85\ \x33\xe8\x70\xc9\x92\x5a\x0e\xd7\x61\xab\x76\x8b\x33\x28\x2a\xde\ \x16\x86\x24\x46\x07\xfd\x46\x86\x3d\x08\x68\x67\xb8\x86\x90\x58\ \x68\x7e\x55\x8d\x43\x68\x81\x8b\xe6\x65\xa1\xb8\x81\x5e\xf7\x81\ \x22\xc8\x09\x32\x60\x19\x95\xf1\x09\x9f\x10\x0f\xb2\x68\x1f\x9e\ \xe1\x87\xe2\x92\x07\x93\x08\x75\x74\x80\x71\x41\x60\x02\xdf\x04\ \x0f\x16\x17\x8c\xaa\x87\x6d\xa2\x02\x8c\xcd\x65\x80\xbe\xc8\x61\ \xa6\xb7\x7d\x59\x18\x7b\xe4\x57\x86\x7e\x47\x62\x1a\xe7\x77\x7d\ \xb5\x89\xb1\xb2\x7e\xb3\xd7\x7e\x1f\x17\x7f\xe4\x30\x64\xc6\x07\ \x2b\x35\x00\x07\xb4\x60\x91\xe4\x88\x1c\x9f\xb0\x00\x69\xb1\x60\ \x9b\x21\x70\x7e\x88\x85\x06\x70\x00\x64\x25\x0e\xac\x40\x07\xcb\ \x95\x07\xf0\xb0\x8b\xb0\x30\x71\xc8\x58\x83\xcb\xe5\xfe\x82\x3f\ \x97\x92\x21\xe6\x85\x88\x88\x6d\x01\xb9\x80\xbb\x20\x89\xe8\x86\ \x04\x92\x08\x68\x7c\x17\x7b\x90\x38\x7e\xe3\x57\x86\x28\x10\x2b\ \x47\xe9\x80\x20\xb7\x68\xc0\x26\x7a\x11\x79\x8a\xea\x30\x06\x17\ \x79\x1a\x94\xf1\x09\x5d\x40\x8e\x65\xa1\x0e\xcc\xf7\x1a\xe9\xe4\ \x7f\xa7\x37\x92\x87\x00\x00\x64\x45\x02\xf0\x10\x90\x26\xb0\x3d\ \x3b\x64\x02\x79\xd0\x5c\xf4\xe5\x8b\x18\x27\x80\x14\x87\x8b\xf5\ \x88\x8c\x38\x69\x74\xd0\xe8\x00\xfb\x46\x89\xd1\x58\x90\x4d\x26\ \x84\xeb\xe7\x00\xea\xe7\x57\xd0\xa8\x78\xa0\x38\x8a\x07\xb0\x81\ \x62\x80\x04\xea\x10\x0a\x35\x50\x03\x2f\x92\x02\xa1\x10\x0b\x5d\ \x00\x17\xe4\xa8\x6c\x1e\x09\x1d\xb0\xe0\x95\x6b\x90\x6c\x87\xa0\ \x01\x64\x75\x08\x24\xa0\x96\x58\x68\x02\xb8\x40\x56\xb8\x20\x9a\ \x78\x75\x8b\x85\x08\x97\x35\x88\x8b\xfd\x08\x8c\x01\x19\x04\x80\ \x26\x89\x93\xd8\x06\xfc\xd6\x77\xdc\x07\x89\x7f\x67\x00\x26\xc0\ \x8c\x44\x69\x89\xd5\x38\x98\x1f\xa7\x65\x48\x20\x7c\x87\x89\x04\ \x62\x10\x0f\x19\xc0\x98\x8e\x19\x17\xa1\x20\x0f\xb1\x80\x95\x1b\ \xb9\x00\x96\x89\x20\x9b\xb7\x82\x9b\x79\x00\x1a\xfe\x20\x96\x63\ \xa9\x96\xb4\x92\x07\xe2\xf0\x99\xf0\x80\x02\x77\x43\x5f\xe8\xd7\ \x8f\x3f\x97\x80\x18\xe7\x9a\xd9\xb7\x7a\x31\x20\x9b\x77\x39\x89\ \x3b\x19\x62\x0c\x18\x90\xd0\xb8\x9b\x39\x78\x7b\xd5\x08\x98\x80\ \xc9\x57\x4d\xe6\x80\x92\x86\x04\x91\xa7\x01\x11\x89\x8a\x63\x50\ \x03\xa1\x40\x8e\x93\xf1\x09\xb1\x60\x0b\xb6\xb0\x00\xdc\x01\xa1\ \x0b\xb0\x01\x29\x75\x99\x6b\x61\x73\x2c\xb8\x25\x0e\xa0\x9d\xdc\ \x79\x0d\x27\x59\x90\xb9\x48\x56\x13\x85\x92\x16\x62\x80\x47\x77\ \x8c\x34\x95\x77\x00\xe9\x8b\xed\xb9\x7d\x0c\x88\x02\x74\xc0\x07\ \x91\xf8\x93\x6c\x00\x7b\x77\x07\x9f\xe2\x57\x6e\xbc\xa9\x9f\x74\ \x30\x7e\xc1\xf9\xa3\x24\x67\x81\x91\x16\x91\x87\x39\x04\x63\x40\ \x82\xb4\x90\xa0\x93\x91\x02\x0d\x6a\x0b\xb1\x70\x1c\x11\xba\x00\ \xb6\x40\x0e\x87\x20\x1e\x29\x48\x2f\xb5\x88\x21\x0e\x10\x9e\x87\ \x80\x0b\xac\x00\x0f\xe4\x06\xa3\x4d\x46\x07\xc5\x09\x0f\xb8\x97\ \x5a\x26\xca\x9e\x5a\xb8\x25\x38\x09\x90\x30\xd9\x9a\xef\x19\x04\ \xb2\xc9\x8c\x0e\x20\xa3\xf5\x19\x90\x76\x09\x8d\x3d\x6a\x00\xf0\ \x40\x7b\x7c\x56\x94\x92\x78\x7b\x46\x59\x8d\xfe\xee\x56\x9c\x48\ \x50\x9c\x05\x1a\x1c\x64\x10\x8e\x4b\xba\x1e\x4f\xea\xa4\xdc\xb1\ \x1e\x0b\xd0\xa0\xa0\x00\x70\x1f\xa9\x82\xd0\xb7\x06\x28\x50\x9c\ \x64\x19\xa6\x86\xd6\x77\x74\xd0\x9b\x84\xb8\x9e\xd0\x68\x71\xae\ \xf9\x9a\x01\x58\x97\xeb\x79\x8c\x36\x28\xa7\xd0\xc8\x07\xcc\x88\ \x02\xbd\x28\x97\xb2\x59\xab\x30\x5a\x7b\x39\x68\x02\x3c\xf8\xa7\ \x3d\xaa\x9f\x3b\xc9\x90\x64\x26\x0e\x9c\xfa\x71\x42\xa6\x0e\x78\ \x06\x1a\x8d\xd9\xa8\x1b\xf9\xa4\xc7\x31\x9d\x10\xda\x05\x1b\xa0\ \x6c\xbd\x91\x66\x5e\xf9\x8f\xa1\x0a\x0b\x60\xca\x67\x7d\x27\xab\ \x4c\x87\x7b\x31\x80\x02\x06\x40\x6e\xf5\x08\xa7\x6b\xca\xa6\x30\ \xc9\xa2\x04\x18\xa7\xf0\x09\xab\x80\x59\xa3\x5d\x38\x94\x62\x1a\ \xaa\x7c\x1a\xae\xdd\xda\xab\x44\xc9\x6f\xc5\x25\x7b\x24\x07\x0f\ \x2e\xe6\x62\x64\x76\x0c\x2a\x70\x0c\x4e\x50\x82\x44\x10\x0a\x4b\ \x4a\x0b\xce\xca\xac\x12\x2a\xa1\x92\x49\x0e\x96\x8a\x34\xc0\x51\ \x85\xff\x97\x01\x7c\x30\x2f\x71\x39\x6e\xb0\xd0\x9b\x3b\x09\x68\ \x1f\x57\x5c\xde\x34\x9e\x6f\x19\x97\xa8\x6a\x7d\xea\x49\x74\xd9\ \xd7\xaa\x30\x2a\xa3\xb0\xca\x06\xb2\x9a\xfe\x85\xbd\x28\x7e\x3d\ \xda\xa3\x19\xcb\xa7\xba\xda\x9b\x32\x1b\xb3\x3c\x48\x7b\xfd\x26\ \x98\xcc\xc8\xa7\x20\xb7\x0b\x89\x89\x7c\x23\x40\x04\x8e\x09\x07\ \x71\x41\x0b\xdc\xa1\x14\x93\x0a\xa9\x0c\x3b\xa9\xb1\x30\x0c\x29\ \xc5\x19\x27\x70\x00\xd6\x30\x0c\x70\x20\xb1\x62\xf2\x05\x19\x60\ \x31\xe4\x80\x04\x4d\x46\xaa\x1a\xfb\x71\x06\xc0\xb1\x6f\x28\x69\ \x26\x50\x88\xa9\x89\x8b\xfe\xc8\xa6\xaa\x9a\x5a\xab\xe7\xaa\x28\ \xc0\x07\xcf\x28\xa7\xf6\x79\xab\x82\x98\x83\x2b\x09\x0f\x60\x6a\ \xb3\xdd\x9a\xa3\x3b\x0a\x98\xe2\xe7\xb7\x62\xeb\x00\x5f\xf7\x81\ \x44\x40\x04\x32\xb3\x1f\xe4\xa8\xb4\x4b\x7b\x1c\x50\x7a\x1c\x5d\ \xf0\xa4\xff\xa6\x19\x7f\x70\x08\xc2\x00\x0c\xc0\x20\x0f\x44\x00\ \x37\x32\x30\x04\x5b\x90\x70\xa1\x37\x51\x3d\xe8\x00\xf0\x20\x89\ \x44\x68\x04\x0e\xa0\x0e\x48\x00\x6c\xb8\xc0\x8b\xf9\x98\xae\x6f\ \x79\x73\x2e\xe8\xa6\x6e\xdb\xaa\x72\xda\x9b\x7c\xc0\x07\x72\x6a\ \x71\x38\xda\xa3\x78\x4b\x96\x2f\xd6\xa7\x38\x1b\xb3\x31\xcb\x9b\ \x3d\x68\x89\xc8\x0b\xb3\x39\xc8\x6f\xa9\x3b\x76\x19\x00\x07\xab\ \x98\x15\x8b\x0b\x14\x4e\xeb\xa0\xcc\xfe\xfa\xa4\x0b\x10\xb9\x1b\ \x70\x0c\x3b\x82\x34\xb8\x70\x07\xf1\x30\x0c\xe8\x80\x0e\xaf\x50\ \x03\x58\x0b\x2a\x35\xc0\x2d\x09\x97\x70\xa2\xa7\x01\x92\xe6\x00\ \x6d\x20\xa0\xe2\xa0\x02\xda\x09\x6c\xbc\x28\xbb\x8e\x88\xa2\xe6\ \x6a\x83\xc7\x58\x97\xb2\x29\xb7\xbd\xc9\x80\xae\xda\xa3\x41\xe0\ \xbb\xf0\xb0\x94\x7a\xcb\xb7\xa2\x7a\xab\xc4\x6b\x89\xf7\x19\xb8\ \xb5\x47\x66\xb6\x39\x76\xea\xa0\x8a\x8e\x01\x07\x9f\x10\x0a\xc8\ \x31\x17\x67\xf0\xa8\x0e\x6a\x0b\x5d\xd0\x05\xd9\x1b\xc2\x13\x7a\ \x0d\x16\x8a\x13\x53\x2b\x0c\xaf\x70\x07\x77\x40\xbe\xaf\x10\x0a\ \x84\x10\x2e\x40\x00\x07\x7b\xb0\xbe\x36\x4c\x30\xa6\xb8\x0b\xe4\ \xa0\x01\xa7\x76\x08\x48\xf0\x8e\x37\x77\x85\x2a\x1a\x93\x54\x05\ \x83\xc2\xe8\xbf\xa1\x6a\x02\xb0\x2a\xa7\x73\x0a\xab\xa1\xda\xa7\ \x1f\x97\x3f\x26\x89\x04\xa2\x4a\xbc\xb7\x2a\xa6\xf7\x69\x90\x39\ \x5a\x7b\xc8\x29\x76\xc7\x30\x04\x19\xa0\x8a\x8d\x51\x03\xd0\xba\ \xc1\xd4\xdb\xa0\xed\x21\x99\x22\x4c\xc2\xa1\x10\x0f\xd2\xda\x16\ \x97\x72\xb9\xc0\x30\xbe\xaf\xf0\x0a\xe3\xab\xb9\xb5\x52\xb0\x7b\ \xf0\xb9\x37\xbc\xbe\x04\x5a\x7f\xfe\xdb\x99\x70\xe2\x50\x96\x6e\ \x0b\x2a\xdb\x07\x80\xa0\x02\x83\x74\xe9\xa2\x41\xc0\x07\x4a\x4c\ \x07\x4c\x5c\xc0\x0e\x60\xb3\x1f\x07\x72\xb8\x30\x73\x5f\x6a\xa6\ \xa2\x3a\xa7\xc9\x5b\xab\x0b\xf8\xc9\x2f\x0a\xa3\xe5\x86\x6e\xea\ \xe0\x00\x19\xf0\x81\x61\x2c\x33\x49\x1a\xb9\x4a\x31\x17\x19\xf9\ \xc1\x92\xa9\xc6\xd9\xfb\xa4\x50\x7b\xc2\xc1\x73\x0d\xe9\x20\x0c\ \x1c\xc0\x01\xc2\x20\x0c\x2d\x8c\x0e\xc0\x20\x01\xe8\x50\x03\x4f\ \x18\x29\xa0\x60\x0d\x5b\x90\xcc\x7d\x6c\xc3\xa1\x77\x6a\x00\x20\ \x7a\x48\x10\xb2\xd6\x17\x80\x23\x9b\xc8\x88\x2c\x2e\x2e\x1b\xa3\ \x26\x20\x04\x90\xcc\xc4\xdb\x3c\xc9\x42\x50\x9c\xc2\x7a\xc9\xfa\ \x83\x04\x5f\xca\xb7\x03\xbc\xc0\xd0\xe8\xc9\x7d\xa9\xa7\xb5\x67\ \xca\x6d\x70\x8a\xf1\x10\x95\x8d\x19\x0a\xd0\xda\xac\x4a\x41\x0b\ \x34\x31\xa9\xd0\xa9\xc6\x24\x9c\xbd\x1b\xd0\x05\x77\xf1\x15\x27\ \x50\x0f\x75\x3c\x0b\xb3\xf0\x0a\xc2\x30\xbe\xe8\xd0\x33\xe8\x40\ \x0b\xd0\x36\x06\x08\x97\xcc\x7c\xbc\xcc\x16\x7d\x00\x48\x10\x04\ \x28\x9a\x8f\xb3\x6b\x93\xd6\x7c\xcd\x71\x19\x8f\x42\xa0\xc4\x74\ \x2b\x9b\x42\x60\x00\x27\x7d\xfe\xc0\x96\x8c\x0b\x48\x90\xb7\xf0\ \x70\xb7\x0d\x6c\xb3\x0c\x7c\x9f\x90\xec\x77\x3d\x3a\x9b\x60\x67\ \x7c\x63\x37\x0c\xc3\x30\x04\xa0\x10\xc2\x22\xbc\xb0\xc8\xa1\xcf\ \xcb\x0a\x9d\x91\x2b\xc2\x1b\x89\xd4\xdc\x6b\xcb\x40\xc4\xcb\xe9\ \x10\xc3\xa6\x40\x08\x0a\x0d\xcc\x28\x33\xc7\xb4\x50\xcc\xa6\x47\ \x04\x35\xbc\x05\xc8\x6c\xd1\x5e\x4d\xa0\x19\x1d\xb2\x57\xc8\x96\ \x36\x88\xb6\x89\x8c\x6d\x6c\x1a\xa7\x42\xb0\xd6\xdd\xfc\x9e\x8e\ \x2c\xb7\x42\x40\xba\x87\x8a\x0b\x1a\xd0\xba\x7a\x9b\xc0\x77\x2b\ \x88\x05\x1c\xaa\xc8\xdb\xc0\xc8\xcb\xc9\x31\x0b\xbf\xea\x60\x7c\ \x3c\xbd\x07\x86\x2d\x0f\x01\x1d\xb9\x10\x6a\x95\x24\x8c\xb0\xb3\ \x2c\x0f\x46\x8d\x1c\x57\x59\x19\x5d\xb0\x95\x2d\x51\xb9\x12\x00\ \x0c\x4c\xd0\x0e\x58\x43\x08\xb3\x70\x07\x0b\xcd\x01\x98\x8b\x0e\ \xc5\x80\x0e\x56\x6b\x7a\x35\x10\xbe\x9f\x6b\x0d\x7b\xb0\x73\x5e\ \x7d\xc3\x12\x80\xd1\x0e\xc0\x06\xbd\x78\xb2\xed\x09\x9b\xef\x29\ \x8c\x32\x59\x83\x03\x97\x77\x8d\xbc\xcd\x6d\xfd\x9e\x74\x20\x04\ \x72\xcb\x07\x71\x5d\x9c\x74\xdd\x99\xe7\x6c\x02\x2f\x9d\xd7\x05\ \xdc\x9b\x7c\x9b\xc4\xd1\xfe\x1d\xb3\xb8\xdb\x6f\x20\xf8\x81\x43\ \x30\x0c\x86\x1d\x00\xf2\x10\xc2\xb1\x60\xd4\xe4\x18\xc2\x8b\xdb\ \x05\xf2\x60\x0b\x01\xc0\xdd\x21\xbc\x01\x1b\x80\x1c\x0b\x20\x0f\ \x07\xd0\xbd\x44\x51\xb9\x1c\x40\x6d\xc2\x40\x08\x51\xed\xd9\xbd\ \x7c\x07\xaf\xb0\x01\x0d\x2d\x01\x12\xb0\x07\x88\x3b\x06\xad\xad\ \xcc\xac\x5d\xd1\x5e\xed\xda\xf0\xa2\x01\x2a\xa0\x0e\xb9\x4b\xdb\ \x44\xe7\x85\x6c\xe9\xb2\x66\x1d\x80\x35\x98\xd6\x31\x90\xbb\x42\ \xc0\xc4\x6e\xfd\xcd\xc7\x7d\xa8\xe2\x10\xc8\x62\x39\xc8\xcd\x0d\ \xd3\xba\x0b\xdd\xd1\x9d\xd7\x27\x4e\x9b\x96\x07\xc6\x44\xfb\x9c\ \x90\x0d\xd9\xdf\x8d\xde\x41\xcd\xde\x56\x29\x0f\xc5\x70\xe3\xb6\ \xf0\xe2\xeb\x4d\xde\xb6\x30\x0c\x0f\xfb\x12\x27\x70\x07\xea\xab\ \x70\x77\x40\x08\x46\xee\xd9\xfa\x8d\xd0\xc0\x4c\x6d\x05\xce\xd5\ \x14\x2d\x01\xd6\x80\xe0\x16\x1d\x7a\x09\xb7\x70\x6d\xd0\x06\xb9\ \xab\xbb\x12\x6e\xb2\x1c\xa6\xae\xba\x5d\x8c\xe5\xea\x70\x6a\xad\ \xbb\xbd\x28\xa7\x6b\x0d\x0f\xf8\x10\xce\x87\xba\xba\x20\x9e\xe0\ \x2c\x0d\x0f\xb9\x2b\x88\x31\x2a\xdd\x72\x2e\x88\x77\x3d\xe2\x82\ \x28\x89\x6d\x60\x04\xfe\x63\xb7\x07\x15\x0c\x07\x70\x50\x03\x1b\ \x20\x0f\xe7\x4d\xe8\x01\x70\xe3\x88\x0d\xd4\xe3\x5d\xde\x37\x5e\ \xe8\x88\x2d\x99\x1b\xf0\xb4\x93\xcb\x13\x7f\x50\x0f\x77\xc0\x04\ \xfe\x9d\xd9\x4c\x90\x0e\xb3\x70\xe4\x49\xde\x05\xe8\x10\x0f\xf2\ \xb0\x07\x12\xf0\xb9\xc9\x1c\xe5\xab\x3d\x0c\x52\xfe\xda\x00\xb0\ \x05\x04\x7a\x0c\x42\x70\x0c\x7c\xc0\x06\xb4\x1d\xc9\xef\x19\xb2\ \xb6\x3b\xe1\xc0\xf8\xe5\x04\xb2\xe1\x5a\xfe\x9e\xdb\x0c\x0f\x7e\ \x80\xe6\x06\xe0\x07\x48\x60\xec\x7d\xec\xc3\x70\xde\xc8\x73\x8e\ \xe2\x77\xbb\x92\x5e\x7a\xe7\x7d\xaa\xe7\x84\x1d\x0f\xc4\xac\x48\ \xd0\xca\xdd\x90\x7d\xe8\x88\x0e\xd9\x43\xbd\x91\x1b\x60\x0b\x37\ \x7e\xe3\xae\x90\xe8\x10\xfa\xdd\x0e\xcb\xd4\x4e\x42\x02\x84\x70\ \x6c\xbb\xbc\xcb\xc0\xc0\x01\x77\x80\xd0\x09\xad\xdf\x9e\x5d\x03\ \x84\x10\x0f\xea\xcb\xd5\x7b\x7c\xea\xaa\xee\xcc\xac\x0e\x00\xd6\ \x40\x0e\xf8\x80\x04\xf8\xd0\x06\xb4\x3e\xeb\xb9\x6b\xeb\xc1\x18\ \xa7\x5a\x3e\x93\xbf\x98\xb6\x8d\xac\xe1\x66\x8e\xe6\xe1\x2c\x04\ \x7e\x10\xce\x07\xdc\x99\xcf\xcc\xbe\xca\x4e\xe6\xd2\x2d\xed\xdb\ \x23\x50\x5f\x7a\xfe\x6e\xe8\x16\xcf\xc7\xd0\xd3\x63\x40\x04\xa6\ \x31\x8e\x13\xaa\xde\x0d\x7a\xe3\xd6\x30\xee\x88\xbd\x00\x08\xfb\ \x09\x1b\x70\xe8\x7b\x50\x0c\x33\x5f\x0c\xdd\x9d\xbd\x93\x4a\xa5\ \xea\x0e\x11\x7d\xc1\xd9\x84\x90\x0e\xe9\x20\xe4\xc5\xc2\xcb\x2c\ \x9c\xe4\x70\x40\x04\xaf\xa0\xda\xab\x3d\xe0\xfe\xbe\xea\x01\xaf\ \xe0\x2a\xa0\x02\x58\xce\x07\x6d\x50\xa7\x75\xca\x06\x0b\x6f\xbb\ \x60\xdf\x06\x1a\xdd\xd1\xb2\x4b\x20\x72\x4a\xe6\x2e\x6b\xdc\xc3\ \x8e\x0f\x2a\x7d\xec\xc2\x8e\x04\x9d\xd9\x99\x3c\x3c\xf7\x75\x6d\ \x02\x69\xef\xc8\xcd\x0d\x0f\x42\xc5\x3d\xfa\xb3\x92\xe6\xfc\xaf\ \x14\x8c\xb8\xe3\x78\xf3\xda\x9b\xde\xdc\x0e\x0c\x3d\x0f\x9d\x9f\ \x80\xb4\xdc\xce\xf3\x8a\x8f\xe3\xd0\x39\xf9\xff\x36\xf4\x9d\x61\ \x04\xed\x40\x08\x7a\x40\x08\x23\x30\x0b\xe9\xc0\x04\xa2\x2d\xef\ \xf9\x3d\x0c\x08\x7d\x07\x73\x46\xea\xad\x8e\xea\x14\xcd\xda\x56\ \xcf\xea\x50\x3e\xf0\x5a\x7f\xe5\xea\xd0\x06\x07\x8f\xe5\xc4\xed\ \xb2\x69\x4f\xfb\x7c\x20\x8c\x87\x3c\x70\x58\x38\xf1\xb5\x0d\xec\ \x18\xbf\xd6\xc6\x5e\xfc\x48\x20\x04\xf0\xb0\x0f\x1a\xb0\xfc\x50\ \xfc\xe1\xcf\xfe\x7c\x08\x19\x9e\xc4\x09\xac\xb7\x27\xd0\xf7\x99\ \xac\xd2\x60\x37\x76\x5a\x20\x33\x18\x4c\x8e\x35\x90\xc1\x30\x9f\ \xd8\x36\xce\xf3\xe3\xee\xf3\x13\x4a\xfe\xe3\x1f\xf9\xe3\xee\xa4\ \x1b\xe0\x0a\xef\xad\x20\xe4\xb0\xc2\x4c\xf0\x0a\x99\xff\x05\xed\ \x3e\x0b\xed\x90\xf9\xed\x50\xc7\x75\x3c\x0c\xc1\xac\x70\x00\x61\ \x6d\xcb\x16\x81\x5b\x00\x1c\x24\x68\xed\xe0\x42\x86\x0d\x1d\x1e\ \xb4\x46\x6e\x92\x0a\x72\x48\xf0\x1d\x3b\xa6\x42\xa3\x8a\x7d\xf8\ \xd8\xf0\x61\xf3\x11\x1f\xbe\x36\x41\xc8\x90\x01\xb2\x26\x46\x90\ \x18\x40\x4e\xa2\x04\xb2\x92\x0f\xcb\x94\x41\xf8\x08\xc1\xe9\xc7\ \x0f\x12\x24\x3b\x85\xc0\xc3\x89\x04\x97\x06\x71\x2d\x81\xf0\x39\ \x70\xf0\xd0\x21\x24\xf0\x4c\x98\x80\x17\x35\x2a\x2e\x5c\x27\x70\ \xc1\x63\x85\x8b\x95\x53\x13\xb0\x0c\x1c\x6b\xa3\x2e\xc3\x18\x38\ \x9c\x38\xd1\xfa\xf4\xa9\xc6\xa7\x0d\x5d\x36\x04\xb0\xb5\x21\x96\ \x5b\x5b\xc5\x8a\x49\xb0\x06\xac\x58\x00\x74\xc5\xf4\xca\x93\x17\ \xc0\x6f\xde\x62\xd6\xec\xc6\xda\x00\xf8\xd0\x9f\x7f\x8d\x1d\x3f\ \x86\x1c\x59\xb2\xe4\x3f\x87\x38\x5c\x06\x06\x8c\xc3\x9d\x74\xe9\ \x66\xb5\xfe\x23\x04\x7a\xd6\xac\x57\xa5\xd1\x49\x00\x80\x77\x0f\ \xb0\x81\xad\x11\x0a\x7c\xf8\x70\x8b\x06\x72\xb4\x17\x12\x24\x67\ \x2d\xa2\x8a\x8b\x93\xc8\x45\x99\xa4\x21\x0a\xc9\x36\xc5\xf1\x65\ \xea\xc7\xc6\x65\xca\x18\x6c\x5a\xbe\x24\xb3\xc6\x26\xcd\x98\x36\ \x73\xc2\xdb\xb9\x4f\x9c\x4e\x21\x7e\x80\x0a\x45\xc2\x07\x08\x90\ \x20\x26\x90\x88\x3b\xa0\x61\x69\x54\xa8\x52\xe1\x51\xbd\x8a\xf5\ \xea\x53\x58\x0e\x1c\x64\x70\xe2\x64\x4c\x0d\x38\x29\x68\xa1\xfd\ \xaf\x86\x05\x12\x0b\x20\x00\x79\x36\x58\xa0\x0b\x79\x0a\x63\xd0\ \x30\xc3\xf6\x22\xd0\x2e\xbb\x74\xb3\x4b\x9e\x58\x62\x89\x87\x1c\ \xc6\x26\xe3\xb0\x43\xc8\x2a\x93\x20\x44\x60\x42\x04\x40\x33\xcd\ \xee\xb8\x83\x09\x61\x84\x19\x86\x45\x74\x80\x59\x08\x98\x82\x0a\ \x32\x08\xa1\x1a\x63\x63\xe8\x00\x72\xc8\xd1\x88\x9c\x1a\xad\x51\ \x21\x0a\x6b\x34\x00\x72\x12\xdd\x8c\x24\x32\x13\x7c\xfa\x19\x29\ \x93\x49\x26\xe9\x67\x04\x97\x54\x62\x63\x84\x35\x5e\x8a\xe9\xa3\ \x20\xd6\x60\x2e\x88\x9c\x74\xda\x07\x97\x7d\x90\x18\x13\x09\x21\ \xf0\xe9\x4e\x1c\x0d\x4c\x88\x61\xa5\x18\xd6\x90\xee\x10\x00\xd4\ \x6b\xfe\xaa\xbd\xa9\xa8\xda\xca\x3d\x03\xe8\x08\x89\x0d\x27\x88\ \x20\xa2\x86\x1a\xfe\xa3\x25\x94\x50\x68\xf1\x6f\x81\x05\x02\x33\ \xd0\xad\x05\x27\x94\x31\x52\xbb\x02\x48\xec\x51\x09\x65\xdc\xcb\ \x42\x5b\x86\x39\x61\x43\x0f\x3f\x8d\xec\x04\x86\x44\xcc\x2c\x44\ \x09\x34\x33\x35\xb3\x52\x6f\x1b\x88\x46\x86\x5c\xc3\xf1\x20\x0d\ \x68\x43\xa2\x0d\x3e\x54\x50\x08\x80\x2d\x54\xd0\x42\x48\xdd\x06\ \x9a\xf3\xc8\x7d\xfa\x61\x52\x8b\x7e\x82\x9b\xa4\x0d\x2e\xd7\x18\ \x21\x24\x97\x4e\x5a\xe3\x23\xe7\xc6\x53\xe9\x26\x9d\x76\xf2\x63\ \x9f\x9d\xc4\x19\x53\x08\x13\xbc\x84\xa7\xa7\x6f\x9f\x3b\x09\x1e\ \x0d\xe6\x3c\x64\x3e\xf7\xe0\x93\xaa\x29\x03\x1c\x08\x69\x04\x27\ \xbe\x80\x43\x06\x44\xd1\x72\xab\x8b\x4f\xfc\xfb\x64\x51\x03\x01\ \xb3\x45\x30\x5b\xea\x92\xd1\xc1\x0a\x43\x51\x10\xb0\x58\x04\x63\ \x70\xd2\x00\xc8\x39\xc0\x53\x50\x41\xad\xac\x21\x09\xc8\x61\x82\ \x1c\x0e\x4e\xe5\x60\xd5\x11\x55\xad\xb1\x35\x91\x6f\xfb\x35\xd6\ \x83\x74\xb4\x08\xa4\x36\x28\x12\x88\x9c\x37\x84\x04\x56\x57\x82\ \x26\xb1\xe3\xc9\x49\x86\x3b\xb6\x05\x0d\x26\x19\x21\x86\x66\x9d\ \xfe\x50\xee\xa4\x94\xfc\x0c\x62\xca\x20\xac\xeb\x0e\x3b\x6c\x75\ \x12\x97\x25\x9b\x78\x82\x67\x4b\x2c\xd9\x10\xe7\x90\x59\xe3\x5b\ \x57\x2b\xae\xa0\x72\x00\x85\x76\x9a\x05\xb4\x2c\xb3\x52\xa8\xc1\ \xad\xb6\xd2\x4a\x2b\x16\xc0\xd6\x0e\x0c\x30\xc1\x0c\xd3\xcb\x30\ \x4a\x11\xee\xa2\x0b\xc4\xde\xa6\x50\xc2\x62\x0e\x38\x61\x62\x8a\ \xe5\xb4\x98\xd4\xcc\x30\xde\xf8\xe3\x3d\xf6\x40\xcd\xc6\xd6\xd2\ \x78\x75\x0b\x09\x6e\xc4\x51\x83\xf0\x40\xf2\xb3\x8d\x66\xb5\x30\ \x12\x36\x99\x07\x4a\x43\x83\x2d\xd2\xd8\xa2\x85\x9a\x9f\x6c\x41\ \x74\xcb\x9d\x68\x43\x0b\x27\x64\x10\xda\x4f\x36\xae\x54\xc9\x26\ \x6b\x71\xea\x8e\x3b\xee\x66\x6a\x33\x88\x70\xcd\x7c\x93\xcb\xea\ \xf8\x78\x4f\xbd\xab\xb2\x92\x6f\x2b\x13\x50\xa0\xc3\x3e\x36\xda\ \x61\x83\x88\x0c\xe2\xd9\x00\xd1\xb3\x12\xfd\xa4\x0b\x45\x13\xac\ \xbe\x6e\x47\xdd\x96\x10\x6e\xc2\x02\xd0\xbe\xee\x0d\x02\xbe\x34\ \x99\xbc\x0c\x3b\xc4\xef\x4f\x45\x45\x2d\xf1\x51\x0f\x3a\x95\x1c\ \x60\x10\x3f\xd5\x9a\x3d\x48\x16\x39\xe6\xcd\x21\x7f\x88\x36\x78\ \x40\xfa\x99\x13\x46\xf0\x85\x11\x1c\xc3\x55\xf9\xe3\xdc\xe7\xfe\ \x44\x47\x8d\x65\x50\x23\x0d\x2d\xe8\x07\x11\x9c\xd0\x8f\x37\xb4\ \xe1\x59\x6b\x40\xdd\x08\x50\x12\xad\x8f\xe4\xa4\x3b\xb4\x03\xa1\ \x10\x66\x72\x34\x70\x79\x47\x84\x74\x60\xc9\x9b\xc8\x93\x1e\x0d\ \x5c\x45\x2b\x58\x73\x0a\x1d\x4c\xe0\x00\xe6\x7d\x8d\x08\x70\xd8\ \x00\x28\xce\xf6\x09\xb4\xa0\xad\x0b\xa1\x48\x4b\x28\x16\x40\xb7\ \xb6\x04\x66\x42\x83\x31\x0c\x5e\x32\x55\x37\xc4\x70\xaf\x30\x05\ \x93\x51\xdf\xd4\xc7\x21\x51\xa5\x86\x44\xb1\xc2\xcb\x88\xb6\xa0\ \xc5\xd7\xc0\x26\x7f\x8a\xe3\x9f\xc5\x68\xd5\x06\x07\xd8\x0a\x75\ \x6d\x98\x97\x13\xde\x40\xa3\xfc\x81\xce\x8d\xa2\x8b\x82\x34\xa4\ \x61\x87\x64\x48\xe3\x0b\x44\xb8\x87\x34\xb4\xc0\x3a\x20\x10\x41\ \x75\xac\xe3\x20\x1f\x6e\x82\x8f\x6b\x71\x87\x76\x82\xbc\x89\x08\ \x6d\x62\x02\x21\x9c\xc7\x4c\x5b\x7a\x56\x0c\x90\x70\xae\xe1\x69\ \x4d\x2a\x33\xb4\x4f\x1b\x98\x37\x02\x38\xc0\xa1\x50\x3f\xec\x17\ \x10\xd7\x62\x36\xb4\x25\x88\x6e\x8e\xba\x14\x61\xec\xc2\x1a\x09\ \x15\x08\x60\x05\x4a\x25\x30\xa4\x38\x45\xca\x00\x2e\x35\x30\xb2\ \xa2\xfb\x16\x72\xaa\xd5\x84\x51\x7f\x23\xeb\x22\xe4\xac\xfe\xf1\ \xb8\x8b\xf9\x46\x22\x2a\x00\xcb\x31\xf0\x31\x84\x7e\xa8\x8e\x08\ \x23\xe8\x07\x1b\x45\xe6\xc6\x34\xa4\xc1\x0e\xcb\x78\x83\x16\xe6\ \xb8\x8c\x7a\xd5\x20\x9b\xac\xfb\xc2\x18\xc6\xf0\x05\x94\xc8\x0b\ \x68\x7c\x68\x03\x21\xfd\x10\xc2\x43\x86\x50\x90\x8d\x24\xca\xff\ \x9e\x95\x12\x13\x58\x8d\x29\xef\xc9\x13\x50\x4c\xc0\x87\x32\xd2\ \xb0\x1d\x63\x20\x02\xa1\x52\x90\x82\xea\x1d\x28\x88\x89\xd9\x21\ \xda\xd2\x42\x0b\x7f\x4d\xc8\x30\x07\xaa\x8b\x12\xf5\xb6\x17\x58\ \x16\x66\x48\xb4\xe4\x90\x2d\xad\x08\x3f\x5d\xee\x52\x37\x88\x6b\ \x08\xac\xbe\x28\x33\x19\x8d\xea\x37\xba\xe1\x51\x3f\x36\xd2\x86\ \x8c\x04\x29\x0a\x51\xd0\xc2\x49\x64\xe0\x84\x28\x30\x2e\x81\xd5\ \xc4\x69\x1a\x92\xf1\x82\x37\x88\x53\x1a\x2f\x20\x27\x1c\xf6\x73\ \x12\x3f\xee\x91\x0c\x5f\xc8\x8f\x9f\xd0\x49\xc8\x33\xb1\x13\x84\ \x3a\x01\xca\x4d\x84\x32\x26\x13\x70\x09\x25\x31\xe0\x83\x9c\xd2\ \x75\x95\xa6\xb0\x07\x05\x7c\x40\x81\x3a\xc2\x92\x81\x0c\x88\x72\ \x5f\x9c\x20\x68\x0e\x37\x10\x8a\x1a\x84\x02\xa1\x09\x5d\x28\x27\ \x0a\x3a\x18\x60\x50\x6a\x7c\x74\x55\xe5\xa4\x2e\x25\xfe\x31\x8c\ \x3a\xa6\x8a\xa9\x31\xd9\x2e\xe7\x37\x4c\x87\x00\xd3\xb0\x8e\xb3\ \xd8\x30\x67\x43\x8e\x7e\x64\x24\x39\x4e\xc0\x95\x0a\xf6\x30\x09\ \x69\x10\x81\x8f\x35\xb0\x86\x1b\x3f\xf7\x39\x9c\x96\x8e\x0a\x6f\ \xb8\x61\x0d\x2a\x4b\x06\x19\x10\x81\x9c\x64\xf0\x26\x11\x80\x80\ \xd4\xa4\x9e\xf1\x90\xb2\x4b\xe4\x97\x74\x82\x26\x3e\x30\xd2\x0f\ \x62\x42\x42\x55\x53\x22\x1d\x24\xd8\x53\x28\x51\xc9\x2d\x1f\x92\ \x47\x46\xb1\x64\xe0\x1e\x86\x72\xcb\x02\xa4\x47\x0b\xb5\x7e\x02\ \x61\x6e\x05\xcc\x06\xd6\xaa\x2f\x1e\xf6\x2b\x31\x47\xcc\x14\xc3\ \x2c\xfa\x38\xbf\x74\x8f\xaf\x7d\xfd\x47\xc5\x6e\xd9\xd1\xd8\xf0\ \x32\x2f\x90\x4b\xc8\x8d\x46\x66\x90\x30\x36\x04\xa5\x4f\x42\x63\ \x1b\x5e\xfa\x52\x6a\xbc\xf4\x1e\xef\xf8\x02\x35\x36\x9b\xd3\x6a\ \x96\x2e\x19\xd7\xac\x81\x0c\x80\x00\xd0\x93\xbc\xe3\x59\x81\x02\ \x82\x0c\x6a\x90\x9f\xfc\x98\x11\x24\x47\x63\x03\xed\x08\xa9\xce\ \x31\xad\x13\x91\xd6\x1a\xca\xff\xda\xa4\x92\x7a\x0a\x2f\x5c\x31\ \xa4\x83\x20\x99\xe7\x27\x22\x8c\x01\xb9\x3b\x4c\xc1\x59\xdc\xba\ \xd6\xe7\x26\xc6\x15\x07\x02\x22\x5a\x06\x34\xbe\xfe\x8a\xea\x45\ \x6f\xe7\x8b\x94\x2a\xd3\x07\xde\xc7\x88\xd7\x1a\x1c\x00\xa9\x43\ \x74\x19\xa2\xd5\x14\xe4\x55\x25\x63\xd5\x48\x0b\x0b\x46\x22\x35\ \x53\x9b\xd9\x8c\x47\x32\x08\xf2\x86\x1a\x50\xa3\x05\xd6\x48\x46\ \x96\x93\x51\xba\x16\x64\xd9\x0e\x54\x78\xc1\x18\x58\x27\x03\x38\ \x40\x87\x0c\xf8\x7d\x07\x19\x84\x3a\x06\x27\xa8\x2e\xa9\x6d\xfa\ \x48\x3a\x0b\x79\x2d\x6d\xad\x73\x3a\xb5\x4d\x53\x53\xf8\xb0\x2c\ \x21\xa4\xc7\x6a\xec\xd9\x27\x9f\x42\x12\x03\x7a\x11\x01\xb9\xce\ \x65\x8b\xbe\x10\xe5\x5c\xb7\x1a\xca\xb9\xa0\x88\xae\xa2\x69\xa1\ \xa0\x80\x59\x68\x61\x0d\xeb\x5e\x8e\x8b\xb1\xc5\x1d\xf3\xb8\x31\ \xe2\x2d\xd1\x6a\x46\x64\xb1\x51\x0d\x36\x33\xfa\xd3\x95\x6e\x0a\ \x9b\x40\x1c\x01\x6b\xbd\xd6\x98\xc4\xcb\xb2\x39\x86\x65\xb4\x60\ \x0b\xd7\x94\xf2\x95\xed\x40\x0d\x5e\x53\x81\x0a\x5f\xa6\xc6\x0b\ \x96\x71\x8f\xd3\xa6\xd9\xcc\x42\x2b\xad\x38\xff\x64\x25\x9f\xa1\ \x33\x13\xd9\x9a\x73\xb6\x2a\x2c\x42\x9c\xbc\xb3\x3b\xe2\x7a\x93\ \xee\x70\x71\x88\x03\xcc\x47\x08\x21\x76\x00\x48\xae\x94\xe0\x1a\ \xe4\xd0\xd1\xe2\x4b\xa8\xa1\x0c\xf5\x1f\xe7\xfe\x9a\xad\x2d\x03\ \x12\x98\x85\x7e\x48\xbe\x1b\xe3\xf5\xa2\x9e\x76\xcc\x1f\xce\x05\ \x3f\x55\x8d\x3a\x36\xf3\x3b\x9c\x6e\x1e\xd7\x38\x54\xef\xaf\xe0\ \x49\x5e\xdc\xe7\x60\x1d\x85\x5f\x63\xf3\x1e\x2f\x00\xf3\x32\x92\ \xd1\xdf\x64\x50\x83\xb2\xd2\x78\x83\x34\x96\xb1\x0c\x8c\x93\xe5\ \xd8\xc7\x7e\x87\x82\xe7\x35\x9e\x2f\xb0\xa1\x0d\xfd\xc8\xc4\x3e\ \x54\x0e\x26\x95\xab\x9c\x5b\xeb\x6c\xaa\xb7\xde\xb9\x3b\x12\xe2\ \x04\x2a\x8f\xa4\x43\x88\xc3\xf2\x3a\x99\xb6\x55\xba\x2b\x96\xee\ \xda\xce\xa6\xaf\x41\xdd\x6b\xd2\xf2\x70\x85\x2d\x40\x61\x8b\xa4\ \xcb\x05\x41\x09\xaa\xcb\x44\x1f\x04\xb7\x4e\x7b\x5a\xdf\xef\x13\ \x91\xa9\xc8\xfb\xd1\x5e\x6a\x6e\x21\x46\x0e\x29\x30\x65\x33\x1b\ \x85\x6b\xc0\x0e\xd6\xb0\xc3\xd9\xd1\xce\x40\x8d\xbf\x61\x19\x76\ \xe8\x6f\x97\xc1\x9c\xcd\x05\x8b\x93\x2c\x32\x30\xf6\xc7\x5f\x12\ \x72\x19\xc8\xe0\x8e\x4e\x58\x52\xca\xb5\x85\x26\x9d\xcc\x6a\x1f\ \x1a\x50\xb9\x99\x92\xb6\xce\xa7\xf0\x61\x5b\x7e\x40\x61\x4b\xb0\ \x0a\x0f\x14\xda\xc4\x01\x62\xfd\x1a\xeb\xde\x01\x07\x41\x31\x5a\ \x7b\x04\x32\x90\x74\x17\xda\x43\xe7\x8e\xfe\x2f\xe9\x4d\xd7\x9e\ \x10\x11\x16\x21\xbb\x44\xdd\x2e\xb3\xb4\xba\x46\x4b\x5d\x2a\xf4\ \xaa\xe6\x57\xad\x0a\xbb\xd7\x09\xde\x6a\x91\x1d\xe9\xec\x69\x4f\ \xbb\xaf\x85\xbd\x0c\x50\x40\x1c\xf8\xff\x9d\x3b\x59\x42\xfe\x8e\ \xbc\xeb\xdd\xcc\x0a\xd6\x42\xf4\x51\xbe\x72\x34\x7d\x09\xf1\x88\ \xdf\x0e\xed\x4c\xc8\xf8\x6b\x37\x05\x92\x6b\xa8\xad\x70\xf9\x59\ \x1c\x34\xde\x50\x06\x9c\x78\x07\x27\x3a\xc9\x6e\xeb\xba\xed\x5f\ \xa2\x34\x9b\xf5\x56\xaf\x36\x0b\xa5\x05\x7b\x69\x51\x90\x60\xe0\ \x22\x8f\xa8\x6b\x08\xdf\x9f\x8e\x95\x2d\x72\x9c\x1b\xf9\x28\x19\ \x41\x9c\xd6\xd0\xbd\x56\x69\xaf\xcd\x89\x8d\x36\x3a\x12\x6a\x48\ \xbb\x60\xa3\x06\x5f\x73\x05\x8c\x7b\x03\x50\xe0\xb8\x8c\x83\x40\ \x6a\x90\x86\x7b\x10\x33\xe7\x73\xbe\x77\xf0\xa3\x7b\x90\x3e\x94\ \x53\x12\x5b\x79\x27\x69\x6b\x39\xdb\x29\xa4\xa8\xf0\x96\x0f\xdb\ \x12\xe9\xa0\x03\x21\x30\x00\x24\x28\x23\x4d\x9a\x17\x32\x53\x3f\ \xb3\x18\x9b\x81\xc2\x97\x84\x71\xa5\xb5\xf2\xb9\x03\xd1\x9e\x05\ \x60\x0b\x79\x50\xb4\x76\xd3\x17\x84\xe1\x3f\x57\x30\x10\xc1\xd8\ \x03\xd8\xe3\xb1\x3f\x08\x2c\x58\x81\xfe\x88\x3d\xd0\x0d\x19\x71\ \x35\x2b\x6c\x15\xdd\x4b\xb2\x00\x94\x99\x34\x40\xbb\x27\x79\x81\ \x32\x2c\x43\x2a\x20\xbe\x7b\x78\x83\x35\x04\x05\x2d\x18\x03\x35\ \xcc\x40\x80\x6a\x3e\x10\x7c\x09\x32\xbb\x07\x35\x94\xbe\x4c\xd0\ \x43\x14\x8c\x30\x3f\x30\xbc\x68\xf3\x8e\x6b\x89\xaa\x46\xf2\x03\ \x96\xb8\x89\x1a\xac\x41\x32\x42\xa3\x2f\x00\x02\xe6\xeb\x8f\xb3\ \x20\x14\x42\xc9\x9e\xa0\x0b\xbd\x43\x29\x14\x79\xd0\x21\xe9\xa2\ \x2e\x45\x29\xa5\x7c\xf9\xbc\x08\xb1\x86\xff\xfb\x34\xc0\x19\x88\ \x11\xb9\x22\x1c\x91\x00\x2c\xc4\x0b\xcd\x41\xc0\x90\x49\xaf\xf6\ \x3a\x38\x82\xdb\x2c\xd1\x79\x01\x8d\x5b\x86\xe1\x23\xbe\x0b\x7c\ \x83\x3b\x0c\x05\x80\xaa\x01\x2d\xb8\x43\xe5\xa3\xc3\x8f\xe3\x3c\ \x35\x6c\xa6\x94\x7b\x36\x92\x00\x09\xc7\x9b\x95\x59\x01\x44\x6c\ \x01\x8a\x9f\x30\xa1\xf3\x10\x07\x9e\xe0\x09\x32\x12\xa0\x2f\x60\ \xbe\xf4\x3b\x8b\xb3\x70\xae\x21\x0a\xa2\xcf\x03\x0c\x1d\xe2\xa1\ \x72\x6b\x8b\x84\xb1\x1e\x1e\xa2\x85\x33\x08\xc7\x1f\x5a\xc2\x01\ \x59\x90\x03\x10\xc5\x3f\xa8\xa2\x52\x14\x35\xf2\x0a\x29\xc5\x3a\ \xaf\x23\xdb\x42\x82\x88\xc5\x58\xfe\x64\x15\xd0\xb1\xb5\x2b\x7b\ \x81\x28\xd8\xb8\x8d\xc3\xc0\x8c\x03\x05\x5e\xf4\xc0\x1a\xb8\xa1\ \xb0\x99\xc3\x61\x94\xa9\x37\x7c\x03\x62\x21\x16\xe4\x18\x09\x5b\ \xc1\x89\xc3\xfb\x43\xa5\x61\x1a\x3f\xd8\x8e\x69\x04\xc9\x66\x3c\ \x00\x6b\xb4\x9c\x01\xea\xbb\x6d\xe4\x41\x76\x13\xa2\x20\x6a\xb7\ \xa0\xdb\x03\x57\x00\x05\x43\x91\xae\xe9\xe2\x3f\x24\xdc\x17\x1f\ \x64\xc7\xd5\xa3\xae\x1c\x8a\x98\xff\xfb\x03\x2a\xb4\x11\x80\x0b\ \x32\xc0\x62\xaf\xaf\x93\x26\x7e\x8c\x19\x25\x7b\x95\x00\x54\x38\ \x85\x5b\x20\x5c\xe4\x38\xe2\x93\xa3\x85\xbc\x43\x0f\x74\x82\x1a\ \x10\x27\xd3\x42\x09\x89\xac\xc3\x5f\xcc\xb8\x8a\xec\x07\x95\xd3\ \xc3\x91\xb0\x16\x8e\x74\xc6\xda\xb9\x2d\x6d\xe9\x09\xa5\x19\x8a\ \x73\xd1\x80\x03\xc0\x07\x03\x50\x87\x69\x49\xb0\x1d\x64\x3e\x1e\ \xf4\x46\x20\xe2\xcb\xd2\xbb\xae\x3d\x28\x86\x3d\x00\x8c\x61\xb0\ \xab\x47\xb1\x05\xeb\xf9\x0f\x7e\xb1\x9b\xe8\x72\xab\x21\x10\xc5\ \xf0\xb2\x25\xc7\xc9\x0c\x6b\x78\x11\x83\x98\xcc\x48\xb1\x47\xc5\ \x2a\xb8\x57\x4c\x32\xc6\x09\xac\xb0\x0b\x9d\x59\x44\x3b\x2a\x08\ \x36\x88\x2b\xc3\x8d\x93\xca\xfe\x0c\xcc\x38\x6c\xf2\x38\xaf\x2c\ \xb0\x2f\xd0\xca\x6c\x32\x16\x13\x4c\x46\x11\x72\x3c\x3f\x6c\xc6\ \x75\xba\x96\x9e\x58\x9a\x9e\x98\x95\x39\x11\x07\x92\x80\x17\x46\ \x3c\xb3\x4e\x12\x1b\x5a\xf0\xa4\x00\x71\x49\x20\x32\x1b\x50\x00\ \x85\xc0\x74\x98\x0a\xb1\x94\xb8\x98\x0b\x1f\x7a\x94\x17\x93\x07\ \x5c\x98\x47\x8d\x2a\xc5\xcc\xd8\x03\x74\x38\xc0\x10\x51\x2c\x03\ \xc4\x42\xb1\x23\x19\x24\x03\xa3\x05\x1c\x3b\xd0\xe1\x1c\x31\xfc\ \xaf\x2f\x03\x3e\x5f\x93\x4f\x30\xeb\x35\x06\x42\xc8\x31\xe0\x04\ \xd7\x24\x2d\x32\x2b\x31\x06\x6b\xb0\x91\x00\x50\x45\x7a\xa7\xc3\ \xd3\x16\xd9\x6a\x4b\x9c\x08\x17\xab\x91\x1c\x21\x28\x23\x94\x3c\ \xb3\xbc\x3c\x0b\x4f\x1a\x94\xb5\x00\x22\x44\xa3\x49\x75\xcb\x21\ \x4c\x04\x05\xfd\x73\x1b\x46\x81\x25\xc0\x40\xa5\x0a\xa9\x3a\x4f\ \xfb\x2b\x84\x50\x15\xca\x44\x87\x61\x60\x0d\x84\x90\x99\xc3\xc1\ \x42\xd6\xf8\x47\xdd\x48\x40\x19\xfd\xcc\x80\x14\x99\x2b\xfb\xaf\ \x1c\xf5\x32\xf8\xfc\xb5\xf9\xac\xc5\x3b\x2c\x33\xfd\x94\x81\x37\ \x54\xc3\x35\x04\x9a\x8f\x40\x1d\x34\xa9\x3e\xdc\xf1\x92\xdb\x49\ \xa4\x6b\x09\x21\x90\xcc\xfe\x3e\x00\xfa\x82\x94\x54\x49\xf5\x23\ \x14\x0a\xad\xae\xea\xc9\xa1\x7b\x10\x42\xe8\x42\xba\xc0\x74\x3f\ \x57\x98\xa8\x4c\x79\x8b\x62\x70\x05\x4e\x11\xc5\x12\xb5\x98\xd5\ \xd8\x03\x72\xb8\x1f\x16\x4d\x35\xcc\x1c\xc0\x06\xa4\x51\x56\x41\ \x4f\xf5\x44\x08\xcd\xaa\xa6\x2d\xc8\x32\xb4\xd3\x32\x3a\x0a\x54\ \x1f\x1d\xb6\x5e\xec\x24\xd7\x6c\x44\xa1\xfa\x29\x5e\xcb\x04\x2d\ \x88\xaf\x74\xaa\x36\x41\x4a\xa1\x95\xc0\x89\xa3\xf9\x92\xa8\x1a\ \x21\x0f\x0a\x82\x78\xe9\xbb\x7a\xd9\x46\x6e\x44\x2b\x15\x13\x3d\ \xb4\xa0\xc9\x4c\x94\x2e\xe7\x0c\xd3\x0a\xd1\xae\x7a\x8b\x8b\x05\ \xb1\x86\xef\xea\xab\xca\x30\x45\xf7\x49\x1c\x12\x39\x95\x8e\xd2\ \x42\x04\xc2\x11\x19\xe5\x1f\x2b\xd4\x15\x93\x49\xb8\x07\x1a\x4d\ \x41\x7d\xcf\x1d\xf5\x35\x8e\x03\x85\x5d\x0c\x46\x22\x88\x48\xbd\ \xdb\xbc\x40\x19\x83\x9f\xaa\x19\x8b\x54\x92\x91\xb0\x4d\x36\x60\ \x09\x38\xc9\x9d\x9a\x83\xb9\x43\x9a\x09\x49\xc5\xd6\x9e\xf1\x3b\ \x5a\xe0\x0f\x4e\x38\x3f\xbd\x14\x55\x83\x22\xbd\x0d\xf0\x52\x54\ \x0d\x3a\xbb\x00\xcc\x55\xc2\x34\x09\x31\x22\x29\xe4\xb1\x13\x18\ \x81\x11\x68\x07\x2d\xfe\xc8\x00\x75\x18\x82\x21\x80\x53\x60\x90\ \x9f\x53\x51\xd1\x51\x11\x38\x01\xf4\xd5\x7c\x44\x4f\x39\x65\x15\ \x60\x4d\xa0\xd2\x41\x3b\x62\xcd\xb2\x5f\xfb\x32\x34\xec\xc0\x3b\ \x0c\x4b\x43\x2d\x0b\x97\x68\xd6\x94\x2c\x31\x12\x54\xc3\xf9\xca\ \x84\x28\x20\x4b\x3f\x20\x09\xda\xca\xd6\xd8\xd9\x56\x76\xfa\x56\ \x12\x0a\x82\x9e\x61\x44\x32\xf3\xa4\x4e\xda\xc1\x1d\xfc\x8f\x2e\ \x70\x4e\x4b\x24\x55\x77\xd4\xa1\x4c\x7c\xce\x58\x7a\x90\xee\xb1\ \x05\x79\xf0\xbf\xff\xc3\x85\x18\x38\xb6\x79\xf2\xbb\x2f\xf8\x1a\ \x20\x68\x87\x63\x40\x8d\x2d\x20\x87\x61\x98\x91\xf1\xd4\x53\x5e\ \xed\xc7\x90\x72\xca\x84\xe3\x32\x2f\xd3\x32\xe1\x3b\xcd\x84\x4c\ \x56\x65\xbd\x4a\x66\xad\x97\xae\x6c\xc4\x93\x58\xb3\x12\x5b\xc3\ \x8c\x93\xa3\x8b\x44\x46\x3d\xac\x56\x8f\xe8\x9d\x36\xb1\x5b\x4b\ \x05\xa1\x6f\x71\xd9\x97\x6d\x96\x7a\xc1\x3b\xf5\xf3\x8f\xc4\xbc\ \x17\x51\xdd\x00\x1e\x3a\x03\xd2\xf3\xcb\xb5\x92\xae\x55\xc5\x94\ \x62\x00\x8c\x0a\xf9\x49\xa0\x44\x01\xfd\x3c\x89\x2f\xc8\x80\x63\ \x78\x51\x5c\x4a\x0d\xf3\x2c\xac\x8f\x32\x32\xce\xdd\xda\x87\x85\ \xd8\xf7\x0c\xbe\xfe\xe1\x33\xc3\x8d\x23\x5b\xb7\xa3\xb2\x37\x2c\ \x33\x4f\x55\xad\xa3\x52\xc3\xe3\x72\xbb\x5b\x5c\x86\x28\xb0\xc8\ \x36\x90\x5b\x3d\xdc\x07\x25\xc1\x1d\x95\xdd\xd6\x0b\x73\xd9\xdc\ \x09\x89\xfc\x70\x48\xf4\x83\xd0\x6e\xa4\x05\x48\x24\x28\x48\xa3\ \x2e\x49\xdc\xd9\x9a\x0c\xba\xb5\x21\x18\xe9\x2c\x10\x58\xc5\xa8\ \x3f\xc0\x05\xca\x85\x0e\x20\x18\x81\x78\xc8\x15\x56\x19\xb8\x00\ \x14\x88\xdb\xdb\x9f\x1a\x75\x40\x2c\xeb\xb2\xf8\xac\xd8\x17\x98\ \x40\x5e\x13\xb6\xb6\xb5\xc5\x9e\xda\xb8\x00\x73\xc8\x21\x2d\xb3\ \x77\xa0\xb5\x1f\x75\x3b\xf6\xa5\x2c\x26\x39\x59\x42\x4a\x39\x9d\ \x18\xa1\xdc\x71\x13\xd8\xda\xdb\x95\xe0\xdb\x11\x00\x94\xac\xac\ \x01\xe3\x05\x55\x44\xe9\x0f\x76\xcb\xa1\xb8\x30\xc2\xc0\x55\x28\ \x30\x6d\x0b\xe9\x4a\x10\x4b\x71\xdc\x00\x88\x5c\x7c\xcb\x5e\xed\ \x35\xb3\x2f\x20\x87\x06\xd4\x53\x30\x42\xe1\xcf\xdc\xaf\xcf\x01\ \x3e\xe0\x9b\x04\xf6\xad\x58\xf9\x3c\x4d\xa9\x2c\x43\x50\x90\x06\ \x30\x03\xa8\x3b\x94\x81\x35\x14\x30\x38\xb8\x61\x30\x93\x23\xfe\ \xbd\x19\x62\x01\x50\x00\x36\xd9\x07\xc3\xd6\xa3\x41\x60\xd9\xd9\ \x5b\x08\x0b\xfe\x89\x98\xe5\xbc\xfd\xa8\x81\x14\xe3\x46\xc1\x95\ \x44\xc0\x70\x85\xb3\x21\xa8\x7e\x51\x47\xb6\xd8\x3f\x10\xbd\x59\ \xed\x92\xc7\x79\x44\x5a\x11\xde\xde\x61\x30\xe1\x2a\x5c\xaf\x84\ \x6d\x35\x3e\xb5\x06\x08\x8c\x40\x09\xdc\x40\x5e\x0b\x36\xd4\x34\ \xc3\x88\x93\x86\x09\x5c\x86\xfd\xd0\xb8\x1a\x78\xb8\x31\xd8\xbc\ \x7b\xa0\x86\xff\x32\x5d\x9b\x29\xcb\x22\x7e\x36\x5b\xd9\x54\xca\ \xd9\xd4\x45\x96\x54\x97\xfd\x08\x3e\x10\x20\x8e\xe5\xbc\xb6\x52\ \x8b\xe4\x35\x0b\x81\xb2\x60\xb7\x68\x3a\x1e\xda\xe2\xb4\xf0\x0f\ \x05\x71\x05\x27\x34\x10\xe5\xaa\x1e\x86\xb1\xd7\x58\x85\x05\x33\ \x1e\x61\x0e\x68\x40\x15\xe6\x4c\x80\x1c\x3b\xf3\xc1\xd1\x08\x74\ \x61\x3a\x7e\xe1\x32\x2c\x4d\xf6\xf5\x35\x06\x7a\x83\x17\xf8\x32\ \x2a\x23\x82\x06\x1a\x83\x37\xb0\x03\x69\xe8\xa4\x68\xb5\x83\x2e\ \x0b\x36\x69\x00\x8e\x49\xd8\x07\x92\x55\x12\x93\xb5\xd6\x24\xc6\ \xd6\x48\x46\xa4\x3b\x83\x30\x21\x28\x0e\x01\x1a\x33\x7b\xe9\x3c\ \x75\x2b\xba\xb5\x48\x4c\x1f\x2c\x28\x04\x51\xc7\x21\xaa\xd0\x4f\ \x50\x1b\x1d\x0a\x80\x17\x33\xe5\x0d\x50\x53\x51\xc4\x85\x67\x61\ \xe5\xca\xfe\xf5\x11\x86\xd5\x67\x13\xf6\x47\xf6\x62\xe3\x06\x14\ \xc3\x5a\x6e\xe1\xb4\x9b\x04\x5e\xdb\x35\x5d\x26\xcd\x09\xec\x65\ \x39\xea\x51\xd0\x22\x02\x63\x5e\xc3\x2f\x03\xa8\x62\x7e\x81\x2d\ \xab\xb8\x17\x40\x0e\xe0\x68\xb9\x3a\x3b\x62\xbb\x0d\x89\x4d\xc5\ \xe6\x24\xbe\x09\x41\xc2\x07\x47\x45\x49\x99\x25\x57\xb5\x08\x05\ \xe7\x5c\x2b\x46\x1b\x14\xff\x18\xa8\x44\xa9\x50\x7e\xa1\x9b\x76\ \xe4\x64\xc7\xd5\x44\x71\x78\x4c\x5c\x98\xdc\x7b\xae\xc3\x21\xc0\ \xa5\xcd\x54\x63\x69\x92\xe5\x90\x12\x43\x31\xfc\xbd\x16\xa6\xe3\ \xa5\x3e\x43\xf9\xfc\xb2\x5a\x7c\xbb\xff\x5a\x06\x87\xbc\x07\x34\ \x34\xe6\x64\xd8\x63\x27\xc8\xa3\x65\xee\xb2\x21\x1e\xcb\x8d\xf6\ \x83\x64\xe4\x03\xbb\xf5\x99\x97\xed\x13\x6c\x7d\xa7\x22\x46\x23\ \x29\x91\x59\xce\x53\x37\x9c\x75\xce\x99\x74\x34\xe7\x35\xe7\xd1\ \xe3\x97\x04\x31\xc2\x85\x52\x90\x0a\x01\x85\x63\xb0\x5e\x5a\xfa\ \x83\x3c\xf0\x69\xe8\x20\xe1\x10\xf9\x67\x87\xed\x67\xa6\x0c\x40\ \x5b\x43\x6a\x17\xae\x99\x9a\xb1\x38\xd2\x64\x5f\x88\xeb\x51\xfb\ \xa4\x58\x34\xcc\xe1\x5b\xbc\x61\xd1\xf1\x40\x35\x1c\xe4\xd2\xb1\ \x83\xfe\x46\x9d\x4d\x26\x91\x5b\x6d\x69\x83\x37\x69\x8e\x97\x85\ \x30\x96\xe8\xa0\xee\xc8\xc8\x36\xa8\x92\x2a\x2d\x0b\x41\x51\x37\ \xb7\x62\xe9\x0b\x15\x94\x42\x01\x65\x73\x96\x8b\x4f\x18\x1b\x85\ \xf2\xc1\x0d\x18\x65\x03\xf9\x6b\x5a\x22\x81\xc1\x26\x6c\x1f\x79\ \x9c\x7d\xac\xd1\xf3\x24\xea\x13\xde\x53\x88\x1d\xe8\xf6\x65\x20\ \x5d\xa6\x63\xd2\x7c\xea\x5b\xa4\xa3\x88\xbb\x87\xd8\xd4\x38\x2a\ \x28\x9d\x17\x70\xc3\x8c\x03\x6f\x9d\x82\x92\x92\x4e\x1d\x00\x2d\ \x4b\xcb\xf1\x99\x11\x78\x59\xd4\x96\x8e\x20\xb0\x56\x34\x21\xbf\ \xfc\xb8\x21\xe3\xa4\xd0\xda\x36\xb7\x95\x96\x6b\x4b\xf6\xe4\x45\ \x5b\x10\x57\xc8\x49\xf6\xbb\x17\x76\xc6\xc4\x31\xc6\x37\xec\xb5\ \x67\xe4\x06\x82\x21\x78\x1c\xd0\x05\x56\x94\x7a\x6e\xe8\x96\x19\ \x6b\x10\x1d\x9a\x89\x63\xf7\x6d\xa0\x5e\x0b\xbe\x5d\xbb\x45\x2a\ \x98\xd8\xf7\xed\xec\x7b\x78\xbb\x16\x48\x83\xcf\xba\x43\x67\xe6\ \xea\x27\xd1\x02\xf4\x4e\x9d\x93\x23\x16\x27\xf0\x99\x19\x67\x96\ \xba\x8d\xad\x9b\x20\x3f\x12\x73\x82\xf5\xcb\xed\xb6\x62\x2b\xdb\ \xce\x21\x99\x9c\x49\x1d\xea\xcb\x7d\x09\x05\x32\xcd\x62\xa3\x53\ \xfe\x47\x82\x72\x2b\x71\x28\x6e\xbf\x09\xca\x9e\x46\x6e\xa1\x19\ \x06\xc3\x86\xf0\x00\x9c\x04\x2c\x24\xea\x1a\x15\x48\x0b\x8f\xd8\ \xa5\xbe\x6e\xa7\x8e\x40\x8e\x83\x40\x2f\x13\x36\x8c\x3b\x2e\x6d\ \x2a\xef\x16\xe0\x29\x35\x54\xf1\x0b\x6f\xa6\x36\x60\x33\x39\x3f\ \x39\x2d\x60\x03\x19\x58\x83\x2f\xc8\xf3\x7c\xf5\x1d\xe9\x10\x24\ \x6c\x96\x64\x01\x0a\x14\x87\x1c\x67\x1f\x57\xb7\xb8\x8e\xeb\x51\ \x46\xd5\xe8\xe2\xa1\x05\x20\xd3\x62\x88\x05\x4f\xf6\x41\x76\xd3\ \x82\xc7\xfc\x03\x12\x58\x70\xe4\x96\x01\x1f\x51\xac\xe6\x56\xd8\ \xdc\xf8\x22\x0a\x07\x00\x37\xc2\x32\x30\x0f\xf3\xf9\x94\x6c\x8d\ \x13\xd4\xec\x0e\xcb\xce\x2e\x6f\x6b\xb2\x40\x63\x79\x92\xd1\x89\ \x3e\x34\xca\x8f\x31\x88\xbe\x2a\xfd\x82\x5d\x27\x20\x72\x61\x96\ \x46\x0e\x09\x49\x96\x64\x09\xd2\x8f\x05\xe3\x71\x43\xa1\x6d\xdb\ \x76\xce\x7b\x00\x05\x99\x94\x87\x61\x18\xe5\xb3\x61\x28\xa6\xa3\ \x14\x45\xeb\x41\x5a\xd0\x4e\xa0\x64\x85\x29\x37\xb3\x11\x28\x61\ \x55\x63\x40\x4f\x4f\x88\x03\x3a\xec\xc6\x09\xe8\xfa\x32\xc3\x74\ \xa7\x6c\xe1\x6b\xe6\x06\xa2\xa3\x83\xae\xc5\xfd\xed\x29\x5a\xfe\ \x33\xf1\x07\x8a\x77\x60\x94\x86\x9b\x79\x61\x37\x74\x43\x09\xc2\ \x75\x31\x93\x81\x7c\x15\xf8\x79\x52\x89\x9e\x09\x76\x27\x08\xf4\ \x3f\xd1\xca\xfd\x20\x02\xf5\x6b\xab\xb6\x22\xd7\xb6\xc2\x40\x22\ \x67\xd7\x53\xc5\x44\x4d\x84\x3a\x09\x79\xb1\xb3\x22\x82\x6c\x4f\ \xf0\x3f\x28\x63\x6e\xc7\x67\xf1\x74\xb5\x5f\x6d\xee\x2e\x5c\x2f\ \x99\x41\x6c\xf3\x11\xb6\x28\xb0\x4f\xca\x7e\x01\x57\x50\xe8\x88\ \xbb\xc5\x32\x87\xf7\x20\xe6\x40\xb2\x08\x05\xb8\xab\x26\x2a\xb0\ \x40\x0a\xea\x07\x67\xbe\x19\x7e\x77\xc8\x12\x53\xad\x90\x23\x76\ \xd6\x81\x89\x1a\xef\x13\x84\x17\xa0\x3f\x51\x78\x71\xe2\x0f\x09\ \x9d\x50\x41\x19\x83\x66\x17\xf2\x9f\x53\xdc\x71\xac\xc9\x05\x31\ \x1f\xf3\x29\x06\x50\xe8\x82\x63\x78\xcc\x7f\x60\x85\x2b\x11\x79\ \xa1\x29\x61\xbc\x58\x45\x7f\xf6\x74\xcf\xed\xc7\xa2\xde\xd3\x52\ \xd7\xb8\x3a\x5e\xf7\xa6\x3e\xdd\x09\x04\xbe\x3a\xce\xa6\x3c\x0e\ \x33\x38\x70\x02\x2a\xc0\xa9\x9d\x6a\x5b\xf8\xe5\xb5\x79\x37\xbf\ \xb3\x3d\x33\x99\xc5\x12\xbf\xf3\x19\xd7\x01\x9a\x67\xca\xd7\x87\ \xd4\xca\xaa\x37\xce\x00\x69\xab\x7b\x18\x65\xe2\x6b\x76\xfe\xc5\ \x5d\x74\x48\x7b\x94\xf3\xba\xb2\x3d\x78\x72\xc0\x16\xec\xb4\x07\ \x82\xb5\x97\xd1\xcf\x15\xf5\x54\x3b\x3b\xd7\x50\x6c\xd9\xd0\x35\ \x61\x33\x43\x38\x8e\xe1\xd3\xbc\x45\xe3\xdb\xb5\xfa\x42\xf3\x37\ \xf8\xb5\x37\xa0\x97\x5a\xeb\x2f\x0e\x94\xa3\x35\xc4\x58\x9e\xda\ \x8f\xfb\xc5\xbb\xbd\xeb\x3b\x99\xda\xf5\x7c\x05\x1a\x06\x63\x03\ \x5e\xa7\x97\x4e\x12\x94\xca\xcf\x6d\x87\xbf\x7e\x89\x47\x55\x48\ \x03\xfd\xb8\xbe\x78\x32\x9d\xba\x62\x18\x51\x32\x46\xfd\x63\xd0\ \x15\x53\x39\xd8\x72\xef\xdc\xcf\x55\x79\x93\xc7\x91\x13\xdf\xc0\ \xda\xf7\xb5\x18\x76\x05\x5c\x64\x5f\xea\xde\x38\x8c\xd3\xa6\x41\ \xb6\x23\x19\x00\x08\x69\x2d\xd2\xa4\x69\x61\x87\x9a\xb4\x84\x6f\ \xee\x8d\xd1\x72\x4f\x5a\x0d\x19\xef\xc8\x90\x99\x48\xf1\x22\x45\ \x19\x5f\xbe\x8c\x70\xc2\xc6\x89\x93\x36\x20\x9d\x10\x21\x02\x07\ \x8e\x8c\x93\x70\x88\xd4\x18\x13\xea\x65\x0d\x5a\x32\x6b\xc0\xa9\ \x61\xb3\xc6\x4b\x50\xf2\x96\xc9\x03\xa5\x13\xd4\x86\xa0\x3a\x8b\ \x15\x0b\xb0\xc1\x96\xb5\x3f\xff\x96\x32\x6d\xea\xf4\x29\x54\xa7\ \xb8\xd6\x60\xac\x6a\xf5\xaa\xd5\x0c\x00\x00\x58\xeb\xfe\xea\xd5\ \xda\x96\x2d\x5b\xc7\x92\x2d\xbb\x35\x2c\x58\xb1\x00\xc2\xaa\x5d\ \x1b\x76\xad\xd9\x2d\xd6\xec\xcc\x5d\x26\x2d\xca\x0b\x6a\x54\xa8\ \xb8\xda\xfb\xe2\xc5\x32\x50\xcb\x5e\xec\xa5\x96\xf7\x85\xb4\x37\ \x0b\xa5\xbd\xb0\x23\xed\x0b\x99\x1a\x76\x5a\x50\x4e\xf6\xe2\x9e\ \xc3\x7b\x0c\x6b\xb0\x1c\x63\x11\x2b\x99\x94\x25\x47\x8a\x14\x09\ \x92\x08\x48\xce\x2a\x4f\xe2\x7c\xe9\x9a\x26\xad\x9a\x31\x6b\x7c\ \x0a\x05\x74\x03\x28\x57\xba\x41\xb9\xc6\xed\x4a\x9e\x3c\x15\x51\ \x87\x13\x1f\x3e\x15\x34\x72\xac\x31\x24\x00\x90\x20\xb7\x2b\x30\ \x6b\xc0\xde\x9a\xad\xee\x96\xad\xd8\xec\x67\xe1\x52\x2f\xbb\x85\ \xb2\xb5\xc1\xcb\x06\xff\xcd\x4b\x05\xf0\xf8\xc1\x7e\xc5\x4b\xd3\ \x7c\xef\x4d\x63\x69\x70\xc8\x7c\xa1\x96\x8c\xf2\xc1\x37\x0d\x35\ \x8f\x89\x28\xe3\x7f\x72\x64\xc0\x31\x86\x13\x0d\x69\x61\xe0\x48\ \x2d\x8d\xb1\xa0\x6a\x70\x70\x42\xcb\x4d\xa1\x6c\x00\xd3\x4d\x31\ \x41\x58\xdb\x4b\x1b\xe8\xa6\xdb\x84\x19\xfe\xa4\x54\x71\x21\x8a\ \xf8\x07\x2b\x40\x04\x78\x22\x10\xe4\xb0\xc5\xd5\x1e\x5e\x75\x67\ \x9d\x77\x2b\x66\xa7\xdd\x5b\xda\xc5\x98\xc6\x5c\xfe\x54\x18\x96\ \x97\x5e\x7e\xbd\x00\x0a\x61\x54\xd8\x71\x1e\x79\xed\x39\x94\x10\ \x62\x44\x84\xf6\x86\x90\xc9\x50\x11\x85\x7e\x0b\x32\x28\xd1\x89\ \x29\x2d\x78\xa0\x16\x6d\x1c\x58\x20\x49\xfd\xb9\xc4\x59\x4c\x44\ \xc4\x36\x53\x28\xf7\xf0\xf6\x9a\x49\x9c\xd0\x16\x0a\x4e\xb9\xb9\ \x52\x8c\x2b\x13\xca\x09\x8a\x38\x20\x8a\x78\x27\x71\xac\xa0\x70\ \x62\x72\x40\x1c\x33\xa3\x35\x7b\x0c\xe3\x62\x5b\x30\x92\x85\x9d\ \x77\xdc\xb9\x15\x63\x58\x38\x26\x73\x10\x35\x91\xf6\x58\xde\x5e\ \x76\x0c\x09\xd8\x5f\xcb\xb8\xa7\x58\x42\x4e\x50\x34\x46\x63\x91\ \xb6\x37\xc6\x4a\x26\xa1\xf4\x19\x72\xef\x10\x31\x06\x66\x06\x6a\ \x71\x20\x81\x36\x2d\xb8\x59\x4b\x37\xcd\x04\x61\x99\xa0\xdc\xc3\ \xa6\x4c\x17\x5a\x28\xa1\x2b\x7b\x14\xb3\x87\x4f\x1b\xc4\x83\x0b\ \x9e\xc9\x16\xf7\xc7\x9e\x7c\x82\xd6\x8e\x35\x67\x05\x3a\xcc\x30\ \x7b\x4c\x67\xa3\xa1\xdb\x15\x3a\x56\x5b\xd8\x1e\xba\x05\x8e\x73\ \x49\x5a\x1e\xa5\x84\x25\xe3\x24\x15\xe4\x2d\xb3\xd0\x7b\x6f\x48\ \xb3\xcc\x18\x14\x11\xc1\x98\x61\xfa\x11\x21\xd1\x3b\x32\x54\xc4\ \xa7\xaa\xac\xbe\x8a\x65\x43\x52\x2e\xe8\x9a\xfe\x4b\x2e\xb1\x79\ \x13\x6b\x65\x6e\xb0\x6b\x28\x06\x87\xf2\x09\x2d\x6a\x86\xa2\x5b\ \x32\x70\xf6\x14\x8a\xb2\x19\x0f\xf7\x07\x2c\x31\x38\x7b\xd5\x17\ \xe4\x70\x6b\xc7\x30\xe4\x10\x9a\x6d\xa2\x28\xcb\x78\x28\x8e\x96\ \xce\x65\x4d\xa4\xe8\x05\x59\xa9\xa5\xae\x64\x1a\xd8\x7b\xe9\x69\ \xaa\xaf\x0c\x5a\xbc\x10\x85\xa6\xa4\x7e\x8c\xd1\x3b\x03\xbe\x01\ \x0a\xbb\x9b\x6a\xd6\xf0\xd2\xfd\xf5\x56\x26\x9b\x27\xe1\x6a\x9b\ \x4f\xae\x85\xd2\x2b\x4e\x1b\x00\x17\xe7\x10\x27\x68\xfc\x35\x54\ \xb8\xe4\x31\x34\x46\x40\x64\x00\xd6\x5a\x81\xee\xd1\x62\x8b\x8a\ \xa2\xfc\x36\x77\xdb\xae\x95\x86\xcb\x76\x3c\xaa\xe3\x78\x7f\xed\ \x25\xa4\xa5\xe7\xa1\x27\xd8\xbb\x45\xce\x27\xc3\x3d\x87\x49\x33\ \x06\x11\xa8\xf2\x09\x84\xd1\x83\x29\x94\x34\xbb\x2f\x0d\xdc\xd2\ \x4b\xf7\x2c\xbc\x01\x4d\x9c\xc0\x01\xa1\x4b\x66\x32\x8c\x13\x6d\ \x36\xe5\xe4\x93\x38\x60\x9b\xee\x14\x89\x26\x92\x5d\xd1\x10\x33\ \xee\x11\x45\x8b\x69\x71\xab\xf2\xdb\x88\xc6\xd5\x55\x32\xd6\x9c\ \x7b\xd0\x5f\x3d\x0e\x69\xf7\x90\x44\xda\x25\x58\xb9\x63\x00\x41\ \x38\xdf\x08\xdd\x73\xef\xd0\xf9\xb6\xa4\xfe\x18\xac\x02\x57\xde\ \x5f\x85\xad\xb1\xe9\xda\x49\x9a\x6f\x6e\xbd\xd5\x2f\x41\x8c\xa1\ \x3c\xc7\xd8\x79\x3a\xf9\xb8\xa8\x3e\xb4\xd9\xce\xa5\xbd\x87\xc9\ \x7b\xd4\x08\x37\xdc\x33\xca\x0d\xae\xee\x8f\xf6\xed\xfb\xb9\xbb\ \x07\xff\x17\xe0\xea\x11\x46\xcd\x3d\xfe\xa3\x05\xbb\x3d\x4a\x79\ \xcc\xfb\xd8\xf1\x56\x83\x12\x19\x70\x82\x81\x2b\xa1\x85\x98\xb2\ \xe7\x20\x0b\xe1\x6a\x0c\xb1\xe1\x04\x06\x59\x63\x13\x0c\x65\x08\ \x26\xb5\x11\x1f\xf9\x42\xc8\x14\x5c\xc0\x62\x75\x35\xb0\x86\xfa\ \xd0\x42\x28\xb9\x55\x87\x85\xd6\xb1\x1d\xb7\xe8\xd7\x02\x71\xed\ \xad\x49\xf9\xeb\x9b\x8f\xec\x32\x1e\xbf\x9c\xe7\x0d\xf7\xba\xc7\ \x64\x76\x77\x99\x31\x70\x42\x71\xc9\xa9\x89\x7b\x6a\xe0\x04\x9a\ \x2c\x30\x25\xab\x69\xe0\x3b\xa2\x98\xc1\xed\x65\x4e\x8a\x52\xab\ \x89\xd5\xaa\x56\x9b\x1a\x20\x4b\x84\x5e\x24\x11\xd9\x64\xe0\x3e\ \xec\xa8\x70\x45\xd9\x72\xe1\x19\x5f\xe4\x16\x83\xf0\xad\x52\x8f\ \x3a\x57\x0b\x9c\xb4\xbf\xf4\x04\xa9\x6f\x76\x80\x97\x0c\xc6\x60\ \x1f\x83\xdc\xf1\x1e\x35\xf8\x82\x44\xce\x97\x9c\x77\x7c\x61\x0c\ \x8a\x71\x4f\xc3\x38\x03\xa1\xea\x39\xfe\xa8\x81\x19\xbc\x15\x14\ \xdf\x91\x41\x0c\x6a\x6e\x4d\xdd\x43\xc2\xf8\xbc\x18\x42\x3d\x21\ \xb0\x75\x6c\x71\x4e\x19\xd5\x08\x3f\xda\x15\x8a\x7e\x93\xb0\xd4\ \xef\x08\x78\x9f\x38\xe2\xf0\x66\x84\x01\x9e\x5f\x3c\x33\x02\x69\ \xa0\xd2\x30\x89\x59\x90\xbe\x16\x57\x34\x59\x0d\x2c\x7a\x52\x62\ \x13\xf5\xc6\x84\x35\x9b\x44\xcc\x91\x8d\x2c\x22\x27\x3e\xe1\x30\ \x60\x6a\xb2\x99\x4b\xf9\x43\x1e\x04\x89\x1c\xb3\x49\x67\x85\x64\ \x1c\xe5\x28\x61\x18\x96\xba\xa1\x32\x7f\x94\x89\xe3\xdd\xfc\x46\ \x1e\x9a\x11\x29\x5e\x32\xa0\xe5\xa3\x58\xf9\x82\x37\xcc\x07\x45\ \x9c\x60\x89\xa9\x54\x52\xbd\x9b\x38\xac\x56\x15\x9a\x89\x4d\xa4\ \x16\x93\x46\x4e\x6d\x42\x36\xe9\xa2\x33\x9b\x79\x9c\x2a\x0d\xe1\ \x2b\x64\x34\x23\x36\xe3\xf7\xa2\xef\x74\x05\x95\x74\xc9\x1f\x44\ \xfb\xe6\xca\x57\xda\x01\x3d\x63\xf8\xcf\x1b\x92\x41\x90\x82\x38\ \x26\x71\xd2\x04\x4d\x1e\xf9\x73\x12\x06\xfe\x47\x25\x2c\x91\xcd\ \xc0\x08\x56\x3d\x0a\x89\xee\x60\x11\x92\x1c\x40\x03\x2a\x50\xaa\ \x9c\x68\x0c\xd2\x69\xd1\x41\x45\x99\xd0\xb8\x6c\x27\x46\x96\xa2\ \x46\x43\x1f\x0a\xd1\x70\xde\x6c\xfe\x3c\x7d\x09\x1e\x35\xde\xf0\ \x9f\x7b\x6c\x34\x0d\xc9\x38\x1c\xa9\xe0\x60\xc4\xab\x14\xed\x21\ \x7e\x4c\x13\x03\x25\x49\x52\x94\x50\x71\x99\x15\x7a\x8d\x6b\x80\ \xf2\x39\x0c\xa9\x43\xa6\x66\x4d\x5d\x80\x64\x10\x0f\xb6\xe5\xb4\ \x5b\x3b\xe5\xa9\x5a\xb6\x65\xca\x48\x09\x15\x9c\xf6\x0b\x1e\x91\ \x40\xf1\x2e\x1b\x52\xc1\x32\xf7\xd2\xc2\x40\x0c\x82\x98\x51\x25\ \x4e\x71\x32\x38\xdf\x7f\x4a\xd2\x12\x86\xf4\xc7\x41\x24\x2d\xa2\ \x14\x25\xa9\xb9\xa9\xb1\xd4\x7a\x9d\xeb\x1e\x30\xc7\x90\x49\xb3\ \x36\xb3\x44\x01\x72\x02\x4e\xbb\x72\xd0\x43\xbd\x35\x65\x8b\x3a\ \xd4\x0c\xa9\xf1\x50\xdd\xd9\x15\x95\x7b\x43\xcf\x60\x54\x99\xbf\ \x8b\x8e\xa1\xaf\x92\x8a\x54\xd0\x0e\x48\x91\xa2\xe9\xab\x68\x2b\ \x59\xd0\x49\x56\xb5\x99\xec\x15\x31\xab\x90\x95\xe4\xf6\x0a\xe6\ \xd2\xee\x31\xac\x61\xae\x51\x87\xd7\x38\xcb\x59\x5c\xd0\x21\x39\ \x5f\x18\x54\x28\x11\xda\xd3\xd2\x7e\x6b\xa1\xcf\xa1\x0b\x5d\x2a\ \xa3\x3f\x1e\xc2\xd6\x86\x76\x0d\xc5\xf1\xa4\xa1\x5a\x02\xa6\x6b\ \x21\xa4\xca\x97\x44\x06\xa4\xa4\x95\x50\x0e\x71\xa2\x29\x13\xf5\ \x88\x2b\xc9\xfd\x46\x11\xb9\xfe\xf8\x0c\x5d\xe7\xbe\x64\xb5\xd6\ \x20\x41\xba\x06\xfe\x47\xc7\x40\x43\x4d\x83\x5e\x73\x76\x68\xc4\ \x26\x0c\xd7\x32\x43\xf0\xb2\xf6\x86\xbf\x7b\xad\xde\x54\x19\x3c\ \xcf\x00\x61\x80\xdf\x2c\xa0\x5d\xee\x11\xdc\x93\xb0\xea\xa2\x03\ \x62\xac\x4a\x9c\xa8\xa0\xfc\x3e\x36\xab\xfd\xa5\xa4\x9a\x6e\x82\ \xa1\xfe\x40\x90\x72\x38\x29\xf0\x81\x0d\xfc\x07\x9a\x5e\x65\x0c\ \xd3\xb9\x56\x5a\xb4\xfb\xe0\x9d\xaa\x31\x2c\x7b\xd9\x83\x37\x2d\ \x0c\x3c\x1c\xf2\x6d\x77\xe9\x7a\x81\x67\xc8\x30\x86\xc9\x14\x84\ \x8f\x86\xd1\xc2\x8a\x6b\xa0\x85\x75\xad\xe4\x3d\xcb\xfb\x4f\x4a\ \x4a\x2a\x1b\x62\x66\x8f\xbf\xfd\xdd\x2f\x06\xff\x5b\x59\xd1\xd5\ \x20\xba\x39\x96\xee\x1f\x62\xf0\x51\x01\x59\x2b\xc8\x35\x72\xeb\ \x90\x13\x5a\x64\x3b\xec\x81\x2e\xf5\xbb\x0f\x44\xed\xfa\xc6\x1a\ \xa6\x4b\x30\x6f\x80\xcc\x94\xab\x8c\x9f\x8a\xba\xe7\x40\xef\x01\ \x4c\x7f\x14\xd3\x9f\xff\x44\x11\x5f\x1a\x54\x64\x23\x5d\x2c\x45\ \x18\xab\x64\x91\x06\xa3\x5e\x4b\x48\xb0\xd9\x37\xcb\xd4\x7c\x56\ \x01\x42\x3c\x02\x95\x53\xb8\xb8\x8d\xbb\x3c\x2d\xcb\x84\xbd\x49\ \x99\xef\x7c\x13\x9c\x42\xfe\xc2\x30\xb9\xa0\x4c\x1f\x6a\x14\xa4\ \xd7\x06\xa1\xc6\x78\x12\xa3\x98\xff\x11\xc8\xaa\x04\xa2\xd2\x6e\ \x4b\xaa\x58\x9a\x54\x11\x99\x68\x66\x20\x25\x37\xb7\xbd\x0e\xf5\ \x27\xa6\xa4\x36\x30\x2e\x7a\xbc\x36\x50\x5e\x33\xae\xae\x7e\xe1\ \x42\xbd\x92\x0c\x5a\xd3\xba\xd6\x6c\x7c\x6d\xde\xce\xa3\xa3\x8b\ \xca\x60\x19\x69\x00\x17\x41\xe2\x38\x2e\x1d\xae\xb7\x3d\x09\x79\ \x15\x81\xda\x79\x11\x31\xb3\x04\x36\xc7\x84\x31\xc0\x01\x8e\x45\ \xd7\x8c\xfa\xda\x9c\xf5\xec\x45\xe0\x30\x8c\x6b\xb9\x85\xdb\xad\ \xfe\xb6\xca\x1e\x65\x8d\x16\x6c\x61\x95\x4e\xfd\xf0\x7a\x72\xbd\ \x23\x00\x1e\x16\xb0\xef\xde\xa8\x43\x2b\x9a\x97\x20\x26\xf5\x90\ \x02\xbb\x97\x20\x9d\x18\x5c\x9b\x98\xaa\x98\x93\xfc\xf7\x05\x65\ \xa3\x05\x37\x1b\xfc\xcd\x9c\xcc\x48\xaa\x51\x98\x1d\xe8\xbc\x2f\ \xcf\x10\x3f\x0b\x5d\xc0\x35\x6b\xf1\xda\xaf\xa8\xe7\xd1\x8b\xa4\ \x1e\x23\x65\x6b\x10\x04\xde\xab\x4c\x06\x35\xf0\x22\xa4\x38\x4a\ \xa3\x4b\xd1\x3b\xd0\xbd\x50\x25\xe6\x95\x53\xb0\x57\x69\x3e\x66\ \xaf\x64\x42\x04\x6b\xd7\x3c\xc7\xd0\xbc\x48\x0d\xf6\x20\x81\x20\ \x5f\xcb\xdb\x3f\xef\xfe\x96\x0b\xbf\x33\x6e\x1c\xd5\x3a\x7f\xe2\ \x4c\xb7\x5e\xee\xb7\x0c\x25\x11\x81\xe2\xe0\xaa\xf8\x64\xec\x30\ \x09\xfd\x68\x01\x3e\x82\xd7\xc2\x3b\x8e\xe7\x84\x2d\x29\xb1\x25\ \x90\xc1\xc8\xd6\x6b\x22\x79\xaf\x53\x92\x16\x29\xa8\xfc\x4c\xda\ \x50\xf6\xb2\x73\xcc\x63\x5f\x48\x35\xb7\x65\xf7\xbe\x9f\x9f\x25\ \x0a\x43\xa0\x02\x0b\x1b\x75\xae\xbf\x3b\x19\x30\x40\x22\x4c\x1d\ \xcf\x15\xb3\x78\x7d\xc1\x0e\x38\x92\x86\x16\xfa\x21\x8d\x49\x50\ \x01\xf7\x24\x01\xc9\x42\x9c\xa0\x2f\x20\x68\x99\x21\x4e\x80\x83\ \x13\x30\xa3\xef\x7d\xab\x5c\xda\xd9\x73\xb9\xb4\x61\x5c\x03\x75\ \x14\x7c\xf3\x07\x36\xb5\x0c\x06\xd5\xf6\x3b\x3f\xdc\xd5\xd6\x18\ \x81\x0c\x9c\xe0\xc2\x77\xcf\x10\xd0\x4e\x0e\xf6\x32\x7a\x44\xb3\ \x9f\x42\xf9\x78\x6f\x18\xfc\x08\x50\xa3\x05\xbc\xb4\xa7\x55\xff\ \x1a\x03\x64\xde\x31\x02\x7f\x99\x64\x55\x42\xbb\x8a\x98\x65\x0e\ \x3f\x81\x5d\x6c\x38\x08\x2d\x90\x80\xf5\x59\x1f\x89\xac\x41\xda\ \xd9\xd9\xaa\xf9\x9c\xca\x20\xde\x92\x44\x4b\x75\xbc\x9b\xa5\xe8\ \x8f\x2b\x00\xdb\xbb\xf8\x4e\x37\xe9\x48\x5e\x28\x95\x94\x21\x09\ \xef\x21\xc4\xba\xfe\x38\xda\x1b\xdc\xdf\xe3\xc1\xd7\x46\x7c\x01\ \x1c\x00\x52\x68\x10\x81\x0b\x5e\x44\x7f\x6d\x4e\x9a\xa4\x99\x4c\ \x4c\x51\xaf\x18\x40\xf5\x25\x60\x8e\xb1\xc2\xe7\xa1\x4d\xb7\x69\ \x17\x77\x59\x83\x16\x10\x01\xf8\x11\xc1\x3d\x50\xa0\x77\x38\x95\ \xdf\x14\x86\xcc\xac\x9f\xdd\xe8\x48\xa4\xf4\xde\x17\x00\x01\x11\ \x44\x81\x9d\xa5\xd6\x09\xbe\xca\x7b\x10\xc8\x47\xc1\x97\x44\xe4\ \xd1\xda\xa8\x43\x2e\xc9\x60\x4a\xc4\x5c\x0a\xf4\x4a\x23\x49\x8d\ \x01\xf0\xa0\x1b\xe2\x82\x01\x0c\xca\x75\xac\x0c\x04\x9e\x91\x0f\ \x19\x92\x92\xf4\x8c\x12\x7e\xcb\xa3\x0c\xc6\x1e\xb8\x92\x6b\xed\ \x0d\x52\x21\x86\x13\xe4\x8b\x34\xbc\x9b\x8c\xd0\x0f\x62\x44\x01\ \x23\x6a\xc1\x17\xe4\x4b\x15\xee\xdb\x17\x94\x44\x06\xa8\x1d\x57\ \xa8\x03\x55\x5d\xd1\xf6\x44\x4c\xa7\x8d\x9d\x1b\x7e\xa2\x01\x6c\ \x80\x03\x76\x47\x1d\x5a\x87\x04\xc4\xc3\x61\xd5\x40\x7b\xf0\x4c\ \x6d\xa5\x5e\x1a\xc4\x0c\x20\xde\x8d\xde\xa0\x8b\x07\xde\x43\x15\ \x12\xc1\x28\x92\x51\x5a\xd8\x41\x06\x74\x44\x3c\x38\x81\xea\x94\ \xd4\x18\x2c\x1c\x73\x34\xc7\x10\x10\x81\x34\xe5\xcb\xe6\xdc\x8a\ \x30\x79\xe2\xfe\x27\xba\xe1\x1f\xe0\x82\x3a\xd8\xc1\xaa\x6d\xd7\ \x4e\x45\xc1\xe3\x7d\xc1\x81\xc0\x81\x89\xe4\x11\x35\xce\x4f\x32\ \xfc\x21\x15\xfc\x21\xa5\x5c\xca\x2b\xd1\x22\x60\x78\x8a\x0c\x44\ \x01\x75\xc8\xcf\x41\x59\xc3\xe2\x1d\x03\x2a\x5a\xc4\xf1\x10\xc1\ \x1d\x48\x47\x31\x6e\x01\x30\x64\x80\x11\x15\xcd\x22\xc5\x84\xf6\ \x90\xdd\x33\x2a\xe0\x31\x8c\x22\x69\xed\xd4\x1e\x28\x49\x46\x2c\ \x50\xd1\xc0\xe0\x94\xfd\x5d\xb7\xd0\x0d\xa6\x90\xcb\x6b\xe9\x46\ \x14\xf2\x05\x62\x5c\x14\x19\x68\x81\x8d\xd0\x08\xab\xa1\xc5\x24\ \xec\x81\x3a\x94\x44\x19\xb6\xc3\xc2\x01\x03\x30\x90\x85\x04\x0c\ \x03\x32\x56\x85\x32\xda\xca\x4a\xec\xe0\x40\xd6\xdc\x21\x54\xa3\ \xb7\xc0\xcd\xf7\x5d\xc4\x24\xe6\x52\x21\x91\x8a\x0c\xcc\x8b\x9d\ \x9d\x45\x0b\xec\xc1\xba\x48\x83\x60\x8c\x13\x60\x54\x4a\x31\x10\ \x49\x62\x40\xc6\x17\xa0\x8d\x83\xb1\xda\x1c\x6e\x01\x39\x0c\x41\ \x06\xb4\xa4\x0c\xd4\x80\x30\xa0\x24\x4a\x4a\x40\x31\x4a\x00\x30\ \x1c\x23\x19\x9c\x8f\x32\xaa\x44\x3b\x08\xe4\x4c\x26\xe0\x09\x34\ \xd8\x59\x94\xe2\x56\x0c\x43\x30\xf6\xc7\xbe\x2d\x08\x64\x58\xe1\ \x21\x56\xfe\xe0\x1e\x28\x86\xbb\x1c\xcd\xbb\xd8\x4c\x5f\xe4\xd0\ \xbb\x78\x0a\x10\xb0\x63\xed\x90\x11\x39\xb0\xa4\x46\x64\xc0\x30\ \x70\xc0\x1e\x70\x00\x39\x34\xe6\x1e\x8c\x85\x35\x5c\x25\x0c\x9a\ \xa1\x4a\xb4\x61\x5a\x66\x66\x4d\xea\x14\x36\x91\xc3\xf0\x19\x52\ \x19\x6a\x23\xfe\xc1\x17\x11\x50\x43\xea\x59\x83\x38\xb1\x0b\xa5\ \xf4\x45\x7a\x08\x86\x46\x8e\x01\x04\xd2\xe1\x61\xb6\x03\x11\x64\ \x00\x13\x54\xe5\x30\x6c\x65\x57\x02\xc3\x30\x28\x66\x58\xe6\x52\ \x02\x7d\x81\x03\x64\x26\x71\xfe\x83\x06\x2c\x8a\x5b\x1e\xca\x30\ \x8c\x41\x3c\xf0\xd9\xe3\xe5\x11\xbb\x15\xd2\x61\xd9\x54\xdc\x3d\ \xc7\xba\xc0\x07\x39\x66\x8a\x2b\x04\xc6\x60\x5c\xd4\x08\x98\xa6\ \x42\x95\x85\x04\x0c\x41\x3b\x64\xc0\x10\x70\xc0\x30\xbc\xc2\x10\ \x00\x83\x57\xa2\x83\x55\x0e\x01\x73\x58\xc3\xe3\x5d\x84\x03\xc8\ \x64\x71\x72\xde\x1f\x1c\x27\x67\x66\xd3\x5b\x8e\xc0\x17\x00\x51\ \x06\x64\x04\xe2\x2c\x09\x35\x1a\x0a\x5a\xb8\xcb\x0b\x0c\x83\xcc\ \x20\x06\x7c\x50\x81\x88\x91\x81\xf8\xc5\x8f\x54\x6e\x85\x04\x1c\ \x43\x06\xbc\x02\x13\x70\xc0\x10\x6c\x25\x00\x00\x83\x30\x0c\xc3\ \x1d\xfe\x44\x66\x73\xa8\xc3\xf9\x00\x01\x2b\xdc\x67\x71\xe6\xe7\ \x75\xfc\x9c\x68\x6d\xc1\x24\x38\x65\x77\x0a\x97\x88\xc2\xc8\x16\ \x2c\xa7\x16\xdc\x05\xc9\xb4\xa6\x51\x49\x43\xe2\xac\x23\xfc\xb0\ \x10\x30\xa8\x40\x06\x28\xe6\x87\x72\x00\x57\xa2\x03\x07\xa0\xd0\ \x56\x00\x43\x3c\x3c\xde\x89\xa2\xe8\x7d\xfe\xc1\x84\x92\xde\x25\ \x12\x26\x6a\xae\x0d\x10\xc6\x0d\x5a\x44\x41\x2f\x8e\x41\x14\x0c\ \x83\xa8\xec\xe5\x1b\xa4\xc7\xa1\xe5\xd1\x1e\xee\x54\x85\xd6\xa6\ \x30\x70\x80\x91\x02\x03\x9b\x5a\x8b\x4a\x1e\xc3\x61\xd9\x27\x94\ \xaa\xe5\x71\x52\x69\x1a\xa1\x05\x5a\x08\x0a\xb5\x0c\x81\x3a\x8c\ \xc0\x08\x68\x81\x3a\xdc\xc3\x31\x98\xde\x09\x6a\xc6\x1b\xf4\xc5\ \x1e\x20\x5e\xcf\x24\xa7\x59\x58\xe8\x10\x50\x0b\x7b\xba\xa9\x91\ \x96\x05\x13\x7c\x01\x5a\xd6\xe9\x4c\xd6\x24\xe9\xe9\x54\xb7\xa8\ \x4d\x8b\x2c\xa7\x3a\x0c\x81\x0a\x0c\x41\x47\x64\x40\xb1\x45\xc1\ \x31\x14\x5e\x3f\x20\xea\x30\x38\xe8\xbd\x7c\x81\x34\x7c\x5b\x85\ \x8a\x81\xad\x72\x40\x87\x22\x69\x4a\x8e\x85\x04\xa8\x43\xa6\x6a\ \xea\x40\xfe\xc1\x09\xdc\xe9\xb7\x89\xd2\x16\xa4\x90\x74\x50\x0b\ \xfe\x3a\xa0\xc3\x30\xc4\x83\x62\x92\xc3\x31\x74\x84\xa0\x92\x44\ \x3c\x9c\xa0\xe9\x65\x86\x34\xfc\x21\x8f\xaa\xca\x99\xee\x14\x07\ \x64\x80\x13\xc4\x83\x91\x0a\xc3\x1d\x54\x2a\x59\x1c\x00\xb0\xa6\ \xeb\x21\x14\x63\xa7\xa2\xc5\x31\xb8\xcf\xda\xad\x0d\x3a\x58\xcb\ \x1e\x0c\x81\xad\x42\x6b\x3b\xa8\xc3\x31\xa8\x43\x15\x4a\xeb\x10\ \x48\x43\x3c\x0c\x01\x28\x0c\xc1\x32\x74\xc5\x10\x1c\x96\x3a\x38\ \x2a\x59\x58\x43\x3b\xb4\xc3\x86\x0e\xc3\x2c\x88\x01\x87\x7a\xe5\ \x56\xd0\x69\xba\x7e\xe2\x1f\x1c\xc2\x63\x42\x07\xcf\x4d\x69\x1a\ \x91\x83\xaa\xaa\x83\x13\xa8\x83\x57\xa0\x83\x35\x18\x69\x63\x0e\ \x81\x11\xa8\x83\x18\x40\xeb\x31\x90\x03\x30\x86\x46\xb8\x0e\xc1\ \x10\x60\x46\x3c\x68\x41\x3c\x0c\xca\x1e\x40\x86\xc2\xb9\x1a\x30\ \xd0\xa6\x18\xdc\xc1\x1d\xbc\xc2\x1d\xb0\x27\x73\x30\x87\xc5\x5e\ \xec\x33\x42\x93\x32\x3a\x65\x3b\x04\xec\xa0\x04\x8a\xce\xa5\x05\ \xd5\x5a\xc3\x31\x0c\x81\x13\xf8\xe7\x46\xfc\x24\x39\x00\x03\xfb\ \xcc\xeb\x9a\xee\xc1\x1d\xd8\x6a\xcb\x3a\x26\x39\xb4\xc3\x61\x11\ \xc1\x10\xac\xea\x18\xc4\x5f\x81\x34\x84\x82\x66\xc0\x61\x8d\xfe\ \x40\x14\x70\xd7\xcf\x5e\xa8\x18\xbc\xc2\x56\x1e\xad\x57\x1e\x82\ \xd2\x2a\x2d\x5a\x95\xcd\x61\x71\x04\xa0\x92\xea\x31\x0c\x83\x0a\ \x38\x41\xa1\x46\xab\x46\x80\x1f\x10\x1c\xcf\x1a\xfc\x60\x92\x02\ \xc3\x63\xb2\xe9\x61\xda\xea\x6d\x56\xa5\x11\x8c\xc0\x1a\x8c\x80\ \x3a\x50\xa6\x46\x80\x44\xfc\x69\xc1\x10\xbc\x81\x13\x00\x92\x13\ \x74\x2b\xfc\x7c\x6b\x3b\xbc\xc2\x2c\xcc\x82\x91\x7a\x25\x07\xdc\ \xc1\x01\x24\xed\xdf\x0e\xe4\x54\xcc\xd9\x45\x38\x81\x9f\x7e\xee\ \x47\x38\x2b\xe7\x7e\x41\xd6\x3e\x6e\x49\xe4\x2b\x07\x80\x65\x63\ \x9e\xa4\x9b\xda\x6b\x3c\x8c\xad\x18\xb4\xc3\x08\x1c\x8f\xd6\xc2\ \x60\x4a\x00\x12\x47\x8c\x2c\xcd\x9e\xee\x18\x88\xcc\x4e\x1d\x43\ \x3b\xbc\x6e\xc3\xea\x2d\x9b\xbe\xc2\x59\xde\xae\xf9\xb2\x02\x72\ \x8c\x00\xe2\xaa\xc3\xe7\xea\xeb\xbe\x82\x6b\x3b\xb0\x01\x47\xb0\ \x2f\x6d\x16\xa4\x9b\x92\x83\xae\xa2\xe4\xec\x1e\x83\x30\x88\x81\ \x11\x40\xaf\x89\x7c\x01\x6d\x82\x1f\x7d\xb4\xe0\x46\x00\x81\x13\ \x7c\x29\xd6\x76\x84\xfb\x60\x13\x07\x90\x2f\xf8\x12\x02\x21\xcc\ \x42\xb9\x72\xc0\xaf\x9a\x2f\x94\xa2\x2f\x56\x8c\x80\x0a\xfe\x0c\ \x83\xbe\xaa\x43\x1b\xb8\xaf\x9f\xee\x02\xf4\xe6\x2b\x89\x1e\x4f\ \xd1\x82\x25\x9b\xc6\xae\x04\xac\xf0\x30\xa4\x83\x18\xcc\xc2\x17\ \x98\x42\xc3\xba\xa0\x0c\x94\xe7\x55\x1e\x16\x1c\x14\x14\xd6\xb6\ \x20\x1b\x14\xd4\xea\x9a\xea\x2c\xa4\xc3\x1d\x10\x02\x10\x7c\x01\ \x05\x03\x83\xdf\x62\x30\x06\x33\x0b\x00\xbe\x2c\xfb\xee\x6b\x79\ \xb2\x6c\x06\x34\xec\x08\xb0\x81\x11\xb0\x01\x45\x00\x41\x3b\xa4\ \xa4\xfe\xee\xe6\x0a\xaf\x30\x13\x18\xc1\x17\x10\x02\xda\xd2\xc7\ \x08\x88\xc1\xe7\xa2\xed\x0d\x97\x4c\x3c\x50\xaf\x46\xb4\x83\xc9\ \x18\x0a\x58\xf6\x22\x21\x8c\xc0\x2c\xbc\xc2\xe6\x9a\x71\xb9\x4a\ \x80\xed\x32\x71\x66\x3a\x71\x55\x00\x81\x3a\x1c\xa6\x0a\x90\x83\ \x18\xb0\x41\xfc\xb6\xc3\x2e\x5c\x71\xe7\xfa\xaf\xea\x8c\x00\x13\ \x80\xa5\x9b\x72\x25\x9b\xe6\x26\x9b\x82\x65\x3a\x18\xc1\x26\x13\ \xc2\x1a\x98\x71\x3b\x70\x04\xda\x72\x31\xb5\x9c\xf1\xf1\x34\xae\ \x62\xe2\xa3\x57\xae\x1d\x7a\xf2\xab\x29\x70\x84\x19\xbf\xae\x19\ \xa7\xc3\xf1\xd2\x1c\x20\xdf\x6e\x34\xf2\x18\x45\xc8\xb1\x57\x5a\ \x03\x39\x54\x71\x09\x8f\x80\x1e\x70\x84\xad\xf2\xd8\xfe\x08\xb4\ \x69\x25\x8f\xab\xd0\xb6\xa9\x04\x30\x41\x3a\x30\xc1\x18\x5b\x31\ \x21\x90\x01\x21\x30\xcf\x17\x18\x01\x13\xc8\xed\xf1\x8c\x01\x6d\ \x6e\xc4\x08\xd0\x66\xd6\x12\x41\x37\x07\xe3\x10\xb7\x03\x28\x1b\ \xc1\x2c\x08\x83\x1f\xdf\x32\x3b\x33\xcb\xf9\x84\x0c\x85\x1e\x03\ \x09\xb3\x01\xa0\x02\xaa\x1e\x8c\xc0\xff\x9a\xc2\xbe\x95\xab\x87\ \xae\x29\x9b\x92\xeb\x10\xf0\x33\x9b\xde\xe6\x1d\xfc\x2f\x21\xcc\ \x30\x19\xe0\xb1\x89\x98\x0d\x13\x98\x6a\x79\x7e\xe8\xe7\x96\x44\ \x0c\xa2\xf1\x08\x4c\x04\x21\xdc\x01\xb9\x6e\x32\x3a\x73\xf2\xf1\ \xfe\x31\x3b\xdf\x67\xb6\x65\xc4\x31\x78\xa5\x38\x00\x73\x3b\xdc\ \x73\x0d\xeb\xc1\x1a\x08\x12\x10\xc0\x2e\x07\xa0\x83\x30\xc0\xb4\ \x30\x90\xeb\x2b\x10\xed\x1d\x40\x33\x07\x30\x41\x3b\x44\xae\x1e\ \xe8\xb3\x00\x93\xf1\x58\xce\x02\x22\x7f\xaf\x91\x1e\x26\xcd\x0e\ \x81\xb3\x1a\xa1\x49\xba\x29\xda\xa6\x83\x9b\x92\x6b\x41\xeb\x01\ \x21\xa4\xc3\x35\x78\xf4\x47\x83\xb4\xc7\x00\xc1\x08\x90\xc3\x2f\ \xc7\x40\x3d\x77\x6e\xc3\x0e\xf3\x42\x63\x04\x11\xcc\x34\x4d\x0b\ \xad\xd0\xba\xae\x11\x70\x32\x13\x00\x83\x4e\x97\xfe\x71\x15\x9a\ \x82\x0c\x7c\xf3\x08\xbc\x72\xeb\x7e\x2f\x39\x30\x87\x9b\x62\x72\ \x74\x24\x29\xae\x76\xe8\x2c\x10\xc2\xf1\x7a\x28\x11\xcf\x82\x29\ \xd0\xf0\x05\x5f\xf5\xdf\x96\x10\x17\x1f\xc3\xe6\xae\x81\x4a\x9b\ \x02\x3e\x3f\xef\x9c\x99\x42\xd0\xa2\xf5\x1d\xa0\x03\x5a\xbb\xee\ \x2b\x10\x31\x9b\x6e\xf2\x49\x3f\xee\x61\xcf\xf0\x0d\x93\xed\x1d\ \x14\xa3\x63\xd2\x6c\x63\xb2\x67\x73\xc8\xee\x2c\xb4\x43\x05\x93\ \xab\x33\x13\x82\x29\x20\xa0\x62\x2b\x36\xc7\x3c\x6e\x3b\x64\xf1\ \x17\xac\xc1\xdc\xee\xc2\xff\xea\x32\x46\xc0\x36\x13\x08\xed\x4c\ \x67\x76\x4d\x13\xb1\xd0\x16\xf7\xf3\xea\xc1\xe0\x22\x34\x19\x48\ \x36\x0c\x43\xb3\xd1\x32\xc1\x65\x1f\x6e\xd7\xa2\x03\x57\x0a\xc3\ \xeb\x8a\x2f\x13\xcc\x74\x3a\x10\x02\x2b\x58\xf5\x6d\x43\x29\x34\ \xd1\xf5\x4a\x3f\x2e\x4a\x37\xb2\x3e\x5b\xc5\x08\xd0\x32\x13\x10\ \xed\x71\x0f\xad\xde\x0a\xed\x5a\x1b\xf4\x30\xcf\xc2\xe6\x5e\x04\ \x0d\xa7\x03\x39\x30\x41\x3d\xdc\x26\x13\x1c\x83\x63\xde\x01\x88\ \x3a\xab\x7c\x0b\x03\x67\x63\x34\x54\xcf\x82\x1e\x24\x76\x79\xe3\ \x32\x2e\xa0\xc0\x08\x5c\x04\x58\xef\x76\xf4\xfe\xf2\x77\x7b\x9b\ \x82\x11\xdc\xc1\x31\xa4\x03\x11\x2b\x38\x5a\x0b\x03\x34\x83\xf8\ \x5a\xeb\x81\x39\x8b\xc1\x18\xbf\x73\x87\xfb\xaf\x8a\xab\x38\x07\ \x7c\x38\x0c\x93\xef\xf7\x26\xb8\xd0\x12\x71\x3a\xbc\x2e\x84\x47\ \xb8\xf9\x8a\xcd\x16\x77\xee\x3d\xe7\x81\x70\xb7\xf7\x58\x62\xf3\ \x1d\x28\x37\x66\x63\x76\x8e\x6f\xb4\x11\x04\xb8\x4e\x9b\x42\x24\ \x3f\xb3\x18\xa4\xc3\x87\x67\xc0\xff\x62\x73\x71\x73\xf6\xeb\xc6\ \xf6\x8d\xeb\x37\x8f\x7f\xf9\x3f\xe0\x02\xfa\x1e\x31\xe7\x02\x01\ \x94\x23\xc7\x17\xdc\x74\x3a\xd4\x03\x66\xbb\x2e\x88\xe3\xf8\x9b\ \x7b\xb6\x04\xd4\x83\x11\xf0\x77\x93\x1f\xb9\x75\xbb\x78\x86\x1a\ \xe9\x67\x07\x76\x3a\x73\x00\xb9\x0a\xc3\x26\x93\x37\x98\x6b\x6a\ \xea\xe8\x81\x1e\x2c\x74\x24\x62\x85\x65\x03\x38\x46\x6f\xf6\xeb\ \x12\x71\x71\xb3\x39\x88\x07\xf8\x01\x70\x80\x11\xb4\x37\x10\x10\ \x82\x9e\xff\xf7\x31\xdc\x74\x25\xbb\x69\x3a\x98\xb3\x29\x0c\xf1\ \x32\x33\x01\xa1\x17\x7a\xba\x1a\x40\x86\x03\x01\x09\x13\x79\x74\ \x6b\x7a\x3b\x40\x73\xa0\xa3\xb5\xa9\x4b\x7a\x71\x6f\xf2\x33\xa3\ \x64\x3d\x60\x84\x29\xa0\xf8\xac\xff\x77\xfe\xc3\x62\xf9\x01\xb4\ \x30\x9d\xd3\x36\x35\x7b\xf6\x12\xab\x3a\x98\xe7\x76\x91\xa3\x80\ \x20\x9d\x39\x45\xe8\x41\x80\xdf\xf4\xd0\x62\xb4\x4d\xe3\xba\xa3\ \x5b\x7a\x33\xeb\x81\xaf\x8f\x40\x29\x88\x41\x3d\xb4\xc3\x61\xb7\ \x43\x3d\xb4\xe9\x6c\x1f\x76\x74\x53\x70\xed\x32\xbb\xaa\xff\xc1\ \x8e\x01\xc1\x30\x0f\xf2\x3b\xdf\xb4\xa3\x1b\x37\x5a\x6b\xbb\xa0\ \xdf\xf4\xf1\x1e\x00\xac\x4b\x36\x27\x6f\xf2\x0c\xd3\x32\x30\x5c\ \x7a\x3a\xa8\x3b\x45\x1c\xf6\x2e\xa4\xba\xbb\x5f\x6c\x9c\x6d\xb8\ \xaf\x5f\x84\xbc\xaf\xf9\x91\x57\xf0\x91\x77\xf6\x9b\x93\x38\x27\ \x3b\x79\x3d\x24\x7a\x74\x27\x3c\x36\x07\xf8\xff\x9e\x7b\xb1\x8f\ \x31\xac\x53\xc4\x93\x36\x3c\xb3\x2f\xa0\xb4\x63\x85\x1e\x54\x7a\ \x5b\x4b\x80\xa0\xbf\x6e\xc0\xab\xb9\x1e\xe8\x37\x27\x67\x7a\xac\ \x43\xf9\xac\x47\x33\x5b\xe3\x2a\x30\x64\x3a\xc2\x93\x41\xca\xab\ \xbc\xbb\x53\x97\x99\x2b\x58\x3b\x48\xba\x91\x3a\xf3\xad\x4b\xfa\ \xc1\xff\xfa\x7d\xf7\xf4\x3d\x1f\xb6\x11\x1c\x80\x4e\x23\xfa\x9a\ \x1f\x6f\x33\x83\x78\x4f\x93\xc1\x83\x1b\xbd\xd8\x6b\x30\x68\xf4\ \x77\x80\xe7\x74\xc5\x17\xf4\x10\xe7\xfe\xb4\x54\xdf\x77\x3a\x94\ \x42\x7f\xc3\x3d\x7c\x97\x02\x21\xbc\x3c\x34\x5f\xfa\xa5\x37\xb3\ \x27\xef\xb8\xd8\xe3\x36\x2b\x08\x77\x55\x70\x38\x34\x0f\xbe\x72\ \xeb\x77\x5b\x03\x83\xae\xaf\xf9\x26\xeb\x01\x36\xa7\x83\x1e\x88\ \xc1\xa5\x1b\x41\x4f\xe7\x7c\x93\x57\xea\x9c\xf3\x7d\xdf\xdf\xf6\ \xd9\x95\x8d\xaf\x63\x79\xae\x0f\x31\xd1\x66\x28\x30\xd0\xb9\xdb\ \x4b\x7e\xc8\x2f\x3d\x07\x60\xfd\x49\xff\xfa\x61\x0f\xf1\x24\x03\ \x40\xbb\x67\x7e\xdf\xc7\x19\xe7\x4b\x3c\xe3\x3f\xb3\xae\x63\xbc\ \xbd\x8f\x71\xce\xd3\xf9\x6e\xb3\x39\x5b\xbb\xb5\xe3\xab\x3b\x87\ \x3b\xf9\x21\xd8\xb2\xec\x1b\xfd\x1f\x3c\x6e\xd9\x2f\xfd\x9b\x5f\ \xfc\x9e\x3b\x33\xe9\x4b\xfe\x33\xd7\xc3\x26\x33\xc1\x01\xb8\xb5\ \xce\x9b\x02\x21\x04\x7c\x3d\x24\x3f\xf8\x87\x39\xd9\x5f\x45\x7f\ \xdf\xb8\xa4\xa3\x64\x89\x8f\xfa\xcb\xab\xf9\x5a\x67\x68\x0b\x3f\ \x79\x74\x07\x3c\xe6\x87\x7f\x84\x07\xee\xa9\xd1\x30\x27\xef\x7e\ \xf4\x3b\xf3\x5a\x3f\x73\xae\x77\x38\x40\x70\x90\x20\x01\x58\x3a\ \x3d\x84\x4c\x11\x32\x42\xe2\xcf\x3f\x87\x0f\x21\x46\x94\x38\x91\ \x62\x45\x8b\x17\x31\x66\xd4\xb8\xfe\x91\x63\x47\x8f\x1f\x23\xb2\ \xa2\x43\x86\x24\x19\x20\x25\xc9\x98\x1a\x91\xae\x9e\x30\x26\x77\ \xee\x30\x61\x92\x8e\x03\x13\x23\x84\x68\xd6\x4c\xc7\x92\xc3\x01\ \x82\x32\x77\x1a\x49\x87\x0b\x64\x51\xa3\x47\x91\x26\x55\xba\xb4\ \xe2\x1f\x14\x24\x81\x8c\xd0\x73\x92\xa4\x1e\x23\x2e\x39\xdc\xa9\ \x77\x47\xa8\x4e\xa1\x32\xef\xa4\x8b\xc9\x44\x20\x41\x0e\xc0\x6a\ \x12\x65\xba\x96\x6d\x5b\xb7\x6f\x37\xfe\xf9\xb3\x86\x8c\x55\x3d\ \x28\xbf\xa4\x23\xcb\x81\x43\xba\x59\x46\x80\x7e\x9d\x19\x93\x2f\ \xda\xc2\x03\x4f\xc0\x55\xbc\x98\x71\x63\xa3\x73\x81\xac\xa1\x5a\ \x72\x25\x5f\x9b\xa6\x4c\xd1\x9c\xa9\x77\x33\x59\x09\x96\x99\x00\ \x93\x00\xa0\xa1\x63\xd3\xa7\x51\x9b\xfe\xc3\xca\xd4\x64\x92\xa6\ \xda\xed\x9d\x65\x8a\x4c\x3b\x9d\xf5\x74\x8a\x3d\x5b\xf3\x25\x07\ \xd2\xa9\x81\x07\x17\xce\x14\x97\x6b\x92\x84\xf6\xde\xf9\x42\x06\ \x79\xbd\x59\x77\xd0\x0e\x96\xc9\x41\xd8\xd8\xd2\xc3\xb1\x67\xd7\ \x8e\x11\x17\x2c\x94\x40\xf2\x0a\xe3\xdb\x0e\xf3\xac\x74\x80\x07\ \x82\x15\xeb\xb2\xfa\xb5\xeb\xdb\xe1\xc7\xd7\xbe\x3a\x46\x49\x53\ \xcf\xf9\xa6\x3b\xbe\x93\x89\xc7\xd9\x03\x35\x61\x62\x42\x18\xf7\ \xe4\x2b\xd0\xc0\xe1\xfe\xc8\x83\x24\x19\xcc\x3b\xeb\x0e\x42\x80\ \xd0\x43\x2c\xb2\x44\xfb\x49\x40\x61\x84\x51\xeb\xc0\x0d\x39\x6c\ \x2c\x41\x20\xee\x23\x8c\x03\x23\x12\x12\x8b\x30\x60\x50\x34\x8c\ \x03\x5c\xde\xeb\xd0\xc5\x17\xd7\xc2\x25\x0f\xf3\xc4\xeb\x8b\x10\ \xf3\x62\x1a\xeb\x2c\xd1\x80\x39\x00\xc6\x1f\x81\x5c\xea\x04\xa1\ \x60\xc2\x70\x16\x1a\xb9\x32\xe2\xc4\xb3\x12\x0b\xd2\xc9\x27\x3d\ \xfa\x03\x97\x98\xaa\xdb\x09\xa6\x3b\x8e\x24\x4c\xa6\x26\xa1\xec\ \xd2\xcb\x8b\x70\xb9\xc6\xa5\x0b\xc3\xfa\x8b\x30\x61\xea\x69\xf1\ \xcb\x35\xd9\xfc\x43\x4c\x99\x80\x4a\x07\xab\x01\xb9\x64\xd3\x4e\ \x3b\xaf\x39\x00\x43\x01\x45\x14\xe6\xce\x3f\xff\xfc\x63\xab\xb1\ \x6a\xbc\x06\xd0\x43\xdb\xac\xa7\xa5\x2b\x59\x44\xd4\xd1\x2f\x71\ \x81\xb3\x9e\x47\x29\xf5\xf2\x04\x5c\x32\xac\x74\xa3\x80\x00\x00\ \x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\ \x00\x87\xff\xff\xff\x43\x84\x6b\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xa5\xc4\x80\xd8\x88\x8d\x94\x4b\x2e\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x5e\xc9\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xdc\ \x8a\xb4\x50\x06\x21\x4d\x48\x9a\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xdb\xe8\xac\xd5\x4e\x95\xff\xff\xff\ \x5c\x06\x94\x53\x68\x20\x57\xa9\xe4\xff\xff\xff\x13\x28\xa9\xd6\ \xc8\xe1\x0f\x27\x68\x09\x69\x9b\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf6\x89\xb9\xff\xff\xff\xd4\x13\x14\xcf\x74\x9c\xff\xff\xff\ \xff\xff\xff\xf7\xa7\xb8\xfa\xc8\xe2\x13\x29\xe1\xff\xff\xff\xff\ \xff\xff\x4e\x68\xf8\xd9\xe8\xf8\xba\x89\xb5\x22\x45\xeb\x20\x87\ \xba\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x97\xc8\xfa\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x94\x68\xf8\xf6\xb2\xf1\xff\xff\xff\xf9\xe9\ \xf0\x34\x8a\xc8\xbb\x88\x83\xd9\x90\xf3\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb7\xb3\xf2\xff\xff\xff\xb7\xc8\xf0\x6f\ \x69\xe4\x7b\x8d\x6f\xff\xff\xff\x29\x18\x51\xff\xff\xff\xd7\xd9\ \xea\xff\xff\xff\x4a\x4b\xe4\x39\x57\xf7\xff\xff\xff\xff\xff\xff\ \x09\x18\x61\xff\xff\xff\xff\xff\xff\xff\xff\xff\x11\x38\x67\x0a\ \x18\x1e\x97\xb1\xf9\xfa\xd8\xe9\x74\x88\xf7\x95\x94\xf5\x5b\xb8\ \xec\xef\x74\xa5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xba\x8f\xf3\x2e\x48\x67\xff\xff\xff\xfb\xfd\xfa\xff\xff\xff\x07\ \x15\xdc\x6f\x69\x6a\xda\xae\xf8\x7a\xe8\xfb\xff\xff\xff\xb3\x67\ \xeb\x7c\x95\x46\xb7\xd8\xfb\xf9\x7a\xca\xf5\x99\xb5\xff\xff\xff\ \xfa\xb7\xbc\x32\x49\xeb\x15\x37\x22\xff\xff\xff\xb5\x51\x2a\xf3\ \x78\x5f\xff\xff\xff\xd3\x34\x73\xff\xff\xff\x9a\xf2\xfc\xff\xff\ \xff\xae\x04\x0d\xb0\x2a\x21\x71\x08\x1a\x76\x13\xa7\x9a\x39\xcd\ \xf0\x27\x25\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x71\x58\xef\x72\x46\x58\xff\xff\xff\xff\xff\ \xff\x71\x37\x55\xe7\x4f\x91\xff\xff\xff\xff\xff\xff\xa7\x19\x61\ \xff\xff\xff\xff\xff\xff\xfb\xcf\xa2\xff\xff\xff\x79\xcb\xfa\xb9\ \xf3\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xfa\xec\xba\xff\xff\xff\xff\xff\xff\xfa\xae\x88\x78\xb3\xf8\ \x34\x1a\xe4\xf8\x91\x8c\x94\x6e\x6a\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x44\x22\ \xdc\xff\xff\xff\xcb\x78\x6e\x99\xd8\xfc\xff\xff\xff\x1e\x97\xca\ \xff\xff\xff\xff\xff\xff\x40\xb5\xef\xff\xff\xff\x24\x5e\x14\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x59\x76\x23\xff\xff\ \xff\xff\xff\xff\x12\x78\xa9\xff\xff\xff\x19\x37\xdf\x58\x76\x5f\ \x58\x75\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\x94\x78\xec\xff\ \xff\xff\x69\x7a\xf4\xff\xff\xff\x47\x5a\xf6\x4f\x59\x65\x28\x3b\ \xe3\xff\xff\xff\xff\xff\xff\x90\x59\xf6\xff\xff\xff\xff\xff\xff\ \xb0\x78\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7e\xfb\ \xfc\x96\x98\x52\xde\x97\x94\x98\x98\xb6\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd8\xfb\xfc\xb7\x98\xb1\xff\xff\xff\x7e\x98\xb3\x6f\ \x78\x29\x99\x99\x79\xe7\x58\x35\x7d\x97\xf9\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x54\x9a\xe3\xff\xff\xff\xeb\x5d\xa0\ \xff\xff\xff\xff\xff\xff\xdf\x98\xb1\xff\xff\xff\xff\xff\xff\xff\ \x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\ \x5c\xc8\x50\xe0\x89\x13\x0d\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\ \x33\x6a\xdc\x38\xf1\x21\x44\x8e\x20\x43\x8a\x1c\x49\xb2\xa4\x49\ \x84\x8a\x52\xb9\xf3\xf3\xf0\xa4\xcb\x97\x30\x63\xca\xbc\x78\x82\ \x15\x39\x72\x72\x3c\xb1\x6a\x39\xb3\xa7\xcf\x9f\x40\x39\x9e\xb8\ \x79\x73\xd0\x20\x5b\xf1\x3e\x06\x5d\xca\xb4\xe9\xd2\x13\xec\x88\ \x92\x1b\xf4\xe9\x93\x1d\x27\x86\x78\x3a\xdd\xca\xb5\xab\x50\x45\ \x3c\xa4\x52\x35\x4a\xf5\x03\x4b\xaf\x68\xd3\xaa\x55\x78\xc2\x96\ \x58\xa3\x9f\x8c\x4e\x1d\x84\x22\x90\xd2\xb5\x78\xf3\x3a\x55\x74\ \x6b\xee\xa0\xa2\x71\xff\xde\xba\x35\xc8\xc9\xb9\xac\x77\xf5\x2a\ \x5e\xec\xf2\x84\x11\xbf\x63\xc9\x92\x23\xfc\xe9\x96\x9c\x9b\x05\ \x58\x26\x66\xcc\xb9\x73\xc6\x13\x55\x03\x93\x95\x6b\xf4\x96\x1d\ \xc2\x44\x07\x19\xb0\xeb\xb9\xb5\xeb\x8e\xab\xda\x84\x16\x4d\x34\ \xe7\x60\xcb\x7f\x01\x7f\xf0\xf8\xba\xb7\xef\x81\x27\xe2\x85\x59\ \x47\x3c\x74\x6e\x9c\x72\x78\xf1\x5a\x20\xe7\x2f\xd9\xaa\xeb\xda\ \xac\x48\xba\xf9\xb7\x75\xbd\x27\xfe\x10\x27\xde\xa6\xf8\x27\xa2\ \x0b\x8c\xfe\x19\x23\x33\xd5\xef\xa7\xe8\x6d\xd2\xaf\x50\x54\xfd\ \xba\x7b\xb4\x8a\xec\xac\x3b\xcf\x3d\x7d\x71\x9c\xb9\x72\xc9\x39\ \x1f\xd7\xd3\xf9\xf4\x00\xb6\x41\x84\x1e\xbc\xbd\x67\x60\x57\x8e\ \xcd\xf6\x1f\x80\xf7\x35\x37\x08\x77\xc4\xc5\x10\xe0\x84\xd2\x51\ \x77\xe0\x85\x4c\x9d\x00\x97\x82\xf5\xcd\x37\xdb\x83\xe8\x51\x48\ \x21\x11\x78\xb0\x87\xe1\x89\x3d\x9d\x60\x8e\x82\xa2\x41\x17\xdd\ \x8b\x81\x85\x28\xe2\x88\x04\x6a\x85\xe2\x8d\x23\x05\x27\x1f\x74\ \xc6\x6d\xb8\xdd\x8b\x1e\xca\x38\xe3\x84\x61\xfc\x61\x21\x8e\x48\ \x0a\xa5\x9d\x77\xfc\x7d\x37\x1a\x74\xf6\xfd\x38\xe4\x90\x44\xe4\ \x63\x63\x92\x58\x52\xa4\x08\x15\xde\x51\x05\x64\x55\x38\xdd\xf4\ \x49\x80\x42\x4e\x39\x22\x27\x76\xb5\x97\xe5\x9a\x06\x39\x46\x15\ \x8f\x0b\xda\xf7\x9d\x1c\xfb\x95\x69\xa6\x99\x61\xd8\x62\x22\x9b\ \x7c\x1e\xa4\xa1\x97\x40\x52\x58\x9c\x51\x76\xde\x69\x26\x11\x49\ \xf5\xa9\xa8\x43\xec\xcc\x57\xdf\x90\xdb\x55\x05\x60\x9c\x23\x12\ \x41\x84\xa1\x02\x86\xc1\x9e\x9a\x8b\x62\xa8\x23\x84\x85\x4e\xd8\ \xa1\xa4\x13\x52\xf1\xc1\x07\xe6\xb0\x70\x29\xa6\xe9\xb1\xa0\x27\ \xa7\xfe\x9d\xbe\xd7\x16\x8f\x3f\x3e\x3a\x23\x7a\xb6\xb6\xf1\x01\ \x1c\x6b\xb0\x62\x4e\x29\xac\x4e\xc8\xc2\x91\xb1\x9e\xa8\xc8\x65\ \x1b\xbe\xc9\x5f\xa8\x54\x4e\xf3\x05\x04\x46\x84\x11\xec\x88\x9a\ \x5e\x59\xec\x75\x6d\x95\x47\xdb\x73\xf4\x49\x69\xdf\x8c\x4c\x7c\ \xf1\x45\x25\x54\x4c\x3b\xe4\xb0\x7b\x5e\x8b\xad\x83\xca\x8e\x36\ \x17\x8b\x10\x8a\x48\xc4\x1a\xe2\xb2\x62\xae\x99\x7a\x10\xab\xee\ \x6b\x27\xb8\x53\x14\xa1\x4c\x6e\x48\x5f\x5c\x2e\x96\xc9\x8e\xb8\ \x10\x70\x72\xaf\x99\xa5\x70\xb2\xe9\xbe\xae\x05\x47\xe7\x65\x45\ \x39\xea\xdd\xa3\x2d\x6e\x37\x21\x1c\xe2\x56\xf2\xc1\xc2\x53\x02\ \x5b\x0a\x2a\xfa\x42\xac\x58\x5b\x14\x4f\x4c\x0e\xbc\xa2\x72\x4b\ \x1f\x80\x44\x70\x3c\xae\xc2\x01\x8a\xdc\x06\xb0\xd3\x96\xa2\xf3\ \xce\x9c\xac\x52\xb2\xc9\x6b\x1d\x2b\x97\x58\x1f\x0a\x39\x28\xb7\ \x30\x27\xd3\xf1\xaa\x00\xee\x8c\x33\xab\x3a\xdf\xac\x33\x27\x9c\ \xa0\xe2\xf3\xa6\xb0\x02\x9d\xa1\x4d\x52\x4d\x45\x30\x71\x6f\x76\ \x67\xeb\xa0\xa4\xa6\x27\xb3\x1f\x4c\xdf\xac\xb6\xcd\x50\xeb\x8c\ \x8a\xd5\xab\xf8\x1c\xcf\xdc\x8a\x3c\xac\xb5\x57\x0f\x75\x0d\x58\ \xfe\x68\x41\x7a\x4b\xa6\xa3\x01\x42\x21\xae\x2d\x69\xdb\x1c\xf5\ \xd3\x0c\x37\xfc\xf6\x1f\x8c\x37\x1e\x8f\xe3\xe9\xde\xed\xd4\x09\ \xe7\xe8\x0d\x97\xb2\x7c\x5b\x7c\x2b\xcc\xe7\x3c\x6b\x44\xd3\x52\ \x3b\x8d\xf8\x90\x53\xbf\x0d\x37\xe3\x56\x37\x6e\xe4\xdc\xd4\x65\ \x2d\x79\x63\xf1\x50\x9c\x1a\x64\x5e\x0b\xcc\xb7\x99\x9d\x7f\xf1\ \x79\xe8\xa2\xef\x1c\xb2\xe2\xa9\xbf\x5d\xf5\x2a\x7f\x10\xbf\xba\ \x22\x7e\xc4\x93\x7c\xdd\xd6\xbe\x1e\x93\x22\x4c\x1c\xf7\x64\x55\ \xce\xb9\x3c\x9b\xc6\x65\x7e\x20\xc5\x17\xac\xe0\xec\x34\x27\x4e\ \x93\x3e\xf5\xf0\xc2\x57\x8d\x8a\xea\xab\xb3\xce\xf8\xe3\x46\xba\ \xee\x7c\x48\x27\x28\x12\xd9\xe5\x70\x79\x68\x1c\x8b\x99\xe7\x4a\ \x85\xb3\xac\xac\xda\x7b\xf8\x88\x1b\x1f\xd5\x06\x48\x35\xd3\xc5\ \x8d\x71\xc4\x8b\xdb\x01\x8d\xd7\xb8\x55\x14\xe8\x7d\x8d\xf9\x43\ \xb7\x7a\x04\xa8\x81\xf1\xcd\x82\xf9\x0b\x10\x11\xe0\x01\x81\xfe\ \xa5\x47\x64\xa2\x93\xda\x84\x1a\x46\xb5\xef\x55\xad\x80\x6f\x8b\ \x5b\xea\x18\xd8\x38\x3f\xac\xaf\x7d\xcd\x83\xa0\x50\x4e\x40\x84\ \x10\xf5\x48\x4c\x05\xbb\xd8\xc0\xda\x45\x29\x2a\xc0\xc1\x83\xfe\ \x6b\x0b\xe1\x07\xd7\x46\xc0\x12\x92\xb0\x84\xe6\x33\x1e\xf1\x1e\ \xa7\x3c\xe5\x25\xef\x89\xc9\x43\x8c\xfb\x64\x38\x11\x45\xac\xe0\ \x5b\xb5\x8a\xcb\xbf\x0a\x76\x3d\x26\x05\x66\x4c\x30\x63\x85\x24\ \xf4\x50\xb3\xa9\x01\xd0\x8c\x46\x04\xdf\xf8\x4c\x77\xbe\xf5\xcd\ \x6d\x75\x7e\x30\x84\x21\xfc\x40\x47\x3a\x3a\xd1\x10\x07\xd0\x4c\ \x0c\xa9\x58\x91\x3f\x74\xa7\x3b\xdd\x12\xdb\x7c\x86\x86\x39\x2f\ \x09\x12\x90\x2e\xe2\x1c\x2b\x3e\x26\x42\x22\xfc\x6f\x7c\x87\xe3\ \x59\x01\x0f\xe8\xc6\x26\xc6\xc3\x16\x4f\x94\xa3\x1d\xeb\x48\xc7\ \x39\xce\xed\x81\x7c\xbc\x88\x22\x3e\x10\xa9\x37\x19\x4d\x8b\xf5\ \xb3\x98\xd1\x82\x14\xa0\x30\xa0\x22\x0c\xa5\x20\x42\x18\x60\x09\ \x4b\x12\x36\xcc\x8c\x51\xfb\xe0\xc8\xf4\x00\x37\x06\xce\x6d\x93\ \x75\x9c\x63\x1c\xed\xd8\x44\x4e\x6e\x12\x94\xa1\x94\xc8\x09\x02\ \x31\x88\xe6\x50\x2f\x73\x0c\x72\x54\x20\x05\x79\x4a\x43\xa6\x87\ \x08\xec\x40\x45\x11\x61\xc9\x89\x30\x10\x90\x6d\x52\x1b\xde\x2a\ \xac\x96\x42\xc7\xc9\xf1\x9c\xc2\x8c\xe2\x26\x9d\x38\x4c\x3f\x20\ \xa5\x89\x76\x4b\x66\x44\x40\x33\xb1\x1f\x3d\xf3\x51\xb9\xfe\x62\ \x90\xa0\xe2\x72\x0b\x30\xea\x8a\x15\xac\x58\xc1\x00\xf5\x50\x44\ \x35\x36\x6d\x8d\xe4\xeb\x59\x25\xe3\xa8\x49\x60\xae\xd3\x9d\xc6\ \x7c\xa2\x13\x8d\x94\x26\x79\x32\x24\x3b\x44\x88\x11\x83\xae\xf7\ \xc7\x17\x45\x89\x4c\x62\x63\xd0\x20\x06\x83\x1e\x76\x48\xe2\x00\ \x1f\x28\x05\x2f\xdf\x46\x50\x23\x1e\xb4\xa0\x49\x4c\xdf\x2f\x89\ \x09\xc5\xe4\x21\xc5\x16\x98\x84\x28\x3b\x6b\x8a\x53\x9c\xc6\x23\ \x72\x16\x2d\x88\x22\xc8\x38\xc8\x97\x21\x72\x6c\xf6\x0c\x51\xad\ \xa2\x49\x2a\x2a\xb0\xe2\x00\x02\x5d\xa9\xf0\x60\x59\xc6\x12\x5e\ \xaa\x14\xae\xac\xe4\xdc\x6c\xe1\x46\x88\x4a\xd4\x9d\x3e\xc5\xa4\ \x58\x8d\x99\xd3\x4b\x1a\xc0\x1c\x68\x35\xc0\x1e\x43\x99\x9d\x8d\ \xd2\x8a\x95\xa2\x12\xe4\x82\x60\x84\xd4\x6b\xb2\xe3\x00\x46\x30\ \x07\x41\xb5\x69\xd0\xff\x7d\xb0\x80\x2f\x54\x9f\x91\x38\x79\x49\ \x3a\xe2\xd4\x9d\x97\x3c\xac\x58\x59\xe1\x87\x3c\x6e\xd2\x16\x46\ \x88\x2c\x5a\xcd\x61\x84\x9f\x25\x53\x11\xd2\x8a\x66\x16\x01\xa5\ \x4f\x5c\x19\x55\x4e\x94\x0a\x90\x49\x0f\x60\x8e\x01\xc2\xd2\x91\ \x44\xa0\x5a\xe1\x1a\x46\x49\x04\x32\xee\xa6\xc5\x34\xfe\x2c\x44\ \x19\x6b\x0b\x56\xc4\xc3\xb6\xee\x64\x6c\x63\x1d\xcb\x58\xda\x42\ \x36\xaf\xec\x60\x87\x39\x6c\x81\x98\xa0\x06\xc7\x68\xdf\x02\xa4\ \xed\x94\xaa\x39\x32\x59\x53\x83\xec\x00\x28\x2a\xf4\x40\xd5\x6e\ \x5a\x97\xaa\x52\xe3\xa5\x12\x15\xb8\xb8\xc1\xd6\x71\xac\x39\xad\ \xed\x58\x19\x9b\xc7\xde\x36\xb6\x8e\xbd\x3d\x00\x2b\x24\xcb\x0e\ \x7e\xb0\xe3\x87\x9a\x91\xe7\x09\x86\xc3\xac\xf4\x70\x48\x46\x4b\ \x75\xab\x90\x2c\x85\x8a\xbc\x52\xed\x83\xde\xe4\x84\xff\x74\x96\ \x5a\x72\xaa\x70\x81\xc4\x1b\xeb\x77\x17\x0b\x51\x4c\xea\xf6\x00\ \x8e\xcd\x29\x84\xf3\x38\x61\x08\xaf\x57\xb8\xc1\x65\x85\x33\xce\ \xc1\x0f\x4b\xac\x15\x68\x18\xc5\x94\xc6\x6e\xe5\xb7\xe4\x02\x28\ \x06\x1f\x28\xc0\x0a\xf8\x8a\x5a\xaa\xa9\xea\x52\x8e\x0c\xb0\x54\ \xcb\xa9\x3a\x9f\x72\x52\xac\x3d\x15\x6f\x6d\x21\x5a\x61\x80\xfa\ \xe1\x1d\x15\x0e\xf2\x7a\x8d\x10\xdc\xe8\x9e\xe3\x1c\x4c\x30\x02\ \x06\x3e\xac\xae\xf8\x91\x11\x64\x22\x2a\x71\x80\x62\x60\xaa\xc8\ \x7e\xe0\x02\xb1\xf4\x66\x18\x2c\x45\x55\x12\xb6\x54\x0f\x60\x4e\ \xe1\x01\x13\x7b\x53\x4e\xda\x96\x15\x39\x4e\x33\xfe\x64\x73\x4a\ \x47\xf2\x0a\xf9\x00\x27\x55\x6f\x64\xd9\x01\x0f\x49\xc0\xe1\x1c\ \xec\x70\x02\x13\x98\xf0\xaa\x29\xf6\xa9\xad\x80\xac\xef\xe6\xf0\ \x9b\xcf\xf4\x50\x81\x09\xe6\x80\x47\x69\xff\xca\x82\x2d\xb7\x41\ \xcb\x2c\x00\xb3\x75\xa9\x26\xd5\x04\xdb\xb4\xb0\x0e\x06\x2b\x4e\ \x8d\x00\x59\x03\x18\xc1\x00\x6a\x26\xaf\x9b\x27\xfc\xd4\xa7\x56\ \xe2\x00\x3f\x5c\x2f\x2b\xe0\x00\x87\x31\x30\xc1\x09\x54\x88\xc1\ \x3a\x3e\xf0\x07\x26\x2f\x0a\xb3\xf6\x7d\x2e\x94\xa7\x14\x03\x26\ \x08\x97\xa0\x22\x93\xa5\x80\x65\x19\x66\x49\x73\x82\x05\x9c\x00\ \x33\x2f\x57\x70\xc0\x9b\xf6\x14\x03\xee\xc4\x80\x78\x3f\x7d\xd6\ \xc9\xa2\x95\xda\x9c\xa6\x23\x85\xdf\xfc\x54\x52\xaf\xf7\x1c\x32\ \xc0\xb3\x13\x2c\xe5\x51\x3d\xd4\xda\xcf\x58\x0a\xce\xaa\xec\xb7\ \x6b\x66\xc5\x80\x1d\x50\x30\xc2\x07\xba\x89\xda\x58\x12\x1b\x15\ \xcc\x26\xa8\xa4\x91\x1d\xe9\xe9\x9e\xae\xa7\x28\x30\x00\xa8\x71\ \x6c\x8b\x6a\x9b\x83\x8d\x93\x5d\x33\x4e\xcd\xdb\xed\x20\xab\x57\ \xbd\x43\x0e\xee\x9e\x3f\x20\x21\x6a\x7e\x82\x07\x3b\xb1\x75\xba\ \xcb\xf5\xb7\x42\x1b\xaa\x38\x76\x8a\xc1\x39\xfe\x00\x1a\x07\x01\ \x0b\xe8\x66\xde\xe4\x65\xf1\xf6\x9d\x6c\xea\xa6\x7c\xd9\x0a\x5c\ \x05\x0a\x0a\x2e\xf0\x81\x73\x3a\xaf\xfc\xd0\xab\x1e\x56\x10\x66\ \x54\x4c\x76\xe0\x0b\x1f\xab\xc3\x01\x2a\x67\x78\xb0\xc3\xd7\x4e\ \xa0\xb8\xd8\xac\x52\x99\x54\x78\xe2\x1c\x4b\x46\xf7\x89\xb2\xf3\ \x59\x90\x9a\x0b\xe4\x42\xb2\xc3\xc8\xe1\xc0\x0e\x9a\x5d\x53\xa5\ \xc6\x2b\x01\x75\x07\x94\x6c\x64\x3b\xb2\xdf\x2b\x66\xf6\x2a\xcc\ \xb1\x0a\x81\xaf\x5d\xe0\xb6\x08\x38\x5a\xf9\x51\x6c\x65\xe3\xdb\ \xda\x0a\x47\xb3\x1f\x46\xdd\x63\x80\xb2\xc2\xe8\x47\x66\x42\xac\ \xad\x72\x0b\x1e\x78\xe2\xf0\x87\x5f\xc0\x39\x6c\xa1\xf1\xa9\x43\ \x8f\x5b\x82\x16\x71\xad\xa8\x00\x06\x56\xb3\x82\xee\x30\x4e\x2d\ \x27\x56\xd0\x38\x3c\xe8\xc1\x52\x2d\xe7\xb7\x75\x77\x8e\xef\x15\ \x98\x7e\xed\xe6\x38\xeb\xda\xe3\x2e\x70\x73\xf0\x63\xba\xfa\x56\ \xb6\x54\x13\xde\x53\x56\xa0\x60\xb7\x10\xc6\xe3\x01\x30\x00\x50\ \x3b\xb3\xe2\xc8\x78\xe6\x81\x1d\xec\x50\x99\x5b\x78\xe2\x16\x0b\ \x60\x4e\x73\xe4\xc0\x83\x03\x00\x35\x4b\xd9\x01\xdb\x86\x76\x1d\ \x57\x3b\xb8\x23\x19\x7c\xf8\x82\x14\xe4\xfe\x3d\x4b\x62\xb3\xd0\ \xf3\x5b\x66\x41\xa4\xa9\x2b\xfe\xf2\xcb\x7e\xe7\x3b\x67\x7b\xeb\ \x6b\x6e\x80\xb5\xf3\x9c\xa0\x91\x6e\xb9\xb2\x57\x7c\x6d\x4f\xd7\ \x1e\xda\x8d\xbd\xfd\xb6\x25\xe1\x77\xe0\xf3\x60\x30\xc4\x47\x18\ \xa9\xc0\x01\x64\x40\x18\xcd\xe4\x09\x0b\x90\x0a\x19\xc7\x27\xb8\ \x06\x23\xd0\x44\x7d\xe9\xe1\x0e\xd9\x87\x30\xe6\x30\x4b\xb0\xa4\ \x07\x4b\x54\x3c\x9e\x87\x55\xc7\xc6\x72\xde\xc4\x6f\xe3\x07\x66\ \xa6\xb7\x02\xa9\x27\x70\x0f\xd0\x7e\xe6\x80\x07\x78\xc0\x73\xc9\ \x56\x76\x76\x07\x66\xe6\x40\x82\x25\x68\x04\x33\x57\x5b\xbd\x85\ \x02\x28\xd0\x6d\x27\x25\x09\x92\x00\x05\xce\x00\x0f\xe7\x00\x06\ \xa6\xd1\x4f\xfd\xc1\x01\xcb\x31\x31\xc9\xc7\x1c\xce\x50\x08\x52\ \xe7\x1b\xc1\x21\x2a\xf6\x33\x4d\x20\xe3\x04\xce\x22\x2e\x5f\x70\ \x00\x2c\x20\x20\x03\x22\x37\x7f\x80\x07\xdd\x64\x81\x7a\x10\x82\ \x16\x68\x81\xe6\x37\x7f\x78\x60\x0e\x25\x50\x73\xab\xf0\x00\x29\ \xa8\x73\x1d\x58\x6c\x77\xb7\x62\x71\x60\x6d\x02\xc7\x69\x69\xc6\ \x0a\xbc\x77\x00\x95\xb0\x87\xfc\x67\x04\xe7\xe0\x0e\x60\x90\x0a\ \x3c\xf0\x7f\x54\xe1\x09\xbc\x90\x0b\xfe\x87\x48\x06\xcc\xb1\x88\ \x87\x58\x04\xc5\x85\x24\xf3\x45\x62\xf0\x12\x79\x13\xf2\x01\x55\ \xd8\x31\xfc\x00\x33\xe6\xf6\x38\xab\x20\x2d\xc2\x16\x06\x21\x88\ \x6c\xb3\x84\x55\xc2\x56\x7e\x42\xb0\x73\x24\x58\x73\x6c\x78\x86\ \xa6\x07\x7b\x75\x77\x77\x7a\xa0\x57\x31\xe8\x7a\xb4\x98\x56\xa0\ \x86\x87\x3b\xa6\x87\x95\xc0\x83\x00\x75\x64\xee\xc0\x03\x4e\x77\ \x78\x46\xb1\x00\xf9\x81\x88\xc9\x47\x27\xc9\xa7\x1c\xf7\xc0\x0a\ \x59\x81\x23\xd9\x21\x21\x85\x12\x85\x50\x12\x2c\x3e\x64\x85\x57\ \xc8\x48\xd7\x64\x6e\x8c\xf3\x79\xe9\x01\x86\xca\xd6\x68\xdd\x27\ \x4b\xb3\x24\x7e\xf3\xb7\x02\x39\x77\x82\x29\xb8\x82\x2b\x28\x69\ \x22\x58\x7a\x77\x47\x8b\x24\xf8\x7a\x74\x17\x8f\x94\xc5\x7b\x6d\ \x86\x01\x70\xa6\x87\xbe\x17\x84\x4e\x30\x88\x4e\x47\x15\x72\x40\ \x06\xca\x61\x8c\xca\x97\x84\x0b\x40\x06\xf2\x00\x07\x8d\xe7\x19\ \x4e\xd6\x51\x52\x06\x2a\x1e\x37\x23\xb9\x33\x2e\x46\x90\x36\xd7\ \x64\x7a\x63\x97\x29\x5a\x16\x86\x04\x15\x8e\x5c\x26\x4b\xe4\x88\ \x8a\x67\x68\x82\x29\xd8\x8a\xb2\xb7\x62\x22\x48\x82\x2a\x99\x73\ \xaf\x17\x07\xa8\x40\x77\xb3\x98\xfe\x7a\x0b\xc7\x7b\x4f\x25\x09\ \x7c\x78\x64\x76\x10\x03\x31\x70\x1a\x06\x88\x8c\xca\xa1\x1c\x06\ \x99\x84\xcb\xc1\x0b\xf7\x90\x0c\x8f\x28\x2b\x7e\x04\x85\x94\x68\ \x28\x54\x50\x09\xe2\x82\x85\x54\xf2\x85\x5c\x46\x86\x91\x26\x7e\ \x1e\xc9\x65\x1d\x18\x69\xa6\xc7\x0f\x0f\x70\x82\x06\xc0\x0f\xfc\ \xb0\x82\xef\x87\x7e\x18\x49\x82\x6b\x77\x86\xfc\x60\x8e\x39\x47\ \x82\xf3\xe7\x73\xa0\x96\x83\xb6\xc0\x7b\xbc\xc7\x83\x70\x00\x06\ \x1c\xb7\x0e\x83\x68\x80\x96\x21\x94\x40\x19\x94\x43\xa9\x1c\xd0\ \xd0\x8c\xef\x81\x6b\x51\xf6\x37\x0b\x83\x4d\x10\x00\x01\x50\x79\ \x72\x16\xa9\x85\x96\x32\x95\x1f\x18\x86\x8d\xf6\x98\x8f\x39\x8e\ \x21\x68\x8e\xa9\x87\x02\x27\x88\x07\x74\x27\x82\x9e\x39\x82\xa8\ \x07\x96\x6b\x69\x8e\x7a\xc0\x92\xf8\x96\x73\xe6\x50\x83\x3b\x66\ \x7b\x00\x75\x67\x1c\x67\x07\xa9\xa0\x97\x72\xb0\x88\x0b\x30\x90\ \x40\x79\x9b\xcb\x41\x06\xba\xe9\x0e\x0b\x68\x1d\x27\x70\x45\x22\ \x76\x98\x71\x60\x7b\x42\x00\x33\x8d\x79\x72\xd7\x34\x95\xe2\x77\ \x6c\x16\x68\x29\x5a\x08\x8a\x55\x89\x8a\xfc\x40\x83\x26\x98\x96\ \xe7\xf7\x99\x6f\x57\x02\xe9\xfe\x88\x9a\x60\x39\x82\x39\xf7\x92\ \x25\x88\x02\x72\x89\x02\x46\xf0\x00\xac\xf0\x04\x32\x20\x78\x31\ \x90\x97\xfc\x94\x13\x9e\x30\x31\x03\x89\x88\x3f\xc9\x0b\xba\x59\ \x9b\xf5\x99\x0a\x70\x70\x94\x11\x93\x59\x10\x38\x25\x44\x30\x99\ \x1a\xe4\x9f\xcf\x99\x72\xe0\xf8\x98\xc9\x09\x9d\x5a\x59\x9a\xd3\ \x49\x83\x0f\x90\x96\x3c\x77\x99\x23\x38\x92\x25\xb0\x0a\x39\xb7\ \x82\x15\x4a\x8b\x2c\x59\x8b\x35\xc8\x7b\x71\x27\x03\x46\x00\x50\ \x47\xe7\x04\x4e\x70\x0b\x31\x40\x3d\x88\x37\x31\xc9\x71\x88\xf9\ \x41\x03\x88\xa8\x88\xba\xa9\x88\xc9\x47\x06\x1c\xa0\x90\x4d\xb8\ \x15\x21\xd6\x9f\x38\x6a\xa0\x5c\x56\x95\x56\xb9\x65\x99\x47\x86\ \x60\x26\x04\x6a\x69\x00\x32\x70\x56\xd6\x29\x99\x29\x79\x7a\x69\ \x68\x00\xda\x79\x86\xab\xc0\x99\x6d\xb8\x96\xb2\xe8\xa4\x38\x18\ \x97\x71\x67\x04\x32\x90\xa5\x47\x06\x06\x4e\x40\x7c\x55\x61\x7c\ \x87\xe7\x20\x38\x91\x8c\x2b\xda\xa2\x2f\x5a\x9f\x02\xc9\x01\xbc\ \xb9\x90\x36\x3a\x54\x38\x4a\x25\x87\xe2\x9c\xc9\xe9\x9c\x3b\xfa\ \x8d\x2f\xb6\x2a\x3b\x1a\x69\x42\xaa\x96\x27\x08\x96\x60\xc6\xa3\ \x7a\xb0\xa7\x2b\xa0\x82\xfe\x06\x50\x06\x71\x83\x07\x4f\x7a\x86\ \x2a\xe8\x7a\x46\xea\x7a\xa6\xa7\x82\x67\x98\x86\x33\x27\x03\x0f\ \xc0\x0e\x59\xfa\x7b\xea\x39\x1f\xc6\x97\x0a\x8a\x48\x27\xb9\x31\ \x9b\xb5\x59\x8c\xf4\x79\xa6\x0b\x80\x80\x8a\x78\x7c\xcc\xc8\xa6\ \x4f\x91\x94\x6f\x3a\x21\xff\x39\x99\x94\x89\xa7\x1f\x99\x79\xb2\ \x84\xa7\xe3\xc8\x91\x05\xfa\xa3\xe2\x27\xa8\x6a\xe9\xa7\x42\x10\ \x9d\x81\x3a\x82\x83\x5a\x73\x13\x0a\xa9\x2a\xf8\xa4\x68\x68\x0e\ \xab\x18\x83\xc2\x3a\xa8\x67\x18\x70\x5f\x69\xa9\x70\x00\x05\xe7\ \xd0\xa5\x1e\x02\x8c\x04\xa8\x7c\x13\x33\x52\xb3\x29\x90\xf2\x29\ \x90\x30\xea\x09\x64\x10\xa6\x9e\x30\xa3\xaa\x0a\x14\x84\xd9\xaa\ \x94\x29\x04\x25\x50\x06\x78\xd0\xa3\x3e\x0a\x99\x72\x6a\xa0\xc9\ \x59\x7e\xe4\x08\xab\xca\x79\x8a\x5b\x29\x9a\xfc\x70\x8a\xf6\xaa\ \xaf\x22\x89\x07\xed\xba\x86\x89\x8a\xa8\x2a\x38\xa8\x04\xfb\x00\ \x62\x79\xb0\xea\xe8\xac\x0f\xf0\x69\x1e\xea\x0c\xd4\x5a\xad\x4e\ \x50\xa2\x76\x50\xae\x46\xc8\x1c\xef\x79\x78\x96\xf1\x9e\x07\xc9\ \x0b\x1c\x90\x1f\x1c\xc0\x01\xa5\x3a\xb2\xe3\x6a\x88\xb9\xa0\x0c\ \x34\x9a\x17\xbf\xd9\xfe\xaa\x30\x33\x8e\x78\x60\x09\x7f\x50\x06\ \x61\x38\x86\xd7\x34\x86\x72\xaa\x41\xca\x69\xaf\x1e\x69\x99\x42\ \x20\xa4\x9c\x09\x96\xa7\xf8\xab\xe4\x18\xa1\xce\x9a\x86\x65\x50\ \xac\xc7\xca\xb0\x88\xfa\x00\x13\x1a\x96\xcd\xfa\xa8\x88\x5a\x02\ \x39\x28\x03\x45\x06\x7c\x60\x30\x88\xc0\xf8\xa2\xcb\x91\x84\x9c\ \x7a\xb2\xc6\xe7\xad\x34\x20\x1e\xb9\x70\x0f\xf7\x50\xb6\x46\x48\ \x06\xf7\x00\xb2\xb9\x20\x09\xfa\xc9\x15\x0f\xc1\x9f\xfd\xf9\x9f\ \x7f\x2a\x7e\x25\x10\x0f\xf9\xf0\x07\x0f\x1a\xab\xe3\x08\x8a\x39\ \x6b\x9c\x63\xc8\xb3\xdd\xe7\xb3\x82\x7a\x04\x62\x49\xb4\x7a\xea\ \xac\x90\x8a\xb4\x28\xb0\x0a\x25\x50\x02\xc6\xaa\x8e\x06\x7b\xb0\ \x18\x79\x92\x8f\xea\xb8\x02\x77\xb5\xe7\x00\x07\xee\x00\x07\x62\ \xe0\x0e\x26\xfb\xb1\xc9\x87\x80\x07\x79\xb2\xa5\x2a\xa3\x63\x2b\ \x1e\x34\x40\x03\x45\x50\x04\x6b\x9b\xad\x1f\x6b\xae\x35\x7a\x12\ \x37\x0a\x81\xff\x89\x07\xb6\xa0\xb0\x8d\x26\x04\x78\xf0\x07\x79\ \x5b\x02\x2b\xa0\x2a\xf5\x5a\x95\xdd\xe7\xaa\xe2\x08\x8e\xa0\x98\ \xbc\x5b\x46\x86\x3f\xbb\x02\x42\x7a\x04\xe6\x18\x07\xfe\xca\x02\ \xbf\xfa\xa8\x8f\xfe\x8b\xb4\xb6\x90\x0f\xb6\xe0\xae\xc7\x0a\xb9\ \x92\x2b\x96\xa6\x27\xa4\x81\x3a\xbe\xa8\x28\xb5\x27\x18\x5c\x9b\ \xeb\x0c\xc9\x10\x01\x21\x30\x0d\x34\x70\x0f\x04\x98\xa6\xf4\x79\ \x78\xe1\x5a\xaa\x07\x19\xb2\xb9\x20\x1e\xaa\x6b\x0c\x2c\x5a\x9f\ \x1f\xcb\x0b\xd0\x30\x0d\xe7\x5a\x12\x0d\xd9\x9f\x2c\x60\x00\x7e\ \x10\x08\x86\x80\x02\x78\x30\x4b\x2b\x70\xb7\x32\x4b\xb3\x4c\x43\ \xb7\xb8\x1a\xaf\x1a\x44\x86\x08\xda\x9c\x20\x49\xbd\x40\x2b\x04\ \x60\xa9\x82\x3f\xbb\xab\x52\x8b\x07\x0f\x50\x06\x33\x27\x6d\xf9\ \xc0\xa4\x47\xbb\xb0\x8f\x2a\xa4\x2e\x3c\xbe\x3c\xb7\xa7\x94\x4b\ \xc2\x5a\x7a\x0e\x50\x00\x0d\x50\x00\x03\xc6\xe0\xbe\xb9\x60\x84\ \x67\x3b\xb6\x45\x90\x0b\x2f\x4a\x80\xc7\x97\x78\x1c\x50\x04\x34\ \x10\x02\x4a\xec\x05\x4a\x1c\x02\x2c\x9a\x1f\x67\xab\xb6\x34\xe0\ \xb6\x03\x0c\x3f\xac\xba\x6b\x03\x82\x01\x87\x70\x08\x86\x10\x08\ \x7f\x40\x7e\x65\x10\x0f\x99\xa0\x08\xf9\xd0\x89\x78\xca\x6f\x75\ \x5b\xbc\x3a\x7b\xbc\xd0\xd9\xb3\xa0\xd8\xbc\x78\x10\x07\x78\x70\ \x04\xfd\xea\xaf\xfa\x0a\xb4\x25\xf0\x00\x27\x8c\x01\x18\x80\x02\ \x86\x0a\xa9\xfe\xc2\x0a\xc8\x51\xeb\xbc\x83\x4a\xc8\x8a\x6b\x8e\ \xe8\xbb\x61\x41\xa8\x12\xad\x9b\x0b\x48\xec\xc8\x45\xa0\xbf\xc6\ \xe0\xba\x65\x7b\xaa\x83\x81\x80\x91\x1c\x02\xc6\x10\x02\x5e\xd0\ \xc9\x4a\xac\xbf\xf9\xf1\x93\x45\xc0\x0a\x99\x30\xbb\x1c\xa1\x08\ \x15\x87\xc5\x2b\x60\x0b\x5b\xcc\xc5\x5d\xb8\x65\x2b\x80\x01\x85\ \xe0\xca\x59\x78\xb3\xb2\x07\xaf\x72\xeb\x98\x81\x8b\xbc\x95\xb9\ \xab\xbc\x3b\xc7\x73\xfc\xb3\xbf\xfa\xcb\x0e\x4b\xb5\x7c\xec\x07\ \x18\x90\x0f\x49\x6b\xac\x70\x6c\xac\x8a\xcb\xb0\x85\x6c\xbd\x41\ \xeb\x5e\xea\xeb\x0e\xe7\x30\x7c\x17\x2b\xa3\x8f\xfc\xc3\x9b\xfc\ \xc9\x4a\xfc\xbe\xba\xb9\xb1\x45\xa0\xc4\x8e\xbc\xc9\x9d\xcc\xc4\ \x9c\xac\xc9\xae\x0b\xb2\xbc\x50\x04\x2b\xfb\x13\x27\xf0\x64\xbb\ \x16\x06\x06\x60\x08\xad\x9c\x1d\xef\x6a\x29\xab\x60\xcf\x86\x90\ \x0f\x0d\x0c\x63\x61\x60\xa7\xf6\xda\x68\x95\xb2\xb3\x05\xaa\x91\ \x1c\xcc\xbb\x74\xbc\x82\x43\xfb\xcc\x7a\x5c\xa5\x7c\x1c\x08\x7d\ \x9c\xb4\x8f\xab\x8e\xbc\x5b\xd1\x4c\xab\x82\x90\xeb\xbd\x8b\x9b\ \xc7\xee\x05\x6f\xac\xf6\x8b\x25\x3a\x52\xe2\x4a\x94\x3d\x4c\x94\ \x63\xbb\xfe\xc4\xe8\x2c\x1e\x45\x80\xba\x4c\x5c\x04\x47\xdc\xcd\ \x4d\xcc\xc9\x2b\x4d\xc9\xad\x2b\x09\xc8\xd4\x18\x91\x38\xcf\x06\ \x50\x09\x10\xb0\xc5\xc1\xb1\x8e\xe2\xf7\x00\x72\x84\x01\xe0\xc7\ \x65\x95\xbb\xcb\x00\xba\xc6\x79\x9a\xab\xc7\xcb\xc1\x02\xab\xb0\ \xc2\xcc\xbb\x0f\x60\xb8\x7a\xcc\xc7\xd0\x16\x08\xc8\x8c\x01\x65\ \x40\xd1\xd7\xfb\xb8\xbf\xcc\xd1\x1d\x7d\x07\x18\xfd\xd5\x0d\x1a\ \x5c\x32\xf0\x04\xc9\x00\x88\x01\x78\xc9\xba\x19\xbf\x02\xc9\x0b\ \x29\xbd\xc4\x4d\xbc\xba\x4b\x6c\x0c\x3d\x7c\x0f\x76\xad\xc9\xe2\ \x91\xce\x9f\xbc\xba\x7d\x5d\x09\xa6\x4c\x11\xb5\x7b\x98\xfc\x70\ \x00\x3f\x7d\x08\x8a\x10\x0f\x06\xf0\xa8\x3c\xb7\x02\x28\x90\x0f\ \x3a\xd7\x68\x3b\xb7\x8e\xbb\xfc\xab\xf4\xea\xaa\x18\x5c\xbc\x4f\ \xfd\xb3\x25\x70\x04\x86\x2b\xcc\x2b\xd0\x95\x79\xfc\x00\x72\x89\ \x87\x89\x60\x09\x7e\x5c\x06\x64\xdd\xda\x15\x7d\xd1\x02\x2b\xd6\ \x25\x70\x07\x5d\x4d\xdb\x64\xdd\xae\x65\xd0\x95\xe8\xeb\xb9\xd5\ \x7a\x1b\x45\xec\x09\x9c\xca\xce\x6f\x7d\x88\x49\x4c\xd3\x4d\xec\ \xc9\x4e\x0c\xd3\x23\x1b\xc4\x3d\x9c\x1f\x74\x8d\xce\x33\x6d\x08\ \x32\xfe\x51\xc0\x50\xc6\x02\xac\xb0\xc5\x85\xe0\x42\x13\xba\x62\ \xe3\x14\xac\x90\x1a\x86\x2b\x60\x00\x8d\x1b\xbc\x74\x9a\xc1\x99\ \x3d\xa7\x20\x19\x8e\xcf\x09\xd5\x47\x00\xb9\x53\xcd\xae\x5d\xd9\ \x95\x38\xc8\xc7\x07\x60\x08\x7d\xfc\xd5\xb7\x5d\xd1\x47\x70\xd1\ \x5f\xbd\xd1\xed\x9a\x0f\x96\x10\xe0\x5d\x9d\x0f\x38\x58\x9e\x32\ \x70\x9e\x41\x18\x80\x87\x67\x78\x9c\xca\x01\x67\xdb\xba\x23\x7b\ \xbf\xc5\x4d\xd3\xe7\xdc\xc4\x93\x7c\xa6\x2f\xaa\xd7\x32\x7d\xce\ \xe7\x3c\xd8\xca\x24\xcf\xd5\xfd\x00\x7e\x90\x09\xfd\x1c\x73\x23\ \x48\x96\xfc\x10\x70\xfc\x60\x00\x18\x10\x0f\x0f\x40\xd0\x03\xaa\ \xbc\x7f\xfb\xb2\x1a\x7c\xa0\xbb\xfa\xd9\x9f\x1d\xc2\x0a\x5d\xd5\ \x3c\x8e\x83\x07\x90\x09\x5b\x6c\xdf\xac\x7d\x07\x64\xcd\xae\x18\ \x6d\xb8\x8f\x4b\xe4\xb3\x4d\xdb\x01\x1e\x08\x4e\x6e\x09\xf9\xa0\ \xbd\x7d\x8c\xa5\x12\x9b\xe0\xf3\x61\x78\xc7\x07\x8c\x0b\x80\xbf\ \xab\x2b\xc4\x6a\x9b\xc9\x7d\x5d\xe1\xe8\x0c\xce\x2f\xfa\xb1\x2b\ \x7a\xdc\xe7\x7c\x08\x33\x11\x0f\xc7\x69\x2e\xb2\x24\x04\xe6\x50\ \x06\x33\xfb\x07\x4a\x3b\xa8\x61\x59\x9a\x87\x05\x61\x28\xb0\x02\ \xfe\x8e\x36\xa7\xca\xdb\xe7\xc6\x2b\x8e\x39\x0b\x92\x3f\xdb\xde\ \xed\xad\xe3\xec\x4a\xc7\x8a\x8e\x02\x74\x90\x09\x4e\xf9\x2c\x10\ \x50\x09\x12\x9d\x0f\x77\x80\x07\x89\x6e\xe9\x1b\xdd\xda\x77\x00\ \xe0\x4d\x9e\x09\x4f\xde\xd5\x01\x47\x9e\x35\xcc\x04\x5e\x7a\xc9\ \x83\x31\x08\x46\x9c\x0b\xac\x0b\xbf\x8e\xbc\xba\xf7\x90\xc9\x68\ \xce\xc4\x17\x3e\xc4\x21\x8b\xc4\x73\xdd\xe1\xd3\x5d\xcb\x39\x5a\ \x7e\x08\x1b\x37\x2b\xce\x0a\x0f\x50\x9a\x07\xfe\xe3\x18\xc0\x0f\ \xc2\x6b\x9c\x6c\xec\xa3\xf2\x22\xe8\x80\x1b\x06\x85\x7e\x07\xa0\ \x4d\xb4\x42\x00\xda\x73\x7c\x04\x28\xa0\x0d\x39\x98\x09\x10\x60\ \x8d\x08\x73\x08\x81\x80\x02\x77\x20\xcc\x48\xbe\xe4\xb3\x6d\x09\ \x4e\xfe\xe4\x9f\xee\xb8\x92\x2a\x71\x60\x90\xb5\x84\xc8\xe0\xc7\ \x27\x07\x6e\xed\xc8\xf4\x0e\xd3\xf9\x81\xc4\xc7\x4d\xe1\xb2\xce\ \xa2\x5d\x1e\xc4\x5d\x3e\xd7\x6a\x1e\x13\xea\x06\x81\x1f\x10\x07\ \x54\x50\x99\xb3\xa4\x07\x2a\xd8\xa0\x33\x47\x64\xe6\xf0\x54\x99\ \x70\x00\x28\x90\x91\xc6\xfb\xe7\x33\x32\xab\x13\xfc\x9f\x0a\x1d\ \xed\xc3\x9c\xe8\x55\x7d\xed\x28\x90\x08\x74\x90\x08\xdb\xce\xfe\ \xed\xcf\x72\x08\x99\x80\x01\xe1\xfe\xb3\x73\x4c\xe4\x2e\x0f\xe0\ \xcb\x14\x08\x50\x2e\xe0\x86\xfa\xa4\xee\xb5\x67\xaf\x96\x97\x60\ \x6a\xb2\xef\x69\x7c\xf7\x3b\xb2\x46\x78\xc4\xe5\xac\xd2\x33\x5d\ \xe1\x33\xcd\xd7\xfc\xdb\xd7\x21\xe0\xe1\xf3\x14\x1b\x58\xcc\x0e\ \xd3\x20\x05\xfc\xa7\x99\x0c\x8d\x07\x9a\xf9\x95\xc3\x0e\x67\x3e\ \x5d\x09\x7e\x70\x04\x4b\x8d\x9c\x5a\x68\x95\x33\xae\xcb\xca\x0e\ \x20\xb3\xf4\xec\xc2\xcc\xc1\x77\x80\xed\xd8\xce\xe8\x38\x88\x02\ \x88\x90\x98\x89\x69\x85\x89\x9d\x09\x99\xb0\xf2\xb1\xed\xf2\xb3\ \x9d\x0f\xe7\x6e\x09\x03\xae\xcc\x15\x1d\x07\x82\x2f\x78\x5e\xca\ \x4f\x0d\x7e\xaa\xc9\xc7\xa9\xa5\x2b\xa3\xcb\xdd\xcd\x4c\xdc\xc9\ \x93\xcc\x01\x49\xec\xc9\x8f\xff\xf8\x16\x1e\x02\xd2\x2d\xf0\xf1\ \x40\x7d\x31\xe0\x0e\xdb\x43\xf7\xcf\xb2\x87\x95\x90\x09\x92\x80\ \x02\x32\xc0\x0f\xac\x00\x01\x9f\xff\x05\x87\x80\x02\x42\xa0\xec\ \x16\x99\xa7\x80\x7e\xc1\x16\xa8\xd9\x85\x1e\xda\xbb\x0a\xda\x65\ \x40\x07\x0f\xc0\xf6\x6e\x8f\x01\x95\x70\x08\x3f\xed\xe8\x7d\x8c\ \x01\x1a\x20\x2e\xde\x4e\xe9\x4b\xee\xf2\x44\x6e\xee\x32\xfe\xaf\ \xcc\x65\xa0\xbd\x65\xf0\x95\x71\x70\x2a\x22\xea\x04\x9f\x50\xa2\ \xc5\x97\x78\x9c\xea\x74\xa7\x9b\x0a\x8b\xaf\x9b\xb6\xbe\xc9\x20\ \xf0\xd2\x62\x9b\xef\x62\xde\xc4\x4c\xdf\x10\x6e\xba\x6b\xee\xe0\ \x05\x26\xcf\xed\x91\x0e\x50\x32\xf0\xe8\x08\x53\x09\x0f\xa0\xc6\ \x33\xce\xbc\xb3\x7f\xa0\x6a\xfc\x9c\x00\x21\x44\xc8\x11\x3c\x02\ \x59\x08\xbc\x43\x07\xc5\x11\x85\xda\x50\x28\xa4\xf3\x00\x03\xa2\ \x43\x88\x30\xc4\x09\xc3\xe2\x48\x25\x08\x10\x0e\x65\x3a\x14\x08\ \xc3\x9d\x12\x47\xee\x9c\xbc\x53\xc6\x52\xa0\x40\x96\xca\x94\x29\ \x51\xc6\xc0\x03\x7e\x71\xe2\x7c\x60\x02\x26\x55\xaa\x5b\xb7\xe4\ \x0c\xea\xe9\x49\x28\x19\x0e\x42\x79\x78\x5a\x90\x4a\xa8\x50\x9f\ \x44\x8b\x84\x08\xe1\xc5\x4b\x08\x63\x45\x72\xe5\x32\x06\x55\xea\ \x56\xae\x95\xfe\x7d\x05\x1b\x56\xec\x58\xb2\x65\xc1\x06\x6a\x93\ \x56\xed\x5a\xb6\x6d\xd5\xc6\x48\xa6\xe5\xcb\x5c\xba\x75\xe7\x42\ \xa8\x24\xa9\x92\x14\xba\x78\x51\x08\x09\x13\x86\x08\x91\x36\x83\ \x07\xa7\x35\xcc\xe2\x20\x0b\xc1\x6c\x89\x04\x66\x71\x58\xed\x63\ \x81\x47\x04\x02\x1e\x78\x47\x9b\xe6\x32\x74\x3c\x3f\xfe\x7c\xa0\ \xed\x01\x9d\x4c\x99\xfe\x16\x66\x71\x07\xc5\x6a\x90\x10\x4a\xe7\ \xbb\x63\xf2\x4e\xbe\x32\xf9\x56\xba\xc4\x93\x1b\x0f\xbf\x15\x4c\ \x6e\x3a\x39\x77\xaf\x08\x87\x05\x4b\x97\xa6\xe2\x30\xbc\xb8\x71\ \xa6\x40\x6f\x2d\x48\x9e\x55\x2b\x54\x63\xd5\xb5\x72\xdd\x7a\xc2\ \xec\x76\xee\x65\x4f\xb0\x73\x12\xc3\xed\x78\xb7\x60\xbc\xd8\x45\ \x4f\x97\xaf\x5d\x08\xac\x50\x28\x16\x6c\x58\x3e\xe1\xc1\x19\x0d\ \x86\x71\xfc\x38\xb0\xe3\x30\x95\x05\xda\x1f\x88\x0e\xcd\xe8\xc0\ \x80\xc0\xcd\x36\x3b\xe2\xa1\x44\x30\x38\xc2\xbe\xc8\x08\xc3\x83\ \xa3\x2f\x3e\x1a\x69\xb6\x7c\x2e\xb4\xcd\xa5\x12\x56\xc0\x83\x26\ \xdf\x3e\x70\xc2\x0e\x3b\x78\x20\x43\xa9\x05\x88\xe2\x20\x95\xa3\ \xc8\xb8\xa7\x45\x0e\x38\x28\x71\x28\xe3\xc8\xe0\xe5\xaa\xab\x68\ \x90\x8e\xba\xe9\xa6\xe2\xd1\xab\xee\x7e\xec\xee\x84\x13\xa6\x59\ \x23\x80\x5b\xc4\x23\x6f\xbc\x18\x9c\x88\x20\x3d\x27\xd3\xab\xe4\ \x1a\x19\xe2\x10\x82\x31\xfd\xac\x94\x6c\x30\xc5\x0c\x22\x6c\x32\ \xfd\xba\x9c\xac\x3f\xcb\xaa\xb4\x2f\x36\xcd\x12\xc2\xe0\x9a\xcf\ \x1c\xda\x0c\x85\x44\x12\xf9\xeb\x3f\xb5\xc2\x40\xfe\x01\xa4\x4c\ \x10\x11\x09\x36\x0c\x6d\xa3\xad\x84\xdc\x68\x62\x07\xa7\x0f\xec\ \xf8\xa4\xa7\x5b\x80\x22\xaa\x45\x32\x56\x4c\x34\x17\x17\x61\xf4\ \xe4\x16\xa4\x92\xcb\x65\x38\x32\x88\xa2\x81\xba\xea\x72\x84\x2a\ \x84\x4a\xb4\x03\x32\x54\xef\x0e\x98\xc6\x0b\x5f\x02\xe0\xc1\x8e\ \x24\xdb\x72\x42\x8c\x35\x40\x90\xeb\x49\x59\xbf\x90\x04\x05\x19\ \x84\xa0\x12\x30\x07\x03\x0b\xac\xbe\x83\x2e\x8b\x2c\x4c\x5e\xf9\ \xbb\x4c\x88\xc7\x0e\x3a\xe2\x08\x6d\xb4\x21\x30\x11\x3a\x16\xbc\ \x06\x05\x6d\x92\x4d\x10\x03\x0c\xe2\x04\x93\x88\x81\x1e\xa8\xf3\ \x90\x90\x2e\xb4\xc4\x92\x0b\x5f\x7a\xa0\x04\x40\xe3\x08\x14\x0c\ \x1e\x78\x30\x74\x90\x4f\x06\xf1\x84\x83\x7b\x5e\x54\x6a\xa7\x17\ \x69\xa0\xa1\x88\x7b\x4a\x3c\xd4\x93\x7b\xf0\xcd\x85\x17\x32\x4e\ \xe4\xa5\x08\x1c\x37\xc5\xf1\x60\x63\x0c\x11\xb5\x61\xb1\x4e\x30\ \x04\x0a\x28\x02\xa0\x38\x00\x77\x0a\xf8\x04\xc9\x24\x63\x98\x06\ \x56\x2d\x62\x9d\x35\x3d\x08\x9e\x90\x21\xd9\x38\xc6\xfc\xb5\xca\ \xff\x7c\x45\xf6\x88\x38\x82\x2d\x0c\xb2\xc6\x26\x43\x16\x30\xca\ \x4c\x62\x36\x9f\x6b\x9c\x4d\x33\x91\x68\xc7\xfe\xac\x0c\x83\x44\ \xee\x30\xf6\xb1\x63\x19\x63\x01\x83\x43\x5c\x13\x97\xcf\x32\xee\ \x28\x77\xb7\x38\x64\x60\x87\x9d\x73\xdc\x71\x27\x95\x4b\x8b\x73\ \xb7\x50\x1e\x90\x4b\xb1\x28\x4f\x90\x6b\x91\x17\x18\xcf\xce\x85\ \x06\x47\xcd\x26\xc3\x93\x4b\x39\xb8\xd1\x98\xab\x0c\x36\xe6\x00\ \x87\xef\xfe\xea\x84\x03\xa0\xa8\x63\x62\xbe\x39\xa0\x38\x15\x8d\ \xc7\x03\x03\x84\x2f\x3e\x06\x79\x56\x08\xd6\x9b\x4b\x0a\x56\xb4\ \xa1\xda\xe5\x5c\x8b\xbd\x0f\xc0\x93\xd5\xb0\xac\xcb\x63\xab\x04\ \xb3\x8d\xfe\x72\xad\x6f\x20\x86\x3c\x23\x50\x4d\xcf\x0a\x24\x08\ \xb3\x6a\x23\xf2\xcf\xca\xc2\x1e\x40\xc4\x35\x0c\x32\xa4\xad\x8c\ \x07\x72\x3b\x82\x1f\x35\xac\x06\x43\xa7\x12\x5f\x5c\xce\x5d\x49\ \xed\xdd\x89\x5d\x49\x93\x4a\x2e\x5f\x83\x8b\x10\xf8\xd2\xb6\xdd\ \x76\x2a\x61\xab\xb2\x02\x15\xef\x86\x23\xde\xe0\xd4\x00\xea\x00\ \xdc\x17\x3e\xf8\xb8\x27\x63\x25\xa7\xf9\xf8\x55\xc6\x67\x95\xe2\ \x7c\x29\xe8\x90\x41\x06\x6d\x6c\x3a\xf9\x64\x97\x71\xb5\x6c\x4b\ \x81\x4e\xd6\x06\x73\xfc\x62\x66\xe1\x03\x63\xd7\x0a\x03\xfc\x1e\ \xd4\x1f\x21\x9c\x89\x0e\xcc\x22\xdd\xb2\xfe\xa6\x05\x2c\xd1\x3d\ \xa4\x40\x44\x83\x99\xb6\xfc\xe0\xad\x3c\xcd\xce\x76\x77\x28\x08\ \x3f\xd8\x71\x04\x26\xe4\x44\x27\x3b\x49\xca\xdb\x94\x22\x87\xa3\ \xec\x44\x29\xc6\x03\x4a\xbc\xac\xb2\xc2\x5c\x88\xcd\x6d\xa9\x58\ \x4e\xa3\x1c\x95\x29\x49\x58\xcf\x61\x27\xb0\xc5\x30\xf8\xe0\x0b\ \x5f\x0c\x23\x00\xc3\xe0\x21\x5d\x02\xe0\x89\xc1\xb5\x21\x06\x76\ \x70\xc7\x79\xb4\x10\x81\x35\x24\x2e\x64\x8d\x93\x82\x24\x82\x20\ \x83\x20\x38\x43\x0d\x27\xdb\x20\x3b\xd4\xf0\x00\xcc\xa9\x61\x5a\ \xfe\x83\x9f\x17\x9d\xf1\x3e\xfa\x64\xc4\x26\xfb\x8b\xd9\xc9\x8a\ \x46\xc0\x64\x21\xc8\x24\x74\x30\x09\xb5\xa8\x35\x90\xca\x24\x24\ \x10\x70\x6a\xd0\x9c\x0a\x98\x09\x8f\x64\x62\x76\x28\x28\xc3\x42\ \xf0\x60\xb2\x9b\x80\xe8\x6b\x5a\x3b\x4a\xbc\x38\x60\x36\x18\x0d\ \x4c\x29\x91\xea\x49\x0c\x53\xc1\xc8\x82\x11\x47\x52\xd0\x2b\x91\ \xf3\x2e\x75\x0f\xac\x54\xcf\x86\x3f\x3a\x81\x22\xca\xf1\x8e\x3a\ \xd4\xa1\x1c\x75\x00\x62\x10\xe7\xc2\x87\x00\x70\x80\x07\x9f\x50\ \x0b\x18\xd6\x30\x03\xb9\x68\x81\x48\x4e\x7c\x62\xe3\x24\x11\x09\ \x38\x48\x49\x06\xbb\x53\x83\x0c\x9c\xfe\x31\x4c\x67\xd0\x21\x12\ \xd7\xe8\x22\xe6\x96\x15\x89\x48\x68\xe3\x03\x84\xc9\xc8\x07\x30\ \xa2\x39\x16\x7c\x48\x4b\x95\x79\xe3\xb4\x0e\x24\x47\x6e\xc6\x26\ \x40\x89\x38\x00\x83\x6c\xa6\xa5\x38\x28\x8d\x42\xb3\x3b\x82\x9f\ \x6a\xc2\x8f\x0f\x44\xe6\x88\x60\x90\x97\xd6\xc0\x76\x2f\x7c\x0d\ \x07\x52\xeb\x62\xd1\xbe\x16\x70\x22\xa5\x10\xe5\x79\x43\xf1\x27\ \x0c\x97\x22\x2f\x49\x78\xf2\x93\xdc\x39\x81\x1f\x0a\x50\x80\x0b\ \xac\xe3\x02\x05\xa8\x43\x00\x78\xf8\x3d\x3e\x84\xc0\x17\x5e\xe0\ \xc3\x1a\x52\x25\x4b\x10\x78\xe1\x63\x5f\xf0\x40\xc7\x72\x99\x9e\ \xf4\x45\x40\x8a\xce\x60\x05\x1d\x9c\x21\x4c\x56\xf0\xf2\x1a\x11\ \x40\x44\x33\x97\x35\x46\x67\x44\x82\x16\x91\x50\xc3\x33\xc3\x20\ \x4d\x26\x7c\x60\x32\x71\xf0\x0d\x7e\xcc\xd8\x46\x66\x25\xe4\x80\ \x38\xeb\xe6\xb4\x92\x05\x35\xa1\x2d\x88\x0e\x2b\x60\x4c\x46\x0e\ \x62\x27\x91\x44\x6d\x90\x35\xf9\x9f\x11\x0f\x99\x22\x7f\x26\x0a\ \x5f\xf5\xbc\x27\x72\xec\xf9\xa2\x7f\x7a\x42\x0e\x72\xf0\x89\x50\ \x60\x48\x94\x7a\x21\x47\x11\x07\x05\xd2\x09\x0a\xb1\x81\x77\x30\ \xb4\x14\xa5\x78\x28\x2a\x7d\xc8\xfe\xbd\x00\x9c\x67\x2e\x5e\x28\ \x95\x16\x3c\xe0\xd1\xf2\x3d\x61\x0d\x23\x75\x92\x14\x22\x60\xd2\ \x08\xe4\x45\x1b\xce\x78\xc2\x62\x6d\xaa\xd8\x2a\x3a\x63\x0c\xcb\ \xa4\xc5\x4d\x73\xca\x53\x35\x38\xa1\x4b\x61\x60\x42\x4e\xd3\x68\ \x93\x64\x25\x10\xa9\xdc\x24\x9d\x80\xe4\xf8\x90\x4c\xe0\x91\x73\ \x61\xc0\x43\x20\xec\x84\x82\x92\x5c\x55\x0d\x39\xdd\xdf\x11\xd7\ \xb5\xae\xa5\x9c\xe8\x45\x95\xc2\xd7\xbc\x78\x72\x0b\xb2\xbd\x08\ \x6e\x02\x2b\x8e\x4f\x80\x92\x42\xa7\x54\x4a\x5e\x76\x83\x2b\x28\ \x2b\xf1\xbd\x0d\x30\xf4\x02\xd7\x85\xe8\xf6\x16\x2a\x51\x8c\xce\ \xa5\x96\x6b\xa0\x06\xe2\x3c\x90\x8c\x08\xe0\x52\x71\x76\x91\xc2\ \x13\x22\x2b\x05\x5a\xc0\x21\x12\x11\x48\x1f\x7b\x23\x60\x85\x6b\ \x3c\x21\x08\x91\x18\x66\x24\xac\xa0\x8a\x9b\xde\x44\x0d\x63\x70\ \x06\x13\xba\x44\x85\x0e\x52\xa1\x30\xd2\xbc\xe2\x11\xd4\xe0\x19\ \xa5\x72\x53\x59\xa9\x85\xe3\xfc\x92\xa5\xa0\x6b\x1d\x01\x69\x47\ \xb0\x96\xb5\xfe\x92\x1b\x21\xb4\x4f\x06\x4c\x08\x4f\x0c\xd6\xf1\ \x89\x4f\x10\xea\x50\x27\x76\xdb\x8b\xfe\x65\x95\x79\xb1\x8b\x44\ \x8d\xc4\x94\xda\xda\xd6\x13\xfe\xa0\xa0\x75\x01\xff\xa2\x4a\x11\ \x94\x61\xd0\xe8\x96\xc5\x10\x7c\xa0\x4b\x25\xca\x71\x5d\xec\x96\ \x92\x0c\x05\xa0\x18\x0f\xce\x11\x80\x5a\x2e\xb1\xbc\x1f\xf3\x80\ \x61\xcd\xeb\x24\xbc\x44\x20\x11\x7b\xf1\x6e\x04\x9e\x20\x06\x26\ \x7a\x40\x0a\x4d\xa6\xc5\x7c\xad\x40\x0b\x0f\x58\xc1\x0a\x91\x80\ \x41\x24\x54\xd1\x02\x6a\x8c\xc1\x0e\x60\x90\xc7\x13\xc6\x20\x1e\ \x22\x7c\x60\x0c\x02\x6e\x03\x81\x7d\xc3\x04\x05\x6b\x33\x59\xa2\ \x53\x96\x51\x9f\xc5\x3e\xcb\xfc\x39\x59\xdc\xf2\x4c\x19\x54\x36\ \x48\x5c\x3d\x80\x68\x95\xd1\x22\x3b\x40\x6c\x87\x18\x90\xd8\xd2\ \x85\x72\x0e\x26\x5f\xa4\x2f\x7d\xb9\xd2\x5e\xc2\xe5\xc0\xc1\x68\ \xc0\x8b\xe6\x15\xc7\xb7\x99\xaa\x0a\x1c\x7a\x1c\xa4\x03\x00\x99\ \x2e\x75\x58\x28\x43\xb7\x0b\x6b\x27\x14\xc0\x09\x3c\x48\x86\xe1\ \xb4\x00\x82\x08\x78\x00\x71\x20\x98\x46\x79\x73\xa9\x01\x49\x24\ \x62\xa5\xce\x80\x6f\xe3\x9e\x70\x8e\xf5\x22\x0e\x71\xaa\x90\xc2\ \x1b\xb4\xf0\x86\x37\x50\x43\x1a\x30\x50\x06\x0c\xa8\xd1\x02\x68\ \xbc\x53\x0c\x62\x30\x70\x0c\xc0\x30\x06\x27\x18\x11\x27\x40\x8d\ \xc3\x6d\xe7\x28\x3a\x04\xfe\x1e\x90\x0e\xa6\x6b\xb0\x83\xef\x50\ \xa0\x85\xac\x4c\x23\x0f\x20\x48\xee\x76\xc7\x04\x2a\xc4\xe0\x88\ \xb7\x20\x71\x4f\x12\x79\x1c\x4d\x26\x2f\xc7\x45\x40\xb8\x31\xf2\ \xf5\xaf\xea\xd4\x33\x6d\xca\x83\xdb\x3d\xb2\x42\x03\x1e\xaf\x3a\ \x2c\x09\x7d\xc7\x06\xe8\xe2\x8b\x0d\x0c\x03\xd6\xb1\x2e\xe5\x2d\ \x1e\xea\x8e\x00\xbc\xea\x70\x1e\x68\x62\x93\xa9\xd1\xc4\x5c\xe6\ \x45\x4a\xe9\x66\xc5\x62\x15\x1b\x01\x68\x3c\xd9\xbb\xce\xfe\x98\ \xb4\xdf\xd0\x02\x69\x28\xe3\xdb\x30\xd8\x83\x34\xec\x40\x04\x3b\ \xc8\x43\x1e\xe2\x11\xb7\x18\x3c\xab\xe7\x0e\xaa\x21\xb4\x47\xf0\ \x1f\xae\x98\xd5\x6e\xcf\x38\xcb\x33\x6d\x34\x93\xa1\x9b\x45\xdb\ \x07\xb1\xa0\x43\xdc\x6a\xdf\xee\x3e\x20\xe2\x11\x17\xaa\x50\x97\ \xdc\x89\x5a\xc7\xa6\x48\xe1\x40\x65\x0d\x55\x29\xc2\xc4\x39\x9d\ \x36\x85\xe7\x48\xe1\xf7\xf2\x54\xc5\x2d\x9e\xb7\x78\x94\xa3\x1c\ \x1b\x00\xfc\x06\x80\xcc\x87\x61\x14\xbe\x94\x1f\x4f\xc6\x79\xd6\ \x40\x58\x10\x78\x8c\x2e\x88\x7b\x22\x5e\x12\x61\x84\x2b\xc6\x61\ \x0c\x57\x64\x02\xb3\x9f\xdc\x64\x67\xeb\x9c\xda\x6f\xd8\x83\xcf\ \xe1\x0c\x8d\x2b\x80\xfe\xa1\x0d\xeb\xb8\x35\x61\xd6\x31\xee\x75\ \x50\x01\x0c\x1d\x6c\xba\x4d\x14\x93\x6e\x08\x3b\x4b\x4d\x6f\x72\ \x96\x36\x0f\x68\xa6\xd8\xd8\x0a\x05\xe2\x24\x02\xb2\x10\x2d\x03\ \x2e\xc6\xa1\xdf\xeb\x40\xfe\xa5\xed\x70\x8b\xa3\x24\x45\xed\x5a\ \x93\x57\x8b\x84\x83\x70\xe1\x54\x07\xe1\xc0\xdd\x14\xa7\x68\x80\ \x63\xbd\xef\xfd\x04\xf1\x78\x28\x27\x4e\x09\x85\x77\x0c\x7e\x03\ \xa5\x1c\x86\xc4\xdc\x01\x85\xc3\x7e\xc1\x0b\x8b\x6f\xbc\xb3\x1f\ \x3f\x65\xf6\x48\xa2\x64\x35\xb1\x49\x4f\xeb\x0c\x86\x48\x78\x0c\ \xe7\x88\xf3\xbc\x9d\x93\x06\x31\x00\x83\x11\x11\x03\x79\x50\x3d\ \x03\x4b\x0b\x1e\x30\xb0\x37\xeb\x1d\xd8\xfb\x80\x9d\x4a\xb7\x20\ \xb8\x86\x0a\xf4\x8c\x9d\xc1\xbd\x9d\x51\x2d\x03\xca\x07\xcf\x88\ \x8d\x64\xb9\x96\x2a\x49\x90\xd5\x40\x01\x56\xf8\xa5\x0f\xf8\x00\ \x2a\x38\x3e\xe4\x2b\xbb\x77\x61\xbe\xe7\x1b\x9b\x12\x31\x21\xb0\ \x99\x3e\xa8\x40\x38\x83\xe9\x14\xaa\xb0\x0e\xa8\xd8\x3e\xe8\xda\ \x3b\xb2\x38\x01\x73\xf8\x00\x22\x5b\x28\xf2\x23\xa5\x58\x83\x87\ \x02\x70\x87\x88\x72\xb5\x2f\x80\x3f\xf9\xbb\xb9\x2f\x0b\x19\x08\ \x48\x04\x7c\x13\xfe\x02\xce\xea\x20\x10\x01\xb0\xcd\x03\xc0\x69\ \x9b\xb6\xcf\x6b\x81\xd0\x03\x83\x7e\x73\x82\x31\x6c\x0b\x05\xb4\ \x83\x32\x7c\x3d\xcf\x8a\x01\x69\xd2\x06\x0a\x54\x93\x65\x61\x08\ \xdc\x7b\x93\x34\x89\xb0\xd4\xea\xc0\x0f\x4c\x88\x85\x90\x88\x4a\ \x48\x84\x94\x72\x8f\x9b\x08\x03\x7f\x2b\xb1\x4f\x28\xbb\x5b\x58\ \xbe\xa0\x78\xbe\x12\x11\x2e\x13\x92\x97\x84\xe3\x41\x1c\x89\x8a\ \xa9\x08\x01\x7c\x91\x0e\x1a\x08\x80\xee\xdb\x3b\x85\x5a\xa8\x21\ \x1c\xc2\x4e\xe4\x04\x59\x2b\x00\x28\x20\xb9\x64\xa8\x0b\x2f\x80\ \x15\x0f\xf0\xb5\xc4\x19\x2c\xfa\xeb\x0b\xfb\x53\x30\x60\x02\xb0\ \x31\x00\x83\xb1\x23\x30\x68\x08\xaf\x2e\xfc\xbc\xcf\x43\x06\x6a\ \xb8\x02\x31\x50\x95\x36\xa0\x34\xf2\x58\x87\x25\x01\x83\xf0\xa8\ \x33\x26\x78\xac\x0a\xbc\x06\xa5\xda\x0c\x0c\x7c\x13\xd3\xf1\x40\ \x3a\xe8\xc0\x07\x5a\x2a\x88\x48\x84\x8e\xa8\x04\x0c\x30\x02\xf6\ \x99\xa6\x62\x3c\x22\x42\xb1\x03\xa0\x30\x9e\xb5\x1b\x38\xb2\x91\ \xbe\xe8\x93\xbe\xb8\xe3\x94\xad\xc8\x31\xe1\xc8\x17\x55\xfb\x41\ \x20\x34\x82\x3a\x80\x83\x61\x78\x07\x28\x80\x87\x7d\x4c\x42\x78\ \x28\x07\x28\xfe\x48\x86\x64\x90\xa8\xef\xa9\x8b\x5f\x83\xbc\x9b\ \x83\x15\xf4\xa1\x05\x49\xb8\x06\x13\x14\x26\x62\x52\x2f\x26\x78\ \x8b\x31\xa0\x06\x9d\xfb\x42\x30\xec\xc5\xa0\x53\x06\x30\x40\x92\ \x75\x58\x95\x62\x24\x82\x18\xc8\x09\x00\x0b\x02\x0a\xcc\x1f\x39\ \x7a\x16\xdc\x23\x10\x08\x3b\x1d\xcf\xc8\x07\xd1\xa0\xc6\x44\x58\ \x1a\x8f\x70\xc8\x2b\xa2\x02\xd5\x4b\xbe\x12\x4b\x44\x81\x43\x0e\ \x48\x3a\x8e\x14\x99\x97\x74\x4c\x14\x76\xd4\x11\x4a\x94\x1b\x4e\ \xa2\xb8\x79\x1c\x0b\x88\x49\x86\x0d\x58\x03\xf3\x13\x3c\xc0\x03\ \x22\x8a\xa2\x28\xbf\xba\x39\x9c\x9b\xbf\x83\x84\x12\x5e\x8a\x04\ \x56\xb8\x06\x2b\x8a\x39\xf7\xd2\x32\xa5\x43\xc6\x18\x80\x81\x69\ \xf3\x80\x37\xf0\x80\x16\x60\x4b\x6a\xc8\xc8\x2b\xc0\xb6\x02\x5c\ \x15\xb6\x78\xb3\x31\xb0\xcb\x61\x2a\xc9\xa3\x82\x1f\x86\x40\x04\ \x44\x78\x93\x69\x5c\xc9\x66\x49\x34\x66\x11\x9a\xd8\x91\x02\x8b\ \xc0\x9c\x40\x39\xbe\xd3\x63\x41\x4b\x03\xb8\xe5\xcb\xa7\xa2\x50\ \xc4\x19\x94\x17\xe3\xa2\xc1\xb4\x69\xa1\xb4\xe9\x94\x86\x2b\x28\ \xa5\x7c\x98\x43\xa0\xca\x55\xfa\x02\xf3\x6b\xc2\xd1\x04\x2c\xab\ \xfc\xbf\xfe\x8f\x3a\x9c\xc3\x49\xc8\xba\x58\x03\xf8\x5a\xac\x61\ \xa2\xa2\x27\x90\x34\x35\x88\x2c\xf5\x92\x86\x27\xb0\x82\x08\x28\ \x3d\x3b\x80\x06\x55\xa4\x86\x3d\x30\x33\x69\x20\xce\x6b\xc3\x36\ \x68\x90\x07\xb9\x9c\xcb\xb4\x40\x3d\x79\x10\x03\xbb\x24\xc9\x92\ \x3c\x49\xf9\xa1\x83\xbe\xd4\x00\xbf\xf4\x40\x04\x12\x1a\x88\xa0\ \x46\x6c\xcc\x04\x0d\xc8\x84\x6b\xc0\x37\x9b\xe8\x37\x7f\x23\xbb\ \x16\x74\xcc\x78\x71\x11\x43\xb9\xa4\x05\x28\x21\xe3\x9a\x97\xb3\ \x69\x24\xa1\x08\xb5\x1c\xd1\xc4\x55\x93\xab\xba\xf8\x1e\x49\xd8\ \x00\x49\xa0\x2e\xfe\x24\xc8\xef\x59\x83\x69\x78\xbc\x55\xfc\xbf\ \x9b\x93\x0a\xf4\x5a\x2f\x29\xa8\x84\x27\x60\x85\x27\xf8\x4a\xa7\ \x53\x03\x31\xd8\xb2\x31\x90\x87\x3d\xf8\x18\x6a\x80\x06\x18\x48\ \x4b\x0f\x08\xce\x9e\x83\x86\x03\x4c\xce\xde\x49\x15\x8f\x5c\xce\ \xd3\x2b\x43\xe7\xbc\xcb\x92\x0c\x82\x65\x51\xb7\x07\xeb\xcb\x18\ \xb5\x3a\x41\x4b\xad\x85\x98\xb0\xd2\x59\x08\xf8\x09\xc9\xe5\x23\ \x94\x4a\x33\x44\xe5\x1b\x04\x12\x11\x2e\xb4\x42\x2b\x9f\x60\x97\ \x9f\x64\x31\x79\x69\xa1\x48\x91\x03\x16\xc1\x91\x1a\xf2\xcc\x8b\ \x43\xfe\x0f\x3e\x90\x04\x5f\x58\x03\xc1\xe3\x83\x0d\x20\x92\xa7\ \x04\x81\x8c\x6a\xbf\x2f\xe8\xa8\x8f\xc2\xca\xc3\xd1\x82\x04\x45\ \xaf\xc7\x53\x2c\x0d\x90\x2c\x39\x1b\x83\x6f\xa3\x45\x31\xd8\x03\ \x0f\x85\x81\x2b\xd0\x39\x0f\xe8\xc5\x9e\x23\xc0\x10\xf1\x37\x13\ \x3d\xd1\xb4\xf8\x04\x27\x70\x4e\x67\x10\x03\xbc\x64\xd1\x03\xc2\ \x9c\xd2\x7a\x16\x19\x8d\x30\x86\x78\x88\x0e\x4c\x96\x82\xb8\x51\ \xc9\xb9\xc2\x30\x50\xc1\x75\x11\x91\x42\x19\xc7\x71\x3c\x14\x13\ \x8b\xbe\xe7\x71\x0e\x39\x40\x0a\x9f\x24\x03\x83\xf9\x2a\x1a\x90\ \xcc\xe7\x00\x9c\xfb\xec\xb1\x13\x38\x04\x27\xe1\x03\xc6\xf1\xd2\ \xc3\xe2\x03\xc3\x29\x48\xd5\x3c\x50\x32\x35\x2f\x90\xf9\x32\xc4\ \x61\x2f\xf5\x7a\x02\x6c\x33\x3a\x68\x50\x06\x65\x10\x56\x64\xa0\ \xb6\xb6\xa4\x06\x2b\x80\x01\xe4\xe4\x48\x3e\xed\x53\x23\x4a\x51\ \x68\x80\x86\xe8\x2c\xd4\x78\xa3\x96\x94\x54\x2d\x44\x5d\xd4\x3f\ \xf3\x0f\x81\x68\xa7\xf2\xf4\x51\x44\x74\x8e\x4c\x65\xcf\x54\xe0\ \xa4\x7b\x30\x1b\x26\xbd\x24\x48\x82\x17\xb8\xb9\xc1\xb8\x2b\x02\ \x47\x22\x83\x73\x88\xd2\xb0\x28\x04\xc4\x5a\x83\xc5\x4b\x0f\xf9\ \xfe\xe3\xbc\x5a\x9a\x15\x31\xc5\xb9\x30\xd3\xcd\x8c\x1c\xd6\x61\ \x15\x83\x6c\xbb\x82\x2b\x30\xce\x84\x85\xcb\x03\x64\xc0\x67\x55\ \x8b\x75\x78\x33\xe7\x1c\xd4\xbb\x2c\xa6\x37\x54\x20\xa0\xc1\x26\ \x38\xda\x58\x38\xfa\xc0\x42\x2b\x16\xff\x41\xc1\x7e\x33\xc4\x9c\ \x0c\xb8\x77\x39\x3b\x50\x65\x91\xe5\x99\xb1\xa0\x10\xa8\x48\x81\ \x8e\x7d\x61\x91\x86\x73\x11\x55\x8d\x2e\x56\x45\x2c\x10\x18\x50\ \xab\xac\x55\x5b\x4d\xcd\x29\x73\xb6\x68\x93\x02\xfe\xa2\x86\x08\ \xd8\x83\x3d\x08\xce\x19\x48\x58\x6c\x53\x86\x7b\x38\x58\x68\xb8\ \x07\xa3\x73\xce\x61\x65\x56\x11\x83\x58\xc4\x88\x01\x1e\x78\xc0\ \xd0\x0a\xad\xdb\xf2\x22\x6e\x22\x93\x94\x51\x19\x6e\x72\x23\xca\ \x29\xa4\xd7\x2b\xd1\xc6\x74\x4c\x1a\x33\x14\xb7\xe1\x24\xe6\x69\ \x1b\xe6\x2a\x91\xe5\x38\x11\xb5\xc2\x0a\xb8\x3b\x00\x9b\x85\x2b\ \x9c\x1d\xcd\x27\xe2\x03\xc0\xfa\xd2\x02\x15\xb6\xac\x84\x42\x27\ \xf9\x98\x2f\x1b\xda\xc5\xb2\x02\xa4\x4d\x56\xb8\x64\x58\x18\x70\ \x5a\x79\x70\xda\x03\x54\x97\xd7\x83\xb3\x02\x2c\xa2\x13\x2d\xc6\ \x34\x1c\xb7\x3b\xf3\x0d\xa0\xea\x33\x39\xba\x8f\xcd\x59\x0c\xfe\ \x6c\x12\x5d\x83\x38\x08\x9e\x72\x82\x5b\x5b\x17\x4b\xcb\xc9\x76\ \x39\x94\x42\x19\x0a\xb2\x8a\x94\x14\x8a\xc1\x81\x69\x8e\xb1\x91\ \x38\x84\x7b\xab\x7a\xfd\x87\xfc\xa4\x8b\xd2\x7c\x92\x01\x65\xb9\ \x82\x5c\x03\x5a\x50\x4d\xc2\x4d\x5e\xf4\x48\x1f\x67\xf3\x50\x33\ \xb3\x02\x69\x80\x4b\x18\xa0\x5e\xea\x8d\x5c\x11\x4d\x05\x79\x58\ \xdd\x34\xe4\xde\x61\x84\xd8\xac\x75\x4e\x61\x85\x81\x20\xb8\xbc\ \xdb\x52\x20\xa5\xc2\x1c\x2a\x89\x2a\xc5\x80\x0f\xd3\x4d\x9d\x62\ \x61\x81\x42\x52\x41\xce\x3d\x21\x76\x21\xb1\x44\xac\xdd\x43\x19\ \x84\xfd\x85\x17\xe3\xa0\xb1\x77\x61\x0e\x77\x81\x97\x7c\x82\x52\ \xdf\x3d\x01\xc4\x5a\xa5\x49\xa4\xd5\xc7\x0b\x53\xf4\xb8\xd5\x7d\ \xfd\x3f\x55\x28\x5a\xea\xfd\xd5\x6c\x63\x5a\xa8\x15\x83\xa8\x95\ \x87\x54\x18\x83\x54\xe8\x9d\x14\x35\xba\x12\x7d\x56\x89\x05\x83\ \x83\x05\x3a\x69\x08\x82\x41\x75\x86\xbc\x54\xa0\xaf\xa5\x12\xc8\ \x58\x0c\xfb\xe1\x56\x06\x82\x9f\xc6\xd0\xad\x12\x1a\x1b\xa5\x70\ \x59\xe3\x69\x17\x17\xbc\x24\x48\x21\xb1\x4c\x6b\x0e\x49\x21\x03\ \x79\xd0\xdb\x83\xe2\x5b\xc4\x7a\xbf\x57\x59\xde\x2f\x68\xfe\x5e\ \x5c\x1a\xd3\x27\xf9\xbf\xe7\x3d\xce\x82\xbd\x07\x9f\xf3\x39\x0c\ \x0e\x5f\x69\x15\x83\x10\x25\x56\xed\x75\xd6\xb9\x3c\xa2\x14\x15\ \x83\x34\xb3\x2f\xfb\xaa\xc0\x42\x0d\x82\xa3\xaa\x12\xc6\x50\x99\ \x5f\x31\x34\xb3\x75\x99\x14\xf4\xc8\x4a\xdb\xad\xaf\x89\xbe\x19\ \x1c\xae\x75\xd5\xdf\x14\xba\x87\x4a\xbc\x07\x4f\xe0\x5f\xe7\x68\ \xdb\x5b\xa0\x57\xdf\xfd\x87\x7b\x15\xcd\x27\x02\xac\x10\x78\x42\ \xbb\x10\xac\x26\x26\x5c\x59\x69\xb2\x3a\x45\x06\x65\x2d\xd8\x4c\ \x2e\x58\x6c\xe3\xe4\x39\xa5\x5e\x83\xe5\x48\x88\xe5\xdc\xe4\xfc\ \x36\x69\x25\xa6\x15\x66\x51\x38\xa4\x03\xcc\x79\x63\x95\xb9\x8c\ \x19\xbe\x9f\x58\x74\x82\x9b\xac\xb4\xe5\xfb\x1a\xdd\x15\x8e\x7b\ \x70\x44\x4f\xd8\xad\x47\x82\xdd\x05\x78\x8a\x10\x18\x0e\x76\xdd\ \x5f\x1f\xee\xdd\x7a\xe5\x5b\x3e\x98\x06\xe1\xdd\xd7\xb7\x23\x12\ \x54\x74\xa2\xc3\xf5\x35\x29\x76\x45\x5c\x55\x45\xc1\xf2\x00\xe1\ \x24\xce\xea\x5d\x5a\x6e\x66\x58\x86\xed\xb9\x0d\x4e\x95\xcc\x75\ \x8b\xd6\xd3\x2d\x8a\x95\x56\x65\x38\xe5\xf3\xa5\x83\x35\x8e\x43\ \x2a\xb1\x09\xb3\xc5\x15\x3a\x8a\xe5\xdb\xea\xa9\x7e\xfe\x13\x91\ \x11\xa1\xcc\x74\xdc\x89\xa8\x2d\x1e\x13\x02\xa8\x48\xf1\x97\x84\ \x91\xd9\x48\xb9\x34\x14\x38\xe2\x4f\xc2\x59\x29\x98\x06\xef\x09\ \x19\x9d\x9d\x86\x52\x69\xbc\x69\x2e\x48\x2f\x93\xe4\xab\xa4\x64\ \xb4\xf4\x42\xb5\x3c\xda\x6f\x9e\x01\xa5\x05\xe9\x3d\xb8\x02\x91\ \x7e\x5c\x66\xed\x1d\x3b\xf0\xc8\x30\x76\x8c\xaf\xe9\x9d\x12\x1e\ \xd6\xea\x7d\x82\x61\xba\x2c\x2f\x5a\x96\x35\x3e\x49\x5c\x81\x1f\ \xd2\x5a\x37\xd1\x31\x5f\x6d\xd0\xbf\x70\xd4\x67\x3d\xce\x5e\x5d\ \x6e\x11\x84\x93\xdc\x4e\x9b\xbe\x7d\x31\x2b\x4f\x28\x98\x84\x51\ \x9e\xe7\x01\x83\x63\x8e\x52\xe0\x1d\xcd\xa7\x24\xc8\x27\xd1\x59\ \x47\xf6\x18\x29\x68\xcd\x9b\x5b\x39\xa0\xbd\xe8\xac\x54\x05\x00\ \x54\x45\x64\xf8\xe8\x10\xf8\x68\xb3\xfe\xe8\xb5\x56\xda\x6b\xf3\ \x39\xc9\xfd\x36\x75\xd9\xde\x62\x84\xa5\xd3\x33\x22\x24\xa1\x02\ \x79\xf8\xe2\xa9\x85\x01\x69\x60\x26\xfc\x1a\xa3\xf3\xc5\xd8\xf9\ \xb9\x1f\xfa\x89\x1f\x35\x2a\xad\x16\xbe\x67\x4a\x13\x91\x17\x3c\ \xa4\xad\x92\xbe\xa6\x9d\x3e\x65\xb8\xc1\x7c\x69\xa4\xe2\x28\x98\ \xac\x40\x06\x2f\xf0\x80\x19\x10\x66\x56\x40\xe4\xfe\xdf\xb5\x8b\ \xaa\x64\x66\xd6\x5c\xe2\x94\x3b\xb9\x83\x3c\xdc\x5e\x0b\xeb\x6a\ \xee\xc2\x9c\xb3\x53\xb6\x46\x06\xb3\xa6\x6d\xb5\xbe\x82\x61\x95\ \xda\x6f\xa3\x5c\xa3\xe3\x48\xad\x5d\x07\xa2\xf3\x37\x1e\x10\x8f\ \xd5\x53\x06\xb8\x24\x56\xf1\xf5\xeb\x63\x62\xd1\x65\x39\x20\x39\ \x6c\x63\x78\xc6\x69\xf8\x61\xb7\x16\xc6\xbc\xed\x2d\x31\xe6\xeb\ \xe5\x19\x94\x5c\xe9\x3b\x6a\xe9\xf3\xee\x74\x84\x9b\x4c\xe1\xec\ \x89\x5e\x83\x84\xb6\xa1\x13\x80\x00\x57\x95\x8a\xd2\xd4\x82\x9d\ \x7d\x3f\x0f\xa0\x55\x69\xf6\xd7\x67\xd3\xca\x82\xfc\xd7\x8d\xf6\ \x42\x55\x5c\xeb\xd9\x9e\x6d\xb6\x56\x5a\x6c\xfb\xb6\xc9\xcd\x6d\ \x61\xf5\x60\xa3\xa3\xb4\x63\x8c\x01\x02\x14\x8f\xa2\x93\x86\x19\ \x08\xba\x65\x55\x86\x27\x88\x04\x09\x3f\xa6\x6b\x58\x63\xd3\x7a\ \x19\xc5\x10\xd9\x2b\x54\xdf\x81\xf0\xb3\x58\xec\xa0\xd5\x5d\xdd\ \xdd\xea\x09\x13\xe2\xad\x7e\x1e\xd6\x14\xd9\x60\xe4\xe8\x67\xea\ \xd3\x97\x16\xe1\x14\xb7\x0b\x6d\x45\xc6\xea\x05\x3e\x1c\x2f\xb8\ \x82\x57\xf1\x82\x08\x58\x60\xf9\xee\xd7\xc2\x45\xac\x9c\x13\x72\ \xb5\x34\xda\x3d\x98\x01\xfe\xb6\xed\x4f\xde\xfe\xe4\xb7\x9e\x5a\ \xdc\x96\x87\xdb\x2e\x40\x03\x97\x07\x18\xe0\xc8\xa4\xdb\x83\x8c\ \x74\x6b\x08\x3d\xa6\x0a\xb7\xc0\x35\x56\x03\x5d\x89\xdf\xfe\x61\ \x5f\xc5\x50\x96\x32\x4f\x96\xdb\xfa\x8d\x9c\xe0\x81\x5b\xcb\xe7\ \xc7\xbe\x63\x31\x40\x38\x18\x78\xf1\x47\x51\xc7\x39\x8f\x3b\xa8\ \x98\x97\xa4\x34\xe0\x56\x45\x60\x9d\x45\x45\xa9\x48\x1c\x2d\x90\ \x02\x8b\x06\x99\xd4\x44\xe0\xce\x43\x4b\xe0\xa4\x06\x6a\x38\x72\ \xb6\x36\x6e\xea\x9d\x5e\x83\xbd\x07\xf1\x55\x06\xbd\x86\x72\x1e\ \x28\xe3\xde\xe9\xb9\x10\x01\x54\x65\xd8\x36\x36\xbb\x82\x98\x1e\ \x26\xfb\xca\xcb\x54\x7e\x1f\x0d\xf7\x1f\x31\x87\x0c\x40\x8b\x1f\ \xa7\xf3\x0d\x11\x27\x51\x71\xc4\xee\x75\xc1\xee\xec\x8d\x73\x4e\ \xb3\x73\xf0\x8e\x3e\x78\xe5\x00\x56\x30\x6f\xeb\xa1\xf1\x20\x4f\ \xb9\x5d\x8b\xe6\x5e\xdb\xd5\x5a\x55\x45\x8f\x7a\xbc\x5c\x42\x74\ \xb5\x54\x45\x0f\x65\xf4\x8f\x26\xe9\xbe\x56\x58\xb7\x7e\x69\x0b\ \x1e\xd6\x84\x85\x86\x63\x14\x83\x5f\x04\x03\x69\xd8\x03\x68\x58\ \xf3\x12\x96\x86\x4f\x6f\x01\x2b\x60\xd3\xc7\x3a\xdf\xe5\x2e\x24\ \x31\x6f\xa7\x5e\x09\xbe\x78\x26\xad\x93\xfe\x81\x3d\x35\x8c\x75\ \x5b\xee\x09\x5b\xee\x65\xee\x16\x0e\xca\x9e\xbe\x4e\x33\xa1\x75\ \xbc\x87\x5f\xc7\x9b\x24\xae\xe6\xba\xd0\x59\xff\x8b\x66\x29\x78\ \x4d\x8b\xae\xd5\xd7\x5c\xde\x83\xc7\x39\x69\x6b\x81\xb5\x84\xf6\ \xa3\x95\x5e\x92\x4e\xd8\x9e\x7b\x69\xe2\x4c\x58\x2c\x76\x70\x71\ \x7f\xb3\x3d\x80\x01\xbd\x76\x70\x02\x1c\xb7\x6e\xaf\x48\x55\xd8\ \x03\xfc\xba\xac\xcb\xb3\x4b\x6d\xb8\x2c\xf2\x35\xbe\xc0\x50\xc1\ \x9d\xba\xc9\x98\xc1\x95\xf8\x85\x9f\x57\x0f\xf1\x5b\x93\x6b\xe6\ \x73\x82\xc7\x1c\x91\x3b\x66\xdd\x7e\x76\x91\xea\xd3\xb1\xa2\xd0\ \x89\x17\x91\x07\xd0\x46\x64\x45\x2e\x9f\xa7\xe4\x59\xfb\x3e\x9c\ \x35\x08\x01\xff\x83\x60\xc5\x5a\x03\x8a\x9e\xe4\xf9\xbb\xef\xce\ \x2b\xb3\x45\x4f\xd6\x6b\x93\x06\x2b\xd8\xf8\x6d\xfe\x64\x6a\x57\ \x58\x9f\x83\x01\x07\xa7\xf2\x32\x2c\x6e\x61\x9d\x01\x9e\xa3\xc5\ \x54\x38\xd8\x2b\xd8\x36\x55\x38\x33\xcb\xfa\x2f\xaf\xbd\xcb\x31\ \x88\xc0\x9b\xa7\x02\x14\xd4\x9c\x9d\xe2\xf9\x74\xfb\x10\x10\x09\ \x91\x11\x51\x17\xad\xe5\x65\x76\x19\xc7\x54\xc1\xf7\x13\x67\x71\ \x79\x81\x01\xb9\x93\x07\xb6\xe2\x00\xfe\x77\x90\x6a\xcf\x44\x6f\ \xef\xca\x6a\x5f\x08\x01\x84\x7f\xbf\x8e\x6a\xbc\x35\x80\x81\xc0\ \xaa\xef\x82\xe4\x7a\x49\x86\xe2\x90\x99\xf8\x64\x35\x33\x6d\x4e\ \xb3\xb3\x57\xfb\xbe\x2e\x4e\xe9\x6d\x7b\x68\x68\x70\xa5\x25\xcb\ \x29\x27\xd6\x3d\x68\x01\x64\x28\x79\x0b\x2d\x63\x2b\xd8\x7b\x69\ \x90\x69\xcf\x85\x3d\xbb\x5c\x3a\x10\x01\x11\xcd\x09\xbe\x76\xea\ \xf9\xdf\x50\x41\x2a\xc8\xe7\xa3\x9f\xc1\xc8\x4f\x95\x59\xc7\x5f\ \xa5\x80\x27\xe1\x80\x01\xea\x78\x71\x79\x38\x64\xdf\x95\x7a\x2d\ \x10\x50\xe2\x9d\x8b\x2e\x05\xd3\x2f\xeb\xa8\x69\x08\x81\x08\x80\ \x66\x57\xdc\x35\xf8\xf2\x00\x48\x6e\x7d\xd9\xb7\x48\xb5\x04\x08\ \x2b\x7b\x04\x12\x94\x66\xf0\x20\x8c\x84\x57\x16\x5e\xd9\x73\x05\ \x86\x32\x65\x7b\x66\xec\x91\x06\x0d\x0c\x0f\x79\xf2\xa0\x29\xbb\ \xd2\xe2\xcd\x0c\x65\x1a\xc5\x88\x51\x26\x8d\x1a\x35\x2b\x91\xa0\ \x8d\x51\x33\x86\x89\x13\x26\x60\xc6\x80\xa1\xb2\x2e\x86\x9d\x98\ \x1f\x88\xb4\x69\x43\x84\x4a\x98\x0f\x1f\xe2\x30\x29\x1a\xc7\x09\ \x95\x0f\x54\xec\xe0\xb4\xe3\xd4\x0e\x0f\x30\xa9\xa6\xa6\xba\x97\ \x0a\x63\x54\x1e\x3c\x6e\x7d\xb2\xfe\x73\x4b\xeb\xad\x5b\xa9\x38\ \x14\x09\x71\x25\x44\x91\x22\xf7\x38\x9c\xf8\xe7\xf6\x2d\xdc\xb8\ \x72\xe7\xd2\x75\x7b\x02\xc2\x97\xbc\x5f\xb4\x78\xe1\xe3\xc5\x57\ \x80\x69\x5e\xf4\x6a\xd1\x0b\x62\x0d\x62\x2f\x5a\x16\x17\xd6\xeb\ \x38\xaf\x16\x29\x11\x22\x80\x60\x6c\x79\xf1\xe3\xcc\x8f\xb5\xbc\ \xf1\xe0\xa1\x33\xad\x94\x0d\xf7\x90\x96\x16\x49\x9a\x15\x83\x09\ \x0d\x2e\x74\xf8\x10\x9a\xb4\x19\x33\xa4\x45\x94\x07\x06\x8c\x46\ \xd8\xc8\xde\xb4\xd8\x03\x4d\x1e\xc9\x31\x4f\x22\x45\x52\xf9\x84\ \xe6\x4c\x98\x4e\x6e\xc7\x68\x13\x03\xa7\x13\x3b\x3d\x9d\x27\xfd\ \x60\x54\x0d\xcc\x0f\x4e\xb6\xe7\x7c\xea\xf4\xab\x56\xaa\xf2\x38\ \x50\x4d\x75\xcb\xeb\xd7\x54\x9e\xb8\x7e\xbd\x77\x2f\x6d\x11\x68\ \x1c\xfc\xb4\xad\x6b\xff\xfe\xdc\x42\x8e\xb5\x80\xf0\xeb\x65\x5a\ \x00\xc9\x08\x96\x19\x08\x5e\x54\x56\xd9\x5e\x8d\x69\x06\x99\x16\ \x6b\x4c\x46\x0d\x82\x97\x29\xb8\xe0\x7e\x9e\x79\x80\x12\x35\x03\ \xed\x81\x92\x15\xa9\x1d\x84\x10\x0c\xd2\xb4\x96\x50\x47\x33\x50\ \xf3\x90\x32\x24\xd9\x96\x8a\x18\x30\x50\xf3\x06\x6f\x16\x89\x21\ \xcf\x18\x63\x40\xf3\xc4\x13\xfe\x30\x44\x72\x1c\x72\xde\xf1\xd4\ \xd3\x4d\x3f\xc6\x90\x94\x13\x44\x61\x57\x14\x4c\x32\xdd\xa6\x95\ \x13\xe7\x79\xf5\x24\x78\xa9\xc8\xe3\x9e\x18\x57\x59\x39\x96\x79\ \xe7\x89\x35\xd6\x94\xf7\xb0\x52\x1f\x7e\x61\xde\x77\x17\x81\x7c\ \xac\x31\xcd\x99\x21\xf0\x91\xd9\x1a\x95\xf1\xe7\x26\x82\x14\x26\ \x08\x82\x07\x06\x62\x76\x99\x9c\x9b\x69\xe1\x81\x2a\x17\x46\x40\ \x5a\x87\x1e\x1a\x94\x63\x88\x07\xb5\x76\x85\x45\x30\xec\x81\x0c\ \x32\x0e\x29\x03\x8d\x8a\x34\x49\x04\xe3\x1b\xc8\xc0\x00\xe9\x18\ \x24\x91\x94\xa3\x45\xb6\xf1\x60\xc7\x4d\xeb\x4c\x07\x64\x4f\x31\ \x44\x67\x5d\x51\x2e\xc9\x54\x54\x54\x52\x2d\xe9\x84\x56\x5b\xa1\ \xf7\x69\x78\xf2\x54\x55\xd5\x3d\xb6\xa6\xc2\x83\x27\xbc\x6e\xb5\ \x25\x59\x81\x88\x39\xac\x7d\x27\xc8\xc9\xc7\x9a\x66\x3e\x26\xc5\ \x34\xd3\x14\x76\x18\x08\xd1\x4e\x48\xa1\x84\x0c\x62\x96\xe7\x7e\ \x9d\x79\x96\xa1\x40\x15\x55\x64\x50\x44\x85\x4a\x43\x5a\x69\x11\ \xc5\x86\xd2\x1e\x10\x89\xc1\x91\x48\x51\x29\xf3\x11\x8c\x7b\x3c\ \x41\x92\x33\x9a\xae\x4b\x9b\x3c\xd1\x35\x37\x2a\xbf\x6d\xe4\xb4\ \xdc\x4c\x2f\xd5\x58\x14\xfe\x18\xb0\xde\xb6\x64\x54\xbb\xee\x9a\ \x95\x93\xe9\x49\x99\x2b\x79\x53\xf1\x40\xd5\x7a\x13\xa7\xe2\x0e\ \xb1\x19\xcb\x45\xe6\x82\x7e\xf1\x21\x05\x1c\xf0\xc0\x21\x85\x5e\ \x67\xae\xa1\x60\x63\xd7\xe6\xb9\x98\x07\x6e\xe2\x89\x2d\x61\x7b\ \x7e\xe6\x01\x41\xa5\x7d\x58\x28\x43\x0e\x49\x73\xa9\x32\x56\x50\ \xd3\x28\x89\x25\x85\x28\x46\x74\x60\xcc\x40\x69\x0b\x32\x42\x3a\ \xe3\x18\x23\x89\xc1\xc3\x3a\xa2\xf6\x3b\x6a\x0c\xad\xaa\x11\x30\ \x72\x32\x2d\x97\xb0\xad\x18\x89\x17\xf1\xa7\x5d\xe5\x14\x5e\x79\ \x54\x71\x10\xb1\x27\xbd\x82\xa9\xb1\xc6\x85\xac\x61\xe6\x34\x70\ \xc4\x7d\xce\x39\xf0\x9c\x53\x00\x13\x05\x50\xe1\xdc\x07\x22\xc3\ \xf1\xc4\xc9\x9a\x4d\x4b\x2d\xcb\x1e\xdc\x69\x19\xcc\x90\xbd\xa1\ \x85\x2a\x1c\x76\xfb\x21\xa2\x0c\x2d\x74\xd0\xa3\x8a\x52\x33\x03\ \xa2\x09\x91\x14\x22\x0c\x35\x39\x01\x03\xa5\x6f\xa4\x0b\x0d\xe9\ \x24\x1d\x9c\xd5\x8f\x53\x4f\x57\x75\x8d\x58\xcf\xf4\xfa\xc1\x52\ \x4e\x05\x86\x27\x52\x61\x99\x2b\x18\xe7\x75\xd5\x15\x78\x64\x53\ \xe5\xde\x54\x9e\xc8\xb0\x36\xdb\xc3\x2a\x62\x80\x50\x4a\xc5\x40\ \xc4\x8f\x3c\xa5\x4e\xfe\x75\x0c\x4c\x24\x43\xb2\xe0\x83\x57\x2f\ \xc5\x1a\x86\x57\x9b\xf8\x5e\x16\xa2\x6b\x05\xa2\x3b\x8b\x7f\x68\ \xe6\x10\x99\xb4\xe1\x89\xb4\xa5\x98\xa9\x40\x62\x30\x25\xc6\x6e\ \x30\xb6\x70\x45\x8a\x2a\xda\xa6\x2f\xa8\xaa\x53\xbd\x9c\x46\x58\ \xd7\xa8\x51\xd7\xa6\xe2\x29\xdb\xcd\x8e\x2a\xba\xfb\x04\x02\xbf\ \xf3\x9d\x89\x59\x4c\x57\xa9\x10\x56\xf1\x34\x16\x8f\xe7\xe9\x4f\ \x7f\x4e\x58\x03\xb5\x60\xc6\x18\x29\x68\xaf\x5a\x28\x23\x9c\x67\ \xf6\x04\xbe\x84\x90\x10\x45\x30\x90\x1c\x09\x9f\x30\x2e\x8a\xec\ \xec\x09\x98\x12\xc3\x49\x60\xe0\x84\x75\x38\x41\x1a\xf0\x6a\x94\ \x48\x70\xd3\x3f\x1e\xd8\xa4\x82\xa3\x5a\x87\x1d\x74\x38\x23\x00\ \x12\x71\x46\x57\x89\x55\xef\xb6\xa2\x15\x8c\xdc\xe2\x39\x51\xdb\ \x9d\x1d\x12\xc8\x2b\x8a\xf1\xc0\x08\xc4\x8b\x20\x7e\x4e\xb0\x0a\ \x1f\x72\x91\x0a\xd3\x90\x93\xf5\x04\xe7\x01\x0e\x4a\x41\x42\x85\ \x09\xe3\x66\x16\x77\x21\xf5\x91\xe8\x84\x0f\x51\xc8\x42\xcc\x17\ \xa2\x2b\x80\x6f\x67\x8f\x9a\x51\x8b\x2a\xc2\x04\x22\xc4\x40\x1e\ \x8b\x6a\x01\xd0\xc4\x70\xb0\x25\x49\x87\x8b\x40\x0a\x22\xe9\x96\ \xa6\x11\x29\xd9\xfe\x0e\x2b\xd1\xf9\x44\x0c\xc4\x96\x40\xf0\x70\ \xe5\x13\x4f\x8c\x22\x02\xd7\xf1\x09\x8b\x51\xc5\x09\x10\xc4\xe2\ \xb0\x4e\x60\x48\x1f\x7a\x71\x65\x1a\x9c\x4c\x04\x3a\xf8\x32\x6c\ \xb1\x4c\x15\xa3\x33\x09\x44\x4e\x88\xb9\x87\xbc\x31\x22\xca\x50\ \x08\x42\x14\x59\x12\x83\xc8\x43\x54\x9f\x43\xdf\xce\x04\xc9\x1d\ \x3b\xd8\x44\x6a\x5c\xac\x9a\xd0\x7e\x73\xbf\xe8\x6c\x47\x2b\x4e\ \xe9\x4a\xd4\x9e\x38\xc9\xaf\xe8\x4e\x93\xcf\xc4\xa4\x57\x38\x99\ \x0a\x26\x80\x92\x58\x27\xd0\xc3\x28\x2b\x48\x05\x38\xac\x29\x41\ \xdc\xdb\x8c\x83\x26\xe3\x32\xc6\xec\x45\x83\x6a\x3c\x51\xe5\x4a\ \x28\x9b\x59\x92\x28\x5c\x0c\x21\x21\xa4\x46\x02\x8d\x10\xc9\x63\ \x6f\x31\x18\x83\xa2\x2a\xf2\x9b\xe8\xac\x83\x82\x86\x84\x4e\x54\ \xf4\x05\xc9\x18\x5c\x72\x81\x4f\x42\x20\x4e\xc2\x12\x16\x24\x2e\ \xb0\x57\x0b\xeb\x15\x27\x15\xd1\x4d\x31\x9d\x20\x1e\x61\x08\x67\ \x05\x99\xf0\xc5\x04\xa1\x11\x8c\x92\x99\xc6\x1e\x14\xe3\xc1\x76\ \x12\x4e\x66\x88\xba\x25\x1c\x25\xf7\x90\x22\x28\xe3\x1e\xb7\x8c\ \x63\xb8\x52\x04\x40\x92\x3c\xca\x09\x3c\x71\xc2\x3e\x69\x23\x86\ \x31\xf0\x60\xfe\x5f\x20\x5d\x9d\xa9\x78\xd0\xcc\xed\x38\x69\x6c\ \x59\x89\x15\x58\x94\x28\x55\x06\x2e\x51\x4a\x11\x93\x58\xaf\x86\ \xb7\xd1\x30\x29\x62\x05\x47\x55\x1d\x11\xce\x41\xb2\x37\x95\x14\ \x8c\x1e\x70\x90\x2a\x49\x9a\xb2\x95\x21\x03\x7c\x56\x88\xe5\x6a\ \xde\x78\xc2\x7a\x76\xe4\x0a\x33\x68\x23\x0c\x66\x84\x1b\x92\x90\ \x0e\x0c\xa2\xea\xe3\x3e\xf3\x9a\x2f\xa3\x1e\x15\x88\x2c\xca\xe7\ \x22\x6d\x83\x91\xd3\x35\x32\x2a\xb5\x83\xaa\xef\x68\x37\x15\xf2\ \x8c\xa7\x91\x0f\xdc\x2a\x57\xbf\xaa\xbf\x02\x60\xf0\x40\x71\x3a\ \x27\x64\xea\x94\x4a\x76\xbe\xec\x8c\x0b\xd2\x42\x5b\x17\x75\x05\ \x17\x06\xb6\x84\x28\x8a\xc8\x42\x64\x43\x3f\x98\xea\x74\x23\x8f\ \x4a\x51\x21\x9d\x60\x92\x60\xca\xe3\x53\xc6\x04\xe9\x90\xa4\x12\ \xc0\x41\xc6\x6a\xb1\xb7\xa1\x0a\x01\x21\x8b\x5c\x01\x52\x85\x93\ \x28\xb8\x22\x66\xe3\x72\x02\x3c\x68\x56\x75\x61\x80\x83\xb4\x10\ \x07\xda\x04\x51\x63\x0d\xd4\x20\x2d\x9e\xca\x2a\x33\x0f\xc8\xf5\ \x96\x22\x42\xe1\x4d\xe7\x29\x57\x88\xe4\xaa\x24\xe1\xea\x5c\x73\ \x80\x2a\x90\x97\xde\x8f\xa1\x5f\x05\x22\x33\x9d\x02\xab\x7f\x45\ \xa7\x61\xfe\x50\x2d\x1b\x56\x7c\x07\x60\x85\xc9\xe3\x93\xd1\xa5\ \x8b\x28\xab\x3b\x35\x22\xc0\xe1\x0b\x5e\x18\x2b\x4b\xb7\xcb\x9f\ \xc9\xa8\xf4\x8c\xd7\xb2\x70\x84\xd3\xe8\x19\x40\x8d\x4f\x21\xae\ \xb5\xeb\x2c\x6d\x19\x11\x48\x85\x4b\x44\xee\xfb\x09\x34\xd0\x47\ \x8d\x60\x82\xa1\x90\xe1\x04\xe2\xbf\x9c\x12\x49\xa6\x24\xb0\x2b\ \x33\x4e\x20\x54\x04\xfc\xdf\xd9\x61\x45\xb2\xb4\x03\xc3\x81\x8b\ \x05\x4e\x05\xf7\x8b\x08\xd3\x90\x02\xf6\x52\xa6\xb2\x73\x36\x28\ \xa5\x77\x32\xa7\x69\x0f\xa7\xa7\xc5\x68\x4b\x67\x3b\x23\xe1\x4d\ \x19\xa2\xde\x13\x46\xc4\xa6\xb0\xf5\x30\x18\x9e\xe3\xc7\x16\xb4\ \x00\x25\xd2\x10\x24\x53\xec\x7b\x50\x27\x00\x67\x57\xd1\xa1\xf1\ \x4d\x2c\x19\xcd\x39\x23\xf0\x13\x49\xf4\x15\xd9\x30\x92\x93\xde\ \x81\x41\xa3\x41\x9e\x4b\x47\x0d\x4a\x64\x06\x23\x79\x0d\x65\x6c\ \xa7\x69\x99\xcc\x9f\x0e\x92\x34\x66\x8d\xde\x0c\x49\x3d\x40\x9a\ \x3f\xd5\x51\x8e\x6e\x04\xb1\x6b\x48\x44\xe2\x9b\x9e\xf0\xcc\x45\ \xb3\x21\x32\x32\x24\xd8\xdb\xcc\x30\x9c\x31\x60\xd1\x50\xf5\x0c\ \x4d\x48\xca\xd9\x92\x72\x8e\x66\x8d\xb3\xb9\xe3\x23\x42\x55\xab\ \x7f\xfe\x96\x4b\x57\x89\xac\x3a\x76\x7c\xcc\xd0\x52\xc8\x2e\x3b\ \x15\x4d\x5a\x06\x3d\xda\x9c\x99\xa1\xb2\x86\x4c\xc4\x42\xb8\xc6\ \x16\xc4\xb3\x9c\x6d\x4d\xb3\x7c\xcf\x30\x03\x75\x43\x98\x53\x0d\ \x0c\xfa\x69\xea\x4f\x00\x6c\x45\x05\x7b\x26\xab\x23\x19\xc9\x57\ \xc3\x5a\x93\xbc\x9b\x68\xc2\x90\x8b\x11\x03\xdf\xfa\x2d\x8a\xd0\ \xb5\xea\x98\x40\x32\xec\x21\x26\x02\x65\x0c\xb6\xb0\x87\xcd\x52\ \x0c\x2f\x39\x66\xc8\x88\x80\x89\x50\x22\x5b\x38\xce\x80\x51\xc8\ \xa0\xc8\x3d\x6d\x29\x4b\xd9\x22\x6a\x0c\x0c\x05\xc3\xb8\x7e\x46\ \x66\xdf\xf0\xa0\x0d\xbf\x55\xdd\x4d\x82\xd8\x62\xa7\xe0\x46\x2a\ \x50\xc5\x64\x24\x9f\x38\x67\x73\xd7\x39\x8a\x50\xb2\x43\xd9\x9e\ \xdb\x6e\xe9\x52\x17\xde\xfd\xfa\x40\x25\xbe\x80\x64\x24\x7b\xa1\ \x4d\xfc\xe9\x37\x2b\xb5\x4b\x98\x0c\x4b\x79\x3f\x8b\x09\x35\x35\ \x3c\x40\x11\xd2\xb4\xa6\xe0\x06\x27\x3a\x4e\xed\xa9\xde\x9d\xc9\ \x63\x79\x9f\x83\x57\x8c\x52\xc1\x9d\x8b\x5b\xbc\x90\x30\x6e\x95\ \x13\x9e\x03\x95\x41\xea\xf9\x99\x21\x1f\x79\x9d\xc7\x5d\xe7\xdd\ \x21\x90\x6c\xec\x5e\x79\x82\x5d\xce\x2f\x06\xe7\x05\x7b\xd8\xa3\ \xfe\x8c\x17\x1e\x5c\xd6\xd3\x26\xba\xa5\x75\x27\xcc\xb6\x24\x2d\ \x53\xd9\xfc\xcc\x03\x07\x67\x38\x5e\x63\x8b\xb9\x5b\x42\x43\x3a\ \x54\x80\x01\xd4\x7d\xb3\x43\x2a\xa8\xb9\x54\x45\xf5\x17\xc0\x30\ \xf2\xe6\xa6\x40\xd6\x99\x98\x74\xb5\x26\x33\x1f\xf6\xb1\xdb\x59\ \x8a\x3c\xe0\xe6\xca\xe1\xf2\x4d\xb5\x4f\x8d\x1d\xf3\x6e\x13\x62\ \xb2\x67\xa0\x43\x83\x76\xee\x31\xc3\x39\x95\x2d\xb4\x10\xf0\x8d\ \x86\x51\x1e\x20\xb3\x7a\x6b\x09\xd3\x66\xaf\xa6\xe9\x31\x10\x03\ \xa5\xd2\x15\x4b\x41\xb6\xb8\x39\x0c\xa5\x61\xbe\x80\x88\x9b\xab\ \x30\x1e\x27\x4e\x6c\x0a\xac\x60\xf5\xa9\xf3\x88\x9d\xf3\x09\x1c\ \xc4\xe5\x25\x2a\x2b\x3f\x87\xfe\x1f\x81\x26\x7d\xbf\xc6\x29\xf3\ \x32\x1e\x26\x02\xa9\x77\x93\x84\x35\xa8\xd6\x63\xb3\x2c\x35\x13\ \x71\xc8\x86\xfc\x8e\x8c\xdb\xff\x9d\x9e\xe6\x83\xad\x7a\x43\x82\ \x14\x30\xec\xc1\x95\x06\x21\xcd\xa5\xf4\xcf\x8c\x71\xdc\x8c\x2c\ \x45\xa6\xd8\x06\xa8\xcc\x19\x11\x64\xdc\xd8\xc0\xca\x2d\x38\xe0\ \x35\x21\x10\xf6\xd5\x59\x25\x95\xdc\x44\xd9\x5a\xf7\xe5\x1a\xf8\ \xf5\x8b\xe9\x59\x86\x07\xc0\x00\x1c\x98\x5f\x85\x65\x98\x29\xfe\ \xa9\x9f\x85\x0d\xce\x9e\x44\xc2\x9f\x90\xcb\xa2\x18\x9c\x0b\xba\ \xc6\x6b\x79\x99\x5d\xb9\x20\x32\x34\x9d\x13\x88\x01\xfc\x51\x43\ \x6f\xec\x4c\x5f\x6d\x47\xc1\xf0\xc0\x18\x44\x44\x8b\x81\xc1\x6f\ \x14\x8c\x4d\x3c\xcf\x4d\x34\xc5\x53\x28\x95\x33\x9d\xc7\xaf\xdc\ \xc2\x20\x50\x20\x57\x5c\x9e\x1d\x78\xc2\xd9\x85\xde\x2a\xb0\xc0\ \x06\x8e\xca\x07\x44\x00\xa2\x79\x01\x0c\x24\x03\x0c\x88\x20\xfa\ \x31\x99\x19\xe2\x5b\x82\x34\x0e\x35\xac\x20\x69\x98\x08\x0d\x1e\ \x5c\xa6\x41\x04\x47\xc0\x80\x6c\x20\x03\x20\x31\x8a\xfb\xb4\x81\ \x6e\xe9\x20\x99\x65\x48\xe6\x28\x96\x6d\x64\xca\x09\xe5\x0b\x11\ \xa6\x1a\x4c\x34\x1e\x52\x79\x87\x7e\x81\x45\x58\x78\x05\xd9\x7d\ \x07\xf6\x45\xe1\x27\xc8\x40\xf7\xcd\x85\x22\xfc\x81\xa0\xb9\x9c\ \x58\x41\x06\x08\x44\x40\x60\xa0\x52\xe0\x44\x19\x18\x6d\xd7\xeb\ \xf9\xdc\x85\xac\x21\xfa\x98\x88\xfc\x85\xda\xfb\xc5\xd1\xfd\x81\ \x98\xc1\xc9\x86\x32\x18\x1f\x34\xbc\x08\x99\x95\x99\xa8\xe1\xd1\ \x10\x99\xc4\x5d\xe5\xc6\x50\x29\xd6\x76\xf4\x10\xbf\x68\x9d\x77\ \xe4\x97\x23\xda\x41\x14\x62\xd3\xac\xd8\x41\x3c\x54\x22\xfe\x5d\ \x5c\xe2\x16\xb6\x01\x15\x60\x10\x27\x46\x80\x32\x4c\x43\x08\x44\ \x80\x4a\x21\x5a\x09\xa6\x1f\x1a\x2e\x46\x04\xa4\xc6\x9f\xac\xc1\ \xfc\xc9\xdf\xe5\xc0\xa0\x88\xd4\x53\x6c\xd9\xe1\x5d\xe5\x55\xc5\ \x11\x81\x3c\xc4\xcf\x2d\x96\x19\x1b\x6d\xda\x15\x64\x08\x5f\xa5\ \x1a\xec\x6c\x07\x61\x21\x95\x12\x6a\x49\xf6\x85\xc5\xd8\x7d\x07\ \xe8\x39\x63\x5d\x64\xe1\x06\x3a\x01\x1c\xdc\xc9\x1a\x88\x21\x9a\ \x7c\xd7\xdd\x91\x62\x06\x19\x9b\x29\xbe\x95\x40\x18\x9d\x67\x30\ \xca\x39\xca\xd4\xa5\xcd\xd3\xe0\xd9\x54\xd3\xe9\xe1\x1e\x7c\x46\ \xe8\xa4\x0f\xe5\x84\xc8\x0c\x94\x59\xe7\x80\x81\x4c\xd0\x84\x92\ \x00\x8c\x4f\x4d\x4d\xa8\xe0\xc4\xa7\x80\x9b\x9d\x35\xa2\xd8\x78\ \x05\xf7\x19\xe4\x33\x62\x22\xf8\x81\x01\x06\x31\x86\x83\xac\x41\ \xcd\xa5\x55\x06\xb9\xde\xb1\xed\x9c\x86\x8d\xe3\x0c\x78\xc1\x0c\ \xf8\x9d\xdf\x9d\xe3\xfb\x4d\x25\xc3\x39\x04\x89\xec\x0c\x18\x38\ \xc7\xbb\x84\x0e\x6f\x90\xc6\xe5\x5c\xd9\x3d\x96\x99\x18\x50\x01\ \x1f\x2d\x07\x72\xf8\xa0\x20\xed\x0d\xc6\xc1\x98\xee\x44\x91\x44\ \x4d\xa1\x9d\xd9\x01\x06\xf2\x64\x5d\x40\xa3\xda\x79\xfe\xd1\x65\ \x78\x41\xcb\x74\x97\xf6\x90\xa0\x44\xee\x07\x94\xf9\xe5\x9e\x5c\ \x8e\x6c\xc4\x9f\xfc\x15\xa6\xd1\xd5\xdf\xb3\x95\xd0\x1c\x39\x5c\ \x1b\x80\x01\x32\x70\x06\x67\x74\xc6\xcf\xa0\x44\x5e\x89\x81\x0a\ \xbd\x55\x4d\xf4\x84\x1d\x34\xcd\xfd\x50\xc1\x72\x64\x5d\x12\x0a\ \x5a\x9c\x41\xc5\x77\x50\xd3\xc9\x35\x23\x5d\x8a\x09\x42\xc2\x1b\ \x18\x6c\x63\x5e\x32\x9a\xe0\xfc\x65\xdd\xe9\x5c\x68\x8d\xe3\x1e\ \x90\xa3\xed\xcd\x1f\xa3\xdc\xe2\xc1\xa1\x17\xa7\x99\x44\xe1\xfd\ \x84\x34\x2c\x8e\x71\xbe\x01\x35\x34\xce\x71\x28\x07\x13\x34\xcd\ \x18\x38\x41\xa9\xf8\x20\x52\x10\x53\x0f\xd9\x81\x3b\x44\x40\x32\ \x40\xa7\xea\xcc\x98\x13\x82\x85\xc9\x51\xe2\x6a\x1a\x8f\x4f\x12\ \x19\x5e\xce\x89\x07\xba\xcc\x5f\xb2\xd2\xfa\x55\x08\xfc\x61\x64\ \x39\xb6\xc0\xed\x7d\x06\x20\x65\xda\x7a\xcd\x15\x56\xf2\x91\x18\ \x48\x26\x72\x46\x82\xa2\xe0\xcb\x6d\xb4\xe4\xc0\xec\xcb\xf2\x2c\ \xcf\x4d\x34\x1f\x15\xb8\x83\x4a\xad\x01\x13\xf4\x23\xd5\x74\x05\ \x54\x39\x89\x6a\x86\xa7\x78\xea\x9a\x3b\x2c\x46\x51\xae\xd3\x2a\ \xa5\xe7\x51\xf6\xdb\x9e\xc0\x00\x39\x7a\x41\x39\xfe\x5a\x08\x7c\ \x92\x19\xa3\xbc\x94\x2d\x65\x4e\x43\x84\x4f\x48\x82\x81\x2a\x68\ \x41\x0b\xbc\xc4\x4c\xec\xd3\x0b\x0d\x55\xeb\xc4\x64\xbf\x0c\x49\ \x4e\xb8\xc3\x80\xe4\x05\x08\x4c\x83\x3b\x2c\xcf\x76\xe6\xe4\x79\ \x14\xa4\x84\x12\xcb\x1f\x0c\x99\x66\x01\x55\xea\xe9\xa5\x19\x89\ \x22\x64\x68\x68\xf5\x1c\x9b\xd0\x3d\xa5\x88\xce\x0c\x20\x01\x92\ \x6c\xd0\x95\x1b\x2d\xca\xb7\xc8\x10\x8a\x9d\x59\x51\x64\xca\x8d\ \x28\x03\x72\x78\x66\x8d\x64\x1d\x75\x10\xd6\x52\x38\x81\x3b\x04\ \x40\x39\x39\x06\x08\xb8\x43\xd6\x19\x14\x03\x3a\xc5\x4e\x16\x69\ \x28\x1d\x69\x75\x39\x81\x60\x78\x80\x36\x36\xe9\xce\xad\x15\x94\ \x46\x18\xec\x9d\xd5\x48\x5a\x48\x7c\xba\x60\xf9\x7c\x18\x30\xdd\ \xe7\x3a\x30\x01\xa4\x3c\xc1\x1a\x5e\x08\x00\xce\xcb\xa6\xa8\x10\ \x34\x2c\xe8\x07\x9c\xc3\x66\x4e\xc7\x4d\x80\x41\x32\xbc\x8d\x66\ \x9c\x49\x4d\x3c\x47\xea\x10\xe3\x03\x40\x17\x9e\x72\xd5\x04\x7d\ \x55\x0c\x5c\xe7\x50\xaa\x92\x6d\xe2\xdc\xa0\x16\x1b\xde\x5d\x81\ \xe1\x74\x06\x7c\x76\x06\xa3\x0c\x1e\xbb\xec\x5d\x86\x5c\x19\x34\ \x90\xa5\x1d\x88\x81\x15\x34\xa9\xcc\x4c\xc6\xfe\x18\x79\xc0\x13\ \xc0\x04\x34\x40\xc1\x82\x1a\x15\x11\x14\x40\x32\x98\x49\x39\xbd\ \x69\x5e\x40\x01\x18\xb8\x83\x3b\x30\xc1\x0f\x3d\x47\x84\xae\x6a\ \xf1\xe8\x29\x70\x81\x81\x60\xe8\x25\x9d\x84\x17\x60\x22\x65\x37\ \xae\x8c\x67\x68\x8b\x95\xc2\xa1\x1c\xc2\xd6\x68\x50\xc4\x8a\x9d\ \x17\x7c\x11\x01\x13\x40\x24\xb2\x4a\x48\x04\x3c\xc1\xdf\x9c\x43\ \x30\x96\xca\x39\x54\xab\x2f\x4c\xc3\x06\x4c\x83\x80\x94\xd3\x1a\ \x70\x2b\x08\x7c\xc1\x34\xf4\x23\x1e\x88\x6b\x37\x9d\xc0\x1f\x68\ \x61\x38\x7d\xce\x81\x78\xc1\x68\x95\x96\x5f\xd6\xea\xca\x2c\x8e\ \xed\x65\x64\xa3\xbc\x96\x49\xb4\x46\x1b\x56\x44\xa7\xc1\xc0\x18\ \xec\x0d\x15\x40\x03\xa3\x01\xaa\x85\x71\x90\x83\x70\xeb\x39\x34\ \x1f\x0f\x40\x41\xdc\x24\x43\x32\xe8\x2c\xb2\xf0\xc1\x34\x40\x41\ \x2a\x24\x83\x5e\xec\xd1\x74\x10\x41\xb8\x52\x6c\x04\x29\xc2\xbb\ \x8d\x52\x58\x11\x25\x35\xe8\xa5\x9d\xe8\x5b\x44\xd6\x2a\x1a\xfa\ \x9c\xb6\x24\x26\x3d\xd9\x13\xfc\xe5\x0c\x43\xd8\x91\x63\x7e\xc0\ \xb1\x8a\xe2\x93\x29\xd9\x06\x45\xc6\xdc\x6c\x47\x01\x40\x01\xcf\ \xba\x03\x3c\x4c\x43\xb2\x04\x00\x14\x40\xfe\x01\x35\x7e\xc1\x1a\ \x40\x81\x76\x86\x81\xd2\x46\x17\xb9\xfa\x90\x1d\x4c\x43\x81\xc0\ \xc9\x2a\x55\x2d\x6d\x42\xc6\x71\x3c\x01\x1a\x71\x06\x79\x4d\x4e\ \x3a\x2a\xdc\x44\x5c\xdb\xc2\x2d\xa6\x32\xf8\xd4\x3a\x8c\xc1\x93\ \xed\x1b\xa4\x65\xe8\x34\x9c\x03\x13\x14\xac\xc2\xb2\x6d\xb2\x1c\ \x6c\xa8\x3e\xc6\x1a\xb0\x43\x1b\xdc\xe9\xde\x82\x92\xc5\x62\xac\ \xfe\xbc\xaa\x81\x60\x68\xd9\x72\x23\xc8\x7e\x41\x04\xec\x8d\x13\ \x1c\x2b\xb5\x20\x67\xba\xbc\x97\x1c\x35\x04\x45\xc8\xd3\xc0\x5d\ \x4a\x2a\xf8\x13\xee\x02\x66\xf5\xd0\xea\x34\xd8\x0d\x3c\xb0\x6d\ \x32\x6c\x80\x2f\x20\x8b\x2f\xac\xc1\x06\xd4\x6d\xd1\x9a\x03\xea\ \xa6\x2e\x28\x29\x42\xab\xea\x0f\x0f\xa0\xc9\xc9\x2c\x06\xec\xca\ \xee\xec\x8a\x01\x4f\x98\x0a\xe2\x5a\x8f\x65\x20\x43\x3a\x9a\xd0\ \x4d\xb9\x46\x7a\xcd\x80\x59\xd0\x4f\x49\x18\xed\x39\x78\xc0\x19\ \x6a\x86\x14\x40\x2b\x13\xb0\x6d\xb3\x3c\x2f\x1f\x24\xac\x2f\x3c\ \x06\x1f\x7c\x40\xd2\x62\x2f\x66\xf5\xed\x30\xba\x83\x31\x10\xa5\ \x85\x1d\x08\xd9\xce\xae\x16\x10\x8d\xbe\xc4\x00\x18\x44\x40\xe2\ \xee\x89\x5c\xad\xd7\xe4\xc0\x40\x11\xfe\x9c\x05\xe6\x04\x8d\x48\ \x18\x1f\xe2\x9a\x21\x85\x48\x02\xe7\xb2\xad\xce\xe6\x85\x2f\x24\ \x43\x00\x3f\x86\x21\x18\x70\xbb\xad\xee\xd4\x38\x41\xa8\x2a\x06\ \x27\x16\x48\xec\xce\xae\x07\xd0\x04\x8d\xec\x0d\x11\xdc\x60\x5f\ \x4e\xcb\x62\xdc\x95\x88\x15\x31\x09\x5d\x5a\x11\x98\x4f\x49\xd4\ \x04\x11\x54\x70\xeb\x1d\x0b\x14\x9c\x43\x14\x57\x2b\x1f\x0c\x03\ \x14\x6c\x00\xb6\x7e\x01\x0c\x87\x9e\xf6\x52\x10\x05\x13\x65\x85\ \x65\x17\x37\xb2\x2b\x2b\xb9\x03\xe3\x65\x4a\x98\x95\x0a\x18\x8c\ \xad\xce\xfd\x1c\x0c\xdc\x83\x2e\x6a\xca\x3e\x25\xf1\x15\x18\x43\ \x3d\xdd\x43\x60\x85\x19\x05\x53\x4f\xad\x4a\x01\xe7\x4a\xf1\x1a\ \xf8\xc2\xf2\x12\xad\x63\x14\xc2\x16\x57\x22\x02\xdb\x41\x11\x00\ \x1b\xb0\xc5\x2e\x19\x2f\x48\x04\xec\x8b\x13\x5c\xc5\x73\x40\x9f\ \x18\x04\x5d\x1b\x2f\x86\x15\xb0\x4b\x44\xec\xe2\x95\x29\xdc\x1b\ \x43\xc3\x42\xdc\x03\x74\x12\x01\x34\x3c\x72\x9e\xc0\xc1\x07\xac\ \x2d\x1c\xd4\xc1\xda\xb6\x70\x5e\x40\x80\xaa\x1e\xf2\x81\xc9\xb0\ \x4f\x98\x6b\xdc\xdd\x1c\xfa\xa9\xab\x86\x4a\x41\x56\x96\x0a\xe3\ \x95\x65\xc1\x0c\x09\x13\x88\x41\xfe\x0b\x24\x6e\xcd\x21\xc3\x1a\ \xc8\xef\x1c\xd7\x93\xe6\x88\x58\x2a\x7c\x00\x0d\x8d\x70\xad\x4e\ \x43\x4c\xcc\x6d\x1d\x5c\xb1\x63\xf0\x81\x21\xd3\xb2\x33\x76\xb1\ \x4f\xdc\x42\x00\x4c\x6d\xbf\xa2\x72\x66\x3c\xc1\xbe\xfc\xb0\x80\ \x02\x61\x21\x99\x4a\x7e\x8a\x17\x63\x28\x83\x3b\x60\xe6\x18\x5e\ \x0a\x47\x90\x84\x4d\x0d\xe2\x73\x7c\x00\x34\x80\x2c\x1f\xb0\x43\ \x01\xc0\x83\x40\x07\x40\x0b\xfb\x42\x1d\x7c\x89\x37\xd3\xe5\x91\ \xfe\x30\x0c\x54\x98\xba\x12\x2e\xf7\x80\x80\x5a\xb6\x41\x54\xa4\ \x4e\x46\x64\xdd\x90\x0c\xc9\x3b\xc3\x0c\x08\x70\xae\x8d\x4c\x43\ \x42\xfc\xc6\x10\x95\x44\x07\x2b\x43\x98\xad\xc3\x07\x3c\x41\xad\ \xfe\x73\x01\xdc\x4d\x01\xd4\x81\x2f\xc4\xf4\x3b\x14\x40\x01\x27\ \x74\xf7\x59\xac\x1e\xa4\x42\x28\x9a\xd1\x93\x9a\x73\x5e\xc0\xc1\ \xea\x3c\xe7\xea\xdc\x06\xe3\x05\x51\x73\xbc\xec\x1e\x94\xd4\x9e\ \x38\x03\x52\x64\x8a\x3b\xe0\x08\x4b\x38\xe7\x48\x90\x88\x19\xd3\ \x90\x17\x42\x29\x1f\xe4\x4d\x01\x6c\x75\x40\x97\xc3\x30\x6c\xc0\ \x06\xd8\xb4\x84\x32\x2d\x18\x04\x80\xac\xb6\xf1\x5f\xd6\xee\x2d\ \x9b\xf4\x74\xdc\xe0\x07\xf4\xfe\x44\x13\xeb\xf1\x24\xc3\xc0\xe0\ \x14\xc8\x64\x44\xb1\x76\x9c\x03\x8c\x42\x83\x33\xb8\x83\x33\x40\ \x83\x3b\xc8\xc3\x3c\x5f\xe3\x0c\xac\x81\xb6\x39\xc1\x55\xa7\xe7\ \x34\xe0\x0d\x3c\x14\xc0\x07\x5c\xc0\x2a\xbf\x03\x1f\xcc\xb2\x58\ \x57\xa2\x25\xb0\x02\x0c\xc0\x6e\xa2\xd1\x2a\xcc\x44\x40\x60\x9f\ \x8c\x82\x82\xe6\x13\x78\x80\x3b\xf0\x04\x15\x28\x03\xb3\xce\xa1\ \x05\xab\x95\x17\x3c\xc1\x3c\x27\xc3\x13\x70\xee\x07\xb8\xa4\x13\ \x9c\x83\x3b\xd4\x88\x6b\x93\xc4\x3c\xdf\x83\xf9\x5d\x01\xe5\x22\ \x36\x1f\x93\x62\x63\xaf\x6d\x39\x5c\x80\x71\xc3\xc3\x30\x48\x01\ \x65\x57\xf6\x4d\x07\x02\x1c\x9c\xf5\x5a\x71\xf6\x76\xa1\x49\x61\ \x30\xeb\x0d\x8e\xd5\xe1\xf0\x47\xea\xad\x41\x11\x70\x2a\x1c\xc0\ \x01\x2b\x30\xc1\xa6\x72\xee\x90\x7c\x00\x18\xd8\x36\x34\xd8\xb6\ \x6d\x9c\x43\x8b\x4c\xc3\x58\x32\x8f\x13\xa8\xb4\x44\xaa\x72\xdf\ \x94\x03\x3c\x50\xc1\x05\x14\x80\x64\x77\x33\x73\xe3\xe9\x09\x14\ \x02\x63\x84\xd0\x84\xf8\x74\xe2\x04\x37\x61\x1c\x46\x11\x24\x43\ \x60\x24\x83\x3b\xd0\xcd\x77\xb3\x03\x13\xb0\x02\xb4\x9a\xf6\x18\ \xcc\xb3\xc0\xc6\x44\x51\xfe\xd4\xb6\x6e\x83\x81\x52\x38\x81\x33\ \x50\x6f\xe2\xc0\xc3\x63\xaf\xf2\x70\x07\xf4\x06\xc8\x72\x7f\x2b\ \xed\x21\x64\xe8\xec\x2a\x65\x52\xee\x45\xcd\x01\x88\xf7\x06\x40\ \xdd\xc0\x03\x2b\x7c\x37\x78\xef\xc4\x0f\x43\x81\x33\x08\x2c\xe3\ \xc5\x04\x52\xa0\xca\x39\x3c\x41\x32\x88\x37\x15\x30\xc1\x13\x18\ \x38\x85\xa8\x72\x0c\xe4\x77\x01\x38\x79\x40\xd7\x01\x37\xa7\xf8\ \xde\x16\x02\x04\x38\x72\x8b\xd3\xaa\x16\x98\xdf\x62\xa4\x1e\x36\ \x46\x6f\x32\xc0\x03\x3b\x48\xf1\x34\x48\xc2\x34\x84\x37\x15\x24\ \x05\xe7\xda\x81\xf2\xa4\xf9\xf2\x30\x1e\x15\x80\x41\x08\x0a\x52\ \x87\x33\x01\x1c\x80\xb8\x63\x78\x01\x1c\x30\xc1\xde\xe4\x77\x63\ \x03\x34\x2a\x04\xf4\x3b\x48\x02\x95\xa7\xee\x09\x9c\xc0\xbd\x5d\ \x2e\xc8\x7e\xa3\x16\x6c\xee\x87\x63\x8f\x8c\x2b\x2c\xcf\x42\x81\ \x40\xdf\x78\xdc\x88\xf9\x07\x84\xc1\x4f\xa4\xb9\x13\x48\xf3\x0f\ \x73\x07\x7c\xcb\x8d\x3b\x94\xea\x3e\x37\x67\x08\x22\x46\xdc\x34\ \xf8\x5b\x97\x8a\x7e\x43\x41\x39\xd8\xb7\x63\x17\x40\x39\x2c\x77\ \xa1\x87\xa7\x95\x63\x58\x8b\x3f\xc6\x64\x70\xee\x76\x40\x41\x8c\ \xa3\x89\x80\xb0\xb0\xfe\xc2\x2a\x2f\xa5\x37\xf6\x4e\xf0\x8d\x63\ \x1f\x35\x18\xd8\xcd\x9c\xd2\xb0\x8f\x32\x85\x34\xc2\x39\x91\xf0\ \x39\x90\xfe\xb0\xde\xb4\x01\xb5\xfe\x6f\x1d\xd4\x41\x39\x14\x40\ \x29\x94\x82\x11\x5c\x6f\xad\x8b\xeb\xad\x7f\x2c\x94\x46\x46\xb3\ \xa6\x39\x50\x44\x8f\xf7\x22\x06\xcf\xbe\xcd\xff\xf6\x2c\x3c\xbc\ \x03\xa5\x03\xf4\x07\x94\x42\x7e\x7f\x80\xf1\xf5\xcd\xdd\x50\xfb\ \x07\xb0\xed\xcd\xfe\xd4\xaa\x28\xc5\x52\x00\xe9\xab\xa2\x49\x1d\ \xc4\x00\x3c\x04\xf0\x06\x6c\xbb\x2b\xe3\x7b\x4d\x8f\x3b\xc5\x1e\ \xba\x92\xa7\xe7\x19\x45\x00\xaf\x6b\x3a\xf3\xa4\xf9\xfe\x22\xcb\ \x99\x08\x48\x4c\xff\xec\x06\x08\x08\xbd\x43\x01\x2b\x94\x83\x52\ \x6c\xf5\xc6\xe3\x4d\x9a\x5f\x7b\xf4\xcc\x2d\x3b\xc4\xc0\x07\xb8\ \x43\x32\xc0\x01\x14\x70\xab\xdb\x72\xaa\x3b\xd0\x6d\x5e\x24\xc3\ \x56\x63\xf1\x06\xbc\x83\xd0\x17\x37\x2a\xd0\xba\xc4\xe3\x69\xb9\ \x93\x62\x64\x70\xd0\x13\x4c\xc6\x13\xc4\x01\xf3\x68\x07\x59\x1e\ \x79\x51\x9c\x83\xdc\xc0\x8d\xf3\xc2\xed\x17\x20\xcb\x57\x4f\xc3\ \x57\xfb\xc2\x06\x34\xb6\x11\x88\xf8\x2a\x3f\xb6\xd3\xad\x3a\x15\ \xe8\x6c\x63\xc3\xfe\x03\x16\x2b\x2c\x1c\x08\x08\x62\x20\x8b\x63\ \xb8\xf2\x4b\x83\xf5\x30\x0c\xc3\x3b\x14\x77\xc4\x1f\x7d\xea\x5a\ \xf9\xb1\x9d\x89\xf9\x0d\xa5\x83\xe0\x48\x08\x3e\xab\x33\xc0\x04\ \xdd\xf0\x39\xd5\x67\xfa\xa6\xde\xf7\x4f\xf0\x3c\xb2\x38\xaf\xc8\ \xc3\xc1\x30\x34\xef\xcf\xe6\x7d\xd0\x77\xfb\x2a\xf3\x44\xbe\xf3\ \x44\x29\xd8\x38\xde\x48\xf6\xd6\xbf\x3d\xdb\xc2\xfb\xd6\xff\x2c\ \xdd\xc3\x43\x1d\xe0\x7d\xde\x6f\x35\xdf\xdb\xf4\xa1\xff\x4d\x60\ \xb3\x24\x59\x96\xb7\xba\xfb\x70\x6d\xd3\x0d\x84\x77\xae\x33\xd8\ \xcd\x39\x40\xb8\x50\x8c\x39\x3b\xfc\x48\x01\x8c\x14\x1f\x84\xfc\ \xf1\x6f\x80\x15\xbf\x83\xf3\x6e\xfd\x06\x1c\xc0\x06\xb0\x82\x88\ \x73\xc2\x05\x10\x41\x29\x50\x81\xb1\xff\x84\xdd\x14\x00\x3b\x18\ \x7f\xc9\xb3\xad\xdc\xf0\x6c\x32\x7c\xb5\x15\x73\xbb\xc3\xd3\xbd\ \xb8\xbf\x3e\x0c\xc7\x43\xcb\x75\x91\x33\xc0\x41\x8f\xd3\xcd\x39\ \x48\xb8\x33\x40\x01\x3b\xdc\x7f\xf0\x33\x41\x29\xf4\x44\x18\xbc\ \xed\xcf\x82\x3d\x40\xf8\xe2\xb3\x61\x03\x14\x83\x04\x11\xbe\x63\ \x77\xe1\xc2\x87\x0b\x44\x88\x34\xfc\xc0\x29\xc6\x07\x78\x17\xdf\ \xf1\xf9\xf2\xfe\xa5\x12\x14\x56\xc9\x0c\x1a\x74\x57\xa0\x00\xbc\ \x3a\x27\x09\x9e\x3c\x59\xc0\x88\xa2\x7f\x2f\x61\xc6\x94\x39\x93\ \x66\x4d\x9b\x37\x71\xe6\xd4\xb9\x93\x67\x4f\x98\xf1\x56\xb4\x11\ \x3a\x94\xa8\x50\x22\xe7\xa6\xb9\x3b\x77\x4e\xc6\x39\x76\x4b\x9d\ \x7e\x90\x1a\x86\x1d\xbc\x0f\x44\x8c\xc2\x13\xe8\x6b\x03\x57\x82\ \xc3\xa0\xd4\x29\x27\xb6\xdc\xbb\x0d\x92\xea\x48\x75\x08\x91\x48\ \x29\xac\xa5\x2c\xb2\x7a\xc7\xea\x2c\x9f\x77\x50\xe0\x6c\x60\x15\ \x12\x1e\x13\x92\x25\xeb\x74\xdd\x50\xe7\xdd\xbb\x72\xf1\x7c\x26\ \x56\xbc\x98\x71\x63\xc7\xff\x14\x29\x0a\x83\xb5\x28\x51\x26\x70\ \xe0\x2c\x65\x75\x2e\xce\x07\x76\x9e\xa5\x72\xa2\xc2\xae\xdc\x87\ \x52\x43\x2f\x40\x11\x9c\x6c\x58\x80\xd6\x2b\x4b\xc2\x2b\x27\xb8\ \x5c\x01\x3d\x54\xda\x94\xa2\x72\x5a\x28\x5c\x78\xef\xe0\x94\x2b\ \x27\xd7\xa3\xc2\x02\x72\xdf\xd5\x31\xf8\xf7\x77\xf2\x77\xc3\x0e\ \x9c\x78\x3c\x9d\x7a\x75\xeb\x3b\xe3\xe1\xa9\x3c\x94\x8a\xb3\x69\ \x98\x23\x6c\xfe\xc0\x44\xad\xd4\x86\x0b\x29\xb7\x21\x52\x80\x60\ \xb2\xe4\x2a\x55\xc2\x2b\x20\xb6\x30\xab\xda\x9c\x2e\x84\x29\xc0\ \xae\x40\xfe\xfa\x36\x17\x86\x2b\x47\x36\x56\x2e\xda\x0f\x1e\x82\ \xf8\x18\x68\x98\x02\x18\x62\x68\x2c\xb3\x0c\xb9\x4e\xc2\x09\x29\ \x7c\xec\x04\xa0\xb6\x6b\x83\x89\x69\xa4\xe8\x70\x9a\xa8\xca\x9b\ \x88\x0a\x4e\xfc\x6b\xe3\x03\x28\x86\x49\x46\x25\x28\x02\xa8\x23\ \x80\xda\x54\x12\xae\x24\x4e\x1c\xf2\xac\x0e\x56\x76\x1b\x8a\x88\ \x0f\xca\x12\xf0\x1d\x78\x8c\x90\xed\x9d\x4a\x7c\x91\x24\x41\xc3\ \x0a\x28\xa5\x94\x75\x00\x0c\xac\xc2\x27\xa1\x8c\x12\xa7\xc8\x26\ \x2b\xea\x03\x38\x36\x92\x82\x15\x76\x98\xf8\x4c\xaa\x02\x3a\x73\ \x6b\xbb\x02\xca\x0a\x0b\xc5\x61\x86\x81\xef\x39\xc3\x6a\x93\xaf\ \x00\x54\xca\xd2\xab\x80\x30\x78\x2b\x05\x1e\xfb\xee\x24\xc8\x3e\ \x28\xcc\x1a\x72\xa0\x72\x50\xb9\x20\xb7\x52\x2e\x28\xc0\x25\x29\ \x11\x4d\x54\xca\xec\x8a\x62\x87\x0f\x08\xa6\xf1\x72\x22\xb8\xd8\ \xf9\x8c\xb7\xca\x88\x68\x2e\xac\x3a\xd2\x54\x13\x4d\xe1\x6a\x93\ \x71\x38\x23\x59\xe9\x0f\xb5\x02\xcc\x39\x4e\x92\x0d\xd8\xc1\xcf\ \x08\xb3\xf8\xa8\xe4\x1d\x4e\x2e\xcd\x8d\x93\x43\x15\xcd\x55\x57\ \xeb\x2e\x0c\x4a\x28\x2a\x58\x99\x86\x15\x26\x46\xfc\x80\x8a\x1d\ \xab\xfe\x9a\xb3\xc4\xa1\xc8\xbc\x4b\xb8\xe7\xe0\x8b\x11\xd4\x69\ \x67\xab\x64\x03\x73\x2e\x6d\x8b\xc6\x3b\xcb\x11\x94\x88\x72\x24\ \xa9\xe4\xcf\x5a\x85\xfa\x63\xd7\x73\xd1\x7d\x8c\x4a\xac\xa8\x30\ \x02\x8a\xcf\x88\xd8\x6d\xc7\x02\xf8\x81\x97\xa8\x6c\x79\x74\x36\ \xda\x3a\x48\x7a\x96\x30\xe1\x8c\x78\xd6\xc8\x59\xef\x6d\x28\x60\ \x23\x0a\xa0\xd1\xac\x0d\xac\x2d\x47\xc9\x4b\xf5\x90\x2e\xdd\x89\ \x29\xf6\x89\x51\x2a\xba\xfc\x20\x8c\xc9\x88\x08\x43\xaa\x4a\x6b\ \x0d\xf9\x83\xc2\x84\x8b\xb6\xdf\x93\x0a\x23\xf9\xd9\x4a\xbe\x90\ \xc4\xd4\xa1\xe0\x12\x8e\x15\x02\x59\x3a\x6b\xa3\x59\x13\x16\xb4\ \x0d\x73\x2b\xee\xd9\xe7\x9b\x7a\xe5\xa4\x00\x8d\x8d\xa2\x51\x8f\ \x37\x97\xbd\xf7\x37\xe4\xf6\x9d\x96\xa0\xfa\x0a\x63\xb8\x12\x87\ \x7b\x1b\x94\x1d\x92\x51\x61\x69\xb6\x47\x37\x88\x3a\x49\x22\x7e\ \x0e\x5b\x6c\x99\x4e\x50\xc4\x00\x3d\x62\x30\x4a\xad\x8d\x93\x26\ \x8a\x13\xe4\xde\x6b\x9a\xb0\x3e\x41\x4d\xd9\x08\x4e\x06\xe5\x0d\ \x9e\x03\x14\xe2\x44\x68\xb9\x0e\x38\x6b\x03\x29\x38\x3a\x6c\xec\ \xc3\x0f\x8f\x67\x15\xb5\x49\xcc\x0d\xa2\xa2\x94\x84\xb9\x00\xbe\ \xfe\x0b\x53\xa9\x53\xb2\xe8\x33\xcc\x08\x54\xe0\x31\x47\x38\x6c\ \x95\xc4\xaf\x94\xc9\x37\x80\x87\x21\x38\xd9\x24\x8c\x65\x8e\x24\ \x46\xdc\x75\x9f\x4f\x58\x05\x22\x8f\xb1\xda\x51\x0f\xff\xda\x4a\ \xaf\x80\x94\x0d\xe3\x74\x30\x7e\x43\x7d\xf6\x1d\x06\x2f\x10\xda\ \x73\x5a\x79\xc4\xd6\x9c\x77\x24\x01\xb4\x78\x54\x9f\xa7\xeb\xd1\ \x42\x5e\xaf\x1e\xf6\x13\x50\xd1\xc3\x34\xf5\xcc\x81\x07\xef\x7b\ \x89\x0a\xc3\x73\xfb\x84\xdb\x80\x0f\x5f\xf8\x25\xb3\x6e\xc3\x4a\ \x11\x1a\xd4\x40\x39\x29\x2c\x6b\xba\x9a\x4f\x38\xf2\xf6\x0d\x7b\ \x27\x3a\xeb\xf9\xef\x59\x91\x3f\xc2\x20\x14\x8f\xe9\x8c\x28\x25\ \x72\x5f\x59\x8c\x64\x17\x50\x89\x65\x77\x04\x91\x4f\x39\x02\x26\ \x9c\xbf\xfd\x08\x15\x75\x58\xd5\x06\x8c\x70\x01\xde\x14\x0a\x54\ \xb8\xea\xdf\x07\xd3\x15\x8f\x32\xa8\x47\x4c\x19\x22\x0a\x9c\x90\ \xb3\xaa\xd4\xf1\xeb\x37\x09\xb2\x8f\xe7\xb4\x66\x0e\x4e\xf4\x68\ \x65\x5d\x2b\x07\xad\x6c\x05\x2a\x10\xee\x70\x62\x27\x38\x01\x1e\ \x48\x14\x39\x13\xda\x8a\x25\x29\xb3\x21\x59\xe2\x24\xab\xe0\xc9\ \x08\x75\x00\xcb\x48\xac\x36\xd0\x2d\x25\x5d\x40\x36\x1e\xe4\xfe\ \xe1\x15\x75\xa5\x88\x55\xb0\xa0\x4a\x43\xcc\x4d\x73\x52\x26\x20\ \xf5\x11\x66\x18\x36\xfc\xdc\x9b\x9a\x55\xaa\xf2\x69\xe4\x4f\x7f\ \x29\x80\x2d\xac\x88\x45\x39\x26\x4a\x8b\x6d\x83\x9c\xe7\xf4\xc7\ \xc0\xb1\x90\xa5\x8c\x4a\x14\x4e\xd6\xca\x42\xb2\x66\x89\x0b\x8a\ \x67\x31\x0c\x62\xe6\x98\xc8\x5c\xf9\x10\x15\x01\x2c\x4a\x89\x74\ \xc3\x09\xd9\x8c\x05\x0a\x25\x0b\x4c\x82\xba\x86\x24\x38\x3d\xad\ \x6e\x75\x49\x90\x24\xbe\xc0\x87\xfd\x29\x92\x94\x8a\xaa\x63\x01\ \x33\x44\x28\xd2\xa4\x2e\x6a\x4f\x0b\x5c\xa8\xfa\x94\x3f\x84\xf0\ \x61\x55\xbe\xd8\x48\xeb\x4a\x99\xcb\x45\x2d\xce\x8e\xbd\x11\x1a\ \x69\x08\xa3\x97\x7f\xc5\xa9\x54\xe6\x98\x5b\x20\xcd\x87\x10\x82\ \x7c\x81\x7a\xba\x74\xa6\x94\x7c\xb8\x02\x47\x0e\xb1\x7d\xe5\xe0\ \x93\x0d\x91\x44\x97\x28\x92\x89\x6f\xcf\x32\x9f\x5d\xa2\x06\x01\ \x5c\x3e\x93\x9c\x15\x3a\x65\x01\xfd\xc3\xc1\x0b\x76\x2d\x61\xc7\ \xc1\xa6\xca\x82\xc9\x49\xfd\x95\x93\x9e\x51\x52\x9c\x8e\x50\xc1\ \x8e\x5a\xad\x67\x36\x2a\x34\x8d\x9d\x36\x70\x80\xf2\x49\x82\x4d\ \xbc\x4b\xd9\x38\xeb\x99\x50\x5e\x9d\x60\x05\xb5\xb3\xcd\xef\x23\ \x79\xf4\xb4\x24\xb5\x81\x13\x83\xd9\x1d\x26\x53\x86\x32\x34\xf9\ \x41\xa1\x1d\x35\xa7\xec\x4a\x78\xaf\xdd\x71\xe5\x1d\x82\xe2\x60\ \x59\xb8\xa6\xc2\x94\xa1\xc9\xa3\x2d\xa5\xd0\x3d\xb7\x73\x22\x84\ \xc0\x43\x28\xee\x83\x15\x1b\x95\x39\x8c\x08\xb9\x94\xa7\x0b\x95\ \x66\x51\x38\xf8\xb4\x87\x70\x30\x30\x0c\x4b\xd0\x51\xcf\x82\xd0\ \x9e\x2e\xb5\x31\xe7\x54\x4f\x49\xde\xc1\x15\x78\x10\xaa\x59\xf1\ \xfc\x66\x82\x76\xca\x54\xad\x4e\xe7\x9e\x58\xc9\x97\xf9\x86\xc7\ \x41\x92\xc5\x53\x12\xbe\xa8\x84\x52\xb7\x9a\x56\x9f\xf8\x50\x0f\ \xf8\x79\xd0\x30\x90\x54\x55\xf5\x2d\xec\x1d\x1c\x55\xeb\x5d\x1d\ \xf3\x3f\xd9\x90\x11\x49\x84\x49\x5f\x9c\xe0\x8a\x57\xc1\xe6\xd5\ \x0f\x27\x81\xab\x73\x90\x18\xa7\x77\x64\x75\xb0\x8d\x5d\xab\x1f\ \x0a\x03\xd7\x4c\x8a\xa5\xa8\x5d\x43\xab\x63\x31\x0b\x34\xc8\x46\ \x2d\x96\x08\x61\x6c\x66\x41\xab\x93\xb2\x1d\xd6\xa0\xa3\x0c\xed\ \x69\x45\x1b\x0f\xfb\x54\xae\x0e\x76\x45\xed\x6b\x73\xa2\x08\x3f\ \xc8\x25\x4d\xb0\xb5\xad\x68\x0d\xb1\x81\xcf\x96\x32\x20\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x87\xff\xff\xff\xff\xff\xff\xff\xff\xff\x90\x89\x48\xff\xff\xff\ \xff\xff\xff\xd8\x88\x8d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5e\xc8\xf6\xff\xff\xff\xff\xff\xff\x5e\x8a\x41\xde\x93\ \xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5c\x02\x94\x57\xa8\xe4\xff\xff\xff\x13\x28\xa9\xd6\xc9\ \xdf\xff\xff\xff\xff\xff\xff\x0f\x27\x68\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x8d\x68\xa6\xf5\x95\xb6\xff\xff\xff\xff\ \xff\xff\x9a\xf2\xfc\xf9\xaf\xba\x51\x68\x5d\x13\x29\xe1\xff\xff\ \xff\xff\xff\xff\xfb\xc8\xe5\x4d\x68\xf8\xff\xff\xff\xd9\xe7\xf8\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x23\x45\xe9\x97\xc8\xfa\x91\ \x49\x52\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x93\x68\ \xf7\xff\xff\xff\xff\xff\xff\xff\xff\xff\x79\x88\x3b\xd9\x91\xf3\ \xb3\xa8\x72\xf9\xe8\xf0\xf6\xb2\xf1\xb7\xc8\xf0\xff\xff\xff\xb7\ \xb4\xf3\xfb\x8d\x5f\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6c\x6a\ \x23\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7a\x8d\x6f\xff\xff\xff\ \xff\xff\xff\xd6\xd9\xee\x6d\x69\xe6\xff\xff\xff\x95\x94\xf4\x39\ \x56\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x74\x89\xf7\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5b\xb8\xeb\ \xba\x8e\xf4\x97\xb1\xf8\xff\xff\xff\x04\x0d\xda\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x44\x27\x28\xfb\xfd\xfa\xff\xff\xff\xb7\xd8\ \xfa\x6e\x68\x64\xff\xff\xff\x7a\xe8\xfb\xda\xae\xf7\xfa\xd8\xeb\ \xfa\xcf\xa6\xff\xff\xff\xd1\x49\x67\xb3\x68\xeb\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x32\x49\xeb\x7c\x96\x45\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4e\x29\x67\xff\xff\xff\ \xff\xff\xff\xb3\x0f\x13\xff\xff\xff\xff\xff\xff\xbc\xc7\x94\x96\ \x38\xd4\x72\x12\xa6\xf5\x27\x25\xff\xff\xff\xff\xff\xff\x78\xc8\ \xf9\xff\xff\xff\xff\xff\xff\xb3\x69\x9d\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xe9\x55\x97\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf9\xa7\x85\xff\xff\xff\xff\xff\xff\x76\xa9\ \xf7\xb9\xf3\xfc\x27\x1d\x91\xf9\xeb\xb8\x3a\x63\xf5\x91\x6f\x69\ \xff\xff\xff\xac\x16\x64\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf7\x91\x8d\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xf3\x77\x5a\xd6\x39\x72\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xd7\xd8\xa5\x44\x1c\xb8\x99\xd8\xfb\xb7\ \xb8\x7e\xff\xff\xff\x41\xb6\xee\x7c\xb2\x7c\xff\xff\xff\x0b\x18\ \x9c\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x76\x28\xff\xff\xff\ \x17\x35\xa0\x12\x78\xa8\xff\xff\xff\xff\xff\xff\xff\xff\xff\x19\ \x36\xe1\x58\x76\xfb\xff\xff\xff\xff\xff\xff\x90\x78\xf4\xff\xff\ \xff\xff\xff\xff\x48\x5b\xf6\xff\xff\xff\xff\xff\xff\x68\x7a\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb0\ \x78\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x7d\xd6\xfb\xff\xff\xff\xff\xff\xff\x75\x57\x68\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfc\xb7\x8b\x7e\xfa\xfc\xff\ \xff\xff\x96\x97\x4f\xde\x98\x95\xff\xff\xff\x97\x98\xb5\xff\xff\ \xff\xb9\xb8\xb5\xff\xff\xff\xd9\xfb\xfc\x7d\x98\xb5\x6f\x78\x28\ \xff\xff\xff\x7e\x97\xf9\x91\x5a\xfa\xff\xff\xff\xb4\x57\x32\xff\ \xff\xff\xff\xff\xff\x54\x99\xe3\x79\xb8\xf8\x31\x7a\xcb\xff\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x24\ \xc8\x88\xd1\xc2\x87\x10\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\ \x6a\xa4\x68\xe8\x8e\x21\x87\x1b\x43\x8a\x1c\x49\xb2\xa4\xc9\x93\ \x11\x19\xe9\x78\xe4\xce\x9d\xac\x8f\x28\x63\xca\x9c\x49\xb3\x66\ \x48\x43\x39\xd2\xc9\x91\x13\x2e\x47\x11\x8f\x36\x83\x0a\x1d\x4a\ \xb4\x24\x23\x43\xe9\x92\xa6\x5b\xc1\x14\xd4\x1b\x46\x77\x1a\x82\ \x2c\x4a\xb5\xaa\x55\xaa\x8c\x48\x29\x5d\x0a\xaa\x6b\x53\x49\xf9\ \x64\x49\xbd\x4a\xb6\xac\xd9\x91\x38\xb7\xae\x00\xc5\x74\x45\xd2\ \x15\x6f\xe0\xb9\x23\x75\x74\xea\xd9\xbb\x78\xf3\x1a\xbc\x23\x47\ \x6d\x3a\xb6\x6d\x73\xad\xc8\x95\x2b\x5d\xcf\x5c\xf9\x3e\xda\xd5\ \xcb\xb8\x31\x51\x43\xee\xde\x2e\x75\xbb\xd6\xad\xe0\x37\x83\xd5\ \x82\x82\x17\x76\xac\xe3\xcf\xa0\x51\x32\x7a\xd4\xb6\x74\xdb\xa5\ \x84\x09\xbb\x7d\xbb\x56\x5e\x1b\x76\xb1\x3c\x87\x9e\x4d\xdb\x22\ \xd4\xd2\x6c\x01\x27\x95\x93\x2b\x1c\x61\x39\xab\x9b\x82\x72\xdd\ \xa6\x0d\x8b\x56\xb1\x60\xd6\x5e\xce\x3c\x21\xd4\xae\x5e\x4f\xef\ \x5e\xc0\x8b\xcc\x4e\xd6\x5d\x89\x17\x2f\x6e\x24\x06\x9d\xba\x0d\ \x9b\xfe\x8b\x5f\xce\x28\x96\x3c\xe8\xba\x95\xca\xe1\x65\xcc\xd8\ \x82\xca\x2b\x7c\x6b\xdf\x4e\xbf\x38\xa7\xa8\xb2\xc7\xeb\xd7\xcb\ \xa8\xf8\x79\x79\xe7\x45\xa7\x13\x7b\xbc\xc8\x31\x1c\x80\x5d\xd5\ \xa7\x60\x7d\x06\xc4\x82\xdf\x7e\x10\xde\x25\x0b\x80\x14\xfa\x87\ \x20\x28\x3a\x2d\x00\x1c\x80\x0b\x76\xb8\xa0\x11\x2c\xc4\xa6\x5c\ \x84\x24\x12\xc5\xc8\x07\x01\xce\x67\x21\x60\x5e\x1d\xe8\xe1\x8b\ \xdb\x19\x41\xc7\x77\x52\x2d\x56\xe2\x8d\x27\x19\x82\xde\x7f\xc4\ \xb9\x46\x21\x82\x4d\x71\x08\xe3\x90\x6d\x18\x61\x80\x58\xf9\xe1\ \xa8\xe4\x46\x8c\xe4\x83\x5e\x8b\xd9\xfd\xe8\x63\x80\xc3\x11\x69\ \x65\x91\x0d\x8a\x68\xe3\x92\x5c\x4a\x64\x08\x3c\x6b\xa1\xd7\x16\ \x74\x52\x5a\x28\xe4\x95\x56\x82\xc8\x09\x26\x47\x75\xe9\xa6\x44\ \x8c\x20\xf1\xa4\x57\xc0\xe5\x16\xa6\x8a\x68\xe6\xc9\x1d\x1d\x75\ \x3c\xb8\xe5\x9b\x6e\x32\x62\xc0\x70\xd9\x15\x9a\x5e\x5f\x7f\xa1\ \x69\x84\x8c\x7a\x76\x18\x5b\x92\x80\x76\x69\x08\x3b\x14\xee\xd8\ \x46\xa5\xbb\x19\xa8\x9d\x8f\x1f\x1a\x01\x0f\x0b\x46\x34\xea\x61\ \x0c\xb1\x24\x17\x5e\xa4\x5c\x32\x22\x0b\x0d\x17\xb6\x46\x9f\x6b\ \xfe\xd0\x35\xb5\xdd\x7f\x0a\x1a\x31\x97\x01\x1f\x84\x2a\x6a\x87\ \xa2\xb4\xb1\xc4\x12\x0f\xa2\x8a\x23\x23\x92\xcc\x59\x61\x7d\x95\ \x56\x79\xa9\xb2\xdb\x59\x01\x87\x08\x6c\xb0\xd3\xeb\xae\x0a\xf6\ \x2a\x8a\xb5\x75\x70\x92\x9c\x62\x7f\x0a\x5b\x1b\x23\xbd\xdc\xe9\ \x1f\x8c\xc7\x1e\xbb\x9d\x3b\x22\x88\xa0\xc3\x07\xd4\xf2\x7a\xad\ \x28\x75\x64\x5b\xaa\xaa\xdc\x7a\x3b\x1e\x23\xe2\xe2\xd9\xa8\x11\ \xcf\x8a\x40\xca\xb4\xed\x6e\x77\x6d\x1b\xf0\xd6\x81\x8e\xb6\xb1\ \xe5\x53\x6a\x54\xf8\x75\x6b\x2f\x63\x83\x9a\xab\x2f\x9a\x1f\xb0\ \x01\xad\x01\x01\xd3\xf7\x2e\xbc\xe8\x2c\x51\xaa\xc7\xa5\x86\x1c\ \x4b\x3e\x0d\xd5\xfb\xf0\x67\x8c\xbc\xf1\xe3\x81\x52\xce\xe7\x72\ \x87\xf0\xa4\xcb\x06\x3c\x0b\x5a\xdb\xe8\xb5\xd9\x82\x1c\xcb\xaf\ \x3a\x37\x94\xcf\x1d\x3f\xdf\x11\x95\xc9\x27\xe3\x85\x2f\x99\xb1\ \x92\xb9\x32\xcb\x67\xd6\xd7\x2f\x1b\x2c\x54\x4b\xf0\xd4\x00\x7b\ \x38\xed\xb5\x07\x73\xc2\x33\xcf\x21\x37\x49\xb2\xc8\x3b\xff\xca\ \xad\xc3\x45\x0b\x05\x55\x5f\x4d\x99\x36\x26\xd2\x77\x9a\xcb\x1d\ \x29\x32\xb3\x53\xed\xbb\x79\xc2\xab\xf5\x12\xe8\xe4\xdd\x31\xfe\ \xd8\x21\x6f\xcd\x77\x3e\x89\x81\x57\xb6\x55\xe0\x52\x06\xdf\x64\ \x93\xb5\x0d\x58\xdb\x4d\x4f\x91\xae\x08\x18\x6b\x4c\xf5\xc0\x43\ \xe2\xac\x35\x27\x9c\xa0\x63\xb0\xd6\x7d\x87\xfd\x6b\xc8\x80\x87\ \x1e\xba\x21\x89\x35\x3c\x78\x51\x5f\x26\x4e\x65\x74\x51\xfa\xb7\ \x78\x8b\xf3\x15\x21\x73\xe4\x02\x53\x4d\x70\xd5\x73\x73\x8c\xb9\ \xde\x59\x6f\x7d\x37\xe8\x80\x03\xed\xf5\xcf\x80\x93\x0e\x78\xc9\ \x90\x9e\x7e\x12\xb1\x89\xb7\x86\xe0\xf3\x2e\xcb\xa3\x76\x76\xdb\ \x55\x7c\x71\xed\x1b\x6f\x6c\x35\xce\x9a\xc7\x6b\x70\xf7\xbd\x73\ \xad\x30\xc9\xa4\x0f\x0f\xf4\xf1\xa2\x07\x0f\xde\xa9\xca\x2f\xaf\ \x15\xa2\x5c\x11\x9a\xe2\x82\xc9\x8a\x5b\x1c\x0d\x2d\xa4\x4b\xbb\ \xb5\xd9\xd3\x3d\xb7\xf7\xef\xf2\x9e\xf7\x7a\xe7\xa0\x85\x8d\xac\ \x78\x3a\x20\x1e\xd0\xce\x97\x40\xc0\x95\x2a\x74\x23\x53\x55\x5d\ \xda\x47\x92\xa3\x44\xa6\x2f\x3b\xe9\xcb\x93\x5c\x75\x29\x3c\xfd\ \x88\x3e\x46\x80\x9b\xbf\x74\x95\xbd\x3a\xd0\xcd\x66\x1a\xeb\x9e\ \x09\x03\x28\x40\xce\x05\x4d\x61\x0b\x4c\x8c\x0c\x81\x76\xc0\xf4\ \x05\x8f\x64\xe3\x33\x40\x96\x3c\x42\x36\x0a\xa6\xe4\x0e\xfe\x5b\ \x51\xcb\x0a\x02\xe4\x3c\xb7\x29\x68\x3e\xee\xb0\x98\x0e\x6e\x51\ \x9c\xfe\x69\xaf\x6a\x38\x8b\x57\xc1\x02\x18\x3e\x07\x09\x4d\x68\ \xc4\x33\x1e\xfa\xce\x47\x3c\x1b\x8a\x2e\x16\x3a\x2c\x02\x3b\x38\ \xc1\x0e\x03\x04\xae\x87\x3e\x44\x48\x56\x96\xa2\x99\x28\x29\x0d\ \x7a\x44\xb2\x82\xc5\xd8\x80\x0e\xec\xf5\xef\x76\x93\x03\x20\x0b\ \x0f\xa6\x33\x2b\xfe\xec\x28\x38\xbc\xa1\x03\xbd\xf8\xc5\xd0\xe9\ \x30\x8c\xec\x28\x82\x01\x1e\x60\x80\x8f\x28\x26\x8d\x13\x31\xc4\ \x23\xd8\xa8\x94\x30\xdd\x09\x69\x85\x92\x18\x9e\x1c\x37\x33\x12\ \xde\xee\x89\x4d\x8c\x22\xff\xa2\x78\xb7\xcf\x2d\x2c\x31\x86\x48\ \xa0\x16\x21\x38\xbe\x91\xb9\x92\x90\x80\x33\x00\x29\xc2\x68\x80\ \x22\xc0\xe3\x01\xa4\x20\x87\x0e\x84\x36\x41\x48\x2e\x24\x1f\x41\ \xc4\x8e\x70\x58\x44\x28\xa5\xb1\x6c\x41\x56\x20\x47\xb4\x6a\xf7\ \xc9\x27\x8a\x32\x85\x97\xc3\x1c\xe7\x16\xa6\x12\x42\xd2\x30\x16\ \x92\x18\x19\x58\xc0\x02\x38\x1d\x34\x30\x74\xa4\xc8\x47\x38\x67\ \x59\x84\x07\x3c\xa0\x25\x27\x70\xc7\x39\x0d\x20\x09\x49\xf4\xd2\ \x97\x05\x61\xc4\x14\x82\xd9\xbc\xe0\xac\x6d\x4e\x99\xfe\x6c\x5a\ \x1b\x3e\x40\x0e\x52\xb0\xab\x89\xcd\x5c\x61\x00\xfd\x67\xb9\x5f\ \xe5\x6d\x9a\x4d\x8a\xe0\xcf\x6a\x38\xbe\x7c\x64\x33\x9b\x83\x0c\ \x67\x37\xbd\xe8\x4d\x52\xcc\xd2\x1d\x06\x48\xa4\x24\x48\x91\x4e\ \x25\x78\x54\x09\x1f\x70\x67\xf2\x28\x68\x88\xd5\x54\x72\x6d\x6e\ \x81\xd2\x8e\x92\x96\xb4\xf9\x84\x50\x07\x72\x23\x98\x11\x44\xb1\ \xa8\x28\xea\x71\x72\xa2\xe0\xdd\x41\x3d\xe6\xb5\x07\x7a\xf1\x80\ \x10\x75\x28\xe0\x24\x2a\xd1\x04\x1a\x35\x1f\xde\x4c\xaa\x0e\x66\ \x39\x80\x73\xba\x83\x1c\x70\x98\x87\x3b\x90\xf0\x01\x2b\xb0\x4a\ \x1e\x75\xc8\xe6\x3b\x7d\x08\x4c\x21\x86\xa9\x98\xf8\xe4\x11\x11\ \x5b\x0a\xc2\x22\xf8\xb3\x48\xa2\xa0\x43\x5a\xd7\x2a\x40\xca\xb1\ \x50\x80\x7b\x4b\xd8\x1d\x40\x57\x43\x86\x82\x25\x9c\xdc\x44\xaa\ \xe8\xc2\xa9\xd4\xbe\x56\x94\x14\x92\x18\x80\x2c\x4f\x00\x07\x67\ \xc0\xe3\x03\x34\x30\xc2\xb1\x68\xd0\xce\xad\x9e\x8e\x11\xee\xb0\ \x27\x7c\x8a\xd8\xb2\x1d\xa5\x68\xac\x4d\x33\xc2\x07\xd0\x91\x56\ \x01\x7a\x76\x85\x02\x9b\xe2\x4c\x73\x8a\x9c\xb9\xce\xf5\x81\x35\ \x3c\x5f\x0d\x49\x31\x32\x33\x8a\x13\xa9\xde\x7c\xfe\x6d\x3e\x9e\ \xd0\xd7\x27\xc0\x36\xa9\x16\x25\x45\x4b\x5a\xa2\x04\x2b\xe8\x2a\ \x59\x8f\x78\xc4\x27\xe6\xf2\xc8\xc7\xc2\x63\x4e\xd2\xb1\x6c\xa5\ \x9c\x77\xa9\xe6\x5e\x88\x59\xc5\xf9\x80\x0e\x35\x17\x03\x83\x7d\ \x16\x60\x38\xbb\xd6\x68\x8f\x23\x32\x8f\xcd\xf5\x85\x83\x14\xaa\ \x19\xc7\x29\xd4\x89\x02\x6e\x00\xdd\x4c\xea\x6b\x49\x91\x54\x72\ \x88\xd3\x00\xee\x60\x87\x3b\xe0\x01\x0f\xdf\xfa\x08\x14\xa9\x09\ \x6e\x38\xf6\x9b\x8b\x1c\xe8\xe0\x25\xec\xf3\x56\x43\x50\x74\xdf\ \x58\x49\xf6\xab\x4f\xd2\xe7\xb2\x64\xc5\x9d\xa7\xe6\xa3\x0e\x7c\ \xca\xdc\xee\x62\x40\x53\x9c\x5e\xad\x0e\xad\x30\xe5\xaf\x32\xfc\ \x4a\x41\x9a\x71\xbc\x60\xfc\x70\x88\x45\x67\xd4\xbe\xea\xb2\xbd\ \x4b\xb5\xa8\x3b\xca\x09\x0f\x25\xb4\x98\x55\x34\xc0\x6f\x0e\x1e\ \x11\x8e\x47\x2c\x80\xc6\xc0\x59\x81\x1c\x16\x30\x0f\x55\x06\x18\ \x50\xe5\x39\x13\x8f\xbc\x82\xb8\xc9\xe4\x53\xc1\xe7\x19\x4c\x2e\ \x40\xd1\x60\x36\xac\xcb\x60\x2c\xc8\x9c\xe6\x2a\xec\xbf\x50\xa2\ \x83\xc3\x3c\x6b\x05\xe6\x7c\xda\x45\xf1\x0e\x00\x8c\x82\xd5\xa1\ \x24\x0c\x10\x66\xc0\xc2\xf6\xb6\x25\xd6\x81\xfe\x6d\xc7\x09\xd8\ \x01\x48\xa2\x25\x72\x51\x02\x12\xde\xe0\x94\x37\xa4\xa6\x1f\x64\ \xb0\x0e\x53\x76\xbc\x80\x70\xec\x78\x19\xe4\x20\x87\x21\x0c\x81\ \xaa\xf2\xcc\xea\x83\x4b\x33\x32\xb3\x38\x75\x44\x50\xf0\x06\x14\ \x34\x88\x6e\x38\xd9\xc1\x82\xef\x69\x4e\xad\x04\x93\xe2\x85\xa3\ \xec\xb1\x25\xb4\x22\xc3\x5c\x83\x28\x17\x15\xc6\xda\x31\x1f\xf2\ \xd4\x0d\x6a\x90\x44\x65\xab\xd7\xbe\xc2\x76\x00\xb9\xd5\xed\x6e\ \xe1\x81\x84\x5c\x60\x06\x33\xb9\x58\x00\x3f\x78\x81\xe3\x9d\x2c\ \xe0\xd7\xd4\xe1\x85\x3f\xf8\x41\x97\x1f\x0f\xeb\x0e\x2b\x72\x11\ \xb2\x2e\xdb\xdc\x57\x4d\x29\x7a\xca\xf2\xd4\x52\x0d\xc0\x89\xea\ \xaa\x55\xad\x10\x86\xf0\xd5\x8c\x70\x65\x69\x62\x0e\x64\x77\x30\ \x63\x87\x01\x07\x16\x32\xa3\xba\x8c\x65\x94\xa5\x2c\x63\x01\xd8\ \x6d\x16\x55\xbd\xea\x65\x6f\xa0\x75\x2b\x6b\x25\xe4\xc0\xd6\x4b\ \xee\x4a\x38\x78\xb1\x6b\x5e\xf8\xbb\xcf\xbe\xf6\x37\x2f\xa8\xc3\ \x01\x0e\xe8\x80\x68\x25\x82\x4a\x07\x59\x44\xab\x57\x35\xdb\x42\ \xce\xfe\xa0\xb3\xab\x57\x51\x4e\xac\x70\xa6\xd5\xad\x43\x68\xe3\ \xc5\xbb\xe3\x7c\xfa\x95\xd8\x04\x2a\xb9\xfe\x4f\xcd\x8e\x31\xb2\ \x03\x1d\x25\x4f\x37\xaa\x67\xe9\x50\x6e\xa6\xf9\xa8\xde\xec\xa7\ \x6e\xd3\xe9\x8e\x1c\xdc\x5b\x35\x83\xa1\x4e\x7b\x04\xae\x21\x5f\ \x03\x9b\x3a\x79\xe6\x87\x3f\xbc\x59\xdc\x08\x31\x02\x4c\x85\x42\ \xb0\xb2\x9f\xdd\x41\x21\x57\x4a\xc1\xdb\xb9\x05\x7b\x0d\xa0\xb9\ \x50\x15\x2c\x06\xa1\x9a\x29\x9f\xaa\xcb\x02\x74\x74\x3d\xca\x1c\ \xa6\x21\x44\xb9\xd9\x4e\x76\x66\xf4\xe4\x5f\xcf\x1b\x0b\x52\x5e\ \x72\x31\x9b\x9d\xb5\xef\x0e\x9d\x24\x94\xaa\xcb\x7e\xb6\x64\x1e\ \xfd\xe8\x87\x19\x1e\x91\x03\xdf\xe8\x58\xe0\x80\xff\xb9\x86\xa8\ \x03\xf4\xea\x14\xfc\x04\x1c\x2d\xfa\x78\x4a\xba\x93\x28\x8d\x95\ \x7a\xe3\x5a\x9a\x8a\x9e\xab\xaf\x18\x28\x52\x17\x75\x98\xe9\xa2\ \xaa\xbb\xa8\x4c\x57\x5a\x80\x5d\xc7\xdc\xc7\x1f\x1a\xe2\x90\x8f\ \x99\x14\x29\x87\x07\x27\x58\xd0\xf5\x18\xa4\x9d\x8c\x6d\x77\x7b\ \x3b\xb7\x39\x72\x97\xeb\x80\x0d\x83\xd0\x01\x1c\x74\xfb\xe6\x79\ \xe4\x20\xef\xfd\x20\x0d\x5b\xc2\x11\x6c\xc0\x0f\x5c\xf0\x03\x1f\ \x78\x9e\x8f\xff\x08\x0e\x4c\x41\xd0\x68\x64\x4c\x93\x74\xbc\xa1\ \x43\x93\xe9\x88\x53\x3a\x26\x7d\x72\xfe\xa3\x22\x23\x58\x81\x05\ \xba\xa8\xfa\x8c\x4c\xb8\x28\xb5\x1a\xa1\x0e\x9f\xaf\x6e\x0c\xbc\ \xce\x7a\x4e\x7c\xdc\xf4\xa7\x1e\xb3\xa9\x4b\xce\x7a\xf4\xa3\xbf\ \xd2\xac\x8f\x72\xca\x51\xad\x43\x33\x6f\x93\x9d\xb0\x95\x7b\x75\ \x27\x6b\x39\x80\x04\x56\xd0\x5f\x39\x00\x1c\x0a\x48\x7c\xc9\x17\ \x78\xc6\x97\x67\x0b\x90\x67\x64\x10\x81\x79\xc6\x01\xfc\xc0\x0f\ \xb2\x00\x60\xcb\x61\x08\x8a\x05\x18\x1c\x52\x60\xfa\xe4\x32\xda\ \xb7\x7d\xd0\xa5\x59\x45\x50\x04\x2c\x40\x53\x38\x83\x75\x5a\x87\ \x7e\xeb\x57\x69\x7c\x62\x7f\x51\xe6\x7e\xad\xa0\x43\x21\x16\x7b\ \x66\xd7\x0a\xf4\x87\x0e\xae\x27\x83\x69\xf7\x75\x25\xa7\x48\xfc\ \xa7\x6e\xe4\x96\x0f\x27\x90\x54\x83\xe0\x64\xe4\x30\x05\xf3\x15\ \x69\xf2\xf0\x06\xf7\x36\x18\x3a\xa6\x21\xc4\x17\x6c\xc6\x60\x7c\ \xfe\x26\x81\x12\xf8\x6b\xcb\x57\x1d\x34\x06\x16\x1a\x18\x1a\x8c\ \x10\x2a\x49\x26\x3f\xcf\xc5\x34\x9a\x34\x82\x1d\x42\x03\x56\x00\ \x0f\xa8\xf7\x01\xbd\x22\x23\x10\x16\x2a\xae\xb7\x7a\x3c\xc8\x83\ \x75\x10\x03\x5c\xe7\x75\x28\x40\x83\x35\x78\x48\x3a\x98\x6a\x3a\ \xa4\x65\xf5\x57\x5d\x47\x70\x7f\xfe\x1f\x90\x7f\xec\x00\x0f\x6c\ \xc7\x76\x19\x25\x66\x42\xb5\x4d\x4a\xe5\x64\x70\x30\x55\x64\xf8\ \x06\xfd\x20\x18\x83\xb1\x5f\x3d\xb7\x63\x02\xd7\x1e\xa0\xc8\x73\ \xcb\x97\x67\xc1\xb5\x00\xc1\xe7\x67\xe1\x40\x06\xfc\xa0\x03\x82\ \x36\x22\xfc\x41\x3b\x97\xc5\x32\xc4\x74\x7d\x87\x56\x26\x1e\xd2\ \x86\x25\x07\x0f\x1a\x27\x53\xd7\x86\x7e\x9c\x80\x02\x95\xf6\x82\ \x99\x97\x87\x5e\xb7\x7a\x7d\x88\x02\x3a\x88\x6e\x06\xf0\x87\x83\ \xc8\x0e\xc0\x28\x83\xf7\xe7\x75\xf4\x47\x69\x6b\x97\x72\xd5\xe8\ \x88\x00\xe8\x6e\xe2\x24\x6f\x85\x05\x0f\x4e\x68\x73\x4b\xc6\x14\ \x35\xb6\x5f\xd7\xe1\x89\x9f\x18\x8a\xd5\xa1\x85\x37\x66\x63\xa4\ \x98\x8a\x42\xc7\x6f\x2d\xd0\x8a\xd2\xf7\x4f\x66\xf2\x70\x00\x22\ \x1c\x50\xd7\x74\x46\x74\x3f\x72\xf1\x29\xda\xa6\x82\x32\xc2\x02\ \x9e\x16\x8c\x79\x58\x90\x72\x98\x7f\xab\x97\x7f\xc8\x78\x48\x2a\ \x97\x51\xc0\x18\x8c\xf8\x87\x90\x6b\xb7\x7a\xd3\xb8\x76\xf9\xa7\ \x88\xe9\x36\x7b\x1a\x39\x66\x27\x80\x78\xee\x50\x55\x56\x60\x73\ \x74\xd6\x15\xb9\xa0\x5f\x39\x96\x29\xc0\x86\x85\xfe\xc6\x01\x59\ \x18\x81\x16\x98\x8e\x02\x47\xfe\x06\x2b\xc9\x0f\xe4\x60\x0a\x8a\ \x77\x15\x77\x60\x05\x57\x02\x75\x93\x97\x8f\x1f\xe0\x0e\x92\x00\ \x0f\xde\x41\x53\x5a\x77\x30\xc8\x81\x02\xe3\x57\x88\xd6\xf6\x82\ \x17\xd9\x7e\xce\x88\x6a\xc8\xd8\x87\xf9\x77\x7f\x5f\x37\x83\x94\ \xc6\x0e\x0f\xc0\x76\x73\xb0\x88\xd4\xa8\x7f\x2a\x97\x4d\x78\x75\ \x48\x1c\xe5\x0e\x65\x40\x6b\x73\x46\x28\x2b\x30\x63\x64\x80\x63\ \x3a\x41\x19\x19\xc4\x67\xbc\xc0\x92\xbb\x16\x8a\x17\x28\x74\x17\ \x58\x1d\x03\xc7\x8e\x80\x67\x0c\x83\x60\x0a\xc6\x66\x22\xe6\x31\ \x31\x44\x22\x98\x1d\x62\x05\xee\x00\x07\xb8\x02\x45\xdc\x15\x0b\ \x28\xc0\x82\x3d\xa8\x7e\x90\xc9\x02\xae\xc7\x02\x47\xa0\x90\x38\ \x98\x95\x59\xf9\x90\x32\x48\x8d\x7c\xc8\x09\xe6\x84\x95\x2c\xf0\ \x00\x16\x49\x91\xaa\x67\x91\x5f\x19\x89\x06\x50\x06\x63\xd9\x12\ \x66\x00\x0f\x6f\x10\x63\x5d\xa1\x96\x1c\x30\x81\xe1\xa0\x13\x7e\ \x46\x18\xfb\x95\x9b\x11\x28\x6c\xa0\xd8\x9b\xc6\xe0\x0f\xc6\x70\ \x97\x80\x27\x97\x02\xe7\x0f\xe4\x70\x02\x37\x69\x36\xf0\x40\x98\ \x19\xf3\x2a\x87\x89\x7a\x9d\x27\x53\x18\x56\x2a\x28\x80\x0e\x74\ \x70\x7e\xae\xa7\x87\x05\xfe\xe9\x1d\x79\xa8\x87\xd9\xd9\x7e\xe6\ \x74\x48\x28\x30\x9e\xac\x47\x8d\x93\x79\x91\x9e\x89\x02\x25\xa7\ \x9e\x98\xc9\x9e\xa6\xd9\x88\x0d\xf2\x50\xe1\x36\x66\x65\x54\x06\ \x06\x40\x73\x06\x28\x0f\xb0\xf9\x7b\x32\x79\x7c\x3b\x46\x7c\xfd\ \xf0\x6b\x34\x56\x63\x14\xc8\x1e\xbe\x79\xa0\xed\x01\x9c\x74\x09\ \x93\x53\x70\x05\x07\xf7\x97\x32\xa1\x2a\x3b\x69\x25\x12\x47\x1f\ \x86\xc9\x51\xec\x90\x2b\x45\x42\x07\x57\x86\x1c\x98\xb0\x04\xde\ \x31\x23\x92\xd9\x7a\x10\x36\x23\x74\xe0\x1d\x7a\x38\xa2\xac\x37\ \x9e\x2a\x97\x99\x5d\xc9\x7e\x4d\xa9\x9e\xad\xd0\x9e\xa6\x19\x9a\ \x28\xf0\x99\x57\xc9\x0e\xcc\x68\x76\x98\x30\x66\x65\x90\x48\x73\ \x71\x02\x52\x85\x04\x48\x10\x63\x34\xd0\x5f\x64\x30\x9b\x13\x08\ \x6c\x8f\xa0\x85\xc1\xf5\xa4\x05\xca\x9b\xa0\x58\x0c\x22\x40\xa5\ \xc5\xe0\x9b\x57\xda\x1e\xef\xe8\x0f\x06\xca\x97\x83\x16\x14\x0a\ \x37\x2e\x19\xa3\x34\xb3\x42\x03\x87\x59\x89\xec\x70\x9d\x33\xb5\ \x98\xb1\xd0\x0a\x30\xd8\x9d\xac\x67\x6d\xd7\x96\x56\x5b\x97\xa2\ \x8a\x18\x9e\x8b\xe4\x8c\x2c\xf0\x90\x4d\x89\x90\x83\xf8\x00\xec\ \x79\xa3\x58\xb9\x9e\xfe\x83\x4a\x69\x80\x3a\x9e\xe3\xd9\x0a\x28\ \x70\x6a\x8c\xa4\x9a\xee\x40\x73\x66\x50\x80\x36\x97\x77\x10\xd8\ \x92\x50\x0a\x81\x6b\x99\x9b\xc4\x17\x74\x07\x5a\x0c\x56\xea\xa9\ \xc6\xe0\xa9\x59\x8a\xa0\xed\x41\x0e\x60\x1a\x35\x6d\x00\x1d\x19\ \xd3\x32\xfa\x89\x04\x53\x30\x47\x06\x10\xa2\xe7\xe7\xa1\x6d\x9a\ \x87\x26\x1a\x91\xb6\xaa\xa6\xd7\x69\xa2\x29\x3a\x99\xec\x79\x48\ \xe6\xf4\x90\x89\xd8\xa7\x0b\x39\xa3\xea\xd9\x87\x80\xea\x8c\x98\ \xe9\x8c\x83\xda\x7e\x7b\xba\xa7\xc0\xc8\x48\x66\x87\x51\xbb\xb5\ \x5b\xf3\x70\xad\xfc\x50\x70\x12\x18\x97\xc2\xa9\xa4\x49\x3a\x81\ \x34\x96\x1a\xe1\xc0\x01\xa0\x78\x81\xa4\x0a\x8a\x55\x1a\xaa\x53\ \x2a\xaa\x84\x66\x13\x63\x58\x1c\x2c\xd2\x9c\xfa\xd8\x0b\xf9\x13\ \x37\xe5\x47\x07\x21\x32\x57\x20\x5a\x7e\x10\xd6\xab\x30\xa8\xa6\ \x32\x22\x23\x5b\xa7\xa2\xa1\x29\xad\x8b\x24\x9a\xf9\xd7\x83\x08\ \xa9\x9e\x7f\x8a\xa8\xc7\x7a\xac\x79\x2a\x9a\xe4\x39\xb1\x7b\xfa\ \x8b\x8b\x5a\x76\xea\x24\x17\x73\x41\x0d\x2d\x30\x0a\x2d\xf0\x9b\ \xd9\xba\x92\x0a\x5a\xae\xfc\x10\x9c\xc1\xa9\xad\x64\x50\x63\x25\ \x9b\xa5\xfc\x36\xfe\xb2\xe5\xda\x9b\x57\x5a\xa5\xa2\x4a\xa5\xed\ \x4a\x13\x61\xba\x70\xfb\x48\x2d\x6f\x50\xaf\xe9\xa2\x03\xa8\x3a\ \xab\x98\x50\x2a\xa0\xb2\x27\xea\x17\x8c\xb2\xba\x28\xf7\x5a\xb4\ \xae\x97\x95\x6e\x17\xac\x92\x99\x87\x31\x3a\x9e\xcb\x68\x00\x51\ \xe9\x8c\x0f\x3b\xa3\x54\xab\xa7\xc0\xc8\xa7\xc6\x18\x95\x3a\x64\ \x4e\x2d\x21\x09\x53\x40\x58\xfe\xd0\xb1\x1f\x6b\xb2\xbb\xc6\xa5\ \x08\x3a\xaa\x24\xdb\x1e\x59\xca\xa5\x05\xf7\x92\xfd\xc6\x6f\x9d\ \xca\xae\x60\xaa\x93\xf4\xc3\x68\xed\x02\x0f\x16\x23\x33\x92\x00\ \x30\x74\x80\x1c\x3b\x83\x75\x1b\x5a\xa2\x93\x69\x6d\x48\x9b\xb8\ \x27\xfa\x9d\x6b\xc7\x48\xa6\x96\x95\x71\xca\xb8\xcf\xba\xa8\x0d\ \x72\xa3\x8a\x3a\x9e\xbf\xb8\xa7\x81\xa8\xa8\x80\xda\xa7\x2b\x3a\ \xb9\x37\xaa\x43\xd6\x2a\x55\xd8\x7a\x81\x23\x2b\x6c\x5d\x9a\xa5\ \xa2\xaa\xae\x6c\x9b\xae\x5a\xaa\xa4\x2c\xb9\xad\x5d\xda\x9b\x55\ \x5a\xb3\x34\x61\x08\x91\x26\xaf\x1d\x82\x04\xfd\x02\x2d\xa4\xa0\ \x2b\xdc\x11\x03\x9f\xc6\x02\x00\x6b\xa2\xdb\x49\xbc\x33\xd2\x79\ \x48\x1b\x99\xac\xb7\x95\xd2\xfa\xa3\xac\x57\x99\x76\xba\xa2\x52\ \x5b\x83\x51\xfe\x79\x8c\x98\xeb\xb0\x87\x9a\x7f\xd2\x5b\x99\x95\ \xb9\xb5\x2b\xfa\x00\x65\xe0\x54\xe9\x64\x06\x48\x30\xa9\x5d\x78\ \x97\x2c\x49\xb7\x58\x6a\x0c\x22\xa0\xae\x32\xab\xae\xaf\xab\x85\ \x41\x87\xba\x9d\x6a\xbb\x11\x3a\x28\x5f\x95\x8f\xbb\x12\x42\x8f\ \xe3\x64\x78\x0b\x42\xd9\x66\x7e\x02\x3b\x23\xd9\x99\xab\xca\x2b\ \xb0\xde\xb9\xa2\x58\x29\xad\x25\x27\xbd\xdf\xf9\xbd\x7b\xca\x48\ \x8c\x79\xb9\x88\xea\xa6\x5b\x8b\xa8\x17\x29\xbd\xc4\x8a\xa8\x47\ \xa0\x9e\x18\x75\x02\x53\x00\x06\x53\x15\x63\x76\x56\x63\xfd\xb9\ \x6b\x4b\xba\x9b\xe6\xca\xba\x54\x9a\x2e\xaa\x0b\x8a\xfe\x10\xbb\ \x32\xc9\x01\x6a\x8b\xb6\xa0\xc8\x06\xd1\xc7\x24\xc7\x65\x38\x90\ \xd7\x9c\xd6\x03\x2d\xee\x40\x07\x1e\x92\xb8\x48\xbb\xab\xdd\x69\ \xa2\xd1\x59\x24\x32\xb2\xc0\xf9\x67\x4e\xe6\x34\x07\x91\x7b\x9e\ \xa0\x5b\x83\x98\x90\xa8\x17\x9c\xc1\x8a\xfa\xac\x94\x19\xbd\x9f\ \xeb\xbd\xd0\x3a\x9e\xe6\xa4\x04\x2d\xd1\x02\x2d\x30\x0f\x66\x40\ \x67\x4a\xb6\x5f\xfd\x30\x9b\x05\xb7\x6b\x34\x2c\x93\x08\xfa\xbe\ \x31\x0b\xc3\xe7\x4a\xaa\xa6\x5a\x13\x47\xc1\x02\xab\xb3\xbf\x1f\ \xa8\xb7\xfe\x68\x82\x2e\x17\x03\xbc\x1d\x42\xc8\x49\xeb\x9d\xc9\ \x9b\xc0\x4d\x7c\x9e\xa2\x09\xc5\xa2\x79\x04\xde\x79\x9e\x19\xbc\ \x90\x98\x40\xb5\x0e\xab\xc1\x93\x2b\xc1\xe0\x3b\xc9\x61\x7c\xa3\ \x50\x0c\x94\x27\x40\x0d\x53\x60\x06\xf8\x96\x5f\xcd\x57\x70\x06\ \xfa\x8e\x32\x59\xb2\x3b\xc7\xca\x2e\xec\xbe\x2f\xcc\xb6\x57\x3a\ \xcb\x6e\xdb\x1e\xf8\x1b\x13\x8c\x80\x09\xd3\x92\x7d\xab\x93\x4f\ \x79\x42\x03\xca\x04\xc0\xdc\xb1\xc4\x9d\xc2\xaf\x71\x8a\xbc\x48\ \x3b\xcc\x8b\xeb\xbd\x28\x30\x07\x37\xba\x95\x90\xbc\xc0\xdf\x7b\ \xc1\x06\x50\xc9\x95\x7c\xc9\x13\xab\xc1\x5b\xfb\xc1\xd8\xdc\xcd\ \x8b\x34\xbe\x45\xe0\x0e\x0d\x8a\xc6\x6f\x60\x67\x4f\xfa\x7b\x78\ \x46\xb7\xac\xcc\x6f\x16\x88\xb6\xae\xcc\xba\xbe\x29\xb3\xb3\x1c\ \xcb\x33\x5b\x0c\x60\x4a\x3b\x11\xf7\x78\xad\x93\x26\x1f\x90\x84\ \x3a\x70\x04\x31\x42\xc8\xf5\x91\xcc\x1b\x6a\xa7\x88\xac\xa6\x4c\ \xbc\xcc\x94\xe9\xc9\x9d\x3b\xa2\x76\xea\xb0\x3a\x54\xc9\x77\x90\ \x4d\x96\xec\xc1\xd4\xeb\xc1\xdd\x9c\xd1\x57\xac\x43\xf6\xf9\xa8\ \x95\x28\x27\xf8\x75\xce\xbd\x61\x63\x2c\xfc\x9b\x04\xc2\xa5\xef\ \x5c\xfe\xc7\xaf\x4b\xae\x53\x0a\xbf\xe9\xea\xa9\xd0\xe2\xae\x27\ \x42\x2e\x88\xc6\x9c\x0a\x12\x03\x8c\x34\xb4\x30\x92\x75\x09\x6c\ \xc0\xbd\xaa\x87\x89\xac\xc0\x7a\x58\x99\xac\x07\xa8\x52\x1c\xcd\ \x31\x70\x04\x44\x2d\xc6\x95\x2c\x09\x98\x70\x07\xd6\xec\xb0\xde\ \xcb\xcd\x0e\x0b\xad\x61\x7c\xc5\x58\x8d\x02\x58\xdd\xa3\x1c\x4d\ \x0a\xce\x20\x55\x66\x00\x9b\x84\x11\xae\x82\xd1\x1b\xfb\xe5\x6f\ \xbb\x36\xb7\x2c\xe9\xb2\x2f\xdc\x1e\xeb\x9b\xba\xb0\x4c\xcf\xc5\ \xb0\xc3\x1a\xd1\x24\xce\xd5\x74\xba\x9b\xd0\x02\xcd\x1d\x4c\x1c\ \x23\x08\xbd\x27\x8b\xdb\xab\x41\xbd\xc8\xcc\x4c\x04\xcd\x8c\x02\ \xde\x9b\xd4\x0a\x29\xc6\xd5\x2c\x09\x13\x0d\xd5\x15\x7d\xc9\x4a\ \x8d\xcd\x54\x8d\x8c\x98\x70\xd9\x98\x1d\x0b\x3d\xda\xd4\xf0\x45\ \x73\x39\x50\xce\x6c\x51\x92\x79\xf7\x08\xbd\x11\x1f\xc1\x55\xc3\ \x71\xe9\xc6\x2c\x89\xa5\xae\xbb\xb6\xb0\x0c\xcf\x74\x9d\x11\x8c\ \x40\x29\x77\xed\x36\x36\x4d\x2d\x46\xcc\xc4\x04\xbd\xbc\x81\x7d\ \xd0\x42\xad\xd4\x7b\xfa\xc1\x50\xac\xd4\x4e\x8c\xd8\x52\xdb\xd8\ \x57\x84\xd9\x19\xbd\xdc\x88\x8a\xd9\x19\x28\x0b\x97\xdd\x0a\x9c\ \xfe\x2d\x09\xe7\x44\xc6\xf6\x76\x73\xa2\xad\xad\x97\xda\xa4\xa6\ \x48\x81\x10\xd8\xa4\xed\xbc\xae\xb4\x0c\xb3\xf0\x6c\x0c\x3a\x10\ \xdb\x18\xf1\xae\xb5\xad\xb7\x39\xab\x27\x59\x37\xcc\x02\xbb\xc4\ \x86\x5c\xc0\x3e\x6d\xa2\xc9\xbb\xcc\x93\xed\xcc\xfa\x8d\xd8\x4a\ \xfd\xbd\xdc\x5c\xcd\xec\x74\x45\x42\x73\xc5\xe3\x49\xe0\x18\xed\ \xb0\x86\x5d\xe0\x5a\xfd\xd4\xb2\x60\x0a\xb2\x00\xd5\x8a\x7a\x6a\ \x65\xe0\x0e\x1e\x75\xbe\xd8\x9d\x8a\x28\xdb\xa4\x4f\xba\x96\x64\ \x30\xda\xbe\x51\xd6\x04\x77\xc7\x77\x7c\xcb\xb8\x9c\x27\xb7\x0d\ \x42\x01\xab\xb8\x3d\xad\xc4\x7b\x7d\xc4\x27\xfa\xe2\x40\x9d\xc8\ \x06\xcc\xcc\xc2\x6d\xd8\xc4\xbd\xd0\x88\xfa\x00\xed\xd4\xa3\x57\ \x34\x66\x59\xad\xe0\x86\x6d\xe3\xcd\xbd\xe0\xce\xfd\xdc\x19\x88\ \x09\x16\x7c\xa3\xf0\x30\x07\x72\x06\xda\x5e\x31\xd6\x1b\xde\x8e\ \x4f\xaa\x5f\x64\x5d\x63\x71\x89\xba\x13\x38\xbb\xbe\x79\xc3\xfe\ \x80\xde\x17\x51\x1e\x7b\xad\xbb\x74\xf0\xc1\x94\xf9\xe2\x4a\xbc\ \xa1\x06\xfc\xd7\x20\x94\xe6\x8b\x6b\xe6\x8a\x3b\xd4\xdf\x6b\xd8\ \xe6\x34\xd5\xa1\x99\xe0\xc8\xed\xd8\xbb\x64\xe0\x0a\x8e\x02\xfe\ \x09\x1e\xe4\x7c\xae\xd5\x05\x8e\x09\x46\x8e\xd9\xca\xfd\x69\xcd\ \x3c\x07\x73\xf0\x01\xbd\x05\x69\xd1\x01\xe5\xe0\xcd\x0f\x6b\x19\ \x7c\x53\xee\xe1\x4d\xba\xce\xff\x16\x74\xc0\x39\xb2\x73\xd9\x1e\ \x3a\x00\xa6\x44\x9c\xd7\xba\xdd\x1d\xd2\x1d\x0b\x94\xe9\x1d\x29\ \xde\x06\x81\x7d\xa2\xca\x8b\xe2\xbc\x9a\xea\x83\x8d\xdf\x35\xce\ \xdf\xdf\x0b\xc5\x44\x30\x7b\x13\xad\x03\x0e\x0e\xd5\x98\x40\x04\ \x04\xee\xe7\x09\xfe\xc1\x41\x7e\xc5\xbc\x9e\x81\x0e\x0e\xdd\x41\ \x7b\xd9\xd5\x0c\xc5\x89\x3e\x07\x48\x60\x06\xfd\xd0\x77\xb8\xe9\ \x1b\x34\xd6\x7c\x75\x19\xb7\xda\x3a\x9b\xfd\xe0\x1b\xc4\xc7\xca\ \x70\xcb\xe1\x5d\x38\xb2\x23\x6b\x0a\x9e\x0e\xea\x09\x4d\x07\x5a\ \xad\xd9\xc0\xa8\x87\x3d\x9d\x9d\x47\x3b\xd0\xe5\x57\xc0\xbe\x8d\ \xe6\xde\x39\xd9\x09\x2e\xeb\x7c\x6e\x00\x44\xb0\x48\xc8\x8d\xeb\ \x1b\xc0\x06\x1b\x60\x0a\xff\x75\xe4\xe3\x69\xe3\xc0\x0e\xe8\x7f\ \xee\xdc\xaa\x12\xb4\x0b\x2e\x9e\x0f\xf0\x01\xcc\xae\x04\xf3\x70\ \x81\xb3\xd9\xa4\x79\x16\x7c\xb2\x69\x81\xa6\x2b\x74\xda\xdd\x1b\ \xaa\x78\x85\x2b\xd9\xe1\x4f\xda\x0f\x68\x8d\xba\xc0\xd9\xfe\x02\ \x5e\x6e\x1b\x9c\x40\xee\x8b\x8c\xaf\x9a\xdd\xa6\x6e\x1a\x03\x7e\ \xfd\x9d\x40\x4d\xcc\xf0\xbd\xab\xae\xae\xb8\xf8\xfd\xe7\x44\x40\ \xdc\xc0\xfe\x00\x44\xe0\xf3\x7c\xde\x4e\xa6\xd0\xb7\x32\x03\x2d\ \xff\x6e\x0a\x97\xdd\xdf\x47\x10\xec\x97\x4d\x04\x86\x7d\xd9\x47\ \x7e\xd9\x52\x7b\xc5\x0f\x30\x07\xf4\xf5\x01\xe7\xfb\x09\x05\xf7\ \xa4\x18\xcf\x01\x16\x4f\xf1\x49\x5a\xb2\xec\x8c\xca\xe1\x1d\x97\ \x5c\xb8\x96\x37\x66\x8a\x2c\x19\xbb\xec\x91\xc7\x35\x61\x08\xa8\ \x2a\xaf\xdd\x91\x7f\x27\x7a\x04\xd2\x1d\xb4\x8c\xf9\xe9\x45\x22\ \x83\x31\x6e\xea\x20\x14\xea\x8b\x1c\xa2\x44\x7c\xc8\x05\x4f\xf0\ \x49\x7d\x04\x40\xef\xf4\x3a\xee\xd8\x8b\x40\xf4\x8f\x23\x33\x86\ \xb0\x08\x48\x5f\xd1\xbe\x2e\xf5\x45\x2e\xf5\x39\xbe\x95\x89\x7e\ \x96\x36\x17\x0e\xe2\xd8\xc6\x12\xef\xf5\x1d\x1e\x7c\x78\x96\xa4\ \xb3\x29\x74\x99\x8e\xe5\xd2\x4e\xbf\x1d\xbe\x8e\x61\x2f\x0b\xee\ \x7a\x07\x64\xd8\x9c\x20\xc2\x4e\xad\x70\x04\x22\xaa\xd9\x73\x75\ \xfb\xba\xd2\xc4\x75\x00\xc1\x31\xde\xe2\xba\x5d\xdf\x08\x5d\x7e\ \x43\xcd\xe7\x41\xce\xf3\x4b\xcf\xe7\x0f\xa0\x0d\x92\xfe\x80\x07\ \xed\xd4\xf8\x8f\xff\xbf\x1b\x60\x08\xfd\xce\x06\xb9\xde\xf4\xc8\ \x0f\xe8\x5b\x2d\xf0\xc6\x6d\x4e\x87\x75\x58\xe5\x8c\x73\xb9\x91\ \xdd\x5a\xaf\xf5\xc1\x27\xae\x35\xd6\xce\x2d\x2b\x6c\x37\x56\x63\ \x60\x5f\xfa\x92\xde\x0f\x9f\x30\x0f\x60\x1a\x0b\x62\xfe\x00\x57\ \x64\x00\xc4\x2b\xbc\x98\xf0\x11\x00\x81\x09\x05\x9d\x36\x05\xe9\ \xc4\x60\xc1\xa2\x4e\x0c\x86\x0d\xe9\x18\x69\x03\xb1\xe0\x44\x23\ \x15\xe9\x5c\x8c\x71\x51\xa2\x45\x3a\x47\x3c\x12\x31\x40\x04\xc5\ \x11\x86\x47\x50\x10\x21\xf2\x40\x9b\x01\x3c\x92\x24\xe1\xb9\xb3\ \x88\xcd\xcc\x0d\x35\xd9\xe8\x90\x74\x87\x8d\x08\x11\x6c\x0c\x6d\ \x30\x65\x4a\x16\x26\x4c\x28\x51\x10\x45\x8a\x14\xc5\x52\x14\x0f\ \xca\x3c\x50\xf2\xc1\x8c\x99\x1c\xe1\x1e\x5d\xcd\xb5\x62\x05\xa8\ \x15\xb9\x72\xf5\xfb\xc4\xe1\x53\xbf\x1c\x39\xbc\x7a\x0d\x47\x86\ \x0c\x2f\x0e\xbc\xd6\xf2\xe3\xf5\xc8\xea\xd5\x7e\x6a\xc9\x70\xe0\ \xc0\x0f\x2f\x3f\x38\xff\xfc\xfe\x05\x1c\x58\xf0\x60\xc2\x7e\x19\ \x31\x62\x37\x51\xf1\x62\xc6\x8d\x23\xd2\x31\x60\xc8\x94\xa1\x7c\ \x28\x32\xb2\xb8\x33\xd9\x50\x2c\x16\x1b\x11\xa2\xfe\x73\x78\x30\ \x06\xc9\x8a\x12\x19\x73\xd4\x68\xba\x62\x49\x91\x28\x89\x90\xfc\ \x88\x02\x0f\x4b\x96\x2f\x59\x66\xae\x69\x68\x11\x26\x92\x74\x88\ \x64\xd6\x71\x47\x96\x29\x9a\x92\x95\x26\x25\x6a\x40\x60\xd3\x07\ \x0f\xdc\xcd\x71\xe7\x6e\xde\x58\xbc\x1c\x16\x60\xcd\x3a\xf7\x11\ \x99\x7e\x8f\xce\xaa\xed\xbe\x40\xed\xdc\xeb\xe1\x72\xc9\xe9\x2a\ \x27\xd7\xa3\xbc\xc6\xdc\xf3\xf3\xc7\xa8\xf0\x7c\xfa\x84\x19\xdd\ \x71\x9c\x5f\x3f\x64\xe2\x86\x64\x71\xae\x08\x33\x43\x0c\xd1\xc1\ \x80\x23\x4a\xa3\x83\x05\x4e\x58\x60\xe8\x21\xd1\x1a\x2c\xad\xb1\ \xd2\x8c\x48\x8d\x22\x0a\x47\x3b\x49\x24\x8f\x58\x23\x02\x13\x6d\ \x88\x98\x2d\xc4\x10\x75\x30\x05\x28\x03\x1e\x32\x22\x86\xd7\x3e\ \xa0\xe3\x03\x49\x36\xa0\x49\x28\xe4\x8e\x6b\xaa\x29\x22\x94\x30\ \x20\x3a\x33\xe6\xa9\xab\x2e\xee\xee\x02\x8f\x8c\xed\xea\x7a\xc4\ \xac\x5c\xee\xd2\xcb\x2d\xbc\xc8\xb8\x4e\x2e\xf4\xb4\xca\x6a\xbd\ \xb5\xdc\x33\xc6\x9f\xf8\xea\xc3\x12\x4b\x46\x30\xd1\xaf\xcb\xc5\ \xf8\xf3\xc9\x90\x3b\x5a\xc9\xc8\x08\x16\x74\x90\xcc\x00\xcb\x30\ \x62\x61\x29\x16\x52\xc3\x08\xc2\x08\x25\xbc\xfe\xe8\xa1\xc5\x2e\ \xfc\x08\xa5\x0d\xf3\x0c\x91\x25\x3c\x30\x09\xb1\x43\x12\x75\xc0\ \xe3\x88\x38\xed\x34\x33\x33\x53\x48\x5c\x24\xa8\x19\x8f\x7a\x60\ \xa9\x94\x1e\xc8\xa2\x0c\x77\xa8\x02\xab\xbb\x47\xfa\x61\x2b\x2f\ \xf8\xf8\xd1\x0b\x2f\x4d\x73\xc8\xcb\x9f\xea\xf2\xe2\x05\x2e\x32\ \xc2\x31\x2f\x17\x56\xad\x22\x83\x1f\x2a\x8d\xd1\x41\xbe\x2c\x6f\ \xb5\x8f\x06\x2f\x77\x85\x0c\xcd\x30\x5b\x49\x88\x21\xcc\x74\xc0\ \x84\x1d\x06\x19\x42\x21\x16\x35\x63\xd8\x88\x42\x8c\xea\xac\x48\ \x42\x04\xa3\xb5\xb0\xa3\x23\x5c\xdb\x13\x25\x0f\x3b\x6c\x09\x8f\ \x6e\x5d\x6b\x49\x11\x59\x0a\xdd\x50\xb5\x6b\x3d\xc2\x04\xc6\x0d\ \x86\x4a\x4a\x4d\x35\x97\x7a\x0a\x9e\x39\x90\x40\x22\x87\x4f\xd4\ \xa2\xab\xad\xb6\x66\x35\x06\x54\x5e\xc8\xca\x81\xbd\x25\xd5\x92\ \xf5\x3d\x55\x4f\x4d\x35\x55\x2a\x0d\xc1\xb5\x61\xc1\xf0\xdb\xb5\ \x4b\x23\xd8\xd1\x61\xa6\x01\x63\x41\x41\x41\x60\x13\x62\x2a\xa1\ \x84\x0c\xb8\xc3\x80\x37\x55\xe3\xa8\x41\x3b\xa5\x75\x96\xda\x88\ \xf0\x34\x2a\xdb\x0e\x3f\xf4\x56\x12\x40\x41\x0a\x14\x13\x49\x14\ \xb9\x43\xc3\x93\x57\x43\xf1\x01\xe2\xd8\xfe\x30\x65\xc6\x0e\x4d\ \x9a\x03\xaa\x39\xac\xb0\x02\x09\x33\x3e\xe1\xe7\x93\xb0\x38\x00\ \xb2\x2d\x59\x0b\x06\x95\x03\xef\x72\xc9\xa1\x9f\x81\xc9\xf0\x67\ \x56\xf8\xf8\xed\x57\xe1\x62\x18\x76\xb8\x6c\xc4\xda\x90\x27\x62\ \xc7\xcc\xcc\xc7\xe2\xcd\x0c\x00\x96\x93\x8c\x11\x4a\x88\x1d\x03\ \xee\x96\x24\x9f\x90\x0f\xb4\x10\xc1\x8c\x34\x5a\xdb\x59\x14\x15\ \x63\x79\x24\x92\x30\x04\x11\x44\xe5\xee\xe9\xd6\x5b\xd7\xb4\xbd\ \xb9\x28\x66\x1f\x44\x34\x06\x03\xfa\x53\x84\x28\x99\x95\x93\xf4\ \x81\x39\x0c\xad\x88\x06\x7b\xc3\xea\xc7\xc7\x47\xc4\x6b\x4b\x61\ \x59\x53\xe5\x80\x2c\xad\x3f\xd5\xab\x60\xb0\xf9\x35\x95\xd6\xb2\ \x6f\x37\xc4\x34\xb5\x19\x83\x6c\x90\x30\x95\x6d\x05\x85\x05\x17\ \xf4\x98\x85\x07\x5c\xca\x47\x87\xe0\x1e\x60\x56\x5a\xd1\x06\x3f\ \x0d\xb5\x3b\x53\x34\xc9\x23\x43\x47\xbb\x16\x0f\x10\xbd\x95\x45\ \x11\x45\x5c\xfa\xf3\xb5\x8f\x6c\x06\x74\x24\x3d\x0f\x94\xc8\xb7\ \x3b\x60\x34\x8e\xa8\xd6\x50\x98\x83\x88\x39\x9a\x6f\x83\x86\x37\ \x02\x2e\x0b\x2d\xaf\xb6\xc3\x8b\x2d\x5e\xfc\x91\x15\x00\x41\xf5\ \x35\x2a\xa5\xca\x1f\xbc\x98\x5d\x31\xfe\xa8\x04\x40\x1d\xdc\xae\ \x6c\x5c\xda\x9d\x63\x5c\x64\x08\x9f\xdc\x21\x16\xad\xc0\x60\xc7\ \x50\x60\x80\x07\xd4\x2d\x6f\xca\x33\xd0\xc9\xa6\x77\x28\x82\x44\ \xef\x59\xba\x6b\xc3\x41\xce\xd5\x9b\xd1\x80\xeb\x4f\x8a\xe8\x96\ \xf7\x24\xa1\x27\xd6\x78\x0b\x50\x32\xc3\xc3\x48\x36\x72\x10\x14\ \xc8\xe2\x27\x86\xc8\x9c\x24\x4e\xd2\xb9\x32\x7c\xc0\x0a\x10\x91\ \x07\x28\xde\xa0\xc4\xad\x64\xa5\x2b\x9b\xb2\xcb\x5d\xfe\xd7\x35\ \x63\x28\xb0\x5f\x54\x04\x60\xbf\x66\x47\x25\x05\xf2\xc5\x56\x0e\ \xbc\x15\x23\x38\x11\x41\x3a\x1d\xef\x0e\x67\x8c\xc5\x05\x33\xd8\ \x8a\x07\x18\x40\x12\x1c\x9c\x83\x01\x48\x41\xa2\xbd\xed\x6c\x7a\ \x19\x71\x08\x0a\x57\x06\xad\x3b\x61\xef\x35\x0f\x69\xe1\xf6\xbc\ \x05\x43\x18\xbe\xc4\x5b\xd6\x83\x8d\x49\x88\x20\x89\xee\xcd\x70\ \x20\x10\x61\xd9\xfa\x24\x73\x87\xe5\x9c\xc4\x29\x65\x88\x8a\x15\ \x68\x20\x8f\x24\x82\xc2\x93\x6f\xe8\x8a\x79\xae\xf2\xa3\xbb\x94\ \x0a\x8b\x02\x9c\x15\x07\x66\xa5\x40\x2b\xca\xce\x18\xe4\x00\x63\ \xc3\x18\x81\x02\x32\x4a\x8b\x6e\x09\x31\xc9\x52\x82\xd7\x1c\x52\ \xb8\x44\x8e\xbe\x5b\xd4\x40\xec\xfe\x48\x32\x8c\x78\x04\x70\x84\ \x13\xdc\x69\x46\xf3\xb9\x32\x05\xd2\x86\xde\xba\x83\xb7\xa4\x89\ \xad\x73\x99\x0f\x0f\x8a\xd0\xc1\xb8\x30\xf1\xb9\x3a\x61\x04\x13\ \x25\x5a\x54\x48\x4e\xc2\x82\x32\xe4\xa8\x0c\x48\x78\x43\x3a\x3d\ \xa9\x44\x57\x6d\xaa\x74\x74\x71\x67\x29\xc5\x52\x35\x53\x7a\xcd\ \x3d\x3c\xb1\x62\xd8\xe0\x62\x0c\xb2\xc5\x52\x4b\x77\xd0\x63\x2d\ \xab\x55\xa7\x5c\x36\xe7\x78\x73\x9c\x49\x42\x25\x01\x3a\x48\xaa\ \x6c\x65\x17\xc2\x9e\x08\x0b\x82\x1a\x14\x52\xef\x35\xcc\xb2\xa8\ \x34\xb5\x21\x4d\xc7\x3d\xce\xa3\x8f\xc3\x84\xf7\x74\xf0\x3d\x0d\ \xfd\xed\x08\x8c\x24\x96\xcc\x3c\x32\x12\x4b\x61\xd2\x88\xf6\xcb\ \x85\x27\xf7\xb7\xa9\x05\x74\xc7\xa6\x50\x0c\xcb\x58\xb2\x16\x16\ \xf8\x50\x71\x95\xf7\x14\x41\x3e\xab\xd4\x02\x7f\x86\x31\x16\x02\ \xe5\xdd\x11\x2d\x52\x12\x16\xb8\xf1\x8d\xce\xa9\xd8\x4e\x7a\xb2\ \x01\x03\xfc\xad\x59\x73\x82\xa4\x0a\x37\x24\xd1\x0b\x5d\xa4\x8f\ \x73\xe0\xe6\x6a\xae\x85\x12\xed\x91\xf5\xa3\x8f\x2b\xeb\xe3\x58\ \x12\xd2\x46\xfe\xb1\x23\x29\x31\xdf\x52\xae\xd5\x9c\x32\xc0\xe3\ \x03\x9b\xec\x64\x4c\x57\xf0\xfe\x06\xb4\x6c\x0a\x9e\xa5\xbb\x8b\ \xd3\x5a\xc7\x53\xb8\xb4\x67\x8b\xb3\x23\x6a\x51\xb5\x44\x4b\xa4\ \x4e\xf4\x03\x27\x20\x07\x39\x7a\xa9\xbc\x3b\x28\xcf\x14\x83\xc8\ \xc7\x09\xd8\x21\x09\xdf\xf1\xa4\x27\x3a\x60\x5e\x6a\x26\x34\xa1\ \x95\x95\x04\x91\x25\xdc\x63\x43\x74\x77\x10\xf9\xa1\x4f\x85\x27\ \xd1\x5e\x6c\x13\x97\x56\x17\x76\x54\x24\xb0\x75\x09\xa0\x8a\x92\ \xc8\x03\xc5\x60\x88\x20\x29\x43\x70\xa3\x82\xd7\x4e\xae\x13\x14\ \x5e\x09\xd8\x5f\xc9\x40\xd8\xaa\x0d\x10\x6a\x50\x03\x95\x7b\x0e\ \x68\x9d\x58\xf1\xeb\x8b\x8a\x2d\xcc\x61\x1a\x3b\x91\x0f\x90\xc3\ \xb3\x3b\x01\x6f\x78\x07\x41\x0a\xc8\x4a\x95\x27\x83\x10\xa2\x55\ \x97\xda\xcd\x09\x89\x66\xac\x7f\xa4\xc8\x41\xe6\x87\xda\x88\x1c\ \x01\xac\x18\xf5\x23\x59\x1d\x27\x5b\x8f\x72\xb4\xac\xe7\x02\xd7\ \x22\x5d\xa2\x21\xd0\xa9\x08\x05\x6f\x7c\xe3\x53\x94\xa0\x49\xe2\ \x16\x17\x94\x65\xb9\x4a\x55\xae\x82\xd3\xa6\xed\x85\x9e\xa5\x54\ \x4b\x5b\xc6\xc3\xaa\x05\x70\x80\x8a\xd7\xc5\xee\x60\xee\xb3\xdd\ \x36\x58\x81\x1a\x9e\x45\x71\x8a\x7b\xe2\x3b\xf3\xae\x78\x86\x1b\ \xfa\x5b\x43\xf0\x58\x26\xfe\x3c\xd9\x37\xb8\x9f\x6b\x28\x43\xc0\ \x4a\xdf\x16\xdd\x08\xbf\xf1\xd3\x2f\x47\x3f\x8a\x87\x8d\x5e\x73\ \x86\xaf\xc1\x96\x51\x40\x14\x52\x9b\xfd\x31\x45\x22\xd1\x86\x4b\ \x14\x6c\x44\x2b\xc8\x83\x06\x9e\x4c\x22\x5f\xb1\xb6\x9e\x77\x9e\ \x65\xc2\x80\x05\xec\xa9\x06\x58\x58\x0f\x43\xad\x55\x69\x21\x43\ \x3e\x40\x1c\xe2\xc0\x30\x22\xa0\xbb\xa3\xc1\x3c\x54\x3c\xe7\x9e\ \xb4\x98\x27\x37\x99\x21\x58\x99\x69\x5a\xec\xf5\x46\xab\xf1\x2b\ \x83\x36\xb4\x31\xbf\x89\xaa\x70\x0e\x1f\x30\x4d\x8b\xe6\xa0\x04\ \x82\x18\xc1\xbe\x40\x2e\x32\x6d\x03\x3c\x48\x6f\x7d\xe8\xac\xae\ \x79\x23\x4c\x0a\xa5\x42\x5f\xba\x44\x12\x4a\x38\xc2\x11\xed\x97\ \xce\x25\x9e\xc5\x48\x01\xab\x8e\x5c\xd0\x62\x95\x51\x8d\xb2\x2e\ \xa6\xb4\x92\x74\xa1\x46\x17\x32\xac\x99\xcd\x80\x61\x04\x89\x69\ \x30\x05\x3a\xf7\x3a\xc5\x6c\x38\xc1\x53\xe4\xd7\x5a\x44\x16\xbb\ \x21\xf6\xbd\x56\xa0\x7f\xe0\x8c\x43\x17\xfa\x03\x8b\x46\x2d\x1d\ \xe6\x90\x85\x39\x40\x44\xda\x7a\x26\x82\xa0\x2d\x8d\xe4\xd9\x72\ \x94\x71\x65\x2d\xb2\x6b\x8a\xf2\x38\x99\x21\x39\x27\x9e\x96\x44\ \x19\x0e\x8d\xc4\xe2\xfe\xae\xf3\x2c\xc7\x7d\xc4\x98\xfb\xd1\x2a\ \x57\xb1\xaa\xde\xaa\x96\x12\x02\x0f\x48\x40\x00\xa6\x8a\x1f\xb6\ \xbe\xf5\x3f\x18\x21\x0b\x12\x23\xa1\x05\xbe\x46\x78\x4f\xc8\xa1\ \x8d\xe0\x7a\x4e\x7c\x40\x8e\x1f\xa0\x3f\x07\x56\xf9\x05\xf7\x07\ \xf7\xc0\xb8\x12\x26\xf7\x81\x0f\x28\xa1\x0c\x56\x98\x08\x1d\x94\ \x10\x15\x88\x58\x61\xd1\xea\x2e\x43\xb6\x2d\xfd\x5e\xff\x5e\xd3\ \xe5\x65\x7d\xa6\x6e\x5d\x23\x9b\xa2\x3c\xe0\x0e\x83\xd8\x00\x7a\ \xa5\xbc\xee\x82\xa4\x8d\x93\x57\x36\xae\x4c\x5f\xa7\x17\x55\xab\ \xe7\x2c\xda\xf1\xca\x0a\xb6\xf3\x3f\xb8\x28\x4c\xba\x5e\x0c\xf8\ \x60\x0c\xc1\x82\xed\x1a\xe1\x13\x09\x47\x38\x1b\xc8\x91\xee\x1b\ \x53\xdc\x29\x0f\x40\x49\xa0\xf1\xf0\x83\x94\x07\x57\xdb\xce\xb8\ \x07\x2e\xfa\x70\x8f\x22\x4a\xdb\xe3\x59\x40\x74\x41\xac\xa0\x04\ \xb8\x47\xa4\xe3\x8b\x9e\x43\x70\x51\xf2\xb9\x6b\x45\x9a\x71\x8c\ \x93\xa1\x22\xb6\x1d\xdb\x3f\x69\x2f\x43\x37\x54\xc4\xcf\x36\x90\ \x0f\x6d\x38\xe5\xd0\x9a\xe4\x64\xe4\x39\x19\x74\x50\xf2\x95\x3d\ \xa0\xe2\x4e\xd1\xfb\x7a\x15\xf3\x58\x65\x01\x6e\xe9\x4e\x75\xab\ \xe4\x8f\x06\x46\xfe\x5d\x30\x6e\x6e\xac\xe8\x5a\xf0\x0b\xac\xdf\ \x79\x26\x28\x06\xb6\xa0\xd3\x0d\xd6\xe0\xd6\xfe\x04\xce\x38\x41\ \xee\x07\xa1\x88\x2b\x08\xda\x19\x81\x46\x7b\x1f\x70\x81\x8b\xde\ \x77\xbc\x0c\x59\x70\x46\x16\x40\x5e\x62\xba\x83\x9c\x06\x1d\x57\ \xc2\xc9\xd5\x3d\xbf\xf8\x45\xfa\x9a\xde\xc3\x3e\x0c\x3b\x5a\x78\ \xdd\x6e\x9f\x25\xb2\x80\x11\x1b\x36\xa0\x83\xc6\xbb\x94\xc1\x6f\ \x20\xae\x71\x4b\xbd\x95\xae\xf4\xe3\x53\x09\xbb\x9a\x7a\x86\xc4\ \xa4\x09\xcb\x25\x1c\x2b\x48\x8b\x87\xff\x77\x07\xd3\xb7\x19\x62\ \x02\xb5\x82\x79\x28\x06\x11\x60\xbd\xd6\x53\xb1\x50\x18\x04\x72\ \xc8\xbd\xdc\x63\x38\xe7\x28\x03\x49\x70\x87\xdc\xbb\x82\x7b\xb8\ \x82\xe1\xe3\x3d\x6d\x70\x86\xe4\x73\x86\x8b\xc3\x05\x34\xc0\x05\ \x19\x50\x02\xa5\xb1\x07\x6a\xa0\x86\x0f\x88\x08\x24\xc8\x02\x7b\ \xd0\x95\xb9\x1b\x39\x8f\x8b\x3e\xea\x23\x02\xb4\xc3\x38\x69\xca\ \x3e\xec\x03\x94\x96\x8b\x39\xed\x01\x14\x45\x58\x84\x9a\x58\x97\ \x0f\xd1\x33\x4d\xb2\x02\xbe\x22\xb5\x5c\x48\xa7\x98\x42\x42\x2f\ \xbb\x8b\x58\x83\x0b\x55\xc3\x3f\x1f\xb1\x0b\xce\x43\x42\xab\x48\ \x95\x13\xe8\xfe\xbf\xc0\x30\x04\x78\xd8\x24\x81\x32\x83\x01\x2c\ \x40\x03\x3c\xc0\x04\xbc\x02\x05\x3c\x01\x6d\xc8\x3d\x49\xd0\x86\ \x2c\x38\x81\x68\x18\x84\x3e\x18\x04\x5c\x08\x85\x68\xb8\x02\x67\ \xb8\x82\x68\xa0\xc0\x3a\xec\x03\x65\x70\x01\x1c\x00\x83\x21\x34\ \x03\x7b\x00\x03\x25\x28\x88\x37\xb0\x87\x2c\xa0\x01\x1a\x50\x02\ \x33\x68\x41\x97\x52\x34\x6d\xb8\x07\x45\xb8\x87\x0f\x29\xb2\xec\ \xf3\x16\xc6\xb9\xc1\x4b\xd4\xbe\xc2\x6b\x09\x9b\x19\x14\x45\xd8\ \x3b\x6e\xb2\x1f\x24\xf0\x0a\xbe\xe2\x8a\xb3\xe8\x8a\xe3\x52\x42\ \x5e\xf8\x1f\xf8\x3b\x8b\xa3\xab\x3f\xef\x40\x8f\x76\xea\x07\x2b\ \xbc\xc2\xbf\x30\x04\x52\x98\x82\x79\x78\x83\xb4\x81\x33\x39\x23\ \x40\x30\xf4\xb5\x41\x18\x84\x68\x88\x2c\x72\x10\xc6\xdb\x3b\x81\ \x41\x08\x85\x65\x1c\x46\x45\x10\xbe\x50\x70\x01\x65\xe8\x03\x39\ \xa4\x86\x68\xe8\x03\x17\x88\x86\x37\x30\x02\x1a\xf8\xc3\x37\x28\ \x08\x1a\xb0\x07\x33\x38\xc4\xa9\x48\xc4\x91\xb3\x82\x46\xc4\x38\ \xc6\x49\x39\xfd\xa2\x44\x1c\xc4\x84\x47\xc4\xa1\xed\xdb\x9e\x68\ \xd2\x93\x43\xa3\x83\x43\xb4\x9f\x4e\x5a\x22\xae\x60\xa2\x28\xe9\ \x8a\x76\xfe\xca\xb0\x59\x33\x0f\xad\xd8\x8a\x52\x7c\x95\x56\xf9\ \x47\x33\x00\xb8\x5b\x63\x04\x53\x38\x38\x11\x70\x00\x7e\xc8\x81\ \x4d\x7a\xb3\xc5\xb0\x82\x01\x14\x81\x41\xc0\x48\x60\xa4\xb3\x61\ \x24\x46\x04\x6c\xc3\x41\x28\xc0\x5f\x08\x85\x67\xfc\x05\x34\x40\ \x03\x17\x98\xc6\x2b\x00\x03\x30\xa8\xc6\x3e\xc8\x82\xb4\xa1\x01\ \x74\x92\x49\x74\xaa\x9f\xa9\x20\xc7\x23\x32\x39\x0c\xc4\xb8\x1f\ \xd8\x36\xb2\xf2\x9e\x45\xc0\x3e\x98\xe3\xa8\x68\x8a\x99\x99\x53\ \x24\x6c\x99\x1f\x2a\x3b\x44\xc9\x0b\xba\x56\xec\x0a\x28\x81\x12\ \x56\xb1\x3f\xad\xb1\x1a\x7f\x84\x92\xa4\x4b\x3a\x78\xa8\xc5\xbf\ \x60\x04\x1d\x68\x81\x16\x30\x86\x16\x70\x80\x5e\x30\xcb\x47\xa8\ \xb2\x8a\xe4\x46\x8c\x6c\x81\x8d\xe4\xc8\x39\x1b\x84\x2b\xa0\x86\ \x2b\xe8\x03\x11\x08\x05\xcf\xfa\x85\xbc\x0c\x85\xbc\xe4\xcb\x94\ \xd4\x02\x19\x00\x83\x2c\x30\x83\x2c\x58\x86\x65\x40\x82\x6f\xd4\ \x95\x6f\xec\xb9\x74\x32\x47\x79\x98\x3b\xe4\x43\xbb\x1f\xf0\xc9\ \x94\x03\xab\xec\x59\x84\x1e\x6c\x14\xef\xd9\xbe\x96\x7b\x9c\xea\ \xf1\xcc\x18\xf8\x80\x23\xe8\x38\x74\x02\x85\x06\x03\x85\xbc\x32\ \x45\xfe\xac\x2c\xc5\x7f\xe4\x1a\xe9\x12\x12\x23\xc9\x0a\xe3\xca\ \x05\x03\xe8\x4a\xbf\x30\x84\x21\x98\x82\x5e\x70\x80\xdd\xe4\x07\ \x07\x18\x4b\x63\xe8\x85\x5d\x6c\x0c\x6e\x7c\xc8\xa0\x2a\x4e\x60\ \x9c\x09\x61\xbc\x4b\xcf\x22\x07\x30\x70\x87\x2b\x18\x84\x5f\xe4\ \xcb\xe9\xcc\x4b\x94\x44\x83\x69\xa4\x06\xaa\x78\x83\x3f\x34\x83\ \x8a\xfc\x46\xf4\xa3\x81\xc7\xcc\x02\x0c\x94\x4c\x22\xd3\x3b\x70\ \xf1\x9e\x0d\xb8\xcc\xf5\xd4\xbe\x0c\x11\xb2\xce\x34\x1c\x8f\x38\ \xb4\x45\x53\x82\x1c\xa0\x8a\x77\x93\xcd\xf5\x28\x92\x56\xb4\x37\ \x82\xcc\x0e\x0f\x5b\x20\xb7\x10\x12\xac\xf8\xc7\x85\x64\xb3\xc3\ \x98\x82\xdd\xdc\x4d\xdd\xf4\x4d\xcf\x72\x00\x32\x10\x4e\x8a\xe8\ \x42\xb7\x1c\x84\xd5\x03\xc6\x9c\x23\x87\x7b\x88\xac\xe5\xb4\xcb\ \x2b\xb8\x82\xd5\x1b\x49\xea\xec\x4b\x94\xdc\x43\x19\xb0\x07\x24\ \xd0\x95\xfb\x49\xcc\xfc\xe0\x45\x6e\x2c\xc4\x2c\x80\x51\xc9\x94\ \x4c\x86\x5b\x47\xf4\xc4\x3e\xa1\xf4\x1e\x3d\x09\x32\xb3\x3a\x9f\ \xc3\x01\xab\x0f\xa0\x97\x7a\x31\x83\x22\xf1\xab\xb2\x30\xd2\xd2\ \xe9\x07\xaf\x00\x85\x80\xe9\x8e\x81\x74\x15\xaf\xe8\x30\x9f\xb2\ \xfe\x92\xae\xb1\x92\xaa\x31\xd0\x10\x63\x04\x43\x70\x00\x36\x08\ \xcb\x61\xd8\x4d\x63\x48\xb1\x16\xf0\x87\x5e\xe0\x00\x24\x28\xcd\ \x1c\xb0\xd0\x5f\x14\x81\x16\x88\x06\xe4\x1c\x04\x1d\x20\xbb\x40\ \x33\xc6\x04\x6c\x01\x72\xe8\x83\xbd\xc4\x4b\x11\x3d\x49\xeb\x8c\ \xc6\x3e\x58\x06\x33\xf0\xc6\xfa\x59\x51\xfd\x90\x07\x42\x04\x44\ \x18\x45\xbe\x7b\x98\x51\x6d\x3b\xcf\x21\x73\x1c\xeb\x19\x32\x6a\ \x4a\x24\x8e\x3b\xbf\xb2\x70\x1d\xab\x14\x8b\xd2\x19\x0b\x80\xc9\ \x9a\x51\xb1\xca\x05\x38\x48\xa7\xab\xa2\x62\x20\x55\x52\xed\xa7\ \x5a\x34\x84\x01\x18\x06\x11\x18\x86\x56\x75\x80\x61\x00\x53\x14\ \xab\x22\xcf\x6a\x81\x79\xa8\xcb\xa0\xda\xcb\xbc\x2c\x06\x38\x38\ \xce\x84\x63\x03\x6c\xca\x33\x25\x70\x86\x16\x14\xd6\x2b\x20\x40\ \x3d\x9d\x4e\x3e\xed\xd3\x68\xa0\x86\x89\xdc\x9d\x42\x9d\x8a\x96\ \xd4\x40\x19\xbd\x38\x45\x15\x34\x49\x45\xa4\xf8\xcc\x93\x8f\xb2\ \x9e\x65\x3a\xb4\xb8\x2b\xd4\xfb\xc1\x1f\xa6\xf9\x94\xc1\x12\x8b\ \xe5\xd2\xd4\xa6\x01\x15\x2b\x99\xb5\xd3\x59\x0b\x2a\x22\xd5\xa0\ \x32\xd5\xda\xfc\x07\x43\x58\x07\x7a\x28\x4b\xb3\x7c\x55\xb1\xfe\ \x5c\xd3\xb0\x8c\xd5\x39\xab\x4b\xbe\x2c\x86\x2b\x70\xcb\xac\x7b\ \xd3\x60\x93\x1f\xfa\x64\x91\xa4\xc9\x02\xe8\xb4\x4b\x64\x55\x56\ \x69\xd4\x82\x51\xa0\x06\x7b\x08\x54\xb5\xb1\x9f\x3f\x94\x56\x30\ \xc8\xc0\x8b\x2b\x4f\x22\xbb\x56\x1a\x8a\x13\x18\x2b\x89\x0c\x11\ \x9f\x6e\x7d\xb4\xa3\x41\xa2\x74\xc2\x9f\xd2\x19\xb3\x4c\x5d\x57\ \x7e\xb0\x07\xd8\xa1\x52\x7a\x0a\x15\x55\x74\x0f\xa1\x6a\x81\x53\ \xed\x3f\x46\xc8\x07\x5d\xf0\x83\x5b\x10\x05\x51\x48\x04\xdd\x6c\ \x55\x2f\xd5\xd7\x5e\x6b\x81\x5c\x65\xbd\x16\xb8\x53\x03\xdc\x3d\ \x49\xd0\xb3\x67\xc3\xa4\xa8\x40\x02\xab\xcd\x02\x6a\x28\x06\x11\ \x45\x83\x93\x74\x81\x3d\xc4\x01\x2d\x88\x86\x65\x00\x83\x4f\x40\ \x02\x5e\x8c\x18\x2b\xcb\x81\x14\x24\x41\x0d\xcc\x40\x41\x0b\xb4\ \x9f\xdc\xb3\xd5\x90\x31\xd3\x6a\x99\x62\x23\x02\x4c\x3a\x9a\x4d\ \x1a\xb5\xaf\xc8\x14\xb1\xc8\x8b\x9c\x02\x95\x65\x58\xd7\x2a\x1d\ \x33\x9a\x1d\x20\x78\x35\x86\xbb\x28\xbd\xae\x4c\x55\x3f\xd0\x85\ \xb4\x19\xda\x44\x28\xda\x05\x35\xcb\xde\x34\x4b\x5f\x24\xc0\x92\ \x54\x53\x92\xec\x55\x5f\x9b\x89\x37\x7a\x0d\xe9\x43\xbe\xfe\x2c\ \x58\xb0\x89\xe0\xc6\x3e\x98\xce\xaf\xc5\x81\x3e\xe8\x03\xb1\x8d\ \x06\x19\xa0\x06\x30\xa0\x8a\x41\x8d\x98\x8c\xb5\x87\xdc\x85\xd1\ \x91\xcb\xbb\xda\x93\xdb\x3d\x2b\x26\x19\x7b\xaf\x62\xb3\xaf\xbc\ \xc5\x24\x21\x3c\x42\x7b\xd1\xd4\xd2\x31\x83\xa1\x1b\x33\x7b\xf0\ \x94\xa7\x21\x98\x31\x03\xa0\x52\x19\xbd\x54\x91\x85\xda\xcc\xd2\ \x27\x78\x82\x61\xd0\x85\x5b\x90\x07\x51\xf0\xa4\xca\xf5\x03\xb3\ \x34\xcb\x1c\x78\x83\x5e\x78\xc8\x5f\x28\x86\xe8\x44\x31\xd6\xfb\ \xc2\x84\x1b\xbf\xc6\xcb\x5b\x77\xd0\x06\x77\xa0\x43\x96\x54\x82\ \x43\x34\x02\xc7\x04\x83\x62\xf0\x00\x65\x90\xc6\x69\x94\x01\xb9\ \x04\x83\x70\x34\x03\x74\xda\x42\x32\x1a\xb5\x72\xe4\x5d\xbc\x33\ \xbb\x0f\x49\x39\x4b\x9b\x9f\x19\xdb\x13\x48\x3d\x59\xf9\x0c\xb4\ \xe8\x3b\x3f\x96\xdd\x94\x4e\xb5\x29\xb0\x18\x20\xc2\x6d\x1a\xc1\ \xca\x29\xbc\x30\x15\x7a\xaa\x8e\xc4\x85\xa5\xda\x1c\x90\xef\xf2\ \x83\x44\xb8\x85\x19\x06\x85\x5b\xd0\x4d\xb3\xb4\x82\x44\x80\x87\ \x79\x68\x4b\x9e\xf8\xc2\xf8\xe5\xcb\xd6\x1b\x3f\x97\x70\x07\x49\ \xc0\x3d\x09\x24\x07\xb9\xcc\x82\x96\x34\x03\x2b\xf8\xfe\x84\x3b\ \x0d\x60\xd7\xa5\xc6\xdc\x55\x02\xf4\x43\x5b\x81\x9a\xc9\xb5\xe5\ \xd8\x4a\x79\xbb\x22\xd3\x36\x41\xc3\x83\x94\x3b\x9c\x63\x4b\x24\ \x6e\xcb\x93\xb8\x2d\xa2\xf3\x63\xa7\xfc\xe9\xd4\xe6\xb5\x4f\x11\ \xe6\x07\x19\x10\xa0\x98\xa5\xde\xaa\x41\x52\x4c\xe5\x00\x5a\x74\ \xdc\xd7\xbb\xb3\x18\xa6\xdc\x5b\x28\x5a\x3f\x70\x00\x5d\x78\x83\ \x44\x70\x80\x01\x2c\xd8\x20\xe6\x48\x36\x38\xc6\x2b\x08\x36\x77\ \x30\x46\x62\x8c\x86\x49\xbe\x53\xf6\x25\x41\x65\xe0\xcb\x3e\x15\ \x5b\xb2\x0d\x47\x14\x95\x07\xef\xcc\x0f\xdc\xa5\x86\x65\x18\x05\ \x39\x9c\xc3\x0d\xf4\xd8\xf2\x94\xd1\x30\xce\x60\x44\xa2\x38\xbe\ \x73\x0d\x86\xa3\x51\xab\x25\x35\xbe\x32\x52\x10\xbe\x65\x7b\xe9\ \xa9\x51\x30\xdc\x5e\x0e\x20\x50\xb9\xe3\xb0\x98\x87\x2b\xc5\xae\ \x2c\x5d\xd5\xef\x72\x55\xf3\xed\x05\x41\x36\xdf\xe2\xec\x61\x1f\ \x8e\x5f\x03\x64\x03\x47\x5e\x40\x66\xcb\xbb\xfc\x0d\x4c\x77\xd0\ \xda\xbc\xf4\x53\xd5\xed\xda\xaf\x55\xc9\xd7\x1d\xdb\xb2\x75\xd6\ \x88\xd1\x1d\x68\x05\x44\x19\x90\x81\x69\xbc\x07\x3a\xfc\x81\x09\ \x4c\xe5\x6a\x25\xb2\xd1\xd5\x33\x8a\x73\x8d\xf8\xfe\xf9\x08\x90\ \x9d\xe5\xe8\x0b\x52\x71\xd5\x32\xe5\x35\x52\xac\xb1\x4f\xa6\x21\ \x5c\x72\x3d\xdc\x58\x1b\xbd\x79\xca\x0b\x77\xa0\xd7\xaf\x7c\x02\ \xa9\x62\x83\x61\x00\xaf\xa3\xf5\xd2\x29\x98\x02\x77\x70\x00\x14\ \x8b\x57\x68\x06\x46\x66\xbc\xbd\xf1\xbc\xbd\xe3\xa3\xbb\x25\x76\ \x86\x4f\x98\x8a\x6a\xd4\x82\x65\xa0\x86\x51\xc0\x01\xd6\xfd\xcb\ \x49\x8e\x5d\x4e\x56\x02\x50\x40\xaa\x42\x15\x41\x97\xf4\xd0\x0d\ \x7c\x5b\x9f\x24\xb2\x1f\xc0\x03\xc6\xf9\x10\xf9\xac\x4c\x6c\xab\ \xcc\x58\xbe\x56\xe1\x9a\x97\xfa\xa4\x8a\x10\x5c\x22\x71\x65\xe3\ \x5b\xa6\x8a\x4d\x69\xde\xd7\x79\xae\x9e\x5a\xa0\x39\x96\x84\x86\ \x1e\x80\x75\x18\x02\x89\x7e\x55\x18\x5e\x87\xf2\x35\xcb\x04\xb5\ \x33\x1f\x56\x53\xbc\x3c\x56\x15\x4b\x40\x61\x6c\xdf\x05\xec\x03\ \x72\xe0\xbd\x39\xcc\xda\x2b\x20\xdb\x96\x1c\x65\x6a\xe0\x07\x6a\ \x90\x81\x51\x90\x01\x4e\xce\x5d\x40\x3c\xe0\x04\xb6\x5d\xb5\xd9\ \x46\xfb\xfc\x43\x40\x6c\xdb\xb7\x95\x65\x41\xf3\x69\x90\x25\xb6\ \x89\xab\x67\x58\xce\xb6\xc9\x36\xde\x45\xa3\x17\xa5\xb6\x4f\xf4\ \x5b\xd2\x51\xfc\x67\x36\xbe\x1f\xac\x71\x27\xfe\x24\x35\x25\x1c\ \x30\x06\xd2\xae\x5e\x62\x56\x2c\x9f\xd5\x05\xca\x0d\xeb\x5e\xe8\ \xea\x16\x18\x86\x18\x06\xe4\x22\xe8\x85\x79\x98\x82\xcf\x85\x5f\ \x45\x46\x6b\x3a\x7b\x66\x9e\x58\xc6\x5c\x5d\x46\x0f\xa5\xcb\xd6\ \x1d\x85\xc2\x34\xee\x96\x04\x83\xba\x0e\xc7\x1c\xa8\xcf\xfa\x24\ \x4d\x2b\x8e\x20\x74\x46\xec\x51\x96\xcb\x0c\x1c\xcf\x34\xfc\x62\ \x6d\x20\x3b\x22\x28\x89\x18\xe0\xbb\x47\x83\x0d\x95\x7b\x1c\x75\ \x1b\xb9\xd1\x4c\xc4\xa9\x40\xdf\xfb\x11\xc5\x7d\x54\x6f\x5b\x2e\ \x8b\x7f\x2e\x12\xb3\x08\x18\xa6\xa1\xd2\x39\x46\xed\xa2\x42\x0c\ \xca\x15\x05\x40\x4e\x04\x5d\x58\x87\x5e\x90\x61\x40\xee\x85\x04\ \xfd\xdc\x63\x15\xd1\xb7\x7c\xd8\xe9\x0c\x05\x5c\xa0\xe4\x62\x68\ \xdd\x3e\x18\x85\x89\x25\x5b\x99\x6d\x49\x7b\x30\xe9\x04\x7e\x03\ \x7a\xd1\xd8\x70\xbc\x58\x2f\x71\xcc\x50\x34\x03\x97\x5c\x06\x75\ \x9e\x64\x0a\x5c\x36\x67\xc8\x6e\xc7\xbe\x9e\x0f\xf0\x6e\x8e\x33\ \x19\xef\xbe\x67\x8a\xd3\xdb\x16\x2c\x8b\xa9\xe0\x54\x4e\x15\x68\ \x23\x74\x6a\x23\x3c\x2e\xfc\x49\x42\xad\x61\x1a\x4f\xb9\x6f\xfc\ \x0e\xf0\x19\x36\xf2\xd5\xd6\x05\xa0\x1d\xfe\x82\xb0\xec\xb5\xdc\ \x9e\x4e\x30\xfc\x61\xbe\xfc\x6d\x6b\x2c\x06\x29\x8e\x86\x89\x95\ \x70\x0a\x97\xd9\x4f\x08\xc7\x0b\xd7\xd8\x51\x2e\xdb\xc1\x0e\x65\ \x24\xe0\xf2\xa9\xc8\xdd\xc2\x94\x81\x49\x9e\x40\x78\x56\x54\xff\ \x02\xc2\x62\x0a\x4d\x93\x31\xb4\x87\xbb\x11\xb0\x1a\xb9\xab\x4d\ \xa7\x7a\xb1\x4f\xe5\xbd\xe3\xd2\x39\x52\xb2\x30\x42\xaf\x40\xd2\ \x51\x04\x6d\x4d\xcd\x0b\x9e\xed\xd9\x22\xa0\xed\xff\xd6\x85\x5e\ \x58\x87\xdd\x9c\x02\x7a\xf8\x5c\x26\x37\xeb\xce\xd5\x6d\xac\x0b\ \xd1\xdf\x66\x70\xd7\xe5\xf4\xd8\xdd\x6b\xbe\x9e\x5d\x30\xe0\x87\ \x03\xe6\xf2\xe9\x2e\xcc\x51\x26\x5b\x33\xe0\x24\x89\x99\x08\x2b\ \x30\x83\x11\x57\x69\x97\x1c\xe5\x34\xbf\x07\x3b\x9c\xc0\x74\xfc\ \xbb\xb1\x53\x37\x86\x70\x71\x16\x67\x11\x14\xf1\x6e\xa1\x8e\x9f\ \xe8\x8b\x8a\x0f\xa8\x65\x3d\x7f\xe3\xbf\x75\x9a\x12\x76\x1a\xaa\ \x48\xf6\xb1\xf0\x8e\xf8\xde\x1f\xb0\x38\x81\x21\x8f\x25\x46\x20\ \x85\x47\x6f\x81\x99\x08\xcb\x84\xda\xf6\x49\x2f\xd8\xf7\x7d\xf2\ \xd6\x53\x70\x92\x2c\xc9\x69\x54\x04\xd8\x55\xe7\xbe\xee\x6b\x7e\ \x20\xdb\xd9\x7d\x77\x34\x2f\xe5\x98\xfe\x26\x67\x4f\x3e\xe7\x89\ \x42\x1b\x1a\x40\x22\x24\xb0\x87\x75\xfe\x4b\xd9\x9d\x4b\x0f\xa5\ \x40\x5c\x9f\x41\xc9\x8c\x44\x22\xf0\x75\xd0\x8c\x01\x2b\x60\xf1\ \x1c\xe3\xb8\x47\x23\x76\xa4\x41\x1a\xf4\xab\x65\x81\xb6\x54\xb0\ \x58\xf6\x51\x17\x8b\x65\x77\x1a\xd7\x99\xea\x08\x9b\x30\xfe\xd3\ \x5e\x5e\xdd\x76\x3a\x93\xe8\x16\x6b\xcb\x5e\x05\xe2\x71\xbf\x74\ \x15\x33\x77\x05\xc7\x85\x2a\x37\x65\x54\x2f\xcc\xbc\xae\xf9\x11\ \xff\xf4\x51\x88\x70\x2d\x98\xd8\x8a\xc5\x49\xf4\xb5\x9f\xd2\xb4\ \x9f\x41\x1c\x47\x67\x95\x07\x25\x00\x83\x68\xc0\x01\x65\x68\xdd\ \x98\xbe\x82\x77\xbe\x75\x9f\xd4\x6e\xed\x96\xcc\x22\x5a\x58\x3a\ \x60\xf8\xb8\x7b\x0c\x2b\x68\x71\xbc\xcb\x24\x63\x1f\xc2\x3c\xaf\ \x65\xd8\x34\xd2\xa9\x70\x9a\x8c\x17\xf5\x4d\x35\xf4\xa6\xf1\x73\ \x33\x10\xf9\x5a\xcc\x52\x88\xbe\xb3\x6e\xe7\x52\xd8\xa6\x74\x3a\ \xcb\x4b\x97\xd7\x53\x84\x53\x64\x81\x55\xbb\xb1\xa5\xeb\x53\x47\ \xf3\x11\xd7\xf9\x9d\xe7\x79\x9e\x1f\xe7\xdc\x0d\x6c\xaa\x10\x6c\ \xfb\xdc\xa4\x7a\xe1\xc6\xec\xdc\xa4\xed\xac\x46\x3d\x5c\x56\xb9\ \xc6\xc0\xb7\x1d\x4f\x14\xb7\xee\xfe\x73\xf4\x7c\x8e\xd3\xfa\x0b\ \xe1\xb8\x93\xe3\xe7\x20\xad\x97\x7a\xa9\x78\x1d\xd7\xf1\xce\xee\ \x87\xa5\xc9\x29\x4d\xdd\x54\x72\xdd\x54\x86\xd6\x5e\x3b\xab\x7b\ \x2e\x9d\xfb\x35\xf5\xb5\x71\xcf\x53\xea\x84\x72\xbe\xf4\x00\x99\ \x5f\x77\x52\x36\xfc\xc3\xc7\x81\x07\x17\xdb\xbe\x3e\x60\x97\x24\ \xf5\x25\x26\x67\x97\x9c\xc8\x10\xa7\x97\xc2\x6c\xe2\x0c\x1f\xc1\ \x68\xb0\x7c\x95\x8c\x86\x1f\x80\xd1\xdf\xab\x94\xe3\x3b\xbe\xe4\ \xfb\x38\xac\x4f\x1a\x20\x5d\xbe\x88\x40\x9a\x67\x23\xf6\x3b\xbf\ \x5a\x9c\xa4\x0a\x64\xcf\x65\x80\x19\xfb\xb2\x77\xf6\x3e\xef\xf8\ \xd2\xc9\x6a\x17\x2e\x6b\x3e\x56\xb1\x02\x37\x6b\x91\x04\x08\x11\ \x02\x07\x8a\xf8\x65\xd0\x20\xc1\x84\x09\x0f\x1e\xf4\xe0\x41\x59\ \x9f\x3e\xd1\xb4\x8c\x1a\xa5\x05\x07\xc6\x8c\x38\x94\xe1\xe8\xa3\ \x45\xc6\x32\x30\xf6\xec\xf1\x13\x39\x12\xcc\xb2\x65\x23\x65\xc8\ \xb0\x87\x24\x47\x34\x30\x39\xec\x69\x89\x66\xef\x0d\x12\x33\xf6\ \xa8\x45\x53\xe6\x02\x0d\x2e\x89\x3f\xb2\x68\xcb\xa2\x24\x4b\x19\ \x25\x47\x8f\x66\xb1\x42\xc3\x0a\x12\x24\x4a\x8d\xb4\xa9\x6a\xc5\ \xca\x87\x0f\x4a\x92\x26\x55\xfe\xaa\x24\x87\x99\xb0\x66\x72\x90\ \x05\xdb\xef\x6c\xbf\x4f\x9f\xfa\xe5\x78\x03\xca\x2d\xdc\x37\xb9\ \x72\xe4\xaa\x9b\x83\xed\xa3\xb5\x6c\x73\x30\xfa\xe7\xf7\x2f\xe0\ \xc0\x82\x07\x13\xf6\xcb\xc8\x90\xc2\xc4\x04\x5b\xb4\x28\x96\xf8\ \x97\x88\x41\x8a\x19\x16\x54\xbc\xf0\x60\x41\x83\x1e\x42\xf5\xc1\ \x18\x11\xa3\xb2\xd0\xa2\x39\x6a\xf9\x48\x0d\x0c\x98\xd3\x26\x51\ \xa6\xb4\x07\x66\x54\x4b\xb0\x32\x46\xd9\x33\x13\x0d\x87\x16\x30\ \x39\x75\xf2\xec\xe3\xc2\x05\x2e\x5c\x57\xae\x64\x71\x56\xc6\xa8\ \x57\x33\x59\x6e\xb6\x91\xf7\x14\xa7\xbc\xaa\x4f\xb5\x2a\x4d\x8a\ \x5c\x29\x58\xb0\x6a\xc3\xf6\x33\x93\x56\x2d\x07\x7b\x6b\xdb\x82\ \x2a\x4f\xe3\xad\xdc\xf2\xf2\xe4\xde\xfd\xc4\x81\xad\x92\xc2\xf2\ \xe7\x17\x36\xc4\xc6\xb2\x65\xc6\x8f\x45\xf4\xc1\x9f\x19\xa1\x7f\ \x07\x85\xe2\x01\x43\xbf\x78\x50\x8c\x46\x1b\x71\xa4\x51\x69\x20\ \xa5\xf4\x20\x18\x25\x51\xb3\x0c\x4b\x28\xf5\x41\x9b\x12\x6f\x80\ \xf1\xd1\x4e\x7d\x28\x93\x5b\x58\xae\xf5\xe6\x93\x0b\x7d\xdc\x43\ \x5c\x16\x46\x99\xa1\x84\x54\x61\xd1\x50\x55\x73\x34\xbc\xd8\xc6\ \x53\x50\x55\x67\xc6\x71\xfe\x2b\xae\xf8\x52\x58\x6a\x7d\x32\x56\ \x7b\x6b\xf9\xc8\xd6\x1b\x6e\x9d\x27\x4f\x79\x6e\x21\x09\xca\x5c\ \x67\xe9\x65\x06\x7d\x51\x4a\xc9\xc8\x7d\xfe\x29\x54\x4c\x0b\x96\ \x85\x62\x65\x66\x5c\x0a\x58\xe0\x43\x08\xe2\x80\x60\x31\x1c\x2d\ \x48\x11\x4b\x14\xce\xe6\xe0\x84\x14\x8e\x92\xd2\x28\x38\xd8\xd4\ \x96\x6d\x5a\x84\xa4\xc5\x6f\x31\xd9\xb3\x5c\x6a\x32\x44\xd3\x47\ \x50\xd1\x9c\x68\x54\x8a\x2c\x16\x89\xc4\x8c\x55\x45\xd7\x86\x11\ \x34\x44\xa5\x84\x72\x4c\x45\x2a\x16\x58\x66\x7c\x22\x9e\x77\xde\ \xa1\x55\x56\x77\xb9\x28\x29\x0f\x92\x6e\x95\x87\x1e\x59\x68\x7d\ \x72\x87\x94\xa9\x16\x76\x18\x97\x0a\x35\x36\xd9\x96\x90\x05\x28\ \xeb\xac\x05\x6a\xd6\x51\x67\x63\x86\xb6\x11\x6e\x6f\x52\x38\x11\ \x6c\x20\xb1\x34\x4a\x34\xd1\x9c\x76\x5b\x1f\xcb\x64\x81\x13\x18\ \x2c\x51\x23\x03\x0e\x79\x52\x73\x12\x6a\xc3\x09\x5a\xec\x15\xce\ \x64\xa1\x93\x19\x6f\xc8\x08\x4a\xa2\x30\x56\x05\xca\x6e\xca\x29\ \x97\xa2\xb9\xe9\xfe\xf8\x63\x59\xd9\xd1\xc5\x1e\x59\xa2\x86\xea\ \xe9\x5c\x73\xe5\xf0\x48\xa9\x77\xf5\xa5\x2a\xbf\x80\x51\xd9\x6a\ \x42\xc6\x0c\x44\xeb\xfe\xc0\x22\x84\x02\xe0\x64\x08\x5b\x66\x2b\ \x43\xc5\x44\x94\x2b\x68\x18\x95\x56\xec\xc4\x0e\xb2\x54\x9a\x69\ \xaf\x6d\x14\x93\x19\x39\xa1\x96\x92\x6f\x68\xb8\xa0\xc5\xb4\xa8\ \xa5\xe8\xcc\x70\xd6\x1a\x5b\x5b\x5b\x8b\x8a\xfb\x32\x0d\x6f\x98\ \x9b\xe2\xb6\x29\xee\x39\x12\x3f\xe2\x7d\x52\x56\x91\x6f\x8d\xfa\ \x96\x5d\x75\x15\x59\x64\x2e\x4e\x0e\x79\x96\x77\xee\xec\xdb\x6f\ \xbf\xf6\x01\x3c\x10\x96\x8e\x2d\xbc\xe5\xc1\xf8\x29\xbc\x30\xc3\ \x06\x1e\xf8\xd0\x43\x1d\xe1\xe6\x91\x47\x35\x45\x63\xb1\x0c\x18\ \x8f\x32\xa1\x16\x10\xd9\x69\x0f\x58\x27\x2d\x13\xcd\x4f\x68\x7c\ \xa8\x5a\x8a\xa8\xa5\x46\xcd\x15\x63\xcb\x84\x84\x15\x2e\xbf\x2c\ \xae\xcc\xca\xd5\x66\xf3\x72\xae\x8d\x24\x5e\x0e\x2f\x7d\x0a\x6a\ \x92\x41\x97\x65\x57\x90\x1c\xa8\x85\xd6\x59\xb2\x30\x7d\x39\x62\ \x4f\x0b\xd4\x82\x31\xaf\x4e\x66\xb0\xc1\x04\x6b\x4e\x50\xd6\x06\ \xba\x10\xca\x6f\x11\xd5\x54\x9a\x47\xc5\xae\x59\x2c\xc5\x1e\xc9\ \xf0\xec\x45\x1f\xcd\x5e\x1b\xee\xcd\x46\x8b\x86\xc8\x5a\x5c\x91\ \x1a\x18\xce\x98\x8c\x1a\x35\xc5\x77\xeb\xf7\xdf\x8a\xd2\xd0\x36\ \xb5\x87\x6f\xb7\xfe\x73\xe2\x3d\xbf\xb1\x64\xcc\x75\xd5\x5b\x2a\ \xd2\x41\x0e\x69\x96\x5a\x96\x5f\xde\x6f\x95\x4f\x63\xe9\xb9\x40\ \xa2\x1b\x14\xca\x20\xc5\x54\x3d\xba\x42\x59\x7b\xe0\x82\x32\xb8\ \x40\x24\x51\xde\xb0\x47\x73\x05\x4b\x14\x6b\x11\xb6\x69\x32\x78\ \xd8\x87\x83\x4c\x52\x9b\x4f\x6c\x28\x6e\x72\x23\x99\xdd\xec\x36\ \x92\x10\x7d\x02\x09\xc9\x4b\xde\x7a\x78\x53\x3c\xd4\xd4\x26\x2a\ \x43\x23\x9a\x5c\x90\xe0\x29\xba\xd8\x8b\x2c\x1d\x4c\x0b\xd2\xbe\ \xa3\x97\x10\x4a\x62\x69\xdf\x9b\x52\xf8\x9e\xd6\x39\xa9\x81\x4e\ \x61\x90\x09\x85\xfa\x30\xc3\x3e\xd2\xd9\xca\x03\x0f\x8b\x08\xec\ \xea\x67\xbf\xfc\x4d\x64\x7f\x12\x99\xdd\x6d\x48\x03\x92\x09\x8a\ \x24\x44\x7d\xe0\x1d\xef\xe4\x54\xbc\x25\x16\xb1\x63\x6f\xb0\xc2\ \xf4\x1e\xf8\xb7\x37\xb8\x66\x76\x60\x08\x8b\xb7\xc0\xe5\x1c\x78\ \x99\xc5\x5d\x63\x01\x52\xbb\xda\xf3\x9d\xee\x90\xd1\x3b\x64\x41\ \xd5\x09\x55\x95\x39\x11\xa4\xd0\x4a\x8d\x61\xa1\xac\xae\x96\xb5\ \x19\x0e\xac\x40\x9c\x91\xc8\x0d\xed\xf7\xa7\x1c\xe6\xaf\x26\x3f\ \xf4\x93\x82\x24\xa2\x92\x09\xc9\xe0\x8a\xcc\x52\x06\x12\xe1\x67\ \x2c\xd5\x98\xfe\xa4\x63\xa0\xa8\x0a\x55\xa4\x08\x49\x79\xcc\x64\ \x81\x48\xf0\xd6\x79\xa0\x48\x83\x5c\xf0\x88\x3b\x9a\xd2\x94\x93\ \xce\x12\xc6\xef\x00\xe9\x25\x64\x19\x4b\x16\xbc\x97\xc6\x28\xfd\ \x4b\x20\xc3\xc8\x12\x97\x8a\x81\xa5\x85\xb4\x50\x74\xff\x89\xa3\ \x2d\x5b\xc5\xb0\xf9\xfd\x29\x8f\x7a\xb4\x1f\xc6\x24\x82\x36\x8e\ \xfc\x70\x19\xa7\x29\x5b\x4b\x10\x65\x1b\x03\x42\xa4\x90\x37\xab\ \xcd\x58\xa2\x28\x49\x71\xc9\xe8\x50\x51\xe9\x64\x76\xbe\x08\x24\ \x4f\x86\xf0\x49\x7b\x39\x25\x08\xe3\x95\xb8\xb2\x48\x62\x95\xa9\ \x6a\xa5\x08\x60\xe9\x9f\x59\xca\x92\x85\x03\x09\x05\x3c\x2b\xd3\ \x3e\x11\x14\x23\x7d\xb6\xcc\x65\xfb\xec\x38\xbf\x87\x05\x45\x22\ \xd8\x02\xa6\x0f\x65\xf7\xac\xce\x40\x64\x6c\x56\xe4\x89\xef\xcc\ \x00\x45\x7b\xec\x4e\x64\xca\x58\x99\x58\xc2\xd2\x96\x70\x4d\x53\ \x3a\x6f\xb8\x94\xf3\xc4\x03\x4d\x77\xb5\xa5\x83\x64\x79\xc4\x27\ \x41\xfa\xd1\xbb\x64\xaa\x3b\x65\x19\x8b\x01\xcc\xc9\x4a\xa7\x3d\ \xad\x05\x63\xa2\xa7\x3a\x0b\x36\x88\x58\xe5\x32\x8e\x33\x6c\x88\ \x43\xe2\x77\x43\x1c\xda\xef\x0a\xcf\xf2\x13\xeb\x5a\xe7\x53\xff\ \xf1\x52\xfe\x06\x3e\xdd\x13\x35\x22\x42\x0d\x24\xc8\x03\x09\x60\ \x88\xd6\x6f\x1e\x1a\x92\x8e\x45\x8f\x06\xc8\xab\xe8\xf2\xcc\x90\ \x9a\x91\xfc\xe8\x8b\x8a\xbb\xe0\x5b\xce\x83\x1e\xc8\x41\x6e\x94\ \x4e\x92\xdc\x5a\xb2\xa0\xd2\x95\xb2\x2f\xa6\x8a\x49\x9f\x64\xb6\ \x44\x47\xab\xfd\x02\x86\x0f\xe9\x83\xc3\x70\x88\xc7\x1d\x02\x15\ \x63\x13\x19\xa2\xff\x36\xf2\xc3\xe2\xed\x69\x43\x0f\x35\x03\x55\ \x94\x00\xad\xd0\x78\xe4\x34\x1d\x73\x4a\x45\x1f\xe8\x9c\xe5\x91\ \xc5\x82\x43\xf3\xd9\xf4\x8e\x84\x24\xc6\x2d\xc9\x3c\x40\x13\x9a\ \xbd\xde\x40\x52\xb4\xd8\x63\xad\xf4\x41\xa7\xf8\x00\x36\x88\x16\ \xc8\xf5\x73\x37\xd5\xcc\x80\xf6\xf9\xb0\x5f\xb2\x6e\x62\x06\xbd\ \xc2\xdb\xf2\x88\xdb\xd3\xb8\xe6\x0a\x11\x01\xc3\x8b\x68\x60\x9b\ \xd9\x4e\xcb\x0c\x56\x8d\xac\x24\xe5\x01\x95\xcb\x9e\xc7\xaa\x5a\ \x04\x15\x67\xa1\x0b\x5d\xb1\x8e\xca\x2d\xb9\xc0\x2c\xd0\x4e\x89\ \x46\xd3\x12\x86\x55\xec\x93\x1a\x64\xf0\x39\x90\x41\xf4\x41\x32\ \xf7\xa4\xcc\xe8\x0c\x52\x8c\x5f\xa0\x21\x14\xfd\xf4\x25\xc5\x2c\ \x82\xb1\x06\xa5\x69\x22\x3c\x9d\x1d\x6f\x53\x33\x11\x6a\x28\x21\ \x3a\xfe\x54\x84\xdd\xed\x8c\x7b\x55\xe4\x36\x07\x8a\x60\xb9\xa4\ \xf4\x40\xe1\x1c\xf5\x28\xb8\xc1\x0a\x96\xee\x92\x3a\x5b\xdd\x15\ \x88\x0a\x14\x1c\x34\x21\x77\x03\xe3\xdd\xd1\xc9\xf2\x3f\x5c\x82\ \xeb\x2d\xc3\x5b\xa0\xf4\xd6\xf5\x7d\xb3\xf5\xa7\xeb\x82\x35\x1b\ \xf9\xda\x2e\x25\xbf\x34\xe6\xb4\x44\xf4\x53\x7b\x58\x81\x51\x4e\ \x65\x49\x80\x11\x45\x51\x02\xc7\x4c\xab\x60\x60\x17\x82\xc5\xda\ \x5c\xcf\x6a\x16\xba\x0e\x06\x57\x92\x46\x05\x5a\xb2\xc0\x03\xc3\ \x19\xfe\x0b\x4b\x47\xa7\x1f\x79\x06\x28\x32\x78\xad\xa7\x63\x70\ \x49\x65\xcd\x69\x46\x7d\x79\xf5\x27\x8e\x89\x15\xac\x8a\xa0\x29\ \x25\x17\xab\x09\x8e\x79\x4b\xad\x09\xe9\x26\x3a\xf2\x50\xc2\x4f\ \xad\x58\xc1\xe9\xc9\x23\x92\x3c\x46\x82\x6b\x9a\x08\x24\xd1\x32\ \x17\xc9\x10\x76\xb0\x90\x57\xf0\x33\x26\x59\x2f\x07\xaa\x7c\x72\ \x60\xd6\xa8\xb9\x16\xf8\xa3\x3f\x6d\x6d\x27\x95\x65\xc8\xbe\xf3\ \x6d\x86\x33\xf7\x4b\xd3\x99\x2b\xa2\x69\x5f\x99\x79\x7f\xc2\x1a\ \xe2\x9e\x7c\x9c\x1a\x95\xd4\xb8\x0d\x56\xb0\x47\xb1\x5a\x77\x9a\ \x1f\x79\x8b\xc0\x30\x5a\x4f\x27\xb9\x2a\x51\x9e\xf5\x8c\xc1\x0d\ \xfe\x96\x70\x79\x3c\x45\xe1\x41\x33\xc9\xd0\x88\x16\x8c\x77\xc5\ \x2b\x90\x14\x8e\x0f\xbc\x57\xb3\x5a\x1d\x69\x85\x5e\x2e\x33\xc4\ \x86\xcb\xc0\xdf\xd8\xdc\x94\x91\xd2\xc0\xe6\x41\xcb\xa8\xc8\x85\ \x3e\x1d\x92\xc3\x4d\xa8\xdb\x0a\xa5\xd1\x70\x3d\x63\x9a\x9b\xbc\ \x08\x5c\xc8\x8d\x59\x65\x63\x16\xb8\xee\xcc\xfa\x5d\x9e\x12\x2b\ \xae\x41\xb1\xeb\x5c\xbf\x61\xde\xa2\x2a\xe1\xaf\x13\x5d\x25\xc8\ \x70\x8e\x7c\x96\x81\x34\xe9\x9e\x86\x30\x65\x4b\x5a\xe0\xb7\xba\ \x9f\x8b\x85\x75\x11\x1c\xc4\x49\xd3\x29\xe1\xc7\xb5\x2f\x52\x6d\ \x1c\xab\xc4\x35\x0f\xf2\xd3\x32\xcc\x50\x67\x24\x5c\x81\x44\x25\ \x22\x99\x4b\xc0\x52\xea\x69\x1a\xc1\x39\x95\xba\x64\xcc\x62\x66\ \xca\x30\x76\xd4\x53\x17\xa4\x57\x5d\x04\x5d\x5d\xd0\xd6\x05\x14\ \x98\xc8\x77\xa2\x0b\x96\xce\x15\xb6\x71\xae\x09\x03\x9d\x3c\x47\ \xcc\x6c\x03\x39\x2c\x1a\x66\xf6\x53\x0f\x29\x42\x66\x07\x45\x5c\ \x62\x13\x7f\xf8\xa8\xd5\x44\x11\xdd\xc4\xcc\x1e\x1e\x82\x9f\x30\ \xef\x66\x5c\x29\x1e\xb7\x39\xa2\x15\xcb\x25\x35\x09\x2e\x75\x5f\ \x73\x9c\x2b\xa7\xb9\xf5\x2a\x5c\x5d\xb9\xc8\x05\x1e\x87\xc6\xfe\ \x79\xcf\x37\xd7\x02\x07\xb8\x95\x20\x92\xf1\xb9\x3c\x69\x3a\x47\ \x83\xd7\xb5\x18\x35\x79\x36\x8e\x8b\x15\x2c\xa5\x0b\x2b\x4e\x19\ \x51\xf1\x83\xa8\x01\xf1\x15\x13\x4b\x06\xcb\xa2\x81\x12\x7a\x32\ \xbf\xda\x2e\x23\x07\xcd\x79\x60\xcc\x4a\x6e\x85\x4a\x39\x51\x46\ \x9e\x5f\xf0\x05\x71\x92\xc1\xa8\x8c\x93\x5e\xe9\xb9\x6e\xcd\xc5\ \x4a\xb4\x07\xe0\x1c\x30\x51\x0e\x18\x63\xa6\x9c\x90\xd5\x2e\xcc\ \xe0\xb5\xdc\x3b\xc0\x34\x33\x5b\xfc\x0a\x0b\x76\x18\x0b\xf3\xc2\ \x31\x12\xac\xc4\x4f\x08\x36\x63\x2b\x0d\x35\x8c\x7b\x6a\xff\x75\ \xe6\x37\x23\x73\x49\x91\xba\x0e\xb8\x6e\xb5\x41\x66\x96\xb4\xaa\ \x55\xdd\x2c\x9d\x6a\x86\xfe\x50\x9c\x74\x79\x85\xad\x77\x5d\x9f\ \x79\x2a\xa5\xad\xf7\x8b\xa2\x09\x52\xec\xba\xcb\xbd\xf6\x5c\x8e\ \xcc\xed\x0b\x9e\xfb\x62\x14\xcb\x61\xb8\x05\x3c\xd2\xc5\x3c\x36\ \x32\x07\x9f\xda\x15\x79\x78\xf1\xb1\x98\x44\xd0\x98\x72\x25\x95\ \x4f\xf0\x8e\x0b\xa8\x84\x58\x3c\x11\x28\x50\xc5\x64\xcd\x84\x71\ \x09\x97\xe1\x4c\x14\xa8\x48\x16\xf7\x75\x9f\x06\xc1\x45\xe3\x08\ \x4d\xbd\x15\x09\x94\x9c\xdf\x3f\x6c\x98\x7f\xb4\x40\x1b\xfe\x91\ \x43\x95\x69\xce\x20\x44\x03\x39\x64\x99\xad\x90\x58\x3b\xd1\xdf\ \x2f\x45\x83\x8a\x9d\x19\xeb\x48\x4c\x99\x19\x13\x9c\xe4\xca\xc4\ \x2c\x15\xb8\x1d\x11\x02\xf6\xc1\x69\xf0\x56\x0e\x64\xc8\x16\xa1\ \x1b\x4a\x50\x15\x05\xed\x08\xa2\x80\x8a\x9d\xbd\x4c\xa3\x78\x1e\ \x7a\x88\x96\xcb\xbd\xc5\x0a\xd4\x0b\x85\xb1\x1d\x12\x80\x60\x08\ \xa6\x9f\x62\xd0\x03\x12\x24\x82\x3b\x4c\x01\x39\xc0\xc1\x3c\xb4\ \xc0\xdd\xe1\x5d\xf9\xac\x96\x16\xb0\x56\x88\xc9\x9f\x97\x68\x06\ \x47\x14\x1d\x80\xa5\x09\x85\xcc\x97\x87\x74\x04\xb5\x31\x9d\x45\ \x80\x46\x8b\x7d\x9b\x62\x21\xd1\x43\xa5\x99\x48\x7c\x82\x12\xa8\ \x5c\xe2\x98\x01\x35\x9c\x4d\xe2\x64\xc1\x69\x2c\x47\x58\x18\x4a\ \xdf\x4c\x93\x73\x80\x5e\x06\xc2\x45\xda\xb9\x5c\x2e\x6c\x57\xeb\ \x71\xe1\x40\xb0\x41\x0b\x4c\x81\x3b\x24\xc2\xc8\x51\x45\xa3\x58\ \xc1\x3c\xc4\xdd\x5c\xf5\x01\x39\xe0\x55\x97\x24\x9b\xb0\xe5\x53\ \x43\xe4\xd5\xfe\x08\xde\xd1\xed\x4f\xc4\xf0\x4f\xb5\xc1\x89\x0f\ \x61\x84\xb0\xf0\x97\x72\xd9\x03\x22\x75\x44\x2f\x01\xd0\x04\x35\ \x10\xe7\xed\x44\x4d\x80\x81\x12\xec\x44\x71\xa5\x8b\xfe\x12\xd2\ \x40\x13\x42\xd0\x79\x78\x0b\xcc\x95\x05\xbe\xc0\x85\x93\xfd\x9a\ \xa2\xdd\x07\x1c\xb8\x03\x3c\xf0\x4d\x34\xfe\x0d\x0d\xb0\x1f\x1d\ \xbd\x10\x96\xb5\xe2\x2d\xf1\x9d\xee\x3d\x8c\x2c\x1a\xd4\x9f\x6c\ \x04\xfc\xe0\x4a\x1e\x3a\x88\xa6\xd9\x22\x45\x94\x06\xd5\x29\xc1\ \x32\x08\xa3\x87\xa8\x8d\x41\xe5\x8e\xdb\x5c\x44\x4c\x00\x4f\xa1\ \x3c\xe2\x57\x38\xe2\x8e\x49\x11\xe8\x89\x56\xbb\x78\x4a\x93\x81\ \x20\x95\xb0\x81\x27\x7a\xe3\x07\x8c\x5c\x64\x19\x01\x1c\xa0\x61\ \xc0\xbd\x60\x2b\x2e\x1b\x2d\x61\x0d\xfd\xe1\x95\x48\x16\x14\xc5\ \x80\xc6\xae\x88\x1b\x9a\x90\x4d\x45\x78\x06\xaf\x90\x9b\x62\x45\ \x84\xf3\xed\x93\x15\x01\x4f\x9f\xdc\x61\x4b\x44\xd4\xb6\xec\x88\ \xf5\x51\x9f\xa3\x80\x63\x45\x4d\x62\xf7\xbd\x5d\xbe\x19\x82\x37\ \x7a\x4b\x38\x5e\xe4\x29\x06\x9c\xcf\xf1\x5b\x1f\xb4\x80\xa4\x1d\ \x5b\x1d\x61\x8d\x0d\x89\xe4\x97\x85\x4d\xae\x28\xc3\xfb\x2c\x08\ \x1e\x0e\xdf\xc5\xc5\xc9\x68\xb8\x80\x0c\x38\x10\x0d\x64\x01\xdc\ \xfc\x44\x54\xcd\x0f\x21\xcd\x8e\x8b\xf9\x86\x0b\x44\x83\x12\x58\ \x81\x11\x58\x81\xe0\x54\x10\x54\x5c\x12\xb8\x35\xfe\x46\x0b\x6c\ \x5d\x64\x4d\xd6\xd0\x08\x25\xa2\x31\x02\x23\x1c\xa5\xab\xb5\x01\ \x3c\x64\xa4\x52\xce\x15\x64\x38\x4c\x96\x1d\x66\xf9\xe4\x9e\x7a\ \xf5\x41\x28\x14\xd4\x7c\x6d\x44\x99\xbc\x8f\x07\x30\x08\x57\x2a\ \x9e\x57\xfa\x84\x68\x8c\xc2\xd6\x59\xc1\x32\x98\xa5\xf3\xa5\x8e\ \xef\x19\xd4\xfe\xc0\xcf\x15\x38\x50\x55\xe4\x04\x34\xf1\x8d\x51\ \x56\xdf\x14\x2c\x06\x19\x22\x0a\x29\x5a\xe0\x13\x19\x40\x36\x3e\ \x19\x23\xb0\xc0\x60\x3e\x90\x11\xb8\x43\x1b\xbd\xa2\x97\x44\x86\ \x2c\x09\xa7\x63\xda\x95\x0d\xf9\x50\x2f\x95\x89\x4f\x3c\x44\x3c\ \x86\xcd\xf0\xa1\xc4\xc2\x71\x26\xc3\xd1\x46\x70\x65\x41\x1f\xfc\ \x82\x59\x22\xa0\x6c\xf9\x0e\x4f\xf8\xc9\xef\x14\xa2\x45\x7d\x00\ \xdf\x58\x95\x53\x78\xa0\x3b\x2d\xc6\x3c\xcc\x83\x42\xc9\x08\x64\ \xc1\x48\xc9\x19\x41\x2c\x68\xa1\x21\xd0\x41\x6f\x3e\x90\x3b\xe4\ \x13\xde\x29\x9b\xed\x25\xcc\x3a\xda\xa2\x47\x50\xe6\x68\xec\x8a\ \xea\x50\x84\xb5\x19\x9e\x68\xd8\xc9\x54\xbd\xc8\x1b\x50\x03\x1a\ \x68\x27\x12\xc9\xcd\xd5\xf5\x01\x71\xac\xc8\x51\x80\xc1\xb6\x20\ \x0a\xa3\xf8\x4d\xa3\xe0\x04\x12\x94\xa1\x7f\xfe\xb0\xc1\x3c\xe4\ \x80\x3b\x74\xe3\x8e\xcd\xe7\xf9\x01\x66\x1d\xdc\x67\xf2\xdc\x42\ \x4c\x41\xe5\xa4\x79\x64\xad\xe0\x93\x80\xe0\xd1\x4e\x79\x08\x73\ \x9e\xa4\xea\xc8\xa0\x1e\x5e\xc4\xae\xbc\xc9\xb3\x54\x9e\x11\x18\ \x81\x19\x64\x27\x43\xa0\xc1\xfb\x28\xd2\x15\x25\x07\xcd\x88\x67\ \xf2\x54\x13\x12\xf4\x82\xec\x29\x46\x5e\x66\x09\x1b\x20\x96\xb8\ \xc4\x40\x6e\x66\x18\x23\x18\x00\x8b\x26\xcf\x6f\xa2\xe2\x7e\xca\ \x28\x5d\xc1\x68\x66\x48\xc4\x7b\x45\x84\xc3\x28\x03\x73\x7a\x8d\ \xd9\x08\xde\x6c\xf4\x5f\x2e\x5a\x04\x18\xd4\x18\x0d\x80\xc1\x4f\ \x1c\x44\x7b\x3d\x8c\x4f\x2d\x87\x9f\xa2\xcb\x07\xcc\xc8\x55\x58\ \xa4\x74\x20\x81\x03\xb0\x11\xa2\x7a\x62\xf8\xb4\xc0\x7a\x76\xa2\ \x71\x45\x12\x0b\x68\x21\x23\xb0\xc3\x97\x26\x0f\x3c\x0c\x9b\x46\ \xea\xa7\x63\xba\x61\xf9\xd4\x55\x9a\x2a\x26\x9b\x66\xe5\x3e\xd9\ \xa1\x2d\x76\xc4\xa6\x59\x04\x6c\x7c\xc4\xd6\x21\x81\x91\x1a\x04\ \x85\xa2\xcc\xfd\x14\xd1\x49\xfc\x29\x26\x29\x01\x7b\xd6\x58\x9d\ \xc1\x08\x12\x4c\x41\x96\x30\xc6\x2b\xa9\xd3\xdc\xcd\x43\x6c\x76\ \x62\x0b\xc0\x01\x12\xc8\x27\x44\xde\x81\xfe\x60\xb2\x28\x3c\xdc\ \x07\x1b\x9c\x21\x80\x98\x69\xa6\x9e\x20\x0d\xdd\x51\xaa\xe1\x15\ \x0e\xa0\x4e\x9b\xe2\x0a\xc4\x68\xc4\x85\x4c\x9c\x41\xf9\x89\x6e\ \xd0\xc8\x15\x1c\xc4\x15\xb0\x88\x19\x38\x03\x9b\xd5\x4c\xdd\xe4\ \xcd\x70\x28\xc1\x07\x98\xc1\x09\xcc\x03\x3c\x5c\x45\xa2\xec\x6a\ \xec\x0d\xc3\x14\xf0\xea\x40\x0c\x03\xdd\x91\xa0\x42\x4c\x01\x1d\ \x48\xaa\x01\x2c\xeb\x7d\x5a\x01\x39\x38\x2b\xa6\x56\x46\x78\x4d\ \x2b\x89\x99\xcf\x2f\xd0\x5f\xde\x50\x65\x31\x84\x09\x63\x45\xc4\ \x80\xe2\x21\xb5\xa9\x09\xd2\xc1\x0e\x62\x19\x81\x12\x40\xa6\x5b\ \x4a\x05\xde\xf8\x09\x6c\x0c\xc7\xb3\x45\x83\x79\x89\x40\x34\xb8\ \x43\x16\x9c\x00\x1c\x84\x05\x3c\xb4\xe7\x53\xf4\x02\xaf\x7e\xe2\ \x14\xcc\xc3\xa1\xf6\xeb\x94\x0e\x84\xc0\x4a\x2a\x6f\x56\xea\xdf\ \x84\x29\x1b\x49\x06\x88\x39\x6c\x39\x1e\x5b\xdf\x2d\x27\xb6\xe6\ \x14\x9b\x2a\x88\xc7\x7d\x88\xd2\x05\xcb\xd8\xd8\x97\x3f\x2d\x83\ \x12\x34\x07\x22\xa2\x46\x34\xac\x57\xe9\xd8\x0a\x3c\xc9\xd2\x20\ \xc0\x81\x0c\xc0\x01\x28\x86\x22\x12\xc0\x83\x3b\xfc\xea\x14\xd0\ \xdd\x40\xc4\x5e\xcf\xb5\xc0\x96\x66\xfe\xd8\x1d\x08\xed\x03\x7d\ \x40\x95\x3c\x2b\x1b\xd5\x13\xd2\x3a\x6c\x8d\xaa\x29\x5e\xb1\x29\ \x9b\xba\x80\x73\x26\x29\xd6\x45\x9b\x99\xc1\x0e\x63\xb9\x8e\x3d\ \xbc\x88\x15\x30\x62\xab\x7e\x2d\xc1\x09\xdd\xb0\xb5\x80\x37\xba\ \xc3\x3c\xc0\x41\xec\x4d\xd9\xe6\x26\x86\x21\x40\x24\xa5\xda\xed\ \xd0\xc2\x01\xb1\xbd\x51\x7a\xf6\xed\x52\xc2\xd0\x0d\xc9\xd2\xe0\ \xbe\x8f\x76\x12\xee\x6f\xe0\xa1\xb3\xfc\x8a\x7d\x15\x55\xf2\x35\ \x0a\x12\x50\xc3\xc1\x48\xee\x63\xc0\xe8\x6a\x79\x23\x3c\xd8\x6c\ \xbe\x0e\xdb\x2b\x29\x04\x1b\xcc\xad\x69\x05\xa6\xe8\x5a\x6a\xde\ \x4a\x46\xd4\x64\xc9\xdd\x19\x27\xea\xa2\x63\x1d\xf9\xdd\x2e\xca\ \x92\x65\x6a\xa7\xe1\x86\x06\x7d\xd1\xee\x2e\xa2\x58\x4c\xbc\x41\ \x62\x45\x6e\x7f\x2a\x06\x1b\xc4\xac\xda\xf2\x2a\xbf\x8a\x80\xbf\ \x16\x2f\x41\x7c\x2e\x44\x1a\x6c\xa5\x12\x6d\x42\xb4\xc0\x1a\x76\ \xd8\x96\x4d\x6f\xef\x42\x65\xc4\xfe\x49\x3b\x39\x84\x65\x5a\xa6\ \x68\x30\x9c\x5a\x96\x4d\x40\x75\x46\x69\x26\x1f\x5c\xbe\x99\x91\ \xf6\xed\x44\xba\x83\x3b\xd8\xec\x7d\x38\x40\x2f\x0c\x41\x1b\xc1\ \x6f\xeb\x01\xe6\xf2\x82\xe9\x07\xfe\x98\x60\xc1\xb4\x80\x0c\xc4\ \xde\xe9\xea\xef\xfe\xd6\x94\x2c\x75\x46\xc5\x02\xb0\x0b\xbc\x2e\ \x81\x5a\xd1\xaf\xdc\x10\xae\x54\x04\x8f\x52\x43\x53\x30\x8a\x3b\ \xb4\x96\x03\x4f\x81\x12\xc0\xc3\x3c\xf8\x6b\x2f\x14\xc1\xce\x0e\ \x04\x06\x67\x70\x0c\x6c\x30\x7e\xb2\x01\x65\x14\xc3\x15\xf8\xc3\ \x15\x60\x49\xfa\x90\xb0\x95\xc0\x68\x62\x46\x04\x81\x68\x2f\x81\ \x3c\x84\x10\x5d\x5c\x6d\xdd\xd0\x7c\x45\xdb\xd6\xdd\xa9\xf4\xce\ \x10\x39\xc0\x43\xfa\x4e\x81\x1f\xac\x6f\x3a\x0d\x43\x3e\xd0\x67\ \x11\x1b\xf1\xd0\x9e\x40\xc0\xc5\x5e\x34\xb4\x40\x53\x86\xf1\xf4\ \x8a\x57\xc4\xe2\x95\x66\x10\x2e\x92\x2e\x08\xa7\x01\x55\xd8\x94\ \xa4\x0d\x56\x9b\x4b\x50\x85\x15\x44\x83\x1d\x8f\xce\x37\x86\xa1\ \x1f\xf8\xc1\x30\x74\x62\x2f\xb0\x03\xf2\xae\x15\x23\xb4\x82\x1b\ \x3f\x90\x15\x18\x66\x63\x36\xe5\x15\xbc\x51\xa7\x26\x72\xa6\x72\ \x6a\x41\x54\xac\x41\x60\x65\x92\x92\xc6\xff\xd1\x8e\x3c\xee\x9f\ \x46\x58\x04\x7e\x8d\x6b\x1b\x7c\xc0\x20\x80\x32\xc0\xc0\xc1\x07\ \x14\xc1\x3c\xf4\x82\x2e\x38\xc0\x30\xb0\xc1\x30\x0c\x83\x1f\x90\ \x82\xa4\x5a\xf2\x25\x5b\xea\xfe\x8b\xa6\xd3\x28\x98\x2e\x0b\x42\ \xf1\x6b\x95\x72\x68\x88\x49\x75\x5a\xcc\x28\x74\x86\xec\x5c\x9b\ \xe1\x45\x73\xf1\x90\x1a\xa3\x98\xc1\x08\x6b\x24\x1b\x04\x6f\x11\ \xe8\x42\x22\xe8\x42\x23\xf3\x32\x1b\xac\x71\x8a\x32\x02\xa1\x16\ \x33\x24\xed\xaa\x52\xb6\xd3\x13\x8b\x32\x33\xd7\xca\x65\x5e\xc8\ \x47\x18\xdf\x10\xb9\xc9\xc3\xd8\x89\x0c\xf8\x83\xf0\xfd\x5f\x48\ \x18\x93\x4b\xc8\x88\x12\x9c\xa1\xc3\xb2\x41\x0e\x8c\x73\x2f\x24\ \x02\x0d\x24\x42\x22\xf4\xc2\x23\x4b\x2a\x26\xb0\xb3\x14\x21\x01\ \x2c\xe5\x52\x87\x49\xeb\x3c\xd3\x55\x72\x9e\xcd\x9a\xe0\x58\xe0\ \x99\x8d\x35\xc7\x89\x3f\xb0\x84\x3f\x1c\x13\x6d\x88\x6f\x1b\x70\ \xb3\x03\xeb\x42\x94\x16\x01\x43\x37\xf4\x3a\x44\x74\xb2\x8a\x02\ \x45\x83\xa9\x3b\x18\xdb\x27\x27\xdb\x46\x93\x0e\x3c\xbd\x62\xc3\ \x80\x59\xe3\x81\x74\x98\x8d\x82\x3f\x6c\xda\x83\x94\xc4\x9a\xf0\ \x64\xe4\xe1\x30\x1a\xb6\x80\x2e\x90\xf3\x14\x24\xc2\x2d\x88\x42\ \x2f\xd0\x83\x08\x4c\x32\x77\x61\x42\x2b\x04\xed\x4d\xc3\x08\x0d\ \x0c\xeb\x65\x88\x98\x46\xf7\xed\x2f\x38\xc3\x87\xce\x72\x95\x1d\ \x44\x31\x20\x1e\x8c\x31\xfe\x12\xc7\x96\x34\x9c\x9c\x0d\x3f\xcc\ \xc6\x49\xdb\x43\x7f\x19\x41\xee\x3a\xec\x54\x27\xc2\x3a\x4c\x81\ \x2e\xdc\xc2\x2d\xac\x43\x96\x0c\xb1\x44\xc7\x82\x7d\x7e\x75\x1b\ \x58\xb4\xac\xc0\x51\x0b\xf6\x74\x64\xbc\x41\x0f\xae\xcf\xac\x00\ \x50\x48\x88\x04\xf1\x08\x50\x3f\x53\xdc\x32\x94\x74\x10\xce\x75\ \x9b\x35\x8a\x3b\x18\xf4\x5c\x8d\xb1\x15\x28\xb4\x38\x27\x82\x1f\ \x48\xa4\x56\xff\x1a\x60\xb6\x82\xfc\x0a\x2d\x0d\xe4\x74\x3a\xe1\ \x2f\xee\xcd\x73\x0b\xc0\x25\x8d\xe4\xc4\x15\xe8\x52\xc4\x6a\x81\ \x3f\x10\x0f\x85\xa4\x04\xf1\xb0\xc4\x15\x10\x0b\x11\x89\x04\xc4\ \xf9\x03\x70\x1b\x92\x8c\x98\x01\x69\xb7\x15\x3c\x08\xf6\x2d\x24\ \x02\x3c\x8c\xf3\x14\x0c\x41\x0b\x18\xb6\x16\x0e\xc6\x6e\xc6\x40\ \x0c\xc4\x76\x6f\x12\xe9\xab\x78\x0e\xc3\x40\xf6\xc8\x5e\x12\x55\ \x40\x5e\x52\xed\x6e\x54\xd2\x50\xdf\x41\x9a\x2c\x51\xc3\x3c\xa4\ \x86\x6f\xb5\xc0\xef\x60\x68\xe1\x7c\xcc\x1c\x93\x8c\x6a\x22\x81\ \x26\xb3\x8f\x2d\xcb\xc3\x2d\x44\xb5\x43\x47\x75\x11\xf8\xc1\x13\ \x70\x77\x77\x17\x46\x2c\xb4\x42\x1b\x6f\xf0\x6c\xe3\x65\x79\xb9\ \x62\x59\x4f\x6b\x34\xfe\x84\xc5\xb4\x44\x22\xee\x82\x41\xe4\x5e\ \xf8\x40\x9c\x00\xa4\xf8\x14\xfe\x64\x4b\x16\x98\xcc\xa5\xcc\xc3\ \x40\xc9\xd2\x3c\x7c\x00\xa3\x3c\x2e\x39\x24\x32\x1b\x4c\x81\x8b\ \xd3\xc0\x5f\xff\xf0\x3a\x88\x73\x81\x6b\x62\x83\xb3\x12\x26\xc4\ \x82\x11\xb3\x37\xfe\xda\x36\x99\xa2\xee\x2f\xb4\x38\x9e\x5d\x51\ \x24\xaa\x1c\x9e\x25\x15\x88\x0b\xc4\x20\x74\x8b\xad\xce\x43\x16\ \xcc\xc3\xef\x14\x07\x7d\xdb\xcd\x7a\x52\x03\x1d\xb7\xc0\xe3\x35\ \x8a\x12\x5c\x41\x74\x5b\x46\xcc\x3a\xe0\x2e\xd3\xc3\x10\x34\x72\ \x11\x88\x02\x0d\xdc\x02\x3a\xf7\xb8\xaa\x00\xe6\x6e\x8a\x37\x56\ \xc1\x83\x3a\x9d\x63\x3a\x32\x73\x1f\xb8\xb8\x11\xe4\x40\x16\xe4\ \xc0\x79\xae\x88\xf8\x3e\x85\x19\x94\xab\x2e\x15\xc3\x09\xf0\x0d\ \x53\x40\xca\xbc\x56\xf9\x15\xcc\xeb\x7a\xd6\x8c\x8a\xff\x8e\xcb\ \xb2\x48\x45\x22\x81\x3b\x78\xb0\xf9\xb6\x80\x93\xb6\xc1\x2d\x38\ \x80\x27\xd2\xc3\x19\xaf\x43\x55\xa3\x43\x6b\xc3\x79\x77\xc5\x80\ \x57\xb3\x28\x0d\xcc\x83\x63\xe0\x6f\x97\x3c\xb9\xcf\xb9\xc3\x8c\ \x3c\xc5\x8b\x18\x41\xe0\xcc\x88\x72\x39\x95\xd7\x7e\x0e\x96\xcc\ \x2b\xbc\x2a\x01\xfe\x04\xbf\x65\x8b\x60\x2e\x18\xcc\x83\x52\x58\ \xa8\x56\xb8\x83\x19\xb8\x43\x27\x5f\x11\x12\x5c\xba\xb0\x9f\x00\ \x39\x0c\xc2\x20\x78\xa2\x0e\x07\x57\xf0\x22\x81\x28\x24\x82\x95\ \x3a\x80\x1f\xa4\x79\x60\x17\x01\xaa\x9b\x53\x2c\xa0\x40\x84\xf7\ \xa6\x15\x90\x4f\xb4\x16\xb9\xc3\x66\xad\x55\x48\xb6\x74\xe8\x84\ \x8e\x69\xe8\x6c\xfb\x8f\x62\x14\x03\x1c\xa4\x06\x1c\x74\x23\xbc\ \x66\x81\x3b\x88\xa7\x15\x08\x3b\x18\x04\x3c\x14\x29\xc5\xa0\x66\ \x85\xad\x32\x86\xc1\xc3\x65\x29\x5a\x93\x86\xda\x70\x96\x38\x80\ \x43\x3f\x72\x0b\x0c\x03\x3d\xfc\x32\xa9\xa3\x68\xb9\xaf\x12\x23\ \xfc\x38\x9d\x53\x93\x19\x1c\xf3\x3c\x4d\x6f\x0b\x44\x92\x3c\x50\ \xdf\xbc\xb7\xa7\xcc\x1c\x6b\xf5\x35\xbb\x16\xd8\xd4\xe6\x7c\x02\ \xe6\xf6\xbb\x88\xab\xed\x09\xc0\x83\x21\x2b\x01\x19\xb2\x88\x53\ \x90\xa7\x7b\x3a\xae\x3b\xd0\xf1\x3c\xf0\x8d\xa9\xd5\xc8\xa0\xda\ \x2b\xa1\xc3\x12\x1b\x38\x34\x44\xff\x32\xc6\x0f\x81\x38\x77\x7c\ \xf2\x02\x26\x0b\x84\xbc\xa9\x95\x21\xac\x6f\x19\x2d\x03\x8c\x3b\ \xc0\xc8\xe3\x8e\xdc\xa9\xc1\xfb\x62\x17\xd1\x89\xfb\x83\x3b\x3d\ \x2f\x7b\x86\xfe\xa1\xd9\xba\x03\x29\xc0\xec\x5b\xc6\xe5\xb0\xf3\ \x4d\xa0\xca\x48\xb4\x83\x23\xe4\x31\x3c\x64\xc9\xe5\xb0\xef\xf0\ \x7a\x86\xa1\xec\xb5\xc0\x42\x93\x33\xd4\x8b\xbb\x2e\x50\xfd\x5f\ \xaa\x3a\x72\xbd\xc1\x3c\x74\x0e\x64\x0f\x84\x8b\x57\x85\x56\xa9\ \x74\x1b\xe8\xa3\x3b\x44\x07\x91\x22\x84\x07\xe8\x1c\xa3\xfd\xeb\ \x27\x42\xb0\xdb\x93\x03\x39\x14\xab\x37\xd2\x01\x1d\x60\xc5\xa5\ \xd7\xf8\x07\x40\xf0\x37\xca\x08\x3c\x4c\x41\x37\xea\xbc\x3c\xbc\ \xfe\x27\x9a\x6d\xec\x25\x46\x0b\xf8\x41\x2f\xf4\xc2\x3a\x34\xb2\ \xe1\x9f\x3a\xe2\x33\xcd\x83\xa7\x3b\x98\xe6\x80\xbf\xf1\x27\xf5\ \x7a\xb3\x12\x18\x32\x35\x14\x43\xd1\x3f\x85\x0c\xd0\x93\x33\xc0\ \x43\x98\xeb\x1c\xd4\x30\x86\x3f\xf4\xaa\xe5\x16\x81\xdb\x6b\x2e\ \x1b\x0c\x00\x45\x0e\x69\x9b\x7f\xa1\xb6\xcf\x03\xf0\x3a\xee\xeb\ \x77\x63\x22\x7c\x00\x88\x32\xc6\xcd\x5a\x29\x1b\x6d\x2e\x30\x0f\ \x41\x9a\xfb\xc1\x3a\x88\x3b\xf0\x07\x3f\xd3\x7c\x3c\x90\x4b\x11\ \x79\xc3\x11\x40\x88\x10\xf8\x4b\xa0\x88\x5f\x07\x0f\x16\x54\xb8\ \x90\x61\x43\x81\x83\xe6\xd9\xa3\x56\x90\x4d\x8b\x16\x04\x1d\x32\ \x2c\x66\xfe\xd1\xe2\xc6\x16\x53\xdc\x15\x99\x42\x0a\xce\x90\x90\ \xf0\x3e\x18\x69\x43\x23\x11\x3c\x2b\x6d\x8c\x58\x81\x57\xe4\xcd\ \x2d\x24\xb7\x54\xd2\x28\xd2\x82\x1e\x3c\x78\x70\xd8\x88\xa8\xe8\ \x60\x0a\x9c\x16\x0e\x2c\x12\x9d\xe2\xc0\x81\x9f\x21\xc3\xd8\x0c\ \x1b\x32\x84\x9e\x1f\x3f\x8c\xfe\x65\xd5\xba\x95\x6b\x57\xaf\x5f\ \xc1\x86\x15\x3b\xf6\x2b\x23\xb3\x8c\xe8\xa8\x6c\xb3\x76\x2d\x8d\ \x79\xc5\x1a\x26\x34\x88\x10\x63\x46\xbb\x77\xf1\x2e\x1c\x54\x70\ \xa3\xc7\x16\xc3\xfe\xc2\x01\xd9\x6b\xdd\x94\x01\x21\x8b\x24\x32\ \x72\xeb\x83\xae\x97\x2c\xe1\xbd\x11\xc5\x12\xc9\x5a\x23\x3f\xa7\ \xcc\x6c\x51\x90\xde\x14\xcf\x9f\xa7\x98\x49\x94\xa8\x97\x2e\xc2\ \x0e\x86\xa5\xf6\x93\xda\x10\x56\xb2\xaf\x61\xc7\x96\x1d\x3b\x16\ \x8b\x18\x6c\xe5\xd1\xe8\xe5\x0f\xee\x5c\xba\x08\xf3\x06\x17\x5e\ \x77\x21\xb9\x79\x70\x84\xfa\xe5\xd8\xa2\xe2\x47\xcf\x70\xe0\x14\ \x36\x5c\xe4\x56\xa2\x22\xba\x12\xdd\x82\x97\x48\xd4\xca\x99\x2f\ \xdb\xdc\x3a\x39\x25\xa8\xd0\xe8\x46\x41\xaf\x2b\xdd\x2b\xf1\xe8\ \x5e\x56\x57\xb7\x30\x34\x9b\x7e\x7d\xfb\xb2\x19\xc5\x6a\x45\x67\ \xad\xfe\x3c\x24\x53\x8c\x29\x28\x21\xba\x84\x2b\xf0\x2e\xe2\x0a\ \x82\x08\x09\x33\x90\xeb\x68\x39\x8a\x38\x02\x0c\x8e\x61\xc8\x61\ \x63\x88\x22\xdc\x19\x86\x94\x5e\x7c\xba\x85\x86\x36\x44\x49\xc4\ \x1d\xc5\x58\x72\x47\xba\x27\x82\xb2\x70\x8a\x16\x9e\x58\xa7\x88\ \x01\xe8\xa1\x27\x35\x7a\x7a\xc9\x4e\x14\x51\x6e\xd1\x65\x1d\x07\ \x9e\x98\xef\xbe\x1f\x81\x0c\x52\xab\xfc\x5a\x81\x09\x09\x6a\x7a\ \xf3\xcd\x37\x04\x0d\x34\x50\xae\x81\x20\x72\xc7\x8a\x29\x95\xd8\ \x2c\xa8\xe5\x2c\xa2\x08\x30\x8e\xae\x1c\x86\x9e\x27\x5a\x84\x07\ \xa7\xc9\x68\xd0\xee\x16\x2b\xe8\xf8\x60\x1d\x52\x48\x79\x82\xc5\ \x18\x47\x22\x65\x1d\x78\xdc\xa1\x87\x39\x36\xa2\x1a\x00\xbb\xee\ \x70\x4c\x44\x97\x7c\x84\x0c\x54\xd0\xfa\xce\x32\x22\x91\x79\x36\ \xfb\xed\xb7\x26\x19\x6d\x08\x0e\x25\xd0\xa4\x21\x26\x2b\x56\x14\ \x68\xb9\xa8\x0a\xfa\x2b\x35\xc0\x04\x62\x03\xcc\x16\x3f\x10\xc5\ \x8a\x31\x8d\x10\xc5\x08\x95\x44\xd5\xa5\x88\x21\xe0\x18\xa0\x88\ \x75\x06\x90\xd3\xa7\x22\xda\x8c\x0a\x4f\x16\x13\xeb\x0e\xc4\x1b\ \x63\x19\xd4\xd7\x5f\x69\x2b\x83\x14\x7e\xfa\x18\x48\xae\x27\x1b\ \xfe\x6d\x12\xa2\x39\x24\x85\xe9\x03\x24\x94\x70\x67\x0a\x3b\x33\ \xcd\x52\x04\xe6\x86\x71\x80\x2a\xc0\xa2\x82\x2a\x4c\xc6\x42\x3d\ \x95\x06\x5d\x2d\xb3\x6e\x80\x01\xd6\x71\x27\xd6\x29\x60\x9d\xe2\ \xd3\x27\x86\x11\x6a\x08\xee\xc8\x6d\xa3\x0e\x60\xf1\xcd\x37\xac\ \xfc\xf2\x41\x12\xb8\x81\x92\x6d\x32\x94\x13\x90\x98\xf2\x83\xb4\ \xac\x88\x16\x1e\x1a\x68\xf8\xaf\x3c\x81\x38\xb5\x08\xb0\x29\xac\ \xca\xd6\x29\x6f\xa7\xd0\x45\xcc\x53\xb5\x83\x47\x2d\xb6\xac\xa0\ \x95\x1e\x74\x59\x25\xa7\xc5\x22\x8a\xf8\x12\xc5\x61\xd6\xb9\x91\ \xad\xb5\xd0\xd1\x57\xe6\x99\xb7\x92\xc5\x10\x36\x14\x0d\x38\xaf\ \x5f\x42\x09\x65\x90\x29\x52\x32\x42\x09\x25\x3e\xb0\xe2\x03\x77\ \xdc\xf1\x18\xa6\x44\x36\xab\x76\x33\xc0\x86\xf1\xa3\x17\xf6\xd8\ \x5b\x47\x46\x0b\x13\x0b\xf5\x03\x78\xd6\x59\x27\xd4\x97\x41\x84\ \xd5\xc5\x5a\x07\x48\xe9\x96\x75\x50\xf4\xb4\xe5\xb5\xc8\x75\x8d\ \xe6\xb7\xf5\x65\xc4\x10\x43\x42\x01\x58\x67\x87\x08\x0a\x85\x1c\ \x77\xb2\x00\x23\x0b\xa2\x91\xf0\x69\x8e\x0f\x3e\x60\xc7\x9d\x94\ \xda\xd2\x05\xc5\x6b\x45\xd8\x74\xd3\xa6\xd4\x2b\x82\x30\x3f\xfe\ \xaa\x5a\x47\x17\x5d\x6e\xc9\x5c\x97\x01\xc8\x71\xf5\x83\x5b\xd8\ \xc2\x51\x63\x16\xd6\xbc\x50\xa5\x5b\x48\xa9\x08\xcf\x75\x6e\xc1\ \x51\x57\x23\xe0\x8e\xfd\xed\x9b\x43\x61\x32\xe0\xa0\xc8\x39\x61\ \x9e\x2c\x9e\x45\xfa\x04\xa4\xdd\x79\x20\xe9\xad\x51\xe6\xcf\x32\ \x2b\xe2\x7b\x9c\xa9\xa6\x9a\x32\x6d\x9d\x21\xfc\x70\xf1\xba\xcb\ \xfd\x7c\x11\xc5\x27\x06\x68\x9d\x2d\x8e\xb5\x7b\xb5\x08\x31\x37\ \x07\x33\x45\x17\x87\x58\x87\x3b\x16\x64\x4f\x7f\xe6\xb9\x37\x30\ \x04\xd9\x02\x83\x3a\x01\x1e\x33\xdc\x01\x03\xf8\x68\xcb\x98\xe2\ \x04\x90\x42\x9a\x03\x1e\x3a\x62\x80\xb4\xff\xbd\x2c\x11\x48\xf9\ \x0b\x53\xac\x82\x40\xa9\xad\x83\x72\xf4\x80\x9e\xf4\x50\xf6\xaa\ \x01\xa4\xed\x09\x45\xf8\x18\xdb\x0a\xb7\x26\x52\xb8\x8a\x1d\x56\ \x5b\x5c\x54\x28\xa8\x0b\xb7\xa9\x8f\x84\xf8\x9a\xdb\xcd\xf2\x32\ \x08\x8b\x18\xc7\x1d\x48\xf8\x80\x3c\x4e\xa5\x04\xfd\x01\x8f\x86\ \xc0\x63\x07\x4a\xd2\x04\x8f\x01\xc0\xa3\x5e\xf2\x28\xc2\xa6\x3c\ \xb3\x3c\x05\xbe\x47\x46\x52\x89\xdc\xab\xba\x86\x2e\xf1\x3d\xa1\ \x0e\x17\xbc\x51\x22\xd6\x44\x8f\x75\xb0\xc3\x4f\x1e\x5c\xfe\x22\ \x45\x46\x58\x42\x2d\xfe\xaa\x35\x86\xc8\x48\x0b\xcc\x30\x25\x2b\ \x34\x0b\x6c\x56\x70\x07\x39\xae\xe0\xbb\xe0\x7d\x60\x0e\x45\xf0\ \x1f\xe1\x6e\x41\x07\x9f\x34\xb1\x8c\x3b\xea\x8c\x1f\xa6\xf0\x14\ \x8b\x39\x65\x08\xda\x2a\x1f\xac\xfc\x70\x2e\xe9\x59\x0d\x4f\x6c\ \x58\x1b\xd8\xe8\x50\x84\x27\x90\x22\x31\x75\xb8\x45\xac\x46\x76\ \xae\x2f\x09\xa4\x35\x5b\xb4\xa4\xcc\xf0\xa4\xc2\x79\x84\xf1\x82\ \x60\x7b\x59\x95\xe0\xe0\x3b\x52\x24\xed\x8d\x9f\x23\x5c\x1d\xe8\ \x90\x16\x4f\x86\x67\x55\x2d\xf8\xe3\xb4\x9a\xe2\x14\xab\x54\xad\ \x81\x31\x42\x97\x24\x29\x58\x07\xb6\xb9\x2c\x44\x6d\x1a\x00\x3a\ \x6e\x51\x07\x1d\xad\xc3\x91\xe1\x43\x91\x8f\x2e\x99\x4c\x7c\x31\ \x42\x12\x45\x5a\xe5\x33\xad\xe0\x8c\x16\xe4\xae\x05\x83\x18\xa5\ \x4f\x08\xb7\x35\x94\xd0\xb1\x93\x6b\xf9\x00\x8c\x3a\xc3\xc0\xa9\ \x24\xd0\x0f\x97\x9b\x1c\x55\x3e\x15\xc9\x36\x7d\xaa\x08\xba\xbc\ \x51\x1d\x4c\x55\x07\x14\xd1\xa3\x08\x38\xaa\x83\x23\x6f\x74\x36\ \x74\xe5\x23\x8b\xca\xf4\xa7\xa0\xcc\x82\x09\x5d\x3e\xf3\x65\x46\ \xf8\xc0\x09\xac\x24\x82\xbd\xf9\x04\x1e\x75\x20\xdc\xfe\x0d\xad\ \xd0\xcd\xd0\xcd\x84\x2a\xe8\x62\x20\x7c\xa4\x26\xb9\xae\x75\x4d\ \x65\xd8\x4b\xa2\x20\x51\x06\x4f\x51\x5c\xc7\x91\x68\xd3\x01\x3d\ \x83\xa9\xab\x10\xbd\x68\x1d\x80\xfa\xe7\x4b\x81\x65\x96\x3b\xa8\ \x92\xa0\x6d\x80\x47\x79\xd8\x00\x07\x78\xf8\x8f\x05\x34\xa8\xc3\ \x4c\xbe\x67\xaa\x9a\xe6\x88\x14\x91\xec\x63\x2c\xad\x72\x51\x71\ \x4e\xe5\x09\xf4\xc4\x4e\x22\xd0\xa1\xaa\x22\x00\xb3\x0e\x6b\x9a\ \xaa\x22\x3d\x55\x41\x7a\x81\xe8\x16\x48\x74\x29\x4c\xc1\x0a\x2c\ \x4e\xb0\xc0\x78\x9e\xb4\x02\x50\x84\xe2\x8e\x18\x9c\xf2\x54\x33\ \x79\x80\x1b\xeb\x75\xa3\x7a\x19\x21\x65\xa4\x98\x8a\xb6\x12\x88\ \xd4\xae\x05\xd2\x6a\x0e\xe4\x4e\x1d\xac\xf3\xa2\x76\x76\x75\x91\ \xaa\x9a\x60\x56\x2d\xc7\xcb\xae\xf6\x2a\xac\x8d\x8d\x69\x2b\x9c\ \x09\xb6\x0f\xc0\x61\x10\x70\x28\xc2\xc1\xe8\x80\x26\x83\xce\xaa\ \x08\xb7\xa9\x69\x78\xd0\xd6\xd4\x71\xfa\x01\x81\x0c\x94\xdc\xab\ \xac\x12\xa3\x7a\xe6\x48\x6c\xae\xaa\x83\xf5\x5c\xe4\x41\x3c\x35\ \x15\x73\x7d\x2a\x82\x01\x1c\x9b\xdb\x5f\x05\x74\xa0\x96\x51\xd3\ \x35\x31\x7b\xaa\x34\xb1\x80\x4e\x9e\xad\xe9\x62\xfe\xda\x14\x23\ \x29\x52\x4e\x35\xa5\xd1\x91\x1f\x5e\x35\x04\x30\x59\xce\x7b\x5d\ \xbb\x0e\x3a\xd0\x86\x2e\xeb\xa5\x88\x0d\x52\x84\x55\xf9\xfa\xa9\ \x5b\xf1\x02\x29\xa0\xa9\x54\x49\x9a\xbe\x77\x30\x95\x18\x21\x4d\ \x89\x60\x41\xb8\x3c\x59\xaa\x8f\x8d\x14\x4c\x45\x55\xa2\x50\x9c\ \x0a\x9f\xeb\xd0\x63\xb6\x10\xdc\xe8\xe5\x52\xe6\x2a\xeb\xdd\x49\ \x28\x50\xc1\xd3\x30\xc6\x9b\xe0\x98\x8e\x35\x87\x3d\x65\xcb\x2d\ \xde\x7b\x2a\x09\x7b\xd2\x65\x96\x79\xed\x46\x61\xb5\x38\x2f\x61\ \x54\x72\x43\xc0\x16\x3d\x91\x58\x04\x2a\x5a\x4f\x8a\x12\x84\x57\ \x8a\x98\xd3\x29\x05\xaf\xf8\x57\x98\x88\x45\x2c\x94\x06\x93\x34\ \x19\xcf\x08\x0e\xad\x17\x88\x3a\x59\x2a\xec\x4e\xf0\x4b\xc3\x00\ \x53\xf9\xa2\x47\x18\x3d\x82\xe9\x5c\xe7\x4a\x0c\x3a\x52\x06\x26\ \xef\xc2\x88\x5b\xd8\xa2\x24\x8b\xa1\x3c\xa8\xb3\x6c\xef\x73\xfc\ \xb9\x8c\x01\x10\x57\x50\x98\x80\x2d\x47\x12\x54\x99\x97\xd4\xb3\ \xd1\xe8\x49\x17\x4f\x43\x80\x91\x8b\x54\xd5\x51\x5c\x62\x6b\x53\ \x41\x41\x66\x94\xe1\x1c\x24\xb3\xc4\x22\x06\x11\x86\xc9\x6b\x7b\ \xfb\xd9\x52\x01\x96\xc7\x5f\x92\xa2\xaa\xa2\xfe\x27\xb5\xab\x81\ \x10\x4c\xd3\x0b\xed\xc8\x56\x13\x14\xa8\x51\x45\x3e\xe1\x8d\xf3\ \xa3\xed\xc3\x08\xc8\xae\x97\x0e\xdd\x91\xe8\x33\x6b\x4c\xab\x21\ \xd8\x75\xaf\x0c\xe4\x68\x6a\xfe\x12\xa3\xe9\xaa\x8a\x2a\x40\x7e\ \xca\x66\xe0\x35\x95\x61\xbc\x19\xd2\xad\x06\x92\x8b\x39\x21\xe1\ \x0a\x7f\xd6\x32\xc1\xac\xde\x8b\x06\x60\x98\xe7\xc1\xcb\xcf\x5d\ \x53\x32\xca\x78\x8c\xae\x8b\xfd\x45\xb4\xf4\x70\xb4\xab\x91\x3d\ \x1b\x99\xb2\xb7\xd2\x04\x95\x28\xaa\xba\x8a\xc4\x01\x48\x57\x8a\ \xe5\x4b\xf3\x8f\x77\xfd\x84\x3f\x52\xa5\x88\x5e\xfa\x6a\xb2\xc1\ \xfd\xa3\x39\xc7\x20\xcf\x5a\x76\xb6\x6d\x19\xad\xe4\x01\x64\xe7\ \x16\xfc\x6d\xd1\x61\x9b\x0a\x23\xe8\x31\x77\x18\xdf\x0e\xf7\xbd\ \xef\xc3\x08\x4e\xa0\xe0\xd2\x9f\xa5\x83\x8e\xe0\xb0\x32\x6d\x83\ \xce\x50\x85\x46\x9b\x50\xd2\xa9\xdc\x61\xe8\x00\xdf\x0d\x17\xd2\ \x8b\x59\xb0\x5e\x5a\x87\xee\x03\xab\xf2\x31\x4f\x74\xd1\x9d\xb3\ \x95\x4f\x91\x9d\x3a\xb0\x9b\xfe\xc2\x70\x87\x8f\x5c\xdc\x8c\x90\ \x45\x2c\xba\x59\xe3\x0f\x94\x3b\x3c\x89\x18\x00\xb6\xfc\x00\xba\ \xf0\xa8\x6a\x1d\x06\x7e\x98\x50\xae\xc5\xe8\x06\x92\xef\xbc\xe4\ \x8c\xb0\xcd\xc7\x2a\xce\x8e\x94\xeb\x62\x53\xae\x04\x1d\x8e\x84\ \xdc\x66\xa8\x64\xea\xd8\x3c\x77\x3a\x6c\x30\x31\x56\x98\xdc\x48\ \xa2\x67\xe3\x51\x54\xd6\x21\x0f\x10\xe9\xc2\x2a\xdb\x72\xdc\x5f\ \x5a\xf0\x74\xb1\x8b\xdb\xc5\x31\xb8\xb4\xa1\xde\x03\x15\x07\x70\ \xa7\x3a\xcf\xab\x1c\x73\x25\x66\xef\xb1\xcf\x1d\x3f\x8c\x58\x02\ \x34\x75\x71\x6a\x36\xac\x3d\x73\x4e\xf9\x73\x11\x56\xc3\xeb\xa6\ \xd3\x9d\xf0\xfb\x32\xcb\xcf\x2d\xd3\x06\xae\xeb\x31\x6a\xd8\xe9\ \x45\x1f\x2d\xc7\xf5\x22\x3e\x61\xf0\x85\xb7\x7c\x58\x30\xd1\x0a\ \x16\x80\x88\x34\x4c\xde\xb0\x90\xa1\xb7\x78\x1f\xaf\xfa\xf2\xa5\ \x27\x14\xac\x27\xc7\x5c\xe5\x3a\x30\xd0\x76\xfa\x0b\xab\x4d\x1f\ \xfb\xd7\x98\x25\x1f\xa9\xf5\xd2\xe8\x7d\xbc\x2d\x8b\xe8\xa0\xf2\ \xb2\xf7\x3d\x57\xce\x92\x8f\xa6\x0e\x3f\x46\x5e\xda\x96\xdc\x7f\ \x9f\x7c\xb2\x30\x42\x07\xf9\xd0\x16\x8c\xb4\x3d\x95\xde\x2b\x9f\ \xfa\x5b\xa1\x3d\x23\x54\x4f\x8f\xea\x6f\x5f\xd9\x86\xd0\x01\x98\ \xc2\x1a\x10\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\ \x00\xf0\x00\xf0\x00\x87\x04\x02\x13\x1d\x84\xab\xff\xff\xff\x8b\ \x89\x44\xff\xff\xff\xff\xff\xff\xd3\x87\x8a\x93\x49\x35\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd3\x91\xb6\xce\xc8\x99\ \x5e\xc9\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x0f\ \x27\x19\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x96\xa7\ \xb1\xff\xff\xff\xff\xff\xff\x51\x67\x9d\xff\xff\xff\xce\xc8\xe2\ \x13\x28\xa9\x50\xa8\xe0\x09\x68\x9c\xff\xff\xff\x0f\x27\x68\xcf\ \x67\x46\x99\x62\x3c\xf3\x8a\xb8\xff\xff\xff\xff\xff\xff\xf6\xa7\ \xb7\xff\xff\xff\xf9\xc8\xe4\xb1\x8a\xa7\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x4e\x68\xf8\x12\x29\xe1\xff\xff\xff\x2f\x48\xeb\xff\ \xff\xff\xf7\xe7\xbb\xef\x71\xa4\x93\xf3\xfc\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf0\x6f\x44\xff\xff\xff\xf4\xb2\xf2\ \xff\xff\xff\xff\xff\xff\xae\xa8\xef\xff\xff\xff\xfb\x88\x5b\x36\ \xa5\xda\xf6\xe8\xf2\xff\xff\xff\x6b\x69\x23\x91\xc8\xfa\xff\xff\ \xff\xff\xff\xff\x8f\x89\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xcf\xd9\xf0\x6e\x69\xea\x74\x8b\x3b\xf8\xd8\xe8\xff\ \xff\xff\xff\xff\xff\xd3\x8f\xf4\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x38\x56\xf6\x0b\x18\x1c\xb7\x66\x4a\xff\xff\xff\x3b\x64\xf6\ \x1a\x87\xbb\xff\xff\xff\xff\xff\xff\x11\x39\x68\x99\x28\x22\xff\ \xff\xff\xb2\x88\xee\xaf\xc8\xf6\xff\xff\xff\x2c\x8a\xc4\xff\xff\ \xff\xff\xff\xff\xf1\x99\xb4\x07\x15\xdd\x70\x69\x66\x2f\x48\x64\ \xff\xff\xff\xd0\xae\xf7\xff\xff\xff\xff\xff\xff\xfa\xfd\xfa\xff\ \xff\xff\xb3\x68\xed\xfa\xb8\xbc\x90\xb1\xf8\xf0\x92\x91\xae\xb9\ \xf3\xfa\xcf\xa1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x72\x8d\xf9\xff\xff\xff\xff\xff\xff\x76\xf2\xfc\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x49\x27\xdc\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xf8\xa6\x88\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x70\x57\xee\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x95\x55\xf0\xd0\xf5\xfb\x92\x6e\ \xf8\xff\xff\xff\xa6\x1b\x62\x70\x13\x52\xb0\x34\x5a\xff\xff\xff\ \xff\xff\xff\x98\x38\xd6\xff\xff\xff\xf4\x07\x08\xb4\x2a\x7c\xff\ \xff\xff\xff\xff\xff\xb2\xf3\xfc\x6f\xb3\xf5\x35\x4d\x19\x4f\x96\ \xe2\xb4\x6c\x6d\x34\x1a\xe4\xff\xff\xff\xff\xff\xff\x75\xca\xf9\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd4\x97\x91\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x91\xd8\xfb\xaf\xd8\xfb\xff\xff\ \xff\xfc\xb7\x89\xff\xff\xff\xff\xff\xff\xff\xff\xff\xce\x58\x32\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x19\x35\xa7\x12\x78\xa8\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x58\x75\xfa\x19\x36\xdf\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7a\xf4\xaf\ \xb7\x7a\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xb3\x58\xb0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb2\x58\x38\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x8e\x97\x4b\x96\x54\x34\x04\x58\x8a\ \xff\xff\xff\x94\xb8\xb0\x47\x9a\xc6\xff\xff\xff\xaf\x9a\xad\xff\ \xff\xff\xfa\xf8\xc5\xff\xff\xff\xfb\x97\x64\x6f\x78\x28\x8b\x99\ \xf5\x92\x99\x6b\xff\xff\xff\xff\xff\xff\xae\x98\xed\xff\xff\xff\ \xb0\x79\xf8\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\ \x83\x06\x43\x29\x5c\x88\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x48\xb1\ \xa2\xc5\x8b\x18\x33\x6a\x6c\x88\x01\x03\x9b\x6e\x9c\x7a\x2d\x64\ \xb8\xb1\xa4\xc9\x93\x28\x53\xaa\x5c\x29\x31\x54\xab\x40\x30\x03\ \xd9\xb0\xf5\x6e\x45\xaa\x11\x9c\x46\x86\x62\xc9\xb3\xa7\xcf\x9f\ \x40\x33\x86\x3a\x12\x53\xa6\x8d\x52\x48\x4b\x35\x30\x30\xc2\xe6\ \x16\x9d\x41\xa3\x4a\x9d\x4a\x55\x63\x28\x5b\x31\x8f\x26\xb5\xc1\ \xb5\xd4\xcc\x5b\x47\xe4\x89\x15\xab\x73\x67\xd5\xb3\x68\xd3\x02\ \xed\x85\xd5\xa8\x56\xaf\x5c\x03\xdd\xf2\x6a\xcb\x06\x4c\xae\xef\ \xde\x35\x78\x53\x47\x24\x54\xb5\x80\x03\x0b\x96\xb8\xa2\x28\xd7\ \xae\x87\x67\x96\xb2\x55\xd7\xae\x51\xa4\x97\xe4\x10\x91\x42\x99\ \xf2\x8e\xbf\x83\x33\x6b\x46\x1b\x0a\xc3\x5d\x99\x8f\xe1\xda\xba\ \x75\xab\x6e\x5d\xb7\xa5\x2e\x45\x96\xc3\xba\xb5\x6b\x39\x75\x72\ \xe6\x2c\x6b\x76\xb3\xed\xdb\x25\x43\xbd\xb3\x9b\xb8\x37\xef\xd2\ \x8d\x13\xa7\x7e\x4d\xbc\xb8\x9c\x11\xbd\x92\x87\xf2\x4b\x12\xb7\ \xf3\xe7\x0e\x75\x0b\x3f\xec\x15\xa6\xad\x56\xd8\x41\xf3\x46\x6a\ \xbc\xfb\x6b\x22\xad\x0d\xfe\xec\x18\xb1\xe3\x32\x66\xe8\xe8\x6f\ \x4b\x3f\xda\x15\x6e\xd1\x21\x67\x86\xc8\xf4\xba\xf8\xc8\x6a\xef\ \xf8\x89\x83\x57\x21\xcb\x80\x81\x1a\xe6\x8d\x94\xde\x80\x81\x85\ \x32\x0d\x52\x5a\x1d\x56\x94\x03\x43\x80\x70\x46\x20\xc3\xa9\xa6\ \x5a\x7e\x14\xe2\x47\xc4\x5e\x8b\xc8\xa2\x86\x10\xb3\x29\x44\xe0\ \x87\x52\x85\xf2\x46\x52\x08\x56\xe7\x58\x20\x43\x78\x31\x84\x0d\ \x13\x56\xe8\xe2\x8b\x92\xa9\x90\x47\x03\x75\xe4\x92\x93\x18\xcd\ \x81\xa8\xa3\x49\xa1\x08\x11\x59\x52\x97\x6c\xe5\x9e\x03\x0e\x40\ \x08\xd9\x7d\x30\x26\xe9\x1d\x3d\x4c\xd2\x90\x47\x2e\x79\xdc\x21\ \x12\x8e\x39\xee\x68\x65\x4b\x77\xb0\x36\x61\x64\xab\x49\x48\xdf\ \x56\x47\x21\xa9\xe4\x98\xac\xd1\x23\x07\x93\x4d\x3a\xb9\xc8\x0e\ \xc9\xb5\xd9\xcb\x8d\xb4\x5d\x29\x27\x41\xa1\xdc\x21\xa1\x98\xad\ \xdd\xf9\x23\x89\x78\x92\x99\x24\x9a\x34\x38\x99\x87\x3d\x6c\x2e\ \x57\xde\xa1\xc8\x25\x07\x52\x4e\xcc\x55\x39\x67\x7a\x75\xea\xf9\ \x1a\x97\x12\x6a\x29\xa9\x85\x93\xf9\x59\x1c\xa0\x4e\xe6\x62\x0f\ \xa1\xe5\x09\x71\xa8\x9b\xbd\xb0\xb9\xc3\xa7\x84\x22\x47\x65\x59\ \x8f\x42\x17\x8a\x2c\xfe\xaa\xa5\x16\xe4\xac\x77\x5a\x9a\x24\x11\ \x32\x4a\xa1\xe9\x6b\x68\xd2\x43\x83\xa7\xa2\x0a\x21\xac\xb0\xe5\ \x89\xd4\xe6\xa1\x3b\x88\x3a\x5e\xa2\xdd\x1c\xe0\x6c\x48\x71\xb6\ \x9a\xd9\x72\x1d\x90\x48\x62\x98\xb2\x1e\xf9\x22\x11\x1d\xc8\xd2\ \x00\x78\xbb\x96\x09\x68\x1e\x8b\x80\x2a\xac\x3d\xca\x16\x7b\xe8\ \xb0\x6c\x92\x97\x68\x2f\x62\x88\xe1\xe6\x16\x53\xbe\x79\x9e\xb4\ \x67\x85\x92\x0a\x90\x60\xb6\x87\x18\x77\x15\x76\xc0\x06\x1b\x06\ \xa8\x10\xee\x99\xad\xf9\xfa\xe4\xa7\x42\xa0\xcb\x2e\xb2\xc3\x0a\ \xfb\xae\x9b\xdd\xc0\xcb\x49\x37\x15\x4f\x5c\x1e\x72\x3b\x00\xc8\ \x2a\xbe\x51\x85\x62\xc0\x5b\x41\x26\xe5\xd6\x89\x32\x21\x59\xe9\ \x6b\x4f\xb0\xa1\xc5\x26\xf2\xd0\x70\xb0\x99\x67\x76\xfa\xe9\x22\ \xb9\x94\xab\x6c\xb0\xe7\x8a\xfa\x6e\x48\x21\x55\x0c\x34\x48\x18\ \x8f\xf0\x6e\x37\x46\xfb\x27\x4b\x86\xfe\x35\x7d\x2f\xc8\x29\x85\ \x32\x02\xbf\x5e\x96\x8c\x60\x56\xc3\x69\x09\xb0\x6b\xf2\x00\x00\ \xc0\x29\x75\xcc\x8c\xb0\x93\xa8\x42\x99\x0b\xb0\xe5\xa1\x4a\x6c\ \x72\xf1\x02\x4d\x6a\x2f\x15\x8b\x81\x71\x2f\x3f\x27\x37\x42\xd3\ \xb2\xe4\x2d\x8b\xfe\x3c\x7b\xaf\x30\xf0\x0a\x1d\xc8\x16\x2d\xd4\ \x18\x89\xec\x65\x52\xc4\xc5\x6a\x35\x92\x59\xbb\x96\x8f\xd7\x62\ \x3c\x61\x9c\x99\x94\x53\x48\x39\x3d\x83\xde\x7c\xb6\xa7\x0c\xa3\ \x9a\x6a\x9b\x9c\xc4\x2b\x2f\xa9\x20\xc1\x8d\xf1\xdc\x6d\x16\xdd\ \x74\x3e\x7a\xf3\xfd\xc6\x0a\x24\xb0\xb1\x02\x10\x40\xe0\xf1\x06\ \x1e\x65\xac\xf0\xa6\xb1\x1f\x13\x0e\x91\x88\x5c\xf2\x59\x1c\xa5\ \x2b\x6b\xf9\x1d\x1b\x5e\x1b\xa1\x2b\xaf\x67\xa2\x89\x70\x7e\x4c\ \x2e\x8c\xf3\xe6\x9b\xab\x8d\x2c\x9b\x6d\xc6\xbb\x3b\xe9\xa7\x9f\ \xae\x68\xd1\xa9\x18\x90\x4a\xf8\x2b\xc8\x32\x4d\xdf\x2b\xf8\x9d\ \x3e\x06\x78\xe0\xd1\xc1\x13\xe0\xca\xa1\xc2\x08\xa9\x5c\x0c\xad\ \x80\xbe\x27\xb4\x43\xf0\x40\xf6\x09\x23\x11\x6d\xf0\xda\x01\x24\ \xc7\xab\x5e\x35\xef\x79\x93\xc3\x1c\xf5\xf2\xf0\x24\x06\x3e\x09\ \x6d\xc9\x29\x16\xdb\x76\x37\xba\xe4\x6c\x61\x6e\xdd\x3b\x80\xf7\ \xba\xb1\x85\x0e\x92\xe0\x83\x24\x18\x80\x01\x64\x51\xbe\xbe\xb1\ \x61\x03\x6c\xa8\x5d\x07\x88\xb0\x32\xd5\xd8\xe2\x08\xd8\x31\x85\ \xec\xc6\x97\x0a\x4d\x3c\x4d\x5a\xcb\x51\x5c\xad\x76\xf5\x84\x53\ \x08\xd0\x60\xfe\xae\xb9\x9c\x01\x69\x96\x40\x41\x05\xca\x81\x50\ \xb2\x99\xa8\xde\x66\xb1\xd4\x55\xac\x17\xf4\xda\xc2\x08\xa4\x78\ \xc1\x6e\x88\x41\x83\x18\xbb\x20\x09\xba\xc1\x8e\x2e\xb2\x83\x04\ \xa9\x48\xdf\x0a\xc4\x92\x8a\x0d\x1c\x40\x1a\xf2\x78\x1f\xb8\xee\ \xb4\x18\xec\xb4\x02\x2b\x76\x69\x85\x03\x30\x90\x0f\x69\x0c\x00\ \x0a\x62\xb0\x21\xfe\x1e\xb5\x9c\xfe\x29\xc9\x7f\x52\xd0\x82\xd7\ \x36\x31\x8d\x02\x32\xa9\x79\xce\x23\x62\x10\x05\x95\x87\x40\x1d\ \xd1\x81\x0b\x13\x02\xa9\x42\xc7\x09\xb7\x3d\x91\x6e\x46\x8b\x22\ \x15\xb9\x88\x31\x2c\x92\xa0\x8b\xce\x0a\xe5\x17\x49\x60\x93\x15\ \x0c\xc0\x6f\x98\xc8\x07\x10\x56\xd8\xa5\x4b\x30\x06\x86\x6e\x0c\ \x44\x63\x02\x41\x24\x07\xc8\x11\x3e\x67\x38\x03\x2a\xf2\xe1\x07\ \x76\xe8\xd1\x43\x56\x5a\x8e\x56\xfc\x87\x1f\x62\x4a\x61\x03\x5e\ \x03\x80\x01\xe2\x57\x26\x44\x1a\x10\x81\x65\x62\x64\x23\x1d\x29\ \x28\x7b\xe8\x0c\x7b\xc9\xa9\xa4\x18\x42\x62\xba\x90\x24\xed\x6e\ \xf4\x9b\x62\x07\x2f\x08\x4a\x2f\x86\xd2\x59\xec\x10\xe5\x07\xc7\ \x37\x46\xb1\xb8\x0f\x7e\x72\x88\xd5\x11\x60\x78\x9d\x0f\x38\x60\ \x96\xb6\xfe\xa8\x25\x2d\x19\x64\xcf\x5a\x7e\x00\x1e\x67\x08\xc0\ \x19\xd8\x70\x80\x5f\x7e\x48\x5f\x90\x89\xa7\xf1\xb8\x34\xa9\x5a\ \x15\xcf\x35\x44\x18\x40\x32\x47\x10\x3f\x21\xf6\xea\x99\xaf\x71\ \xa0\x11\x1d\x49\x2e\x74\x21\x6b\x4a\xda\xe3\xa6\xa2\xa0\x38\x82\ \x1a\x18\xed\x26\x17\xd4\x62\x15\x41\x79\xce\x2e\x92\xc0\x59\x9b\ \x70\x16\x1b\xc2\x28\x96\x69\xbc\x61\x1a\xab\x7c\x42\xac\x48\xc3\ \x98\x7c\x7e\xa0\x9f\xb6\xdc\x67\x20\xe4\x58\x4b\x22\x0d\xc1\x01\ \xf6\x4c\x2a\x52\x89\x64\x4f\x82\xc6\x6b\x70\x83\xe9\x45\xa5\xf4\ \x44\xd5\xc3\xf1\xe9\x52\xad\xc1\xc3\x04\x04\x58\x51\x4e\x05\x6a\ \x88\x8a\xc4\x9c\x46\x9d\x14\xa8\x9c\x31\xec\xa3\x6d\xa3\x98\x05\ \x39\x78\x93\x9b\x4c\xb1\x59\xec\xc8\xe2\x07\xb9\xd8\x52\x10\xca\ \xf4\x00\x6c\x00\xe3\x29\xe5\xf1\x06\x0c\x00\x41\x1e\xed\xeb\x00\ \x69\x4a\x31\x97\x5b\xd8\xe0\x08\x1f\x18\x82\x62\x15\xab\x4f\x98\ \x14\xb5\xa8\x47\x65\x2a\x50\x1d\x60\x8a\xc4\xf6\x13\x03\x2f\xe5\ \xc4\x2f\x1d\x35\x15\x85\x54\xd5\x5a\xd6\xf2\x52\x7b\x52\x23\x2b\ \x24\xb5\x0c\x72\x79\x68\x66\x9a\x18\x48\x83\x8b\x56\xae\x49\x63\ \x3d\xfe\xa2\x59\x1b\xe6\x51\x09\xb6\xc9\x68\xa6\xcb\x64\x07\xe9\ \x97\x8a\x0b\x72\x22\x9d\x1a\x24\x81\x07\x81\x8b\xce\x51\xa6\x73\ \x94\xa4\x4c\x45\x3e\xd2\x27\x16\x0c\xc8\x03\x03\x65\x20\xcd\x60\ \x91\x32\x54\xc5\xaa\x88\xb1\xb5\x24\x2a\x64\x97\xba\xd4\x7e\x9a\ \xa2\xbb\xf6\x7c\x23\x76\x12\x1b\x80\x0d\x98\x71\x9b\x1d\x02\x66\ \xc8\x7a\x41\x5a\xab\xb1\x47\x38\x09\x55\x4d\x5c\x12\x94\xd0\xd6\ \x10\x21\x1f\x5b\x9d\x40\xd8\xc4\xe5\x2b\x6a\xba\x96\x72\x64\x6d\ \x6d\xaf\xa4\xb7\x88\x02\x7b\x34\x82\xa4\x7a\x2b\x07\xc7\xd9\xdb\ \x0e\x62\x2c\x9d\xbf\x8d\xeb\x16\x3e\x48\xdc\x03\x10\xd7\xa5\x20\ \x9c\xe9\xc0\x64\xb7\x5c\xe7\xe2\xe1\x08\xa3\xb1\x85\x57\x0c\x9b\ \xcf\xc5\x2e\xf6\xb1\xdb\x3d\x2a\x50\x95\xfa\xd8\x58\xb6\x22\xb1\ \xf1\x49\xac\x62\xe1\x61\x5e\x36\xc4\x34\x8f\x9c\x8d\x1a\x27\xe0\ \xeb\x9b\xf6\xdc\x47\xbe\x09\xf2\xb1\x6b\x3a\x10\x40\x65\x82\x07\ \x50\x69\xfa\xea\x21\x11\x69\xc4\x84\x49\x01\x58\xd3\x23\xd4\xb1\ \xc6\xe3\xc4\x29\xc2\x6d\x9c\x58\xc6\xf2\xe9\xe2\x4a\x57\x67\x89\ \x81\xa5\xa2\xb4\x70\x2a\x62\x87\xd7\x54\x28\x61\x00\x4a\x58\x01\ \xfe\x06\xec\x30\xcf\x36\x33\xe6\x28\xf9\x34\x2a\x83\x4c\x1c\x59\ \x3a\x33\xb5\xbb\x4b\x8d\x21\x65\xed\xf9\x5d\xcb\xd6\xf2\xa8\x80\ \x4e\x51\x40\x6b\xcc\x86\x50\xe0\x58\xbd\x27\x09\xc5\x8e\xa9\x83\ \xa0\xb7\x68\xcb\x35\x54\x6d\xef\x77\x06\x20\x48\xb0\x25\xcc\xab\ \x02\x4e\xa4\x11\x29\x47\x04\x06\x9a\xf5\x6c\x6b\x72\xd3\xa8\xe0\ \x46\xea\xb7\x32\x18\xa5\xe3\x13\x5f\x6f\x3b\x69\x61\xb8\xc6\xf5\ \x9c\xb0\x26\x41\x36\x5e\xba\x61\x0e\x2b\x01\x03\xa6\x30\xc5\x3b\ \x5a\x61\x0a\xec\x0c\x09\xc5\x74\x0e\xf6\x10\xfa\xa9\xd4\x7e\xca\ \xf1\xa7\xf0\xf8\x29\x8a\x91\x6a\x62\xa4\x2a\x5b\xb1\xd2\x38\xc3\ \x06\x40\xb0\x01\x44\xe7\xa6\x17\xc2\xa9\xea\xac\x5c\x84\x27\x22\ \x7b\xcd\x00\x34\xeb\x15\x35\x95\x0c\x5b\x25\xd7\x6c\x73\x0c\x2c\ \x97\x6d\x37\x96\xcd\x27\x52\xb1\x83\xe3\xbb\x5b\xaa\xef\xe6\x9f\ \x2d\xa4\x22\xae\x12\xb6\xf7\x16\x5e\x7d\x00\x4e\x3c\xeb\x00\xd9\ \x00\xb3\x4c\xd3\x37\x00\x3f\xac\xf9\x08\x6c\x36\x45\x5d\x4a\x61\ \x14\x5a\xee\xd3\xa8\xd6\x4d\x91\x17\x26\x3e\xf1\x13\xff\xf4\xe2\ \x18\x07\x28\x3c\xe0\x31\xec\x61\xcb\xd8\xba\xf1\x51\xac\x8c\xfe\ \x61\x1c\xd0\x62\x80\x00\x04\xed\x88\x1a\x6a\x58\xf4\x59\x95\xfd\ \x6f\x05\x5b\x25\xc1\xf2\x10\xd6\x5f\x6a\x36\x92\xb5\x99\x66\x92\ \x14\xc6\x9a\x8b\x74\x99\xaa\x54\x23\xad\x18\xbc\xc3\xd9\xb4\xa2\ \x37\x2d\x7c\xf6\xa6\xe1\xf8\xec\xdd\xac\xdf\x3a\xab\x1b\xa9\x60\ \xf5\x01\x62\xda\x06\xbc\xca\x4e\xcd\xf8\x88\xae\x74\x41\x6c\x9a\ \xeb\x14\x69\x41\x72\x36\xf1\x75\x83\x4d\x71\x2f\x00\x54\xa0\x25\ \x2f\x46\x31\x26\x1e\x80\x00\x98\xfc\xe4\x27\x5f\x7b\x00\xd8\xae\ \x76\x94\xb7\xa3\x1d\x61\x50\x79\x62\xe6\x43\xda\xad\xb4\xa8\x45\ \xdd\xc1\x93\x14\xd8\x30\x81\x03\xbc\xe1\xb5\xac\xb1\x39\x24\x5b\ \x1b\x4d\x8d\x12\x41\x4d\xea\x4a\x57\xa2\x2e\x06\x3e\x79\x8b\xcf\ \xe8\x47\xf7\xcf\x4d\x54\xbd\xf4\xf1\x75\x63\x8b\x5c\xa6\x61\x36\ \x9c\xd5\x86\x98\xca\x74\x60\xcf\xed\x00\x97\xc0\x32\x9a\xea\xb8\ \xf1\x8d\x45\x71\xec\xc3\x8b\x6a\x4f\xeb\xaa\xfd\xf6\xb8\xbf\x7b\ \x18\xee\xce\xfb\xde\xef\x7e\xf7\xbd\x6f\x87\xdd\xc3\x40\xfc\x94\ \x70\x22\xf6\x77\x19\x66\x89\xe2\x29\x29\x31\x11\x53\x0e\xf2\x38\ \x40\x2a\x3a\xd0\x1a\x1a\x3c\xfe\xf1\x1c\xc5\x79\x34\x03\xfe\x4c\ \x04\xcc\xd5\x21\x5d\x77\x58\xc4\x1d\x4c\x6a\xb4\xee\x2d\x38\xd5\ \x78\xd3\x5b\x7f\x30\x1f\x3e\xa5\xd3\xb0\x7b\xa9\x8e\xfa\xbf\xab\ \xbe\x89\xaa\xb3\xe1\xd6\x04\x94\xc3\x2d\xde\x71\x04\xad\xd4\x85\ \x9e\x27\x73\x17\x70\x84\x15\x6e\xc4\x54\xd6\x45\x77\x6f\x77\x72\ \xba\x47\x7c\xc4\x77\x77\x76\x17\x7c\xbe\xc7\x80\x79\x87\x12\x62\ \x80\x7c\xa1\x11\x2b\x47\xa2\x38\xa5\x55\x55\xc6\xd1\x32\x07\x20\ \x0f\xe0\x42\x03\x52\x20\x82\x24\x08\x49\x87\x54\x6e\x32\xa3\x26\ \x11\x73\x07\xd6\x84\x2e\x46\x83\x1c\x41\xc3\x56\x9a\xa7\x7e\x05\ \x96\x21\x19\x72\x07\xb2\x80\x83\x46\x17\x3e\xbc\xe5\x7e\x4a\x17\ \x70\x04\x15\x4a\x31\x35\x30\xf8\xb0\x42\xf1\x04\x16\x47\x40\x22\ \xd7\xe1\x46\x6d\x01\x1a\x58\xc1\x18\xb1\xe4\x75\xc7\x66\x62\xb9\ \x64\x72\xb7\xa7\x80\xbc\x07\x02\x6a\x47\x71\x6f\x27\x7c\x11\x58\ \x7c\x28\xb1\x63\xb1\x37\x5a\x6c\x54\x5a\xa0\x45\x2b\x6c\xa4\x1f\ \x7e\x83\x02\x66\x42\x03\xb9\x02\x49\x1a\xf5\x5a\xbe\x42\x39\x51\ \x32\x2c\x77\x20\x04\x77\x90\x87\x42\x40\x7e\x56\x76\x3a\xe8\x97\ \x37\x35\x58\x07\x28\x90\x0b\x28\x60\x83\x4b\xa3\x37\xfe\x97\xb7\ \x83\x9c\xb7\x6a\x50\x97\x0d\xa9\x00\x84\x78\x65\x75\x63\x04\x3f\ \x4f\x70\x0b\x78\x30\x17\x41\x72\x58\xbc\xf6\x5d\x41\x25\x4b\x6e\ \xc4\x89\xdf\xf5\x7a\xa2\x38\x5e\xf0\x10\x00\x5a\x78\x06\x1b\x97\ \x76\x5b\xa8\x22\x32\x76\x06\x5e\x70\x85\x0f\x18\x06\x9b\x80\x12\ \xd2\x51\x1d\x77\x71\x86\x25\x02\x19\xfc\x12\x5a\x70\x51\x0a\xc4\ \x21\x05\x34\x92\x07\x3b\x57\x07\x0c\x44\x8c\x75\x50\x23\xc2\x48\ \x0f\xdd\xe7\x4c\x72\xe0\x24\xdf\x27\x2c\x79\x78\x87\xe5\xc1\x14\ \x2f\xe8\x60\x50\x97\x6a\x80\x88\x02\x28\x70\x8c\xc7\x98\x0b\x35\ \x52\x88\x87\x98\x37\x23\x84\x79\x45\xb7\x05\xd9\x60\x8e\x13\x36\ \x3e\x01\x97\x0d\x2b\x90\x0d\x6c\x10\x09\x6c\x20\x0f\xab\x54\x06\ \xf4\x78\x0b\x18\xf8\x42\x95\xa5\x6c\xfa\x64\x4b\x94\x55\x59\x44\ \xc2\x6b\xb6\xd4\x53\xd7\xc1\x18\x0e\x10\x00\x77\x17\x00\x1b\x97\ \x90\x09\xe9\x71\xce\x16\x1f\xae\x38\x71\xb7\x77\x77\xb5\x91\x1b\ \x6e\xa1\x1d\x6f\xc1\x1e\x8d\x46\x35\x18\xe8\x68\x36\x80\x89\xbf\ \xf8\x06\x23\xe4\x40\x35\x82\x6e\x52\x00\x60\x81\x52\x7d\x1d\xc5\ \x82\x2c\xe8\x51\x46\xb3\x03\xd4\x88\x1c\xe8\x88\xfe\x8d\x1a\xb2\ \x08\x0d\xb0\x8d\xde\xc8\x8d\x38\xa9\x8d\xe1\xa8\x37\x38\x98\x83\ \x39\x28\x3e\x35\xe0\x83\x60\x14\x3e\x06\x60\x13\x57\xe7\x57\xee\ \x63\x8f\x5e\x02\x16\xdf\x35\x6c\x2d\x86\x1d\xb5\xd4\x67\x1f\x20\ \x47\xaf\xc7\x18\x1f\x70\x06\xbc\x87\x90\x1b\xf7\x53\xf9\x48\x6c\ \x89\x05\x50\xb9\xe4\x05\x69\x07\x02\x13\xb9\x11\xa1\x80\x7c\xd3\ \xc1\x1b\xef\xd5\x3f\x1b\xa8\x8b\x8b\x23\x26\xf7\xc5\x0e\xa9\x50\ \x07\x6a\x52\x83\x50\xa2\x8c\xf4\xb0\x73\x79\xb0\x8c\xca\x58\x07\ \x81\x58\x60\x77\x68\x52\x98\x14\x94\xe1\x94\x74\x4a\x93\x37\x38\ \x99\x98\xdf\x38\x88\x28\x20\x0b\x8d\xa9\x06\x33\xd9\x98\x3a\xd9\ \x98\x77\x70\x74\xbc\x95\x0d\x8e\xe8\x1f\xe9\x93\x0a\x98\x20\x46\ \xaa\x54\x06\x4f\xa0\x53\x3a\x45\x58\x47\xe0\x8f\xb5\xe7\x6c\x94\ \xe5\x6c\x17\x87\x8a\x1c\xd7\x9a\xc3\x56\x8a\xbd\xe7\x76\xa8\x38\ \x95\x51\xe9\x6c\xf0\x31\x04\x6d\xd7\x76\x6f\x57\x0c\x65\xa9\x11\ \x9a\x30\x86\xa8\x01\x17\x8e\xd6\x5e\x1b\x38\x55\x56\x85\x24\x83\ \x77\x0a\x07\x80\x02\x52\xd0\x8d\x67\xd3\x48\xd8\xb7\x73\x25\x79\ \x26\x9d\x96\x33\xde\x98\x33\x6a\x90\x87\xcb\xfe\x42\x3f\x45\x47\ \x3f\x41\xa9\x34\x6a\xb0\x8d\xc6\x98\x07\xc6\x28\x88\x93\x29\x0b\ \x75\xe0\x98\x87\xa8\x8d\xec\xc9\x9e\x19\xb2\x7e\x41\xd9\x56\x8e\ \x58\x03\x2b\x50\x94\x62\xc4\x06\x50\x90\x0f\xec\x53\x8f\xa4\x81\ \x70\x7d\x66\x80\xf0\xc1\x76\x68\xe7\x05\xa6\x18\x77\x70\xa7\x85\ \xa6\x88\x77\x0e\x88\xa0\x5b\x79\x71\x8a\x15\x50\x6e\x67\x85\x07\ \xca\x9b\xb4\x38\x86\x8c\x86\x81\x9f\x55\x5f\x78\x92\x89\x8a\xb1\ \x1a\x44\xf0\x06\xce\xb2\x02\x38\x43\x8c\x0c\xf4\x78\xd2\x69\x7d\ \x6d\xa8\x97\xdd\xf8\x8d\xe5\x32\x7e\x25\xb5\x05\x41\x59\x99\x25\ \xf0\x1f\x44\x99\x87\x8e\x19\x8c\x2a\x50\x07\x39\xfa\x8d\xb9\x70\ \xa3\x3a\xa9\x9e\x92\x59\x93\x28\x20\xa4\x8f\xd9\x34\xf1\x99\x0d\ \xbc\x65\x00\x0c\xc0\x00\xb2\xc0\x00\xf2\xe0\x37\x69\xd6\x11\xec\ \xf3\x0e\x76\x80\x0f\x0d\xca\x6c\x89\xf5\x8a\x75\x77\xa0\x0a\x0a\ \x81\x0b\x18\x7c\x08\x8a\x8a\xf0\x11\xa1\x0f\xc8\x7b\xc0\xd7\x06\ \xbd\x59\x38\xa9\x60\x18\xff\x92\x81\xc6\xf9\x96\xfe\x13\x24\x3d\ \xd5\x22\x44\x20\x0f\x6c\x20\x97\x6a\x00\x25\x23\xf8\x78\xe4\xb9\ \x97\xac\xd1\x69\x0c\x24\x23\xe4\x59\x23\xfe\x8b\x80\x02\x2c\x28\ \x04\xe2\x51\xa3\x06\x50\x99\xfe\xe1\x92\x79\x58\x88\xc7\x98\xa3\ \x83\xba\x08\xe6\x59\xa8\x1a\x02\xa4\x8e\xf9\x06\x8b\xc0\x00\x93\ \x99\x21\x94\x59\x99\x35\xf0\x1f\x25\x15\xaa\xe1\xb3\xa4\x0c\xe0\ \x99\x4a\x90\x0f\xa9\xaa\x04\xd2\x60\x5e\xe5\x25\xa6\x8b\x95\x4b\ \xae\x58\x77\xc2\x57\xa6\x0a\xfa\x7b\x0c\x18\x7c\xb9\x5a\xab\xb1\ \xb8\xab\x0c\x28\x06\xb4\x08\x47\x27\x23\x9c\xd9\x12\x69\x7e\xd4\ \x27\x18\x58\x5f\x92\xb1\x02\xce\x62\x00\xc4\x88\xa2\x9d\xa6\x02\ \xd6\x27\x19\x7d\x2a\xa8\x2a\x70\x93\x35\xa8\x87\xff\xe1\x1f\xd1\ \x68\x74\x38\xa8\x06\xc7\xd8\xa7\x2b\x5a\x88\xe0\xf8\x98\x0c\xa0\ \x06\x90\x89\x02\xe1\x29\x99\x92\x99\x37\x90\x79\x07\x33\x0a\xaf\ \x0c\x30\xa3\x33\xaa\xa4\xf6\xd9\x4e\xf2\x90\x66\x1b\x30\x00\xe6\ \xd5\x0e\x1b\x50\x0c\x68\x27\xab\x1c\x17\xab\x0f\x99\x9b\x6e\x07\ \x81\xbb\x8a\x77\x12\x98\xb0\x66\x2a\x81\x0a\xab\x09\xc1\xaa\x96\ \xf4\xd5\x1b\xf4\x41\x32\x54\x55\x4c\x80\xb7\xac\x16\xb6\x02\x50\ \x72\x64\x27\x0a\x1e\x34\x10\xae\xc2\x58\x8c\x8b\x29\x7e\xf0\xda\ \xad\x95\xa9\x83\xdc\x7a\x07\xeb\x4a\xfe\x8c\x3b\x5a\xa8\x82\x48\ \x88\x6a\xb0\x08\x90\x89\xae\x8e\x59\xb3\x37\x7b\xa9\x40\x8a\xae\ \xe1\x89\xae\xea\xaa\xae\x6a\xc0\x00\xaa\xb6\x02\x4e\x2a\x16\x50\ \x6a\x5e\xe6\x45\x63\xa9\x18\x96\x43\x80\x0a\x17\x27\x59\x18\x17\ \x50\x27\x27\x50\x05\xea\x85\x0a\x6a\xa0\xc3\xa7\x7b\x0a\xbb\xb0\ \x61\x00\xac\x89\x26\x62\xa0\x25\x9c\x01\x48\x1d\x19\xab\x50\xc4\ \x63\x21\x0d\x60\x4a\xb2\x20\x8c\xd6\x27\x82\x23\x28\x05\x93\x41\ \x9e\x50\x22\x23\x3b\x7a\x8c\x05\x96\x9d\xd1\x98\xb2\xfe\xc1\x00\ \x8c\x7a\x07\x7c\x8b\xae\x37\xc9\x8d\x90\xaa\x8d\x34\xfb\xad\x97\ \xfa\xb3\x39\xfb\x98\x8e\xa9\xae\x85\x5a\xa8\xec\xd9\xb3\xf0\x5a\ \x02\xdf\x79\xaa\x4e\x8a\x01\x67\x76\x6b\x18\x40\xa5\xef\x90\x6b\ \xb6\x69\x59\x2c\xc6\x89\xcc\xe6\x76\x02\x45\x5e\x5d\x98\x95\x0e\ \x5a\xa0\xc3\xe7\xb0\xbb\x07\x02\x9c\x40\x8b\x1e\xc9\x7c\xd9\xd2\ \x8b\x14\x1b\xa7\x17\xdb\x1d\xb8\x92\x37\x25\xea\x86\x7b\x49\x04\ \x71\x9b\x98\x79\xa0\x02\x7a\x49\x9e\x84\xeb\x9e\xe8\xaa\xb7\x8b\ \x1a\xaf\x3e\x2b\x9e\x93\xba\x8d\xec\x99\x87\x7f\xcb\xa9\x90\xa9\ \x21\xe7\x2a\xbd\x86\xdb\xb3\x3f\xfe\xbb\xae\x34\x5b\xbc\x6a\x50\ \x02\x41\x7b\xaf\x2b\x90\xaa\xd0\x75\x0b\x4f\x40\x58\x3d\x25\x47\ \x5d\x39\x63\xf1\x91\x6c\xc8\x26\xab\xa8\x28\xb5\x0b\xb8\x7b\x67\ \xf0\x01\x95\xf5\xa0\x5a\x9a\xb5\xbc\xa7\x76\x69\x8a\x11\x91\xf3\ \x63\x53\x65\xb6\x8b\xb3\x50\x89\xc3\x7c\x3b\xf4\x1d\x4f\xd0\x00\ \x34\x12\x28\x9d\x56\x07\xcb\xd3\x9c\x30\x3b\xa8\xcf\x8a\x2b\x76\ \xcb\xbc\xe6\x59\x88\x90\x59\x74\x7f\xbb\xb8\xe2\x79\x8c\xcc\xcb\ \xbc\xe2\xb7\xa8\xd3\xcb\xb3\x41\xeb\xbc\x95\x19\xb4\x36\xfb\xb8\ \xed\xa9\x8d\xeb\xfa\xb8\x41\x2b\x16\x4a\xc0\x06\x7e\x70\x6b\xe2\ \x8b\x14\x02\x19\x43\x3f\x15\xa0\x6d\x17\x63\x43\x00\x50\x39\x2c\ \xab\x26\xd7\xb0\xbb\x07\xb0\xb7\x17\xa1\xb4\xea\x80\xb7\xd7\xba\ \x89\xd6\x0b\xe0\xc1\x50\x65\x9b\x27\x1b\x9a\xb1\xad\xf4\x25\x04\ \x7c\x3e\xb2\xd0\x5a\xdd\x27\x9d\x8f\x77\x8c\xe1\xa7\xc0\xd5\x3a\ \x82\x75\x2b\x88\x39\xa9\xae\x3f\x19\xaa\x38\x78\xbd\x83\x28\xb8\ \x5e\x8c\xc2\x32\xca\xb2\x2c\xab\x21\x2c\x5b\xbc\x42\x6b\xa3\xeb\ \x1a\x9e\x89\xd9\x9e\xc9\xab\xae\x4b\xfa\xa4\x03\xb3\x01\x6b\x56\ \x58\xe5\x5b\x9a\xb9\x56\xc3\xfe\x61\x29\x50\xb7\xc9\x71\x24\x67\ \x85\x3d\xdc\x80\xc0\x97\x85\x57\xa8\x76\x54\xdb\x76\x46\xcc\x23\ \xfb\x25\xc0\x5b\x32\x3c\xfd\x4b\x2b\xc6\x03\x69\xca\xfa\xa7\x1d\ \x90\x3e\xb9\x20\x33\xca\x38\x19\x22\xe8\x97\xe0\xea\xb2\x2e\xfb\ \xbb\x3b\xd7\xc5\x5f\x6c\xc7\xf6\x7a\xae\x75\x2c\xc1\x67\x2c\x88\ \xd9\x69\x00\x25\x90\x87\x20\xac\xc6\xc5\x4b\xaf\xdc\xdb\xb2\x3d\ \x50\x07\xbb\xdc\xcb\x28\xbc\xbd\xb9\xcc\x00\x40\xc0\x00\x1e\x21\ \x0d\x6c\x80\x0a\xe1\x5b\x1a\xad\x40\x4f\xbc\x46\x54\x7d\x86\x4b\ \x0d\xea\xa0\x60\xc9\xc3\x28\x77\xa0\xd5\xac\x85\x41\x2c\xc8\x67\ \xa0\x76\x5e\x0b\xc9\x96\x72\x55\xfd\x0b\x69\x5b\x82\x55\xe2\xcc\ \x32\x1d\x20\xc5\x0d\x50\x92\xd7\x27\x82\x2a\x70\x87\x6a\x20\x8c\ \xcd\xa9\xa3\x2a\x40\xb7\xf4\xac\xa3\xbc\x7c\xcf\x68\xcc\xb7\x8b\ \x6a\x00\xe9\xaa\x8d\x66\x3c\xc1\x1d\x1c\xaa\xb3\x9c\x9d\x20\xcc\ \xb3\x2c\x3b\xa3\xc9\xbb\xcb\xf7\x6c\x9e\xbc\xfc\xcb\xdc\x6b\xaa\ \x46\xeb\xc2\xf9\x60\x07\xd1\xa5\x89\xcb\xfc\x46\xc0\x21\x5e\xc7\ \xa6\x6c\x4a\xc5\x89\x44\x85\x6c\x6d\x27\x96\xb8\xa4\xa5\x6b\x47\ \xa0\x26\x8d\x9b\x26\xd7\xfe\xcd\xb9\xd1\x00\xfc\x33\x9c\x99\x9c\ \x27\xfe\x1b\x21\x14\xf2\x04\x78\xb0\x37\xc4\xd8\x7d\xd7\xf7\x64\ \x81\x59\x07\xbc\x3b\xa8\xbf\xfb\xbb\xb9\x02\xbc\xf3\x9c\xa3\x3b\ \x8a\xc2\x3f\xb9\xb7\xac\x9c\xc1\x82\xcb\xbc\xdb\x9b\xb2\xb3\x9c\ \xcb\x04\xfd\xcb\x6d\x9c\xc2\x0b\xdd\x03\xed\x69\xd5\x40\x0b\xcc\ \x4b\xfa\x06\x7b\xc3\x06\xd2\xa0\x66\x73\x41\xbe\x30\xc4\x75\x87\ \x41\x80\xda\xf5\x5d\x9c\xbb\xcc\x02\xc9\x6c\xb7\x09\x5e\xb7\xe9\ \x8a\x11\x6a\x76\x05\xaa\xd2\x1b\xa1\x09\x2c\x1d\xbb\x7d\x07\x24\ \xc3\x23\xce\x0f\xd5\x1d\x4f\x30\x46\x28\xc0\xb6\x1e\x9b\x0b\x77\ \xb0\x03\xe1\x07\xb7\x52\xb0\xa3\x74\x5b\x19\x94\x41\xcf\x39\xaa\ \xd0\x28\x7c\xae\x4d\x53\x02\x1a\x22\x9e\x75\x4b\xc7\x6a\xf0\x1f\ \x79\x98\xcb\xd9\xcb\xb2\xea\x3a\xd5\xda\xd8\x03\x56\x8d\xd5\xbf\ \x5c\xd0\x25\x70\xda\xa6\x7a\xaa\x2b\x00\x05\xf7\x07\x5d\xf7\x78\ \x1d\xa6\x50\x9a\xd8\xb1\x84\x68\x8d\xd6\x94\x35\xdb\x5d\xc7\x6c\ \x21\x17\x5e\x7b\xe6\xa0\xae\x98\xbe\x04\x7a\x00\xf9\x7b\x11\x9c\ \xf0\x0e\x77\xa1\x32\x25\xb3\xc4\xc8\xcd\x81\xc6\x41\x04\xef\x10\ \x8f\x3c\x0d\x1e\x20\xfe\x9b\x07\xa2\x52\x03\x77\xa0\xc0\x10\xbc\ \xa3\x95\x41\x82\x94\x31\x19\x43\xbd\xd4\xe8\x6a\x74\xe7\x6a\xd9\ \x8f\x4d\xc7\xf0\xaa\xd9\x53\xdd\xc6\xd7\xeb\xb3\xa4\x8d\xd9\x59\ \x0d\xcc\xa7\x5d\x03\xa1\xaa\xa4\xaa\xcd\x06\xf8\xc0\x3e\x83\xf5\ \x4a\x2f\xe6\xb4\xb4\x19\x8a\x9f\xe8\x46\xb0\x74\xd1\xba\x5d\x71\ \x43\x90\xd6\x9f\x58\xc3\xbe\x7d\x00\xb4\x28\x0b\x36\x80\x1d\x47\ \xd1\x50\xf1\x25\xc9\xc8\x4a\xce\x43\xe6\x37\xb2\x00\x44\xd4\xa9\ \x02\x6b\x92\x2c\x0a\xac\xbb\x38\x09\xcf\x70\x9b\xd3\x94\xf1\xbb\ \x91\x6a\x9e\x4d\x7a\x79\xf3\x1a\xda\xf3\x2c\xb8\x58\x9d\x9d\x02\ \x7d\xda\x04\x3d\xd0\x3d\xdb\xca\x56\x8d\xae\xb9\x7c\xda\x38\x9e\ \xe3\xf2\x9d\x0a\xdf\x69\x9f\x4a\x20\x0f\x76\xf0\x61\x20\x66\x58\ \x30\x94\x8f\xa9\x99\x6b\x17\xcd\x84\x7a\xa6\x70\x50\x08\x0f\x14\ \xc7\x90\xbd\x06\x95\xfd\x78\xdb\x7f\xdc\x0d\xb4\x28\x0f\x19\x29\ \x29\x61\xab\xd7\xf9\xd1\x27\x4f\xe0\x11\xa9\x10\x33\x7f\xfa\x64\ \xe8\x02\x20\xe0\xea\xdd\x2b\x1e\xa9\x94\x61\x7d\x93\x01\xca\x8d\ \x7d\xd9\x5c\x5d\x94\x4d\xc3\xa9\xdc\x48\xd4\xa4\x6d\xe3\x9a\xfd\ \xd4\x3c\xcb\xbd\xfe\x2a\x6c\xbd\x33\x0e\xdf\x92\x2b\xb9\xf2\x3d\ \xe8\x35\x80\xa4\x41\x69\x13\xfc\x20\x8f\xfb\x39\x4f\xa3\x61\xd1\ \x07\xae\x6c\x00\x59\x59\x7f\x9c\x6b\x3d\xe5\x00\xa8\x30\x71\xf2\ \x4b\x24\xb6\x9d\x6b\xb6\x2d\x5e\x95\x95\x0a\x0b\x1e\x4f\x25\xd2\ \x7c\xbd\xf8\x68\x63\xd2\x01\x03\x20\x3b\xd1\x2d\x07\x3a\x5d\x1e\ \x35\x40\xa9\xf0\x8c\xca\x20\xce\xbb\xb4\xde\xd8\xe4\x59\xd4\x8d\ \x29\xb4\xf5\xc9\xa9\xdb\x48\xd4\x1a\xac\xc2\xf1\x2d\xd0\x20\x9c\ \xcb\xd7\x4b\xec\x7f\x0e\xcc\x84\x2e\x0a\x35\xd0\x0b\x84\x1e\x94\ \xa1\xba\x02\x64\x20\x8f\xb8\x33\x5d\x32\xac\xdf\x53\x98\x90\xff\ \x94\xc3\xad\x99\xe9\x7b\x26\x68\xe1\x05\x95\x46\xee\x8f\x9c\xfb\ \x53\xa8\xa0\xe0\x89\x86\x02\xad\xe1\xa6\x0c\x25\xea\xb2\xb2\xd7\ \x15\x72\x0b\xf9\x30\x53\x6f\x20\x8c\xbc\x5b\x07\x85\x5d\x1e\x77\ \xa0\x02\x93\x21\x9d\x32\x12\xa9\xb9\x42\xeb\xd2\xbd\xef\x69\x8e\ \xd5\x4c\x8a\xd4\xf7\xbc\xe2\xbb\xdc\xe7\xa1\x5a\x52\xb2\xec\xb3\ \x7c\x2e\xda\xda\xc8\xbd\x30\xce\xb3\x59\x1d\xec\xa2\x70\xf1\x17\ \xcf\xec\x35\x80\xe3\x4a\xfa\x06\x7c\xd5\x01\xef\x23\x5a\x24\x76\ \x1d\x45\xfe\xfe\x4f\xc8\xb6\xb4\xba\x74\x71\x97\x1e\x96\xf1\xd1\ \x6b\x4b\xb8\x67\x68\xfd\x53\xb9\x84\x0a\xa8\x70\x06\x8f\xbc\xd2\ \x4c\xfc\x7c\xcf\x37\x29\x0a\xc5\x32\x18\x50\x75\xa9\xf0\x06\xdd\ \x1d\xb2\x4b\x54\x03\x7e\xba\xef\x89\x5d\xe2\xc0\x1b\xe2\xbc\x2b\ \x19\x68\xbe\xe2\xec\x79\xae\x4b\x1a\xb4\x28\x30\xd4\x45\x3d\xec\ \xe3\xe7\xec\x1b\xef\xd9\xe8\x3a\xda\xea\xda\x03\x37\x2e\xf1\x36\ \x8e\xec\xbd\x80\xf1\xa2\xa0\xf1\xa7\x3d\xd5\x6f\xf0\x06\x20\xaf\ \x75\x23\xff\x89\x63\x5d\xe4\x9c\x5e\x59\x1b\xe7\x71\x1f\x70\xe9\ \x62\xe9\x90\xc3\x36\xdb\xa2\xb8\x67\xdb\xac\x85\xf0\x50\x68\x89\ \x56\x03\xcc\x74\x30\xa2\x5e\x3c\x97\xf0\xe5\x6d\xa0\x05\x13\x90\ \x0a\x4b\x4f\x19\x28\x60\x2a\x25\xb0\x3c\xfb\x2e\x8c\x75\x9b\x2b\ \x21\xee\xf4\x02\x0f\xf5\x51\x4f\xc2\x28\xb0\xcb\x43\x9d\xf0\xdb\ \x8b\xec\x37\x61\xe8\x1b\x0f\xd5\x33\x5e\x02\x3d\x60\xe3\x39\xae\ \xe3\xf2\xad\xec\x66\xaf\xf1\x91\x1b\x9e\x6f\xa0\x02\x1d\xd0\x3e\ \x76\x90\x8f\xbd\xb6\x67\x4e\x1b\xe5\x7e\x1c\xe5\xb9\xdf\x6b\x45\ \x0e\x1f\xa8\x60\xf7\x4e\x7b\x4f\xad\x30\x13\x33\xe1\x75\xf0\x11\ \x77\x03\xfe\x45\x8b\x06\x60\xf8\x93\x52\x9c\x97\x50\x06\xf9\x50\ \x64\x5a\x90\x0a\x70\x4b\xad\x85\xcd\xec\x8b\xb0\xfd\x48\x9f\xd8\ \x44\xfd\xf8\x4d\xef\xf4\x6f\x8e\xcf\x9f\x4f\xc2\x6a\x00\xfa\xdf\ \xbd\xfa\xa3\xbf\xf0\x85\xce\xec\xd9\x20\xdf\x30\xde\xfa\xeb\xbf\ \xfe\x12\x8f\xe3\x1b\xff\xfa\x18\xcf\xec\x1a\x4f\xe8\x00\x71\xc7\ \xc0\x1b\x82\x1d\xde\xe0\x31\x05\xef\x0c\x2a\x53\xad\x5a\x39\xf8\ \x80\x0a\x1e\x2a\x54\x1f\x4c\x5d\xbc\x78\xc4\xd6\x2d\x5b\x36\x6c\ \xd8\x6a\x65\xca\xc1\x45\x87\x0f\x5b\xd9\x0a\xe4\xd1\xc6\xad\x8f\ \x0e\x3f\x0c\xf1\x02\x02\x44\xb1\x03\xff\x6c\xde\xc4\x99\x53\xa7\ \xce\x50\x06\x2e\x5d\x92\x13\x54\xe8\x50\xa2\x45\x8d\x0e\xfd\x29\ \x07\x68\xa9\x28\x61\x00\x3c\xdd\xb4\x42\x8a\x50\x22\x6a\x6a\xec\ \x10\x52\x47\x0a\x3d\x22\x34\xa4\x7c\x95\x92\x47\x85\x58\x15\x5f\ \x89\x9c\x0d\x7a\x96\x88\x14\x15\x6d\x7b\xa0\x50\x13\x57\x0d\x03\ \x35\x6f\x50\xa8\xe8\xa1\xa2\x0e\x5e\x14\x70\xd5\x94\x28\x61\x20\ \xdb\x88\x6c\xbd\x44\x8d\xa8\x51\x03\xf0\x62\xc6\x3d\x4a\x38\xfe\ \x0b\x58\x71\x62\x51\x95\x2d\x27\x4e\xdc\x0b\xb3\x81\x12\xb2\x50\ \xbc\xfe\xe9\xd0\xa1\xcc\x3b\x3b\xef\x4c\xd9\x42\xed\xf0\xa2\x45\ \x86\x0c\x2d\x1e\x39\xc2\xd2\xd6\x91\x90\x0f\x4d\x7d\x70\x50\xd2\ \xe1\x47\xd4\xa9\x1f\x7e\x00\x7e\x46\x66\xcd\x9d\xc5\x8d\xdb\xec\ \x09\xf4\xe8\x72\xe6\xcc\x9f\x6c\xd0\xf2\x14\xc0\x29\x14\x44\x86\ \x4a\x59\xa4\x66\xaf\x14\xb5\x60\xbf\xb6\xd5\x0a\x56\x6d\xda\xb5\ \x6c\xeb\xf4\x78\xfb\x79\x6e\x5f\xf4\x6d\xf9\xf6\x45\x51\x42\x8d\ \x81\xc4\xa9\x0c\x17\xce\x86\x99\x71\xe3\xc7\xfb\x27\xd7\xb0\xac\ \x32\xcd\x30\xdb\x8c\x81\xcf\x1a\xc0\xa3\x83\x5b\x9e\xe0\xa8\xa3\ \x52\x1e\x7c\x10\xb5\x23\x30\xc2\x48\x23\xd4\x6e\x03\x0e\xc3\x21\ \x80\x83\xc8\x01\x0f\x4b\x82\x68\x08\x78\x44\xdc\xf0\x83\x62\xda\ \xd9\xe4\x38\x15\x79\x92\xa7\x39\x17\x5f\x14\xea\x89\x53\xa4\x03\ \xc0\x00\xeb\x88\xf2\x8e\x06\xb5\xce\xf2\x2a\xac\xbd\xda\x32\xcb\ \x3a\x21\xcf\x72\xef\xbc\xb7\xe2\xa2\x4b\x8d\x1e\xce\x73\x8b\x3d\ \xb8\x02\xab\x21\x95\x6c\x38\xc9\x46\x94\x1a\x06\x94\x6c\x3f\xc0\ \xe4\x5a\x4c\x31\xc9\x28\x33\xcc\x4a\x02\x17\x63\x80\x20\xd0\x3a\ \x60\xb0\x41\x94\x6c\x28\x85\xcd\x52\x64\xa3\xad\x21\xda\x34\x9a\ \xfe\x10\x1e\x3b\x81\x03\x6e\x88\x21\xce\xf0\xa2\x4f\x78\x80\x53\ \xa8\x18\x41\x05\xf5\xc2\xce\x33\x36\x10\x63\x45\x45\x91\x6b\x00\ \x46\x47\x97\x23\x22\x1f\x11\xa4\x3b\x40\x85\xa3\x76\xa4\xaa\x3c\ \xf3\x7e\x2c\x8b\x3b\xb4\xce\xfa\x0e\xaf\x3a\x50\xe8\x21\x2e\x14\ \xaa\x20\x35\xaf\xbd\xd2\x53\x23\xbe\x1a\xe8\x88\xb2\x06\x4e\x06\ \x4c\x4c\xcb\xb8\xe4\x73\x0c\xb2\x12\xc6\x24\x30\x40\x31\x49\x45\ \x52\x96\x82\xf0\x28\x03\x36\x90\x48\x72\x08\x24\xdf\x28\x74\x08\ \xb6\x56\x3e\xb0\xf3\x4f\xdb\xf6\x2c\x66\xa6\x3e\xf9\x8c\x49\x26\ \x6d\x8b\x39\x03\x9e\x0d\x16\x55\x34\x94\x5e\xa6\xfa\x29\xa9\x47\ \x1f\xed\xa0\x0d\x4a\x5b\x7c\x71\xc8\xb5\xf4\xaa\x23\xde\x1f\xc5\ \xdb\x91\x2d\xbc\xd2\x3b\x75\xbd\x54\xdf\xe3\xd2\x00\x29\x7b\x99\ \x52\x94\xfc\xbc\xdc\xd5\x4b\x25\x1f\x43\x0f\x3d\xc6\x6a\xfd\x8f\ \x32\x31\x15\xf3\x8b\x01\x06\xe4\x69\xe0\x0d\x0c\x2e\xc6\x88\xc3\ \xdb\x44\xc2\x10\x4f\x3c\xe5\x84\xed\x88\x0c\x2d\xba\xed\x8c\x00\ \x08\xed\xd3\x8b\x41\x65\x6a\xa7\x1d\x10\x02\xf0\x16\xdc\x15\x43\ \x19\x41\xa8\x36\x6d\x30\xf7\x5c\x17\xe5\x99\x00\x00\x2d\x0e\xfe\ \x90\xe7\x46\x17\xd1\x92\xa3\x3c\xf0\xf4\x42\xba\xac\xee\xec\x4d\ \x18\xae\x52\x51\xad\x02\x3d\x23\x9f\x44\x32\x1b\xfc\x46\xe0\x44\ \x94\xac\x6b\xc8\xcf\x6a\xab\xf5\x43\x58\xe1\x82\x0b\x26\x10\xb3\ \xca\x6a\x25\x93\x01\x20\x26\x06\x02\x1f\x92\x49\xf6\x30\x4f\x85\ \xbc\x08\x20\x80\x33\xee\xce\x30\x36\x8e\xec\x00\x34\x5a\x85\xee\ \x36\x79\x50\xc1\x05\x9d\xe9\x50\x99\x55\xa4\xd9\x66\x08\x81\x52\ \x4e\xe7\xe5\x56\x78\x4a\x0b\x1b\xa9\x62\x6e\xbc\xa2\x8d\x76\x2f\ \x73\xf1\x42\xe5\xab\xd4\x37\xe2\xaa\xa2\xd5\xf6\x4a\x65\x40\x3e\ \xc0\x52\xe1\xda\x6a\x4e\x34\xd9\xa4\x75\xd7\x5d\xd7\x44\x13\x81\ \x13\xfb\x2b\x32\xff\xca\xce\x4c\xbf\xb9\xca\x64\x60\x05\x7c\x2e\ \x2e\x0d\xd9\x09\xf1\xdc\xd3\xe4\xba\xeb\xbe\xd3\x14\x3a\x13\x82\ \x67\xd0\x6e\xff\xae\x5b\xdb\x99\xec\x06\xdc\xe4\x6f\x0f\x37\xae\ \x27\xa4\x88\x6a\xdc\xf1\xa2\xd4\x05\xa0\x52\xa1\xb8\x83\x74\x2d\ \xa1\x41\xcd\x5c\x73\xb3\xc0\xba\x17\x58\xb8\x42\x67\xe0\xad\x84\ \xff\x2a\xbd\x0a\xfa\xe8\x93\x92\x93\x4d\x68\xe4\xff\xf5\x4d\x64\ \x17\xd8\xd7\xc0\x46\x36\xdc\x79\x09\x2e\x0c\xe0\xc7\x0a\xfe\xe4\ \x01\x04\x3c\xd8\x01\x23\xaa\xc1\x13\x44\xa0\xf5\x37\xc0\xf9\x2d\ \x5a\x77\x0b\xc0\xf4\x14\x02\x8f\xe8\xb5\xac\x65\x85\xbb\x60\x00\ \x88\x83\xbd\x9d\x84\x42\x16\xde\xd3\x99\x14\x0e\x00\x80\x4d\x4c\ \x8e\x3c\x97\x32\xdf\xf9\x34\xc5\x39\xef\x74\xc7\x3d\xe8\x21\x95\ \x7c\xaa\x80\xab\xf9\x55\x41\x62\x25\xf0\x61\x15\xa2\x94\x0d\x31\ \xec\x8f\x7f\xd2\x79\x1d\x54\x62\xf7\xbf\xd8\x9d\xad\x6c\x56\x7a\ \x98\x62\xea\x52\x85\x37\x20\xf0\x0d\x65\x28\x16\xdf\x48\x76\x9b\ \x91\x8c\xc4\x63\x13\xec\x96\x70\xba\x20\x13\x6e\x85\x71\x7a\xdd\ \xea\x60\x18\xd4\x18\x86\x33\x06\x60\x08\xd7\x23\x21\x4f\x42\x71\ \x0b\x14\x9e\xab\x03\x07\xe0\x44\x2a\xde\x20\xb4\xa2\x10\xed\x72\ \x7e\x04\xd5\x77\xd8\x32\x48\x7a\x69\xea\x5e\x0a\xfb\x4b\xe8\x12\ \xf6\x16\x20\x02\xb1\x7e\x2b\xa0\x43\x36\x58\x77\x44\xa8\x70\x42\ \x56\x3e\xdb\x84\x18\x44\x31\x49\xd8\x09\xec\x61\x51\xac\xc1\x0e\ \x91\x54\x26\xd0\x3c\xe1\x09\x65\x30\x85\x1f\xb6\xd8\x10\xdd\x6c\ \xcc\x63\x0a\x91\xde\x06\x16\x12\x28\x97\x15\xa3\x6e\xd5\x6a\x59\ \x18\x3c\xe8\xb2\x99\x54\x2b\x8e\x25\xec\x45\xb9\x2e\xfe\xf1\xa0\ \xee\xd5\x91\x28\x44\x50\x81\x3c\xe2\xc7\xc7\xa1\x80\x0a\x90\xcd\ \x44\x1f\xfb\xdc\x13\x24\x21\x71\x0e\x3d\x6a\x10\xa5\x92\xf2\xa2\ \xb0\x20\x32\xc0\x87\x91\x94\x92\x11\x59\xe8\x3a\x4e\x30\x00\x2f\ \x55\xe0\x04\x95\x3e\x93\x0a\x31\x8c\x93\x89\x4d\x34\x1b\xd7\x30\ \x13\x97\x1e\xf8\xf0\x0d\x4a\x63\x90\x03\x1d\x68\xac\x8e\x70\xe4\ \x37\x1e\xea\xd8\x19\x92\x21\xd0\x85\x48\x04\x15\x67\xa8\xd6\xb6\ \x40\xc0\xcb\x95\x11\x4e\x5b\xbf\xe4\x49\x2f\x6e\xe6\x91\xc5\x95\ \x4b\x29\x4a\x11\xa6\xe3\x9c\x79\xa9\xf5\x31\x33\x53\xef\x1a\x64\ \x59\x80\x04\x96\x3f\x86\x2a\x61\x8d\xd4\xe6\xbd\x12\x89\x4d\x06\ \x44\xd2\x6a\x91\x64\xdd\xeb\x38\x51\x05\x4f\xa9\xe0\x31\x53\x59\ \x0b\xd7\xd2\x69\xb5\x98\x6e\xe2\x93\x98\x29\x1d\x36\x3f\xd3\x83\ \x27\xdc\xe8\x12\xb7\xd0\xc8\x2d\x6e\xd1\x26\x96\xb4\xa4\x21\x24\ \xc1\x10\x43\x28\x94\x90\x85\xdc\x6d\x03\x0e\xb5\xe5\x88\x30\x34\ \xa2\xe3\xc1\x11\xa2\xc8\xe9\xc6\x30\x29\x0a\xa1\xc5\x95\x95\x98\ \xc5\x34\xe6\xe5\x36\xe7\xd1\xb4\x78\x87\x73\x23\x25\x5f\x34\xef\ \x65\x3a\x45\xe6\x05\x2f\xd8\x04\xa2\x10\xfd\x91\xfe\x0a\x3a\xd0\ \x27\x92\xab\x73\x5d\x36\xd4\x60\x1d\xb6\xf4\x60\x2a\x42\x51\xc1\ \x5f\xf2\x52\x02\x4e\x8a\xa9\x6b\x98\x09\x1d\x36\xdf\x60\x58\xa1\ \x5c\xe2\x09\x6f\x82\x10\x4b\x9c\x15\xa7\xda\xac\xe6\x22\x76\x98\ \xd0\x6d\x0c\x5a\x11\x30\xde\x6d\x43\xbb\x01\xc9\x6f\xa0\xf5\x55\ \x9c\x24\x47\x98\xc3\x14\x26\x59\xcf\x9a\x33\xef\x61\x6a\x69\x35\ \xf4\x68\xbd\xbc\xa3\x3e\xb4\x70\xc7\xa4\x78\xdd\xe1\xe8\x1c\x53\ \x05\xfb\xd1\x61\x05\x35\xf0\xc7\xab\x60\x95\xdc\x29\x35\x91\x0e\ \x77\xc1\x4b\x59\x9a\xa9\xb4\xb5\x94\x40\x7f\xad\x03\x20\x80\x12\ \x83\x2a\x96\x52\x51\x05\x67\x89\xed\x9b\xfc\x59\x1b\xd5\x94\xd7\ \xb3\x6f\xa3\x88\x54\xcf\x8b\x1b\x3c\x25\xab\x14\xc7\x32\x05\x06\ \x58\x7b\x93\x50\xa0\xc0\x28\x8c\x0b\x4a\x46\x8d\xe9\x2e\xf1\x04\ \x45\x90\x40\xfa\x54\x1f\x75\x6b\xaf\x4e\xc5\xd5\x68\x27\xdd\x61\ \xd4\xb6\x59\xaa\x12\x2c\xb7\x0a\x74\x68\xe9\xab\x0c\xe0\x0f\xe2\ \xfa\x23\x1b\x9f\xd8\x9a\x82\x7b\x70\xa3\x19\xa6\xc5\xa6\x3d\x95\ \xdd\xc0\x16\x13\x97\x04\x32\x10\x4d\x4f\x18\x66\x29\x86\xe9\xcf\ \xa7\x8e\x44\x35\x71\xb2\x88\x1f\x50\x21\xe3\xfe\xf4\x4e\xe4\x8b\ \x1e\x2b\xde\x19\x80\x03\x41\x53\xcc\x97\xbe\x8e\x42\xeb\xb9\x08\ \xec\x56\x4f\xc9\xe1\xad\x9e\xca\xed\x8e\x6c\x38\x52\xa2\xa1\xef\ \xae\x09\x46\x98\x5b\x12\xbc\x5c\xe5\x46\x12\x56\x42\x14\xa2\xd5\ \x3e\x61\x35\xc0\x18\xf6\x5d\x76\xfd\x94\x14\x7a\x20\xab\x4e\xe6\ \x67\x4b\xc4\xed\x1d\x19\x80\xa0\x20\xa5\x2a\xf5\x4d\x36\xa0\x53\ \x2b\xe6\xd4\xd9\x8c\x91\x36\x63\x1f\x8b\xc8\x88\xce\x90\xe3\x00\ \xd0\xcd\x6e\x23\x9a\x88\x8f\x6d\xc2\x89\xb4\xc2\x48\x05\xf1\x29\ \x01\xa9\xda\xa2\xe4\x77\xc5\x0b\xae\xe4\x13\xf0\x6d\x09\x29\xc3\ \xef\x70\x13\x88\x76\xe5\x26\x72\x91\x4b\x07\xbe\x22\x97\x01\x14\ \xa6\x03\x71\x5f\xe5\xb5\xfc\x68\xf8\xd2\x87\xf5\x2f\x5e\x4a\x20\ \x49\xec\x5a\x49\x3e\x4a\x42\xe0\x0a\xf8\xf1\x06\x53\x5a\x16\xb3\ \x0f\x5a\xaa\x84\x9a\x25\xe7\x92\x4c\x95\x42\x0e\xa4\x50\x44\xaa\ \x87\x8a\xe2\xf5\xb2\xaa\x82\xfe\x07\xa1\xb9\x47\xdb\xfc\x06\xb9\ \x5d\x8e\xd9\x41\x0d\xee\x30\x2f\x0e\x23\x53\x5e\xf3\x32\x4b\xe5\ \x24\x6d\xb9\xb6\xde\x8b\xb8\x3c\x94\xb2\x83\x47\xfd\x52\x4d\x27\ \x37\x6a\x4a\x4a\x5d\x7e\xe8\xd0\xe0\x6c\xfe\x3c\xe6\xbb\x6d\x2d\ \x6c\x09\x36\xf9\x3f\x4b\x36\x4d\x0d\xfc\x50\x1b\x9a\xca\x25\xdb\ \xcc\xce\x46\x4e\xbd\x51\x56\x9c\xfe\xad\x9b\xde\x3c\xab\x78\x15\ \x31\xc5\x41\x9d\x07\x0f\x64\x8f\x00\xbf\x0f\x2f\xa6\xb3\xb5\xbd\ \x96\x3a\x5c\x25\x31\x77\xd0\x8e\xa5\xc6\x27\x16\x47\x03\xa9\x53\ \x43\x9b\xa1\x1f\xe1\xad\x6a\xe2\xa6\x54\x61\xaf\x0a\x25\xac\x5e\ \x9a\x0d\x2b\x13\x57\xb8\xab\x46\x79\x95\xb8\x9c\x17\x22\x8b\x59\ \x92\x96\xdc\x6e\xa9\xea\x29\x8f\x2a\xac\x99\x08\x8c\x0b\xaf\x52\ \x67\x13\xda\x66\x01\x5c\x59\xc9\xf2\x0d\x6a\x78\x13\x92\x0d\xb1\ \xf2\x59\x07\x3d\xb6\xa0\x7d\x92\x5f\xaa\xe3\xb7\x8e\x07\xbe\x52\ \xb4\xa5\xad\x06\x54\x5b\xdb\xd1\x9c\x02\x70\xd1\x2e\x55\x52\x24\ \x1f\xb3\xb0\x4f\x4b\x29\xc9\x43\x0d\xab\x48\x6e\xf9\xc2\x56\x0b\ \x2e\xa6\x87\xcb\x6e\x51\xb8\x3d\x94\x4a\x72\xcf\x5a\xac\xa2\x98\ \x7a\x76\xb9\x04\x69\x96\x47\x29\x7f\x0e\xf4\x15\xd3\x69\x36\x4f\ \xcf\x9b\xd2\x8d\x9e\xda\xa2\xfb\xa6\x24\x1d\x39\x56\x44\x50\xc1\ \x09\x41\x87\x82\xad\x85\x4e\x75\x59\xea\x60\x15\xcd\x44\x5b\x2b\ \x1b\xdf\xcb\xbc\xd2\x87\xa9\xf2\x95\xfe\x47\xe4\x6a\x91\x72\xae\ \x6e\x08\xc4\x94\xbb\x34\x1b\x96\xd0\x72\x36\x28\x9c\xb0\x43\xf6\ \xdd\x6a\x02\xfb\x44\x00\x43\x49\x73\x55\xd3\x7c\xb8\x13\x4e\x45\ \x10\xd7\x5c\xeb\x14\xe3\x7a\xe8\x1b\x99\x8d\xe4\x75\xac\xbc\xde\ \x04\x02\xf2\x2d\xe9\x6c\x6e\x72\x53\x12\x36\xc9\xc6\x36\xa1\xa8\ \x3c\xe6\x8d\x82\x4c\x14\x6c\x27\xb1\x57\x12\xc5\x0e\x4a\x50\x07\ \x0e\x4b\x41\x5e\x23\x75\xcb\xa2\x49\xbf\xfd\x40\x42\xba\x99\x85\ \xc5\x66\x7b\xe2\x4d\xdc\xb5\xbf\xfd\xf5\xe4\x76\x79\x3d\xf1\x3a\ \xdc\x2a\xb0\xfc\xf6\x18\x66\xb9\x4b\x8b\xae\xef\x22\x82\xe1\xaa\ \x81\x15\xc8\x86\x15\x28\x13\x15\x28\x2a\x53\x6a\x33\xcc\x12\x3a\ \x08\x81\x0d\xd1\x42\xb8\x2e\x92\x33\xa3\xe3\xb1\x2e\x62\x25\xc5\ \x93\x90\x23\xc0\x3e\x1f\x13\x83\xcb\x33\x26\x29\x40\x01\xce\xb8\ \x0b\x31\xb3\x8a\x50\x98\x95\x12\x40\x35\xb6\xe8\xbe\xed\xc0\x1c\ \xb8\x12\x39\x01\xa3\x17\xb3\x53\x29\xf9\x7b\xb2\x94\x8b\x3d\x3a\ \xa0\x03\x7f\xf0\x41\xe2\xfa\x36\x20\x0c\xc2\x46\x7a\x30\xaf\x71\ \xa9\x46\x6a\x8f\xb3\xa8\x27\x06\x10\x8c\x54\xf0\x87\x32\xe9\x00\ \x29\x88\xad\xcb\x2a\x3e\x62\x7a\xfe\xaf\x82\x4b\x38\x62\x23\xb6\ \x1d\x3b\x89\xa5\xd3\x8d\x2f\x3c\x09\xc8\xeb\x8d\x0f\x9c\x2f\x65\ \xd3\x3e\xff\x42\x81\x11\xd0\x0c\x35\xd0\x3c\x59\x11\x03\x4d\xe8\ \x85\x12\x78\xb7\xb5\xe8\x8b\xed\xf0\x14\x69\xc2\x2d\x18\x6a\xbf\ \xdc\xf2\x36\xf4\xe0\x8e\x73\x12\x22\x1e\xb4\xb2\x96\x13\xc2\xbc\ \x0a\x44\xe4\x2a\x39\xfd\x83\xb2\x71\xfb\x9a\x2a\xf8\x2e\x12\x44\ \xae\x54\xe0\xab\x54\x20\x83\x37\x80\xb4\xd7\xda\xb7\xe2\x5b\xaa\ \x08\x11\xad\xbb\xf1\x82\x3d\xc3\x8d\x2e\x94\x0d\x5b\xb8\xc2\xc5\ \x23\x45\x96\x78\x2f\x32\x64\xad\x9a\x39\x43\x23\x53\x83\x29\xe1\ \x84\x11\xe0\x3a\x12\xec\x05\xd6\xa1\x19\xae\x03\x95\xcd\x6b\x15\ \xe9\x22\x3b\x7b\xe9\x2f\x18\x72\xab\x3e\x3a\x3b\x3f\x44\xa6\xa7\ \x11\x44\x1e\x7c\xb0\x50\x0b\xa5\x04\x8b\x9a\x07\xf3\x07\x64\x74\ \x39\x05\x13\xc2\x2c\xf3\x9a\xdd\x13\x33\x0b\xb3\x9a\x54\x40\x40\ \x79\xc8\x0b\xa2\x69\x9c\x9f\x50\x31\x5c\x7b\x2f\x35\xb1\x05\x0d\ \x01\x1c\x86\x70\x00\x0b\x71\x10\x08\x61\x13\x36\x59\x47\x5c\x33\ \x00\x55\xfc\x2a\x03\x68\xc5\xaa\x38\x00\x31\x10\x03\x4b\xaa\x0e\ \xf3\xab\xc5\x4d\xe0\x84\x44\xfe\xeb\x94\xcd\x93\x36\xad\x90\x21\ \x43\xaa\x41\x60\x1c\x24\x01\x3b\xa7\x6e\xfc\xb2\x40\xc4\xb2\x07\ \x83\x48\x66\x04\xc2\x63\x9c\xbd\xd0\x81\xb2\x66\x14\x35\x06\x90\ \xa7\xa8\xb1\xae\x4c\x62\x07\xe3\x5a\x01\x2a\xd2\x37\x4c\xd4\x44\ \xf1\x5a\x09\xde\x90\x90\x8e\xe1\xa2\x86\xb0\x05\x2f\xda\xc0\xc5\ \xab\x3e\x38\xa3\x3c\x1f\x0b\x05\x8d\xd3\xbe\x3a\xc8\x86\xd6\x11\ \x97\x1a\x20\xc0\x3a\xe8\x05\x7c\xdc\x81\x8c\x6b\x0b\x35\x40\x8c\ \x3b\xe0\xc5\x3f\x5a\x1a\x26\xd3\x43\x41\x32\x8a\x61\xdc\xb0\x2f\ \xcb\xab\xb5\xd3\xab\x87\x14\x42\x1e\x7c\xa9\x68\x04\x42\x22\x54\ \x0c\x21\x6c\xc4\x9c\xd4\x82\xd6\xa1\x44\x06\xa8\x44\x5a\x93\x02\ \x07\x24\xab\x36\x43\x0d\x54\x54\xaa\x95\x30\xc5\xd4\x4a\x8d\x0f\ \x10\x0e\x10\xf8\xc4\x0d\xd1\x40\x8f\xa1\x88\x99\x9c\xaf\x50\xa0\ \x01\x89\xd3\x19\x15\x30\x80\x22\xca\xa4\xa0\x0c\x8f\x3a\x28\x01\ \x80\xa9\x81\x3a\x8c\x17\x03\xd8\x82\x54\x90\xc3\xcb\x73\xb2\x49\ \x43\x48\xf7\x1b\x1f\x15\x78\x83\xa8\x21\xc0\xc2\x9a\xc8\xd6\x8b\ \x48\x43\x14\x44\x4b\xb0\x04\x68\x4c\xc6\x65\x4c\x0c\x58\xa1\x2b\ \xe5\xaa\x92\xfd\x69\x1d\xfe\x96\xf3\x26\x82\x28\xaa\xa3\xba\x05\ \x2c\x7a\xc0\x95\x60\x2a\x8f\x90\x8d\x07\xf9\x88\x76\x74\xc7\xa5\ \x43\x85\x6c\x91\x89\x4f\xc4\x96\x85\x52\x86\x76\x20\x06\x10\xd0\ \x04\x41\xe3\x04\x54\x4b\xab\xaa\x00\xcc\x4d\x08\x85\xf1\x1b\x95\ \x51\x61\xb0\x5b\xa1\x0b\x03\x48\x27\x59\x7c\x37\x8e\x32\x29\xa5\ \x61\xbf\x5f\x9c\xae\x7a\x62\x48\x6f\x0b\xc4\x63\xcc\x4a\xfa\x73\ \xc6\x48\x82\xbd\x1e\x9c\x48\x1e\x54\xae\x57\x81\x32\xb6\x63\xb5\ \x71\xd2\x04\x0a\x23\x88\x1e\x38\xb1\x53\x72\xb3\x4d\xcc\xac\x52\ \xdc\x88\x8f\xb8\x19\x07\x69\xc7\x51\x0c\x09\xb8\xec\x13\xc2\x51\ \x06\x62\x10\x01\x11\xf0\x00\x11\x68\x87\xe2\xf4\xb1\x71\xb9\xc9\ \x6e\x70\x1d\x9a\x99\x36\x14\xb8\x83\x17\x7c\x8b\xcd\xf3\x97\x54\ \x60\x07\x4e\x38\x80\xc3\x94\x4c\x3e\x0a\xa4\xf4\x53\xbf\xa2\x90\ \x26\x66\x42\xa6\xf9\xb4\x94\x62\xac\x4c\xfa\x13\xc4\x69\x64\xd1\ \xce\xbc\x3f\x68\x6c\x3d\xd7\x63\xcf\x94\xe3\x9a\x4f\x78\x9d\x4f\ \x08\xb5\xba\xa0\x39\x22\x40\x31\x4c\x0c\x47\xe3\x03\xb8\x06\xd9\ \x35\x31\x0c\xc3\xd4\x90\x20\x95\x69\x99\x04\x25\x06\x97\x59\x50\ \x41\x63\xc5\x42\xf3\xfe\x4b\xc0\xcc\x47\x21\xa8\xd0\xec\x58\x84\ \x78\xa9\xc3\xb9\xf0\x17\x3c\xea\x50\x2f\xe3\x30\x1a\x64\x1a\xbb\ \x92\xcc\xa2\x21\xb0\xeb\xf4\xb0\xca\xb4\xc4\xa2\xc1\x8b\xc9\xaa\ \x30\xd0\xac\x27\xfa\x7b\xc6\xce\xfc\x04\x4b\xd0\xd1\x50\x3b\x44\ \xf7\x64\x39\xb6\x63\x37\xaf\xf9\x04\x00\xf4\x26\xf4\xe8\x00\x06\ \xfc\xb9\x1f\xc5\xa8\xd7\xba\xc2\x90\xe9\xa7\xc3\x2b\x3a\xa6\x0b\ \x45\x10\x79\x89\x98\xf0\x20\x2f\x18\x02\x54\xd8\x00\x79\xfc\xa5\ \x50\x50\x03\xcc\x23\x02\x14\x38\x80\x08\x15\xbf\x3b\x58\x04\x14\ \x18\xd5\xbe\x58\x8f\x3a\xe8\x9d\x54\xf0\xd2\xf8\xf9\x8a\xb4\xe8\ \x23\xb5\x72\xca\x45\x7b\x3f\x31\xa3\xb9\xf7\x33\x13\x9c\xa2\x4c\ \xe2\xaa\xcc\x67\xa4\x30\x69\x2c\x4f\x1e\xf4\xcc\x2d\x13\x56\xb6\ \x4b\x46\x41\x24\x35\x41\x64\x4f\x65\x7c\xc6\x65\x6c\x8f\xd0\x08\ \x0d\xa5\xa2\x42\x7e\xdb\x88\xd0\x62\x3e\xa4\x9a\x10\x07\x0a\x09\ \xa8\x43\xb8\x2f\xda\x13\x49\x05\x81\x85\xf8\x00\xbc\x64\xad\x50\ \xa8\x03\xcc\x93\x02\x03\x40\x4d\x31\x08\x55\x8c\x93\x8b\xb8\xf0\ \x97\x32\x91\x05\x03\xf8\xd4\x4d\xc8\x06\x03\xa0\x2e\xf2\x18\x0f\ \x21\x31\xd3\xda\xfe\xb3\xcc\xc3\x0a\x51\x82\x70\xbf\xb5\x78\x03\ \x20\xd8\xa3\xa2\xe9\x01\x33\x01\xc2\x5e\x95\xc6\x63\xfc\xd3\x86\ \x6d\xd8\x3d\x3d\x46\xff\xa3\x51\x41\x24\xc2\xa7\xc9\x3f\xca\xa4\ \x4c\x3c\xd0\x58\x63\xa1\x93\x90\x39\x02\x3b\x68\x05\x60\xcb\x08\ \xd0\x1a\x1e\x55\x82\xba\x6e\x91\x08\xc9\x4b\x2f\xa8\x13\x94\xbb\ \x99\xbc\xca\x2b\xd7\x42\xab\x83\x54\x20\xa7\x68\x13\x02\x69\xbb\ \x83\x9c\x9d\x0b\x49\x5c\x01\x03\x58\x81\x4f\xfd\xca\x72\xba\x57\ \xdb\xa2\x34\xb7\x88\x53\xe2\x3a\xca\x4a\x03\xd8\xeb\x18\xd8\x82\ \x95\x02\x83\x20\x58\x82\x20\x03\x5d\x45\x8f\x2a\x78\xc6\xcf\xe4\ \x41\x87\x7d\x58\x1d\x85\x58\x97\xfa\xd3\x3d\x65\x39\x66\xd5\xb9\ \x45\xca\x0b\xd0\x38\x08\x3c\x38\x82\x06\xfa\x58\x39\x5b\x8d\x8a\ \x50\xaf\x84\x83\xdb\x54\x3a\xa8\x93\xa5\x08\x85\x90\x88\x59\x72\ \x5b\x8a\x28\x28\x78\x10\xd7\xaf\xe2\x84\x3c\xc0\xbc\x1e\x60\xa7\ \x7c\x1c\x10\x21\x28\x81\x9c\x3d\x5c\x35\x88\x57\x0d\xfd\xd4\x9e\ \x61\xa1\x03\x98\xc5\x22\xeb\x0e\xf3\x41\xb2\x2f\xab\x27\x32\x98\ \xda\xc9\xaa\xb6\xb6\x28\x08\xa1\x91\x82\x37\xe0\x07\x3c\x10\x92\ \xa6\x25\x08\xfe\x7e\xa8\x82\x59\x6b\x53\x7f\xf0\xcc\x63\xa4\x03\ \xad\x65\x5d\x94\x33\xd6\xae\xc5\x53\x6c\xe2\xc8\x45\xa2\xcc\x82\ \x40\x13\xa5\xf2\xd8\x38\xa1\x88\x64\x78\x5b\x3f\x20\x28\x54\x48\ \x86\x00\xe8\x82\x19\x53\x25\x0a\x5c\x59\xf5\x52\x25\x3f\xb0\xb1\ \xbe\x85\x28\x07\x2d\x34\xf3\x63\x42\x03\x8a\x97\x52\xa1\x1f\x89\ \xf9\xd9\x49\x41\xa2\x6c\x30\xac\xca\x15\xa4\x50\xf1\xad\x61\x7c\ \x03\x32\xf0\x41\x7f\xe0\x87\x0d\x6b\x2b\xa8\xa5\xb5\xf1\xc1\x03\ \x06\x0a\x8a\x27\xe8\x00\x3c\x68\x5a\x7e\x00\x82\xf6\x18\x5f\xcf\ \xfc\x4c\x85\xcd\x5a\xd7\xbd\x32\x65\x5c\x3b\xf7\x5c\xc6\xbc\x7a\ \x8c\xb4\xa3\x4f\xa2\xfa\x39\x22\x50\xaa\x62\x61\xdb\x2c\x4c\xaf\ \x8b\x30\x59\xdf\x65\x5e\x83\x9a\x2a\x95\xa5\x08\x8c\x00\x59\x0a\ \xc1\x07\xe7\xfd\xa5\x1a\x10\xc1\x73\x99\xdc\xcd\xf9\xbe\x77\xed\ \x9d\x15\xa2\x91\x03\x48\x05\x9a\x5b\x9f\x33\x4d\x3f\xb0\x48\x98\ \xc9\x22\x5f\x4c\xb0\x04\x4c\x50\x82\x7b\x7a\x97\x83\xe0\x07\x7e\ \xe8\x00\x0e\xc3\x03\x7c\x10\x5d\x39\x78\x02\xf9\x6d\x5f\x20\x98\ \xb5\x28\x24\x08\xd5\xf5\x4c\x85\xa5\x3f\x3b\x8d\xa9\xdc\xfb\xd3\ \x41\xac\xfe\xca\x16\x25\xcf\xb8\x5b\x30\xc1\xc3\x28\x8e\x98\x40\ \x91\x8d\x31\xd2\xa2\x31\x86\xf0\x03\x8c\x30\xd9\xbc\x9d\xdb\x06\ \xa6\x10\x86\xe8\x86\xca\xbb\x83\x56\xcc\x94\xb6\x80\x8b\x54\xa0\ \x12\x12\x58\x81\x37\xde\x84\xe8\x80\x8a\x03\x80\x30\xbb\x42\x3f\ \xb2\x6d\x0f\x91\x3a\xd8\x84\xc5\x84\x48\x88\x84\x42\xc0\x84\x4a\ \x54\x81\x0e\x10\x62\x25\xc0\x04\x7c\x78\x82\xf7\xc5\x03\x25\xb0\ \x83\xb3\x28\x03\x8d\x95\x5f\x82\x8d\x42\xca\xf4\x07\x18\xfe\xcc\ \xa9\x05\xc2\x7a\x6a\xdd\x42\xf0\x1f\x1c\x6d\x62\x8c\x24\x4f\x3c\ \x15\xdb\x29\xbe\xa7\xa2\x52\x0a\x07\xa4\xd6\xcf\xa2\x90\x2d\x16\ \xde\xf4\xda\xe2\x82\xd2\xdb\xbb\x29\x23\x8a\xf8\x00\x93\xf5\x83\ \x32\xa6\xc9\x33\xd6\x3e\xf6\xe9\x01\x06\x90\xc4\x29\x71\x9d\x03\ \x60\x83\x6c\x60\x03\x71\xf2\x19\x3a\x2e\x13\xef\x94\x3b\xb2\xa5\ \xa2\x16\x26\x2e\x7e\x78\xe1\x3f\x2e\x84\x42\x88\x04\x4c\x58\xb3\ \x37\xc0\x07\x25\x90\x06\x69\xe8\xe1\x1f\xf6\x03\x3b\x40\xb1\x20\ \x6e\xdf\x04\xf1\xd1\x0e\xe0\x07\x4b\x8e\xe1\xcc\x8d\x9a\xca\x6c\ \x3b\x4e\xde\x04\x4f\x7e\x67\x1d\xd5\xb0\x42\x14\x42\x6d\x22\x65\ \xd0\xfe\x18\x3c\x06\xf1\x37\x53\x00\x36\x3b\x00\x2d\x7e\xf6\x62\ \xe1\x3d\x83\xe2\x85\x65\x97\x4d\xaf\x64\x28\x86\x31\xea\x82\x62\ \xd8\x80\x4f\xb4\x31\x5c\xce\x4b\x5d\x8e\x5e\x4c\x60\x03\x36\x98\ \xd7\x38\xf6\x99\xc8\xd9\x84\x36\xd8\x04\xc7\x45\x22\x36\x48\x05\ \x7e\x98\xa2\xc9\xea\xa1\xaa\x95\xd3\xa9\xc5\xdc\xf2\x25\x5f\x4b\ \x88\x04\x55\x70\x69\x19\xc0\x84\x32\xf8\x61\x3b\xf0\x03\x69\xc0\ \x07\xa1\x28\x03\x7c\x68\xe4\x4b\x68\x20\x20\xb0\x03\x20\x28\x83\ \xb3\x78\x02\x20\x20\x03\x4c\x30\x6a\x4c\xe8\xc1\xa9\x9d\xb5\x66\ \x9c\xd3\xd7\x8b\x58\x3c\xc5\x63\x8b\xcc\x3f\x66\x3e\x5d\xc1\x4b\ \x13\x6b\xf5\xd8\x91\x85\x8d\x7f\xa6\x88\x2e\x18\xe8\x33\x90\x86\ \xd6\x48\x2f\xe5\x43\xa8\x85\x92\x09\xaf\xa6\x08\x88\x1e\xd7\x4d\ \x8d\x5e\x36\x90\xe3\x8c\xa6\xa4\xaf\x8c\x6b\xd9\xe3\x39\xa8\x71\ \x66\x20\x34\x5d\xd5\x8d\x84\x4f\x88\x04\x1f\x54\x02\x7f\x50\x02\ \x32\x30\xe4\x3f\x76\x69\x18\xc8\x02\x44\xbe\x84\x47\xc6\x07\x7c\ \x50\x8e\x27\xb0\x03\x3a\x22\x02\x2c\xf2\x67\x3c\x40\xb1\x27\xc0\ \xe6\xbf\x3e\x6a\xa4\xf6\x07\x4c\x76\x51\x20\xb4\x67\x0d\x5b\xe6\ \xfe\x38\xc5\x63\xf4\x80\xe6\x21\x2e\xd4\x36\x2b\x96\xac\xde\xa7\ \xdd\x75\x20\x1a\xeb\x62\x2f\xb6\x08\x07\x8a\x08\x69\x18\xe8\x84\ \xb6\xa5\xf4\x52\xeb\xaf\x0a\x05\x89\xbe\x3a\x0c\xd0\x5e\x4a\x02\ \x6e\xfe\xf9\x19\x4c\x50\x40\xd3\x25\x08\x34\xf3\xa1\x04\x32\x6a\ \x28\x90\x66\x6a\x96\xe1\xe5\x86\x02\x28\x78\x81\x17\xc8\x02\x19\ \x80\x01\x65\x78\x01\x3c\x00\x8a\x53\x02\x67\x9c\x6e\xec\x52\xf8\ \xe1\x5b\xf0\xd1\x1d\xe6\x07\x25\x30\x6f\x18\x36\xea\xf2\x2d\xdf\ \x4c\xb6\x67\x8f\xbb\x97\x69\x7a\xb2\xa9\x76\x66\xf3\x05\x0d\xcb\ \xb2\x6f\xa1\xe3\x58\x60\x53\xd4\xd4\x0e\x19\xfe\x0e\x2d\x90\xcd\ \xea\x84\x9b\x88\x95\x25\x01\x4c\xcd\xd4\x98\x35\x26\x3c\x80\x8e\ \xe0\x66\x70\x1a\x29\x84\x15\xc0\xdc\x90\x34\x13\x04\x22\x83\x15\ \xa0\x68\x4b\x60\x03\x3f\xe6\x64\x6a\x8e\xee\x3f\x96\x81\x42\x78\ \x81\x48\xd8\x66\x69\x78\x01\x19\x90\x01\x69\x48\xe4\x53\xfe\x46\ \xa4\x30\x97\x9c\xf6\x03\xf3\x2e\x6f\xa3\x8e\xe1\xa3\xce\x5f\x0a\ \x53\x58\xf9\xf3\xad\xf4\x31\x5a\x45\x64\x66\xf2\x55\xb3\x41\x75\ \xc0\x36\x83\x0d\xdd\xdd\x6a\xd8\x28\x83\xa1\x43\xdb\x32\xe0\xfe\ \x08\xdd\x45\xbe\x39\xd9\x08\x22\x9f\x2a\x54\xc8\x86\xca\x13\x82\ \x42\x8b\x94\xdf\x6e\x70\x06\x3f\x00\xe2\xe6\x55\xa5\x16\x4b\x08\ \xb7\xf0\x0d\x28\x84\x36\xf8\x63\x62\xa0\xe6\x0f\x5f\x83\x35\xf0\ \x00\x13\x7f\x81\x64\xf0\x03\x3f\xc0\x07\x12\x7f\x01\x44\xae\x2c\ \x17\xb9\x04\x3b\xc0\x87\x17\x57\x82\x6c\x36\x64\x19\x47\x6f\x1e\ \x5c\xef\xa9\x2e\xb0\x1b\x8a\xae\x84\x69\xc6\x6b\x7a\x66\x1f\xcc\ \x5c\x62\x21\x16\x25\xc7\x22\x25\x3f\xaa\xe3\x6b\x33\x6b\x25\x72\ \xbd\x11\x3a\x5b\x20\xd9\x5c\x1b\xba\x8f\x5d\x8d\x54\xa8\xbc\x1a\ \x28\xb4\x4b\xf0\x03\x8f\xce\x72\x16\x9a\x80\xb7\xf6\x99\x42\x48\ \x05\x4c\x48\x05\x28\x60\x03\xe3\x22\x03\x3a\x78\xf5\xe7\xde\x80\ \x4d\x10\x01\x2d\x50\x85\x42\xd8\x80\x96\x16\x81\x34\x5f\x03\x18\ \x90\x81\x2c\x80\x02\x38\x27\x16\x9a\xf6\x83\xa0\x76\x14\xee\x7e\ \x73\x3d\x37\x64\x28\xc8\x6c\xf5\x16\x42\x65\x26\x53\xa6\x79\xef\ \xaa\x55\xe6\x0a\x53\xf4\xd3\x95\x64\x48\x4e\xdb\x23\x80\xf4\x04\ \x7e\x72\x5c\xb3\x74\xa4\x02\xad\x8d\x78\x93\xd0\x52\x47\x7e\x0a\ \x19\x53\xf0\x74\x9a\xdc\x01\x2b\x47\x05\x54\xcf\xf2\xaf\xfe\xbc\ \x75\x8d\x6e\x83\x42\x60\x03\x0c\x8f\x84\x7c\xcf\xf7\x8d\xe6\xf7\ \x42\xa0\x11\x55\xf0\x00\x0f\x00\x80\x35\x28\xf8\x34\x07\xf6\x17\ \xb0\xe9\xc7\xb6\x2c\x2c\x4a\xf1\x17\x39\xaa\x06\xca\xf3\x6d\x96\ \x61\xf3\xde\xec\xcd\x9e\xda\x1f\x14\xc2\xcc\xb5\xe3\xf4\x73\xe6\ \xca\x34\x74\x5e\xa5\x30\x32\x98\x35\xf9\xc5\xa2\x06\xf2\x67\x3b\ \x50\x72\xdd\x3d\xf2\x4b\xf7\xf6\x69\xfd\xd8\xd8\x98\x56\x0a\x99\ \xc0\x90\xe5\x35\x39\x3b\x82\x15\xf8\xf4\x42\x7b\x0e\x79\x9f\xf7\ \x23\xa2\xf7\x7b\x27\xf3\x0c\xbf\x77\x11\x18\xf3\x42\xf8\x6d\x83\ \x57\xfa\x83\xf7\x75\x60\xcf\x82\x6f\x2e\x83\xca\xe2\xcb\xa2\x68\ \x78\x63\x97\x86\x17\xa7\xdf\xa8\xad\xcc\xbc\xae\x30\xf2\xd5\xf8\ \x05\x5b\xa4\xe3\x8e\x46\x8b\x45\x4f\xe2\x1a\xcb\xd0\x38\xf9\x8f\ \xf5\xe7\xd7\x0c\x19\x92\x0d\xd9\x09\x51\xfb\xcf\xda\x6a\x0b\xa6\ \x0d\x60\xb3\x88\x0f\xc0\x56\x7c\x30\xf0\x38\x0a\x85\x2a\x4f\x2b\ \x3c\x00\x9f\x52\x17\x7c\x00\x10\x81\x4d\xd8\x80\x5d\xdf\x80\xa2\ \x4f\xfa\x82\x67\x7c\xa5\xf7\xf5\x5f\x0f\x76\x69\xe8\x6e\xb1\x3b\ \x97\xc4\xc6\xf3\xc5\xc6\x07\x06\x32\x13\xd0\xe5\x87\xfe\x39\xed\ \x41\x1f\x14\xc4\xcd\xd6\xb0\xc9\x12\x7b\x35\x25\xe9\x28\x7e\xe6\ \xaa\x4e\x10\x48\x7e\x64\x7f\xde\x6a\x91\x5d\x0d\xb7\xc1\x07\xb8\ \x7d\x6d\x7c\x30\x5e\x0b\x0e\xe8\xd7\xb6\x03\x9d\xa7\xc9\x5e\xe8\ \x60\x18\x29\x83\x0d\x30\xd0\xc1\x17\x7c\x2d\x10\x01\x62\x88\x04\ \x25\xe0\x07\x28\xd8\x00\x2c\x37\xf8\xc6\x7f\xfc\xa6\x67\x73\xc9\ \x9f\xfa\xe5\xb0\xac\x04\xd6\xd8\xb6\xc9\x7a\x68\xa6\x71\xa3\xa6\ \x03\x74\x46\x4f\xf4\x30\x93\xb0\x97\x76\xab\x9d\xc6\xca\x8c\x5a\ \xd6\x57\xf2\x98\xbf\x62\x80\xf6\x62\xb9\x95\x31\xb7\xa1\x31\xbc\ \xff\xb5\xa9\xa2\x0d\xde\xcf\xcb\x77\x37\xa6\xe0\x3f\x50\x9f\x27\ \x7e\x06\x07\x88\x36\x50\xf0\x29\x69\x23\x02\x00\xc2\x84\x6b\x00\ \x2c\x5c\xe3\xf0\x21\x0c\x65\x32\x64\x74\x49\xe6\xe7\xc8\x13\x39\ \x1a\x37\x72\xec\xe8\x51\xce\x93\x5b\x78\xfc\xf8\x81\x02\x05\x93\ \x12\x25\x98\x30\x59\x62\xd9\xd2\x12\x1d\x97\x74\xfc\x55\xe9\x61\ \xb3\xc7\x1b\x9b\x39\x73\xf6\x50\xa1\xa2\x47\x15\x9a\x55\x6a\xbe\ \xa9\xf2\xe6\x28\x9e\x0e\x6f\xca\x94\xb9\x15\xb2\x29\xd3\x23\x52\ \xa7\xda\x91\x6a\xc7\xd4\xd5\xac\xa6\xb6\xe2\xab\xfe\x7a\x75\xeb\ \x91\xaf\x58\x6d\xc9\xfb\x67\xf6\x2c\xda\xb4\x6a\xd5\x86\xda\x41\ \xe4\x23\x5c\xb8\x7e\x0e\x02\x10\x41\x37\x21\xde\xbc\x7a\x11\x6e\ \x12\xb1\x29\xd2\x26\x2d\x09\x45\xb4\x89\xb4\xa1\xd0\xde\x86\x0c\ \x1f\xae\x89\x28\xf1\xc5\x0b\x69\x76\xf0\x5c\x8a\x6b\x59\x63\x48\ \x7c\x7e\x92\x75\xc9\x92\x25\xd2\xc9\x93\x2b\x57\xc6\x2c\x8d\x69\ \xa6\xd1\x9b\x38\x7b\xbe\xf1\xe9\x1a\xe7\x50\x9d\x45\x8f\x1e\xed\ \xd0\xe1\x09\x6e\xa7\xb7\x76\xef\x2e\x73\x64\xb7\xad\x5b\x4d\x81\ \xfb\xa6\x3a\xd5\x96\xad\xa9\x47\xb6\x82\x3d\x52\x76\x2d\xf4\xe8\ \x66\x43\xf5\xba\x6c\x9d\xc8\x06\xc1\x1e\xc2\xdc\xdd\xeb\x3d\xe1\ \xa6\x36\xd9\xa0\xa4\x82\xd2\x26\x7c\xa1\x0d\x86\x0b\x89\x58\x88\ \x50\x71\x43\xc6\x6b\x24\xca\xc8\x12\xd9\x8f\x9d\x5b\x95\xad\x7f\ \xbc\x54\xc6\x0e\x3e\xd2\x24\x03\xd9\x67\xa2\x8d\xe6\x0f\x82\x08\ \x9e\xe6\x0f\x6a\x3d\xb9\xa6\x42\x6b\x1d\xf4\x24\x05\x85\x52\xa8\ \xb6\xd3\x51\x40\xbc\x71\x1b\x6e\x4f\x94\x12\x12\x6f\x21\x06\x77\ \x84\x2d\x65\x04\x17\x62\x88\x26\xee\x56\x4a\x29\xb7\x24\xc7\x1c\ \x58\xcf\x49\x37\x23\x5a\x6d\xbd\xc5\x1f\x5c\xfe\x4f\x6c\x50\x57\ \x1b\x6d\x78\x20\xd8\x77\xdf\x85\xf7\x09\x1b\x64\xf0\x43\x06\x26\ \x50\xac\x20\xcf\x1b\xfc\xac\x60\x5e\x21\x1e\x78\x00\xdf\x62\x0e\ \x79\x00\xc3\x44\xf6\x49\xe3\x07\x3e\xbf\xdd\x88\x63\x47\x97\x3c\ \xf1\x1f\x80\x7e\x48\x73\x26\x14\x2a\x29\x41\x06\x9b\x64\x24\xf8\ \xa6\x3f\x64\xe4\xa4\x82\x14\x2a\x48\x28\xa1\x14\x1d\x50\x48\x04\ \x11\x75\xce\x89\xe1\x86\x1c\x82\x08\x55\x88\x24\x9a\x18\x96\x54\ \xb7\x7c\xc8\xa2\x87\x8a\xf2\x56\xca\x25\x91\xde\x62\x15\x56\xa6\ \xe0\xd3\x0b\x8d\x99\x4e\xa7\x02\x98\x70\xdd\xb2\xa3\x08\xc4\x6c\ \x60\x50\x90\xde\x69\xb1\xc9\x01\x91\x64\xc3\xc0\x51\xf2\xf0\x03\ \xc4\x13\x44\x3c\xd1\x01\x10\x04\x99\xb4\x81\x32\xed\x2d\x26\xa5\ \x44\xf6\x41\xc1\xa5\x1d\x65\x3c\x71\xc9\x97\x9d\x72\x24\xa6\x48\ \x00\x06\x78\x26\x4a\x2b\x29\x81\xa0\x9b\x09\xd2\x31\x13\x4d\x3d\ \x50\xe8\x53\x6b\xae\x49\x71\x63\x9d\x3e\x49\x98\x61\xa0\x63\x32\ \x55\x06\x1e\x50\x15\x67\xd5\x72\x96\x9a\xf2\x9b\xa2\x1e\x46\x7a\ \x89\xa2\x90\xca\x3b\x29\x55\xa6\xf0\xa3\x69\xa6\xd4\x69\xb4\x9f\ \xb1\x1a\xd9\xd1\x06\x42\x61\xf4\x48\x4c\xfe\xa9\xde\xfd\x75\x00\ \x1d\xac\x82\x6b\x9b\x6d\x65\x74\x40\x84\x98\x1d\x28\x21\xc3\x94\ \x1e\x10\xd3\x6b\x24\xc9\x6c\xd9\x95\xb0\xc4\xf6\xeb\x91\x7f\xca\ \x9a\x29\xe0\x0b\x26\x19\x48\x1a\x83\xd3\x96\x66\x94\x6b\x1d\xd8\ \x99\xa7\x9e\x6f\xf1\x49\xe1\xb7\x1a\x6a\xe8\x30\x1e\x39\xdb\xb1\ \x73\xb0\x54\x7d\xf5\x01\x3e\xa8\xa0\x82\x15\xbb\xef\x46\xda\x62\ \xbc\xc0\x59\xd5\x8a\x54\xf8\xe0\x4b\x63\x28\xa1\x98\x02\x4f\x3e\ \xef\xe8\xc7\xaf\x75\x97\x1c\xb1\x41\x18\x82\x85\x3a\x6a\x77\x05\ \x03\x70\xea\x01\x96\xac\xb0\x93\x52\x47\x2a\xf1\xea\xc3\x1b\x41\ \x8c\x0f\xc5\x1e\xd0\xe7\x59\xc9\x1b\x73\xac\xdf\xc7\x1c\x85\x54\ \x66\x32\x7d\xbf\xe0\x59\x24\x81\x9f\xf4\x92\x25\x85\x97\x66\x09\ \x4d\x11\xfa\xf4\x04\xcc\xdb\x6a\xd4\xa7\xcb\x4a\xbd\x01\x04\xe5\ \x4b\xe9\xcc\xf3\xce\x61\x79\xa5\xee\x56\x59\x25\x0a\xe9\xbb\x48\ \xd3\x1b\x56\xa5\x57\x1d\xe1\xf4\xd3\xd2\x85\xa2\x49\x1b\x13\xb4\ \x01\x42\x14\x1f\xbc\xf3\xce\x11\x56\x17\xeb\x11\x1e\x1b\x84\x4a\ \x97\x08\x1b\x40\x91\x9d\xd8\x78\x6d\x92\x4d\x2a\x44\xe1\xc4\xcf\ \x91\xd2\x40\x21\x0d\x10\xb7\xc8\x1a\xfe\xd2\x98\x2f\x48\xe9\x81\ \x2a\xca\x14\x92\xa5\x7d\xf7\x75\x35\x6c\xde\x10\x5f\xd2\x41\x58\ \x9a\xf9\x0d\x59\xe0\x81\x5b\x12\x49\xe1\x2c\xc5\xd4\xd2\x4a\x72\ \xea\x19\x2b\x6e\xb6\x7d\x29\x05\xe3\x4a\xd9\x3c\x79\xce\xe5\x7a\ \x95\x55\xe6\x3b\x33\x57\x15\xba\x7e\x03\x3a\x49\x4d\xea\x2b\x7e\ \xf8\x00\x56\x5a\xc1\x1c\x25\xa4\x4e\x75\x62\x60\x43\x8f\x40\x10\ \x80\x28\xc0\x23\x0a\x01\xb8\x47\x00\xe0\xf1\x8e\xe0\x60\x0d\x24\ \x18\xf0\x80\x08\xa4\x84\x90\xaf\xe9\x2e\x78\xe0\x41\x18\x03\x8c\ \xf2\x06\x32\xac\x80\x0c\x2a\xf1\xdd\xaf\x4a\x22\x83\x0d\x70\x49\ \x7a\x0f\xb9\x12\x96\xb2\xf4\x02\x8b\x74\x29\x23\x79\x13\xce\xce\ \xba\xa2\x99\x91\x91\x0f\x0a\xe5\x33\xdf\x68\x62\x72\x1a\x94\xbc\ \x81\x71\xb8\x81\x59\x07\x38\x42\x3f\xdb\x4c\x0e\x08\xaf\x02\x42\ \xfe\xc8\x85\x87\xf0\xa9\x6b\x73\xa6\xe3\xcd\x54\x86\xe3\xa8\x49\ \x29\xd0\x14\x7e\xf8\x1f\xe9\xf0\x91\x8a\x06\x46\x27\x6a\x14\x8c\ \x02\x1c\x2b\x08\x8f\x53\x84\x61\x02\xae\x0b\x00\x06\x4c\x41\x3b\ \xab\x3d\xc1\x0e\xba\x0b\xd5\x94\x18\xd2\x3b\xb0\x99\x70\x6c\x9f\ \x48\x05\x19\x18\xc0\x80\x15\xf8\xfe\x03\x0a\x6c\x70\xa4\x61\x0c\ \x43\x31\x86\x28\x03\x32\x32\x60\x8c\x32\xb2\xd0\x85\xbf\xd5\x0d\ \x3f\x94\x21\x56\x07\xf9\x73\x09\x3c\x04\xa8\x6f\x7d\x13\xd0\x99\ \x06\x14\x9a\xd1\xac\x04\x4e\xce\x82\xd5\x14\x6d\x93\x94\x1b\x3d\ \x4f\x29\x78\xa0\xdc\x15\xb1\x98\x33\xab\x5c\x05\x1f\x44\x53\x4e\ \x70\x58\xa4\x34\xe5\x28\xa7\x97\x08\xdc\x59\x2b\x4c\x67\x0a\x36\ \xb6\x91\x04\x51\xc0\xc0\x1b\x63\x17\x05\x10\x4c\x00\x21\x5a\x98\ \x40\x31\x02\xd0\x86\x30\x84\x61\x03\xde\x14\x0c\x31\xda\x40\xb0\ \x85\x88\x60\x86\xec\x29\xe4\x26\x36\xc1\x86\x6c\xac\x64\x05\x2b\ \xc0\x44\x24\xd2\x03\x1a\x69\x28\x41\x1a\x71\x23\xc6\x0e\xbb\xa0\ \x0c\xb9\x55\x84\x24\xf8\xe8\x0a\xcf\xca\x65\x2e\x1f\x76\x6a\x94\ \x7e\xf8\x5b\x7d\x3c\x93\x3d\x28\x24\xa3\x59\xad\x5c\x93\x0b\xf9\ \xa1\x04\x82\x28\x01\x08\x0f\xc3\xcd\xb8\xa2\xf8\xb8\x59\xd1\x0a\ \x97\xfc\xc0\x07\x10\xec\x80\xc5\xc9\xf0\xcc\x97\x3b\x63\xca\x8a\ \xdc\xd5\xa2\xe0\x8c\x08\x5d\xfe\x63\x8e\x49\x89\x56\x15\x66\x42\ \x27\x14\x70\x0c\xc0\x29\x30\x08\xc7\x62\x9c\x62\x02\x82\x99\x40\ \x18\x40\x70\x0a\xc1\x68\x41\xfe\x0b\x22\x00\x92\xa8\x88\x71\x17\ \x0f\xf4\x28\x6c\xa5\xd2\x42\x21\xc4\xc3\x06\x4c\x18\x49\x1e\x98\ \x78\x64\x9a\x00\xaa\x04\xc8\xbc\x80\x24\x03\xda\xa4\x45\xf0\x33\ \x99\x8c\xfe\x67\x88\xf9\x09\x65\x7f\x7c\x08\xb1\x91\xbc\x40\x06\ \xca\x78\xeb\x44\xea\x63\x12\x32\xe0\xc3\x85\x46\x42\x1e\xf2\x70\ \xf9\xcf\x0e\x54\x26\x52\xd0\x7b\x8b\x98\xc6\x74\x4b\x2b\xd6\x0a\ \xa4\x21\x05\x90\xb2\xb0\x52\x95\xa6\x0c\xf0\x68\x2e\x4a\xd4\x54\ \x60\xe4\x3f\x93\x2e\x47\x73\x61\xa1\xe9\x5a\x34\x71\x0f\x23\x4c\ \xe0\x14\x39\x8d\x82\x67\x85\x6a\xc7\x53\x04\x20\x00\x5d\x1b\x5b\ \x51\x47\xe8\x81\x0d\x10\x0c\x2f\x16\x73\xea\x77\xfc\xc2\x86\x48\ \xb0\xa1\x25\xfc\xc8\x90\x44\x95\xe0\xcf\x7f\x8e\x4c\x63\x24\x21\ \xc9\x96\x80\x75\x04\x87\x25\x6b\x33\x1a\xcb\x4f\xd6\x40\x52\xae\ \x7d\x3d\xe1\x74\x08\x85\x81\x2a\x1a\x23\x91\x48\xa0\x64\x4d\x6b\ \xcb\x2b\x1e\xde\x70\xcb\x7f\x3a\xef\x71\xef\xda\x57\x07\x98\xb2\ \xdd\xc2\xfe\xb3\xbc\xbf\x3d\xe3\x49\x77\x63\xb4\x4b\xb4\x08\xb2\ \x24\xa2\xd4\x57\x3c\xe7\x9b\x73\x5d\x16\xb3\x69\xb1\xa9\x67\xef\ \x01\x47\x38\x7a\xf6\x14\xfe\x70\x9c\xdd\x34\x49\x1b\x05\xae\x01\ \x89\xa9\x4a\xd5\x8b\x5d\xc4\x06\xd5\xa9\x32\xf2\x49\x54\x5d\x13\ \x3e\xf8\xa1\x3c\xae\x9a\xb2\x22\x7d\x23\x09\x2a\xfc\x69\xa9\x20\ \x0e\xd1\x94\xf8\x19\x56\x07\xbf\x4b\x04\xa7\x5c\xc2\x0e\xd2\xc0\ \x87\xf3\xc4\x04\x20\x69\x64\x41\x06\x30\x80\xc1\x1a\x54\x71\x3d\ \xd0\xa4\x24\xa2\x20\x4d\x4a\xfe\x82\x15\x17\x31\x91\x09\xa4\xe5\ \xf5\xf1\x10\xf1\x01\xb4\x9d\xad\x28\x69\xed\x25\xe6\x70\x8b\xb9\ \x9c\xae\x0c\xb7\x37\x49\x3e\x02\x1e\xec\x9b\x16\x31\xe4\x43\xbf\ \xef\x28\x45\x03\xde\xb1\xdf\x09\x46\x61\x76\x72\x6c\xca\x3b\x40\ \x40\x17\xa6\x7a\x60\x2f\x21\x4c\xf0\x77\x16\x7c\x92\x77\x1a\x31\ \x3d\xf2\x34\xc9\x0b\x88\x21\xe7\xfa\x74\xa1\xce\x5d\xc8\xf0\x6f\ \xd5\xd5\x61\xbf\x5d\xf8\x22\xbe\xb9\xda\x6e\x40\x82\xdc\x51\xda\ \x01\x37\x7e\xe8\x82\x34\x30\x02\xc4\x00\x3d\xf7\xc5\x32\xfe\x4c\ \x75\x73\x59\x2e\xde\x70\x2f\x47\x65\x15\x62\x61\xfd\x89\x5e\x00\ \xa6\xe8\xc9\x2e\xed\x9f\x54\x8a\x23\x16\x00\x92\xba\x2a\xa1\x90\ \xf2\x59\xa8\xb3\x8e\x75\x34\x80\x1e\xae\xb6\xc1\x34\xb4\xbc\xdf\ \xd9\xbd\x03\x03\xef\xfe\xc8\x32\x3c\x0c\x72\x10\xbb\xe8\x2a\x2f\ \x67\x86\xad\x16\x7a\x74\x9e\x30\x84\x27\x12\xe7\x39\x88\x2a\x00\ \xa0\x0a\x62\x48\x32\xae\x0a\xd5\xa4\x6f\xcf\xfb\x5b\x92\x75\x06\ \xda\x62\xfd\xa7\x40\xab\x12\x12\xfc\x38\xef\x08\x92\xb9\x85\x1d\ \x38\x89\x8f\x72\xe1\x61\xc5\xc9\x68\xb1\x0c\x54\xf1\xe2\x42\x44\ \xa2\x64\x13\x2d\x6c\xb0\x86\x55\x69\xb8\xc0\xab\xdc\xe6\xf5\x83\ \x6e\xff\x39\x56\xdd\xec\xc6\x67\x9a\x13\x0b\x73\x90\x4c\x3a\x3b\ \x94\x11\x46\x58\x39\x35\xaa\xff\x11\x8a\x75\xe4\x63\x1a\xa5\x70\ \xb5\xab\xb1\x6c\x03\x59\x77\xd9\x6a\xb7\xd0\x72\x8f\xb8\xc3\xeb\ \x83\xb8\x67\x30\xbc\xde\x4b\xb0\x0d\x73\xd4\x11\x6e\x82\x21\xef\ \x01\xc0\xf5\xe2\x5a\x9f\x17\xd8\xb9\x22\xa8\x90\x06\x9e\x5f\x2e\ \x20\xce\x54\xdb\x33\x1b\x23\x89\x62\x35\x03\xd0\xbe\x05\x0b\x0f\ \x03\x1a\xb7\x1f\x5a\x9c\x05\xc9\xd8\x5b\x33\xd2\x40\xa8\x5b\x65\ \x10\x89\x02\xe9\x9b\x63\xf3\xb6\xcc\x98\xca\x04\x5c\x92\x54\x85\ \xc4\x92\xf2\xcd\xfe\x14\x9b\x4c\xff\x71\x1d\x80\x48\xe6\x59\x17\ \xb7\x82\x70\x54\x87\x42\xbf\x51\x98\x46\x03\x68\x70\x89\x88\xd3\ \xa0\x14\xb1\xfe\xfe\x2f\x96\xa3\x50\x47\xc2\x34\xf5\xcc\x66\xde\ \x38\x82\xcf\x03\x24\xbc\x34\x44\xc6\x4a\x4f\xb9\x0c\xb8\x0a\x19\ \x0f\xc3\xbc\xc2\x75\x7e\xb6\x7d\xa4\xcd\x25\xaf\x2e\xbe\xce\xf8\ \x29\xc3\xa1\xbb\xf0\xcf\x64\x24\xbd\xab\x41\x04\xee\x84\x23\xa1\ \xf4\xc0\xd5\xad\x2b\x5b\x24\xe8\x65\xd8\x5b\xee\x83\xf2\x30\xde\ \xef\x7a\x8a\x65\x41\xed\xf5\xca\x22\x19\x39\x87\xfa\x4d\x4b\xa7\ \x32\x76\x29\x87\xc2\xb3\x9d\x35\xc2\x3a\xd0\x8e\x65\x2c\x03\xb8\ \xcb\xb1\xde\x40\x35\xb5\xd0\x4d\x8d\x87\xb0\xe3\x83\xa9\xcb\xc7\ \xf3\xb2\x77\xbe\x2b\x5b\x04\x51\x9d\x88\xe6\x3f\x43\xe1\x0b\x9b\ \xd2\x6f\x87\x17\x7a\xf6\x34\x7d\x73\xe3\x26\x43\x33\x9d\x79\x7c\ \xb8\x13\x1f\x74\x65\x60\x69\xe8\xf7\x4e\x89\xc9\x96\x07\x05\x4e\ \x9e\xb8\x63\x60\xf2\x8f\x71\xdb\x2f\xef\xde\x30\x85\x67\x50\x9e\ \x6f\x89\x58\x9a\x7f\x12\x8d\x11\x45\x8e\x9a\xd7\x9f\xcd\x9e\x7d\ \x85\x82\x4f\x21\x44\x67\xe5\xde\x34\x24\x60\x02\xae\x03\x1c\x55\ \x4d\x14\xdc\x43\x35\x01\x00\x50\x71\x07\x00\x80\x90\xc9\xf9\x9a\ \x5d\xb4\x03\x6c\x8d\x10\xef\xa8\x82\x5d\x2c\x1b\xbb\x41\x1f\x64\ \x30\x54\xf5\xfe\x25\x03\x2a\x70\xd5\xe1\xa9\x1c\xdd\x9c\xd8\x79\ \xf9\x12\x49\x0c\xde\x66\x78\x06\xb7\x95\x01\x3e\x74\x41\xe0\x09\ \x88\x8b\xcd\x87\xf8\x91\xc4\x44\xa5\x44\x3d\xa1\x09\x57\xe1\x47\ \xa4\x80\x49\x73\xe9\x5c\x53\xa0\x1e\xe6\x54\xc5\x16\x89\x51\x8b\ \xb0\xd7\xa2\xc8\xcb\xb0\xb0\x88\x30\xb5\xc8\x14\x8e\xd1\x89\x08\ \x20\x66\x89\xc1\x29\xe0\xc5\x29\x18\xc1\x3d\x98\xdd\x03\xea\x17\ \x3c\x30\x20\x3c\x00\x9f\xc7\xf1\x9a\x62\x20\x98\x08\x70\x53\x90\ \xb8\xc7\x1a\x88\x40\xb2\xd9\x85\x07\x14\x02\x31\xd4\x47\xbb\xa5\ \x92\x29\xb1\x9c\xd0\xc5\xd5\x5b\xf5\x4a\x45\x04\x97\xc6\xe0\x99\ \x99\xb0\x5c\x57\xb5\x95\x0c\x74\x1f\x1e\x8c\xc9\x41\xed\x90\x34\ \xe8\x93\x43\x60\xc9\x7d\xf0\x20\x41\xf0\x20\x97\xf0\xd6\x3f\x95\ \x01\x5a\xa5\x55\x93\xed\x46\xb9\x29\x8b\xbe\x29\x61\x88\xac\x97\ \x28\xb2\x97\xd1\x48\xa1\x29\x2a\x4a\xec\x71\x02\x16\x32\x53\x28\ \x90\xc0\x50\x19\xa0\xed\x8d\x16\x18\xd2\x1a\x68\x45\xe0\x08\x31\ \x84\x16\x2c\x04\x08\x19\x1f\x07\x2e\x9f\x99\x79\xe0\xde\xe9\xa2\ \x94\xd4\xa1\x7d\xb4\x1b\x21\xda\xa0\x5b\x49\x44\x1f\xce\x0d\x64\ \xcc\xdc\xfe\x29\xf5\x56\x10\xb6\x55\x26\x75\x5f\x53\x8c\x84\x57\ \x51\x1e\x8c\x39\x44\x26\x2d\x0f\x0f\x9e\xc9\x6e\xed\xcc\xa4\xe1\ \xcd\xfb\x29\x97\xb4\xfd\x92\x18\x8d\xe2\x77\xf5\xd5\xd1\xb0\x08\ \x7b\x79\x08\x3b\x0a\x93\x8b\x20\xc7\x11\x70\x42\xc2\x29\x1c\x09\ \x18\xc1\x50\x75\xd6\x3d\xf4\xd4\x35\x9d\x02\xda\xc5\x9a\xac\xf1\ \x94\x2d\x22\x5f\x77\x90\x13\x82\x89\x0d\x1c\xe6\xc5\x1b\xae\x81\ \x94\xd0\x61\x42\x69\x92\x67\x24\x63\x1f\x26\x63\x42\xed\xd0\x80\ \x50\xd8\x0e\xe9\xe1\x0e\xc5\x60\xaf\x10\xdd\xe5\x0d\xe2\x25\x41\ \xc4\x0d\x6e\x09\x49\xfa\x13\x91\x3d\x1d\x98\x08\x87\x99\x08\xd7\ \x70\x78\x08\x88\x8d\x62\x63\x95\x22\x29\x42\x4a\xbc\xc8\x8b\x29\ \xb6\x08\x3d\x26\x5c\x28\x0c\x40\x18\x7a\xe1\x03\xe6\x57\x3e\x34\ \xc0\x25\x64\x59\x14\x9c\x81\x67\xad\xe1\xde\xd9\x85\xf1\xe9\x0a\ \x2f\x16\x92\x42\x56\x60\xc5\xcc\xa1\xca\xf1\x21\x7d\xd0\x07\x9d\ \x65\xe4\xdf\xd4\x19\x56\x56\x1b\x23\x9e\x5b\xaf\x74\x15\x40\x01\ \x54\x0c\x66\xe3\x23\x8e\xe4\x99\x04\x97\xbe\x35\x45\x26\x5a\x06\ \xb2\x60\x9d\x70\x90\x98\xbb\xa0\x23\x29\xa6\xa3\x4c\x52\xe1\xff\ \x49\xfe\xa1\x91\xe5\x24\xd9\xe5\x5e\x03\x4c\x03\xc3\x4d\x43\x03\ \x4e\xc3\x13\xf4\x25\x03\x7a\x56\x1d\x09\x4c\x18\x0c\xc6\x81\x31\ \xdf\x05\x9e\x9c\x53\x9a\x9c\x94\x2c\xe4\x30\xca\x59\x3b\xc8\x40\ \x3b\x28\xc3\x65\x2e\xa3\x0e\x5d\x64\x67\x0c\xde\x45\x46\x64\x16\ \x68\x0c\xe5\x4d\x04\x58\x55\xe2\x27\x6a\x46\x16\x90\x65\x63\x04\ \x1e\x37\xe2\x5b\x25\x12\xd9\x5a\x66\x0d\x88\xb8\xe4\x87\xc8\x64\ \xe8\xc8\xe5\x4c\xde\xa4\xff\x89\x4e\x29\xe8\x25\xed\xf5\x65\x03\ \x0c\x66\x03\x0c\xe7\xad\xf5\x25\x60\x1a\xa6\x1d\x75\x16\x08\x00\ \xcc\x08\x2d\xe6\x53\x2a\x46\x20\x39\xe5\x1b\x4a\x09\x53\x32\xe4\ \xc5\x28\x43\x1d\x4a\xe4\x44\xd2\xd9\x26\x29\x94\x67\x12\x88\x42\ \x31\x94\x34\x42\xdb\x33\xfe\xd6\x58\xe1\x43\x6a\x32\x46\xf9\x25\ \xc3\x44\x95\x54\xb0\x90\xd8\xc7\x40\xcc\xb8\xb4\x64\xbb\xf0\xe6\ \xd5\xc4\xe4\xd1\x38\x21\xd2\xbc\xe3\x4a\x89\xc8\x2d\x18\xc0\x2a\ \xb2\x51\x28\xc8\xc2\x70\xaa\x5d\xdb\x0d\x67\xac\x31\xe0\x3e\xfa\ \xd4\x35\x4d\x40\x3b\x9c\x02\xd7\x9c\x61\x1b\x6a\x01\x08\x6d\xe0\ \x77\x34\x04\xf5\x98\x9c\x64\x66\x67\x5c\xd5\x21\x66\xba\x15\xf6\ \xfe\x3d\xa4\xe0\x21\x5e\x68\x1e\x5d\x6a\xf6\x0a\xf5\x9d\x12\x3e\ \x0c\xc7\xc4\xc8\xc7\x63\x9c\x58\x40\xa9\x65\xde\xc0\x4b\x99\x00\ \xd4\x12\x8a\x91\x18\xed\x86\x3b\xca\x8b\x7e\xae\x94\x0d\xd4\xa4\ \x6e\x22\x4d\x19\x60\x8a\x4e\x12\xa8\x71\x2a\x60\x3e\xe0\x63\x7f\ \xf1\xa3\x1d\x71\x53\x8f\x0c\x24\xef\x5c\x68\x2e\x86\x90\x74\x0a\ \x12\x7c\xb4\x87\xc5\xa8\x1c\x5c\xcd\x4d\x7d\xac\xdc\x0b\xb4\x1b\ \x89\x56\xe4\xd1\x4d\xc4\x57\x86\xd5\xb9\xed\x90\x1d\xdc\xc6\x2d\ \xd8\x93\x7a\xd6\xc7\x96\x4c\x06\x7c\xe6\x8d\x1c\x8c\x98\x1d\x98\ \x49\x86\x09\x91\xe9\x78\x05\xbb\xa0\x88\x3b\xfa\x27\x4b\xd9\x65\ \x13\xb2\x57\x88\x10\x29\xd9\x35\x5c\x3e\xfc\x64\x7f\x8d\xd6\x92\ \xd2\x51\x93\xd6\x11\x82\xed\xe2\x85\x22\x5f\x53\x96\x0a\x95\x2c\ \x24\x96\x5a\xcc\xf4\xc0\x15\xe2\x29\x9d\xe0\x81\xa7\x42\x05\x1e\ \x57\x51\xa4\x7d\xf8\x96\x89\x0e\x5d\xa1\xf9\x87\x3d\xbd\xd8\x8b\ \xad\x1c\x97\x08\x8b\x9c\x86\x49\xf8\x94\x94\x62\x81\x5a\x92\xf1\ \x46\x89\xe4\x68\xfe\xad\x48\x29\xb0\x94\xa3\x08\xaa\x70\x10\x2a\ \xed\x0d\x40\x95\xf5\x54\x72\x12\x6b\x67\x9d\x02\x1b\x18\x41\xfe\ \xc6\xd9\x91\x2f\x22\x04\x08\x9d\x13\xa5\x56\xa0\x85\x26\x06\x43\ \x04\xd2\x43\x5c\xaa\xba\x51\x8f\x08\x1a\xd1\x67\x00\x8e\xaf\x90\ \x8f\x7d\x64\x49\xc6\x48\x63\x26\x2d\x14\x3d\x8d\xa9\x0c\x40\x41\ \x19\x40\x4c\x07\x04\x9d\xa8\xfe\x4a\xb0\xc4\xe6\xfb\x3d\x85\x6e\ \xf8\x46\x27\xce\x57\x54\x14\xc7\x7c\x25\xd9\x7c\x85\x08\x5e\x22\ \x47\x30\xa1\x08\xb0\x0e\x20\x1b\xdc\x43\x1b\x18\xeb\xa2\x7a\x96\ \xb2\x2e\xeb\xc8\xe5\x9d\x8f\x04\x4f\xaf\x99\xd0\x1b\x6a\xe8\x62\ \x60\x29\x31\x54\x8f\xb3\x71\x95\xb7\x02\xce\x26\xfd\xcd\xa7\x96\ \xa8\x34\x4e\xc4\x97\x6e\x24\x41\xd8\xd3\xf5\xe0\x43\x46\x7c\x8f\ \xbb\x8a\x2c\x58\xba\xdf\xab\xca\x81\x7f\xe4\x0c\x5c\xce\x26\xfd\ \x8d\xcb\x5b\xf6\x86\x70\xa8\x88\x8b\x50\xa1\x3b\x02\x2c\x8a\xd8\ \xc2\x1b\x04\xa8\x80\xd2\x11\xc2\x1e\x40\x17\xf2\x63\x83\x0a\x4c\ \xc6\x35\x6b\x5d\x90\x99\x09\x25\x9f\xc4\x9e\x1c\x86\x7a\xc0\x54\ \x3e\xdb\xd2\x2d\xdd\xb3\x79\x6c\x44\xda\xa1\xc6\x48\xe3\xf5\x64\ \x0f\x0f\x69\x06\x42\xbd\x40\x22\xc2\x6c\x19\x6c\xd5\xdf\x64\x0c\ \xb0\x38\x05\x88\xcd\x28\x10\xbd\x27\xf4\x9c\x1e\x88\xf8\xfe\x1f\ \xbf\xf1\x06\xa1\x28\x8a\xaf\xf2\xea\x8f\xb6\x88\x01\xd4\x63\x28\ \x6c\x02\x83\x36\xa8\x67\x1d\xec\xf2\x5d\x93\xc0\x8c\xca\x69\xe9\ \x05\x08\x95\xd9\xd3\x4e\x6b\x1b\x4a\xed\x1c\x7e\x86\xca\xa5\xdc\ \xd2\x8d\x2c\x98\x7a\x6c\xc6\x76\x2d\x99\xae\x1c\x43\x6d\x89\x6e\ \x8d\x69\x16\xa0\x98\xcc\x9c\x6d\xc9\xc0\x60\x7b\xc2\xad\xbc\x82\ \xcc\xde\x9c\x54\x87\x80\x98\xf7\x80\x52\xeb\xea\x06\xf4\xf0\xdb\ \x9e\x5a\xe1\x7b\xed\x69\x0d\xf8\x6d\xc9\xe1\x05\xb3\xa6\x96\xf2\ \x39\x29\xd8\x34\xab\x1c\x46\xec\x63\x46\xad\x62\xe4\x90\xd2\x4d\ \xa5\x1d\x82\xad\xa7\x3e\x1b\x09\x1a\xa2\x0e\x45\x06\x5a\x92\x4c\ \x68\xa2\xec\x46\x40\xde\x67\x0e\xde\xc6\x14\x1a\xcc\xa2\x24\xbd\ \x85\x44\x27\x26\xa2\xd1\xdc\xce\x46\xf4\x55\x87\xf8\x95\x63\xd1\ \x6d\x89\x28\x07\x6f\x8c\x80\xdf\x82\xdc\x77\xf8\x94\xeb\x64\x5c\ \xc3\xe2\xc5\xc6\x59\x60\xf1\x1a\x6f\xb5\x52\x6d\x96\xc8\x00\xe5\ \x02\x4e\xc9\x0c\x08\xe2\x8d\xec\x0e\xad\x1f\xba\x79\xa9\x37\x0e\ \xd1\x59\xfe\x0a\x65\x3c\x0e\x1e\xb0\xd8\x01\x67\x5f\x7e\x8c\xc9\ \x2d\xb0\x65\xa5\x25\xcb\xdd\x70\x4f\xea\x86\x89\xf9\xfe\x8a\xc9\ \x87\x88\xc8\x70\xe5\xa8\xfb\xea\xe4\xee\x9a\x90\xf0\xb5\x43\x53\ \x19\x95\x77\x3c\x2b\x95\xe6\xaf\xd8\xc4\x47\x7b\x10\x83\x43\x26\ \xaf\x88\xd2\x4d\xcd\x0d\xf0\xe0\x69\xad\xf4\x49\xaf\x69\xfe\xd6\ \x85\x95\xad\xa0\xb5\x58\x21\x4c\x64\x64\x74\x05\x97\x54\xb0\x65\ \x40\x59\x46\xf4\x91\xce\x99\x9e\xc7\x6c\x70\x7f\xec\x0b\xcc\xa2\ \xef\xa2\x3c\xc5\x08\x93\x9d\xa9\x30\xad\x01\xb6\x41\x3b\x70\x13\ \x9a\xed\xc5\xb3\xfa\x88\xe3\xba\x30\x43\x4e\x8f\x54\x3a\xdb\x43\ \xd2\x8d\x1a\x93\x28\xf3\x82\x67\x24\x74\xac\x6f\xdd\x1b\x1e\x7e\ \x18\xcc\x3e\x70\x32\x46\x84\x9b\x92\x8c\xf5\x66\xa2\x7f\x74\x05\ \x8f\xfd\xd6\xb8\xe5\xcc\x11\xe2\x06\x28\xbd\xec\xbe\x04\x96\x53\ \x74\xc0\xc0\xd2\x54\x28\x88\x41\x42\xd8\x62\x83\x32\xed\x35\xb5\ \x03\xe2\x42\xad\x42\x86\x0a\x1d\x46\xa6\x0b\x5f\x68\x08\xcd\xa1\ \x9c\xc9\xb0\xf2\x2e\x2f\x27\xb1\xdc\x0d\x83\xad\xdf\xb4\x58\x45\ \x50\x18\xd5\xfd\x13\x2a\x5d\x64\xa2\x2d\x31\x10\xbc\x00\xf9\x59\ \xcf\xb3\x05\x5e\xa1\x11\xf2\x10\x1e\xb2\x41\xcd\xa0\x89\xbd\x66\ \xad\x94\x9b\x20\x97\x0b\x6e\x70\x04\xf9\xe2\x48\xfe\x60\x3d\x41\ \x09\xe8\xae\xe0\x16\xa0\x04\x6a\xb1\x83\xb6\x01\xe2\x72\x07\xfe\ \xaa\x21\xde\x19\xe4\x18\x07\x8f\x30\x9a\xb1\xff\x0a\x71\x8b\x55\ \xae\x7d\x74\x6c\x46\x76\x06\x58\xe5\xa1\x42\xe5\x21\x23\x9e\x11\ \xf7\xe9\x61\x17\xf8\x81\xf8\x42\x5e\x16\x0c\x31\x1f\x46\x44\x32\ \xf4\xcc\x20\x9b\xef\xde\x1c\x94\x64\x90\xcb\x4a\x96\x97\x48\x81\ \x23\x87\x71\x0f\x11\x30\x05\x5f\xbd\xea\x1d\xe8\xee\xd8\x24\xa7\ \x16\x03\x89\xf0\x41\x33\x08\x70\x0d\xaf\x51\xe7\xe3\x36\x44\xa8\ \xc8\xd9\x35\x17\xcc\x42\x12\x83\x95\xfc\x6f\x45\x6a\x6c\xcb\xb5\ \x9c\x45\x0a\x48\x67\xac\x1c\x67\xf6\x19\xf7\x75\x67\xe2\x25\xe2\ \x13\x8c\x04\xba\x91\x9f\x43\xc8\x80\x64\x68\xc6\x58\x75\x0c\x05\ \xff\xc7\x41\x21\xda\x64\xe0\x83\xc6\x60\x5b\xb9\x61\x11\x53\x00\ \x01\x1d\x8f\xd2\xa8\xb4\x81\x34\x60\x40\x52\x08\x0b\xc4\xc8\x8a\ \xcc\xcc\x0a\xe8\x6d\x84\x1a\x18\xb4\x01\x32\xb3\xf2\xe1\x85\xc0\ \x34\xb4\x41\x78\x8d\x1c\x4e\x73\x6c\x31\x95\x0c\xb4\xc1\xa4\xe6\ \xaf\x19\x0f\xa3\xb3\xbd\xb1\xe0\x85\x34\xe2\x59\x98\x09\x72\x86\ \xd0\x81\xd5\xf4\x59\x44\xdf\xd8\x99\x25\x75\xfe\x15\x26\x12\x81\ \x1d\xb3\xb4\x43\x64\x81\x99\xc4\xb1\xd3\xfd\x87\xbd\x1d\x94\x9b\ \x1a\x9d\x69\xf6\xb3\x30\x93\xcb\xba\x8a\x89\x1f\x30\xe7\x42\x6f\ \x13\x34\xc3\x03\x1b\x0c\xf5\x16\x29\xc1\x06\x60\xc0\x52\xcb\x41\ \x53\xeb\x64\x54\xeb\x05\x54\x8f\x8d\xd2\x12\x18\x07\x7e\xe0\x17\ \xc7\x56\x45\x17\x92\x30\x66\xb2\x0c\x67\x8f\x45\x0a\x70\xd2\x25\ \xd4\x38\x7f\x95\xca\x81\x95\x85\xa1\x42\x20\x72\x46\x56\x46\xe4\ \x0b\xec\x31\x1e\xbc\x00\x59\xc2\x80\xc6\xde\xc7\x9b\xf6\x58\x9d\ \x8e\xe9\x63\x70\x09\xb9\x91\x57\xbc\x85\x44\x65\xc8\x35\xf0\x25\ \xf4\x35\xb5\x41\xad\x01\xcc\x04\x60\xc0\xed\x14\x34\x65\x17\x8c\ \xef\x5a\x53\x18\xa0\xb0\xae\x61\x20\x7b\x60\xf5\x26\x4b\x67\x27\ \x4f\xcf\x0d\x0a\x70\x38\x67\xc9\xe1\xd5\x59\x85\xb5\xd8\xdc\x54\ \x84\x59\x6f\x49\x5b\x93\xf5\x0a\x52\x86\xac\xf8\x41\x74\xb5\x34\ \xd2\x91\x76\xf7\x49\x9d\x57\xb5\x15\x1e\x5b\xaf\xac\x90\x92\xbe\ \x09\x4a\x6e\x60\xc0\x36\xd9\x51\x9a\xb5\x81\x1f\x44\x01\x5d\x68\ \xc1\x06\xe4\x83\x12\xbc\x83\x14\xd4\x81\x53\x4b\xe0\x40\xa6\xd9\ \x1a\x0e\x0c\xa9\x60\x60\x1b\x64\xb7\x76\xfe\x53\xeb\x76\x33\x9f\ \x64\x7e\x77\xa7\x2a\x54\xcb\x69\x92\x45\x56\x5b\xd2\x79\x86\x9d\ \x55\x9f\x6b\x87\xf4\x57\xee\x10\x3e\xf0\x95\x5c\x77\x01\x8c\x75\ \xa9\x8b\x95\xeb\x0a\xde\xf5\x59\x9e\x9b\x8b\xa9\x42\x16\x00\x01\ \xbf\x88\x84\x40\x83\xd2\x88\x91\x0b\x3c\x18\x6c\x80\x1b\x60\x18\ \xd0\x51\x51\xf9\x97\x1d\xc0\xc3\x40\x26\x37\x06\xa0\x80\x53\x6b\ \x01\xb1\xc2\x6f\x42\x08\x4c\x3b\x10\x83\xc0\xc8\x19\x82\xa9\x82\ \x38\x5d\xf8\x85\x3b\x67\x62\xb4\x07\xf1\x92\x71\xb5\x12\x23\x43\ \x89\xa7\xd6\x82\xb3\x77\x76\x6c\x48\x3b\x9b\x26\x91\xb7\xc6\x98\ \xe8\xe6\xb2\x26\x8b\xcb\x1b\x3e\x40\x6f\xba\x45\x04\xe0\x69\xc9\ \x45\x66\xa4\x79\x57\x52\x8b\xd3\xd2\xb0\x14\x4b\x6e\x3c\xc1\x3b\ \xe4\x83\x50\x11\x6d\x67\x6d\x80\x11\x1c\xe6\x06\x44\x81\x1f\x40\ \x90\x65\xcb\x03\x94\x93\xb0\x01\x6e\x00\xb1\xa6\x56\x51\x2d\x1f\ \x09\x71\x47\x38\x11\x43\xb3\x1a\xd5\x51\xd1\x5d\x54\x4d\xb3\x53\ \x59\xf2\x26\x4f\x67\x96\x8e\x6a\xe9\xae\x1f\x78\x7a\xac\x56\xde\ \xf0\xe6\x82\xb8\x45\x9e\x20\x32\x66\x6c\x67\xfa\x81\xb0\x3c\x41\ \x2c\xb7\x98\xba\xbd\x18\xf9\xe1\x71\xfe\xf6\x6c\x74\xbb\xdd\xe1\ \xb8\xa5\xd8\x8e\x41\xcc\x13\x60\x00\xf0\x1d\xeb\x06\xdc\x03\xa6\ \x8f\xd6\xa3\x3f\x7b\xeb\x28\x5f\x14\x30\x80\x41\x07\x1b\xa6\xb7\ \x03\x50\x25\x27\xb3\x4a\xf5\xc0\x6c\xdc\xb4\xda\x45\x54\x79\xf9\ \x30\x42\x34\x63\x6e\xf8\xc9\x0d\x23\xdd\x74\xe5\xd1\xbd\x3a\x38\ \xeb\xf0\xac\xbf\xb9\x45\x42\x86\x38\x47\x70\x16\xc0\x95\x1f\x0c\ \x3a\x1e\x40\x41\x0e\xaa\xaa\xaa\x96\xab\xb3\x0d\x04\x90\x11\xc4\ \xb8\x11\x14\xc4\xe4\x88\x96\x1d\x79\x1b\x40\x3b\x1c\xb5\xc1\x4f\ \x9d\x02\x4f\x61\x7a\xe2\x3e\xf2\x01\x38\xf5\x91\x3f\x68\x67\x71\ \x13\x50\xd5\x2f\xf2\x6d\xd3\xae\x5d\x33\xaf\x79\x79\x8f\xb0\x56\ \x86\xab\xbb\xd4\x12\xc3\xd6\xb6\xdb\x45\x1a\xb0\x58\xe7\xb0\x1e\ \xae\x34\xf6\xd0\xbb\x39\xa7\xe0\x32\x92\x5f\x17\xe0\x01\x60\xc1\ \x0d\x44\x30\x86\x2a\x4c\x44\x21\x60\x49\x24\xc4\xf4\x60\x81\xd4\ \xba\x3e\xce\x2d\x6c\x08\x60\x7d\xc9\xf7\x0c\x98\x11\x3c\x7a\x3e\ \x60\xc0\x90\x17\xab\x67\x61\xfa\x2b\xe6\x85\xd0\x36\x50\x28\x24\ \x84\xf0\x79\x3b\x37\x71\xbc\x2f\x86\x0a\x05\xa2\xba\x67\x13\x86\ \x0c\x28\x15\xd9\x53\xec\x86\x97\xfe\x93\xe6\xc9\x99\x7d\x64\xc1\ \x06\x6c\xac\xe0\x51\x6f\xbe\x6f\xe7\xb3\x81\xf3\x80\x58\x9f\x76\ \xea\x3b\x12\x3f\x81\x1f\xec\x13\x43\xca\x07\x96\x44\xc4\xd0\x51\ \x0e\xe5\xfc\x18\x3f\xcc\x92\x98\x00\x41\x14\xac\xe8\xf9\x22\x7d\ \xad\x39\xfd\xb3\xe7\x03\xa3\xf7\x94\xe5\x43\x3b\x3f\x5a\x13\x42\ \xf8\xad\x23\x3f\xb2\xa6\x27\xa7\xc7\x53\xf7\x75\x17\xef\xae\x49\ \xeb\xf4\x84\x4d\x1a\x6e\xb7\x75\x12\x43\x96\x72\x28\x0e\x0b\xf0\ \x9f\xc3\x95\x0a\x8a\x78\x69\x83\xf4\xcd\x97\x6b\x32\x60\x84\x46\ \x94\x81\x34\xa8\xe6\x0d\xe9\xb9\xf6\x0c\x51\x4a\x00\x57\x45\x39\ \x0c\x10\x6c\x00\x1b\x10\x75\xfe\xdc\x46\x78\x85\x17\x06\x0c\x00\ \xa3\x47\xff\x92\x1e\xeb\x3e\xf6\x94\x01\x0a\xc6\x83\x9b\x8a\x77\ \x84\x0a\x08\xa0\x7d\xda\xbf\xf0\x43\x9f\x7c\x57\x3f\xa6\x64\x4e\ \x4f\x1d\x6e\x80\x9b\x6b\x2c\x99\xce\xb2\xec\x8b\xb7\x67\x7a\x55\ \x3c\x4b\xc4\x1f\xd2\xf1\x8b\x47\x26\x63\x78\x40\xb7\x42\x06\xb0\ \x98\x97\x11\xb5\xc1\x0c\x0d\x04\x40\xf0\x93\xb6\x01\x8a\x12\x36\ \x07\x37\x44\x61\x93\x0f\xc3\x3b\x3c\x18\xf2\xe5\x8b\xb2\xe1\x1e\ \x88\x89\xa7\xb4\x4c\x38\x15\xfe\x25\xca\xa9\x09\x5a\x00\x68\x01\ \xf9\x8f\x64\x49\x93\x27\x51\xa2\x0c\xb5\x09\x40\x4b\x97\x2f\x61\ \xc2\x14\xd1\x66\x43\x1b\x11\x37\x6f\xc6\xd4\xa9\x13\xa7\x07\x62\ \x22\x3c\xb8\x5c\x03\x60\x28\xd1\x9d\x47\x8f\x0e\x1d\x0a\x43\x99\ \x0c\xa7\x85\x88\xc9\x88\x2a\x23\x4b\x55\xa7\xca\x94\x79\x80\xc1\ \xb4\xa9\xd3\x2c\x5d\xba\xbc\x78\x91\x8c\x2c\xd8\xab\x58\xb3\xbc\ \xf0\x93\x6c\xac\x9d\x27\x72\x2e\x01\x91\xa1\x94\x28\xb1\x82\x7e\ \xa0\x40\x91\xe6\x07\x5f\x5f\x7c\x78\x37\xfc\x6c\xe9\xc1\x43\x9b\ \x42\x38\x6d\x8a\x10\x29\x62\x42\x1b\x36\x2b\x18\xe2\x79\xf7\x4e\ \x61\x94\x7c\x1e\x27\x44\x79\x97\x6f\xc3\xc7\x8c\x1f\x53\x86\x16\ \x5d\x72\x25\xd2\x98\x38\x67\x6e\x50\x1d\x46\x04\x80\xd6\xad\x4d\ \x1f\x45\x4d\xd8\x43\x6b\xba\xb1\x71\xbf\x5c\xb3\xc6\x83\x8c\x0d\ \x52\x81\x7b\xad\x9a\xe5\x6c\x56\xae\x5d\x87\x87\x25\x8b\x2a\x99\ \x55\xac\x54\xc7\x26\xeb\x92\x25\x19\x1e\x22\x72\x9e\xe0\x53\xa6\ \xb4\x10\x90\x32\x78\x94\xac\x15\xfb\x22\x52\x16\x62\x85\x6a\xc7\ \x0c\x0a\x5b\xe7\x62\xc7\x4a\xe4\x01\x81\x88\x0f\x43\x94\x36\x1b\ \x29\x7b\x04\xa0\xd1\x88\xfe\x98\xd1\xff\x55\x62\x29\xb6\xc5\xc2\ \x60\x2d\x8c\x76\x6a\x6a\x87\xb5\x96\x70\xca\x6d\x27\xa0\x66\x22\ \xcc\x36\xa3\x1c\xcc\x8d\x37\xa7\x80\x23\x46\x99\xe1\xac\x92\x4a\ \x19\x62\x98\xf2\x00\xab\xae\xa8\xfa\x4a\x39\xb6\xa6\xc3\xd0\x44\ \xb1\xa6\x7b\x41\x1a\x3c\x2e\xc1\x0e\x8a\xdd\x3c\x90\xa6\x83\x0e\ \xf0\x81\xc2\x29\x62\x6a\x6b\x2d\xa8\xa4\x1c\xd4\xc2\x31\x36\x30\ \x68\x08\x03\x36\x2c\x93\x08\x23\x00\x4e\xb9\x67\x1a\x00\xa1\x24\ \x4d\xa7\x09\x26\x78\x69\x82\x30\xda\x48\x4c\x8b\x99\xb2\xfc\xe9\ \x35\xd7\x72\xaa\x10\xa6\x42\x0c\x33\x0c\x28\x90\xc4\xcc\xcd\x47\ \x62\xd8\x64\xb3\x44\xe2\xca\x93\xe1\xc3\x39\x47\x24\xf1\x2b\x16\ \xc5\xb2\xaa\x2a\xb0\x5e\x00\x2b\xad\xf1\x94\xe8\x40\x0e\x22\xf0\ \x08\x2c\x12\x7c\xec\x80\x82\x47\x0a\x6f\x4b\xf3\x28\x21\xd9\xe8\ \xe0\x0d\x88\x2c\x8b\xe2\x1e\x2a\x35\xca\xa7\x81\x28\xa3\x14\xc3\ \x4a\x2a\x0b\x44\x53\x8b\x02\xaf\x14\x55\x04\xd6\xb6\x3c\x15\xb5\ \x30\x1d\x25\x46\xb5\x9a\x7e\x2a\x2a\x26\x59\x1d\x15\x0a\x28\x19\ \x08\x6b\x8a\x38\x0c\x77\xac\xf3\x39\xe1\x38\xdc\x55\x4e\x13\xc9\ \x1a\x2f\xcf\xb4\xf0\xfe\x79\x8b\x50\x69\xf6\x7a\xc1\x83\x46\x6b\ \xcd\xad\x0d\x79\x9e\xd8\x2c\x8a\xfa\xee\x39\x45\xdb\x7b\xee\x89\ \x82\x53\x28\x05\x04\x00\xcb\x76\xda\x68\x67\x49\x91\xc2\xa8\x72\ \x4b\x97\x66\x52\xec\xa6\x36\x58\x53\x6c\xdd\x5a\x45\x20\x33\x12\ \x58\x45\xa0\x55\xa8\x68\x61\x5a\x03\x28\xc2\x64\x88\x64\x47\x61\ \xe7\xd4\xd0\x4e\x0e\x79\x55\x31\x2d\xb6\x8e\xa5\xaa\xbc\x17\xec\ \xb8\xee\x12\x3c\xf0\x79\x01\x5a\x7e\x71\xd3\x22\x52\x3c\x22\x9a\ \x6c\x1d\x8e\x38\xf2\xe8\x5b\x00\x05\xbc\x09\xcb\x62\x4e\x01\x21\ \xcb\x74\xab\x3c\x2d\x4b\x76\xd1\x64\x97\x3d\x31\x67\x22\xc6\xb0\ \x78\xf5\xc5\x78\x56\xa2\x0a\xd9\x80\xb8\x42\x84\xcd\x10\x06\x83\ \x49\xc4\xb0\x4e\xe1\xf8\xec\xf3\x85\x9f\x65\x58\xba\x0b\x69\xca\ \xb8\xee\x09\x3c\xa4\x09\x2a\x67\x9d\x91\x3a\x05\x83\x69\x1a\x9a\ \xa6\x81\x5b\xa6\x99\xac\x23\x00\x46\xfe\x2f\xdc\x53\xb3\xa4\xe9\ \x55\x78\x63\x76\x49\xed\x99\x61\x9a\xd7\xd1\x9b\x0a\x93\xa1\x8d\ \xda\xae\xc6\x5a\x28\x0f\x0a\x89\x64\xaa\x1d\x3d\xe4\x91\x4e\x5e\ \x7d\x75\x0a\xac\xb0\x58\x4c\xeb\x2a\xa7\xc6\x7b\x51\x59\x3c\xa0\ \xf8\x51\xef\x8c\xfe\xd9\x28\x23\xec\x69\xa6\xb9\x84\x86\x06\xa6\ \x59\xe7\x94\x4d\xca\x16\x2d\x94\x97\x4e\x2d\xb0\xc0\x53\x02\x98\ \xa8\x8d\x96\x5f\xa2\xc9\x26\xa4\xbe\xac\xb5\xb6\x36\xec\x8e\x75\ \xf2\x9d\x7c\x3a\xaf\x0d\x81\x05\x8e\x8a\x4d\xad\x8e\x96\x53\x19\ \x18\xd6\x60\xca\xf0\xe8\x8a\xed\xb0\x10\xaf\x96\x56\x2b\x6a\xa9\ \x95\xd8\xee\x76\xd3\x34\x7e\x87\xf3\x7c\xa6\x79\x82\x9e\x52\xa6\ \xb9\x34\x94\xd0\x43\x1b\x9d\xdd\x2b\xd3\x35\x57\xb5\x53\xd8\x7e\ \x49\xc8\xc4\xa6\x57\xcf\x55\xda\xdb\x88\x36\xef\x9d\x55\x21\x86\ \xb8\xdf\x88\x63\xf3\xc3\xdc\x7d\x1d\x5e\x2b\xa6\xf6\x44\x16\x86\ \x0d\x47\x45\x4b\x4b\x8b\x34\x94\x80\x87\x27\xc4\xe8\x09\x4a\x90\ \x5c\xfb\x74\x62\x04\x0c\x34\x20\x1f\xeb\xb0\xde\x25\x1a\xe0\xb9\ \x09\x7c\x0f\x7c\x28\xd1\x84\x4c\x4c\x77\x8a\x0d\x9c\x82\x65\xe7\ \x5b\x1d\x4d\x56\x20\x0d\x36\xc0\x0d\x82\x40\x69\xc3\xef\x20\xa8\ \x9e\xde\x94\xe7\x37\xbe\x93\x0a\x0c\x44\xa4\x21\xc2\xe0\x70\x2b\ \x5c\xa1\x0a\xe2\x8e\x15\xb4\x3e\xa5\xe5\x4f\xd2\x70\x8b\x1c\xe4\ \xd0\x01\x25\x10\x23\x86\x11\x9c\xcc\x34\xa2\xb0\x8e\x06\x4c\xf1\ \x32\x1b\xec\xfe\x20\x4a\x3c\x25\x33\x2a\x8d\x2a\x5d\x20\x39\x45\ \x3e\x9e\x70\xa3\x0e\x48\x81\x08\x4f\x98\xda\x0a\x9b\x28\xb3\x9b\ \xcc\xaf\x56\x57\xf3\x97\x4f\x30\x44\x3b\xa9\xe8\x0f\x44\x3b\xfc\ \xdf\x56\xd0\x12\x16\x69\x34\x2c\x61\xc1\x6a\x9e\x1f\x80\xf0\x96\ \x41\xe1\x43\x06\x69\x74\x89\x16\xa2\xd0\x81\x06\x6c\x06\x7b\x60\ \x5b\x87\x11\xac\x78\x45\x93\x84\xab\x25\x6d\xd3\x02\xfa\x24\x18\ \x23\x24\x6e\x72\x93\x0d\x88\x1f\xcc\x62\x38\x94\x7c\x4d\x6e\x7e\ \x43\xc9\x9d\x53\xe4\xa8\xa1\x3a\xe2\x90\x37\xc0\x7b\xce\x01\xc5\ \xd3\xa1\xa0\xbd\x69\x61\x7b\x49\x16\x12\x89\x00\x04\x65\xb0\x70\ \x7a\x5a\x7b\xc2\x14\x31\x77\x3d\x4b\x45\x52\x92\xff\x28\x4d\x7b\ \x26\xb0\x81\x01\xbc\x43\x90\x9c\x74\xe6\x13\xd8\xd0\x36\x56\x85\ \x92\x94\x48\xf1\xd7\x54\x88\x43\xbb\xdf\xd1\xe6\x59\x38\x1c\x91\ \x0c\xf4\x98\xbc\x60\x75\x48\x57\x5f\x49\x06\xb3\x5e\x70\x4b\xec\ \x40\x8e\x97\x7a\x9b\x40\x3e\x3a\xf0\xcb\x29\x72\x0e\x73\x15\xe4\ \x60\x31\x8d\xd9\x9e\x83\x60\xa0\x03\xd7\x71\xe6\x3f\x07\x95\x0f\ \x9b\x7c\x04\x35\x86\x34\xa8\xad\x5c\x95\x3f\x1d\x6a\x85\xa1\x3b\ \xfc\x66\xfe\x17\xc8\x22\x0d\xe9\x08\x2b\x0b\x91\xe8\xd3\xe2\x56\ \xb4\x97\x64\xf0\x45\x81\x44\x28\xa3\x1f\x04\x33\x3d\x8d\x3d\x61\ \x73\xc1\x7c\x87\xd7\x80\x79\xcf\x62\x8a\xaf\x92\x8d\xc9\x47\xd4\ \x00\x1a\x53\x24\x3e\x61\x05\xab\x5b\x4c\x83\x0e\x7a\x50\x38\x6a\ \x73\x9b\x76\xe4\x8d\xf1\xc0\x19\x1d\x03\x16\xb0\x4f\xd3\x69\xc7\ \x0f\x21\x4a\x16\xf1\x24\xc3\x2d\x0c\xe4\xc7\x06\x3c\xd0\x36\x9d\ \x19\x01\x0f\x70\x99\x06\x43\x2a\xe8\x35\x1a\xd0\xa3\x01\x9c\xc0\ \x27\x49\x3e\x18\x12\xc7\x00\xa1\x01\xfe\x94\xa9\x4c\x3b\xd0\x86\ \x54\x15\xb4\x9d\x39\xad\x10\x1b\x5d\x03\x47\xaa\xf0\x88\x46\x84\ \xf9\xa9\xae\xc0\x72\x4e\xe9\xf0\xea\x4f\xd2\xe9\x82\xe1\xf2\x9a\ \x0c\x54\xac\x05\x2c\x46\x34\x23\x76\x70\x04\x05\xc5\xe8\x4c\x0b\ \x1b\x78\xc7\x75\x1a\x60\xa9\x28\x46\x31\x73\x9b\xeb\xc5\x57\xff\ \x21\x06\x48\x29\xf0\xac\x9d\x9d\x29\x1b\x42\xe2\x2e\xb7\xde\xee\ \x62\xfd\x12\xc1\x54\xac\xd6\x50\xe0\xfd\x10\x79\x43\x54\x51\x52\ \xc1\x02\x02\x73\x4a\x47\xa3\x79\x45\x85\x61\x63\x44\x84\x32\xe0\ \x43\xad\xfc\x4a\xa6\xa0\xe4\x40\x8f\xcb\x6c\x64\x1d\x1f\x93\x22\ \x57\xfe\x2f\xfb\x55\x31\xc8\x43\x05\x9a\xf4\x6c\x67\x89\x80\x81\ \xd5\xe1\x94\x41\xae\x19\xad\xfc\x70\x03\x14\x36\xf1\x46\x95\x23\ \x22\x4e\xd2\x24\x3a\x96\x21\x9a\xa8\x0b\x67\xf0\x53\x5e\xf3\xea\ \x07\xe6\x94\xa5\x69\x76\x28\xc3\x02\x3d\x5a\x06\x69\x30\xd1\x51\ \x6d\x50\x42\x33\x9f\x10\x05\x2a\x19\x21\x8a\xdd\xf2\xda\x0e\x54\ \x7a\xc5\x50\xd4\x80\x1e\xcf\x35\xf0\xa0\xe4\x91\x98\x69\xca\xcc\ \xba\xd7\x6d\xdf\xb3\xf2\xe5\x13\xbc\x8e\x25\x2c\x40\x34\xd6\x85\ \x2b\x9c\xd4\xb2\x28\x55\x1a\xcc\xe9\xc2\x06\x20\xca\x17\x3b\xdc\ \xe2\x3a\x84\x52\xc2\x06\xda\x1a\x13\xc7\x3c\x16\x83\x0b\x8c\xac\ \x46\x9a\x64\xa9\x7b\x48\x31\xb9\xf8\x0c\x45\x1d\x0e\x7c\x60\x4f\ \x02\x60\x13\xec\x2b\x28\x98\x1c\xdc\xc6\xd8\x28\xa5\x37\x41\x15\ \x0b\x88\x41\xac\x34\x01\x32\xcb\x0f\x7e\xd8\xe3\x06\xc4\x2b\xc0\ \x73\xda\x52\xbd\x12\x45\xb2\xcd\xfc\xf0\x04\x7f\x3e\xe1\x0d\x27\ \xb6\x89\x48\x62\x22\x12\xc7\xc0\xf4\x09\x02\x8d\xc2\xd7\x1e\xb9\ \x2d\x6e\x45\x01\x73\x35\x5e\x29\x70\x73\xec\x59\x68\x6e\xa9\x0d\ \x9b\x40\x4c\x8f\x7e\x1c\xe4\xf6\x11\x59\x7f\x25\x32\x96\x5e\x98\ \xfe\xb5\x17\xbe\xfc\x85\x2d\x50\xf6\xd9\x06\x04\xed\x97\xbf\x10\ \xfa\x37\x2f\xdc\x40\x96\xb5\x5c\x46\x2e\x03\x81\x1f\x06\x51\x4d\ \xda\x36\xc0\x06\xc7\x21\xf1\x12\xf9\x08\xc3\x25\x35\xf5\x8e\x8f\ \x71\x8b\x5b\xeb\x68\x33\x66\x39\x91\x87\x38\x3f\x97\x08\x09\x16\ \x6b\x96\x7a\x7c\xb7\x55\xa5\x58\xcf\xfc\xa2\xcb\x1b\x7d\x23\x16\ \x41\x37\x59\xa2\x82\xde\x8b\x44\x93\x71\x68\x28\xf8\x41\x09\xe1\ \x51\x42\x5f\x9a\xcc\xeb\x57\x6d\x00\x1f\x40\xb0\x03\x10\xf0\x50\ \x86\x78\x86\x51\x52\x6f\xe8\x00\x10\xde\x00\xed\x78\x0e\x6a\x6a\ \x1b\xa8\x64\x14\x6e\xc1\xb9\x8f\x49\xd6\xd4\xd3\x70\xb3\x24\x7b\ \xa1\x82\x55\x3f\x57\x05\xa9\x00\x89\x16\x7a\x8c\x98\x17\x9e\x96\ \xde\xb4\xae\xb5\xce\x2e\x94\x5e\x27\xb3\x25\x7f\xbe\x39\x36\x60\ \x08\xa2\x97\x62\x33\xeb\x2f\x4d\xa6\x8f\x1d\xfe\x82\x40\x25\xa8\ \x10\xd1\xf2\xc0\xc3\xb4\x89\x70\x09\x49\x9b\x91\xe2\x65\x28\x03\ \x67\x30\x92\x91\x7b\x9c\x54\xd4\xc6\xa5\xac\xb9\x31\xdb\x0b\xb3\ \xae\x5b\xa6\x84\x8a\xdf\xfa\xde\x45\x26\x9b\x61\x29\xcf\xf7\x7e\ \x50\x7a\x1c\x65\x4a\x9f\x34\xda\x4b\x5b\xd2\x82\x0c\x30\x80\xfe\ \x07\x81\x84\x47\x1a\x02\xc7\xc7\x89\x0d\x7e\x70\x6d\xe3\x01\xda\ \xe0\x79\x15\x06\xa2\x26\x71\x8a\xdf\xe8\x3b\x10\xc9\x74\x17\xa9\ \xa4\x2d\x90\x81\x6c\xdc\x51\xd8\x42\x80\xaf\xa8\x06\x92\x3f\x57\ \x0a\xa9\x68\x59\xbb\xb8\x04\xbf\x2e\x51\xd7\xe5\x32\x89\x44\x78\ \x64\x60\xef\x8c\xc9\x64\x03\x6f\x78\x82\x1d\x94\x80\x01\x20\xc8\ \x87\x0d\xcd\x1e\xb8\x12\xde\xf1\x1d\x68\x9b\xf1\x46\x44\xe8\x00\ \x1e\xd8\x40\x13\x7e\x2a\xbd\x0c\x18\xc0\x47\x3e\x0e\xcf\x86\x11\ \xb2\x2c\x23\x4d\x8a\xb1\xa5\xa4\xce\x11\x6e\x1d\x00\xb3\xa1\xb8\ \xc3\xd6\x9f\x3b\xe7\xd0\xda\xf9\xb4\xcb\xae\xc9\x0b\xbd\x54\x76\ \x98\x10\xa3\xaa\x53\x83\x82\x79\x68\x0d\x57\xd2\x11\x63\x05\xef\ \xa5\x18\xb4\xbf\xf3\x9d\x87\x10\x9b\x9f\x7e\x7f\xb8\x47\x0f\x5b\ \x46\x0c\xa8\x06\x03\x82\x7c\xc2\x91\x32\x3d\x11\xc5\xa3\xef\x3e\ \x6d\x88\x02\x3c\xf2\x41\x99\xe2\x46\xc1\x08\x8f\xcf\x96\x7f\xbe\ \x7a\x63\xcc\x7b\x96\x08\x6f\x38\x00\x83\x16\x9b\x1a\x28\x5c\x3a\ \x6d\x0f\x14\x3d\x00\x22\x21\xc8\x32\x7e\x07\x1f\xd2\xe8\xc2\xef\ \x94\x52\x5a\xd9\x10\x83\x0d\x81\x92\x14\x06\xe2\xde\xcf\xfe\x75\ \x4a\x23\x32\x14\xb7\xff\x7b\x23\xfe\x04\x79\xb0\xe1\x1e\x72\xd7\ \x72\x64\x57\x47\x35\x38\x22\x21\x08\x50\x33\x38\x8e\xe3\x3a\xc7\ \xe3\x3a\x02\xfa\xf0\x89\x13\x70\x6c\xfa\xa0\x0b\x0f\x4e\xce\xba\ \x80\x62\xd9\x7c\x03\x7e\x60\x43\xed\x0e\x6a\x03\xa2\xc6\x8c\x24\ \x8e\xdb\xca\xc0\x0e\xfc\x60\x03\x3e\x84\xae\xd4\x64\x26\x0a\x82\ \x0d\xf8\xe1\xe1\x80\xa0\xfd\x80\x2b\x97\xda\x4f\x81\xe2\x29\xff\ \x1e\x22\xe7\x22\xed\x1d\xea\x03\x49\xa6\xa1\x03\x8e\x24\xea\x8c\ \x60\x03\x24\x42\x22\x16\x82\x21\x16\xa9\x73\xa6\xa1\x14\x1a\xe0\ \x12\x30\x08\x73\x3e\xa6\x1b\x42\x4e\x0a\x20\x90\xfa\xde\xa0\x10\ \x64\xc2\x66\x96\xad\x4b\x78\x64\x94\x44\x4f\x06\xec\x00\x0f\xec\ \xa0\x0b\x9b\x69\xfc\xc8\xaf\xfc\xd2\x2e\x36\x66\x62\xa3\x0e\xa2\ \xfd\xe4\xe1\xda\x56\x20\x52\xae\x43\x0a\xf0\x60\x05\x7a\xaf\x03\ \xde\x8b\xdb\x20\x22\xe7\x92\xd0\xa3\x78\xf0\x20\xf2\x81\x63\x8c\ \xe0\xdd\x8c\x40\x08\x39\x22\x08\x25\x02\x64\xb4\x8a\x1e\x10\x91\ \xab\x32\x08\xeb\x3a\x68\x07\x46\x2e\x0a\x63\x2a\xba\x5e\x47\x66\ \xd4\x86\xe6\xe6\x4d\x03\x0d\x8a\x18\xf0\x81\x62\xf6\xfe\xa2\xa9\ \x2e\xe1\x09\x6e\x61\x06\xc7\x0f\x08\x92\x61\x97\x78\x69\x4b\xc2\ \xe0\xd1\x8a\x24\xd3\x1e\x43\x1e\xf2\xe1\x20\x80\x60\x8c\x9e\x40\ \x0a\x6e\x84\xda\x94\xe5\xe2\xf8\xa9\x01\x38\x0b\x89\x3a\x60\x00\ \x88\xe4\xaa\x3e\x69\x02\x02\x91\x0d\x4e\x61\x08\x7d\xb1\xf9\x4e\ \xc1\x08\x66\x0c\x73\xb6\x2a\x11\xe9\xc1\x1e\x2a\xaf\x06\x20\x91\ \xd5\x12\x4c\x9a\x52\x03\x0b\x41\xef\x59\x44\x8f\xf4\xcc\xe8\x2f\ \xdc\x22\xe2\x42\x10\x46\x38\x4d\xcb\x9e\x00\x08\x0c\x88\xbe\xc0\ \xe4\x5d\x36\x00\x03\xec\x00\x22\x0e\xc2\x17\x03\x8f\x0d\xe4\x61\ \x07\xc9\xa8\x8c\x1a\xa0\x0c\x92\x10\x3b\x1a\x80\x9f\xcc\x68\x8a\ \xfc\x29\xba\x18\xc2\x15\x97\x44\x18\x8f\x71\x00\xb6\x86\x18\xb5\ \xc5\x23\x36\xe2\x10\x83\x0b\x11\xef\xa0\xf2\x84\x60\x1a\x59\x6d\ \xf7\x16\x44\x8d\x04\x03\x28\x70\xc6\xe5\xb4\x00\x0a\x94\xe5\x16\ \xa2\x4d\x6a\x76\xab\xa9\x88\xe0\x16\x16\x68\x50\x42\x10\x1f\x92\ \x21\x03\x6d\x26\x4b\x78\x0f\x03\xe4\xc1\x15\x0f\xa2\x0d\x0e\xa0\ \x15\xb7\x4d\x0e\x68\xc0\x72\xb4\x4c\x1f\xe3\x89\x1e\x88\x60\x91\ \x3a\xa0\xc0\x88\xe0\xaa\x5c\x71\x00\x90\xd1\x08\xfe\xd8\x60\x00\ \x2c\x43\x1e\x1a\x40\x1e\x8a\x52\x21\x8d\x60\x1a\xb6\xca\x99\x1e\ \x32\xfa\xa4\x51\x22\xa9\xaf\x1c\x5f\x87\x3d\x58\x05\x42\x30\xb1\ \x89\x44\x00\x03\xcc\xaa\x24\x67\x0a\xe1\x14\xe8\x09\xca\x20\x90\ \x22\x8e\x13\x65\xed\x54\x36\x00\x1e\x54\xc3\x7c\xae\xe5\x25\x0f\ \xc2\x28\x07\x00\x7b\xde\xa0\x01\x48\xea\x97\xbc\x46\x73\x38\x27\ \x09\xe9\x01\x83\xb6\xa6\x03\x68\xe0\x97\x56\x60\x00\xe0\x71\x00\ \x0a\xd3\x17\xe7\x11\x22\x88\x32\x19\x8d\x00\x92\x9a\x24\x0f\x10\ \x31\xb8\x36\x69\x2a\x6d\x2c\x22\xad\xf2\xb9\x2e\x01\x03\xe2\x25\ \x27\x70\x42\x94\x46\x49\xf5\x0c\x49\x04\xaa\x6a\xa6\x48\x6c\x93\ \x26\xe6\x88\xb0\xc3\x0e\x7a\xad\x26\xb2\xcf\x03\x52\x91\x00\x4f\ \xc1\x5c\xae\x05\xab\xda\xb0\x2e\x5d\xf2\xaa\xbc\x46\x2f\xb1\x47\ \x17\x1b\x40\x30\x6d\xf2\x09\x30\xa7\x9f\xa4\x60\x1f\x7d\xf1\x1e\ \x02\x51\x16\xf2\xc1\x30\xf3\x01\x32\x7c\xd1\x30\x49\x00\x19\x4f\ \x61\x00\x24\x33\x11\x71\x69\x07\x2a\xef\x01\x33\x93\xfa\xe0\x61\ \x12\x67\x4d\x94\x5c\x43\x34\x9b\x28\x0c\x9a\xe9\x16\x54\x73\x90\ \x22\x06\x97\xf0\x81\x18\xb4\x00\xe6\xb0\x8f\xfe\x5c\x36\x00\x04\ \x52\x46\x84\x90\xe4\x28\xef\x50\x21\xea\xd2\x30\x8f\xd2\x6b\x8e\ \x73\x1e\xf1\x92\x27\x69\x80\x06\xa4\x40\x0a\x68\xe0\x3a\x06\x93\ \x73\x0c\x93\x39\x5f\x91\x0d\x1e\x33\x15\xa6\x41\x05\x28\xa8\xf9\ \x36\xe1\x14\x48\x00\x2a\x37\x27\x2a\xeb\xa0\xf2\x76\x60\x3b\x0f\ \x0c\x9a\x04\xa3\x30\xd8\xc4\x33\x8b\x42\x0b\x83\x6c\x03\xfe\x91\ \x62\xc2\xd2\xc9\xac\x43\x46\xa4\x8a\x5d\x5c\x87\x26\x7e\xb0\x23\ \xee\x83\x0f\x15\x82\x41\xf9\x2f\x21\xf5\x53\x19\x77\x70\x30\x0b\ \x34\xe2\x0a\x94\x93\x78\x52\x91\x56\x80\x5b\x10\xb3\x31\x8d\x40\ \x1e\x68\xe0\x12\xf2\xc0\x73\x12\x72\x3a\x99\x70\x00\xbc\x66\x11\ \x34\xf4\x11\x39\x14\xad\x36\x80\x35\xd2\xc6\x4b\xa6\x29\x5f\xba\ \x52\x6f\x1a\x8b\x93\x44\xb0\x99\xca\xe0\x6e\x88\xe1\xd8\x02\x43\ \x26\x6e\x82\xce\xd4\x06\x75\x7e\xb0\x49\xd1\x87\x41\x37\xa0\x4d\ \x31\xc3\x31\x03\xb1\x01\x0e\x54\x0a\x00\x94\xa4\xfe\x89\x27\x29\ \x08\x31\xa7\x41\x1e\x48\x80\x0d\x2a\x94\x06\xe4\x80\x82\xd8\xc1\ \x08\xae\x8f\x49\x48\x80\xf9\x2e\xc9\x08\x46\x60\x4a\xab\xd4\xc0\ \xca\xc0\xcb\x88\x21\x15\xe7\x8d\x36\xb4\xfe\x30\x76\x72\x4a\x0b\ \x94\x60\x93\x88\x00\x1f\xb2\x00\xd2\xe4\x0b\x36\x44\x42\xaa\x84\ \x64\xfb\x4c\x26\xd3\xee\xe3\x7c\x12\x12\x53\x9a\xa4\xf9\xb2\x45\ \x21\x93\x31\x19\x07\xe0\x37\xa7\x28\xd2\xe8\x09\xce\x38\x89\x06\ \xf2\x20\x98\x96\x32\x22\xfc\x93\x82\xa2\x13\x92\x60\x0c\x92\x2a\ \x89\x01\x57\x6a\x43\x23\x95\xd5\x7e\xef\x4a\xad\x50\x4b\xb5\xb4\ \xd6\xa4\xa1\xc4\xca\xc0\xdb\x5c\x23\x4b\x5a\x94\xed\xe4\xc1\x20\ \x4e\x28\x6d\x7e\x50\x3a\x5d\xb5\x5b\x24\x2f\x21\x1f\xb3\xf9\x8c\ \x72\x38\xf3\xc0\x1e\x0b\x53\x53\xf2\x80\xa4\xcc\x8a\x08\x02\xb4\ \x01\xea\x60\x1a\x64\xc1\x30\x53\x21\x1f\x64\x01\x73\x06\x20\x3a\ \x0f\xc0\x08\x0e\x55\x3f\x00\x00\x59\x25\x29\x14\x1c\x71\x59\x0d\ \xec\x12\x26\xb5\x26\x7a\xc4\x27\x2e\x91\x5d\x1a\xec\xa0\x26\x00\ \x0a\x30\xc0\x0f\x26\x51\x4d\x36\xa0\xf5\xce\xa8\x26\xb4\x85\x26\ \xee\x61\x84\x90\xb1\x58\xc5\x55\xf2\xa2\x28\xcd\x68\x15\xa5\x36\ \x27\x42\xe9\x32\x1f\x54\xcd\x99\xe0\xf5\x57\x49\xe0\x1e\x06\x40\ \x29\x1b\x40\x16\xd6\x81\x28\x0d\xb3\xb8\xf6\xb5\xf9\x04\x56\xc0\ \x4a\xc0\x60\x0f\x2c\xe2\x80\x00\xc5\xfe\x6e\xa2\x52\xf1\x2c\x4c\ \x3c\xf3\xfb\x76\x82\x18\x22\x41\x1e\xf0\xef\x8c\x56\x27\x0c\x36\ \xd6\x4d\x61\x2c\xc6\x92\x2f\x22\xb0\xa7\x82\x1e\xf3\x1e\xb0\x07\ \xa5\xa8\x88\x04\xb4\x45\x0c\x9c\x84\x50\x9d\x89\x27\x7b\x95\x41\ \x07\x40\x16\x1a\x20\x0f\x38\x87\x04\xa0\x34\x0f\x7a\x35\x41\xb7\ \x00\xb3\x8c\x49\xdd\x7c\xb6\x43\x77\x6f\x68\xb3\x6f\xd6\x16\xcc\ \xe5\xf4\x85\xf5\x14\x88\x8c\x66\x71\x0f\x89\x51\xad\x1a\xcf\x4d\ \xb7\x65\x10\x4f\xea\xaa\x2a\xa8\xb8\xb6\xd6\x6b\x30\xe7\xaa\x1a\ \x53\x5b\xd8\xc1\x4e\x37\xa9\xc0\x82\xab\x27\x89\xb2\x42\xed\xb4\ \xa4\xd2\x96\x1e\x36\xe7\x66\x1f\x55\x6e\x2d\xaf\x06\x84\x80\x74\ \xeb\xb6\xb3\xb2\x03\x5e\x70\x4a\x6f\xf7\xf6\xfb\x44\x20\x50\x3c\ \x0a\xb1\x1e\x22\x9e\xf6\xb0\x4a\xa6\x36\x21\xb9\x25\x00\xc4\xd5\ \x82\x3a\x07\x64\xac\xb6\x9e\xae\xaa\x66\x07\x20\x15\x24\x74\x02\ \x48\xa0\xac\x2a\xb7\xc0\x3c\x57\x16\x9a\xef\x6c\x79\x35\x0f\x02\ \x54\x79\x33\xa8\xb8\xe2\x56\x6e\x4f\x82\x60\x77\x20\x7b\x77\x00\ \x0a\x4f\x97\x93\x52\xb7\x40\xd8\x07\xfb\x5a\xee\xfb\xb4\x80\x18\ \x30\xa1\xa3\x70\x0f\x08\xe4\x01\xfe\x2c\x67\xaa\x8a\xa2\xee\x14\ \x8a\xe1\x1e\x74\x77\xea\x38\xc2\xd4\xc6\x6d\xcd\xd6\x21\x22\x12\ \x70\x1d\x94\xb3\x66\x9b\xef\x92\x0c\x40\x6c\x11\x91\x40\x89\x80\ \x1e\xa6\x81\x04\xfa\xb5\x2e\xa7\x28\x2a\x11\x71\x8a\x68\x76\x00\ \xac\xf7\x3f\x42\xa1\x17\x7a\x61\x82\x7b\x41\x3b\x0d\xb6\x03\xdc\ \xb2\x0d\x40\x20\xa4\xc4\x97\x85\xba\xb4\x7d\x66\x82\x1f\x02\x77\ \x06\x55\x00\x03\xe4\xf0\x1f\x69\xc0\x0f\x71\x57\xb2\x38\x02\x1e\ \xa8\x4e\xd4\x38\x42\x19\x47\x16\x67\x07\xc0\x7e\x6b\x96\x1d\x3e\ \xa7\x49\x2c\xd4\x26\xd5\x36\x6d\x23\xf4\x14\x0e\x00\x66\x0f\x31\ \x11\x81\x09\x82\x23\x98\x53\x42\x61\x89\x97\xf8\xf2\x22\xb5\x59\ \xcb\xc5\x68\xe9\x26\x84\x47\xb3\x10\xe4\x01\xf7\xf0\xc0\xda\x54\ \xa0\x03\x5e\xf2\x8a\x9d\x89\x06\xde\x21\x56\xd7\xac\x52\xe8\x77\ \xf9\xa8\x4e\x78\x49\x2d\x41\xf7\x15\x39\x8d\x80\x6d\x0d\x60\x1a\ \xa0\x77\x73\x0c\xa0\x6d\xeb\x95\x5c\xeb\x12\x8e\x11\x31\x40\x31\ \x87\x11\x93\xb8\x6c\x42\x81\x08\x06\x74\x40\x21\xf1\x16\x28\xb2\ \x40\x3c\x73\x7c\x6b\x8d\x61\xcf\x97\xef\x5e\xf2\x0d\x76\x90\x8b\ \x95\x92\x8c\xbc\x17\x8a\x68\xfe\x78\xea\xc6\x78\xb2\xea\x17\x73\ \x24\x8f\x8d\x1f\x93\x04\x8a\xab\x66\x4d\x8d\x66\xf3\x15\x7a\x1b\ \x60\x00\xd8\x01\x4a\x3b\x27\x3a\x13\xb2\x5f\x4d\x4d\xdc\x0c\xb3\ \x8f\x93\xb8\x0e\x64\x79\x96\xb7\x2e\x3b\x40\xc0\x74\xbe\xf3\x35\ \xc4\x53\x84\x65\x60\x05\x94\xc0\x97\xbb\xd8\x25\xe7\xd1\xda\x8a\ \x53\x1e\xa0\xf4\x11\x2f\x81\x32\xc6\x38\x22\x64\x0c\x93\x3f\x6e\ \x7f\x89\xb2\x5c\x97\x91\x6b\xc5\xed\x8d\xd5\xf6\x80\x8d\x80\x7f\ \xa7\xa1\x31\x37\xe1\x7d\x07\x00\x39\xf9\x03\x96\xc5\x99\x24\x84\ \x40\x0d\xd4\x60\x11\xd4\x80\x7b\x0d\xac\x59\x0d\xf9\x68\xd7\x68\ \x4b\x76\x59\x6f\x66\xa2\x10\x56\x20\x16\xe5\xc3\x20\x94\x20\x1f\ \x1a\xf9\x2e\x69\xd1\x98\xdf\x40\x6c\x2b\x57\x38\xf3\x61\x99\x0b\ \x11\x93\x8b\xeb\xa4\x3e\x79\xf9\x60\x16\x39\x67\x2c\x17\x78\x95\ \x73\x68\xb6\xb8\x16\x61\x8a\xd6\x81\x6d\xeb\xb2\x5e\x9b\xcf\x55\ \x5b\xf5\x92\xc6\xb9\xa3\x4b\xa2\x17\x48\x97\x74\x51\x40\xce\xde\ \x61\x04\x15\x24\x4c\xd6\x60\xad\x28\xd0\xa0\x6e\x62\x03\x30\x01\ \xfe\xf0\x00\x0f\xe4\xa1\x0d\x95\x60\x00\xf2\x59\x29\x3b\x40\x05\ \x06\xf4\x4f\x91\xf7\x9f\xfe\x82\xf2\x15\xbb\x25\x7f\xc7\x6d\xa8\ \x13\xda\xb8\x96\xaf\x66\x89\xd4\x42\xf5\x75\x1d\x0c\xa0\xb8\x1a\ \x20\x17\xb6\x79\x19\x2b\x28\x72\x31\x02\xc6\x3e\x82\x6c\x3c\x3a\ \xab\x49\x43\x7b\xb3\xb7\x2a\x9d\x49\x09\xf1\x60\x04\x2b\xb2\x25\ \x44\x89\x2e\xa8\x38\x63\xda\x00\x0a\xda\xcf\x97\x85\x19\xfe\x82\ \x39\x3e\xee\x52\x91\xc6\x68\x40\x7f\x14\xa0\x0c\x78\x39\xef\xe1\ \x28\x2b\x88\x7e\xcf\xd8\xa8\x13\x1a\x39\xd9\x8c\x09\xf9\xf7\x93\ \x1f\x77\x5f\x6f\x58\x5f\xd9\xd8\x29\xb5\x25\x60\xb5\xba\xb1\x55\ \xa2\x82\x29\x38\x14\x38\xa9\x8c\xde\xe1\x0c\x42\xf4\x4b\x40\x53\ \x42\x6e\x27\x55\x36\x80\x84\x4d\x4c\xd3\x6c\x1a\x32\xe0\x43\x52\ \x14\xa9\x01\xe2\xfa\x37\xa5\x20\x27\x4b\xee\x97\x06\x1a\x66\x6f\ \x78\xea\xaa\x8e\xb0\x05\x9b\x92\x69\x35\x5f\x69\xb6\x73\xf2\x35\ \x17\xf0\x1a\x66\x3f\x39\x9a\xe9\xf4\x7f\xf9\xd8\xb1\x85\x9b\x89\ \x97\xb8\x0e\x46\xf2\x21\x26\xea\x22\xa7\x98\x44\xf9\x65\x4b\x36\ \x20\xfe\xfe\x11\xf8\xe2\x6e\x5b\x57\x20\x3e\x1a\x00\xdb\xa6\x08\ \x42\xef\x32\x5d\xa9\x74\x4f\xa5\x60\x1a\xb2\xd6\x85\x15\x3a\xa8\ \x0b\xdb\x32\x3a\x07\xfe\x33\xb2\x59\xb0\xf3\x55\xdc\x38\x39\x41\ \xa5\x33\x19\x61\xb6\xf9\x82\x5b\xb8\xe9\x3b\x34\x76\xa0\xa4\x51\ \xac\xba\xb0\x26\x35\xe2\x4e\xb5\xbd\xd7\x20\xe4\xd1\xd2\x8e\xd2\ \xba\x89\x79\x29\xa7\xe1\x9f\x1f\x31\x8f\xc7\xf6\xbb\x03\xd5\x08\ \xbe\xb9\x7e\x3b\x22\x19\x03\x7b\xdc\x98\xb0\x28\x1d\x5c\x78\x5b\ \x99\x73\x90\x93\x56\x91\xf2\xbd\xbb\x05\x29\xef\x61\xbe\xeb\x7b\ \xc4\xc3\x47\x04\x58\x82\x25\xce\x5a\x04\xd6\xd1\x8c\xba\x7b\x93\ \x3a\x20\xf0\x54\x15\xde\xe4\xf1\x0d\x22\xf9\x97\xba\xb8\x01\x08\ \x74\x6c\x2d\x77\xb2\x69\x60\x9b\xb3\x96\xb7\x3b\x82\x4a\x82\xda\ \xa8\x7b\x97\x93\xdb\xd8\xb0\xcf\x96\x09\x19\xfa\x86\xbf\x59\x3a\ \x2f\x59\xc4\x49\x3c\xca\xc3\x67\x13\xa8\x9c\xca\x33\x66\x26\xfc\ \x40\xfe\xa8\xaf\x03\x30\x61\x85\xc4\x8c\x0d\xc8\x4a\x91\x08\xf4\ \xbb\xbb\xf8\x41\x1f\xb1\xc5\xf3\x20\x1f\x3a\x99\xc9\x37\x3c\xf2\ \x12\x7a\x71\xfd\xd7\x29\xd9\x18\x95\xb7\xd9\x66\xcd\x98\x8d\x49\ \xed\x1e\x48\x00\xca\xa5\xbc\xcf\x45\x43\x13\xaa\xbc\xca\xe5\x25\ \x24\x52\x11\x1f\xea\xf0\x67\xa7\x81\x0d\x5a\x66\x13\xe0\x69\x8b\ \x75\x1a\x90\x4d\xfe\x7b\x66\x95\x72\xe4\x76\x3c\x40\x27\x7b\x66\ \x83\xb7\xb8\x86\x55\x9a\xf3\x37\xd3\xf3\x17\xf2\xb4\x45\x19\xf1\ \x1c\x7b\xfc\x97\xb7\x8b\x2b\x64\x19\x9a\xcf\xfd\x7c\xd5\xff\x43\ \x13\x5c\x5d\x0c\x34\x81\x13\x9a\x6a\xdd\x60\x30\x23\xe4\x71\xae\ \x05\x93\x8c\x14\x69\x5e\x27\x3d\xa6\x04\x74\xc7\x07\x25\x40\x69\ \x20\x5f\x13\x94\xd4\xb2\x96\x09\xe1\xdc\x52\xcc\x75\xc6\x8c\xb4\ \x2e\xfd\x57\x19\xd9\x1c\x29\x65\x2c\xc4\x59\xbd\xda\x6d\x2c\xb2\ \x7b\x41\x59\x73\xac\xd5\xd8\x60\x26\xab\x7b\xae\xeb\x51\x0a\x20\ \xb4\x03\xea\x40\x92\x7d\x1d\xcd\x9f\xda\xc7\x7f\x7c\xc6\xe0\x3c\ \x7f\x97\x3c\x0a\xee\xf8\x91\x1e\xd3\xbd\x43\x3d\xcf\x65\x4c\x19\ \x55\xdd\xda\xf5\x1d\x40\x88\x9b\x89\x59\xed\xc5\x5b\x11\xb5\x37\ \xa9\x38\x11\x1c\x5e\x05\xd9\xae\x5b\x5c\xd8\x1b\x20\x31\xbf\xd9\ \xd9\xa9\x4e\xd9\xa3\xc8\x30\x51\x0a\xbc\x93\x91\x5e\x89\x75\x56\ \x1d\x93\x5c\x77\x76\xdf\x39\x5e\x6e\x51\x20\x90\xcd\x7d\xe0\xf7\ \xf1\x2e\xff\xd1\xef\x7a\x9a\x08\x50\x40\x1e\xd2\x95\xe4\x4e\x56\ \x6d\xaf\xd9\x6a\xf1\x1a\x56\xbb\x25\x1f\xf2\x18\xbc\xd3\x7b\x00\ \x3e\x42\x23\xfe\x0a\x77\x6a\xf3\xbd\xe3\x7d\x1e\x7c\x76\x60\x96\ \x65\x59\x05\x7a\x92\xe4\x07\x3e\x0f\x54\x80\xe8\x07\x65\xe1\x65\ \x01\xa0\xe3\xac\xc4\x36\x89\x06\x20\x54\x6d\xf1\x3a\xd4\x95\x31\ \x1f\x08\x15\x5e\x85\xd7\xc7\xb5\xa5\x9b\x15\xf2\x7d\x7b\xfe\xe7\ \xc5\xbe\x83\x7a\xa1\x04\x76\xc0\x00\x76\x40\x0d\x4a\xfe\x37\xc5\ \xb6\x27\x29\x97\x32\x21\x90\x4f\xfb\xb4\xcd\xf9\x0b\x2a\x83\xfd\ \x49\x1f\xd3\x70\x13\x72\xe3\xc7\xbe\xef\xfb\x38\x14\x4a\xb7\x74\ \x77\x20\xe9\x63\x77\x50\xa0\xb0\x80\x0b\xf8\xac\x12\xdf\xc0\x04\ \x74\x29\xd7\x21\x5b\x1e\x93\xcd\xb4\xc7\x26\xa7\x77\xda\xb9\x25\ \xef\xb9\xc5\xab\xfc\x7e\xf3\x1b\x9b\x82\xb5\x17\x05\x3c\x8a\x27\ \xeb\xb1\xc5\x71\xe9\xe9\x37\x47\xcd\x67\xf5\x29\xa5\xb7\x77\x6b\ \xf8\xf1\xc3\x5b\xf3\x39\x3f\xf6\x1b\x7b\x82\x69\x1f\xa4\x09\x15\ \xd8\x59\x4d\xea\xeb\xfa\x8b\xaf\x8a\x5b\xb6\x05\x2a\xff\x32\x83\ \xc8\x4d\x93\xf1\x1c\xf6\x65\xff\xf8\x1d\xbb\xdf\xb5\xbd\xf4\x63\ \x4a\x0a\xea\x15\x05\x9c\x9e\x93\x2e\x21\x78\xc5\xd8\x7a\x4a\x4a\ \xb2\x1e\xd7\xf5\x33\x1f\xf9\xb9\x7f\xd5\x93\x1e\xe4\xff\xe9\xd7\ \x65\x4a\xbe\xa0\x99\x6f\x5b\x5a\x19\x8a\x38\x82\x09\xcb\xff\x1e\ \x28\xaf\xfb\xdd\xbf\xda\xef\x40\xe8\x0d\xf4\xac\xb8\x8a\x32\xd6\ \xff\xe3\x88\xfa\xf1\x1d\x93\xef\xdf\xbf\xff\xa3\x7c\x07\x00\xe2\ \x8e\xc0\x45\x75\xe4\x18\x3c\x28\x87\xc8\xa5\x69\xeb\xa2\x38\xbc\ \x07\xf1\x61\xc4\x86\x10\x4f\xdd\x13\xf3\x2f\xa3\xc6\x8d\x1c\x3b\ \x7a\xfc\x08\x32\xa4\xc8\x91\x24\x4b\x9a\x3c\x89\x32\xa5\x4a\x95\ \xa1\xee\x08\xa9\xf1\xf2\x8e\x41\x1a\x0d\x18\x3a\x8c\x02\xf1\x9e\ \x11\x9d\x3c\x23\xe2\xec\xb6\x32\xa8\xd0\xa1\x44\x8b\x1a\x3d\x7a\ \x34\xd4\x8e\xa5\xbd\x7a\x0d\x58\x47\x91\xa7\x91\x9d\x10\x77\xde\ \xec\x85\x34\xab\xd6\xad\x5c\xbb\x7a\xdd\x18\x8a\x53\xd8\x50\x54\ \x7d\xe2\x8c\x48\x22\xd4\xd7\xb5\x6c\xdb\xba\x7d\xfb\x2f\x94\x5c\ \xb9\xdd\xd6\xe5\x1b\x90\xf3\x00\xdc\xbd\x7c\xfb\xfa\xfd\x2b\x32\ \x20\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\ \x00\xf0\x00\x87\xff\xff\xff\x3c\x86\x3c\xff\xff\xff\x8c\x89\x3f\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x4c\x2f\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xce\xb0\xb8\xff\xff\xff\x97\xa8\xac\xff\xff\xff\xff\xff\xff\x0b\ \x27\x17\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x27\xa8\x4f\xa8\ \xe0\xff\xff\xff\xff\xff\xff\xd0\xc8\xe8\xf3\x89\xb8\xce\x68\x98\ \xff\xff\xff\x8f\x69\xa4\x0c\x28\x69\xff\xff\xff\xff\xff\xff\xf6\ \xa7\xb7\xb0\xa8\xa9\x12\x28\xe2\xff\xff\xff\x4d\x67\xf9\x22\x46\ \xea\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xc8\xe7\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x73\xab\xa7\xf9\xf0\xbf\xff\xff\xff\x92\ \xf4\xfc\xff\xff\xff\xff\xff\xff\xae\xa9\xf0\xff\xff\xff\xff\xff\ \xff\xee\x95\xea\xf3\x6e\x3f\xff\xff\xff\x93\x68\xf8\xff\xff\xff\ \xff\xff\xff\xf6\xb1\xf1\x4a\x4b\xe3\xff\xff\xff\x2f\x90\xc1\xfb\ \x8f\x5e\xff\xff\xff\xfa\xfc\xfa\x91\xc8\xfb\x8d\x95\xf6\xd3\x8e\ \xf4\xff\xff\xff\xff\xff\xff\x6f\x69\xe7\x38\x56\xf6\xff\xff\xff\ \xff\xff\xff\xc2\x26\x30\xff\xff\xff\x11\x78\xc9\xb1\x8f\xf2\xb5\ \x67\x5a\x0d\x38\x67\xf9\xd0\xa5\xff\xff\xff\xcf\xd9\xf2\xff\xff\ \xff\x6f\x69\x68\xff\xff\xff\xd1\xaf\xf6\xff\xff\xff\x2d\x48\x67\ \xff\xff\xff\xff\xff\xff\x54\xb7\xeb\xf2\x98\xb4\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x72\x8d\xfa\xff\xff\xff\xaf\xc8\xf7\x90\xb2\ \xfa\xf9\xd9\xed\xff\xff\xff\x8d\x37\x2e\xff\xff\xff\xff\xff\xff\ \x19\x37\xe1\xff\xff\xff\x07\x18\x64\xb2\x69\xee\x32\x4a\xed\xad\ \xb9\xf2\x6f\x78\x26\x6e\xb3\xf6\xef\x91\x90\xff\xff\xff\xff\xff\ \xff\xfb\xb7\xbc\xff\xff\xff\xff\xff\xff\x72\xe9\xfc\xff\xff\xff\ \xff\xff\xff\xbc\xe2\x8c\xff\xff\xff\xcc\x29\x67\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4f\x96\ \xe1\x93\x6e\x66\xb1\xf3\xfc\xff\xff\xff\xff\xff\xff\xd0\xf7\xfc\ \xff\xff\xff\xb6\xc8\x86\xff\xff\xff\xff\xff\xff\x69\x3d\x98\x74\ \x3e\xc4\x72\x8b\x5f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xd1\x38\x67\x75\xcb\xfa\xff\xff\xff\xff\xff\xff\x77\x8b\x34\ \xff\xff\xff\xff\xff\xff\xb4\x26\x7c\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x91\xd8\xfc\xaf\xd8\xfb\xff\xff\xff\xff\xff\xff\x98\x37\ \xd4\xaf\xb7\x72\x78\xfc\xfc\xff\xff\xff\x8d\x97\x44\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x92\x98\xad\xff\xff\xff\x4e\x58\x11\xcd\ \x57\x2e\xff\xff\xff\x44\x99\xc4\x12\x36\x17\x56\x76\x1f\xff\xff\ \xff\x14\x35\x9d\x0e\x78\xa8\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x57\x76\x63\xae\x97\xab\x57\x76\xfa\xff\xff\xff\xff\xff\xff\x75\ \x97\xab\xff\xff\xff\xff\xff\xff\x92\x77\xf0\x47\x5a\xf5\x27\x3a\ \xe3\xff\xff\xff\xff\xff\xff\xf2\x78\xa7\x91\x59\xf8\xff\xff\xff\ \x07\x19\xe2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x33\x57\x62\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x36\x56\x16\xaf\x77\ \xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb4\x58\x31\xb4\x57\xa2\xff\xff\xff\xff\xff\xff\xfb\xb8\x8d\x6f\ \x5a\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x00\x00\x08\xfe\x00\x05\x01\x13\x44\x10\x58\x8e\x1c\xa0\ \x40\x8d\x52\xb8\x10\x54\x0e\x5d\x10\x81\x49\x34\x78\x30\xe1\x92\ \x25\x00\x32\x6a\xdc\xc8\xb1\xa3\xc7\x8f\x20\x35\x5e\x5c\x72\xe3\ \xc6\x96\x2d\x26\x53\x00\x01\x92\xac\xe5\xca\x24\x49\x56\xba\x84\ \x89\xaf\x66\x4d\x98\x40\xe8\xe9\x74\x99\xa5\x65\x95\x99\x40\xf8\ \x64\xe1\x93\x02\xdf\x1f\x7c\x14\x28\x54\x4b\x5a\xed\x13\xaa\x4f\ \x79\x42\x74\x09\x11\x22\x0f\x8f\x36\x6d\x46\x8d\xcc\xb8\x10\x96\ \xd7\xaf\x82\x72\x08\x02\xeb\xd5\x0c\x92\x2b\x48\x3c\x98\x19\x6b\ \xc6\xec\xd9\x65\x6d\xdb\xc2\x32\x33\xd7\xcc\x32\x24\x72\x05\xe9\ \x9a\x8b\xa4\xaf\xdf\xbe\x1e\x3c\xf4\xbd\x02\xad\x30\xb4\xb4\x82\ \x05\xf7\x3d\x8c\xc4\x30\x34\x82\x05\x29\x26\x74\x48\x39\xc7\xae\ \x84\xba\x26\x4a\x46\x08\x0a\x63\xc8\xcf\xa0\x43\x03\x20\x59\xb2\ \x24\xca\x2d\x31\xab\x54\x61\x19\x93\x0f\x4b\x97\xf4\x92\x01\xc1\ \xf9\x3a\x76\x9c\x2a\x71\x78\xb6\x4c\xf6\x53\xf6\x88\x2c\x49\xf8\ \xf0\x49\x8a\x94\x4f\xb5\x6a\x29\x28\x38\xfd\xb4\x34\x4c\x1e\xab\ \x51\xbb\x8c\x9a\xee\xb9\x2b\x58\x82\x0e\xaf\xb7\x4d\xdc\x56\x50\ \xdc\xed\xdf\xbf\xfe\xd2\x6d\x0b\x17\x96\xae\x87\x73\x15\xc7\x55\ \xfb\xdd\x4c\x60\xf6\xeb\x07\x3b\xd6\x02\x4d\x8b\x66\x83\x93\x13\ \x1e\xcc\x01\x4c\x17\x28\x88\xa0\x4c\xc4\x1f\x67\x5a\x5d\x24\xda\ \x81\x08\x8e\x76\x03\x49\xa4\xa5\xf4\xda\x4b\xaf\xf5\x26\x1b\x84\ \x31\xc9\xe4\xd3\x6d\x3a\xd1\x93\xc5\x6b\xbb\xc9\x36\xd4\x00\xc2\ \xa9\xc0\x87\x88\xd5\x0c\xa7\xdc\x27\x25\x18\x63\xcc\x71\x3c\x44\ \xd7\xc5\x68\x05\x4e\xb7\x97\x57\x7b\x85\x05\x0a\x41\x74\xc1\xc2\ \x56\x7b\x3c\xf2\x58\x57\x7b\x3a\xea\xa2\x57\x5b\x78\xc9\xd5\x63\ \x8f\x69\x2d\x56\x9f\x16\x4c\x32\xa9\x59\x45\xf9\x1d\xd4\x5f\x0e\ \x0b\x01\x68\x10\x45\x08\x15\x98\xe0\x96\x9f\x5d\x54\x5a\x69\x5b\ \xe0\x13\x13\x50\x2c\xa9\x36\x53\x85\x2d\xf5\xb4\x1b\x3d\x55\xe8\ \xd4\x66\x6c\x1b\x96\x09\x27\x70\x43\x95\x68\x27\x53\xc6\x1d\x57\ \xc2\x17\x25\x64\x53\x4d\x1e\x5d\xbc\x71\xd1\x74\xd3\x61\xf6\x95\ \x8e\xfb\x89\x35\x17\x64\xde\xad\xd5\xe8\x5a\xdd\x3d\x3a\x9e\x78\ \x73\x79\xb5\xc7\xa1\xdf\x11\x54\x97\x7a\xef\x29\x26\x5f\x61\x4d\ \x86\xca\x9f\x80\x9c\x55\xf6\x90\x7f\xbb\x9c\x97\xd9\x80\x59\x6a\ \xc5\xe5\xab\xfe\x1e\x79\xd9\xe0\x0d\x37\xc5\x64\xeb\x6c\x65\x4e\ \x18\x1c\x9a\x1d\x26\x13\x1b\x9b\xf4\xc4\x91\x21\x87\x2d\xc1\x69\ \x1c\x1f\x20\x82\x58\xa2\x52\x4b\x29\xf5\x05\x2a\x7c\xf2\x20\xd5\ \x48\x4b\x14\xca\x04\x2c\x4c\xec\x75\xe9\x79\x07\x31\xaa\x23\x64\ \x6b\xe9\x08\x29\x78\xe3\x19\x79\xa8\x77\x7b\xb8\xe7\xe3\x77\x8b\ \x11\xe6\xd8\xbb\xf4\x35\xb9\xa4\x93\x02\x62\x49\x25\x42\x53\x5e\ \x66\x65\xa9\x09\x8d\x02\xeb\xbf\x1b\x8d\xb4\xa0\x49\x35\xad\x34\ \x1b\x4c\x15\xb2\xf4\xd2\xae\x16\xb6\x59\xec\x9a\x6e\x66\x18\x1b\ \xc4\x1a\x26\x91\xc5\xc5\x59\x0c\x90\x05\x89\x23\x30\x85\x00\x2a\ \xe8\x18\xa3\xc2\xb4\xfe\x56\x0b\x0a\x13\x28\x9b\x07\xcb\x32\x6a\ \x49\xfa\xad\xa6\x6c\x79\x27\xa9\x91\x3e\x62\x7a\xd7\x32\x70\xb5\ \x77\x57\x63\xa0\x3e\xa3\x85\xcf\x3e\x43\x03\xf4\xcf\xa1\x86\x7a\ \xdf\xa8\x50\x4a\xe9\x1f\x44\x42\x8a\x35\x10\x2c\x1e\xec\x02\xf0\ \xd4\x0a\x7e\x19\xa6\xc1\xb3\x89\x99\xf0\xc1\x62\xca\x14\x9b\xc3\ \xbd\xb2\x99\x0c\x02\x19\x66\x31\x71\x4e\x3a\x61\x4c\x0f\x02\x08\ \x7c\x81\xf1\x71\xc7\x65\x61\xcc\x27\x73\x57\xd3\x62\x08\x82\x56\ \xbb\x50\xfe\xaa\x4c\x43\x5d\xa4\x60\xe1\xe9\x08\xd6\x91\x95\x12\ \x9e\x9e\xa7\x4a\xc2\x5b\xdf\xe2\xf1\x2e\x0e\x0d\x3a\x86\x15\x4d\ \xef\x95\x89\x22\x34\x6a\xaa\x95\x86\xc5\xaf\x42\x54\xff\xeb\xe5\ \x97\x5a\x1f\x8c\x53\xc2\x08\x8f\xa9\x1a\x86\xbd\xae\xe9\xab\xc4\ \x64\x6b\x08\xa7\xeb\x6d\xb3\xcd\xf6\x27\x9f\x5c\x4c\x3b\x73\xd5\ \xa8\x90\x94\x8b\x85\x5e\x76\x59\x42\x63\x29\x86\x96\x59\x3d\xca\ \x1c\x57\x91\x40\xb6\xf7\x1e\xce\x7f\x2d\x39\xaf\xbc\xef\xce\x17\ \x39\xa8\xcf\xdb\x3b\x99\xe5\xa3\x0a\xe4\x01\x34\x57\x98\x01\x0c\ \x75\x19\x19\xd8\xf9\x96\x18\xc9\x5a\x92\x98\xe8\x87\xbe\x70\xe9\ \x17\x9e\x0e\xf6\x6e\x6a\x6a\x98\x8c\xd9\x6c\xaf\x9d\xb6\x4e\xb2\ \xe7\x2f\x3b\xed\x59\xe0\x9e\x54\x8b\x14\xb0\x40\x18\xa4\xb2\x8b\ \x02\xfe\x6e\x32\xba\x20\x52\x5f\x88\x17\x9f\xbf\xfd\xe5\x2f\x48\ \xe2\x59\xf4\x40\x25\xb9\xc6\x31\xc6\x2f\xdc\x93\xa0\x61\xdc\x45\ \x1f\x68\x48\x04\x7b\xd7\x1b\xd0\x40\x04\xe1\x01\x17\x40\xc3\x03\ \x54\x0a\xd8\xf8\xc8\x47\x2d\xd2\x84\x29\x7d\xb5\x7a\x49\x4d\x5c\ \xe3\x92\xd7\xdc\xe6\x36\xef\xeb\x89\x0e\x2f\x86\x3f\xfb\x65\xe8\ \x13\xfe\xfa\x63\x5b\x1c\x86\xd8\xb6\xda\xc1\x2d\x29\x2a\x50\x81\ \x05\x2c\xf0\x1c\x03\x82\xe2\x80\x0e\xc9\xc1\x8f\x22\xf8\xc0\xb3\ \x34\xe6\x2f\x81\xb1\x4b\xe2\x26\x28\xb4\xe9\x75\xb0\x30\x0b\x74\ \x4f\x15\x31\xa8\x41\x24\x60\x29\x8a\x15\xd1\x0c\x8e\x0a\x13\x16\ \x42\xb9\x2a\x41\xe2\x9b\x9a\xac\x3e\x87\x13\x7c\x9c\x44\x6b\xa5\ \x43\x98\xc1\xd6\xd4\xa6\x2a\x90\xad\x25\x23\x98\xdf\xfc\x36\xc4\ \x43\xfc\x91\xed\x90\xfa\x03\x22\x02\x86\x88\x8c\x38\x20\x80\x76\ \x23\x80\x5b\xee\x2c\x50\x8d\x15\xe5\x21\x5b\x05\xd4\x45\xaa\x1e\ \xa2\x1f\x46\x41\x4a\x52\x78\x09\xa5\x59\xb8\xc3\xa3\xc4\x25\xee\ \x19\x60\xd4\xa0\x61\x00\xa3\xbc\x31\x46\x0f\x09\xfb\xa1\xcc\xf5\ \x3e\x38\x11\x99\x01\x43\x3f\xad\xf2\x4c\x68\xde\x20\x03\x5d\x02\ \x6c\x8e\xe7\xa3\x89\x4d\x6c\x92\x04\x3c\xd6\x50\x26\x7e\x74\x09\ \x02\xd2\xc4\x12\x8c\x39\xd3\x6c\xf6\x0b\xa2\x23\xf9\xa7\x48\x20\ \xd6\x8e\x39\xb7\x53\x51\x25\x57\x64\x81\x36\xa0\x4c\x17\x29\x33\ \x8f\xe5\x0c\xc2\xa8\x72\x4a\x4a\x66\x63\x49\xa7\xb8\x7e\x84\xb3\ \xc4\x30\xcf\x30\x70\x09\x0c\xce\x58\xe6\x01\x7a\xe6\x68\x3b\x3b\ \xfe\x5b\x25\xf5\xae\x70\x97\x52\x35\x04\x7b\xa5\x62\x55\xa1\xf0\ \x33\x19\x7f\x81\x86\x02\x29\xc8\x1b\xd5\x18\xe4\x25\x3c\xbe\x70\ \x98\x31\xec\x8d\x0d\x55\x33\xb1\xd8\x8c\x00\x08\x17\xbd\x28\x21\ \x9d\x99\x21\x44\xee\x8f\x1e\x9f\x00\xe9\xec\xfa\x77\xbb\x4f\x7c\ \x81\x76\x29\x4a\x91\x8a\xdc\xb0\x07\x26\xb0\x94\x09\xe9\x3a\x8f\ \x43\x04\x91\x1d\xc1\x99\xb3\x96\x7a\x09\x4b\x4e\x85\x24\x9e\xb8\ \x54\x8a\x2f\x8e\xa3\x67\x16\xcd\x70\x29\x9f\x92\xc7\x53\xd2\x83\ \x9c\x61\x08\x55\xd0\x85\x50\xc7\x8d\xfd\x82\xaa\x1b\xb7\x02\x92\ \x25\x94\xe8\x06\x9d\x13\x18\x49\xc2\x44\x93\x17\x9e\xe4\x85\x38\ \xe9\x15\x45\x25\x06\xc8\xa0\x0c\x85\xa3\x69\xc3\xd8\x00\xd6\x26\ \x3b\x47\x06\xf1\x91\x59\x78\xe4\x35\xe3\x70\xd2\xb9\x19\x43\xa5\ \xd9\xc8\x46\x4b\x5d\x0a\x0b\x37\xf8\xa7\x22\x63\xb9\x0e\xb7\x44\ \xb8\x1f\xa6\xcd\x08\x22\x5f\x11\x92\x62\xf5\xf2\x90\xed\x31\xa9\ \x30\xcc\x63\x99\x0d\xca\x52\x2e\xc5\x18\x06\x72\xf1\x2a\x1a\x34\ \x06\x35\x55\xaa\x72\x96\x3a\x23\xd1\x0a\x68\xe3\xd8\x91\x10\xd4\ \x0e\x1f\xa4\xe5\x48\xf9\xa8\x5a\xd5\xcf\x79\xf5\xab\x76\x3c\xfe\ \x5f\xd7\x78\x83\x4c\xdc\x48\x88\x4d\x84\x04\x02\x21\x93\xd0\x51\ \xfc\x61\x4c\x0f\x89\x0c\xa2\x22\xd9\xd6\xbf\xd8\x3d\x8b\x76\x7a\ \x32\x46\x13\xf2\xd0\x06\x03\xee\x22\x5b\x9a\x44\x88\xa6\xf6\x32\ \x58\x29\x75\xab\x6f\x3e\x2d\x8b\x5e\x0c\xab\x2a\x5d\x6c\xaf\x3e\ \x4a\x4d\xa5\x64\xc7\x63\xd9\xc7\x15\x0d\x1d\xe7\xdd\x2c\x67\x53\ \x3b\x9a\x6a\x0d\x8a\x5a\xed\x85\xef\x47\xba\x60\x82\x0c\xc4\xa1\ \x97\x1f\x69\xa1\x7e\xc3\xe7\x4b\xd7\xc6\x16\xb6\x5f\xe5\x2a\xb1\ \x54\x83\x1b\x5f\x75\x28\xad\xbf\xf9\x0d\x0f\x65\xb7\xb6\x8c\x41\ \x53\x88\x8e\x64\x6b\xfe\x88\x58\x8f\xda\x7d\x6c\x91\x5f\x68\xdb\ \x71\x3e\xb1\x44\x40\x89\x76\x14\x6e\xc8\xd6\xf5\x76\x41\xa3\x6f\ \x59\x57\x2f\x94\x0d\x9c\x5c\x0e\x55\x97\x74\x09\x66\x5e\x97\xbd\ \xe0\xce\x24\x58\xc1\xcc\x86\x0a\x46\xa2\x65\xad\xde\x4a\xe6\xc6\ \xf0\x19\xf4\x33\xa8\xc8\x80\x7d\xb1\x1a\x2b\x06\x0d\xac\x85\x22\ \x09\x98\x0b\x51\x02\xa6\x3b\xde\xa4\x61\xee\x9b\x98\x20\x09\x39\ \x3f\x05\xf3\xd0\x91\x44\x6c\x1d\xfd\xda\x2a\xd2\xb6\x2e\xb2\x1e\ \x88\x44\xc5\x10\xc5\xfc\x85\x0c\x33\x47\x45\x79\x28\x50\xfe\xb5\ \x6c\xe0\xd7\x28\x59\xaa\x2c\x2f\x0b\x2c\x5d\x2e\xf5\x53\xba\x74\ \x4a\x8b\x57\xe4\x59\x66\x1d\x47\x9f\xf0\x62\x96\xcf\xe8\xad\xe0\ \x52\x99\xea\xc6\x42\x43\xb5\x5f\x1e\xd1\x52\x47\x84\x6c\xdf\x22\ \x0f\xac\x24\x0c\x95\xaf\x48\x96\xcc\x64\x93\x80\x49\x7d\x7b\x24\ \x30\x3d\x74\x6b\xe0\xf9\x59\xec\x99\x85\x94\x98\x21\x0f\x19\xd7\ \xb8\x7a\x99\x6d\xf5\xa0\x47\xaa\xc1\x3c\xe6\x38\x88\x19\x15\xc8\ \x78\x8a\x8a\x2c\xf0\xa2\xf0\xb9\xd4\x3f\x0d\x21\xf1\x1e\x5c\x9c\ \x5d\xaf\x04\x36\xb0\x85\x2b\xaf\xf4\xcc\x2b\x2f\x1b\x6b\xc1\x04\ \x76\xb0\x83\x09\x4c\x50\x6c\x63\x3f\x96\x3e\x3c\x23\xb4\x42\xa2\ \xd4\xaf\x10\x22\x84\xb4\x0b\xc9\x41\x6a\x97\xc0\xe8\x38\xf8\x32\ \x7c\x8f\x3e\x32\xa4\x25\x5d\x35\x93\x04\xd8\x6a\xea\x4b\x06\x4e\ \x70\x73\x1b\x0f\xe9\x36\xad\x1a\x7a\x66\xbc\xad\x7c\x31\xd9\xd5\ \x43\xde\xc1\x0a\x16\x02\x5e\xf1\xcc\x45\x0e\x31\x0e\x8d\x8c\x83\ \x7d\xe9\xca\x0d\x63\x84\xa0\x7c\xa3\x40\xd9\x2e\x98\x7a\x32\x98\ \xee\x61\xa8\xc9\xab\x0b\xcb\xf2\xe9\x38\xf0\x3e\x3b\x54\x8c\x93\ \x5c\xa0\x19\xf7\xbc\x3d\x83\xd1\x03\x0c\x69\x88\x7e\xfe\x02\x54\ \x11\x29\x8d\x50\x20\x9c\x13\x09\xa2\x55\xdb\x6d\x22\x4f\xfa\x4b\ \x90\x8e\xf9\x7e\x05\x16\xe0\xd3\x98\x06\x8f\xb4\x91\x4d\xaf\x74\ \xe8\x3a\x5f\x81\xfa\x62\x16\x13\x4e\x35\xd4\x96\xea\x9f\x23\x00\ \xcc\xf4\x1b\x8a\x82\x2b\x7c\xe1\x67\x8d\x19\x5a\x7c\xb2\x80\x54\ \xba\xd0\x05\xac\x48\xa7\x50\x7b\x03\xe7\x91\xcc\x42\x71\x78\x61\ \xbc\xc6\x8f\xdd\x78\x2a\xb7\x98\xf1\xc7\x6e\x10\x09\xcb\xb8\x42\ \x7e\x9c\x7a\x3d\xc6\x3a\xe4\xe4\x92\xf9\xf1\x12\x2c\xf2\x6d\x6e\ \x33\xfa\x0d\xaa\x35\xb2\x91\x4b\x13\xe9\xad\x34\xd4\xe6\x95\xae\ \x55\xad\x6a\xe8\x92\x62\x6d\xd4\x6c\x18\xd3\xed\xa7\xab\x11\xf4\ \xb3\xfe\x1c\xd4\xaa\xd6\x50\x24\xb3\xb0\xf4\xda\x81\x19\x01\x25\ \x30\x6e\x09\x52\x84\x05\x0a\xb4\xa1\x89\x54\x37\x74\xc3\xb3\x7b\ \x3c\x0d\x5a\xd0\xec\xce\x53\x1c\xf5\x3a\xe8\x81\xa2\x6a\x31\x7a\ \x5f\x1c\x7b\x5f\x08\x3a\x6d\xa7\x6e\x2e\x3f\x23\x9f\x0e\x68\xec\ \x2e\xe4\x14\xe4\x5d\xdc\x30\x3f\x32\x7c\x2f\x72\xc7\x93\x34\x19\ \x8f\xa1\x3b\x66\x4e\x0c\x0c\xa7\x77\xbf\x2d\x0b\xd5\x30\xeb\xb1\ \x1c\x3f\x79\xa1\x0c\x3d\xc1\x8f\x7f\xe6\xbd\x81\xfe\x58\x02\xca\ \x57\x63\x04\x7b\xda\xfc\x8a\xaa\x61\x01\x15\x30\xf7\xea\x4c\xdd\ \x45\x1b\x60\xb1\xeb\x56\x9e\xc5\x5d\xd1\x43\x8b\x2a\x31\x18\x39\ \xb3\x23\x61\xb2\x62\xa4\xff\x2b\x55\x09\x0d\x7f\x62\x3d\xc7\x6a\ \x46\x28\xee\x25\x80\x5d\x62\x07\x8c\x56\x05\xbf\x17\x6e\x30\xa7\ \x77\xd4\x62\x1a\x95\x46\x12\x0e\x75\x35\x2d\xf1\x0a\xb2\x11\x13\ \x3d\xb1\x13\x3b\x84\x31\x42\x11\x1c\x75\xd2\x78\xc6\x11\x1c\xd1\ \x77\x7d\x67\x25\x82\xd9\x77\x6f\xfd\xf3\x1b\xf7\x56\x02\x23\x70\ \x06\x4d\x51\x02\x28\x52\x02\xd5\x50\x70\xc6\xc0\x44\x6d\x10\x02\ \x58\xa1\x7e\x2e\x95\x0d\x2c\xc3\x2e\x8a\x31\x63\x7f\xb1\x83\xee\ \x91\x76\x86\x21\x4f\x7a\xb6\x24\xcc\xc6\x45\x5c\xd4\x17\x77\x31\ \x1f\x05\x55\x6d\x9d\xc1\x5a\xfc\x15\x3e\x93\x16\x12\x4b\x60\x80\ \x8c\x76\x06\xba\x24\x30\xc1\xf7\x25\x0d\xe2\x5a\x7c\xe7\x42\xf8\ \x90\x35\x02\xa6\x1a\x58\x13\x48\x9d\x76\x31\x8a\x47\x27\x76\xf2\ \x81\x76\x12\x74\x25\x22\x14\x23\x60\x1c\x75\x12\x14\x6b\x68\x27\ \xd8\x87\x31\x56\x56\x0f\x71\x78\x2c\xd5\x00\x83\xc7\x71\x57\x51\ \xb7\x44\x3c\xc0\x44\xd9\xb0\x06\xd4\x70\x05\xfe\xd4\x30\x46\x88\ \xa1\x62\x34\xf3\x62\x68\x31\x4f\x8d\x61\x6c\xcc\x76\x71\xa8\xa7\ \x4f\x68\x87\x76\xe6\x55\x1f\x21\x57\x28\xfd\xc2\x5e\xdf\x36\x85\ \xf9\x55\x0d\x8c\x96\x01\xc9\x30\x69\xb3\x62\x69\x5c\x28\x73\x4d\ \xb6\x20\x02\x23\x78\xf8\xa0\x12\x1c\xb2\x47\xbe\xf2\x0a\x1a\xa2\ \x5b\xcf\x27\x14\xc2\x91\x8b\xba\x48\x01\xbb\xc8\x86\x7c\x10\x49\ \xb8\xf8\x8b\xb9\x48\x79\xc4\x98\x60\x28\x78\x31\x23\x10\x87\xd5\ \x20\x02\xd5\x70\x06\x2c\x88\x22\x5f\xa0\x22\xd2\x68\x0c\xd9\xf0\ \x05\xe8\x80\x0e\x63\xb0\x4a\x83\xe1\x17\x59\x04\x67\xa4\x87\x38\ \xf4\x17\x7b\xc5\x86\x84\x65\xb4\x0c\xd1\x23\x80\xd9\x96\x25\xec\ \x95\x5f\xd5\xd2\x5a\xa3\x58\x05\x06\xb2\x77\xa6\x81\x8a\x7c\x07\ \x7c\x61\x82\x12\x9f\x63\x13\x77\xe4\x1a\x0a\x33\x21\x54\xb6\x36\ \x3e\x87\x31\x16\xf3\x86\xcb\x52\x13\xc9\x31\x1c\x08\xc9\x8b\x6f\ \xa8\x8c\x42\x97\x90\x08\xf9\x90\xdf\x07\x87\x18\x73\x6f\xc9\xb8\ \x2c\x67\x40\x01\x4e\xa0\x27\x76\x53\x49\x7d\x12\x05\xe8\x80\x07\ \xe8\x70\x05\xe8\x60\x0d\x68\x37\x63\xef\xb1\x1e\xf5\x24\x18\x3b\ \xc8\x3c\x68\x87\x54\x67\x47\x3d\x8e\x31\xfe\x7f\xa6\xb4\x3d\x12\ \x84\x04\x1f\x26\x72\xa3\xf5\x89\x1d\xf1\x5e\xe4\x36\x1a\xc6\x30\ \x8a\x29\xd0\x80\x5b\xb8\x80\x9f\xe3\x80\xac\xb8\x55\x35\x81\x12\ \x6f\x10\x56\x58\x83\x51\x2c\x41\x0f\xb4\x88\x81\x1b\x32\x74\x21\ \xc2\x07\x06\x69\x14\x45\x91\x95\xf8\x60\x95\x0e\x79\x2c\x29\x90\ \x02\xc3\x71\x91\x5f\xc9\x8b\xba\x18\x87\x94\x67\x8c\x09\x56\x0d\ \xe1\x60\x87\xb9\xc3\x2c\x7d\xc2\x27\xd4\x40\x0d\x6b\x90\x0d\x36\ \x60\x03\xbb\x36\x45\x28\xa9\x24\x7e\xc1\x92\x45\xc2\x92\xdc\x03\ \x89\x79\xa6\x16\x9b\xd2\x29\x0f\xa4\x16\x2c\x03\x0d\xf3\x34\x80\ \x0c\xd1\x8e\xeb\xc8\x5f\x01\x88\x8e\x8a\xd6\x5e\x56\x48\x8a\xfc\ \xb5\x85\x95\x96\x8a\x46\x19\x6e\x5f\xf5\x06\x26\xb1\x35\xb9\xc8\ \x69\x17\x58\x36\x17\x13\x82\x08\x69\x14\x7f\x70\x9a\x46\x81\x95\ \xaf\x88\x14\x07\x99\x90\x63\x99\x95\xb0\x59\x1c\x64\x89\x8b\xc9\ \x18\x87\xb6\x59\x22\x15\x29\x49\xc7\x91\x0d\x9b\x57\x88\x16\xe0\ \x06\xcd\x95\x49\x4d\x33\x23\x2e\x76\x17\x57\x80\x16\x63\xa7\x2e\ \xdf\x21\x98\x29\xa6\x18\xec\x51\x16\xbc\xf6\x70\x77\xb6\x1d\x81\ \x81\x2d\xd3\x66\x11\x25\xf3\x19\x58\xfe\x17\x55\x8b\x49\x28\x4a\ \x96\x07\xdd\x96\x37\xa7\x68\x35\x43\xf9\x80\x60\xf2\x07\x31\x17\ \x86\x06\x53\x14\x5b\xe9\x94\x82\x04\x95\x08\x80\x8c\x6f\x88\x50\ \xab\x79\x9a\xf6\x79\x14\xa8\x99\x02\x7f\x30\x96\x08\x29\x96\x5f\ \x99\x1c\xfb\xb9\x9f\x29\x70\x06\x60\xb9\x90\xba\xe8\x8c\x60\x69\ \x1c\x0a\xb6\x8c\x18\xa9\x02\xbb\xa9\x22\x2d\xb2\x0b\x57\xe7\x10\ \xdc\xb5\x6b\xf0\x51\x7a\x80\x01\x1f\x1e\x50\x29\x32\x25\x24\xdb\ \xa1\x84\x72\x41\x67\x98\x92\x5d\xba\xd0\x7e\x95\x02\x25\x91\x49\ \x2d\xba\x87\x63\xd7\x43\x19\x9c\x18\x55\x4a\xf6\x05\x8c\x46\x0f\ \x7e\x17\x73\xf4\x08\x73\xc6\xc7\x8a\xa5\x61\x47\x5b\xd0\x50\xfc\ \x18\x0e\xc1\x01\x96\x16\xf8\x1b\xf3\xe3\x3a\x1a\xb8\x2c\x5f\x69\ \x9a\x5b\x70\x14\x32\xf0\x07\x4b\xba\x9f\x08\x85\x50\x17\x19\x96\ \x51\xfa\x9f\xc9\x71\x90\xb3\x29\x1c\xce\x48\xa0\x56\x3a\xa0\xc2\ \x91\x8c\x0a\x0a\x37\x58\xc0\x91\x33\xd8\x5c\xbd\xc3\x34\xd7\xc2\ \x7e\xed\xb7\x62\xd4\xf9\x1d\xe9\x42\x23\x08\x24\x08\x0f\x07\x41\ \xcf\xc9\x62\x97\x42\x67\x10\x61\xa1\x29\x49\x50\xa2\xe5\x63\x86\ \xf6\x7f\xb8\x04\x25\x51\xd4\x89\xfe\x59\xc8\x7b\x19\xc0\x07\x44\ \xf6\x39\x2e\xe4\x80\x35\x77\x94\x46\xd9\x50\x79\xc4\x07\x30\x21\ \xa9\x17\xa5\x5b\x81\x84\x78\x94\xc7\x87\x56\x69\x9f\x4f\x2a\x03\ \xa6\x09\xa5\x60\xf9\x07\x14\x30\xa5\xbc\xf8\x95\x62\x89\x50\x5f\ \xe9\x90\x03\xca\xa5\xff\xc9\xa5\x7c\x20\x02\x22\xb0\xa5\xb1\xfa\ \xaa\xdf\xc7\x91\xd9\x40\x0d\x51\x60\x0c\xc1\xf9\x44\x88\x05\x4e\ \xd8\x62\x1e\x8c\x95\x53\x3f\x75\x28\x7b\x40\x5d\x88\xb5\x29\x85\ \x81\x16\xf0\x41\xac\x73\xf1\xa6\x5f\x31\xa7\x7e\x51\x11\x7d\xba\ \x63\x5a\xc1\x10\xd7\x19\x23\x14\xaa\x39\xb1\xb4\x72\x22\x41\x01\ \xe1\xb9\x5a\x8e\x8a\xa3\xe7\xa6\x85\xf8\x10\x73\xa8\x31\x1b\xb9\ \xa8\x47\xba\x25\x14\x96\xda\x13\x0b\xda\x31\xc3\x71\x9a\x5b\xd0\ \xa4\x32\x30\xaf\xf6\x99\xaa\x48\x41\xa0\xa5\x7a\x91\xfc\xda\xaa\ \xbc\x58\xaa\x03\xda\xa5\x5d\x8a\xa0\x56\xfa\x07\x45\xe0\x8c\x4e\ \xe0\x96\xd6\x48\x0d\xd9\x60\x0c\x4c\x90\x49\x5f\x71\x2d\x9a\x14\ \xa8\x88\x35\x29\x73\x36\x17\x10\x91\x23\xe6\xb1\x17\x82\x31\x3c\ \xed\x91\x2e\x71\xe1\x7a\xf5\x84\x04\x9e\xe0\x09\x56\x84\x04\x8b\ \x49\xad\xff\x84\x46\xad\xd2\xfe\x5e\xd9\xd6\x84\x4e\x05\x85\x17\ \xf1\x93\x42\xc6\x07\xe0\xca\x50\x37\xc0\x99\x39\x7b\x6e\x3a\xca\ \x85\x24\x91\x02\x15\x02\xb4\x40\xcb\x12\x17\xc5\xae\x3a\x54\x65\ \xd1\x77\x2c\xbc\xa8\xa4\xf5\x8a\x9a\x47\x01\x9b\xb9\x78\x06\x7c\ \x80\xa0\x5b\xba\xaa\x52\x3b\xb5\xff\x4a\x14\xad\x2a\xb0\x5c\x9b\ \x02\x45\x30\xa0\x4b\xc1\x91\x51\x20\x97\xdd\x54\x40\xa0\x80\x2d\ \x2d\x65\x1e\xbb\x70\x2a\xc7\x5a\x38\x6f\xa6\x32\x6f\x26\x53\x7e\ \x33\x3c\x82\x33\x23\xe0\x91\x2e\x73\xea\x2e\x24\xeb\x17\x4f\xf5\ \xa2\x95\x23\x19\x4f\x18\x5a\x7a\x83\x64\xf1\x95\x77\x32\x6a\x5f\ \xe2\x49\x1a\x24\xa1\xb3\x6f\x70\x1a\xc6\xa7\x85\x36\x2a\x26\x92\ \x9a\x04\x45\x01\x13\x17\x35\x48\x45\x6b\x9b\xc4\x28\x8c\xc2\xa1\ \x9f\x4e\xda\xb4\x4f\x9a\xa4\x04\x4a\x14\xa3\x8a\xb5\x08\x4a\x14\ \xa4\x3b\xb5\x6f\x28\xb5\x56\xca\xaa\xa7\xa9\x9f\x5c\xba\xa5\x08\ \xfa\x03\x18\x59\x0d\x19\x79\x57\xbc\x09\x9c\x0b\x87\x19\x88\xe5\ \x70\xce\x7a\x28\xbd\xba\xb1\xda\xd2\x7a\xd0\xc5\xb1\x56\x94\x23\ \xa7\xd2\xac\x77\x99\x1e\x84\x81\x4a\x25\x79\x17\xa2\xc7\xb2\x24\ \x47\xa8\xf1\xd8\x5f\x9e\xfe\x25\xb3\x17\x11\x02\xb0\x46\x0f\x41\ \x69\x20\x6f\xf0\xbd\x5b\xd0\xb8\xe6\xf6\x55\x8a\x3b\x6e\x10\x28\ \x1c\xab\x99\xae\x18\x05\x48\x4a\x37\x8c\xc1\xd8\xb9\x67\x60\x47\ \x9f\x6b\x9f\xa9\x69\xa5\xc2\x31\xaa\xce\x98\xb5\xbc\x28\xb5\x57\ \xeb\x8c\x61\x19\xb0\x5f\x69\x9f\x4d\xfa\xba\x01\x7b\x06\xb0\x6a\ \xc0\xc6\x91\x02\x49\xd4\x87\x5f\xd0\xb0\x6d\x80\x7e\x86\x02\x35\ \x27\xd9\xac\x74\x71\xac\x21\x7b\x92\x77\xea\x1e\x9e\x20\x7f\xcc\ \x09\xbc\x28\x96\x1e\xf3\x87\x33\x81\x8a\x3d\x80\x5b\x50\xfa\xd5\ \x98\x3c\xb9\x93\x00\x70\x03\x41\xe6\x6d\x5e\x72\x12\x8d\xfb\x55\ \x47\x11\xbe\x90\x4b\x2d\x6f\x00\x43\xaf\x08\xb4\xae\xa1\x51\x18\ \xd5\x90\xc2\xd1\xbe\xb9\xe8\xb9\x4d\xfb\xb4\xaf\xbb\x9f\x9d\x7b\ \xbf\x53\x4b\x14\x57\x9b\xc4\x2c\x18\x0e\xfd\xe9\xba\x06\xdb\xa4\ \x45\x10\xc5\x06\xfb\x07\x3f\xe0\x8c\x3f\x00\xab\x4e\x60\x1c\x2c\ \xd8\x87\x51\xf0\x05\x4d\xc0\x03\x97\xd1\x10\x9a\x54\xa2\x0f\xe7\ \x09\x44\x55\x16\x10\x27\x9d\x2c\xd9\x7a\x0f\x97\x76\xc7\x89\x45\ \x39\xc2\x58\x1d\xca\x16\xc6\x19\x34\x60\x44\x58\x4e\xd8\x9d\xa3\ \x85\x63\x8d\x09\x23\xfe\x3a\x19\x3e\x40\x54\x0d\x79\xb3\xa4\x4e\ \x36\x4c\xf8\xb8\x55\x89\x8c\x94\xab\x99\xbe\x3a\xec\x94\xd5\xa7\ \x8b\x11\xf9\x86\x03\xea\xa4\x7f\x30\xc4\x49\xba\x9f\xaf\x18\xb5\ \x53\x2b\xbb\x9e\xac\x8b\x22\xd0\xc9\x5c\x5a\x04\x32\x20\xc5\xa7\ \x79\x06\x53\xfc\xb5\x5f\x79\xc5\x67\xe0\xc4\x4e\xc0\x82\x19\x99\ \x52\x33\xc8\x5c\xd0\x65\x19\xc4\xe9\x6b\xec\x87\x67\x13\xc7\x92\ \x68\xe1\x09\x81\xb1\xc1\x1c\x1c\x18\x69\xb1\x16\xdc\x72\x3d\x15\ \x9b\x45\x8d\x81\x4a\x5a\x70\x05\x1f\xb4\x1f\x90\xf9\x61\x0c\xe1\ \x63\xee\xa5\x5f\x05\x12\xb8\x50\x18\x3e\xc4\x71\x12\xf5\x7a\x12\ \x47\xa1\x8f\x3a\x6a\xc8\x58\x45\x1a\x37\x9c\x94\x4f\xbb\x95\x92\ \xea\x1a\x9c\x8b\xc4\x5f\xaa\x8b\x57\x6a\xc9\x4d\x9a\xc3\x01\x9a\ \xaa\x5a\xca\xbf\xfb\xcb\xc4\xfe\x2b\xb5\xe1\x10\xca\x50\x7c\x9a\ \x5f\x4b\xb0\x04\xca\xca\xb0\x2a\x02\xca\x18\xca\x4d\x21\x83\x3c\ \x10\x62\x97\xf4\xb0\x07\x61\x58\x98\x22\x18\xbe\xbc\x3c\x3b\x83\ \xc6\xe9\x62\xb2\x68\x47\x33\x34\x52\x72\x7d\xe3\x62\x43\x55\x93\ \x89\xd2\x54\x3b\x36\x19\xb7\x04\x80\x7f\x3a\xd2\x93\x41\x5a\xde\ \x4b\x01\x71\x58\xfe\xae\xe3\xbc\x95\x49\xf9\x68\xe2\xfb\xc2\xda\ \x6c\xc9\xf9\xa9\x8b\x34\x4d\xd3\x6f\x38\xcf\x99\x3c\xc0\x02\xfa\ \x8a\x02\x7a\xa0\xfc\x2b\xbb\x01\x9b\xc4\xa1\x1c\xab\x5f\x99\xca\ \x55\xac\xca\x03\xca\xca\xce\x08\xab\xe1\x10\x0e\xb5\x59\xab\xc7\ \x81\x05\x2d\x42\xcb\x0f\x8b\x7b\xff\x81\x2d\xbe\xba\x6b\x5a\xbd\ \xd5\x77\x89\x58\x20\x9b\x17\x10\x41\x10\xdc\xe5\x15\xc2\x7c\xb2\ \x44\x18\xad\xf8\x81\x2f\x6b\x47\x6d\x7d\xeb\x84\x87\xc6\x54\x0f\ \x41\x25\x3a\xf9\x06\xd5\xc0\x36\x7f\x40\x12\x9a\x6c\x13\x9c\xd9\ \xb8\xf5\x3a\x1a\x2b\x1c\xc3\x01\x86\x9f\x59\x29\x1c\xc1\x51\xd3\ \x37\xdd\x90\xfd\x4a\x01\xf2\x7a\xaf\x9e\xeb\xa5\x71\xa8\xcf\x55\ \xfb\xd3\xa6\x2a\xd9\x53\x7c\xd4\x02\x3b\xbb\x06\xcc\xd4\xc9\x78\ \x96\xbf\x38\x02\x2a\xc0\x03\xe6\x07\x28\x0b\xf7\xa2\xdc\x95\x2d\ \xd0\x65\x29\x29\x03\x4e\xc5\x3c\x23\xd0\x89\x29\x23\x7a\x16\x13\ \x54\x92\x57\x94\x34\x23\x74\x4b\x0e\xe1\x46\xad\x72\x68\x56\xdd\ \x84\x14\x4a\xa8\x1d\xa1\x0a\xcc\x10\x07\x59\xd0\xb8\x33\x6c\x47\ \x8c\x6b\xdc\xe1\x63\xc8\xf5\x4a\xdc\xa8\x89\x0f\xf1\x0b\x96\x4b\ \x2c\x74\x4e\xfe\xfd\x8b\x37\xcd\xbf\x99\x7c\xaf\xf7\x69\xaa\xc2\ \xe1\xc4\xf6\x0c\xd4\x56\x4b\xa0\xa8\xec\xb5\x97\x9d\xc5\xb1\x1a\ \xd0\x22\xd0\xd4\x4d\x5d\x9b\x4f\xcd\x07\x63\x1a\x06\x14\x20\x15\ \x50\x85\x1e\xca\x7b\x97\x29\xa3\xd5\x0a\xf7\x44\x57\xcd\x7e\x6a\ \xdc\x29\x3b\xd3\x4e\x2f\xe6\x45\x8b\xf3\x4e\x1e\x14\x19\x90\x71\ \x46\x1f\x5d\x7b\x6c\xe7\x54\x22\x47\x20\x6b\xbd\xa2\x1b\x51\x0d\ \x02\x47\x0f\x7c\x80\x9f\x30\x3c\x30\x86\x1c\x8f\x86\x1c\xbe\xe1\ \x8b\x9f\x04\xac\xb5\xac\x6a\xd3\x4e\xdc\x8c\x5d\x1a\xa0\x24\x4e\ \xc0\x5e\xca\x07\x4e\x0c\xd9\xe0\x4d\xb0\x56\xdb\xa5\x5f\x7b\xc5\ \x4a\xcd\xd4\xe7\x9d\xde\xc9\x08\x04\xe1\x60\xe3\xdc\x6d\x1c\x09\ \x2b\x2d\x0f\x2c\x9c\x3d\xa5\x18\x0f\xdd\x7a\x9e\xf0\x70\xbb\x86\ \x49\x0f\xe1\x1e\xec\xb1\x3c\x7e\xe1\x2e\xf2\x27\x1f\xb1\x87\x4a\ \x17\xc4\x46\xe5\x44\x2a\x51\x05\xd7\xfe\x84\xe0\x2f\xba\x89\x2b\ \x9b\x72\xe1\x33\x74\xc4\x35\xe1\x4e\xaa\xa3\x6f\xf0\x07\x9c\x39\ \x1a\xe3\x3c\xaf\x1a\x8e\xe6\x9e\x9a\xa4\x9e\x2b\xa0\xa9\x8a\x9b\ \xc2\x08\xde\x05\x7b\x9f\x02\x2a\xa0\x57\xcb\xdd\xfe\xbb\xaa\x4a\ \xdc\xaa\xfe\xa3\x2c\xde\x93\x9d\xd9\x33\xde\xd4\xaf\x30\xe8\x84\ \xde\xd4\xb1\x6a\xdd\x03\x54\x04\x54\x91\x07\x2c\xe5\x09\xcb\x30\ \xe4\xe2\x51\xb2\x92\xee\xcb\x7b\xa0\x57\x45\x8e\x49\xde\xd5\x17\ \x0f\x9d\x33\x62\xf4\x2e\x84\x81\x9c\xfc\x77\x18\x91\x73\x1f\x02\ \x62\xad\xbc\xbd\xad\x5a\xae\xb2\xa1\xf5\x4f\x4c\xf3\x63\x19\x61\ \x5a\x43\xf4\x09\x35\x91\x37\x3b\xcb\xb8\x37\xe0\xa9\x33\xbc\xdc\ \x31\xac\xc9\x01\xac\x9f\xbe\x2e\xcf\x3e\x8c\x90\x01\x4b\xe7\xd9\ \x3d\xd9\xc2\xa8\xe2\x5e\xea\xcf\x5c\xfa\x03\xab\xec\xb5\x67\xc0\ \xca\x57\xac\xd9\x83\x7e\x08\xd4\xfe\x0a\x23\xd0\xd4\xb2\xea\x8c\ \x8a\x4e\x15\xce\x91\x57\x68\xe7\x09\x25\xa6\xa6\x30\xd5\x57\x5c\ \x8d\xd5\x79\x5a\xe9\x3b\xd3\x7a\x2a\x63\x17\xda\xc8\x7f\xf2\xe7\ \x97\xa0\xd2\xcc\xa3\x42\x7b\xa6\xc2\x19\x57\xfe\x7f\x4f\x15\x85\ \x00\x90\x6d\x58\x6d\x11\x1b\xf1\x09\x63\x10\x07\x9f\x90\x02\x27\ \xe1\x25\xdf\x9b\xb3\xe0\x2b\xd3\xf2\xba\xd7\x6b\x9e\x95\xc4\xce\ \x9f\x37\x5d\x22\x87\x3e\x96\xa7\xa9\xd3\x5f\x6b\xe7\xb9\x98\xe2\ \x9e\xcc\xe2\x7f\xce\xec\x29\xc0\xec\xff\xbc\xaa\x4c\x1d\x0e\xd3\ \x5e\xfe\xed\xaf\x60\xe8\x08\xec\x8c\x61\x50\x04\x03\x54\x15\x79\ \xb0\x07\x76\x59\xac\x6b\x8d\x40\xac\xad\xdf\x1b\x8b\x32\xbb\x66\ \x03\x9e\x60\x03\x44\xc5\x6b\x91\x05\xdb\xd3\xa3\x84\xf2\xb4\x84\ \xf5\x41\x50\x94\x23\xa8\x6f\x47\xef\x08\x8e\x68\xd7\x1c\x3e\x0a\ \xc1\xe0\x71\xf4\x07\x40\x94\x05\xb1\x55\xeb\xac\x78\xc3\x5f\x59\ \xaf\xb8\x1e\xbe\x08\xff\xa9\xc4\xee\xe6\x52\xcb\x8c\xdc\x5d\x22\ \x08\x5a\xf1\x03\x8c\xd4\xfd\xfc\xaa\x29\x2e\xca\xfe\x4b\xd4\x72\ \x7e\xe8\x1e\xcf\xec\xcc\x7e\xb0\xac\x2c\xe8\xaf\x60\xf2\x83\xee\ \xd4\xe8\xed\xc4\x49\x41\x01\x03\xe4\x5c\x00\x72\x7b\x14\x9a\xa7\ \x6a\x7a\xa7\xd0\x95\x2a\x0e\x37\xb2\x4a\x08\xef\x14\x14\x93\x0f\ \xf4\x38\x1e\x44\x11\xb4\xd4\xd1\xd6\xb5\x76\xba\x9d\x63\xdb\x66\ \x8a\xd3\xac\x11\x6f\xa0\x14\x7c\x50\xf0\xc4\x7d\xf5\x46\x4c\xf0\ \xc4\xad\xeb\xe1\x4b\xaf\x97\x7c\xc9\x32\x50\xd9\x60\x2f\x74\xb6\ \x99\xc0\x01\x5c\xca\xa5\x5c\xc4\x56\xdb\xd4\x28\x7e\xc0\xb2\x3a\ \xb5\x45\xfd\xf1\x06\x1c\xed\x30\xfe\xec\xb0\xfa\x03\xe9\x3d\xe8\ \x23\x70\xf2\x27\x4f\xf2\xc8\x7f\xed\x58\xeb\xde\xef\x2d\x1d\x5d\ \xfe\xc0\xbb\x71\xdd\x5d\x5e\x4d\x9d\xf6\xd4\x52\xbe\x53\xa2\xf5\ \x54\x18\x90\x23\xdb\x8b\x11\x68\x9a\xa5\xfd\xd4\x83\x0e\xa4\x7e\ \xf4\x54\x62\xf9\x83\x6b\x32\xd2\x2a\x80\x85\xaa\x64\x9e\x98\xcd\ \x82\xf2\xa4\x78\xb7\x04\x37\x2c\xb5\xf8\xa0\xf5\x64\xae\xf5\xf3\ \xda\xb8\xbc\x24\xfb\xa9\xcf\xd8\xfe\x1b\xa6\x00\x21\x82\xcf\x99\ \x14\x7f\xfe\xc8\x40\x68\xb0\x48\x0a\x86\x29\xce\x9c\xe1\x13\x6e\ \x04\x1f\x81\x0f\x19\x8a\x38\x53\xa4\x88\x8c\x85\x45\x7e\xa4\x10\ \xf1\x43\xc4\x48\x92\x23\xc3\x85\x7b\x95\x52\xe5\xab\x93\x2d\x47\ \x8c\x38\xc9\xc7\x09\x05\x0a\x45\x42\x84\xe8\xd2\x05\xd4\x2e\x5d\ \xba\x60\x99\x31\x03\xeb\xe7\x1e\xa0\x66\x3c\x2c\x43\x92\x54\xe9\ \x32\x0f\x1e\xf6\x30\xe9\xc9\xe4\x68\x52\x68\x55\xa1\x21\x59\x96\ \x15\x49\x55\x2d\x5d\xbd\x42\xd3\x02\x0d\x9d\x55\xab\xc0\xcc\x9e\ \x05\x96\x43\x6d\x0e\x50\xa3\x46\x2d\x79\xeb\x16\x2e\x5c\xb7\xa0\ \xec\xba\x95\xfb\x16\xc0\x12\xba\x7c\x01\xfc\x05\x1c\x78\xef\x16\ \x0a\xf8\xb6\xdc\xb8\xb1\xe4\x86\x8c\xc3\x4b\x64\xe0\x23\xb8\x85\ \xb1\x8c\x3f\x5b\x24\x4f\xde\xf2\xe6\x8d\x8c\x37\x97\x11\x6e\xfe\ \x2c\xf2\xa7\xe1\xc3\x6a\xe1\xf8\x4c\xac\x46\x30\x34\x42\xc9\x06\ \xff\x2c\x74\x78\x46\xe0\x4b\xd3\x04\x53\xfc\x50\x9d\x42\x23\x6e\ \x8f\xb8\x7d\x8b\x14\xd1\x12\xe5\x21\xe2\xc4\x5f\xc1\x14\x1e\x6e\ \xe4\x40\x9a\x14\x6e\xb6\x69\xe3\xc6\x0d\xac\x3d\x7b\x96\x79\x0a\ \xea\xc9\x83\x19\xad\x55\xaf\x58\x4d\xca\xd4\x53\x36\x0f\x9e\x3c\ \x2d\xdd\x0a\x9e\x6a\xd5\xb1\x64\xdd\xab\x47\x6b\x76\xad\x5d\xb6\ \x79\xf1\xb6\x1d\x85\x5f\x2e\xdf\xb8\xfc\xf1\xba\x15\x4c\xb0\x51\ \x42\x50\xa1\x1a\x0a\x10\xe3\xeb\x06\xcd\xde\xb8\x21\x85\x70\x92\ \x48\x41\xc1\x37\xf0\x31\xa8\x33\x84\x38\x63\x6c\xb3\xcd\x2e\xa4\ \xcc\xb5\x3f\x28\x38\xa3\xb4\x6a\xb2\xa8\x86\xb9\x82\x0e\x52\xe8\ \x35\x87\x62\x0b\x2e\x9c\x2c\x60\x1a\xc9\xa2\x87\x3e\xfa\x48\x36\ \x8f\x8a\x38\x03\xb7\x90\x94\xe3\x11\xa5\x57\x8a\x3b\x24\x25\xe4\ \x94\x93\xd1\x09\x3e\x28\x08\xc3\x39\x0a\x2c\xc8\xc6\x06\xa2\xf6\ \x70\x4a\x28\xa3\x8c\x42\x6a\x2b\xa5\x96\x42\xea\x8a\xef\xda\xb3\ \xe6\xba\xad\x9e\x09\xcb\x2a\x74\xda\xc3\xaa\xa8\xa2\x98\x6a\x0a\ \xa8\x1c\xd0\x52\xcb\x2e\x50\xd8\x02\xc6\x4d\xfa\xde\x6c\xfe\x13\ \x3f\xbe\xee\xf4\x8f\xae\xfb\xf0\x0a\xf0\x0d\x0a\x06\xf8\x84\x8f\ \xc4\x14\x7b\x43\xb1\x25\xde\x48\x01\x88\x70\xfe\xe0\xeb\x0d\xd7\ \x24\xeb\x4c\x41\x49\x35\x93\xb0\x35\xca\x28\x63\x28\xc4\x11\xaa\ \xd9\x94\x0f\x86\x2e\xbd\xb4\xa1\xd8\xce\x30\xed\x25\xda\x62\xa4\ \xf1\x21\xd9\x44\x5a\xe8\x87\xde\x48\x52\xce\xa4\x93\x54\x32\x2e\ \xa5\x93\x44\xd0\xc8\x21\x11\xaa\x99\x29\x0c\x1e\x2c\x68\x22\x9b\ \x3d\xdc\x20\x4a\x28\x58\x98\x00\x6a\x3b\xee\x8e\x9a\xea\xca\x65\ \xc4\x72\x41\x8b\x68\xc3\x3b\xef\x3b\xb0\xde\x5b\x26\x28\x5d\x04\ \xc9\xa1\x27\x29\x83\x32\x63\x8f\xb4\xce\x5a\x8b\x2d\xb5\xe4\x2b\ \x77\xcd\x3a\xdf\xf2\xeb\xce\xbd\xf4\xac\x6b\x2d\xbd\x02\x1b\x85\ \x82\x11\xf1\x41\x90\x41\xc5\xfe\xe0\x23\x09\x20\xf8\x78\x03\x00\ \x47\x13\xca\x90\xd2\x05\x25\x5c\xd0\x52\xd1\x52\x00\x91\x8f\xd2\ \x1c\x56\x8d\x43\x83\x32\x7d\x68\x24\x53\x93\xa1\xed\xd6\x90\x4a\ \x22\xe9\x07\x57\x69\xf4\xd8\xa4\x8d\x85\x3b\x8e\x56\x96\xc2\x49\ \x75\x57\x27\x0a\xac\xe6\xd7\x61\xab\xdb\xc3\x5b\x28\x95\x4d\x36\ \x4d\x0f\x6c\x68\x6a\xaa\xef\xc2\x73\xca\x93\x2a\xaf\xfe\x40\x02\ \x68\xf5\xb6\x83\xa5\x27\xfa\x7a\x7a\x0a\x4a\x71\xd3\x2a\x57\x4e\ \x38\xd1\x5d\x33\xad\xbb\xf8\x0b\x70\xae\x25\xfe\x82\x8b\xce\x79\ \x01\x18\xa5\x8b\xe6\x28\xf8\x43\x5f\xc4\x34\x4b\xf4\xc1\x33\x0a\ \xb5\xd0\x20\x48\x17\x6c\x94\xc1\x05\x2f\x44\x51\x34\x10\x4b\xa4\ \xfb\x44\x0e\x39\x1a\x75\x39\x53\x47\x38\x2e\x99\x96\x38\x8e\x35\ \x24\xdf\x3c\x82\xb5\xa5\x1f\x92\xf3\x51\xa5\x96\x64\x1b\x89\x02\ \x27\x78\x35\xc6\x18\x1e\xdc\x60\x82\x09\x98\x61\x56\xd6\x58\x33\ \x8b\x6d\xea\x3a\x6b\xcc\xbb\x1c\x29\xf3\xb4\x2b\x2f\xab\x34\xa9\ \xdc\x6e\x0f\xcd\xcb\x2b\xcf\x93\x73\xeb\x6c\x6b\x4e\x75\xdd\x6c\ \x53\x2f\xbf\xf0\xf2\xeb\xdd\xab\x01\xe3\x2f\xf7\xbd\xba\xc8\x83\ \x02\x3e\x0c\x63\x70\xd0\x1b\xf0\x01\x42\xd1\x14\x32\x5b\x0c\xc5\ \x82\x32\x73\x5b\xc1\x43\x0f\xad\x34\x21\x15\x63\x3b\x4d\xd5\xd5\ \xe0\xfe\x43\x55\xc6\x61\xca\x22\x99\x92\x8f\x83\x11\x56\x91\x42\ \xf6\x38\xfd\x90\x11\x8f\x95\x64\x96\x86\xcc\xf1\x0c\x9a\x1e\x6f\ \x39\x8f\x36\xf2\xa8\xce\x93\xcb\x83\x2a\x5a\x17\x26\xa8\x0b\x17\ \x00\xa1\x04\xba\xa7\xfc\x6f\x80\x04\xbc\xdc\x50\xfe\xb8\x63\x25\ \x2c\x95\x07\x09\xa3\x63\xcb\x5d\xea\x22\x41\xdc\xc1\x8b\x5d\x58\ \xcb\x5a\x05\x47\x51\x35\x77\x05\xa6\x0b\xd5\xa8\x86\x0a\xc2\x96\ \xa0\x46\x21\x2f\x19\x9e\x72\xdb\xa5\x5c\x53\x30\xcd\xdc\x09\x6d\ \x9a\x91\x98\xa8\xe4\x17\x22\x82\x1c\xe4\x6e\xba\x51\x95\x40\x24\ \x62\x2a\x21\x9d\x8c\x47\x23\x51\x9f\xe0\x34\xd2\x1b\x8f\xb1\x0f\ \x71\xef\x93\x08\xca\x1c\xf2\x83\x30\xf0\xaa\x1a\x61\x08\xc1\x2e\ \xa2\x93\x0d\xed\x54\xe7\x58\xb0\x30\x97\x4f\xaa\x13\x14\xd5\x5d\ \x6e\x58\xff\x23\xd6\xe8\x9c\xd2\xc5\x9c\xe5\x8c\x2a\xd6\xf2\x8e\ \xe8\x46\x37\xb5\x3b\xfd\xc7\x5d\x78\xea\x4f\x1c\xeb\x52\xc1\xdd\ \x05\x28\x40\x5d\x50\xc5\x27\x28\x20\x03\x3c\xed\xcb\x5f\x40\x10\ \x01\x3e\xde\x56\x99\x15\x42\x2f\x31\x68\xdb\x4b\xc2\xe0\x06\x9b\ \x14\x84\xc1\x7b\x1a\x21\xd8\x67\x56\xc4\xb8\xd3\x8c\x40\x7c\xaf\ \xa8\xc7\x71\xfe\xd6\x22\x8f\xf5\x66\x88\x43\x14\x89\x70\x5a\xe4\ \x92\xbd\xf9\x70\x24\xb7\x71\x5c\xaf\x72\xd2\x85\x36\x5c\xce\x0d\ \xfe\xdb\x85\x9b\x7a\xe2\x13\xea\x18\xeb\x49\x63\xec\x59\xe9\x48\ \xd7\xb9\x2a\x25\x05\x68\x0f\xcc\x92\xb5\xb4\xfe\xa4\x14\x6b\xe8\ \x07\x6b\xfb\xf1\x5d\x1f\xe3\xa2\xc1\xfc\xb8\xb1\x8e\x76\xc4\x5a\ \x1e\xbe\xf0\x89\xb3\xed\xce\x31\xf8\xe0\x43\xf2\xc2\x91\x02\x41\ \x2a\x88\x7b\x36\x84\x1e\x22\xa7\x07\xc3\x0d\x4d\x4c\x37\x0e\x01\ \x91\x13\x0a\x72\x43\x86\xb4\x4a\x36\x3b\x1c\x41\x26\x4d\x19\xb2\ \x8e\xa9\x0f\x34\x1c\x21\xa2\xfa\x42\x89\x12\x1f\x25\x67\x24\x38\ \xfa\xc1\xe3\x6c\x52\xa8\xae\xed\x82\x09\x94\xd3\x85\xd3\x7c\xf2\ \x3f\x5b\x1a\xb0\x3a\x1e\x58\x03\x44\xc5\x68\x9e\xa6\xec\x61\x97\ \xbe\x04\x5a\x15\x07\xa8\xa5\x8c\x22\xc1\x1a\x48\xe8\x4b\xef\x90\ \xc9\xbb\x3e\xf6\x0e\x2e\x7b\xf9\x0f\xee\xd8\xf5\x4c\x7a\x19\x03\ \x01\x25\x38\x10\xd6\x26\xf4\x47\x20\x2c\xef\x6d\x69\x63\xcc\x41\ \x0c\xd6\xc7\x05\x6d\x88\x32\x0b\x21\x48\xfc\xe4\xa7\x9b\x8d\x7c\ \x46\x34\x1d\x91\xcd\xa6\x5e\x92\x05\x4c\x9e\x0a\x38\x3b\x24\x1f\ \x72\x3a\x79\x38\xc4\x0d\xa9\x25\x2c\x29\x99\x70\x3e\x82\xa3\x27\ \x16\xa1\x50\x6d\xdc\x45\x2c\xf1\x03\x0a\x99\xa9\xce\x80\x0c\x85\ \x99\x27\x22\xaa\x3f\x2f\x26\xd0\x80\x66\xa8\x16\x76\x8a\x46\x1d\ \x07\x8e\xee\x3a\xba\xb3\x60\x4a\xf3\xd2\xfe\x47\x94\x5a\x53\xaf\ \x29\xf5\x1d\x60\x42\xf0\x85\x69\x86\xed\x2f\x37\x10\x4d\x12\x5e\ \xe1\x37\x19\x1c\x32\x9c\x5b\x88\xdb\xda\x5a\x18\xb0\xb6\xc1\xf0\ \x35\x0b\xfb\x41\x3a\x1f\xa2\x11\x1b\x7e\x46\x35\x15\x5b\xea\x4b\ \x5e\x61\x8b\xa6\xf2\x6d\x04\x87\xb0\x45\x6a\xe3\x60\x8b\x2a\xa4\ \x36\xb5\xad\x45\xad\x6b\x65\xfb\x3e\xe4\x98\x16\x89\x27\xf1\xcd\ \x6d\xc2\xc0\x19\x38\xde\x67\x27\xbb\x10\x8a\x15\x55\x57\x4b\x62\ \x51\x67\x80\x63\xac\x0e\x43\x19\x9a\xd0\x5d\x74\x4b\x28\xa9\x13\ \x4a\xb7\x68\xf9\xa4\xb5\x62\xd0\x2d\x11\x8c\x9d\x9c\x56\x9a\xbb\ \xb9\x58\x77\x2e\x7a\xed\x20\xef\x2c\x80\x8a\x2f\x80\xed\xab\x8e\ \xa2\x69\x84\x64\xda\x19\xcb\x76\x76\xb2\x25\x7d\xdb\x67\x72\xb5\ \x22\x27\xa8\xa6\xa8\xf8\x24\x08\x8d\xc2\x51\x0f\xa6\xd6\x23\x9e\ \xab\x6d\x6d\x1c\xe2\x90\x81\x01\x67\xc0\xc0\x04\x16\xf0\x81\x05\ \x9c\xe0\x01\x0b\x58\xb6\xc4\x39\x89\x6d\x23\x1c\x8e\xfa\xa6\xc0\ \x09\x4c\xdc\x48\xc0\x50\x3a\xc1\xb0\xea\x62\xb8\xb5\x34\xa0\x2d\ \x41\x6c\x39\x2b\x42\x85\x96\x3d\x61\x8b\x2e\x9c\x6b\x2c\xa3\xbd\ \xc9\x5b\x57\xdc\x83\x20\xac\xfb\x26\xfe\xa9\xcd\x49\x82\x01\xda\ \x0f\x5e\x4b\xda\x2e\xc1\x2c\xa1\x0d\xaa\x28\xc1\x27\xc2\x76\xb0\ \x3f\x84\x43\x7c\x40\x30\x6c\x22\x7b\x7a\x99\xca\xf4\x74\x7a\x8d\ \x1a\xe7\x22\x45\x53\x23\xf9\xfd\xe0\x35\xf7\xbc\xcd\x8c\x48\x15\ \xcf\x78\x66\xa1\x1e\xb6\x28\xf0\x81\xc5\x6c\xe0\xd5\xda\x41\xc1\ \xa9\x1d\xb3\x83\xed\xe0\xe0\x93\xf1\x2d\x89\x52\xbd\x8d\x13\x9c\ \x00\xc5\x37\x74\x61\x09\x5d\xc8\x4f\x76\x67\x19\x15\xff\x5d\xf1\ \x7f\x2f\x86\x8a\xb1\x84\x32\x4b\x41\xef\x59\xd0\x82\x28\x1a\xed\ \xf6\xfc\xbf\x1c\xf4\x75\x82\xfa\x71\x13\x80\x48\xca\x27\x92\xb2\ \x94\xa5\x81\x59\x82\x05\x08\x4b\x4d\xcd\x1c\x06\x51\x40\x78\x85\ \xa2\xf0\xd1\xae\x9e\x76\xfa\x42\x4e\x7e\xb2\x92\x61\x88\xcf\x5c\ \x7d\xa4\xc2\xae\x3a\x48\x68\x70\x24\x54\x4e\xed\xad\x1e\x09\x1e\ \xb3\x98\x57\xfb\xe5\x0c\xac\xd9\x16\x1e\x1b\xed\x82\x6d\x91\x49\ \x5b\x90\xd9\x16\xb3\xf2\x11\x4c\x3a\x79\x86\x30\xd0\x8f\x07\x61\ \x68\x43\x58\xa5\x2d\x27\xe6\x46\x45\x28\x26\x56\xb1\x2e\x78\xd2\ \x13\x41\xec\xb9\x5b\x82\x40\xab\x71\xc1\x25\x68\x2c\xce\x52\xba\ \xa0\xa8\x9c\x20\xb2\x76\xe3\x77\xfe\xf9\x96\x5d\xf7\xa9\x4f\x8f\ \x03\x0b\xcd\xbd\xec\x82\x1a\x66\x46\x80\x57\x11\x96\xa8\x64\x00\ \x21\x09\x23\x9c\x54\x4f\x27\x83\x10\xb7\xbd\xd7\x85\xab\x96\xf5\ \x39\x1d\xa9\x4e\xa2\x82\x06\x24\x31\x72\x42\xac\x4c\x75\x6b\x33\ \xe7\xda\xc0\x76\x08\x87\x46\x7c\xf4\x83\xdd\xbd\x61\xbf\xf5\xc8\ \x78\x11\xc2\x01\x66\x04\xdb\x22\x48\xb4\x45\x99\x6f\x42\xe4\x8e\ \x6a\x60\x21\x0f\x38\xc1\x73\x2c\x13\x1a\x69\xbb\xf0\xc4\x72\xc6\ \xc2\x36\x8a\xb3\xdd\x2d\xe9\xd2\xf2\x27\x66\x0a\x20\xb9\x99\xbb\ \x13\x74\xff\x8f\xc6\xdc\x9a\x57\xbb\xf2\x2c\x27\x39\x25\x13\x4f\ \x95\x0e\x2f\x5c\xb2\x51\xf1\x38\x24\x19\x00\x0d\x0a\x47\xf2\x44\ \x30\xc2\x83\x19\x6c\x60\x1c\x7a\x2f\xda\x0e\x85\x70\xd8\xd0\x28\ \xce\x44\xc5\xa7\x85\x45\xe0\x84\x91\x38\x61\x04\x0b\xaf\xc7\x97\ \xc3\x4c\x66\x07\x8b\x00\x6d\x32\x70\x95\x86\xff\xf2\x86\x1b\x15\ \x4a\xe4\x24\x17\xb6\x2d\xdc\x1c\xb8\x8f\x60\x61\x53\x2e\xcf\xc9\ \xa3\x9b\xe9\xa6\x6d\x1b\xb0\x29\x55\x2c\x5a\x73\x75\xde\x2d\xb2\ \x4a\x37\x81\x83\xee\x9f\xb9\x99\x4e\xe2\x1c\x20\x5a\x10\x82\x90\ \xf4\x77\xb3\x96\xae\xb6\x04\xfe\x36\x2e\x98\x6e\x26\x32\x77\x62\ \x0c\x66\x28\xf8\x0c\xbe\x43\x54\x38\xce\x20\x48\xb7\xb5\xad\x7a\ \x06\x39\x35\xc1\xc3\x4e\xf6\x56\xe1\xc8\x91\x67\x50\x27\x67\x35\ \x22\x9b\x6a\xac\x3d\x47\x01\xe5\x54\xdc\xe3\x50\x71\x04\xaf\x76\ \x04\x7c\x6c\xd4\x46\x9e\xe9\x18\xce\x00\x86\xef\x68\x1e\x30\x6c\ \x35\xe9\xb1\x1c\x15\x61\x65\x58\x40\x92\x9d\xf3\x9a\x9f\xb0\x9a\ \xd8\x80\xe6\x49\x8a\x76\x18\x7a\xed\x63\xe9\x9c\xac\x7b\xa6\x1d\ \x9d\xc8\x2a\x41\xbb\x54\x4e\x2a\x74\xe2\x56\x7d\xf6\xb4\xcc\x39\ \x3d\x9d\xa4\xa8\xcf\xae\x94\xb2\x81\x31\x18\xb3\xd7\x9b\xbe\x70\ \x52\x10\xdd\x29\x35\x0f\xc1\x3d\xdd\x9b\xac\xf8\x4a\xb8\xdb\x00\ \x09\xb6\xcb\x11\xb4\x2b\x82\xb5\x5b\xbb\xfa\x92\x33\xb7\x2b\x81\ \x7a\xb8\x03\xb9\x03\xb3\x35\xb3\x03\x5b\xb8\x83\x22\x68\x14\x8e\ \x80\x3e\xde\xe1\x0c\x0d\x3b\x14\xbc\x3b\x2d\x30\x0b\xbc\x90\xc8\ \x95\x22\x70\x9c\x96\x09\x81\x37\x78\xb7\xef\xaa\xbf\x3f\xeb\x30\ \xa9\x18\x1d\x31\x32\x8a\x9c\xe1\x1f\x14\x93\xbf\xec\x62\x3c\x73\ \x51\x0b\x6f\x29\x1d\x24\x30\xc2\x08\x02\xac\x76\xa1\x9a\x4b\xb3\ \xa3\x0c\xda\xab\x51\xa0\xfe\x86\x34\x0b\x2f\xdd\x91\x9e\xab\xe1\ \x29\xcd\x40\x11\x82\xb1\xa1\x52\x83\xc0\x4f\xca\x32\xe0\x13\x01\ \x0b\x6c\x15\xb6\x6b\x36\x0a\x08\x07\x77\x88\xbb\x7a\x10\x81\x78\ \xfa\x32\xd5\x5a\xad\x63\x2b\x2a\x48\x62\xc1\x0d\xd1\x0c\x99\xfa\ \x8c\x38\x04\xbc\xd4\x42\x19\x50\xe2\x15\x2c\x70\x82\x3c\xb0\x33\ \xbd\xaa\x39\x6d\x63\x02\xb1\x2a\x3a\xc7\x2b\x8f\x8f\xf2\x25\x8a\ \x1a\xc2\xf7\x53\x34\x42\x0b\x2e\x8b\xf2\x04\x8e\xb2\x0a\xde\x19\ \x85\xfa\xb0\x93\xa8\x93\x42\x7a\x93\xb7\x77\xb9\x42\x31\xe3\x83\ \x79\xab\xb4\x77\xf9\xaa\xb1\x5b\xb5\xbb\x71\xc0\xf3\x6a\xc5\x4f\ \x22\x9c\xb5\x73\x95\xfb\xf2\x08\xe0\xb3\x30\x39\x1b\x81\x3b\xe8\ \x40\x27\xb8\x83\x70\xb8\x83\x5d\xf4\x05\xd9\xf2\x85\x11\xa8\x45\ \xe9\x6b\x41\x3c\x24\x29\x9f\x2a\x82\x11\x60\x2d\xd2\x52\xb6\xe1\ \xa3\x9f\x95\xb9\x09\x3c\x73\x0b\x46\x14\x2b\x9e\xb8\x8b\xf9\x93\ \x25\x8b\x7a\xa0\xa0\x19\xa6\x8a\xea\x1f\xa2\x38\x8f\x20\x54\x96\ \x8d\xba\x02\x3a\x78\x86\x67\xb0\x03\x30\x81\x86\x67\x98\x34\x64\ \xca\x42\x51\xa4\x47\x79\x2b\x01\x5d\x2b\x14\x51\xb4\xa6\x27\xab\ \x2c\x82\xbb\x1b\x31\xfe\x64\xc5\x56\xc4\x9b\x5b\xe4\x0d\x48\xe2\ \x88\x90\x61\x3b\xb7\x73\x87\x11\x58\x48\x77\x00\x46\x39\xa3\x30\ \x27\xa8\x07\x5f\x58\x2d\x5f\x00\xb9\x40\xc4\x90\xc3\x71\x02\xaf\ \xe2\xc2\x80\xdc\x8c\x91\x3b\x36\x8f\x19\x01\x86\xfb\x81\x91\x7c\ \x9c\x30\x08\x83\x55\xea\x02\x69\xcb\x46\x0a\x62\xba\x9d\x40\x1a\ \x73\xdc\x25\x6d\x79\xae\xef\x78\x06\x17\x80\x06\x8e\xc2\xa8\x68\ \xb1\x83\x9e\xb4\x83\xb0\x08\x0b\x79\xf3\xbf\x7a\x24\xca\xaa\x69\ \x03\x02\x3c\xb0\x70\x08\xc5\xaa\x11\x27\x55\x2b\x35\x0c\x71\x32\ \xca\x62\xc5\x0b\xd9\x0d\x91\xb8\x30\x57\xe1\x10\x8f\xd0\x45\x27\ \x20\x44\x93\xdc\x45\x98\xd8\x40\x11\x08\xc6\xb8\x1b\xb6\x89\x7c\ \x89\xf4\xf1\x2f\x8f\xe1\xad\xbb\x6b\x21\x19\x10\x01\x38\xf4\xaa\ \x59\x7c\x89\x12\xd8\x14\x26\xea\x02\x1c\xc4\xc1\x51\xd8\x85\xbf\ \xa2\xb9\x6d\xcb\x36\x42\x0b\x3a\xcc\x93\x99\x4c\xb4\x0a\x9c\xe4\ \xa8\x2b\x00\x93\x67\x30\x81\x9b\x44\x23\x68\xc0\x34\xbe\xaa\x9a\ \xad\x29\x4a\x68\x32\x06\x31\xa3\x07\x54\x9c\x42\xb6\xd9\x47\x8f\ \xd4\x90\x15\xd4\xcc\x17\xe2\x3d\xe0\xe8\xa4\x3b\x5c\x9f\x85\x6c\ \x43\xb7\x0b\xc6\xfe\xd4\x8c\x38\x77\x48\xc8\xd5\x8c\xa7\x61\x9b\ \xb8\x37\x14\x22\xb0\x2b\x14\xbc\xcb\xbb\x43\xf1\x3e\x5d\xe4\x14\ \xf0\xf3\xaa\x55\x54\xa9\xff\xd0\x33\xb2\xda\x36\xbf\xe4\xb6\x36\ \xe1\xb9\x84\x52\x8b\xe0\x32\x47\x5f\x7a\x47\x2d\x58\xc7\xab\x30\ \x8a\xa0\x81\x86\x3a\xea\x48\x68\xaa\xce\xc9\xd4\x1d\xc1\xb8\xc7\ \x03\xe3\x23\x0c\x0a\xc5\xca\x82\x42\x31\xc4\x10\xa8\xd4\xcc\x71\ \xea\xcc\x83\x0c\x28\xb6\xab\x45\xf9\x0a\x28\x86\x64\x4d\x86\xfc\ \xca\x3b\xd8\xc0\x5f\x74\x87\xf4\xd9\x8d\xfd\xda\xc5\xfd\x4a\x2d\ \x8b\xf4\x2f\xb0\x94\xc1\x0c\xe3\x3b\x64\xe4\x3b\x8c\xe0\x14\xba\ \x64\xb9\x30\x58\x45\x38\xe2\x8f\xec\x8a\x25\x46\xac\xbc\xe6\xaa\ \xbc\x97\x9c\x13\x08\xcd\x36\x29\xf1\x00\xe9\x24\x0b\x65\xc1\x8a\ \x65\xd8\x2e\x0e\x4a\x26\xec\xfc\x8b\x0b\x0a\x0c\x54\x38\xb0\x7a\ \x20\x35\xbd\xe3\xa0\xc9\xe2\x1d\xb6\xf4\xcc\x53\x43\x35\x8f\x64\ \x4f\x0c\x5c\x4f\x7c\xf2\x98\x88\x1b\xc9\xf8\x0c\x46\xb7\xd3\x51\ \x8c\xfc\x0c\xf5\xf1\xc5\x89\xb4\x85\x61\xf4\x05\x21\xf5\xaf\x0b\ \x83\x24\x3c\xc4\x4d\x1b\xa5\x4b\xba\xc4\x82\x22\xb8\xcb\xef\x42\ \x44\x98\xd4\xfe\xb6\x08\x9a\xb9\x99\x93\x1d\x15\x9b\x0f\x9f\xf3\ \x89\x6d\xf9\x96\x2c\x79\xc7\xaa\x00\x26\x65\xa9\x20\x0f\xc5\x4c\ \xec\x4c\x26\x12\x35\xb0\x33\x08\x8c\x3d\x7c\xcc\x1d\x5b\xc6\x9b\ \xf2\xa9\x38\x2d\xcf\x17\x8a\x51\x39\x9b\xd1\x83\x54\x48\x88\xbc\ \x83\x0f\xf4\xc0\x3d\xed\xd3\x8d\xd4\x3d\x1a\xed\x8d\x78\xe2\xcf\ \x2f\x43\x85\xb2\xf4\x2f\x0c\xbc\x30\xde\x72\xc1\x11\x58\x52\x47\ \x7d\x22\x19\xb8\x4b\xbe\xec\xb0\xf9\x93\xb9\xf7\x4b\x28\x15\x93\ \x3c\x2d\xd5\x36\x9f\x20\x1d\x2e\x2a\xa3\xce\x09\x1a\x70\x4c\x3f\ \xed\x30\x03\xdc\x99\xc2\x79\x04\xd1\x29\x44\xca\x38\xe8\xce\x54\ \x6d\xa1\x92\x5a\x46\xce\x6c\x45\x0d\x99\x53\x08\x0c\x28\x0a\x5b\ \xcf\xcd\xf0\x88\x5f\xfc\x45\x5f\x94\xc3\x37\x9c\xc8\x7a\x90\xb3\ \x21\x42\x41\x50\xd2\xca\x1b\x1d\x4b\xff\x5a\xd6\x37\x84\x89\x0c\ \x73\xcb\xb8\x7b\x29\x27\x92\xb3\x6a\xc4\xc1\x95\x8c\xb6\x69\x63\ \xba\x4c\x75\x3f\x43\x83\x99\xf6\x83\x92\xa0\xd9\xa5\xba\xa2\x28\ \x5d\xfa\xc1\x2a\x1a\xca\x1e\x5b\x55\xa2\x7c\x03\x12\x8d\x83\x7a\ \xc8\x47\xa6\x64\x1b\x16\x74\x3a\x5a\x8d\x2f\x07\xec\x42\xcd\x00\ \x25\xf5\xfe\xc4\xca\x1e\x05\xc6\xd3\x04\xc6\xb8\xb3\xc8\x81\xf5\ \xc0\x94\xab\x4a\x7d\x42\xd8\x0d\x4c\x48\xb2\x74\x56\xac\xfc\x01\ \x8a\x8b\x83\x62\xe4\x95\x5e\xb9\x41\xb7\x60\xa5\xca\xd1\xb6\xb0\ \x92\xd0\xc6\xc3\xd8\x44\xb4\x3f\x12\xf3\xa5\x52\x1d\x9d\x52\xed\ \x19\xed\xa0\x22\x98\x21\x96\x37\x2a\xd3\x77\x99\xcc\x95\xed\x02\ \x04\x00\xb3\xb3\xb1\x4e\xd0\xe4\x2b\xea\x84\xb2\x27\x13\x38\xcf\ \x4c\xd0\xca\x0a\xd0\xf4\xec\x24\xaa\xac\xd1\x5f\xf5\x53\x5f\xf0\ \x53\x71\x88\xbb\x3b\xa8\x4f\x7d\x52\x58\x3b\xad\xc5\x1a\xf5\xd1\ \x1c\xfd\x38\x63\x0c\xa8\xe5\x43\xb0\x7a\x70\x07\xe0\xc3\x02\x94\ \xbc\xcb\x3a\x93\xa2\xbd\xfc\xab\xfb\xf0\x9f\x9b\x83\x8a\xf2\x23\ \x31\xfd\xa9\x16\x8f\xca\x0a\x35\x1a\x1d\x98\x39\xa8\xb6\xa2\x0e\ \x38\x72\xc2\x9a\x55\x55\xeb\x5c\xca\x37\x70\xbb\x8d\x98\x59\x31\ \x14\x27\x9b\x6d\x9b\xb1\xeb\x47\xcf\x3c\x14\xef\x6c\x41\x1a\xb5\ \xcf\x3b\xf4\x88\x87\x8c\xb8\x0f\xb4\x48\x3f\xdd\x53\xf9\xbc\xca\ \x66\x93\x33\xd5\x7c\xdc\x8f\x09\x28\xca\xe5\x57\x89\xf4\x2f\xfd\ \xa4\x3a\x12\xbc\x30\x94\xd4\x88\x43\xb4\x46\x28\x05\xce\xdf\x22\ \xb1\xfe\xe4\xb2\xbf\x30\x1a\x9d\x8f\xaa\xa2\xd6\xf9\xc1\xea\x98\ \x8e\xca\x31\x2e\xfd\x21\x31\x3c\x01\x85\x1a\x5b\x26\xab\x59\x59\ \x33\xfd\xaa\x99\xb5\x57\xc8\x14\x5c\x58\xe4\xcc\xc0\xc5\xb4\x9e\ \x02\xa5\xd1\x84\xa1\xde\x48\x5c\xc5\x15\x58\xa4\x65\x4d\xa6\xbd\ \x30\x5f\x6c\x5c\x3b\x0d\x83\x8f\xb9\xca\x1a\xd5\xd5\xf4\x71\xbb\ \x5d\xbc\x83\x61\xbc\xb8\x8a\xec\x5c\x57\xd9\x5a\x3d\xe9\x8b\x47\ \x23\x2b\xd8\x6d\xab\x35\xa8\x8e\x35\xd0\x92\x16\x60\x0a\x2f\x9a\ \xa8\xf2\x40\xd9\xfc\x19\x0f\x0f\x20\x96\x3d\xe8\xc8\xa6\xeb\x50\ \x96\x5d\xd7\xa2\x84\xaf\xa7\x34\x38\xbe\x75\x21\x28\xd3\x5b\x54\ \x1c\x3b\x1a\xdd\x48\x00\xad\xca\xf9\xf4\xc0\x3e\xfd\xd5\xca\xad\ \x5c\xc8\x6d\x5c\x62\x0d\x03\xad\xdc\x40\xeb\xfd\xc5\x94\x2b\xa2\ \x5f\x1c\x81\x61\x5c\xb0\x43\xf5\x85\x62\xdd\x2d\x49\xad\xb3\x55\ \xd2\xb3\xa8\x68\x5b\x57\xda\x83\x35\x30\x8f\x2b\xf8\x1c\x8f\xba\ \x0a\xf4\xad\xdf\xfc\xf1\x12\x8f\x52\x8a\x73\xa5\x28\x9f\xf1\x04\ \xa1\xf4\xdd\xfd\x9d\xcc\x52\xe3\x42\x81\xf4\xe1\xe9\xeb\xa0\x00\ \x06\x4d\x44\x7a\xcc\xb7\x21\x22\x00\xe5\xbb\xa0\xfd\xc0\xc6\x8d\ \xfe\x5e\x3b\x7d\xde\xa0\x65\xe0\xc7\x85\xde\x36\xfc\xd7\x3d\xd5\ \xd5\xe7\x05\xc6\x3b\x78\x85\x61\x3c\xd4\x20\x25\xd6\x03\x0e\x01\ \x19\xb8\x89\x10\xb0\x9f\x8f\xa5\x8e\xd2\xfd\x41\xf4\x7d\x99\xf3\ \x60\x5f\x15\x56\xab\xb4\x6a\x9d\xd6\xa1\x61\x2d\x91\x82\x9c\x5c\ \x5f\xac\x70\x8a\xeb\xc8\xe1\x36\x5d\x4a\x1e\xa6\x47\x81\x5b\xc5\ \xcd\x20\xa4\x57\x44\xd1\x54\x15\xe0\xa8\x94\xc2\x64\xbc\x11\x25\ \x46\x5e\x5f\xfd\xd5\x87\xa4\xb0\x2c\x9e\xcf\x3b\x30\x5a\x0f\x6c\ \xde\xc8\xdd\x45\x5f\x0c\xd8\xcc\xe5\x64\x60\xe5\xd3\xa3\x3d\x5a\ \x0c\x43\x88\x31\x0e\x81\xc9\xc9\x03\xe9\x20\x96\x8f\xc5\x44\x8f\ \xd2\x28\xf9\x05\x9d\x55\x4e\xdf\xf3\x40\xdb\x91\xbd\x82\x16\x60\ \x0f\xc4\xb4\x8a\xcf\xd9\x83\x07\xf2\x84\x3f\x9e\xc2\x94\x02\x64\ \xf3\x7c\xc0\x28\x8b\x1b\x80\x5c\x59\x95\x25\xe6\x2c\x64\xc5\xaa\ \xcc\xb0\x64\x4c\x5e\xc7\x9d\x4f\x5f\x5c\x5a\x39\x73\x07\x4b\x16\ \x07\x71\xd8\x53\x27\xa8\xcf\xf9\xdc\xe2\x97\x10\xe5\xfc\x84\xe4\ \x0a\x76\xda\x1f\xe0\x88\x10\x28\x02\x94\xcc\x03\xfb\x91\xa2\x8f\ \xfd\x1f\xcb\xb1\x61\x8b\xc2\xc4\x35\xf8\x1c\xfd\x51\xe1\x35\xfe\ \xf0\x9c\x1a\xee\x99\xa4\x68\x01\x24\xb8\xe3\x67\x10\x0b\x91\x75\ \x8a\x0b\x12\xdf\x1d\xd3\x13\x09\xca\x5d\xeb\x3c\x56\xdd\x0b\xdc\ \x46\x69\x8d\x06\x1c\xcf\x58\x9d\xdb\x59\x0d\x62\xde\xe1\xc3\xdd\ \x70\x40\x3c\xa5\xb0\x5f\x8d\x5c\x6a\x46\x99\x88\x8b\xdc\xc6\x5d\ \xdc\x3f\x4d\xcf\x3d\xd5\x5e\x70\x3e\xda\xf8\xc4\xe0\xdd\xf8\xa4\ \xcf\x80\xa2\x94\x5c\xa5\xf2\x6b\x83\x63\x29\x5d\xe4\x42\x5f\x1b\ \xb6\x06\x6b\x00\x1a\xd5\x8d\xe7\x14\xb6\xab\x51\xf5\x65\x38\x06\ \x1d\x48\xd3\xae\x39\x7a\xc9\x3c\x93\x0b\x10\x1d\xd0\x93\x28\x08\ \x5b\x5d\x51\xca\x80\xac\xdc\x3b\xb5\x71\xfa\xe3\x83\x2b\xb5\x14\ \xed\xd9\x0c\x13\x18\x5e\x4d\xcf\x2b\x86\x5e\x90\xae\x51\x6a\x76\ \x62\x71\xb0\x48\x6d\x96\xb3\xe0\x80\x5e\x27\x9e\xc8\xd4\x54\x4d\ \xfb\xfc\x98\x23\xe5\x08\x28\xc2\x09\xff\x20\x5b\x87\x1a\x96\xe9\ \x88\xe1\x9b\x56\xe1\xa0\x91\x82\xf5\x65\x2b\x8b\x1a\xa3\xb3\x82\ \x19\x15\xbe\x1c\xd6\xf5\x80\xfc\x50\x97\xf9\xc0\x2e\xd9\xf9\xc4\ \xa5\xac\x5b\x52\x51\x14\x3e\x58\x21\xbd\x3b\x94\xa8\xee\x2c\x57\ \x7c\xa1\x89\x56\x45\x8f\xb4\x34\xbe\x40\x88\xe9\xd5\xea\xfe\x64\ \x0c\xda\xb4\x96\xe6\xb0\x26\xed\xed\xdd\x5e\xfe\x94\xe6\x6f\x4e\ \x4d\xd5\x4e\xcd\xeb\x1d\x4d\x63\xfd\x0c\x74\xbe\x41\x2e\x2c\x28\ \xff\x69\x2b\xbc\x86\x85\x55\xa6\x9c\x14\xfe\x9c\x9c\x36\x8f\xde\ \x46\x59\xfb\x93\xb6\x3e\x93\x65\x39\x3e\x6c\x3a\x59\xec\xd4\x9b\ \xa3\xa4\xe6\xe1\x43\x39\x83\x50\x63\x09\x88\xd8\x3a\xca\x76\x14\ \x4b\x59\xc1\xcf\x60\xe8\x05\xa1\x37\x22\x46\x35\xa6\xe4\x08\x40\ \xa5\x53\x8d\xd0\x53\x27\xb6\x53\xad\xbc\x66\x27\xde\xd3\x21\x9d\ \x48\xa3\x55\xef\x08\x1e\x56\x93\xde\x66\x23\x65\xda\x1b\x91\xaf\ \x9b\x90\x81\x77\xeb\x9a\x9d\x40\x59\xe9\xb0\x9c\x83\xb2\x3f\xff\ \xf1\x1f\xe1\x3e\xa8\x36\x70\xe7\xb3\xc2\x46\x58\x32\xe1\x63\x81\ \x19\xf0\xda\x2b\x05\x4d\x68\xde\xdd\x0c\x52\x09\x35\x45\x31\x0d\ \x46\xb1\xa6\x0e\x09\x43\x81\xd4\x59\x23\x46\x64\xff\x4d\xd1\xb8\ \x9e\xe0\xbb\x23\xef\x80\x4a\xef\xf9\xa6\x5e\xd6\x14\xe9\xd4\x1e\ \x52\x5f\x20\xeb\xf8\x6e\x62\xf8\x66\xe0\xd4\x34\xed\xab\xbc\x27\ \x11\x1f\xe3\xb8\x58\xc9\xf2\x2b\x20\xa8\x20\xb1\xdd\xc6\x58\x99\ \x66\x02\x03\x67\x49\x9e\x68\x2e\x83\xc2\x58\xe6\xf2\xfe\x4b\x9b\ \x6b\x3f\xd8\x75\xd3\x51\xcc\xce\x55\x0d\x48\x90\xc8\xba\x2a\x5f\ \x14\x52\xd3\xf0\x15\x0c\x48\x7f\x7c\xd1\xee\xee\xc7\x43\xb6\xbe\ \x37\x68\xb6\x11\x1f\xbb\x74\x66\xa2\x80\x8a\xde\x3b\xa8\xc5\x30\ \x70\x87\x13\x6f\xf1\x37\x1f\x52\xf5\xbe\x62\x48\x96\x4f\xf9\x56\ \x73\xb1\x36\x52\x83\x4c\xe7\x39\x83\xa2\x49\xdd\x71\x03\x0f\xf0\ \xca\x79\x99\x02\x32\xf0\xb0\x1d\xf2\x4e\x6d\x83\x8c\x4d\x44\xe3\ \x12\x70\x30\xf2\xb3\xa7\x00\x72\x26\xc0\x2b\x7a\xc4\x5d\x60\xae\ \x9a\xdc\xa3\x70\x50\x03\x82\x33\x48\x41\x81\x11\x8d\x0a\x11\x3b\ \xf1\x14\x43\x7d\x24\xe6\xdd\xed\x31\x84\x98\x33\xaf\x4a\xa4\x74\ \x9e\xde\x0d\xbc\x66\x3b\x0d\xef\xd3\x86\xf3\xb2\x66\x60\x4a\x8e\ \xc8\xf4\x24\xed\xa5\x1d\x4d\xf9\x6a\xb6\x67\xab\xd8\x82\xd2\x09\ \x9b\x5b\xc4\xca\x21\x16\xca\x59\x44\x6d\x03\xf4\x21\x6f\xe7\x24\ \x17\xab\x56\xd2\x1f\xca\x31\x2e\x2f\x2a\xdd\xca\xc1\x1a\x79\x93\ \xcc\x3c\xd1\xec\x3e\x01\x75\x19\x00\x09\x20\xa8\x82\x43\x00\xa4\ \x57\x3d\x14\x86\x00\x75\x01\xde\x72\xc0\x05\xf3\x1e\xd3\x5b\xa6\ \x4c\x67\x1e\x50\x75\xdc\x44\x49\x94\xb4\xe6\xe6\xfe\xdd\x88\x66\ \xb3\x64\xa2\x75\xe2\x37\x67\xf1\xf7\xde\x66\x1f\x4d\xdc\xca\xad\ \xef\x23\xdd\x73\x42\xe4\x81\xb9\xc6\xb3\x60\x27\x5b\x69\x83\xdd\ \xca\xe9\x30\x83\xca\xd6\x0e\x33\x76\x85\x77\xdd\xd3\x9d\x65\x02\ \x02\x70\xca\xd9\x0b\xc1\xa5\xa3\x8e\x34\x29\x4b\xdf\xbb\xee\x19\ \x32\x44\x11\x81\x57\xa8\x82\x2a\x78\x05\x3e\x48\xc1\xcd\x48\x01\ \x4f\x19\xa1\x1f\x2e\x75\x43\x9e\xe8\xa9\x5c\x41\x75\x97\x81\x31\ \xa7\x2c\x31\x1f\x73\x79\xdf\xc0\xb8\xf4\xc5\x6c\x46\xda\x4a\x7e\ \xf3\x20\x15\x7a\xa1\x17\x52\x35\x6f\x5a\x80\xd7\x27\x59\xc4\x53\ \x2c\xc0\x82\x82\xc7\xc1\x3b\xdb\xcb\x60\xd7\x85\x68\xab\xb9\xca\ \xa1\xfa\xd8\x31\x28\x8d\x35\xa8\x61\x91\x36\x62\x59\x83\xe2\x02\ \xfb\xb4\x9a\xf8\xd3\x55\x26\xd1\xcb\xb1\xa7\xcb\x76\xeb\x8b\x08\ \x4f\x59\x41\x11\x48\x86\x2a\x10\xb0\x2a\xe0\xf4\x17\x72\x10\xb6\ \x47\x51\x7e\x3c\x77\xb0\x53\x55\x99\xe7\xc8\xe9\xab\xf9\x67\xeb\ \x82\xbd\x8b\xf7\x78\xe7\x01\x42\x0c\xe1\x30\xc0\x02\xb2\x36\xeb\ \x4c\x8e\xdc\x21\xed\x00\x3b\x40\x85\xc8\x47\x85\x0e\xb0\x05\x54\ \x88\x73\x23\x65\xb5\x83\xcd\x73\x63\x4d\x67\xfe\x2c\x68\xf3\xac\ \xed\x02\x9c\x68\x83\x28\x92\x22\xe8\x08\xab\x6b\x6c\xf8\x06\x2d\ \x5f\x9e\x00\x74\xd7\xad\x5f\xc2\x1e\xf4\x89\x77\x83\xc0\x5e\x44\ \x24\xbf\x5d\x28\xad\xd9\x8c\xc7\xce\x37\x38\x83\x2c\xa0\x87\x11\ \x98\x7b\x19\x88\x6e\xb8\x37\xf9\x75\xf2\xc2\xd3\xd8\xa6\x4e\xd7\ \x31\x9e\x95\x2f\x86\xbe\xb4\x02\x4e\x67\x8e\x1c\x5e\x5f\xe1\x01\ \x0d\x7b\x83\x53\x26\x7c\xae\x44\xc9\xeb\x0f\x03\x6c\x16\x07\xc6\ \x0f\xda\x21\xad\xfc\xc8\xf7\x05\x0f\x6e\x71\xf9\x34\x67\xed\x36\ \xe0\x33\xb7\xc5\x3d\xff\xfc\x97\x0e\x81\xfb\x81\x0e\x26\xb0\x1f\ \xe8\x88\x39\x29\x9a\x7a\x45\x6c\xdb\x62\x4f\xe1\x88\x4a\x5f\x38\ \x06\x88\x35\x7b\xdc\xec\x29\x38\x10\x16\x93\x81\x03\x99\xe8\xda\ \xc5\xc4\xcd\x92\x51\x4b\x22\x4e\x5c\x02\x00\x40\xc5\x8a\x17\x31\ \x6e\xec\xe8\xb1\xe3\x9f\x70\xb6\xaa\x8c\xe0\x23\x63\xc9\x9b\x33\ \x55\xe2\xc4\xa9\xc2\x27\x85\x0c\x19\x6f\x64\x9c\x19\x91\x6c\x04\ \xcc\x37\x1d\x33\x66\x7c\xe3\x73\xa6\x8c\x22\x42\x63\xfa\x9c\xb8\ \xf3\xa7\x8c\x10\x61\x8a\xe8\xdc\x88\x32\x04\x16\x2c\x5d\x2c\xbe\ \x09\xc1\x23\x4c\x9e\x30\x3c\xae\x86\x99\xfe\x59\x04\x8b\x10\x71\ \x62\xdd\x39\x09\xe3\xc4\x89\xd0\x22\x4e\xee\xf8\x6a\xeb\xf6\x0e\ \xdc\xb3\x3f\x7e\xa4\x25\xea\xb5\xc8\x8f\x30\x3f\xd0\xa6\x2d\xa2\ \xd7\x09\x16\x77\xee\x78\x94\xcd\x93\x27\x84\x61\x37\x79\xdc\x30\ \x66\xd2\x66\x17\x64\x26\x92\xf7\x24\xdc\xe3\x61\x8f\x40\x4f\x6b\ \x3c\x69\x16\xb8\x47\x73\x41\x37\x92\x09\xba\x41\x58\xd9\xa0\xe4\ \x87\x16\x79\x5a\xfc\xe8\xfa\xb5\x47\x19\x23\x5a\x56\x49\x76\xe6\ \xe4\xcc\x57\x2c\x5f\x9d\xf9\xe3\x7b\x26\x9f\x2c\xaf\x70\x9e\xdc\ \x69\x14\xe3\xc4\x9f\x3e\x63\xf6\x0d\x2a\xb3\x35\xc6\xe5\x41\xc3\ \x84\x09\xd1\xf4\x62\x55\x1e\x4d\x42\x5c\x1c\x85\x18\xab\x56\x27\ \x3c\x64\x76\x01\x2c\xd6\x97\x10\xb2\x7a\xa9\xeb\xdd\xeb\xc4\x5d\ \x5c\x27\x74\x87\xc6\x74\x6e\x97\x39\xde\xbc\x73\x85\xee\x0d\x2c\ \x18\x30\x57\x61\xb4\x11\x42\x1b\x6d\x3c\xf4\x10\x63\x0e\x25\x44\ \x90\x41\x98\x59\x96\x99\x41\xa4\x85\x26\x5a\x43\x90\xe9\xa2\xcb\ \x43\x05\x79\x26\x1a\x63\xc6\x1d\x07\x1b\x88\x1e\x2d\x11\x0e\x4b\ \x55\x54\x11\x4e\x0a\x3a\x2d\x21\xdb\x4a\x23\x88\x90\x02\x8c\x30\ \x8e\x80\x00\x02\x38\xf9\xe4\xa1\x53\xfe\xc9\xa1\x04\x54\x5f\x7b\ \x0d\x75\xdd\x8e\x33\xb1\xc7\x9d\x53\x56\x6d\x87\x1d\x62\x87\x6d\ \xc5\x83\x75\x55\x05\x26\x96\x38\x77\xb8\x83\xc5\x59\x65\xe5\x25\ \x17\x5e\x59\x16\x21\x53\x51\xd2\xd5\xc7\x5c\x50\x7e\xe9\xc7\xdf\ \x5a\x52\x02\x06\x18\x16\xd5\x11\x58\x60\x62\x8c\x89\x86\x60\x68\ \x0a\x1d\xc8\xe1\x9c\x92\x19\xa8\x20\x28\x79\x8e\x32\x8a\x43\xb0\ \x88\x76\x50\x41\x92\x89\x18\x22\xa1\xb1\x55\x91\x41\x89\x28\xfe\ \xb4\x45\x0a\x22\x38\x9a\xc2\x19\x7c\x94\x94\x05\x02\x71\xd8\x62\ \x63\x46\xc8\x7d\xc8\x93\x97\x7e\x55\x89\xd6\x49\x46\xed\x18\x82\ \x52\x57\x75\xd1\x51\x17\x79\x34\x01\x11\x00\xa9\x1a\x96\xc7\x56\ \x21\x4c\xd5\x45\x18\x58\x70\x23\x04\xae\xee\x08\x71\x47\x54\x67\ \x52\x59\x96\x95\x4b\xfd\xf8\x46\x90\xce\x0d\xb5\xa5\x50\xeb\xcd\ \x57\x84\x60\x66\xbe\x27\x1e\x56\xa4\xbe\xfa\x58\x1b\xa2\xe5\x91\ \x5a\x63\x0c\x31\x04\x19\xb7\xdd\x72\x0b\x4a\xb7\xa0\xec\x39\x0a\ \x28\x18\xa6\x36\x67\x81\x85\xaa\xfb\xd1\x12\x22\x1c\xda\xd2\x2b\ \x7c\xf8\xf6\x47\x0a\xbe\xc9\x40\x2f\xa4\x23\x64\x31\xc2\x27\xbb\ \x85\xf3\x07\x97\xac\x09\x1c\x24\xfe\x8f\xfd\x4d\x49\x1d\x53\x4e\ \xcd\x64\x15\x16\x4d\x84\x71\x5c\x17\x3c\xac\xb1\xc6\xa9\x5d\xb8\ \xb1\x15\xac\x3c\x4c\xb5\x84\x55\xdc\xdc\x8a\xeb\xc7\x82\x89\x4c\ \x16\x59\x9f\x96\xb5\xa5\x5d\x48\xa1\x6c\xac\xb2\x7e\xe1\xf5\x5e\ \xc9\x67\x51\x79\xd5\x77\x79\x3c\xb6\x4b\x17\x05\x42\xf6\x18\x13\ \x0e\x79\xcb\x2d\x9f\x7c\x82\xd2\xc5\xd0\xe0\x1a\x3d\x6e\x9e\x91\ \x9d\x7b\xee\xba\x4d\x5f\xf4\x47\x3d\x2c\xb5\x94\x0c\x4c\x29\xf0\ \xd1\x1b\xc0\x42\xf9\x56\x8d\xa4\x59\x44\x5d\x63\x8a\xc4\x56\xf4\ \x13\x4a\x65\x8b\x9d\xdc\x5d\x7e\x4d\x79\x07\x37\x07\xcb\x04\x80\ \x4f\x4a\xd9\xca\xcd\x1a\x3c\xb4\x36\x8a\xc4\x51\x54\xcc\x18\x0f\ \x17\xbb\x51\x31\x54\x4d\x70\xd3\x84\xae\xe2\xe0\xca\x36\x7c\xbb\ \x4a\x09\x5f\xc9\xfb\x81\x39\x53\xa7\x69\xfd\x75\xb2\x50\xcf\x7e\ \x4a\x5d\x80\x87\x19\xd6\x45\x17\xde\x12\xed\xed\x85\x92\x41\x56\ \xf4\x2e\xe4\x22\xbd\x8b\xb8\xa9\x83\x3b\x59\x69\xad\x2f\xe4\xf4\ \xba\x29\xb1\x94\x81\x89\x40\xf4\x66\xb5\xbc\xbe\xc5\xe8\x1b\x05\ \xd5\x64\xc1\x92\x2d\xf5\x30\x55\x54\x4f\x68\x9b\x4d\xec\x72\x92\ \xc3\x2c\x4e\x3e\xf9\x08\xc1\xfe\x0d\x0f\xc3\x6b\x25\x78\x14\xf9\ \xac\x41\xe4\x12\x6d\x34\xb1\x86\x44\xa3\x28\xb6\x18\x0f\x6d\x4c\ \xa4\x6a\x13\x51\x35\x2c\x84\xf3\xcf\xdf\x81\xab\xe1\x66\x36\xbe\ \xd4\x98\x5b\xf2\x88\xac\x98\xc0\x22\x7c\xe5\x1d\x55\xea\x67\xbf\ \x9a\xb2\x12\xcd\x39\xd0\xb8\x55\x21\x73\x35\x06\x75\xff\x1b\xd7\ \xb8\x50\x87\x3a\x03\x31\xc8\x75\x11\xda\x03\xec\xd4\x25\x03\x7a\ \xc4\x81\x76\x26\x0a\xc7\x4b\xf0\x01\x23\x7c\xc8\x20\x5f\x14\xf0\ \xcd\x19\xaa\x51\x29\x3b\x54\x21\x0b\xc3\x3b\x1b\xf2\xc8\x06\xb9\ \x2e\x85\x29\x2d\x80\xe1\x86\x38\x52\x91\x0a\x6f\xa4\xc2\x79\x58\ \x20\x55\x18\xdc\xb0\x3d\x6b\x58\xc3\x0d\x4e\x61\x02\xf7\x26\xd2\ \x86\xce\x19\x68\x56\x3a\x6c\x02\x12\xb5\xe3\x31\x5c\xb1\x6f\x57\ \x23\x93\x8b\x7b\x02\x73\x96\xa5\xb0\xcc\x65\xd4\x09\x16\xca\x7e\ \x10\x1f\xbf\x5c\x71\x48\xa4\xe2\x5c\x17\x46\xf1\x39\xd0\x19\x08\ \x43\x6e\xf0\x44\x68\x7a\x86\x3a\x71\x21\x10\x5c\x91\x29\x08\x1a\ \xd7\x90\x21\x82\xac\xe1\x32\x3e\x8c\x60\x88\x96\x90\x02\xa9\x4d\ \x8d\x0f\x2f\x89\x11\x8c\x6a\xb2\x2f\x0a\x50\xc0\x09\xfd\xca\x00\ \xa2\x84\xa7\x1c\xb1\x2d\xfe\x92\x47\x5c\xe2\x11\x7b\x00\xa3\x2b\ \x19\x92\x63\x05\x2b\xa8\x61\x13\x00\x58\x2d\x37\xac\xa1\x09\xa3\ \xd8\x88\xf7\xee\x16\x91\x30\x62\xa4\x0d\x13\x5b\xc3\xe0\x90\x38\ \x37\x5c\x39\xaf\x6d\xbf\x8a\x19\x9a\x9e\xc8\x17\xf8\x21\x6c\x29\ \xec\xa1\x62\x50\x3e\x95\xac\x5b\x1e\xc6\x7f\x61\xdc\x19\xce\xb8\ \x35\x9a\xd3\x4c\x0c\x8d\x14\xc2\xd9\x9e\x22\x22\xc6\x3e\x61\xc6\ \x03\x9e\x19\x8d\x9f\x10\xa4\x0b\x4d\x65\x0a\x8f\x17\x91\x4d\x05\ \xe1\x95\x04\xdc\x59\x8d\x9b\xbe\xfb\x84\xbe\xfa\x65\x07\x44\xb2\ \xa4\x08\x3b\x3a\x9e\x57\xea\xd3\x17\xa4\xfc\xc5\x3f\xee\xe0\x46\ \x3e\x28\x49\x8e\x4a\x1a\xc1\x93\xa3\xdc\xe4\x2e\x50\x25\xa2\x4f\ \x62\x84\x09\x48\x3c\xa5\xc7\x3a\xe9\xb1\xf2\xf5\x2a\x4d\x67\xf9\ \x8f\x7f\xe0\xe2\x44\xca\xd5\xb2\x2f\xf4\x01\xca\x5c\x84\x95\xac\ \xbc\x50\xc7\x97\x44\x6c\x83\xcd\x76\x51\x20\x37\x69\xa8\x41\x0a\ \x79\x53\xea\xf6\x04\x2e\x33\x36\xe8\x4f\xad\x3b\x57\x3e\x29\xd2\ \x1a\xe8\xe0\x11\x1f\x08\x20\x67\x15\x80\x80\x41\x3f\xfa\x31\x52\ \x28\xe2\x43\x09\xb2\x50\x82\x38\x8c\x13\x91\x89\x3c\xa1\x0a\xf1\ \xd3\x42\x2d\x89\xc9\xfe\x3f\xdc\x30\x1f\x0c\x8d\xe0\x8d\x15\xcc\ \x73\x05\xdd\xf0\xe4\x45\x22\xa2\xd1\x9d\xc0\x66\x14\x0c\xfc\xe7\ \x1a\xa2\x40\x37\xc1\xf1\x20\x4d\x91\xc4\xc2\xe2\xc2\x0a\x25\x71\ \x08\x66\x59\x2e\x0b\x0a\xa9\x92\x22\x13\x2e\x85\x29\x0c\x49\xe1\ \xa2\x56\xbe\xd8\x05\x02\xb5\xc9\x31\xe7\x62\x4c\x49\xdf\xf4\xa6\ \x6f\x75\x6b\x32\x7b\x68\xc2\x84\x3e\x7a\xa0\x9e\x21\xc7\x9a\xec\ \x3a\x83\x6e\x2c\x38\x82\x24\x84\xa3\xb1\x7e\x14\xc1\x19\xce\x40\ \x01\x3e\x54\x83\x5f\x15\xf4\x69\x06\x82\x07\x13\xb6\x46\xae\x2f\ \x80\x61\x5b\x41\xdb\x46\x50\x5b\x55\x2f\x1f\x46\x50\xaa\x25\xa5\ \xd0\x04\x8d\x50\xa4\x50\x11\x29\xd0\x43\x76\x68\x8d\xc1\xd1\x0c\ \x87\x5d\xbd\x95\xe1\x98\x18\x16\xb1\xc0\x85\x2c\xf4\x7b\x6b\x08\ \xe8\xf3\xc8\x51\xc5\x24\xb8\xb7\xec\x5f\x9b\xdc\x44\xa7\x37\x09\ \xb6\x42\xbb\x30\x17\x86\xda\xd0\x10\x3b\xe1\xd5\x41\x72\xd2\xab\ \x64\xf8\x69\xd8\x8f\xbc\xa1\x1a\x7c\xac\xc2\x2b\x1c\x7b\x06\x48\ \x45\xaa\x26\x14\xf8\x81\x08\x7b\xea\x53\x04\xd4\x83\x2f\xcd\x61\ \xce\x7e\x96\x72\xd0\x12\xc8\x30\x15\xe2\x38\xaa\xad\xd0\xd7\xbc\ \x6e\xf0\x70\x0d\xfe\xd6\x88\x42\x0b\xa4\xe0\x8d\x6e\xb0\xca\x69\ \x13\x11\x63\xb5\xb6\xd7\xc9\x26\xf4\x12\x73\x51\x61\x1f\x94\xd6\ \x27\x61\x09\x53\x09\x97\xcc\x09\x6e\x08\x64\xd2\x24\xe4\x00\x05\ \xc3\x98\xe3\x81\xe6\x30\xaa\x5c\xbc\xba\x69\x34\x0c\x92\x8c\x9e\ \x9e\xeb\x10\xe9\x66\xe8\x20\x73\x5c\xc8\xd2\x52\xd3\x06\xed\x6e\ \xd7\x23\x67\x88\x9a\x2d\x86\x73\xb5\x3f\x2c\xe7\x0f\x8e\xc2\x69\ \x35\x52\x40\x81\x12\x60\x16\x91\xb6\x28\x41\x09\xce\xeb\x29\xba\ \x84\x69\x8a\xfd\xb1\x95\x38\x50\x81\x8a\x0e\xd4\xd0\x63\xa6\x55\ \xaa\x11\xba\xd1\x82\x28\x74\x92\x31\xdb\x6b\x41\x0b\xee\xd8\xb4\ \x8a\xf0\x69\x93\x8a\x69\x83\x76\x04\x57\xbe\x25\xa6\x6f\x57\xdc\ \x90\x12\xdb\xe0\x62\xa6\x1f\xdc\x07\xad\x44\xe1\x52\x54\x97\x93\ \x61\xf6\x5c\x05\xc4\x88\xc1\xe8\x43\x16\xc3\x49\xc0\x96\xf8\x4d\ \x4c\x60\xe3\x2e\x72\x20\xdd\xe7\xfa\x35\x4e\xa4\x71\x8c\x46\x35\ \x0a\x5b\xd8\xb2\xb4\xc6\x1b\xe9\xe0\x78\x01\x16\x93\xb2\x75\x70\ \x04\xf5\x60\x6f\x35\x4a\x30\x02\x54\x14\x19\x51\x25\x98\xe2\x5f\ \x6c\xa9\x96\x42\x3a\xa1\x1a\xdc\x40\x72\x09\xa2\x80\x0a\x3b\x74\ \x00\x15\xa9\xfe\x88\x42\x14\xbc\x31\x4f\x6f\x0c\xb8\x05\xd6\xe8\ \xf2\x63\xba\xf0\x10\x6b\x30\xa1\xd2\xea\x92\x6a\x18\x3b\xc7\x49\ \x6b\x34\x4f\xab\xdc\x88\x02\xc8\xd2\xd3\xb6\x91\x51\x9b\x3a\x8f\ \x0c\xae\x5a\xd3\xda\x94\x1d\x75\x21\x29\xe0\x59\xd2\xb4\x0a\xc4\ \x40\x83\xac\x2a\x35\x2a\x66\xe3\x48\x31\xc4\x68\x13\x2b\x64\x20\ \xa2\xf1\xd6\x30\xb3\x6b\x69\x76\xa9\x88\xc3\x28\x29\x42\x0a\x48\ \xc4\xd3\x7a\x7c\xe2\x13\x08\x20\x35\x66\xed\x10\x87\x12\x54\x43\ \x3e\x4e\xa0\x40\x2d\xab\x54\x0d\x2c\x20\xb9\xb4\x51\x48\xc5\x94\ \x53\x61\x84\x7c\x78\xc3\x0e\x76\x68\x6a\xaf\x27\xe6\x86\x21\xf2\ \x73\x09\x38\xdb\x2e\x9f\x24\xd6\x82\x6e\xb8\x00\x0f\x46\x10\x82\ \x56\x9f\xe7\xca\x29\xb1\x9c\xda\x25\xbb\xb3\x5a\xbb\x10\xb7\x10\ \xac\xf4\x27\x73\xc5\x9c\x56\xae\x32\xad\x6b\x21\x88\xd0\xa2\x2b\ \x5d\x32\xc9\x65\x21\xe9\xf2\xcc\x40\xc3\x74\x90\xa1\x1b\x23\x21\ \x82\x80\x62\xde\x83\xf2\xc8\x1b\x8a\x20\x82\xd9\xf0\x94\x9c\xa8\ \x88\x83\x09\x4a\x9d\x01\x54\x94\xc0\x1d\xd5\x28\x38\x16\xe8\xa2\ \x17\xc2\x54\xc3\xeb\x77\x40\xb2\x94\x51\xe1\x0d\x5b\x4f\xbc\x03\ \x16\x27\xfe\xc7\xc5\x2b\xe9\x0d\x3c\xf0\x77\x55\xa4\x9c\xf7\x12\ \x80\x08\xe0\x6e\xf0\xbd\x1b\xf9\x70\xb6\xc7\xcc\x47\xa5\xff\x34\ \x4b\xce\xf9\x73\x82\x86\x93\xe2\x93\xb9\x5a\xa7\xe6\x9c\xf3\xf6\ \x56\xb0\x00\xee\x57\x19\x06\x41\x25\x7e\x4c\xd0\xf7\x64\xa1\x18\ \x33\xc4\xe8\x2d\xe6\xa8\x75\x3d\x9a\x4f\x8e\x38\x1d\xea\x35\x39\ \x54\xa9\x05\xae\xde\x22\xdb\x81\xeb\xef\x29\x7b\x59\xae\x58\xf0\ \x29\x91\x76\x0c\x16\xb7\x38\x0d\x8d\x70\xfb\x8b\xc7\xbd\x92\x74\ \xff\xb5\x1b\x76\x61\xec\x08\x8e\xc2\x9f\xa7\xfc\x35\x0f\x67\x8b\ \xca\x35\xbb\x1c\x3e\x86\x77\x62\x9a\x8a\xbb\xf8\x37\xcc\x75\x2a\ \x4e\x61\x3c\x56\x96\x24\x79\x8c\x09\xda\xcb\x7f\x15\x0d\xe6\xdb\ \xf8\x5c\x73\x2d\xad\x8c\x77\xad\x0c\x83\xec\xa8\xdc\x3d\x34\x5d\ \x23\x4e\x7f\x43\x18\x72\x5a\x29\xad\xd3\xbf\xd4\x5c\x2f\xf8\xd9\ \x67\x26\xc9\xae\x2f\x9c\x1b\x53\xde\x3d\xef\xbd\x5d\xef\xcd\x93\ \xdc\xfd\x5e\x13\xcc\xd8\x76\x49\x15\x9b\x28\xc6\x11\xf9\x97\xb3\ \x41\x9b\xc7\x7c\x4c\x94\x4c\xa0\x84\x19\x8e\x3b\x54\xc7\xe2\x2d\ \x01\xe7\x90\x0a\x91\x60\x04\x18\x59\x85\xf6\x25\x91\xdf\x20\x11\ \x66\xfe\x08\xc4\xbb\xa1\x8e\xe9\x44\x06\x01\x91\x98\xa1\x71\x9e\ \x8c\x39\x06\x8b\xa9\x5b\xe9\xf0\x84\xd3\x55\xc3\x38\xad\x5e\xfd\ \xe5\xa0\x1d\xd4\x83\xd7\xb9\x03\xac\x4d\x49\x09\xd4\x43\xda\xc5\ \xda\xac\x01\x20\x00\xc2\x1d\x01\xce\x13\x1d\xcc\x9d\x14\xb4\xc0\ \xc4\x30\x81\x44\x58\x93\xa8\x80\xc2\x46\x29\x18\x0f\x81\x59\xf3\ \xfc\x1d\x13\x8d\x55\x94\xec\x0a\xfb\x1c\x95\x75\xc8\x1c\xf6\x1d\ \xc6\x4a\x6d\x20\x08\x6e\x45\x12\x21\x51\x03\x9e\xd2\x40\x04\x1b\ \xb8\x78\x1e\xbb\xb5\x9b\x9c\xa4\xc6\x85\x28\xc8\x63\x84\x54\xb8\ \x80\x02\x6b\xcc\xdb\x1b\x64\x5d\x0e\xfe\xa1\x4f\x09\x1c\x2a\x54\ \xc3\xd9\xd1\x17\xac\x95\x40\x11\xa2\xc2\x18\xa0\x82\x09\x18\xe1\ \xee\x21\x61\xef\x59\x52\xc9\x69\x59\x27\x31\xc1\xc6\x18\xd6\x6b\ \xe9\xd0\xc4\x24\xdf\xc8\xf9\x5d\xf3\xe8\x57\x3e\x44\x58\x17\xa6\ \xc7\xf3\x68\x55\x1e\x10\x0b\xe3\xb1\x89\xf8\x74\xc7\x06\xa2\x59\ \x13\x68\x47\x9a\xa5\x99\x82\x99\x60\xf0\x29\x10\xb6\x1c\x1d\x89\ \xb9\xdb\xb9\x10\x9d\x8a\xad\x11\xd0\xe5\xc9\xcf\xe5\x49\x35\x59\ \x5a\x35\x00\x62\xea\xdd\x20\x22\xdd\x5e\xda\x7d\x41\x2a\x7c\x81\ \xfe\x11\x48\xd9\x33\x2e\xa2\xc5\xb9\x9d\x23\x1e\xe1\x00\xae\x00\ \x13\xfa\x9a\x40\xcc\xd8\x87\x10\xdf\x2e\x2c\xc6\xf1\x59\x03\x98\ \xf1\x5d\x16\x36\x0f\xf3\x84\x62\xae\x88\x8c\xe0\x0c\x0e\x37\xe4\ \xc1\xac\x88\x51\xe7\x40\xc6\x46\xcc\xd5\x02\xbe\x62\x1a\xea\x50\ \x09\xba\xdb\xcd\x74\x8e\x63\x70\x88\xbb\x31\x86\x9f\x44\x13\x42\ \x38\x97\x85\x18\x8d\x41\x2a\x10\xf9\x99\x46\x61\xcd\x5b\x17\x7c\ \x01\x0e\x02\xa2\x20\x16\xa1\x23\xba\xdd\x22\xa2\xc3\x17\xe0\xda\ \x1a\x10\x61\x35\xde\x1e\x12\x26\x21\x36\xce\x1d\x25\xae\x41\xf0\ \xb9\x9f\x35\x95\x99\x26\x3a\xe0\x7f\x61\x61\x69\xa1\x4f\x6e\xe1\ \x97\xe0\x75\x15\x12\xe5\xc1\x27\x29\xd3\x9e\x9c\x4a\x77\x68\x14\ \xdf\x5c\x8c\x3d\x62\xd5\xaa\x6c\x5c\x18\xf1\x89\x82\x58\x1e\x5e\ \xb9\x20\x64\x90\x4b\x9e\x18\xa4\x9e\xb8\x51\x1d\x86\x4e\xa0\xc0\ \x8e\xa8\x0c\x23\x00\x64\xc3\x43\x1a\xe3\xed\xfd\xa1\xc5\xa1\x82\ \x11\x7c\x81\x3d\x46\x81\xed\x6d\xa4\x00\x7a\x24\x48\x3a\xa1\x48\ \x6e\xcc\xf0\x39\x0d\x82\x6d\xd2\x2c\x26\xdf\x7f\xdd\x4a\x04\xba\ \x24\x41\x2d\x89\x76\xd4\x0d\x8d\x2d\xa4\x07\xee\x42\x9a\xe9\xfe\ \x50\x03\x2a\xd8\xc6\xcd\x20\x50\x5a\xde\x60\x41\xda\xe8\xac\x91\ \x9e\x20\x10\xb9\x10\x8d\xe9\x1c\xe5\x73\x1d\xa5\x64\x5c\x88\x81\ \x0d\x8c\x53\xd8\x80\xc5\x19\xa3\x64\x1e\x23\xad\x95\x40\xdd\x70\ \xa5\x57\xf2\x5e\x12\x86\xa5\xc6\x09\x5f\x37\x7a\xe3\x62\x60\xd5\ \x26\xfa\xd7\x7f\xf1\xd0\x40\x1d\x15\x6a\x46\x45\x57\x81\x18\x56\ \xa8\x0a\x63\xd8\xe4\x6b\x8c\x52\xcf\x89\xa6\xc6\x0d\x91\x32\x11\ \x91\x9b\x18\x88\xce\x28\x10\x1b\x11\xa6\x48\x1d\xa6\x51\x9a\x8e\ \x51\xa2\xdb\x48\x8d\xde\x98\xb1\x56\xa5\xb9\x81\x16\x4c\xe5\x64\ \x4a\xa6\x1d\x98\xc0\x45\x1a\x41\x23\x6e\x64\x47\x76\x00\x1d\x98\ \x9c\x58\xfe\x8d\x44\x94\x25\xec\x78\x8f\x7f\x05\x98\x14\x74\x43\ \x78\x66\x19\xdf\x81\x59\x0b\x3c\x8f\x76\x34\xcc\xf6\x6d\xdf\x9a\ \xd8\xcc\x62\xc0\x66\x55\x5d\x55\x38\x8a\x24\x37\x2e\x93\x46\xa1\ \x0b\xd0\xf8\x66\xf7\x20\x0d\x70\x0a\x4d\x52\x0e\x67\xd2\x1c\xa5\ \x53\x92\x9e\x6b\xec\x82\x16\x34\x27\x44\x02\x60\x20\x9a\x00\x56\ \x76\x65\x35\x22\x61\x07\xac\x00\x76\xfe\xda\xaa\x18\x06\xb7\x84\ \xd1\x67\x3a\xe5\x2e\x7c\xa7\x14\xd0\x01\x1d\x60\xe3\x12\xfe\xf2\ \x9a\x0b\x4c\x9c\x56\xad\x59\x54\xbc\x22\xc6\xac\x49\xe7\x74\x0e\ \xa1\xec\xc9\x46\x7d\xa7\x35\xd8\x9d\x54\x39\x84\x72\xed\xe6\x2f\ \x66\x9e\x32\xd1\xe4\x7f\x22\x26\x52\xda\x62\x43\xb8\x51\xe9\x5d\ \x44\x1b\x20\x23\x82\x6a\x9d\x20\xd6\x83\x10\x26\x62\x09\xb0\xa3\ \xac\x79\x43\x07\xd4\x1a\x1e\x50\x23\x84\x7a\xc3\x69\x69\x23\x97\ \x9d\x92\x1a\xf6\xcc\x5c\x46\xd0\x44\x80\xc2\xb2\x75\x03\x1e\x2c\ \x55\x53\x31\x15\xaf\x35\x1b\x3b\x96\x8f\x3d\x62\x0c\x32\x25\x13\ \x77\x46\x95\x55\x71\x12\x98\xad\x81\x4c\x8a\xd1\x6c\x32\xc6\x9d\ \xac\xa9\x7e\xee\xa7\x6f\x8a\x8b\x02\xa9\x58\x1d\xfe\x8c\x85\x04\ \x29\x00\xb8\xc1\xee\x15\x29\xeb\xc5\x01\xd7\xf1\x1f\x22\x96\x00\ \x93\x50\x1f\x62\x94\xcf\x56\x5c\xcc\x1a\x74\x03\xdc\x75\x00\xaf\ \x19\x01\x1e\x84\x67\x79\x9a\xe7\xaf\x75\xd9\x25\x1a\x98\x1e\xe6\ \x48\xce\xc0\x29\x98\x2e\x15\x53\x8d\xe9\x69\xfd\xdd\x40\x2d\xc9\ \xf6\x38\xc6\x76\xd2\x65\x6c\xf2\x89\x1b\xf4\xd7\x8c\x8d\xea\xf6\ \xfc\x15\x65\xec\x23\x02\xe9\xe8\xae\x12\xe6\x51\x1e\xe5\x70\x22\ \x64\x9f\xae\x98\x71\xce\xdb\x28\x58\x43\xa1\x1a\x6a\xfe\x20\x4a\ \x59\xfe\x50\x87\x6a\xd2\x1c\x4a\x78\x87\xac\x64\x84\x18\x59\xc3\ \x93\x5a\x6a\x88\xf2\xda\xdc\x99\x9c\x96\x51\x68\xcf\x88\x4a\x14\ \xaa\x8b\xf7\xb8\x41\x14\x4a\x55\x68\xf2\x50\xa9\x7e\xe8\xa9\x92\ \x03\x0d\xe5\xc3\x96\x41\x4f\x68\xda\xa9\xf5\x65\xa8\x6b\x64\x0f\ \x60\x0d\xd1\xa8\xb2\xa1\xb5\xe0\x4c\x6f\xea\x69\xbf\xea\xe7\xaf\ \xae\x11\x7f\xa2\x5b\xb7\xdc\x4c\xe9\x8d\x42\x36\x2c\x67\x55\x2a\ \x6b\x06\x08\x9c\x2f\x70\x1d\xc2\x7d\x58\x45\x7d\x07\x7c\x46\x55\ \x1b\x74\x43\x07\x54\x2a\x39\x44\xe8\x47\x66\x23\x85\x72\x5c\xf1\ \x69\x29\xa1\x44\xc4\x45\xec\x82\x38\x36\x01\x5f\xa6\xca\x49\x8e\ \x9c\x80\xf1\x9a\x25\x51\x69\xaa\x62\x64\x85\xda\x8c\xb8\x34\x4d\ \xf1\x79\x26\x28\x34\x41\x7f\x89\x64\x46\xfd\x24\xc0\xea\x27\x4d\ \x1e\x66\x62\x0a\x26\xb0\x22\x9a\x1b\x8d\x4e\xe9\x35\xc1\x33\x18\ \x21\xc3\x0a\x62\x10\x4e\x91\x52\x38\x2b\x57\x69\xcc\xdd\x80\x11\ \x13\x58\x03\x24\x12\xa0\x37\x34\x61\x7f\xa9\xe1\xcd\x70\x12\x7d\ \x96\x25\xc9\xf6\x53\xb1\x01\x40\x1e\x04\x58\x8c\x0e\x11\x64\x84\ \xe6\x26\x02\x98\x69\x85\xa9\x11\xd4\x50\x3e\xf4\xfe\x9d\x11\x00\ \x1f\xd0\xb5\xe9\x47\x74\xdc\x86\xf6\x57\x82\xfc\xe4\xbf\xfe\x66\ \x9e\x12\x67\xba\x25\x9a\x60\xe6\x61\xe9\x58\x08\xd0\x95\x9e\x27\ \xdc\x9e\x09\x4c\x67\xd3\xc6\x41\x2a\x20\x40\xb3\x16\x81\x71\xdd\ \x16\xae\x45\x81\x35\x80\x58\x13\x48\x41\x07\xb8\x80\xaf\x59\x03\ \x1e\x74\xe4\x0a\x48\x41\x97\x9d\x59\x81\x70\x8e\xf6\xec\xac\xf8\ \x6c\xca\x81\xe9\x02\x3f\x6d\xa8\x27\x79\x8f\x14\x94\x9c\x13\xda\ \x8c\x88\x61\x15\x0f\xe1\x9a\x69\x5d\xee\x7f\x75\x83\x11\x48\x01\ \xf0\x85\x2b\xec\xec\x02\x3e\x1e\x20\xbf\x06\x8d\xcf\x16\xa6\xe9\ \x18\x66\x48\xa9\x8e\xb0\x36\x84\x2e\x1c\xe5\x85\x4c\xaf\xd1\x84\ \xcb\x9e\x94\x5e\x0b\xdc\x20\x3a\x48\x24\xc3\xda\x02\x2a\xd4\x43\ \x35\x30\x99\xdc\x74\x95\x31\xe0\x9a\x11\x00\x58\x0b\x54\xdc\xdb\ \x01\x6f\x0b\xb8\x00\x53\xb9\x40\xa7\x32\x86\xed\x82\x51\xb5\x7c\ \xa7\x13\x02\xdd\x76\x9a\x0e\x00\x8c\x42\x13\x58\xe2\xfe\xfa\xd7\ \x1a\xe0\xcc\xe6\x7a\x28\x1e\x78\x6b\xdf\xcc\x22\x12\x09\x4e\x56\ \xa1\x12\x2a\xa9\x25\xf0\x55\xac\xb8\x02\x5d\x3c\xae\xe8\xff\x0c\ \x8d\xe6\x79\x8b\x1b\x81\x8b\xf2\x06\x13\xe2\xfe\x56\x08\x62\x8e\ \x5f\x9f\x1e\xad\x05\x3b\xdd\x12\x50\xc3\x38\x99\x40\x0b\xa0\x43\ \x57\x36\xed\x91\xe5\x05\x17\x05\x06\x6a\xc6\x9a\x33\x6e\xd9\xd2\ \xbe\x9d\x13\xa2\x2b\xf0\x76\xaa\x48\x82\x1f\x4e\xea\x6c\xf2\x75\ \xd2\x7d\x02\xdd\x37\x42\xa1\xc9\x8a\x64\xe9\xe4\x81\x14\xe0\x01\ \x7d\xae\x81\x80\xa5\x96\x13\xae\x4a\x02\x4f\x8c\x3d\xd2\x0d\xdd\ \x48\x31\x5e\x1a\x46\x81\x6c\xe9\xb1\x61\x04\x15\x72\x70\x3c\xc2\ \xdb\xcd\x00\xaa\x9f\xf2\x62\x60\x1e\x66\xb9\xd4\x61\xf5\xa6\xb1\ \xe2\xde\x20\x35\x18\x01\x3a\x34\x22\xc3\x22\x6a\x3d\x8c\x80\x7b\ \x7c\x1d\x92\x7d\x01\x2a\x44\xc1\x69\x71\x99\xc4\x58\x43\x79\x9e\ \x12\x20\x03\x70\x27\xed\xc1\x01\xcb\xd6\xce\x32\x41\x68\x8a\xdb\ \x11\x69\x94\x35\x90\xee\xc6\x99\x12\x1e\xc0\xef\xaa\xac\x01\x1e\ \xd0\x41\x01\xfa\x1a\x60\x61\x69\x14\x63\xa9\x0e\x9d\xee\x76\xe2\ \x2d\x88\x64\xa2\xfc\x3e\x84\xe7\x31\xd0\x0b\x46\x9a\x1d\x22\xb2\ \x6e\x7a\xf0\xe1\x1a\xe5\xf8\x41\x6f\xb7\x8c\x51\xe9\x49\x65\xc3\ \x9a\xc0\xf6\xbe\x31\x73\x1a\x23\xa2\x8e\x40\xab\x8d\x40\x60\x20\ \x22\x2a\x3c\x43\x1e\x77\x92\xed\x9e\x64\xfe\x7f\xe9\xf0\xc4\x28\ \x04\xee\x8e\x1c\xa7\xf6\xe4\xf6\x78\x19\x00\x33\x06\xc9\xd5\x2e\ \xf1\x5a\x83\x0b\x78\xc3\x13\x83\xee\xa9\x62\x23\xd7\xce\x22\x15\ \x6b\x72\x4f\x62\x1e\xbd\x46\x30\xd8\x9e\x12\x5e\x42\xb1\x72\xbd\ \xa0\x8c\x89\x1b\x2a\x73\xcb\x1d\x86\xd1\xd1\x06\xe5\x62\x16\xac\ \xd3\x81\x42\x0b\xc0\xb1\xc5\xa1\x43\x14\x7c\xc1\x72\x2a\xab\xc0\ \x21\x59\x21\xa6\x09\x0f\xbc\x13\x97\x6d\x15\xee\xaa\x65\x32\x63\ \xa9\xbb\x4d\x0c\x98\x49\x81\x43\x37\xa1\xc6\x99\xb3\x82\x61\xb2\ \x1b\x04\x98\x13\xfe\x8d\xc5\x80\xee\xef\xf9\x17\x1e\xac\x2b\x36\ \x1a\x81\x36\x4e\x0c\xdd\x5c\x69\x32\xaf\x4a\x81\x88\x0b\x28\xc7\ \x6a\xfd\xee\x2c\x14\x23\x9d\x9d\x88\x1b\x0c\x86\xf1\xd0\x00\xd3\ \xce\xe8\xc2\x1d\x16\xe5\xe6\x1d\x48\x18\x33\x90\xb1\x7a\xc2\x18\ \x28\xac\xc5\x8d\x41\x14\x64\x03\x3a\x44\x26\x82\x2a\xe3\xa2\x4a\ \x9e\x6d\xc5\xe5\x1a\x80\x99\x38\xfa\x5a\x13\x36\x61\x67\xe4\xa3\ \x15\x3e\xf5\x43\x43\xf4\x26\x52\x28\x66\xfc\xf0\xac\x66\x2a\x7d\ \x8a\x11\x27\x75\x2b\xba\x8a\x29\x01\x7e\xf4\x96\x01\xf2\xce\x96\ \xee\x5e\x6a\xb1\x6b\x1d\xd8\x37\xda\xfe\xa9\x81\x2c\x86\x6e\xea\ \x4c\x18\x43\x06\x05\x73\x30\xbf\x02\x13\xb5\x08\xd0\xcf\x21\xd3\ \xce\x5c\xcb\xbc\x29\xa7\x1d\xd4\xf0\xed\x09\x35\x66\xe6\x32\xfd\ \x45\x64\xa2\x1e\x95\x83\x21\x11\x37\x80\xe9\x33\x3c\xc3\x75\x5e\ \x75\x48\xa3\x35\x27\x5e\x75\x78\x02\x1f\x1b\x5a\xa1\x53\x33\xb1\ \x0b\x78\x2e\x7d\x76\x0e\x53\x33\x74\x37\xe8\x5a\x12\x92\x03\x1d\ \x64\x76\x56\xfd\x97\x14\xff\x93\x62\xcc\x60\x02\x02\xe5\x4f\xfe\ \x12\xe7\x88\xd1\x4c\x07\xd3\x8a\xc6\xb2\x18\x8d\xcb\x17\x0f\x2b\ \x4e\xfb\x2c\x00\xad\xe8\xbc\xad\x81\xc5\x3d\x03\x35\x16\x37\x35\ \x44\x01\x3a\xb8\xdd\x51\x4b\x59\x09\x18\xc3\x3b\xc5\xda\xab\x35\ \x1b\xe6\x76\xc3\x33\xf0\x5a\xa6\x3e\x34\x98\x79\xc2\xaf\x69\x86\ \x5a\x82\x27\x65\x6b\xb6\x42\x93\xe6\xc8\xfd\x5a\x0b\x54\x32\x44\ \xa3\xac\xad\xfe\xd5\x77\x56\xf2\x69\xcb\xdd\x1f\xa3\x73\x6e\x96\ \x4e\x8d\x2d\x01\x15\x5a\x68\xb2\xed\x36\x6f\xc3\x63\x6d\x83\x51\ \x6d\x13\x66\xd0\x52\x2b\xb5\x2e\x53\xb0\xbd\x6a\x80\x7f\x32\x5b\ \x7b\xc4\x28\x14\xb5\x1d\x18\x81\x83\xe2\x5e\x72\xaf\xb0\x73\x72\ \xdd\x68\xf9\x1f\xc4\xb9\x5d\xad\xfe\x9d\x6f\x3e\xe0\x01\xb7\x3a\ \xb5\x53\x23\x1f\x88\x37\xf2\x43\xbb\x80\x43\x6b\x23\x7b\x63\xe9\ \xf1\x75\x2b\x47\x2f\x21\x1e\x3c\x31\x22\x7b\x99\x9b\x70\xf4\xba\ \x26\xe1\x12\xf2\x17\xcf\x5e\x4b\x46\x25\xf8\xba\x28\x60\x27\xe3\ \x0c\x05\x77\x8f\x4a\xb1\x96\x87\x90\x24\x35\x15\xf9\x28\x01\xf9\ \x44\x30\x81\x0d\x50\x03\x12\x50\x83\x0d\xd8\x00\x2c\x58\x00\x2c\ \x3c\xb9\x0d\xec\x41\xf4\x0e\x66\xd0\x36\x81\xc2\x3a\xf8\x71\xe3\ \xde\xf6\x3a\x2e\x55\x26\xaa\x31\xbc\xda\xff\xed\x1e\x56\x62\xea\ \x33\x64\xaa\x96\xf9\xda\xe7\x76\xc6\x77\x3b\xf4\x67\x97\x1c\xd7\ \x86\xb8\x0e\xa3\x6b\xb7\x6e\x0f\xc9\xd1\x01\x89\xdb\xf8\x39\xbb\ \x89\xa0\x59\x83\x25\xbf\x37\x48\x52\xe8\x5e\x5a\x5f\x7d\x23\x58\ \x63\xe0\xeb\x4f\x76\xe3\x38\x17\x79\x1e\x89\x08\x99\x85\x00\x35\ \xcc\x5a\x06\x68\x01\x3a\x04\xc0\x32\xd8\x40\x00\x04\x00\x3a\x30\ \x03\x33\xa0\x03\x34\x30\xb9\x0d\x98\x01\x12\x58\x3a\x34\x64\x83\ \x83\xa2\x43\x3e\x74\xb9\xc5\x35\xae\x82\xd6\xdf\x55\x8e\x81\x30\ \x33\xa8\x44\x72\x24\x95\x6a\xeb\xd6\x72\xea\x0f\x73\x22\x78\xc6\ \xb9\x9e\x67\x6a\x65\xb3\x39\xfe\xaf\x8b\x67\x48\xb7\xef\x75\x7e\ \x6e\x27\x69\x72\xa1\x6f\xa8\x69\x83\xa5\x6a\xfb\x64\x4a\x8f\xac\ \x8b\x22\x08\xc8\x7e\x72\xb4\xe3\x1d\x0f\x50\x03\x3a\x74\xfa\x18\ \x5c\x7a\x00\xd8\x80\x2a\x2c\x43\x00\x30\x43\x91\x41\x03\x34\x8c\ \x41\x20\x02\xe0\x18\x74\xc3\x83\x7b\xa5\x91\x2e\xe2\x17\xac\x70\ \x35\xd6\xda\x99\x9f\xd6\x9a\xab\xa5\x77\x83\xf7\xec\x7e\xb6\x87\ \xfe\xfa\x9c\x9b\xa7\x87\x37\xf4\x43\x23\x5f\xfa\x92\xf8\xe7\xee\ \x3a\xdf\x86\x00\x3c\x6a\x33\x58\xb6\x78\x8c\x6e\x9c\x8e\xdb\xac\ \x55\x25\x98\x76\x22\x39\x91\xd7\x98\x18\x81\x08\x0f\x7c\x01\x35\ \x84\xbb\x2a\x60\xba\x2a\x3c\xf9\xa6\x93\x3b\x66\x6d\x3b\xeb\xed\ \xde\x33\x7c\x01\x61\xab\x57\xab\x8f\x81\xab\x1b\xe9\x45\x22\x22\ \xcb\x03\xa0\xda\xa1\x82\xc9\x65\x19\x80\x61\x2e\x97\x7d\x77\x80\ \xc5\x39\xbf\xbb\x80\x87\xee\x39\x9b\x8b\xe7\xbd\x3f\xb5\x78\x02\ \xfb\xaf\x25\xb1\x9e\x37\x21\xb2\xdb\x6f\xed\xf6\xf7\x1a\xa0\x96\ \x25\x61\x23\xdd\x49\xb1\x6d\x5e\x3b\xa4\x47\x55\x0f\xcb\x6b\xd0\ \x51\xc4\xf5\x36\xfa\xc8\xb6\x0a\x0f\x64\x83\x31\x40\x70\x77\x84\ \x80\x2a\xa8\x82\x05\x3c\xfe\xf9\x2c\x80\xbb\xa6\x8f\x3b\x66\x31\ \x03\x12\xa0\x43\x20\x1e\xe8\xee\x99\x80\x83\xbf\x7a\x2d\xcb\xfa\ \xc2\xb2\x9e\x50\x1b\x75\xc3\xee\xde\x93\xaa\xdd\x69\xd9\xbb\x53\ \xef\xfc\x15\xc2\x39\xd0\xf7\xbb\xcf\x87\xe7\xe7\x36\xf4\x87\x1b\ \x7d\x12\x73\xed\xa4\x56\x32\x76\xdb\x78\x27\xf9\xb1\x14\x64\xd9\ \x58\x76\x4f\x45\x87\x29\x87\x73\x78\x37\x70\x99\xf1\x02\x6d\x77\ \x84\x08\xb8\x44\x95\xb0\x29\x98\x49\x0f\xc8\xe9\x4a\x1a\x81\xe0\ \x76\xd5\x66\xf1\x6a\xec\x76\x18\xb5\x81\x31\x58\x43\x36\xe4\x81\ \x0d\x30\xf8\x17\x98\xfd\x45\xa8\x42\xdb\xcf\x42\x00\x34\xc3\xa6\ \x6f\x7a\x3b\xb4\x03\xc9\xb7\xc3\xb7\x07\x80\x16\x30\x03\x35\x30\ \x81\x05\x48\xe5\xee\x69\x01\xab\x2f\xe8\x33\x4c\x27\xe0\x53\x26\ \x00\x1e\x37\xdc\xe1\x3a\xcc\x9a\xa7\x78\x46\xf5\xec\x06\xbd\xcf\ \xcb\xf9\xc1\x8f\x9c\xc3\xf3\xfa\x43\x8b\x75\x80\x79\x03\x01\xab\ \xf6\xc4\x00\x98\x52\xd1\x1d\xd5\x96\xd2\xa4\x26\x31\x79\x12\xba\ \xfc\x3e\xf2\xdd\x25\x13\x40\x00\x10\x38\x90\xe0\x12\x37\x6d\x96\ \x24\x6c\xb3\x67\x4d\xc3\x26\x79\xdc\xf0\x88\xe8\x26\x0f\xc4\x8a\ \x4d\xd6\x34\x69\x33\xfe\x6a\xc9\x28\x37\x51\xec\xd8\x19\x83\x2e\ \x0a\xba\x31\x26\xec\x98\x18\xa3\x25\x43\x06\x6a\x5d\xdc\x98\x68\ \x99\x61\x4c\x36\x55\x5f\xa8\x19\xeb\x32\xf0\xcb\xaf\x66\xed\x98\ \xb5\x6b\x17\xe0\xa7\xd0\xa1\x01\x6c\x14\xd2\x45\x0d\x1d\x92\x5d\ \xa3\x76\xd9\x18\x13\x32\x24\x4a\xaa\x21\x67\x56\xbd\x4a\x75\x66\ \xd7\x0c\x5a\xa9\x76\xe8\xb0\x75\xac\xd8\x0e\xde\x8c\xa4\x95\xb2\ \x56\x8a\x0b\xb7\x2e\xe8\xc4\x85\xfb\x56\x4a\x0b\xbb\xdd\xba\xe1\ \xa9\x6b\xb7\x05\xde\xbc\x79\xa5\x74\x6b\xb1\xa6\x85\x14\x6f\xde\ \xe8\xe8\xb5\x6b\x2d\x4a\xc6\x26\xd6\xbc\xad\x58\x61\xcd\xcd\x28\ \x81\x4b\x76\x3d\xc6\xbb\xd8\x9a\xb5\x86\x0e\x9b\xb8\xa9\xdc\x31\ \x8f\x65\x82\xa7\x01\x8c\x6a\xb3\x66\xb4\xc7\x35\x9e\x9b\xc4\x8e\ \xed\x46\x76\x9e\x36\x79\x5e\xaf\x41\xb8\xa4\x4b\xb6\xaf\x5f\xb1\ \x7a\x9d\x69\xc2\x82\x31\x96\x5d\xed\x7c\x1d\xf3\x86\xa7\xb1\x96\ \xcc\x02\xcc\x92\x1e\x80\xfa\xd0\x59\x49\x6d\xd8\x50\x65\xa3\xd4\ \x2e\x0b\xd4\x56\x56\x35\x61\x95\x6b\xcb\xad\x76\xb4\x68\x91\x29\ \x3c\xeb\x79\xf7\xe4\xec\x90\x3b\xfb\xcc\x1b\x1e\x3c\x6f\xf1\x3f\ \x8b\xbb\x9f\x2e\xfe\xdb\xb5\x7d\xef\x5a\x4b\x2f\xfb\x02\x6b\xc1\ \x9a\xbe\x22\xf3\x66\x2f\xbb\x40\x23\xcc\x88\xc3\xac\x29\x6d\x09\ \x81\x46\xc1\x2d\x8a\x03\xef\xda\xcc\x40\xcf\xf2\xe8\x62\x17\xd1\ \x50\x3b\xad\xa3\x5d\x72\xdb\xc5\x43\x1e\x1e\x73\x2c\xa2\x8a\x28\ \x6a\xc3\xc3\x36\x28\xe2\x08\x80\x36\xa8\x09\x8e\xbd\xae\xa8\xd9\ \x25\x0f\x66\x6e\x64\x66\x27\x81\x9a\x11\x26\xa8\x00\x7e\x29\xa4\ \x14\x61\xa6\xa3\x0e\xa9\x52\xb8\x2b\xa5\x8d\x52\xbe\x5b\x69\x8c\ \x29\xb5\x08\xe9\x99\xab\xda\xa3\x4a\x25\x74\xae\xbc\xb1\x3d\x54\ \xc6\x72\xcf\x2c\xb1\x56\xf0\x66\x3e\x17\x9e\xc9\x8f\xbf\xfe\x06\ \x14\x0c\xc3\xbe\x02\x5b\xab\x1b\x29\x14\xbb\xb0\x1b\x17\x0e\x2b\ \x70\xc3\xd9\x1a\xc2\xcb\x9b\x6e\x1e\x92\x51\xa1\xc7\xfa\xea\xc6\ \x08\x02\xf1\xf2\x8c\x09\x37\x5e\x6b\xe3\xb2\x09\x13\xba\x8c\x23\ \xd5\xdc\x38\x70\x8d\x0e\x33\x23\x2c\xa3\x15\x6d\xb3\x2d\x84\x2e\ \xba\x70\x11\x52\x37\xd0\xc9\x4a\x38\x1e\x9f\xcb\xc6\x82\x6c\x4a\ \xbd\xf1\x8b\x1f\x7f\xf9\xa5\x9d\x66\x4a\xb9\xe1\x86\x42\x8c\x3c\ \x12\xc9\x59\x02\x10\x86\xbb\xa7\x4a\xc9\xe6\x38\x2d\x98\xaa\xd2\ \x8e\x67\xc2\xfe\x74\x8f\xaa\xf4\xaa\x34\xcf\x4b\x65\xa9\x82\x6f\ \x2c\xf8\xe4\xeb\xe0\x99\x34\xc7\xc0\x0f\x3f\x3a\x5c\x18\x10\x0f\ \x23\x04\x8b\x82\x2f\xbe\x04\xc3\x8b\x4e\x23\x06\xb3\xa6\x9b\xc3\ \xea\x4b\xf4\xc2\x06\xed\xc4\x63\xb0\x3c\x22\x4d\x28\x33\x43\xf1\ \x60\xb7\x4c\x79\x33\x3a\xd0\x9a\x5d\x52\x1b\x65\x52\xd3\x04\xee\ \x02\x94\x3c\xf6\x50\x57\x8a\x08\x61\xbc\xd0\x9a\x26\x50\x14\x8d\ \xb6\x83\x40\xed\x42\xe0\x51\x7a\x43\x47\x0b\x54\xbb\x1a\x83\x1a\ \xf0\x32\x60\x46\x15\x63\x54\x51\xa5\x84\x56\x6f\xa4\xe6\xc8\x5f\ \xf4\xf8\xe5\x86\x84\x6e\xc5\x15\x57\x26\x85\x09\x60\xbb\x42\x46\ \xb1\x20\x80\xac\xd0\xe1\xb2\xaa\x64\xb1\xbc\xca\x04\x63\xcd\x4b\ \xee\x46\x68\xcd\xba\xaa\xda\x0e\x12\x8b\x93\x4e\x76\xeb\x0b\x0c\ \xaf\xb4\x36\x13\x2c\x1f\x03\xc9\x95\xe2\xd0\xba\x5e\x6b\x21\xdf\ \x3c\xdd\x7c\x37\xb6\x86\x18\x53\xf7\xe1\x8d\x06\x5a\x62\xb5\xaf\ \xe9\x28\x93\x8e\xba\x0e\xb4\x6f\x8d\xa7\xda\x70\x11\x63\x8e\x78\ \xdb\x65\x97\xdb\x30\xf2\x7a\xe1\x8c\x1a\xe2\x01\x22\xda\x30\x8a\ \xcd\xee\x8a\x6f\xfb\x8e\xa9\x29\x51\x65\x86\x1a\x55\xc6\x68\x89\ \x58\x55\xfe\x98\x42\x07\x28\x2f\x5b\x8a\x55\x98\x42\x12\x5a\xc2\ \xd6\x42\x6e\x1d\x05\x57\x1b\xa4\xb3\xe1\x17\x28\xa9\x41\xee\xa4\ \x9f\xdd\x2b\xfa\xbc\xa2\x31\x07\xee\xaa\x0e\xc0\x04\x3a\x3e\xb1\ \x9e\xf9\xda\x4c\x3a\xce\x42\xcb\xea\x42\xbb\xc9\xc7\x50\xc1\xc8\ \x9d\xd3\x3e\x3c\xba\x69\xec\xc0\x07\xe9\x68\xb7\x85\x0b\x1b\x03\ \xfc\xb3\xd7\x3a\xbb\x54\xc6\xd4\x78\x68\xe1\x30\xc9\xca\x94\x3a\ \x32\x3c\x74\x1b\xbc\x8d\xbd\x99\x28\x98\x09\x16\xfb\xc6\xa3\x79\ \x03\x2f\xb5\xb8\x8b\x10\x68\xcb\xa8\xc3\x84\x30\x0e\xb5\xee\xef\ \xd0\x61\x86\x99\x31\x90\x41\xe7\xe3\x2f\xba\xd2\x0e\xcb\xf9\xcf\ \x24\xb1\x13\xc6\x2f\x54\x51\xa4\xcf\x7d\x0e\x74\xb8\xfa\x05\xe9\ \xb6\xe3\xab\xd4\x65\x65\x3c\x60\x09\x89\xed\x8c\xf6\x3a\x67\x61\ \xee\x3c\xf2\xd9\x0a\xb5\xec\x80\x3b\x32\x75\x60\x5f\xe1\x7a\x9e\ \xf0\xc0\x65\x04\xad\xf9\xc5\x5c\xf7\xd1\x4b\x37\x3a\x73\xa1\xb6\ \x44\xcd\x4d\x9e\x71\x08\xa3\x1c\xd2\x10\xf6\x35\x61\x17\x9d\x83\ \x49\x14\x22\xd3\xbc\x6f\xe1\x61\x05\xe4\x20\x87\x14\x1e\x72\x43\ \xd1\x34\x01\x54\x1f\x92\x98\x0e\xf3\x55\x26\x40\x5d\xaf\x0b\x15\ \xb1\xfe\xdb\xa3\x2a\x86\xb1\x36\x64\x63\x82\x02\xfc\x42\xc9\x54\ \x81\xb2\x90\x09\x90\x1a\x3f\xe1\x58\xc8\xbc\xd2\x0e\x3d\x34\x03\ \x19\x7a\x98\x85\x30\x4a\x21\xb3\x5c\x3d\x50\x18\x60\xcc\x86\x30\ \xa8\x71\x46\x68\xed\x11\x4b\xb1\xf3\xca\x7b\xa2\x15\x9f\xdb\x8d\ \x70\x05\xbd\xa3\x1a\x0b\x11\x09\xbc\x39\xd1\x49\x2f\xe8\x62\x5f\ \x5f\x8e\x27\x35\xf6\x81\x06\x23\x6b\x50\xde\x81\x04\xa3\x9b\x2e\ \xd8\xab\x09\xda\x6b\x1e\x9d\x8a\x68\x44\x29\x7c\x66\x30\xd2\x73\ \x83\x8e\x64\x83\x11\x4c\x46\x86\x1c\xdd\xe0\xc1\xf5\x52\x63\xb1\ \x82\x00\xa0\x23\x97\xe9\xc2\x77\x32\xe0\xc5\x91\x59\xc0\x02\x90\ \x7b\x8e\xfe\xc8\x88\x8c\xcb\xdd\x48\x98\x5e\x09\x92\x30\x90\xf9\ \x0b\xa2\x08\xe5\x3a\x16\x78\x20\xc8\x90\x93\x12\x3e\x42\xcb\x8f\ \x7f\xec\xa0\x20\xcd\x42\x2d\xb1\x40\xed\x41\xc3\x4b\xa1\xf0\xc2\ \xf5\xa6\xc2\xcc\xc9\x2f\x8b\xb1\x53\x22\xed\xd2\x98\xd0\x2c\xb1\ \x6b\x9e\x31\x5e\x37\x58\x03\x2a\x8c\x55\xca\x6b\x44\x34\x22\x39\ \x56\x90\xae\x44\x51\x6f\x53\x38\xfc\xcc\x81\x0c\x53\x44\xf0\x7d\ \x2a\x6d\x21\xa2\x25\x41\x54\x93\x0d\x64\x50\x03\x27\x8f\x1b\x19\ \xfe\xe5\x8c\xa2\xbf\xa0\x7c\x8c\x1a\xc8\xf0\x92\x45\xd3\x38\x8b\ \x9f\x6c\xd4\x8d\xbe\x7a\xa0\x76\xf2\x67\xa3\x94\x5c\x69\x9a\xca\ \xaa\xa6\x35\xb1\x09\x34\x10\xca\x07\x2d\x69\x49\xcb\xf1\xea\x03\ \x2e\x0d\x75\x46\x5d\x8b\x24\x5e\x3a\xfd\xa5\x48\xac\x6d\xc8\x86\ \xa2\xa1\x5e\x67\xec\x22\x35\xca\x6c\x84\x37\x6d\x88\x42\xbe\xee\ \x49\x0e\x3a\xdc\x05\x79\x30\xe4\x4b\x0e\x69\x4a\x98\x16\x3c\xa8\ \x4c\x8d\xe1\xc1\x15\x27\x14\xa2\xac\x5e\xa6\x0d\xbc\xe4\xe2\x17\ \xfa\xb7\xd0\x8a\x12\xb0\x71\xaa\xa8\xe3\x04\x4f\x85\x0c\x8c\xce\ \xa4\x1d\xc8\xe0\x18\x32\x8a\x54\x8a\x5f\x58\x40\x3b\x40\x41\x55\ \x06\x55\x52\xd2\x0b\x8a\x85\x3c\x27\x8d\xe6\x34\xe5\xe3\x52\x15\ \x1e\x2a\x5f\xf9\x02\x57\x0b\x84\xd7\x18\x71\xad\xc5\x05\xfe\x21\ \x1e\x4d\x83\xaa\x17\x9a\xbe\xc9\x86\xff\xc4\x24\x5f\x90\xf7\xb0\ \x4d\x2a\x64\x0d\x49\x25\x07\x1e\xa2\x60\x18\xb0\x19\x8a\x6b\x9d\ \xd1\x10\x24\xf1\x12\x05\xd9\x50\xe4\x47\xb4\x0c\x41\x1e\x42\x30\ \xb0\x37\x64\xb5\x23\xa0\x2a\x85\x0a\x6e\xd2\x50\xa6\x2c\x54\x15\ \x6b\x85\x63\x36\xf4\x10\x40\xe9\x98\x75\x00\x67\x64\x06\x1b\xfe\ \xbb\x32\x8b\x06\x3e\x50\x15\x76\xd5\x82\x49\x32\xa8\x05\x23\xa0\ \x44\x76\xd3\xb4\x9d\x5f\x5d\xc7\x47\x72\xa0\x65\x85\x5a\xfb\x1a\ \x38\xcb\x29\x27\xff\x08\xe8\x3f\x1b\x0a\xea\x7f\x20\xbb\x98\xe9\ \x01\xb5\x30\x7c\x61\x24\x65\x7e\x34\x8a\xec\xdd\x73\x05\x78\xc1\ \x53\x99\xba\x55\x58\x37\xc1\x29\xb5\xb0\xc9\x03\x8a\x0a\xd7\xa1\ \x81\xc0\x44\x15\x0f\x79\x5f\x08\x4c\xe4\x3e\x27\x85\xe0\x36\x2a\ \xe0\x65\x71\x28\xf7\xb8\x55\xb5\x23\x64\x16\x80\x52\x33\x66\xc2\ \x0c\x61\x74\xe1\x56\xbf\x18\x80\x5b\x67\xe2\x46\x8c\x22\x63\x00\ \xb5\xea\xc2\x2f\x6a\x96\x3f\x1e\x3d\xb7\x46\x45\x9b\xca\x56\xb2\ \x3b\x4d\xec\xfe\x15\x5a\x2c\x1d\xe2\xa1\x70\x8c\x48\xc1\x38\x6d\ \xbc\x70\xab\x5e\x67\x18\xcb\x53\xbe\x4c\x96\x6c\xd6\xa8\xcb\x78\ \x91\xc7\x1a\xbc\x75\xa1\x09\x52\x30\xe2\x9f\xa2\x28\x99\xc3\xc4\ \xc5\x79\x79\x39\x8c\x11\x1e\xf2\xa9\xd7\xe6\x01\x62\x3c\xf8\xd4\ \x6c\x31\x66\x8c\x2f\x7c\xc1\x18\xb6\x29\x8e\x31\xd0\x7c\x93\x91\ \x55\xc3\x02\x2a\x68\x43\x08\xb4\x4c\x32\x63\x38\x78\xcc\xd4\xf0\ \xd5\x2c\x28\xdc\x12\x64\x6c\xce\x48\x66\xd5\xc3\x9f\xd5\xfe\xfa\ \xc6\xde\x0e\x40\x81\x85\x60\x99\x8a\x79\xc4\x8c\x9e\xb5\x38\xc6\ \x7d\xcc\x60\x49\x67\xdc\x68\xa5\xf5\x0e\x2d\xc8\xa3\x9a\xd6\xe2\ \x34\xce\xf6\xe6\xb4\xbd\x3c\xf5\x04\x86\x1a\x8b\x5e\xa0\x76\xe6\ \xd3\x9e\x61\x6f\x5b\x1a\x7b\x97\x79\x6d\x96\xc9\xeb\x42\x1e\x62\ \xf0\xb9\x82\xb6\x15\x71\x5f\x87\x4a\x50\x14\x6c\xf3\x66\x2e\xa7\ \x12\x45\x15\xf9\x54\x18\x9a\xf0\x85\x28\x18\x03\x0b\xd9\xf8\x02\ \x74\xa9\x32\x25\x54\x8c\xb9\x04\x16\xe0\x81\x83\xab\x51\x66\x15\ \x18\xe3\x71\xc8\x6c\xee\x4c\x9a\x01\xc6\x35\xa2\xf8\x80\x1e\x76\ \x26\x8a\x4b\x51\x8a\x10\xdc\xf6\x27\x5e\xd1\xc2\x48\x18\x5d\xdd\ \x3e\x0a\x07\x2b\xe7\x49\x56\xa4\xd5\xbd\x52\x4a\x57\x5a\x85\xc7\ \x6b\x2a\x80\x38\x73\x6a\xce\x94\xda\xc8\xa8\xde\xcb\xa8\xab\x97\ \x1b\x80\xba\x85\x5b\x0b\xc3\x50\x46\x2c\x86\x31\xdc\x4c\x95\x95\ \xb1\x0e\x25\x3e\xeb\xb3\xbd\xc1\xf0\x00\xc0\x94\xb4\x64\xf2\x54\ \x4b\x71\x6e\x74\xe3\x24\x40\x7b\x56\x48\xc6\xf0\x85\x6c\x84\x01\ \xce\xbd\x8c\x60\x73\xf5\x87\x8c\x66\x34\x43\xa2\xed\x80\xe3\x16\ \xb6\x90\xab\x2e\x14\x62\xe6\x72\xb5\x80\x1e\xf2\xdc\xfe\x15\x45\ \x87\x27\x9a\x2a\x01\x53\x79\x62\xa7\x25\xab\xc0\xbb\xba\x4b\x33\ \x53\x5a\x2a\xfd\xad\x4a\x97\xd3\xbd\x85\xf9\xcf\x5a\xae\xc0\xd3\ \xae\x31\xd6\x2d\x6b\xa1\x2c\x4d\x3d\x41\x18\xaa\xbb\x85\x5f\xf5\ \x84\x27\x0f\x76\x92\x10\x37\x74\xe3\xe1\x92\xf1\x6c\x99\x22\xb3\ \x82\xe8\x8d\x0d\x34\xdc\x68\xc1\x8b\xc3\x42\x9e\xa0\x9d\x54\x27\ \x5d\xa0\x40\x36\x06\x70\x40\xd2\x35\x63\x16\x16\x10\x06\x86\x9f\ \x73\x2b\x61\x78\xee\x06\x1c\x36\x52\x1d\xc1\x2a\xcc\x9c\xb3\x64\ \x68\xcc\x30\x5a\x34\x51\x31\x25\xa0\x07\x1d\xc6\x44\x0f\x09\x4b\ \xbd\x81\xac\x6d\x5e\x19\xc7\xdf\x2a\xaf\x7b\xa9\xee\x9f\x7c\x0f\ \x1c\x3f\x47\xfe\xf7\x8f\x8d\x4c\x17\xae\xdb\x25\xca\x2d\x40\x5b\ \x47\x78\x80\x07\xf9\xcc\xde\x88\xf1\x79\xb2\x94\xd1\xf5\x30\xd1\ \x50\x1c\x23\x51\xc8\x07\x06\x4d\x8a\x5d\x15\x80\x8a\x64\x16\x0e\ \xf7\xf1\x11\xd8\x95\xc2\x37\x90\xc3\x72\x35\x46\x31\x99\xa1\x56\ \x61\x32\xce\x59\x8f\x6f\xcf\x33\x8c\x80\x8a\xc9\x57\x73\xfb\xd8\ \x9d\x9d\xb5\x0a\x29\x2d\xce\xe3\xeb\xf4\x40\x46\xb5\x0b\xae\x10\ \x6a\x1f\x9b\x9f\xe0\x55\x67\xcb\xe8\x81\xea\x1f\xfe\xae\x37\xd6\ \x2d\x92\x71\xc1\xdc\x06\x32\x8a\x26\xc8\xde\x88\x1d\x58\x69\x7c\ \x8c\x20\x1f\xd0\x25\x7a\x2a\x42\x22\xc4\x05\xee\x20\xcd\xfa\x62\ \x67\x0c\x28\x20\x04\x78\xe9\x74\x68\x4e\x74\xc2\x4d\x15\x38\xe6\ \x06\x4a\x61\x0b\x6c\x6e\x16\x7a\x0b\x80\x32\x0c\x19\xc0\xaa\x67\ \x4e\x02\x38\xd8\x23\xd9\x48\x6a\xdd\xb8\x8f\xe8\x62\x6c\x9b\x04\ \xa9\x4c\x70\x4c\x4e\x9c\x6a\xb2\x0a\xa3\xea\x9a\x8e\xa7\x00\xea\ \xfc\xd4\xaf\xbc\x26\x0b\xa0\xda\xab\x2d\xf6\x23\x2e\x64\x0d\x89\ \x4c\x03\x7b\xf0\x60\x5a\x04\x89\x5a\x8c\x20\x23\xb8\x21\xe0\x2c\ \x69\x08\xf5\x4a\x83\xfc\x4a\x65\x6c\x0e\x02\x6d\xa5\x0b\xfe\x8e\ \x63\xe2\x08\x81\xbe\x60\x98\x74\x4e\xad\x70\x62\x24\x4c\x62\x63\ \x14\x30\x4b\x4a\xd0\x04\x29\x2f\x39\x6c\xc4\xfb\x2e\xef\x2c\xc8\ \xc4\x4c\xcc\xe4\x2c\x60\x68\x79\xde\xb0\xdf\xd0\xeb\xbc\xe0\xc6\ \xf4\x04\xa4\x3f\x70\x10\xb2\xfc\x65\xe0\x66\x4d\x2e\xac\x8e\x09\ \x5a\x4b\xbe\xf8\x4f\x90\xe2\xc3\x95\xfe\x4b\x95\xb4\x07\xf8\x9a\ \xd0\x0c\xb1\xcb\x18\x10\xec\x81\x7e\x21\x04\x6e\x40\x74\x2c\x20\ \xe7\x98\xe1\x48\x6c\x40\x0b\x43\x46\xfa\xc6\xfe\x60\x7f\x8a\x69\ \x4a\x7a\x06\xd9\x46\x30\x25\xc6\xc2\x04\x3a\x40\xee\xb8\xaf\xf2\ \xe0\xed\x83\xd4\xd0\x2c\xbc\x81\x7d\x30\x09\x43\x16\x69\x41\x44\ \x8f\x0e\x9d\x6e\x2e\xde\x6f\x61\xe0\x0f\xa8\x08\x4e\x32\xe2\xc2\ \xe0\x72\x63\x34\x14\xc2\x1a\xe0\x43\x90\x8c\x20\xb6\xba\x80\x07\ \xa2\x60\x5d\x14\x51\x15\xa9\x69\xc6\x54\x21\x04\x0c\x4d\x03\x5d\ \x46\xf0\xd6\x0a\x19\xfc\x0e\xe5\x32\x6c\xcc\xd4\xea\x8c\xbe\xe2\ \xdc\xc6\x0c\x1d\xfa\x0a\xa5\xec\x20\xf2\x4e\xd1\x09\xff\x48\xdd\ \x54\xd1\xaf\xc8\x42\x2c\x42\xc8\x0e\x5e\xf1\x92\x0c\xa4\x9c\x6e\ \xca\xf4\x16\xc3\xe9\xd8\xe2\x3e\x0a\x6e\xbc\xee\x31\xaa\x3c\xa1\ \x05\xb6\xe5\x07\x6d\xe8\x4e\x5a\xe0\x95\xb2\x2a\x04\xba\xa1\x18\ \xc9\x61\x0d\xde\xa7\x09\x8c\xa0\x18\x13\x90\x1c\xdb\x0d\xbb\xbe\ \x40\x05\x42\x00\x81\xf4\xc0\x02\x68\x4e\xae\xf4\x00\x55\x06\x00\ \xa4\xda\x4a\xcf\x3c\x10\x19\x22\x87\xdd\x32\x20\x3d\xd0\xa1\x1b\ \x90\x2d\x0c\x67\xc7\x04\x50\x01\x15\xc6\x70\x8f\xb2\x04\x1d\xd9\ \x31\x2c\x6e\xe7\xb0\x62\x08\x43\xf6\x90\xbf\xc6\xe5\xd4\xe8\xa4\ \xfd\xf4\xe2\x06\xfb\xb1\xb2\x00\xf2\x2d\xfe\x64\xad\xb1\xaa\xa7\ \x30\xf0\xc0\x1a\xc0\x6e\x20\xda\x40\xf6\xe0\xb1\x09\x42\x80\x1b\ \xe8\x60\x11\x39\xa8\xfb\xfc\xa8\x1d\x54\x60\x02\x91\x29\xdc\x7e\ \xc1\x18\x70\x4e\xcf\x28\x90\x19\xd6\x63\x13\x3b\xf1\x68\x24\x07\ \x04\xd7\x31\xbb\xac\xc5\x08\xc6\xc0\x4c\x64\x0c\x39\xd4\xed\x37\ \xd0\xf0\xf2\x42\xe8\x30\x72\x27\x6c\x62\x88\x7a\xce\x6b\xc8\xd2\ \x8b\x07\x65\xcd\x1b\xba\x05\x0f\xe1\x8f\x30\xe8\x0f\x2e\xb8\xc5\ \xbc\x82\x4a\x30\x98\x68\x20\xf2\xe0\xa8\x54\xab\x09\xbc\x61\x11\ \xc3\x70\x14\x67\xec\x0b\x4a\x61\xe6\xe6\xea\x74\x28\x00\xc5\x06\ \x40\x0f\xdc\x4a\xd1\x56\xf1\x24\x7b\x86\x25\xc8\x90\x2d\x91\x45\ \xee\x2e\x28\x25\xe1\xce\x8f\xce\xb0\x26\x07\x09\x59\x5a\xaa\x86\ \x08\x43\x5c\xec\x02\x5c\x74\xf2\xd4\x10\x53\xd6\x9a\x67\x30\xfb\ \xc3\x2f\xa9\x87\x2d\x7e\x53\xd4\x00\xa4\x09\xae\x27\x04\x52\xc4\ \x08\xac\x92\x2e\x5d\x93\x22\x39\x4c\x1a\xc7\x4d\xae\x7e\x41\x05\ \x0e\xe8\xc3\xbc\x31\xd2\x4a\x33\x3d\x2a\xe8\x35\xd5\xd1\x3d\xb0\ \x0f\x1d\x26\xf3\x0c\x2b\x73\x22\x67\x8c\x15\x07\xa4\x5b\x9e\xa7\ \x78\x88\xe7\xa6\xe2\x8f\x07\x7d\x90\xfe\x69\xf0\x43\x2f\xf8\xf1\ \xc7\x6e\xf1\xf3\x3a\xad\x50\xb8\xe6\x47\x3a\x22\x36\xc2\x33\x22\ \x51\x30\x76\x86\xaf\x0b\x2e\xf0\x02\x4f\xe7\x74\x30\x50\x05\x3e\ \xf3\x3f\xed\x20\x14\xa5\xe4\x19\x54\xb3\xdd\x28\xf3\x19\xe5\xd2\ \x54\x4e\xea\x3c\xe4\xc5\x6b\xae\xc5\x40\x08\xab\xa9\x0e\xc5\xa6\ \xc6\x25\xbf\xe0\xc2\xff\x98\x46\x2e\x84\xb2\x27\x63\x30\xd4\x38\ \x43\x3d\xf1\x42\x2f\x1a\x53\x20\x42\x65\x0d\x56\x20\x2e\xff\xd3\ \x8f\x54\x61\x12\xe5\x2a\xdc\x54\x60\x3a\xb7\x20\x21\xb6\xc0\xc3\ \x06\x80\x1d\xff\x88\x19\xa0\x01\x04\x1d\xd4\x04\x9e\x01\x01\x5b\ \xa7\xfa\xba\x53\x26\xc7\x93\x3b\x3f\x8e\x2a\xfe\x24\x2f\x34\x0f\ \x0f\xe8\x83\x3e\xea\xad\x3e\xb8\x4e\x6a\x18\x09\x4f\xe2\x82\x84\ \x78\x93\x5b\xba\xe5\xf3\x4c\xcf\xfd\x0c\x2e\xa7\xe6\xc4\x79\xfa\ \xc2\x33\x5c\xc4\x96\xf2\x80\x1b\x20\xf2\x75\x2a\x73\x46\xbd\x22\ \x04\x12\x62\x33\x91\x29\xef\x38\xac\xc3\x62\x25\x4e\xd1\x72\x26\ \xd0\xad\x05\xc4\x31\x2c\xc6\xa0\x14\x65\xf2\x49\x83\x6f\x14\xd7\ \xf2\x49\xcb\x62\x4c\xb6\xc9\xde\xe8\x43\x88\x06\xe4\x27\xf5\x63\ \x44\xdb\x66\x4d\xe4\xd3\xa6\x7e\xfe\xf2\x37\x77\xaa\x2f\xe0\xc2\ \x77\xe6\x71\x94\x04\x6c\xc0\x78\xe0\xba\xe4\xf4\xa4\xbe\x80\x42\ \x84\x41\x0f\x54\x21\xef\x54\x61\x16\xaa\xf1\x56\xe4\xca\x49\x83\ \x8e\x26\xd0\x61\x48\x7d\x46\x68\xca\xd1\x14\x1f\x54\x56\xd5\xd1\ \x1d\xe7\x4e\x22\x99\xb3\x0c\x03\xe9\x76\x2a\x8d\x5d\x72\x47\x3e\ \xa5\xe6\x3e\x10\x63\x44\x11\x43\x2e\x08\x44\xbc\xb6\xee\x06\x75\ \xf1\x3f\xd6\x05\x6a\xca\x45\x5e\x1e\x42\x54\x1c\x13\x24\x32\x28\ \x58\x4b\xf5\x54\x7e\xa4\x10\x54\x61\xe5\xcc\x0a\x49\x0e\x08\x74\ \x04\x4f\xe7\x66\xd5\x59\x9e\x0b\x1d\xbe\x80\xe3\x94\x85\x76\xc6\ \x00\x15\x76\xf5\xf1\xf8\x68\x57\x7f\x63\x1d\xf9\xf4\x68\x3e\x08\ \xfb\xbc\xe6\x2d\x0f\xc3\x05\x76\xec\x3f\xec\x83\x0e\xf4\xa3\x79\ \x9a\x95\xeb\x5e\x88\xb1\xee\xa3\x53\xdf\x4f\x31\x8f\x4c\x77\x02\ \x24\x6c\x10\xae\x20\x24\x93\x57\xbf\xd5\x3c\x5a\xab\x14\x28\x4c\ \x8d\x90\x49\xa3\x68\x05\x5d\x85\x41\xe7\xae\x93\x42\x29\xa8\x5d\ \x03\x35\x38\xb6\xe2\x19\x60\xf2\x25\xe7\xf5\xe7\xf8\x68\x49\x0b\ \xd5\x54\x18\x91\x11\xf9\x75\x76\xb0\x2f\x2f\xa8\x34\xf3\xa2\x94\ \x91\xb6\x14\x2f\x33\x8f\xca\xfe\xea\x83\x40\xec\x03\x31\xfd\x70\ \xfd\xba\xc6\x2f\x8a\xd6\x1b\x30\xa9\x2e\x88\x67\x61\x78\x28\x52\ \x04\x02\x21\x31\xb6\x54\x4d\x80\x4e\x07\xe2\x17\x50\x65\xcf\xc6\ \x75\xe5\x8a\xe4\xf0\xbc\xf5\x59\xfe\xc8\x0b\xc7\xc0\x41\xc5\x33\ \x24\xe8\xb5\x6c\x8f\xd4\x08\xd0\x21\xf2\x8a\xd4\x4a\xca\xb6\x5e\ \x21\x2d\x5f\x0f\x95\xdd\xb8\x22\x5a\xac\x85\x3e\x32\xcf\x5a\x04\ \xe4\x58\x19\xe9\x6b\x9e\xe1\x4b\x05\x73\x30\xf5\xb1\x88\xa8\x4c\ \xd4\x20\x2b\x4e\x8a\x16\x79\x16\x73\x4e\xd2\xd4\x31\x36\x69\x20\ \x90\x33\x1f\xaa\x16\x05\xed\x60\x37\x06\xa2\x14\x50\x65\x56\x56\ \xce\x8d\x4e\x47\x3a\xf7\x95\x66\xa3\x49\x0b\xae\x65\x4a\x56\x47\ \x22\xab\x62\x5e\x5f\x76\xd9\xbc\x01\x1d\xd8\x76\xba\x22\x34\x68\ \x98\x34\x6c\x45\x0a\x67\xf7\x96\x0e\xc0\xa5\xb0\xfe\x76\x67\x91\ \x65\x05\x0e\x36\x31\x8e\x27\x2e\xee\x29\x2e\x5e\x28\x45\x17\xe9\ \x78\xf0\xa4\xc7\x0a\xc4\xd4\x06\x43\x3f\xe9\x87\x07\xba\x21\x4c\ \x32\xf6\x2b\x78\x20\x21\x04\xd4\x62\x0a\x01\xe7\x84\xa2\x8d\xf8\ \x0e\x8e\x0a\xf4\x17\x2c\x97\x4a\xd2\xc3\x2d\x49\xca\x6e\xcd\x30\ \x2c\xd2\x63\x4a\xd8\x36\xfe\x6e\xdf\x31\x76\x29\x93\x42\x6b\xf7\ \xfb\xc4\xc2\x08\x96\xb1\xa5\xee\x83\x3e\xdc\x62\x52\xf5\xe3\x77\ \x05\xb3\x59\x49\x88\x84\xc0\x14\x6e\xce\xcb\xde\x90\xb7\xf4\xfe\ \x4d\x87\x3c\xa3\x45\xf0\x06\x00\x92\xf1\xa8\x2a\xd7\x35\x5f\x25\ \x21\xf2\x00\x28\x54\xa1\x10\x2e\x12\x49\xd6\xe8\xcf\x5c\x35\x56\ \xae\x10\x48\xb3\x42\x0b\x00\xf5\x19\xd4\x63\x4a\xca\xf7\x2a\xc9\ \xc2\x14\x85\xc6\x5a\xb6\xd3\x7d\x65\x97\x26\x11\x35\x5a\x02\xd0\ \x2d\x5b\xea\xa5\xd2\xa4\x4a\x01\xf8\x51\x0f\xd6\x4b\x7d\xb1\xe0\ \x68\xd0\xe9\x88\x56\x38\xf1\xe3\x0a\xf6\xe2\x9f\xbc\xa6\x05\xa2\ \x16\x52\xea\xe7\x31\x27\x13\x05\x4d\xc0\x18\x06\xac\x55\x2e\x71\ \x66\x6c\x60\x57\xa4\xa3\xdb\xbc\x72\x83\x38\xa8\x3d\x3c\x06\x50\ \x8d\xc5\x6c\x43\x97\x66\xe3\xd5\x48\xdf\x52\x6e\x59\x18\xc6\xb0\ \x52\x4c\x90\x8e\xde\x18\xa9\x4a\x6f\xd7\x60\xdb\x46\x44\x7d\x57\ \xd6\x8e\x32\x93\xf8\xd2\x78\xe4\xe4\xbc\x4a\xaf\x27\xc9\xc6\x2d\ \x74\xef\x8a\xf2\x2f\x19\xbb\xe1\x81\xb3\xe2\x0b\x30\x17\x00\x2c\ \xa0\x2b\x2a\xd8\x2b\x93\xe9\x63\x37\x18\x49\x48\x76\x04\x51\x6a\ \x24\xf0\xc0\x58\xa4\xfe\xe9\x8b\x0d\x15\x25\x4c\x71\x50\xcb\x38\ \x42\xcd\xb7\xba\xe6\x83\x6a\xfa\xc2\x08\x5c\xe0\x2d\xf3\xd7\x5a\ \xe2\x02\x59\x66\xcf\x77\xf7\x63\x05\x5c\x60\x43\xf8\x52\x40\x8a\ \xf7\x40\xd2\xcf\x2d\x84\xd8\xbc\x02\xae\xbd\xfe\x11\x9e\x4a\xe3\ \x6e\x7c\x88\xcb\x84\x40\x39\xcd\x18\x38\x54\xe2\x0b\x34\xa2\x5e\ \xba\x40\x15\xba\x02\x1b\xe9\x68\x57\x90\x64\xe5\x34\xaa\x98\x66\ \xa2\x67\x4a\x56\x04\x5d\xe7\xb9\xc8\xa3\x82\x66\xd4\x3d\x5c\x92\ \x65\x51\x78\x93\x63\xd6\x84\x43\xe2\xca\xc4\x45\x25\xef\xd7\x3e\ \xf4\x43\x95\xff\x97\x4c\xbe\x94\x87\x27\x4b\x67\x11\xc5\xbc\x66\ \x19\xfd\x16\xa6\xd4\xb2\x4e\xaa\x3e\x4d\x0a\x9e\x01\x6a\x57\xa4\ \xb5\x68\xe9\x7d\x00\xcc\x18\x4a\x20\x0a\x4a\x20\x1b\xb8\xc1\x18\ \x78\x80\xe4\xb2\xe8\x0d\xe4\x8b\x1a\x36\x86\xad\xb2\xed\xef\x38\ \x57\x3a\x34\x4a\x28\xa2\xe9\x63\xec\x8a\x19\x8e\x63\x68\xbc\x15\ \xe4\xbc\x38\x51\x61\x73\x76\x94\xad\x6c\x7d\xd5\x9b\x65\x74\x49\ \x3b\xc0\xa5\x16\xf7\x78\xf6\x97\x77\xc8\xa4\x5a\x54\x39\x80\xe9\ \xd3\x6b\x14\x76\xfd\x0a\xe3\x0a\xe4\x33\xfe\x6c\xc8\x1a\x4a\x2d\ \xea\xe0\xa6\x1b\xfe\x9e\x01\x9e\xf8\x99\x96\xde\xa0\x0b\x86\xba\ \x62\x40\xa5\xa8\x15\x7a\xa8\xbb\xca\x18\x50\x26\x28\x84\x82\xef\ \x9a\x0b\x28\xda\x41\xa2\xcb\x4d\x8b\x2b\x67\x63\xce\x0d\xa3\xc9\ \x72\xe8\x90\xe3\xb9\x90\x54\x90\x6f\x56\x4b\x50\x21\x2d\xbe\xc0\ \x2d\x9b\x91\xa4\x5d\x58\xdd\xda\x32\x77\xc6\xc0\xde\xd0\x04\x95\ \xb3\x89\x4c\x9c\xf5\x80\x15\x46\x59\xc3\xb4\x2e\x3e\x8d\xa7\xa3\ \x0e\xa8\xae\x40\x09\x75\x1a\xb2\xb8\x64\x3c\xc6\xa0\x7d\x18\x0c\ \xce\x5c\xa4\x62\x92\xba\x9f\x11\x07\x7f\x4a\xb2\x25\xda\xc1\xa1\ \xcc\x6a\xef\x9c\x79\x57\x58\x0e\x76\xec\x20\x28\x24\x4a\x7f\xce\ \x8d\xf1\x58\x52\x0b\x54\x92\x92\xb7\xb3\x54\xa9\x02\x15\xa8\x21\ \x0a\xca\x5a\xa4\xd1\xba\x09\xcd\xf7\x82\xe8\x03\x1d\xfa\xf6\x5a\ \x34\x2f\x8e\x03\x17\x8e\xb9\xce\x71\xdb\x19\x4e\xd8\xc2\x71\x37\ \x15\x06\x4b\x89\xed\x62\xe3\xd3\x00\x95\x9c\xc7\xa0\x31\xb2\x21\ \x0a\xa2\x80\x1a\x9a\xa0\xcc\x3e\xa5\x23\x14\xfa\x7d\x2a\x42\x05\ \x3e\xe6\x2c\x67\x42\xe4\x1e\x30\x56\xbe\xd7\xba\x91\x09\x83\x01\ \xcf\x3c\xf4\x87\x42\xb9\x7a\x6c\xd1\xc1\x1a\xc2\x43\x35\x45\xfb\ \x58\xc6\xc0\xfe\x2d\xc9\xb7\xa3\x63\x57\xd2\x66\x76\x26\x2f\x68\ \x2f\xd0\x81\x4a\x0d\xb6\x90\x44\x74\xb6\xfb\x4f\x2e\x86\xec\xa7\ \x64\x91\x16\x5b\xa0\xaf\x69\xf0\x33\xb8\x61\x9d\x68\x83\x21\x8c\ \x21\x1b\x32\x22\x0a\x8a\xfb\x0b\xd6\xc0\x18\xb8\x21\xba\x87\xad\ \x43\x2c\xe3\x7d\x56\xc5\xd8\x54\xc1\xd8\x40\xb0\x67\x70\xc2\x02\ \xf2\x20\xdc\x9c\x29\x8e\xd0\x95\x81\xc2\x2d\x57\x26\x34\x1d\x57\ \x1b\x1d\x5a\x80\x29\xd4\xfb\x34\x23\x4d\x4b\x06\xf5\x2d\xcf\x5b\ \x93\x39\xf9\x7c\x55\x3b\xac\x3b\x40\x3e\x09\x04\x4d\xc2\x84\x1c\ \x26\x55\xae\xdd\xa2\xd3\xd2\x0b\x38\xa9\x27\x51\xd4\xc5\xc4\xd5\ \xa9\x70\xb8\x81\x36\x0c\x3c\x23\x24\x22\x34\x28\xce\xcb\xf2\x00\ \x0b\x4a\xa2\x26\x60\x0b\x52\xba\x40\xcc\x44\x4e\xe4\x18\x4a\xcd\ \x06\x5a\x15\x2c\x6c\xe6\x3c\x0a\x57\x5e\x86\xf0\x6c\x65\xcc\x6f\ \x60\x15\x2b\x88\xc5\x00\x75\x75\xb4\x84\x92\xe5\x74\x65\xcf\xdb\ \x75\x61\x5c\xaf\x50\xf7\x9b\x0d\xf5\x58\x8e\x34\x4e\x9e\x81\x5a\ \x26\x95\x37\x1b\xeb\xa6\xc8\xe5\xbf\x37\x85\x50\x16\x03\xbd\x8d\ \x3b\x36\xb8\xc1\x92\x9a\xa0\xb8\x0d\xdc\x18\x28\xe2\x53\x0e\x8c\ \xa8\xbb\xfe\xca\x24\xbe\x60\x7e\x26\x84\x46\x48\xf3\xd8\x2a\xfc\ \xa1\x4a\x46\x55\xb2\x71\xe5\x36\x27\xdc\x6c\x85\xf0\x3a\xc7\x73\ \xca\x33\x24\x34\xe6\xdc\x42\x51\x84\xe5\x6e\x68\xc6\x51\x41\xaf\ \xe2\x48\x0d\xc5\x75\x63\x72\x66\xed\x75\xf2\x4a\x5a\x22\x3b\xc0\ \x05\x44\x99\x58\xd3\xc4\x79\xdc\x69\x06\x61\x91\x92\x54\xe9\x35\ \xc4\x85\x7e\x9f\x27\xc0\x9b\xa0\xc1\xad\x21\x1b\x62\x43\x70\x28\ \x2e\x04\x66\x8b\xa0\x00\xe0\x0d\xda\x00\x72\xa8\xc1\x02\xd6\xd4\ \x01\xf3\x48\xcf\xc4\x6c\x00\x48\x06\x8c\x06\xe0\x33\xd9\x48\xe5\ \x5c\xf5\x80\x6c\x85\x96\x46\x3d\x21\xbc\x8f\x26\x58\x3d\x25\x48\ \x18\x93\x99\x45\x3d\x20\xd4\x92\x5d\x53\x50\xdf\xbd\x6e\x47\xdc\ \x5e\xe9\x52\xce\xc1\xd9\x5a\x16\xf5\x93\x1e\x4b\x5d\xc6\xc5\x95\ \xc9\x46\xbf\x1d\xa3\x09\x8e\xdb\x92\xac\xa1\x04\x0e\x1e\xc1\x87\ \xcd\x45\xe0\x67\x7e\xea\x87\x96\x46\x21\x04\xac\xbc\x64\x86\xef\ \xb6\x38\x30\x03\xda\x08\xb7\x3c\x70\x00\xaa\x41\x18\x06\x00\xac\ \x42\x26\x28\x48\x4c\x18\xb6\xe0\x65\xd0\x3d\xdd\xd9\x71\xe7\x10\ \x50\x25\xc8\xe3\xb9\xe8\x15\xdf\x2d\xef\x84\x15\x91\x76\x37\xba\ \x66\xfe\xf9\x5d\x58\xd3\xf0\x58\x11\xc5\xea\x5c\x99\xed\xe0\xc4\ \x05\xc6\x03\xd7\xda\x80\x07\x3c\x43\x70\x2c\xc0\x1a\x14\x5c\x70\ \x8c\x01\xe1\x2d\x60\x93\xde\xe7\xb0\xa7\x7e\xb3\xde\xa0\x14\xd0\ \x0c\xac\x2a\xd2\xe2\xd7\x2a\x03\x7a\x22\x0b\x91\xa1\x1a\x34\x5e\ \x98\xa2\x4f\xcf\x10\x00\x5d\x57\x9e\xe5\xc5\xd6\x3c\x24\x8f\x26\ \x54\xf6\xdc\x9e\x51\x42\x6b\xfe\xd6\x4d\xf6\xaf\x64\xd6\xa4\xaa\ \xf6\x83\xaa\xa5\x08\xf3\x79\x43\xb2\x8e\x51\xe2\x86\x92\x17\xf4\ \x53\xf2\x80\xd9\xad\xe8\xbf\x6c\x83\x07\xb2\x21\x1b\x8c\xe1\xb0\ \x79\x83\x37\x1c\x90\x97\x20\x9c\x37\xae\xde\x18\x42\xce\xc2\x54\ \xa0\xeb\xbf\xa0\x1a\x40\xb3\x22\xb7\x40\x05\x3a\x12\x19\x10\x00\ \x34\x39\x1e\x19\x52\x1e\x66\xc2\x7c\xd4\xe3\xf4\x38\x66\x02\x0c\ \x1d\x4d\x75\x5f\xb3\xd6\xd3\xba\xd4\xe9\x7c\x56\xcb\xc3\x8c\xe7\ \x16\x9c\xe3\x35\x9f\xaf\xe0\xb0\xca\xf6\x6e\xbf\x22\x0a\x36\x09\ \x39\xab\x21\x0f\xc2\x80\xa8\x3b\x22\x04\x78\x40\xd8\x3a\xc4\xd1\ \xfb\x79\x55\xca\xec\x17\xda\x40\xe5\x69\x49\x05\xbe\x60\x00\x54\ \x80\x02\xac\x3f\xc3\xf4\x60\x00\x3e\x41\x15\xb6\x12\x41\xa5\xaf\ \xfe\x19\x48\xbf\x8d\x52\xfe\x65\x42\xbd\x5e\x96\xa0\x3d\x4e\x92\ \x34\xf7\x7d\xdf\xed\x15\x1d\x6e\x22\xf6\x51\xf7\x5b\x6b\xbf\x2e\ \x99\x74\xf6\x5f\x98\xbd\xc9\x50\x24\xb8\x41\xcb\x00\x82\x47\x13\ \x63\x4d\x42\x2c\x01\x00\xa0\x0b\x8f\x2f\xd9\xf2\x74\x09\xe1\x10\ \xc0\x92\x2e\xc6\x54\xa9\x08\x11\x42\x45\x97\x83\x08\x6f\x58\x30\ \xf6\x4b\x85\x30\x3d\xc8\x4a\x7e\xd2\xf3\xc9\x98\x0a\x0a\xbf\x84\ \x7d\xfa\x82\x52\x0f\x02\x64\xcc\xe2\x34\xfb\x75\x23\x67\xa9\x5f\ \x5b\x6e\x2c\xf9\xb9\xc4\x8e\x9d\x0c\x76\x4c\xa0\x3b\x0a\xed\xa8\ \x16\x2d\xcc\x86\x0e\xcd\x00\x35\xaa\x9d\x2f\x51\xd0\x99\x78\x1a\ \x95\x68\x56\xa9\x42\xb7\x7a\xfd\x0a\x16\xaa\xd0\xb1\x4f\xb1\x86\ \xcd\xea\x94\xac\x5a\xb3\x62\xc9\x9e\xf5\xda\x75\xab\xda\xb0\x45\ \x4b\x18\xe3\x11\xe2\x21\x16\xaa\x79\x38\xbe\x59\x68\xac\xcb\x9b\ \x5d\x14\x46\xfd\x0c\xf1\x31\xc4\xa8\x1b\xa5\xf2\xbc\xe1\xb8\x84\ \x82\x30\x63\xc2\x06\x7c\xf9\x32\xa0\x9a\xb0\x6a\x7a\x06\xa8\x50\ \x31\xe0\x64\xb5\x2d\xbf\x06\x94\xcc\x10\xa7\x9d\x1e\x9e\xbf\x48\ \x22\x5b\xdd\xf3\x86\xda\x31\x47\xd1\x51\xb3\x4d\x2d\x37\x3a\xfe\ \xad\x72\xc7\x8c\xb9\x0a\x97\xad\xdc\xb7\xc4\xbf\xae\x2d\x8e\x76\ \xee\xda\xb1\x52\xe9\xb2\x55\xce\xbc\x78\x51\x23\xd9\x4a\x64\xc3\ \x92\x37\x84\xb1\x2f\xd5\xba\x48\x7c\xf3\x30\x04\x78\x8c\x37\x24\ \x86\xf8\x95\xc7\xe7\x12\xc4\xbf\x36\x2e\x79\x53\xaa\xda\x27\x55\ \x5f\x90\x61\x66\xe9\x12\xf3\xc9\x2f\x38\x97\x6c\x19\x50\x13\x32\ \xed\x40\xf5\xda\x48\x59\x21\x83\x13\x51\x63\x2d\xa5\xd4\x51\xd4\ \x64\x93\xcd\x6d\xc6\xa1\xf3\x85\x6f\xcf\xc5\x85\x5c\x86\x6f\xb9\ \xa5\xa1\x82\x18\x26\xf7\xa1\x58\xbc\x89\x08\xe2\x72\x21\x06\xf7\ \x0c\x35\x2d\xd0\xf7\x45\x09\x14\x84\xc0\x43\x09\x5f\x18\x43\x41\ \x17\x32\x08\xf6\x53\x17\xa5\x94\xb2\x8b\x44\xa3\x84\xb0\xa3\x7b\ \x85\x88\x74\xd1\x0d\x6f\x9c\x37\x80\x31\x96\xe9\x21\x8c\x0a\xd5\ \x94\x66\x59\x3b\xcc\x7c\xa2\xde\x0d\xa6\x95\x14\x47\x54\xc8\x20\ \x30\x60\x56\xf4\x94\xe2\xe1\x50\x4b\x31\xc3\x94\x83\xb7\xa1\x33\ \x06\x6f\x45\x7d\x02\x91\x0a\xc6\xa0\x63\x16\x87\x1d\xce\x59\xe2\ \x88\x24\x3a\xe7\x9c\x70\x42\x75\x30\x97\x5c\x26\x46\x67\x9c\x1d\ \x63\xac\x91\x4d\x13\x32\xa2\x32\x63\x35\xdb\x5d\x56\x0d\xfe\x05\ \x8e\x01\xa5\x63\x91\x00\x30\x56\x63\x95\xa5\x7c\x16\xdb\x0d\x40\ \x52\x00\x5a\x68\x7a\xa0\x54\xda\x27\xc8\xc4\x31\xc0\x16\x12\x6d\ \xc1\x19\x02\x24\x41\x95\x5a\x49\xc8\x68\xb9\x5a\x5b\x62\x92\x99\ \x81\x16\xb6\xa1\xa3\x05\x51\xe8\xa8\xa2\x4a\x35\x92\x22\x24\x51\ \x35\xc1\xc9\x49\xa7\x86\x7d\xd2\x35\x22\xa0\x68\x79\x28\xd7\x33\ \xdc\x34\xb1\x86\x11\x7f\xfe\x19\x68\x57\x45\x51\xd3\x84\x1b\x79\ \x64\x73\xd9\x65\x2f\x31\x83\xa8\x67\x95\xfe\xa4\xe9\x2f\xa5\x74\ \x71\x43\x17\x2c\x85\xe0\x53\xba\x47\x6e\x61\x18\x42\xe4\xde\xb0\ \x85\x64\x32\x35\x09\xda\x4b\xc2\x50\x50\x0a\xbf\x2d\x55\xf6\x89\ \xaa\xc8\x7c\x32\x80\xa7\x5b\x22\x53\x70\x59\x5d\x8d\x79\x6b\xae\ \x50\x7d\xf1\x13\xb0\x12\x03\x0b\xa7\x9a\x45\x1d\x5b\xac\x74\xca\ \x66\xe8\x54\x9e\x58\xd9\xc1\xcd\x46\x3f\xae\xb1\x06\xb4\x2d\x18\ \x81\xc7\x33\x29\xf3\x49\x0e\x1d\xe4\x6c\xcc\xd5\x82\x0f\xba\x61\ \xc1\x47\x4a\xca\x88\x0c\x2a\x03\xab\xc4\xaf\x78\x39\x15\x22\x99\ \x05\x21\x99\x8b\x6e\xbb\xed\x4e\x2c\xb1\x7f\xc2\x08\xf3\x0b\x3e\ \xf5\xfa\x1a\xea\x00\x14\xe0\xc3\xd2\x00\x9f\x0e\xc0\xfe\x74\x4b\ \x05\x2f\x5d\xf0\x00\x61\x0e\x65\x61\x06\x26\x30\x13\xd5\x18\x06\ \x21\x3d\xb1\xb0\x22\x16\xa5\x85\x09\x57\x1d\xd7\x71\xc6\x7e\xc2\ \x3c\x5c\xc7\x71\xc3\x15\x73\x59\x3c\x40\x36\xca\x1b\x86\x75\xb1\ \x0b\xe0\x79\x40\x6b\x4d\xc9\x4d\x58\xc3\xe7\x71\x61\x9a\x40\xdb\ \x83\xc6\x58\xf0\x99\xa2\xf5\x5d\x86\x6f\xbf\xbf\x80\xd4\x05\x69\ \xf5\xe9\x51\x4d\x29\xe0\x19\x59\x65\xc4\x48\x93\xbb\xc5\x16\x21\ \x14\xb2\x69\x35\x9e\x4a\x5d\x0a\x69\xab\xc7\x46\x41\x68\x4c\x57\ \x36\x80\xdd\x45\x35\xd5\x1c\x3a\x03\x3c\xc6\x11\xda\x08\xbd\xb1\ \x1d\x2a\x4d\x09\xd5\xf6\xdb\xd4\xca\xbd\x36\xb1\xc6\x6a\x75\x37\ \x57\x52\x35\x71\xd0\x44\xbd\x4b\x94\xe3\x28\x22\x77\xd1\x45\x1b\ \x6e\xac\xe1\x4d\x07\xcf\x18\xf1\x8c\xb5\x76\xa0\x59\x9b\x83\xd9\ \x7c\xf6\x8b\xea\xf3\x25\x39\x80\x05\x9a\xa9\xf2\x9a\x0a\x97\x93\ \xa4\x87\x0a\x3d\x3d\xe4\xd3\x1b\x47\x7a\xde\x3b\x50\x40\x49\x94\ \x93\x7a\x85\x0a\x61\x2b\xe9\x89\xeb\xf6\xd5\xae\x52\x2c\xad\x32\ \x0c\xf4\x93\x57\xbe\xc0\x3b\xdf\x4d\xec\x20\x16\x48\x93\xd8\xa6\ \x65\x22\xe4\xc9\xca\x5a\xcc\x5b\x56\x5a\x98\x93\xfe\x96\xb5\x39\ \x4f\x2c\x51\xc0\x5e\x17\xb4\xd5\x85\x51\x00\x6b\x09\xbb\x68\x83\ \x62\x38\x62\x98\x1c\xb9\x41\x5b\x6b\x80\x13\xf1\xd0\x91\x0d\x4f\ \xa8\x02\x4d\xb6\xa2\x86\x93\x3e\x02\xb9\x8f\xe8\x81\x57\x96\x69\ \xc6\x80\x10\x76\xa5\x01\xb0\x8b\x31\xfc\x9b\x48\x69\x9e\xf4\x06\ \x7a\xf5\x04\x6d\x4b\xa0\x17\xa7\x44\xf5\x09\x61\x38\x2d\x80\xa5\ \xdb\x02\xe9\xb4\xc6\xc0\x5f\x9c\x65\x7c\x14\x10\x9d\x04\x91\x16\ \x82\xe1\x11\xc5\x78\x18\x3c\x51\x70\x98\x85\x21\xc5\x89\x30\x4e\ \xca\x63\xd6\x70\xc4\xf2\x0c\x37\x08\xc4\x1a\x2d\x58\x83\x1b\x14\ \x63\xbd\x19\xb6\x21\x62\x3f\xf2\x0e\x42\x00\xb7\x3d\x17\x8c\xc5\ \x37\x11\xb2\x06\x3a\xa4\x94\x1b\x55\xe8\x81\x1a\xed\x73\x93\x69\ \xbe\xd0\x0c\x4c\x76\x29\x03\xaf\xb1\xcf\xbe\xb0\x47\x81\x4a\x81\ \x27\x76\xf6\xc1\x1a\xd3\xca\x33\x41\xa0\xe4\xa4\x1a\x25\x41\x80\ \x30\x4a\x11\xc0\x9c\xcc\x8b\x31\xbf\xa8\xe5\xec\xc0\x42\xc6\x33\ \xea\x12\x00\xd5\x20\x5b\x51\x4c\xf0\xb5\x69\xd5\xcd\x62\x19\x5c\ \xce\x9d\xee\x28\xc2\xbc\xe1\xed\x79\x79\x68\xc3\x1a\x0a\xd7\x84\ \x41\x06\x32\x5b\x22\x6b\x03\x0f\xfa\x02\x80\xfe\x51\xb4\xa1\x09\ \x52\x30\x9e\x16\xc6\xd0\xc3\x33\x05\x20\x37\xc8\x78\x24\x32\xa8\ \xa1\x8a\xdc\x50\xa3\x9c\xcd\x10\x10\xd9\x38\xe9\xaa\x4f\xcc\x42\ \x0f\xfc\xf2\x9c\x4e\x24\x53\x9f\x9a\x34\xa3\x73\x3e\x59\xa1\x7a\ \x48\x37\x80\x38\xbc\xa6\x51\x5b\x68\x9d\x2c\xab\x18\xc0\x9d\xd4\ \x52\x8c\x5f\x51\xc5\xf4\x76\xe9\x3b\x0a\x7c\x21\x03\xbf\x19\x83\ \x5a\xd8\x48\xbc\x36\x06\x13\x3a\x75\xdc\x50\xc6\xec\xd0\x84\x8d\ \x9c\xb0\x09\x79\x88\xe1\x28\xf2\x40\x32\x37\x98\x70\x70\xd9\x7a\ \x66\xf8\xd2\xf2\xcd\xf2\xa1\x63\x9c\xb9\x61\x46\x3b\xc6\x20\x25\ \x9b\xb6\x63\x9d\xe7\x44\x07\x4d\x38\x29\xb0\x57\x95\xa4\x49\xad\ \xcb\x5c\x41\x7f\x21\x2a\x56\x0d\x0c\x1f\xa8\x8c\xde\x41\xab\xf8\ \x0b\x2c\x21\xf1\x49\x5b\x28\xc4\x41\x73\xb2\xd0\x5a\xca\x05\x1d\ \x2a\x78\x28\x44\x7d\x67\x0c\x05\xa1\x02\x15\x16\x2d\x0a\x59\xdd\ \xf6\x4b\xc6\xb5\x51\x71\x19\xd4\xa0\xb1\xf2\xb0\xc2\xc0\xc9\xeb\ \x27\x6e\x88\xe6\x0a\xdd\x40\x07\xa1\xbc\xec\x63\x76\x78\x86\x4c\ \x6f\x73\x1b\x66\xd8\x34\x2b\xed\xf8\x02\xaf\x54\x31\x8b\x76\x22\ \xa3\x19\x4c\x33\x4d\x3b\x4a\xb2\xd0\xd6\xfe\xed\x48\x32\x05\x9b\ \x89\x60\x33\x80\x00\x9c\xcc\x35\x96\x39\xc1\x87\x30\xb8\xd4\xaa\ \x2c\x36\xa9\xaa\x3a\xa1\xdd\x42\xb3\x62\x82\x10\x48\xe4\xab\x10\ \x0d\x81\x82\x32\x40\x56\x3b\x80\xcb\x37\x64\xfd\xe6\x33\x2a\xba\ \x56\x8c\x29\xc7\xad\xc8\xe9\x80\x21\x0f\x19\x2f\x60\xa1\xf4\xb7\ \x00\x68\x43\x5b\x8b\x32\x06\x75\x3a\xe8\x0b\xd4\x60\x86\x3b\x61\ \x45\x8d\x59\x10\x11\xb1\xc2\x10\x9a\x30\xe6\xd9\x99\xac\x2e\x94\ \x76\x58\x1b\x00\x02\xa2\x92\xd9\xf2\x90\x0e\x1f\xbf\xa0\x40\xe9\ \x14\xe8\xaa\x56\x91\x04\x6b\xb5\xd4\x83\x94\x10\xc6\x34\xb1\x50\ \x03\xae\xac\x65\xed\x27\x5e\x3b\x56\x0b\x55\x74\x0c\x1d\x28\xde\ \x6f\x30\x2a\x4c\x3a\x76\x94\xb7\x5e\x79\x06\x71\xdb\x40\x5f\x60\ \x39\x73\x23\xc0\xe2\x01\x1d\x7f\x23\x14\x66\x18\xe5\x0b\x47\x19\ \x03\x73\x7d\x5a\x92\x2e\xd9\x74\xb1\xd4\x58\x9a\xd0\x84\x66\xcb\ \xa5\xc9\x6f\x68\x21\x59\x9a\x66\x9e\x54\x19\x3d\x64\x09\x35\x52\ \xcb\x49\xbb\x4a\xc3\xb9\xd2\xc5\xce\xb2\x97\x85\x27\x49\xde\x99\ \x01\xd5\xd4\x0e\x1d\x65\xac\x6f\x7d\xdf\xf0\x09\x54\x88\xe5\xac\ \x42\x19\x03\x2a\x6e\xeb\x1b\x24\xff\xfe\x17\xc0\x18\x2b\x91\x1b\ \x09\x9c\x15\xdf\xde\xd5\x0d\xd3\x6b\x83\x37\xba\xc1\x03\xef\xe4\ \x41\x5a\x68\x31\x81\x5d\x2a\x74\x95\x0a\xfb\x26\x37\x14\x6e\xc6\ \x23\x05\xdb\x8e\x34\x9f\x53\x15\x36\xc8\xaa\x0d\x96\xa6\x8a\x05\ \x2e\x6d\xa1\x9a\xc9\x9a\xea\xae\x24\xd0\x81\x09\x83\x0f\x06\xbd\ \x01\x05\x44\x45\x8f\xed\x5a\xed\xa7\x07\x2a\x09\x8e\x33\xa0\x07\ \x63\x78\xd5\xc7\xbb\x94\xc1\x44\xa3\x22\x3c\xc6\x31\xce\x37\x46\ \xf8\x82\x11\xd0\x61\x04\xdf\x68\x3a\xc0\xb8\xa4\x1b\x94\xa3\xf2\ \x8c\x37\x00\x6b\x14\x24\x9b\x98\x1b\xc6\xb2\x57\xe1\x98\xc0\x18\ \x79\xe0\x01\xb7\x32\x80\x26\xc1\x52\xe8\x36\x02\x12\x50\x4e\xd3\ \xdc\x8c\x66\xcc\x42\xba\x6f\xb6\xe5\xae\xf5\x30\xcf\x05\xd6\x79\ \x6b\x9a\x29\xd8\xa7\x3a\x33\x80\x96\xfc\x22\x0b\x5b\x24\xcd\x4c\ \x98\xf4\x24\xd5\x91\x24\x0e\x35\x89\x8a\x73\x5f\x15\x95\x76\x2c\ \x9a\xd1\xbb\xa4\x80\xc2\x24\xfd\x1b\xbf\xb6\x80\x1a\x51\xf8\x42\ \x37\x30\x8d\x0a\x74\x44\x41\x98\xd5\x02\xe1\xa7\xbf\x32\x86\x89\ \x41\x2b\xb8\x00\xb0\x86\x70\xbe\x36\x86\x2c\x1f\xc9\xd5\x16\xa4\ \x68\xb6\xd3\x0c\x70\x5c\xb7\x63\xfe\x9c\xbb\x96\x6e\x88\x73\xbd\ \x58\x53\x76\xed\x6a\x5d\x6b\xf8\x93\xf0\x41\xde\x64\xf3\xa4\x74\ \xad\x41\x40\xc1\x6c\x39\x68\x43\x67\xe0\xda\xd8\x86\x4a\x3b\xb8\ \x0d\xf2\x3f\x08\x79\xc8\x64\xd1\x82\x11\xa8\xb1\x06\x6a\x5c\x9a\ \x36\x99\x7e\x06\x93\x39\xc8\xee\x7b\x23\x53\x3a\x5b\x31\xc2\xf4\ \xb8\xd9\x82\x36\x64\x6f\xdd\xf7\x26\x0b\x2a\x8c\x91\x97\x1c\x49\ \x94\x36\xc8\xe8\xf7\xc6\xa5\x94\xe6\x00\x34\x23\x00\x88\x0d\x80\ \x30\x78\x35\x8b\x36\xbf\x39\xb1\xba\xae\xae\xd5\xe8\x47\x12\x55\ \x49\xdc\xbc\xe7\xd5\xda\xc5\x25\x9b\x62\x89\xa7\x6f\xd0\xae\xd9\ \xd2\xa7\xb0\xed\x5c\x90\x73\x3b\x32\xc0\xdc\xe8\x18\xc6\x3d\xee\ \x28\xa8\x5c\xd3\x63\x70\x79\x6e\x8b\x89\xcb\xd7\x66\xcc\xe6\xbd\ \x5b\xc3\xc6\xdc\xf2\xb1\x31\x00\x5d\x30\x7d\x6b\xd3\x67\x54\xf0\ \x09\x1c\xa3\x79\xe0\x04\xe7\x95\x0d\xa2\xbe\xeb\x05\x16\x3c\x6b\ \xd7\x9d\x05\xd9\xdb\xd9\x8c\xaf\xff\x8c\x25\x59\x68\x49\x12\x92\ \x8d\x8f\x9d\x10\xec\xe2\x28\xb6\x9a\x62\x9b\xc1\x24\xec\x96\xa4\ \x19\x6a\x5f\x7b\x0a\x50\x61\x22\x13\xb8\xe0\x28\x72\xb7\x06\x35\ \xf0\x30\x06\x17\x8c\xa1\xe5\xfe\x77\x97\x63\xa7\x3f\x36\xa7\x0e\ \x88\x6e\x17\xe1\x6b\x77\x5c\x04\x85\x05\xc1\x98\xa7\x4d\x86\x5c\ \xcf\x17\xc8\x26\x58\x9b\x2a\x5d\x15\xcd\xb0\xc1\xd4\x95\x1e\x80\ \x59\x2c\x6d\x16\xd9\xcf\xda\xbf\x16\xc8\x70\xd4\x77\x86\xa9\xf4\ \x2a\x4d\xd6\xba\x56\x8a\x88\x1f\x5b\xe1\x24\x51\x73\x81\x2a\xaf\ \x07\x5d\xb7\x7e\xed\x40\xfe\x93\x09\xfc\x6a\xfb\x16\xe0\xea\x19\ \xb7\x7d\x86\x37\x5e\xda\x7b\x32\x27\x73\x76\x82\x1c\xe3\xe3\x10\ \x4d\x50\x7c\xc6\x27\x15\xdc\x20\x6a\x3f\x01\x1e\xc6\xa0\x12\xbd\ \xa3\x29\xa8\xe2\x5e\x00\xb7\x74\x88\x25\x5d\x01\x10\x7f\xdc\x27\ \x0c\x8f\xa7\x7d\x6d\xb6\x13\x6f\x36\x3b\x56\xb3\x34\x9f\xa2\x2a\ \xc2\xd0\x13\x3b\x81\x35\x27\xc6\x34\xe4\xd5\x1a\xae\x82\x6c\x03\ \xd0\x4e\x1b\xe7\x5c\xa8\x17\x79\x91\x37\x7f\x20\xf7\x06\x25\xa0\ \x77\x61\xf2\x4d\x9a\x06\x80\xfc\x67\x02\x89\x63\x4c\x1b\xe4\x69\ \x04\x28\x37\x03\xb6\x41\x52\xf1\x05\x25\xa5\x3f\x87\x51\x0d\x25\ \xa0\x02\xa2\xb6\x42\x3f\x51\x08\x36\x50\x81\xcd\x70\x58\xda\x87\ \x58\xb9\xa6\x7d\x95\xe7\x7d\xbf\xf0\x85\x92\xd7\x58\xa6\xf7\x7e\ \x4d\x13\x62\x4d\xb3\x23\xfe\x9c\x01\x83\xdd\xe5\x1a\xef\x15\x7f\ \x9f\x12\x79\xc2\x90\x83\x6a\x27\x51\x0a\xb3\x16\x57\x81\x51\x2f\ \x07\x73\x45\x98\x4c\x1e\xf5\x69\x80\x87\x0a\x0e\x91\x1d\x8f\x11\ \x02\x8a\xd2\x1d\x13\x24\x11\x5d\xf0\x0b\xf0\x43\x0d\x43\xe4\x61\ \xdb\x37\x4f\x90\xf7\x81\x72\x06\x86\xb3\x33\x67\x23\x41\x36\xed\ \x90\x45\x18\x27\x71\xa1\xd7\x12\xc7\xd6\x19\x92\x77\x76\xe2\x97\ \x6b\xb9\xc6\x34\x75\x08\x72\xce\x07\x1c\xf6\x17\x80\x1b\xf5\x21\ \x03\xf8\x6e\x63\x34\x15\x83\xb4\x6f\x18\x71\x24\x14\x50\x0d\xbe\ \xc2\x2e\xd3\x43\x2e\x16\xf0\x74\x43\xf4\x29\x4c\x03\x8c\x4f\xf7\ \x85\x37\x98\x7d\xdf\xb7\x5d\xde\xe7\x5e\x1b\x67\x71\x4c\x93\x05\ \x5d\x53\x4b\xa0\x98\x62\xa3\x28\x67\x56\xa3\x7d\x54\x57\x75\x74\ \xa8\x8a\xab\x88\x60\xaa\xc0\x87\x01\xa8\x51\xcb\x42\x8e\xb3\x58\ \x37\x26\xb0\x37\x3f\x11\x06\x2b\x41\x01\x61\x80\x11\x19\x91\x19\ \x14\xd0\x4f\x13\x74\x03\x8d\x58\x1f\x99\x64\x79\x72\xb6\x6b\x4e\ \x57\x70\xdd\xd7\x6b\x3b\x31\x12\xaf\x54\x0a\x57\x52\x6b\x31\x68\ \x35\xf4\xc0\x34\x3b\x02\x25\xaf\xc1\x5e\x95\x31\x86\xf3\x24\x7e\ \xdc\xd7\x8d\x6a\xf7\xfe\x13\x6d\xb0\x1b\x79\xa8\x05\x2e\x17\x8e\ \x70\x83\x77\x6d\xc1\x3c\x4f\x06\x65\x64\x51\x02\x61\xa0\x3f\x5d\ \x90\x07\x87\x17\x4a\xfa\xf3\x67\x16\xf1\x18\x54\xb4\x04\x0a\x64\ \x6c\x28\xb1\x19\xd7\x95\x7d\xbb\x36\x75\x89\x35\x0b\x2d\x01\x90\ \xf9\x58\x4b\xa6\x71\x6c\xd8\xf6\x1a\x65\xc7\x24\x0b\xe5\x93\xd6\ \x88\x8d\xbf\x76\x8a\x08\x37\x91\xab\xf8\x13\xa3\x90\x0d\x10\x26\ \x14\x93\xc6\x7f\xe2\x88\x41\xb0\x28\x8b\xbc\x35\x16\x26\xf0\x73\ \x79\xc0\x95\x8a\xb2\x12\x3c\xf0\x22\x51\x94\x11\x8d\x32\x8f\x66\ \x24\x2f\xa1\x14\x8a\x0c\x77\x94\x92\x67\x81\xe6\xd2\x12\x91\x57\ \x8c\xe0\xf7\x53\x25\x51\x30\x30\x58\x7a\x42\x49\x76\x67\xe7\x2a\ \x02\xc2\x7a\x4b\x49\x91\xa3\x50\x41\x8b\x84\x69\xbe\xd1\x01\x6f\ \x43\x84\x54\x59\x95\xe6\x28\x2b\xa8\xd0\x04\x02\xd1\x04\x8a\x62\ \x1d\xc6\x50\x02\x8d\xf2\x22\x32\xa0\x92\xfc\xd2\x92\xd4\x93\x4a\ \xe4\xf2\x07\xc2\xb0\x39\xc6\x36\x87\x89\xa5\x25\x73\x18\x67\xbf\ \xd0\x6b\x4c\x73\x76\x8f\x85\x0c\xa8\xe9\x1a\xc8\x56\x19\x40\x39\ \x13\xb5\x96\x66\x8b\xd7\x4e\x7e\x99\x83\x4d\x60\x51\xb6\x52\x77\ \xbb\x87\x26\xcf\xfe\x50\x98\xb7\x75\x98\x88\x39\x80\x20\x59\x80\ \x79\x03\x52\xe2\x71\x88\xe5\xd6\x22\xd9\x60\x0c\x8d\x12\x02\x5b\ \x80\x3d\x3d\xc1\x3b\xfe\xe3\x8b\xfe\x73\x2a\x2e\x31\x13\x31\x69\ \x4a\x7a\xe0\x71\x08\x33\x94\xd5\x65\x89\x58\x88\x75\x43\x99\x2f\ \xae\x32\x00\xe4\xc5\x9d\x1e\x67\x6d\xef\xa4\x53\xb9\x66\x9b\xf3\ \xb7\x04\x6d\xc0\x2d\x46\x70\x15\xc9\x05\x3e\x6e\x73\x5b\x46\x90\ \x91\xc2\xe9\x6e\xef\x16\x8b\x5a\x39\x23\x3c\x10\x06\x79\xa0\x28\ \x10\xb8\x8b\x8d\xd2\x2f\x47\x92\x17\x9f\x63\x9d\xd4\xf3\x4f\xbe\ \xc8\x18\x57\xa2\x2a\x43\x49\x90\x7b\xc9\x24\x0a\xb5\x34\x22\xb8\ \x7e\x5b\x93\x7e\x2a\x48\x13\x12\x07\x20\x50\xc1\x9e\xd1\xb7\x61\ \xaf\xd1\x97\xef\xb9\x8a\x12\x21\x9f\xbb\xa9\x9f\x51\xd9\x7f\x76\ \x97\x87\x1b\xa9\x84\x81\x38\x15\x3c\x60\xa3\x8e\x62\xa0\xd5\x00\ \x96\x79\xf0\x22\xef\xd8\x2f\xd0\xb9\x05\x0d\x08\x19\x08\x95\x13\ \xa3\x23\x11\x7f\xc6\x90\x99\x51\x59\x57\x77\x75\x9f\x02\x90\x96\ \x18\x7f\x9d\x98\x5d\x40\xf1\x1f\x43\x55\x1a\x7b\x89\xa5\x30\x78\ \x5d\x7a\x80\xa2\xf0\x39\x11\x08\xf6\x94\x2f\x05\x9c\x17\xe5\x36\ \x7a\x08\x95\xfe\xbd\x77\x4c\x1f\x35\x1b\x76\x71\x17\x10\xc8\xa6\ \x58\xd0\x8e\x0f\xf1\x22\xa6\x63\x3a\x9c\xf2\x22\xff\x34\x57\xe4\ \xb2\x68\xe4\x42\x5e\x10\x67\x7e\x0d\x67\x35\x4c\x5a\x19\x50\xb7\ \x70\xed\xd4\x19\x9f\xa2\x02\xff\xb4\x05\x73\xa6\x35\x59\xda\x49\ \x8b\x95\x8d\xb3\xd0\xa5\xaa\xb8\x04\x79\x50\x15\x6e\x13\x5b\x6a\ \xa1\x05\x69\x65\x02\x9b\x2a\x9c\xc5\xd2\x3c\x42\xf1\x05\x36\x6a\ \x01\x86\x52\x1d\xcc\xe9\xa6\x94\x19\x02\xa1\x84\x11\xd0\xc9\x29\ \xbc\x18\x45\x11\x43\x9d\x4e\xf5\x3f\xd4\x13\x3d\xfe\x51\x5e\x4d\ \x43\x90\xaa\x22\x1a\xdc\xc5\x35\x8e\xa5\xa5\xb0\xa4\x4a\x85\xf0\ \x7d\x5b\xb3\x35\xf3\xb4\x58\x55\xb7\x6b\x93\xda\x8d\x26\x89\x2b\ \x7a\xe8\xa9\x31\x2a\xa3\x89\x99\x1c\xc5\x29\x16\x5f\x60\x48\x14\ \xf1\x05\xa8\x40\x0d\x78\x81\x05\xc6\xf0\x12\x25\x00\x39\xec\x88\ \x2e\xf0\x71\x62\xec\x58\x96\xd6\x59\x45\x3d\x61\x96\x9b\x65\x40\ \x4f\xb3\x2f\x3b\x52\x50\x2c\xc1\x2f\x92\x71\x12\x59\x1a\x67\xb0\ \xb4\x5a\xb8\x2a\x89\x5f\xf8\x96\x24\x61\x83\xa9\xc8\xac\xdd\xe8\ \x06\xcf\xfa\x83\x6f\x23\x16\x6e\xb3\x14\xfc\x19\x8b\xc4\x09\x22\ \x63\x50\xfe\x02\xbf\x35\x11\xdc\x80\x0e\xa8\x90\x0d\x92\x23\x3c\ \x2d\xb2\x12\x3c\x1a\xa4\xeb\xa1\x8b\xaf\x3a\x1a\x55\x48\x9d\xa0\ \x23\x2f\xa3\x63\x46\xfe\xf1\x54\xeb\x1a\x40\xbf\x00\x8c\x27\x21\ \x2a\x7c\x39\x8c\x85\xe0\xa0\xc4\xba\xa5\xda\x87\xa1\xf1\xe7\x85\ \x02\x3b\xb0\x75\x58\xa9\xd4\xe0\x1b\x49\x51\x56\x69\x81\x9f\xd3\ \x5a\x95\xb2\xa8\x27\x82\x62\x0c\x11\x24\x31\x14\x41\x5b\x15\x42\ \x14\xcc\xe0\x22\xab\x9a\x17\x39\xb1\xaa\xe6\xa5\x8b\x03\xf0\x07\ \x49\x63\x96\x08\x55\xab\xbe\x33\xab\x0d\x7a\x2a\xf4\x72\x29\x8d\ \x58\x6b\xb6\x56\x2a\xf3\x52\x4b\x89\x75\xa1\x00\x09\xb0\x55\xf7\ \x0b\x3b\xdb\x8d\x2c\x94\x0d\xe3\x06\x4e\xc5\x43\x16\x65\xca\xb0\ \x0e\x0b\x17\x5e\xd6\x06\x67\xd4\x05\xd5\x70\x19\x23\x87\x1a\x34\ \xa2\x3f\xd0\xf9\x18\x46\xf2\x9c\x55\x1b\xa4\x67\x44\x9d\x25\x2b\ \x41\xb2\xda\xb5\x90\x3b\x29\xf5\x08\x3f\x98\x44\x13\xc8\x90\x93\ \x37\x60\x55\x34\x3b\x8c\x07\xb7\x7a\x5f\x08\xb7\x13\xb9\x04\x36\ \xe0\x48\x4b\xf1\x4d\xd1\x8a\x98\x70\x74\x95\xc9\x91\x6f\x0c\xc6\ \xb8\x4b\xc0\x03\x82\x0b\x5b\xd5\xc0\x2e\x82\x11\xa4\x8f\xf1\x06\ \xf5\xfe\x52\x3a\x51\xc4\xbb\xf3\xa8\x4b\xb5\xba\x6d\x5f\x05\x55\ \x4f\x37\x12\x34\xf1\x58\x4c\x53\x08\x85\xa0\x40\x38\x69\x4b\xed\ \x07\xa9\x4b\x13\xba\xa2\x2b\x9f\x2d\x50\x3c\x7a\x88\x56\x59\x19\ \x9c\x7e\x18\x26\x05\xa8\x05\x61\xb0\x5a\x10\xf5\x13\x79\x30\x51\ \x43\x11\x07\x34\x22\x18\xe0\xd1\x80\x2a\x29\x1e\xf2\x22\x03\x2a\ \xc0\x07\x7f\x70\xb2\x26\x0b\x19\xea\x41\x91\x8c\xa1\x02\x16\x90\ \x58\x48\xe7\xb6\xbe\xf6\x90\x6d\x0b\x6c\x6f\x1b\xbd\x71\x3b\x0a\ \x36\xe0\xb3\xa6\xbb\xb0\x31\x2a\x8e\x48\x28\x17\x5a\x90\x60\xac\ \x75\x18\x9f\x10\x07\x46\xc6\x1d\x17\xf1\x84\xf2\xf2\x06\x77\x0a\ \x2c\x17\xfc\x09\xd5\xf0\xa0\xed\xaa\xb5\x45\x4a\x45\xf5\xc2\x54\ \xdb\x96\x23\x0a\x54\x79\xc9\x8a\x7a\x58\x83\xb3\x71\x88\x7a\x92\ \x07\xba\x01\x2c\xba\x4c\xe0\x06\x39\xa4\x14\x6d\xc4\x7f\x53\xb9\ \x56\x9d\x36\x5f\x29\xfa\x06\x79\x10\x1a\x06\x8a\xc1\x16\x9c\xb8\ \xfd\xe4\x1f\x14\xc0\x07\x55\x82\xa7\x54\xa4\x4b\x37\x20\x1f\x9f\ \xe0\x45\xaf\xfb\x2f\x93\xa8\xb6\x2b\x6c\xa2\x58\x37\x87\xd7\x05\ \xc3\x7e\xf9\x13\xbb\xe0\x06\x9e\x80\x0e\x30\x6a\x7f\x44\x7b\x22\ \xfe\xe3\x43\x65\x3c\x9b\x8b\xa1\x44\x01\x54\xd8\x11\xb9\x1b\x02\ \x32\xd0\x3b\x51\x84\xc4\x8d\xeb\x63\xb3\xe4\xc1\x55\x48\xb3\x95\ \xa7\x8d\xa8\x17\x94\xc8\x26\x7e\xc0\x96\x8d\x59\xfc\x9e\x4b\xa0\ \x4d\x7b\x90\x43\xd6\xe0\x09\xd6\x00\x0d\x78\x80\xba\x54\x29\x15\ \x26\xb0\x06\x2a\x14\xb7\x55\xb4\x29\x99\x09\x14\x21\xf0\x07\xbd\ \x28\x2f\xed\xa2\x3f\xfa\x73\x50\xa3\x23\xa4\x4b\xbc\xa7\xb6\x4a\ \x4b\xb3\x83\x94\xa2\xc8\x24\x25\xb8\xc2\x71\x08\xc8\x81\xec\x23\ \x26\x35\x0a\x4c\xe0\x09\xdd\x84\xc0\xd3\x72\x7f\xb7\x25\x05\xd9\ \xb0\x0b\xc1\x3b\x7f\xab\x5a\x24\xef\xd1\x11\xef\x91\x3f\xef\xf1\ \x1e\xb8\xbb\x04\x96\xe9\x8b\x49\x03\x00\x6a\xec\xb5\x5d\x9b\xc1\ \x9a\xf9\x1e\xbb\x00\x8c\x63\x38\x12\x10\x19\x79\x3d\x39\x68\x8f\ \x95\x66\xab\x3c\xa9\xb3\x3a\x0a\xa0\xb0\x07\x6b\xf0\xcd\x9e\xe0\ \x09\x39\xe4\x09\xd0\x00\xa3\x65\x7a\x7f\xd0\xb0\x06\x4c\xb0\x0b\ \xa0\x50\xc7\xdd\x38\x24\x9b\x81\x4a\x2b\xd4\x55\x0d\x48\x3d\xb8\ \x3b\x9d\x5a\xdb\x3f\xba\x0c\xbe\xd1\x03\x00\xa5\xf0\x7c\xa7\x38\ \x87\x03\x90\x93\x23\xc8\x35\x7a\x40\xa2\xda\x3c\xb0\x43\xda\x39\ \xb8\xa3\xf0\xca\x9e\x70\x05\x63\x60\xce\xe6\xfc\x0c\x57\xd0\x0d\ \xb8\x2c\xab\x93\xfa\x23\xbf\xf0\x07\xca\xfc\x1d\xf2\x38\x9d\xc3\ \xfc\x84\x27\xdb\xae\xcc\xbc\x76\xd8\xf3\x7c\x52\x12\x91\x0b\x24\ \x76\x0b\xb4\x13\xee\x85\x66\x01\x01\x00\x21\xf9\x04\x09\x00\x00\ \xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\x88\ \x8d\xff\xff\xff\x09\x4a\x89\x84\x42\x84\xff\xff\xff\x5d\xc8\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\x94\xb2\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x0e\x27\x1d\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xdc\xe8\xaf\xff\xff\xff\x54\x67\x1e\xff\xff\xff\ \x57\xa9\xe4\xff\xff\xff\x13\x28\xa8\xd5\x0f\x10\x9a\xa8\x5c\x10\ \x27\x69\xff\xff\xff\xd8\xc8\xe1\xcd\x68\x56\xff\xff\xff\x8d\x69\ \xa4\xff\xff\xff\xff\xff\xff\xf5\x95\xb6\xff\xff\xff\x50\x68\x5f\ \xf9\xaf\xba\x9b\xf2\xfc\x13\x29\xe3\xbb\x89\xb6\xff\xff\xff\x4e\ \x68\xf8\xfa\xc8\xe5\xff\xff\xff\xff\xff\xff\x2f\x48\xeb\xd9\xe8\ \xf9\xff\xff\xff\x98\xc8\xfb\xff\xff\xff\xff\xff\xff\x7a\x88\xaf\ \xff\xff\xff\xff\xff\xff\xf0\x68\x51\x93\x68\xf8\xff\xff\xff\x79\ \x88\x3a\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xb7\xb4\xf3\xff\xff\xff\x4b\x4a\xe0\xff\xff\xff\xd9\x90\xf2\ \xf7\xb2\xf0\xfb\x8e\x5e\xff\xff\xff\xf9\xe8\xf0\xb7\xc8\xf1\x6c\ \x6a\x21\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xee\x69\ \xa4\xff\xff\xff\xff\xff\xff\x95\x94\xf4\xff\xff\xff\xff\xff\xff\ \xd6\xd8\xed\x29\x2a\x92\x11\x38\x66\xff\xff\xff\x39\x56\xf6\x78\ \x8f\xf8\xff\xff\xff\x97\xb1\xf9\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb9\x8f\xf3\xff\xff\xff\x5b\xb8\xeb\x9c\x46\xd6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xda\xae\xf8\xb2\x68\xec\xb7\ \xd8\xfa\xfb\xfd\xfa\xcb\x78\x6b\xfa\xd8\xec\xff\xff\xff\x7c\xf5\ \xfc\x7d\x96\x45\xff\xff\xff\xfb\xd0\xa5\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4e\x35\x9d\xff\ \xff\xff\x50\x29\x57\xff\xff\xff\xff\xff\xff\xc4\xe6\x99\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf2\x26\x25\xb4\x51\x29\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x71\ \x58\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x18\xdc\x70\x35\ \x54\xff\xff\xff\x8c\x29\xc4\xff\xff\xff\x93\x34\x55\xae\x31\x5f\ \xa4\x1c\x68\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\x7a\xcb\xf9\xff\ \xff\xff\x58\x93\xea\x78\xb3\xf8\xff\xff\xff\xff\xff\xff\xfa\xec\ \xba\xfa\xad\x89\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb5\x6b\x67\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\x91\x8d\xff\ \xff\xff\xf4\x78\x58\xa4\x3a\xd4\xb4\x9a\x75\xff\xff\xff\x84\xba\ \x7c\x42\xb6\xee\x34\x7e\x54\x98\x38\xd3\xff\xff\xff\xb8\xb7\x7d\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\x97\x94\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x4f\x59\x15\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x18\x35\xa4\x12\x77\xa9\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x19\x37\xe0\xcd\x78\xe5\x58\x76\xfa\x99\xd8\xfc\xff\ \xff\xff\xff\xff\xff\x92\x78\xef\xff\xff\xff\x20\x97\xc8\xff\xff\ \xff\x48\x5b\xf6\x49\x5a\x63\xff\xff\xff\xff\xff\xff\x68\x7b\xf4\ \xef\x78\xa8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x92\x59\xf8\x08\x19\xe0\xff\xff\xff\xb1\x79\xf7\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x71\x57\xaa\xff\xff\xff\x6f\x5a\x6a\xff\xff\xff\xff\ \xff\xff\xd6\x3a\x7c\x96\x98\x51\xff\xff\xff\x99\x97\xb6\xff\xff\ \xff\xff\xff\xff\xb9\xb8\xb9\xff\xff\xff\xd9\xfb\xfc\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\ \x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\ \x10\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\xa3\ \xc1\x0f\x20\x43\x7a\x1c\x49\xb2\xa4\xc9\x93\x25\x43\x82\x54\xa4\ \x92\xd3\x8a\x0f\x28\x63\xca\x9c\x49\x33\xe5\x07\x4e\x9b\x70\x6e\ \x92\xb7\xa8\x9a\xcf\x64\x40\x11\x08\xaa\x49\xb4\xa8\xd1\xa3\xff\ \x42\xe2\x5c\x94\xe0\xdd\x8a\x15\xc9\xaa\x71\xb8\x45\xf5\x67\x32\ \x04\x08\xbc\x0c\x45\xca\xb5\xab\xd7\x89\x2a\x35\x69\x7a\xe7\x14\ \x97\x28\xaa\x68\x6f\x4d\xbd\xe5\xb3\x5a\x50\xac\x5a\xbf\xca\x9d\ \x2b\x57\xe5\x26\x4d\xac\xea\x8d\x12\x85\x2b\xd9\xda\xb4\x1c\xa4\ \xb2\x0d\x0c\xf4\x2a\xd6\xac\x71\xe9\x2a\x5e\x4c\x52\xa5\xd2\xb1\ \x3b\x44\x49\x1d\x05\x0d\x1a\x28\x35\x81\x6f\xa9\x59\xb0\x00\x73\ \xdb\xc2\x57\x0d\x1f\xf6\x42\x5a\x10\x4c\xc6\xa8\x53\x3f\x74\xfc\ \x58\xd3\x0e\x0e\x9c\x2f\x63\xe6\xa0\x06\x14\x28\x3b\xa0\x16\x68\ \xd6\xcc\x99\xed\x5b\xb8\x87\x11\x84\xc6\x7a\x75\xab\xea\xe3\xc8\ \x59\x6f\xda\xc4\xf4\x9d\xe4\xb5\x6a\xa2\x77\x8e\x2e\x5d\x36\x75\ \xea\xbe\x7f\x13\x17\x0e\x1a\x34\x02\x4b\xc8\xc3\xfe\xd3\x65\xbd\ \x88\x44\x82\xa6\x3e\x37\x4f\xdf\xad\x86\xb7\xfa\xd8\x9d\x39\x04\ \x96\xff\x59\x74\xf7\xa8\xdd\xdd\x16\x06\x2f\xbe\x3f\x51\xd6\x8a\ \xb0\xf2\x02\x2b\x3b\x98\x60\x5b\x6f\x54\x75\x76\x4b\x6f\x9c\x5d\ \xb7\x59\x6d\x07\x72\x20\x99\x64\xda\x1d\x06\x94\x4f\x6c\xb5\xa5\ \x21\x68\xfc\xf9\xe7\x61\x63\x2a\x29\xf2\xc0\x0b\xf5\x98\xa0\xd7\ \x6d\x2d\xe4\xb6\x80\x1d\x08\x72\xe6\x22\x55\xd2\x39\x18\xa3\x67\ \xfa\x89\x96\x15\x71\x17\x52\x47\x5f\x35\x7d\x15\x26\x5c\x87\x1f\ \x06\x69\x91\x63\x3e\xc8\xc0\x82\x0c\x79\xd8\xd0\x89\x6d\xb6\xd9\ \x61\x47\x0b\xb8\xb9\xc8\xa2\x8b\x0c\x6a\x36\x63\x7b\xd1\xa9\x55\ \xdf\x6f\x86\x15\x96\x9e\x8e\x5b\x26\xe3\x05\x62\x9c\x08\x69\xe6\ \x42\xac\x85\xf4\xc0\x03\x47\xa0\x31\x82\x0d\xfa\xe8\x23\x47\x9c\ \x4b\x32\x09\x4a\x0b\x50\xb2\xa8\x67\x94\x2a\xea\x86\x96\x8c\x19\ \xde\xc7\x9d\x5b\x84\xfa\x24\x9f\x7c\x0f\x12\x66\x23\x5c\x5e\x68\ \x72\xe6\xa3\x8e\x29\xc2\xd2\xa4\xef\x24\xf0\x02\x3e\x47\x1c\x31\ \x06\x3e\x50\x70\x01\x67\x9c\xfa\x74\x82\xc3\x81\x0b\xdc\xd6\xe7\ \x8a\xa5\x52\xe9\x27\x86\xd5\xb0\x85\x96\x55\xfe\x17\xe6\x77\xa8\ \x28\x88\x8e\xc2\x5b\x60\xfa\x8d\x06\x5c\xa3\x8f\xfa\x07\xa0\xa4\ \x8a\xf8\x00\xcc\xb0\xb4\xac\x69\xc2\xb1\x05\xd6\x53\xcf\x11\x9e\ \xca\x31\x67\x27\x71\xd8\x66\x19\x66\x0b\xa6\xb5\xa0\x6e\xd8\x56\ \xf5\x19\xab\x6a\x65\xd8\x96\x84\x1c\x04\x95\x0c\x2e\xb8\xd2\x7a\ \x1d\xae\xa2\x91\xa6\xee\x98\x08\x38\xda\x2b\x6a\x69\x7e\x00\xac\ \x0f\x24\x18\x30\xec\x29\xc0\xec\x62\x00\x2d\xf8\x00\x43\x4b\x3d\ \xac\x98\xf0\xce\x0e\xf5\x8c\x30\xc2\x13\xce\x86\x1a\x07\x34\xa3\ \xe6\x96\x59\x5b\xd6\xb6\xea\xad\x86\xad\xaa\xa7\xe3\x54\xd1\x5d\ \x26\x4a\x97\x40\xe1\xc2\xe3\x73\x56\x09\x37\x1a\x69\x16\xba\xfb\ \xee\x57\x91\x02\x0b\xec\x22\x8b\xd0\x4b\xc2\x1c\x73\xd8\x4b\x8b\ \xbf\xc0\x3c\xe0\xef\x0b\xff\x92\x65\x22\xb3\x36\x3c\x41\xe7\xc2\ \xd0\x74\xd2\x02\x34\x34\xb6\x2a\xf1\xab\x18\xa6\x55\xaa\x9d\xb9\ \x35\x0d\x4a\x65\x96\x85\x6b\xa1\xa0\x8b\x8e\x3c\xb5\xc9\x27\xff\ \x17\x92\x3c\x3e\x74\xad\xc8\x22\xcc\xb1\x4c\xc2\xd8\x24\x2c\xf2\ \x75\x79\x2f\x1b\x30\x07\x2d\xfb\xce\x5c\x0f\xce\x0f\x94\x68\x02\ \xc1\x9c\x7a\xaa\x8f\x92\x71\xb4\xd0\xc9\xfe\xde\x43\xfb\x59\xed\ \x8b\x7e\xbb\x78\x1b\x34\xb8\xd9\x61\xd9\xd2\x4f\x5b\x16\x61\x85\ \x8c\xae\x6b\xa1\xae\xa0\xad\xb0\x49\xd6\x31\x91\xe7\x83\x2c\x4d\ \xc8\x22\xcb\xd8\x2c\x2f\xc7\x32\xda\xf4\x7e\x3e\x76\xcc\x73\xb0\ \x62\x3a\x2b\xb4\xe0\x8c\x73\x5e\xa9\xe3\x83\x29\x3e\x23\x40\xb1\ \x70\x1c\x0b\x0b\x0d\x0d\x9e\x29\x4e\xa9\xe7\x8a\x4e\xf6\x6e\xb8\ \xe2\xb1\xa9\xc8\x64\x7c\x21\x3f\x8e\x18\xbb\xf7\xd9\x17\x6b\x32\ \x93\x53\x9e\x51\xbc\x1f\x6c\xa2\x88\x2c\xa1\x93\xd0\xb5\xe6\x73\ \x6c\xee\xc3\xe7\x61\x8b\xdd\xf2\xe7\xe5\x9d\x1e\xc5\x22\xef\x9c\ \x6e\xba\x09\xac\xbb\x7e\x04\x2d\x47\xd4\x03\x05\x0e\x40\x43\x7d\ \x3b\x9e\x4f\xb2\x68\xaa\x93\x79\x1a\x8e\x9b\x6d\xd7\xc5\x37\x5b\ \xae\x6f\x21\x59\x70\x84\x63\xb4\x30\x79\xc9\x2a\x65\x72\x9e\x44\ \x7e\xc5\x93\x60\x7d\xed\x7a\xd4\x6b\x59\xd7\xba\x66\xbd\xb2\x81\ \x0f\x6c\x17\x44\x9b\xe8\x58\xf6\x0e\x4d\x2c\xc2\x12\x51\x28\x5f\ \x14\x02\x96\xba\xd4\x29\xeb\x84\xef\xc3\x81\x0a\x41\x31\x8a\x05\ \xe0\x8e\x70\x76\xd2\x5f\xfe\x4c\xd5\x99\x1a\x2e\x60\x14\x6a\x80\ \xd5\xa2\xd4\x25\x32\xe2\xd0\x86\x46\xfe\xc9\xdb\x10\x02\x9a\xa7\ \x40\x34\x85\x44\x52\x5c\xbb\x9c\x01\xf2\x60\x8a\x3c\xe4\xa1\x09\ \xdb\xbb\x1e\x09\xbe\x16\x2c\xcc\x6d\x2e\x83\x67\xcb\xa0\xf7\xca\ \x36\xbe\x77\x7c\x30\x0a\x62\xb1\xc4\x58\x58\x11\x04\x9c\x29\xeb\ \x5f\x27\xd4\xcb\x28\x70\x30\x8a\x51\xb0\xb0\x32\x78\xaa\xcc\xfe\ \x9a\x34\x38\xfb\x05\x6f\x3a\x84\x19\xa0\x1e\xb9\x13\x9c\xa8\x50\ \x88\x63\x5e\x02\xca\xc6\x80\x42\xc4\x22\x0e\x24\x52\x9a\xe3\x86\ \x01\x60\x01\x0c\x67\x99\x42\x0e\xa6\x88\x64\x1e\x4e\x21\x8b\x60\ \x5d\x2e\x82\x55\xcc\x5c\x04\xcd\xf6\x3d\x0b\x6a\xf1\x73\xac\xf8\ \x9c\x26\xc6\xc7\x94\x2f\x92\xef\x7c\xe5\x23\x98\x89\x94\x35\x8a\ \x31\xac\x11\x7e\x0c\x83\x63\x1c\x87\xa7\x2a\xf8\xe0\x10\x5d\x5c\ \x9a\x1a\x7e\x86\x73\xa3\x01\x86\x26\x90\x51\x91\x8a\x4f\xde\x71\ \x1a\xe7\x11\x09\x16\xb0\x48\xc1\x29\x0e\xe6\xac\x66\x36\x33\x92\ \x92\x6c\x82\x26\x35\xe7\x35\xcc\x69\x32\x83\x51\xdc\xa0\x27\xc1\ \x37\x3e\x4b\x2c\x62\x8c\x5e\xf4\x22\x2b\x46\x18\x04\x81\xbd\xe3\ \x58\xf3\xd8\xc1\x0b\x08\x56\x0f\x1c\xd8\xcd\x06\x6e\x0c\x9a\xd0\ \x52\xa4\xa3\xf6\x50\x49\x4b\x35\xfe\xe2\x4e\xf2\xa2\x82\xae\xe0\ \xf0\x30\x88\xdb\x9a\x15\x07\x8a\x79\x26\xd6\xc8\x82\x05\x08\x95\ \x81\x0c\x9c\xc9\x50\x67\x3e\x32\x92\xa7\x90\xa6\x35\x33\x77\x3d\ \x69\x36\xa1\x6c\x5f\xfb\xc0\xe7\xb6\xc7\x39\xb2\x85\x92\x65\xa4\ \x1c\xdf\x28\x59\x16\xca\x70\xb2\xa2\x7c\xa6\xab\xd4\x49\xcf\xc9\ \x8a\x79\xac\xd3\x7d\x36\x98\x93\x3e\x70\x30\x06\x79\xee\x8d\x85\ \x6d\x6c\xcf\x6e\x74\x13\x26\x7d\x1a\xca\x2a\xd5\xf8\x23\x1f\x71\ \x14\xcc\x87\xc9\x87\x56\xb5\xc2\x8c\x1a\x14\x21\x24\xc7\xa4\x20\ \x0f\x74\x88\xea\x13\x10\xd6\xd0\xaa\x3a\x54\x92\x94\xf4\x81\x45\ \xa1\xa8\x39\x89\x6e\xef\x03\x9a\xb8\x0b\x27\xcb\x23\xb6\xb2\x99\ \x6e\x11\x1f\xfd\xe6\x07\xd7\x4a\x16\xf2\x95\xd2\xad\xe1\x6c\xca\ \x28\xd1\xb7\x4a\x7c\xc4\xd4\x59\x2a\x8c\xc3\xde\xf6\x46\x3b\xcb\ \xe0\x50\x3d\x6a\x41\x57\xa1\xa4\x22\x1f\xe2\x05\xd3\x27\x3d\x5a\ \x1e\x3f\x61\x13\x1d\x0e\xb4\x10\x87\x6a\x71\xa3\x6d\xf6\x42\x50\ \xc5\x00\x48\x5e\x8a\xd8\xc4\x54\xa9\x6a\xd5\xce\x56\xf5\xa1\xa6\ \x88\x68\x57\xa7\x69\x51\xea\xb9\x8c\x65\x1a\xf5\x60\xcb\x3a\xca\ \x0a\x12\x9c\x35\x94\xe3\xeb\xfe\xa6\x5b\xd7\x3a\x4a\xb1\x30\x85\ \x15\x09\xd0\x84\x25\x76\xfb\x0e\x4b\x10\xe3\x9c\x04\x83\xc2\x54\ \x6d\xf0\xbe\x38\x7c\xaa\x13\xa1\x12\xd5\x5f\xb3\x14\x98\x09\x11\ \xf6\x41\x56\xa2\x91\x28\x9c\x7b\xa1\x43\x7d\x6b\x33\x92\x3d\x10\ \x0e\x9d\xb6\x97\x6a\x54\x96\x2b\xbf\x52\x84\x3c\xa6\xe7\xd9\xf2\ \x9a\x17\x92\x58\xb5\xa8\x68\xb5\xda\x04\xd1\x56\x50\x8b\x64\x23\ \x1b\x5a\x49\x8a\x56\xd8\x7a\xd0\x9b\x6e\xf5\xa0\x7e\xd1\x7a\xdf\ \xdd\x5a\xa2\xb7\x82\xf8\xef\xdc\xea\x01\x3b\x28\x18\x58\x76\x36\ \x50\x92\x0d\x68\xc7\x46\x5a\x81\xcc\x27\x48\x7d\x10\x66\x9e\xd3\ \x5c\xc2\xce\x87\x03\x07\xa2\x96\xa1\xac\x94\xaa\x16\xaa\xe1\xaf\ \x12\x82\xf0\x26\xbe\x4b\x93\x48\xf9\x20\x89\xb0\x38\xaf\x8a\xcf\ \x0b\xcd\x27\x9e\xe2\xc5\x11\xcd\x5c\x69\x27\x88\x5a\xf0\xd1\x6b\ \x73\x73\x70\xed\xe7\xc4\x39\x4e\x90\xda\x36\x01\xdf\xec\xe0\x29\ \xcf\x0a\x64\x31\x76\x70\xb7\x63\x01\x2e\x89\xda\x87\x8f\x31\x18\ \x38\x0e\x06\xa6\xe9\x0e\xfa\xe2\xb1\x9f\x7c\xab\x5b\x92\x29\x14\ \x85\x11\x55\x1b\x38\x3a\xac\x50\x3f\xfc\xb0\x8c\xf2\xe8\x47\x12\ \xdb\x44\x25\xa3\x83\x19\xfe\x3e\xf4\x26\xa7\x15\xbb\xb9\xbc\x4d\ \x8c\xe8\x29\x26\x29\x67\x8b\x46\x71\x9b\xa2\x1b\xdd\xcb\x38\x07\ \x64\xb5\x86\x32\x94\xaa\xe5\x20\xcb\x54\x6b\xbe\x93\xc2\xd5\x7c\ \xc7\x3a\x96\xb2\x76\xc0\x4e\x7c\xd4\x63\x0c\x8b\x4e\x06\x36\xc0\ \x30\xae\xe9\x6e\x79\x47\xc1\x0c\x26\xad\xd4\x92\xb1\xa7\x0d\xed\ \xcb\xfc\xe4\x8d\x87\x31\xf3\xd8\x70\xfd\x12\x17\x66\xde\x08\x6b\ \x60\x61\x80\x56\xbf\x80\x70\xbd\xc3\x13\x72\xdf\x4c\x6b\xab\x86\ \x56\x9a\x73\x86\xf1\x8b\x29\x7a\xb6\x8c\x5e\x30\xbe\x3a\x1e\xf4\ \x22\x48\xe9\x45\xbc\x9c\x4e\xd8\x6e\x85\xd9\xb1\xcf\xb7\x08\xf4\ \xbd\x60\x75\x3b\x10\xd0\xb3\x91\x75\x42\x46\x63\x03\x1b\x31\x30\ \x8b\xb9\x6e\x78\x43\xa5\x5e\xb8\xc2\x61\x86\xd0\xd3\xec\x44\x18\ \x5a\x95\x4a\x71\x2d\x64\x52\x74\x6a\x04\x94\x54\x53\x44\x25\x8b\ \xb8\x14\x3e\x58\xe0\x3a\x7c\x74\x02\x6a\xf9\xc3\xdf\xde\x6a\xcd\ \x6f\x87\x4e\xb2\xbd\xb9\x76\xe2\xae\xb3\x89\xc1\x2d\xa2\xad\xb5\ \x7f\x76\x6b\xc2\x4b\xf9\x67\xf3\x95\xaf\xbe\xa7\x4b\x40\xa1\xeb\ \x6b\x80\x67\x57\xdc\x84\x73\x23\x51\x3d\x18\x6d\x82\x15\x3c\x63\ \x07\xad\xac\x4c\xe2\xfe\x26\xab\x54\xe9\x74\x9b\xdb\x6e\x14\x77\ \x97\x2b\xa3\x86\x8d\x49\x45\xdc\xd2\x12\xf9\x65\x76\x84\x15\x77\ \x4b\x44\x11\xed\x54\xe1\x93\xf4\x26\xb4\x4e\xe8\x1b\x6a\xf8\x7b\ \xd2\xde\xda\xdc\xef\x5a\xdf\xba\x09\x02\x77\xe2\xbf\x65\xc1\x49\ \x5f\x6f\xd1\xac\xaf\x35\x1d\xcc\x4a\x17\xf5\x42\x2f\xdb\x7c\x10\ \xb7\x3a\x37\xe6\xf0\x82\x9a\xbd\x01\x18\xaa\xab\xc7\xbf\xe6\xc6\ \xe8\x47\xd3\x0e\x5a\x50\x03\xc5\xa8\xb2\x2b\xf3\xce\x5c\x06\x71\ \x2c\xec\x32\xff\x34\x04\x9b\x26\xcd\xef\xd3\x0b\x38\x14\x61\x6c\ \x1e\x11\x45\x70\xc0\x77\x3c\xc7\xdd\x93\x6e\x97\xb7\xdb\xed\x5c\ \xd6\x45\x37\x7a\x9c\xe7\x3c\x49\xa5\xff\xbb\x6b\xa8\x55\xed\xf6\ \xca\x6a\x3a\xd7\x9e\x75\xea\x53\x2f\x34\xd5\xcd\x07\x33\xb5\x49\ \xdd\x7c\x96\x5f\x83\xe5\xb9\xfe\x82\x8a\x3f\x9b\x7d\x1a\x2f\xfb\ \xa6\xf4\x0a\xad\x14\x8d\x1b\x07\xb2\x84\x21\xb7\x99\x36\x73\xc7\ \x36\xd6\x27\xcf\x80\x70\x97\xe3\xa8\xb8\xa2\x49\x88\x2f\x1c\xf9\ \xc0\x3c\x00\xaf\xb7\xe2\x43\x09\x8e\x70\xec\x9d\x65\xe2\x90\x78\ \xa3\x3b\xde\xf1\xbb\x36\xad\xd9\xc2\xba\xda\xb2\x79\xf2\x74\xae\ \x9d\xfa\xbe\x30\xfe\x0f\xb3\x01\xad\x2d\x66\xad\xae\x78\xf8\x49\ \xb7\x75\x2b\xb0\xc2\xfc\xae\xb5\xc2\x1c\xb6\xde\x6a\x56\x70\x7d\ \x44\x26\x5c\xa7\xea\xcf\xae\xb8\x98\x5b\xa6\xfe\x10\xf2\x6b\x63\ \xc1\x75\x54\x42\x21\x75\x41\x83\xe3\x7a\x6a\x71\x1f\x41\x85\x0b\ \xc1\xc7\x0a\xc4\x87\x3b\xf4\x33\x34\x8a\xb3\x73\x43\x47\x74\xe5\ \x35\x55\xcd\x87\x5e\x4e\xd4\x62\x74\x46\x51\xd4\x54\x70\xd6\x67\ \x7d\x97\xe7\x7e\x30\xc3\x36\xa4\x13\x33\x20\x28\x82\xe0\x17\x7e\ \xc3\x32\x2c\x6b\x02\x0c\xe3\x07\x33\xea\xc7\x0d\x6b\xb2\x26\x06\ \xe0\x7e\xa5\xf7\x6c\x66\x34\x37\x2b\xc0\x68\x38\x00\x05\x69\x67\ \x27\x7f\xc5\x19\xdb\xc5\x3f\xff\xe3\x47\x9e\x91\x0c\xdb\x66\x27\ \xc0\xa3\x28\xbc\x14\x15\x06\xa8\x6a\x08\xe8\x3b\xfa\x46\x3f\xb8\ \x61\x4f\x76\x30\x6b\x6e\x46\x07\x32\xc0\x59\x45\xd7\x44\x15\xd8\ \x62\xd1\x37\x41\x16\xc4\x51\x94\x57\x5f\x53\x47\x0b\x25\xd8\x6a\ \x27\xb8\x2f\xe1\x67\x2f\x27\x08\x0c\xa7\x80\x50\x2c\x70\x0a\x36\ \x53\x33\xad\xa6\x48\x06\x90\x02\x76\x78\x87\xdc\x90\x02\x79\x68\ \x87\x6b\xf2\x6c\x25\x72\x83\x3b\x30\x06\xf4\x57\x19\x6b\x77\x28\ \xb5\x71\x7b\xfe\xd6\xe5\x5c\x18\x76\x28\x6a\x81\x38\xba\xa1\x53\ \x8a\xc2\x47\x81\x14\x7c\x24\xe0\x84\x0b\x98\x3f\x0b\x40\x28\x53\ \x28\x27\x10\xe8\x59\x4f\x00\x0c\x79\x80\x85\x8a\xa7\x74\x4d\x24\ \x49\xff\x66\x67\x12\x14\x3a\x4f\xe7\x81\x6b\x63\x86\x6b\xf8\x8a\ \xc3\xa2\x86\xc3\xc2\x02\xc0\x80\x50\xb5\x48\x8b\xb4\x98\x02\xc0\ \x00\x0b\x6b\x62\x87\x2c\x90\x02\x6f\x98\x02\xc9\xf4\x8b\x08\x05\ \x8c\x0f\x80\x0f\x24\x52\x20\x65\xc7\x7a\x7c\xa3\x7f\xb4\xc1\x3f\ \xcd\x85\x54\xe0\x22\x0a\xf1\x34\x59\xfe\x83\x4f\x87\x15\x44\xc1\ \xb4\x84\x1b\x21\x0f\xb7\x81\x3f\xb2\x06\x85\x2c\x72\x0b\x51\x01\ \x0a\x7b\x85\x5c\x9d\xd8\x50\x4f\x30\x02\xb4\xc0\x02\x13\xa8\x85\ \x15\xc8\x44\xa7\x18\x63\x51\x44\x41\x79\x26\x75\xda\x77\x2f\x2f\ \xc6\x86\x6c\x88\x2f\xf8\x02\x8b\xb6\x88\x50\xf3\xc6\x86\x71\x78\ \x87\xc5\xf8\x8b\xc0\x98\x90\xc4\x98\x02\x6b\x82\x06\xc0\x20\x76\ \xca\xb8\x03\x06\x86\x76\x50\x73\x43\x3c\xf8\x61\x87\xd2\x46\x6a\ \x07\x7b\x9f\x96\x1b\x1a\xa6\x43\x8a\x75\x21\xb4\x52\x80\x1d\xa1\ \x08\xb6\x70\x78\xf3\x94\x6f\x76\x90\x20\xc6\xc7\x73\x54\x58\x55\ \xf8\x50\xfe\x29\x79\xd0\x59\x91\x04\x49\x70\x46\x8a\x4c\xa4\x85\ \x72\x96\x55\x96\xb4\x39\x16\xc4\x81\xa5\xf3\x81\xf7\x52\x8b\x6d\ \xd8\x86\x08\x65\x94\xb5\x38\x2c\xf8\x90\x02\xfd\x42\x6f\xa7\xa0\ \x4c\x27\xf8\x8b\x6d\x58\x8b\xc0\xe8\x86\x0a\x79\x87\x0c\xb9\x26\ \x6f\x30\x22\x72\x13\x88\x39\x08\x7b\xb7\x83\x6f\x0d\x53\x7f\x6e\ \x24\x59\xc8\x97\x77\x7a\x37\x2b\x07\xe4\x23\x07\xc4\x23\x6e\x81\ \x0d\xc1\x57\x0f\xe0\xa8\x80\x4e\xe8\x24\x43\xb7\x57\xa1\x92\x8e\ \xcd\xc4\x05\xef\x30\x01\x82\xc0\x4c\x0d\x05\x5a\xe8\xe5\x59\x8e\ \x07\x4d\x31\x96\x6b\xdb\xa3\x08\x63\xa3\x8a\x94\xf7\x32\x6b\x73\ \x2f\x08\x95\x07\x6e\x28\x99\x46\x39\x90\x4b\x99\x94\xb8\xf8\x00\ \x2c\xb0\x26\xb4\x58\x8b\x0f\xa0\x90\x6e\x18\x9a\x58\xc9\x90\x06\ \x30\x22\x60\xf7\x02\x03\xf6\x68\x2a\x04\x3f\x7c\xf3\x69\xe8\x36\ \x59\x8e\xd5\x46\x60\x09\x0a\x21\x66\x88\xb6\x81\x2b\x66\xe1\x23\ \x7d\x24\x32\x57\x01\x97\xaa\x26\x97\xc5\x97\x92\xb2\x76\x8e\xe8\ \x08\x2a\x7a\xe9\x4c\xf8\x20\x08\x7e\xb9\x0b\x9f\x05\x4d\x36\x59\ \x93\xcd\xb9\x85\x72\x30\x8f\x11\xe5\x03\x8a\x49\x2f\xaa\xc8\x13\ \x24\xfe\xe5\x7e\x6c\xc3\x86\x91\xf9\x9d\x6e\xd8\x94\x49\x89\x99\ \x9a\xa9\x8b\x71\x68\x33\x9a\x79\x8b\x55\xc9\x02\x4c\xc0\x9e\xee\ \x89\x90\x7a\xa8\x48\x2f\x30\x22\x7e\xb8\x2c\x9c\x02\x05\xe7\xe8\ \x7a\xb3\xe1\x58\x69\x29\x9b\x22\xd7\x7f\xa2\xb0\x9f\x0e\x56\x3c\ \x88\x41\x54\x40\xb1\x02\xc1\x37\x07\x2e\x79\x8e\x71\x22\x53\xc6\ \xc9\x50\xc7\xe9\x2c\x50\x30\x01\x14\x6a\x00\x9f\xf5\x9c\xd0\x04\ \x9d\x57\xc5\x44\xcf\x44\x67\x5d\x38\x41\x2e\xb3\x4d\xa7\x33\x07\ \x90\x69\x94\x92\xc9\x02\x94\x49\x8b\xf8\xb2\x99\xe8\xf9\x99\x35\ \x63\x8c\x35\x13\xa3\xa0\xd9\x9e\x46\x22\x9a\x78\xa8\x87\x73\x60\ \x05\x2f\xd0\x7d\x4b\x76\x04\x67\xb7\x37\xbd\xd7\x72\x96\x16\x9b\ \x39\x15\x73\x6a\xd7\x46\xa3\x70\x54\x3d\x12\x54\x4c\xaa\x1d\xb1\ \xd2\x16\x3b\x10\x7c\x8a\xc0\x05\x0c\xda\x89\x9c\xf8\xa0\x10\xda\ \xa0\xce\xc4\x05\x96\x40\xa1\x8b\x70\xa1\xa0\xe5\x9c\xce\xe9\x48\ \x15\xe8\x48\x71\x26\x70\x50\x74\x39\xd2\x34\x07\xa7\x45\x5f\xee\ \xa7\x86\x93\x19\x99\x35\xaa\xa2\xb4\x68\x33\xc6\x98\x8b\x27\x68\ \x33\x75\xe8\xa2\xeb\x69\x24\xed\x09\x9f\xf0\xc9\x0d\xdc\x60\x7e\ \xfe\x1e\x48\x83\x99\x72\x04\x23\xc0\x60\x7f\xe5\x91\xf2\xa1\x91\ \x48\x8a\x53\x16\xa9\x42\x84\x98\xa4\xec\xe6\x31\x1e\xf3\x4b\x51\ \xc1\x69\xdd\xa6\x06\xf5\xd0\x11\x1f\x70\x0a\x58\xea\x4c\xc6\x99\ \x5c\x5a\xda\x4c\x43\xc7\x50\x4f\x80\x0d\x14\x2a\x08\x74\x10\x98\ \xe8\x95\xa1\x35\xf9\x50\x14\xc8\xa1\x90\x24\x99\xf2\x78\x0a\x15\ \x75\x0a\xb0\xe0\x93\xf2\x25\x86\x5d\x37\x8b\x79\x80\x24\x73\x5a\ \x94\xc0\xa0\x8b\xe6\x59\xac\x49\xf9\x99\x0f\xc0\x8b\xa5\xc9\x8b\ \xbe\x88\x50\xed\xd9\x9e\x09\x89\x95\x82\x3a\xa8\x56\x60\x05\xce\ \xb0\x7e\x06\x80\x06\x6f\xf0\x06\xb1\xe3\x4a\xd3\x45\x1b\xf2\xf3\ \x42\x41\x8a\x28\x8e\x05\x96\x49\xca\x17\xec\xd6\x1d\x08\xf0\x72\ \x89\xf3\x69\x49\x2a\x0f\xc1\x97\x62\xa3\xea\xa0\x79\xd9\x9a\x6c\ \x26\xaa\x2f\xd9\x4c\x7d\x49\xa1\x24\x20\x8a\xaf\x0a\xab\xb1\xfa\ \xaa\x39\x39\xab\x92\xb4\xab\x97\x03\x0b\xba\x7a\x51\xf2\x65\x79\ \x6f\x5a\x2c\x2c\x30\x02\x28\x8a\xa2\x27\xfa\x86\x52\xa9\x8b\xc8\ \xca\xa2\x0c\x59\xac\xcb\x9a\x02\x06\xc0\x0d\xc5\xea\x86\x7f\xba\ \x90\x78\x28\xa8\xd7\x7a\xad\x8a\xe4\xb1\x29\xe0\xad\xde\xaa\xfe\ \x29\xf5\x80\x28\xf3\xd3\x73\xf7\xd6\x7b\x21\x26\x8d\x6d\x44\x1f\ \x44\x38\x5d\x1c\xe3\x53\x19\x53\x7f\x79\x27\x0a\x26\x10\x7c\x2c\ \x40\x27\xa0\xb2\x57\x81\xa7\x92\xfb\xaa\x97\x3b\x40\xa1\x7e\x09\ \x0c\xa2\xd8\x62\xb0\x6a\x93\x14\x18\xab\x5a\x68\x0a\x4f\x70\x6b\ \xd6\x04\x0b\x6b\xca\xab\x66\x95\x36\x6a\xf8\x62\x28\x3a\xa7\x6e\ \xd8\x86\x8c\x64\x9e\x0c\x89\xb1\x76\xf8\x94\xba\xe8\xac\xc0\x38\ \xb2\x29\xc0\x04\x37\x6a\xad\xf2\xc0\x35\xd7\x9a\x4c\xc9\x04\x8c\ \xde\x1a\x3b\xf8\xb0\x9a\xb2\x34\x4b\xb6\xe1\x2d\x4a\x18\x54\x81\ \xf1\x0c\xe2\xc2\xa4\xeb\xba\x58\x69\x29\x15\xd3\x55\x0d\x41\xab\ \x6a\xc0\x40\x27\xf9\x09\x25\x82\x17\x6b\x2e\x59\x5e\xc9\xc9\xb4\ \x9a\x30\x93\x66\x2a\xb0\x9c\x9b\xa1\x06\x7b\xb5\x4f\x84\x39\x5a\ \x9b\x39\xd6\x93\x63\x1e\xf5\x32\xac\x60\x86\xba\x18\xb6\x13\x6b\ \x94\x48\xc9\x6a\x7c\x5a\xac\xc2\x38\x9a\x06\x59\x8c\x70\x4b\xad\ \x26\x3b\xb7\xba\x2b\x0f\xdc\x00\x0b\x79\xc8\x8b\x0f\xf0\x06\xf8\ \x20\xbc\x5c\xd0\x57\x22\x17\x1b\xfb\xa7\x1f\x97\xda\x16\x83\x44\ \x1c\xcf\xf0\x7b\x41\x15\xae\x86\x88\x84\xf9\xd1\xb8\x1a\xfe\xf1\ \x01\x3e\x40\x9c\x3d\xa7\x80\xc4\x49\xb4\x11\xea\x2c\x4f\x50\x0f\ \x4c\x2b\x08\x06\xc0\x59\x9d\xcb\xb9\xb4\x5a\xab\x35\x99\x07\xbb\ \xda\x04\xc8\x44\xba\x64\x03\x33\x74\xa8\x7d\xad\xb6\x9e\xc1\x3a\ \xb6\xa1\xc9\xac\xce\x5a\x8b\xc9\x14\xb2\xc0\x78\xb7\xbf\x08\xb7\ \xb7\x1b\xb7\xd7\x3a\xb7\x1f\xa0\xbb\x28\x2b\xa8\xa5\x19\xbc\x05\ \xa6\x57\x95\x11\x1f\xfc\x49\x1f\xe5\xc2\xa4\x13\x92\x0c\x31\x90\ \xb3\x00\x6a\x2e\xe6\x8a\x2b\x06\x24\x0a\xef\xe0\xa9\xf8\x90\x5c\ \xda\x5b\x9c\xa0\x52\x55\x11\xfa\x04\xfd\x3a\x01\x96\xa0\xb9\x01\ \x2b\x49\xa5\x68\x8a\x65\x3a\xb5\xb5\x3a\xba\x0a\x8b\xb0\xf1\x95\ \x86\x1f\x0b\x7e\x65\x6b\xa2\x27\x6a\x94\x08\xc5\x6a\xac\x36\xbb\ \xbe\x98\xb6\xd3\x5a\x95\x6f\x5b\xc4\x58\x59\xc0\xf2\xb0\x13\x74\ \x6b\x05\x24\x60\x05\x8a\xa4\x99\xc3\x5b\x60\xae\x74\x4b\x18\xa6\ \x20\x02\x25\x8d\x47\x35\x21\x48\x2a\xa4\x1b\xcc\xc1\xb9\xf7\xbc\ \x8e\xb5\xb8\x41\xb5\x03\x4c\xa5\x6a\x6b\xd6\xbd\xa5\x5a\x5e\xdf\ \x6b\x03\xca\x49\xa1\x73\x80\x85\xb2\x0a\xab\x85\xf9\x48\xaf\x8a\ \x5e\xba\x5a\xc3\xef\x1b\x5f\x9d\xb7\x8b\x0f\x90\x86\xfe\xc6\x8a\ \x50\x12\x1b\x9a\xa2\x39\x87\x75\x78\xb7\x77\x9b\x90\x4f\x89\x90\ \x24\x2b\xc0\x76\x38\xa8\xbb\x7b\xb2\x27\xbb\x7e\x2f\x38\xbc\x23\ \x80\x29\x6a\xf4\x61\x24\xc7\x65\xd4\xe2\x6d\x7a\xe7\xa8\x47\x95\ \x96\x96\xe6\x7f\x18\xc6\x3f\x49\x4a\x1b\xac\x10\x7c\xf6\x86\x97\ \xa7\xaa\x62\xa3\x9a\x8e\x97\xeb\x97\xb4\x60\xc7\x8e\xf4\xaa\x57\ \x5b\x8a\x31\x3c\x98\x90\xf4\x86\xba\x96\xc7\xb2\xe0\xc4\xea\xb7\ \x48\x67\x18\x7e\xbc\x48\x94\xe0\x69\xa3\xac\x06\xb2\xfd\xab\x4c\ \x42\x0c\x9f\xa3\x39\xc0\xf1\x09\xc9\x91\x7c\xb2\x7b\x98\x95\xc7\ \x28\xbc\x2f\x9b\xc9\x65\xa9\x54\x4b\x73\x1d\x20\x46\xa4\xe9\x3a\ \x21\x9f\xdc\x58\x92\xa1\xc9\x0c\xc8\x24\x38\x90\xca\x68\x7c\x97\ \x78\xf9\xbd\x73\x22\x53\x24\xbc\xaf\x72\x10\xcb\x82\x40\x0b\x00\ \x0b\x49\x57\x4b\x07\x75\x2c\xb5\x8e\xc4\xcb\x45\x99\xc7\x4d\x60\ \x00\xb2\x80\xc3\xb0\x5b\xbf\x19\x4b\xc8\x08\xbd\xb6\x1f\xdb\xb1\ \xa3\x49\x8c\xce\x4c\xbb\x79\xa8\xc4\xe2\x35\xb7\xd4\x9c\x87\x70\ \xdb\x87\x68\xa0\x71\x63\x30\x06\x38\xf5\x61\x49\xba\x72\x93\xa5\ \x91\x38\x35\x8d\xd2\x7b\xca\x6e\x34\x9b\xb9\x91\xfe\x6e\x0a\xe8\ \x9a\x73\x20\xb4\xe8\xc8\x37\xf2\x0c\xa1\xc8\xc5\xca\x30\xbd\xc6\ \x4f\x10\xcb\x2b\xfc\x4c\x91\xf4\x04\xfa\xdc\x44\xfa\x0c\x55\x61\ \x6a\xa6\x74\x96\xa2\x00\xbd\x48\x46\x8d\xc3\x2a\x38\xc4\xb7\xe8\ \x86\xc3\x6a\x87\x1f\xeb\xbb\xa3\x89\x4c\x57\x39\x9a\x79\x58\xad\ \x72\x2b\x0f\x9c\x20\x5e\x13\x2d\x0f\x56\x30\x9a\x4b\xb0\x26\xf5\ \x80\x06\x04\x46\x53\xa7\x1c\x9b\x77\xe2\xb7\x16\x59\x6a\x7b\x41\ \x2b\x8f\x6a\x27\x2f\xc4\x34\xf2\x83\x7c\x06\xe0\xa9\x5c\x00\xb9\ \xe8\xd8\x59\x46\x8b\x3b\xf8\xda\xca\xcd\xa4\x0f\xf8\xa0\xaa\x13\ \xc0\x0a\x23\x40\xcb\x74\xd0\x44\x48\x32\xd4\x0f\x55\xa6\x56\xeb\ \x44\x13\x6b\xb1\x79\x8c\x4c\xc8\xb4\xac\x38\x5c\x87\x98\x19\xa7\ \x09\xad\x8b\x8a\x04\xd5\xb4\xcb\x04\x9c\x7d\xc4\x54\x1d\xcd\x05\ \x6c\x05\xbb\x4b\xd1\x50\xcc\x87\xc1\xeb\x87\x47\x10\x65\x7b\xe1\ \x9f\x33\x4b\x96\x93\xc5\x42\xf2\x11\x06\x18\x59\x8d\x76\xd2\x30\ \xf0\xe1\xd6\xb2\x06\x0d\x73\x1d\x7c\x74\xe0\xbd\x0d\xd5\x66\x44\ \xcb\x37\xf5\xa3\xd7\x31\xed\x2c\x23\xf0\x02\xbd\xb5\x08\x8d\x24\ \x07\x4f\x00\x7d\x73\xc6\x02\x35\xd9\xdc\xa1\xfe\x58\xab\xc1\xca\ \xd8\x94\xf9\x62\x76\x38\x8c\xb2\xab\x82\x74\xf8\x82\xcf\x9a\x50\ \x47\x62\x95\xbf\xf8\xb1\x1f\xdb\xcc\x76\x18\xad\x77\x08\xcd\xf1\ \xa9\x87\x4b\x50\xad\x27\x3b\xda\x50\x2c\xa8\x7c\xf8\x06\x2f\x90\ \xb7\x5c\x40\xd6\x6b\x24\x4f\xf0\x2a\x59\x65\x89\x53\xfc\xbd\x34\ \x32\x07\x84\xd4\x61\x84\xb7\xb3\x57\xd0\x50\x0f\x7c\x07\x11\x1f\ \x40\xa5\x7c\x3d\xaa\x33\x1d\xcf\xc3\x59\xc2\xef\x6c\x55\x74\x60\ \x02\xc4\xf0\x02\x85\x6d\x0a\xc2\xaa\x6b\x4e\x94\xcf\xd3\x6d\x0a\ \x3f\x5d\xdd\xa1\xf9\x94\x3e\x7c\x94\x2e\x9a\x86\x31\x6a\x33\x09\ \xa5\x50\xa2\x89\x90\xd5\x5a\xde\xb4\x8b\x95\x02\xbc\x04\x25\xcb\ \x0d\xed\xdd\xde\x26\x2b\xc9\xbc\x8b\xad\x76\xb8\x95\x4b\x60\xc9\ \x5c\xf0\x04\x0b\x36\x3b\x40\x3a\x2d\x16\xc9\x42\x70\x07\xd7\x22\ \x87\x6e\xd1\xc1\x76\xf3\xf3\xe4\xd0\x20\x21\x8b\x10\x7c\x79\x53\ \x9c\xef\x5c\xb4\x32\xdb\x09\x7d\x2d\xe1\x2b\x86\x0f\xfc\x12\xb1\ \x8c\xe7\xa1\x73\xb6\xd8\xd3\xcd\xdc\xb6\x7a\xd8\x48\x72\x94\x6a\ \x1e\x9a\xc8\x0a\x83\xad\xd6\x8b\x4c\xcd\xe2\x6e\x2b\x8c\xad\xf6\ \xc4\x75\x18\xe3\x7a\x98\x02\x34\x7e\xc4\xfe\xed\x1d\x9f\xf1\x1d\ \xdf\xd6\x2a\xc9\xf2\x6d\x87\x5f\xbd\x04\x6f\x40\x07\x08\x13\x27\ \x4a\xc2\x57\x7e\x45\x7b\xa3\xb2\xe4\x61\x39\x34\x86\x73\xce\x4c\ \x72\x77\xbc\xa7\x38\x12\x72\x15\x58\x83\x11\x1f\x50\xe0\x0d\x6a\ \xd7\x2b\x5d\xdc\xbf\x1d\x81\x32\xb0\x0b\x31\x03\xdd\x32\x10\x70\ \xa1\xe8\x44\x32\x60\xb5\xbb\xac\x74\xfa\x7c\xd8\xf8\x8b\xd0\xb9\ \x58\x9a\x69\xc8\x99\x2b\x1e\xde\x24\x3b\xa8\x4f\x1c\xdf\xb8\x5b\ \xd5\x84\x7e\x87\x4b\x30\xec\x56\x9d\xe3\xa1\x5d\xd1\x4b\xc0\x9e\ \xc1\x3b\x02\xad\x9a\x30\x8b\x3e\xb3\x60\xb9\x42\xd5\x78\x7f\xf2\ \x93\x38\x96\x11\x47\x43\xe3\x92\x61\x39\x77\xc9\x50\x03\xc8\xe0\ \x01\x08\x90\x40\xd7\xab\x08\x0f\x08\xb9\x82\x27\x6b\x44\xf7\xbd\ \xaf\x5c\x55\x37\xdd\x41\xb4\xa0\xcf\x14\xfb\xe1\x48\xd2\xaa\xcd\ \x6d\xb1\xf3\x1e\xeb\x3e\x4c\xa3\x84\x7c\xb6\x7f\x9c\xad\x0b\x0c\ \xde\x73\x3a\xad\x5b\x97\x7e\x4f\x5c\xad\x8f\x8c\x95\x7b\xce\xd9\ \x70\x8b\xe3\x36\x3e\xec\x4b\xa0\xe3\xa2\x0d\xc5\xce\xb0\x87\x86\ \x6e\xe8\x57\xe8\x33\xcf\x0e\xa4\x2d\x50\x78\x7e\x95\x53\xb4\x41\ \xdb\xc2\xf3\xae\xc8\x37\x2d\xd4\x21\xfe\x19\x35\x80\x00\x21\x10\ \x02\xc8\xd0\x2e\x9e\x0a\xe1\x92\xab\xd7\x10\xb8\xc6\x09\x63\x9c\ \x35\x0d\x93\xef\x20\x08\xca\xed\x9d\x50\x05\x49\xfa\x5c\xd8\x3c\ \x2d\xe2\x14\xfb\xf3\x46\x22\x99\x2c\x2e\x03\x4c\x30\xa7\xca\xda\ \x6a\xef\xa7\x99\x47\xc2\xe2\xc5\xf8\xc8\x06\xe0\xc4\x73\xcb\x0a\ \x5c\x0d\xe8\xec\x4d\xe3\x34\xae\xf0\x7c\x4e\xec\xee\xfd\xde\x11\ \x1f\xdf\x9f\xc9\x90\x86\x8e\xa8\xc5\x4b\x3b\x40\x43\x9c\x0c\x33\ \x2a\x42\x2a\xb8\x3f\x74\x0b\x67\x71\x16\x9b\x21\x2d\x40\xa4\x58\ \x08\xe0\x01\x21\x40\x40\x09\x90\xe0\xab\x01\xea\xdc\x3b\xd3\x5a\ \xfa\xca\x58\x7e\x97\x43\x63\xe5\xce\x44\x07\xb4\x60\x68\x26\x30\ \x07\x63\xce\xf3\x20\xfe\xd3\x72\x1a\xb6\x50\x15\xac\x0a\x35\xf9\ \x46\x22\xb6\x9d\xb9\xa3\x3b\xca\x99\x47\xaf\xeb\xd4\xaa\x6c\x24\ \x30\xf5\xbc\x5b\xd5\x14\x2f\xe3\x0b\xaf\xc4\x08\x4c\xda\x11\xcf\ \xd5\xce\x60\x05\x34\xbe\x95\xcf\x86\x06\x99\x12\x07\x54\xca\x8c\ \x45\x1e\x4b\xb0\xfd\x7b\x8b\x9b\x65\x7e\xa4\x19\x4c\x22\x35\xfa\ \x84\x1f\x7d\x74\x28\x85\xc4\xe9\x7b\x2d\xb3\x58\xfe\xe9\xc1\x3d\ \xc2\x30\xad\xc6\x5b\x4a\x0b\xbb\xfe\xc5\x0a\xa0\xe8\xf3\xa1\x38\ \x55\x32\xa0\x4c\x47\xc2\xea\xc2\x3a\xef\xd9\x3f\xf9\xba\x8e\x50\ \x36\x83\xf9\xb7\x48\xf9\x7f\xea\xd4\x26\x4b\xf5\x54\xcf\xd5\x83\ \x6e\xb2\xc6\xae\xc4\x9c\xd0\xfe\xee\x8f\x13\xed\xbf\x09\x5e\xcf\ \xd5\x61\xaf\xe7\x7e\x88\x06\x50\x90\x60\xa4\x6a\xe0\x92\x1a\x34\ \xf5\x37\x73\x00\x21\xaa\x9a\xc0\x67\xd5\x38\xa8\x01\x05\x0a\x1a\ \x28\x35\x02\x45\xdd\x7a\x28\x30\x59\x32\x04\x08\x26\x0e\x14\xb5\ \xe9\xdf\x46\x8e\x1d\x3d\x7e\x04\xf9\xa1\x85\x1d\x3b\x2d\x5a\x74\ \xea\xa4\x4f\xa5\x3e\x94\x9d\xec\xa4\x5c\xd9\x52\x26\xca\x93\x28\ \x59\xd2\x6c\x01\x0d\x5a\x4a\x39\x3d\x9f\x70\x61\x15\x85\xd5\xa9\ \x3c\x4f\xe8\xe4\xa1\xf3\x44\x0e\x1d\x16\xa7\x4e\xb1\xc8\x23\x03\ \xaa\x0c\x19\x51\x8f\xd2\xc1\x7a\xb4\xaa\x54\xa9\x2c\xde\x00\x7b\ \x00\xcc\xc0\x03\xb2\x4c\xa8\x52\x65\xc1\x22\xc5\xda\x14\x0f\x0c\ \xb0\xb2\x22\x6f\x93\x3c\x2b\x56\xb8\xa5\xe0\xc6\x2d\xae\x5c\x4e\ \x9b\x38\x09\xfa\xcb\x49\xf0\x04\xc2\x80\xff\x0a\x02\x3c\x97\x2e\ \x5d\x2b\xce\x52\x2c\x49\xf1\xe6\x05\x9a\x17\x47\x46\xd8\x58\x19\ \xb3\x93\x4e\x1c\x3b\x37\xef\xfe\x6c\x11\x67\xe1\x28\x0e\xa5\x6f\ \x25\x5c\x08\x2d\xa7\xce\x84\x09\x17\xa8\xb9\x55\xad\xda\xc4\x8b\ \x02\x15\x81\xc4\x9d\xbb\xa3\xc8\x92\x26\x6d\xce\xec\x54\x93\xe5\ \x4d\x99\xc4\x61\xea\x93\x73\x73\xb5\xcd\x9e\x72\x9e\xe0\xa3\x45\ \x8b\xa8\x29\xa6\x45\x9f\xe4\x39\x95\x62\xeb\xd4\xa8\x55\xb3\x7e\ \xa7\x73\x96\x45\x57\xb0\x0f\x5e\x90\x4d\xcb\x55\x06\x13\x26\x69\ \xd7\x72\x33\x60\x85\x15\x2b\x79\xf4\x9d\xe9\xb5\xb2\x49\x13\x62\ \xc3\x82\x0a\x0b\x3e\x4c\x30\x79\xe0\x38\xcc\xb0\xbe\x06\xb4\x6b\ \xad\x25\x58\x58\xe2\x01\x34\x2c\xb3\xe1\x09\xcd\x3a\x11\x2d\x8e\ \x9a\x50\x82\xc6\x42\xd6\x16\x42\xcd\x24\x0f\x55\x03\xc5\x0e\x0e\ \x5f\x2b\x4d\x14\x82\xaa\x79\xc6\x44\x0e\x34\xd2\xad\xc5\x8f\x3e\ \x60\x65\x24\x0f\x7d\x6b\x49\x25\xe0\x8a\x3b\x0e\xa6\xe6\x92\x9b\ \x49\xa5\x1d\xe9\x38\x05\x98\xa2\xe4\x30\x25\x2a\xea\x4e\xe1\xe6\ \x94\xa4\xba\x8a\x0a\xa9\x27\x9e\x7c\x92\x3a\xac\xa2\x1a\x2f\xad\ \xb4\xc8\x6a\xeb\x01\x16\xcc\x12\x2f\x2d\x26\xd6\x7a\xc0\x19\xb8\ \x58\xd9\xa4\x4c\x79\x34\x39\x8c\xb0\xff\x38\x99\x00\x31\x12\xde\ \x30\x40\x2e\x79\x5e\x68\xfe\x2f\xbf\xc0\x0c\x9c\xcb\xb1\x2f\x99\ \x70\xb0\xb2\x23\xb8\xc0\xcc\x86\x38\x28\xbc\x11\x43\x9d\x74\x5a\ \x6d\xc6\x9c\x4e\x5a\x48\x0d\x47\x41\x59\xa0\x44\x81\x38\x10\x85\ \xd2\xd2\x4a\x93\xc7\x45\x4d\x3b\x52\xa4\x24\x97\x48\x22\xc9\x37\ \xcd\x3c\xac\xf1\x38\x1f\x77\xdc\x11\x39\x54\x7b\xa2\x03\x9f\x3c\ \xf2\x30\xc5\x39\x3a\x4c\x79\x42\x06\x58\x64\x61\xe1\x49\x2a\xbd\ \xcb\x8a\xd6\xa4\x8c\x0a\xaf\x4b\x16\xb4\x1c\x96\xac\x37\xb6\xa4\ \x8a\x3d\xb5\xbe\xc4\x8b\xbe\xf9\xce\xdc\xcf\x3f\x35\xd5\xe4\x84\ \x95\x59\xca\xe4\xe6\x57\x3a\xd8\x63\xe2\xc9\x6d\xad\x10\x0c\x30\ \xc3\x36\xb1\x62\x09\xf6\x1a\x9c\xec\x85\x11\xb8\xe0\x22\x0e\x1b\ \x32\x2c\xd4\xc2\xd0\x4c\x42\x74\xd1\x43\x0f\x65\xc8\xa1\x12\x65\ \x53\x71\x14\x7f\x39\x20\x6d\x94\x7a\x6e\xdb\x54\xd3\x4d\x40\x45\ \xd8\xd3\x99\x66\x2c\x55\xc7\x55\x1f\x46\x95\x8b\x5d\x68\xc1\x27\ \x56\x5a\x69\xc5\x8e\x1b\x5c\x8d\xaa\x2a\x3d\xa4\x92\xfa\x15\x4a\ \xa3\xba\xeb\xca\x2b\x2d\xd1\x63\xef\xac\xf6\x52\x50\x2b\x05\x31\ \xe9\x83\x83\x95\xc1\xa6\xa5\xd6\x80\xf5\x52\x60\x82\x8e\x1f\x65\ \xd0\x59\x56\x3e\xe3\xfe\xf2\x0b\x30\x79\xee\xc3\xd9\xbc\xc9\xde\ \xf8\xd3\x06\xa5\x3b\xc1\x2c\x33\x94\x2a\x64\xd4\xde\xcf\x5c\x6b\ \x8d\x83\xd9\x1c\xc2\xa8\x5f\x7f\x41\x21\xad\xd2\x51\x08\x2e\xb8\ \xc5\x4e\x13\x56\x38\x38\x86\x2f\x64\x49\xb8\x53\x7b\x5a\xfb\xe1\ \x9f\x5e\x60\x45\x48\xe7\x68\x7d\x82\x85\x26\x64\x81\x85\xe7\xa3\ \xcc\xf2\x18\xab\x27\x9d\x93\x35\xbc\xf0\xb6\x6c\xd9\xd8\xb6\xb6\ \x34\x8b\x6f\xb6\x1e\xe0\x06\x0e\x12\x1c\x5f\x63\x3f\x9a\x11\xe3\ \xe4\x81\x5f\xd9\x53\xca\xa7\x5a\xff\x5e\x4a\x65\x67\x04\x64\xbc\ \xc1\x25\xb8\x79\xa1\xf4\x37\x78\x96\x30\x39\x1f\x6d\x14\x4d\x35\ \xd7\x0f\x4d\x94\x43\x7f\xfd\x15\x25\x19\x87\x4c\xc4\xc8\xd2\xd9\ \x29\x35\x51\x94\x0f\xc2\x76\xf1\x03\xb2\x15\x3e\x09\x54\xb4\x89\ \x3b\x29\x33\xb6\x6d\x54\x7e\xc7\x9f\xa2\x83\xea\x89\x8b\xf3\x80\ \xc5\x87\x24\x8b\x1a\x3c\xad\xee\x66\x15\xd9\x39\x60\x55\x26\xfc\ \xcb\xb2\x70\x1e\xaf\x3d\x3e\x1f\x4b\xc1\x00\x6e\x9c\x89\x8f\x4c\ \x36\xd5\x14\x57\x9e\x37\xa0\x5c\xaf\x67\x8e\x65\xe0\x9c\xe3\xf0\ \x52\xa8\x6b\x89\xf5\x18\x7f\x81\x98\xe0\xf0\x82\x25\xac\xab\x39\ \x4e\xa3\xd0\x4e\xfe\x76\x62\xa1\xd6\xdd\xeb\x50\x38\xe8\xda\xed\ \x44\xa1\x06\xde\xdd\x6e\x20\x03\xb1\x5d\xa5\x38\xf0\x3b\xe0\xe9\ \xe6\x03\xb6\x28\x49\xc2\x48\x45\xaa\xcc\xd8\xc8\x26\xab\x53\x9d\ \x09\x69\xa2\xaa\x9e\xd8\x00\x1f\xf8\x78\xc0\x08\x86\xe4\x1c\xea\ \xf9\x00\x57\xf8\xdb\x0a\x93\x78\xf5\x37\xa5\x00\x2b\x58\x84\x53\ \xcb\x1b\xb2\xb4\xa7\xc4\x65\xc9\x65\x6e\x59\x82\x01\xc4\xb4\x86\ \xbf\xb4\x89\x72\x82\xd8\x84\x33\x72\xb6\x9e\x9c\x3d\x89\x8a\xdd\ \xea\xa1\x0f\xb7\xe5\x8c\x07\xf0\x6c\x3d\xa3\x83\x9b\x09\x4c\x97\ \x94\x40\xd9\x80\x50\x71\xb0\x10\x4d\x68\xc2\x1a\x7f\x75\x06\x07\ \x10\x1c\x85\x28\x0a\xb2\x03\xaf\x75\xed\x82\x13\x89\xc1\x44\x2c\ \x32\x11\x13\x71\xb0\x83\xb8\xf9\xc0\x22\x4c\x82\x30\x19\x15\xa7\ \x84\x37\x69\x5b\x0a\x9d\x96\xbc\x1d\xb9\xf0\x05\xa7\x18\x41\x94\ \x9c\x63\x37\x1f\xc0\xe2\x14\x32\x30\x85\x78\xf2\x50\xa5\xac\x40\ \x09\x70\xde\x52\x99\xb2\xd0\xf7\x80\x05\x71\x6b\x65\x5c\x0c\x13\ \x29\xc3\x64\x02\x56\xac\xc1\x2f\x00\x32\xcc\x2c\xca\x65\x2e\xed\ \x50\x65\x09\xf7\x31\xcb\x77\xa8\xb2\x24\xf6\x80\x8c\x4f\x02\x64\ \xc5\x00\xdf\xfe\xb0\x2e\x40\x09\x2a\x0e\x38\xa8\x10\x8e\x5a\x37\ \x3b\x66\x86\x41\x22\xcf\x28\x0d\x69\x2c\x45\x10\xda\x80\x81\x22\ \xc9\x88\x41\xef\xfc\xf8\xc7\x17\xc9\x83\x6c\x32\x4a\x9e\x0a\xcd\ \xc6\x9c\x87\xb1\x30\x85\xa8\xb2\x41\x3d\x68\x61\xb9\xe6\x5c\xe7\ \x56\xb2\x48\x81\x55\x90\x52\x15\xbe\xed\x32\x64\x9a\x03\xe5\x7a\ \xb6\x44\xbe\x06\x09\xd1\x7c\xec\x69\x0b\x17\x45\xb7\x44\x38\xac\ \x2f\x66\xae\xdc\x44\x2e\xf4\xb3\x89\x35\x34\xe6\x3e\xe6\xb2\x02\ \x1c\x1a\xb3\x04\x73\x99\x2b\x65\xc9\xaa\xe2\x13\x98\xf0\x32\x13\ \xcc\xa1\x74\x68\x78\x03\xbb\x94\x76\xcc\x41\xa5\x04\x26\x26\xcd\ \x09\x1c\x29\x48\xa9\x14\xf5\xce\x6b\x58\x73\x69\x0c\x9e\x41\x9b\ \x18\xe4\x4e\x14\x3b\xd8\x26\x37\x39\x12\xc8\x6f\x9e\xe4\x42\x2d\ \x01\xa7\xc3\x50\x65\x4e\x88\xc9\x21\x9d\x26\xa0\x45\x52\x68\x78\ \x2b\x1b\xa2\x0e\x2b\x5e\xdc\xe4\xf6\x42\x96\xb9\xc0\x81\x2f\x32\ \x57\x25\x25\xce\x4c\xd9\x16\xc8\x34\xc8\x19\x02\x94\xe8\x57\xc5\ \x2a\xa6\x59\xac\x41\x1e\x66\x6d\xa8\x44\x5d\xb9\x06\xb8\x34\x34\ \xad\xdc\xe8\xea\x63\xf4\x96\x02\x56\x60\x22\x01\xc1\x24\x20\x48\ \x47\x10\xfe\xc9\x76\xb9\xab\x84\x2d\x79\x23\x33\x69\x77\xb5\x3a\ \xc6\xb1\x76\x05\x51\x91\xd5\x2a\xa8\x41\x69\xfa\x4e\xa7\xdd\x14\ \xe1\x8c\x7a\x33\xc8\x91\xbc\xa4\x13\xcb\x1b\x0e\x72\x88\x0a\xb1\ \x11\xec\x80\x15\x49\xf5\x09\x0b\xaa\x57\xc9\x3c\xf8\xe4\x2a\x4f\ \xa5\xca\xc7\xa6\x2a\xb2\xa7\x72\x6b\x59\x46\xd4\x6a\x11\xbb\x4a\ \xd1\x17\xc0\x41\xac\x61\xa5\xa8\x58\xe1\x1a\xa6\x88\x36\x06\x0e\ \x09\x05\x6e\x2e\x34\x31\x8b\x60\x46\xb4\xb8\x8e\x59\xcf\xe7\x28\ \x67\x02\x81\xbe\x61\x98\x5c\x78\x82\xd2\xf4\xd1\xb4\xcf\xc0\x91\ \x77\x00\x8b\xa0\x89\x9c\xe9\x52\xee\x62\x17\x82\x81\x1d\x05\x04\ \xb9\x96\x90\x9c\x3e\xf6\x03\x8a\x80\x06\x21\x7d\x3a\xc8\x50\x91\ \x30\x55\x27\xd4\x6c\x51\x9b\x83\x0f\x13\xbc\x03\x18\xbf\x32\x05\ \x0b\x64\xe1\x83\x4a\xda\xef\x3b\x24\xb3\xa7\xdf\x44\x76\x3f\x65\ \xed\x09\x7d\x14\xd5\x2a\x15\x1f\xe3\xd5\xb1\xc6\xcc\xb6\x62\x25\ \xa5\x29\x9d\x41\xd1\x5b\xc6\x8c\xb8\x6c\x95\xa5\x5a\xcf\x0a\x33\ \xb8\x2e\x81\x15\x88\x99\x00\x27\x34\x01\x07\x8a\x3a\x37\x67\xd0\ \x45\x23\x1a\x39\xc3\xb5\x86\xdc\x2e\x9a\xdc\x2d\x48\x1e\x4d\xb4\ \xd2\xfe\xad\x75\xe6\x33\xf7\xc2\x01\x28\xde\x58\x5e\xf3\xb2\x82\ \x90\xc1\x31\x1b\xa9\x6a\xb4\x3a\xa7\x65\x56\x75\x10\x7b\xce\x0a\ \x4c\x20\x43\x90\xe9\x57\x1e\xa4\xcd\x62\x27\x77\x75\x16\x2f\x86\ \x0c\xb5\x57\x04\x28\xfa\x62\x9b\xac\xae\x8a\x35\x80\x12\x7d\xb0\ \x58\x21\xc3\x25\x6e\xe1\xcc\x65\x63\x45\xb3\x33\xe0\x30\x87\xaf\ \x1e\x77\x16\x6c\xa2\x5c\x02\x26\xec\x5c\x19\xec\x75\x04\x50\x80\ \x42\x60\xb9\x96\x63\xc3\xf6\x8e\x03\xdb\xed\xdd\x4c\xf3\x08\xcd\ \x51\x8c\x61\x6b\xe1\xb5\xf1\x8a\x73\x3c\xde\x51\xf0\x58\xa7\x30\ \x02\x15\x90\x0d\xa9\xaa\x43\x12\x39\xb3\x97\x4e\xe4\x51\x59\x81\ \x0f\xbd\xe5\x77\xbf\x95\xc4\x1f\x94\x40\xf6\x54\x2b\x8d\xe7\x2c\ \xdf\xf1\x61\x28\xcb\x3c\x3a\x8b\x26\x8e\x09\xa3\x6b\x70\x30\xe1\ \xf0\x60\xdb\x5a\x14\xa3\x15\xa5\x30\xce\x72\x5d\xd1\x09\x3f\xc6\ \x19\xbd\x4d\x40\x81\x38\x31\x8b\x09\xb3\xc7\xce\x47\x18\x03\x0e\ \x92\x9d\xec\x1c\x5b\x17\xbb\xff\x9a\x9d\x4b\x01\x96\x6c\x68\xb8\ \x71\xd1\x9d\xa9\xf6\x28\xb8\xc6\xcc\x31\xb0\xe2\xb1\x2f\x8a\x91\ \x70\x6a\x94\x1c\x88\x69\x96\x85\x95\x4e\x64\x4f\xe2\xb0\x03\x6c\ \xfe\xbc\x43\x49\xa0\xfc\xf4\x25\xb9\x27\xea\xeb\xa8\xc7\xde\x7a\ \xb3\xf2\x95\x6f\x16\x57\x73\xdd\x7a\x09\x0e\x55\x33\x1c\xd8\x2a\ \x70\x59\x53\x94\x5b\xb3\xdd\xf5\x9e\x28\xcc\xea\x05\x1b\x14\x0e\ \xf2\xc0\x84\x60\x30\x41\xdc\x39\xd7\x79\x98\x47\x38\x02\x14\xe2\ \x00\x85\x6a\xf3\x59\xb0\xb3\xfb\x2e\x1c\x0d\x8d\x03\x8e\xc3\x4e\ \x34\x01\xd3\xf1\xbf\x4c\x04\xf2\x31\x7c\xdb\x23\x1f\x20\x01\x73\ \x94\x47\xd4\xf8\x1e\xf0\x80\xf1\xdd\xec\x8e\xf0\xe1\x85\x09\x58\ \xe2\xbe\x99\x63\x0a\x2c\x58\x66\x9d\x2c\x7e\x8f\xca\x47\xef\x24\ \x6b\x51\x0b\x50\x86\xa7\x0c\xa0\x68\x8e\xe8\x59\x05\xbe\x86\x35\ \xd4\x1a\xd7\xb7\x14\xf3\xab\x5f\xbd\xf0\xf5\x4d\x98\xc2\xbf\x9e\ \x35\xd5\x67\xfd\xd5\x56\x33\xc1\xb9\xeb\x52\x9a\xa0\xb2\xbd\x6d\ \x90\xeb\xf8\x8d\xd6\x7e\x23\x67\x3a\x33\xa8\x93\xb7\x51\xb0\x5e\ \xd3\x31\x14\x5c\xbe\x1b\x1f\x38\xac\x79\xcd\x4b\x95\x7c\x8b\x1a\ \x87\x15\x14\x86\x15\x3d\x33\x2d\xdd\xa8\xfa\x49\x7d\x53\x19\xd5\ \x45\x17\x9c\x82\x29\x0a\xd7\x8b\x7e\x09\xeb\xb7\xad\x3a\x5b\xc5\ \xee\xf5\xaf\xab\xf9\xab\x6f\xd8\x3a\xd9\x6f\xd9\x5b\xdd\x8a\xfe\ \xd5\xa1\x8f\x21\xa2\x59\x46\x30\x4c\x03\xaa\x44\xc5\xcc\x4c\x39\ \xc8\xe3\xfe\x76\x8e\xe7\x39\xee\xc7\xfc\x78\xee\xc3\xab\xf7\xbd\ \x6f\xe4\x03\x3e\x68\x9a\x22\xc5\xd9\xb6\x95\x08\xde\x9c\xfa\x88\ \x43\x3d\xb0\xa1\xa6\x04\x94\x76\x55\xf9\x83\xbe\x16\x23\x8f\xef\ \x5f\x79\x2f\x2b\x18\x5d\xf0\x5a\xc8\xbc\x51\x80\xab\x59\xea\x55\ \x7f\xf0\xc2\x2b\x3c\xf6\x85\x9b\xde\xfb\x60\xf6\x7c\x44\xbd\x0e\ \x50\x53\xae\x87\xf5\x7f\x33\xa3\x68\xc4\xfb\x76\xd9\x57\xbb\xe3\ \xc8\xc4\x3d\xb3\x21\x58\x58\x66\xc2\x71\x76\x2d\xef\x3d\xdf\x33\ \x80\xe5\x91\x34\x9f\x22\x27\xb6\x11\x2a\x72\xbb\x39\x4c\x83\x82\ \xc2\x53\x13\x56\x58\x3c\x24\xe3\x1c\xeb\xc3\x37\xa4\x13\x30\x51\ \x0b\x96\x2f\xba\xa5\x56\xe3\xb2\xcb\x73\x06\xaa\x03\x3f\x31\xa3\ \xb0\x8d\x52\xb3\xaa\xe3\xbc\xdb\x52\xb3\x88\x82\x83\x59\x78\xb8\ \x80\x23\x3b\xad\x33\xb3\xc4\x91\x81\xb3\x83\xae\xe9\x4a\xb1\xb7\ \xa3\xbf\x36\x9a\xbb\x0c\xd9\x41\xf0\x32\xb4\x3f\x13\x85\x30\x10\ \x2c\x8f\x7b\x36\xb0\xd9\xbb\x0f\x80\x05\x04\x14\xb2\x49\x33\x8e\ \xc0\x7b\x2f\x53\xd1\x07\x28\xe0\x39\x35\x01\x06\xc1\xf3\xfe\x9e\ \x09\xf4\x96\xc8\xcb\x40\xea\xcb\x1c\x0c\xa4\xa2\xd9\xc2\x99\x64\ \xf1\xb5\xdb\x1a\x10\x13\xe4\xbc\xaf\x83\x03\x71\x98\x35\x38\x28\ \x87\x09\x73\x43\xb0\x03\xb3\x01\x59\xc3\x88\x12\xbf\x31\x23\x33\ \xe7\x7a\xae\x91\x52\xb1\xb7\x7b\xa0\xdb\xc3\x10\x1c\xf4\x97\x30\ \x00\x98\xed\xe2\x00\x6a\xc3\xb6\x6c\x13\xac\x7a\x08\xc0\x7f\x40\ \xc2\x14\x82\x2f\x71\x32\x24\xe3\x2b\xbe\x9e\x28\x84\xe5\x23\x0c\ \x4b\x60\x01\x2b\xf4\x16\xaa\x02\x25\x2d\xb4\xc0\xe8\x0b\x8f\x83\ \x33\x38\x2e\xd1\xc0\xf1\x5b\x43\xcf\x2b\xbf\xf1\x13\x3b\xf2\xc3\ \xba\x35\x9c\xb5\xb2\x02\xb3\xf0\xcb\x2d\x3b\xe4\x96\x37\x78\x90\ \x90\x1a\x29\x63\x92\x3f\x34\xa2\x10\x6c\x6b\x1d\xff\x1b\x05\x42\ \x14\x2c\x6a\x6b\x89\x63\x02\x44\x1c\x50\xc4\x00\xfc\x00\x59\x30\ \xa1\xb5\x89\x09\x45\xc9\xb9\x55\xd9\x2c\x28\x78\x07\x35\x31\x81\ \x58\x91\xaf\x01\x6b\x27\xe9\xd3\x25\x7b\x9a\x40\x0a\xbc\x19\xd4\ \x23\x45\xcb\xfb\x2a\xf4\x43\xb3\x0d\x6c\xc5\x34\x9c\xba\xb1\x73\ \x43\x30\x63\x41\xa9\x73\x45\xaf\x23\xbb\x04\x33\xbb\x25\x40\x83\ \x07\x29\x26\x41\x49\xa0\x3c\x1b\x14\xb5\x03\xc4\xd9\xfe\x71\x26\ \xec\xca\x82\x42\x63\x36\x9d\xe8\xc7\x3f\xdc\xb3\xf0\x4a\xc6\xde\ \xfb\x00\x6e\x08\xb2\x73\x73\xc4\x71\xb3\x42\x88\xc1\x07\x69\x11\ \x84\x2a\xf4\x89\x6c\x5c\xbc\x4d\x04\x99\x54\xf3\xc6\x08\x04\xa5\ \x83\x0b\x43\xac\x38\x17\x14\x7c\xc3\x33\x14\xab\x72\x98\x3a\x10\ \x34\x41\x57\x74\xc9\x72\xc4\x2d\xce\xe3\x16\xf7\xb3\xc7\x07\x21\ \xa6\x8d\xc3\xb3\x37\xe2\x47\x34\xca\xc1\x80\x99\xb6\x42\xc3\xc1\ \x0c\x49\xb1\x99\xe8\xc9\x51\xd8\x81\x45\xfc\x07\x45\x00\xa1\x05\ \xb0\xac\x66\x8c\xc6\x89\x44\x95\xe7\x50\x13\x4b\xe8\x42\xc4\xbb\ \x42\x8d\x1c\xb0\x2c\x7c\xbc\xe7\xe3\x98\x73\x49\x99\xd6\xf2\xc0\ \x93\x14\xbd\x74\x0c\x3b\x10\x5c\xc1\x15\xf4\xbc\x34\x2b\x47\x11\ \x2c\x3b\xf6\x78\x83\x25\x28\x87\x72\xd0\x2b\x28\xc8\xb8\x37\x1a\ \x83\xbb\xd4\x3f\x60\x6c\x23\x6a\xab\x10\x5e\x2c\x29\x42\x79\x1a\ \x60\x84\xa3\x69\x70\x34\x6e\xfa\x80\x7a\x08\x2a\xf8\x82\x4a\xa8\ \xac\x48\xc2\x60\x85\x6d\x6c\xa7\x2b\x8c\xc0\xa8\xcc\x4a\x6e\xfc\ \x46\xcd\x09\x45\xad\xc3\xa2\x0e\x44\x33\xab\x43\xc3\xb2\x5c\x83\ \x5c\xc8\x85\x55\x0c\x33\xb6\xcc\xad\x33\x6c\x4b\xfe\xb3\xbb\x47\ \xb9\xc4\x38\xa4\xc1\x38\x28\x58\x36\xbc\x54\xb6\x42\x43\xb4\x43\ \x49\x31\xba\x43\x09\x33\x8a\xbf\x3d\xa4\x9d\xf0\x02\xb9\x17\x58\ \xc4\x0f\xc0\x07\xe4\x49\xc0\xc5\x1c\x2a\x54\x81\x02\x69\x99\x83\ \xc9\x0c\x9c\xee\x61\xce\xca\xc4\xc0\x0b\xe4\xca\x2f\xcc\x25\x2b\ \x2a\x49\x98\xb4\xba\x57\x73\x06\x95\x14\x07\xaa\x9b\x05\xd1\x1c\ \x4d\xd2\x54\x33\x16\xfc\xaa\x83\xd3\xcc\xad\x6b\x4b\x7b\x8c\xcb\ \x7b\xc4\xb8\x3b\xc3\x33\x64\x53\xb6\xbc\xe4\x43\xf9\xbb\x3d\xdc\ \xd4\x0c\x9d\xe8\xcd\xff\x53\x36\x1c\x00\x4e\x65\x4c\x01\xcc\x4a\ \x37\xb6\x31\xce\x55\x19\x01\x4b\x68\x93\x07\x98\x4c\xad\x14\x30\ \xc0\x11\xbc\xca\x94\x4e\xca\xc4\x32\x6d\x39\x97\x74\xfc\xbc\xad\ \x53\xc9\x57\x0c\x4d\x4c\xc0\x04\xef\x9c\x85\x0e\x9d\x05\x0d\x9d\ \xb8\x35\x28\x36\xa7\x9b\xd0\x8a\x3a\x38\x34\x58\xcf\x7b\x04\x29\ \xcb\xc8\xb8\x8c\xd3\xb8\x37\x4a\xb1\x0c\x91\xd1\xc0\x62\x36\x5e\ \xcc\x11\x63\xcc\x4f\x43\xfb\xcd\xe0\x3c\x05\x27\x1c\x50\xa8\xe4\ \x82\x77\x80\xa2\x5c\xe1\x4a\xf0\x98\xaa\xc5\x8c\xce\xcb\x34\xad\ \x7a\x34\x0b\xeb\x44\x4f\x17\x74\x06\xd0\xb3\xfe\x47\x75\x5c\xc3\ \x35\xf0\x50\x10\xe5\x04\x0d\xcd\x52\x0d\xb5\x2d\xd0\x3b\xb5\x2b\ \x32\x38\x5c\x53\xc9\x36\x54\xd1\x23\x70\xcd\xba\xbc\xcd\xdb\xbc\ \x3f\x08\xfa\xb3\x36\x12\xca\x62\xc4\x3d\x68\xf3\x97\x31\x70\xbb\ \x31\xe8\x4f\x86\x94\x07\xe6\xfc\x51\x2b\xa4\x83\x17\x20\x01\x76\ \xa2\x4c\xa3\xc3\x37\x25\x2d\x2a\xa5\xf3\x9b\xe9\x34\xbb\x26\x35\ \x0a\xb3\x7b\xcb\x56\x9c\x33\xb3\x9b\x35\x35\x6c\x30\x38\xc8\x05\ \x4c\xa8\x04\x41\xb8\x54\x10\x9d\xb5\x51\x3c\xba\x83\x7b\xcb\x83\ \xdb\x4e\x67\x40\x03\x8a\x1a\x55\x33\xa5\x4b\x28\x18\x01\x77\x41\ \x23\x8d\xdb\x43\xff\x13\x44\x90\x83\x97\x18\x05\x2f\x21\xbc\x4b\ \xbb\x7c\xa3\x3b\xed\x3d\x45\x70\xbe\x72\xda\x53\x24\x0b\x0f\x90\ \x6c\xa7\x2d\xa4\x3e\xfb\x99\x48\x05\x55\xd2\x45\x5d\x02\xd0\x03\ \xa5\xb7\x7c\x4b\x34\xd8\x4e\x90\xaa\xc7\x1f\xa8\x3a\x32\xfd\xba\ \x35\x00\x51\x0d\x15\xd1\x62\x53\x19\x2a\x73\x35\x66\xb5\xa8\x5b\ \x2a\x07\x0a\x73\xae\x5b\xb4\x8c\x76\xd1\xc5\x0a\xb1\x4b\x39\x05\ \x4a\x3e\xb4\x36\xdf\xd4\x51\x6a\xe3\x38\xbb\xc4\xd5\x23\xe4\x82\ \xa7\xec\x55\xa8\xf4\xa1\x1e\xca\x9e\x2f\xfe\x45\x9d\x1e\xd2\xc4\ \x54\x53\xaa\x55\x09\x0f\x5b\x1c\x01\x9d\xa9\x15\x3c\x1c\xd7\x51\ \x3d\x9d\x37\x28\x07\x71\x70\x58\x51\x2d\x31\x0a\x13\x38\xf2\xcb\ \xa5\x51\xc3\x28\x2c\x4b\x56\x73\x69\xd4\xaf\x52\xd8\x64\x45\x9a\ \xe7\x62\x97\x55\x25\xb9\x6a\xd3\xd1\x21\x94\xbb\x7f\x1c\x46\x64\ \x82\x86\x3c\x2b\x59\x6f\x53\xc6\x11\x08\xd0\x7b\xfd\xd7\xc7\x1b\ \x99\x7b\xfb\x48\x4f\x2a\x54\x51\x43\x1d\xb7\x99\x41\xe7\xfa\x95\ \xd5\xb3\x45\x33\xbd\xc7\x61\x32\xbb\x86\x75\xd8\x8e\xc5\x43\xf1\ \x9b\x49\xea\xe3\x56\xf7\x6b\x54\x13\x03\xd7\x12\x1b\x57\xe7\x2a\ \x57\x28\xe0\x02\x3c\x93\xcf\x65\x03\xb9\x92\x6a\x20\xf0\xfa\x38\ \xad\x15\x2c\x97\x65\x48\x98\x95\xd9\x01\xd5\x57\xe9\xac\x95\x2a\ \x31\x35\xc7\xa3\x37\x3d\xdd\x46\xf0\x00\x49\x3a\x40\x1a\x34\x80\ \xae\xa5\x68\xcd\x23\x78\x10\x90\xaa\x33\x34\x98\x06\x87\x15\x87\ \x70\x1d\xd5\x3a\x14\xd7\x7e\x0b\x30\x8c\x62\xd4\x8c\x05\xbd\x09\ \x85\x56\x3c\xbc\x45\x54\xdd\xb8\xd8\xc4\xcb\x64\xa3\xcd\xf0\xf2\ \x0c\xfa\x5c\x53\x08\x32\xb4\x81\x64\xa6\x9f\xc4\x01\xb1\x3d\xc2\ \x4c\x14\xd0\x9c\xb3\x57\x7c\xbd\x9f\xfe\x5d\xca\x1f\x2a\xd9\x9e\ \x64\x09\xb0\xea\x6b\xd0\xef\x39\x54\xe7\x59\x3d\xcb\xe8\x21\xd7\ \x9c\xdb\x61\x92\x5b\x34\xf8\x01\x87\x65\x43\xb9\x54\xd1\x7b\x84\ \x58\x71\x6d\xbf\x50\x32\x31\x66\xa5\x33\xaa\x20\xde\x44\xa5\xda\ \x37\x40\x55\xba\xbc\xcb\xc9\x9d\xd3\xa0\xe4\x5a\xfb\xc3\x41\xfa\ \xdb\xb6\xef\xaa\xcd\xce\x98\x83\xe0\xf4\x81\xe5\x51\x9b\x98\xdd\ \x53\x8d\x5a\x0b\x64\xe1\x99\x60\x9d\xb2\xc6\xe3\x42\xb7\x35\xad\ \x60\xa9\x22\xe7\x91\xdb\x2c\x38\x02\xa5\xb0\x81\x11\xc0\x38\x8c\ \xc3\x47\x3a\xc0\xdb\x1f\xc8\x5d\xfc\xfd\x81\xb8\x8c\xcb\xdd\x6d\ \x43\xaf\x6b\x54\x8f\xad\xc5\xe1\x45\xd8\x5c\xc2\xa8\xd3\x01\xda\ \xf9\x95\x5f\xd8\x8c\xcf\x31\x18\x48\x5a\x8d\x3b\x33\x72\xbd\xcb\ \x9d\xde\x0a\x8e\x55\xf9\xcb\xde\x45\xdc\x04\xa5\x48\x1b\x46\x2a\ \xdb\xa8\x94\x01\xfe\x81\x27\x2b\x91\x81\x76\xd2\x21\x23\xf5\xa2\ \x41\xc5\x59\xb7\xb9\x1f\x3a\xdb\xc8\x11\xc0\x47\xe7\xa0\xcb\xf9\ \x95\x5d\x2e\x38\x82\x72\x98\x06\xfd\xc5\x5f\x1c\x86\x03\xfc\x9d\ \x35\x6a\x25\xd5\xb8\x04\x60\x46\x1d\xde\xf5\x18\x81\x41\x0d\x8f\ \x11\x60\x82\x04\x7e\x90\xd7\x3c\xfe\x02\x5b\x0d\x46\x82\x44\xa6\ \xe3\xa0\x4f\x50\xd0\xd1\x66\x73\x3b\x1c\xfc\xcb\xcd\xb0\xcb\x4c\ \x51\xc6\xcc\x19\x0e\x49\xf4\x5e\x9e\xe5\x06\xfe\xb2\x02\x58\xe0\ \x86\xbc\xe9\xc2\xae\xa0\x0a\xd6\xd2\xa2\x5d\x52\x61\x5f\x1d\xd8\ \xb3\x5b\x3c\x1b\xce\x02\x28\x90\x10\xf9\xc5\x38\xf7\xe5\x02\x39\ \xb0\xe3\x69\xc8\x82\x1c\xd6\x61\x1f\xde\x5d\x0a\x5b\xcd\x31\x95\ \xcb\xc4\x75\xcb\x25\x3e\x9d\x3a\xc3\x0a\x0a\x3c\xe2\x8f\xc5\xdb\ \xf9\x3d\xd5\xf8\x7c\x5e\x68\xa0\x2e\xfa\x9c\x5c\xcc\x0d\xca\x0c\ \x09\x0d\x0a\xe9\x5a\x50\xf0\x62\x86\x44\xdf\x54\x21\x8e\x31\x8e\ \x4a\x26\x28\xe3\x27\xb3\x02\x78\xc2\x1f\x56\x91\x81\xa7\xd8\xd9\ \xac\xbc\xbe\x6d\xfd\x48\x54\x41\x2d\xa0\x8d\xa4\xe6\xb0\xe1\x30\ \x18\x03\xa5\x81\x4d\xbc\x3c\x02\xa5\x39\x82\x2c\x30\xe6\x2c\xc0\ \x61\x1d\x16\x87\xfd\x55\xd1\xf5\xdc\xce\x34\xd4\xdd\x70\x75\x4b\ \xe3\x5d\xe2\x25\xde\x25\xcc\xdc\x2b\xd7\x6c\xe2\x31\x40\xb6\xc8\ \x1d\x85\x2c\x48\x36\x8d\x03\xe5\xfb\xfb\xb8\xef\xb2\x4d\x99\x50\ \x20\x78\xd1\x09\x12\x08\x4e\xab\x0c\x3c\x73\x2b\x95\xd1\x0d\xd6\ \xc1\xd1\x0b\x33\xce\x9b\xe6\xfe\x60\x0a\x2b\x09\x58\x07\x5d\xba\ \x8b\xf2\xc6\xb7\xa5\x83\xd8\x85\x10\x9f\x80\x82\x2c\x08\x03\x3c\ \x8e\x83\xbb\x44\x36\x28\x50\x1a\x07\x06\x64\x63\x9e\x86\x69\xd8\ \x86\x1f\x88\xe8\xde\x45\xd1\x31\xd5\xdf\x68\x86\x56\x2a\x53\xe2\ \x23\xde\xab\x7d\xe6\x82\x80\x96\xdf\x07\x71\x5f\x6e\x8e\x5c\x21\ \x04\xca\x0a\x21\x67\xe7\xfd\x2e\xdc\x1c\x14\xcf\x58\x98\x96\x60\ \x67\x65\x04\x5d\xd5\x81\xc2\x1e\x91\x67\xe7\x49\x61\xbc\x90\x07\ \x45\x90\x07\x58\x20\x52\xa3\x10\x2d\xed\x70\x5b\xad\x54\xb5\x4f\ \xad\x4e\x6c\xc6\x5b\x40\x7e\x5f\x75\x1b\x83\x83\x36\x2a\x3c\xc3\ \xb3\x38\x90\x83\x82\x0e\x83\xab\x06\xe4\x30\x88\x68\x40\xbe\x45\ \x5b\x54\xc9\xfc\xfd\x81\x1e\x16\xeb\xb8\x24\xdc\x80\xb6\x66\x2e\ \xa8\xb3\x3e\xf6\x09\x76\xd1\x63\x34\x70\x60\x63\xbe\x4b\x63\x0e\ \x42\x5a\x6d\x55\x43\x6b\xde\xe9\x85\xe9\x42\x29\x46\x0a\x09\x8d\ \x99\x0e\xc0\x45\x18\x15\xe0\x50\x9b\x01\x0d\x96\xc1\x81\x05\x79\ \xe8\x0b\x1f\xc8\x15\x2b\x42\x63\x58\xc0\xa2\xc8\x74\x1e\xa3\x20\ \xb0\x7a\xb4\xc7\x12\x9b\x65\xb9\x2d\x66\x89\x0e\x83\xa6\x96\x83\ \x84\x86\x82\x9e\x60\x1a\xfe\x33\x52\x8a\x38\x08\x46\x83\x0e\x83\ \x6d\xd8\x86\x87\x36\xd3\xb9\x8d\x68\x87\xf5\xe1\xb0\xde\xdf\x42\ \xf6\x59\xaa\xf8\x68\x2e\xd8\x2b\xb5\x76\x0e\xdb\x9e\x5f\xb7\x46\ \x03\x70\x36\xe6\x60\xbc\xea\x42\x43\xd7\xd9\xd4\x41\x3f\x1c\x94\ \xe1\xc8\x4d\xc0\x7c\x9a\xd0\x38\x94\x17\x30\x42\x97\xdb\x04\x9c\ \xa0\x11\x28\xcc\x69\x10\x66\x19\xac\x60\x01\x2b\xf8\x00\xc1\x50\ \x6c\xbd\x61\x81\x39\x20\x01\x6e\x20\x52\xac\x9c\xec\xb7\x8c\xcb\ \x2c\x60\x4f\xdb\xdd\xab\x62\x3e\xed\x6d\xc8\x82\xcb\x52\x37\xaa\ \x76\xc2\x38\xe8\xe6\xab\x3e\xed\x30\x70\x5f\x6d\xce\x02\xfc\x8d\ \x84\x1d\x9e\x06\xfe\xed\xdf\xf5\x04\xbd\x80\x96\x81\x90\x66\x6b\ \xdc\xfe\x89\xab\x2d\xe6\x62\x3e\x66\x07\x0e\xee\x64\xbb\xc1\xd9\ \xdc\xcf\xb9\x8b\xe7\x1b\x31\x48\xdb\x0c\x0d\x15\x1b\xe5\x23\x0c\ \x0e\xcb\x32\x95\xe3\x44\x52\x5b\x01\xea\xc1\x21\x01\x00\x99\x03\ \xf1\x4d\x01\x12\x20\x81\x39\x58\x5f\xc8\xce\xc8\xf4\xa5\xa2\x66\ \x2d\x87\xdc\x8d\x84\xfe\x9e\x86\xc6\xed\xe6\x81\x64\x68\x9f\x88\ \x46\xe4\x3b\x26\x07\xc7\x6f\x64\x0b\xe4\xad\xc6\xdf\x88\x06\x70\ \xfe\x75\xc9\x72\x60\xfe\xbd\x02\xff\x09\xf9\xdd\x65\xa3\x6a\x97\ \x3d\x6e\x70\x83\x36\xe8\x42\x63\xe8\x5e\xac\x55\x9d\xfc\xcb\x43\ \x4a\x6e\xe5\x5e\xa0\x0c\xaf\x10\x28\xd8\x70\x97\xfb\x00\xe6\xb1\ \x57\x14\xe2\xd3\xb7\x20\x01\xed\xd8\x96\x12\xef\x0b\xf1\x96\x8a\ \x3c\x78\x00\x32\x61\xf1\x80\x65\xd0\x4f\x92\x4c\xf5\x1d\xd7\x19\ \x8f\x04\x4b\x05\x84\x4a\xa8\xf1\x2c\x70\x17\x63\x1a\x83\x1d\xb7\ \x42\xd7\x8b\x4f\x96\xdd\x86\x67\xa8\xf1\x89\x9e\xe8\xff\x46\xd1\ \x8b\xbe\x50\xd8\x66\xe6\x61\x4a\xf0\x05\x1e\xe6\x16\xda\xb8\x6e\ \x8e\x6b\x63\x7e\x70\x28\xb0\xc1\x1f\xaf\xd1\xdc\x44\x37\xe3\x98\ \x89\x2d\x4e\xa0\x38\x18\xf3\x6f\xfb\x80\xd4\x99\xc8\xea\xae\x1b\ \x12\x98\x0b\x35\xa6\x03\x58\x40\x93\x45\x10\xba\x14\x00\x0b\x12\ \xd0\x84\x4d\x58\xf3\x05\x95\x4c\x07\x75\x3f\x0b\xfd\x81\x1a\xaf\ \x84\x63\x1f\x87\x66\xb8\x06\xa8\x66\x1b\xcc\x58\xcc\xe9\x1a\xa9\ \x31\xd8\x86\x18\xa8\x81\x1a\xb8\x86\x48\xd8\xea\x40\xc6\xe1\x19\ \x8f\x54\x35\xc4\xdf\x65\x06\x64\xbe\xba\xb3\x8d\x73\x97\x16\xc2\ \xda\xb7\xf6\xf4\xab\x06\xe7\x7a\x35\x23\x96\x7d\x3b\x34\x92\x60\ \x4c\x43\xee\xe5\xfe\x46\x75\xa6\x19\x67\x55\x0f\xce\x01\x1c\xaa\ \x49\xfc\x51\x19\x98\x03\xbf\xf8\xe9\x50\xd3\xaf\xf0\x7e\x80\xf4\ \x99\x83\x39\x48\x00\x4d\xd0\x84\x35\xdf\xd9\x60\xcf\xc2\x0a\xa4\ \xec\x8b\xee\xdb\x48\x48\x82\x4a\x68\x06\x8b\xaf\x81\x6d\xc0\x01\ \x1b\xb8\xd7\xe9\x7a\xea\x67\x88\x81\x90\x47\xed\xd4\x8e\x68\x8a\ \x16\x64\xbf\xf5\x76\x38\xc8\x61\xa6\x66\xf7\xb4\x73\xf6\xe4\xb0\ \x01\xd8\xf4\x6d\xd3\xde\x06\x5f\x8e\x83\xe9\x82\x86\xd8\x24\xb9\ \x9b\xd7\x0c\x2e\x57\x0e\x4f\x7e\x9a\x0b\x4f\x75\x7c\x57\x46\x12\ \x38\x4e\x7e\x37\xce\xba\x41\x93\x40\x1a\x71\xa6\x58\x19\xb5\x30\ \x8f\xf9\x58\x04\x4d\x60\x85\x6c\x61\x5d\x05\x5d\x8f\x4e\xf5\xea\ \xff\x46\xef\x69\x88\x84\x6b\x88\x81\x6b\xb8\x06\x30\x00\x83\x6b\ \xd8\x86\x5f\xee\xd5\x98\x37\x6d\xfb\x46\xed\x48\xd8\x86\x1a\xef\ \xef\xfe\x16\x87\x48\x48\xf9\xff\x06\xe4\x87\x06\x14\x72\x23\x3e\ \x1b\x98\xcd\xab\x16\x05\xd4\x1e\x03\x55\x6d\x60\x08\xbf\x79\x93\ \x9a\x77\xe6\x69\x09\x19\x55\xa0\x1b\xd3\x09\x50\x0e\x0d\x03\x28\ \xcc\x0e\xfa\x00\x79\xb0\xb9\xe2\xab\xee\xa8\x9c\x83\xc0\xf8\xe9\ \x52\xab\x92\xfe\xf6\x60\x01\x60\x80\x1b\x4b\x10\xb1\x2e\x5a\xad\ \x2b\x33\xa5\xa4\xbd\xe8\x21\x2f\x76\x91\xb7\xef\xb5\x47\xfb\x1f\ \xe5\x49\xbc\x34\x68\xd4\x0e\xf9\x48\x88\x01\xb8\xaf\xf1\x65\xa6\ \x68\x14\x45\x6f\xf7\x35\xe8\x23\xb0\x57\x41\x09\xe6\x45\x8f\x01\ \x41\x7f\xdc\x28\x2e\xf4\x83\x8c\x09\xdd\x9c\x77\x43\x39\x94\xe5\ \xb6\x3f\x19\x1d\xca\xe7\x36\x2f\x45\x40\xf3\xb2\x95\x81\x45\x40\ \x0c\x98\x03\x6a\xd1\x2a\x35\x62\x31\x8f\x04\xe0\x0f\x12\xe8\x96\ \x0b\xcc\xcc\x5a\x04\x57\xfd\xb5\xfb\x1f\x48\x82\x24\xb0\xf6\x18\ \xa8\xf9\x2c\xd8\x79\x55\x8d\x90\x3d\x8d\xf6\xa7\x26\xfe\xb0\xbf\ \xf6\xb8\x9f\xfb\x22\xef\x6d\xf6\x04\x88\x23\x63\xb2\x8c\x19\xc3\ \x45\x0e\xc2\x84\x0a\xe5\xe8\xb3\x01\x6d\xcc\xb6\x67\x61\xa0\xc4\ \xc1\x31\x26\xcc\xa8\x82\x71\xe2\x74\xb2\xd1\xa9\x61\xc7\x90\x9d\ \x3e\x8e\xb4\x11\x07\xda\xc9\x94\x1c\x47\x42\x6b\xe9\xb2\xe5\x46\ \x45\xff\x66\xd2\xac\x69\xf3\xe6\xcd\x0f\x8a\xf4\x31\xec\xb9\xf0\ \x27\x50\x85\x4f\x98\x6c\xe2\x24\xe8\x83\x3c\x58\x2c\x4e\xa5\x38\ \xc5\x82\xc5\x83\x39\x2f\x1e\xe0\x63\x65\x69\xc2\x04\x4e\x09\x64\ \xd0\xe9\xfe\xfa\x84\xce\x57\x19\x4c\xc6\x8e\x5d\x82\x06\x4e\xbb\ \x04\x80\x00\xfd\x98\xb6\x2d\x49\xa5\x66\x35\x6a\x5c\x8b\x11\x26\ \xcc\x18\x28\x3c\x83\xf2\x05\x6a\x03\x47\x96\x30\xa2\xb6\x6d\x8b\ \x61\xb8\x6e\xa4\x6d\x91\xa6\x4d\x6b\x8b\x26\x0b\x1a\x34\x63\x8e\ \x50\x3e\x82\x83\xe2\x5e\xbe\xfa\xe2\x5c\x1c\x45\x71\x20\xc6\x31\ \x38\x38\x7a\xd4\x27\x32\xa4\x47\x8f\x1b\x53\xe2\x40\xb9\x72\xe4\ \xc6\x96\x38\x66\xcf\xae\x28\x13\x27\xee\xdc\x34\x15\x8d\xe8\xeb\ \xfb\xe7\x13\x60\x9a\x04\x71\xfa\x40\x02\x96\x53\xa7\x2c\x52\x18\ \x60\xc5\xea\x85\x55\x41\x58\x05\xc9\x7b\x43\x87\xab\x8c\xec\xd9\ \x99\x2c\xe1\xfe\x06\x4d\x39\x13\x91\x00\x55\x12\x94\x24\x12\xdc\ \x71\xea\x5d\xd4\x48\x12\x63\x1b\x5e\x28\x36\x7e\xfb\x6e\x68\xf1\ \x62\x18\xc2\x84\x9f\x11\x6e\x9b\x65\x5a\x16\x90\x49\x56\x19\x14\ \x14\xc5\x61\x83\x0d\x99\xf1\x55\x11\x14\x5c\xc4\x21\xd8\x5d\x63\ \x1c\x78\xe0\x47\x1e\x75\xb2\x5a\x6c\x29\x41\x43\xdb\x65\x28\xb9\ \xc6\x51\x1c\x2d\x54\x44\x1b\x86\xb7\xe9\x76\xa2\x4d\x1f\x00\x43\ \x1f\x8b\x32\xb0\x62\x14\x27\x9b\xc8\x02\x0b\x2c\x29\xa4\x40\xe3\ \x03\xfe\x0f\x40\x97\xc0\x55\x58\x4d\x20\xc8\x22\xdd\x8d\xf5\x06\ \x59\x65\xbd\xb0\xc4\x0b\xd3\x98\x20\xde\x5a\x80\x24\x41\x5e\x08\ \xea\x49\xc9\x1e\x5d\x12\x49\xa8\x20\x8b\x0a\x6d\x06\x45\x41\x77\ \xed\xf7\x8c\x61\x89\x95\x03\x19\x80\x90\x05\x38\x99\x84\x09\xb2\ \x88\x20\x82\x63\x48\xe4\xd9\x46\x21\x91\x56\x91\x86\x1e\x42\x31\ \x5b\x81\x50\xb8\x36\xda\x68\xab\xc9\xe6\x5a\x47\x71\x70\x21\xcf\ \x07\x28\x1a\x3a\xd3\x07\xb2\x64\xf9\x1b\x0b\x8b\x08\x72\xd4\x22\ \x34\x4a\x7a\x63\x8e\x06\x40\x27\x9d\x8f\x82\x24\xf0\xc2\x0b\x6f\ \x2c\xf1\x29\x91\x9e\x9a\x95\x64\x3b\xed\x24\xd1\x0e\x79\x80\x44\ \x52\x49\x94\x51\x4a\x39\x8e\x0b\x72\x81\xf1\xa6\x5e\x8b\x2a\x64\ \xd2\x40\x83\x81\x19\x03\x18\x60\xb4\x47\x57\x62\x8c\x01\x08\xa0\ \x64\x67\xca\x87\xa5\x66\x0c\x71\x29\x9a\x81\x18\x6e\x44\x9b\x68\ \x1c\xea\x69\x20\x4a\xcd\x8e\xf6\xe1\x81\xa9\xe9\xe3\x20\x17\x36\ \x3c\x51\xe8\xa1\x28\x7e\xe0\x83\xad\x7c\x3d\xc1\xc2\x70\x47\x91\ \xc0\x0d\x2c\xec\xda\x98\xc2\x03\x06\xe8\xf8\x02\xa6\xd3\x69\x62\ \xc2\x12\x0f\xbc\xb1\xef\xbe\x48\xa2\xc1\xa9\x92\xed\x74\xd1\x45\ \xfe\x08\x95\x74\xc1\x6a\x08\xae\xbe\x1a\x6b\x0d\xb3\x6e\x93\x17\ \xb2\xf4\x6d\x96\x2b\xaf\x73\xd5\x10\xab\x0b\xb1\x56\x92\x04\xc7\ \x89\xf9\x47\x10\x41\xa2\xc5\x61\x2b\x9b\x5b\x16\x18\xc7\x9d\x16\ \xa9\x1c\x2d\x9e\x97\x39\x1b\x27\xcc\xda\xea\x93\xd9\xcc\xde\xf2\ \x04\x6e\xb8\xba\x21\x55\x6e\x50\xc1\xa5\x6b\x9c\x15\xb2\xd8\xb8\ \x1c\x37\x96\x72\x6a\x95\x8f\x58\x59\x62\xc2\x91\x0f\xa0\xb1\x44\ \xbf\x47\x00\x9c\x64\x12\x21\x60\x95\x70\xc2\xe3\x64\xbd\xb0\x5c\ \xd7\xbc\x19\x47\xc4\xf4\x3d\x51\x51\x7e\x31\x5c\x53\x43\x33\xcd\ \x64\xbc\xde\x38\x95\x6c\x9c\xc4\x35\xc1\x46\x98\x66\xd8\xc9\x6e\ \x66\xd1\x28\x59\x64\xa4\x77\x46\x05\xe1\x79\xb2\xb3\x26\x25\x58\ \xf3\xcc\x2c\xe2\x9c\x33\x6e\x3a\xf1\x0c\x94\xcf\xc4\x71\xe2\x03\ \x37\x2c\x30\x91\x5d\x0a\x73\xb0\x92\xc0\x1c\x4b\xd6\x3b\x1d\xd3\ \xff\xbe\x80\xc6\xbe\xff\x86\x57\x8e\x92\x80\x58\x8d\x35\xea\xaf\ \xaa\x27\x6b\x0c\xcf\x64\x81\xc3\x7c\x8b\x23\x84\x6b\x16\xa2\x3c\ \x73\x4d\x12\x73\xa5\x5d\x49\xc6\x95\xb4\x87\xde\x35\x71\xf3\x27\ \x5a\xec\xe5\x72\x96\xdf\x5d\x7a\x17\xe4\x37\x34\xcd\xbe\x8c\xfe\ \x20\x4f\x75\xf7\x75\x38\xe2\x38\x29\x42\x87\xec\x42\xbd\xc1\xca\ \x26\x8b\xcc\x91\x02\x0b\x60\xd1\xc1\x02\x37\xc3\x69\xf2\x0e\x8f\ \x49\xfb\x98\x40\xe7\x70\xbc\x50\x0e\xa7\x70\xa0\x0f\x48\x3b\xd8\ \x10\x3c\x01\xea\x59\x2b\x0c\x6b\xd7\xdb\x64\x01\xcd\x13\x16\x17\ \xc0\x5b\x71\x29\x30\x85\x09\x5e\xc3\x72\xd7\x9e\xf3\x28\xc6\x6c\ \xad\xf3\x1f\xec\xca\xf5\x17\xfc\xe0\xc5\x22\x96\x31\x90\x49\x36\ \xd2\x2d\x36\x2d\xea\x09\xfa\x18\xe0\x42\xa8\x57\x3d\x9b\x28\x62\ \x45\xd9\x4b\xc8\xf8\x24\x27\x83\x27\x84\xa5\x72\x9a\x98\xce\xa3\ \xd4\x97\x29\x13\xc0\x6f\x49\x26\xf8\xc1\x92\x00\x21\x88\x10\x0c\ \x2c\x61\xf8\xcb\xdf\xfe\xc6\x21\x97\xf7\x5c\x49\x76\x9d\xb8\x4c\ \xb7\x1a\x62\x83\x3b\x81\x26\x3f\xbb\x8a\x41\x24\xe2\xa6\x1f\xc2\ \x44\xe8\x32\x6a\x92\x20\x9d\xc0\x86\x20\x8e\x10\x6e\x3e\xd2\xe3\ \xcb\x12\xeb\xb1\x03\xf9\xc8\x81\x85\xde\xa2\xc3\x08\x73\xf3\x01\ \x03\x7c\x91\x45\x2c\x04\xe1\x50\xe6\x30\x1c\x19\xd2\x11\x2b\xec\ \x5b\x52\xa9\x4a\x45\xbf\xb5\xd8\xcf\x6a\x3f\xc4\x9a\xd6\x5e\xd5\ \x30\xf8\xe4\x05\x43\x6d\x5c\x48\x43\x8e\x10\x06\x2b\x49\xfe\xa8\ \x40\x05\x09\x8c\x97\x86\x15\x86\x69\x4c\x32\x79\x1a\xb9\x22\xcf\ \x4c\x26\xa8\x8d\x94\xac\x5c\x01\x7c\x82\x0d\x46\x80\xb2\x1d\x9c\ \x6e\x07\x62\x5c\xc1\x0a\xa0\x80\xc6\x34\xe2\x24\x51\x27\x64\xdc\ \x08\x0c\x30\xc7\x3a\xd2\xf1\x51\x7a\x6c\x12\x36\xda\xb1\x8d\x1d\ \x84\x21\x12\xf7\x3b\xdd\x1f\xa5\xe4\x81\x2a\xf9\x4f\x6f\x21\xa3\ \xc8\xa2\x4c\xd2\x2d\x1c\x6c\xa3\x57\xef\x09\xcd\x18\xf2\x76\x97\ \xe4\x05\x08\x79\x61\x50\x5e\x5e\x3e\x62\xc4\x65\xb9\xcc\x24\x85\ \xeb\xa0\x49\xb8\x84\xca\x1d\x8c\x61\x05\x75\xdc\xc1\x08\x58\xd9\ \x4a\x72\xbd\x32\x21\x4f\x90\x5a\x02\x36\x47\x4b\xf5\x85\x60\x87\ \x3f\xfa\x61\x17\x72\x79\xcd\x1d\x10\xec\x74\xa9\x53\xcf\x30\xeb\ \xb2\x1f\xfd\xdc\x65\x34\x1f\x4c\x4d\x50\x0a\x67\x03\xbf\x71\xa6\ \x99\x16\x13\xe8\x35\x23\x0a\x1f\x03\x5a\x13\x9b\x98\x59\xdc\x46\ \x18\x0a\x3d\x10\x82\x71\x04\x50\xf0\x28\x3e\x76\xb0\x02\x6c\x60\ \xc3\x0b\x58\xc1\x86\x18\xeb\x28\x88\x79\xa8\x33\x27\x3e\xe0\x68\ \xf6\x9e\x50\x8f\x1e\xcd\x33\x53\xf2\xac\x23\x0f\xb1\xf1\x96\xfc\ \x69\xcd\x55\x1e\xf0\x40\xee\xe0\x96\x04\x30\x04\xcf\xfe\x6b\x10\ \xec\x16\x67\xc8\xf8\x93\xbf\x1c\x48\x0e\x50\x88\x48\x18\x04\xd2\ \x4c\xb5\x51\xc9\x6b\x12\x81\x4f\x7e\x28\x49\xc5\xe4\x65\xc4\xa0\ \x99\x9c\xe0\x64\x0e\x34\xb3\xe8\xb1\xa9\xac\x65\x8c\x43\x3d\x48\ \x4a\x52\x2f\xf8\x31\x69\xd8\xd8\xc1\x0e\xb0\x41\xcb\x96\xde\x44\ \x11\x32\x68\xa7\x1c\xe8\xf0\x8e\x9a\xca\xb0\xad\x7c\xdd\xa3\xe9\ \x0c\xe6\x24\x64\x78\x40\x6b\x1e\x48\x9b\xee\x2c\x56\x83\xd6\x55\ \x90\x4b\x77\x19\x05\x26\x1b\xd2\x90\x8b\xf4\x29\x0c\x66\x93\x48\ \x7e\xce\xe6\x82\xf5\xcc\x05\x0c\x0f\x84\xcf\x14\xb9\x9a\x97\xe2\ \xd9\xaa\x13\xcb\x1a\xc5\x11\xb4\xc8\x26\x2e\xe4\x49\x20\x06\x99\ \x2c\x02\x80\x59\xc7\x15\x70\x40\xa4\x26\xa5\x23\x5d\x49\x88\x0f\ \xbc\x42\xe1\xa6\x7c\xa5\x65\x5b\x43\x00\x08\x00\xed\xc0\x2d\x3b\ \x78\x1d\x14\x14\x99\x84\x9f\x56\xc2\x03\x2e\xe0\x5d\xd7\x24\x42\ \x10\x47\x46\xe4\x19\xa3\xc8\x56\x43\x18\x14\x87\x51\x0c\x6f\x36\ \x61\xf0\xd5\x35\xb6\x31\x18\x30\xa8\x6d\x61\x73\x31\x2a\x15\xb1\ \x39\x5a\xd9\xa1\x0c\x34\x79\x29\x90\x65\x5c\x6b\x19\x48\xc6\x01\ \x94\xf5\xb8\xad\x0c\x6f\xeb\x85\x20\xec\x00\x17\xfe\x23\x55\x69\ \x6e\x69\xa2\xa2\x76\x3e\x61\x0c\xbf\xfd\xad\x20\x30\x91\x00\xb5\ \x0c\xf7\x0d\x5c\xe0\x82\x47\xa1\xc0\x51\x2e\x84\xa1\x06\xaa\x5b\ \x6c\x68\x52\x9b\xd1\x45\xf2\xe7\x75\x78\x3a\x5e\x46\xc2\x10\xbc\ \x87\x15\x68\x14\xbc\xb2\xea\xed\x2c\xac\x3a\x21\x36\xcc\x6b\xd7\ \x2c\x48\x81\x30\x99\xa5\x01\x4e\x70\x9a\xcb\x03\x59\x41\x8e\xc0\ \xc4\x23\xcc\xc7\x06\x3b\xc0\x6f\xd2\x50\x89\x15\x2f\xe0\x42\x03\ \x6a\x05\x72\xd2\x02\x8c\x28\x58\xb4\xd3\xc7\x07\xae\xa9\xa6\x4c\ \xf0\x98\x69\xbc\xe0\x08\x5c\xa0\x03\x84\xad\x3c\x3b\xd6\xe2\x60\ \x14\xd7\x28\xec\xea\xec\x72\x4c\x47\x3a\xf1\x4d\x03\x59\x5e\x7e\ \xfc\x67\xe2\x59\xbd\xae\xbd\x8b\x14\x6f\x44\xce\xb6\xe2\xd5\x11\ \x73\xba\x32\x5e\xd3\x46\x18\xc2\x05\xfc\x4c\x34\x64\x39\xa6\x88\ \x81\xb2\x1b\x57\x93\xe2\x17\x1b\xff\xf5\x11\x31\x88\x81\x0d\x0d\ \x68\x80\x18\xb8\x55\xf2\x07\x98\x7c\xc8\xbe\xf8\xd8\xaf\x4f\x4e\ \x5a\x82\xa5\x1c\x3a\x34\x1c\xe1\x0d\x94\x99\xee\x83\xc7\x10\x83\ \xa1\x1a\xa6\x06\x84\x6d\x06\x7f\x30\x42\x10\x8b\xd4\x6e\x57\x56\ \x82\xe4\x28\x04\xf3\x8c\x67\x88\xc2\xb2\xbd\xfe\xba\xa6\xcb\x06\ \x12\x6b\x03\x3e\x83\xbc\x73\x8e\x6e\x05\x49\x9b\x25\x7d\x2c\x6b\ \x8b\x17\x49\x6f\x8e\x97\xd7\xa0\x07\xdb\x80\xb5\xa3\xf0\xaf\x5c\ \x15\x8d\x8d\x20\xac\x00\x17\x8e\xf6\x91\x17\x88\xe1\xdf\x44\xab\ \x4f\x10\x4a\x9e\xc9\x4b\x5f\x59\x60\x24\x5f\x7a\x3a\x09\x68\xc7\ \x91\x3c\xed\xe9\x29\x6f\xc3\x04\xfe\xdb\x69\x94\x6a\x30\xeb\xcb\ \x8a\xf7\xb1\xb1\x2e\xdb\x35\x88\x9a\x6a\x51\xd4\xda\x4b\x60\x22\ \x4c\x0c\xce\x6b\x25\x47\x62\x33\x6f\x59\x68\xe6\x66\xcd\x2b\xef\ \x87\x5d\xc9\x83\x72\xb8\x62\x43\x34\xb3\x5d\x42\xba\x59\xba\x67\ \x32\xd6\x06\x37\x02\x05\x7c\x8c\x21\x08\x72\xcd\xf6\x0a\x76\x00\ \x02\xdb\x4e\xe0\xda\x25\xc7\x05\xb5\x93\x46\x8c\x28\x7c\xfb\x1f\ \xf2\xc0\xde\x2b\xa1\x20\xd7\x72\x63\x5a\x53\x09\x80\x83\xbe\x46\ \xb0\xee\x7a\x4c\xa3\x1d\x31\xf0\x79\x12\x08\x5b\x09\x64\x3c\xb3\ \xde\x83\x51\x75\xac\x0b\xc3\x2b\x67\x4e\x73\xa2\x77\x31\xcc\x7b\ \x9e\x81\xb6\x86\xa5\x3a\x9a\x11\x65\x28\x14\xb2\x10\xf0\x29\xc5\ \xca\x3d\x84\x6c\x96\x81\x1e\x0e\x36\x89\x43\x64\xd6\x78\x39\xf6\ \xd9\x9b\xf8\x5a\x0f\x32\x7b\x89\xb6\x58\xfe\x01\xc8\xf9\x2b\x77\ \x46\x63\xc3\xe4\x77\xb0\xc5\x1d\x4c\x1e\x84\x5d\xf8\xe0\xdb\xbc\ \x69\x67\x1c\x90\x41\xf3\x6e\xb3\xcf\x19\x50\xdb\xd7\xe7\xa6\xb1\ \x83\x76\x44\x11\xab\x85\xe1\x8f\xed\xb0\x3a\xcd\x7b\xc7\xb9\x57\ \xbd\x82\xcf\xbd\x31\xc2\xe1\xba\x0c\x26\xe0\xd1\x95\x7c\x9a\x09\ \x32\x21\x1c\x58\x76\xea\x0f\x9d\xe8\x99\x95\x27\x9f\x3b\xc1\x14\ \x21\x4a\x74\xec\x89\xb7\xca\x63\x07\xc1\x98\x0b\x99\x49\x50\x00\ \x97\x28\x52\x54\x8e\x94\xf7\x23\xc5\x85\xb5\xb1\x72\x07\x7c\x04\ \x01\xbf\x77\xd8\xc5\x1c\xbe\xfd\x81\x53\xb4\x53\xe6\x3e\x1c\xfc\ \x8f\x34\xb1\x86\x4e\x31\xe1\x3b\xf5\xc0\x63\xa9\x8e\x2b\x90\xc0\ \xd8\xae\x75\xb4\xbe\x4b\xbf\x6d\xd7\x6b\xcb\xcf\xaa\xdf\xf5\x76\ \xa2\x03\xe1\x23\xf5\xb9\x18\x66\xd6\xfc\x99\xb7\x5d\x46\xbb\x2d\ \x28\x88\x38\xa8\x75\x99\x75\x75\xf1\x1f\x06\x8b\xe0\xc5\x8b\x0c\ \xf9\xa0\xd8\x55\x9c\xaf\x50\xdd\x18\xc4\xce\x13\x38\x88\xb0\x2d\ \x44\x1c\xe0\x83\x2d\x84\x14\xb5\xad\x40\x10\x3c\xe0\x1d\xd4\xc3\ \x48\x69\xc0\xdd\x05\xc1\xb5\x11\x83\x06\xe0\xc2\x22\x28\x1f\x0b\ \xbc\x92\x8f\x79\xc0\xf3\x41\x9f\xa6\xfe\x18\x40\xbe\x00\x8c\x09\ \xac\x85\x2e\x49\x5e\xf7\x39\xd3\xf7\xf1\xdb\x7e\x2c\x9d\xe5\x31\ \x56\x99\x55\x97\x61\xe8\x5b\x44\x90\x57\xc3\xb4\x1f\x68\xc9\xa0\ \x5d\xf0\xd8\xec\x28\x92\xd2\x1d\x46\xbe\x11\x95\x67\x4d\x93\x44\ \x6c\xd1\x84\x54\xc8\xb2\x5c\xc4\xed\x50\xd5\x35\x64\x01\x00\x9a\ \x8b\x96\xb0\x16\x3e\xe0\x43\x3d\x80\x00\xc7\x61\xa1\x29\x61\xa1\ \xdc\xdd\x41\xf0\x69\x60\xa3\x79\x1b\xa4\xc9\x42\xeb\xd9\xca\x18\ \x60\x83\x3f\x41\x5f\xf4\x4d\x1f\x1c\x74\x4e\x64\x04\xc6\xc1\x15\ \x46\xee\x90\x9f\x67\xd1\x9a\xfa\x81\x49\xaf\x58\xcc\x1d\xbe\x1f\ \x98\xcc\x5b\x11\xde\xa1\x43\xc9\xc5\x0e\x82\x56\x9c\x25\x41\x33\ \x24\xc1\x36\x00\x21\x43\xd8\xc0\x11\x04\x86\xd9\x0c\x20\x21\x5a\ \xd5\xad\x55\x44\x5e\xe0\x80\x65\x38\x08\xab\xc5\x5a\x8a\xa9\x4d\ \x0d\x4c\x84\xed\xdd\x4a\xdb\x35\xdb\x26\x31\x60\x3d\x9c\x62\x3d\ \x8c\x41\x3d\x60\x21\x2a\x5e\x61\x3d\xf0\xd7\x1d\x80\x40\x10\xe0\ \x42\x2c\xe6\x1d\x19\x42\xda\x5d\xc9\xce\x13\x8c\x02\x5b\x25\xcc\ \xfd\x90\xe0\xbd\x2c\xc9\x34\x70\xda\xa7\x1d\x5c\x24\x20\x43\x33\ \x20\xc3\x0c\x7a\xdf\x97\x8c\x5f\xfe\x62\xe9\x1b\x20\xb6\x5f\x24\ \xf6\x8a\x51\x9d\x0d\x62\xf5\xa1\xd3\x9d\xcd\x20\x49\xc8\x00\x6d\ \xcb\x45\x68\x23\xc6\x34\x03\x02\x35\x03\x18\xe0\x85\x1c\x5e\x04\ \x72\x51\x10\xc0\xa1\x8d\x0b\x5c\xc3\x34\x4c\x86\x52\x85\x51\x3d\ \xe4\x09\x2b\xc6\x95\x5a\x91\x94\x20\x60\x83\x20\x78\x01\x49\xed\ \x00\x3e\x6c\xdc\x0e\xdc\x1d\x03\xee\x02\x3e\xec\x82\x2d\x68\xc0\ \x51\xf8\x5d\x2e\xca\xce\x18\x9c\x0e\x36\x98\x0e\x1b\x3e\xca\xb9\ \xb5\x03\x95\x4d\x59\x24\xfc\x80\x61\x28\x50\x5d\x40\x1d\x1e\x8a\ \xc2\x0d\xfa\x4a\xda\xb0\x4e\xeb\x04\x4f\xfb\xed\x0a\xf9\xbd\x07\ \xaf\x20\x16\x5d\x18\x86\xd3\x1d\x10\x5d\xf8\xcf\xd8\x05\xe1\x36\ \xb0\x23\xc3\xf8\x4a\xc6\x7c\x62\xab\x81\x9f\x9a\x05\x06\x7f\x1c\ \x10\x18\x78\xdd\x35\x65\x81\x95\xe5\xde\x11\xc0\xd5\x0e\x1c\x81\ \x18\x95\xd4\x81\xf9\x23\x17\x80\x40\x3d\xd8\xc2\x2e\x14\x02\x06\ \x60\x40\x21\x1c\x64\x56\x28\x1f\xcc\xc9\x0e\x14\x74\x01\xfe\x20\ \x03\x36\x20\x03\x57\x0e\x9e\x20\xd0\x8f\x09\x28\x49\x24\xdc\xd2\ \xa9\x28\xd0\x62\xdd\xdf\xac\xd9\x4e\x20\xa2\x8d\x4a\xde\x61\x24\ \x4a\xa3\x0c\xae\xe4\x0d\x4e\xfe\x1d\x51\x3d\x50\xf2\xa0\x9f\x40\ \x65\x41\x83\xec\xc5\x42\xbd\x85\x27\xce\x45\xc2\xc9\xdb\x13\xcd\ \x1b\x68\x3d\x51\xfb\x01\xc8\x40\x04\x48\x6a\x3d\x18\x17\x20\xa5\ \x09\xac\x40\x12\xf4\xd1\xa5\x99\xc0\x15\x42\x65\x03\x62\x80\x0d\ \x60\x00\x08\x38\x1a\x27\x28\x5f\x1e\x9c\x10\x17\xcc\x9c\x70\x91\ \x14\x32\x58\xda\x6f\x01\x42\x59\xbe\x0f\xaa\x98\x4e\xc1\x74\x41\ \xee\x20\x43\x7b\x94\xa4\xfb\x55\x4c\x48\x9a\x5e\x1f\x2e\xdd\x46\ \xd6\x25\x78\xcd\x9a\x35\x76\x0d\x0f\x4a\xde\x14\x41\x9e\x5f\x22\ \xc8\xc3\x29\x12\xee\x10\xa6\x94\xac\x25\x78\x05\x0f\x0e\x4e\x63\ \x0c\x4c\x57\x31\x36\xe6\x8b\x1d\xc1\x5b\xf4\x13\xfe\x94\x5b\x10\ \x64\x26\x08\x10\xe4\x54\xee\x42\x14\x5c\x25\x2e\x9e\x50\x1c\x3c\ \x83\x1f\x85\x80\x17\xb4\xc3\x0a\x40\xe4\x93\x85\x00\xfb\x28\x1e\ \xaa\xe4\x8f\x93\x70\x0c\xdc\x78\xdf\x6d\x82\xa4\x5c\x10\x62\x67\ \x79\xd6\x49\x4e\x23\xf9\x15\x62\xc0\xe1\xa5\x40\x61\x16\x24\x39\ \xde\x1f\xba\x0e\x0e\x20\x15\x97\x6c\x83\x9c\x35\xa7\x36\xf2\xe7\ \x79\x99\x8d\xc5\x44\x02\x3c\x36\x51\x7e\x3c\xc9\xc0\xf4\x10\xd6\ \x0c\x9e\x17\xd4\x43\x21\xfe\xe0\xc3\x1d\x1c\x5f\x21\x8c\xc0\x2e\ \x60\xa0\x25\xb4\xdc\x07\x9c\x61\x96\xe0\x80\x1a\xfa\x13\x32\x3c\ \x43\x7b\xaa\x26\x2d\x75\x01\x20\x3c\xa4\x0e\xa5\x8e\x6c\x72\x8c\ \x67\x3d\x10\xfc\xed\x21\x5c\x86\x24\x21\x92\x5f\x5d\x6c\x64\x51\ \x41\x67\x21\x3e\x43\xee\x4c\xe2\x67\xed\x25\xaf\x15\x86\x33\x1d\ \x55\x43\x64\xdd\x35\xbc\xca\x50\x5d\x0c\xc3\x64\x8c\x5c\x28\x90\ \x0b\x24\xc1\x8b\x41\x52\x80\x6c\x43\x3b\x00\x11\x10\xd1\x5c\x14\ \x5c\xe1\x3c\xc4\x62\x41\xe2\x5d\x14\x2c\x82\x08\xa9\xd3\x8a\xca\ \x0e\x17\x88\x82\x17\x88\x20\xea\x00\x42\x0c\x58\x26\x5f\x75\x81\ \x20\x84\x25\x10\x55\xc2\x5a\x2c\x10\xdc\x90\x64\x20\x82\x01\x02\ \x08\x29\x62\x91\xe3\x1e\xf6\x28\xd4\x41\x9d\xe5\x91\x1a\x61\x68\ \xe3\x5c\xdc\x67\xaa\x29\xcf\x5d\xdc\x26\x74\xd6\x45\xff\x05\x10\ \x67\x24\xc1\xea\x2c\x69\xc6\x84\x2a\xac\x50\x49\xc6\x80\x41\x9f\ \x05\x88\x31\x6a\xe7\x76\x02\x93\x6c\x3d\x19\x36\x5c\xe1\x2e\x80\ \x80\x16\xc6\x2a\x08\xcc\x43\x10\x98\x48\x6e\xc5\x29\x46\xa9\xa1\ \x07\xf4\x13\xd6\x60\x43\x12\xb0\xd5\x5f\xa1\x0a\x3d\x15\x0c\x0f\ \x6d\x28\x58\x26\x23\xfe\xc7\xfc\x0a\x02\xe8\x20\x02\xd4\xc0\xa1\ \xee\xa7\xaf\x0c\x20\xa1\xf6\x66\x11\x76\x56\x24\xf0\x47\xc5\xb4\ \x47\x6f\x6e\x95\xde\xd8\x20\xaf\x7c\x64\x78\x15\x20\xa7\x6a\xdd\ \xa4\x5e\xcc\x7a\x24\xdc\x7a\x34\x43\x5c\x00\xe5\x23\xbd\x45\x6a\ \xca\x16\xab\x6e\x67\xb9\x11\x03\x3e\x60\x00\x14\x10\xe4\x2e\xec\ \x2b\xac\xf6\x1d\xa4\x65\xa5\xf1\xd4\x40\xc2\x00\x82\x9d\xa2\x8e\ \x76\xd2\x28\xfe\xe4\x92\xb0\xfa\x08\x4f\x15\xcc\x4f\xfd\x94\x0b\ \xd0\x26\x6d\x36\xc3\xb3\xea\xce\x7e\xf2\x61\xf0\xc0\x4d\x24\xfc\ \xe4\x91\xe6\xdb\x43\x79\x9f\xd9\xe4\x1b\x49\x72\xe4\xf7\xf9\x5b\ \xb8\xda\x21\x11\x65\x4b\x64\x1e\x5c\xc0\x25\xdc\x73\xa9\xce\x30\ \x71\x4c\xaa\x65\x68\xbc\xb6\x2a\x3d\x5d\xcd\xa5\xbd\x2a\x55\x8e\ \x40\x21\xec\xab\x54\x9a\x42\x21\xe0\x2a\x5d\xe9\xaa\xad\xcc\xcc\ \x7d\x25\x4c\x0d\xa8\xaa\x3f\xa1\x0e\x5f\xfd\xa9\x0f\xe9\xcf\x38\ \x30\xd7\x4f\x21\x23\x6d\x2a\x56\x6e\x1a\x69\xc6\xe2\xce\x91\x12\ \xe9\x46\xee\x4a\x11\xa2\x18\x47\x12\x86\xae\xe8\xe1\xb4\xf6\xa8\ \xd9\xe5\x85\xed\x99\x84\xd6\xa9\xeb\x8a\x75\x41\x62\xc4\x60\xd0\ \xe5\x0f\xbd\xb2\xfe\xa1\xfa\x04\x01\x84\xed\xab\xac\xce\xc3\xbd\ \x9a\x02\x06\xf8\xab\x92\x29\x42\x5f\x7c\xd0\x58\x99\x06\x0e\xd8\ \x42\x6d\xa9\x21\xfe\x00\x42\x6c\x8d\xe0\xd5\x74\x68\xd3\xca\x6d\ \xc3\x06\x52\xd4\xfe\x14\x7f\x22\xe3\x61\x25\x62\x91\x46\xd1\xc6\ \x8e\x2c\x80\x16\x15\x47\x1e\xc6\x0e\xfe\x61\x49\x46\x9e\x47\xe2\ \x26\xfb\xe9\x61\x95\x90\xeb\xc3\x89\x5a\x33\x80\xd9\xab\x78\x80\ \x85\x8e\xc1\x34\x28\x69\xcd\x3e\x2d\xdd\xd6\x11\x3e\xd8\x40\x21\ \xe4\xad\xad\x7e\xe7\x54\xfa\x6d\x80\x7d\xc0\xff\xd5\xcc\x85\x14\ \x6e\x6d\x71\x00\x07\x88\xc2\xe1\xae\xa1\x2f\x62\x83\x08\xce\x2d\ \xfe\xf8\x2a\xc2\xd2\x93\xaf\x36\x6e\x20\xfd\x53\x08\x78\x00\x32\ \x80\xa5\x0b\x78\x40\x5c\xb4\x07\x51\x69\x6d\xf8\x46\x1d\x80\x2e\ \x63\x7e\x5a\x9e\xab\x95\xa4\x78\xcd\x9b\x24\xb6\x58\xbe\xa9\x0d\ \xaa\x15\x20\x42\x8c\x4d\x85\x81\x59\xd6\x24\xc1\x47\x69\x5d\x17\ \x14\x6c\x87\xda\xec\xed\x0a\x02\x17\x3c\x81\x88\x46\xe0\x88\x06\ \x41\x2c\x16\x82\x0f\xbc\x29\x2b\x7d\x00\x17\x88\x51\x7f\x71\x00\ \xde\xe1\x02\x02\x24\x0d\x02\xe0\x02\xb9\xfd\x50\xd5\x38\x2e\xc3\ \x96\x69\xd3\xfe\xfe\x11\xd6\xec\x6f\x4f\x6d\x4d\x94\x3c\x6c\xac\ \x74\xc1\xaf\x28\xd0\xa0\x76\xed\xb5\xa2\xac\xfb\xa1\xae\x33\x35\ \xaa\xfb\xc5\xe0\x00\x0e\xa0\xc5\x7a\xe2\x33\x14\x20\x60\x1e\xc1\ \x33\x74\x81\x7a\x44\xc9\x44\x8c\xc1\x97\x31\xad\xff\xde\xae\x8f\ \xec\x80\x29\xc8\xc1\x2e\xac\x80\x06\x16\xb0\x05\xee\x02\x06\x08\ \x6d\x4b\x7d\xc0\x0e\x20\x80\x17\x54\x30\x2e\xec\x40\x35\x04\x5f\ \xd2\x58\xf0\xd5\x78\xc1\xc2\x72\xf0\x06\xff\x50\x6c\x95\x1b\x20\ \x19\xeb\xf5\xba\xca\x08\xbb\x00\x20\x9c\xb0\x62\xa5\xf0\xd6\xda\ \xa1\xd9\xbe\x1f\x6e\xa2\x2f\xc9\xd2\x1a\xd9\x5a\x5e\x90\x5e\xe3\ \x7b\x64\x84\x84\x9d\x55\x16\x00\x82\x61\x05\x48\x24\x08\xf1\xaa\ \x42\x2f\x11\xbf\x2a\x42\xd8\x82\xa3\x69\x60\x10\x68\x40\x14\x1c\ \xdf\x2e\x40\x31\x9c\x92\x94\x15\x8f\xa8\x2d\x48\xf0\x16\x63\x32\ \x36\xd8\xc2\x18\x90\x92\x07\x33\x6d\xb1\xaa\xe7\xf4\x02\x17\x10\ \x5d\xaf\xe4\x16\xcc\xa4\xf6\x0a\x0a\x0f\x95\x1b\xf7\xa6\xa3\xce\ \x8a\x1d\x3b\x23\x5e\x2e\x23\x7e\x3a\xea\x5d\xc2\xef\x10\x69\xeb\ \x0f\xc6\xce\x9e\x25\x41\x17\x84\xd7\x36\xf0\x70\xff\x1a\x32\x11\ \xfb\x48\xfe\x3d\x24\x84\x22\x63\x05\xa3\x11\xf0\x77\x4a\xf2\x02\ \xbf\x03\x2d\xde\x41\x40\x82\x21\xf0\xf9\x08\x2d\x72\x80\x7f\xed\ \xc0\x86\xfc\x58\x29\x33\x2e\xbd\x6a\xf0\xa5\x95\x71\x08\xf3\xd4\ \x61\x05\x55\x50\xa5\x72\xc7\x86\xeb\x2b\xd7\xb1\xe9\x36\x0c\x0b\ \x8b\x6e\x0b\x93\x57\xda\x30\x4c\x0c\xb8\x25\x51\x91\x58\xee\x65\ \x5d\x66\x15\x2c\x31\x17\xb3\x8f\x98\x80\xcd\x3c\x01\x14\x60\xa0\ \x18\x6a\x80\x01\x37\xb3\xf2\x6d\x82\x34\x53\x33\x2d\x5a\x1b\x02\ \x68\xdb\xdd\xd9\x42\x40\xda\x02\x14\x80\xa1\x17\x7b\x31\x99\x32\ \x6e\x7a\xf6\xf3\x6f\x65\x74\xea\xf4\xaa\xc5\x98\x33\xf8\x8e\xaf\ \x7f\xc2\xb1\x6d\xe2\xf1\x33\x3a\x13\xa3\xb6\xb0\xed\x48\x22\x62\ \x81\xac\x03\xed\xf2\xec\x64\x5d\x30\x87\x30\x47\x1f\xf2\xea\x35\ \x60\x55\xde\x41\x04\xf6\x74\x2c\xda\x82\x33\xa7\xd1\x07\x7c\x00\ \x4f\x5b\xdb\x06\x16\x19\xf0\x01\x5f\x44\xdb\x02\x0e\x14\x02\x0e\ \xc0\xdd\x04\xf0\xe3\x8b\xea\x0f\x28\x07\x97\x37\x87\xb3\x47\x67\ \x4d\x17\x34\xc3\x1a\x9f\xf3\xa4\xba\x32\x90\xd6\x40\x32\xbc\x70\ \xeb\xbc\x32\x48\xf6\xa7\x7f\x96\x75\x0c\xf7\x5a\x0d\xab\x74\x8f\ \x16\xfe\xd5\x0d\x1f\x44\x19\xb1\xd6\xc1\xa9\xaa\x3f\xab\x0f\x20\ \xe4\x2e\x3e\xc8\x55\x77\xf6\x2c\xde\x8d\x68\x01\xdf\x41\x14\x28\ \xf0\x08\x0d\xf5\x1d\x7c\x1c\x2e\x80\xc0\x88\x02\xdf\x06\x5a\x32\ \x45\x57\xa5\x39\x75\x71\x37\x57\x35\x28\xdf\x6e\xea\xf8\x14\x95\ \x9c\x6b\x50\xe5\x65\x59\x2f\x5d\xb3\x96\x34\x59\x07\xe8\x90\xfe\ \x67\xfb\x89\xdf\xd2\xf5\xe7\x0d\x86\x2c\x74\x1e\xa1\x41\xb8\x53\ \x28\x5d\x03\x20\xdf\x75\xd2\x00\x02\x14\x3c\xdc\x0e\xf8\x48\x03\ \x1a\x64\x9a\x32\x71\x14\x10\x03\x61\x17\x36\x41\xdf\x5d\x21\x54\ \xa5\x41\xda\xc2\x5f\x27\x36\x45\x83\xc0\xcc\x35\x2e\x65\x43\xae\ \xfe\xf8\x33\x20\xfd\xd4\xfe\x76\x81\x0b\x98\xf0\x02\x4d\x2b\x3b\ \xd3\xf2\x32\x06\xa8\xe9\xf1\x21\x59\x3f\x90\x47\xb2\xf0\x2b\xef\ \x20\x47\xfa\xa5\xa0\x24\x84\xee\x79\xea\x4d\x97\x1b\x22\xcb\x01\ \x17\x44\xf6\x04\x58\x20\x9b\x2e\x73\x04\x36\xda\x6f\x57\xcf\x07\ \xd8\xaa\x06\xd8\x02\xdf\x52\xe5\x70\x0f\xb7\x71\xf3\xb4\x2d\x38\ \x25\x2e\xf4\x95\x73\x37\x6c\x19\x8f\xf2\x81\x19\x56\xaf\xb6\x6e\ \x73\x35\x57\x48\xdb\xe5\xfd\xc9\x60\x5a\xbf\xb0\x49\xe6\xb1\x62\ \xfe\xa1\x35\xc9\x6e\x6b\xaf\xc0\x5f\x4a\x7e\xb5\xc8\x4a\xd7\x68\ \x7d\x92\x40\x4f\x83\x2f\x5f\x75\xb9\xb5\xc3\x18\xcc\x4e\x5a\x21\ \x9a\x41\x37\x72\xa2\x59\x20\x4f\x6b\xc0\x7d\x23\xce\x07\xb0\xc2\ \x01\x23\x44\x7f\x4f\xe5\x70\x03\xf6\x44\x1f\xda\x06\x3f\x5f\x56\ \x93\x29\x11\x07\xd2\xc3\x16\x96\x74\x53\xb7\x09\x93\x2f\xd4\x15\ \x69\x24\xf6\xe6\x8f\xe6\x71\xa2\xa2\xf5\x5b\x7b\x2c\x6a\x13\xa1\ \x4d\x76\x8d\xc8\x96\xf7\x7a\x6d\xd9\x23\xa2\x8a\x9d\x5e\x5a\x17\ \xbc\xc3\x18\x21\x15\x05\x22\x1a\x36\x44\xf3\x2c\x1e\x74\x2d\x06\ \x75\x61\x2b\xc2\x80\x4b\x25\x8f\xff\xf7\x80\x83\xa1\x01\x4b\x74\ \xf1\xd1\x53\x98\xf7\x15\x73\x3f\xed\x73\x5b\x76\x94\xec\xef\xc3\ \xb6\xee\x4f\x2d\x56\x0c\xc2\xf0\x47\x6e\xf8\x1e\xce\xb3\x73\xe5\ \xa6\x77\x73\xb7\x3b\x33\xaa\x11\x86\x74\xc8\x86\x2f\x44\xc1\x24\ \xb3\x95\x91\x49\x6c\xdf\xe2\x01\xc2\x2f\xfa\x55\x3d\x8d\xb9\x09\ \x08\xe5\x83\x2d\x60\x5c\xf9\x48\x63\xcb\x2a\x54\x46\xe5\x7f\x47\ \x65\x13\xd4\x78\xb8\xe8\x04\x4f\x07\xc1\x3c\xcc\xc3\x77\x1a\xa4\ \xac\x36\xf2\x9d\xd7\x83\x45\xcb\x50\xf5\x22\xac\x6a\x56\x36\xfe\ \xdd\x42\xed\xc0\x3c\x2c\x20\x74\x6d\x82\xc2\x1f\xe7\x76\xb6\xc5\ \xa4\x8d\x73\xc5\x4a\x6e\xce\xe0\xa2\xa3\xf6\x8f\xd2\x70\xa4\x2f\ \xe3\x40\x25\xcf\x82\x4a\x56\xee\x91\xe2\x23\x06\x0c\xe3\xb5\x83\ \x09\x1c\xd7\x3f\x42\x26\x6b\x51\xa0\x52\x4e\x40\xc8\x35\xa0\x71\ \x47\x25\x06\x1c\x31\xdf\x9a\xc2\x11\xc3\xfa\xa1\x0c\x35\xb7\x61\ \x05\x31\xd4\x77\xa3\x69\x00\x08\x68\x66\x7f\x11\x1a\x90\x65\xaf\ \xb0\x77\xf4\x7a\x93\x71\xab\x4c\x6e\x32\x8e\x2f\x93\xbf\x71\x5e\ \x5e\x6b\xda\x20\x43\xac\x5c\xee\x68\x2f\xfa\x68\xb7\xf0\xed\xa0\ \x74\xa4\x47\x7a\xeb\x0c\x46\x0e\xee\x31\x8c\x95\x55\xec\x1c\x14\ \x6b\x6d\x12\xb3\x81\x12\x6b\x15\xe5\x48\x65\x9b\x17\xac\xc0\xf0\ \xe5\xab\xac\xb2\xba\xbc\x87\x10\xa4\x7d\x80\xc9\xe1\xbb\xde\x0d\ \xb7\x88\x6a\xf1\x5a\x25\x0d\x18\xcb\xb6\xc1\x07\xba\xf6\x22\xc3\ \x66\x9b\x8d\x7d\xfe\x64\x86\xbb\xb3\xee\x20\x23\xa2\x7a\x77\x0d\ \xa7\x4d\x1c\x93\xed\xd1\xeb\xa6\xd9\x0e\x46\x78\x97\xb5\xa9\x4a\ \xd3\xeb\x1c\x04\x28\x35\xdb\x47\x41\xa6\xc9\x43\xc1\x29\xee\xc0\ \x03\x1a\x1a\x7f\xed\x00\x54\xce\xfa\xcb\xe7\xc1\x11\x2b\xfe\x04\ \xbd\xd7\xbb\x3c\x99\x1c\x31\xcc\x43\x88\xca\xe2\x72\x23\x00\x54\ \xf3\xfc\xb1\xa2\xb8\xcf\x3f\xee\xc1\x37\x8c\xa9\x2d\xd0\xdf\xfb\ \xbd\xc4\x5e\x3b\x5c\x52\xad\x90\x66\xf8\x3c\x43\xbb\x76\x87\x35\ \x4a\x53\xac\xd9\x6e\x7c\x44\xd4\x73\x0c\x8c\x75\x5d\x18\x2a\xd1\ \xa5\x62\x72\x65\x01\x5c\x09\x65\x7d\x79\xa3\x48\x7d\x7e\xc8\xc9\ \x5d\x40\xda\x6a\xa2\xad\xdc\x3c\x38\xf1\x4f\xb4\xbd\xa1\x7c\xc0\ \x0b\x21\x5a\x14\x34\x1a\x31\xdc\x01\x14\xec\xee\xdd\x47\x35\x31\ \x50\x71\x5f\xd9\xa8\xde\xd7\x14\xab\x2a\x78\x47\xa3\xce\x95\x12\ \xd6\xf6\x6a\xaf\xc5\x0c\xfe\xa2\x0e\xa0\xd2\x27\xe3\xe1\x37\xfb\ \xda\x28\x3e\x2c\x43\x3d\x35\x2e\x5d\x32\x74\x56\x32\x80\x2c\x9c\ \xd1\x9a\x5a\x63\x03\x18\xf0\x23\x9e\x1a\x25\x7b\xb6\xc3\x0e\x2c\ \xe8\x7c\x34\xf0\x48\x91\x7d\x40\x8a\x7d\x4f\x2b\xb1\xcd\x47\xc1\ \x2e\xac\x3d\xdb\x2b\x1f\x27\x64\xa0\x05\x46\xa0\xde\xee\x6e\x6f\ \xab\x8f\x17\xd3\xd1\xc0\x0e\xfc\x7b\x16\x7c\xb9\x4d\x2e\x40\x78\ \x10\x38\x2e\xc4\x38\x64\x49\x6a\xd4\x00\xd4\x0c\x59\x0d\x30\x0f\ \x1d\x26\x4c\x88\xac\x99\x07\x17\x14\x9b\x65\xac\x91\xfe\xd1\x85\ \x45\x17\x19\xc1\xc4\x78\xb6\xed\x59\x8c\x87\x60\x1c\x5e\x13\x69\ \x12\x65\xb2\x90\x25\x45\x6e\x0b\x23\x6a\x9b\xa8\x30\x3b\x68\x92\ \x6c\x27\xca\x44\x98\x7a\x59\x76\x3c\xc3\xb6\x62\xcc\x08\x7d\x4f\ \x6c\xcc\xc3\x36\x61\x02\xb1\x15\x77\x82\xac\x08\x52\x8f\x56\x10\ \x62\x57\x89\x31\x8d\x52\xc8\x94\x1c\x53\x5f\xe5\xc8\xf1\xf1\x8f\ \x6c\x59\xb3\x67\xd1\xa6\xfd\xb0\x28\x48\xdb\x20\xf3\x6c\xed\xb2\ \x85\x6f\x17\x88\x20\x4b\x99\xe6\xd5\xbb\x77\x42\x88\x10\x5d\xfc\ \x06\x0e\xc1\x97\x70\x61\xc3\x87\x0d\x0b\xf6\x4b\xb0\x59\x92\x24\ \x08\x6a\x50\x44\x06\x31\x21\xca\xc8\x91\x05\x66\xc4\x98\xd1\xa2\ \xc5\x8c\xcd\x5e\x8a\x2a\x49\xb9\x86\xca\x67\x25\x5d\x3e\x5c\x19\ \x23\x86\xcc\x2c\x59\x46\x85\xb9\xe9\xb3\xde\xa8\x31\x63\x8e\x8c\ \xe0\x72\x64\x07\x36\x6c\xf5\xf0\xc5\xc1\x00\x45\x69\xde\x28\xf5\ \xa2\x10\x7b\xb7\x0b\x5f\x72\xac\xc4\x04\x45\xd9\xf5\xd5\xd4\x2e\ \xeb\x79\xf2\xa4\xd5\xbe\xdd\xec\x07\x45\x20\xac\x17\xc2\x57\x68\ \x44\x21\x10\x77\x56\x3c\x9f\x80\xcd\x0b\xe2\xbe\x7f\xfd\x02\x56\ \x3c\xf8\xbd\x60\xf7\xf7\xf1\x0b\x1e\xe7\xa1\x21\xfe\x32\x8a\x1e\ \x1a\x43\xe8\xa0\xcb\x22\x63\xa8\x23\x8c\x90\x11\xa8\x23\x8e\x40\ \x8a\x69\x34\x89\x2a\x03\xe3\x34\xd6\x58\x3b\xed\x19\x9a\x64\xcb\ \x22\x0c\x0d\x77\x90\xed\xb6\xdc\xb8\x18\xc1\x06\xa4\xf0\xd9\x41\ \xaa\x1d\xe6\xc1\x07\x9f\x7a\x04\xc9\x8b\x18\x5a\xde\x59\x21\x45\ \x5a\xd2\x23\x26\x8a\x28\x04\xb9\x2a\x88\x5d\xf2\xd8\xc5\xaa\xab\ \xa2\xe0\x4e\x48\xb5\x7c\xb0\x0e\x83\x23\xcb\xa3\x25\x39\xa6\xae\ \xf2\x0d\x1b\x04\xbc\xf0\x82\xbe\xc2\x04\xeb\xc2\x4a\x2b\x3d\x28\ \x48\x30\x40\x90\xf1\x0b\xbf\x2f\x13\x9b\x72\xb1\x10\x3c\xc0\xb2\ \x34\x84\xd0\x9c\x28\xb2\xff\x00\x44\xa6\xa3\xfd\xf6\xfb\xac\x19\ \x87\x2c\x7c\xe6\x1a\x08\x4f\x62\x2d\x19\x0a\x29\x94\x69\xc3\x30\ \xb6\xa9\x67\xb6\x0f\x45\x7c\x82\x0b\x1b\xe4\x30\xb4\xc4\x20\xde\ \xf9\x0d\x1f\x10\xb2\x62\xb2\x2d\xaa\x76\x99\x27\x8a\x20\x58\x09\ \x02\xc7\x09\x72\x24\xe6\xad\x48\x99\x1a\x52\xd4\xee\xe6\x28\x24\ \x0f\xf1\x7c\x4c\xcf\x45\x6c\x34\x60\xcf\x49\x2f\xba\x40\x2c\xb0\ \x2e\x00\xb1\x72\xbe\x86\xa4\x9c\xb2\xaf\x5d\x0f\xd3\x15\x4c\x31\ \x99\xd2\x92\xa0\x2e\x1c\xe3\xd2\xb1\x24\x50\xfe\xf2\xaf\x40\xc9\ \x3a\xf2\x60\xbf\x05\xe7\x74\x48\xa4\x09\x59\xcb\x73\xb5\x18\x92\ \x29\x09\x9b\x6b\xda\xd9\x66\x9a\x30\xa6\x09\x6a\x87\x2c\xa0\x80\ \xe2\x88\xa2\x6c\xe0\xa2\x5c\x2e\xf4\x49\x77\x84\x12\xa3\xb8\x03\ \x1f\x1a\x5b\x54\x2e\x08\x13\x68\xd9\x65\x87\x20\x68\xc1\x07\x03\ \x5a\xb0\x6a\x71\x02\x4b\xae\xd2\x6b\xd4\x83\x3f\x98\x83\x39\xbb\ \xf0\x62\xd2\x61\xa6\xa2\x74\xb2\x4b\x5f\xf5\x12\x2c\xcb\xf9\x02\ \xab\x6f\x3e\x30\x39\xde\x4b\xb1\x71\x00\x89\x0c\xa1\x18\xae\xb1\ \xac\xa1\x35\x2b\x52\x50\x20\x67\x01\x4c\xc8\xa4\x69\x2d\xa4\xf0\ \x42\xd9\x4a\x6a\xa7\xa4\x24\x44\x32\x61\x5c\xa0\x76\x08\x34\x0e\ \x2e\x80\xe6\x22\x0e\x7c\xc6\x50\x91\x8b\x27\xc2\x92\x63\xc5\x7a\ \x40\xa8\x47\xd3\x28\xe6\x99\xc7\x84\xb7\x4c\xb8\x14\x98\x27\x9e\ \xd8\xc5\xb9\xac\x3a\xbd\x91\xe0\x28\x3e\x38\x58\xd4\x84\xeb\x52\ \x95\xc9\xab\x04\xae\xd8\x0b\x04\xd8\x1b\x8c\xe2\x8a\xdd\x96\x35\ \x30\x82\xde\xee\xf8\x4b\xfa\xc6\xec\xe2\xa0\x6b\xae\x79\x4c\x22\ \xc8\xfc\x53\x99\xe5\x38\xe7\x0c\x09\x66\x99\xfd\xd4\xb0\x26\x40\ \xb7\x69\x67\x87\x9e\x03\x7d\xed\xf1\x31\xfe\x80\xb6\xc1\x72\x28\ \xea\xa9\x67\x2e\x28\x46\x0c\x0b\x83\x79\x9d\x7e\x07\x6a\x5a\x68\ \x99\x87\xd1\xe4\xde\xc1\xe0\x09\x53\xf0\xb1\x94\x15\xe7\x46\x6f\ \x2b\xea\x45\xc4\x1e\xf2\x03\x12\xec\x6a\x8f\x29\x41\x5a\x05\x95\ \xaf\x27\x73\xcd\x98\xb0\xba\xf9\xc2\x58\xb1\x5d\xbd\xac\x38\x58\ \xb8\x79\xfd\xb5\x20\xbd\x43\x86\x70\x22\x86\x58\x16\x7c\x1c\x8d\ \x0c\x67\xcd\xb4\x91\x30\x24\x69\x9b\xd7\xea\x91\x69\x8c\x2c\x32\ \x1f\x03\xf3\x1d\xea\x59\x97\x0b\x39\x6c\x58\x1a\x68\x15\x55\x4f\ \xf4\x51\xd3\xab\x7e\x2b\xea\xaa\xde\xf1\x74\x97\x11\x46\xb0\xae\ \xf4\x1b\x59\xb1\x8b\x53\xec\xa2\x74\xac\x98\x07\x09\x6a\x27\xa4\ \xb5\xa0\x27\x52\x9d\x4a\x1b\x61\xbc\x00\x3c\x8c\x21\x8f\x57\xc4\ \x4b\x5e\xb0\xbc\x34\xc1\x0b\xfa\x2a\x6e\x19\xcc\x0b\xf1\x8a\xa7\ \xa5\x32\x21\x03\x1b\x10\xf1\x0f\xf5\xc6\xb1\x9f\x95\x35\x88\x42\ \xd9\xab\xc9\x36\xb6\x61\x12\x04\x74\x01\x1b\x61\x30\xd7\xb8\x8e\ \x50\xae\x74\x71\x81\x67\x50\x50\xd7\xd1\x9e\x00\x05\x10\xe0\x83\ \x0b\x18\xe0\x02\x73\x46\xa0\x3a\x2e\xcc\xab\x74\xf4\xbb\x14\xe9\ \x68\x61\xc0\x26\x0a\x90\x80\xf3\x30\xfe\x20\x57\xaa\x13\x35\x2b\ \x26\x90\x3b\x6b\x59\x01\x02\x3a\xc6\x36\x28\xc9\xc7\x78\x19\xbb\ \xe0\x07\xed\x83\x46\xe3\x51\xb0\x83\xef\x41\x5e\x1b\x41\xe8\xb1\ \xb9\xf1\xa7\x64\xd8\xf8\x9b\xb3\x0a\x82\x11\x69\xc1\x44\x66\x36\ \x01\x54\x0c\x66\x18\x98\x7a\xa8\xeb\x08\x3f\x39\xc2\xfa\xe4\xb0\ \x44\xf4\xbd\x6f\x7d\xfa\x58\x22\x14\xba\xf2\xb9\x21\x8e\xc0\x14\ \xab\x2b\x22\xff\x08\xc8\x2f\x15\x11\x30\x8a\x51\x08\x20\x8f\xac\ \x03\x9e\xae\x98\xa2\x47\xb4\x00\x01\x02\xb9\xb8\x9d\x0f\x3c\x30\ \x3f\xaf\xaa\x52\x7c\x00\x43\xc6\x32\x61\xcc\x56\xc7\x73\x9b\x06\ \x6f\x09\xc7\x0a\xe6\xd2\x8d\x6d\x94\x55\x96\xfc\xa3\xac\x24\x24\ \x48\x85\x85\x03\x83\x4a\x54\x33\x2d\x9a\x25\x41\x4a\x79\xe9\x42\ \x16\x80\x76\x04\xf2\xed\xe0\x08\x61\x79\xc2\x08\x40\x34\x02\x28\ \x60\x20\x51\xfd\x2b\x04\xa2\x8c\x88\x8f\x24\x26\x8d\x9c\xa4\xbc\ \x4e\x1e\x46\x50\x3a\x4d\xcd\x63\x7f\x5f\xc1\x0e\x06\x46\x79\x24\ \xeb\xcc\x21\x6c\xa9\x54\x8b\xdd\x22\x98\x0c\xdf\xe4\xb2\x4a\xb4\ \xf2\x27\x20\x00\x7a\x25\xbd\x61\x03\x19\x64\xb4\x0f\x2e\x6d\x89\ \x41\x0a\x6a\xcc\x8c\xc7\x73\xcf\xfe\x7c\x04\x22\x2c\xfe\x60\x46\ \x20\xc8\x40\xc0\x49\xc0\x40\x50\x8f\x01\xa2\x1e\x47\xc8\x0d\x14\ \x76\x60\x82\x41\x1a\x8a\x0e\x58\x5b\xe2\x2e\x8e\x86\x01\xf1\x8c\ \xf3\x09\xf0\x44\x1a\x39\x61\x8a\x34\x53\x60\x80\x7f\xf8\xf3\x24\ \x8f\x30\x90\x07\x97\x86\xe5\x2b\x18\xa8\xcb\x1c\xec\xa9\x16\x56\ \xde\x67\x6d\xbe\xa9\x01\xc5\x60\x19\x4b\x1a\x02\xc2\x0b\x00\x25\ \x28\x41\x2d\x46\xa6\x32\x9a\xb1\x3e\x72\x6c\x1e\x2f\x93\x97\xc6\ \x8e\x7d\x4c\x4b\x73\x93\xea\x19\xf3\xe2\x01\x9d\x89\x74\x04\x6f\ \xa8\xc7\x3b\x76\x80\x8f\x37\xe8\xc6\x73\xe2\x19\xcf\xbb\xda\xb9\ \x3a\xac\xc5\xcf\x9a\x89\x82\x29\x4f\x4d\xc1\x05\x60\x24\xe7\x89\ \xd6\xc1\x29\x75\x7c\xda\x16\x54\x06\xb5\x3b\x43\x25\x2a\xdb\xb0\ \x21\x3c\xe6\xe1\xed\x95\x10\x35\xe8\xc6\x3a\x98\xd0\xb8\x29\x6f\ \xb2\x78\x6b\x9e\xdd\x96\x07\x56\xb0\x56\x2c\x09\x26\xd2\x59\xe6\ \x4c\xb0\x82\x77\xd0\x02\x38\x23\x98\xeb\x11\x41\x10\x35\x10\x24\ \xb1\x88\x48\xa3\xe9\xfe\x30\x40\x87\x24\x76\xe5\xae\x5e\xf1\x8a\ \x92\xbe\xe6\x49\x2d\x86\xc7\x52\x4d\xd1\x04\x61\xcf\xb2\x4a\xbb\ \x85\x00\x01\xc5\x95\x4f\x7e\xfe\x3e\x88\xc1\x7e\x0a\xf4\x62\x54\ \xbd\x65\x05\x2f\x9b\x5c\x0b\x3a\x74\xab\x60\xf2\x00\x36\x44\x11\ \x52\xd1\x4e\x2d\x7f\xef\xd0\xa4\x8a\xc4\x59\x08\x1f\x89\x0e\xb6\ \xfc\xab\xe4\x11\x4d\x37\x8f\xd2\xd1\x82\xae\x3c\xb5\xad\x3b\x2d\ \x45\x0c\x82\x01\xc9\x46\x97\x5a\x12\xa7\x80\xdb\x9d\x0f\x0c\xb7\ \xa9\x6c\x3b\x2e\x66\x19\xfa\x17\x40\x60\x23\x09\xb5\x3c\xe8\x1b\ \x27\x7b\xb7\x5d\x6a\x35\x8e\x98\x0d\x41\x0d\xeb\x31\x86\x7d\x71\ \xb7\xbb\x54\xa1\x4b\x7a\x49\x97\x9c\x20\xe0\xc3\x14\xfd\xa3\xe4\ \x35\xf1\xc1\x0a\xf9\x02\x89\x16\x3a\x7d\xa9\x57\x48\x99\xd3\x52\ \xde\x08\x3a\x9c\x62\x52\x8e\x5c\x2c\x88\xfc\x76\x67\xb8\x50\x0a\ \x41\x53\x37\xcb\x31\xc6\xd2\xb0\x1d\x2b\x18\xe6\x63\x2d\x6b\x59\ \x1d\x53\x76\x82\xce\xcb\xf1\x07\x11\xb0\x83\x51\x64\x8e\xb4\xb4\ \xd8\x81\xe8\x50\x54\x8f\x79\xdc\x21\x7f\x3a\x8a\x82\x77\xfb\x15\ \x5e\x4a\xf6\xcf\x2e\xd0\xc9\x51\x74\x4a\x9c\xb4\xaf\xcc\x8b\x9d\ \x2b\x76\x8e\x8b\xf3\xa2\x01\xae\xcd\xb8\x2c\xfb\xd5\x31\x81\x11\ \x40\x5d\x00\x7f\x90\x56\x19\x05\x04\x02\x0a\x5a\xd0\x34\x36\x38\ \x31\x6e\x8c\xee\x42\x1f\xfe\x5a\x55\x2a\x05\x66\x28\x8f\xb3\x45\ \x3d\x76\x21\x65\x29\xef\xe0\x52\x52\x59\x81\x8b\x80\x74\x29\x76\ \xe2\xd4\x7f\x96\x3a\xf3\xc0\xe6\xa1\x53\xea\xe4\xc1\xd2\x50\xfc\ \x9f\x7a\xe8\x9b\x15\x4e\xb0\xf9\x1f\x6e\xfe\x55\x0d\xbe\x98\xc1\ \x23\x0f\x37\x3e\x7f\xb1\x23\x41\x27\xe6\x4b\x07\xcf\x19\x6e\x5d\ \xb5\x60\x51\x11\xbb\x02\x45\xcf\x43\xca\xf3\x58\xc1\x0a\xa2\xb0\ \x02\x35\x33\xe9\xcc\x9e\xca\x97\x5f\x2b\xa5\x45\xab\x08\x22\x47\ \x51\xc8\xd7\x29\x54\xdc\x49\xa8\xa9\x37\xb5\x9a\x7a\x8e\x8d\x34\ \xa5\x01\xda\xb1\xd9\xd4\x77\xbb\x71\x62\x0f\x4c\xeb\x5a\x93\x89\ \x84\x49\xe0\x52\x42\x87\xfb\xe7\xe1\x79\x90\xb1\x04\xd9\x4f\x42\ \xba\xd0\xdc\x8b\x05\x0b\x19\x2b\x30\x11\x7b\x9c\x12\x95\x5f\x07\ \xc1\x44\x1a\x10\x76\xef\x9a\xf2\x16\x6b\xbf\x05\x3c\xa1\x5c\x6f\ \x01\x61\x27\xc5\x7c\xa1\xb3\x47\x96\x7a\x4b\xbe\xd4\xb9\xb5\x4b\ \xdd\x01\x2a\xdb\x9e\xb1\x70\xb7\x8a\x8c\x5c\x09\x5a\xdc\x72\xfc\ \x8b\x17\x62\x9d\xe0\x8e\x2f\xcf\x63\x49\x80\x61\x81\x1d\xd3\x8e\ \x6b\x8c\x04\x86\xdf\xbb\x8d\x86\x22\x71\xcc\x18\x92\x11\x01\xf6\ \x5e\x01\x2e\xbc\x80\xfe\x8b\x5f\x37\xc9\x0b\x59\xf1\x77\x54\x82\ \xa0\x81\xa0\x83\x20\xb5\x50\x99\x07\x78\x90\xde\x44\xf5\x9a\x4e\ \x53\xfc\xf2\xdf\x7a\xaf\xf3\x3f\x2d\x56\x7b\x49\x57\x11\x7a\x5b\ \x2c\x7e\x71\x07\x6b\x7c\x63\x23\xf7\xb8\x06\xab\xfb\xa5\x2e\x1c\ \x52\x5d\xe5\x8a\xc3\xcf\x80\xb6\xae\x11\x59\xee\x72\x50\x18\xc3\ \x36\x82\x87\x58\xdf\xe8\x7c\x05\x4b\xd1\x1d\x53\xae\x1e\x04\x8a\ \xdf\xc1\x16\x44\x3f\x8f\x16\x55\xab\x4e\x81\xdb\x8f\x74\x54\x4c\ \xb6\x7a\x8f\x6d\xba\x1b\xc9\x2e\x0a\xc3\xb6\xfa\x8d\xb4\x4d\xea\ \x52\xe7\xa5\xe7\x21\x7c\x5b\xbd\x27\xa6\x31\xaf\x17\xaf\xaa\x7c\ \x16\x77\x12\x46\x10\x96\xce\x25\xad\x5d\x3e\xd4\x87\x1c\x1c\xc9\ \x2e\xf6\x41\x01\xee\xb7\x14\xa3\x93\x74\x9e\x95\x82\xe1\xfd\xe7\ \x7c\x07\x41\x5c\xce\xd3\x96\x4b\xd9\x0f\x2a\x37\x5a\xbc\x01\x71\ \xea\xd3\x83\xab\xd7\x7f\x2c\x96\x74\xb6\xd5\x7c\x75\x0d\x68\x20\ \x0a\x8a\x20\xb5\xa9\xbd\xf0\xc5\xf6\x44\x29\x4a\x7f\xbe\xf1\x33\ \x52\xcd\xd8\x55\x8f\xdc\x83\x9b\x27\x39\x53\xba\x00\x05\xa4\x98\ \xdd\x72\xec\xc3\x81\xf9\xd6\x67\x03\x1c\xe4\xd0\xed\xdb\x40\x86\ \xda\xe6\xee\xa4\xfe\x9d\xcf\xde\xe7\x1a\xc0\x05\xc5\x53\xdb\x77\ \xa8\x2c\x3f\x5e\x8a\xf7\xbd\xef\xdf\x62\x17\xe0\x29\x0f\x52\x8b\ \x74\x10\x8f\x47\xe2\x6b\xf1\xa2\x06\x2a\xdc\xc2\x2d\x84\xae\x9e\ \xb4\xae\x2f\xb0\x81\x18\xc0\x88\xf2\x12\xc3\x37\x62\x20\x78\x8a\ \xcc\xfb\x3c\x86\x03\x8b\x67\x1b\xcc\x05\x50\xc2\xc0\x7c\x1c\xe9\ \x5c\xb2\x00\x07\x0e\xc5\xed\xc2\xa0\xc0\x34\x8b\x86\xea\x2e\xfa\ \x7e\xad\x46\xb2\xa2\xe7\x88\x01\x17\xae\x6e\xef\x6c\x61\xca\x82\ \xe0\xfe\xaa\xed\x0e\x14\x4f\xf7\x16\x0f\xd9\x20\x8e\xf8\xfc\xca\ \x2e\x16\xcf\x7e\x98\xce\x01\x97\x6f\x13\x9e\x6f\xab\xfc\x42\x8c\ \x34\xb0\xb2\x3c\x6f\xce\xa6\x10\xc0\xba\xe0\x36\xc6\x00\x50\x28\ \x07\xf5\xb8\x20\x0b\xc7\x00\x51\xd8\x67\x1b\x82\x4c\x30\x22\xc8\ \x55\x86\x62\x02\x27\x10\x01\x6a\xb0\x06\xed\x8f\xe2\xee\x6f\xef\ \xa0\xe2\x0e\xfc\x4e\xd9\xda\x82\xe2\x9e\x66\xf1\x86\xf0\x7e\xae\ \x23\xd9\x00\x30\x6a\xdc\xa2\xf1\xd4\x8c\x18\x98\x90\xdb\x74\xcc\ \x2f\x40\xae\x6d\xde\xa3\x99\xc4\xa4\xfb\x3c\xb0\x0a\x87\x0b\x9a\ \x6c\xa0\x5c\x8e\xe0\xf4\x44\xef\x36\x5e\xca\x06\x4c\x40\x57\x42\ \xc0\x71\xda\xfe\x81\x3d\x04\xa1\xfa\x88\x41\x77\x42\x11\x2b\x6c\ \x30\x0e\x4d\xd1\x0e\x83\xe0\xf6\xea\x82\xe2\x16\x10\xf0\xe2\xab\ \x29\xa6\xcd\x8a\x9a\xee\xe8\xfc\xe7\x0e\xed\xcb\xea\x66\x90\x18\ \x46\x8d\xd4\x38\xc1\xdb\x22\x4b\xd6\x3c\xb0\x57\x82\xf1\x83\xc2\ \xe0\x12\xe3\xe0\xc4\x6c\x60\x7c\x8e\x31\x88\x92\x60\x2f\xba\x80\ \x9a\x56\xe4\xde\x9a\xe2\xee\x26\x60\x6d\x70\xc1\x06\xdf\xf0\x1a\ \xaf\x51\xef\xe2\xb0\xef\xf4\x8f\x15\x8f\x4e\xb5\x7c\x44\xf6\xea\ \xeb\xff\x7c\x4f\xb5\x4c\x07\x3a\x02\xa6\x29\xd8\x71\x02\x16\x01\ \x02\xf3\xab\x17\xef\xe3\xc6\x04\x41\x4c\xba\xa0\x99\x86\x31\x1f\ \xef\x26\x0b\xc0\xd0\x06\x7e\x26\x69\x92\x91\x5b\x1a\x27\xb1\x9c\ \x31\x7d\xc6\xcf\x44\x26\x4c\x2f\xa2\xa4\x06\xeb\xd0\x0e\x77\x0f\ \x0e\xe5\xd0\x07\x25\xf2\xe8\x8a\x0e\x3c\x12\x70\x49\x78\xe7\x16\ \xb1\xcd\x7e\xa2\x20\x2f\x04\x26\x52\x88\x61\xf9\x9c\x8f\x10\x1f\ \xaa\x3d\x7c\x05\x1b\xde\xc1\x11\xbd\x4f\xe4\x3c\x70\x07\x2e\xd1\ \x7c\x92\xe6\x09\xc6\xe0\xc8\x42\xc0\x04\x88\xc8\x5d\x8c\x26\x44\ \xa8\x2c\xf9\xac\x0e\x17\xb8\x91\x01\xdd\x02\x22\x4d\x91\xe8\xea\ \xc2\x74\xfe\xfc\x4e\xef\xda\xa2\x60\x84\xce\x0f\x61\x27\x5f\xac\ \x82\x53\xc8\xd1\xea\x34\xe0\x0e\x46\x32\x02\x11\x83\x1a\x3f\x68\ \x28\x00\x43\x1f\xb9\xd2\x3d\x62\xe0\x25\xb3\x20\x26\xc3\xa0\x6e\ \x42\x00\x10\x28\xc7\x50\xde\xe5\x08\x5e\x0a\x2d\x0b\xc1\x16\xee\ \xc0\x06\x6f\x90\xe0\x18\xd0\x0e\xf7\x6e\x07\xeb\x10\xe9\xe2\x90\ \xe8\xe4\xd0\x08\x43\xf2\x52\x0a\xae\x2a\x74\xe4\xd3\x9e\x63\xf9\ \x08\x33\x08\xaa\x32\xbf\xba\xad\x63\x68\x48\x25\x57\x92\x2b\xdb\ \x81\x12\xe5\xe0\xed\x46\xa1\x5c\x76\xe0\xee\x7c\xc5\x2c\x4b\x2a\ \x91\x0a\xa9\x1e\xc0\x30\x26\x0d\x65\x17\xd0\x03\xe8\xa4\xc2\x07\ \xfd\x70\x07\xe1\xd0\x39\xa6\xf2\x3c\xf0\x4f\x35\x7d\xf0\x69\x18\ \x90\x9d\xba\xa2\x47\xda\xc2\x94\x9e\x26\x28\x91\x2f\x08\xe0\x11\ \xb8\x30\x4e\x2f\xa0\xc4\x24\xd5\x6d\x02\x00\x61\x05\xda\x01\x10\ \x2c\xaf\x2b\xbb\x12\x10\x20\xf3\x08\x8e\x8a\x95\x44\xae\x1d\x0e\ \x05\x6b\x9e\xa0\x44\x68\xc1\xb4\x6a\xcb\x91\xac\xa3\x36\x6f\xa4\ \x34\x1b\xf2\x0e\x3a\x52\x52\x08\x8e\xe8\x5a\xb1\xe9\x04\x0e\x36\ \x79\xaa\x47\x8a\x72\x2e\x8f\x32\xe8\xb4\x2d\x37\x83\xea\x03\xe4\ \xb1\xfe\x2f\x22\x08\x01\x70\xc1\x37\x62\x10\x1f\xf3\xe2\x37\xca\ \xa5\x44\x2c\x6f\xfb\x8c\x93\xd6\x00\x01\x91\x22\xb3\x6e\x08\xc2\ \x99\x06\x09\x68\xe8\x80\x0b\xde\x80\xb4\x54\x84\x92\x6a\x4b\x0e\ \x3e\x87\x80\x52\x0b\x00\xed\x4b\x76\x82\x2e\x2b\x1a\x2f\x3b\x57\ \x91\x34\xb3\xed\xff\x86\x88\xb6\xbc\xc2\xa7\x72\x4f\xef\x42\x49\ \x3d\x1f\x90\xdb\xe4\xd1\x10\x7d\x03\xb1\x70\xc1\x44\x56\x40\x77\ \x04\x01\xad\x44\x24\x69\x46\x00\x2b\x21\xeb\x8d\x7e\x93\xf3\xfa\ \xb3\x78\x6e\x12\x0a\xda\x41\x18\xfb\xc2\x04\xa2\x69\xad\xf8\xe7\ \x5d\x68\xe1\x05\x68\x01\x40\xef\x2a\xaf\x68\xaa\x7f\xe6\x41\x74\ \x16\x6f\xda\xac\xcd\x1c\x35\x94\x42\x7f\xc4\xea\xf4\x0e\x3c\xb8\ \x29\x2c\xc4\xeb\x07\x91\xae\x42\x99\x8f\x3d\xed\xe9\x03\x4c\xed\ \xc6\xd6\xa6\x3d\xd8\x06\xe7\xaa\x71\xc3\x38\xe7\xc4\x92\xa6\x1e\ \x2c\x41\x11\x0f\x8c\xdd\xf8\xf3\x46\x73\xf4\x19\x4d\x80\x20\x65\ \xa5\x1d\xa0\x20\x91\xc0\x4b\xad\x42\xa4\xc9\xda\xab\x41\x79\x8a\ \x2e\x94\x04\x80\xa2\xe6\x75\xfe\x70\x16\xef\x27\xe2\xf8\x0a\x2b\ \x96\x2f\x15\xb9\xe2\x48\xcc\x03\x3d\xed\x82\x30\x9b\x8f\xdb\xdc\ \xfe\x2c\x6e\xaa\x0f\x1b\xd0\x94\x53\xf0\xa1\x33\xef\xaa\x7d\x76\ \x40\x60\xa8\x8a\x8d\xb4\x8a\x8d\xe8\x34\x47\x75\x6c\x1a\x8e\x06\ \x9b\x5e\x00\x1f\x5e\x60\x04\xe8\x40\xb6\xfa\x25\xf4\x04\x35\xa6\ \xaa\x23\x8a\xc0\xa3\x89\xfe\x27\x3b\xf3\x05\x1f\x58\x60\x7f\xc4\ \x03\x8a\xa6\x4c\xd8\x42\x12\x2b\x52\x71\x17\xc4\xab\x10\x74\x30\ \x22\xc5\xf3\x0e\xc0\x34\x4c\x93\xab\x1a\x23\xa6\xfa\x26\x60\x05\ \x90\xb4\xb6\xa2\x13\x2f\xd8\x2d\xc0\xc0\x4e\xc8\xe2\x88\x31\x83\ \xb1\x2c\xeb\x01\x9b\x32\x07\x38\x16\x34\x0f\x42\x84\x0e\x2a\x29\ \x49\x3d\x34\xa6\x34\xcd\x9c\x7a\xa4\x94\x70\x4a\xa6\x54\xe7\x2b\ \x5a\xea\x92\x7c\x04\xe8\x9e\x43\x44\xa9\xee\xff\x82\x32\x5a\x53\ \x69\x37\x59\xf2\x37\xb2\xf4\x56\xe5\x27\x25\xfb\xe2\xb8\xfc\x42\ \x10\x1e\x0b\xc8\x82\x4c\x55\x69\xcd\x03\x00\xe1\x71\xea\xc1\x62\ \xeb\xe1\x55\x65\x80\x7f\xd4\x35\x50\xdd\xcb\x43\xd9\x34\x26\x79\ \x0a\x69\x64\x0a\x6b\x10\x36\x51\x24\xe9\x3c\x96\xef\xf1\xec\x8b\ \xf9\x98\x2f\xe8\x2e\xa5\x44\xb9\xed\x81\x4e\x92\x16\x42\x16\x61\ \xb9\xa0\x1e\x76\x87\xd9\x1a\xb6\xa9\x7c\x36\x4a\xae\x24\x0a\xfe\ \x51\x95\x4a\x52\xd5\x38\xbb\x60\x1a\x0a\x09\x28\xc6\x2a\xcb\xf0\ \x01\x9d\x9a\xd6\xb4\x6e\x96\x9c\x56\xe7\x5d\x4f\xb6\x6a\x93\x46\ \x3c\x72\x6f\xf9\xee\x40\xe8\x98\xaf\xf1\x1a\x12\x66\x17\x81\x18\ \x9e\xef\x3d\x7f\x07\x1f\xac\x16\xa6\x46\xc0\x12\xde\x83\xd9\xbc\ \xe0\x13\x43\x40\x10\x10\xe0\xce\x9c\x04\x1b\xee\x6c\xc0\x1a\x8a\ \x25\xe1\x48\x5c\xb9\xaf\x1d\xca\x75\x33\x5f\x00\x5d\x85\x54\x9c\ \xc0\x2b\x0f\x4c\x56\x50\x2b\x29\x6a\xab\x16\x71\xad\xc9\x06\x40\ \x13\x0e\xd5\x33\xe8\xb0\x6e\x11\x24\xf7\x1d\x25\xaf\xd4\xc8\x56\ \x2f\x4c\x20\x46\xcf\x96\x9c\xdc\xd4\x23\x3f\xb1\x1e\xfb\x8b\xc0\ \x62\xa0\x84\x52\x94\x05\xc7\x44\xd5\xbe\x4f\xc8\x24\x36\x58\x1c\ \x27\x0b\x96\xe6\x6f\x05\x57\x9c\x46\x00\x9d\x38\x69\x41\xe9\x40\ \x50\x57\xc7\xb6\x36\xf7\x09\xd0\x89\x6a\xef\x0a\x44\xa7\x8c\x01\ \x27\x57\x13\x28\xb7\x72\xf5\x8b\x30\x76\x20\x5b\x37\x97\x7d\xf0\ \xe1\x1d\x3e\xe8\x13\xdb\x56\x4a\x7c\x03\xfb\x46\x37\x09\x9e\x84\ \xa0\xf4\x46\xb2\x38\x6f\x4e\x1b\x91\xa3\xce\xf5\x5c\x5f\xf5\x0d\ \xd4\x4a\x9c\xb8\x20\x0f\xe6\xc5\x48\x49\x87\x3a\x97\x37\xfe\x51\ \xa2\xf6\x9a\x48\xa7\x5d\xb5\x35\x51\x76\x61\x11\x14\x81\x7e\xe9\ \xd7\x78\x15\x88\x2f\xea\xe1\x76\xd7\x17\xa6\xe8\xe0\x0d\xd4\xf6\ \x79\x6f\x09\xd5\x62\x60\x05\x0a\x78\x74\xfd\x03\xd6\x1e\x8b\x68\ \xbf\xcf\x38\xcb\x12\x7d\xd0\x67\x1a\x32\x27\xa4\x98\x2c\x5d\x6d\ \xe0\x5d\x04\x97\x16\x58\xe0\x60\x97\xd7\x77\xad\x89\x70\x6f\xf6\ \x09\x58\x40\x11\x48\x98\x84\xf1\x57\x6c\xba\x0d\x1b\xd4\xb2\x7f\ \xb5\x75\x04\xde\x21\x6d\xe6\x03\xb1\x0a\x58\x28\x82\x47\x3e\xe8\ \xe6\x54\x33\xab\x68\xb9\x8f\xa3\xa2\xd1\x71\x80\xe3\x05\x1a\xc5\ \x12\x44\x0a\x58\xf1\x01\x6b\x64\x8b\x7f\x58\x40\x9c\x4a\x8a\x0e\ \x08\x97\x85\xb5\x95\xb6\x7c\xa0\x84\x15\x41\x60\x4f\x58\x81\x04\ \xa6\x0b\x8a\xd8\x89\x1b\xf4\x09\x5e\xa0\x45\x12\x8c\x0c\xd9\x23\ \xe4\xd6\xa8\x54\x23\x96\x2b\x01\xe1\x53\x0d\xa5\x1e\xda\xe1\x1d\ \x1c\xe7\x4e\x39\xe5\x1d\x64\x77\x76\xb1\x86\x94\xde\xe5\x70\x59\ \x07\x18\x76\xe1\xc4\x3c\xb8\x41\x67\x75\x56\xf3\x80\x0e\x0e\xb3\ \x8a\x11\xb3\x17\xb1\x01\x1f\x20\x53\x8b\x43\x75\x04\x4c\xa0\x1e\ \x2f\x6b\xaa\xa6\xaa\x91\xaf\x4a\x1f\x39\xaa\x33\x6d\xfe\x80\x37\ \x9c\x44\x60\x46\x8b\x0b\x0e\xf4\x40\x8d\x98\x7f\xf8\xf7\x09\x64\ \x80\x16\x80\x21\x0f\xbc\x42\x71\x13\x85\x05\x50\x19\x95\x05\x59\ \x90\xdd\x13\x5b\x11\xf9\x64\x9f\x40\x8d\x19\x19\xba\xf8\xc9\x96\ \xc6\xd8\x46\x71\xd9\xeb\x36\x91\x73\x62\x6a\x45\x16\x39\x2f\xde\ \x21\x56\x65\x95\xae\xae\x69\x83\x3f\x59\xb6\xda\xd5\x14\xd8\xf5\ \xa5\x64\x00\x16\x9c\x19\x16\xc6\x62\x95\xa5\xb9\xd4\x14\x41\x79\ \x5f\xb9\x41\xdb\x67\x05\xec\x16\xab\x1c\xb9\x5b\x7d\x49\x0a\xbd\ \xee\x19\xad\xd9\x9a\x4a\xa4\x45\x5e\x74\x07\x6a\x35\x33\x13\xe5\ \x88\x9b\x78\x64\xb1\x06\x9a\xad\x40\x16\x7c\x40\x16\x02\x79\x9a\ \xa7\x59\x11\x6c\xf5\x9a\x61\x39\x12\x57\x04\x4e\xe1\x33\x7b\xbd\ \xca\x96\xf7\x0c\xc1\x86\x96\x31\x39\x6a\x9c\xc9\x69\x89\x4c\xe0\ \x1d\x4c\x60\x1e\x5e\x15\x1f\xd4\x39\x51\x3a\x0c\x6a\x9f\x40\x9e\ \xe5\x21\x8a\xeb\xd9\x9e\x35\x9a\x2c\x14\xe1\x14\xf4\x79\x79\x45\ \x55\x03\x9f\x84\x4b\x6a\x09\xa0\x1f\x99\x9b\x51\xd5\x11\x43\x60\ \x07\xf6\xd4\x6a\xf3\x15\x9d\x30\x98\x3a\x5f\x0a\x90\xa5\x98\x8a\ \x37\x7a\xa3\x3f\x00\x18\x3e\x7a\x7d\x93\x71\x05\xfe\xe2\x63\x86\ \x10\xeb\x62\x0a\x2a\x0a\x05\x1a\x87\x33\x6b\x0a\xbb\xa0\x1e\x4c\ \xf9\x56\x9f\x80\x56\x0d\xc0\x3b\xa0\x3a\xa3\x6f\x7a\xaa\xd1\xe2\ \x03\x60\x61\xa7\xd7\x37\x8d\x1f\xc7\x55\x6a\x20\x57\xb8\xae\x9b\ \x73\xb8\xfb\x54\x77\x1e\x5d\xf2\x6c\xe9\x40\x06\xf2\x40\x06\xe8\ \x40\x16\xa8\xba\xad\x07\xf6\xaa\xb1\x7a\x7d\x1d\xe9\x7c\x7a\x63\ \x62\xb2\x57\xd0\x10\xea\xb9\xc4\x35\x04\x38\x13\x61\x53\x19\x95\ \xa5\xda\xad\x05\x7b\x54\x7c\x80\x7f\xe3\x9a\xa7\xfd\x51\xc2\x98\ \x4a\x68\xd5\x08\xac\x39\x88\x4e\xaf\x10\x54\xc3\xe2\x99\x9f\x39\ \xb0\x07\xfb\xb2\x47\x45\x1e\x48\xf9\xb0\x9d\xf8\x09\xe2\x60\x0c\ \xa4\xaf\x4c\xef\xb6\x9b\x07\x9a\x25\xf5\x02\x10\x70\x00\x51\xd6\ \x7a\x9e\xad\x20\x9a\x31\xfb\xb5\x75\x33\x9f\x39\x9b\x85\x23\x91\ \x45\x25\x88\xb4\x6f\xf9\x9b\x83\xc5\x0b\x2c\x61\x13\x14\xc1\x07\ \xa2\x18\xb6\x85\x9b\xdb\x58\x60\xb6\x5f\x39\x12\x47\x41\x28\x6c\ \xac\xa8\x21\xaa\xa1\x18\x4a\x10\xc4\x34\xba\x6d\x7a\xb8\xa9\xbb\ \x76\x3e\xa0\xb8\x8d\xfb\xb8\x31\x47\x14\xa8\x4f\x03\x95\xab\x46\ \x05\x43\xba\xc5\xb4\xba\xc9\xbb\x72\xad\x3a\xe0\xbb\xf5\x59\x1f\ \xdc\xee\x71\x44\x61\x05\x92\x21\x78\xf8\x03\xcf\x1a\x96\x53\xde\ \xb6\xbc\xed\x7b\x9a\x7d\x60\xa9\xd1\xfb\x6c\x2d\xa7\x13\xe2\x00\ \x73\x66\xe2\x26\x4c\x80\x15\x4c\xc0\x04\x7e\xeb\xbe\x11\xdc\x9e\ \xe5\x61\x8f\xf7\xdb\x89\x59\xc0\x00\x64\x61\x0e\x0c\xc0\xb5\x13\ \xbc\xc2\xa7\xf9\x03\x0c\xbb\xc1\x59\x58\x9e\x81\x3b\xb8\x2d\xfc\ \xc3\x71\x3a\xc3\x35\xfc\x64\x2f\xfa\xb7\x7f\x7b\xba\x41\x3c\xc5\ \x8d\xf7\x03\x36\x7b\xc4\x6b\x4b\x06\xa4\xd8\xb2\x55\x7c\xc6\xa5\ \x59\x11\xf4\xfb\x9a\xa1\x13\x3a\x65\x41\xbc\x69\xbc\xc7\x07\x9b\ \x04\x66\xfb\xac\xf3\x80\x05\x64\x80\xc2\x7d\xfc\xc8\x5f\x5b\x1e\ \x6e\xdc\x6a\x4f\x21\x05\x9a\xfc\x14\x64\x1c\xc9\xa5\xbc\xad\x3f\ \xa0\xb3\x61\x81\x1b\x9a\x80\x1b\x60\x81\xad\xa7\xbc\xcb\xc9\xfb\ \x03\x96\x5c\x0e\x8a\xbc\xc3\x8d\xdc\xcb\xcd\x9c\xba\x3f\x20\xbf\ \x05\x15\x16\x4c\xdc\xc3\xcf\xfc\xcd\xef\x5b\x11\x60\x2a\xc6\x51\ \x1c\xce\xed\xfc\xce\xf1\x3c\xcf\xff\x21\x20\x00\x00\x21\xf9\x04\ \x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\ \xff\xff\x1d\x85\xab\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xd7\x88\x8c\x93\x4a\x36\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x5e\xc7\xf6\xff\xff\xff\xff\xff\xff\xde\x93\xb2\x5f\x89\x40\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\x4a\x96\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9d\xa8\xba\xff\xff\xff\ \x57\xa8\xe4\xff\xff\xff\xff\xff\xff\x14\x28\xa8\x0f\x27\x6a\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xd7\xc8\xe2\xff\xff\xff\xd4\x10\ \x0f\xf6\x89\xba\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x50\x68\x5a\xf7\xa7\xb8\x12\x29\xe0\x9b\xf2\xfc\xbb\x88\xb1\x4e\ \x68\xf8\xfb\xc8\xe5\xda\xe8\xf8\x22\x46\xe9\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xf1\x70\x45\x99\xc8\xfb\xff\xff\xff\xff\ \xff\xff\x79\x88\x3b\xff\xff\xff\xd9\x91\xf2\xf6\xb2\xf1\xff\xff\ \xff\xb0\x68\xaa\xff\xff\xff\xff\xff\xff\xf9\xe8\xf0\xff\xff\xff\ \xfb\x8e\x5d\xb6\xb3\xf2\xff\xff\xff\xff\xff\xff\x28\x2b\x18\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xb7\xc8\xf1\xd3\x48\x6d\x6d\x68\ \xec\x38\x56\xf6\x4a\x4a\xe4\xff\xff\xff\xff\xff\xff\x97\x91\x83\ \x95\x94\xf4\x0b\x18\x1c\xff\xff\xff\x12\x37\x65\x97\xb1\xf8\x2a\ \x2a\x93\x5b\xb7\xea\xff\xff\xff\xd6\xd9\xef\xb6\x66\x4b\x74\x89\ \xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x4a\xab\xff\xff\xff\ \x3b\x64\xf3\xbb\x8f\xf4\x7a\xe8\xfb\xff\xff\xff\xfa\xd8\xeb\xff\ \xff\xff\x07\x15\xdc\xfb\xfd\xfa\xda\xaf\xf8\xff\xff\xff\xff\xff\ \xff\xfb\xd0\xa5\xff\xff\xff\x6e\x78\x28\x32\x49\xeb\x7c\x96\x45\ \x96\x98\x53\xff\xff\xff\xf5\x99\xb5\xfa\xb8\xbd\xb3\x68\xec\xff\ \xff\xff\xac\x25\x74\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe6\ \x94\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x7c\x22\xac\xff\xff\xff\x79\xc7\xf9\x93\x55\xef\x93\x6e\xf8\ \xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\x59\ \x92\xeb\x78\xb4\xf8\xff\xff\xff\xff\xff\xff\xfa\xaf\x89\xff\xff\ \xff\xfa\xec\xba\xff\xff\xff\xa8\x1e\x64\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf7\x92\x8e\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xb7\xb8\x7f\xff\xff\xff\x81\xb1\x69\ \xff\xff\xff\x87\x24\xbc\xff\xff\xff\x99\xd8\xfb\xb7\xd8\xfa\x41\ \xb5\xee\x97\x38\xd0\xdd\x97\x94\x05\x59\x8c\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x18\x36\xa6\x11\x77\xa7\xff\xff\xff\ \xff\xff\xff\x57\x76\x63\x19\x37\xe1\x58\x76\xfa\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x69\x7a\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb4\x57\xb0\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x27\x78\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x72\x59\xed\ \xff\xff\xff\x7f\xfa\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xfb\ \xfc\x7c\x98\xb4\x1f\x97\xcc\xff\xff\xff\x7d\x98\xf9\xb0\x78\xf7\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x7d\xd6\xfb\xff\x00\x00\x08\ \xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\ \xa1\xc3\x87\x10\x23\x4a\x44\x58\xa2\xe2\xc4\x8b\x18\x33\x6a\xdc\ \xc8\xb1\xa3\xc7\x8f\x15\x4b\xa0\x7a\xf2\xb1\xa4\xc9\x93\x28\x53\ \xaa\x7c\x18\xf2\xc0\x0a\x64\xc9\x86\xa1\x5a\x49\xb3\xa6\xcd\x9b\ \x38\x07\x86\x2c\x71\x8d\x59\xb8\x70\x31\xbd\x90\xcc\x49\xb4\xa8\ \xd1\xa3\x14\x2b\xa2\x5a\x11\x6e\xc3\x06\x60\xf7\x02\x04\xf5\xe2\ \xa5\x04\xd2\xab\x58\xb3\x9a\x0c\x89\xea\x40\xb8\x00\xa0\x80\x01\ \xdb\x10\x40\xea\x30\xaa\x54\x2d\x69\x5d\xcb\xb6\x2d\xc3\x96\xd7\ \xc2\x3e\x7d\x1a\x35\xe6\x30\x64\x67\xcf\xaa\x75\xcb\xb7\x2f\xd6\ \x9d\x2b\x40\x85\x13\x0b\x75\x43\x5d\xbb\xc3\x12\x2b\x4e\x3c\xd3\ \xaf\xe3\xc7\x2b\x43\x52\x39\x00\xea\x1e\xb0\x30\x0b\xc2\x40\x8d\ \xaa\xd8\xcb\xe2\x64\xa0\xa5\x26\x6b\x0c\xb9\xb4\x69\x8d\x15\x29\ \x90\x61\x82\x29\xcc\xbd\xa7\x98\x17\x90\x45\xac\x38\x74\xd9\x7b\ \xa0\x93\xad\xb0\x7a\xba\xb7\xef\x85\x15\x0f\x54\x01\xb5\xc0\x9f\ \x2f\x7f\x98\xc4\x62\x76\x1d\x60\xf1\xb0\xdb\x01\xa2\x46\x35\x9b\ \x98\xf7\xef\xeb\xbd\x77\x06\xb2\xe7\x54\xec\x02\x4c\x0b\xc2\xfe\ \x87\x09\x63\x98\xfa\x30\xd0\xaf\x0b\xdf\xbb\x07\xd4\x2e\x55\xeb\ \xd8\xe3\xfb\x0d\x19\x88\x0c\x30\xf1\xe3\x97\x93\xaf\x5c\xf7\xac\ \xe7\xf3\xe9\x91\x57\x1e\x62\x68\x79\x21\xdf\x81\x6d\xb5\x44\xd9\ \x65\xb1\x85\x07\x5e\x6b\x95\x95\x15\x8e\x67\x14\x9e\x17\x5d\x7e\ \xcc\xb9\x97\x97\x67\x08\x76\x78\x55\x45\x46\x68\xa1\xc9\x5c\x9a\ \xe5\x97\xd9\x83\x61\x80\x22\xa1\x73\xc9\x44\xe7\x54\x7e\xb3\xf9\ \x57\x60\x62\x1e\xd6\x68\x13\x57\x5e\x85\xb2\xc0\x65\x99\x89\x97\ \x99\x89\x9a\x95\x25\x9a\x85\xd1\x81\xb2\x01\x86\x41\x76\x36\xe3\ \x79\x2b\xd8\xe8\xe4\x56\x21\x91\x51\xc5\x7a\x3c\xde\xa7\x9c\x7e\ \xe3\x41\x55\x56\x6e\xe7\xb5\xe8\x94\x91\x2f\x8e\xc7\xd9\x62\x68\ \x25\x06\x5a\x93\x4f\xa6\x89\x5a\x09\x54\x84\xa8\xe3\x8e\xf7\x85\ \x17\x1e\x83\x3f\x6a\xa6\x65\x6e\x01\x7c\x15\x53\x8b\xd3\x95\xa5\ \xa2\x79\x89\x55\xf8\x9c\x84\xf0\xa9\x69\xe8\x5b\x15\x69\x91\x81\ \x2f\x72\xfa\xd3\x86\x9c\x72\x12\x66\xa7\x58\x74\xdd\xf6\x9a\x53\ \xcd\x25\xd6\x1e\x50\x81\x96\x69\x66\x6d\xd1\x35\x77\xc0\xa1\xa4\ \x26\x05\xe2\x17\x98\xf8\xe3\x82\x0b\xfe\x84\xd7\x86\xa3\xfe\x8f\ \x46\xba\xde\xac\x84\x8d\x05\xd5\x78\xa9\x62\x82\xdb\x7f\x4a\xfe\ \x87\x67\x6e\xa1\xad\x27\xd5\x01\x85\x96\xaa\x66\x48\x3d\x38\x20\ \x83\x2f\x98\xa4\xda\x86\x0b\xec\xb4\xf1\xa8\xb4\x90\xee\x38\x2b\ \x95\x74\xe2\x8a\xc9\x71\xcc\x6e\x10\x14\x99\x89\xb9\xb8\x1e\xb0\ \xb6\xa9\x08\x5a\x20\xc6\x1e\x5a\x51\xb2\x31\xc8\x21\x07\x27\xc8\ \x35\x2b\x6d\xab\xd5\xd6\x7a\xad\x65\xdf\xf9\x13\x6f\xaa\xc7\xc9\ \xd6\x1f\x55\x81\x86\x7b\x64\x8c\x78\x4a\x25\x2e\x28\xa3\xa6\xeb\ \x64\x48\x2f\x38\x30\x46\x3d\x10\xd7\x03\x2f\x78\x61\x80\x57\xab\ \xbd\xb4\xde\xe7\xe8\x71\xfa\x56\xac\xaf\xbf\x9c\xca\xd8\xd9\x30\ \xf7\x98\x5b\x1b\x7a\xb7\xbd\xb8\x81\x3d\xc5\x2a\xfc\xdb\x4e\x14\ \x30\x21\xf3\xc3\x11\xff\x82\x89\x0f\xcd\x1a\xb6\x99\x65\x17\x7b\ \xb7\xc0\xab\xaf\xca\xd9\xda\x78\xe5\x91\xc9\x6b\xc0\x2c\xa2\x57\ \xf2\xa5\x15\x63\xe2\x54\xcb\x2e\x97\xb6\x53\x09\x2f\xc8\x9c\x01\ \x13\x53\x8c\x91\x84\x1c\x12\xff\xe2\x83\x71\xfe\x68\x96\x71\xb5\ \x8f\x46\x2b\x2d\xb3\xf9\xb5\x16\xe3\xc8\x5d\x12\xf8\x01\xc0\x7c\ \x32\x8d\x61\xb3\x4e\x23\x1c\x75\x76\x15\x51\xd1\x83\xfe\x01\x5a\ \xa8\xa3\x85\x16\x21\x66\x30\x82\x0c\xee\x76\xed\x8b\x2f\x9c\xb8\ \xd0\x6f\x9c\xae\x4a\xdb\x06\x3b\x90\xcf\x3b\x74\x8f\x86\x25\x73\ \x74\x62\xc2\x82\xe6\xdc\x73\xf7\x54\xac\x6d\x6b\x3a\x86\x92\x22\ \x58\xe1\xdc\x2d\x75\x45\xb3\x18\xf0\x82\x30\x0e\xbc\x00\x38\x33\ \x2b\x18\x91\x41\xd6\x5b\xcb\xc0\x09\x27\x88\x27\xbe\xaa\x0b\x8e\ \x4f\xeb\x28\x3b\xd0\x46\x8b\x9c\xc7\xfe\x9a\xa7\x39\x7a\x1b\x80\ \x62\x17\xb0\x17\x36\xdd\xec\x02\xa2\x13\xcd\x5e\x8b\xa5\x9b\xee\ \xd6\xd4\x64\x90\x42\x0a\x2e\xc2\x08\x93\x81\x30\x5a\x78\x6f\xc4\ \x0a\x55\x68\xc1\xc4\x08\x59\xff\xf2\x8b\x2f\xea\x2b\xee\x8b\x0b\ \xba\xbf\x8a\x1c\xac\x8e\xb7\x4a\xef\x80\xa0\xbe\x26\x64\xa8\x06\ \x5f\x6a\x58\x80\xb8\xca\x8f\xe8\x0c\x63\x26\xdd\x58\x4f\x2b\x53\ \xeb\xc1\xde\x0c\xd0\x3d\xf0\x75\x2f\x03\xaa\x03\x5f\x88\xaa\x26\ \x33\xac\x1d\xee\x70\x38\xdb\x96\xe2\xda\xc0\xb1\x5c\x81\xa7\x5a\ \x98\x32\x8b\xd2\xf2\x33\xab\xca\xa8\xe8\x35\x3f\x2a\xcf\x6b\x90\ \x74\xa4\xa1\x99\x2b\x26\x60\x38\xe0\x87\x76\xa2\x40\x32\xf4\x80\ \x0c\x06\xe0\x5b\x0e\xc3\xe7\x3a\xd7\x05\x6e\x0e\xfe\xb8\xc8\x80\ \x10\x67\xe7\x83\x22\x86\x02\x13\xa1\x38\xdc\xee\x14\x47\x31\x3b\ \xc1\x69\x33\x78\x5a\x21\x86\x4c\xe8\x14\xa7\x6c\xeb\x38\xcc\x01\ \xcb\x7d\xe8\xf6\x9d\x5c\xed\xc8\x30\x2a\x0a\x07\x69\x64\x78\x23\ \xc9\x50\x41\x6f\x93\xa1\x02\x19\x6c\x98\xc3\x35\xae\x31\x08\x64\ \x78\xc1\x1a\xb5\xf0\x02\x5c\xbc\x20\x03\xae\xc3\xa3\x3d\xbe\x10\ \x8a\x50\x14\xd1\x17\x38\xcb\x1d\x13\x07\x78\xa4\x38\x8d\x65\x56\ \xb0\x21\x5a\x15\x4b\x36\x96\x16\xbe\x0f\x8b\x64\x09\xc0\x65\x52\ \x15\x2f\xe3\xb0\xca\x69\x55\x54\x51\xc2\xc8\x18\x99\x9d\x1c\x40\ \x8d\x37\xb4\xe1\x19\x27\xe3\x46\x32\x1c\xe0\x94\xa7\xc4\xc3\x01\ \xf0\x30\xc1\xbf\xb9\xd2\x1e\xb0\xcc\x80\x0f\x7e\x21\x83\x7a\xfc\ \xc2\x8f\xb7\xbb\x1d\x06\x7d\xc0\xc2\xa5\x85\x45\x7a\x96\x92\xcb\ \x78\x8a\x63\x1c\x4a\xba\x26\x1c\xaf\x69\x96\xbe\xde\xc7\xc4\xf2\ \x08\x69\x03\xc4\xe2\x24\x4a\x76\x72\x46\x32\x94\xe0\x93\x07\x58\ \x23\x1a\xc9\xa0\x46\x37\xa2\xf2\x9b\xa7\xd4\x02\x19\x8c\xc0\x4a\ \x2d\x94\xcf\x75\x5a\xd8\xc2\x14\x08\x27\x07\x19\x14\xf1\x17\xb9\ \xbc\x9d\xd7\x08\x29\x2c\x2d\x76\x67\x7f\x2e\xfe\x3a\x12\x66\xbc\ \x08\x36\x5d\x21\x13\x85\x98\x78\x96\xe2\xc8\x33\xa4\x98\xac\x67\ \x8c\xd2\xe4\x08\xb2\x14\x78\xc3\x34\x12\x2b\x9b\xdc\x2c\xa5\x29\ \xc1\xf9\xcd\x71\x06\xc1\x25\x2e\x21\x03\x33\x26\x68\x8f\x0c\x68\ \xad\x9d\x80\xfc\x45\xc4\x6c\xe7\x35\x7b\xf8\x49\x3a\xfe\xdb\x4c\ \x77\x5e\x74\x22\xba\xf5\x31\x57\xfc\xa9\xcc\x06\x8a\xa3\x38\xe4\ \xe0\x06\x31\x78\x42\x68\x42\x31\xb2\x50\x86\x72\x53\x8d\x25\x98\ \xe8\x1a\xb1\x39\xd4\x89\xae\xd2\xa8\x17\x1d\x27\x38\x57\x40\x86\ \xd8\xd9\xc3\x7c\x63\x90\xc1\x18\xa6\x30\x85\x5f\x8c\xc1\xaa\xbf\ \x98\xc2\x17\xec\x11\x0e\xa6\x80\xe5\x45\x43\x1b\x58\x6c\xd2\xd6\ \x34\x7f\x0c\x90\x3c\xec\x61\xe4\x11\x29\xa9\x36\x11\x46\xf1\x1e\ \xbb\xd9\xe9\x44\x12\xa8\x37\x86\xde\xb0\x07\x6a\x54\xe3\x27\xb9\ \x89\xca\xc9\x64\xb3\xa2\x07\x30\xc2\x29\x85\xaa\xca\x03\x58\xe2\ \x94\x96\x78\x82\x4b\xca\x77\xb5\x21\x5e\x6d\x0a\x43\xbc\xc6\x0a\ \x86\xb1\x06\x66\xb4\xb0\x98\x48\x5c\x6b\x3f\x9d\xd7\x2c\xb4\x66\ \xf2\x42\xca\xfc\xe2\xac\x44\xc3\x27\x23\xfd\x09\x6a\x72\x3d\x08\ \x35\x19\x5a\xd7\x1a\x9e\x71\xaf\xd5\x24\xfe\xa5\x51\x29\xfa\x57\ \x8a\x0a\xd6\xb0\x8a\x5d\xc1\x01\x14\x2b\x1c\x23\x4c\xf0\x05\xf6\ \x30\xc2\x53\x33\x00\x4b\x66\x5c\x81\x19\xf6\x48\xe2\x05\x8f\x83\ \xc4\x6d\x3d\x0b\x39\xf9\x1a\x5e\xf2\xc0\x72\x8f\x50\x24\xef\x32\ \xa2\xf3\x17\x6e\x24\x44\xda\x16\x6d\x29\x26\x9b\x4c\xad\xa9\xf2\ \x56\xd7\x51\xf6\x60\x09\x4b\xc0\x6b\x1a\xf3\x1a\x51\x37\xea\x75\ \xb6\xb4\x45\x25\x7c\x51\x69\x04\x32\xb0\x72\xa3\x74\xd4\xc2\x0a\ \x80\xbb\x05\x73\x22\xd7\x1e\x55\xb5\x1d\xb7\x6e\xa6\x44\x66\x0d\ \xaf\x59\x03\x14\x16\x28\x9a\x06\x3d\xd9\x6c\x46\x34\x5f\x01\x54\ \x97\xda\x26\x5e\x83\x50\x53\x7b\xe9\x6d\xed\x19\x15\x98\xe1\x9f\ \x72\x33\x94\x12\x35\xa5\x88\xe3\x8b\xca\x6e\x8c\xb3\x1b\xb6\x35\ \xc2\x0b\x56\xbc\xe2\xd6\xbd\x40\x76\xe8\x14\xae\x16\xbe\x50\x55\ \x78\x1e\x8e\x6e\xfe\xf0\x41\xf4\x3c\xe7\x94\xd7\x80\x69\x03\xa1\ \x50\x15\xda\x04\xd4\xe3\x08\x4f\xaf\x53\x66\xba\x0d\x28\x50\xcb\ \x49\xf2\x92\xc2\x14\xa6\xb0\x83\x1d\xf0\xca\x61\xbb\x66\xf8\xa1\ \x9f\x64\x6f\x37\x43\x0c\xdf\x2e\x1b\x60\x8d\xf5\xf5\x6d\x98\x71\ \xa8\xba\xd5\xb9\x58\x0b\x6c\xd0\xa3\xfe\x88\x9e\xba\xc7\xaa\xde\ \xf8\x66\x48\x04\xab\xf4\x5e\x74\x44\x1f\x1c\x2e\x6c\x55\x6c\xe1\ \x7e\x4a\x46\x1d\x80\xdd\x46\x80\x5a\x10\xef\xba\x7a\x60\x02\x53\ \xc8\x01\xca\x51\x26\x45\x7a\xcf\x6b\xe5\xf4\x3e\xf4\x9a\x41\x05\ \x65\x29\xff\xea\x4d\xf9\x02\x76\x9c\x6e\x4c\x03\x98\x31\xed\xdb\ \x1c\xae\x8e\xc5\xc2\x60\x71\x06\xcc\xb9\x82\x6b\xec\xb1\x7d\xbf\ \x60\xa2\xd3\xb4\x35\xc0\x3e\xd6\xd9\xce\x2e\x70\xda\x57\x07\x66\ \x42\xe9\x50\x27\x19\x9d\xbb\x22\x72\x36\x60\x84\x9d\xe6\x6d\x16\ \x2c\xd8\x9a\xbb\x0c\x0d\x65\x45\x9f\x17\xbd\x0c\x45\x36\x1a\xb1\ \xf9\xc9\xbb\xda\x90\xaf\x83\xa5\x74\x88\x21\xba\xe9\x6a\xd7\xd7\ \xc4\x3d\x30\x82\xea\x0c\x50\xdf\x08\xb2\xf8\x6f\xe4\x53\x14\xe2\ \x24\xe6\x3e\xba\x31\x2b\x55\x45\x04\x5d\x1f\xed\xcc\x2c\xee\xe4\ \x39\x4f\x2d\x52\x91\x8a\xcc\xd4\x39\xe3\x30\x37\x45\xa0\x40\xd7\ \x01\x69\x98\x04\x61\xbb\x6b\xd8\x50\xb6\xc3\xa2\xd1\x3b\xf0\x0c\ \x37\xb4\xd9\x6b\xdc\xdb\xb3\xbb\x2c\x5f\x37\x9a\x78\x8d\x26\xfe\ \x32\xa6\xb9\xfd\xe5\x30\x1b\xc0\x04\x39\xcc\xa1\x09\x1c\xd0\x07\ \x07\x78\x1c\x8f\xae\xab\x02\x33\xfe\xb6\x90\x01\xf5\x5d\xd0\x7d\ \x35\xcd\x60\x18\xac\xeb\x94\x23\xbe\x19\x67\xd6\x7d\x21\x68\xda\ \x13\x1a\x7d\x4a\x4f\xde\xe1\x55\x98\x64\x7a\xe0\x87\x7f\xfb\xfc\ \xdf\xc4\x36\x36\xc1\x39\x6c\x6c\x05\x4e\xe6\x9a\xd5\x5c\xf8\x50\ \xa9\x2d\xe2\x6a\x4f\x9c\x0c\xc2\xa0\x78\xc6\xdb\xa8\x71\x13\xf4\ \xe1\xea\x26\x98\xc5\xd5\x89\xc0\x02\x16\x7c\x7c\xc5\xe6\x4c\x27\ \x8d\xff\x78\x3b\x26\x0a\x08\x4c\xae\xa6\xdb\xcd\xd8\xed\x03\xb2\ \x84\x31\x1c\x05\xf4\x52\x08\x69\xfe\x15\x23\x30\xf9\x49\x21\x99\ \xc5\x12\xfc\xfd\x73\x9f\x23\x5a\xd1\x4b\xc0\xf0\xb1\x0d\xce\xd7\ \xf7\x6e\x99\xcb\xa5\xec\x76\x1c\xa7\xce\xc0\x06\x76\x2f\xe3\x18\ \xcf\x3a\x0b\xfa\xc0\x02\xad\x77\x7d\xf2\x1d\xf7\xb8\x03\x98\xe0\ \xc3\x6b\x08\xf1\x9d\xb9\x94\x2e\x28\xd0\x7e\xc4\x95\x0b\xa8\x62\ \x38\xdb\xc0\x4f\xa8\x0b\x94\x08\xcf\x25\x92\xec\xc9\xd3\x57\x4a\ \xa6\xef\x52\xad\xcb\x0f\x6f\xe8\xbb\xee\x0f\x1d\x70\xed\xf9\x9e\ \xe0\x19\x1e\x65\x57\xd8\x8b\xf8\x8c\x87\xb2\x8d\x2f\xf8\xf2\xd4\ \xbb\xd7\x75\x52\xb0\x40\x18\x7d\x88\x7a\xd6\x29\x3f\xf9\xae\x53\ \x1e\xeb\x57\xf7\x78\xc3\xc0\xfe\x8e\x66\xac\xd1\xf2\x76\xd0\x95\ \xcd\x06\x08\x7c\xef\x2f\x7d\x69\xf4\x31\x09\x87\x69\x67\x9d\xe7\ \xf5\x8c\x3e\xcf\x2d\xa7\x82\xa1\x90\xe5\x80\x7e\xef\xfe\xfe\xbc\ \x17\xb8\xf6\xec\xe0\x7b\x63\x2f\x1b\xe9\x09\x57\x7c\x0b\x94\x71\ \x64\x96\x71\x0d\xe4\x07\xcd\xf7\x7c\xdd\xa3\x75\xd4\x47\x7d\x97\ \x67\x7d\x58\x67\x02\xc9\x57\x66\x46\x90\x66\x58\x73\x55\x3a\xe6\ \x48\xef\xa3\x3b\xbe\x20\x20\xfb\x63\x18\x70\x37\x0c\xea\x87\x29\ \x55\x24\x20\xeb\xf1\x13\x4f\xc1\x56\x74\x43\x05\x77\xf7\x32\xeb\ \x62\x00\xed\x82\x7f\x32\x78\x68\x8a\xe6\x7b\xfc\xa7\x3d\x46\x47\ \x05\xc3\xe7\x5e\x21\xa6\x7c\x54\x67\x80\x06\xc8\x7c\xcd\x37\x07\ \xc2\xf0\x7c\x46\x58\x84\xd5\xc7\x02\x7e\xb0\x84\x7e\xc0\x75\x93\ \x67\x02\x50\xa8\x6d\x52\xa8\x3a\x4c\x30\x07\x58\xf3\x05\xc9\x43\ \x1c\xf0\xb3\x85\x68\x13\x49\x46\x46\x3a\x3f\xf1\x63\xa3\x77\x76\ \xc9\xb3\x34\x47\xc2\x4c\xcb\xe5\x0b\x2d\x68\x1a\x3b\x41\x79\x7c\ \x37\x83\x3f\x67\x68\x87\x26\x70\x81\xc7\x7f\x76\x60\x0a\xfe\x77\ \x74\xa8\xa0\x74\xda\xb4\x46\x3e\x18\x84\x8e\x17\x88\xb8\x60\x84\ \x83\xd8\x40\x46\x98\x84\xfe\x4b\xc8\x75\x4e\x18\x81\x26\x40\x05\ \x14\x90\x6d\x39\xe4\x00\x73\x30\x02\x23\xc0\x04\xc4\x35\x7e\x3e\ \xb0\x2a\xf7\x46\x50\x4a\x76\x29\x54\xe4\x47\x31\xe7\x3f\x2d\x34\ \x34\x15\xf3\x48\x1b\xc4\x09\xbf\xb0\x86\x8f\x91\x37\x7e\x10\x03\ \xb9\x07\x87\x70\x18\x65\x75\x48\x0a\x52\x26\x65\x8b\x76\x46\x3b\ \x48\x7c\x7e\xb8\x7c\x8e\x47\x0a\xc2\xe0\x7c\xdc\x23\x84\xc2\xe0\ \x07\x45\x18\x7d\xcf\xe7\x00\x87\xa8\x84\x4d\x88\x80\x57\xd7\x8c\ \x50\x48\x68\x14\x70\x71\x96\x37\x07\x93\x48\x55\xeb\x73\x67\x27\ \x62\x82\x60\x04\x7f\xc9\x03\x64\x7c\xd4\x8d\x46\xd2\x47\xf6\xa6\ \x2f\xca\xc4\x2f\x1b\xe8\x02\xbf\xf0\x02\xd8\x91\x37\x25\x10\x83\ \xb0\xf8\x8e\x73\x48\x8b\xb5\x28\x78\x0c\x95\x65\x0d\xd5\x83\x50\ \xf7\x8b\xbe\xe8\x7b\x7e\x40\x0a\xc4\xd8\x75\xc2\x40\x84\x45\x88\ \x8c\x04\xc9\x3a\xcc\x47\x7d\x31\x40\x04\x08\x88\x79\x7d\x00\x85\ \x26\x40\x01\x8f\xe8\x90\xb3\xb0\x71\xd4\x68\x85\x23\xa0\x3e\xeb\ \x23\x20\x99\x01\x1b\xfa\x64\x73\x02\xc2\x72\xdd\x08\x64\xe6\x56\ \x53\x0f\xd2\x45\x96\x74\x3b\x98\x00\x0a\xbe\x91\x37\x3c\x07\x8f\ \x2e\xc9\x7b\xf2\x18\xfe\x65\xb6\xb8\x68\xac\xd5\x87\x92\xa6\x70\ \xdd\xe3\x7c\xfe\xc8\x84\x0b\xf9\x7c\x02\x69\x84\xc8\xd8\x3d\x0e\ \x60\x00\x1e\xd7\x8c\x2c\xa0\x90\x4a\xc8\x90\x50\x08\x91\x14\xe0\ \x88\x0e\x19\x79\x01\x89\x0b\xe8\x33\x06\x80\x64\x7a\x6b\xa5\x4f\ \xa4\xb8\x72\xcd\xe5\x14\xf9\x90\x3c\x2f\xe5\x41\x5c\xa4\x2d\x4a\ \xe4\x3e\x61\xf0\x13\xaa\x38\x43\x25\x20\x0c\xb8\xf0\x8a\x2f\x09\ \x8f\x32\x89\x68\x89\x36\x74\x54\x66\x74\x4c\x87\x43\xf9\xf8\x8b\ \x3c\xb9\x84\xce\xa7\x96\x0a\x78\x84\x42\xd9\x07\x44\x39\x0b\x43\ \xe9\x80\x8b\xd8\x90\xcf\xd8\x94\xa3\xa4\x37\x26\x40\x68\x44\x49\ \x84\x95\x08\x59\xc9\xa5\x95\x71\x86\x19\x6f\xb6\x56\x99\x15\x92\ \xa2\xb3\x2d\xfb\xf2\x23\x41\x36\x96\x87\x93\x22\x77\xe1\x05\x31\ \xe4\x18\x15\x41\x06\x53\x30\x6e\x6d\xf9\x92\x51\xb6\x9a\xbd\x87\ \x5e\xa4\x60\x74\xae\xa5\x8b\x3a\x84\x97\x79\x89\x80\x83\xf8\x7c\ \x1d\x37\x90\x5e\xc7\x71\x0e\x20\x98\xd2\x48\x79\x8a\xe8\x8c\x87\ \x49\x01\x25\x10\x08\x81\xe0\x88\x10\x69\x04\x84\xe6\x00\xc2\x50\ \x85\x23\x20\x44\xc9\x25\x3a\x7d\x84\x2b\x4a\x14\x2f\x15\x53\x7a\ \x2b\x77\x44\x47\xfe\x04\x36\xf1\xf2\x52\xe7\xc8\x5c\xde\x82\x0c\ \x1e\xf0\x01\xc3\x70\x05\xd7\x93\x37\x81\xe0\x03\x90\xb3\x2a\xb7\ \x93\x9a\x6e\x59\x8b\x52\x56\x6c\x81\x67\x6c\x25\xe0\x53\x7c\x55\ \x4a\x39\x84\x97\x3b\xe9\x07\x76\xc0\x02\xce\x57\x79\x0a\x18\x7d\ \xcc\xc9\x71\xd0\xd7\x07\x5a\x27\x98\x57\xf7\x80\xcd\x68\x98\x0f\ \x89\x98\x10\x49\x68\x84\x06\x85\x9a\x97\x01\x0e\x90\x01\x24\x97\ \x81\x40\xe6\x72\xe5\xb6\x56\xda\xd9\x5c\xf3\x73\x38\x1c\xf4\x48\ \x27\x39\x31\x20\x33\x0c\x1e\xe0\x19\x95\x91\x73\x48\x81\x2c\x64\ \xf0\x0b\x8f\x03\x39\x90\xc3\x09\xf5\xe0\x9e\xb0\x18\x70\xf1\x79\ \x87\x37\x88\x61\xd5\xd4\x50\x0e\xe5\x46\xf9\xd9\x75\xfc\x19\xa4\ \xfd\xe8\x9f\xb8\xc9\x3a\x1d\x37\x79\x08\xda\x8c\x0c\xd8\x75\x5c\ \xb7\xa0\x4f\xe9\xa0\x4e\x49\x01\x0e\xb9\x9b\x0d\x83\x47\x19\xf0\ \x05\x3e\xb0\x55\x22\xc9\x3e\x66\x87\x60\x6a\xc7\x2d\xbe\x10\xa2\ \xcb\xa5\x89\x90\x74\x82\xcd\x81\x0c\x9e\x91\x0c\x4e\xa1\xa2\x44\ \x51\x9a\xcc\x79\x9a\xa9\xe6\x0b\x30\xca\x9e\x9c\x30\x83\xf6\xe7\ \x9e\x32\x79\x87\xf2\x39\x9f\xb0\x59\x43\x11\x25\x5b\xf9\x89\x0b\ \x4b\x68\x07\xfe\x3c\xe9\x8f\x5d\x37\x0b\xb3\x00\x7d\x05\x5a\xa0\ \xc0\xc6\x90\x0d\x48\x04\x46\x19\x81\x4d\xc9\x26\x4c\xf9\x90\x26\ \x80\x79\x0e\x30\x04\x9c\xc7\x06\x58\x33\x05\x3a\xe6\x47\xb9\xc3\ \x2c\x1d\xaa\x4c\x69\xc8\x31\x95\xd4\x4f\xaa\xb7\x27\x2d\xa2\x39\ \xf4\x06\x0a\xcc\x70\x96\x20\x91\x37\x64\x80\x8a\x4b\x84\x72\xd0\ \x02\x2d\x3e\x20\xa3\x32\xf8\x06\x6f\xf0\x86\x7e\x77\x68\xf8\x57\ \x8b\x7f\x37\x9f\x34\x59\x43\x20\xe6\xa3\xc9\x87\x84\x83\x1a\x03\ \xfd\x88\x80\x7b\x99\x3a\x82\x99\xa4\x57\x07\x6c\xd7\xb7\xa0\xd5\ \xca\xa0\x93\x1a\x08\x6c\xe2\x88\x8a\xe9\x90\x9a\xc7\x06\x9b\x37\ \x06\xe2\xea\x35\xf0\xa4\x3e\xfb\x42\x37\x19\xe4\xa1\x39\x43\x22\ \x74\x03\x0c\x9b\x92\x1e\x87\x91\x0c\x61\xb8\x01\xb0\xba\x11\x92\ \x71\x00\xea\x59\x76\xd0\xc2\x41\xb8\x73\x38\xeb\x89\x8e\x33\x8a\ \x7f\x49\x20\x0c\x76\xe0\xab\xc0\xfa\xab\x7d\xc7\x9a\xee\x22\x65\ \xb4\x58\x74\x4b\x80\xa8\x77\x25\x9b\x8d\x47\x0a\x23\x20\xa4\x97\ \xb7\x90\xa9\xb3\x71\xd1\x3a\xad\x09\x6a\xad\xc2\xe9\x90\x4c\xc9\ \x94\xa3\x14\x08\x10\xe9\x90\x94\x37\x07\x2f\x30\x89\xb9\x07\x31\ \xb6\xa3\xfe\x4b\x80\x74\x41\x38\xb3\x67\x3f\x76\x82\x8c\xc4\x56\ \x99\x49\x8e\x5f\x52\x32\x23\xe8\x14\x2c\x78\x13\x6c\x62\x04\x2f\ \x0a\x3f\xba\x43\xa6\x35\x05\x3c\xba\x3a\x83\x63\x50\x47\xbb\x07\ \x97\x50\x36\x6c\x07\x1b\x70\x72\x98\x68\x77\xf8\x9a\x0a\x34\x0b\ \xa4\x30\x0b\x7e\xea\x46\xda\x96\x9f\x94\x37\xa8\x7a\x49\xa4\x7e\ \x60\xa0\x1a\x67\x00\xd6\x6a\x79\x10\xf8\x94\x68\xbb\x94\x21\xbb\ \xb6\x26\x60\x04\x56\x37\x04\x99\x3a\x07\x31\x20\x6c\xf5\xd0\xb2\ \xb8\x23\xb4\x95\x99\x85\x59\xb8\x34\x35\x6b\x6f\x1b\x04\x9e\xe0\ \x08\x7f\x7d\x54\xaf\x19\xc1\x26\x2f\x0a\x3c\x74\xba\x2a\xec\xc0\ \x2c\xf7\xd1\x06\x01\x1b\xb0\xf7\xf7\x06\xcc\x70\x00\x2f\xf0\x86\ \xc4\x46\x6c\xbc\x97\xb0\xf1\x39\x6c\xb5\xf8\x06\x54\xfb\xb0\xe8\ \xf5\x65\xce\x76\x43\xca\x97\xa8\xfe\xe9\xb5\x40\x9a\x94\x19\x6b\ \x00\x88\x6a\xa0\x1c\x9b\xa0\x8e\xca\xa0\x69\x0b\xb2\x0d\x6a\xa9\ \x50\xd8\x75\x43\x40\x8d\xfd\x96\x04\x24\x85\x8e\xb9\x74\x8d\x76\ \x86\x44\x0c\x06\x7f\x57\x84\x86\x74\x63\x82\x32\xe5\x6a\x31\x47\ \xaf\x38\x51\x02\x98\x00\xa3\xc0\x83\xb8\xc1\xe3\x0f\xc0\x50\x16\ \xfe\xfe\x70\x3b\x12\x13\x31\xbb\x37\x05\x4f\xc0\x05\x64\xa0\x7b\ \x98\xcb\xb4\x88\x06\xac\xf1\x69\x68\xe5\x6b\x0a\x7a\x07\xba\xc6\ \xba\xb5\x19\xb7\xb5\x08\xaa\x8c\x3c\x99\x94\x48\x5a\x75\x0c\x68\ \x98\x47\x49\x04\x44\x60\x02\x90\x9a\xbf\xb2\x9b\xb6\x52\x5a\xa9\ \x11\x6a\x02\x43\xd0\x07\x73\x20\x89\x94\x88\x91\xf0\x24\xb4\xfd\ \x6a\x67\xfd\x8a\x38\x37\x96\x41\xaa\xb2\x44\x8c\x12\x92\xc9\x33\ \x82\x69\x97\x0f\xa3\x67\x0f\x55\xd0\xbc\x19\x00\xbd\xd1\xab\xb8\ \xd1\xb2\x00\x65\xf1\x2c\x9c\xc0\x0e\xb9\x04\xb9\x3f\x37\x02\x5c\ \xc0\x05\x07\x30\x06\x09\xcb\x7b\x4c\xfb\xb4\xe3\x6b\xa3\x49\x80\ \x87\xe8\x85\xa8\x1d\xc6\x46\x63\x9b\x71\x89\x4a\x79\xfb\xa9\x8c\ \x97\xd7\x90\x17\x77\x71\xd3\x67\x94\x4d\xaa\xbf\x5b\x67\x75\xb4\ \x6b\xa9\xff\xfb\x88\x95\xfa\x07\x12\x0a\xb7\x6c\xc0\xa9\x17\xd9\ \xb2\xb5\xa4\x4b\xec\x96\x4b\x8f\x94\x86\x64\x7a\x63\x64\xb1\x34\ \x23\xf8\x63\xd3\x25\x53\xf6\x90\x13\x07\x00\xbd\xb5\x1a\x39\x6d\ \x70\x1f\x26\x9c\x38\x32\x0a\x31\xbb\x37\x02\xdd\xcb\x05\xc2\x00\ \xbe\x30\x0c\x97\xc0\x0a\xb5\xf9\x47\x6c\x7a\xd7\x03\x88\x8a\xb5\ \xfe\xcf\xe6\xbe\xac\x0b\x79\xd0\x77\x79\x3b\x29\xbf\x87\x3a\x94\ \x8b\x09\x85\x1e\xcb\xa0\x7d\x30\xc0\xf9\x3b\xbb\x4b\xd9\xa0\x25\ \x2b\xa5\x17\xc7\x02\x43\xc0\x62\x58\x53\x4b\x11\x63\x38\xb9\xa3\ \x4b\xd7\xa8\x38\xbb\x83\x8d\x9d\xf5\x13\x25\xb3\xb7\x95\xe1\x0c\ \x3f\xb1\xca\xea\xb7\x64\xcd\x8b\xc6\x5b\xe8\xc1\x8f\xf3\xc6\xda\ \x7b\x7f\x49\xb0\x02\x2b\x7c\x00\x6c\x09\x74\x88\xa6\xa7\x33\x3c\ \xbe\x7b\x2c\x07\x76\xa0\x77\x56\xab\x77\x06\xd0\x03\x8f\x38\x80\ \xcc\x39\xc8\x8a\x7a\xb1\xf1\x1b\xc4\x18\xb7\x37\x8c\xec\xa4\x68\ \xfb\xc8\x7d\x40\x04\x43\x20\xc9\xff\x4b\xc9\x52\x2a\xc0\x97\x9a\ \xc9\x5b\xc0\x06\x83\xc3\x35\x12\x13\x4f\xf1\x94\x6a\xf0\xb3\xc5\ \xee\x83\x1c\xda\x39\x7a\x4d\x91\xb3\x82\xb1\xca\x8a\xd1\xca\xa0\ \xd0\x6b\x3e\xdb\xc1\x46\xbb\x3b\xeb\x19\x4f\x70\xdc\x77\xd9\xfb\ \x73\x19\xb0\xc2\xde\x3b\x02\x71\x28\xbe\x4c\xbb\xb9\x77\x9c\x04\ \xfc\x67\xb5\x57\x8b\xa8\xc7\x3c\x75\xa9\x93\x71\xbd\x59\x8c\x40\ \xca\x93\x4e\xf8\x84\x18\x17\x8d\x44\xdc\xbf\x0e\x39\x04\xf8\x8b\ \xbf\xd9\xcc\xcd\x14\x60\x9c\x95\x5c\xa9\x50\x98\xbb\x0e\xc0\xfe\ \xa9\x4c\x10\x55\x32\x20\x03\xea\x93\x4b\x76\xeb\xc0\xfd\xea\x3e\ \xef\x63\x44\xa3\xf7\x7e\x7d\x04\xcf\xac\x3c\xaf\x4e\x61\x77\x3e\ \x4b\x06\xd2\xcb\x9e\xf0\xd3\xc9\x44\xfd\x73\xff\xec\x73\x72\x2c\ \xd0\x64\xe0\x6f\x06\x0d\x97\xf0\x19\xb5\x51\x7b\xb5\xbe\xe7\x9f\ \x7f\x3c\xc8\x11\x3d\x75\x45\x59\x84\xc3\xd8\x8a\x0a\xd9\x93\x57\ \x77\x71\x0f\x4a\xc4\x69\x7b\xcd\xfa\x8b\xbf\x4b\x19\x08\xa8\x90\ \xd6\x6a\xfd\x04\xa8\xc0\xb6\x02\x4c\x7d\xe0\x5a\x35\x23\x10\x55\ \xe5\xfa\xc6\x5a\xbc\x3e\x34\x9d\x86\x9f\x1a\xcf\x40\x96\x85\x37\ \x2d\x18\x7f\x9d\xa1\x6b\x25\x7f\x3e\xcb\x04\x0a\xfc\xc6\xff\x06\ \xc7\x10\xd3\x9e\x90\x5b\xcb\xff\x96\x04\x5a\x20\xd0\x4f\x20\x0c\ \x4c\x7d\xd0\xbd\x2c\xac\x4e\x3b\x6c\xfc\x38\xa4\x7f\xfc\xc7\x04\ \x7a\xd5\x44\xc9\x3a\xc8\xa8\x84\x31\xc0\xac\x4d\x08\x81\xc7\xac\ \x9c\x26\x5d\xcd\x4f\x3a\xd2\x23\xf1\x04\x6c\x9d\xd6\xb0\xad\xd6\ \x69\x4d\xd2\x65\x2d\xc5\x72\x1d\x55\x75\xab\xd8\xb6\xf4\x48\xb4\ \x7a\x63\x2f\xa5\x63\x5d\x19\x0e\xce\x60\x24\x18\xcc\x1e\x32\xd5\ \xd7\xda\x59\x44\x38\x83\x33\x84\x7d\x23\x3d\xa0\xc0\xfd\xfe\x5c\ \x38\x8b\xad\xb8\xd8\x2b\x83\x63\x80\xcb\xb9\xdc\x73\x40\x97\xc7\ \x07\xbd\xb9\x4d\x7b\x68\x6f\x40\xa8\x84\x3a\xd5\x7f\xdc\x80\xac\ \x33\xc4\x12\x3d\xda\xad\xd8\xde\x67\x6b\x00\xaa\x01\x91\xc8\x39\ \xbb\x10\x89\xd6\x6b\x3d\xdb\x81\x30\x04\xae\x3d\xdb\xb1\xdd\xd6\ \x99\x3a\x79\x2b\x96\xbb\x23\xf0\x06\x33\x5a\xe0\x5d\x83\x3b\xe6\ \x0c\xdc\x7d\xe4\xce\x3f\x16\x0a\x26\x94\xbc\xa8\xc2\x3e\x2f\xcb\ \x5c\xcd\xb2\x05\x84\xcb\x53\x3d\xd0\xc9\x3e\x57\xce\xb7\xa3\xc6\ \x6d\x8c\xc2\xba\x27\xb9\x02\x7d\x00\x23\x20\x87\x99\x6d\x0a\x49\ \xf0\x06\x79\xda\xb4\xab\x39\x87\xe4\xcd\x84\x44\xea\x7c\x3d\x39\ \x79\x51\x37\x94\xeb\xad\x8c\xcc\xda\xa4\x58\x07\xdf\xc8\x7c\x46\ \x11\xa9\xb6\xf6\x8d\x0a\x02\x8d\x0a\x69\xd0\x94\x81\xd0\x0d\x44\ \xc0\xab\xf9\xeb\xda\xb2\x7d\xe4\x27\xed\x00\x2a\xf6\x02\x43\x30\ \x02\xf6\xb7\xd8\x36\x06\x4f\x27\x8c\x3b\x9f\x1a\x73\x82\x91\x0f\ \x5d\x89\xc1\xef\x17\x8e\xa0\xda\xc0\x08\xe6\x6a\x3e\x70\xe1\x3c\ \xd5\x07\x44\x5d\xce\x5b\xb8\xaf\xec\xa9\xbd\x20\xfe\x73\x6f\xa0\ \x05\x73\x3c\xd9\x7c\x67\x68\x35\x5c\x8b\xfc\xb9\x35\xfe\x32\xc9\ \xe7\xf0\xc9\x84\xff\x59\xd1\x5e\xad\x79\xdb\x46\x94\x47\xc9\xac\ \xcc\x8a\x79\x18\xc7\x6d\xf1\xdd\x26\x20\x4b\x01\x42\x1e\xdb\xdd\ \x8b\x0a\x46\xd0\xab\x09\x49\x04\x31\xf8\x06\x09\xd9\x90\x46\x80\ \xd6\x27\xbd\x71\x2a\xe6\x5b\x6c\x30\x07\x63\xf0\x06\x2d\xad\x3e\ \xb3\x84\xe5\x8b\xad\xe5\xd6\xe5\x6a\x7f\xed\xce\x3f\xa1\xbc\x19\ \xf4\x47\x9f\xea\x95\xeb\x66\x4d\x3e\x3b\x0b\xef\x12\x4f\x8a\x4b\ \xa7\xd7\x6d\xd4\x89\xdd\x77\x63\x90\x01\x75\x5e\xc7\x40\xa7\xd0\ \xe3\x5d\xde\x7a\xaa\xd0\x7c\xce\x9f\x31\x60\x07\xcf\x1e\xa4\x3a\ \x99\x97\x0f\x68\xe3\xda\xf6\x02\x40\x5a\xda\x09\xa9\xe8\x91\x67\ \x04\x54\x90\x06\x8e\x88\xcc\x68\x2d\xd0\x5c\x80\x0a\x24\x1b\x08\ \x46\xe0\x8e\xbc\xda\xab\x72\x90\xe2\xa5\xfd\x06\x44\x00\x91\x49\ \x1e\x03\x03\xfc\x62\xbe\x95\xb2\xa4\xce\xd2\x9e\x4a\xcb\x12\x03\ \x48\x5c\xbe\x01\x5d\xe9\xd7\xe1\xb0\x06\xc4\x0d\x0a\x7e\xc4\x76\ \x5f\x99\x59\x38\x7d\x33\xa9\xe8\xb3\x54\xf0\x30\xe6\xbc\x3b\x88\ \xbd\x7b\x6b\x1e\xe7\x4c\x70\x00\xb9\xfc\x02\x05\xbb\xb0\x52\xd6\ \x8f\xfb\x57\xc3\xe3\xed\x2e\x49\xc0\x9f\xd0\x5e\xfe\xf2\x4b\x08\ \xbf\x0a\xd9\xd5\xd5\x5e\xe8\x92\xd8\x8a\xa6\x0d\xa9\x3b\xae\x9c\ \xdd\x40\x05\xc7\x19\x08\x89\x45\xee\x5c\x90\x06\x73\xb0\xbf\xfe\ \x96\x04\xae\x28\x6c\x29\xce\xab\x09\x69\x02\x73\x0b\xef\x12\xd8\ \x0d\xa1\x9e\xb2\x94\xd8\xd2\x57\xc5\xc9\xa8\x28\xaa\xc9\x53\xdc\ \xe6\x67\x5a\x37\x7d\xf0\x17\x84\x3b\xae\x86\x2a\xca\x6b\xe6\x67\ \xde\xbc\x23\x60\xce\xd8\x1b\xe7\x46\xbd\xd8\x1c\x5e\xa7\x3f\x37\ \x06\x5a\x30\xb9\xba\x45\xd0\xa6\x90\xec\xfd\x57\xb0\x84\xca\xee\ \xa6\xd0\xac\xd0\xde\xf6\x6f\xc0\x84\x88\x8e\xe8\x3c\x69\x90\xc9\ \xb7\x3a\xa4\xad\xed\x4c\x2a\xc4\x14\x50\x5f\x14\x70\x00\x23\x81\ \xf3\x5c\x10\x08\x7e\xd0\x6f\x09\xb9\x35\x8c\x9f\xe4\x22\xef\xf3\ \xeb\x8e\xbf\x73\x9b\x04\x44\xf0\x02\x69\x60\x62\x01\x3e\xea\x23\ \x10\x03\x5a\x53\xb7\x26\x57\xe6\x14\xdc\x47\xf9\xa0\x9d\xeb\x66\ \x67\xb3\xc4\x3e\xf3\xb4\xf5\x7e\x84\x44\xa5\xdf\x47\x5b\xd0\xbc\ \xc2\x70\xd8\x13\xaf\x7b\x11\x13\xf1\x42\x2b\xf6\x49\x30\x02\x82\ \x85\x0b\xcc\x6a\xf2\xfb\x07\x65\xc9\x2e\xde\x79\xc9\xab\x76\x30\ \xde\xda\x9e\xfc\x4b\x18\x03\x4a\x88\x8c\x44\xfe\xe9\x71\x0a\x89\ \xe8\x48\x69\x7d\x06\xd0\x0d\x83\x4f\x01\x69\x20\xe4\xe4\x9e\xd6\ \xe9\xfe\xf8\x95\x8f\xcd\xd7\x2c\xf4\x97\x5e\xda\x1f\xed\x8a\x44\ \xd0\x0d\x23\x81\xee\x52\x5e\x91\x03\x7e\x55\x9e\xaa\x63\xcd\x1d\ \x67\x5b\xbf\x76\xcc\xfd\x4e\xcd\xed\xef\x5d\xc9\xfa\x5b\x0e\xfb\ \xcd\x1b\x08\xb9\x7f\xc2\x00\x21\x47\xe0\x40\x81\xf5\xea\x71\x72\ \x91\x50\x61\x42\x83\x04\x1d\xca\x19\x33\x62\x84\x30\x2d\x06\xec\ \xbc\xf1\x63\x27\x63\x12\x39\x76\x2e\x26\xc1\x98\x51\xa3\xc7\x18\ \x76\x62\xbc\x39\x79\x11\xa5\x49\x3f\x2d\xe7\xb0\x70\x10\x33\x26\ \x0b\x22\x31\x6c\x12\x21\xd2\x87\x45\x1f\x13\x06\xba\x91\x31\x42\ \x26\x0d\x2a\x2e\x45\xb9\x3c\x41\x65\x29\x8d\x83\x18\x38\x71\xa2\ \x1c\xf2\xc7\xc4\x10\xaa\x53\xa5\x0e\x99\x6a\xc4\x44\x4d\x22\x07\ \x9e\x3c\xb1\x84\xaa\x1b\x9b\x21\x73\x88\x48\x1c\xc1\xe4\x8b\x8f\ \xb5\x3e\x7c\x60\xfa\x12\x4a\x6e\x28\x1f\x74\xdd\xde\xf5\x31\xc5\ \x97\xdb\xb6\x5f\x36\x80\xca\x17\xea\x0b\x26\xb7\x7b\xe9\x1e\xfe\ \x42\xe5\xdf\x62\xc6\x8d\x1d\x3f\x86\x1c\xb9\x71\x09\x4e\x95\x2b\ \xbb\xe0\xd4\xf0\xe1\xc1\xcb\x2e\xda\x54\xfe\xd6\xfc\xd0\x61\x92\ \x24\xb8\x0e\x1c\x30\xe0\x87\x14\x29\x8f\x72\x4c\x81\x34\xf5\xc6\ \xce\xea\x92\x7e\x6c\x9a\xbc\xa8\xf2\xcd\x6e\x9b\x31\x5a\xb2\x00\ \x0e\x7c\x26\x4e\xdb\x4d\xfb\x1c\xc7\x6a\x40\xab\x91\x6e\xa8\x88\ \x72\x41\x85\x14\x69\x9a\x6e\x53\xa7\x62\x35\x42\x81\x3a\x85\x6e\ \x69\xa8\x77\x63\xce\x5d\x2b\x56\x5e\x96\x8a\xa2\xe2\xf5\x62\x08\ \x91\x39\x31\x46\xcc\x61\x32\x65\xca\xaf\xbd\x6f\xe7\xde\xb7\x5b\ \xdf\xc7\x2f\xfa\x75\xe5\xe6\x03\x05\xb0\x50\x7c\xf1\xe5\x97\xca\ \xee\xc2\xe4\x30\x23\x24\x63\xb0\x41\x06\x4b\x90\x21\x33\xce\x32\ \xdb\xec\x20\x83\x26\x0c\x4d\x8e\x0c\x45\x1b\x61\x85\xd3\xc8\x20\ \x43\x98\x8d\x92\x88\x8d\x34\x3f\x74\xb2\x2d\xa3\x92\x4e\x7a\x83\ \x34\xd8\x50\xea\xed\xb7\x97\x66\x72\x80\x26\xae\xfc\x80\xc9\x04\ \x07\x4c\x78\xc1\x04\x1e\x99\x4b\x23\x10\xe7\x92\x0a\x24\x90\x20\ \xbd\x4b\x83\xbb\x3f\x28\x08\xc6\x48\xef\x02\x01\x6f\x49\xf0\x4c\ \xe8\xa6\x9b\x3f\xfe\x10\x12\x29\x4b\x02\xf9\x63\xbd\xb3\xe6\x98\ \x62\x84\x5f\x64\xa8\x67\x0c\xfa\xe6\x22\xcc\x3f\xba\x0a\x2c\xd0\ \x87\xfa\x42\x09\x30\x9f\x0d\xe4\x4a\xfe\x13\x34\x4e\xce\x14\x4c\ \xae\x05\x1d\xe4\xb3\xcf\x12\xa8\xb8\x50\x42\x82\x0c\xca\x0c\xb4\ \x82\xea\x11\x4d\x43\x42\x29\x7c\x68\x84\x17\xb4\xf8\x30\xa3\xd8\ \xec\xe0\xe8\x0d\x52\x58\x50\xb1\x25\x93\xde\x28\xd1\xc5\x16\x65\ \xeb\x8d\x08\xe1\x60\x72\x60\x8e\x3e\x88\xf0\x83\xab\x3e\x86\xd8\ \x11\x2b\xaa\x8c\x60\xee\x05\x58\xff\x80\x95\xca\x2a\x8d\x58\x52\ \x2a\x5b\xbf\xb3\xd2\x3a\x7d\x0c\xa8\x6a\xca\x60\x92\x52\xca\x08\ \xaa\x9c\x9a\x63\x8e\x11\x38\xaa\x47\x06\xfe\xde\xc2\x2b\x94\x34\ \x7d\xa9\xcc\xb0\x50\x00\x94\x53\x30\xb7\xf8\x2b\xd0\x32\xff\xd4\ \xdc\xa2\x84\x3e\xc7\x7d\x90\x0a\x0d\x0d\x3d\x94\xb3\x84\x18\x4d\ \xf4\xc2\x7a\xd6\xbd\x50\xc3\x81\x48\x1b\xc1\x88\x15\xc8\xc0\x85\ \x53\xdf\xf4\x9d\x85\x05\x4a\x7d\xd3\x74\xb7\x16\x5d\x24\x8d\x37\ \x80\x45\x05\xce\xd4\x98\x44\x75\x2a\x27\x60\x81\x75\xe0\x05\x5a\ \xa7\xbc\xca\x04\x7d\x5c\x25\xc2\x3a\xaa\xa2\x52\x6f\xe3\x8d\x35\ \xc6\xea\xca\xee\xc0\xab\xca\xa9\x18\x94\x5d\x36\x89\x66\xfb\xbb\ \x8b\x40\xfd\xe8\xb3\x36\x5b\xb9\xd6\x2a\x90\x3f\xcb\x7e\x51\x73\ \x66\xb8\x14\x23\xb7\xe7\xc7\x4a\xfe\xc0\xc5\x32\x44\x15\xed\x0c\ \xb3\xa1\xe5\x1d\xd4\x42\xcb\xd6\x45\xe8\x4e\x76\xe5\xc0\xe5\x05\ \x03\x58\x23\xf1\x23\x3f\x96\x98\xa5\x45\x96\x6c\x53\x89\x60\x39\ \x40\x32\x18\x55\x84\x57\xed\xc3\x01\x2f\x53\xcd\x89\x47\x56\x5f\ \x35\x42\x62\x5a\xa5\x92\xea\x62\xae\x9c\xaa\x8a\xaa\x55\xeb\x06\ \xd9\xc7\x3f\xac\x3c\xf6\x54\x9c\x9a\x7a\x4f\x22\x19\x06\xe7\x0f\ \x66\x37\xc7\x64\xd9\xbe\x0d\x02\xd3\xb6\x70\x03\x2b\x2b\xdc\x97\ \x6b\xe7\x1c\x4c\x5b\x9e\x7d\xc6\xfc\x9f\x12\x0c\x60\x47\xc2\x40\ \x13\x62\x67\xdd\x81\xdc\x25\x54\x5d\xcb\x4e\x77\xc1\x1f\x02\xd9\ \x4d\xc2\x0e\x5c\x28\xfd\x3a\x36\x4b\x7b\xe8\xa3\x45\x80\x5b\x2a\ \x69\x60\xd2\xbe\x2e\x18\xc6\x86\x81\x1b\x02\x26\x9d\x1a\x76\x95\ \x55\xf5\x8c\x7d\xdb\xe2\xa8\xb6\x0a\xb5\xee\xf5\x9e\xff\x78\xc9\ \xe5\xaf\xac\x98\x88\xe7\xff\x6e\x2a\x59\x26\xc6\x20\x3c\xc2\x67\ \xe7\xbb\xf3\xae\xfb\x08\x9b\xcf\x66\xd0\x08\xb5\x76\xf1\xb9\x06\ \x73\x4b\xdc\xcc\x7d\xfe\xd3\xe8\x45\x17\x12\x7a\xf4\x45\x51\x3f\ \xff\xdc\xa6\x33\x4c\x62\x22\x3b\x5c\x23\x8d\x29\xfc\x30\x8b\x1e\ \xf8\x0b\x25\x29\xe2\x9a\xc0\xfe\x76\xc7\x3b\xb0\xd9\x24\x55\x3a\ \x09\xde\xda\xfc\xa6\x2a\x57\xc1\xcd\x00\x7b\x33\xc1\x95\x70\xe5\ \x25\x9c\x78\x6c\x63\xd6\xab\xca\x95\x28\x90\x2b\x2b\xed\xad\x4b\ \x1e\xcb\x09\x57\xe6\x30\x04\x36\x28\x6b\x70\xce\xfa\xc5\x14\xee\ \x22\x43\x9c\xdd\xa7\x65\x35\xbb\x93\x81\x08\x25\x83\x98\xcd\xec\ \x2e\x6b\x71\xdf\xfb\x7a\x56\x82\x29\x78\x0e\x21\xec\xe8\x9c\x84\ \xce\x77\xbf\xd3\xd5\xcf\x7e\x1b\x82\x48\x06\x0c\x80\x0b\x53\x00\ \xd0\x14\x2c\xe8\x41\xbf\x76\xb3\x35\xdc\xb1\x68\x77\x1c\xf9\x5a\ \xd8\x10\xc6\x82\x21\x94\x6d\x2a\xa7\xba\x89\xf5\x78\xf4\x87\x0b\ \xee\xcd\x4a\xcc\xe1\x9b\xdd\x36\x46\x3d\xe8\x51\x2f\x83\x23\xac\ \xd2\x92\xf4\x61\x2c\x0f\x72\xb0\x29\x6c\x60\x03\x13\xb6\x67\x26\ \xf9\xb0\xe5\x0b\x87\xec\x8b\xb6\xdc\xa4\x9f\xc3\x3d\xee\x20\xfd\ \xc1\x0f\x5e\xd8\xf2\x82\x20\x0a\xd1\x4f\xc2\x98\x1f\x66\xce\xd7\ \x34\x25\x4e\xc8\x73\x50\x4c\x94\x1c\x46\xa0\x05\x2d\x90\x82\x44\ \x1c\xb1\x03\x16\x0b\xa8\x12\x80\x01\xac\x6b\x5f\xe4\x1d\x6f\x9c\ \x42\x13\xb2\x95\xd1\x6f\x37\xb1\x0e\xdc\x70\x55\xa5\xee\x50\xe7\ \x84\x73\xa4\xe3\x1c\x33\xfe\x48\x3d\x37\x96\xf0\x4a\xd7\x39\x21\ \x1a\xd9\xc3\x42\x7d\x30\x41\x59\xf1\x51\xcb\x14\x10\x69\x97\xc2\ \xec\xa7\x3e\x8c\xfb\x02\x81\x0c\xc4\x2d\xbe\x5c\x6b\x2d\x31\x64\ \xcb\x5c\x2a\x69\x49\x3e\x95\x60\x0c\x2e\x08\xdd\x12\xf1\xd7\x44\ \x3b\xc5\x2b\x94\x0f\x19\x83\x30\x44\xc4\xa9\x4a\x11\xb0\x07\xb6\ \x91\xcd\x16\xbb\xb8\x1b\x82\x11\x4c\x8c\xb3\x5c\xd5\x19\xff\xd6\ \xc1\x61\x66\x10\x48\xdd\xc8\x44\x1e\x3d\x28\xb2\x3f\x5c\x6c\x8e\ \x51\x19\xe1\x95\x7c\x69\xc2\x5f\x62\xa5\x61\x44\x60\x83\x3e\xf4\ \x11\x48\xf8\xc8\x67\x0a\x4c\x70\x8b\x0c\xcb\xc7\xad\x37\x05\x68\ \x2e\x6e\x42\x69\x5c\x6c\xe8\x16\xfc\x84\x62\x9c\xe4\x6c\x50\x09\ \x7c\x81\x44\xa6\x61\x08\x75\x9a\x2c\x94\xa0\x8e\x46\x3a\x77\xca\ \x41\x06\x53\xc0\xc5\x1c\xfc\x00\x46\x01\x2e\x21\x8b\x31\x90\x1d\ \x4a\x56\x52\x1c\x81\xf1\xd3\x53\x30\x6a\x4a\x53\x70\x12\xd0\x63\ \xcd\x2d\x64\x16\xcb\xa0\x77\x4c\xe8\x50\x8f\x31\x94\x98\x54\x21\ \xe6\x08\xd3\x40\xcc\x2e\x5d\x85\x83\x74\xcb\x28\x20\x05\x09\xa6\ \x8f\xca\x87\x3f\x23\xc5\x59\x38\xe7\xa4\xc8\x68\xe1\x27\x30\x2a\ \x0d\xcc\x5d\x98\x00\xfe\xd3\x71\xfd\x29\x74\x0b\x51\xc8\x26\x11\ \xc2\xb4\xd3\xb9\x33\x50\x9d\x39\x9a\x28\xb5\xf0\x02\xd8\x75\xc4\ \x9e\x7d\xf0\x94\x6e\x7a\xd3\x1b\xa5\x36\x15\x6c\x06\x4b\xa3\xc6\ \xd0\xd8\x94\x90\x95\x75\x6f\x5a\xfd\xe5\x75\xa2\xf2\x87\x4c\xa4\ \x21\xa1\x57\x9a\x1e\x59\xbb\x34\xcc\x3e\x36\x6c\x0e\x19\xdd\x28\ \x20\xe1\x03\x9f\xf8\x38\x8e\x3e\x71\xfd\x4f\x18\xd6\xe4\x32\xfd\ \x20\xe6\x3e\xec\x73\x99\x0f\xf6\xca\x57\x3f\xa1\x13\x74\x6d\xa0\ \xe9\x4d\x39\x69\x3a\x9e\xba\xcb\x89\x02\x99\x02\x29\x59\x20\x90\ \x24\xc4\xc0\x9e\xb3\x00\xe3\x65\x41\xd5\x92\x14\x51\xd6\xa9\xbd\ \xf3\x9d\x1a\x31\x56\x13\xce\x66\x70\x98\xdd\xf9\x6a\x57\xa3\x92\ \x89\xd2\x06\x63\xa2\xc6\x34\xab\x07\x41\x78\x3d\x10\xea\xa3\xa1\ \x2c\x54\x2b\x5b\xa7\x60\x26\x67\xb5\x29\x9c\x36\x84\xdc\x5e\x18\ \xf9\x96\xb5\xe4\x07\x72\x38\xc3\x04\x19\x88\x5b\xce\x29\x20\x91\ \x1d\x6d\x40\x2e\x4e\xd1\x99\xce\x4f\xe6\xcf\x7e\xef\x84\x88\x16\ \x8c\x90\xaf\xaf\xd9\x61\x09\x54\xc8\xe2\x1b\x62\xd9\x54\xee\x76\ \xd7\x26\x0a\xf4\xa7\x18\x3f\x86\x3d\x9c\x20\x53\xb5\x60\x55\x1e\ \x31\xdb\x9b\x09\xfe\xf7\x96\xd0\x2a\x27\xbc\x68\x07\x8f\xe5\xa5\ \xa8\x6c\x94\x2a\x2d\x9c\xed\x08\xc6\x60\x26\x9c\xc9\x90\x2d\xff\ \xa5\xcb\x36\xeb\x33\x60\x49\x76\x0b\x66\x7b\x79\xc1\x82\x1d\xf4\ \x27\x08\x3b\x18\x89\x83\xa5\x9f\x73\x9f\x86\x61\x82\x4c\x61\x05\ \x46\x10\xc6\xc0\x62\x60\x54\x2a\x2c\x21\x06\xa7\xf4\xa7\x49\x26\ \xeb\x5d\x7e\x32\x50\x60\x99\xdd\xd8\x66\xe7\x9b\xde\xb2\x76\x95\ \x7a\x34\x0e\x46\x30\xac\x64\xcc\x34\xb8\xb7\x4b\x26\x4b\x23\x08\ \xe9\x76\x31\x87\xbe\xd6\x99\x61\x22\xa4\x21\x0f\x59\x97\x23\xbb\ \x29\x33\x89\x83\x56\xa4\xb5\x09\x39\x17\x74\xcb\x17\x4c\x78\xa9\ \x94\x27\x43\x05\x2b\x3b\x98\x69\xf2\x9b\x5f\x68\x86\x96\xd8\x44\ \x8d\x12\x0f\x73\x50\x89\x1d\x4c\xd0\x83\x32\x0f\xb5\x9f\x6f\x5e\ \xf3\x49\x58\xe4\x54\x37\xfb\xee\x6e\x5e\x92\x75\xc6\x46\x9b\x41\ \xb0\x9e\xd0\x2a\xf6\xfd\x43\x9e\x85\x4d\xe3\x6e\xe4\x99\x17\xc7\ \x0e\xc6\x9f\xc9\x8b\x12\xe2\xad\xd0\x7a\x5c\x4d\x56\x59\x98\x20\ \x91\x18\x4a\xf3\x90\xd7\xca\xd3\xb6\xd0\xb7\x97\x04\x65\xbb\x30\ \xd4\x3a\x9d\x81\x70\x7a\x39\x4d\x43\xa6\x04\xf6\x08\x9d\x95\x8d\ \x6b\xc4\x23\xfe\x6a\x12\x51\xa4\x43\x5a\x28\x99\xc0\x8c\x6e\x08\ \xe3\xcc\xa4\x61\xc1\x12\x4c\x40\x8a\x93\x80\xf1\x6b\x61\xe4\x4d\ \x53\x27\x8b\x62\xea\x16\x2c\x8d\x76\xab\x09\xb3\x2b\xe8\xd9\x8a\ \x0e\x01\xd8\xc2\x86\xf8\xb1\xcb\x63\x09\x5e\x24\xbb\x8c\xd8\x93\ \xaa\x8e\xcd\x42\x15\x8d\xae\x27\x59\xaf\x05\xd3\x08\x3e\x8a\xc8\ \x2f\x04\x26\xaf\x3e\x50\x22\x6e\x55\x9a\x1f\x27\xb3\xd3\x40\x6e\ \xea\x41\xa6\xcb\xad\xb9\x17\xa4\x5b\xdd\x38\x1d\x6c\x72\x47\xd7\ \xce\xe6\x3a\x24\x03\x1e\x32\x42\x63\xab\x3b\x22\x8e\x2c\x30\xc5\ \xb2\x5e\xb3\x02\x09\x62\x70\xa9\xe2\x5a\x96\x15\x1c\xed\x7d\x41\ \x78\xe7\x60\x0b\x7b\xe2\x96\xa0\xb8\xb2\x27\xcb\x95\xec\x95\xa5\ \x2c\x31\xf0\x98\x59\xb4\x07\x1f\x91\x83\x74\xd1\xd8\xfe\x66\x84\ \x78\xc8\xd2\xf5\x1d\xae\x89\x38\xa7\x96\xcb\xa6\x20\xf3\x72\x53\ \xb9\xd3\x98\x01\x9d\x71\x41\xc7\x28\xe7\x5a\xa8\x74\xa4\x4e\x82\ \x3d\x8a\x72\x80\x65\x2d\xfd\xdf\xf3\xf2\xb7\xc1\x03\x0e\x55\x2f\ \xfa\xdb\xcd\x4d\x7f\x0a\x48\x9a\x3e\x4c\xd4\x3e\x0f\xd8\x74\xbc\ \x52\x30\xae\x9e\x89\x8b\xf3\x13\xaa\x2a\xa4\x4a\xb2\xc8\xeb\xf1\ \x2f\x69\xfe\x4f\x90\xd0\xe4\x4b\x5c\x16\xad\x64\x96\xaa\xbe\x4e\ \x95\x89\x10\x27\x78\xc8\x09\x36\xdd\x96\x5b\x74\xaf\x3b\x26\x6e\ \xae\x10\x4f\xd7\xcf\xb0\x3c\x8d\xf7\x40\x64\xc0\x0c\xa3\x08\xc3\ \xf1\x0f\x01\x49\xe2\x25\xdf\x54\xcc\xb6\x19\xf9\x92\x4f\x61\x4d\ \x0c\x3e\xf5\x60\xb2\x47\x1f\x99\xa8\x3c\x30\x93\xad\x75\xe6\x33\ \x9b\x3d\x1f\x4f\xd6\xd6\x47\x50\x13\xed\x05\xf2\xf4\xc2\x35\x64\ \x5e\x23\x17\x4e\xf6\x6d\xcb\x4e\xe1\x2e\x90\x0b\xb6\x99\xc3\x5f\ \x64\x60\xe6\x91\x29\x41\x06\xee\x3e\xd8\xfd\x35\x04\xf8\x87\x7a\ \x27\x19\xc8\x00\x2f\x28\xbe\x77\x2a\x18\xa3\xd3\x2e\xed\xb2\xac\ \x05\x5a\x3a\xe8\x5b\x8f\x7e\x7b\x03\x1d\x03\xab\x8b\xd9\x38\xd2\ \x6a\x28\xb2\x80\x1e\x14\xc2\x35\xf2\xba\x89\x8f\xfb\x3e\xb3\xe8\ \xb7\x06\x92\x08\xda\x0a\xa4\x2f\x50\x0b\xb5\xc8\x87\x14\xfc\xa6\ \xbd\x50\xbd\xfc\x70\xa4\xd3\x89\xbd\x9b\x81\x3f\xfe\xb8\xbf\xc8\ \x20\x03\xe4\x4a\x2e\xa1\x21\xb5\xc4\x22\x35\x87\x78\xb7\x73\x11\ \x3c\xa3\x98\x2e\x03\x64\x40\x06\xea\x27\x05\xd4\x9d\xe7\x8b\x40\ \xeb\x21\x02\x31\x5b\xa1\x15\x62\xa6\xf5\x18\x81\x21\xd0\x84\x60\ \xc8\xfe\x04\x68\x83\x42\x0f\x32\x0b\xf6\x70\x2d\xeb\x11\xbb\x9a\ \x18\x81\x36\x2b\x98\x11\x64\x02\x36\xf8\x02\x33\x44\xc1\x14\x04\ \x8c\xfd\x88\xab\xb8\xb8\x0b\x1d\x22\x9d\x42\xf9\x05\x9c\x73\x1a\ \x03\xa9\x19\x72\xab\xc1\xc5\x28\x01\x1c\xc4\xb9\x0d\xe1\xc1\x77\ \xfa\x3b\x83\x08\xc2\xa3\x18\xc2\x50\x3a\xbe\x7f\x3b\xc2\x14\xfb\ \x2e\xd1\xa8\x2e\xd1\xbb\xb7\x93\x79\x42\xb2\x20\x0b\xf7\x60\x03\ \x4d\x60\x2f\x1f\x93\x44\x40\xca\xa8\x3e\xc2\x40\xb1\xfb\xc2\xf7\ \xb0\x89\x30\xcc\xae\x31\x70\x0f\x41\x32\xc3\x2d\x40\xc5\x2f\xd8\ \x82\x14\xcc\x87\x6d\x61\xc1\x23\x83\xc3\x38\x3c\x08\xcc\x00\x37\ \xda\x73\x99\x3b\xa9\x99\xe1\xca\x43\xc6\x88\x1f\x50\x13\x35\x3f\ \xdc\xa9\x41\xd1\x41\xe8\x7a\x82\xa2\x78\x02\x11\x3b\xbc\x82\x4b\ \x46\xe4\xe3\x1d\x44\x7c\x35\x5a\x1b\x8d\x08\x7c\xc2\x4a\x79\x8f\ \xd9\x92\xad\xf1\xab\xc4\x4b\x8c\xad\x8c\xba\x92\x8e\x73\x28\x6e\ \xd4\x28\xb2\x70\x8a\xf1\x3b\x8b\x11\x70\x8f\x30\xa4\xae\x37\x88\ \x88\xd3\x4b\x45\x54\x64\xc5\xfd\x58\xbb\x45\xeb\x96\x40\xbc\x9f\ \x5b\x64\x13\x97\xb9\x2d\xf9\xd3\xc5\x5d\x5c\x0c\x32\x40\x97\x38\ \xfe\x44\x17\xa2\xd1\x8c\x1d\x24\xb5\x11\x28\x46\x2e\x20\x83\xa2\ \x63\x40\x17\x41\xc4\x65\x24\x42\x05\x3c\x44\x90\xf8\xb8\x18\xf8\ \x9a\x18\x28\x43\x12\x0c\xc3\xd7\xb2\x44\x4d\xe0\xc8\x3f\xd0\x04\ \x7d\xd0\x04\xea\xe1\x2a\x6e\x64\x2f\xa9\x5b\xb6\xf1\x33\x47\x89\ \x40\x46\x88\x18\x83\x8f\x62\x83\x2d\x60\x02\x54\x5c\x45\x15\xfc\ \x85\x7a\xe0\x8f\x45\x83\x47\xa5\xe9\xbb\x6a\x61\x93\xcb\xe0\xad\ \x37\x9c\x82\x3d\xe1\x47\xcd\x99\x02\xff\x53\x9a\xe5\x7a\xb7\xe7\ \xe2\x32\x39\x60\x82\x83\x34\x82\x79\x41\xbc\x45\x3c\xc4\x87\x0c\ \xb8\xa9\x44\x89\x32\x2c\xbc\x31\xa0\xad\x32\x9c\xb6\x37\x98\x82\ \x4a\xe4\xc8\x4c\xe8\xc8\x8d\x0c\xc7\xb2\xf4\x48\xb1\xbc\x40\x10\ \x84\x11\x73\x1c\x83\x37\x10\x32\xe1\x5b\x47\x55\x94\x49\x56\xfc\ \x82\x31\xb1\xc9\x23\x03\x9f\x1d\x2a\x94\x09\x79\xb2\xc7\x09\x30\ \xb7\x20\x8c\xc2\x31\x80\xa1\xd4\x43\x73\x49\x4a\xc2\x12\x9a\xcb\ \xe0\x84\xa5\x74\x08\x83\x2c\x0a\x03\x60\xc4\x4f\xf9\xae\xa9\x34\ \xc4\xcb\xea\x37\xe4\x7b\x03\xda\x1a\x83\xaf\x49\x8b\xd3\x9b\xb6\ \x24\x88\x49\x8e\x0c\xcb\xd1\x8c\x2d\x87\xa3\x9e\xb0\xf4\xc8\xfe\ \xb4\x4c\x38\x95\x8c\x88\x30\x01\x23\x19\x10\x39\x44\xda\x02\x55\ \xcc\x87\x32\xd8\x82\xa2\xe4\x04\x6b\xd3\xb6\xd2\x91\xbd\xbd\xc4\ \x45\xdb\x9b\x3f\x02\x79\xc3\x1c\x9a\x03\x3c\xac\xc1\x3f\x19\x08\ \xfe\x3b\xac\x2c\x63\x4c\x87\x58\x81\xa2\x30\x82\xe3\x03\xaf\x13\ \xfb\x14\xa3\xc3\x30\x85\x64\x3e\xe9\xd4\x4a\x36\xc8\x4a\xcf\x64\ \x02\x19\x00\xcd\x97\x44\x45\xd1\xac\x02\x8e\x94\x2d\x90\x3c\xcb\ \x90\x54\x4f\x8d\x2a\xb4\x94\x54\xc7\xb2\xdb\x4c\x9f\x92\x0f\x55\ \xa4\xcd\xda\x2c\x83\xba\x94\x01\xb6\xc8\x87\x2f\x00\x9f\x08\x69\ \x96\x9c\xe2\x0c\x6e\xb2\x3d\xfa\xd3\x26\xc2\x19\x32\x19\xe8\x01\ \xc2\xd4\x9c\x59\x50\x94\x83\x40\x1a\x26\xea\x41\xc6\x34\x02\xe8\ \x78\x01\xe9\x6c\x20\xef\x0a\xc1\x66\xbc\xce\xde\xa1\x2c\xc7\x73\ \xcb\xd9\x94\x01\x88\x38\xc1\xdb\x94\x81\x31\x90\x4b\x99\x2c\x03\ \x4d\xd8\x02\x8e\x2a\xc3\xb0\x14\x4b\xf6\xd4\xa8\xd3\xdc\xa8\x39\ \x68\xcb\x21\xf3\xa8\x5f\x10\x08\x67\xb1\x36\x56\x74\x86\x6b\xc8\ \x87\x31\xf1\x81\xbb\xda\x8f\xde\xe4\x0c\xef\xc9\x21\xbc\xd0\x0b\ \xbd\xa8\x99\x9a\x21\x13\x83\x20\x13\x81\x88\x39\xc2\x2c\xfe\x81\ \x1e\x58\x94\x51\xeb\xa9\xe6\x14\x8d\x39\x38\x0d\x07\x48\xbc\x82\ \x3b\x20\xca\x3a\xb1\x23\xe4\xb2\x06\x62\x0f\x51\x24\x88\x31\x88\ \xc9\x29\x28\x51\x92\x53\xd3\x31\xd8\x82\x32\xb0\xcd\x14\xb5\xcd\ \x15\x75\x26\x26\x00\x49\x75\xe0\x48\x18\x8d\xd1\xf4\xd4\x04\x67\ \x2a\xd1\x21\x1b\x93\x10\x2d\x88\xfc\x3c\xa4\x7c\xb8\x06\x18\x28\ \x83\xf9\x08\xd2\xfd\xcc\xc9\xde\xb4\xad\xfe\x10\xa9\x91\x62\x43\ \xbb\x8c\x50\x81\xc0\x3d\x29\xfb\x93\x31\x78\x30\x17\xe8\xbb\x4a\ \xc5\x52\x88\x78\x01\x07\x58\x49\xaf\x19\x3a\xee\x4a\x3a\xc9\x2c\ \xc2\x44\x91\x3c\x48\x54\x96\x51\x9d\x82\xda\x1c\x83\x24\xf0\x28\ \xf9\x90\x83\x5f\xc8\x87\x55\x84\xd3\x6b\xa8\x82\x15\xfd\xa8\x2d\ \xd0\x87\x14\xcd\xd3\x8d\x62\x4f\x0b\x54\x4f\x8e\xdc\x1e\x95\x09\ \xd1\x0c\x59\x19\x69\xba\x06\x1f\x8d\x21\x15\xdc\x8f\x83\x88\xbd\ \xc8\x21\x10\x91\xaa\x19\x9b\xb1\x99\x27\xc5\xb0\x4b\xc5\xd4\x0c\ \x68\x03\x7f\xa0\xb0\x2b\xfd\xd4\x68\x44\xc0\xef\x92\x8d\xe2\xd8\ \xba\x59\x93\x4a\x55\x5d\xd5\xb1\x8b\xcf\x24\xf8\x85\x2f\x48\xd4\ \x95\x51\x3b\x9f\xd2\x4f\x5c\xb5\x4d\x55\xd4\x84\x2a\xfe\x28\xcf\ \xf2\xf4\x55\x5f\x0d\xc9\x92\x14\x4b\xd1\x4c\x45\x41\x6d\x17\x9b\ \x2c\xb9\x1f\x95\xd7\x32\x08\x85\xf9\xf0\x1e\x9b\x8c\xab\x90\xda\ \x16\xdb\x1a\x1c\x50\x9a\xca\x18\x50\x50\xa0\x59\x17\xf9\x11\x0d\ \x4f\xfd\x54\xcb\xaa\x48\x04\xc2\xac\x81\x53\xd7\x7e\x4a\x46\x4f\ \x79\x0f\xb9\x64\x02\x30\x32\xd1\x29\xe8\xd8\xc2\x61\xd3\x7c\x70\ \x86\x2b\xb8\x82\xf2\x54\x51\xd1\x1c\x4d\xb4\xd4\xa8\x15\x95\x49\ \x35\xc5\xb0\xfc\xf4\x01\x67\x31\x54\xfe\xdc\xa6\xc2\xe1\x0b\x24\ \xa5\xd8\x26\x4d\x14\x13\xcd\x80\xfd\x1a\x83\x0c\xd0\x82\x0c\x18\ \x83\x8c\xa5\xd2\x40\x01\xa5\x71\x65\xc4\xea\x72\x3e\x90\xd0\x08\ \x7c\x5a\xbc\x80\x43\xba\x81\x23\xb8\x74\x4c\x8b\x4a\xbc\x86\x32\ \x60\x82\x51\x73\xd9\x76\x71\x96\xfd\x30\xd1\x6b\x58\x03\x2b\x80\ \x81\x2a\x68\xd6\x7d\xb5\x5b\x75\x50\x87\x81\xd5\x07\x9e\x15\xa4\ \x45\x33\x58\xb6\x1d\x9c\x92\xfb\xa6\xc2\x91\xa1\x69\xca\x0b\xb7\ \x2a\x9c\x31\xa8\x07\xca\xfc\x1a\x01\x7c\xce\x27\x60\x86\x15\x28\ \x46\x2f\x18\x01\x05\xd5\x1c\xc6\xc5\xda\x50\x62\xbc\x33\x1b\x88\ \x90\x08\xd3\xe4\xd3\xae\xad\xbb\xa8\x2d\x14\xc3\xfe\xfe\x99\x03\ \x7c\xcd\x87\xf8\x74\x48\x1f\x5c\xdc\x7a\x98\x82\x32\x70\x86\x1e\ \x2d\x83\x66\xe5\x57\xbc\xc5\xdb\x4c\xc8\xdb\x8f\xa4\x53\x41\x6a\ \x2b\xbb\xbc\xce\x5a\x75\x9c\xf9\x2c\x54\xb9\xc8\x8b\x49\x0d\x54\ \xcc\x95\xd5\x0c\xf0\x01\x7b\xf8\x00\xa3\x70\xde\x15\x40\x85\x8c\ \x5d\xc9\xcc\x5d\xca\x37\x60\x01\x13\x40\x11\x3f\x68\x11\x81\x08\ \x09\xdb\x48\x44\xf0\x0a\xaf\x65\xca\x44\xf0\x43\x0b\x90\x52\x8b\ \xb5\xf8\x5b\x2e\x1b\x83\x50\xc8\xd7\x14\xbc\x06\x67\x88\x5b\xdb\ \xc5\x5b\x8e\xfc\x57\x34\x8c\x8f\xf9\xb8\xda\xcd\x60\x96\x45\x4d\ \x41\xc1\x58\x8b\x91\xaa\xd8\x9f\x7d\xda\x15\xf0\x02\x7b\xb0\x87\ \xe7\x74\x5e\xa3\x78\x02\xcb\x35\x17\xea\x5d\xca\x24\xc8\x98\x1e\ \xe8\x01\x1f\x99\x05\xce\x95\x03\x8c\xc0\x14\x0b\x5e\x46\xf0\x3d\ \x38\xf6\xd4\x04\xf9\xe5\x48\xfc\x7c\xa1\xc1\x69\x4e\x78\x05\xa7\ \x92\x83\x5d\x18\x50\x61\x15\xb6\xd9\x2d\x50\xd1\x97\x7c\xc9\xf3\ \xc5\xdf\x4f\x75\x5d\xfb\x6c\xc5\x1b\x6d\x52\x8f\xfd\x9a\xa7\x65\ \x06\x2f\x68\x5e\x2e\x58\x81\x0c\x60\x86\x1f\x4e\x60\x2e\xe0\xd6\ \x05\x33\x4c\x07\xbe\x4e\x2c\x02\x31\x09\x36\xfe\x81\xa1\xe2\xde\ \x13\x61\x81\xed\xa5\xae\xd1\xf0\x94\x34\x5a\xa1\x6c\x54\x07\x4b\ \x68\x01\x2e\xce\x03\x44\xfd\x05\xcc\x05\xc4\x32\x09\xd2\xd9\x7d\ \xdf\x2a\x70\x86\xb9\xd5\xd5\x7f\x65\xe3\x98\x5c\x45\xfc\x54\xd5\ \x44\xf9\x29\x43\x72\xd8\x31\xc9\x0c\xc6\x2d\x51\xf9\x38\x60\x22\ \x2e\x8a\x15\xb0\x87\xc8\x3d\xc8\x04\x8e\x5e\x29\x1d\x81\xfc\x0d\ \x3e\x2c\x25\x8d\x18\x58\x35\x0a\xe8\x01\x46\x26\x82\xa2\xb3\xde\ \x59\xe8\x03\x0d\x66\xc4\x11\x93\xaa\x39\xd0\xa8\x0f\xbe\x02\x4b\ \x88\x83\x38\x68\x81\x16\xc8\x03\x67\x48\x5d\xea\x8d\xd7\x84\xcd\ \xd5\xf7\x55\x61\x75\xa0\x5b\x8e\x4c\x51\x54\x8c\x49\xa2\xd5\x61\ \xfd\xbd\xcb\x3a\xf6\x5d\x39\xfe\x82\x15\x40\x86\x27\xe0\x63\x63\ \x64\x86\x3f\x5e\x01\xc9\x2d\xe2\x41\x1e\xca\x12\x20\x83\x3f\x7c\ \xb7\x58\xae\xcc\xea\x8a\x60\x2a\x60\xe6\x0a\x4e\xe4\x59\x30\x80\ \x27\x76\xbc\xec\x3a\x3c\x17\xc9\x9e\x64\x81\x2d\x4d\xa6\xd9\x2b\ \x80\x01\xb9\x3d\xdb\xa0\xc5\x5a\x1d\x45\xe1\x34\xb6\x82\x3c\xc8\ \x83\x19\xc8\x03\x9a\xc5\x5b\x7e\xad\x02\x38\x2d\x83\xfd\x1c\x93\ \x70\xb6\xb6\xf2\xd1\x56\x0d\x49\x82\xc1\xfe\xe1\x1e\x39\x98\x82\ \x21\x2e\x62\x2f\x78\x4e\x7f\xfe\xe5\x5f\xf6\x82\xaf\x70\xde\x27\ \x38\x62\xbe\xfa\x13\x64\x54\x4c\x50\xfa\x3b\x2e\x53\xaa\xa6\x30\ \x01\x2a\x28\x81\x40\x58\x02\xed\xc5\x08\x03\xa0\x02\x03\x98\xe2\ \x2e\x55\xc8\x03\xdc\x8d\x0e\x82\x2d\x5f\xe5\x57\x44\x7d\x67\xfe\ \x9c\x8f\x7c\x1e\xd7\xfc\xac\x4d\x18\x58\x83\x73\xfe\xe4\x16\xe8\ \x64\x98\x6e\x81\x6d\xc6\xdb\x2b\xb0\x02\x67\x78\x67\x9f\xfd\xd4\ \xdc\x5c\x34\xc5\x6d\xdd\x32\x31\x93\xf3\xdd\x4c\x2f\x2b\x62\xc8\ \x25\xc0\xa3\x78\x02\x80\x7e\x80\x5f\x56\xe0\x07\x30\xce\xe3\x5c\ \x02\x81\x18\xac\x4a\xc5\x90\x31\xc5\x88\x93\xf0\x03\x13\x40\x85\ \x12\x40\x85\x02\x72\x20\x8c\x26\x83\x49\x86\xa5\x57\xa3\x4e\x9b\ \x58\xa1\x9d\xdd\x57\x75\xb0\x02\xba\xdd\xcf\x19\xce\x5c\x95\x2e\ \x83\x6e\x3e\xe7\x66\x68\x86\x97\xb6\x6b\x75\x5e\xe1\x1e\x6d\xc5\ \x9a\x4c\xe9\x52\xf6\x01\xee\x79\xa1\xf9\x64\x02\xf6\xcd\x87\x10\ \xfd\x85\x1e\xe6\x82\xe6\xfd\x8a\x15\x00\xe4\xa3\x18\xe8\xaf\x78\ \x80\xc8\x3e\xc8\x27\xd0\x05\x03\x38\x68\x98\x2a\x01\x13\x48\x97\ \x8e\xe5\x0c\x43\x9e\x17\x1c\x91\xb5\xfe\x1e\x10\x12\x54\xd0\xe8\ \xdf\x30\x82\x03\xa0\x02\x07\x68\xc2\xec\x7a\x2a\xef\xfb\xbe\x90\ \xd6\x64\x73\x56\x61\x1f\xe5\xcf\x7a\xfe\xd4\x3c\x2e\xb9\x66\x55\ \x61\x9a\x2d\xe7\x6d\x56\xe7\x6b\xd0\x04\x38\x6d\x6b\xbe\x16\xe3\ \x87\xe0\x04\xfd\xac\xcb\x6a\x63\x53\x69\x52\x53\xd7\xbd\x86\x15\ \x18\x86\xa4\xfe\x65\x66\xd0\x83\x07\xe8\x61\x02\x26\x40\xc8\xd5\ \x05\x3d\x40\xe0\x15\xd0\x83\x3d\xb8\x6c\x72\x2a\x81\x12\xf0\x83\ \x83\xf5\x24\xc6\xac\x2e\x07\x30\x80\x49\xb6\x5e\x2a\x70\x0e\xda\ \x29\x1b\x03\x20\x03\x54\x40\x8d\xd5\x66\x6d\xd1\xe5\x38\xdc\xc5\ \x53\x4d\xb8\x02\x99\x06\xe5\x2f\x86\x81\xb3\xcd\x07\x87\xcd\xdc\ \x65\x55\xc5\x53\x4e\x63\x35\xd6\x84\xb3\x15\xee\xd9\xcc\x0b\xdb\ \x5e\x4a\x9b\x1c\x6c\x15\x3c\xa4\xd9\x9c\xcd\xf8\x30\x13\xee\x69\ \x49\x7b\xd0\x83\x1e\x96\xee\x07\x30\xe0\x20\x98\x6e\x60\x5e\x81\ \xed\x46\xe0\x27\x58\xea\xf0\x16\xef\xf2\x7e\x22\x4f\x0a\xc8\x25\ \x6e\xe6\xa1\x7a\x03\x03\x40\xed\xf5\x76\x80\xa0\xe8\x86\x03\x80\ \x92\xda\x31\xd7\x40\x7b\xb6\x2d\x06\x03\x4b\xb8\x02\x75\x00\x83\ \x4e\x36\xf2\x4f\x46\xe7\x9b\xbe\xfe\x4f\x1c\x1d\x57\x30\x5a\x99\ \xf4\xb3\xcf\x39\x7d\x53\x77\xa6\x70\xfe\xdc\x32\x43\xcc\x51\x1f\ \x98\xf2\x5b\x9d\x4d\x13\x3c\x24\x0c\x87\x21\x45\xfd\xe3\x27\x60\ \xec\x80\x8e\xdc\x15\x78\x80\x0e\x47\x73\x3d\xe0\x6e\x32\x97\x6c\ \x2e\xa0\x5a\x30\x5a\x9a\x25\x42\xe6\xce\x35\x80\x40\x00\xb1\x7b\ \xdb\x09\x9d\x80\x09\x61\x78\x01\x32\x38\x00\x4b\x38\x80\x17\x68\ \x3c\xe8\xd3\xb1\x8c\xaa\x02\x22\x07\x03\x9a\x2d\x72\x2e\x30\x72\ \x4f\x06\x65\xb9\x65\x58\x26\x47\x6f\xd7\x3d\xdc\xf9\x90\x8f\xf3\ \x4d\x41\x77\x9e\xf2\xe0\x16\x6e\x9a\x4c\x5f\x43\x6c\x16\x95\x19\ \x83\x32\x16\xf0\x2e\x7f\x63\x35\xc5\x67\xf0\xfc\x29\x7b\xb0\x6e\ \x11\x5f\x81\x20\x08\x02\x66\xe8\xe5\x0c\x10\x62\x66\xd0\x02\x36\ \x8f\x6c\x5d\xd8\x83\x20\x58\xe0\x8c\x25\x13\x2c\xb3\x30\x00\xf4\ \xd8\x24\xf0\x03\xf7\xee\xea\x29\x3e\x18\x51\xc1\x91\x1b\xff\x0a\ \x54\x48\x03\x75\xcd\xb5\xd0\x63\x03\x23\x48\x74\x20\x27\xf2\x38\ \x70\xf4\x47\x8f\x83\x66\x98\x01\x25\xff\x82\x50\xc7\xb0\x1a\x56\ \x61\xd9\x65\xc5\x5b\xdd\x74\x77\x3e\xe5\x77\xde\xcf\xba\xc4\x52\ \x9c\xc1\xcf\x67\x85\xdd\x7c\xfe\x5d\x45\x10\x15\x3e\xe1\xc3\x85\ \x2f\xc0\x05\xa8\x8d\xda\x8f\x22\x25\x41\x82\x5a\x3d\xd0\x05\x5c\ \x20\xf8\x42\xc0\x05\x3d\x40\x8a\x8c\x3d\x27\x78\x81\xa2\x1f\x34\ \x40\x07\x88\x8e\x29\xc5\x94\xec\xed\xf3\x39\x10\x06\x32\x38\xc8\ \x03\x98\x64\x1f\xb7\x1e\x07\xa8\xf6\x44\xbf\x02\x30\xf8\x00\x30\ \x68\x74\x6d\x7f\xf4\x16\x68\x86\x3c\xb0\x02\x67\xbd\x6d\xc5\x35\ \x51\x67\xb0\x82\x19\xf0\x76\x95\x97\xdb\x00\x6f\xd6\xb3\x5d\x70\ \x01\x47\x24\xbe\x6e\x4e\xb8\x6e\x77\x26\x98\x5d\x93\x66\x6e\xf0\ \xec\xd8\x96\x9c\x02\x5b\xb7\x75\x2d\xb8\x06\x5c\xd7\x82\x30\xc9\ \x00\x3d\xc8\x00\x5c\x28\x84\xc1\x39\xf8\xaf\x60\x60\xa5\xc4\xda\ \x24\x30\x80\x88\xa7\x00\x4c\xe9\x17\xe0\x10\x06\xe5\xf8\x73\x30\ \x30\xc6\x40\x78\x01\x9c\x88\x36\xb1\x7b\x01\x36\x78\x01\x8e\x5c\ \x01\xb2\x77\xf4\xc4\x36\xf9\x93\x6f\x86\x2b\x10\x65\xc5\x45\xe4\ \x78\x6d\x6b\x79\x6d\x69\xff\x46\xf9\x94\x57\x79\x18\x88\x5d\x1f\ \xdd\x4f\x26\x88\xe7\xdf\x1d\x9d\x57\x85\xf9\x00\x87\xd3\xdb\x6c\ \x5c\x94\x16\xbe\x17\x7a\xda\x59\x8f\x5c\x30\x08\xe4\xa3\x68\xda\ \x7d\x1f\x78\xa9\x37\x85\xfe\x42\xd0\x05\xc9\x55\x71\x4b\x2a\x01\ \x60\xac\xf3\xce\x9d\x6f\x83\xa6\x82\x4b\x61\x81\x59\xb8\x14\xe5\ \x00\x91\x03\x70\xde\x40\x68\x1b\xaf\xfb\x38\x16\x5a\x7b\x2d\xf8\ \x60\xb8\xd7\xf6\xb8\xe7\xf6\x16\x90\x5b\x12\xe5\x0f\x08\x1f\x0d\ \xd9\x33\x88\x29\x48\x63\x51\x5e\x69\x2b\x68\x06\x6e\xf7\xe4\x94\ \x47\x67\xc6\x87\xe7\xd1\xc8\xd1\x08\x5d\x19\xbe\x37\xe7\x2f\x2e\ \xec\x87\x58\xf5\x96\x64\x82\x31\xdf\xe5\x04\x26\xf3\xcc\xd7\x05\ \x2d\xc0\x85\x31\x30\x78\x3c\x78\x82\x03\xc8\x58\x16\x7f\xa2\x43\ \xc6\xb0\x37\x98\x6f\xe7\x28\xb3\x3e\x20\x85\xe3\x30\x01\x61\x88\ \x18\x23\xb8\xfc\x27\x48\x83\xb5\x37\x9b\x27\x04\x88\x21\x2f\x5e\ \x68\x32\x72\xed\x0a\x97\x84\x71\xb8\x2c\x6c\x18\x27\x4e\x8b\x3c\ \x30\xca\x7c\xf1\xf1\xe5\xe2\xaf\x7a\x72\xe4\xc8\xd0\xb8\xf1\x63\ \xbd\x5f\x15\xa7\x88\x84\x61\x45\xa2\xb3\x6b\xce\x4e\xb6\x78\xe8\ \xf2\x61\x8b\x66\x79\xac\x38\xa3\x38\xa5\x63\x92\x7a\x32\x38\x75\ \xfc\x95\xe4\x23\xd0\x5f\xbf\xa6\x7c\x29\xb3\xb2\x59\xcc\x6b\x37\ \x65\xc8\xf9\x29\x63\x4a\x86\x0c\x4c\xa0\x32\x5b\x91\xf0\x2a\xd6\ \xac\x5c\x98\xe1\x9a\xfe\xa2\x2b\xc8\x1e\x5c\xb8\x32\xec\x09\x72\ \xe0\x1f\xda\xb4\x6a\xd7\xb2\x6d\xeb\x56\x6d\x89\x1e\x20\xe5\xd4\ \xd3\xe8\x11\x28\xde\xbc\x31\x0e\x3c\x41\x15\x77\x16\xe0\x59\x7d\ \x66\x39\x10\x36\xf0\x40\xd6\x03\x9a\x5e\xb0\x61\x3c\x84\x49\x63\ \x75\x96\xc0\xac\x00\xf3\xe1\x6a\x43\x86\x0f\x3d\x48\x2c\xe3\xf9\ \x73\xa8\xa5\x16\x7f\x7d\xcc\xf9\x4b\xc6\x2f\x95\xf9\xbe\x10\x2d\ \x63\x12\x46\xca\x6b\x30\xae\x20\x7d\xe9\xb2\xd9\x15\x18\xd7\x56\ \x93\xb4\x78\x11\xf5\x17\xa6\x76\x3b\x86\xbc\x58\x74\x65\x9e\x16\ \x2d\xd4\xe5\x9b\x3a\x66\xa3\x0c\x26\xcc\xae\x69\xb9\xb6\xe2\xb2\ \xd6\xec\x09\x9f\x04\x11\xab\x4b\x8b\x58\x5c\x61\x71\x95\x78\x6b\ \xfe\xfc\xdb\x12\x54\x72\xd2\x6d\x9f\xf7\x3d\xde\x24\x7e\xa8\xf4\ \x45\xd5\x63\x96\x09\xc0\xf9\x1d\xbc\xe0\x8f\x18\xab\x25\x2b\x0c\ \x44\x90\x11\x04\x82\xf1\x04\x18\x09\x6a\xe5\x10\x67\x57\x38\x53\ \x85\x33\x30\x48\x78\xcd\x16\x3e\x10\x95\x4f\x3e\x3e\xc8\xd0\x11\ \x70\x16\x5e\xb3\x06\x0c\x19\x0e\xf5\x45\x3e\x65\x60\x98\xcf\x35\ \x46\xc1\x90\xdc\x4b\x31\xe5\x91\x9b\x89\x24\x96\x48\x91\x0f\x25\ \x9e\x36\x86\x50\xfe\x42\x3d\x25\x63\x19\xb2\x5d\x91\x47\x1e\xce\ \x6c\xc1\xdb\x86\x63\x4c\xb1\x45\x15\x0a\x6a\xb7\x24\x17\x2b\x30\ \x31\x42\x78\x62\x15\x62\x47\x21\x54\xa0\x77\x25\x96\xff\x94\x30\ \x42\x7b\x77\xc1\xf7\xa5\x1c\x7e\xf0\x85\x8a\x7d\x26\xf4\xd0\x07\ \x0b\x7d\x18\x60\x04\x19\x46\x68\x61\x89\x56\x96\x18\xa1\x0f\x41\ \xea\xd8\xb9\xc2\x9d\xea\x80\x81\x55\x66\x71\x78\x80\x9b\x15\x56\ \xfc\x38\x53\x4d\xac\x1d\x77\xcd\x17\x43\x09\x45\xa2\x89\xf9\x58\ \xb1\xc6\x6e\x24\x89\x24\xa3\x71\x3e\x30\xf1\x85\x33\xb4\xc5\x24\ \xd3\x4c\xba\x5d\x23\x9b\x84\x21\xe6\xe3\x8c\x33\xbd\x19\xca\x9a\ \x45\x9f\x45\x28\x11\x85\x5b\xb8\xca\xc4\xa5\x4c\x20\x69\x19\x93\ \x4c\x3e\x81\x4b\x21\x63\x14\x12\xde\x18\xa6\x98\x22\x4c\x79\x59\ \x0a\xdb\x56\x09\xb3\x78\x09\xe6\x97\xf2\x8d\x89\x0a\x15\x4b\xb0\ \x10\x43\x0c\x44\x50\x70\x80\x25\x07\xf0\x95\x9d\x25\x5a\x14\xb4\ \xc2\x15\x07\x5c\xc1\x8c\xab\x49\x62\xd7\x67\x1c\x60\x00\x99\x47\ \x33\x32\x59\x41\x61\xa2\x53\x8c\x5a\x53\x28\x17\xc5\xfb\x2e\x86\ \x6b\xcc\x94\x22\x6f\x24\x52\x4a\x12\x8e\x24\x66\x2a\xa8\x15\xa1\ \x9a\x74\x2e\xfe\x6c\x2b\x86\xf8\xc5\x90\x18\xc6\x88\x62\x84\x12\ \x56\xb1\x05\xac\xae\x6e\x51\x46\x15\x57\x24\x78\x59\x66\xb5\x6a\ \xf5\xc4\x14\x63\x84\xb7\x87\x1e\xb8\x9a\x52\x48\xb0\xc3\x9a\x9c\ \x56\x09\x31\x20\xbb\x72\x98\x69\x90\x79\x80\x09\x7d\xbc\xf1\x46\ \x0c\x06\xa0\xb2\xdd\x92\x60\x1c\x90\xe0\x81\x09\x5e\xb1\x82\x26\ \xd7\x58\xb6\xd0\x9f\x60\x78\x70\xb4\x07\x2d\x78\x00\x11\x4d\xbc\ \x8d\x68\x54\xa1\x45\x9d\x48\x6a\x4a\x2b\xe6\x31\x03\x4d\xbb\xcd\ \xf8\xa9\x89\x4c\x9c\xc6\xd1\x53\x25\x5e\x53\x85\x49\x57\xcc\x90\ \x6e\x33\x81\x26\x97\x07\x86\xb1\xc9\x56\x93\x4a\x81\x5e\x71\xcd\ \x54\x47\x2a\xac\x0e\x76\x1a\x6b\xbc\xc2\x08\xbb\x6a\xa1\x07\xe0\ \x7a\x84\x55\xe5\xc9\x85\x6b\xf9\x06\xcb\xc8\xbe\xf1\xc2\x01\x64\ \xf4\x11\xc3\xcc\x31\x18\xf1\x5f\xad\x7b\x66\x97\x60\x92\x60\x5c\ \xa1\x0e\xc4\x47\x5a\x01\x86\x9f\x0f\xe5\xb1\xdb\x48\x44\x81\x3a\ \x91\xd8\x0a\xcb\xb6\x46\x4d\xf6\xca\xc4\x7a\x4a\x3d\x3a\xb3\x46\ \xc0\x35\x31\x21\xc3\x4f\x1c\x19\x59\xe2\x49\xe9\x46\x04\x64\x4b\ \x33\xc4\x1d\x6a\xa0\xa1\x9a\x7d\x05\x45\x08\x9b\xb8\xc5\x41\x7a\ \x3b\xbf\xfe\x42\x12\x32\xe8\x82\x47\x10\x80\xe3\x81\x47\xc8\xb8\ \x18\x7e\xb2\x7a\x89\x83\x99\x44\x0c\x7e\xbc\xf1\x53\x12\x2c\xa4\ \xf1\x84\xf3\x39\x1b\x61\x8f\xab\x19\x8c\x20\xdc\x18\x8e\xde\x86\ \xba\x71\x28\xc2\x40\x3b\xeb\xf9\x80\xe2\x59\xdb\x12\xd6\xb4\xd2\ \x0c\x24\xe2\x3f\xcf\x44\xe8\x0a\xb4\x91\x48\x3e\xbe\x06\x9d\xa7\ \x1c\x24\x39\x31\xa1\xcd\x43\x9a\x21\xa1\x73\x9d\x64\x06\x57\x10\ \x14\xba\xe6\x36\xa4\x0d\x96\xc1\x62\xe9\xd3\x18\x33\x38\xb2\x87\ \x15\x3c\xe1\x01\x41\xb8\x5e\xf6\xb6\xc7\xbd\xdc\x79\xef\x3d\x49\ \xc8\x5d\x12\x88\x40\xb9\xec\x3c\x01\x4e\x95\x7b\xc1\x14\x46\x30\ \x82\x8e\x41\xa7\x35\x30\x98\xc1\x9f\xd6\xc5\x3f\x85\xdd\xaf\x78\ \x5a\x6b\x94\x8a\x40\xf4\xa9\x35\xcc\x20\x80\x01\xd3\xcd\x67\x5c\ \x73\x92\xce\x24\x8a\x85\x49\x70\x57\x15\xce\xc5\x22\x88\xcc\x66\ \x53\x0e\xe4\x14\x52\x82\x14\x23\x26\xe4\xe3\x0a\x79\xfb\xe0\x92\ \x32\x90\x04\x53\xe8\xe1\x09\x4f\x58\xc1\x0a\x50\xa8\x0b\x5c\xf4\ \x40\x85\xc3\x4a\x59\x0b\xbf\x37\x02\x23\xa0\x0f\x8d\x09\x01\x83\ \x25\x32\x91\x09\x75\xbc\x60\x04\x63\x18\x83\x73\x92\x90\x9a\xa3\ \x35\xfe\x83\x6a\x29\xd9\x5f\x3e\x42\xd1\x3f\xda\x05\x4c\x75\xa0\ \xf8\xd4\xec\x02\x95\x12\x67\xa0\xab\x19\x01\x04\x91\x6e\x5c\x65\ \xbf\x0b\x42\x91\x35\xa7\xa9\x8b\x91\x26\x06\x83\x66\xdc\xe6\x47\ \xca\x79\x25\x4c\xd0\x66\xc0\x14\xb9\x66\x4f\x0b\xf1\xa3\x76\x56\ \xf0\x1c\x39\x4c\x81\x84\x4f\xb8\x1e\xf6\xf6\xa0\x8b\x3a\xda\x51\ \x58\x54\xc8\xe3\x97\xe6\x60\x15\x5c\x72\xe1\x09\xc1\x30\x42\x06\ \x06\xf2\x85\x39\x44\x4c\x13\xae\x12\x5a\x1c\x3e\xd0\xc8\x1e\x81\ \xa2\x44\xdd\x9c\xe4\x4c\x84\x08\x35\xaa\xd1\xae\x53\xa4\xea\x1d\ \x6e\xfc\x87\x2f\xb1\x7d\x0a\x93\x29\xc1\x50\x0e\x4f\x83\x1a\x26\ \x5c\x83\x95\x71\xc0\xcd\x0c\x5e\xd9\x92\x97\xe0\x46\x1d\x54\x33\ \xe3\x2d\x99\x99\x1d\x35\x72\xa4\x10\x7a\x78\x00\x42\x4d\x08\xb8\ \x13\x96\xac\x98\xe8\x29\x01\x32\xe1\xa3\x05\x81\x72\x41\x4e\x8c\ \xa1\x26\x35\xd9\xa0\x89\x2a\x70\x54\x42\x57\x40\x46\x6e\x54\x72\ \x49\x0c\x75\x13\x14\x11\x2a\x67\xed\x9c\x61\x52\x10\x35\x4c\x6d\ \x01\x93\x0d\x90\xd4\xe5\x30\x5a\x4e\xec\x33\x98\x34\xe2\x6a\xbe\ \xf6\x94\x2d\xd0\xe6\x47\xb5\x81\x88\x6d\xc0\x50\x06\xe6\xc1\x00\ \xfe\x19\x1e\x50\x08\x45\xb3\xb2\x82\x9b\x64\x40\x17\x53\xf0\x0e\ \xc8\xac\x77\x3d\x54\x38\x14\x4b\x25\xe8\xc3\xb1\x90\x99\x04\x75\ \x08\xb4\x86\x8a\x19\xc2\x1c\xc2\x0a\x19\x24\x55\xac\x0a\xec\xf3\ \x66\x84\x1e\xe9\x19\x95\x14\x31\x80\xe6\x6c\x98\xff\x4c\x02\x30\ \x87\x59\x21\x5d\x2f\xaa\x1d\xd7\x4e\x24\x3b\x52\xad\x01\x44\xc5\ \xdb\xc2\x4d\xa2\x37\x06\x84\xa1\x68\x8b\xa1\xdb\x4c\x15\x64\x55\ \x05\x64\x60\x2c\xa9\x5a\xb1\xc7\x1b\x32\xe0\x46\x3d\x14\xa2\x10\ \xba\x28\xcb\x03\xf4\x70\xc2\x15\xf8\xa5\xaa\x0f\x95\x4b\x44\x81\ \x92\x84\x65\xe2\xb2\x86\xea\x28\xd0\x1c\x46\xc0\x04\x82\x6c\x54\ \x1d\x66\xbd\xc8\xa8\x8a\xc8\xba\x4b\x5e\x32\x93\x4d\x74\x62\xc1\ \x34\xd9\x52\x97\xea\x66\x36\x76\xcd\x0d\x6c\xd6\x39\x24\xa8\xdd\ \x4f\xae\xa4\x8c\x54\xc7\xe0\xb7\x85\x93\x2c\xed\x25\x60\xc8\xe1\ \x35\x8e\x1a\x50\xc7\x5e\xc5\x1e\x39\x61\xc6\x76\x1e\xa0\x0b\x3d\ \xe0\x01\x8e\x78\xc8\xec\x03\xf0\xd0\x50\xcf\x12\x0b\xb4\xa1\xdd\ \xc8\x18\x48\x8b\xcb\x6a\x19\x61\x08\x44\x98\x43\x63\xaa\xe0\x2d\ \x75\xa4\x28\x6e\x81\x0a\x94\x12\x4d\x7a\xd2\x26\xda\x95\x75\xfe\ \x12\x2a\xde\x7f\x2f\x78\xc1\x7b\x21\x07\x5d\xe6\xa4\xe5\x6a\xda\ \x36\x3b\xfc\x01\x38\x54\x29\xd2\x50\x53\x76\x5a\xd4\xa5\x31\xe4\ \x0a\xb2\x42\xc6\x74\xa9\x9b\x10\xbe\xc9\x61\x0c\xd8\x6d\x66\x1c\ \xc3\x0b\xc7\x07\x08\x53\x2c\x56\x22\xaf\x79\xf0\x78\x5e\x8e\x38\ \x83\xa2\xce\x2c\xd0\x10\x1c\xd0\x18\x4d\x04\x8d\x7d\x63\x9b\x01\ \x32\x66\xd2\x57\xd8\xd4\x96\x76\xfc\xf5\xa4\x00\xe5\xfa\xc4\xfb\ \xde\xf7\x82\x9f\x9a\x4d\x00\x49\xa9\xce\x6b\xec\x4f\x76\xff\x35\ \x30\x4d\x4c\x72\xb6\x19\x38\x23\x38\x1f\x91\xc1\x60\xab\xd0\xdc\ \x2b\x6c\xc1\x19\x8d\xd5\xf0\x1f\x33\xd0\x94\x5e\x36\xf3\x8d\x99\ \xd5\xc3\x1c\x71\x55\x59\x53\x9c\x18\xc5\x6e\xb9\xea\x8a\x37\xc2\ \x04\x2f\x50\x14\x15\x07\xf8\xc3\x40\x8c\x00\x31\xc8\xb0\x01\x49\ \x83\x0a\xb2\x23\xad\x70\xdb\x41\x03\xb8\xc1\x02\x3b\x89\x11\x0b\ \xd8\x29\x81\xc1\x46\xa5\x2a\x55\x89\x8f\x9b\xa8\xe3\xab\x29\x87\ \xca\x19\x0a\x6c\x53\xc6\xe0\xe7\x89\xe4\x21\xc3\xd4\x7d\x42\x06\ \x36\xf4\x0b\x66\xa0\x6f\x18\x08\xd5\xc5\x1c\x0b\x61\x8a\x8d\xf8\ \x4a\x0e\xa6\x18\xaf\x9b\x51\xd6\x03\x16\x86\xf6\x17\xea\xfe\x5d\ \xef\x01\x8c\x60\x27\xc6\x30\x41\x1f\x55\x70\x6d\x51\x5f\xe4\x3f\ \x72\x0a\x3a\x5d\x53\x6e\xa2\x4b\xd5\x01\x03\x65\x2f\x9b\x76\x83\ \xb2\x02\x84\x88\x17\x28\x08\x9d\xb4\xd1\x9f\x32\xa9\x94\x81\x74\ \x5b\xa4\x78\x52\x89\x12\xa2\xc8\x18\x3c\x62\x24\x84\x59\xec\x21\ \x1a\xfe\x40\x15\x32\x70\xc8\x0c\xd8\x03\x7d\x4f\x60\xc6\x1c\xd3\ \xbc\xe6\x55\x7f\x04\xd6\xb1\x46\x4b\x09\x10\xb7\x62\x19\xb4\x38\ \xa9\x96\xb8\x42\x37\xaa\x60\x04\x4d\xe8\xc9\x67\xcf\x6e\x34\xa9\ \xee\xf7\x63\xb4\x49\xfa\xae\x01\x7b\xb8\x90\xc3\xe9\x30\x69\xb3\ \xb4\x61\x8e\xbc\xa4\x90\x03\xd5\x44\xe5\xa4\x4b\x37\xa0\x78\x8d\ \xed\x7c\x12\xe1\x29\x40\x65\x56\x9e\xfe\xe0\x13\xd4\xa1\x05\x43\ \x0e\x96\x19\x5e\xf0\xc2\x1b\xed\xd1\x15\x90\xa5\xd9\x0e\x78\x21\ \xe6\xbd\xd7\x92\xb2\xac\xb6\xd0\xc3\x27\xff\xa0\xce\x34\xa1\x85\ \x8a\x59\xe6\x03\x9a\xfb\x51\x6e\x20\xb4\xba\x48\x9f\x8d\xe1\x58\ \x43\xba\x3a\x04\x45\x4a\x22\x0b\x2c\xe1\x03\x7b\x14\x4b\x41\xe9\ \xc8\x05\xef\xb8\xd8\xdc\x86\x9d\xb4\x27\x92\x28\xa6\x34\x85\x23\ \x57\x64\xde\x15\x3c\x70\xc6\x5a\x7d\xe0\x0a\x9a\xc8\xfe\x40\xc7\ \xc6\x30\x82\x2f\x04\x81\x84\x23\x8e\xca\xf4\xe2\x38\x38\x7a\x6f\ \xe4\x0d\x39\x67\x4b\x5c\xe2\xfc\x05\x64\x70\xe1\x03\x6b\x4f\x1f\ \x18\x82\x61\x0f\x82\x58\x62\x5c\x47\x37\x20\xa3\x35\x7e\x5b\x64\ \x78\xb2\x89\xa4\x8c\xba\xa0\x04\x96\x9b\x22\x3f\x91\xd8\x4e\xdc\ \xf1\x8e\x1d\x19\xaa\x73\xfe\x18\x6b\x7e\xf5\xa8\x5c\x27\x02\xb1\ \x5f\x8c\x01\x77\xa5\x41\x64\xb8\x66\x73\x05\xa2\x57\xc6\x80\xb3\ \xdf\x82\xfb\x0e\x99\x04\x44\xb2\x1b\x8e\xcc\xf8\xfd\xdf\xf4\xe0\ \x4b\x38\xe2\x82\xde\xad\xb6\x83\xbd\xef\x0d\xd1\x15\xdb\xe3\x32\ \x46\xb7\x1c\x1a\xc1\x70\xda\x2a\x54\x86\x21\x5c\x00\xa4\xed\x91\ \x3e\xa8\xc9\x0f\xfa\xb7\x12\x8a\x7a\xd4\x27\xbe\x22\x44\x17\x8f\ \x54\x2b\x15\xf4\x6d\xef\xdb\x57\x96\x22\x9c\xc9\x4c\xe4\xaf\xe9\ \x85\x0c\xf9\xff\xea\xa6\x44\xa6\x1c\x03\xf9\x98\x92\x93\xd6\x63\ \xb9\x48\x71\x97\x3b\x00\x8a\x1a\xbb\xfd\x1e\x33\x68\x41\x01\x6a\ \x41\x10\xd4\xdd\x1b\xb9\xd1\x13\xec\x81\xaf\x98\x82\x58\xec\xc1\ \x1e\x90\xc1\xdf\xe9\xdc\x2c\xac\xd8\x17\xec\xc9\x07\x70\x8b\xe1\ \x45\xdf\x75\x5c\x5f\xe1\x7d\x40\xb9\x24\x08\x32\xfe\x18\x0d\x23\ \x81\x41\x33\x20\x83\x0a\x9e\x0b\x10\xa1\x20\x29\x09\x98\x49\x28\ \x5b\x84\x10\x19\xfe\xc0\x4e\xc2\xa1\x1f\x90\xd1\xa0\xd6\xf1\x98\ \x6c\x48\xde\xa3\xc0\x95\xd9\x00\xc9\xe6\x3d\xd1\xb7\x0d\x95\x85\ \x90\xdc\x86\x6c\x48\x3d\x44\x8f\xfe\x45\x98\x6a\x21\xe1\xee\x49\ \x87\xef\x15\x60\x10\x14\x60\x06\x98\x05\x1c\xd9\x1d\x1e\xe0\x8a\ \x1d\xb4\x91\x1b\x51\x55\x05\xaa\xc5\x7a\x9c\xd7\x18\x10\x1e\x17\ \x20\xc3\x0a\xa0\x21\xf4\xe9\x8d\x92\x24\xc4\xf3\x89\xa0\x08\x22\ \xcd\xd2\x20\x0d\xe5\x01\x49\x09\x72\xdc\x8b\xd8\x5e\xe6\x0d\x19\ \xd6\xad\x5f\xe8\xf1\xd5\xfb\x0d\x1a\xd6\x3c\xca\xa3\x0c\x1b\xa9\ \x7c\x08\x13\x15\x22\x5c\x75\x52\xa7\x14\x4f\xc0\x54\x01\x26\xbd\ \x4d\x19\x84\xc2\x90\x18\x0a\x3c\x1d\xd2\x91\xd8\xc3\x35\x48\x05\ \x53\x3c\xc5\xf0\xe1\x81\x16\xc0\x51\x77\x84\xe2\x2f\xf1\xc5\x13\ \x1c\x00\xf5\xec\x01\x1e\xf4\x11\x17\x24\x5f\xac\x2d\x5f\x68\x25\ \x41\xf3\xb9\x21\x18\x30\xc3\x62\x1d\x9e\x56\x48\xdf\x0c\x59\x5f\ \x40\x35\x84\x08\x36\xc4\x1c\x7a\x00\x18\x28\x4d\x0b\x98\xcb\x9f\ \x09\x61\xc0\x5c\x01\xed\x14\xd7\x7f\x61\x1d\xfe\xc2\xf5\x95\xda\ \x9c\x8d\xc6\xa9\x1f\x88\xd8\xe0\x0f\x0d\x22\x28\x09\xd8\xb9\x28\ \x23\x25\x29\xe2\x5a\x99\x04\xeb\x84\xde\x1a\xa8\xe0\x0a\x5c\x83\ \x3d\x94\x41\x55\x7c\xcb\x17\xe0\x9f\x0c\xe0\x02\xa9\x6d\x98\x16\ \xe0\xc1\x01\x80\x47\x28\x52\x4f\x77\xb9\x51\x33\x1d\xc0\x0a\x98\ \xa2\xb5\x84\xa1\xac\xb5\x10\xad\xc9\x81\x3d\x98\x61\xe1\x21\x83\ \x2d\xd2\x0a\x93\x50\xc6\x1a\x16\x9e\x2d\x21\x55\x36\xf5\x49\x1c\ \x1e\xcd\x03\xe5\x61\x4c\x09\x18\xc4\x55\xe3\x34\xf6\xe1\x49\xdd\ \xd7\xd5\x48\x5a\x00\x0d\xa2\x33\xb6\x55\x13\xed\x58\x33\xc6\x54\ \x38\x7d\x9e\x0d\x82\x02\x28\x80\xc8\x4a\xee\x58\x1a\x72\x8b\x39\ \xf6\x99\x3d\xc0\x91\x3d\xa8\x9b\xc7\x4c\xd4\x76\x04\x81\x16\x68\ \x01\x59\xe8\x24\x29\xe0\x82\x3c\xee\x63\x99\x51\x4f\x02\x4e\xa0\ \x2b\xa2\x58\x5c\x04\xa4\xf7\xc8\x80\x3d\x0c\x83\x08\x26\x84\x30\ \xae\xc0\x1a\x2c\x64\xad\xf4\x09\x9f\x7c\x80\x30\x92\xcb\x2f\x62\ \x25\x45\x6a\xdf\x05\x65\x5e\x33\xa2\x1f\xd6\x11\x22\x34\xde\x57\ \xd3\x7d\xa4\xa4\xdd\x57\xc4\x81\x64\xa3\xc9\x95\x16\x09\x62\x21\ \xb2\x0e\x01\x99\x9f\x3b\x7d\x4a\x4d\x32\xfe\x81\xdc\x31\x41\x28\ \x16\x20\x33\x64\x00\x2e\x68\x41\x1f\xfd\x92\x4e\xfe\x25\x19\xe0\ \x42\xaf\xa8\x62\x1c\xa1\xe2\x16\x0a\x43\x59\x48\xe0\x51\x22\xa5\ \xca\x44\xd4\x2f\xac\x81\xd1\x3d\x25\xd1\x80\x81\x17\x38\xdf\x07\ \x1d\x5e\x36\x51\xd8\x43\xfc\xa2\x66\x94\x8b\x10\xbe\xc8\x68\x2a\ \x23\x11\xf6\x15\xb2\xf9\x95\xa1\x15\x5b\x4c\xb4\xc0\xb1\x51\xd0\ \xc3\x5d\x4d\xda\xe0\xd5\x0c\xfe\x99\xe4\x8d\x24\xec\xb0\x0e\xbe\ \xec\x8f\x3d\x9c\xe3\x5d\xe6\xd0\x08\xfc\xc4\x18\x64\xc0\x4e\x56\ \x45\x10\x30\x41\x06\xac\x62\x1c\x69\x01\x19\x04\x81\x11\xc4\x11\ \x2e\x34\x85\x78\x90\x01\x30\x09\xc3\x94\x88\x87\x63\xfa\x23\xbe\ \x5d\x60\x44\xa5\x17\x56\x22\x64\x56\x60\xe5\x51\x31\x93\x55\x5a\ \xa5\x42\xf8\x09\x0a\x92\xe6\xb3\x11\xe1\x0d\xc6\xe5\x32\x16\x8c\ \x94\xa5\x4b\xd2\xb4\x26\x90\x85\x53\x4c\x01\x19\x28\x95\xa4\xc4\ \xa1\xe6\x0c\x0c\x03\xd6\xcd\x0e\x6c\x2c\x8f\xc2\xb0\xcf\x17\xe0\ \xa5\x22\x6d\x88\x60\x41\x89\x11\x04\x01\x71\x9e\x10\x19\x84\x45\ \x02\x92\x10\x1e\x08\x03\x94\x7c\x4c\x10\x14\xa6\xab\xd9\x41\x04\ \x92\x87\x76\x26\xa5\x64\x22\x84\xe6\xfe\x80\xce\xe5\x74\x20\x2e\ \x3a\x8f\x2f\xde\x52\xc6\xf8\x89\x4c\x18\x63\x57\x56\x5d\xea\x81\ \xe5\xb0\xa9\x0d\xda\xcc\xa7\xb1\x85\x53\xef\xe0\x61\x1e\xb0\x9f\ \x5b\x02\x98\x1f\xfe\x20\xd5\x78\xc6\x06\x9d\xe3\x16\x14\x68\x72\ \x4d\xc1\x54\xb8\xde\x98\x91\x05\x73\xae\x80\x4e\xee\xe4\x4e\x36\ \xa7\x16\x4c\x20\x2e\x90\x82\x86\x8a\x85\xcd\xb9\x9a\x29\x54\xe9\ \x63\x92\x57\xbe\x21\x93\x0c\x7c\x01\x9d\x7d\x00\x1a\xe2\xa2\xe1\ \x95\x29\x63\x91\x27\x66\x38\x64\x67\xa6\xa7\xb9\x90\x66\xed\x68\ \x9e\xe6\x55\x23\x7c\x4e\x51\x33\xfc\x49\x0a\xda\x95\x16\x21\xc5\ \x2b\xe1\x56\xd5\xb8\x94\x6e\xb5\x64\x38\xd8\x20\x90\xf6\x88\x39\ \xda\x03\x5e\x92\x9c\x91\x44\x45\x57\xec\x12\x47\xfc\x25\x02\x52\ \x4f\x3c\x16\xe6\x5f\x32\x26\xa4\x16\x5f\x96\xda\x81\xf1\x8d\x0c\ \x2e\x04\x41\x9b\x85\xa1\x8a\x21\xcb\x4f\xd4\xc3\x14\x6c\x40\x55\ \x60\x87\xb9\x88\xa8\x76\x18\x9e\x53\x6a\x98\x2f\x4a\x24\xe8\x2c\ \x0d\x0a\x36\x03\x18\xcc\x80\xa7\x08\x8c\x6c\x90\xcd\x1a\x6c\xde\ \x6b\x60\x50\xba\x50\x1e\xda\x54\x1e\x0b\xea\x93\x27\x65\x8d\x7d\ \xb9\x15\x7e\xf5\x55\xc3\xe4\x2a\xfe\x0c\x40\xa2\xab\x50\x8c\x39\ \xbe\x4f\xeb\x21\x12\x4f\xe6\x90\x61\xca\x80\x29\x24\x01\x94\x80\ \x87\x30\xfc\x25\x58\xe0\x82\x1f\x8c\x05\x75\x82\x22\x2e\xd8\x01\ \x95\x50\xc9\x03\xee\x0a\x09\x9d\x85\x76\xfe\xc3\x31\xb9\x90\xee\ \xfc\x82\x3f\x60\x42\x53\x6a\x45\x99\x5a\x5f\xaa\x96\xa8\x40\x75\ \xa6\x30\x16\x23\x7a\xca\xaa\x07\x80\x94\x6e\x40\x08\xb5\xcd\xe0\ \x6c\x4c\x11\x32\x9e\x04\xe5\x51\x5e\xac\x1a\x5b\xd3\x11\x23\xc7\ \xd1\x04\xd5\x58\x8d\x5b\x29\xa3\x84\x20\x2b\x0c\x70\x0b\x47\x51\ \x08\xbb\x69\x01\x60\x1d\x52\xa3\xda\xc3\xfb\xb4\xa3\x5f\xbe\xcf\ \xb5\x5e\xeb\x4f\x5c\x6a\xaf\x54\xa9\x16\x58\x0b\xa4\x4a\xa0\x78\ \x44\xe0\x2a\x26\xc4\x96\x7a\x16\x2c\x5e\x19\x6a\xe8\x02\x28\x30\ \x43\x38\xac\x40\x32\x0c\xc3\x55\x74\xa0\x1b\xaa\x9d\xbd\x82\x59\ \x55\x32\x84\x08\x9a\x60\x56\x0a\x23\x90\x40\x5c\x01\xd9\xde\xd5\ \x20\x83\xb1\x46\x23\xda\x20\x83\xd2\xfc\x6a\xd2\xd0\x68\xba\x3c\ \x8a\x4a\x6c\x24\x38\x42\x11\xb6\x8d\x8d\x6e\x9c\x23\xc7\xca\x4a\ \x4d\xee\xd0\x14\xfc\xc4\x53\x8d\xc0\xaa\xed\x4a\x06\xd8\x81\x52\ \xb2\x90\xc9\x9a\xc2\x08\x60\xfe\xa1\x3e\x2a\x26\x5f\xdc\x23\x3e\ \x3e\xc1\xba\xaa\x58\x48\x4c\x81\x2f\xe8\xc2\x3d\x90\xd0\x55\x0c\ \x83\xcf\x36\x89\x3d\x84\x83\xe5\x94\xa9\xda\xfd\x1c\x52\x11\x6d\ \x9a\x9e\x28\x56\xae\xe0\xa0\xe4\x06\x8e\xb9\x55\x8e\xe1\x46\xae\ \x92\xe6\x8b\xe4\x98\x44\xaa\x60\x0a\x12\x63\xd2\x30\xec\x13\x6d\ \xad\xad\x9e\x88\x39\xa2\xc8\x26\x7e\x81\x54\x24\x6a\xba\x19\x49\ \x70\x76\x58\x57\x74\xa2\x1d\xf4\x8a\xf7\x40\xa0\x2a\x9e\x22\x03\ \xe6\xee\x2f\x31\xe0\xde\xf6\xc0\x2f\x64\x00\x28\x20\xd4\x06\x1c\ \x54\xe1\x26\xc4\xef\x0d\xc3\x0a\x84\xc2\x2f\x34\x25\x66\x76\xa0\ \xd0\x9a\xdb\x82\x0c\xad\xe3\x3e\xae\x78\x72\x86\x15\xa8\xa0\x0a\ \x82\x41\x8e\xd9\x61\x9b\x56\x90\xb6\xe5\x98\x0a\xfe\x6b\x0b\x50\ \x6d\xd2\xf8\x49\xd2\xf8\xaa\x8e\x21\x9c\x83\xd9\xd4\xc3\x20\x27\ \xfb\x3c\x89\xfe\xe9\xa5\xba\xed\xd0\x12\x7a\x8c\xaa\x5d\xab\xb5\ \xbe\xd0\x46\xac\x11\xdf\xb1\xda\x03\x66\xa9\x1f\x48\xe0\xf5\xe8\ \xee\x1b\xc5\x11\x09\xcd\xac\x43\x95\x40\x09\xd8\xc3\xcb\x0d\x03\ \x33\x68\xd7\x03\x0c\x43\x1f\xad\x00\xaa\x3d\xb0\x0f\xb8\xe3\xcb\ \xa5\x61\x99\x92\x8b\xbd\xfe\xb6\x6a\xc6\x4c\xaf\x43\xb6\xdd\xf5\ \x1e\x8d\xf9\x0e\x0a\xe5\x59\x6f\x10\x9e\x0b\xd4\x26\xec\xf8\xd6\ \x29\x09\xbf\xf0\xb0\xe6\xe7\x00\xb1\x55\x1e\x18\x1e\xc8\x4e\x41\ \x9f\xad\x6e\x53\xe8\xd0\x1b\x78\x8c\x61\x8e\x0c\x13\xe0\x42\xfe\ \x9a\x82\x0c\x54\xa8\x58\x80\xc7\xb5\x02\x85\xaf\x88\xc5\xb6\x62\ \xe7\x09\x75\x17\x1c\xfd\x12\x51\x9a\xc5\xde\xae\x80\x17\xac\xc0\ \x03\x3f\xc0\x06\x3c\xc0\x0a\x10\xee\x0a\x68\x17\x26\xe8\x42\x06\ \xfc\x2d\x9d\x71\xc1\xcb\x65\x66\xe1\xf1\x49\xe3\x66\x46\x63\x31\ \x2e\xab\x1a\xde\x43\x32\xc4\xbf\x7e\x54\xf8\x82\x14\xd2\x51\xe4\ \x0a\x7a\xae\x51\x29\xcd\xd5\xaa\x68\xda\x14\x17\x28\xd1\xd2\x38\ \x62\x47\x15\x60\x62\x06\x08\x1d\x5e\xf6\xb0\x53\xec\xca\x58\x88\ \xc5\x08\xcc\x2e\xfe\x6e\x6a\x50\xe2\xc1\x83\x16\x5f\xee\x98\xc2\ \x1b\xe0\x02\x75\x4a\xe0\x1e\x30\x66\x59\x5c\x4f\x16\x5e\x4f\x02\ \x92\x01\x02\x17\x53\x09\xa0\x02\x04\x27\x54\x04\x8f\x98\x76\xa1\ \xda\x2f\x14\xc2\x4c\x62\xc5\x06\x67\x05\x8a\x36\xee\x55\xba\xf1\ \xf4\x76\xe6\x77\xd6\xa9\xed\xd9\xb1\x32\xda\xa1\x1d\x86\xaf\x44\ \x22\x4d\x4c\x3c\x51\xfe\x7e\xee\x46\x19\x8c\xe3\xcf\x26\xd6\x93\ \xe8\x65\x01\x3e\x49\x70\xbe\x90\xdc\xa9\x62\x77\x1c\x92\x21\x99\ \x82\xdc\xc5\xa3\x1b\xf1\xe3\x1e\x60\xea\x03\xda\x81\x2a\x1e\x00\ \x58\x84\x85\x04\x9e\x10\x03\x02\xd3\xf5\x94\xb2\x1d\x29\xf0\x01\ \xe8\x42\x55\x7c\x71\x42\xc1\x73\x2b\x67\x40\x21\x84\x22\xbd\xe2\ \x2b\x08\x27\xd5\x89\x72\x81\x30\x7e\x14\xe4\x1d\x63\x1e\x24\x6c\ \x73\x7d\x80\x72\x04\x11\xa4\xcc\xc6\x0c\xaf\x41\x19\xff\x51\x01\ \xe2\xde\x1c\xbc\xc0\x0a\x2c\xe8\x0b\xe0\x42\xdf\xe0\xca\x5f\x42\ \xe7\x1b\xec\x8a\xda\x56\x69\x73\xe2\xed\x29\x82\xc5\xb6\x92\xab\ \x86\xaa\x22\x19\x08\x4e\x39\x2b\xe7\x1b\xa1\xb3\x3a\xaf\x73\x73\ \x7a\x81\xa9\xa1\x19\xaa\xc5\xb4\x2e\x20\x94\x1e\xd8\x83\x3b\xb3\ \x22\x54\x3e\x65\x3e\xef\xb4\x42\x1c\xed\x1c\x07\x74\x1e\x0c\xc3\ \x8f\x0c\x83\x40\x6f\x06\xd4\xe6\xa8\xb6\x01\x09\xed\x20\xc3\x42\ \xbb\xe1\xdc\xec\xe3\x4e\x66\xe1\x4e\x8e\x45\x3c\x3e\x2a\x2a\xd2\ \x23\x45\x17\x42\x85\x72\xf2\xf5\xdc\x6d\x27\xbb\x6c\x94\xa8\xa2\ \x28\x8b\x35\x3a\x23\x14\x30\xad\xf4\xf6\x28\x70\x10\xbc\x91\x2e\ \x54\x96\x5b\x57\xfe\x16\xaa\x05\x8e\x3d\x70\x71\x78\x82\x27\x4f\ \xf3\xb4\x2e\xff\x2b\x48\x65\xae\x0a\x47\x24\xf8\xaa\x9d\xe1\x01\ \x76\x76\x18\xa4\x3d\x3c\x27\x33\x3c\xa7\x3e\xee\x24\x59\xac\x62\ \x01\xc3\x91\x3e\x76\xeb\xc7\x70\x72\xb8\xe2\xc1\x78\x4c\xa7\x04\ \xfe\xa4\x58\xa3\x22\x58\x68\xd6\x09\x55\x0f\x28\xaf\x00\x5a\xa7\ \xf5\x09\x3d\xc0\xfd\xbe\xf5\xae\xcc\xf4\x03\xd8\x74\x04\xe3\x74\ \x08\x7e\xf0\x5d\xe7\x73\x9f\xa8\xa0\x17\xa8\x9d\xf6\x1a\x15\x83\ \xe0\xb2\x1b\x3a\x43\x06\x6c\x81\x3d\x14\x67\x77\x81\x62\x02\x56\ \x05\x03\xee\xa3\x16\x86\x35\x27\x97\xf3\x65\x4f\xe9\x71\x57\x36\ \x28\x5f\x0f\x27\x73\xf6\x66\x6d\xf3\xde\x96\xb4\x03\xd6\x83\xaf\ \xb8\xf5\x76\x31\xa9\x1e\x34\x15\x09\xb9\x74\x53\xd3\xe2\x78\xbe\ \xb6\x78\x2f\x09\x6e\x67\x85\x17\x30\x43\x3e\x44\x05\x4f\xbe\x80\ \x93\xd6\x9d\x01\xfb\x12\xf6\x3c\xb1\xcb\x92\x73\x63\x16\xe5\x1e\ \x90\x82\xaa\x61\xa7\x78\x34\xb1\x78\x3c\xf1\x58\x8b\xb5\x2f\xb9\ \xd1\x0a\xec\x6d\x09\xe0\x42\x9a\x19\xb8\x81\x3f\x71\xf6\xb8\xb3\ \x04\x5f\xf1\xad\xf1\xf3\xc5\xa4\x4f\x79\x8f\x37\x4f\xa3\x21\x16\ \xf7\xa5\x93\xfe\x16\x67\x16\x86\x32\x9a\x81\xcc\x72\x0b\xb0\x3c\ \x8e\xb5\xa5\xbe\x2c\x27\x47\x09\x76\x4e\xb2\x3e\xea\x6e\x1c\x85\ \xb6\xe1\x94\x00\x77\xc1\x77\x78\x09\x78\x5b\x1b\x78\x80\x5f\x31\ \xbd\xf2\x0c\x2f\x6a\x47\x36\xd9\x35\x85\x4b\x2f\x75\xfd\x9c\xe1\ \x5d\xb1\x17\x07\xf7\xef\x85\xb2\x28\x67\xd6\x1c\x81\x4c\x02\x52\ \xf6\x27\xa3\x33\x30\x1d\x37\x2e\x78\x72\x73\x82\x35\x88\x13\xb0\ \xdd\xc5\x11\x05\x76\xa8\x2f\x5d\x85\xe0\x36\x09\xae\x8c\xd0\x76\ \x9c\x71\x76\xbc\xe1\x1b\x92\xb0\x4b\x14\x5e\x40\x9f\x91\x6b\xff\ \xb8\x8f\x4f\xb8\x89\x2e\x89\x07\xac\xc0\xce\xda\x9d\x70\x07\xb8\ \x77\x91\x18\xaa\x19\xf8\x27\xc7\x91\xe0\xf8\xb7\x28\x03\x93\x84\ \x8e\xf3\x92\x2b\x26\x93\xdf\x6e\xee\x6e\x78\x62\xee\x2d\x2a\xb0\ \x62\x01\xbf\xd1\x1e\xec\xca\x3b\x36\xd3\xcb\x31\x49\x99\x3e\x1f\ \xcf\x8c\x4b\x08\x52\xaf\x4e\xbb\x39\x79\xeb\xcd\x9a\xbf\xf9\x74\ \x4d\x57\x9c\x5b\x47\x17\x47\xf1\x96\x0b\xf8\x77\x09\xce\x65\x5d\ \xd6\x41\x61\x0f\xab\x97\xf3\x38\x0b\xf0\x36\x13\x37\xa1\x4b\x28\ \x2a\xf6\x77\x63\x03\x7a\x1c\x89\x57\x87\x96\x00\xa3\x8b\x58\xc8\ \xd4\xb3\xfe\xe0\xbe\x1c\x6b\x77\x3a\x8e\x7b\xfa\xe3\xe6\x38\x6c\ \xdb\x32\x6e\x37\x44\x09\xfa\x2b\x32\x40\x08\xe1\xa9\x6a\xa9\xfb\ \x9e\xdd\xb9\x51\x06\xb3\xf2\x41\x09\x93\x66\xa1\x19\x76\x7e\x38\ \x39\x43\x31\x63\xbf\x51\xac\x43\xb1\xa0\x03\x53\xf5\x68\xd6\x6f\ \xab\xab\x3f\x96\xc0\xb8\x07\x53\x78\x08\xdf\x02\x5a\xb1\x98\x23\ \x3b\x45\x9d\xdc\xa7\x8f\xf7\x77\x8e\x8e\x71\x5c\xca\x45\x80\x82\ \x06\x32\x75\x16\x22\xaf\xa9\xd3\x3b\x09\x71\x31\x4d\x07\xce\x41\ \x79\x3b\xab\x9b\xf4\xa6\x8e\x47\x67\x9b\x33\x9f\x5b\xa9\x58\x50\ \xb6\x13\x17\xa5\x58\xbc\x38\x68\xef\xad\x66\x5f\x96\x9a\x65\x80\ \xbc\x6f\xf8\x15\x8f\x3c\x3e\x83\x7a\xf4\x96\x67\x9a\xf6\x78\x36\ \x81\x14\xe9\x24\x57\xeb\x35\xc5\x2f\x6c\x41\x1e\xfc\xac\xc0\xc3\ \xd1\x79\xbf\xb3\xcd\xb3\x32\x78\x25\x7c\xf5\x5c\x96\x87\x0b\x8e\ \x81\x6b\x96\x30\x3d\x37\xba\x83\xc5\x95\x66\x29\x23\x83\x4c\x2a\ \x8a\x85\x39\xa7\x73\x87\x52\xc1\xe0\x50\x89\xc7\x78\x21\x88\x75\ \x77\xb6\x5f\x01\x1a\x33\x53\x60\x2b\x7b\xb2\x67\x07\xa7\xe3\x92\ \x07\xcc\xcd\xb2\x42\x0c\xff\x3d\x85\xfe\xb1\x1e\x96\x39\x4a\x78\ \x5e\xfe\xf1\x15\x34\xf6\x02\x12\x7c\x42\x1d\x54\x16\x2b\x7c\xe0\ \x64\x56\x89\x6d\x2a\xe0\x70\xbb\xe0\x8c\x35\xf6\xe0\x0a\xdc\xee\ \xca\x27\x77\x38\x77\x9d\xf5\xde\x6e\x6b\xae\x40\x7a\x80\x33\x60\ \x42\x9c\xf1\x15\x3b\x5f\x89\xd6\x72\x2d\xf7\x73\xa5\x63\xa5\x55\ \xea\x74\x8f\x73\x41\x21\x63\x59\xb8\x5d\x19\xc9\xf9\x84\xa8\xfa\ \xcb\x99\xba\xa1\xd1\x3d\xc1\x15\x93\x7e\xde\x66\x3b\x4d\x9b\xb5\ \x28\x03\xce\x99\x85\xd7\x7f\xab\xfa\x71\x0f\xfe\xae\x33\xe9\x78\ \x58\xab\xab\x01\x7e\x10\xd8\x7d\xc4\xeb\x01\xbb\x7b\x2a\x7e\x43\ \xc9\x08\x0d\x77\x97\x63\x85\x77\xbf\x5c\xf5\x2e\x2e\x56\x1a\x9e\ \x65\xf0\x0c\xf3\x63\x7d\x66\x26\xff\xc5\x94\xf9\x97\xf5\x78\x19\ \x74\x62\xd9\xeb\x84\xbe\xc8\xd3\x18\x94\xc1\x19\x81\x41\x15\x18\ \xa0\xcd\x9b\x7e\x1f\xb9\xb4\xef\x9d\x59\xf0\xd5\xfd\x41\x6d\x17\ \x63\xef\x3a\x64\x0b\xfd\x92\x2f\xe0\x6f\x4f\xbc\x45\x5b\xd6\xe0\ \x3b\xf9\xf5\x10\xf8\x4f\x0a\xdf\x76\x04\x78\x76\x08\xb9\xf1\x2b\ \x3f\x40\x7c\xf8\x00\x86\x60\x41\x30\x2b\xae\xac\x20\xa8\xd0\xcb\ \x07\x2e\x71\x04\x0a\x2c\x78\xa5\xa0\xc3\x38\x0f\xb9\x64\xd4\xb8\ \xfe\x91\x63\x47\x8f\x1f\x35\x5e\x19\x93\x64\x4a\xbe\x7c\x5f\xa6\ \xc8\x90\x31\xe5\x4b\xbe\x29\x49\xe4\xc8\x61\xe2\x50\x23\x98\x0c\ \x4c\xa6\x30\xd1\xb2\x82\x59\x86\x9d\x4f\x56\xac\x00\x1a\xf4\x41\ \x10\x3d\x7b\x90\x22\x0d\xf2\xe0\x81\x1e\xa7\x78\x56\x70\x19\x8a\ \x07\x8f\xd2\x20\x5a\xf6\x50\xd5\x2a\x14\xea\xd4\x20\x48\xf5\x68\ \x15\x4b\x75\xc5\x3f\xb3\x67\xd1\xa6\x55\xbb\x96\x6d\xda\x12\xb8\ \x74\x09\x7d\x32\x37\xe8\x13\x90\xc3\x82\x82\xa1\xc9\xb1\x22\x17\ \x87\x60\xfc\x06\xde\x78\xd1\xef\xc1\x2b\xcc\xae\x20\x03\xa3\x58\ \x20\x61\x90\x8f\x21\x77\xfc\x70\xed\xcb\x97\x32\xd7\x5c\xc6\x94\ \x33\xe6\x0b\x93\x7a\x72\x64\x6c\xd9\xcb\xc5\xe6\xc8\x31\x4c\x98\ \xbc\x49\x22\x63\x44\x21\x5c\x70\x1f\xe0\x89\x0d\x95\x6a\x10\xdb\ \x41\xf0\xe0\xfe\x8a\x7b\x6c\xd5\x3d\x5a\x5e\xe3\xc2\x2a\x6c\x0f\ \x2e\xde\xb8\x85\xae\xe8\x5d\x7b\x0f\x99\x03\x25\x4a\xb4\x95\x3e\ \x7d\x7a\x09\x32\x7a\xe4\xce\xb5\x0b\xf2\xc3\x0a\xbc\xc8\x46\x6f\ \x0c\x1f\x39\xe3\x42\x8a\x5e\xf2\xac\x40\x76\x45\x20\x79\xf7\x91\ \xc1\x6c\x99\x32\x66\xca\x7c\xcd\x32\x5a\xde\x2c\x03\x78\x63\xfe\ \x15\x26\x63\xc6\x18\x81\x89\x11\x3e\xd3\x2c\x26\x19\x5c\x13\x4e\ \x8b\xab\x78\x3b\x40\x2c\x32\xf6\x08\xc2\x41\xb1\x80\xf3\x03\x17\ \x3b\x4c\x79\xc3\x94\xd5\x4c\x41\x10\x97\x0c\xf6\x08\x8b\xaa\xd9\ \xc8\xc2\xe3\x00\x32\xa2\xa3\x4e\xc5\x15\xd5\x2a\x81\x19\x2f\xe6\ \x92\x2a\x32\x2f\x56\x48\xaf\xbd\xf7\x22\xf3\x40\x2f\x30\xbc\x00\ \x23\x8f\x2b\x86\x01\xc3\x83\x8b\x1c\xc3\xd1\x48\x2e\xae\x91\x41\ \x8e\xd5\x7e\x81\x29\xa6\x29\x28\x1a\xaf\xb4\xd5\x74\xca\xc0\x49\ \x03\x35\x5b\xed\x35\x3b\x46\x10\xae\x39\x13\x7d\x4b\x8a\x0c\x3c\ \xc8\xb8\xd0\x14\x2c\xaf\x5c\xd2\x14\xd7\x9c\xd2\xc3\xb6\xd9\x0e\ \x40\x25\x45\x16\xe9\xa4\xb3\x04\xa1\x70\xf4\xe2\xbb\x1e\xc7\x3b\ \xd2\xa3\x88\x06\x6a\xaf\x48\x3f\xdf\x83\x41\x49\xd0\x7c\x18\x43\ \xb3\x31\x90\xf9\x48\x9d\x11\x60\x4a\x42\xa7\x17\x46\x18\x63\x43\ \x2c\x31\x55\xd3\x0e\xe3\x82\x78\x4d\x98\x2d\x71\x19\x01\xc3\x4c\ \x33\x5d\xad\x90\x3d\x74\x09\x51\x0f\xe8\xe6\xac\xd3\x55\x15\x4b\ \x40\xe5\xc8\x0f\xf4\x5c\x4c\x2f\x42\x71\x1c\x14\x57\xf7\xc0\x38\ \x54\x8e\xca\x60\xc2\x8f\xbf\x8e\xca\x30\xed\x0d\x01\x7d\xfe\xfa\ \xf0\x0d\x52\x4b\x7d\xc3\x0e\x98\x4c\xb9\x94\xd4\x34\x33\xb5\x43\ \x18\x2d\x58\x7d\x55\x5b\x16\xa1\x9b\x15\x19\x2f\x68\xbc\x75\xd7\ \x71\xc9\xfd\x93\x09\x27\x5b\xfa\x22\x03\x7b\xb6\xcb\xc8\xb1\xd2\ \x46\x88\x37\x5e\x3f\x7c\xd2\xc2\x8e\x4c\xcf\x64\x56\xdf\x98\x92\ \x48\xc2\x52\x52\xfb\x98\x85\x8a\x6d\x09\xae\xb3\x84\x23\x91\x59\ \xa1\xa1\x88\xca\x6d\xd8\x61\x7b\x16\xad\xe2\xc6\x8f\xaa\x78\xe3\ \x34\x26\x84\x19\xf0\xd8\x4f\x21\xc5\x32\xda\x2c\xf3\xdd\xd7\xc0\ \x24\x70\x31\xe0\x59\x03\xdf\xe8\xa1\x87\x56\x0b\x6e\xb9\xba\x76\ \xdd\x4b\xef\xdb\x8c\x26\x76\xd8\x66\x3f\xd5\x39\x54\x06\x18\x20\ \xb3\xc9\x5f\x26\x32\xc0\x65\x8e\x78\x8f\x1d\xe1\x4c\x6a\x0d\xcc\ \x90\x59\xa4\x97\xb4\xe3\x5f\x98\x7a\xa0\x82\x65\x97\xa9\x6e\xab\ \xdb\x8c\x62\x84\xec\x83\x84\xc1\xd3\xa8\xe6\x9b\xc1\x9e\x71\x84\ \x25\xa7\xf0\x02\xb2\x2b\x52\x03\xfa\x85\x0c\x84\x91\xd7\x94\x31\ \x54\xd3\x37\xda\x24\x42\x4e\x7a\x69\x3f\xfc\xa8\x5a\x6f\x3b\xfd\ \xa4\x15\x3c\x87\xbe\x0e\x5b\xf0\x8f\x56\x60\x62\x8b\xa8\x1e\xfb\ \xe0\x8a\x0c\xea\xd5\xe2\x85\x01\xe3\x0d\xf5\xd9\x7e\xfe\x45\x2e\ \x35\x53\x16\x66\xe9\x61\xef\xcd\x57\x3c\xd8\x4f\x64\x82\x9c\x98\ \xe1\xc1\x49\xe7\xa8\x4f\xd3\xaf\x70\xbc\x0c\x23\xec\xd1\x22\x83\ \x2e\x23\x17\x26\x68\x51\x99\xae\x5c\xb3\x94\xa5\xe6\x5c\x77\xea\ \x62\xed\x3b\xa8\x19\x1a\xa2\x99\xe1\xd3\x4b\x2f\x7e\x23\x75\x50\ \xdb\x42\x0b\x2d\xb6\xc8\x60\x68\x51\xbb\xf4\xe9\xd3\x0c\xee\xb5\ \x3d\xcb\x7e\x57\x9e\x7a\xf7\xed\x5b\x7c\x0c\xdc\xf1\x3e\x48\x6f\ \x05\x40\x89\x37\xde\xfc\x9a\x34\x41\x2d\x83\xb5\x87\x16\x3a\xd4\ \x63\x71\x69\x1b\x17\x4a\x55\x73\xf6\x4a\xa6\x93\xc0\x5b\x7b\xee\ \xf9\x77\x4b\x23\xa0\x60\x04\x2e\x01\xfe\x69\x18\x57\xf8\x1e\xad\ \xca\x77\x3e\xe3\x75\xa7\x79\x2f\x60\xde\xda\x32\xe0\x00\x5c\x0c\ \x68\x43\xf2\xc2\x85\x1f\x2c\xf5\x86\xf8\xe1\x02\x5a\x72\xa8\x1b\ \xe6\x06\xd6\x3f\x11\x4e\x67\x3b\xdd\x19\xc6\x30\x9e\x30\x40\xd3\ \x09\x84\x46\x66\xf3\x4b\x02\x15\x58\xbc\xd4\xb1\xc1\x27\xad\x33\ \x02\x33\x5c\x37\x87\xf7\xf5\x6b\x0c\x7e\x88\x57\xa4\x62\x80\x0b\ \x16\x1c\x4d\x35\x49\x88\xda\xca\x46\x98\x44\xe9\x78\xae\x3b\xe0\ \x4a\x5c\x7b\xbe\x17\x43\x29\x76\x04\x0c\x5a\x28\xfe\x83\x16\xaa\ \x90\x01\x36\xec\x04\x0c\x07\xd0\x82\xbc\xec\x20\x83\x7e\xc5\xeb\ \x64\x4b\x4a\x82\x86\x9c\xd5\x87\x6c\x29\x91\x8d\x6c\xb9\x9a\x54\ \x60\xc6\x17\x17\x96\x87\x3d\x53\xb4\xe3\xe2\xd6\xb7\x02\x75\xe0\ \x50\x1d\x76\x79\x02\xfd\xe0\x46\x39\x53\x90\x71\x59\x31\x61\x01\ \x0b\x42\xd8\x46\x45\xba\xd1\x73\x90\x51\x61\x46\xbc\xc0\x0c\xc4\ \xd9\x51\x81\x60\x80\x14\x6b\x32\xc0\x0c\x75\xc8\x45\x2a\x46\x78\ \xdd\x08\xe2\x66\x46\x2e\x8d\xc0\x0f\x4b\xd0\xdc\x22\x51\x69\x35\ \xf2\xcc\xd1\x6b\x0a\xe9\x53\xe0\x28\x59\x2e\x7b\xf8\x2a\x09\x73\ \x58\xde\x15\xfc\xb8\x02\xc7\x85\xea\x7e\x46\xcc\x5d\x2a\x81\xb9\ \x96\xde\x25\x8e\x95\x21\xc9\x8b\x64\x46\xb7\x42\x18\xc6\x52\x3c\ \xf6\x18\x1b\x9a\x48\xf6\x82\x15\x1c\xc0\x08\xc0\x61\x02\x2e\xde\ \x90\x4d\x3f\xac\x31\x98\xdd\x44\xcb\x30\x8d\xf4\x04\x2d\x4c\x21\ \x5e\xcc\x50\xe6\x47\xc8\xd7\x18\x66\x72\x47\x0b\x85\x9c\x16\x80\ \x4c\x33\x02\x03\x44\xcd\x9b\xf5\x74\x63\x47\x06\x08\xae\xf1\x6d\ \xc4\x67\x4e\x1a\x81\x42\x9e\x00\x38\xf0\x01\x4a\x47\x7a\x89\x88\ \x07\x34\xa2\x2b\x3b\x56\x41\x51\xb6\xb3\x83\xfe\xca\xf6\x67\xcf\ \x7a\x36\x12\x92\x78\xc1\x0b\x33\x30\xaa\x30\xa0\x7c\x11\x53\x63\ \x10\x8e\xd7\x46\x53\x50\x1e\xf1\x08\x5c\x23\x55\x88\x07\x2c\x82\ \x11\x4a\x3e\xa1\x58\xb6\x8b\x5a\x44\x25\x6a\xcf\x37\xea\xc9\x3b\ \x0a\xcb\xe8\x07\x9e\x60\x8f\x86\x96\x8a\x09\xe3\xc3\x69\x45\x06\ \xf2\x84\x91\xea\x29\x21\x08\x51\x8f\x42\x18\xa3\xce\x29\x7e\xc0\ \x4a\xfa\x3a\xe3\x36\xa1\x13\x53\xa9\xde\x93\x66\x02\x04\x17\x5e\ \x1c\xf2\x84\x29\x88\x6c\x0c\x19\xc0\x13\x18\x84\x2a\x54\xb0\x1a\ \x26\x28\x55\x30\x2a\x90\x16\x83\x0c\xb5\xaa\x53\xa1\xa4\x2b\x43\ \xed\xfc\x70\xc8\x53\x4e\x95\xae\xc2\x14\x8f\x55\x15\x26\x95\x20\ \xf8\xca\xa9\x73\x00\xab\x54\xc0\x3a\xbe\x1e\x35\x04\x19\x30\x60\ \x06\x0c\x56\x80\x58\x03\x0e\x96\x61\x44\x3a\x1f\x18\x76\x9a\x25\ \x88\xd6\x95\xb2\x6e\x94\x15\xcd\xb8\xe0\x44\xbb\x78\xe1\x01\x23\ \xb1\x1e\x2e\xfa\x58\x93\xb0\x02\x2e\x61\xe9\x41\xac\x7a\x68\xe2\ \x58\x8c\xa8\x76\x70\x5e\x68\xaa\x66\x10\x99\xc8\xca\xce\x36\x2d\ \x97\xd5\x08\x2b\x57\x10\xd9\xca\x9d\xf1\x05\x07\xe0\xa7\x78\x22\ \xe2\x85\xbf\xa5\x34\xa5\xe8\x1c\x4f\x5b\xfe\xdd\xc3\xd4\x7a\x9c\ \xd1\x0e\xdc\xa4\xed\x73\xcf\x42\x51\xc1\x70\x61\x05\xcf\xb4\x5e\ \x96\x98\x60\x84\x38\x3e\x51\xa9\x44\xfa\x80\x63\x00\x35\x98\x71\ \x39\x6f\x16\x4b\x80\xee\x79\x85\xb9\x5d\xea\xbe\xf6\xba\x06\x92\ \xc1\x1c\x8c\xa0\x10\xad\x7d\x00\xa5\x16\x11\x48\x7d\x31\x42\xbe\ \x86\x7d\x00\x15\xbf\x44\xef\x7f\xa3\x2b\x5d\xa9\x6c\xb5\xbd\xd3\ \x8a\xc1\x0b\xaa\x40\x90\x17\x0a\xcf\x2f\xdf\x5a\x4c\x44\x6c\x95\ \xce\x64\xae\xd6\x5d\xe4\xc1\xa9\x73\x01\x9c\xe1\x12\xc4\x91\xbd\ \x05\x66\xd6\x4a\x6e\x62\x8f\x28\x72\xc1\x03\x47\x35\xa0\x5e\xbe\ \x45\x13\x15\x03\x8a\x30\x2d\xf6\x0b\x6b\xf9\x02\xd3\x0c\xff\x77\ \xc3\xff\xb3\x47\xed\x3c\x8c\xa9\x60\x4d\x21\x03\x30\x40\xf1\x60\ \x5d\xb9\xb5\x57\x36\x36\x22\x17\x09\x2f\x47\x2c\x81\x8a\x19\x2f\ \x99\x91\x1a\xb9\x06\x8e\x73\xac\xaf\xae\xda\x83\xca\x2b\x30\x2b\ \x78\xf8\x44\xdf\xf0\x84\x57\x50\x0f\xb9\x11\x44\x50\x21\x27\x26\ \x8f\x39\xbd\xd4\x7d\x49\x94\x73\xbc\x9a\x31\xfc\x82\x33\xf6\x70\ \x86\x55\xc3\xb1\x30\xfd\x56\x98\xce\xe5\xc1\x30\x99\xf1\x1c\xab\ \xdc\xa2\x99\xcf\x23\x93\xc1\xba\x98\xfe\x11\x0e\xf5\x08\xf0\xc8\ \x19\xf1\x80\x07\x1a\x05\x06\x25\xe3\x99\xd1\x56\xeb\x58\x9f\x21\ \x7d\xa0\x5f\x30\xc1\x1e\x81\xfe\xd6\x30\x40\x87\x8c\x43\x23\xc3\ \x19\xf6\x38\x40\x30\x64\xdc\xe8\x3c\x43\x39\xd2\x1e\x66\xd2\x14\ \xec\xc1\xb8\x75\x51\x39\x14\x64\xa0\x82\x6c\x45\x1d\x6b\xb7\x50\ \xa1\xd4\xb5\x36\xd0\x72\x97\x2b\x83\x31\xdc\x59\xd6\xbd\x36\x0b\ \xad\x6d\x1d\xec\x18\xf8\x61\xae\xbe\x36\x76\x8b\xaa\x17\xec\x3e\ \x27\xa1\xbc\xa1\x3e\xb6\xac\x4b\xd0\x03\x65\xf3\xb9\x0f\xf4\x7c\ \xf6\xb5\x85\xd9\x03\x52\x4f\x5b\xc7\x49\xe0\x35\xb6\xc1\x5d\x82\ \x18\x70\xbb\x72\xc3\x2e\x36\xb8\xd1\xdd\xa2\x3e\x70\x1b\xc7\xcc\ \x46\x62\xba\xe1\x9d\x6d\x72\x63\x2a\x06\xaf\x86\x75\xbc\xf1\x1d\ \x5d\x77\x5e\x77\xdb\xb7\x4b\x59\x54\xf3\x1d\xf0\x16\xcd\x62\xda\ \x6f\x38\xa4\xc0\x11\x6e\xb5\x7e\x5f\x37\x73\xf7\x4e\xf8\xc3\xff\ \x51\x82\x85\x8b\xec\x0d\xaf\x76\x36\xc4\xf3\x0d\xec\x1c\x67\x33\ \x7b\x18\xf7\xf8\x5a\x34\x7e\x5d\x83\xab\xf1\xe3\x25\x17\x26\x29\ \x18\x6e\x6d\x93\xaf\xfc\x9b\xd2\x16\x59\x12\xa4\x76\x71\x96\x27\ \xbc\x04\x54\xa8\xdd\x1b\x62\xd0\x24\xf1\x99\xef\xdc\x2d\x7e\xc0\ \xd2\x1b\x02\x26\x73\x9e\x7b\xbc\x04\x2c\x88\x09\xb1\x55\x3e\x74\ \xa5\x7f\x33\x73\x00\x5f\xfa\xd3\xa1\x0e\xe0\x80\x00\x00\x21\xf9\ \x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\ \xff\xff\xff\x1d\x86\xa4\xff\xff\xff\x92\x8a\x49\xff\xff\xff\xff\ \xff\xff\xd8\x88\x8c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x5e\xc8\xf5\xff\xff\xff\xd4\xc8\x9d\xff\xff\xff\x5f\x8b\x45\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x5d\x87\xb3\xf4\xe7\xb6\xff\xff\xff\x54\x68\ \x1d\xff\xff\xff\xff\xff\xff\x14\x28\xa8\xff\xff\xff\xd7\xc8\xe3\ \x0f\x27\x67\xff\xff\xff\x09\x68\x99\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xf6\x89\xb8\xff\xff\xff\xb8\xa9\xb7\xff\xff\xff\xf7\xa7\ \xb8\xff\xff\xff\x13\x2a\xe1\x9b\xf2\xfc\xff\xff\xff\xfa\xc8\xe4\ \xef\x68\xa5\xff\xff\xff\x4e\x68\xf8\x22\x45\xea\xff\xff\xff\xff\ \xff\xff\xd9\xe9\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x98\xc8\ \xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7b\x87\xa9\xff\xff\xff\ \xb3\x68\xac\xff\xff\xff\xf7\xb2\xf1\x79\x88\x3c\xff\xff\xff\xd8\ \x88\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf9\xe8\xf1\xff\xff\xff\xff\xff\xff\xb7\xb3\xf2\xb6\xc8\xf2\ \xff\xff\xff\xff\xff\xff\x6c\x6a\xe6\xff\xff\xff\x2b\x2a\x19\x4b\ \x4a\xe2\xff\xff\xff\x39\x56\xf7\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x97\xb1\xf8\xff\xff\xff\x11\x38\x68\xff\xff\xff\xd6\xd8\xeb\ \x09\x17\x62\x95\x94\xf5\xff\xff\xff\xff\xff\xff\x57\xa8\xe5\x5c\ \xb8\xec\xff\xff\xff\x3b\x64\xf5\xff\xff\xff\xfa\xd8\xeb\xff\xff\ \xff\xff\xff\xff\x7d\xf4\xfc\x4f\x29\x19\x74\x88\xf8\xff\xff\xff\ \xfb\xd0\xa6\x94\x26\x24\xff\xff\xff\xff\xff\xff\xfb\xfd\xfa\xb9\ \x8e\xf4\xda\xae\xf8\xb3\x68\xed\xb7\xd8\xfa\x33\x49\xec\x7d\x95\ \x44\x3c\x67\x93\xff\xff\xff\xfb\xb8\xbd\xff\xff\xff\xdb\x98\xf4\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xc1\xe5\x99\xff\xff\xff\xff\xff\xff\xf2\x2c\x2c\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x8c\x29\xc4\xff\xff\xff\xff\xff\xff\x92\x6e\xf7\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xa6\x18\x5c\xff\xff\xff\xe9\x56\x98\ \x79\xcb\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x94\x56\xf2\xff\ \xff\xff\x78\xb3\xf8\xff\xff\xff\xb8\xf3\xfc\x36\x4e\x17\xfa\xae\ \x89\xff\xff\xff\xf7\x92\x8d\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x4e\x1a\x3e\xf7\xf7\xbc\x9f\xb5\x77\xff\xff\xff\xf3\ \x79\xb3\x99\xd8\xfc\xb8\xb7\x80\xff\xff\xff\xd7\xd7\xa6\xff\xff\ \xff\xff\xff\xff\x42\xb5\xed\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x14\x5e\x0c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\ \x75\x26\x18\x35\xa2\xff\xff\xff\x12\x78\xaa\xff\xff\xff\x8f\x7a\ \xa0\xd0\x79\xa1\x19\x37\xe0\xff\xff\xff\x59\x76\xfa\xff\xff\xff\ \x93\x58\x5e\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4b\x59\x65\xff\ \xff\xff\x68\x7a\xf4\xff\xff\xff\x47\x5b\xf5\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb4\x58\xb3\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x70\x59\xa5\xff\xff\xff\xff\xff\xff\x71\ \x59\x6d\x70\x5a\xf4\xff\xff\xff\x71\x37\x58\x95\x98\x51\xdf\x97\ \x96\x98\x98\xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xd9\xfc\xfc\x7d\x97\xad\xff\xff\xff\x6e\x78\x28\xff\xff\xff\xff\ \xff\xff\x98\x99\x76\xac\x78\x44\xff\xff\xff\xff\xff\xff\x7d\x97\ \xfb\xb1\x78\xf8\xff\xff\xff\x68\x59\x17\xff\xff\xff\xff\x00\x00\ \x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\ \xb0\xa1\xc3\x87\x10\x23\x16\x4c\x44\x51\xa2\xc5\x8b\x18\x33\x6a\ \xdc\xc8\xb1\xa3\xc7\x85\x89\x3a\x51\xe9\xf4\xb1\xa4\xc9\x93\x28\ \x53\xaa\x8c\x18\x12\xdd\x1e\x11\x5d\x56\xca\x9c\x49\xb3\xa6\x4d\ \x83\x14\x3b\xc5\x09\x80\xac\x8b\x4f\x92\x37\x83\x0a\x1d\x4a\xb4\ \x61\xc8\x72\x64\x02\xf0\x84\xd9\x85\x4a\xd1\xa7\x50\xa3\xce\x6c\ \x79\x81\x17\xaf\xa5\x3e\x7d\xc6\x91\xca\xb5\xab\x57\x96\x21\x77\ \x5a\xbd\x2a\x42\x84\x31\x98\x65\xd1\x25\xfa\xca\xb6\x6d\xdb\x90\ \xd4\xaa\xf2\x4a\x1a\xa0\x6c\x97\xb2\x78\x45\x00\x75\xcb\xb7\xaf\ \xd0\xa3\x72\xe7\xd6\x35\x9b\x97\x27\x32\x11\x7b\xfc\x2a\x5e\xac\ \x32\x2c\x99\xb1\x4a\xed\xe2\x45\xa6\x34\x72\xd9\xbd\x8c\x33\x6b\ \xb6\x78\x34\x00\xaf\x32\x0b\xe6\x1e\x36\x76\x57\x04\xe5\xca\x58\ \x9b\x6e\x5e\xcd\x5a\x21\xc5\x44\xd0\x2e\x24\x05\x1d\xfa\x70\x59\ \xca\x82\xaf\xa6\xd6\xda\xba\x77\xef\x90\xd0\x74\x80\x0a\xfd\xb9\ \x0c\xaf\xc3\xa5\x3d\x3f\xa6\xdb\xf3\xae\x4f\x11\x6a\x7d\x4b\x67\ \x7c\x34\x1e\x28\x5b\x6c\x16\x94\x31\xce\xf3\xb9\x08\xe5\xda\x93\ \xfe\x36\xcf\x5a\x7a\xed\xf4\xf3\x6c\x5f\x97\x93\xcd\x6b\x41\x78\ \x32\x64\x90\xa3\xc5\x4d\x66\x81\x78\xb4\x59\x6f\x27\x46\xcf\x5f\ \x2a\xc5\x38\xdb\x6d\xb7\x80\x29\x65\x30\x87\x9f\x69\xf0\x91\xb1\ \xdd\x71\x76\xe5\x67\x1a\x32\xc8\x60\xd6\xdf\x84\x36\x01\x17\x8f\ \x7b\x18\x0e\x47\xc6\x05\x4a\xf5\x54\x96\x52\xf0\x81\x56\xa0\x7c\ \xf8\x75\x71\x1a\x32\xd4\x50\xa8\x22\x4d\x54\x19\xa7\x1d\x68\xc3\ \xd9\xd7\xa1\x69\x01\x24\x98\x20\x87\xf2\x95\x86\x57\x8d\x91\x6d\ \xb5\xe2\x8f\x26\xe5\x04\x8d\x55\x01\x16\x49\xd7\x52\x10\x82\xd8\ \x61\x6a\xb7\x41\xf8\x21\x88\x94\x89\x63\x1e\x90\x54\x66\x04\x1c\ \x10\x8f\xb9\x27\xe2\x82\xcc\x9d\x98\x97\x6d\x4c\x99\x58\x19\x84\ \x49\x9e\x96\xa0\x32\x55\xa6\x29\xd1\x7f\x3e\x88\x18\x9a\x80\xc5\ \xe9\x56\x19\x7c\x17\x1c\x18\xe6\x77\x82\xd9\x76\x9a\x52\xc5\xc1\ \x37\xa5\x9a\x80\x22\x94\x13\x35\x9e\x11\xf7\xa6\x76\x63\xc9\xd9\ \xde\x75\x0b\xd4\xe5\x1c\x53\xdf\x15\x38\xd8\x93\x57\x29\x08\x0a\ \x28\xa6\x5c\x20\x4e\xa0\x9c\xe2\x04\x8d\x32\x8f\xb5\x87\x61\xa2\ \x56\x85\x6a\xd5\x02\x97\xda\x02\x4a\x19\x8e\xea\x78\x57\x00\xfe\ \x17\xc8\x47\x5f\x88\x97\x9a\x92\xd4\x05\x12\x76\x5a\xe5\x7f\x17\ \x5e\x8a\xe1\xa8\x8a\x7e\x36\x60\xaa\xc3\x59\x96\x9f\x73\x8f\xd2\ \xc7\x8b\x29\x2f\x4a\xfa\xdd\x05\xd0\xfc\xa9\xeb\x8f\xaf\x29\x93\ \x9d\x7b\x6c\x5c\xeb\x9e\x9c\x9e\x95\x71\xe9\x70\xdf\xb2\x8a\x9c\ \x77\x65\x81\x90\x5f\xb7\xdb\x5d\x5a\x06\x81\xb6\x82\x29\x82\xb4\ \xd3\x52\x98\x48\x1c\xeb\x80\xd2\x02\x1b\xc3\x65\xa7\xad\x55\x9e\ \x9d\x8a\xaf\xaf\x1a\x76\xa7\xa3\x6d\xa5\x89\xf9\xd9\xaa\xea\x1a\ \x69\x58\x5a\xf1\xaa\xf8\x5f\xbd\xa0\xb0\x71\x6f\x8c\xc0\x5e\xe5\ \xaf\xaa\xa8\x86\x37\x69\x72\xf7\xd1\x58\x59\xa9\x01\x12\xe8\xed\ \x7b\xf0\x21\x73\x01\xbc\x0d\xff\x46\x91\x01\xaa\x7e\xdb\xc2\xa8\ \xc4\x79\x56\x28\xbe\x18\x0b\xc8\x2a\x5a\x85\xd1\x45\x63\xa8\x20\ \x0a\xbb\x2a\xaa\x2d\x73\x07\x5f\x00\xe5\xa4\x7c\x5e\x22\x9f\xa8\ \xb0\x04\x2a\x2d\xc4\x38\x1c\xa9\x89\x2e\x90\x2d\x1b\x35\x6b\x19\ \xdf\x7c\x86\x41\x59\xa3\xb7\x92\x2a\x47\xec\x75\x2d\xa8\xda\x25\ \xac\xb9\x1a\x4d\x1d\x45\x28\xc0\xa3\xb6\x0d\x2d\xf3\xdc\xaf\xa8\ \x53\x4f\xed\xb4\xb3\xb7\x05\xd0\xf5\xd0\xf0\xd9\xbb\xea\xfe\x55\ \xc8\x58\xea\x72\xd8\xa0\x58\x56\x77\x74\x66\x67\xf6\x1a\x34\x78\ \xd8\xa0\x36\x3c\xb6\x08\x67\x8b\x7d\x16\xc3\x2d\x75\xb6\x13\xa3\ \xba\xea\xd5\x1f\x16\x27\x29\x7c\x07\x03\x7e\x39\x6e\x30\xb6\x00\ \x38\x83\x93\xd5\x88\x0c\xca\x85\xbf\x95\xc8\x32\xeb\x38\xf1\xc5\ \x12\x74\xc0\xc3\xb6\x2d\xb6\x84\x8d\xb1\xd4\xb8\x53\x2d\x31\xbe\ \xd7\x8a\x46\xa6\xdd\x0a\x16\x98\xd4\x5c\xde\x5e\x77\x69\xd3\x47\ \x5a\x3a\xfa\xa4\x94\x6d\xa8\x54\x8a\xa9\xf3\x95\xd3\x32\x28\x54\ \xef\xba\x0d\xb1\xc3\x83\x87\x2d\xa8\x74\x2f\xfa\xbd\xf7\x5a\xee\ \x6b\x68\xc4\x89\xc7\x27\xa2\x3c\x02\x9f\x2e\xa6\xc6\xcb\xc8\xb9\ \xe5\x32\x1a\xb6\xe7\x52\xef\x46\x9f\xde\x7f\xe5\x28\xa3\x7f\xeb\ \x5f\x60\x6f\x43\xf7\xdb\x43\x05\xed\xbe\xd7\xb4\x96\xed\xed\x54\ \xa5\xaa\x11\x91\xba\xc6\xa7\xfa\xac\x2b\x61\x04\x8a\xcf\xd6\x7c\ \x75\xa4\x85\x91\xa9\x6e\x45\xb3\x5f\x57\x28\xf2\x09\x03\xe8\x4f\ \x7f\xf9\x5b\xc7\x13\x3e\xd0\xbf\xed\x6d\x4f\x55\x65\xa8\x5d\xed\ \x44\x87\xc2\x02\xd9\x4c\x30\x35\x5a\xce\x9c\xec\xb6\x2e\xf1\x85\ \x88\x2e\x96\xd2\xce\x92\x16\x46\x2e\x10\x91\x01\x75\xfe\x1a\xac\ \x10\x45\xee\x61\x00\x7b\xa0\x40\x1d\xf6\x50\x87\x32\xca\x21\x0e\ \xeb\x39\xc1\x09\x4f\xd0\x41\xe3\x4c\x61\x0a\x50\xe8\x40\x8a\xdd\ \x63\xda\x15\x85\x13\xc1\xe4\xcd\xe5\x31\x34\xcc\x58\xf1\x2e\x45\ \x27\x1b\x71\xa9\x43\x5e\x3a\x97\xdf\x4c\x11\xad\x20\x12\x85\x83\ \xb7\x50\x81\x3a\xd4\x81\x02\x03\x54\x4f\x7f\x46\x74\x42\xf5\xd6\ \xb1\x0e\x1d\x6c\xc1\x14\x57\xc4\x03\x1e\x84\xd3\x82\x2c\x02\x50\ \x07\x99\xe2\x91\xc5\x14\x14\xa2\x05\x60\xac\x8a\xea\xa2\xcb\x5c\ \x56\x05\x1a\xce\x0d\x8d\x47\x24\x0a\x00\xaa\xc2\x56\xa0\x93\xb9\ \xf1\x26\xaf\xf9\xc4\x3d\x58\x31\xc7\x24\xd6\xd1\x83\xf7\x58\x07\ \x1d\xf7\xc8\xc7\x75\xc4\xc3\x14\x4f\x50\x1c\x3c\x9e\x60\x0a\x3c\ \xa0\xe2\x7f\xff\xc3\xc3\x16\x38\xe4\xc3\xe2\x89\xcc\x5e\x06\x8c\ \xa4\xf3\xc8\xa0\xb7\xcb\x05\xef\x92\x82\x0b\xc0\x75\x50\xe8\xbc\ \x4d\x7d\x72\x2a\xaf\xb9\xc7\x32\x0c\x50\x44\x6a\xde\xe3\x1e\xf6\ \x50\xc6\x3d\x80\x70\x0f\x14\xd8\x63\x1d\xca\xc8\xa6\x32\x5c\x29\ \x42\xec\xd1\xc1\x06\x3a\x88\xa5\x0d\x6c\x20\xc8\x5d\xee\xe1\x9d\ \x96\xa2\xdd\xa5\xa4\xe8\xb9\x17\xd9\x88\x0c\xa6\xfe\xa8\x1d\x28\ \xcc\x78\x49\xd9\x58\x86\x86\x5d\x4b\x92\x27\x9f\xd9\x98\x90\x24\ \xe2\x1e\x30\x20\xa2\x01\xae\x09\x8d\x7b\x40\xe3\xa1\x0d\xd5\xdf\ \x3d\x3e\x18\xce\x70\xf2\xf1\x09\x4b\x58\x82\x0d\x9e\xc0\x51\x3c\ \x70\xd4\x95\xef\xdc\x03\x20\x4f\x68\xc5\x65\xc6\x68\x3b\x78\xc3\ \xe7\x32\xc5\x06\x2b\x3a\xd5\x85\x32\x17\xa4\x0c\x03\x7f\x47\x06\ \x20\x10\xf4\x24\xaf\x99\xd7\x41\x0f\x2a\xca\x65\x38\x14\x1a\xe8\ \x78\x68\x50\x1b\x7a\x8f\x72\x94\x03\x1a\x46\x9d\x28\x34\x7c\xc0\ \x47\x27\x7c\x40\x8f\xad\x6c\xa5\x0f\xc4\x71\x81\x75\x24\x8e\x69\ \x06\xe4\xa2\xa5\x50\x8a\xcf\x07\x4a\x11\x0f\xfb\xa4\xa2\xad\xd0\ \x98\x33\x64\x92\xc1\x19\x5f\x2c\xc3\x16\x80\x78\xd3\x35\xfd\x87\ \xa7\xf7\x80\xcd\x41\x1b\x0a\x8d\x38\x3c\x34\x0e\xfd\xb0\xab\x43\ \x95\x01\x51\x74\x94\x03\x1d\x80\x35\xea\x07\xf9\xa8\x3f\xa6\xae\ \xc3\x07\xca\x60\xea\x16\x04\x29\xc8\x96\x69\x75\x8d\xdf\x12\x6b\ \x3e\x1b\x27\x45\xb1\x71\x28\x29\x7b\xa0\x4c\x55\x64\x48\x2b\x62\ \xd9\x62\x19\x6c\x6d\xab\x43\x72\x12\x87\x6b\xc2\x75\xae\x10\xad\ \x6b\x6a\x21\xfa\x53\xc0\xa2\xa3\x1f\xae\x45\xfe\xea\x07\x3d\xa8\ \x3f\x14\x80\xd3\x07\x86\x8d\x47\x20\xc3\x26\xc0\xc7\x41\x52\x55\ \x5c\xb4\x15\x3e\x21\x39\x4f\x5b\x24\xd2\x9f\x2d\x4d\x50\x65\xd0\ \x0a\x4c\xdb\xd1\x2e\xb4\xa2\x75\x8d\x41\xe3\x30\x2f\xa2\x1e\x34\ \xae\x0c\xb5\x2b\x5d\x57\x7b\xd7\xd8\x06\x55\x9a\xfa\xa3\xa6\x6d\ \x0d\xb0\x0e\xdb\x12\xd6\x07\x7b\xc0\xad\x0e\x6c\xf9\x3f\xda\x0d\ \xb0\x65\xc2\x1d\xee\x80\x50\x4a\xc5\xa4\x7c\x68\x43\x21\x12\x9e\ \x22\xbd\x55\xc8\x15\xb6\x00\x0f\xeb\x88\xae\x5b\x13\x01\x03\xd8\ \xd8\x55\xae\x0d\x2d\xed\x43\x61\xa3\xda\xd5\x6a\x17\xa2\x0f\xe6\ \xa6\x01\xd4\x61\x80\x3a\xcc\x91\x75\x13\xae\x03\x79\xc1\xa9\x0c\ \x71\x30\xf5\x09\x8d\x5d\xa1\x00\x31\x85\x5f\x2a\xd6\x2a\xa5\x01\ \x78\x89\x08\x2e\x20\x3c\xd9\xd8\x88\x59\x08\xf3\x6c\xf7\x6c\x31\ \x50\x01\x33\x24\x9a\x0b\x15\x25\x83\x15\x6c\xe0\xd4\x3e\x58\xb5\ \xda\xfd\x44\x6a\x7f\x0a\x04\x20\x2c\xe3\xc8\xd4\x34\x80\x91\xed\ \x38\xcd\x3a\x26\x16\xb7\x4c\x4d\xe7\x15\xbd\x77\xa9\x2f\x4e\xf6\ \x72\xa8\xe1\xe5\x19\x64\x23\x5c\xb4\xc2\x27\x9f\x9e\xfb\x16\xd8\ \x04\x48\x06\xe8\xd8\x18\x24\x21\xe9\x20\xfe\x0c\x60\xf0\x89\x9d\ \x62\x17\xb5\x10\xbe\x6b\x9c\xeb\x2a\x4d\x9f\x7a\x03\x1a\x46\xbe\ \x87\x37\xf4\xbc\xcd\x69\x1a\x00\xc9\x26\x50\xc7\x1f\x56\x49\xdb\ \x71\x6e\x61\x0b\xeb\x85\x87\x00\x33\x96\x4f\xac\xee\xb3\x32\x1c\ \xe2\xc5\x05\x38\x54\xc5\xf8\xe6\x0d\x98\xc3\x81\x91\x0a\x5b\x50\ \x86\x0b\xcc\xc0\x5c\x65\x3b\x73\x4e\xef\xf1\x89\x84\xce\xd5\xcd\ \x44\x6d\x28\x6c\x7e\x2a\xe7\x56\x8b\x52\xc8\xa4\xd6\xf3\xab\x81\ \x00\x03\x6a\xce\xd1\x00\x2a\x50\x81\x10\x72\x5d\x04\x3a\xd6\x81\ \xc3\xe5\x05\x31\xdb\xf6\xc9\x5f\x2a\xc7\x2f\x86\x73\xb1\xb2\xad\ \xdc\xf0\x65\x31\x53\x32\x55\xb6\x63\x95\x31\x3a\x60\x0c\xa2\x41\ \xf7\x99\xa3\x4e\x04\x2b\x60\xc0\x0a\x37\x5f\x17\xae\xb0\xde\xee\ \x8f\x1f\xcc\xd0\x58\x73\x73\x19\xdc\xac\x35\x2b\x72\x6d\x82\x5c\ \xab\xc0\x04\x81\x56\x47\x11\x26\xfc\xe7\x75\xd4\x01\x05\x4e\xa5\ \x25\x97\x0b\x09\xb8\xcd\xc5\xf0\x86\x64\xd0\x47\xc0\xbf\x9c\xcf\ \xc8\x3e\xb0\x76\x23\x66\xd5\x0c\x7c\x82\x8c\xb9\x5c\x3b\x88\x39\ \x49\x84\x01\x76\xca\x0a\x56\xe8\x38\x5a\xb1\x6e\xa8\x28\xb7\xcb\ \x50\x88\x6e\x9c\xd4\x0d\x4d\x68\x4f\xfe\xff\xbc\x0c\x75\xaf\x5b\ \x05\xeb\x6e\xb7\xca\xe1\x4d\xf2\x23\xdb\x1b\x05\x76\xe0\x68\x3c\ \xf0\x49\xbb\x6b\x09\x2f\x41\xc4\x5b\xd7\xba\xee\x59\xc5\x60\xa6\ \x8a\x69\x01\x1b\x0d\x82\x02\x80\x26\x1b\xe7\xb4\x83\x6d\xd6\x36\ \x2b\x26\x7e\x60\x8c\xc3\xf5\xae\xac\xb6\xeb\xc7\x37\xee\x67\x5b\ \x4f\x78\xe9\xa4\x74\xb7\xd6\xdd\xad\xf2\x23\x7b\x7d\xc2\x76\xf8\ \xc0\x53\x39\xea\xde\xfc\x1a\x47\x40\xbf\xac\xe2\xce\xf5\x01\xe3\ \xe6\xba\x57\x85\x23\xa2\x4c\x59\xce\xf2\x1d\x67\xd4\xf8\xa6\xa1\ \x5c\x59\xb7\x49\x5d\x71\xb9\xc6\x41\xaf\xa2\x14\x79\x9c\x19\x4c\ \x54\x51\xd6\xd9\xd6\x73\x94\xa3\x3a\x48\x79\xf2\x76\xeb\x5a\x05\ \x7d\xd8\xf5\xbb\x4d\x50\x0b\x36\x2f\xb9\xdd\x76\x08\x3b\x47\xd9\ \x29\xb6\x07\xd2\x0a\xbe\xa8\xa2\x62\x0d\x53\xa5\xc2\x01\x72\x32\ \x56\x1e\x93\x5f\x72\x6d\x8a\x77\x8a\xa8\x02\x0e\x39\xde\x36\x9b\ \x2b\x5e\x60\xd5\xca\x15\xa1\xb8\x37\xb0\x43\x7f\x1a\xeb\xc3\x23\ \xbe\x0f\x2a\x50\x85\x3a\x14\x8f\x72\x77\xf7\xe1\xf8\x92\x57\x79\ \xe5\x6b\x6d\x02\x56\x04\xfa\x0f\x76\x80\xf9\x07\x06\x29\xd6\x14\ \x12\x1b\x98\xf0\xad\x55\x71\xc3\xfe\x4c\xac\x46\x21\xa8\x4f\xb7\ \x7a\xf1\xc3\xa7\xf5\x1a\x55\x60\x00\x0e\x70\xb0\x78\xc5\x4b\x5d\ \x71\x56\xc4\x7a\xd5\x07\x4d\x68\x42\xe9\x1a\xeb\x57\xd7\xd9\xa7\ \x88\x0f\xbe\xbb\xe7\x38\x7c\xad\x47\x1e\xf8\xef\x36\x79\xcb\xf7\ \x09\xb5\xe0\x7c\x26\x30\x61\x2a\x80\x02\x62\xe7\x04\xae\xc4\x2e\ \xeb\xd2\x73\x80\x53\x69\xbf\xe5\x5e\xe1\x22\x20\xc2\x04\x3f\x3c\ \x57\x5f\x17\x00\x04\xe3\x17\x28\x1c\xd4\x00\xb2\x10\x82\x18\xa0\ \x0a\xed\xb7\x6d\xed\xf7\x09\x28\xf8\x09\xd4\xe5\x50\xf6\x07\x72\ \xd7\x64\x4d\x44\x84\x7f\x49\x36\x47\xaa\x90\x6b\x28\x20\x7c\x28\ \x20\x47\x3a\xa8\x6b\xc8\xc7\x6e\xef\x56\x79\x29\x08\x03\x94\xb7\ \x0c\xb5\x30\x7c\x30\xa7\x47\x5b\xa0\x5b\xf1\xd5\x68\x8f\xf4\x2d\ \xf2\x44\x2c\x42\x93\x37\xa5\x87\x31\xc3\xc4\x76\x1a\xe8\x27\xf6\ \xf3\x1a\x69\x20\x0b\x74\xc0\x85\xe7\xa7\x7e\x26\xd8\x7e\xb5\x76\ \x71\x73\x05\x6b\x66\x18\x83\x49\x46\x6f\x13\x96\x78\x39\x58\x83\ \xc3\xc7\x7f\xfd\x97\x6b\x42\x00\x80\xf0\x46\x79\x6d\xd6\x09\x89\ \xe0\x0d\x29\x48\x84\x13\xf6\x07\xd5\x63\x5b\x88\xf6\x47\x6c\xc7\ \x3d\xdb\xc3\x3e\x62\x66\x69\xfe\x15\xe4\x2d\xa5\xe7\x1e\xc2\xf5\ \x6f\x1a\xd8\x52\xce\x54\x38\x48\xa3\x0a\x74\x50\x89\x5d\x28\x0b\ \x70\x40\x82\xdc\x26\x7b\xb4\xb7\x53\x7a\x05\x57\xd7\x14\x8a\x0a\ \xe5\x67\x70\x08\x87\xb9\xf6\x86\x8a\xa7\x0e\x81\xe6\x78\x73\x98\ \x7c\x94\xc7\x66\x9f\x80\x87\x41\xb8\x0c\x2a\x67\x00\x83\xd6\x54\ \x1c\x45\x45\xb6\x60\x4b\x2d\x20\x1c\xd7\xc1\x45\x05\xe2\x0c\x09\ \xe2\x65\xc4\xe4\x5f\x8f\x73\x23\x35\x22\x8c\x67\xb5\x14\x67\x50\ \x23\x77\x47\x7e\x48\xd3\x07\x96\x58\x89\x5c\x28\x0b\x23\x58\x71\ \x24\x58\x82\x6d\x16\x57\x2b\x88\x5d\xd0\x20\x64\x81\x97\x86\x6b\ \x28\x7c\x38\x28\x47\x47\xa4\x83\xb7\x16\x6f\x8e\xf7\x78\x2b\x67\ \x02\x6c\x96\x87\x28\x08\x03\xb5\x50\x0b\x8e\x17\x68\x28\x50\x07\ \x16\xf6\x04\x5f\xf0\x05\x82\x94\x45\xee\xd5\x5b\x8f\xa5\x73\xc1\ \x03\x36\x61\x83\x3c\xcd\x13\x43\xbc\x84\x0c\x67\xf0\x21\xcc\x46\ \x06\xd0\xd0\x30\x5a\xc8\x85\xd3\x48\x8d\xd6\x48\x82\xaa\x70\x91\ \xac\x90\x8d\x17\x57\x5a\x73\x85\x5d\xd7\x54\x75\x34\xa8\x0e\xaa\ \x00\x80\x72\x24\x7c\xe8\xc8\x7f\x07\x08\x6f\xc3\x27\x79\x93\x57\ \x87\xb5\x80\x82\x48\x13\xfe\x8f\xf2\xa8\x72\x7f\x60\x02\x7e\xf8\ \x07\x1f\x90\x06\xd9\xf3\x3f\x33\x36\x63\x8d\xd3\x38\x60\xf3\x76\ \xf6\x62\x3b\xb5\xc2\x21\x2e\x26\x8c\x01\xe0\x0c\x67\x00\x21\x7b\ \x70\x06\x0a\x22\x56\x1d\xd8\x1f\x93\x38\x91\x13\x19\x82\x99\x78\ \x91\x57\x79\x91\x05\xc6\x8d\xd7\xf5\x71\x1a\xa7\x50\x17\x29\x92\ \xc7\x57\x83\x71\x44\x7c\x70\x18\x6f\x73\xb4\x8e\x3e\xc8\x6e\x76\ \x88\x87\xb2\x88\x34\xf2\x48\x8f\xed\x36\x68\x38\x09\x3b\xe7\x84\ \x0a\xb6\xc4\x3d\xdd\x53\x59\x58\xd5\x5b\xee\x55\x90\xc3\x51\x45\ \x49\x21\x8c\x3b\x97\x94\x4a\xa1\x8c\xc3\x85\x29\xb6\xc0\x81\x9c\ \x32\x89\x76\x49\x95\xd4\xd8\x85\xe9\x97\x91\xaf\x87\x7e\x4b\x77\ \x50\x7f\xc7\x53\xdf\xd8\x7b\x88\x37\x92\xc7\x37\x96\xa7\x68\x8a\ \x72\x14\x68\x01\x48\x9a\x5b\xa7\x72\x2a\xf0\x92\x06\xd5\x09\x6d\ \xe6\x0d\x70\x49\x84\xc3\xf7\x07\x7e\xf8\x02\x69\x90\x51\xec\x24\ \x40\x59\xb4\x3d\x58\xe4\x93\x05\xc9\x3d\xf2\x44\x45\xfa\xe0\x62\ \x3b\xe7\x62\x09\x22\x56\xb4\x13\x5c\x51\xa9\x32\xab\xf3\x98\x90\ \x39\x8d\x98\x98\x91\x99\x88\x7e\xe9\xc7\x6d\x14\xe1\x74\x2c\x78\ \x4d\xa2\x34\x61\x9e\xfe\xf9\x99\xc0\x27\x92\xa8\x98\x96\xa8\x58\ \x9a\x5c\xe7\x83\xf0\x06\x84\x29\x78\x9e\x28\x58\x0b\xb4\x98\x6b\ \xb2\x99\x79\x1f\x00\x62\xb6\x84\x0a\x6a\xe3\x93\xb9\xf9\x5f\xbd\ \xe9\x5c\x88\x94\x94\x47\xe9\x43\x54\x54\x59\x40\x29\x59\x28\x90\ \x9c\xab\x01\x97\x70\xd0\x9c\x54\x59\x8d\x17\xf9\x7a\x95\x49\x82\ \x9f\xb0\x74\xf5\x87\x71\xb1\x66\x6b\x35\xc8\x9d\x7d\x70\x91\xa1\ \xc9\x7f\x3a\x08\x6f\x01\x58\x7c\xa8\x59\x87\x94\x37\x8f\x6b\x16\ \xa2\xe7\xb9\x66\xb5\x50\x04\x36\xa9\x02\x7f\x50\x04\xf7\xa8\x8f\ \x8b\x33\x9f\xf1\xe9\x8f\x58\xf5\x76\xc7\x69\x0a\xfa\x00\x22\x02\ \x97\x94\x67\xa5\x8b\xbe\x89\x48\xb6\xd2\x9f\x3a\xb0\x0c\x40\x42\ \x11\xac\xc0\x9c\x06\x6a\x89\x08\x8a\x95\xe8\xa7\x91\xdb\xb8\x66\ \xd8\x65\x78\xd9\x39\x47\xdc\x09\x07\xc0\x07\x7c\xc2\x47\x4a\xab\ \xa8\x8a\x28\xa7\x96\xed\xe8\xa1\xf3\x58\x9e\xf4\x38\x80\xf1\x48\ \x84\xb4\x68\x93\xeb\xc0\x3a\xae\xb3\x93\xb8\x79\x4b\x00\x54\x3b\ \x27\xa4\x2a\x95\x26\x70\xc2\xc8\x76\x67\x95\x20\x5e\x35\xa3\x05\ \xc2\x6c\xba\xb8\x56\xf2\x42\x11\xcb\x40\xa4\x45\xea\x9c\x98\x08\ \x07\x18\x30\xa8\xfe\x99\xa8\x8d\x0d\x7a\x71\x10\x3a\x4d\x62\xd9\ \x07\x52\xfa\x99\x35\x98\x6b\xa4\xa4\x8a\x58\xba\x6e\x15\x47\x9e\ \xef\x26\x04\x2b\xf7\xa5\xf3\x08\xa2\xb0\x18\x84\x30\x60\xa2\x28\ \xaa\x0e\xf8\xe8\x54\xfd\xc3\x79\xb2\xa4\x68\xb8\xc9\x3d\x61\xc3\ \xa3\xb6\xc2\x21\x0d\xe9\x06\x49\xf9\x80\x5b\x64\x62\x92\x55\xab\ \xa6\xe0\x9a\x52\x49\x60\x05\xfa\xa7\x06\x6a\x8d\xe8\x37\xa8\xe7\ \x67\x91\x16\x17\x7f\x88\xba\x7b\xcb\x30\x47\x28\x70\x7c\x70\xf0\ \x02\x63\x49\xa5\x28\x47\x4d\xcd\x87\xa5\x1d\xfa\x78\x7f\x70\xa9\ \x5c\xba\xa9\x9b\xba\x66\xe7\xe9\x0d\xf2\x58\x93\x28\x7a\x8f\x30\ \xb7\x8f\x6a\xda\xa2\xbb\x58\x48\xb9\x69\x5c\xf5\x25\x8c\xea\x8a\ \x0c\x76\x07\x48\xf4\xc4\xaa\xf0\xca\x2e\x54\xa4\xa7\x47\x23\x71\ \xd2\xc8\xab\x7f\x7a\x7e\xfa\x8a\x89\xc2\xba\x53\x06\xb0\x71\x0c\ \x36\x72\x50\xda\x00\x8c\x7a\x7c\xea\x30\xa5\xb9\x56\x0b\xd0\x9a\ \x72\xef\xe6\x7c\xba\xb6\x6b\x26\x20\x04\x98\x8a\xa9\x2e\x29\x97\ \xaf\x58\x6a\xdb\x2a\x97\xd5\xfa\x07\x15\x46\xaa\xd8\xd3\xa2\x78\ \x69\xae\xf2\x89\x0a\x88\xf4\x80\xc3\x78\x01\xcd\xe8\x0c\x65\x50\ \x59\xb6\xc4\xfe\xaa\x92\x85\x29\xfd\x09\x48\xac\xa7\x9c\x7d\x8a\ \xaf\xbc\x1a\xa8\xbf\xfa\x85\x18\xd9\x66\xff\xfa\xaf\xef\xe7\x50\ \x9d\xa9\xac\xa0\x39\x92\xa7\x98\x92\x06\xd0\x7c\xa8\xc9\x8e\xf0\ \x26\x9b\x7f\x20\x04\xb2\x49\x79\x76\xf8\x09\xde\xd0\x09\x54\xcb\ \x66\x96\x80\x82\xde\x60\x93\xbb\x56\x04\x1a\xe6\x54\x76\x29\x3b\ \x6c\xd3\x8f\x8a\xb3\x97\x77\x0a\x1f\x70\x5a\x9c\x5f\xe5\x9f\x34\ \x3a\x5c\x80\x74\x9c\x57\x04\x48\xa6\x10\x06\x02\xca\x15\x14\x01\ \x03\xbb\x6a\xb3\xf9\xfa\xab\x82\x5a\xa8\x18\xc9\x6d\xdc\x66\x7f\ \x5f\x49\x8a\x07\x2b\xb4\xc7\x07\x79\x90\x7a\x80\x05\xd8\x7c\xe3\ \xe9\xa1\x75\xe8\xb4\x12\xdb\x96\x54\xdb\x09\xb1\x10\x0b\x91\x5b\ \xb9\x42\xb8\x6b\x47\x56\x07\xd0\x57\x9b\xeb\xc4\x36\x4f\x60\x0b\ \x8b\x83\x97\x3a\x50\x06\xb0\x3a\xa7\xcd\x76\x68\x5b\x94\xba\x88\ \x44\x06\x6e\xd0\xb6\xdd\xc3\x36\x6f\x5b\x5f\xde\xc0\x1a\x2b\x73\ \xaf\x78\x7b\xb3\xd2\x89\x01\x15\x49\x99\xb3\x57\x71\x3e\x8b\x82\ \x5f\x49\x4d\x27\x47\xa1\x86\xeb\x6e\x4b\x67\x00\x16\xdb\xa1\x1e\ \x2a\x9b\x12\x8b\xa9\xb5\x40\xb5\x93\x1b\xb9\x93\x3b\xbd\x71\x40\ \xb9\x47\xfe\x56\x04\x45\x80\x6e\xca\xb0\x0c\x4e\x95\x06\xeb\xc4\ \x58\xf2\xa9\x68\x6e\x0a\x1f\xc2\x28\x56\x88\x26\x45\x5b\x34\x48\ \x88\x24\x88\x78\xba\x5e\x6a\x3a\x45\xf3\x6a\x0a\xf4\xba\x18\xaf\ \xb1\x0c\xb7\x7b\xbb\x81\xaa\xbb\x15\x99\xa4\x6b\x56\x82\x22\x87\ \x50\xd3\x84\x64\x91\x1a\x7c\x9f\x09\x79\x24\xa9\x8a\x0a\x4b\x84\ \x06\xc8\xb8\x27\x1a\xb1\x94\x37\xb5\xd3\xdb\x09\x40\xf0\x07\x30\ \x30\xb5\x95\xcb\x9a\x26\x6a\x02\xd9\x5b\x64\x40\xa0\xb9\x62\xf7\ \x3a\x36\x50\xaa\x85\x18\x5c\x0f\x58\x52\xaa\xbb\x8b\xe8\x2a\x70\ \xf3\x8a\xc2\x59\x14\xaf\x57\x84\xab\x8a\xc1\xa7\x0d\x70\xbf\xf7\ \x7b\x7e\x5c\xb8\x04\xd1\x59\xa8\x9b\xb8\x6d\xb8\x27\x8e\xf9\x97\ \x6b\x53\x5a\xb8\x5a\xd7\x7c\x25\x77\x64\xc9\xab\xb1\x76\x68\xc1\ \x3a\x41\xb9\xde\x20\x04\x19\x95\x06\xcd\xab\x02\xb1\xf8\x07\x69\ \xf0\x02\x42\xa0\x0e\xda\xbb\x0c\xf7\x56\x07\x62\xe7\xbd\x9c\xe7\ \x47\x56\xe4\xb2\xf2\xeb\xae\x3f\x99\x4e\xb6\xf0\x47\xcc\xc6\x76\ \x5f\x15\x9f\xd4\xc7\xb6\xeb\xab\x03\x73\x5b\x13\xaf\x61\x44\xf2\ \x49\xc3\x80\xda\x85\x90\x69\x8d\xba\x2b\x99\x82\x3a\x82\x3b\x6c\ \x7f\xfe\xea\x66\x00\xc7\x2b\xc8\xa4\x79\xb0\x06\xdc\x83\x6c\xf9\ \xaf\x28\xb8\x0c\xa5\xa6\xa9\x76\x68\x09\x92\x0b\x06\xb1\x00\x04\ \x28\x1a\xb1\xb5\x49\x07\x4b\xf0\x02\x9a\xfc\x02\x7f\x50\x0b\x2a\ \x50\x9b\x2f\x50\x04\x1c\xac\xc5\xed\x29\x04\xfb\xf8\x9e\xe7\x7b\ \x45\x30\x5b\x45\x7f\xd4\x9f\xbb\x28\x40\x3c\x1a\x70\xee\xca\xc6\ \x78\x99\xc2\x63\x7c\xbe\x5b\x00\xa4\xaa\x93\x08\xd6\x22\x3a\x75\ \x5c\xa4\x4b\xa0\x93\x79\x8c\xc7\x21\x58\x8d\x78\x7c\x7e\x70\x50\ \x8d\xe8\xb7\x04\x18\x50\x82\xdb\x66\x7f\xc2\x4b\x61\x3f\x0c\xc4\ \x7d\xc0\xac\x73\xa8\x75\xea\xb9\x0c\xdf\x28\xb5\x04\x58\x9e\x10\ \x2c\xb9\x93\x0b\x0d\x2f\x50\x89\x99\x7c\xc9\x98\x9c\x06\xa0\x2c\ \xb1\xa0\x5c\x04\x75\x15\x54\x13\x0c\x7d\x42\xb0\x80\x50\xc4\x58\ \xb1\xab\xca\xae\x9c\x97\xf5\xa5\x0f\xfa\x60\x45\xfd\xa8\xa6\xa2\ \x5b\x5f\x3e\x7a\x45\x5b\xb0\x0e\x71\x5c\x50\xd0\x10\x31\x94\xf3\ \xcb\x06\x9a\x06\x70\xe0\xa7\xc5\x5c\xcc\xc4\x5c\x8d\x81\xea\x85\ \x0d\xfd\x9c\x25\xf8\xaf\xf2\xe7\xc3\x47\xfb\x86\xfd\x57\xcd\xcc\ \x1a\x79\x0d\x6b\x02\x8c\x2c\x64\x70\xf9\xa5\xde\x30\xbd\x94\x8b\ \xfe\x0e\x59\x6b\x89\xc1\x6c\xce\x99\x4c\x9b\x50\xac\xce\x2f\xb0\ \x0c\xe0\x1c\x0b\xde\x70\x07\xf0\xfc\x02\x1f\x10\x73\x22\x4c\x7d\ \x61\x5c\xc6\x6e\xdb\xa3\x88\xd6\x8f\xec\x35\x9f\x4f\x00\xb3\x6c\ \x37\xd4\xac\x3a\xbb\x74\x4b\x11\xca\x80\x02\xf7\x42\x39\xe6\xfa\ \xa7\x0d\xa0\x0e\x0e\x6d\xcc\x0f\x1d\xd1\x82\xda\x85\xfa\x4a\x07\ \x7d\xe0\xcc\x4b\x57\x6b\xc2\xab\x86\xb6\x16\x6f\xd5\x7a\x7c\x1f\ \xcd\x75\x7f\x46\x6a\x53\xfb\x09\xb4\x08\x03\x91\x0c\x06\x60\xd0\ \x09\x8f\xfb\x02\x76\x09\xc5\x76\x1d\xcc\x56\xdc\xbc\x45\x50\xa2\ \x12\xbb\x0c\xe8\x10\x0b\x92\xdc\x09\xde\x50\x04\x76\x10\xcf\xee\ \xf9\xb1\x5f\x7c\x45\xaf\xbc\x3d\x51\x24\x59\x6b\x8c\x97\xaf\xab\ \x68\x82\xe4\x47\x2b\x4c\x7d\xf3\x3a\xbf\x4f\x41\x11\x40\x70\x9f\ \x94\x43\x35\xb6\x00\xcc\xdb\xfb\x05\x55\x79\x89\x0f\x0d\xd1\x5e\ \xb8\xc7\x13\x2d\x0b\x5f\x4d\x99\x60\xcd\x78\xaa\xe8\xc3\x89\xa7\ \x02\xcc\x6a\xc5\x89\x5c\x79\x7a\xf8\x8d\x53\x1b\xd8\x72\x2d\xc9\ \x06\x90\x51\x9a\x5c\x9b\x4b\x20\x04\x45\xd0\xb4\x4e\x5b\x0b\x77\ \x70\x64\xde\xb0\xdc\x30\xb0\x0c\x45\xe0\x0d\x96\x10\xbd\x96\xfe\ \x00\x04\x45\xd0\xbc\x61\xf7\x01\x19\x25\x3b\x8c\x75\x9c\x82\x04\ \xbb\x62\xc5\xd8\xa9\x6b\x0b\x20\xb6\xa6\x2e\x8b\x68\xc0\xd9\xb6\ \x9f\x05\x15\x7c\xfa\x04\x2c\xd4\x5b\x51\x5d\x48\xf0\x50\xa4\x4f\ \x40\x05\xe8\x30\xc3\xa5\x5d\xcc\xfa\x8b\xda\x83\x2a\xd1\x18\x40\ \x07\x23\x98\xa0\x18\xe9\xcc\xa9\x18\xdb\x7f\xf6\x67\x1d\xad\xc9\ \x74\xf8\x6e\x24\xe7\x9a\x71\xa0\x13\xbd\x2d\xc9\xe8\xe0\xc4\x99\ \x2c\x04\xb4\x19\xca\x6e\x7d\x07\x15\xbc\xdc\x1a\xee\x0d\xe8\xb6\ \xdc\x77\x30\xb5\x96\x70\xd3\x5a\x4b\xe1\x42\x70\xdd\x9d\x6b\x4b\ \x82\xc4\x51\xeb\x35\x48\x7f\xb4\x05\xfc\x0c\xbf\xf2\xbb\x4c\xea\ \x6b\xbe\x34\xfe\x55\x94\x55\xd0\x56\xc2\x41\xec\x0d\x3e\x53\xc8\ \x06\x0a\x6d\xa0\x28\x40\x05\x60\x70\x0f\x44\xfa\xd0\x7d\x9c\xdf\ \x84\x7a\xb7\x21\x88\xc9\x09\x3a\x96\x01\xbe\x75\x03\x5e\x75\x7f\ \x10\x79\x9b\xcc\x75\x07\xc8\xc8\xd0\x70\x67\x22\xd1\xdb\x94\xdb\ \x09\xd5\x6d\xc5\xcc\x5b\x04\x30\x10\xe2\xd0\x4d\xd8\xde\x80\xdc\ \xcd\x9d\xa2\xea\x99\xe1\x85\x6d\xdc\x12\xab\xc9\x99\x17\x76\x3d\ \xcd\xe2\x87\x96\xca\x81\x34\x45\x2a\xec\xae\xb3\x1a\xbf\xfe\xf3\ \x6a\x45\x2d\x6c\x5c\xba\x0c\x4a\x9d\x00\x0d\xdf\xc3\x34\x12\x43\ \x94\x0b\xd0\x02\x6a\x93\x3d\xb1\x03\x99\x1f\x20\xe4\x6d\x80\x02\ \x79\x0c\xac\x94\x8e\xcc\xe8\x27\xd1\xd4\x28\xa5\x8d\xfa\xa8\x8f\ \x2a\xc4\x3e\x88\xc5\x48\x96\x83\x1e\x6d\xdb\x8f\xd7\xe1\x9f\x00\ \x04\xde\x50\xbd\x72\x1d\xc1\x64\xce\x66\xdc\xfa\xe1\x53\xbb\xdc\ \x40\x70\x07\xd8\x9b\xa2\xc5\xad\xc1\x45\xf0\xe1\xb5\xee\xb4\xc6\ \x6d\xc5\x76\xf0\x07\x4f\xd4\x3f\x5f\xc0\x51\x81\x68\xd9\x81\x74\ \x42\x6f\x8b\x4f\x88\x46\x59\x94\xa5\xca\x88\x94\xbe\xb5\x5c\xae\ \x4e\x80\xe3\x60\xa1\x0c\xb3\x90\x2d\xde\xc3\x34\xf7\xf2\x38\x85\ \x62\x48\xdd\xd3\x9c\x4b\x40\x0d\x72\x8d\x0e\x77\x1b\xd1\x95\x0e\ \xac\xd2\x89\xe9\xb2\x80\xc3\x05\x0b\x9a\x40\x7c\xc8\xfb\x77\x6b\ \xb6\xa6\x6b\xb5\x0d\xd2\xec\x06\x03\xd0\x00\x03\xa8\x5e\xbd\xb1\ \x40\x05\x94\xdb\xe5\xb1\xae\xe1\xea\xb9\xdc\xce\x6d\xa2\x4f\x8b\ \xbd\xb8\x2e\xe6\xb4\x5e\xdc\xcc\xdb\xb4\xbe\x8e\x8f\x75\xa0\x79\ \x50\xf4\x04\x4e\xe0\x47\x51\x04\x9f\x95\x8d\x48\x56\xb8\xdd\xcd\ \xae\xba\x5f\x95\xaa\x2f\x1a\xe8\x53\xd1\x09\x71\x43\xfe\x40\xa2\ \x93\x2d\x8d\x82\x0c\x89\x8e\x0a\x3e\xbe\xe8\xcd\x99\x0b\xbd\x8d\ \x0e\x56\x6d\xa4\xd6\x28\x82\x94\xce\xd0\x97\x2e\x0b\x0c\x8d\xc9\ \xd2\x89\x7e\x8e\x3a\xa1\xc8\xf7\x99\xbb\x66\x07\xa2\xda\x87\x90\ \xb7\xc9\x12\x1b\x80\xd9\xeb\x75\xcb\xdd\x09\xe8\xd0\x09\x64\xee\ \x0d\xa8\xee\xdc\x25\xca\xf0\xbb\xce\xb4\x1a\x0c\x03\xb4\x8e\xdc\ \x77\x80\xe1\x56\x8f\xbd\xcd\x2b\xb1\x5c\x3b\xaa\x76\x90\x6f\x14\ \x8f\xf1\xf4\x1c\xcb\xae\xbb\xaa\x1d\xcf\xd8\xaf\xec\xed\xbd\xf5\ \x04\xd4\x0e\x11\x89\x60\x0a\x25\x7f\xe8\x51\xcd\x06\x56\xe1\xe3\ \xe1\x1b\xdf\x95\xe8\xf2\xd3\x58\x0e\xbd\xdd\x06\x33\x6f\xda\x4b\ \xbe\xee\xcc\x8c\xcc\x3a\x89\xc3\x05\x2a\x0b\x2f\x80\x7e\x8f\xef\ \xf3\xdc\xb9\xc9\xd5\x5c\xc0\xa5\x58\xad\x14\xae\xc9\x10\x5b\x93\ \xea\x50\xa2\x22\x6d\x64\xa2\x7c\xbd\x7d\x5d\xdd\x61\xcf\xeb\x4c\ \x2b\x9b\xd8\xab\xf5\x52\xeb\xe1\xb3\x8e\xd3\xb6\x5e\xdc\x24\xfe\ \xeb\xfb\xb0\x0f\x75\xf0\x44\x31\xf7\x44\x1d\xc5\x4e\x8e\xbd\xbe\ \xdf\x7d\x48\xb3\x0a\x0a\x2e\xfe\xf1\x22\x1b\xb2\x83\x84\x07\x22\ \x2f\x13\xb0\x11\x37\x78\xaf\xfc\x2d\xef\xf7\x8d\xfe\x1e\x3b\x8a\ \x3e\x91\x1f\x90\x0a\x5c\xae\x0e\x07\xda\x85\xcc\xec\xf3\x97\xce\ \xcc\xb0\xc3\xee\x70\xc0\xd0\xe8\x2c\xa5\xb5\xbd\xc9\x1f\xcd\xac\ \xec\x19\xaa\xea\x20\xb1\x54\x0e\xb1\xaa\x38\x6f\x29\x8a\xea\x1c\ \x9e\xdc\xa3\x0f\xfb\x9a\xff\xfa\xd5\x6d\xeb\x5c\xaf\xf5\x1a\xde\ \xf5\x9f\xb0\x0f\xd8\xfb\xff\x00\x21\x44\xa0\x40\x3b\x75\xf6\xd5\ \x41\xe8\xc4\x8e\x93\x27\x4e\xbe\xe0\x81\xf8\x44\xc7\xc4\x2d\x3a\ \x2a\xea\xc0\x03\x0f\x15\x9e\x89\xa6\x3c\x56\xb4\x85\x07\xd5\xc6\ \x91\x23\xf1\x84\x44\xf9\xe4\xdf\x4a\x96\x2d\x5d\xbe\x84\x19\xd3\ \x65\x22\x50\x6c\x6c\xb6\x68\x81\xaa\x85\x4d\x36\x39\x47\xc2\xa3\ \x03\x94\xce\xd0\xa0\xf0\x84\x12\xa5\xf3\xa5\x1c\x15\x30\x60\xda\ \xdc\x4b\x23\x8b\xa8\xd4\x25\x69\xe0\xc0\xe9\xa3\xea\xaa\x2c\xab\ \x4b\xe8\x60\xe8\x13\xb6\x0f\x9c\x34\x55\x5f\x90\x7d\x91\x26\xed\ \x8b\x17\x7d\xda\xaa\x80\xab\x42\xdd\x1f\x75\x70\x05\xbe\x10\xf8\ \xc7\xc4\xb2\x3f\x7d\x97\xed\x03\x02\x64\x1f\x8c\x3b\x45\xee\x2c\ \x2b\xf2\x47\x08\xde\x3f\x45\x1c\x3b\x16\xe2\xb8\x30\xe1\x3b\x9f\ \xee\x78\xc3\x7c\x47\xf3\xe3\xc4\x03\x85\xd8\xfe\x29\xb2\xef\x60\ \x9d\x22\x75\x14\xda\xf9\xf0\xe5\xa1\x45\x8b\x5b\x4c\x5d\xcc\x38\ \xb2\xa3\x47\x53\x3a\x6c\x95\x2c\x79\x12\x4f\x0b\x91\xbd\x6d\x19\ \x90\x19\x5c\x78\xf0\x44\xd0\x76\xe2\x44\x8e\x13\x95\x51\xa0\x1a\ \x9d\x23\x85\x8e\x74\x89\x3d\x2a\x4c\x9d\xa2\xf0\x4a\x14\xc3\xd5\ \xac\xaa\x54\xa5\xd9\x0e\xc7\xeb\x12\xac\x58\xc7\x9e\x5d\x9b\x06\ \xbc\x55\xb5\x6e\x85\xc0\xb5\x23\x97\xee\x1f\x15\x42\xfa\xd8\x57\ \x51\x44\x9d\xfe\xc6\x7f\x97\x2d\xbb\x03\x88\x22\x00\xbc\x43\xb1\ \xbe\x1a\xbb\xac\xb0\xbe\x24\x33\x4c\x33\xcc\xbc\xd1\xac\x96\xcd\ \x12\xeb\x6b\xa0\x3f\xea\xb8\x63\x1f\xc7\xfa\x52\xe8\x89\xd4\xf0\ \x78\x62\x0b\x11\x4d\xd1\xe7\x35\x8c\x96\xdb\x48\x87\x8f\x6a\xbb\ \xcd\x86\x91\x5c\x14\x89\x37\xdc\x20\xb2\xc5\x89\x44\x86\xc3\x31\ \xc7\x7f\x12\x99\xa5\xa7\x9c\x7c\x42\x85\x28\xe6\x74\xf2\xc9\xa8\ \xe8\xa2\xfb\xc2\x07\xeb\x9e\xfa\x00\x8e\xa1\xac\x82\xc3\x3b\xad\ \xc4\xc3\x2a\xaa\x34\xc2\x2a\x0f\x3d\xb2\xc0\xab\xca\x2c\xb6\xda\ \x7a\x4f\x05\xfa\x4c\xa0\x8f\x3e\xcf\xf2\x23\xf3\x0f\xc4\xfe\x0a\ \x30\xc0\xcc\x36\x6c\xac\xc1\x0c\x39\x33\xfe\x8c\xb2\x37\x43\xdb\ \x50\x88\xc6\x0e\xd4\x13\xcf\x3a\x38\xfc\x43\xa1\x87\x42\x14\xd1\ \xb5\x12\x2b\x42\x05\x46\x15\x5d\x03\xc5\x36\x91\x34\xc2\x2d\x37\ \x92\x74\x43\x05\x06\x1d\x2f\x0d\xae\x13\xe4\x4a\x3a\xca\xa8\x91\ \x78\x62\x63\xa4\x23\x8f\x5c\x02\x85\x01\xda\xa0\x02\x1d\x68\xee\ \xf9\x80\x3c\x38\xda\x2a\x4f\x96\x25\x30\x58\x2f\x2b\xb7\x5e\x45\ \xaf\xac\x25\xba\xac\x4a\x3d\xb6\xc2\x0a\x53\x4c\xf9\xec\xf2\x4c\ \xaf\x01\xf7\xf9\xef\xb2\x07\xdf\x3c\xd0\xb0\xcc\x34\x2b\x4c\x32\ \x08\xa3\xa5\xb0\x58\x3d\x0d\xd4\x53\xc3\x22\xec\xb0\xe3\x8f\x85\ \xec\xf0\x90\xd0\xd6\x3e\x0a\x09\x15\x8a\x6a\x9b\xe8\x51\x48\x5d\ \x24\x69\x24\x5b\xde\xed\x4d\xb7\x1b\x31\xa5\xb7\xa5\x44\x74\x28\ \xb2\xd3\x91\x76\xb2\xe9\x27\x21\x8b\x0a\x6a\xb9\x23\x6d\xf8\xe2\ \x03\x65\x94\x51\xa5\x01\x03\x54\xd8\x4e\x95\xb1\xbc\xa2\x75\xd7\ \x3e\x58\x19\x4b\xac\xb3\xd4\xc3\x60\x57\x8d\x7b\xfd\xd2\xbe\x30\ \xe9\x2b\x82\xcc\xfa\xd8\xca\x6b\xaf\xc2\xdc\xc4\x8c\x14\xcc\xb4\ \x8d\xf3\x0e\x52\x54\x86\xd9\xc1\x3b\x60\x60\x50\xb1\xbb\xf0\xca\ \xab\xc2\xc8\x42\xf3\x96\xdb\x6e\x19\xfe\x02\x5a\xa2\x11\x2b\xa2\ \xd1\x22\x74\x6f\x63\xce\x53\x77\x65\x7c\xb7\xe9\xa6\x21\x5a\xa6\ \x5e\xa9\x77\x84\x26\xe9\xe6\xe0\xd9\x54\xb9\xa3\x84\x1c\xd2\xdf\ \x51\xbf\x68\xe0\x0b\x03\xa0\x81\x46\x1d\x55\xd4\x19\x0b\x03\xae\ \xd2\xa0\x63\x09\x5b\xaf\xc4\x92\x3d\x5d\x87\xd2\xd8\x57\x9c\xe1\ \x2a\xd3\x84\x90\xeb\x5b\x0c\x2f\xbd\x07\x2c\x42\xc2\x07\x49\x99\ \x30\xce\xd0\x2e\x53\xd9\x92\x65\x4f\x7e\xf3\x66\x92\xf3\xea\xb6\ \xcf\xce\x7c\x76\xa2\xf2\xca\x43\x0c\x91\xc4\xd7\x20\x32\x1a\x24\ \x17\x93\x46\x11\x95\x77\x4b\x72\x7a\x22\x8c\x40\x9c\x5a\xea\x44\ \x1a\x28\xca\x53\x9c\x7a\x12\xf8\x48\xa5\x51\x81\x7d\xeb\x51\x3f\ \xe8\x47\x55\xb2\xd1\xa6\xf5\xaa\xaa\x54\x61\xa5\xac\x57\xc3\x4a\ \x4b\xbd\x8d\xdb\xde\xd5\x6e\x81\xe2\x12\x93\x4c\x32\xef\xca\xab\ \x4e\xc7\x16\xa7\x53\x32\xcd\x5e\xb6\xe4\xe5\x69\xbd\xb1\xa4\x7b\ \x6f\x8a\x70\x7c\xb1\xcf\xfa\xb2\x83\xb1\x9e\x5f\xf8\x60\x21\xd3\ \x2c\x17\x51\x1f\xf7\x89\xa6\x28\xdd\xe5\xac\x86\xf4\x69\x9f\x4e\ \x32\x1d\xa2\x87\xd4\x49\x9d\xde\x44\x12\xb1\x01\xa4\x4a\x52\x24\ \xd9\x09\x50\x27\xfe\xb2\x5d\x74\xfe\x96\xe0\x04\x14\xd8\x03\x1a\ \xe8\xb8\x87\x2a\x7a\xf7\x02\x0c\xbc\x80\x15\xb5\x10\xcf\x95\x5e\ \xa0\x82\xf3\xe8\x6a\x57\x44\xa9\xdb\xe3\x96\xd7\xbc\x90\xd9\x8c\ \x2d\x7f\xa8\x85\x61\x1a\xe4\x0d\x95\x4d\x88\x33\xd0\x22\x85\xf7\ \x14\xd7\x3d\x1a\x7e\xef\x66\xe2\x1b\x1f\xf9\xbe\xf4\xa5\x0f\x7c\ \x46\x21\xa6\x11\x91\x13\xb6\xa0\x0f\x37\xe8\xe3\x74\xac\x39\x51\ \x00\xe7\xa7\x34\xdd\x94\xcb\x37\xb6\xc0\x88\x8b\xbe\x60\x83\x34\ \xcc\xab\x7f\x3a\x4a\x44\x1f\x42\xc7\xa9\x51\x41\xea\x38\xa1\x32\ \xd2\x50\x84\x12\x46\x05\x4e\xe7\x1e\x06\x68\x80\x95\x84\xc7\x0a\ \x56\xa8\x60\x09\x67\x11\xcb\xad\x8c\x37\x1e\xe4\x29\xcf\x33\xef\ \x09\x59\x67\xfa\x26\x39\x69\xb9\x70\x43\x87\x73\x19\x0d\x63\x48\ \xc3\x4e\x64\x0f\x7c\x76\x7b\x5c\xb7\xb8\xb5\x18\x5d\xa9\xe7\x03\ \x8f\xac\x5c\x18\xea\x10\x86\x2d\x84\xc1\x7d\xfa\xd8\x82\x48\x5a\ \x73\x3a\xe7\xa0\x48\x80\xf0\xea\xcd\x46\x74\x13\x40\x78\xd8\x80\ \x28\x96\xba\xe2\xa5\x12\x11\xa9\xf9\x75\x71\x80\x39\xb1\x1d\x73\ \x60\x69\x14\x52\x4a\xe7\x03\xea\x80\x03\x06\xda\x26\x2b\x55\xd4\ \x82\x15\xdf\xd1\xa0\xc5\x8a\xfe\xb7\xb1\x8d\xa9\x65\x87\x8f\x73\ \x5e\x67\x3a\xd6\x18\x09\x51\xc6\x7a\x7f\xbc\x5e\xf6\xa4\xd9\xbd\ \x58\x74\x6f\x1f\x8c\xec\x95\x5a\x08\x62\x87\xcf\x7c\x80\x2d\x65\ \xa9\x23\x24\x4d\x13\x06\x4a\x5a\xb2\x44\x78\xb0\x01\x44\x60\xe3\ \x29\x17\x7d\x4e\x94\x18\x79\xd7\x13\x20\x02\x91\x44\x8d\xca\x8a\ \xa9\x1c\x0e\x8f\x80\xc4\x45\xe8\x3c\x87\x39\xd1\x91\xa5\x72\x74\ \x32\xba\x20\x11\x05\x0e\x28\xc8\xe5\x57\x66\xa5\x0a\x18\xfc\x52\ \x3d\x6a\xc1\x4a\x5b\x2e\x66\x3c\x0f\x36\xf2\xa1\x1d\xdb\x59\x9a\ \x6e\xf8\x37\x17\x46\x6b\x41\xd0\x4a\x10\x66\x68\x68\x09\x65\x1e\ \x13\x2f\x3e\x13\x42\x0f\x3f\x60\x3c\xba\xa9\x66\x21\x4e\x20\x27\ \x39\xdd\x17\x06\x1d\xd8\x20\x9d\xac\xc9\x88\xa7\x3a\xf9\x4e\x1d\ \xc8\xf3\x09\xf0\xaa\xe7\xa8\x96\xc0\x0a\x7c\xe6\xa8\x38\x9c\x3a\ \x20\x52\xba\x96\x40\x31\xce\x0e\x37\x2d\xb0\x05\x2c\x41\xf8\x01\ \x7b\xa8\x23\x63\x4b\xe0\x0a\x43\x61\xa0\x15\xf6\xb0\x25\xa2\xe9\ \x49\xcf\x1c\x93\x87\xc8\xe8\xe9\xb1\x63\x8f\x39\x59\xe1\x10\x04\ \x2d\xb4\xba\xac\x40\x36\xc3\x21\xce\x22\xc7\xcd\x1e\xa2\x6f\xa5\ \x74\x5b\xc2\x07\x1a\x12\xfe\x06\x98\x56\xf2\x7d\xe8\xe4\x08\xd1\ \x62\xd3\xce\x49\x4d\x44\x9e\x21\x99\x27\x53\xe9\x86\x82\x75\x7c\ \xa1\xa8\x46\x45\xc1\xfc\xbc\xd6\xba\x03\x8e\xf1\x5f\x5e\xfc\xc9\ \x52\xa1\x93\x57\x7b\x18\xa0\x0f\x19\x6b\x9b\x2a\x0c\xe0\xd0\x87\ \x22\x52\xa2\x3b\x7c\xe8\x07\xeb\x66\xc7\x03\x29\xa6\x78\x02\x79\ \x0c\xcd\xd8\x2a\x90\x7d\xb8\x4c\x5b\xdb\x5a\x50\x6b\xbd\xa5\x5b\ \x6e\x72\x13\x7d\x29\xb5\x6b\xab\x86\x42\x30\xbd\x96\xd3\x92\x6e\ \x70\xc3\x13\xd2\x39\xc4\x2d\x3c\x21\x51\xcf\x15\x25\xe7\xe4\x39\ \xcf\x76\xda\xee\x0b\xeb\xf0\xc1\x3a\xd6\x71\x01\xa6\xf8\x00\x38\ \x8f\x15\xce\xff\x24\x3b\x46\xd7\xe1\xa4\x53\xa0\xdb\xd7\x64\x47\ \x35\x94\x0f\xa0\x00\x97\x5e\xe1\x0a\x2b\x3e\x41\xb1\x3a\x6e\xc9\ \x3c\xc2\xfc\xa6\x58\x91\x97\x4d\x9c\x5d\x4b\x20\x0f\x2d\x2b\x5b\ \xc1\x57\x90\x97\x69\x88\x7c\xcd\x2a\x0d\x85\x0c\x22\x9a\x3f\x39\ \xae\x87\x5f\x48\xc3\x23\xb3\xb3\x04\x1b\x10\xaa\x9c\x44\xd4\x07\ \xe7\x3c\x12\xc5\xe7\xce\xf3\x5d\x3d\x45\x2c\x3a\x03\xa8\xc0\x2d\ \xa4\x02\x0c\xd5\x69\xca\x89\xdb\xd0\x09\xf0\x86\xb7\x01\x3a\x1d\ \xe3\xa7\x7c\xc2\x35\xfe\x03\xfe\xa4\xa0\xeb\x1d\x6e\x7b\x51\xf0\ \x82\xf1\xc0\x41\xbe\xac\x70\x52\xdb\x52\xdb\x1e\x93\x96\xd6\x83\ \x74\x13\xb2\x31\xf3\x72\x97\xe4\x31\x06\xad\xfb\xe8\xd9\x3e\x5e\ \x76\x87\x3f\xf5\x05\x21\xa2\x61\x99\x41\xdc\x7a\x10\xc5\xd8\x6d\ \xa5\xaa\xf9\x00\x1e\xbc\x02\x0f\x10\x89\xc8\x9c\xce\xb0\xc6\x16\ \x6c\xa0\x03\x7d\xd0\x14\x9d\x28\xd2\x8d\x61\x4f\x07\x91\x11\x23\ \x49\x07\xeb\xe8\x42\x8a\xf5\x0c\x86\x38\xb4\x38\xbc\x5c\xf4\xe2\ \xa6\xfe\xe9\xd4\xa4\xf5\xf3\x6a\x37\x4e\xca\x3a\xd0\x38\x9e\x89\ \x7d\x62\xab\xc4\x2c\x8b\x55\x8a\xfc\x25\xb5\xcc\x11\x84\x75\xc4\ \x99\xcd\x74\x65\xbe\xc6\x18\xf8\x05\x04\x26\xdc\x68\xb4\x9c\x21\ \x6d\x21\xc4\x65\x99\x08\xf5\x9f\xca\x67\xd7\x34\x14\x8c\x21\x5f\ \x18\x6e\x99\x5d\xe3\x06\x19\x24\xf7\x09\xee\xe3\xb0\xa2\x2e\xd2\ \xd3\x79\x7e\x81\xa9\x4b\x88\xc7\x1e\xf6\x80\x02\xee\xee\x39\xc5\ \x2c\xf6\x73\x4c\x12\xb1\x8e\x59\x6a\xe4\x38\x92\x5d\x22\x2b\x07\ \xdd\x54\xcc\x1e\xc5\x06\x28\x50\x86\x3a\x7a\xcc\x8a\x44\x6c\x55\ \x3c\x90\xf6\x55\xa5\x8d\x89\xda\xb9\x6d\xd6\x2c\x4b\xe6\xf1\x1b\ \xc7\x57\x10\x84\xfe\xfc\xa1\x87\x75\x78\x59\x26\xee\x90\x09\xd1\ \xc8\x9b\xde\x07\xc1\xb2\xbc\x09\x77\xef\xc4\x70\xeb\x05\x10\xfe\ \xc2\x13\xa6\x8b\x94\x74\x86\x48\x1f\x69\x66\x73\x89\xe4\x99\x4e\ \x8e\xb0\xa6\xb9\xbd\x36\xa5\x02\xf1\x10\x8f\x3c\x53\x21\x1e\xf1\ \xa0\x86\x75\xf6\x1c\x8b\x64\x2b\x1b\x1a\x99\x95\xb1\x8d\x05\x8a\ \x1b\xa5\xfd\x93\xda\xb8\x81\xce\x3a\xca\x61\x80\x5c\xec\xca\xc7\ \x30\x98\x6f\x1f\x3e\xd8\xb6\xfd\x1a\xb9\xd2\xe4\xce\x4e\x19\xd3\ \x90\x97\xb4\xec\xea\xd3\x81\xe2\x96\x69\x22\x5c\x07\x54\x67\xc2\ \xe8\xf6\x26\xc5\x41\x4a\xa3\x99\xa2\xef\xe3\xde\xf3\xce\x90\x42\ \xa8\xf8\x10\x9b\x6e\xad\x94\xcb\xcd\xf0\x16\x90\x3b\x5d\xce\x15\ \x6a\xce\xe8\x1c\x95\x0d\x28\x6e\x1d\x2a\x5c\x20\x1e\xc5\x48\x05\ \x8a\xf5\x4c\x85\x8e\x2b\x1b\x05\x4a\x6b\x36\x2b\x0f\x28\x6d\xfa\ \xe1\x18\x05\xf3\x58\x47\x1f\x1e\x3a\x31\x6f\x83\x73\xe6\x75\xbc\ \xf9\x45\xc5\xad\x31\xa1\xee\xdc\x5b\x42\x48\xde\x07\x14\x52\xb9\ \x3a\xd8\xa1\x60\x44\x37\x3a\x29\x8a\x2e\xf9\x3f\x19\xa4\xe8\xa4\ \x16\x0d\xb4\x8a\x1e\x86\x0f\xd8\x14\xc7\x74\x58\xb3\x4d\x71\x1d\ \x11\x8b\x1c\xfe\x6a\xce\x11\xdf\xec\x17\x9c\x40\x8d\x3d\x53\xe1\ \x01\x0f\xd8\x03\x35\x34\x00\x8c\xb4\xa7\xb8\x18\xf7\x68\xfb\x4b\ \x12\xf1\x89\x7d\x15\x89\x53\x70\x17\x28\xd6\x5a\xf9\x2f\x1c\x3f\ \xa1\x1c\x40\xd0\x7b\xf2\xb0\xf4\x77\xe6\x67\x33\xd2\xce\x17\x6b\ \xce\x91\xa2\x16\x9f\xbd\xa0\x6d\xe9\x5b\x7c\xe5\x5a\xed\x84\x4c\ \x84\xc1\xe9\x46\x97\xc2\x41\x18\x5f\xf4\x7b\x67\xfe\xd4\x47\x27\ \xa7\x72\x3f\x7f\x75\x10\xa1\x33\x73\x96\x14\x91\x73\xab\xae\xc0\ \x27\x5c\x80\x1a\x79\x6e\x0a\x15\xd2\x4e\x05\xda\x03\x43\xf6\xd4\ \x40\xbb\xfc\x1b\x82\x5b\xb8\xa7\xdc\xdb\x11\x1d\xb8\x09\x20\x19\ \xb9\x03\x8a\xbb\xd8\x51\xaa\xe2\x2b\x87\x72\x50\x07\xb6\xb9\xb4\ \x9c\x3b\x1e\xc0\xe3\x95\xe4\xe9\x92\xd4\xfa\x3b\xe9\x78\x01\x27\ \xf8\x83\x27\x18\x0f\xcb\x71\x82\x3a\x10\x41\xd5\x8b\xa9\x30\x70\ \x83\xee\xe3\xab\x85\x00\x3f\x52\x5b\x30\xb7\x92\xb7\x7d\x48\x41\ \x3c\xf8\x3c\xa2\x18\x31\x3c\xd0\x3a\x6b\xa8\x8d\x85\xab\xb3\xe8\ \xc0\x03\x1f\x30\xb6\x54\xd8\x03\xa6\xa8\x8e\x2e\xa0\xbd\x07\x88\ \x87\x07\xb0\x8e\x62\x18\x82\x54\x28\xc0\xdc\x4b\x04\x1f\xe1\x97\ \x7e\xe9\xfe\xbd\xda\x29\xb9\x07\x8c\x25\xe8\x78\x82\xea\x40\x87\ \x06\x90\xbe\xcd\x02\x27\xbc\x22\xa6\x32\x1c\x2b\x4b\x33\xb7\x0f\ \x08\x14\xe1\x52\xbd\xca\x69\xae\x25\xf8\x82\x14\x5c\x41\x37\x68\ \x41\x27\xd8\x87\x15\x34\x3a\xef\x8b\x3c\xc9\x4b\x3a\x72\xaa\x03\ \xaf\x83\xb5\x1b\x1c\xae\x27\x30\x05\x37\x68\x2e\x9b\xa2\xb3\xcd\ \xf2\xbc\x27\xd8\x83\xd6\x93\xbd\xfd\x03\x06\xeb\xd0\x80\x59\xd0\ \x83\xfd\x4b\x85\x62\xa0\x02\x64\x33\xc0\x95\x48\x04\x7b\xf0\x11\ \x50\x19\x20\x2c\x14\x20\x23\xa9\xbb\x42\x43\x8a\x59\x68\x8a\x58\ \xb8\x87\x30\x94\x8e\x0e\x44\x32\xe9\x9b\xb0\xb1\x2a\x9e\x51\x19\ \xba\x2d\x80\xb5\x0a\x0b\x22\x35\xc3\x03\x15\x44\xae\x4c\xb0\x06\ \x37\x18\x27\x29\x90\x02\xf4\xa3\xb7\x3d\xbc\xb7\x84\xb8\x1c\x74\ \x52\x2c\x80\x9a\x27\x81\xd3\x9f\x11\x83\x07\x0a\x2b\xb3\x27\xa0\ \x03\x3c\x28\xc2\xea\xa8\x0e\x6a\x78\x80\x0b\x78\x00\x6a\x48\x85\ \x54\xa0\x3d\xfd\xd3\x83\xb3\xe3\xbf\x07\xa8\x44\xb6\xdb\x44\x4e\ \xfc\x04\x50\xe1\x09\x22\xf9\xbd\x90\x6b\xaa\xcc\x72\x0e\x32\x1a\ \xae\x78\xb0\x0e\x68\x10\x44\x1c\x63\xc5\xd5\xe2\xc0\xd4\xb3\x1c\ \x1b\xfe\x58\x82\x27\xe0\xab\x43\xfc\x82\x21\xba\xa4\x22\xaa\x24\ \x67\xa8\x02\x73\x18\xc6\x30\xc8\x84\x61\x34\x87\x88\x94\x3c\x1a\ \xfc\x43\x81\x93\xa7\x65\xc4\xb1\xc0\x8a\x22\x23\x29\xb8\x21\x72\ \x03\x31\x13\x3b\x6a\x00\x86\x2e\x40\x42\x6d\x8c\x07\x1f\xe8\xc6\ \x62\x40\x49\x00\x7c\x00\x7b\x78\x3d\x3d\x98\x85\x5b\x18\x02\x2a\ \xe0\xb8\x74\xdc\x11\x1f\x60\xc7\x9e\xc0\xc2\x7d\xe9\x17\xf2\x2a\ \x39\x7a\x14\x23\x6b\x4c\x31\x68\x60\x45\x9a\x43\xb2\x7c\x04\xa1\ \xd5\xa2\xb4\x0e\x2c\x48\x43\xb4\xa9\xe9\x32\x25\x78\x90\x08\x21\ \xc2\xa4\x10\xb1\x06\x6c\xc0\x06\x19\xb0\x06\x6b\x90\x82\x88\x94\ \x48\x73\x60\xc1\x3f\x04\xa2\x43\xc4\x48\xd9\xd1\xc1\x2d\x70\x02\ \x11\xeb\x48\x86\x08\x11\x5f\x2b\xc8\x78\xb8\x80\xb4\x4b\x85\x07\ \x28\x87\x62\xd0\x80\x62\xd8\x83\x07\xf0\x01\xc6\xf2\x81\x71\x9c\ \x85\x59\xc8\x05\x43\x68\x80\x4a\x8c\x85\x28\xec\xb8\xe2\xc8\x49\ \x1f\x99\xbb\xe4\x10\x98\x30\x22\xc5\x7e\x0a\x0a\x3a\x40\x85\x07\ \x18\x4a\x5d\x32\x37\xd5\x32\x4a\xa4\xac\x39\xb6\xf0\xb7\x2f\xb0\ \x40\x81\x74\x83\x5b\x24\xa3\x76\x6a\x3f\x3c\xd0\x07\x67\xa8\x35\ \xfe\x37\xb0\x06\x67\xc0\x4a\xaf\xcc\x43\x8a\x24\xa7\x4a\x12\x91\ \x8c\xd0\xcc\xa1\x90\x35\xc0\x6a\x88\x42\x91\xa7\x29\x22\xbd\x59\ \xb0\x3f\xbc\x9c\x07\x6a\xc8\xae\x59\xd0\x2e\x14\x78\x02\x14\x88\ \x87\x74\x98\x05\x43\x98\x22\x43\x98\x05\x0d\xa0\x82\x3e\xb3\x49\ \x1e\xd1\x49\x9e\x48\x8e\x04\x94\x47\x93\x93\x9d\x25\xa2\x03\x14\ \xb8\xc7\xf1\xb0\xc0\x0d\xbc\xc0\xda\x6c\xb2\x4f\xe3\x16\x09\xa3\ \x1b\x1d\xa4\xc6\x2e\x1a\xb1\x27\x40\xae\x4b\xb2\x06\x19\xc0\x4a\ \x19\x10\x46\x16\xa4\x41\x3f\x94\x4d\xe5\x2a\xcb\x23\x09\x2c\x4c\ \x42\x4b\xd9\x44\x4b\x81\x9b\x22\xaa\xa3\xb0\x59\x88\x87\x75\x20\ \xce\x75\xb8\x85\x27\xc0\x2e\x65\x58\x87\x27\xc8\x05\xe2\xfc\xcb\ \x5b\x30\x04\x0c\x18\x4c\x0d\x80\x42\x9b\xdc\x11\x76\x54\x0e\xe4\ \x00\xa3\xe6\x78\xc0\xed\x74\xc0\x2f\x30\x31\x30\xb8\x07\xbc\xc2\ \x2b\x23\xcb\x26\xf0\x2c\x4a\x52\xf1\x32\x98\xe2\xab\xf5\x0c\x0a\ \x1b\xfc\xbc\x35\x6b\x2e\x8f\x44\x4d\x67\x90\x02\x1d\x75\x06\xa3\ \xb3\x86\x87\xf4\x45\x15\xfc\x45\x23\x52\x3f\xa4\x24\x33\x83\x6c\ \xb3\xf7\x11\x22\x4b\x52\x3f\xcf\x8b\x35\xd5\xd3\x2e\x1f\x60\xfe\ \x3d\x23\xa4\x86\x78\x30\xce\xbf\x84\xc9\x06\x98\x05\x7b\x18\x80\ \x01\x30\xcc\xc3\x8c\x07\x50\x49\x8e\x19\x0b\xd1\x65\x04\xca\x2f\ \x60\x3d\x13\x65\xc5\x8b\xca\x2f\x0e\xd4\x40\x41\xac\x1b\xc5\xab\ \x03\x29\xf8\x45\x19\xcd\xcc\xb0\x43\x44\x8f\xfc\xc5\xad\x94\xcf\ \x2b\xa8\x82\x85\x5c\xc8\x88\xc4\x06\x73\xc8\xca\x22\x02\x3b\xcd\ \xc4\x45\xe4\x2a\xa2\x72\x62\xae\x40\x84\x8e\x0a\xb3\x07\x29\x2d\ \xd1\xd6\x2b\x06\x14\xc0\x03\x7b\xd0\x03\x7b\x88\xc9\x98\x6c\x80\ \x5b\xd0\xd0\xff\xa9\x89\x76\xe4\xa7\xc8\x3c\x2f\xcb\xd2\x47\x65\ \x68\x0a\x68\xa0\xc0\xa4\x7c\x23\xd4\x5a\xca\xe7\xf3\x3b\xa3\xdc\ \xc7\x08\xb3\x03\x72\x2a\xa2\x0c\x6b\xd1\xb0\x6b\x0d\xf7\xa1\x35\ \x6c\xc8\x03\x66\x60\x81\x60\x0d\xd6\x3f\x35\x07\x19\x30\x56\x43\ \x2c\xd2\x7c\x1c\x33\x5c\x3c\xb8\x5f\x2c\x94\x30\x48\x56\xd0\x23\ \x18\x14\xb8\x46\x63\x5b\xbb\x62\xb8\x85\x5b\x98\xd0\x6c\xcd\x05\ \x59\xc8\x05\x54\x4a\xc7\x4e\xb4\xce\x51\xd5\x4e\x48\xd1\xcc\x06\ \xf0\x42\xeb\x33\x37\xb8\x71\x8b\x8e\x69\x53\x8a\x2a\xad\xb5\xf8\ \xa6\x38\x05\x17\x67\x54\x46\xcd\x2c\x25\x1d\x3c\x4d\x5f\xfe\x05\ \x56\x61\x15\xd6\x85\xa4\x53\x3a\x24\xd2\x44\xd9\x4f\xd0\x83\x22\ \x67\x34\x38\x43\x1c\x50\x5f\xa3\x9b\xa7\x44\x01\x1f\x98\x54\x6b\ \x5d\xbb\x78\xf8\x82\x5c\x68\x80\x4e\x05\x4c\x0c\x30\x04\x55\xf8\ \x52\x3f\x2b\x8e\xe3\xb0\x9a\xa2\xf0\x1a\x48\x29\x58\x10\x12\x87\ \x58\x80\x06\x21\x60\x55\x21\x73\x8b\x76\x35\x29\x4a\x7b\x9c\x4c\ \x23\x9f\x85\xb8\x10\x84\xc8\x24\x27\xad\xcd\xe1\xd2\x3a\x19\xb8\ \x82\x19\x60\x86\x9f\xfd\xd9\x3c\xf8\x53\x80\xfd\x45\x3a\xd4\xcd\ \x43\xbd\x41\x1d\x74\x03\x34\xe3\xd5\xe4\xba\xb4\xa4\x60\x4b\x62\ \xc3\x3f\x89\x35\xb6\x79\x00\x9b\x27\xd8\xd2\x4c\x9d\x85\x06\x30\ \x84\x4f\xf8\xd4\x44\x90\x2a\xf4\xca\x17\xf5\xea\x22\xe8\x40\x01\ \x20\x30\x00\x0a\xd4\xc0\xe4\x31\x8f\x6f\x2a\x9e\x78\xdd\xa1\x62\ \x59\x30\x54\x33\x87\xa1\xc5\x86\x34\x8b\x56\xa4\xac\x30\x22\x72\ \x06\xd4\x34\x56\x19\x28\x56\x63\x95\x02\x3a\x54\xd4\x4b\xf2\x4f\ \xda\x14\xc4\x35\xd3\x07\xf9\xcc\x83\x2b\xb8\x5b\x11\x5c\x02\xa1\ \xb0\x81\x2d\xf0\x81\xca\x15\x07\x63\xa0\x5a\x89\xa5\x86\x5c\xc0\ \xda\x74\xd0\x83\xcf\x1d\x02\x3d\xc8\xd6\x8e\xf5\x58\xfe\xe7\x12\ \x0a\xb9\xeb\xbd\x16\x28\x59\x0f\xb4\x40\x96\x92\x18\x89\x8a\xb4\ \xe7\x83\x3e\x8c\xea\x8b\xef\xab\x02\x4b\xf0\x57\x66\xc8\x03\x67\ \xc0\x24\x80\xac\x4d\x44\xd4\x01\x21\xf2\x2b\x22\x52\xd4\x98\xca\ \x04\xd5\x7c\xcf\xd7\x40\xbd\xf5\x5b\x2e\x5a\xcb\x83\x60\xcd\x03\ \x7d\x78\xb5\xf1\x60\xd0\xcb\xcd\x5c\xaa\xd5\x80\x25\x30\x84\x74\ \x70\x42\x3d\x18\x82\x62\x98\x87\x98\x24\xdd\x16\x4b\x84\x7b\xb8\ \x9a\xe0\x23\xb4\x9c\x55\x20\x34\x7c\x23\xe2\xf1\x20\xc2\xab\x1b\ \x8e\x39\xa9\x9a\x25\x85\xba\xc5\xdd\x3f\x95\x01\xde\x6d\x2e\x86\ \xcd\xd9\x68\x44\x05\x81\x33\xb3\xa6\xa5\xc3\x3d\x1d\xd2\xd9\xd4\ \xdb\x32\x5b\x5a\x6c\x98\x01\x16\xc8\x03\x29\xa0\x24\x35\x23\x18\ \x98\x4a\xd3\xeb\xb5\x56\x6a\x00\xbd\x4a\xbc\xc4\x79\x70\x42\xe5\ \xf4\xd4\xe9\xcc\x22\x31\x1a\x59\xed\x54\x5f\xe9\x18\xb7\x9c\x6b\ \x0b\xb7\x58\xd5\x30\x2c\x26\x6d\x1a\x9f\x7c\x23\x54\x67\x4d\xcb\ \x5c\xad\x51\x0a\x7b\x4a\x42\x19\xa2\xe3\x42\x5e\xe4\xf5\xcf\xbc\ \x1d\x0a\x54\x90\x3e\xa0\xc0\xc5\x21\x8a\xcf\x5f\xc5\x86\x45\x5d\ \x52\x29\x10\x87\x0e\xa0\x60\xaa\x2d\x87\xb6\x99\xfe\x85\xea\x48\ \x85\xbb\x9c\x07\x3d\x50\x4e\x68\xf8\x54\x03\x10\x59\x9f\x5c\xdd\ \xcf\x53\x8b\xfa\x20\x9e\xec\x48\x03\x55\xe0\xa0\x31\x5c\x2f\x8d\ \x99\x5f\x83\xf0\x3e\x29\xc0\x06\x34\x2b\xa2\x85\xdb\xe2\xe1\x52\ \x11\xd5\xec\xdb\xbe\xfd\xdb\xbf\xcd\x4a\x29\x30\x56\x6b\x78\x1f\ \x79\x1a\xae\x74\x7a\xca\xa8\xcc\x57\x9b\x4a\x38\xd5\x94\x4f\x73\ \x30\xae\x30\x90\x02\xcc\x5d\xe2\xcc\xf5\x81\xa1\x30\x84\xd9\x93\ \x62\xd0\x9d\x87\x7e\x18\x5f\xf0\x02\x20\xac\x51\xdd\x21\x79\xe3\ \x32\x16\x02\x13\xf0\x25\x56\x30\x01\x99\x7b\x92\x3e\x80\x0b\x32\ \x86\x45\xf0\x34\xa6\x6e\xa1\xc1\x87\xfc\xd3\xac\x1c\xd2\xaa\xe4\ \x61\x1c\x23\x98\x2d\xb0\x86\x33\xc8\x03\x9f\x0d\xd6\x9f\x65\x01\ \x60\x65\x86\x19\x98\x81\x3c\x68\xdc\xfc\xad\x4a\xe0\xcd\xa4\x5b\ \xcb\x88\x87\x08\x2c\x89\x38\x38\x3a\x76\x06\x68\x85\x29\x22\x4a\ \xe2\x45\xa6\x5a\x2a\x40\x01\x69\xcd\xda\xcf\x05\x5d\xb4\x93\xce\ \x70\x05\xdb\x9b\xc8\xac\x11\x26\x15\x15\x80\x39\x18\xa8\x05\x5f\ \x02\x63\x15\x30\x01\x56\xe0\xb1\xcd\xda\x4c\x5f\xd1\x13\xa2\xdb\ \x07\x29\xa8\x82\x5d\x06\xe6\xc6\xc5\x86\x33\xfe\x70\x06\x37\x30\ \x05\x1a\x4d\x5c\x3c\x18\x94\x9d\xfd\x55\x7f\x15\xe8\x5c\xae\x02\ \xad\xa4\xa4\xd2\x43\xc8\xd3\xcc\xa4\x67\x9d\xa9\xc5\xe5\x59\x6c\ \x70\x66\x22\x0a\x03\x6b\xa8\x02\x69\xa6\x5a\x6a\x98\xa2\xbf\x7c\ \x02\xe7\xa4\xc4\x79\x78\x80\x21\x18\x82\x79\x98\x87\x4a\x7e\xac\ \x44\xd8\x02\x36\x88\xaa\x59\x02\x67\x05\x12\x82\x71\xfe\x84\x98\ \xf3\x8a\x34\x50\x81\xff\x50\x01\x53\x2e\xa6\xc7\xb9\x90\xa2\x73\ \x83\x2a\xe8\x80\x0e\x10\x68\x66\x70\x5c\x67\xc8\xa4\x92\x5d\x33\ \x1d\x26\xa2\x21\x1e\x68\x81\x9e\x81\x42\xe5\x5b\x63\xcd\x67\x9e\ \xb5\x06\x36\x43\xae\xd5\x44\xb3\x21\xce\x03\x88\xbe\x61\x4b\x92\ \x02\x8b\x66\x62\xb1\xab\x8e\x07\xf8\xcb\x21\xc0\xd0\x62\xf8\xdc\ \xbf\x04\xd7\x4d\x3c\xaa\x90\x5d\xe9\xcd\xda\xa0\x5a\x80\x81\xff\ \xf9\x04\x15\x28\x1e\xf9\x82\x06\x75\xc6\x4c\xa5\xbc\x96\x7d\x10\ \x07\x4b\x30\x06\x71\x30\x07\x16\x48\x31\x81\xce\x03\xad\x34\x05\ \x47\x95\x65\xa0\xd0\x41\x67\xb8\x82\xc5\xce\xdf\xbe\xf5\xd5\xa4\ \x86\xde\x82\xf6\xdb\x2a\x00\xe6\x35\xfe\x55\x19\x38\xb8\xfc\xed\ \xd3\x33\x60\x5c\x66\xa8\x02\xe4\x7a\x60\xfe\x6c\xe0\x6a\x89\xa5\ \x82\x27\x80\x87\x79\x68\x8a\x4b\xd4\x83\x07\xb0\x4b\x98\x14\xcc\ \xed\xd0\xd0\x1d\xe9\x83\xb5\x2e\x63\x5f\x51\x01\xf9\x8a\x83\x38\ \xa8\x85\x76\x55\x81\x7b\xd0\xed\x9a\x9e\x39\x2f\x19\x08\xd0\xc8\ \x04\x71\x40\x87\x0e\xb0\x04\x9e\x0e\x6c\x7f\x1d\x6c\xa7\xbd\x41\ \x78\x68\x0d\xa1\x39\xcd\x63\x55\xd4\x5b\xb5\x86\x9e\x05\x5a\xca\ \xce\xca\xce\xfe\xd9\xc5\x86\xde\xf8\x5c\xec\x2b\xb8\xe5\x7a\x7e\ \xde\xc1\xd6\x63\x7d\x10\xed\xd1\xb6\x56\x1f\xd8\x95\x62\x2b\x47\ \x98\xa4\x50\x59\x90\x6f\xa9\x20\xaa\xe9\x5c\x06\xda\x16\x2a\xb7\ \x65\x85\x38\xe8\x84\x38\x80\x01\xb1\x50\x07\x6f\x88\x03\x20\x30\ \x81\x9e\xfb\x20\x25\xbb\x96\x3a\x50\x06\xfb\xf5\x6c\x3d\x03\x6c\ \x61\x5d\x63\x08\xc6\x59\xdb\x09\x20\xf7\xac\xb5\x4c\xea\xcf\x43\ \x89\x3f\x7f\xce\x4d\x5e\xdc\x4a\xd6\xac\x02\x5c\xd6\xdd\x05\x0e\ \x56\x9e\x0d\xda\x7e\xdd\x65\x60\xad\x82\x35\xbe\x4a\xf5\xb6\xd6\ \xd2\x06\x3d\x26\x2c\x47\x4d\x5d\x4e\xf9\x46\x8a\x3e\x20\xe9\xa2\ \x4a\x04\x19\x06\xe7\xf6\x55\x0f\x15\xf8\x04\xfe\x8e\x6b\x15\x30\ \x80\x65\x80\x86\x38\x80\x86\x4f\x18\xfe\xa6\xb1\xca\x19\x05\x17\ \x87\x68\x8e\x05\x25\x5e\xee\x5c\x96\x01\x68\x6d\x38\xda\x4c\xc4\ \x58\xeb\x29\x37\xe0\x6c\x64\x95\x27\xaa\x34\xa7\x87\x0b\x20\x1a\ \x06\x11\xab\x7c\x6c\x06\x7e\x5e\x08\x0f\xe8\xa4\x5e\xc8\xd5\x54\ \x6e\x17\xdf\x33\xf6\x86\x07\x14\xe8\x02\x2a\xe8\x82\x21\x40\xd0\ \x98\x7c\x6d\xa9\x20\x0a\xaf\xf5\x60\xa0\x24\x3e\xae\x71\x40\x5a\ \xbc\xed\x76\x35\x80\xdc\x86\x01\x75\x50\x87\x65\x00\x02\xdf\x8e\ \x03\x74\x30\x01\x23\x23\x19\x2b\x03\x82\x27\x97\x72\x6b\x85\x70\ \x43\x24\x91\x36\x5e\xae\xa1\x46\xc4\x42\x74\x1f\x67\xc8\x03\x7c\ \x46\x48\x53\x38\xae\xbe\xdd\x4a\x64\x5d\xde\x5d\x51\x5a\x19\xa0\ \xec\x34\x1f\x56\x58\x0f\xd6\xa6\x00\x6c\x88\x0e\x03\x6c\x00\x01\ \x38\xdf\xb3\x72\x78\x82\x80\xe3\x2e\x2a\xa0\x86\x59\xc0\x5a\x73\ \x9c\x85\x74\xe8\x56\x3a\xe0\xf3\x25\xc8\x71\x7c\x5a\x9d\x52\x4d\ \x20\x18\xfb\xbc\x3e\x58\x86\x4f\x98\xc0\x37\xaa\x05\x03\x30\x01\ \xb8\x50\xf4\x65\x40\x87\x58\x88\x05\x6f\x10\x02\x04\xcf\x0b\x84\ \x50\x06\xbd\x8e\x05\xaa\x85\xde\xc1\x75\x83\x1d\x2d\xa2\x9e\x3a\ \x4d\x43\x6c\xb8\x1d\xd4\x63\xc5\xfe\xfe\xe5\x2b\xc0\x67\x02\xee\ \x53\x60\xae\x82\x34\x8b\x61\x6b\xeb\x70\x6b\x80\x75\x60\x1e\x68\ \x5a\x87\x56\x29\xb8\x74\x5d\x07\x03\x65\xe8\xf5\x27\x98\x87\x3a\ \x07\x86\x0b\xd0\x54\x3d\xd0\x80\x7e\xd0\x80\x74\x50\x1b\x64\xb7\ \xd8\x5b\xd8\x66\xb4\xfe\x84\x18\x1b\x3e\x41\x07\xf4\xcd\x52\x01\ \x68\x48\x04\x03\xe0\xb1\x2b\xe1\x20\xb8\xe8\x03\x3b\x30\x80\x36\ \x00\x83\x58\x88\x83\x22\x90\x59\x6e\xb9\x90\x65\x90\xa4\x44\x46\ \x77\x66\xb8\x5b\x63\xbd\x82\xfc\x85\x56\xad\x43\xb3\xf6\x31\xc8\ \x1c\xad\xe5\x5b\x5e\xea\xc6\x46\xae\xbe\x55\xe3\x7a\xbe\x5b\x4c\ \x62\x08\x3a\x9b\x22\x44\x0c\x03\x19\xa8\xec\x34\x07\x03\xc0\x4e\ \xb1\x3c\xa8\x9c\x3c\x40\xf8\xfc\x53\xf8\x80\xc3\xb8\x54\xa0\x86\ \x3d\xf0\x01\x4c\x85\x4e\xfd\x9b\x87\x06\x90\xef\x06\x98\x07\x54\ \x69\x83\xd8\x4e\x84\x6a\x76\xb6\x41\x0f\x18\xb2\x25\x15\x75\xe8\ \x6f\x18\x90\x6b\x52\x0e\x0b\x22\x57\x07\x14\x80\x86\x73\x07\x03\ \x55\xa9\x32\x45\x62\x37\x65\x78\xf2\xe3\x96\xd8\x61\xc5\x06\xf1\ \xfe\x65\x6b\x08\x83\x32\xeb\x5b\x7d\xd6\x3a\x5e\xf5\xdb\x5f\x94\ \x01\x5f\x76\x5c\xa7\x7e\x4f\xfe\x21\x75\xea\x39\xce\xd1\x45\x55\ \x2e\xaf\x20\x98\x86\x10\x48\x29\x80\xf5\x14\x63\x06\x15\x3c\x78\ \xf5\xa6\x02\x65\x70\x82\xd2\x47\x01\xbc\x24\xfb\x21\x18\x00\xb1\ \xfe\xc6\xb4\xeb\x87\x01\xb8\xd8\x74\xe8\x87\x14\xdb\x78\x03\xec\ \xb6\xa6\xea\x27\x92\x83\xd3\x65\xe0\xef\x44\x50\x01\x31\xa6\x18\ \xb9\x08\x8c\x7b\x40\x87\x14\x8b\x05\x74\x00\x02\x75\xf8\x13\x14\ \xf0\x96\x3a\xa8\x74\x6f\x57\x64\x4c\x1f\x71\x16\x98\x81\x2b\x40\ \x56\x7d\xcd\xd1\xa3\xb6\x6e\x19\x20\x75\x7a\xd7\xdd\x51\xe7\xfc\ \xa6\x2d\xda\xd5\xe4\x59\xc7\xbd\x67\x3d\xee\x29\xd5\x88\x38\x78\ \x08\xb8\x89\xae\x02\x66\x50\xe2\xd5\x37\x07\x5d\x07\x88\x58\x52\ \xb6\x7c\xb0\x61\xc3\xc9\x3a\x1f\x3e\xe6\xf9\xd0\xe3\xc3\xde\x80\ \x7e\xa9\xfa\x49\x6c\x33\x51\xc3\xbc\x7e\x54\xa8\xf4\xbb\x97\xe8\ \x1f\xc8\x90\x22\x47\x92\x2c\x69\x52\x64\x22\x0c\x74\x56\xae\x84\ \xe7\x12\x15\x4c\x97\x2c\x67\xd2\x5c\xb9\x04\x5a\x9c\x58\x89\x58\ \xf5\x51\xc1\x4a\x85\x0a\x75\xcb\xee\x41\x8b\x05\xe6\x28\x18\x74\ \xd0\xea\x30\xdd\xb7\xaf\x8e\x32\x20\xe2\x8c\x55\xa1\xd6\x01\x29\ \xd6\x0e\x2c\x98\x69\x65\xfe\x51\xc5\xcd\x96\x2d\x4f\x9e\xe8\x93\ \x71\x06\x9b\x33\x37\x6a\xf5\xb1\x75\x66\x16\xad\x35\x19\x79\x98\ \x31\x9b\x71\x45\x86\x0c\x67\xd6\xdc\xb0\x55\xab\x56\xaf\x59\x19\ \xd8\xae\xe4\x39\x23\x63\xaf\x1b\x67\x5b\xf0\x2c\x61\x69\xf0\x8b\ \x13\x29\xd8\xcc\xc5\xbd\x8a\xf5\x32\xe6\xa3\xe8\xc4\x5d\x70\x82\ \xe7\x8b\x8d\x34\x4f\xe2\xf9\xa0\x56\xcc\xc7\x90\x79\xf3\x50\xd8\ \xd3\x90\x2a\x63\xc5\x8d\x6d\x54\x0f\xa8\xfd\xf1\x24\xee\xdc\xb8\ \x13\xb1\x7c\x09\x13\x15\xbc\xde\x32\x6b\xce\x4c\xf3\x29\x56\x9c\ \x4e\xb5\x7e\xaa\x52\x61\x42\x9d\xba\x22\xcb\x8a\x62\x45\x17\x15\ \xaa\x37\x71\xda\xc5\x49\x09\x93\xc9\x58\x56\x66\x2c\x3a\x90\x07\ \xb3\xd5\x9a\x3e\x53\x61\xf5\x39\x3b\x73\xe5\xca\x19\xbe\xfa\xfe\ \xb6\x7f\x7f\x46\x2f\xb6\xb9\x33\xf2\x60\xc3\x6b\xed\xbf\x3e\x61\ \xf4\xe5\x8c\x5b\x67\xb9\x77\x97\x33\xf9\xb1\xc0\xc2\x0c\x8a\x3d\ \xa1\x03\x68\x8d\xd1\xb1\x84\x0d\x5f\x3c\xe1\x44\x18\x19\x4a\x21\ \x4e\x15\xc6\x18\x03\x42\x2c\x1e\x56\xc1\x9d\x0f\xeb\xac\x33\xd6\ \x17\x5f\x7c\xf0\xc1\x17\x14\x3e\x41\x4d\x2a\x54\x50\x33\x84\x0f\ \xfd\x94\x73\x0b\x0a\xfe\xf3\xdc\x03\xd1\x44\x31\xbe\x96\xce\x2d\ \xf7\x0c\x90\xce\x00\xb7\xe9\x76\xe4\x91\x89\xf4\x41\x87\x4b\x2d\ \xb4\x10\x53\x4d\xc1\x11\xc7\xd2\x12\x40\xe4\xd4\x09\x0c\xac\x68\ \xa9\xe5\x73\x28\xa8\xa3\x8c\x51\xd5\x89\xb3\x8c\x32\xda\x55\x55\ \x85\x32\x0a\x55\x71\x94\x31\x99\x88\xb5\x85\x39\x96\xb1\x90\x07\ \x7a\x6c\xcd\x27\xd8\x7b\xce\xb4\x45\x60\x81\x84\xf5\xe7\x16\x36\ \x33\x30\x93\x07\x7f\x32\x48\x81\x98\x3e\x5b\xb0\x65\x4d\x81\x67\ \x08\x5a\x68\xa0\x74\xcd\x70\x9f\x5b\xe8\x89\x05\xda\x4a\x36\x48\ \x48\xe1\x63\x4e\x38\x31\xd6\x58\x06\xd9\x40\xe5\x17\x5b\x84\x31\ \xd6\x4a\x1f\x14\x43\x05\x18\x54\x68\x30\x00\x43\xb3\xd8\x33\x04\ \x0a\x18\xdc\x42\x51\x46\x3a\xc2\x91\x4b\x03\xe9\xf8\x6a\x24\x92\ \xc1\x9a\x94\xc8\x27\x30\x39\x09\x9c\x94\x53\x2a\x9b\xc6\x32\xc8\ \x61\xb9\xa5\x09\xcf\x2d\x03\x84\x32\xd0\x64\x66\x9d\x38\xe8\x80\ \x08\x02\x18\x20\x9c\x89\x8e\x39\x61\xb4\x48\xc7\x17\xfa\x9c\xb1\ \x60\x83\x7b\xa5\xa7\x8f\x35\x67\xb8\x87\x56\x62\x04\xe6\xf5\x96\ \x9f\xf3\x12\x3a\x67\xa1\x7a\xad\x35\x5f\xbc\x32\x5c\x31\x03\xc0\ \xfb\x01\x2c\xa9\xfe\x0c\x89\xbd\xd7\x9f\x14\x60\x85\x2a\x2a\x4d\ \x12\x4e\xa8\xe9\x67\x8f\x6d\xe1\x83\x14\x7b\x9c\x68\x03\x3c\x1f\ \xc4\xc3\x6a\xab\xf3\x28\x63\x0f\x0a\xb5\x35\x40\x07\x1c\xb7\x0c\ \x79\xcf\x3c\xf6\xc8\x22\x0b\x06\x0d\x34\x70\x4b\x3a\xc2\xca\x3c\ \x2c\x0a\xc7\xd2\x94\xac\xb2\x33\x2d\x71\x4f\x4e\x89\x64\xb9\x1c\ \x50\xd3\x41\x53\x14\xc7\x58\xc5\x12\xe6\x65\xb1\x64\xf8\x69\xa6\ \x5b\xb4\x97\x97\xbe\x6e\x90\x31\xe0\x19\x79\x5c\xd1\x1f\xa3\x81\ \x11\x38\x18\x61\x85\x5a\x93\xdf\x5c\xfc\xf5\x87\x17\x9f\x04\xc6\ \xeb\xa8\xd5\x79\x00\xbc\x20\x83\x94\xde\x87\xe7\xd5\x78\x05\xe8\ \x46\x18\x61\x11\xf4\x84\x58\x78\x6f\xa1\xc3\x16\xd6\xec\x91\xf0\ \x3a\x6e\x28\xb3\x07\x35\x16\xa3\xf0\x32\x0a\x1a\xb0\x4a\xc5\x10\ \x43\x0c\xa0\x8c\x8d\x0d\x7c\xf1\xf2\x2d\xb7\xd8\x93\x4e\x03\x2a\ \xad\x6c\xeb\x00\xd0\xcc\xfc\x79\x48\xc4\x02\x37\x93\x4b\xc3\xe5\ \x4c\x65\xb3\xc8\x7d\x92\xe5\x0b\x69\xa8\xe0\xcd\xd1\x47\x67\x36\ \xbb\xd2\x2c\x7e\xf0\x04\x85\x61\x80\xd7\x41\xc1\xea\xce\xc7\xae\ \xbb\xff\x5a\x0d\xb5\xbb\xf3\xe6\xf7\xde\xf0\x8c\x82\x5d\xc5\xd8\ \x4f\x43\x9d\xfe\x58\x62\x07\xc2\xe7\x28\x5d\x74\x19\x76\x96\x60\ \xcc\xf7\x87\xcd\xd8\x78\xb9\xf1\x5f\x62\x79\x95\x75\x46\xc5\x33\ \x74\xb1\x87\x38\x6e\x78\x9a\xd0\x8c\x3e\x14\xb3\xce\x2d\x3e\x4c\ \x34\x04\x44\xca\xcc\x33\x91\x3d\x41\x1e\x0e\x07\xff\x70\xc8\x42\ \xc7\xca\x72\x31\x84\x54\xb4\x01\x58\xa0\x13\x56\x22\x46\x45\x3a\ \xd3\x9d\xce\x26\x06\xc8\x49\x1c\x76\xd2\x87\x25\xbc\xa0\x59\x45\ \x9b\x9d\xd1\x62\x81\x0e\x1f\x7c\x40\x34\x4e\xd8\x02\x86\xb0\x01\ \x86\x0e\x34\xc8\x6c\x64\xa0\x8f\x33\xfe\x05\xb0\xc2\xe0\x25\x6e\ \x70\xe3\x9e\x9f\x00\x03\xc3\x3f\xb9\xc5\x2c\x65\xe3\x53\xf1\xda\ \x13\x30\xba\xc0\x47\x30\xf9\xd9\x0f\x7f\xae\xc6\x3d\xac\xed\xa5\ \x51\xce\xd8\xc3\x19\x90\x88\x3e\x6b\xc4\xc3\x09\x05\xf9\x02\x0a\ \x1e\xa2\x0c\x6a\x0c\x80\x35\xaa\x01\x59\x6d\xec\x21\x24\x2d\xae\ \xa6\x01\x70\xc0\x40\x2e\x72\x81\x81\x31\xf6\x4a\x23\x60\xe8\xc4\ \x01\x41\x67\x80\xde\x30\xa9\x81\xc4\x51\x01\x4e\xe2\xa0\x8e\xd6\ \x55\x30\x0e\x99\x39\xda\x05\xc1\xa0\xc1\x4c\x28\xc3\x0d\x75\xf0\ \x94\x77\xc4\x81\x17\x29\x1c\xe6\x3f\xed\xd1\x97\x33\xc8\x50\x1f\ \x41\xed\xfe\x67\x5e\x07\x33\xcc\xf6\xba\x86\x30\x40\x11\xe6\x2e\ \x50\x3b\xe4\x0d\x2f\x99\xc2\x80\x4d\x0a\x2f\x78\x09\x1b\x7f\x82\ \x37\x3d\x3e\xa9\x85\x52\xce\xb8\xc0\xf7\xe8\x46\x90\x14\xd1\xe1\ \x31\x5f\xc8\x05\x6b\xec\x61\x8f\x72\xe8\x28\x35\xf6\x50\x47\x03\ \x58\x03\x0d\xd5\x00\xa9\x72\xb2\x1c\x40\x6a\x24\xb2\x11\x30\x18\ \x30\x8d\x49\x52\x41\x1b\x71\xe6\x46\x96\x30\x0b\x08\x2a\x48\xc3\ \x12\x96\xd0\x2c\x0c\xde\x51\x1c\x75\xb0\x03\x0a\xec\xe0\x04\xa8\ \x58\x63\x43\xdd\x51\x94\x1b\xdc\xe5\xae\xb4\xc8\xeb\x5f\x92\xb2\ \xe4\x60\xba\x87\x17\xb0\x15\x6a\x5e\x2d\x7c\xcf\xf4\xc4\x39\x4e\ \x4c\x92\x33\x78\x93\xa2\xd4\x10\xf7\xc3\x0c\xae\x01\x6c\x7a\x50\ \x3b\xa1\x1b\x2e\x30\x35\x37\xc4\xa3\x6e\x4f\x00\x8d\x8a\x34\xc5\ \x92\x2f\x58\xae\x36\x0e\x1d\x80\x3d\x5c\x96\x4b\x58\x51\x04\x1a\ \xfd\xc8\x95\x8f\xa8\x90\x0a\xd7\x50\x21\x0e\xc6\x94\x19\xb1\x82\ \xa3\xcc\x65\xda\x24\x0d\x2f\x68\xcc\x12\xfe\x80\x0e\x6a\x62\x46\ \x83\xa4\xb8\xa6\x1d\x62\x5a\x87\x30\x94\x29\x61\x02\x6a\x97\x7d\ \xee\x13\x3d\x47\x31\x72\x3f\x57\x3b\x98\x27\x87\x08\xcf\xee\x31\ \x4a\xfe\x87\x01\x93\x9e\x38\xe7\x45\xca\x45\xf6\xd0\x87\x60\xf3\ \x29\x27\xe7\x79\x9f\x3a\x09\x88\xa0\x20\x74\x42\x85\x3e\x78\x0b\ \x3c\x28\x94\x5c\x28\xc0\x91\xe4\x78\xf5\xc5\x25\x7c\x31\x17\xea\ \xb8\x07\x45\xfa\xd1\x06\x8d\x6c\x64\x23\x13\x99\x47\x31\xfa\x51\ \xcc\x8f\xee\x46\x05\x23\x25\x29\x4d\xd2\x80\x82\x36\xe4\x91\xa5\ \x1a\x14\x07\x10\xfe\x10\x53\x14\xec\x43\x19\x23\x4a\x58\xbb\x8c\ \x61\x17\xc3\x98\xcd\x5d\x82\xaa\x4b\xc0\xba\x76\x05\x73\x60\x43\ \x7b\x30\x14\x62\xdc\x70\xc8\xd3\x15\xda\x25\xa7\xd7\xbb\x24\x4f\ \x81\x0a\x37\xb5\xa9\x2d\xaa\xe3\x9c\xaa\x9d\xe2\xe1\x86\x13\xa1\ \xe8\x09\xf6\x98\xc5\x13\x5c\x16\xdb\x2f\x60\x20\x9a\x3a\xbb\xad\ \x2c\x1a\xc0\x45\x89\x10\x30\x15\xbe\xbd\xe8\x10\xf4\x30\x04\xcf\ \xd1\x15\x49\xc4\xfa\x1f\x5e\xa7\xb4\x04\x30\xb1\xf4\x8e\xe8\x40\ \x47\x60\x65\x5a\x26\x71\x64\x22\x0c\x6e\x90\xc2\x0c\x8c\x91\x07\ \x4f\xe2\x70\x60\x8f\x85\xec\x15\xaa\x80\x59\xee\xc1\x0d\x9e\xa6\ \x24\xd0\x66\x23\x0b\x4f\xcf\x5e\x4f\x85\x3d\x2c\x27\xa1\x42\xe9\ \x2e\x11\x2c\x96\x4f\xe8\xb1\xae\x14\x14\xb2\x85\x14\xb9\xc8\x07\ \xfe\x28\xa8\xd0\x2d\x66\x51\x2b\x87\x11\x67\x65\x4b\x68\xd9\xcb\ \x86\x04\xab\x8c\xb8\x46\x03\x18\x09\xe6\x5c\x8b\x5b\x92\x44\xa4\ \x21\xb9\x53\xfa\xc2\x4a\x9b\xeb\x5c\x20\x14\xe1\x0f\xea\xa8\xc3\ \x3a\xfe\xb0\xcd\x30\x74\xb3\x0a\x84\xa2\x21\x7a\x07\x56\xbd\x7e\ \x72\xcf\x1c\xda\x33\x47\x9f\x3a\xeb\x9e\xf3\x4a\xaf\xb4\x76\x51\ \xef\xd5\xce\xe2\x5e\xf8\xf0\x89\x9d\x2e\x94\xe7\x3c\xf7\x12\x06\ \x1f\xb8\x81\xc8\x28\x48\x91\xa6\xbe\x00\x5b\x95\x4c\xae\x01\x0a\ \x5c\x89\x2c\x08\x0c\xc0\x34\xe8\xf6\x1e\xb7\x50\x47\x3a\x2e\x47\ \xa4\x79\xb8\xc6\xb7\xc5\x80\x6b\x31\x22\x2c\x61\x92\x2c\xc3\xc2\ \xc4\xf9\x42\x5f\x35\xac\xc7\x58\x40\x03\x08\xcb\xe0\xe3\x3e\x46\ \xcc\x21\x71\x90\x36\x2f\x8c\x12\x67\xc0\x14\x5b\x97\x76\x0e\xf1\ \x4f\x78\x02\xf2\x3c\xdb\x23\xbd\x47\x71\x92\x50\x98\x55\xdb\xa0\ \xde\x3b\xda\xf7\x80\xb6\x3d\x17\xb8\x02\xfa\xf2\x1b\x86\x3a\x90\ \x26\x6f\x5f\x68\x65\x03\x9e\x90\x0b\x00\x6a\xea\xc0\x13\xe2\x55\ \x2e\x08\xcc\x32\x38\x44\x84\x36\x95\xf3\xd5\x00\xba\xfc\x9a\xd4\ \x68\x20\xcc\x63\xd6\x4d\x22\x90\x69\xe6\x99\x7c\x81\x1a\x6a\xfe\ \xce\x0c\x15\xfe\x9a\x1d\x65\xec\x43\x0a\xe8\x20\x4f\x15\x82\x5d\ \x05\x43\xc5\x98\x93\x8f\x65\x1e\x65\x83\x3d\x99\x48\x1a\xe6\x9d\ \xf2\x7c\xa7\x39\x25\xc5\x48\xb5\xc1\x53\x6d\x5b\xf1\x29\x63\xcd\ \xd2\x35\xab\xc5\x73\x0f\x78\x11\x07\x36\x0e\xa5\x0c\x7d\x3c\x61\ \xc8\x47\x3e\x68\x34\x3f\x70\x8b\x5c\x68\xaa\xb6\xb0\x6c\xa8\xe3\ \xec\xa1\x8a\x5c\x44\x79\x8c\x2d\x53\xc7\x00\x50\x56\x1b\x22\xb1\ \x5a\x35\xc2\x85\xeb\x44\x5e\x9d\x1b\x62\xcd\x9a\xd6\xb6\xbe\xb5\ \x73\xa9\x5b\x26\xf0\x8c\x50\xd8\x7d\x36\x71\x76\x39\x6b\x8c\xad\ \xe4\x41\xbc\x84\x62\x9e\x10\xb1\x71\x3d\xf7\xc8\xd8\x9f\x07\xa2\ \x0b\xdb\xaa\x37\xa8\xb4\x09\x6a\x41\x74\xd9\x6e\x11\xe5\x52\xda\ \xc2\x50\x2a\x2f\x17\x90\xc1\x05\xd6\x11\x16\x16\x45\x71\x1d\x2a\ \x72\x32\x3c\x72\x71\x0b\xda\xda\x20\xca\xba\xcd\x48\x1b\xd6\xaa\ \xd1\x1d\xa9\x42\xa2\x70\x78\xd9\x96\x2f\x5a\x1b\x3d\x00\xb3\x71\ \x43\x50\xb5\x47\x05\x7e\x92\x58\x17\xdc\x26\x3e\xe0\x16\xc2\x93\ \x86\x0e\x29\x14\x16\x69\x1d\x10\xb6\x76\xb5\xcb\x0c\x0f\x29\x56\ \x6d\x13\xd7\x8a\x89\xe3\x5b\xf1\x3e\xe3\x19\x60\xe2\x64\xfe\x74\ \x5e\x38\x4e\x17\xf2\x98\x1c\x88\x84\x99\x01\xdb\xae\x7d\x49\xb3\ \x58\xcd\x3d\x87\xe9\x0b\xdd\x88\xec\xa9\x4b\x93\xcb\x89\x36\x68\ \xc0\x2c\x3e\x80\xb8\x30\x7e\x20\x9a\x0c\x8d\x88\x06\x84\xb9\xd6\ \x79\xf8\xca\x00\xbd\xac\x1c\xe4\x31\xa2\x07\x5f\xa5\x43\x35\x1c\ \xd5\xa8\x5c\xa5\x3e\xac\x44\xdc\x15\xaf\x78\xd8\x43\xd6\x93\x26\ \x0e\x65\x94\x09\x29\x1d\xb0\x44\x07\x3c\x44\x9e\xd9\x8f\x27\xf6\ \xb2\x1f\x8f\x89\xd3\x5e\x71\xf1\xe6\x18\x2f\x1c\x2f\x1e\xf7\x18\ \x9b\xa0\xbb\x8b\x47\xe4\x9c\xb5\x76\x57\x18\x84\xa0\xac\x79\x52\ \x7c\xf3\x91\x42\x3c\x2e\x94\xa1\x75\x38\x21\x9a\x4b\x80\x26\xb9\ \x02\xdc\xb8\x9d\xf3\x8a\xb6\xbc\x82\x48\x6d\xd2\xda\x0f\x79\x9b\ \x2c\x1d\xf7\x00\x52\xaf\x52\xa3\x9a\x79\x38\x6e\x08\xbc\xd5\xe8\ \x46\xe7\x21\x66\xa9\x53\xb8\xea\x2b\x59\x47\xea\x2f\xa3\x9d\x5f\ \x67\x65\x84\x23\x2c\xcf\x51\xcc\x1e\xed\xe5\x5e\xee\x55\xdc\x89\ \xd1\x90\xb6\x65\x5c\xb3\x19\x8f\x3e\x75\xc0\xd8\x19\xdf\x63\x8d\ \x87\xc9\x0d\x4a\xb3\xf1\x09\xd9\x14\x91\x31\x74\x81\x14\x3c\xc1\ \x07\x20\x84\x0f\x28\x83\x13\xa8\xc8\xb8\x80\x51\xe2\xfe\x94\xc3\ \x2c\xe4\x82\xba\x35\x00\xaf\x58\x4e\x96\x6d\x19\xe5\x51\x8e\x95\ \xf9\xca\x2d\x50\x4e\xd2\x49\x84\x30\xc1\x5f\xfc\xc9\x9f\xe8\x99\ \xc4\x27\xd8\x1f\x1d\x3c\x41\x17\xe4\xdf\x51\x84\x48\x73\x59\xc6\ \x65\x5c\x05\x79\x30\x43\xda\x15\xa0\xa1\x35\x5f\x82\x8c\xcd\x10\ \x05\xd5\x60\x98\x5d\xf5\x4c\x1c\xc8\x8d\x9d\x56\x68\x85\x31\x9c\ \x93\xf0\x99\xc5\x5e\xc4\x05\xc3\x51\xc3\xa7\xdc\x0e\x0a\xb0\x1e\ \xc8\x34\x80\xba\xcd\x82\xe5\x70\x19\x44\x41\xd4\x0c\x9e\x5a\x0b\ \x0a\xc9\x0c\xb6\x0c\xe7\xc9\x60\xe5\xdc\x21\x91\xb0\x95\x5b\x6d\ \x94\x83\x7d\xd9\xfc\x09\x5c\x22\xa8\x82\xfd\xe9\x40\x10\x0a\x61\ \x1b\x30\x1c\x35\x01\x60\x00\x1e\x21\x0b\x68\x97\x01\x06\x9b\xd5\ \x40\xa1\x13\xf6\x59\x25\x55\x9b\x7e\x9c\x5d\xec\x8d\x5d\xed\x49\ \xe0\xb5\xb1\xdc\x5b\x14\x4c\x62\xe4\x01\x52\x18\x83\x32\xa0\x80\ \x13\xd8\xc1\x3a\x94\x03\x35\x7c\xcc\x57\xd9\x03\x35\xf4\x43\xe4\ \x51\xc4\x46\xbd\x56\x80\xa1\x1a\x91\x0c\x49\x44\x81\xd1\x1d\x9e\ \x9f\x90\xdc\x83\xe3\x10\x09\x91\xf8\x08\x2c\xb6\x1f\x97\x45\xde\ \x0e\x4e\x58\x0f\x16\xdc\x12\xc4\x03\xb7\x80\xc0\xfe\xc1\xdd\x1a\ \x35\x88\x43\x9a\x1d\xa1\x11\xce\xce\x78\x28\xe1\xc8\xa5\xdd\xa1\ \xc8\xcb\x61\x10\x52\x3e\xad\x50\x24\x42\x5c\x1e\x78\x08\x57\x34\ \xa2\x78\x64\x21\xed\xd5\x05\x79\xf9\x87\x3e\x3c\x1a\x56\xac\xe2\ \xea\x7d\xa0\x44\xb0\xa2\x1e\x14\x43\x8c\xb8\x8a\x83\xfd\x88\xe5\ \xc0\xcc\x82\x5d\xd4\x3c\x0c\x09\x3f\x62\x59\xd2\xc5\xe2\x45\x01\ \x49\xaa\x3d\x58\x3a\xcc\x42\x3a\x3c\x5d\xab\xfd\xe1\xab\x25\xc2\ \x1a\x15\xdc\x16\x34\x23\x35\x50\x43\x17\x50\x01\xd6\xb1\x94\x8c\ \xb4\x54\xfe\x5d\x63\x12\x56\x41\xec\xcd\x00\xd4\x48\x41\xa5\x64\ \x4f\xc5\x79\xc8\x0c\x54\x41\xd5\x00\x51\x76\x8d\xe3\xd8\x4d\x9c\ \x31\xd0\x5e\x3a\xa2\x45\x12\x41\x8d\x35\x88\x22\x56\xec\x81\x0f\ \x94\x43\x39\x0c\x01\x4f\xf6\xe4\x00\x2c\x04\x8c\x68\x94\x06\x5c\ \x4e\xbc\x71\x5e\x3f\xae\x9f\x6a\xd8\xe0\x52\x02\xd7\xfa\xe1\x0a\ \xe7\x09\xd7\x10\xa8\xe1\x2c\x3c\x5d\x2a\x14\x03\x34\x38\xa4\x84\ \x25\x42\x02\x15\x9c\x0d\x1c\x5c\x17\x18\x03\x35\x54\x4c\x86\x09\ \x61\xd6\xd5\x9e\x00\x0a\x60\x9f\x91\x17\x36\x94\xdd\x38\xbe\xe5\ \xdd\x5d\x5c\xc4\x85\xdd\x16\x0a\xe0\x82\x68\xfe\x05\x82\x0c\x86\ \x12\x55\x23\x18\x74\x81\x0f\xe8\x83\x42\xd8\x83\x32\xd0\x88\x3d\ \x14\x63\x3e\xa6\x82\x1e\x28\xa4\x1e\x48\x25\xbf\xad\x9f\xe3\xd4\ \xc6\xfd\x80\x9e\x8f\xfc\xa3\x1a\x22\x5d\x2f\xa5\x83\x1e\xf8\xdb\ \x2c\xcc\xc2\x82\x05\x97\x56\x6e\xe5\x92\x48\x64\x46\x3a\xe3\x1e\ \x10\x8e\x59\x22\x9c\x5d\xa6\x25\x79\x78\x48\xc5\x01\x4c\x87\x88\ \xc8\x5b\xc6\x5e\x65\x3d\xa2\x89\x69\x17\xc0\x78\xc8\x78\xfc\x5f\ \x23\x92\x5c\x26\xf2\xe5\x51\xec\x41\xdd\x80\x8c\x70\xca\x52\x31\ \x98\x46\x31\x14\xc3\x03\xe8\xc1\x6b\x61\x26\x98\xf9\xca\x10\x38\ \xe7\x90\x24\x24\x67\xf6\xc3\x97\xb9\x06\x70\xad\x1b\x4b\xac\x8c\ \x21\x20\xde\xbf\x6d\x5e\x6a\x34\x8e\x6a\x1c\xe3\x84\x11\x9e\x99\ \x7d\x01\xea\x61\x05\x55\x54\x41\x21\x9e\xe6\xad\x01\xa0\x65\x08\ \x60\x61\xc8\xde\x47\x12\x8a\xec\x41\x22\x55\x60\xc3\x1e\x54\x01\ \x10\x8d\x23\x6e\x5e\xc5\x35\x66\x97\x6f\x62\x06\x35\x5c\x80\x0f\ \xc4\x83\x2c\xa1\x46\x69\x68\x00\x35\x3c\x00\x8d\x24\xe6\x66\x62\ \xe6\x03\xb0\xdf\x66\x6e\x1e\x66\xfa\xca\xe6\xc1\xcc\x73\x76\x9e\ \xbf\x39\x4e\xe6\xa8\x04\x94\xe5\x82\x21\xfe\xdc\xc2\x62\x7a\x1e\ \x5c\xc1\x55\xd4\x89\x27\x4a\xc0\x40\xc1\x9d\xde\x7a\x66\x06\x08\ \x64\x24\x7b\x0a\xe1\x49\x1a\xa1\xed\xc9\x67\xb0\xa5\xe7\x6c\x1a\ \xc3\x1e\xe4\xc1\x1e\x8c\xdc\x0c\x94\x87\x7f\x06\x28\x66\x9c\x0f\ \x35\x00\xc3\x1e\x0c\x40\x45\xfa\xc8\x55\x16\x43\x70\xd9\x83\x83\ \x2e\xe6\x03\x48\x27\x66\x3e\xe7\x84\xfa\xca\x2c\x2c\xe6\x42\x7e\ \x19\xac\x14\x83\x72\x6e\xe6\xba\x19\x02\xaf\x28\x64\x89\xfe\xa3\ \x8e\x44\x10\x8a\x8e\x04\x57\x86\xa6\x85\xe1\xc1\x87\xc4\xe4\xec\ \x80\x40\x21\xc2\x69\x8c\xce\xe9\xec\xcc\x1e\xd9\x39\xe2\x1e\x64\ \x17\xd9\x09\x29\x35\x75\x41\xe1\x00\x43\x17\xcc\x03\x8c\xdc\x23\ \x15\x00\xc3\x46\x21\xe7\x03\x24\xea\x62\x2e\x6a\x95\x6e\x9e\x1a\ \x2e\x6a\x1d\x66\x26\x2c\x4a\x84\x83\x35\x98\x6a\x04\x57\x66\x72\ \xd9\x3f\x7a\xc4\x67\x02\x62\x44\x5a\x98\x79\x82\x81\x58\xf2\xe9\ \x51\x74\x41\x17\xc0\x28\x9d\xa6\x6a\x66\x90\x07\xaa\x66\x1d\x08\ \xec\xc1\x05\x10\x8e\x69\xec\x81\x6f\x01\x43\x5b\x01\x43\xab\x29\ \x6a\x72\x42\x69\x62\x0a\x17\x96\x56\xe9\x84\x6e\x1e\x30\x59\xa7\ \x3d\x56\xaa\x6f\x5d\xa5\x6a\x1c\xe7\xfe\x3c\x64\xe5\x99\x0e\x9c\ \x94\x2d\x93\x0d\x9c\x67\x87\x34\x57\xab\xaa\xaa\xb5\xa6\x2a\x69\ \x12\xce\x1e\x14\x03\xad\xd6\xaa\xa1\xe2\x2a\xa2\x26\xea\xae\x2e\ \x6a\xa2\x1e\xe7\x97\x35\xce\x00\xc8\xca\x42\x0e\x49\x6a\x64\x51\ \xbb\xa6\xc6\x97\x25\xab\x1f\x76\xea\x31\x26\x82\x3a\x58\x98\x0d\ \xbc\xc8\x51\x38\x23\x22\x5e\xab\xbf\xfe\x2b\x9b\x1c\x1c\x9c\x6a\ \x6b\x45\x72\xab\x82\xd6\x6a\xae\x2e\xe6\x71\x32\x28\xaf\x2e\xa6\ \xe2\x10\x25\x46\x44\x67\xfe\xe0\xc8\x2d\x7c\x40\x2e\xbc\x52\x80\ \x5d\xa9\xaf\x0e\x01\xa7\x36\x6b\x92\x28\x09\x49\xc1\x83\x0e\x5c\ \xc0\xa9\xba\x5e\xb5\x02\x2c\xca\xe6\xdf\xec\x55\xc1\x05\x84\x81\ \x33\x34\xa3\x9f\xca\x6a\x2a\x6c\x6b\xad\xa6\x02\x30\x20\xaa\x1e\ \x24\x67\xe3\x40\xe9\xb8\xde\xcf\x5b\xd1\x46\x2f\xd9\x5b\x4d\x60\ \xac\xaf\x78\x84\xc7\x22\xd0\xa7\xe6\x0c\x3c\xa0\xc2\x16\xa4\x82\ \x8b\xa6\x2c\xd4\x0a\x61\x07\x48\x41\xa2\x80\xca\x16\xf4\x6b\x17\ \xcc\x6c\x2a\xf8\x69\x2a\x80\xc0\x46\x18\xaa\x06\x28\xaa\x2c\x69\ \x59\x66\x32\xe8\x2f\x2a\xa5\x6a\xcc\xa0\x6d\x29\xcb\x12\x84\x28\ \x57\x1e\x2d\x02\x81\xec\x94\xd8\xfe\x00\x1e\xd8\xc2\x05\x04\xc0\ \x79\x52\xc1\x1e\xac\x27\xb7\x90\x6a\xd4\xfe\xed\x51\x54\xc1\x40\ \x70\x95\x42\xe1\x81\x35\x5c\x06\x9c\x5a\xa4\x46\x1d\xc5\xd7\x7a\ \x19\x83\xb2\x1f\xba\xc2\x8a\xfa\x11\x89\x2f\xa2\xcc\x3d\x34\xc0\ \xb3\xd6\x04\x59\x7d\x02\xbd\xc2\x2d\x48\xf8\x0c\x71\xc0\xc3\x68\ \xec\x01\xa0\x02\x03\x30\x78\xed\x05\xe8\x40\x3c\x98\xaa\xa9\xf6\ \x2d\xe0\xbe\x2e\x56\x80\x80\x38\xe8\x83\x0e\x3c\xc1\xa8\xe4\xab\ \x85\x48\x01\x22\xa6\x82\x38\x54\x24\x8c\x14\x8e\xcf\x3e\x00\x72\ \x9e\xeb\x98\xde\x03\x46\xe0\xca\xf9\xd9\xa1\xcb\x64\x2e\x4d\xa8\ \x40\x2d\x78\xee\x01\xf1\x06\xe9\xe0\xc1\x2c\x04\x00\x30\x20\xc5\ \xf9\x00\x83\x08\xcc\x82\x2d\xc4\xc3\xd6\x16\x0e\xec\x86\xaf\xa8\ \xfa\xc0\x7e\x55\x08\x57\xb5\x12\xde\x88\x10\x52\x50\x81\x35\x98\ \xa2\x07\x1e\x99\xe2\xb1\x08\x43\x09\x98\xac\x80\x4c\xe5\xb0\x86\ \xf9\xcd\xc3\x0c\x7a\x11\x1c\x4c\x48\xc3\xc0\x41\x85\xcd\x44\x1f\ \x74\x2e\xf4\xa2\x44\x99\xb5\x92\xea\xc6\x03\x19\x3c\xc0\xf5\xb6\ \x4a\x31\x94\x81\x1e\x5c\xc0\x66\x9e\x67\xb7\xb4\xa8\xf8\xfe\xab\ \x31\xf8\x40\x86\x8c\x0b\xfa\xfe\x82\x10\x57\x51\x88\x14\x5c\x86\ \x32\xd8\xae\x0d\x74\xe0\x93\x11\x87\xa7\x41\xd9\x81\x79\x51\x34\ \x45\xd9\x94\xe8\x16\x1c\xa0\xd4\x00\x13\x70\x01\x87\x4e\x02\xe9\ \x40\x69\x06\x80\xb8\xda\x6a\xa1\x3e\xc0\x66\x9a\x82\x21\xe8\xc0\ \xaa\x20\xee\x05\x03\xac\x32\x5c\x9a\xa8\xdc\xee\x13\x98\x82\x3e\ \x38\x01\x4b\xe0\x1f\x56\xf8\xc0\x13\xa4\x01\x14\xa1\x00\xf3\xe6\ \xcc\x15\x53\x49\x1a\xd4\x16\x1d\xb0\xc2\x27\xd4\xf0\x47\x25\xc2\ \x3d\x58\x24\x30\x24\x6a\x19\x30\xb0\xe9\x26\xea\x66\xce\x82\x21\ \x3c\xc1\x03\xf4\xd5\xc9\x16\x31\x7b\x86\x41\x63\xe0\xc1\x07\xed\ \x17\x3c\x54\x48\x58\x28\x94\x38\xc4\xee\x91\x2d\xc1\x13\x98\xc8\ \x13\x60\x00\x07\xfb\x20\x4d\xcc\x30\x18\xd3\x55\x22\xa0\xc3\x1e\ \x3c\xc0\x05\xec\x70\x31\x94\xb1\xb8\xfa\xf0\x2c\xc4\xc3\x10\x63\ \x45\xc9\xa6\x5e\x1c\xcb\xb1\x31\x8c\x45\xdf\x58\xc3\x7e\xb1\x04\ \x1e\xb0\x8b\x14\x58\x30\x35\x34\x5e\x34\xa1\xc0\x3a\xb0\xc6\xe1\ \x3c\xab\x87\x4e\x08\xf3\x3e\xeb\x12\x0c\x70\x22\x6f\x65\x1c\x3c\ \x40\x3c\x30\x70\xb8\x2e\xe6\x84\x26\x6a\x3c\x44\x70\x03\xbb\xe8\ \x26\x23\x85\xb7\x58\xb0\xfe\x1c\xeb\x1f\xb9\x3d\x88\xed\x52\x49\ \x18\x54\xab\x38\xb4\x48\x8b\x7c\x00\x36\x85\x4c\xad\xd0\xc4\xca\ \x40\xd9\x18\xc5\xf2\x4c\x78\x71\x2d\x3f\xe4\x10\x30\x70\x2a\x50\ \xb2\x21\x8c\xf3\x38\x6b\x6c\x3c\xcc\xc2\x03\x5c\xe4\x45\x62\x86\ \x31\x68\x4b\x73\x7d\xc8\x31\xb3\x94\x0c\xe0\x0e\x85\x9c\xef\x4a\ \x3c\xc1\xec\x3c\xf3\x8a\x74\x60\x2e\x50\xd9\xe1\x04\xb0\x72\x01\ \xd0\xe9\x20\x72\x37\x8f\x59\x22\xc4\xc1\x00\x69\xc0\x2c\xc8\x02\ \x39\x97\x73\xce\xfa\x70\x3c\x68\x80\xa9\xce\x6c\x66\x78\x08\x31\ \x83\x88\x9b\xc6\xf3\xad\x81\x80\x13\xaf\x84\x58\x34\x86\x0d\x40\ \xf1\x65\x50\xc1\x3a\xe4\x2b\x0a\x9c\xb4\x1d\x7c\x41\x1a\x74\xd0\ \xda\x5a\x98\xeb\xd0\x70\x41\xc3\x5a\x27\x70\xd9\x03\x18\x02\x00\ \x31\xb4\x21\x5c\x69\x72\x6e\x26\x03\x7f\xed\x33\x72\xe4\x6a\x4e\ \xab\x46\x23\xdc\x3a\x88\x72\xd5\xfa\x40\x9a\x75\x41\xe3\x7d\xc0\ \x49\x1f\x8e\xc5\x7e\x00\x1c\xb4\x48\x16\x4f\x09\x37\xc7\xb4\xe8\ \x25\x02\x34\x0c\x09\xbd\x8d\x73\x80\x3d\x40\xab\xb1\x31\x3a\xab\ \xb3\xa9\x0e\xf5\xbf\x76\x01\xe1\x2d\xc1\x16\x54\x41\x1c\x97\x03\ \x8b\x20\x44\x29\xda\xfe\x01\x1a\xe6\x92\xcb\x28\xde\x54\xdb\x04\ \x41\x5b\xf5\x55\xdf\x83\xc6\x3a\x18\x97\xb9\x95\x0a\x3e\x80\xd3\ \x6e\xc4\x3a\xc7\x68\x06\x5e\xf4\xbe\xce\x5e\x11\x17\xf5\x3d\x1b\ \xf3\x3b\x82\x58\x9a\xac\x72\x5c\x9f\x34\xc8\xa0\x80\x01\x60\x6e\ \x34\xc5\xb0\x0a\x03\xd0\x12\xa8\x00\x4c\xe3\x35\x02\x21\x74\x8c\ \x1c\x85\x6f\x6d\x44\x4d\xdf\x82\xe2\xb4\x8a\xd7\xce\x29\x35\x58\ \x34\x08\x78\x08\x08\xc4\x1e\x3a\x54\x85\xec\xbd\xf6\x30\x5b\x2b\ \x35\x48\x88\x13\x6c\xb2\x14\x24\x04\xeb\x9d\x74\xfc\xa6\x01\x8e\ \xa8\x03\x8e\x58\xb1\x3f\xab\x83\x4a\x1c\xd8\x12\x54\xb5\x67\xa3\ \x68\x22\x84\xb6\x68\x37\xd8\x2c\xe8\xd6\x3d\x76\xc1\xe9\x8e\x75\ \xd6\xc5\xc2\x8b\xa2\xc3\xa8\x12\x73\xb7\x88\x6a\x34\xca\x36\x35\ \xc8\x76\xbf\xa6\x2c\x15\x84\x41\xbe\xf6\x31\x06\x51\x5f\x19\xae\ \xf2\x8a\x38\xf5\x12\xc4\x2f\x1a\xa6\x41\x94\x01\xb7\x0a\xcc\x37\ \x67\x77\xf6\x72\x83\x54\x1c\x14\x8d\x06\x34\x4e\xfe\xcc\x42\x71\ \x6e\x14\x8c\xf8\x69\x45\x66\x32\x35\x81\x08\x78\xbb\x36\xed\x88\ \xa5\x6b\x33\x38\x3c\x03\xae\x8c\x6c\x72\x2c\x78\x8a\x2a\xd7\x41\ \x53\xfb\x76\x6d\xfe\xa5\xc1\x4a\x37\x00\x40\x47\x53\x1a\xa8\x02\ \x7e\xe7\xf7\xcc\x24\x42\x27\xf0\x15\x51\xe6\x4f\x4e\xaf\x8a\x97\ \x6d\xad\xa9\xfa\xee\x8b\xba\x68\x88\x90\x5d\x58\x22\x0d\x6a\xd6\ \xb6\xf8\x52\x43\x18\xa8\xb2\x89\x28\x83\x89\xa0\x80\xe2\x69\x78\ \xba\xf5\x01\x4b\xaf\x84\x72\x8b\xb8\xc7\x1e\x34\x2f\x45\x77\x88\ \xbe\xf1\x1e\x2e\xce\x8b\x76\x81\x08\xb0\xee\xa9\xb6\x76\xb7\xbc\ \x76\x88\x4c\x23\x59\x0b\x61\x79\xef\xf8\x3a\x4c\x11\x3a\x94\x43\ \x7c\xab\xb4\x4d\xe4\xc2\x0b\x34\x40\x1f\xdc\xb5\x91\x1f\xad\x18\ \x47\x37\x06\x80\xa9\x3d\xdc\xa3\x73\xaf\x2f\x75\x5b\xa4\x81\x67\ \x39\xca\x8a\x43\x97\x97\x48\x97\xb3\x4a\x3f\xd4\x41\x07\x49\x75\ \x49\xb1\x42\x88\xa7\x79\x1a\x71\x65\x88\x6e\xa7\x1e\x28\x69\x9c\ \x63\x72\x69\x52\x83\x8d\xdb\xf9\x69\x52\x43\x89\x6c\x87\x2a\x1a\ \x05\x15\x28\x03\x58\x61\x5f\x17\x7f\x31\xa1\x83\x71\x22\xa8\xe0\ \x2d\x00\x76\xab\xa4\x02\x35\x4c\x63\xcc\xae\x36\xa4\x03\x6c\x17\ \xc0\xef\xc4\x94\x46\xa9\x83\x41\x1b\x94\x43\x29\x3a\x35\x9a\x77\ \x3a\xf4\x62\x35\xe2\x95\x7a\x93\xcf\x8e\xa9\x12\x4e\xeb\xa6\xfa\ \xb5\x2a\x83\xfe\xc3\x2c\x81\x8a\x94\xa1\x19\xc6\x35\x0c\x0c\xba\ \xad\x2b\x72\x22\x40\x14\xa1\x0e\x13\x06\xc1\xa9\x08\x30\x38\x96\ \x03\x7b\xea\x51\xc1\x16\x28\x17\x6d\x35\x86\xa0\x2f\x7b\x4c\x63\ \xf5\x00\x0d\x36\xb5\xb2\xee\x83\x5b\x3b\x7b\x82\xc0\x3a\x4c\xf5\ \x0b\xbc\xad\xb7\x7f\x7b\x3f\x64\x9d\x9f\xc2\xf3\xa3\x9b\x3b\x35\ \x1d\x71\xce\xa4\x41\xb7\xb7\xbb\x55\x1f\x34\xbc\x13\xce\xbc\xd3\ \x3b\x06\x51\xc1\x13\xe4\x4c\xb2\xeb\xfb\x72\x27\x82\xab\x66\x20\ \x05\x03\x7c\xfe\x51\x41\x47\xd7\x04\xbe\xb3\xbb\xc1\xe3\x75\x22\ \xd0\xf8\xad\xf5\x3a\xaa\xbe\x38\xc3\x47\xfb\x7f\x41\x7c\xbe\x4f\ \x7c\x7e\x77\x42\x98\x40\xbb\x86\x11\xa9\x81\xff\x3b\xb0\x53\xc3\ \x09\xaf\x44\x2d\x28\x3b\xc8\xd7\xeb\xc8\x57\x3b\xe2\x96\x66\x61\ \xcb\xe9\xc6\x53\x93\x62\xaf\x44\xc4\xbb\xfc\xcb\x1f\x63\x27\x54\ \x7b\xb5\x92\xe6\x94\xd7\xf9\xcd\x5f\x06\x35\x10\x5e\xc4\xf7\xbc\ \xad\xf3\x3b\xae\x51\x01\xd1\x57\xb0\xa3\x17\x3d\x4b\x81\x40\xb6\ \xd3\x41\xcb\x2b\xbd\xb7\x57\x3c\xe3\xb6\x95\xd3\xff\x3a\x26\xbf\ \x28\x9c\x32\xb6\xd4\x1f\x85\x0f\x34\x80\xa0\xf3\x3c\xd6\x9f\x29\ \xd3\x83\xfe\x81\xe9\x52\x37\xc9\x1b\x36\xe3\x56\xa4\x10\x82\x3d\ \xdc\x87\x2f\x15\x14\x7c\xda\xeb\xbb\xc8\x1f\xc5\x9f\xce\x8e\xd3\ \x5f\x90\xdc\x0b\x73\xb4\x9f\x6a\x8b\xc7\x3b\xd8\xa3\xfc\x69\x9a\ \x69\xde\x1b\x3c\x57\xae\xaf\xa9\xa3\xaa\x8c\x54\x24\x1c\x63\x06\ \x46\x9a\x6a\x06\x86\x37\xe6\xab\xa7\x7a\xca\x5e\xca\xea\x04\xda\ \x2f\x3e\xdc\xee\x3d\x35\x39\x3d\xe5\x9f\x08\x14\xe9\x3a\xc7\xa0\ \x6a\x58\xae\x36\xeb\x8b\x03\xc1\xee\xed\x87\x68\xfc\xbf\x2a\x3e\ \xe8\x83\x3c\x89\xe7\x5f\x39\x74\xd5\x17\x28\x84\xd3\xa2\xf6\x46\ \x80\x08\x15\x18\x43\x2c\xac\xfe\xdf\xc4\xaa\xeb\xef\x41\xb9\x53\ \x6b\xfe\x25\x47\xed\x63\xbd\xd6\xf7\x69\xd1\x50\x81\x3d\xac\xfc\ \x84\xac\x03\x8c\x78\x2d\x08\xa0\x43\x17\x68\x7f\xf0\x63\x64\x6b\ \xef\x68\xe1\x54\x85\xec\x4f\xfd\xf8\x37\x97\x4e\x34\x7f\xda\xdf\ \xfe\x48\xab\x73\xe1\xd0\xaa\x8c\xe0\x8e\x72\x95\x70\x39\x70\xcb\ \xe2\x18\x43\xf0\xd3\x78\x33\xc6\x71\xec\x9d\x3c\xdd\xbf\xa9\x11\ \xd2\x3e\x40\xfc\x13\x38\x90\x60\x41\x83\x07\x11\x26\x54\xb8\x90\ \x61\x43\x87\x0f\x21\x46\xec\x14\x0b\x4c\xc5\x8a\xc0\x44\x50\xdb\ \xf3\xfe\xe0\x01\xb5\x2e\xd4\x72\xd1\x11\x39\x92\xa4\xc8\x25\x5f\ \x94\xa1\xa3\x62\x11\x4c\x2c\x10\x2c\x61\x56\xec\x62\xcc\x18\x88\ \x0e\x20\x68\x1a\x8b\x09\xa2\xcb\xcb\x98\x2c\xe3\x74\x8a\x38\x94\ \x68\x51\xa3\x47\x91\x0e\x4d\x14\x87\x25\x30\x6a\x22\xba\x38\xdd\ \xf3\x32\x95\x8d\x92\x57\x47\xca\xfa\x82\x42\x25\xc5\x9f\x30\x41\ \x50\x33\x46\x2d\x4f\x4f\x9c\x5f\xd1\x56\x8c\x95\x94\x6d\x5b\xb7\ \x6f\xe1\x0e\x4c\xe4\x15\x4c\x97\x2e\xa9\x7a\x52\x4b\x05\x86\x8a\ \xbd\x25\x58\x01\xd3\x39\x89\xc2\x5e\x39\x95\x2c\x57\xb2\xe4\x39\ \x93\xda\x4b\x63\x3d\xc1\xf8\x54\x0c\x93\x66\x27\xa1\x71\x31\x67\ \xd6\xbc\x79\x60\x27\x96\x76\x41\x53\xa1\xf2\xc0\x6a\x60\xd3\x4b\ \x4e\x3e\x41\xb1\xce\xc7\xba\x2d\x3e\xf6\x78\xac\x2b\x56\x63\x4d\ \xb3\x5d\xf6\xf4\x84\x0c\xb9\xa2\xb1\x0b\xd0\x12\x71\x16\x3e\x9c\ \x78\xd1\xb9\x88\xbb\x58\x4c\xf5\xe4\xaf\x69\xe7\x80\x6d\x7c\x71\ \xe2\x1a\xc5\x16\x27\x5b\xd6\xc5\x8b\xbd\x87\x3b\x68\xbb\xb9\x71\ \x2b\x5b\x56\x9c\x7c\x79\xf3\x07\x13\x79\x9e\x5c\xd1\xc7\x73\xf7\ \xcf\x4b\x0b\x8e\xfe\x04\x7b\xbc\x78\x17\xf6\x5c\x88\x67\x6a\x8b\ \xfe\x0e\x14\xc1\xcf\x0b\x50\x40\xe2\x8e\x8b\xa9\x9c\xf8\xde\x4b\ \xf0\x3d\x78\x6c\x68\x10\x0f\x1b\x50\xc3\xe0\x13\x00\x07\xac\xd0\ \xc2\xb8\x98\x82\x89\x8a\x0f\x14\xec\xd0\x43\x91\xfa\xa8\xe5\xc2\ \x11\x49\x6c\xab\x40\x8b\xe6\x41\xf0\xc3\x15\x01\x4b\x03\x06\x0a\ \x4b\x8c\x51\x46\x88\xd4\xab\x28\x15\x0e\x59\xcc\xf1\xaa\x25\x26\ \x9c\xd1\xc7\x1f\x19\x2a\x90\x8a\x2d\x74\x2c\x12\x44\x11\x81\x4c\ \x52\xc9\x82\xd2\x5b\x89\x9a\x2f\x8c\xcc\xd1\x45\x18\x97\xac\x12\ \xc8\xb9\xa8\x78\x22\xca\x15\x79\xa4\xd2\xca\x2f\x7d\xec\xc4\xaf\ \x2d\x3b\x0c\x11\xcc\x33\x95\x4c\xe4\x13\x32\x13\x9c\x12\xcd\x37\ \xaf\x64\xf3\xb9\x34\x7a\x84\xd3\xce\x19\x13\x81\x41\x4e\xc0\xcc\ \xbc\xd3\x4f\x19\x13\x49\x04\x8e\x3d\x49\xa2\xd3\xcb\x3f\x11\xad\ \x30\x11\x75\x08\xa5\xc3\xd0\x44\x21\x2d\x31\x91\xe6\xc8\xec\x33\ \xd2\x4b\x2f\xcc\x93\xcc\x2e\x31\xed\x34\x53\x4a\xa5\xac\xd3\xd3\ \x51\x05\xd4\x34\x47\x4b\x49\x4d\x35\xc0\x44\xd2\xe0\x52\x54\x55\ \x61\x2d\x2f\x11\x56\x3c\x7c\xe1\xd5\x58\x71\x2d\x6e\xd2\x04\x51\ \xcd\xd5\x57\x02\x19\x7d\x8e\xd3\x5f\x89\xd5\x15\xd4\x1d\x5f\x2e\ \x38\xb4\xd8\x65\x31\x33\x15\x2b\x15\x3e\x61\x56\xda\xe1\x04\xbd\ \x2a\x59\x65\xa7\xcd\xd6\x44\x5a\x4d\xba\x56\xdb\x6f\x35\xdb\x15\ \x5a\x70\xc9\xcd\x4c\xcd\x40\xcb\x4d\x57\x5d\x52\x03\x02\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x87\x04\x02\x14\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd8\x88\x8d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5d\xc8\xf6\xff\xff\xff\xff\xff\xff\xdc\x89\xb6\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd3\x4b\x97\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x50\x68\x9c\x57\xa8\xe4\x13\x27\xa8\xd8\xc9\ \xe7\xff\xff\xff\xff\xff\xff\xff\xff\xff\x08\x68\x9a\xf6\x89\xb9\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\xa7\xb7\xff\ \xff\xff\x9b\xf2\xfc\xff\xff\xff\x13\x2a\xde\x50\x68\x60\x4e\x68\ \xf8\xd9\xe8\xf8\xff\xff\xff\xfa\xc8\xe7\xff\xff\xff\x28\x47\xea\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x98\xc8\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xd9\x90\xf3\x7d\x87\xad\xff\xff\xff\xf9\xe8\xf0\xf7\xb2\xf0\ \xff\xff\xff\xd3\x28\x24\xff\xff\xff\xff\xff\xff\xb7\xb3\xf4\xb3\ \x68\xac\x7a\x8c\x3f\xff\xff\xff\xfb\x8e\x5e\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb6\xc9\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x49\x49\xdf\xff\xff\xff\x09\x18\x61\x38\x56\xf6\xff\ \xff\xff\x7b\x8b\x70\x0b\x17\x1b\x9a\x93\x83\x95\x93\xf4\x97\xb1\ \xf8\x11\x38\x66\xb6\x67\x5c\x5b\xb7\xeb\xff\xff\xff\xfb\xcf\xab\ \xff\xff\xff\xd6\xd9\xf0\xfb\xfd\xfa\x7d\xf5\xfc\x1c\x7c\xc9\xff\ \xff\xff\x04\x0d\xd7\x74\x88\xf7\xfa\xd8\xec\xff\xff\xff\xff\xff\ \xff\xda\xae\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xf4\x98\xb5\xb9\x8d\xf4\x36\x4a\xeb\xb3\x68\xec\xff\ \xff\xff\xb8\xd8\xfa\xde\x98\xb2\xff\xff\xff\xfa\xb7\xbd\x58\x76\ \xf9\x4c\x2a\xa9\xce\x2e\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb1\x29\x25\xff\xff\xff\xc4\xe2\x9c\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x94\x68\xfa\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7a\xcb\ \xf9\xf9\xa7\x88\xff\xff\xff\x91\x6a\x72\x78\xb3\xf8\xff\xff\xff\ \xff\xff\xff\xfa\xeb\xba\xff\xff\xff\xb9\xf3\xfc\x94\x34\xce\xff\ \xff\xff\xa4\x3e\xec\xff\xff\xff\xff\xff\xff\xa7\x1d\x5a\xff\xff\ \xff\xff\xff\xff\xf7\x92\x8d\xff\xff\xff\xff\xff\xff\x40\xb5\xeb\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\xd8\xfb\xb2\ \x9a\x76\xb8\xb8\x7f\xbe\xc8\x98\xff\xff\xff\xde\x97\x95\x95\x56\ \x39\xff\xff\xff\xff\xff\xff\x4f\x58\xa2\xff\xff\xff\x57\x76\x25\ \xff\xff\xff\x18\x36\xa2\x12\x78\xa9\xff\xff\xff\x8f\x79\xa4\x19\ \x36\xe1\xff\xff\xff\xff\xff\xff\xb0\x58\x3b\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x69\x7a\xf4\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xb2\x59\xb0\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x72\x58\x67\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xfc\xb8\x8e\x97\x98\x53\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x86\x7b\x39\xba\xb8\xbd\xd9\xfb\xfc\xb9\x99\xb1\xef\x79\ \xa9\xff\xff\xff\x70\x78\x2a\xff\xff\xff\x7d\x97\xf9\xff\xff\xff\ \xaf\x78\xf9\xff\xff\xff\xf4\x39\x38\xff\xff\xff\x93\x5b\xfa\x90\ \x77\xf8\x72\x17\x57\xff\xff\xff\x55\x9a\xe3\xff\xff\xff\xff\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\ \xc8\xb0\xa1\xc3\x87\x10\x07\x1a\x89\x48\xb1\xa2\xc5\x8b\x18\x33\ \x6a\xdc\xc8\x31\xa3\x91\x8f\x1d\x43\x8a\x1c\x49\xb2\xa4\xc9\x8d\ \x1f\xc3\x81\xd9\x37\xf1\xa4\xcb\x97\x30\x63\xca\x6c\x98\x72\x04\ \x18\x30\xae\x66\xea\xdc\xc9\xb3\x27\x46\x23\x85\x38\x1c\xb3\x69\ \x33\xa7\xcf\xa3\x48\x93\xee\x4c\x49\x2b\xcd\xd0\x9b\x60\x00\xb5\ \x54\x4a\xb5\xaa\x55\x8f\xae\xfa\xf5\xa3\xf5\xf4\xa6\x4d\x61\x57\ \xc3\x8a\x1d\x7b\xf0\xa3\xab\x34\xb4\xfa\x0d\x1d\x61\x6c\xc4\x88\ \x63\x70\xc3\x91\x9d\x4b\x57\xe9\x47\x61\xb4\x68\x75\x58\x0b\xe6\ \x2d\xdc\xa1\xc2\xa6\xd6\x1d\x4c\xd8\xa5\x91\x5f\x5b\xb7\x3e\x75\ \x7b\x2c\x8d\x63\xb7\x37\x05\x17\x9e\x4c\xd9\x63\xb8\x0e\x4d\xd3\ \x10\x75\xeb\x98\x6b\x57\x9c\x95\x43\x8b\x86\x08\x34\x0d\xe6\xa6\ \x8b\x3b\x3b\x5e\xec\xb5\xd0\xe8\xd7\xb0\x0b\x02\xdd\xba\x40\x8c\ \x53\x9b\xc7\xf2\x26\xfe\xec\x35\x8d\xe4\xd8\xc0\x09\xdf\x45\xbb\ \x60\x01\x57\xc6\x68\xc5\xa4\x75\x0a\xb5\x2f\x98\xb8\xbf\x83\x4b\ \x17\xfb\x31\x88\x5e\x5a\xb5\x17\x37\x16\xc3\xfd\x78\xf3\xe7\x70\ \x47\xfe\xec\x9b\x4e\x9e\xba\x11\x77\x3b\x3e\xd5\xd6\xdb\x15\x6e\ \xde\x05\x7b\xdd\x12\xed\xdb\x58\x6d\xe0\xf2\xf8\xed\x1a\x49\xf6\ \xa9\x3f\x7c\xef\xf4\x75\xd0\x41\x77\xac\x11\x95\x9b\x53\xc7\xb8\ \x10\x5d\x7e\x0c\x1a\x66\x44\x20\x1c\x88\x51\x9c\x18\x5a\x1d\xe3\ \xd5\x08\xa6\x49\x28\x46\x7c\x7d\xc9\xf7\x96\x6a\x69\x05\xd1\xe0\ \x88\x30\x7d\x24\x8a\x72\x62\x7c\xd2\x41\x3f\xab\x31\xa6\x55\x5a\ \x1d\x30\xd7\xe1\x5f\x34\x6e\x25\x60\x3f\x0b\x92\xa8\xa3\x47\xfb\ \x71\x57\xdc\x27\x14\x22\x88\x21\x66\x69\xa8\xd5\xd5\x87\x34\x3a\ \x86\x56\x07\x9f\x8c\xd2\x01\x07\x39\xee\x28\xe5\x43\x1f\xfd\xd2\ \x41\x6d\x0b\xa8\x07\x9f\x91\x7e\x35\x16\x9e\x4d\xcf\xe5\x75\xdb\ \x5b\xba\xd1\xd2\xdf\x28\x2c\xe2\x38\xe5\x9a\x14\x7d\x94\xcc\x80\ \x1a\x72\xb7\x17\x8d\x1e\xca\x77\xd3\x31\x03\x6a\xc6\x18\x8c\xb4\ \x8c\xc2\x9d\x53\x4e\xb9\xc6\xe6\xa0\x0c\x19\xe1\x0a\x07\x79\x71\ \xa7\xe8\x9c\x8d\xe9\xa5\x99\x57\xce\xbd\xc5\xa2\x7c\x45\xd2\x22\ \xa1\x9f\x1b\xea\xe9\x96\x51\x84\x76\x4a\x90\x89\x96\x62\xa9\x28\ \x6a\xb9\x99\x99\x8b\x18\x47\x82\x09\x99\x5b\x5b\x71\xd7\x24\x77\ \xfe\xa3\x64\xb6\x5a\x38\x51\x7a\xaa\xa3\x89\x28\xfa\xd8\x9d\x98\ \x79\x7d\x92\x0b\x90\x8f\x5e\x08\x15\xab\xd8\xf9\x07\x6b\x6d\x1b\ \x0e\xa8\x95\x5c\xb6\x0e\x6a\x16\x76\xd0\x62\xa7\x5c\x5e\xa7\xa5\ \xa8\x9e\x5a\x60\x76\x98\x2d\x86\x96\xc2\xaa\x68\x7f\xea\xad\x08\ \x68\x3f\xcc\x36\x2b\x65\x95\xef\x49\x68\x69\x99\xa1\xf6\xf7\x2b\ \xb6\x33\xae\xe5\x17\x5a\x36\x4a\xd8\xa4\xaf\x2b\x00\x1b\x1e\x5c\ \x50\x9a\xbb\xe3\x47\x5b\x85\x5a\x9c\x98\xa5\x66\x09\x2e\x7c\x8b\ \x61\x88\xad\xa4\x04\xbf\x07\x6e\x2e\x2b\xbc\x2b\xef\x31\x46\xd6\ \xea\x6f\x6c\x0f\x8e\x32\x70\x71\xc6\x79\xd6\xeb\xaf\xc8\x2e\xdc\ \xa1\x62\x43\xb5\x1a\x23\xc5\x66\xba\x8b\x46\xbe\xb4\xc8\x57\x9f\ \x91\x2e\x5c\x9c\x5f\x75\xc5\xa1\xb1\x80\xcd\x03\x77\x96\xa5\xcd\ \xea\x51\xb8\x2a\x72\x45\x16\xb9\xc0\xaf\x62\x26\x97\x65\xc4\xa7\ \xde\x06\x17\x8b\xfb\x5a\x2c\x33\x65\x46\x84\x01\xf2\xcd\x5a\x76\ \xfc\x1e\x1a\xb9\xc0\x27\x61\x8c\x44\x05\x4d\xef\x7b\x11\xf7\x17\ \x64\xa5\xfd\xa1\xa1\x1c\x82\x34\x0e\x85\x67\x07\x4e\x3f\x5d\x97\ \x9b\xb9\xa0\x21\x77\xcd\x1d\xa3\x85\x1d\xd6\x40\x86\xbc\x96\xfe\ \xdd\x4d\xd5\xbb\xc3\xaf\x9f\xac\xb0\x00\x8b\x69\xa5\x3c\xf6\x97\ \x23\x77\x1b\x86\xdb\xb0\x7d\xe4\xc5\x27\x2b\x67\x3d\x70\x5e\x94\ \xdf\x8c\x46\xcf\xfa\x72\xa6\x21\xe1\x03\x1a\xec\xae\x6d\xc4\xf5\ \x87\x5a\x8b\x50\xe5\x66\xed\x8a\xbf\xb4\xcd\xb8\x55\x1f\x85\x31\ \x0a\xb8\x36\x53\x5e\xb9\xe5\x78\x8b\x8d\x2d\xca\xc9\x16\xee\xaa\ \xd8\x7e\x12\x9e\xe2\xe0\x7f\x91\x4e\xa6\xaf\xa7\xc6\xd8\x8f\xa0\ \xab\x0b\x67\x44\x2c\x7b\xf8\x97\x65\x53\xb3\xcb\xbd\x82\xdc\x38\ \xdb\xf6\x57\xa2\x31\x3a\x06\xe7\xeb\x4d\x0e\x28\xae\xa5\x02\xae\ \x86\xd6\x97\x23\xf4\x33\x34\x7c\x4a\xa6\x91\x8c\xea\xc9\x1f\x65\ \xc4\x3b\x64\x9c\x81\xca\xaf\x14\x66\x86\x5d\xcd\x2b\xcb\xad\x65\ \xd1\xba\xab\xd5\xd9\x95\x1a\xeb\xcf\x8a\xfa\x81\x99\x14\x6d\xa8\ \x5b\xe2\x5a\xd8\xda\xb2\x07\x97\x22\x75\xc0\x0b\xec\x6b\x9f\x4e\ \x3e\x12\x8b\x76\x9c\xa1\x1d\x80\xcb\x1a\xb4\x6e\x46\xb5\x83\x4d\ \x8e\x48\xad\xb2\x5f\xb7\x0c\xe6\xa7\xce\xf8\xaa\x49\x7a\x11\x83\ \x93\x8a\xc4\x34\xb5\x2d\x87\x85\x04\x4c\xd1\x0e\x16\x27\xc1\xb0\ \x7c\xc4\x01\x30\x68\x47\x3b\x50\xb1\x87\xbf\x45\x6c\x05\xfe\xd3\ \x5b\x19\xb8\x7a\x56\xb9\xb3\x25\xa6\x70\xc5\x02\x12\xb8\xc4\x35\ \x20\xfa\x09\xc8\x7b\x69\xbb\xde\xf7\x06\xe4\x2e\x5f\x45\x21\x82\ \x35\x3c\xc9\x47\x02\x91\x84\x28\x0c\xc1\x82\x3c\x84\x18\x2a\x7e\ \x18\xb1\xcb\x5d\xee\x55\x70\xca\xd4\xff\x04\x64\x2a\xff\xa4\x87\ \x42\x02\x1a\x05\xc4\x3e\xa1\x15\xd3\x9c\xec\x4b\x8d\xf1\x1e\x0b\ \xc5\x00\x31\x32\xf6\x30\x8b\x54\x79\x1f\x3b\xba\x38\x84\x0b\xee\ \x70\x0f\x7b\x98\x5f\xe0\x7e\x38\xc6\x5f\x71\xaf\x77\xd0\xa3\xa2\ \xab\xe2\x26\xb6\x0d\x11\x90\x49\xc4\x53\x51\x07\x46\xe1\xa4\x34\ \x21\x28\x86\xd9\x23\x0e\xc4\x46\x39\xc6\x51\x20\x0f\x90\x4b\xf9\ \x08\x1f\xdc\xe1\x05\x77\x44\xc1\x0c\x43\x18\x42\x18\x73\xe1\x48\ \xe2\xad\x00\x15\xb8\xcc\x05\x0f\x77\xb0\xa2\x3c\x62\xb2\x49\x7f\ \x03\x9c\x9c\x6c\xf4\xba\x1d\xfc\x2d\x3d\xc7\x34\x5e\x9a\xfa\xc1\ \x9d\x17\xb5\x6a\x88\x62\xfc\x84\x66\x58\x82\xca\x54\x86\x23\x19\ \xc9\x10\x45\x10\xd8\xf1\x81\x3d\x98\x21\x0a\x51\xc8\x85\x31\x47\ \x61\xcc\x1d\xc8\x11\x97\xa8\x38\xe4\x17\x82\x30\x02\x0e\x30\x33\ \x93\xc1\xfc\x84\xa5\x80\x24\x20\x15\xaa\xf0\x75\xbf\xfe\x0a\x26\ \x9a\x86\xc4\x22\x15\xae\x88\x8a\x43\xc4\xd7\x0a\x46\x91\x06\x63\ \xf4\x05\x8b\xd5\xbc\xc8\x47\x28\x20\x0a\x51\x64\x53\x18\xc9\x70\ \xc7\x20\xd9\xf1\x05\x76\x98\x93\x9c\x7b\x68\x47\x0f\x77\x90\x51\ \x18\xa0\xe2\x9b\xec\x14\x46\x3f\xe4\x18\xb6\x21\xd6\x73\x88\xe6\ \x8c\x63\x93\x16\xc0\x49\xae\x95\x6f\x80\x4f\x4c\x51\xd8\x6a\x83\ \xaf\x77\x19\x03\x0b\x23\xf8\x83\x28\x10\x9a\xd0\x88\xb4\x2e\x05\ \xee\x08\x6a\x17\x1c\xca\x0e\x76\xb8\xa3\x0b\x5d\xf0\x42\x17\x46\ \xf1\x85\x28\xc0\xe0\x0c\x67\xd8\x43\x14\x10\x09\x83\x28\x7c\xa1\ \x0b\xd2\x70\x01\x07\xbe\x90\xc8\x3d\x00\x2e\x3d\x7e\xe2\xde\x27\ \xcc\xb9\x21\x4e\xd2\x53\x2b\x2c\xe2\xc0\x4b\x3b\x19\xc3\x4c\xd2\ \x74\x94\x74\x1c\x81\x07\x8c\x41\xaf\x5f\xf4\xd4\x24\x1f\xb9\x07\ \x28\xdc\xe1\x0b\x77\xe8\x82\x0f\x5d\x88\xa8\x44\x95\xaa\xd4\x20\ \x24\x95\x1d\x4f\x8d\x6a\x14\xd8\x61\x55\x76\x04\xe1\xb1\x5b\x9d\ \x2a\x0c\x56\xe0\x55\x5a\x02\x2e\x93\x37\xda\x24\x3d\x83\x16\x4a\ \xa6\xa2\x29\x86\xf8\x04\x52\x8a\xfa\x28\xcf\x82\x76\xa8\x48\x41\ \xe0\xe9\x5d\x15\x62\x84\x7b\xc4\xc2\x17\xba\xf0\xfe\xc5\x2e\xf8\ \xa0\x0b\x03\x38\x54\x17\x47\x0d\x6c\x10\x92\x81\xd4\xc3\x46\xe1\ \x03\x46\x7d\x2c\x6f\xbd\xb0\x5b\xc3\x7e\xe1\xb8\x1c\xc5\xe5\x0f\ \x47\xb9\xa5\x91\xd2\x12\x7d\x8e\x61\xd1\x00\x5b\x4a\x40\xb1\xb2\ \x54\xa6\xf3\x0b\x92\xbc\x14\xd6\x8f\x79\xa8\x76\xb5\xb2\xf9\x48\ \x13\x7c\x01\x5b\x03\xe8\x42\x09\x43\x0d\x83\x28\x74\x91\xcd\x86\ \x36\xb4\xbd\xbb\xed\x82\x3b\x82\xe0\x0e\x6c\xd2\x17\xa9\xbc\x0d\ \x02\x07\xb6\x10\x84\xe4\xce\x4f\x8c\xf9\x4a\xd6\x0e\x80\xa8\xa2\ \xe8\xda\xed\x89\x9d\xd4\x2c\x2d\xa1\x39\xbf\xd1\x89\x8f\x85\x9b\ \x14\x05\x78\x35\x92\x57\x03\x58\x58\x17\x61\x50\x6f\x18\x7e\xf1\ \x8b\x70\x68\x38\x1c\xe1\x10\x05\x88\x3b\xbc\x0f\x10\x67\x53\xb0\ \x82\x65\x65\x52\x93\xc1\x01\x0e\xd0\xb7\xa9\x51\x30\x66\x2e\xb3\ \x74\xce\x15\xec\x80\x42\x28\x83\xd3\x13\xe7\x51\x5d\x7c\x62\x8d\ \x96\x61\xbb\x8d\xdd\x96\xb9\xc9\x15\x05\x21\x10\xdf\x5d\x6d\x85\ \x33\x6c\x80\x0c\x73\xb8\xc3\x4f\x16\xc5\x3a\x44\x41\xe2\x70\xec\ \xa3\xc4\xef\x4d\x86\x03\xdc\x61\x80\xa0\x7a\xf9\xa8\xbc\x4d\xc6\ \x63\x83\x70\xdc\x28\xa0\x02\x06\xb9\xf0\x53\xfe\x1f\x03\x3c\x40\ \xdd\x71\x92\xba\x01\xb4\x6c\xdc\x16\xac\xa4\xdf\xfd\x73\x93\x5f\ \x48\x70\x3f\x02\x31\xe1\x8a\x7c\xc4\x08\xcd\x68\x06\x93\x37\xcc\ \xe1\x7d\xfc\x62\x1f\xeb\xf8\x85\x7a\x9b\x61\xe5\x43\x87\xe3\x17\ \xa2\x08\x83\x03\xba\x6c\x00\x3e\x38\x40\x09\x16\x36\x80\x03\xb6\ \x2c\x54\xfb\x16\x75\xaa\x7b\xa0\x90\x18\x80\xc8\x66\x6a\x79\x8f\ \x7b\xd7\x0d\x6d\xbe\xa0\x09\x9f\x4d\xd2\x0f\xad\x9a\x4d\x60\x3f\ \x44\xd4\x67\x2a\xe5\xb5\x19\xf7\x08\xb4\xa0\x9b\xf1\xe4\x27\xf3\ \xfa\x17\xbf\x76\xc5\xa3\x1f\xad\x84\x30\x18\x00\xd3\x5c\xb6\xad\ \xa6\xf9\xc0\x6c\x66\x07\x55\x09\x11\xf5\x42\x17\xad\x4a\x40\xe2\ \x2d\x4a\x40\x06\x4b\xd1\xeb\xcc\xea\x2e\xc0\x21\xeb\x61\x94\xa4\ \x90\x74\x3b\x99\x06\xb5\xfe\x41\x2b\xa9\xab\xf5\x42\xfe\x7c\x8f\ \x30\xe0\x5a\xd7\xba\xee\x35\x95\x39\xec\x8a\x5f\x70\xa3\xd7\xdc\ \xc8\x70\xb1\xc3\x80\x69\x0b\x3b\x80\x04\x76\x48\x41\x0a\x9c\x6d\ \x69\x2e\x07\x35\x09\x70\xb0\xea\x17\x82\x09\x9f\xd7\x6d\x28\x4b\ \x0b\xbe\x17\xb8\x41\x66\x3c\x53\x11\x38\x59\x68\xad\xa3\x9e\x1c\ \xc8\xc9\x24\x4b\x90\xdd\x82\x0e\x43\x13\xfe\x02\xed\xee\x5f\x17\ \xa2\xd7\xbe\xce\x30\x37\x9a\x91\x6f\x95\xf3\xfb\x1d\x06\xb0\x03\ \x09\x62\x21\x70\x3b\xc8\x7c\xd3\x93\x56\x82\x12\xdc\xc1\x07\x38\ \x7c\x00\xb8\x88\x6c\x9e\x9f\x68\xcc\xa4\x39\x3e\xb2\x8a\xb6\xeb\ \xcc\xeb\xc2\x36\xc0\x65\x3a\x46\x28\x59\xa0\xd8\x9b\x3f\xe1\x0e\ \x8f\x33\xee\xcf\x40\x81\xb7\xd6\x7f\xdd\xeb\x93\xd7\x9b\xdf\x19\ \x0e\xf9\xbe\xc3\xf0\x8e\x80\xdb\x81\xe6\x36\x4f\x3b\x09\xde\x51\ \x6c\x98\x3b\x00\x0e\x3e\xe7\xe6\x54\xc9\xfa\x66\x15\xc2\xd5\x5a\ \x63\xed\xde\x00\x97\xb4\x48\x02\xb3\xc8\x34\x75\xfc\x3b\x0b\x8b\ \x79\x26\x08\xaa\x3b\xbc\x40\x29\x44\x33\x14\x1f\x68\xc6\x9b\xbc\ \xd7\x86\xe6\xb0\xb1\x33\x0c\xf6\x26\xc3\x3c\x16\x66\x4f\x41\xc0\ \x35\x2f\xf3\xb5\x53\x00\xe6\x06\xc0\x7c\xcf\xf9\x20\xf7\xa5\xb6\ \x54\xb3\x7b\x88\x98\xc6\xb6\xad\x22\xe9\x5e\xb2\xe8\x48\x4b\xb3\ \x74\x6f\x14\xf8\x91\x92\xf3\x6f\x6f\xde\x01\x05\x0e\x2f\x90\xbc\ \x96\x7c\xf1\x5b\x47\x79\xe4\x7d\x1d\x72\x7d\x67\xda\xc2\x24\x10\ \xb8\xf2\xfd\x40\x84\x9a\x93\xc0\xf3\xef\x28\xfb\xf3\x2b\xcd\x0e\ \x38\x14\x75\x9d\x17\x75\x2e\x0f\xbb\xfe\x0d\xd6\x15\xe1\x13\x9f\ \xa4\x65\xa9\xf1\x8a\x0c\x6b\x72\xe6\xa2\x87\xdd\xe3\xa4\x31\xef\ \x71\xf8\xd6\x36\xa1\x09\xb9\xce\xf5\xd6\x03\x0d\xec\x27\x9f\x5c\ \xeb\xfc\x3e\xbe\x2f\x42\x9f\x7c\xcd\xa7\xc0\x0f\x00\xd8\x7c\x36\ \xb7\x76\xef\xf0\x79\xb1\xb0\x76\xcb\x96\x02\xd5\x17\x54\x5f\x90\ \x04\xe6\xb4\x70\xb9\x24\x67\xe2\xf4\x30\xff\xd5\x47\xb5\xf4\x59\ \x23\x15\x78\x9b\xf4\x37\x8a\xd4\x49\xb9\xf7\x05\x56\xe7\x29\x79\ \xf5\x7e\xbb\x16\x68\xf2\x17\x76\xf0\xd6\x6b\x61\xd7\x72\x99\x46\ \x5e\xa0\xc0\x07\xb1\xc0\x07\x76\x00\x0a\x01\x17\x80\x9c\x67\x73\ \x05\x48\x01\xf7\x10\x7d\x9f\x17\x7d\x96\xb6\x4a\xac\xc4\x58\xe0\ \x74\x7e\x11\x78\x4b\x95\xa5\x4b\x48\x08\x64\xa3\xf4\x2b\x5f\xd0\ \x0f\x1c\x60\x1a\x3c\x36\x78\x72\x44\x4b\x17\x35\x0a\xf3\x70\x4f\ \x9c\xa4\x04\x21\xe8\x2c\xad\x03\x7f\xef\xd6\x6e\xee\x46\x79\x25\ \x17\x76\xc0\x26\x86\xc6\x66\x61\xbe\x00\x0a\xca\x47\x5e\x29\xe0\ \x0b\xcb\x47\x04\x7e\x50\x73\x32\xf7\x0e\xf7\x10\x08\x76\xf8\x79\ \x9f\x67\x73\x05\xe7\x0e\x77\x90\x04\x1f\xf0\x45\xed\xe0\x51\xe8\ \x84\x4b\xe9\xa1\x4b\x45\xb8\x84\xfe\x11\x63\x4e\x69\x82\x81\xd5\ \x55\x85\x4d\x62\x56\x6f\xc6\x49\x5f\x40\x43\x3d\xe5\x7b\xf0\xe7\ \x6e\xb9\x16\x86\xc5\x17\x6f\x29\x67\x7c\x68\xc8\x07\xff\x47\x5e\ \x6e\xe8\x86\x35\x08\x87\x02\xf8\x7c\x05\x68\x87\x81\xd0\x83\xef\ \x90\x7c\x7a\x08\x04\xcc\x06\x07\xb0\x04\x55\x3c\x34\x3f\xe8\x24\ \x4e\x89\x34\x3f\xb7\xb4\x84\xbe\xa2\x88\xdd\xd5\x01\x3c\xf6\x07\ \x2a\x14\x4f\x92\x98\x7b\xea\x47\x4e\x9c\x54\x89\xb7\xf6\x7e\x5e\ \x68\x82\x61\x88\x82\xc4\x27\x68\xc5\xa6\x7f\xbe\xe0\x07\xd5\xd8\ \x86\x7c\xe0\x0b\xa0\xb8\x79\x00\xc8\x79\x04\x48\x01\x14\xb0\x8a\ \xac\xd8\x8a\x32\x67\x07\x3d\xe7\x0e\x70\x20\x03\x85\x04\x03\x88\ \x84\x4b\x3b\x64\x8b\x83\xb8\x84\x8e\xc4\x49\xfd\xf0\x02\x5a\x31\ \x0f\xd1\x75\x7b\xba\x54\x85\x6f\x26\x4e\xe3\x74\x51\x5a\x88\x4a\ \x23\x78\x0f\xf7\xf0\x7e\xee\x96\x75\xb8\xd6\x04\x22\x57\x72\xf7\ \x27\x86\x4d\x66\x5e\x16\xc6\x07\xd6\x68\x8d\xcc\x36\x8a\x32\x28\ \x70\xcd\xe7\x8d\x04\x78\x0f\x3a\xd8\x91\xe0\x18\x7d\x65\x67\x07\ \xb0\x08\x04\x1f\x20\x03\x3f\xb7\x07\x1e\xa5\x43\xb8\x94\x8b\x11\ \x58\x81\x6f\x36\x40\xe7\xf6\xfe\x07\x69\xf0\x07\x1d\x10\x4c\x5e\ \x65\x85\x9a\xe5\x5f\xe3\x94\x7b\xeb\x53\x43\xec\xe6\x85\x05\x09\ \x7f\x85\x30\x94\x8c\x47\x76\x28\x28\x68\x4d\x36\x79\xc7\x67\x00\ \x6e\xc8\x0e\x2f\x38\x70\x2f\x48\x5e\x67\x87\x91\x37\xf8\x7c\x24\ \x00\x8e\xaa\x18\x8e\xab\x08\x92\x0e\x60\x07\x44\xd0\x73\x40\x90\ \x04\x62\x99\x43\x2a\x99\x8b\xef\xe8\x55\xf0\x38\x8f\x8c\x98\x06\ \xd2\x40\x4e\x31\xf6\x37\x7b\x80\x26\xf3\x80\x51\xe9\x34\x3f\xc7\ \xb8\x03\xc7\xb5\x85\x33\x33\x82\x5e\xc8\x8c\x8e\x47\x72\x46\xf9\ \x8c\x4b\xc9\x94\xb1\x25\x8a\x69\x08\x8a\xa0\xb8\x7f\x93\xf6\x6f\ \x29\x90\x91\x69\x37\x80\x5a\x79\x87\x1c\xf9\x91\xd1\xd7\x95\x22\ \xe9\x00\x77\x90\x0c\x7e\x98\x43\xec\x98\x48\x3a\xa4\x51\x11\xe3\ \x8e\x36\x86\x26\x6c\x75\x8f\xfa\x88\x97\xe6\xc4\x63\x1d\xb0\x70\ \x86\xd8\x43\x9b\x94\x7b\x78\xa9\x97\xe4\xe1\x7e\x04\xf9\x7e\x41\ \x39\x72\x61\x90\x6b\x80\x96\x89\x66\xa8\x94\x61\x60\x98\xd9\xa8\ \x80\x6e\x58\x91\x15\x49\x02\xbe\x00\x70\xca\xc7\x79\x44\x80\x8a\ \xef\x20\x8e\x05\xc8\x83\xcf\x59\x99\x22\xb9\x4a\x77\xe0\x0e\x1f\ \x60\x06\x66\xe0\x51\x64\xfe\x79\x48\x86\xb8\x43\xb2\x77\x8f\xc0\ \x78\x7b\xc6\x94\x0b\x31\xf6\x66\x73\xf9\x05\x44\x48\x88\xa4\x99\ \x67\x0b\x87\x97\x4a\x70\x75\xef\x43\x06\xa0\x00\x7f\xcc\x18\x94\ \x05\xd9\x0c\x80\x06\x6f\x66\x48\x8d\xa0\xa0\x86\xe5\x90\x8d\xda\ \x98\x98\x76\xe0\x0b\x67\x77\x76\x5d\xa9\x7c\x5e\xd9\x79\x04\x08\ \x92\x20\x09\x8e\x78\x28\x9d\xd3\xc9\x87\x08\x97\x9d\xdb\xc9\x8e\ \xba\xa4\x92\xb2\xc7\x71\xea\x57\x4e\x1c\x25\x4e\xa3\xc0\x06\x78\ \x46\x84\x88\x94\x66\x56\x28\x89\xe5\xc4\x49\x7c\x26\x33\xad\x45\ \x06\x64\x60\x0a\xf3\xc9\x8c\x30\xda\x8c\xf9\xd9\x9b\x0f\xc9\x94\ \x69\x18\x8a\x71\xc8\x0e\x33\x98\x98\x32\x48\xa0\x8f\x79\x83\x0a\ \x4a\x80\x0b\xfa\x9c\x0e\x4a\x99\x40\x60\x73\x70\x00\x04\x7c\x28\ \x8b\x85\x74\x41\x23\x9a\x4e\xde\x49\x8f\xdd\x05\x9b\xfe\x78\x4c\ \x4d\x38\x52\x32\x86\x4e\x37\xc9\x49\x73\x79\x7e\x17\xb5\x70\xec\ \xe7\x2f\xad\x65\x0a\x64\x2a\x9f\x30\x7a\x9b\xed\x86\x9f\xba\x16\ \x76\x4c\x86\x86\xa0\xe0\x0b\xe5\xe0\x07\x71\xda\x86\x04\xaa\x8d\ \x03\x5a\xa0\x36\xa7\x79\x34\xf8\x98\x56\xb9\x76\x43\xda\xa0\x44\ \xfa\x91\x00\x47\x04\xfe\x22\x19\x54\x3e\x17\x4b\x30\x60\xa1\x28\ \xa9\x43\x13\xd8\x52\xc7\x38\x56\x70\xe9\xa1\xf3\xb0\x81\x53\x75\ \x66\x81\x88\x0a\x3b\xe9\x96\xa9\x69\x7e\x55\xd7\x2c\xad\xe5\x07\ \x67\x60\x0a\xa1\x4a\x06\xf4\x19\xa3\xef\x86\x90\xfa\xc9\x64\xe4\ \x15\xa7\x71\x1a\x87\x6a\xf8\x82\xd9\x68\x8e\xe6\xe8\xa3\x34\xe8\ \x7f\xe5\x38\x80\xcc\x09\x92\xdf\x88\x87\x45\xfa\x0e\x40\xd0\x7c\ \x97\xa6\x04\x40\xe0\x73\x14\xca\x8e\x39\x84\xa9\xe6\x04\x56\x91\ \xa8\x7e\xb9\xa8\x88\x4c\x95\x5c\x9e\xc9\x9d\x79\x66\xa2\x6f\xe6\ \x55\xc6\x14\x90\x9d\xf2\x11\x32\x00\x55\xa1\x6a\x0a\xe5\xc0\x8c\ \x2f\x6a\x9b\xef\x56\x08\x22\x07\x98\x67\xc8\x94\xa0\x00\x80\xea\ \xfa\x9f\xff\xf9\xa6\x77\xea\xa3\x98\x97\xa7\x37\xb8\x9c\xcb\xa9\ \xa0\xad\xe8\x79\x14\xe0\x0a\xae\x60\x87\xfa\x1a\x08\xae\xc0\x0d\ \xad\x08\x04\x3a\x07\x6d\x3d\xf7\x73\xb0\x04\x03\x66\x20\x55\x5f\ \x00\xa9\x8f\x38\x56\x1b\xea\xa5\x4e\xc2\x54\xe7\xd7\x55\x83\xd8\ \x43\x9e\x15\x89\xd0\xea\x8f\x06\x90\xad\xef\x20\xaa\x50\x25\xaa\ \xa6\x40\xaa\xa0\x50\x0e\xdf\xda\x9f\x23\x97\x6b\x43\x39\x86\x94\ \xd7\x64\xab\xaa\xfe\xae\x00\x98\xae\x6e\xf8\x5a\x0e\xe0\x0b\x98\ \x17\xaf\xf1\x1a\x70\x44\x40\xaf\x36\xb7\x9c\x40\x00\x04\xdf\x68\ \x87\x57\x16\xb4\x42\x4b\x01\x38\x97\x73\x4a\x50\x9d\x70\x57\x92\ \xd8\x69\x55\x1c\x4a\xa5\xe5\xe4\xa1\xea\xe7\xa5\xe4\x49\x4b\x88\ \x94\xa9\xc5\xe8\x5f\xb4\x34\x46\x57\xc4\x26\x2b\xca\xad\xdc\x5a\ \xa6\xe5\x30\xb2\x24\x4b\xb2\x5e\x98\x75\x69\x5a\x7c\x6e\x0a\x80\ \x71\x4a\x06\x2f\x2b\x70\x34\x6b\x00\xc6\x09\x70\x69\x17\xaf\xa7\ \x68\x73\x47\x9a\xb3\x3e\xdb\x9c\xae\xb0\x0f\xfa\x2a\xb4\xfa\xaa\ \xaf\x24\x20\x03\x44\x00\x04\xc1\xaa\x65\x77\x30\xac\x3e\x27\x03\ \x62\x29\x59\x23\xfa\xb4\x41\x07\xb5\xe6\x97\xa9\xed\x09\xb9\x0f\ \x08\xa9\xa9\x67\x59\x3c\xb4\x07\x9d\x7a\x2e\xf7\xd0\xa4\x5e\xdb\ \xad\x22\x4b\xb2\x2c\xfa\xad\x24\x08\x68\xbf\x37\x68\x36\xba\xb6\ \x32\xa0\xb6\xff\x27\x70\xb1\x80\x7c\xa1\xc7\xa7\x09\x1a\xa4\x5e\ \x99\xb3\xef\xb0\xb7\x00\xb0\x0f\x00\xcb\x76\x05\xe8\x00\x39\x48\ \x04\x6d\xd0\x06\x44\xe0\x00\xf7\xa6\x73\x3d\x0b\x07\x44\xf0\x73\ \x1f\x90\x04\x66\xa0\x43\x16\x7a\x4c\xfe\x55\x9e\xe6\x47\x4b\x56\ \x38\x97\xe2\xfe\xc9\xa1\x1c\x9a\x9e\x2c\x49\xb5\x61\x4a\x22\xad\ \x65\x07\x9f\xfb\xb9\x21\xdb\x04\x63\x3b\xba\xf4\x59\x90\x22\x37\ \xa3\x2b\xeb\x0b\xec\xf0\x7f\x7e\xc0\xb6\x71\xd8\xba\x9a\xf7\xba\ \xef\x70\x80\x37\xab\x76\x7d\x5a\xbb\x76\x90\xaf\x41\xeb\x0a\x29\ \xd0\x06\xb1\x24\x03\x02\xdc\x06\x70\xe0\x00\xc0\x3b\x04\x32\xa0\ \x04\x7b\x7b\x65\xdc\xe0\x00\xc3\x4a\x04\x49\x3b\x8b\x9d\xd9\xb8\ \x31\x16\x63\xed\xf9\x37\xe5\xb9\x81\x12\x88\xbd\x70\x79\x4b\xf1\ \xe8\x55\x5e\xd5\xbd\x0c\xa2\xad\xe1\x1b\xbe\x22\x4b\x06\xe5\x80\ \xc2\xf5\x99\x61\xcd\xb8\xa6\x68\x08\xa7\xef\xcb\xba\xe5\x20\xbf\ \xb1\x30\x69\x06\xd0\x8a\xf1\xaa\x91\xcf\x37\xb8\xcf\x97\xaf\x7f\ \xdb\xc0\x44\x00\x55\x01\x1c\xbc\x82\x4b\x04\x32\xd0\x06\x32\xe0\ \x00\xfb\x00\x00\xb9\x9b\x0a\xdc\xf0\xab\x46\xec\x73\x7f\x98\xa8\ \xec\xc8\x43\x16\x8c\x5c\xe3\x69\xad\x91\xa8\x4b\xd6\xca\xa1\x90\ \x9a\x9e\xb7\xd8\x8e\x5e\x95\x04\x22\x3c\x9b\xef\xd3\x06\x25\x2c\ \xbe\xf2\x99\xc2\xe6\xbb\xc2\x0a\xf9\x6e\x2e\xfc\x57\x12\xf9\xbe\ \xab\x1b\xbf\xf1\x9b\x02\x07\x78\xc3\x70\xfb\x7c\x41\xfa\x7c\x3e\ \x9b\xaf\xfe\x4c\x1c\x08\x70\x30\x04\x48\x1c\xbc\x42\x1c\xbc\x48\ \x2c\x03\x77\x3b\xb8\x0b\xbc\x0f\xa9\x20\xac\xc8\x2b\x03\x49\x7b\ \x9d\x89\x8a\x48\x16\x8c\x97\xed\x19\x74\x78\x19\x89\x5d\xe5\x8f\ \x77\xc9\x92\x89\x44\xb5\x2b\x09\xc2\x06\x20\x9b\x81\x64\x04\x29\ \x90\xc6\x5e\xeb\xb1\x28\x4c\xa6\x21\x4b\xba\xb6\xd9\x6e\x23\x97\ \xaa\x2f\x9c\xae\x00\x08\xbf\x71\x18\xbf\x03\x0a\x92\x64\x17\x7d\ \xa8\xe8\xa7\x7a\xbb\xc4\xfb\xa0\x04\xdc\x8a\xc0\x68\x1c\xc0\x78\ \x4b\x02\x3a\xf7\x0e\x79\xf0\x0e\xa9\x70\x65\x8f\x4c\x02\x39\x6b\ \xc4\x10\x0c\x07\x13\x8a\xb0\x51\xe0\x80\x49\xb0\x70\xa0\xd6\xb8\ \x18\xdb\xac\xc9\xca\x49\x2c\xb9\x92\x94\x55\x8b\xb9\x14\x74\x94\ \x28\x1d\x9f\xaa\xca\xe1\x5b\xa6\x2d\x4a\xa6\x25\x0b\x94\xb8\x99\ \xa6\x2b\x6b\x61\x31\xe8\xbe\xdd\xd8\x8d\x08\x4a\xbf\x64\xf7\xa0\ \xa8\xc8\xbf\x7c\xbb\x0f\x81\xf0\x87\x50\x25\xbc\xea\x28\xbc\x40\ \xf0\x0e\x97\xc6\x0d\x14\xa0\x04\x0d\x9d\x07\xdc\xc0\x0d\xab\xe0\ \xab\x83\x9b\xb3\x02\x9c\xa4\x7d\xf8\x73\x5d\x34\x6d\x3b\xd0\xcd\ \x5e\xc5\xb4\xec\x79\xa1\x9e\x1c\xb5\xe8\x24\x88\x1f\x1c\xca\x96\ \xbc\xfe\x7b\xc1\x41\x41\xec\x5c\xc2\x65\x1a\xb2\xf0\x2c\xb6\xf4\ \xb9\x90\x34\x6a\x6c\x75\x9a\x02\x33\xec\xb2\xc9\x89\x83\x39\x18\ \x06\x82\x7a\x95\x4b\x9c\xbb\x4a\xd0\x7c\xea\x78\x06\x43\xc0\xc3\ \x3d\xab\x04\x11\xbd\xd4\xbe\x9a\xd0\x79\xa0\xd4\xbe\x9a\xa4\x84\ \x3a\xcd\x44\x70\x07\x77\x50\x0f\x7d\x68\xcd\x1f\x90\xcd\x5d\x84\ \x92\x3d\x64\xc1\xe2\x59\x97\x51\xf0\x88\xb7\x57\x97\x5a\x7a\x8b\ \x1b\x7c\x7e\x7c\x60\xca\x3d\xe1\x5a\x2d\x9d\xc6\x2c\xda\xa2\x2d\ \x3a\x9f\x61\x5b\xaa\x4d\xf0\x0e\x94\x47\x01\x35\x1a\x7a\xc3\x29\ \x70\x2e\xab\xcf\x9a\x97\x94\xbd\xba\x76\xae\xc0\xc4\xb9\xeb\x07\ \x08\x6c\xc4\x84\x4c\x04\x00\xeb\xd0\xa9\x10\x08\x00\x9b\x07\x0e\ \xdc\xb3\x09\xcd\xcc\x94\x2d\x92\xb5\x2b\xb8\x70\x70\xd5\x56\x2d\ \x96\xd6\xdc\x45\xd7\xb9\x51\xc7\xe5\x59\x1c\x15\x88\x3d\xc4\x9e\ \x1c\xa8\x9d\xb7\xb8\x8b\x72\x96\xc5\x88\x94\x02\x6c\x2d\x13\x0b\ \xe5\xb1\x6f\xad\xc6\x21\x2b\xd7\xf3\x39\x9f\x22\xd7\x04\xf3\xf9\ \x0e\x0a\x09\x73\x4d\xa0\xc7\x16\x36\xa0\xcb\x07\x80\xab\x0b\x87\ \x9c\x17\x7d\x3e\xed\xa0\x05\x18\xd4\x00\xc0\x05\xdc\x00\xc0\xc2\ \xfe\x3b\xcd\x0e\xb0\x0a\x81\xe0\xc4\xdc\x20\xac\x94\x4d\x02\x3e\ \x0b\x04\x79\xf0\xdd\x94\x4d\xd9\x54\x9d\xa4\x58\x6d\xd5\x59\xed\ \x87\x09\xbb\x07\xdb\x9c\x67\xe7\xa9\x93\xc9\xca\x81\x9f\x59\x97\ \x94\x65\x88\x15\x68\x4c\x5e\x0d\x03\x43\x50\xc6\x93\xf1\x11\xa0\ \x5a\xdb\x2e\x1d\xd7\x20\x2b\xba\xf3\x59\x90\xb1\xa0\x90\x46\x69\ \xcf\xc7\xa7\x87\x03\xf7\x7f\x02\x1c\x80\xb8\xaa\xdc\x14\xd0\x0c\ \x11\xee\xdc\xb9\x4b\x01\xd4\xec\xb3\x0e\x90\x07\x14\xc0\x0d\x4e\ \xac\x04\x4d\x9d\xb7\xcd\xfc\xdd\xcc\x0c\xb0\x94\x9d\x07\x50\x3c\ \xcd\x57\x5d\x0f\x40\x70\xb8\xd6\x4c\xac\x5b\xcd\x9e\x5c\x8a\x9e\ \x89\x34\x4e\x0b\x1b\xad\xf1\x5d\x81\xdb\x6b\xdf\x67\x96\x58\x6d\ \xa0\xdf\x83\xc1\xdf\xfe\xad\xca\xde\xda\xa2\xa1\x4a\xb2\x2e\xca\ \x8c\xb1\x90\x9b\x19\x06\x7a\xe4\xf5\xc2\xb1\x0a\x8a\xc6\xed\x07\ \x32\x20\x87\x16\x86\xd7\xe0\xa8\xaf\x86\x9d\xbb\x7c\x1b\xd1\x0d\ \xbd\xe1\xef\x50\x0f\x6c\xa7\xdd\xdb\xad\xe1\x64\xce\x0d\xdf\x6d\ \xe2\xe1\x3d\xde\xf5\xb0\xe6\xc7\x7b\x07\x5a\x0d\x4e\x0a\x87\xc9\ \xcf\x5a\xb5\xcf\xba\x03\x96\x7a\xe3\xff\x25\xc6\x23\x9a\x51\xfe\ \xe1\xdb\x06\xb1\x5d\x12\x2c\x1d\xe4\x42\x4e\xa6\x1f\x9b\xc2\xde\ \xfa\x7e\x05\x6e\xe0\x64\x87\xe0\x4b\x39\xa0\xda\xe8\xd7\x75\xec\ \x8d\xbe\xbb\x6f\xdc\x80\xbb\x4c\xdc\xbf\xa9\xb0\xe1\x0e\x1d\xde\ \x50\x4c\xd9\xcc\x5c\xe6\x66\xfe\xd4\xcd\x9c\xe6\x78\x0b\x04\x6c\ \x3e\xac\x61\xf9\xe6\xda\xbc\xc9\xf3\xc0\x55\xa7\xdd\x9e\x50\x0a\ \xa5\x67\x79\x7e\x13\x3b\x3f\x89\x54\xc2\x43\x60\x06\x3e\x3e\x16\ \x14\xe4\xb9\x82\xde\xce\xae\x3c\xaa\xa6\x30\x04\xa4\x1b\x0b\x05\ \xae\xdc\xa0\xb7\x94\x36\xbc\x6c\x12\x29\xc0\x82\xcb\x79\x29\x40\ \x02\x06\xb0\xe1\x3e\x5d\x08\xc2\x7c\x65\xae\xb0\xe1\xd9\xed\x95\ \x9d\xce\xe9\x9f\xfe\xe9\x14\xb0\x0a\x66\xfe\xe9\x9c\x5e\xd1\x83\ \x6b\xea\x88\x0b\x77\x6e\x2e\x96\x5d\xb4\x70\x5f\x30\x0f\x73\xd9\ \xc5\x18\xa5\x92\xf4\x1e\x46\x1d\x0a\xc2\x8b\x1a\xbe\x66\xc0\x5f\ \xec\xb0\xeb\xac\xd3\x5a\xbe\xee\xdf\xb4\xfd\xb1\x1f\xcb\xa2\x20\ \xfb\xce\xbd\xdd\x04\x89\xee\xdb\xf5\x4b\xb3\x03\x6a\xc3\xcb\x5e\ \x69\x0c\xbe\xba\xcf\x4e\xa8\x0e\x10\x06\xd9\xad\xd4\xbf\xa0\xaf\ \x11\x2d\xac\x4d\x5d\xc4\xe7\xde\xb3\xe7\x1e\xe2\x64\x0e\xfe\xd1\ \xe0\x8d\xe6\x78\x7b\xee\xc8\xdb\xb3\x26\x8e\xbc\x70\xc7\xee\x30\ \xff\xee\xf0\xde\xa1\xc8\xe5\x99\x67\x56\x97\xdc\xc9\x51\x3d\x84\ \x48\x16\xc4\xad\xdf\x34\x48\x2e\xf0\xdc\x2e\x10\x0e\xa7\x64\x43\ \x3b\xf8\xeb\xed\x6c\xdb\xa2\xca\xa2\x85\xf4\xad\xb1\x10\xb6\xc6\ \x1e\xdc\x0a\x1f\x70\x34\x58\xa7\x39\xd7\x65\xa0\x68\xc4\x02\x2c\ \x80\x9a\xe7\xbb\x0a\xbd\xd0\x92\xed\xe1\xde\xed\xc0\x5a\x3f\xf2\ \x68\x4e\xd9\x60\x7e\xe6\x67\x2e\xf2\x27\x8e\xb7\x52\x1d\xde\xc8\ \xfb\x01\x2f\xdf\x87\xc7\x75\x5c\xf3\xc0\x06\xa3\x60\x66\x4c\x5b\ \xda\x3b\xf4\x8e\x1e\xf5\xd5\x3a\xef\x99\x5e\x0b\x03\x41\x00\x06\ \x5c\x70\xf8\x59\x4e\x4d\xe6\xb1\xad\x48\xef\xca\x84\x0e\xb2\x90\ \xef\xf8\xef\x1c\xb6\x23\x9b\x02\xfd\x69\xec\x9b\xb7\xd3\xb3\x7a\ \x6c\x4c\xd9\xec\x52\x3e\xe5\x9c\x47\xb8\x38\xa7\xd4\x1e\xfe\xdd\ \x0e\x00\xe6\x27\xde\xb3\x9f\x3e\xd9\x9e\xae\xf6\x4d\x6d\xd1\xce\ \x9e\xb3\x49\x0a\x77\x82\xfb\xc0\x1f\x00\xc1\xec\x7e\x07\x0d\xe8\ \x05\xf0\x3e\x0f\x3b\xd0\x99\xdc\x4c\x96\x37\xff\xbc\x1d\x4d\x55\ \x81\xe8\xb5\x43\x10\x05\xc2\x90\xe5\xcc\x3f\x1e\x57\xfe\x91\x57\ \x01\xff\xb9\xb1\xe4\xd2\xa1\xda\xad\xc1\x6e\xfd\x1e\xfb\xf8\x94\ \x2f\xa7\x96\xdf\xfd\xf8\x9c\x9c\x15\xd9\x65\x0e\xc0\x07\x70\x18\ \xfb\x16\x4f\x02\x9b\x96\xd4\x4a\xf0\xd4\xcc\xfc\xe5\xe0\x7d\xa4\ \x2c\x6f\xf2\x6a\xef\xfa\xde\x6d\xe2\xb0\x0f\xf2\x49\xfa\xab\xce\ \xee\xec\x3f\x67\xcd\xba\xef\x05\x00\xe1\xe5\x8b\x97\x79\x5f\xf6\ \xb4\xdb\xb3\xe3\xcb\x8e\x3d\xa8\xda\xa1\x82\x81\x6a\xcf\x9e\x5c\ \x3b\xa2\x4c\xdc\x03\xa3\xdd\x19\x8e\x1c\x61\x7c\xf9\x12\x04\x0c\ \x17\x00\x25\x4b\x72\x41\x69\xe4\xdf\x4a\x96\x2d\x5d\xbe\x84\x19\ \x53\x26\x4c\x23\x46\xd8\x6d\xec\x98\xb3\xe3\x10\x19\x43\x74\x9e\ \x31\x15\x14\x68\x50\x53\x40\x87\x92\x29\x3a\x14\x28\x99\x14\xe5\ \xfc\x38\x4d\x01\x2a\x45\x0a\x3f\x55\xad\x56\x4d\xc1\x47\xab\x2f\ \xad\x29\x88\x7c\x95\xe1\x87\x88\x1d\x07\x65\x81\xf0\x01\xe2\xa0\ \x9e\x83\x3c\x4a\xf2\xb4\xe5\xa6\xe4\x1d\x10\xba\x74\xf3\xac\xca\ \xc7\x2d\x2f\xb7\xb7\x79\xde\xdd\x5d\xb5\xaa\x1e\x10\x22\x32\x0c\ \xcb\xf8\x0a\x04\xce\x62\x19\x6d\x86\x3c\x6e\x63\x46\xc6\x87\x24\ \x77\x06\x7a\x21\x58\x30\xa3\x42\x83\x10\x3d\x4f\xfe\xac\x88\x31\ \x63\x3b\x9f\x3b\x45\xba\xf8\xb2\x05\xcc\x48\x92\x00\x50\x72\xf9\ \xa5\x72\xe6\x6c\xda\xb5\x59\xd6\x74\x87\x0a\xd5\x4f\x9d\x32\x76\ \x95\xce\x59\x94\xe8\xf0\xe1\x48\x39\x26\x05\xea\x87\x0c\x99\xa7\ \x7e\xa2\x52\xad\x8a\xf8\xaa\x1f\xad\x76\xb4\xf2\xf1\x2a\xf6\xeb\ \x58\x07\x69\xd3\xae\x75\xab\x44\x3c\xb7\x55\x7c\xeb\xda\xcd\x43\ \x3e\x70\x60\xbe\x77\x53\xa5\x5a\x45\xd8\x30\x58\x22\x8b\x17\x17\ \x76\xcc\x71\x48\x1b\xca\x49\x92\x60\x1e\x68\x1e\x36\x76\x80\x61\ \x8f\x2f\xe6\x61\xe8\xa1\x88\x72\x89\x62\x07\x07\x31\x82\x01\x06\ \x9d\x3e\x62\xad\x8b\x2d\x88\x71\x61\x35\x94\x5c\x03\xc3\x9c\x5d\ \x6c\x03\x31\xc4\xdb\x8c\xe8\x62\x05\x13\x1d\xe2\xad\xa3\x0f\xc2\ \xf0\x83\x37\xe1\x88\x23\x6a\x39\xa1\x66\x5c\x6e\x39\xe5\xaa\x72\ \xca\x0f\xc3\x74\x0c\x2b\xac\xa9\x52\x80\xc3\x3a\x21\xbf\xd2\x6e\ \x2c\x20\xec\x48\x4b\x89\xb2\xd2\x23\x8f\x9b\xf6\xce\x03\xe2\xad\ \x7c\xf2\x82\x4f\xbd\x54\xf6\xd9\x27\x3e\x22\xda\x68\xa3\x31\xc4\ \xee\x83\x83\x88\x0f\x0c\xcb\x6f\x08\x18\xcc\xa0\x6c\xa0\x00\xd9\ \x98\xe7\xa2\x1d\x34\x73\x48\x22\x07\x1d\xbc\xfe\x68\x22\x33\x7e\ \xda\xc3\x85\xd6\xb8\xe8\x67\x0b\x17\xfe\xc4\x90\xb5\x0e\xcd\x91\ \x4d\x44\x43\x65\xaa\xe9\x0b\x34\x16\x5d\x01\xc5\x14\x87\x70\x07\ \x0c\x5d\x80\xeb\x08\xc6\xe2\x6a\x7c\x71\x29\x32\x64\xd8\xd4\xc6\ \xe8\x0e\xe3\xb4\x47\x22\xa6\xc2\x4e\xab\x23\xf9\xd8\x2e\x55\x20\ \x48\x00\xc2\xad\xbf\x98\x7c\xf2\xbc\x7a\xea\xe9\xeb\xbd\xf5\xae\ \xcc\x92\x30\xc7\xb8\x9c\x0f\xcc\x31\x3f\xf8\xc0\x8c\xd2\xcc\x8c\ \x22\x09\x90\x30\x63\x43\x9a\x79\x60\x88\x62\x9e\x51\x08\x84\x08\ \x86\x8a\x16\xb2\x68\x22\x09\x75\x8a\xc2\x85\x93\xb8\x00\x23\x50\ \x40\xe3\x59\xe2\x35\x62\x88\xe1\xa2\xd0\x43\xcf\xfd\xa7\xa6\x30\ \x72\x59\x14\x0d\x13\x57\xc8\x25\x45\x8e\x82\xe0\x62\x1f\x5d\x5c\ \xb4\x34\x28\x19\xf5\x25\xe3\xb1\x1a\xc9\xe0\x92\xa7\x50\x01\xe6\ \x75\x47\x19\xbc\x9a\xca\x8e\xac\xd0\xb2\xc3\x0e\xb0\x10\x23\x62\ \x55\xb6\x80\xf8\xab\x49\xbe\x06\x9b\x0b\x3d\xf7\xe0\xc3\x35\x57\ \xfc\x40\xad\x8f\x30\x38\x64\x08\x73\xb2\x0f\xda\xe8\x88\xd9\x28\ \xd4\x64\x83\x8d\x3f\x0c\x3a\xd0\xa0\x02\x29\x52\xa8\xda\x8c\x28\ \x1d\xc2\x8c\x2f\x46\x72\x2d\x43\x94\x56\xfe\x1b\x89\x98\x2d\x76\ \x21\xb7\x5b\x0c\xf7\x31\x17\x5d\x11\x8d\x50\x22\x8a\x5c\x4c\x6c\ \x37\x17\x9c\x78\x83\x94\xa4\x7d\x78\xa1\x74\x28\x4b\xdb\xa8\x91\ \xa3\x7e\x97\xaa\x8a\x39\x53\x96\xe3\x32\xe0\x36\x4c\xe1\xfa\x30\ \xb1\xbc\x1a\x2b\x48\x3e\x1c\x68\x78\x3b\x88\xe9\xfa\x2b\xca\x3c\ \x28\x58\xe5\xad\x28\xeb\xea\x2b\x30\x5b\xaf\x04\x24\x6f\xc2\x0a\ \xdb\x2e\xcc\xfa\x0a\xfb\x40\x4c\x33\xf8\x8b\xe2\xda\x02\x57\x2e\ \x68\x1e\x69\x5e\x8e\x82\x4d\x02\x41\x03\x69\x21\x6b\xa7\xe6\xe8\ \x0b\x61\x36\xec\x59\x4f\x6e\x35\x04\x63\x89\x0b\x31\x5c\xc2\x9c\ \x25\xc0\x70\x45\xe9\xa5\x8d\xb8\x67\x8f\x46\x73\xa1\x7d\x05\x34\ \x1c\x95\xf7\x8c\x70\x5c\xb3\x57\x86\xe0\x66\x04\x6a\xbf\xb1\xcb\ \x41\x6a\xec\xd2\x64\xc8\x91\xc7\x4e\xf7\x83\xac\x6c\xb5\xbf\x4a\ \xf8\xc8\x55\x8f\x7c\xd8\x48\xbf\xf2\x88\xf2\x49\xec\x33\xb6\x3b\ \x9f\x3c\xbc\x7f\x2b\x30\xba\xe0\x10\x19\x88\x3b\xea\x2a\xb9\xb1\ \x5f\xd1\xa4\xcc\x71\x95\x15\x62\xb3\x59\x36\x0c\x9a\x48\x21\x67\ \x2f\x8a\xf0\x27\x33\x38\x68\x8d\x43\x0c\xff\xec\x56\x86\x5c\x40\ \x0c\x73\x5c\x68\x09\xbc\x38\x84\x39\xfe\xc8\xd5\x3a\xd7\xd5\x46\ \x5d\x7b\x70\xd7\xd3\x68\xe7\xae\x8d\xb4\xc3\x82\x9c\xcb\x89\x19\ \xfa\xf7\x0b\x5f\x64\x2d\x29\xa6\x18\x02\x19\xca\x31\xc2\x72\xec\ \x67\x39\x43\x18\x9b\x72\x98\xd3\xa9\x80\x3d\xc6\x85\xfb\xe9\xd2\ \x61\xbe\xe2\xb0\x14\x34\x6c\x7a\x0e\x2b\x0c\x62\xa6\x47\xb1\xbe\ \xa0\xe7\x3c\x7d\xc1\x1e\x94\x84\x78\x87\x3c\x60\xa2\x1e\xe7\xcb\ \x61\x97\x4e\x86\xa6\x28\x44\xe1\x4e\x1d\x69\x47\x84\xa2\x30\x8a\ \x8b\x38\x8b\x21\xf6\x03\x49\x82\x30\x28\xa1\x3d\x70\x00\x0b\xdc\ \xe2\x96\xd0\xb6\x70\x3a\x17\x6c\xa1\x80\x63\x34\x07\x02\x0f\x01\ \x03\x5e\x2c\xc1\x05\x48\x6b\xe0\x6c\x6a\xe2\x0b\x54\xd8\x0e\x5e\ \xb4\x5b\xc0\x02\x56\x60\x41\xdd\xe0\xee\x27\xec\xe8\x9f\xbd\x3c\ \xa8\xa9\xa7\x80\xa2\x1c\x41\x51\xce\x7e\xac\x32\xb0\xc6\x9c\xcd\ \x85\x67\x70\xe1\xae\xe6\x83\xb0\xed\x48\x8f\x55\xd5\x8b\x18\x0f\ \xfd\x32\x98\x20\x12\x86\x56\xde\xab\x4b\xc8\xe8\x72\x3e\xc5\x10\ \x11\x13\x53\x3a\xa2\x62\x46\x36\x26\x33\xa0\x69\x22\x18\x3c\x43\ \x14\x2f\x67\x10\x33\xec\x20\x33\x0c\x31\x83\x46\x72\xa2\x32\xd2\ \x8c\x02\x68\x02\x1c\xe3\x9f\x06\xfe\x18\x04\x76\x7c\xc1\x42\xa3\ \xd8\x05\x02\x61\x70\x88\x5d\xc4\x83\x18\xbf\x88\x63\x4c\xd4\xd5\ \xa8\x77\x31\xea\x13\x69\x38\xc6\x02\xea\xd8\x28\x0b\x72\xa4\x9b\ \x3a\x61\x47\x38\xf6\xf4\x8b\x30\x60\x2d\x27\x5c\x13\xe1\x08\x01\ \x06\xc2\x7e\xb5\xa1\x1c\xb1\xb8\x91\x8e\xc8\xe6\x98\x47\x42\xb2\ \x79\xf3\x49\x95\x91\x58\xb5\x2a\x4c\xd2\x0d\x7b\x40\xa4\x4b\xc4\ \xc0\x47\x4a\x38\xdc\xe1\x0e\xb3\x1a\x0c\x5d\xea\x71\xca\x22\xe6\ \x61\x56\x06\xbd\x03\x1c\x3e\x90\x33\x5d\xca\x6b\x23\xf9\xdb\x83\ \x80\xda\x34\xb3\x8a\x9e\x29\x66\x12\x62\x87\x9f\xf4\x24\xcc\x3f\ \x75\xc1\x98\x5e\x60\x47\x13\x77\xe1\x21\x73\x74\x81\x17\xbc\x58\ \xa9\x87\xc2\x10\xcd\x97\x18\x21\x0c\x27\xaa\x63\x1d\x17\xb5\x00\ \x5a\x64\xb3\x8f\x9c\xd3\x0d\x06\xcd\xd4\x05\x3d\x9d\x64\x1f\x5d\ \x48\x64\x72\x98\xe3\x14\xe3\xa0\xed\x31\x7e\x00\x05\x97\xae\xc2\ \xb5\x16\xfa\x64\x58\xfb\x01\x95\x0c\x13\x93\x31\x1c\xc6\x30\x93\ \x3c\x7c\x55\x40\x81\x30\x25\x4c\x98\xcf\x7c\x44\xa4\xd5\xac\x80\ \x30\x2b\x4c\x60\xe2\x2d\xb4\x6a\x28\x26\xbc\x90\x84\x0f\x5c\x2b\ \x77\x39\x41\x48\x16\xf1\x37\xfe\x9a\x33\xa8\x4c\x4d\x11\x52\xc8\ \x28\x44\xea\x82\x78\x6c\xa1\x0b\x3b\x08\xe9\x9f\x44\x71\x58\x76\ \xe4\xa2\x80\x1e\x82\x29\x2f\x4c\xe1\x8b\x7b\xd0\x74\x25\x35\xf9\ \x44\xbb\xde\x05\xb5\x9d\x2e\xe0\x76\xb0\xbc\x60\x8a\xcc\xc0\x0e\ \x51\xb0\x66\x1f\xe1\x08\x87\x2e\xdc\xe9\x87\x14\x12\x0f\x84\x8e\ \x34\x45\x0a\x62\xe1\x98\x4d\x2d\x92\x60\xf4\xb4\xe7\x3d\x63\xa8\ \xd5\xaf\x52\xaf\x91\x33\xe4\x9b\xde\x80\x20\x83\x24\x7c\xcf\x7b\ \x06\x65\xab\x11\xd7\x4a\xab\xb6\x3a\x74\x56\x71\x6d\xab\x3e\xbe\ \x90\x04\xbb\xde\x15\x92\x11\x82\x41\xcd\x46\x13\xc5\x95\x7d\xa1\ \x4e\xb9\xbc\x88\x19\xf6\x60\xa1\x62\x9a\x34\x19\x3c\x73\x0d\x17\ \x5c\xe0\x52\x5e\x78\x68\x17\xef\x3d\x44\x50\x78\x91\x34\xd7\x19\ \x21\x19\xed\x72\x17\xa3\x6c\x87\x5f\x87\x74\x13\x96\x77\x6d\x03\ \x2f\xdc\xc1\x0e\x5d\x88\xc2\x1d\x7e\xe8\xc2\x2f\x0c\xe0\x0b\x06\ \x27\xf2\x84\x6d\x00\xc5\x3b\x4a\xd8\x06\x1d\xd9\xb6\xaa\x91\x64\ \x1e\xf3\x9c\x07\xb1\x88\x21\xe9\x2b\x01\x9b\x8f\xac\xea\x31\x32\ \x38\xd4\x83\xac\x6d\x5d\xa8\x5b\x21\xfa\x3d\x14\x23\x94\xc5\x46\ \xc4\x0c\x41\x1a\x67\x5d\xfe\xbc\x66\x17\x24\x8d\xf3\xeb\x74\x9b\ \x98\x4b\xf1\xe2\x44\x22\xbc\x48\x8d\x30\x4c\x32\x64\x00\x80\x61\ \x0b\x08\x7c\xe9\x2e\xba\x90\xcc\x43\x1c\xa2\xb2\x96\x25\x11\x7e\ \x37\xcb\xa8\xfe\xf2\xb1\xca\xff\xb5\x2e\x0c\xcc\x14\x86\x70\xec\ \x43\x14\xbf\xe0\x20\x52\x28\xec\x98\x08\x47\x95\x6b\x56\x61\x0e\ \x99\xca\xb6\xe6\x17\x36\xaf\x60\xaa\xda\x0e\x3d\x75\x48\x3e\xb3\ \x4a\xb4\xc4\xa7\x6c\x6b\x9e\xf3\x71\xc4\x3b\xe7\xc3\x88\x2e\xf6\ \x9e\x11\xf5\x71\x07\x63\x79\xb7\xa2\x34\x8e\x65\x77\x9b\x58\x2c\ \x81\x64\x8e\xba\xa4\x21\x8d\x7e\x42\xfa\x39\x22\x13\x79\xbd\x66\ \x48\xf2\x12\x34\xbd\x84\xf7\x3e\x39\x9a\xb0\x93\x32\x35\x29\x18\ \x5a\x9d\xba\xcb\x8f\xb1\x7c\xc8\xa9\x79\x63\x06\x77\xe8\xa2\x0b\ \xe1\xf8\x85\x2e\x4a\x08\x42\xb4\xc5\xa2\x09\xb1\x00\x98\x61\x6a\ \x2b\xcf\x82\xa9\x39\x60\xf6\xcc\x2d\x0c\xbb\x94\x18\xb0\x40\x86\ \x64\xf6\xa9\x4c\x12\x26\x73\x07\x7d\xe8\x39\xba\x49\x28\xa8\x17\ \xfc\xac\x8f\x23\x2e\x94\xac\x47\xb4\x8c\x7f\xa2\xa0\xea\xbb\xe6\ \x35\x66\xdf\xfe\x4f\x41\x70\x06\x03\x76\x14\xb5\xd2\x95\xee\xc2\ \x21\xd8\x51\xc0\xd4\xfe\x8d\x8b\xd3\xbb\xa0\xaf\xd2\x8c\xd0\x0c\ \xcd\xbe\xcb\x51\x17\x44\x05\x95\xbf\x79\xc1\x54\x07\x15\xd1\x43\ \x60\x07\x83\x8d\xe3\xaf\x58\xbc\xa3\x09\x3d\xc9\x75\x56\x7b\x04\ \xaa\xb2\x31\x0f\x92\xfa\xc9\x2d\xaf\x88\xdd\x93\xfd\xd4\x87\xd0\ \x05\x55\xb6\x19\x92\xa0\x0f\x2f\xe8\xc3\xe3\x1e\xf7\x02\x1c\x2a\ \xa3\x0f\x69\xc0\x38\xc5\xd7\xf6\x02\xa1\x17\xad\x91\xac\x75\xdb\ \x40\x02\x6a\x59\x8c\xe7\xa1\x99\x5d\xae\xcc\xdc\xe7\x26\xf2\x16\ \x96\x79\x3a\x4d\x13\x23\x75\xbb\x98\x29\x94\x45\xe1\xae\x46\x05\ \x15\x27\x0f\xd9\x2f\x37\x75\xd2\xef\xcf\x22\x5a\x3f\x6d\xd8\x05\ \x6b\x83\x67\x8a\x82\x37\xc1\xcc\x8d\x5c\x4e\x58\x16\x79\x98\x35\ \xb7\x90\x6a\x58\xad\x4f\xc9\x20\x03\x6d\xff\x54\x46\x58\xff\x49\ \x39\xb2\xe6\x5a\x19\x36\x34\xfb\xe3\x6d\xcd\x87\x15\x30\x31\xe8\ \x6c\x37\x7a\xc6\x4e\xf7\x08\xfc\x92\xa5\x2c\xef\x26\x21\x0a\x56\ \x95\x62\xb9\xb1\x80\xf3\x73\xbb\xc0\x4c\xab\x33\x9a\xcf\x55\xb7\ \x84\x42\xc4\x1b\x5d\xf7\x60\xd7\x4f\x3b\xa2\x1b\x6a\xf6\x57\x27\ \x7d\xcc\xe9\xd1\x39\xf2\xd3\x7e\xe3\xce\x0c\xbe\xd0\x45\xbf\x40\ \x38\x84\x72\x34\xfe\x41\xc2\x6e\xe6\x52\x6d\x15\xce\xf0\x5f\xcb\ \xab\xe2\xe4\x83\x83\x55\x35\x5e\xf6\x24\x9c\x1d\x33\x02\x22\xf9\ \x5c\xbd\x20\x0d\xb9\x4b\xc3\xe3\xf9\x78\xc1\x94\xa6\x7d\x87\x94\ \xab\x69\x21\x87\xfe\x77\x3b\x9a\xf8\x85\x96\x7d\x41\x58\xf9\x3b\ \xc3\xca\xdc\xe1\x05\x2f\x12\xbe\xf0\x1f\x38\x03\xd1\xd4\xeb\xee\ \x9e\xbb\xa0\x10\x50\x36\x42\xd1\xaf\x0c\xb5\x3d\x62\xd0\x82\xe4\ \xf7\x23\x1f\x73\xd1\x47\xda\xad\x7f\x6a\x66\x70\xb5\x1f\xce\x06\ \x14\x50\x50\xa0\x09\x2d\x82\xa4\xd9\x76\xab\xe6\xd5\xe3\xf6\x51\ \xfb\x59\x0c\x68\xb3\xaa\xfe\x30\x96\xc6\xa9\x9c\x96\x49\x16\x36\ \x10\x08\xde\xb3\x02\xdf\xfb\x83\x17\x08\xbe\xe0\xf3\xbd\x18\x2b\ \x3e\xbb\x3b\x08\x44\x9b\x88\x8b\x68\x90\x24\x10\x90\x28\x98\x90\ \x2f\x48\x06\x0e\xe0\x00\x40\x00\x80\xc1\xb3\xbe\x21\x03\x83\x3b\ \x49\x20\x77\x5b\xbc\x25\x18\x97\xd8\x00\x3f\x7e\x3b\xbf\x7c\xb3\ \xbc\xcb\xdb\x26\xa5\x83\xa2\x3e\x12\xbf\x13\xd1\x09\x80\x73\x87\ \x72\x40\x99\x33\x80\xb0\x26\xb8\x07\x3f\xb0\xaa\xd7\x12\xb6\x46\ \xe2\x95\x5e\x6b\xb8\x7a\xfa\x89\xc7\xf8\x00\x38\xf0\x82\xba\x3a\ \x83\xd9\x03\xfe\x89\x24\x88\x3e\x35\x99\xb9\x85\xf0\x02\x08\xfc\ \x03\x69\x90\x86\x17\xb0\x02\x31\xc4\x04\x69\xa8\x07\x2f\x38\x43\ \x8f\x6b\xbb\x07\x8c\x9f\xea\xca\x9d\xec\x92\x1c\x08\x94\x43\xe7\ \x8b\x10\xab\x8a\x02\x76\xe0\x00\x0f\x28\x41\x13\x3c\xc1\x92\x70\ \x01\x09\x59\xa6\x97\x52\x1d\xee\x73\x2f\xcb\x4a\x97\x16\xe9\x3c\ \x7f\xfb\x89\x87\x90\x41\xbc\x8a\x13\xa3\x63\xc4\x9f\x80\x81\x0f\ \x70\x87\x14\x78\x22\x32\xa8\xba\xfb\x6b\xb3\x36\xeb\x92\x4e\xec\ \xba\x4f\x74\xc2\x9c\x80\xc2\x64\xf3\x89\xee\x4a\x82\x83\x60\x16\ \x8b\x50\x88\x3d\xa8\x9c\x3f\x60\x13\x97\x91\xc3\x30\x2c\x43\x92\ \x03\xbe\xe0\xcb\x82\x2c\x78\x01\x04\x71\xc3\xbb\x32\x10\x36\x78\ \x81\x2c\xa0\x01\x65\x50\x86\x17\x98\x2e\x3a\xd4\x38\x2f\x00\x04\ \x2c\x50\x46\x65\xec\xc3\x92\xd0\x39\x5e\x18\x23\x41\x74\x41\x9f\ \x63\x32\x53\xf0\xb4\x38\xaa\x09\x3f\x78\x44\xc9\x5b\x44\x14\x31\ \x3f\xca\x53\x44\xd7\x8b\x82\xf8\xd3\x8f\x08\xbb\x87\x77\x88\xaa\ \xc7\xe8\x41\x63\x6b\xc2\x5d\xd1\x30\x36\x4b\x11\xfe\x28\x34\x29\ \xca\x08\xf7\xc1\x2e\x66\xd9\x42\x01\x79\xc0\xc9\x81\x40\x2b\xf0\ \x47\x40\xfe\xc0\x03\x7f\x7c\x01\x30\x2c\x08\xfc\xd9\x0d\x1a\x53\ \xbe\x51\xf0\x45\x3c\x50\x86\x16\xb0\x02\x05\xf4\x82\x62\x61\x03\ \x61\x58\xc6\xc1\xb3\xc8\x66\x0c\x02\x18\xd8\x02\x94\x10\x9a\x69\ \x3c\xa0\xf8\x12\x8e\x6b\x6c\x20\x23\xa0\x80\x44\xac\x41\x6f\x4a\ \x35\xf3\x4b\xc4\xff\x0a\x2d\xfd\x70\x07\x03\xa3\x27\x4c\xbc\x87\ \x5b\xeb\x17\xab\x52\x47\x7b\xba\xb0\x4d\xd4\x2d\x7a\x6a\xb9\x21\ \xf8\x00\x2f\x98\x1f\x9f\xf8\x26\xbc\xe2\x88\x1d\xf0\xbb\x03\x49\ \xc0\x30\xb4\x02\x1a\x68\x81\xa6\x5c\x03\x87\xcc\x07\xdf\x53\xc0\ \xcc\x21\x10\x84\x64\x45\xe6\x93\x86\x2c\xb0\x82\x61\xa4\xc0\x3f\ \xd0\x43\x66\xe4\xc3\x66\xe4\x02\x76\x80\x01\xfe\x09\x23\x02\xda\ \x85\xf8\xea\x41\x43\x34\x02\x5d\xc8\xbc\xcc\x83\x22\xa4\x3b\x48\ \x54\xb3\x32\xce\x8b\x4b\xa4\xdb\xa3\x9c\x20\x2d\xa4\x2a\x1b\x3f\ \xb0\x35\xf9\xbb\x2a\xe0\xd0\x49\xab\xd2\x0f\xc8\x10\xb6\x18\x6a\ \xbd\x8e\x78\xb9\x3d\xe8\xb6\x08\x79\xb9\x99\x5b\xc8\x86\x7c\xca\ \x16\x08\xc8\x06\xd4\x07\x36\x99\xb9\x82\xa8\xca\x2c\xeb\xae\x38\ \xc4\x45\xdd\x13\x10\x8a\x0c\xcb\x66\x34\x09\x30\xf0\x89\x2e\x18\ \x89\xfe\x6e\xe1\x34\x35\x42\x0e\x8e\x78\x07\xb6\x34\x00\x6e\xea\ \x23\x94\x6c\x07\x7b\x8b\x4b\xcc\xe3\x37\xbc\x62\x44\xdd\xd0\x89\ \x3d\x10\x05\x51\xf8\x80\x9a\x84\x21\x9c\xc9\x8f\x9d\xc8\xad\xff\ \xbb\xa7\x2f\x59\x8c\x93\x21\xcc\x28\x62\x4c\x1a\xab\x9f\x2f\xc8\ \x4a\x3c\x68\x4a\x65\xc0\x83\x80\x7c\x01\x4c\x68\x3b\x04\xc4\x4c\ \xef\x12\xaa\x48\xf3\x08\xe7\x64\xbe\x64\x81\xc0\x88\x0c\x10\x7d\ \xb0\x82\x8b\x24\x4d\x93\xe0\x82\x64\x90\x10\xd4\xe4\x02\xa1\xd9\ \x01\xc8\x4a\xa6\xe3\x00\x0a\x5e\x10\xc9\xfa\x32\x82\xfe\x52\x44\ \x3e\xb2\x1d\x7f\xc3\x37\xdc\xac\x20\xda\xc4\x32\x18\x08\x82\xc5\ \x32\x42\xd7\xbb\x49\xbc\x2b\x4c\xac\x9a\x0c\x91\xfb\x8f\xe9\xda\ \x45\xe8\x64\xbe\x2c\xb8\x4e\x3c\xc0\x45\x08\x04\xc3\xdb\xdb\x3b\ \x36\x01\x89\xe7\xf4\xa6\x58\x7a\x4e\xe7\xd4\x40\xe6\x8b\x45\xff\ \x00\xca\xdd\xf3\x00\x66\x5c\xcf\xd2\x74\x87\x76\x30\x03\x3d\x31\ \xb2\x97\x72\xc1\xd4\x51\x4b\x53\x68\x26\x30\x80\x23\x9a\x22\x49\ \x7c\xcb\x41\x7b\x63\xc4\x00\x7d\xc4\x46\x1c\x4a\x49\xec\x02\x61\ \xd8\x87\x0e\xca\x1d\xc2\x64\xd0\x9d\x70\xd0\x28\x24\x3e\x30\x34\ \xfe\x08\x06\x55\x3e\x97\x01\x43\x69\xe0\xce\x2c\xbd\xcc\x04\xbc\ \xb1\x6b\x19\x02\x84\xf0\xa8\x83\x60\x45\x2c\x8a\xc3\xeb\x94\x86\ \x00\x19\x08\x63\x00\xcb\x16\xf5\x43\x27\xfa\x02\x19\x35\x87\xf9\ \x1c\x17\x30\x88\x87\x5d\x90\xaf\x78\x68\x8d\xc6\x83\xb2\x92\x84\ \x44\x9d\x0a\xaa\x9c\xc2\xbc\x40\xad\x41\x2c\xcb\x09\x7a\xa9\x17\ \x76\x68\x52\x06\x7d\x21\x79\xd4\x87\x2d\xdc\x81\x27\x42\xb4\xc7\ \x69\x22\x07\xc9\x1c\x82\x20\x08\x04\xbc\xd2\xcc\x94\x99\xc7\x59\ \x08\xe9\x74\xbe\x03\x11\x90\xc9\x99\x1c\x0b\x1d\x46\x0f\xf5\x02\ \xd1\x64\xd1\x16\x05\x03\x76\x18\x2d\x01\x2a\x23\x05\xd2\x90\x70\ \x20\x86\xf7\x32\x07\x3c\xdd\x07\xc2\x72\xbc\x73\xa9\x09\x5e\xe0\ \xa6\x54\x33\xb5\x7e\x2b\xba\xff\x8c\x13\x1c\x84\xa2\xb8\xd4\x89\ \x2e\x78\x0d\x03\xf8\x3a\xc2\x5c\xd0\x61\xc1\xbb\xfd\xe8\x0f\xfc\ \x99\x50\x84\xec\x2b\x33\x58\x3e\xc8\xe4\x47\x39\xc4\x45\x57\x6c\ \x93\xe5\x6b\x99\x99\x7b\x81\x3f\x78\x93\x96\x79\x40\x0c\xfd\x45\ \xea\x1c\x43\x2c\x7d\x81\x15\x4d\xd5\xf5\x04\x03\x77\xf8\x80\x3d\ \x08\x02\x60\x1a\x23\x62\x40\x2d\x3d\xb9\x57\xd4\x8a\x87\x7d\xfe\ \x35\x87\x30\xc8\xd5\x43\xa9\x89\x5e\x05\xc7\x7e\xb3\xb2\x13\xb1\ \x32\xce\x19\xd0\xdc\x4c\x19\x7a\x29\x89\x70\xe8\x49\x0c\x6b\xb3\ \x60\xeb\xc1\x60\x5b\xd4\xfe\xc8\x88\x44\x4d\x99\x21\xb8\xca\x38\ \x3c\x57\x86\x14\xc6\x86\xa4\x81\x80\xe4\x56\xe6\x7b\xc0\x81\x7c\ \x81\x90\x15\x90\x5f\xd4\xca\x60\x0c\xd9\x86\xf4\xc7\x30\x64\x57\ \xf5\x24\x4d\x61\x70\x07\x27\x4a\x02\x3f\x19\x23\x34\xca\x90\x7d\ \xdd\x07\x9e\xe1\x82\x78\x58\x07\x5d\x30\x87\xa1\x25\x14\x28\x7b\ \xd1\x54\x2b\x3f\x82\xa5\xbc\xa2\x3b\x58\x6f\xba\xb2\x96\x9c\xbc\ \x8d\x6c\x58\x94\xb9\x49\xd4\x73\x1e\x9e\xd4\xb0\x45\x05\xbb\xb0\ \x2b\x28\x7d\x00\xbe\xa8\x2c\xc8\x5c\xc2\x3b\x8f\x9a\x87\x07\xa4\ \x81\x60\x6c\xc8\x16\x58\x83\xb5\x65\xdb\xc9\x34\x57\x30\xfc\xc5\ \xb3\x7d\x01\xea\x6c\x81\x70\xbd\x50\x61\x54\xdb\xea\x7c\x01\x92\ \xc3\x83\x8a\x6c\x51\x2e\x10\x06\xe7\xd3\xb8\x20\xd8\x02\x0e\x18\ \xa3\x78\xd0\x85\x5d\xd0\x57\x67\x42\x2d\x58\x5b\x07\x5e\x20\x83\ \x5d\xd0\x85\xc4\x0d\x3a\x1e\xa5\x23\x3b\x5a\xda\x60\x15\xd6\xba\ \xac\xa0\x6d\x84\x5a\xba\xdc\x01\x6d\x01\x80\x7d\x28\x8a\xfe\x66\ \xdd\x30\x26\xfc\xc4\xdd\xaa\x24\xe4\x8a\x3b\x40\x00\x84\xa7\x54\ \x06\x1a\x78\x81\xf9\xb9\x40\xa7\x83\xc3\x72\x0d\x46\xb5\x6d\xdb\ \xb6\x6d\x01\xeb\x1c\xc3\x3f\x20\xd5\xd8\x65\xc8\xa7\xc4\x83\x93\ \xed\x5d\xc9\x5c\x5b\x0f\x00\x04\xcc\x78\x81\x65\x2c\x41\x77\xe5\ \x80\x24\x68\x03\x66\xd9\x82\x79\x0d\xa6\xf5\xda\x85\x75\x58\x07\ \xc9\xfd\x05\x62\xd8\xd7\x78\x30\x07\xe1\x38\x84\xc8\x25\x94\x7f\ \x35\x14\x23\x60\x17\xa2\xd3\xac\xcc\xe5\x4f\x1e\x24\xd0\x22\xcd\ \x4d\x18\xd0\x05\x92\x00\x83\x20\x74\xd2\x82\xe1\x91\x61\x23\x13\ \x2f\xf1\xaa\xc2\x41\xae\x53\x72\x5d\xca\x2c\x5e\xda\x9d\x56\x79\ \x89\x10\xf1\xd2\x3b\x95\x65\xc8\xa6\x64\xe0\xde\xbd\x4e\x6d\x5d\ \x60\xeb\x54\x86\xb5\x55\x06\x0b\x6d\xe0\xb6\xb5\x82\x28\xf0\x02\ \x35\x6d\xd7\x13\x04\x03\x61\xb8\x83\x56\x3a\x93\x72\x5b\x0d\x62\ \xd0\xde\x70\xf0\x90\x75\xe8\x02\x14\x12\x5a\x73\xd0\x5e\x5d\x98\ \x11\x53\x80\x55\xf3\x5d\x9a\x30\x20\xba\xfd\x32\xb5\xca\xf3\x55\ \x0a\xa2\xcb\x10\x75\x44\xdc\x89\x02\x92\xe0\x82\x04\x15\x45\x45\ \xfa\x94\xac\x42\xcc\xac\xaa\x24\xf3\x39\xa5\xb8\x4b\xfe\x57\x81\ \xb8\x58\x06\xed\xc5\x2f\xa4\x62\x30\x2c\x59\x2b\xce\x50\x0d\xb5\ \x62\x2b\x88\xe0\xe1\x5d\x03\x65\xe0\x62\xdd\x55\x5b\x2c\x58\x03\ \x2c\x78\x81\x0f\x90\x86\x32\x96\x59\x9c\xe3\x96\x64\x98\x42\x34\ \x79\xbe\x72\x7b\x8d\x70\x18\x23\x57\x0b\x5a\x18\x30\x05\x98\x02\ \x85\xf7\x3a\xa4\xa1\x38\x04\x3c\xad\x17\xb6\xbc\x29\xfc\xd2\x2f\ \x81\xdd\xac\xdc\x64\xc9\x22\x1d\x02\x71\x02\x80\x30\xc0\x19\x7b\ \xda\x11\x1d\x41\x4c\xfd\x5b\x33\xad\x22\x9f\x33\xac\x07\x7d\x18\ \x48\xbe\xf3\xae\x3a\x21\xd4\x9f\x40\x85\x2f\x00\xde\x5b\x1c\x48\ \x4d\x0d\xaf\x56\x42\x65\x54\xd6\x60\x5f\x94\x43\x3c\x58\x5b\x01\ \x76\x4a\x0f\x58\x5b\x32\xb6\x82\x2f\x68\x5e\xe7\x3d\x37\x65\x14\ \x86\x20\x88\x48\x61\x51\xb4\x8d\x30\x03\x3f\x29\x09\x30\xd0\xde\ \x2e\x58\x07\xc2\xda\x05\x77\x80\xac\xb1\x89\xaf\x26\x5b\xa9\xa2\ \xa9\x17\x1a\x0e\x11\x23\x50\x14\x42\x26\xba\x6d\xba\x66\xff\x8a\ \x25\xbc\x63\x87\x7d\x80\x0d\xdf\x69\x50\x48\x4a\x33\x49\xce\xb0\ \xc1\x04\xbb\xc5\x38\xa8\x4c\x16\x43\x2f\xb4\xe2\x96\x79\x54\xeb\ \x42\x85\x45\x6b\x10\x50\xd5\xd4\xcc\xb1\x96\x5d\xfe\x8c\x22\x6b\ \x2d\xbb\xdd\xd3\xd0\x3f\x58\xca\x86\x94\x65\x32\x36\x06\x4d\xae\ \xc8\x82\x56\x5e\x0e\x60\x83\xda\x93\x90\xc7\x48\x82\x20\xe0\x80\ \x20\xa8\x3d\x4c\x63\x07\x40\x0e\x87\x25\x30\x66\x7d\xd5\x85\x17\ \xf6\x83\xf1\x7d\xaf\x8c\x0e\x07\x3d\xb1\x57\x30\x70\x01\x69\x06\ \x11\x23\x28\x04\x6b\xbe\xe1\x76\xb1\xbc\xa9\x19\xca\x4f\xe6\x88\ \x2e\xd8\x87\x5f\x20\x82\xc2\x6c\xa1\x33\x23\x93\x17\x5a\x47\x9c\ \x4c\x0c\x66\x93\xb6\xa5\xbc\xd0\x90\xc5\xc5\x33\x05\x51\x03\x86\ \xb9\x36\xc9\x40\xfb\x09\xd5\x96\x91\x06\x81\x90\xd6\x3a\x3c\x60\ \x09\xb1\x20\x6b\x75\x22\x7d\x1e\x88\x64\x11\x48\x30\x7c\xd9\x06\ \xf4\xbd\xa5\x4e\xa9\x9b\xc1\x2e\x6b\x95\x06\x0e\x10\x06\x17\x08\ \x82\x2e\x30\x6b\x76\xe8\x82\x78\xa8\x68\xa1\xed\x82\x96\xb2\x63\ \xed\x35\x07\xa1\x5d\x07\xb5\x06\x23\x30\x90\xd5\xb9\x5e\x07\x92\ \xb6\x8d\x9a\xc8\xaf\x42\xce\xa9\xbc\x5c\x44\x97\xe6\x1c\x56\xe3\ \x83\x61\x69\x3d\x9e\x88\x8e\xaa\x7d\xc2\x48\x22\x19\xe4\xd2\x07\ \xdd\x7d\x4a\xd8\x95\xdd\x97\x29\xe0\x58\x32\x83\x50\xfe\xc5\x3f\ \x28\x88\xcc\x19\xcf\x51\xc6\x83\xb3\xcd\x82\xfe\x2f\xcc\xc7\x7a\ \xde\x83\x54\xae\xae\x61\x39\x93\x56\x0a\x16\x2d\x03\x36\xd6\x8e\ \x22\x7c\xe4\x80\x3f\x08\x02\x36\x98\xbe\x79\x2d\xa3\x3f\xd1\x05\ \x76\x58\x07\x13\x76\xe1\xed\x65\x07\xc9\x4d\xb0\xc6\xb5\xeb\xd1\ \x11\xa7\x01\xda\xd7\x25\x00\x5a\xbd\x76\x20\x76\x20\xe4\x13\x21\ \x56\x96\xe6\x4d\xa7\x73\x38\x8e\x68\xb8\x8e\xa0\x30\xaa\xb0\xdf\ \x75\x34\x36\xc3\x58\xab\xb9\x7b\x81\xd7\xe5\xdd\xd8\xcd\x82\x01\ \xd9\xe6\x94\xd9\xa5\xcc\x61\x03\x52\xd6\xe2\x04\xdc\x47\x2b\xd0\ \xca\x5b\xfc\x83\x2f\xfc\xc5\xf9\xc6\x45\xcc\x74\x99\x82\x38\x93\ \xd2\x8e\x90\xa9\x71\x56\x48\xcb\x99\x89\xe0\x40\x01\x31\x06\x63\ \x10\x06\x0e\xe8\xe5\xd1\xea\x02\x77\x30\x6b\xb3\xde\x82\x70\xd0\ \x5e\x15\xde\x85\xe5\x08\xce\xf6\xfa\x85\x78\xf8\x05\xe1\x96\xd5\ \x70\xa0\xd3\x7d\x1d\x17\xe5\xa6\x8d\x9a\x18\x05\x29\xe3\xc6\x1e\ \x3e\x83\x70\x6c\xd2\xfd\x1b\x16\xe7\x48\x81\xe2\x7c\x38\x9b\xe4\ \x89\xaf\xb8\x33\xd7\xf5\xc7\x65\x6c\x5b\xeb\xcc\x45\x7a\x24\x8d\ \x84\xd0\x08\xc7\x94\x1c\x36\xf9\x03\x96\x9d\xec\x70\x45\x40\x82\ \xb8\x52\x2c\x85\x5b\xfa\x2e\x5e\x08\x5c\xfe\x60\xd9\x25\x4f\x57\ \x54\xc0\x82\xf4\x2e\xce\x16\x08\xc9\x91\x86\x7e\xf8\x45\x0e\x78\ \x81\x02\x3f\xd3\xda\xeb\xab\xfd\xce\x19\x25\xdb\x82\xc4\x7d\x29\ \xa4\x40\x21\xa3\x20\x03\x5e\x90\xeb\x25\xd0\x5e\x67\x12\xe9\x6e\ \x71\x26\xef\xf5\x70\x39\x32\x02\xfe\x02\x50\x82\x2d\x71\xc0\x4e\ \xd4\x36\x18\x15\x15\x2f\x13\x19\x88\x05\x3b\x00\x4c\x27\x65\xec\ \xc4\xc0\x84\x70\x90\x71\x2b\x28\xe3\x44\x77\xdb\x33\x5d\x99\x51\ \x90\x99\x8f\xa2\xd4\xb2\x8d\xef\xf8\x06\x46\x1a\xc8\xe2\xf8\x56\ \x96\x4b\xc5\xd4\xf8\xa6\x6f\xf8\x3e\x59\x61\xb4\x74\x4a\xc7\x45\ \xf5\x86\x40\xf2\xc4\x52\x2a\xf6\xf4\x34\x08\x57\xbe\x0b\x16\x54\ \x66\x6d\x8e\xf8\x80\x97\x32\x83\xd2\xd5\x09\xf9\x2a\x07\xc9\x15\ \x5a\xa1\x45\xee\x12\x06\x17\x67\x72\x81\x70\x10\x64\x7d\x93\x41\ \xf1\xdb\xa6\x22\x95\x6e\x19\x78\x87\x77\x28\xb8\x77\x20\x62\x3f\ \x57\x76\x8a\x13\x74\x7c\x32\x1f\x25\xc8\x07\xd7\x75\x5d\x1a\x67\ \xdb\x52\x45\xca\xf9\x59\x99\xc9\x41\x90\x98\x81\x45\x21\xff\xf1\ \xd8\x05\x6d\x76\xfe\x56\xc8\x0c\xf7\x5b\x0c\x46\x0c\x05\xc6\x8f\ \x5d\xf5\x70\xa5\x6f\x08\xcc\xd0\xa0\xfe\x46\xc0\x07\x8c\xef\x96\ \x09\x82\x82\xa8\xbd\x21\xb8\xc3\x94\x7a\x3e\x53\x10\x96\x96\x3b\ \x0e\x1c\xed\xed\xa1\x8d\xa9\x5a\xfd\xde\x5e\x27\x17\xef\x8b\xf3\ \x99\x20\x11\x1c\x34\xc9\xcc\x73\x69\xd7\xb3\x83\x77\x38\xc7\x64\ \x8f\x05\x8a\x93\x01\x5f\x68\x06\x25\xb0\x03\x9e\xd4\xe9\xc2\xa9\ \x87\x64\x10\x06\x2b\x48\x46\x35\x56\x74\xca\x74\xc5\x30\x1c\x48\ \xef\x1a\x85\xf8\x8e\x1c\xfb\xbe\xe2\xc8\x14\x5e\x2f\xfc\x42\x36\ \x99\x72\x49\x97\xf7\xb3\xe5\x79\x06\xae\x60\x79\xff\x45\x2e\x76\ \xef\x5b\x24\x7a\x9b\xff\x83\x7e\x60\x03\xa4\x9f\xb9\x7e\x08\x02\ \x1d\x43\xf0\x28\x48\x32\x5d\x30\x27\xe3\xac\xf5\x72\xc8\xe8\x07\ \xdf\xb4\x75\xd0\x34\x17\x46\x6e\x62\x00\x1a\x62\xf8\x3e\x1e\x35\ \x82\x83\xe8\x5c\xa6\x6d\x44\x8c\x85\x24\x3f\x48\xf6\x7b\x60\xfb\ \x30\xf8\xf8\x2e\xb1\x83\x30\x08\x04\x03\x28\x0c\x75\x34\xb6\x4c\ \xba\x83\x64\xa8\x76\x8b\xac\xc8\x44\x6f\x81\x2c\x18\x55\x5c\x44\ \x90\x66\x99\x9c\x57\xb4\x6f\xa0\xe7\xf4\xcf\x16\xe0\x0c\x05\x43\ \xcc\x4c\xea\x07\xac\x74\x75\x47\x5b\xf1\x96\xf7\x76\xb7\xf4\xca\ \x57\xef\x49\x57\x96\x82\x98\xed\xfe\x4e\x6e\xa5\xd4\xf8\xbb\xd1\ \x62\x07\xec\xeb\x08\x32\x88\x2f\xe0\x20\x0a\x5e\xb8\x75\x17\xfe\ \xde\x75\x20\xda\x5a\xf5\xfa\xd5\x90\xd5\x78\x30\xc4\x7f\x68\x06\ \xff\x32\x91\xa3\x33\x76\x8c\x6d\x83\x1a\x8a\x05\x0a\x28\x84\x42\ \x78\x07\xaa\x38\x98\x66\x28\x84\x66\x70\x80\x46\xba\x27\x22\x40\ \x0b\x77\xc0\x04\x92\xe7\xfb\xbe\xf7\x80\xe2\xe5\x62\x0c\x4d\xe8\ \x3d\x48\x02\x56\xe6\xd6\x6f\x0d\xfc\x0c\x2d\x57\xe1\xc5\xce\x55\ \x9f\xf4\xa3\x27\xff\xa2\x8f\x5b\xb4\x0d\x75\x79\xff\x6c\x30\x96\ \x7c\x4b\x4f\x83\x92\x0d\xd7\x79\xd8\xbd\x20\x80\xe8\x56\xfa\x52\ \x76\x60\x07\x5e\x90\x10\x53\x38\x7d\x80\x6f\xaf\xb6\x06\x08\x5d\ \xba\x76\x91\xe1\x55\x6e\x57\x39\x5e\xbb\x76\x99\x8b\x17\x8e\x58\ \xbc\x78\xeb\xd6\x39\xe4\x02\x26\x9c\x0b\x17\xc4\x88\xfd\x32\xf2\ \xef\x23\xc8\x90\x22\x47\x92\x34\x62\xe7\xcc\x99\x76\x2a\xdb\xa5\ \x5c\x89\xf2\x25\xcc\x98\x32\x61\x0e\x69\x23\x43\x86\x9d\x77\x85\ \x5c\x05\x4a\xe1\x27\x85\x81\x30\xe1\x5c\x71\xb3\xd3\xe6\xa8\x4d\ \x19\x44\x88\xc0\xb9\x73\x27\x99\xbe\x70\x58\xa6\x52\xc5\xb2\x66\ \x8d\x07\x3c\x78\x94\x29\xcb\xfe\xc2\xe6\x4b\x94\x28\xf3\xfe\x64\ \xc9\xf2\x82\xcd\xbc\x7e\xd2\xd8\xfc\x79\x51\x96\x86\xd9\xb6\x2f\ \xb6\x2a\xc3\x63\xf6\x05\x5e\xbc\x7f\xf6\xfe\x91\xb6\x37\xef\xde\ \x2c\x70\xe1\xbe\x90\xfb\xc2\x8a\x56\x1a\x8a\x17\x13\x2e\xfc\x87\ \x8d\x17\x36\x41\xa4\x05\xf1\x62\x66\x8f\x99\x33\x30\xd8\xf1\x32\ \x63\xaa\xdd\x90\x21\xbc\x74\x99\x0b\x17\x0e\xcc\x3e\x2e\xe1\x7e\ \x99\x23\x4d\xba\xf5\x2e\x5d\x14\x29\xc6\x23\x06\xe6\xa2\xc5\x8d\ \xba\x39\x7a\x24\xe9\xfb\xf7\x47\x23\x46\xfc\xa4\x44\x85\x6a\xe5\ \xf1\x99\xca\x97\xd7\x94\x71\xd4\xcf\x3b\x57\xfb\x0a\xd9\xb1\x63\ \x40\x49\x98\x5f\xfb\xf6\x85\x21\x72\x54\x06\x1c\x20\x4c\x81\xb8\ \xab\x97\x2c\x99\x15\x40\x00\x00\x54\xb5\x6a\x8c\x46\x8b\x16\x34\ \xa4\x7d\xa9\xff\x85\x8d\x5b\xb3\x68\xff\xca\x2d\x9b\x05\x8f\x63\ \x87\xd1\xa0\x95\x15\x86\xe9\xc5\x17\x82\x7f\xf4\x13\x98\x60\x65\ \xe1\xe5\x5f\x62\x76\x29\x36\x02\x5c\x69\xec\x25\x0d\x65\x5e\x78\ \x11\x44\x10\x60\x7d\x10\x45\x68\x66\xf0\xc2\xcb\x10\xa6\x84\xc6\ \x4b\x17\x0e\x81\xf1\x8b\x0b\xaa\x11\x33\x90\x6b\xad\x8d\xb8\x10\ \x69\x14\x71\x71\x23\x31\xfe\x0f\x4d\x54\x1b\x44\xbd\x01\xf7\xe3\ \x48\x46\xc0\x80\x0a\x1a\x68\x18\x97\xdc\x72\x49\xca\x34\x84\x1f\ \x7e\x38\x97\x42\x33\x85\x04\x62\x40\x0a\xbe\x18\xe0\x80\x76\x00\ \xec\xa3\xc4\x52\xe1\xc1\xf1\x25\x10\x77\x88\x92\x0a\x20\x60\x4c\ \xc5\x1e\x55\x58\x79\xe0\x01\x56\x78\xa0\x35\xcf\x28\x63\xf9\x77\ \x16\x5b\x07\xe6\xa7\x15\x80\x7e\x65\x61\xc5\x9c\x08\xe6\x15\x60\ \x5b\x17\x06\x06\xd7\x5d\x6d\xfd\xa7\xd5\x5d\x69\x64\x91\x46\x5e\ \xc2\x70\xf0\x82\x34\xc9\x7c\x91\x04\x87\xec\x88\x08\xc3\x19\x87\ \x70\xe6\x19\x0c\x43\x88\x28\xdb\x8e\xbf\x10\xb3\x0e\x42\xad\xb9\ \xb6\x50\x6c\x0c\x99\x63\xce\x3a\x39\x42\xb4\xea\x2e\x4b\xd8\xd6\ \x23\x90\xb5\x82\x64\x84\x01\x2b\x7c\x82\xc6\x0a\x2b\x20\xa9\x24\ \xb0\x67\x0c\x91\x82\x1d\x29\x1c\x95\xc2\x3b\x54\xa6\xe0\x13\x1f\ \xa2\x70\xa1\xe5\x2f\xf5\xf0\x01\x04\x1c\xd3\xc2\xe1\xce\x1d\xe1\ \x94\x09\x08\x20\x58\xa0\x89\x95\x31\x80\xb0\xb9\x46\x0b\x74\xc6\ \x29\xa7\x83\x7c\xc5\x95\x1f\x84\x59\xf4\xd5\xdf\x9c\x77\x39\x78\ \xd7\x81\x7f\x09\x46\x98\xbd\x78\x34\xc6\x57\x5e\x1c\x64\x21\x4c\ \xa4\x6c\x24\x11\x85\xfe\x3b\x41\x58\xca\xd9\x07\x0a\xf1\xd2\x06\ \x2f\x1f\x98\x52\x90\xaa\xac\x4a\x44\x10\x2f\xab\xbe\x36\x11\x6d\ \x12\xd5\x18\xd1\x12\xe6\x2c\xb4\x44\x44\x12\x35\x63\x2b\xc9\xb8\ \xfa\xea\x52\xb0\xc1\xca\x60\x00\x05\x06\xc8\x50\x53\x93\x44\xa4\ \xc0\x07\x1f\xee\xfc\xf2\xac\x96\xa2\x28\xc1\x87\x53\x4e\x99\x17\ \x8e\x30\xc9\xb0\x21\x0c\x55\x80\xcc\x13\x16\x1b\x34\xac\x49\x43\ \x5f\xf3\x38\x2d\x0d\xbb\xeb\xd2\x3b\xef\x9e\x56\xe8\x95\xd7\x5b\ \x84\xfa\x37\x2f\xd6\x0f\x2a\x56\x96\xba\xed\xce\xcb\x28\x07\x7d\ \x49\xe3\xc5\xc0\x21\x26\x61\x06\x0c\xbc\xb0\x63\xce\x16\xeb\x38\ \x8c\xf0\x21\xb1\xb5\xb6\xaa\x8c\x0f\xa3\xca\x2a\x45\x0f\x61\x14\ \x4e\x3c\xaa\x82\x1c\xcf\x12\x0c\x81\x3c\xb8\x8f\x24\xff\x68\x44\ \x66\x29\xbf\x84\xb2\x72\x32\x84\x51\x08\x05\xa0\xb4\xd1\x64\x93\ \xd6\x61\xb7\xcf\x7a\x00\x70\xb1\x4f\x32\x77\x94\xa7\x84\x28\xc2\ \xa4\xe2\xa8\x3e\x41\x08\x23\xae\x15\x5f\x84\xb6\xc7\x28\x80\xb1\ \xd1\x0f\x5a\x0b\x66\x2d\x35\xbd\x6e\xcd\xd5\x58\x80\x6e\x31\xf6\ \xf5\xd6\xf1\xbe\xd5\x55\xa1\x0f\xea\x3b\x20\xd8\x7e\x3d\xc6\xe1\ \xa4\x1f\xa0\x54\xfe\x93\xb0\x30\x1c\xa2\xcb\x43\x30\xa2\x1a\x31\ \xc6\x32\xea\xd2\xb1\xc4\x11\xad\xd3\xf1\x6b\x33\x9a\xb3\x84\xac\ \xe4\x43\x54\x5b\x47\x8a\xd7\x6a\xc4\x3d\xc0\xb2\xf4\xd2\x91\x4a\ \xca\x40\x41\x21\xf7\xc4\xf2\x53\x2c\xcb\xf2\x81\x9d\x28\xe1\x74\ \xee\xb9\x69\x94\xe0\x0e\x4c\x00\x6d\x75\x80\x10\x06\x02\x85\xa1\ \x8f\x24\x60\x0a\x06\x7f\x80\xcb\x5a\xd8\x50\x3b\xb6\x90\x85\x06\ \xca\xf8\x9a\xa1\x72\x77\x18\xbb\x98\xc5\x6a\xef\x22\x8b\x60\x2e\ \xb8\x98\x7b\x69\xcd\x2c\x21\xbc\xa0\x7f\x94\x97\x35\xbb\x3c\x66\ \x1e\x12\x9c\x94\x86\x2a\x63\xa9\x0f\x98\xa1\x44\x23\xd2\x45\x6d\ \xd6\xa1\x11\x8f\xc5\x66\x7b\x19\x0b\x99\x0b\x56\x44\x0c\x8b\x4c\ \x8c\x17\xa6\x30\xc5\x19\x90\x68\x8a\x43\x28\x84\x7c\xb5\xf1\x9e\ \x70\xd4\x67\x2b\xf6\x2d\x47\x25\x30\x69\xc7\x71\xde\xb7\x1c\x19\ \x14\x62\x3a\x14\x28\x47\x0a\x40\xb1\xac\x58\xd0\xcc\x1d\x61\xe0\ \xdc\xff\xf6\x21\x0c\x25\x00\xcd\x5b\x38\xb3\xc2\x1d\x06\x96\x19\ \x33\xbc\x60\x2a\x78\x50\x1e\xed\x24\x68\x28\x0b\x76\xe5\x41\x77\ \xb1\x9a\xd5\x82\x57\x28\x05\xf9\x6e\x78\xbf\x1b\xe1\xbd\x94\xd1\ \x02\xae\xc4\xfe\xa5\x4e\x0e\xc2\x8b\x34\x5c\xc8\x01\x61\x58\x26\ \x0a\x49\x28\x58\x32\xba\xe0\x0e\x76\xb0\x63\x17\x3a\xcc\xd1\x69\ \x76\x48\x9a\x58\x45\xe4\x7c\xdf\x1b\xe2\x43\x72\x04\x86\x88\x78\ \xec\x33\x9f\x49\xe2\x21\xea\x66\x8e\x8d\x48\xc4\x1c\x89\x93\xe2\ \xe2\x86\x63\x45\x94\x40\x8e\x97\xc6\xd1\xe2\x72\xda\xd0\xc5\x7d\ \xd8\xaf\x58\xa0\x88\x85\x03\xf8\xe0\x0b\x77\x24\xc3\x7f\xff\x03\ \x00\x20\xb4\xf5\x4c\x40\x04\xc1\x0c\x66\x48\xc2\xc0\xbc\x60\x85\ \x35\x78\x30\x50\x6c\xe9\x87\xef\x2c\x08\xbc\x3d\x75\xd0\x84\x51\ \x03\x1b\xbf\xd8\x25\x4e\xc5\x5c\x10\x85\xc3\x8b\xcf\x22\xe1\xe2\ \x27\xd9\x41\xcd\x03\x58\xe0\xc0\x07\x3e\x94\x84\x2e\x84\x43\x14\ \x5b\xe8\xe4\x16\x5a\xc4\x85\x8d\xb4\x6a\x1d\x78\xeb\x5e\x2d\x2d\ \x26\xab\x52\x4a\x64\x09\xdf\x5b\x08\x0f\x05\xb7\x50\x62\x34\xe3\ \x96\xb8\xcc\xa5\x19\xde\x87\x8a\x93\x5d\x31\x7e\xc0\x1a\x42\x33\ \xb6\x53\x88\x77\xc4\xa2\xa4\x76\x40\xa6\x12\x48\x87\xc6\xff\x71\ \xc1\x5b\x9d\xc3\x42\x34\xe1\x60\x06\x38\x44\x46\x1a\xc2\x68\x21\ \x7e\xd2\x05\x4e\xdf\x89\x50\x31\x04\x02\xe4\x9f\x38\x68\xce\xab\ \xa9\x53\xfe\x91\xf1\xe1\x8a\x08\x13\xd9\x02\x0f\x1c\x55\x9e\x85\ \xf1\xcb\x53\xa1\x06\x06\xf6\x50\x52\x93\x49\x48\x86\x0b\xc2\xb1\ \x85\x2e\xa4\x28\x88\x03\x35\xe8\xaa\x0e\x37\xbe\x8e\x91\x0f\x6f\ \x86\x5b\x55\xc8\x5a\xa5\x9b\x20\xce\x0a\x22\xb4\x2c\x84\x45\x2f\ \xba\xb8\x7b\x90\xa1\x38\x2b\x00\x26\x16\x7f\x19\xac\x21\x18\x40\ \xa4\xf7\x38\x26\x09\xaa\x63\x80\x5f\xfc\x22\x1c\x38\x7b\xe6\xff\ \x52\x11\x0e\xa8\x60\xd3\x0b\xc9\x40\xe0\xd9\xbe\x30\x0f\xb7\x28\ \xea\xa9\x0f\x14\x27\x52\xb5\x76\x98\xc3\x30\x68\x6a\x8f\xf4\x63\ \x16\xb8\x12\x1f\xa6\x72\xe5\x77\x46\x5d\xa4\x3b\x7b\xf7\x98\x07\ \xba\x34\x68\x1c\x10\x45\x33\xb3\xba\x8e\x2d\xc4\x43\x23\xc4\xd8\ \x61\xac\x64\x45\x0c\xee\x85\xd5\x63\xbc\xc5\x1b\xc8\x72\x94\x11\ \x30\xac\x95\x96\x10\xf9\x45\x21\xe4\x8a\x4b\x23\xc4\x82\x97\x57\ \xcc\xeb\xfb\x7a\xb9\xa4\xbe\x7a\x31\x16\x24\xfd\x09\x05\x38\xb7\ \xd2\xf5\x1c\x76\x3d\x80\x10\xc5\x1d\xd0\x76\xad\x3b\xe8\x03\x13\ \x0a\x74\xe1\x0b\x06\x54\xaf\xf4\xf2\xb1\xb4\x8d\x01\x6a\xd7\xbc\ \x66\xc2\x74\x85\x53\x19\xc6\x40\xaa\x7b\x2d\xb8\xd4\xa5\x66\x76\ \x6a\xfe\x67\x99\x07\x07\x5c\x8a\x05\x63\x04\x01\x23\xc9\x58\x87\ \x56\x69\x9b\x11\x8d\x10\x4e\x70\xbb\xf5\xd8\x58\x61\x35\xd6\xb3\ \x3a\xf4\xb6\x80\xf3\xde\xe0\x08\xe7\xd0\xb8\x2a\x77\x7d\x29\xe8\ \xe8\x91\x80\x19\x2c\x3f\x0c\xf3\x1e\x24\x7d\xd2\x76\xd7\xb3\x0f\ \x30\x74\x97\x0b\xa9\x48\x06\xb5\xbe\x94\x04\xc7\x22\x50\x1f\x43\ \x43\xe1\x7a\xd9\x59\xda\xba\xe0\xc5\x0a\x40\x0d\xa4\xd7\x1a\x93\ \xae\x3d\xea\xf7\xbe\xf8\x5d\xe4\x9a\x98\xaa\x64\x11\xba\xe5\x51\ \xef\x9a\xea\x7a\xee\xe9\x05\xae\x6a\x92\xca\x19\x81\x48\xc7\x76\ \xb1\x05\x88\x96\xb5\x62\xe3\xe3\xe1\x97\x0d\xb7\x85\xf1\x4d\x64\ \x17\x33\xea\xe4\x41\x39\xdc\xe1\x29\x3e\xce\x38\x1c\x75\x1c\x4a\ \x64\xf0\x0b\x2d\x51\xce\x0f\x36\x51\x42\x77\xb9\x8b\xd8\x7d\x98\ \x46\x5a\x5f\x62\xe6\xe9\xf4\xe1\x05\x69\xfc\x67\x5f\x19\x54\xcc\ \x7b\xb8\x82\x07\x1f\x57\xad\x83\xba\xbb\xdd\x83\x00\x83\x17\x7d\ \xd9\x97\x2b\xc6\xf0\x80\x31\x5a\x60\x64\x36\xad\x09\x2b\x8b\x74\ \x57\xa1\x38\xe0\x81\xff\x81\x21\x08\xa3\xf8\x42\x17\xd8\xd1\x85\ \x2d\xb0\xfa\xca\xf1\x60\x35\xf9\xc8\x5a\xd6\xdc\xc6\xfa\xcb\x10\ \xfe\xce\xf2\x42\x3c\x23\xac\x24\x4a\x8f\x21\x6a\x5e\xf3\xfa\xde\ \x31\x84\x33\x6c\xf4\xae\x22\x4e\x59\x1b\x0c\xd0\xc5\x40\x94\xe3\ \x28\x7d\x45\x2c\xb4\x3d\x07\x88\x54\xec\xec\x4b\x4f\xf1\x42\x1c\ \xf5\x01\x35\x2b\xd0\xc0\x83\x50\x7b\xcb\x7b\x10\x2d\x1f\x3e\x71\ \x9b\xd1\x1a\x14\xde\x9f\x20\xc4\xce\xfb\x32\x35\xd3\x99\x5e\xd3\ \x52\xe1\x4d\x83\xc2\x80\xdb\xa5\x9d\x03\x03\x07\x82\xe0\x02\x56\ \x07\x54\xa0\x03\xb5\x6d\xac\x03\x1e\xf0\x8d\x10\x97\x96\xdc\x33\ \x62\x1b\x90\x28\x13\x53\x50\xe0\xd7\xc0\x0e\x76\xb1\x77\x29\xdd\ \x24\x31\x29\x0c\x61\x48\xc1\xb0\x89\x90\xe2\x68\x77\x8e\xcf\xdc\ \xb8\xc3\xb4\x42\x07\x87\x24\xe8\x43\x18\x3e\x06\x04\x0b\xfd\x48\ \x83\xf7\x08\x46\xc9\x04\xda\x0a\xb9\x1f\x69\x2f\xac\xcd\x57\x6b\ \xfa\xd2\xd7\x7d\x8d\xe1\x6e\x25\x33\x95\xbf\x6f\xb1\xa7\x3d\x11\ \x7b\x1b\x17\x8c\x80\xb8\x41\xbc\x8d\x45\xc0\x60\xdb\x2d\x98\x4f\ \xd6\xb1\xb6\xcd\x40\x4d\xb9\x0b\xcf\x0c\x7b\x26\x29\xb8\xc7\xc3\ \xd7\x2c\x1c\x8f\xf2\x92\x25\xc7\x66\x0e\x1c\xfc\x30\xec\x36\x84\ \x81\xe3\xd1\xfe\x5c\x38\xb8\xe1\x00\x25\x24\x03\x13\x4f\x49\xfe\ \x0f\x16\x7c\x6c\x05\x93\x93\x5b\xe7\xef\xd1\x39\x7f\x7d\xbc\xe8\ \xbd\x2f\xfa\x4f\x64\x49\xf7\xee\xbe\x66\x97\xc4\xdc\xbd\xd2\x3a\ \xef\x34\xa6\x51\x68\x0c\xaa\x40\x1b\x0b\x60\x10\x46\x10\x17\x4c\ \x5c\xa5\x0f\x7d\x23\xba\xdd\xad\xc0\xc7\x87\x3e\x88\x90\x4a\xe1\ \xca\xb1\x83\xc3\xb3\x4e\xb2\x7b\xc0\x40\x8b\x5e\x87\x73\x4c\xcc\ \xe0\x2c\xb3\x73\x7c\x3b\xe1\xc8\x47\x38\x08\x68\x85\xa2\xe9\xbd\ \xd2\x3c\xc7\xf4\x9a\x94\xa1\x77\xc4\x20\x06\x4f\xf2\x92\xf4\x61\ \x04\x73\xdf\x7f\x1d\x0f\x0f\xc6\xe0\xf6\x7b\x8c\xbf\xf2\xa5\x5a\ \x05\xf7\xc6\x58\x83\xd9\xb1\xe0\xa8\x05\x6b\x84\xad\x94\xdf\x08\ \xac\x05\x8e\xf9\x8e\xd1\xa6\xcc\x55\x7f\x1e\x4c\x64\x10\x0b\xd1\ \x67\x9d\x7d\xdf\xff\xba\xe3\x86\xe0\x8e\x3c\xb3\xfe\x99\x9f\x03\ \xc4\x79\xf2\xa1\x1e\x98\xfa\xf8\xd2\x49\x5e\x43\xf3\xd5\x94\x7b\ \x2b\xd4\x05\x4f\xe6\xfe\x20\xa4\xb4\x85\x56\x08\x83\x7d\xf9\xd4\ \x7f\xf8\x98\x30\xfc\xcb\xca\x09\xc3\xca\xdd\xdd\xa5\x59\x05\xe3\ \x71\x1c\x16\x8c\x00\x07\x10\x1d\xf5\x69\x84\xd2\x01\xdc\x12\x8c\ \x19\x70\x39\x91\x41\x19\x94\x40\x94\xc3\xf7\x9d\xc1\x07\xfe\x90\ \x41\xd5\xc9\x00\xd6\x91\x5f\xf9\x11\xc7\xe9\xa1\x5e\x4c\x24\x03\ \xfb\xb5\xdf\xff\x44\x93\x3e\x24\x43\xb7\x58\x45\xb7\xac\x09\x16\ \xb0\x49\x55\xe0\x9f\x0f\x36\x1f\x20\xe8\x5e\xb7\x69\x85\xee\x41\ \x4a\x61\xe4\x85\x15\xe8\x9c\x56\x1c\xde\xde\x1d\xdf\xdc\xf9\x94\ \x84\x18\x83\xbe\xd8\xd3\x99\xd8\xdb\x99\x44\x99\xb7\x38\x9e\x30\ \x8c\xc0\x70\x49\xde\x6d\x14\x1c\xd3\x6d\x60\xac\x65\xcc\x3a\x08\ \xc4\x2e\x98\x48\x4c\x0c\xc1\x40\x98\x08\x19\x84\x9e\x0a\xaa\x8f\ \x11\x38\x0f\xfa\xc1\xd9\xfa\xc9\x20\xc7\x45\xd3\x63\xcd\x5f\x7b\ \xe0\x1f\x0f\xe2\x1f\x04\xf6\x60\xce\xe5\xde\x9a\x1c\x5f\xd5\xe0\ \xc9\xa5\x35\xa1\x32\x60\x9a\xc9\x11\x22\x03\x1a\x43\x02\xae\x1c\ \x15\x46\xdb\x15\xee\xe0\x0b\x08\x83\x3d\xdd\x06\xe4\x09\x03\xe5\ \xdd\x48\xe5\x69\xc4\x16\x60\xd9\x8e\x20\x18\xa9\x90\xc1\x11\xcd\ \x84\x29\xb4\xc1\x19\xb4\x41\x0a\xbe\xa1\xe8\x19\xc1\x3b\xcc\x21\ \x9c\x25\x01\x94\xd9\x21\x62\x71\xc1\xea\x3c\xcb\x54\xdc\x60\x16\ \x26\xd9\x54\xf8\x61\x0f\xc2\x1b\xa7\x89\xcb\x20\xb2\xdc\xe1\xb9\ \x87\xf1\x85\xcb\x9a\x04\x21\x20\x1c\x5e\x92\x99\x89\xfe\xbd\x21\ \x56\x16\xfa\xa1\x31\xd0\x47\x80\xa1\xc9\xd0\xb1\x18\x8b\xe5\x86\ \x06\x8e\x99\x99\x25\x0c\x19\x20\x44\xb0\x34\xc1\x2a\xb2\x62\x2b\ \x36\x81\x0b\xce\x84\x19\xb8\xc0\x33\xd2\x62\x94\x01\xc2\x61\x55\ \x05\x9a\x40\xa0\x2f\xa6\xc9\x54\x28\x83\x30\x26\x19\xd0\x2d\x0d\ \x03\xf2\xe0\x0e\xf6\x62\x7b\xb4\x07\x7b\xc8\x20\x16\xb4\x80\x15\ \x7c\x85\x35\x7d\x81\x31\x74\x4e\xd2\x85\xd2\x56\x91\xca\x88\x8c\ \x88\x35\x91\x01\xa6\xd0\x44\xb0\xbc\x03\x39\x92\xa3\x11\x7c\xd8\ \x39\xc6\x44\x14\x08\x03\x3b\x4e\x93\x30\xe0\xe2\x3f\xfe\xe3\x3c\ \xf6\x22\x3e\xda\xd3\x0f\xfa\x21\xa6\x8d\x24\x9a\xbc\x54\x94\xd1\ \x62\x2f\xb2\x41\x14\xec\xc1\xb0\xed\x81\x34\x64\x21\xbe\x25\x43\ \x10\x6c\x41\x38\x74\x01\x0c\xd4\xd0\x08\xa6\x9f\xe7\x9d\x01\xb2\ \x5c\x24\x46\xb6\xcf\x46\xd2\xc4\x17\x60\x41\x0c\xb2\xde\x45\x10\ \x4d\x3c\x46\x20\x40\x42\xe3\x54\x66\x61\x15\x5a\xe5\x47\xb6\x9f\ \x07\x64\x81\x65\x9c\xc1\x65\xec\x01\x1b\x8c\x1a\x7b\x48\x0a\x0d\ \x45\x01\x3b\x4c\xe4\x47\x05\x4b\x0a\xb8\xa1\x51\xca\x15\x15\x25\ \xe5\x4b\xc0\x40\x80\x5d\xa1\x1d\x5a\x44\x53\x66\xfe\xa5\x1d\xae\ \x23\x5e\xbe\x94\x30\x1c\x4d\x46\x9d\xc1\x1e\x24\xc1\x3c\x24\xe4\ \xbd\xb9\xc3\x4f\x7e\x00\x3b\x7c\xc0\xb0\x05\x25\x4a\x28\x5c\x89\ \xa0\xe1\x4c\x0c\x81\xf8\xb1\x65\x5b\xba\xa5\x0c\xc0\x25\x2f\xcd\ \xa5\x33\xee\x25\x67\x76\x66\x5e\x3e\xd3\x0e\x4a\xc3\x0e\xc0\xc0\ \x1e\x44\x01\xdb\xc0\xc0\x4f\x72\xc0\x0c\x7e\x01\xdb\xb0\x43\x10\ \xb8\x43\x3e\xe9\x1a\x4c\x94\x62\x63\x96\x48\x64\x0e\xc1\x38\x56\ \x26\x46\xa2\x22\x5c\xca\xe5\x54\x20\xd0\xe3\xdd\x86\x5e\x7a\x26\ \x71\x36\x5e\x04\x46\x25\x5d\x4e\x85\x07\x70\x40\x12\xec\x5a\x14\ \x48\x16\x88\xa0\x84\x17\xd8\x9b\x30\xb0\x43\x88\xb8\x83\x26\x99\ \x43\x17\x38\x8f\x0b\xe2\xa6\x6e\xea\x26\xfb\xf0\x66\x52\xce\x83\ \xb7\x04\xa7\xa3\x4c\x12\x5d\x16\xa7\x7a\xba\x24\xe3\x01\xa4\x15\ \x5a\x41\x10\x24\xc1\x1e\xf0\x12\x69\x26\x41\x7d\xcc\x91\x47\x76\ \x8e\x30\x00\x65\x1b\x20\xe6\x07\xb8\x83\x2e\x90\x08\x63\x2a\x89\ \x45\x7e\x27\x78\x36\x17\x5c\x9a\x01\x07\x88\xe4\xe3\x25\x90\x33\ \x46\x22\x53\xae\xe7\x47\xb2\xa4\x15\xa6\xe7\x7a\x78\xc0\x17\x74\ \x0a\x0c\x58\x52\x14\x34\xd0\x1e\xdc\x87\x34\xfe\x10\x66\xe7\xe0\ \x93\x19\xe4\x53\x62\xf6\x67\x09\x0e\xa8\x72\x0c\x41\x2c\xdc\x03\ \x65\x1a\xa8\xd6\x11\x07\x5c\xee\x01\x54\xa2\x89\x07\x80\x81\x2e\ \x0a\xa7\xe3\x19\xc3\x5d\x4a\x68\x54\xfe\x68\xe3\x49\x62\x12\x0c\ \x41\x3b\xdc\xc7\x57\x7c\x5f\x47\xea\xa5\x30\xe8\x13\x3b\xc0\x66\ \x09\x46\x64\x68\xb4\xc1\x80\x22\xd1\xb0\x8d\x1f\x8c\xc2\xe8\x70\ \xc0\xe5\x10\xf4\x83\x33\x56\xe1\x4b\x51\xe1\x17\x0e\xa7\x8f\xbe\ \xa4\x55\x1e\xe7\x4b\xb2\x9e\x30\x0c\x8c\x64\x81\x05\x5a\x9e\x81\ \x34\xe0\xcc\x15\x26\x83\x35\x6d\xd2\x26\xe5\x53\xc3\x70\x46\x27\ \x99\x60\x2a\x92\x81\x9e\x9e\xa2\x1f\xb8\xe8\x95\x62\x29\x52\x26\ \x65\x10\x80\x81\x0e\x5a\x28\x72\x9a\xe9\x98\x06\x64\x16\x32\x2a\ \x55\xb6\x9f\x31\x08\x0c\x91\x92\x66\xe3\x0c\x41\x10\xbc\x54\x16\ \x56\x93\x19\x60\xe7\x26\xf9\x41\xc3\xe8\x02\x80\xba\x83\xa8\x26\ \x1c\x3b\xe8\x82\x2f\x98\x88\x0c\x80\xc2\x8b\x06\x6a\xf9\xf9\x02\ \x5c\x92\xa7\x23\x2e\x1e\xa2\xba\x64\xa2\x06\x64\x71\xb6\xe7\xff\ \x34\x2a\x68\x4a\xe2\xff\x18\x43\x73\xa2\xc4\x73\xb2\xcd\x17\xcc\ \xa2\x80\x25\xc3\x07\x50\xca\x6b\x72\x12\xfe\x19\x24\x4c\x93\xf2\ \x82\xa7\x2e\x66\x7f\x9e\x62\x6e\xb2\xaa\x81\xde\x83\x8a\x06\x4b\ \x14\x2c\x5e\xac\xc2\xa3\x24\x96\x64\x3f\xae\xe3\xac\x4a\x20\x16\ \x4a\x28\x17\x70\x40\xe3\x98\xc1\x17\xd8\x54\x53\x56\x55\x26\x25\ \x41\x62\x2e\x4c\x7f\x2e\x2b\x2f\xbc\xcc\x4b\x0c\x01\x19\x4c\x2b\ \xb5\x56\xeb\xb5\x2a\x09\x8d\xb2\x07\x8e\xca\xaa\x97\xb6\x24\x85\ \x06\x69\x5e\x5a\x61\x4b\xae\x27\x18\x78\xc1\x4b\x98\xc1\x1f\x70\ \x9c\x07\x54\x86\x4e\xc2\x26\x27\x25\xa6\x89\x1c\x45\x3e\x91\x81\ \x94\x0e\x41\x81\xe6\x2b\xb5\xba\xe2\xbe\x2a\x07\x0c\x70\x69\x94\ \x75\xe9\x48\xb2\x24\xaf\xb2\x9e\x97\x72\xab\xae\xae\xa7\x30\x44\ \xc1\x4b\x04\xc1\x70\x62\x41\x32\x60\x93\xa8\xba\xeb\x26\xf1\x41\ \x3e\x85\x46\x4d\xe4\xd3\x07\xb4\xe8\xaa\x72\xac\x0a\x66\x69\xfa\ \xed\xc0\x08\xdc\x88\x80\x29\x27\x4a\x96\x6c\xb8\x9e\x2c\x99\x5e\ \x65\xc0\x8a\xa9\x67\x06\x41\x03\xa9\x66\xe3\xcd\xac\x6b\x76\xc1\ \x79\x24\x03\x6c\x9a\x01\xc6\xd6\xab\x29\xc4\xc2\xcf\x02\xed\x1b\ \xde\x83\x8c\x2a\xc9\x10\xa0\x42\x2e\xb4\x08\x00\x04\xe7\x54\x90\ \xac\xc9\xa2\x6c\xae\x3a\x2d\x85\x72\xfe\xeb\xa2\x62\x41\x17\x44\ \xc1\x74\x46\x1b\x18\x24\xc3\x94\x4d\x99\xb6\xf4\xe4\x07\xb4\x81\ \x19\x48\x29\x4a\x90\xc1\x3b\x84\xad\xd8\x06\xed\xa0\x2e\x07\x69\ \x76\xc0\x31\x64\xa3\xa9\x1d\x9d\x26\xc2\xe3\xd2\x52\xe5\xd1\x2a\ \x6d\x99\xe2\xea\xa2\x72\xd7\x2c\x42\xa3\x30\xbc\xe6\x6b\x7a\x81\ \x40\x85\xc3\x26\x25\x26\x50\x22\x6e\xe2\xbe\xa1\x2b\x32\x47\x14\ \x6c\x41\xd1\x11\x9d\xd2\xe5\x02\x2f\x1c\x5d\x98\x56\x6e\xe3\x3d\ \x20\xe6\xfe\x63\xd3\x6e\x6e\x5d\x52\x52\x32\x70\x00\x56\x39\x93\ \x69\x74\xc1\x2e\xb0\x43\x0a\x88\x63\xea\x26\x2f\x73\xcd\x04\x0c\ \xec\xc0\x31\xdc\x48\x6e\x1c\x03\x31\xec\xc0\x28\x64\x63\x4b\xb9\ \x27\xd4\x62\xa1\x23\x66\xae\xdc\x52\xae\xc1\xf2\x6e\xfb\x81\x81\ \x3b\x6c\x08\xd0\x00\x8d\x45\x2c\xd6\xbb\xe2\x6b\xf2\xe6\xab\xf9\ \xd1\x04\x2a\x8c\x02\x31\x14\xad\xe7\x10\xc3\x27\x98\xc3\x28\x8c\ \xc8\x10\x3d\x93\xce\xe9\x2e\x68\xfe\x61\x72\xe6\x6a\xa2\xea\xae\ \xed\xf2\x2e\x16\x18\xe6\x10\x1c\xa6\x7f\x9e\xe8\x19\x34\x41\x14\ \xad\xaf\xf2\x0e\x6a\xf3\x6e\x41\x07\xc8\x0a\x36\x2e\xc1\x27\x2c\ \x84\xec\x06\x54\x8b\x51\xe1\x0e\xfe\xea\x22\x55\x1c\xaa\x99\x2a\ \x2d\x2f\x2a\x2d\xf8\x9a\x1d\x18\xfc\xea\x92\xa0\x84\x95\x3a\xb0\ \x03\x7b\xec\x1e\x6c\x81\xf4\x4e\x70\xfc\xea\x06\xf9\x6c\xd9\x28\ \xc0\x4d\xd1\xde\x08\x7b\x96\x89\xac\x7a\x80\xb8\x2c\xa3\xa2\xb6\ \x87\x0e\xfa\x70\xac\xda\x5d\x12\x02\xec\x00\x2f\xea\x7e\x2e\xc7\ \xbd\xa2\x2e\x0b\x1b\xa5\x11\xb0\x43\x10\x8d\xc0\x6e\x75\xc0\x0c\ \x5b\xde\x04\xd7\xf0\x27\x7e\x61\x77\xb5\xad\x07\x87\x0b\xa2\x0e\ \xd8\xec\x01\x9d\xa1\x96\x49\x02\x39\x22\x02\xe1\x6e\xc0\x96\x30\ \xa9\x75\xc1\x72\xf8\x81\x13\x3f\x31\x14\x1b\xc1\x69\x6c\xe0\x6e\ \x90\xcf\x27\x8c\x48\x0d\x8b\x81\x39\x1c\x5d\x10\x19\x27\xe5\x52\ \xe5\xe4\x7e\xeb\x6f\x22\x50\xb7\x18\x2a\xc9\xda\x6a\xf6\xfa\xa8\ \x2d\x36\x8e\x4c\xdc\x83\xfa\xca\x71\xe2\x0a\x47\x3c\x58\x31\x15\ \x7b\x4c\x2c\x65\x72\xf9\x68\xd9\x17\x7a\x55\xfb\x5d\x6e\x07\x0b\ \x03\x12\x37\x6a\x20\x43\xed\x22\xaf\x67\x01\x8b\x18\x93\x44\xb2\ \x24\xa7\xae\x11\xb0\x46\x10\x2d\x41\x26\x67\xf2\x2c\x99\x83\x42\ \xd8\xc6\x17\xb2\x98\x40\x16\x8d\x28\xeb\x28\xad\xe2\xe5\x29\x17\ \xa7\x0b\x38\xf2\x4b\x6c\x6c\xfe\x2b\x4b\xb2\x70\x34\x83\x6d\xec\ \x42\x3b\x1c\x51\x2c\x8d\x0f\x31\x98\x43\xdd\x0c\x91\x5d\x76\xae\ \x24\x16\x4d\xac\xde\x20\x1b\x4b\x28\x18\xb0\x43\x4c\xb4\xc1\xe1\ \x1e\xb3\x38\x1b\x41\x21\xc8\xca\x19\xb6\x83\x2c\x0d\x11\x18\xec\ \xc2\x21\x6c\x41\x36\xbe\xb3\xd1\xe6\xd9\x07\x2f\x23\x8e\x46\xe8\ \x36\xfb\xa8\xd4\xc2\x44\x0a\x88\x33\x3f\x07\x47\x33\xac\x0a\x2f\ \xc8\x0a\x06\x0e\x94\x99\x2d\x41\x27\x5f\xe3\x20\x7f\x70\x07\xe3\ \xa8\x99\xdc\xf3\xa2\x72\x41\x10\x54\x9d\x2a\xb2\x72\x3f\xaf\xaf\ \x11\x40\xf3\xb3\x70\xc1\xd1\xc5\xc3\x2d\xdf\x56\xe4\x29\x9d\x26\ \xe6\xf2\x8d\x42\x68\x12\x3b\x74\x56\x9e\x30\x4a\xb4\x41\x1c\x57\ \x34\x96\xd2\xf1\x61\x9d\x8f\x2d\x07\x54\x06\x62\xe3\x35\xd6\x6e\ \x30\x9b\xb4\x67\x72\x00\xa6\xbc\x03\x45\xb3\x74\x0b\x17\x82\x0e\ \x0f\x54\xe1\x1c\x42\x1f\x9f\x2f\xf4\x42\x2f\x18\x70\xa1\x31\x34\ \x34\x4e\x97\x30\x17\xb8\x4e\x4f\xfb\x34\x0b\xbf\x72\x06\x06\x0e\ \x13\xb9\xb3\x5d\xe2\xcc\x51\x2b\xdd\x24\x6d\x66\x53\xb3\xa7\x7a\ \x0a\x83\x01\x44\xb5\x54\xb7\xf0\x2b\xc7\x83\x2d\x1f\x82\x19\xec\ \x42\x8b\x64\x95\x0e\xb3\xfe\x94\xd2\x8d\x80\x26\x46\xe2\x57\xaf\ \xec\x27\x43\x2d\x17\xa4\x4f\x59\x4b\xb5\x70\xb4\x52\xdd\xb4\xc8\ \x26\xe6\x59\xd2\x99\xe7\xe4\x36\xb5\x80\x09\x2c\x58\x93\xf2\xd9\ \x35\xf0\x5e\xf3\x75\x18\xcc\x48\x3c\x70\xe2\x69\x34\xe5\x60\x9b\ \xc9\x66\xde\x34\x4c\x32\xad\x22\x3b\xea\x00\x63\xc1\x3e\xac\x74\ \x63\x73\xac\x11\x34\x01\x8a\x08\x14\x6e\x44\x9f\x4d\x7b\x6f\x4b\ \xe1\xa2\xad\xb2\xe3\x4d\x1f\x36\x56\xea\x25\x3c\xba\x02\x68\x87\ \x36\xfb\x1a\x81\x2e\xc8\xb4\xf5\xea\x19\x6f\xaf\xad\xa3\xf8\x72\ \x55\xe8\xa8\xa2\x7e\x32\x16\xba\x67\x90\x66\x2e\xaf\x4e\x45\x6d\ \xdb\xb6\x68\x1b\xc1\x12\xf8\x1b\x77\xbd\xf5\x5b\x7b\xce\xe3\x2d\ \xb5\xa1\x3a\x5e\x99\xf6\x68\xf4\x4d\x22\x29\x77\x37\x99\x32\x2a\ \xf7\x8e\xeb\x67\x33\x37\x79\x93\xb3\x2e\xb3\xd4\x61\x4d\x37\x53\ \x6a\x21\xdb\xb6\xad\x76\x63\x2a\xf7\xe6\x2e\x09\x63\x2f\xe5\xd2\ \x36\x79\x97\xb7\x11\xbc\x77\xe3\xe1\x1b\x07\x08\xe7\x6d\xb4\x76\ \x72\xb7\x2d\x55\x80\xc1\xfe\x0e\x22\x07\x97\x32\x82\x8f\xe4\x78\ \xdf\xf7\x7d\x1b\x81\x2b\x28\xe4\x74\x43\xb8\xd0\x6d\xa1\x65\xdb\ \x73\x72\xc7\x23\x22\xfe\x9b\x31\x70\x6a\xe2\xfe\xe6\x6e\x97\x26\ \x2a\x15\x2e\x38\x83\x37\xf8\x83\x53\x77\x84\x7b\xce\x89\x63\x22\ \x8b\xc9\xb6\x00\x0f\x38\x81\xe3\xdb\x86\x13\xb8\x7c\x2b\xa7\xdb\ \xea\xee\x72\x8f\xb8\xf2\xa2\xf8\x51\x43\x38\xd2\x71\xae\xe3\xe5\ \xb2\x6c\xfb\xb2\x35\xf2\x30\x02\x71\xc0\x24\x19\x79\x61\xff\xe3\ \x81\xb7\xed\x8d\x2a\xed\x8d\xe3\xb8\xf2\xa6\x46\x84\x73\xe2\x79\ \x53\xb7\x80\x41\x9e\x3b\xba\x9f\xf7\x96\x09\x43\x17\xb9\x91\x1b\ \xb9\x70\x7f\x70\x31\x76\x6f\x55\x60\x9a\x7d\x43\x39\x94\x3b\x38\ \x84\x57\x76\x95\x63\xf7\xbd\x9d\x46\x48\xa3\x38\x53\x92\xac\x45\ \x70\xf9\x17\x6e\xa1\x75\x53\x45\x81\xdb\xd3\x52\x63\x25\x90\x2e\ \x67\x38\x3c\x39\x9a\x5b\x34\x1a\x69\x74\xd1\x21\x5d\x7a\x73\xf1\ \xbd\x05\x41\x17\x6c\x6a\xe4\x19\xed\x6d\x44\x93\x9d\xbb\xa3\xf7\ \x5a\xa3\x23\xbe\x78\x9f\x63\x37\x76\xeb\xa8\x31\xf4\x43\x18\x08\ \xfa\xa0\x5b\xf4\xbd\xe1\xb2\x60\x57\xf9\x7a\x84\xc3\x7c\xa2\x04\ \x0c\x20\xa6\x0b\x08\x83\x61\x1d\x35\x20\xac\xd8\xf5\xb2\x67\xdb\ \x72\xf8\xe4\x5a\xb6\x31\x1c\xfa\x17\xca\x75\x3f\x24\x83\x31\x87\ \x3a\x9a\xab\xf9\xfe\xda\x22\xba\xfb\x99\x3a\x17\x78\xb3\x4c\xf4\ \x27\x3b\x88\x02\x6a\x64\xf4\xb8\x36\x2d\x4e\x36\xe8\xa5\x0f\x9d\ \x26\x16\x1d\x07\xcc\x03\x58\xf8\x02\xa8\x03\x7b\x0b\x97\x38\xf4\ \xd6\xa2\x5d\xae\x47\x37\xef\xeb\x66\x2c\xfb\x64\x73\x01\xa5\x6b\ \x61\x05\x6a\x22\x02\x71\x88\xc1\x7c\x01\x3b\xa0\x9a\x7d\xc4\x3b\ \x3b\xd0\xa4\x29\x30\x36\xb7\x03\xbb\x11\x6c\x9c\x8e\x5b\x84\x1f\ \x5b\xe7\x5e\xfd\xa4\x1f\x70\x92\xa8\x36\xa9\xa5\x5c\xc6\x65\xb0\ \xc3\x4c\xb6\xe9\x15\x0d\x1b\x4b\xa8\x62\xbe\x47\xfc\x3f\x90\x73\ \x2d\x76\xf2\xbe\x05\x51\x3c\x7c\x2c\xc5\x61\xe6\x19\xf0\xb4\xc4\ \x7f\xbc\x11\x14\x7b\x46\x70\xa1\x40\xb9\x00\xc7\x27\xa5\x77\x7e\ \x3c\xc8\xaf\x94\x45\x8c\xc0\xa1\x13\x9d\x45\xb8\xf1\xc9\xbb\x20\ \x28\x90\xb5\xca\x33\x78\xc8\x8f\x6c\x2e\x2b\x9d\x46\x33\xfc\xcc\ \x2b\x49\x1b\x80\xed\xcd\xdf\xbc\x70\xbc\x54\x2e\x67\xf4\x2e\x68\ \xfc\xcf\xc7\x99\xcd\x0f\xfd\x88\x0b\x3b\x53\x26\x9d\xb8\x13\xf3\ \xd2\xaf\xa8\x4a\x3b\x3d\xd6\xef\xfb\x4b\x05\xb5\xcc\x57\x3d\x73\ \x34\x3d\xd6\xe3\x78\xd1\xd3\x2a\x18\x50\xbd\xd7\xc7\x04\xd8\x87\ \x7d\x9a\x23\xc9\x56\x38\x9c\xbd\x72\x84\xb3\xda\xab\xbd\xd6\xdf\ \x1b\xc0\xbb\xfd\x4b\x40\x47\xdc\xe7\xfd\xc4\xaf\x94\x0b\xf8\xbc\ \xd7\xc3\xb1\xde\xeb\x7d\xce\x03\x80\xc2\xda\x7d\x2a\x82\x42\xe0\ \x07\xbe\x9a\x97\xbd\xe1\x43\x7c\xe2\x2b\xbe\x2b\x88\x82\xdd\x6b\ \xec\xb6\x3f\xfe\x5e\xe3\x8a\xdd\xa7\xbd\xe5\x73\xbb\x70\x9c\xbd\ \x1d\x68\xfe\xe6\xe7\xfb\x3d\x88\xe7\xc9\xaf\x70\xe8\x5b\xfe\xf2\ \x9e\xbc\x0c\xc0\xfd\xe9\x6f\xbe\xd0\xa2\x3c\xe0\xb7\x7e\xeb\x1b\ \xc1\x65\x6e\x64\xca\xcb\xfe\xec\x0b\xdb\x46\x82\x3e\xee\xab\xfc\ \xea\xc2\x99\xc6\xf6\xbe\xf0\x4f\xfc\x49\x38\x4e\x13\x0c\xbf\xf0\ \xb7\x2f\xb0\x5c\x5d\xe5\x23\xff\xd3\x2f\xee\x4c\x4c\xa6\xf3\x23\ \x3f\xed\x7f\xfd\xf4\x4f\xbf\x11\x90\xfe\xf3\xc4\xfe\xf5\x53\x3f\ \x5d\xa1\x7d\xf7\x77\x7f\xea\xa7\x22\xeb\x87\xbf\xf3\x67\xa9\xe9\ \x9b\xff\xf5\xb3\x4f\xf3\xab\xbf\xfb\x6f\x7e\x40\x00\x00\x21\xf9\ \x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\ \x04\x02\x14\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xd9\x88\x8d\x94\x4a\x34\xff\xff\xff\xd0\x4a\x34\xff\xff\ \xff\x5e\xc9\xf7\xff\xff\xff\xff\xff\xff\xdc\x8a\xb4\x5e\x89\x41\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xce\x46\x91\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x54\x6b\x22\x57\xa8\xe4\x13\x28\xaa\xff\xff\xff\xd7\xc8\xe1\ \x99\xa7\x69\xff\xff\xff\x09\x68\x9a\x10\x27\x67\xff\xff\xff\xff\ \xff\xff\xf6\x88\xb7\xff\xff\xff\xf7\xa8\xb8\x90\x6b\xb0\xc4\xe4\ \x94\x12\x2a\xe0\xff\xff\xff\xfa\xc8\xe5\x50\x69\x5d\xfa\xee\xc0\ \xff\xff\xff\xba\x88\xb6\x28\x46\xeb\x4e\x68\xf8\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x7c\xa2\x68\x98\xc8\xfb\xff\xff\xff\xff\xff\xff\x7b\x87\xaf\ \xff\xff\xff\xf7\xb3\xf1\xff\xff\xff\xff\xff\xff\xd8\x89\xf1\xff\ \xff\xff\xb2\xa8\x75\xb9\xa9\xf3\x35\x8a\xc7\xfa\x8a\x5c\xff\xff\ \xff\xff\xff\xff\xf9\xe8\xf1\xf5\x49\x47\xff\xff\xff\xb7\xc8\xf2\ \x6a\x69\x21\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x38\x56\xf6\xff\xff\xff\x11\x38\x65\xff\xff\ \xff\x0b\x18\x1c\xff\xff\xff\xff\xff\xff\x28\x2a\xdf\x5b\xb7\xeb\ \xd6\xd8\xec\x9a\x88\xf5\x73\x88\xf8\xff\xff\xff\xfa\xd8\xec\xff\ \xff\xff\xff\xff\xff\x07\x15\xdc\x7b\xe9\xf9\x95\xa8\xf8\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xdb\xa7\xf7\xff\xff\xff\xba\x8f\xf4\ \xff\xff\xff\xd1\x49\x77\xff\xff\xff\xb3\x68\xeb\xfb\xd0\xa5\xb8\ \xd8\xfb\xf5\x99\xb5\xff\xff\xff\x37\x4a\xe9\xff\xff\xff\xfb\xfd\ \xfa\xff\xff\xff\x73\x69\x6e\x96\x98\x54\xfb\xb8\xbd\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\xf2\xfc\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x71\x57\xee\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x94\ \x68\xfa\xf7\x04\x05\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x79\xcb\xf9\xff\xff\xff\x76\xa9\xf7\xb9\xf3\xfc\xff\xff\xff\ \xff\xff\xff\xf9\xa6\x88\xff\xff\xff\xd9\xf5\xfb\xff\xff\xff\xff\ \xff\xff\x35\x4c\x19\x59\x92\xeb\x91\x6d\x73\xff\xff\xff\x51\x59\ \x18\xff\xff\xff\xf7\x91\x8c\xff\xff\xff\xf3\x79\xb5\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb8\xb8\x7d\xff\xff\xff\xff\xff\xff\xd9\ \xd9\xa6\xff\xff\xff\xff\xff\xff\x97\x55\x36\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x19\x36\xa7\xff\xff\xff\x12\x77\xa7\ \x8e\x7a\xa3\x19\x37\xe1\xff\xff\xff\x56\x79\x64\x58\x75\xfa\xff\ \xff\xff\xff\xff\xff\x9a\xd8\xfc\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x69\x7b\xf4\xff\xff\xff\xff\xff\xff\ \xb1\x58\x35\xb4\x57\xaf\x4c\x3a\x1c\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x37\x58\x93\xff\xff\xff\x7f\xfa\xfc\xff\xff\ \xff\xff\xff\xff\xb9\xb8\xb9\xff\xff\xff\x7d\x98\xb0\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x6e\x77\x27\xff\xff\xff\x7e\x97\xfa\xff\ \xff\xff\xb1\x78\xfa\x76\x18\x21\xff\xff\xff\xff\xff\xff\x91\x5b\ \xf9\x92\x79\xf5\xff\xff\xff\x79\xb8\xf9\x42\xb6\xee\xd4\x3b\x7c\ \xff\xff\xff\xfc\xb8\x8a\xde\x97\x95\xdf\x98\xb1\xff\xff\xff\xff\ \xff\xff\x84\x7a\x3e\xff\xff\xff\xda\x98\xf4\xb6\xb9\xf1\xff\xff\ \xff\xff\xff\xff\x98\xb9\xf9\xff\xff\xff\xd9\xb8\xf7\xff\x00\x00\ \x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\ \xb0\xa1\xc3\x87\x96\x2c\x3d\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\ \xdc\xc8\x91\xa2\xa5\x73\x07\x3a\x8a\x1c\x49\xb2\xa4\xc9\x93\x28\ \x2d\x1d\x10\x91\xe5\x9c\x44\x94\x30\x63\xca\x9c\x49\xd3\xa2\x4a\ \x11\x2c\x5b\xd6\xdc\xc9\xb3\xa7\x4f\x91\x2a\x7f\xfd\xca\xd9\xf2\ \xe5\xcf\xa3\x48\x93\x1e\x55\x89\x04\x09\xce\x2c\x59\x58\x4a\x33\ \xaa\xb4\xaa\xd5\xab\x1d\x55\x72\x70\x37\xb4\x57\x54\x9c\xbf\x42\ \x62\x1d\x4b\xb6\xec\x42\xa6\xee\x90\x0c\xfd\x2a\x14\xa7\x4b\xb3\ \x70\xe3\x62\xb5\x24\x0d\x89\x3b\xae\x2c\x45\x08\x55\x9b\xf3\x9c\ \xdc\xbf\x80\x7b\xa2\xe5\xd0\x55\x6f\xd3\xb5\x39\x0f\x50\x0d\xcc\ \xb8\x71\xd6\x03\x76\x09\xe7\xfd\x75\x78\x68\x4e\x9c\x62\x1d\x6b\ \xde\x5c\x51\xe5\xdd\xa6\x93\x9b\xaa\xfd\x05\xb5\x34\xe5\xcc\x9c\ \x53\xab\x36\xe8\xd9\x9d\xe4\x5e\x22\xec\x7e\x5e\x0b\x15\xec\xd0\ \xa9\xab\x73\xab\x46\x9b\xd6\xf2\x2f\xd7\x5b\x69\x9b\xa6\x3c\x14\ \xb5\xee\xe3\x80\x99\x2e\x58\x90\x16\x67\x6c\x77\x5f\x5c\x23\xae\ \x4d\x79\x34\x12\x5c\x8b\x91\x6b\x1f\xcb\x9b\x79\xde\xe7\x5f\xbe\ \xfe\xf0\xcd\x1b\xb5\x7a\x53\xd7\xd1\xb6\xab\xe7\x8e\x8b\x83\xdd\ \xe8\x88\x29\x43\x6f\xfe\xd5\xb6\x7c\xe0\x48\x14\xaf\xdf\x8f\xd4\ \x12\xaa\x63\xcb\xb9\xe6\x54\x6d\x48\x84\xf7\x05\x07\xdf\xe9\x25\ \xd4\x5e\xee\xb4\xb3\x49\x27\xa7\x5c\x97\x1d\x7f\x14\xc2\x64\x09\ \x34\x3c\xa0\xb1\xc9\x81\x03\xe2\x84\x04\x07\xe1\x21\xc8\xd6\x82\ \xe6\xb9\xb3\xc9\x26\x84\x35\x65\x5c\x85\x2c\x96\xa4\xd5\x26\x0b\ \x70\x48\x9a\x87\xee\xb9\x97\x53\x75\x43\x09\x95\x96\x3b\x0b\xb4\ \x43\x58\x5b\x22\xbc\xd5\xe2\x90\x40\x1d\xe0\x5a\x8f\x11\xf2\xf5\ \x8b\x7b\x87\xdd\x78\x97\x6f\x76\xf5\x18\xa2\x53\x0a\xe6\x47\xe4\ \x95\x1a\xf9\xb7\xd5\x17\x31\xba\x97\xa3\x79\xb4\xc5\x26\x1e\x4b\ \xf2\x49\xd9\x4e\x74\x4d\x71\xc0\x64\x7e\x13\x62\xe9\x66\x42\x96\ \xe0\x62\xe0\x89\x0b\xfc\xa8\x97\x73\xce\x7d\x05\x9a\x5e\xd0\x2d\ \x70\x62\x78\xed\xc4\x88\xa6\x68\x48\x48\xf3\xe6\xa1\x67\x1d\x10\ \xe8\x72\x3d\x72\xb5\x97\x70\x4f\x7d\xa5\x67\x8f\x52\x86\x77\xe2\ \x86\xa3\x19\x16\x16\xa2\x9c\x16\x14\x67\x78\x82\xc2\xb7\x57\x88\ \x61\x12\x15\xd5\x7b\x80\x5a\x7a\xcc\x20\x9b\x8c\x17\xdb\x61\xfe\ \xb8\x75\x8a\x68\x6b\x06\x86\x37\xda\x5d\xc7\xa0\x21\x59\x69\x91\ \x1a\xe6\x1a\x74\x97\xa2\x31\xc8\x31\x63\x7a\x58\xd9\x2f\xb8\xc8\ \x7a\x28\x5a\x06\xce\xa7\x96\x5d\x74\xaa\x55\x1b\x9e\x7b\x89\x66\ \xe2\xa5\xc3\xa2\xf8\xe5\xb1\x1f\x46\xd3\xa6\xb2\xfb\xc5\x79\x57\ \x8c\xe4\xde\x65\xee\x26\x1a\x52\x59\x9e\x65\xcf\xf5\x86\xc4\x72\ \x27\xae\x3a\x88\x78\x24\xb6\x45\x59\x88\xc9\x82\xdb\xa2\x25\xd1\ \x44\x17\x1e\x8f\xd1\x6d\x05\xec\x89\xbb\xea\xe5\xa5\x5e\x5c\xc2\ \x17\xd9\xb5\x1a\xd2\xcb\x6e\x16\x94\x2d\x40\x6c\x84\x2b\xea\xab\ \x1e\x2a\x3c\x06\x88\xe6\x5d\x5c\x5e\x3a\xa6\x9e\xa2\xfd\xf2\xc5\ \x31\xc4\x8a\xfa\x1e\xc1\xa3\x85\x69\x62\xc3\xa2\x79\x6b\xf1\x7a\ \xca\x8d\xfb\xd9\x7b\x1a\x0a\x4a\xa5\x73\x25\x6e\x92\x2d\xa6\xe7\ \x9d\xe8\x68\xa6\xa7\x4a\x8c\xe2\x68\xa7\x70\x90\xde\xcb\xda\xa1\ \xc5\xe8\x93\xe7\x69\xf8\x67\x87\x86\x9d\x07\x1d\xc9\xe8\x12\x2b\ \x9b\xcf\x0b\xee\x19\x15\x07\x5d\x66\xdd\x20\x0f\x2e\x23\x9d\x9b\ \x7f\xe6\x2e\xcd\xd5\x5d\x35\x27\x7c\xb3\x9a\xe7\x81\xe8\x27\x8c\ \x3c\x68\x5b\x60\x9d\x3f\x86\x0c\x96\x80\xd5\x71\xe0\xe0\xfe\x26\ \xab\x1a\x20\xf6\x6a\xfe\xd1\x89\xc6\xd2\x4d\x37\x4c\xaa\x87\xff\ \x46\xf6\xc5\xde\x06\x9e\x77\xe0\x56\x1f\x12\x3a\xd4\x87\x29\x72\ \xcd\x37\x1a\x24\x7b\x02\xf6\xb7\x7f\xc7\xe5\xdf\x72\x68\x84\x1e\ \xa0\xb9\xa1\xf3\x60\xa9\x64\xe0\x71\x08\x5d\xc7\x28\xaa\xa9\x26\ \x97\xaf\x8b\x17\x32\x83\x4c\x7e\xa1\xb3\x27\xab\x7a\x32\x48\x3b\ \x85\x72\xde\x39\x59\x17\xd2\xb9\xc0\xe0\xcc\x9d\xb7\x40\x36\x0d\ \x63\x9a\x23\x74\x6b\x42\xc7\x38\x12\x45\x7b\x0c\xe2\x17\xa7\x90\ \xe8\xab\xec\x05\xea\x4c\x32\x1a\xb8\x73\xe0\x55\xc5\xbf\x97\xe5\ \xdf\x20\x83\x88\xce\x9c\xb9\xee\xa0\x81\xfc\xe0\x30\x5a\xc7\x3c\ \x83\xb6\xdb\xee\x63\x53\x23\xb7\x4e\x79\xca\x86\xd9\xea\xf8\xa5\ \x3a\xd7\xf1\x85\x08\x1d\x88\x0d\x76\xc2\xe7\x39\x54\xa0\xab\x7c\ \xe7\x2b\x9b\xfa\x90\x47\x27\x2f\xbd\x27\x2d\x8e\xb3\x1d\xca\x3e\ \xa4\xb3\x56\x15\x8d\x6d\x21\x7b\x9d\x7b\xfa\xc4\xbf\x6c\x21\xa1\ \x03\x23\x58\xd2\x29\xf2\x45\x40\xe0\xc5\xe1\x44\xa1\xdb\x04\xfa\ \x40\x97\x8d\xf5\x05\xc8\x5a\xf8\xb9\xcb\x9f\xfe\xe4\x3a\xbe\x1d\ \xa3\x75\x71\x5b\x53\x9a\x7c\x04\x22\xbe\xc1\xc8\x41\xfe\xab\x3a\ \x06\x82\x46\xd0\x8b\xbc\x85\xad\x84\x56\x09\x1c\x8c\x7c\x26\xb5\ \xe1\x85\xae\x66\xa3\x83\xe0\xaf\xec\x82\xb9\xb7\xf1\x50\x6f\x24\ \xa3\x1a\x0f\x8e\xc1\x83\xea\xdd\xcf\x75\x1c\x08\x62\x8c\x0e\x68\ \xb5\x5e\xc0\xe6\x55\x1c\xe8\xc4\xd1\x90\xa8\x14\x4b\xb8\x42\x73\ \x04\x93\xe2\xf0\x86\xc7\xb7\xd1\x75\xa9\x6d\x6a\xf2\x53\x15\x6d\ \xa5\x26\x07\xb5\x63\x8b\x3c\x08\xa4\xd5\x62\xa3\xa6\x0b\x72\xc0\ \x86\x1b\x6a\xc7\x31\x70\xb7\x00\x57\xc5\xa6\x68\x9d\xf8\x42\x1c\ \xd8\x98\x14\x4b\x18\x80\x09\xa3\x60\xd5\x86\xb6\x02\x3a\xf6\xd1\ \xb0\x59\xd6\x5a\x9c\xed\x72\xb5\x89\x33\x3d\x6e\x71\x69\x74\x50\ \x97\xdc\x73\x0d\x11\x9c\xc2\x47\xa7\x28\xda\xde\xa4\xb4\x09\xdd\ \xd1\xcb\x3a\x94\xeb\x04\x07\x8a\xa6\x1f\x4a\x0a\xe6\x92\xa3\x18\ \x05\x17\x73\x95\xab\x41\xac\x8f\x94\x67\x32\x65\xf3\x2e\xb5\xc5\ \x1b\x2e\x6e\x43\x12\xd4\x65\x32\x5d\xa7\x96\x6b\x20\xa1\x1d\xed\ \xd0\xa5\xde\x2e\x75\xa6\xdb\x8d\x49\x36\x1f\x3a\x45\x27\xce\x14\ \xcb\x5d\x92\xd0\x97\x34\xb1\x44\x1c\x82\x39\x0a\xdc\x6d\x51\x77\ \xe4\x8b\xe7\xb0\x6e\x08\xc8\x35\xd9\x0e\x73\x9b\xfe\xd8\x62\xeb\ \xde\x16\x37\x5d\x76\x62\x93\x84\x8a\x90\xde\xda\x21\x4b\x1f\xda\ \x90\x64\x5f\x98\x5c\x97\x2e\x88\xcd\x35\xc5\x72\x80\xe8\x94\xc9\ \x85\xc0\xc0\xce\x51\xd4\x61\x91\xb8\xcb\x22\x46\x75\xe7\x09\x4f\ \xd4\x81\x1f\x3f\xb8\xc6\x92\xb2\xc8\x3f\x1f\x49\x90\x07\x3c\xfc\ \xe7\xd0\x44\x53\xa3\x4e\xe8\xf2\x14\xcf\xc4\x1c\xe6\x3c\x18\x1b\ \x9f\x09\x54\x6f\x36\xba\x06\x43\xd7\x18\xd1\x93\xa8\x33\x1f\x4f\ \x00\x83\x1e\xf4\xd0\xce\x8b\x22\x94\x6f\x19\xea\x68\x3b\x2d\xda\ \x09\x17\x5c\xe3\x07\x3c\x18\xc4\x45\x4f\x14\xc8\x52\xda\x10\x96\ \x61\x24\x58\x75\x5c\xf3\xb8\x5d\x0e\x94\x6f\xf3\xcc\x95\x49\xd1\ \xb5\xd2\x42\x3a\x45\xa4\x5f\xdd\x5c\x4f\x4d\xa2\xce\x27\x1c\x21\ \x1f\x42\x0d\xa6\x51\x8f\xf1\xc7\x2d\xf2\x83\x07\x75\xf0\xc4\x28\ \xc0\xf0\xd1\x90\x0e\xa3\x1d\x79\xcd\x68\x10\x73\x55\x07\x0d\xb9\ \xe7\x0b\x75\x18\x56\x8a\x14\x27\x4a\x7f\x9e\x68\x67\x3d\x8a\x17\ \xe6\x60\x19\xcb\x08\xfd\xa2\x95\xbf\x78\xe5\x89\xb0\xd9\x0e\x03\ \xf8\x6e\xad\x1e\x49\x40\x3e\x8c\x10\x06\x6e\x7c\x00\x0c\xa8\x7d\ \x02\x17\x51\xfa\x04\xb9\xf2\xa3\x0e\x75\xe0\xfe\x2b\x37\xbc\xf1\ \x03\x3e\xfc\x80\x1f\x4f\xc8\x6d\x60\x33\xaa\x3b\x00\x2d\x6e\x91\ \x68\xe0\x90\xe2\xfc\x78\xa6\x7f\x12\x73\x93\x3d\x9c\x27\x7e\x22\ \xf7\xac\x19\xc0\x34\x90\x28\xad\xab\xdf\x40\xcb\x11\x4b\xbc\x03\ \x18\xd8\xe5\x83\x37\xf2\x91\x0f\x6e\x1c\x21\x0d\xdc\x68\x87\x37\ \xf0\x3a\x54\x8b\x02\x95\x1f\x69\xf0\x06\x30\x7e\x00\x0c\x6f\xb8\ \xd7\x1b\x69\xc0\xab\x27\x54\x8b\xd1\x25\x0e\x42\x77\x43\xbb\xcb\ \xf4\x02\xc5\xd9\x78\x39\xf3\x3c\xed\x98\x29\xf5\xd2\x14\xa1\x08\ \x11\x23\x7b\x55\xf5\x11\x36\x03\x79\x44\xea\xda\x24\x01\x7c\xe0\ \x03\x30\x22\x0c\x8c\x23\x78\xd7\x1b\x31\x78\x6f\x1a\x4e\xab\x07\ \x30\x3c\x81\x1b\xec\x05\x06\x69\xd7\xbb\x5e\xdb\xfe\x80\x1b\x40\ \x0d\x64\x47\x89\xd5\x8e\xfb\x0e\x82\x6e\x73\xb2\xaa\x1f\x0f\xba\ \xa1\x24\x8d\x2c\x9e\xbc\x83\xde\x81\x0a\xac\x26\xbc\xde\x10\x96\ \xe3\xe4\x2c\x4f\x1d\x3c\x11\x4b\x24\x20\x06\x48\x36\x42\x0a\x50\ \x11\x03\x23\x1c\xc1\x08\xea\x05\x46\x0c\xfa\x10\x06\x6f\xa0\x98\ \x1b\x19\xc6\xae\x88\x8f\x20\x62\xf6\xda\xd6\xb6\xf0\xc5\xad\x47\ \x09\xfa\x85\x61\x55\xaa\x87\x37\xdc\xec\xfe\xde\x00\xc4\xc3\xab\ \x91\xef\x86\x9d\xd8\xa1\x57\xf5\xf6\x4e\x94\xba\xf4\xce\x41\xe6\ \x47\x83\x89\xcc\x10\x23\xc7\x60\x1e\x46\xf8\x73\x0c\xb6\x3c\xe8\ \x3e\x00\xa3\x0f\x83\xb6\x47\x88\xb1\x8b\x64\x29\x63\x19\xc9\x5c\ \x8e\xc1\x0f\x52\xc0\x5e\x0b\x3f\xe1\xa3\x45\xd3\x67\x0f\x0f\x74\ \x63\xba\xee\x8d\x6f\x5e\x15\xa8\x89\xee\xbb\xd9\x5d\xc2\x74\x4d\ \x74\xa6\x1a\x67\x89\xfb\xc7\x52\xee\x99\xcf\x08\x31\xb2\x3c\x8c\ \x30\x0f\x40\xc7\xc0\x1e\x4c\x36\x02\x30\x50\xb1\xeb\x08\xe3\xe2\ \x00\x11\xe6\x43\x0a\x90\x2c\x0f\x62\x13\xdb\xc9\x4d\x66\x74\x1a\ \x8e\xe0\x8f\x0f\x77\xa2\x99\x75\xf2\xa3\xed\xb2\x25\xc1\x3f\x09\ \xf4\x99\x5b\x34\x33\x36\x05\x0a\xa1\xa6\xbc\x92\xb8\xfc\xc8\x66\ \x3b\xf8\x51\xca\x40\x66\x73\x9c\x93\x84\xb5\x42\x2c\xd1\x04\x3f\ \x18\x61\xd6\xc5\x46\x85\xbc\x99\x8c\x0b\x3e\xfc\xfa\x00\xd2\x90\ \x06\x48\x96\x1c\x03\x03\xcc\xa3\xd8\xfd\x96\x47\xad\x07\x2e\x68\ \x24\x73\xc3\x1f\xdc\xbd\xb4\x27\xc2\xbd\xb8\x64\x46\xf5\xc7\xf9\ \x6c\x28\x16\xc3\xfa\x66\x3b\xab\x45\x9c\xe5\xc4\x26\x17\xb3\x59\ \xca\x71\x02\x32\xba\xe1\x26\xf7\xab\xfe\xd5\xfd\x0f\x59\xcb\xa3\ \xd8\x7d\x90\x37\x34\x70\x01\x8d\x79\xff\x3a\xdf\x07\x00\x76\x34\ \x0c\xe0\x80\x7e\xdb\x1c\x1a\xf3\xb0\x43\x10\xec\x30\x8f\x3f\xd7\ \xdc\x00\x48\x6e\x83\x3f\x3e\x40\xf4\x3a\x3c\xc1\x1b\xd9\x3c\xd0\ \x38\x17\x99\x66\x92\xc5\x2d\x6e\x83\x8d\x3a\x17\xe3\x2c\x4e\xf7\ \x7c\xfb\x18\x17\x3d\xf7\x82\x3b\x5a\x87\xe8\x62\x93\x1f\x77\x9d\ \x2e\xc9\x07\x62\x64\x03\x18\xc0\x08\x06\x40\xc5\xca\xef\xcd\x87\ \x96\xa3\xe2\xd7\x20\x89\x39\x2e\x96\x6c\x76\x54\x98\xdd\x00\x26\ \xb0\x03\x0a\xec\x60\x07\x07\xf8\x3d\x06\x33\x37\x00\x2b\x50\xd0\ \x06\x6e\x14\xfe\x03\xb3\xed\x44\xb8\x75\xc9\x03\x8f\x0e\x53\xb0\ \x4c\xbf\xe8\xb0\xc2\xca\x03\x08\x55\xfd\xc0\xa7\xe0\x47\xe6\xe8\ \xea\xd2\x3f\xee\xf6\xdc\xe1\xfe\x23\xd8\x47\xee\x60\x23\x37\xe1\ \xee\x6b\x8f\xb9\xdc\xdf\xbe\x72\xd5\x1f\x00\x15\xd1\x80\x46\xec\ \xe3\x40\x73\x3b\xb0\x42\xef\x7c\xcf\xbb\x09\x5c\x41\x7b\x57\xe0\ \xbd\xd6\x28\x38\x38\x8a\xad\x0c\x76\xc5\x63\x34\x77\xee\xdc\xe8\ \xe4\x49\x8a\x52\x6f\x9f\xe2\xc0\xc4\xe8\xc4\x30\xa7\x1e\x4b\xcd\ \x07\xb6\x0e\xe2\xfe\xba\xb9\xdb\xfe\x31\x64\x22\x1b\x39\x01\x06\ \x80\x06\x34\xc2\x8f\x8b\x7b\x1f\x00\x17\xa8\x90\x7b\x34\x62\x0e\ \x7b\xb5\xc7\xde\x00\xd1\xb8\x3d\xdf\x71\x3f\x7f\x57\xf0\xde\xf7\ \x26\x60\x85\xdf\x6b\x6d\xf8\x23\xc4\x20\x0d\x97\xa6\x5a\xbb\xc5\ \x75\x8f\xe7\x51\x52\x35\x4f\x0f\x42\x3d\x95\x15\x21\x33\xc0\x01\ \xd0\x15\x48\xfc\x00\x21\xc6\x17\x58\x3c\x90\x46\x2e\x75\x57\x3c\ \x10\x7a\x3c\xe0\x59\xb0\x16\x11\x09\x90\x00\xd0\x00\x82\x2d\xf7\ \x6b\xe8\x57\x7e\xae\x17\x0d\xb0\x27\x7e\x33\x67\x77\x71\x20\x0f\ \xb8\x87\x02\x30\x08\x83\x76\x60\x02\xbb\xc7\x7b\x34\x68\x7f\xfe\ \x36\x0f\x0e\xd0\x73\xde\x70\x04\x1c\xc6\x4e\x1b\xc5\x5b\x2b\x76\ \x80\x54\x13\x64\xa6\x56\x4e\x77\xc5\x45\x8b\x77\x81\x58\xe7\x78\ \x11\x98\x4a\x78\x55\x79\xe3\xb6\x45\x31\xf0\x59\x25\xf4\x7d\x1f\ \x28\x82\xe2\x77\x6f\x26\xa8\x7a\x33\x37\x7e\xe8\x17\x7e\x06\xd0\ \x82\x26\x10\x83\x30\x18\x04\x7e\xb0\x77\x76\x60\x7f\x71\x60\x7f\ \xbc\x67\x00\xae\x60\x02\x3a\x78\x04\x3d\xd7\x06\x1f\xc0\x04\xe5\ \x95\x57\x8b\x54\x54\x1d\x45\x80\x52\xe5\x4e\xe7\xe6\x55\x17\x18\ \x48\x5d\x97\x4d\xe4\x30\x81\xfe\x04\xd8\x71\x8a\xf7\x04\x95\x67\ \x7c\x4a\xd8\x7d\xe8\xf4\x7d\x21\x28\x7e\x5a\xc8\x85\xe6\x77\x00\ \xe3\x27\x7b\xe3\x17\x78\x82\xb7\x77\x30\xe8\x07\x69\xa8\x86\xbb\ \xf7\x0e\xa4\xd8\x04\x6d\x18\x87\x7b\xb7\x83\xf8\x30\x0f\xcc\xc6\ \x04\x98\xc4\x57\x7a\x15\x4c\x7d\xd8\x4e\xb8\xd3\x87\xb8\x43\x50\ \x69\xc4\x01\xe4\x50\x57\x84\xa8\x84\xb2\x24\x5f\xb2\xd8\x75\x11\ \x38\x85\x5f\xc7\x74\xcd\xc4\x81\x3d\x25\x89\xd0\x90\x04\x5a\x28\ \x7e\xaa\x77\x89\x98\xf8\x7e\xe3\x67\x00\xf2\xc0\x0a\x06\xf0\x82\ \xa0\xb8\x73\xb9\xc7\x7b\xa4\x48\x8a\x6e\x98\x77\xf3\x37\x0f\xab\ \xd8\x06\x2d\xf0\x01\xcd\x46\x51\xb2\xb8\x87\x45\x75\x5f\x7a\xe5\ \x09\x94\x95\x4a\x7f\xb4\x5a\x78\x95\x4d\x99\x27\x5f\xb1\xe8\x51\ \x28\x15\x81\xe3\x14\x6e\x14\xd8\x87\xc7\x20\x76\xbe\xf4\x11\x1f\ \x28\x7e\x04\x49\x90\x97\x68\x7e\x71\xd0\x72\x77\x77\x72\x27\xc7\ \x77\x9e\xe8\x07\x41\x20\x83\x33\xe8\x0a\xdd\xf8\x0e\x4d\xe0\x86\ \x6e\xe8\x00\x7c\x37\x8e\xf8\x70\x04\x47\x10\x54\xec\x94\x57\xec\ \xe4\x51\xbb\x75\x0c\xdd\x06\x8f\xd0\x85\x75\x9c\xe7\x52\x78\x15\ \x58\xb4\xb8\x7d\x9d\x77\xfe\x57\x7a\xd8\x84\x24\xf3\x04\xc8\xc8\ \x46\xdf\x77\x0e\x09\x70\x00\x5a\x28\x77\x07\x49\x90\x6a\x67\x76\ \x27\x07\x83\x2e\x28\x0f\x28\x10\x0a\x9f\x88\x86\x7b\x57\x83\x4d\ \x50\x8a\x14\xd0\x94\xef\x70\x8a\xae\xa0\x91\x28\xb0\x8a\x6f\x00\ \x69\xa7\xb5\x57\xb1\x28\x57\xea\xb8\x3b\xda\xb4\x8f\x0b\xd6\x84\ \x8d\xf8\x6c\x79\x05\x5b\x65\x79\x0c\xc3\x38\x6e\x75\xc5\x74\x7d\ \x28\x55\xc7\xc0\x88\x37\x49\x40\x58\xb8\x93\x3b\x59\x90\x5b\xd8\ \x85\x9a\x18\x03\xd3\x78\x72\x69\x28\x0f\xa1\x30\x0f\x7f\xe9\x89\ \x4a\xb9\x8d\xbb\x17\x07\x15\xd9\x8d\x52\xe9\x00\xe0\x88\x0f\x48\ \xf6\x06\xf9\x70\x5a\x14\x45\x54\x16\xa5\x8e\x9a\xe3\x20\x9d\xb7\ \x6a\xf2\x85\x52\x5f\x40\x96\x6f\xe9\x74\xab\x55\x4a\x18\x28\x48\ \x03\x78\x51\x66\x89\x75\x00\xf9\x3b\xec\xc6\x8c\x21\x38\x90\x76\ \x09\x0d\xf6\xb0\x76\x0a\x39\x8d\x42\x19\x83\xb2\x30\x70\x39\x97\ \x94\xa2\x38\x91\x87\x69\x91\xae\x40\x01\x18\xe9\x00\x44\xc0\x73\ \x1d\x19\x03\x6f\xe0\x83\x78\x28\x57\x5d\x97\x8e\xad\xc6\x59\xa1\ \x97\x84\x71\x13\x96\x19\x28\x6e\x29\xf9\x80\xf9\xf4\x4e\xb6\xd8\ \x84\x8e\x07\x5b\x71\xfe\x29\x36\x46\x96\x04\xab\x69\x97\xe1\x57\ \x90\x6a\xc7\x72\xb1\xa7\x97\xb3\xe9\x07\xdc\x10\x0a\x3c\xd7\x90\ \xb7\x19\x91\xf3\xb7\x8d\xdd\x78\x91\xf6\xe7\x9b\x14\xe0\x9b\xd1\ \xe0\x0a\x76\x10\x9c\x55\x19\x74\xfe\x40\x06\xaf\x68\x51\x75\xd0\ \x4e\x4f\xc0\x8b\xe2\xb6\x5a\xf2\x98\x4d\x9a\x37\x75\x83\x28\x8f\ \xd0\x95\x84\xbb\x75\x51\x1e\x45\x80\xb8\x53\x07\xa7\xf9\x32\xa9\ \xa9\x9a\x59\x38\x89\x40\x49\x90\xd1\x78\x77\xb3\x99\x9e\x28\x90\ \x73\x27\x37\x0f\xd7\xa8\x77\x31\xf8\x9e\xf3\xe9\x9b\x6e\xe8\x9b\ \xef\x40\x9f\x2a\x6a\x07\xf8\xb0\x73\x31\x50\x73\x42\x07\x06\xa7\ \xc5\x04\x60\x80\xa3\x8c\x18\x9a\x0b\xb6\x45\x65\x19\x9d\xf1\x88\ \x7d\xd2\xe4\x63\x4e\x97\x81\xf9\x84\x9d\x89\xb5\x48\xd7\xe7\x96\ \x17\x65\x93\x56\xe8\x26\xdd\xe9\x9d\x03\xa9\x85\xe1\xd9\x7a\x2c\ \x17\x9b\xfd\x26\x94\x46\x39\x0f\x21\x6a\x07\xf2\xe0\x00\x78\x77\ \x8d\x28\xb0\x73\x6a\x38\x91\x18\x89\x91\x2e\xda\x9b\x2a\x1a\x91\ \x8c\x39\x07\x8d\x29\x74\x44\x47\x06\xa3\xf0\x04\xb8\x55\x9a\x0f\ \x88\x75\xb0\x95\x8f\x5b\xa4\x5a\xe7\x26\x5f\x45\xaa\x7d\xa3\xe9\ \x8f\x24\x63\x54\xfe\x2d\x59\x07\xac\xf0\xa4\x44\x12\x11\x21\xc8\ \x8c\x20\x38\x90\xaa\x19\x9e\x98\xd8\x72\x99\xe8\xa1\xf2\x90\x9e\ \x5c\x0a\x98\xff\x66\x02\xd5\x98\x77\x27\x9a\x7b\x35\x78\x83\x67\ \xaa\xa2\x2d\x5a\x9f\xf7\x89\x0f\x26\x00\x7f\xb0\x47\x9c\x6d\x20\ \x74\xe5\x98\x70\x21\x39\x57\x3c\xc0\x88\x0f\x78\x51\x81\xd4\x79\ \x9b\x40\x81\xd1\xf5\x6c\x41\x68\x8b\x90\x47\x88\xb1\x25\x54\xac\ \x60\x31\x46\x06\x0d\x4d\x90\x04\x8c\xda\xa8\x20\x68\x76\xe0\xe9\ \xa1\xd4\xc8\x90\x02\x67\x94\x02\x27\xa2\xb7\x77\x9b\xef\x49\x83\ \xbb\x57\x83\x68\x5a\x91\xe7\xb0\xad\xe7\xf0\x0e\x53\x49\x04\x35\ \x17\x0d\x48\xe6\x00\xf8\x20\x74\xfe\xd0\x02\x08\x97\xa3\x44\x65\ \x96\xb0\x05\x76\xee\x7a\x69\x79\x8a\x4d\x2c\x79\x0c\x16\x15\x9d\ \x8a\xd7\x78\x4b\xc5\x75\xf7\xa5\x51\xab\x95\x57\x91\xa9\x07\x76\ \x80\xa8\x14\x62\x7a\x09\x60\xac\x8c\xca\x93\x3c\x69\x00\xe0\x97\ \x89\xb2\x39\x7e\xce\x6a\xa9\x97\xfa\x6f\x5e\xfa\x9e\x14\xab\x7b\ \x66\x6a\x7f\x35\xf8\x0e\xdc\xba\xb1\xe7\x40\x01\x41\xb0\x73\x0e\ \x80\x82\x28\x48\x04\x44\x80\x0f\xfe\x10\x04\xfe\x90\xb2\x39\x1a\ \x4c\xb0\x68\xfe\x74\xee\x2a\x93\x78\x9a\x81\xa1\x47\xaf\x1d\x65\ \x67\xf1\xd8\x8e\x82\x7a\x9d\x5c\x14\xa0\xa3\x30\x54\x3e\x1b\xac\ \x9d\x42\xb0\x09\x50\xac\xcc\xa8\x93\x3c\x29\x7e\xde\x19\x9e\x76\ \xb7\x97\x7e\x89\x02\xf1\xc0\xa5\xcf\x8a\x02\x45\x29\x7f\x65\x3a\ \x83\xd5\x3a\x83\xd7\x4a\x91\x1a\xcb\xb1\xdd\xe8\x0a\xfe\xd9\x02\ \xf8\x10\x0d\xdc\x1a\x0d\xd1\x40\x04\x6d\x10\x04\xe8\x9a\xb2\x44\ \x87\x8e\xb9\xc5\x0f\xf9\x70\x57\xf0\x9a\xa7\x60\x37\x85\x01\x8a\ \x3b\x21\xf7\x4e\x23\xb9\x62\x48\x3a\xa1\x9e\xe0\xb3\x43\x85\xa3\ \x60\x70\xa8\xb3\x32\xb4\x8c\x6a\xac\x59\x98\xa1\x0b\x4b\x90\xe1\ \x27\x0f\x42\x89\x94\x4f\x0b\x83\xb5\xb6\xa5\x14\x6b\xa2\x6a\xb8\ \x73\x31\x8a\x0f\x98\x6b\xaa\x14\xb9\xad\x2d\x4a\xb6\xd1\x60\x02\ \x98\xeb\x0a\x44\xd0\x02\x4c\x40\x06\x41\x20\xb6\x00\xb0\xad\xd1\ \x30\x07\x31\xfa\xb1\x29\xab\xb6\xa9\x05\x54\x4f\x00\x54\x66\xc9\ \x88\x8c\x38\x6e\x77\xd5\x8e\xd1\xa9\x79\x5b\x19\x8c\x59\x54\x96\ \xb0\x15\x4c\x7e\xab\x07\xde\x60\x0a\x7c\xc0\x0d\xe0\xc3\x22\x1e\ \x98\x04\x4d\xd0\xbc\x06\xfb\x81\x31\xd7\x8c\x62\x08\x0d\x8c\x7b\ \x72\xf1\xfe\x80\x02\xa0\x28\xb5\x43\x29\xb1\xf2\x27\x7f\x26\xaa\ \x8d\x3b\x97\x77\x41\x10\xa3\x9b\x9b\xba\x66\xdb\x02\x2d\xf0\xb1\ \x64\x90\xbe\x31\xda\x02\xeb\x8b\xba\xaa\x3b\x07\x1f\x8b\xb6\x41\ \xd0\x06\xc5\xe9\x83\x08\xd7\x6c\xdc\x05\x54\x7c\xb5\xa3\x77\xf6\ \x5a\x7a\x65\x6e\x32\xb9\x95\xed\x38\xa8\xec\x4a\xaf\x3d\xab\x07\ \xae\x38\x0a\xdc\x20\x0d\x00\xb0\x05\x10\x2c\x24\x89\x9a\x85\x06\ \xfb\xbc\xc8\x3a\x89\x4a\xbb\x90\xa1\x10\x0a\xa0\x78\xbd\xb2\x70\ \x94\xff\x36\x0f\xac\x20\xa2\x7c\x77\x7b\xb7\xe7\x9e\x34\x68\xaa\ \xad\x6b\x02\x1a\x9b\xba\xef\x10\x04\x78\xe8\x8a\x64\xe0\x9f\xa6\ \x8b\x0f\x30\x9a\x9f\x5b\x5b\xb6\xad\x4b\xbf\xfe\x80\x0f\x6f\xf0\ \xc3\x1e\x99\x0f\x08\xc7\xbf\x7c\xc5\x03\x69\xd0\x09\x47\x7c\xaf\ \x72\xab\xab\x15\x25\x8b\x19\x35\x57\x3c\xfb\xb7\xfc\xe0\x54\x5b\ \x00\x00\x56\x7c\xc5\x12\xac\xbc\x4d\x10\x0f\xcc\x6b\xac\x44\xeb\ \xc5\xd0\xdb\x8c\x93\x4a\x8d\xf1\x00\x8a\x66\x8c\x94\x76\x10\x0a\ \x27\xa7\xa9\xf9\x37\x7f\xac\x20\xbe\x9e\x9a\x77\x31\x6a\x07\x14\ \xc0\xad\x14\x40\x04\x30\xfc\xb7\xeb\x9b\xbe\x6b\x78\x9f\x73\xe0\ \xb9\xfe\xab\x9b\xb9\xf3\xcb\xbe\xe6\x60\x0e\x3f\xfc\x06\x6d\xc0\ \x6c\x42\xdc\xbf\xe8\x55\x7c\xe4\x00\xb3\x77\x7b\x8f\x4e\x9c\xa7\ \x46\xd7\x84\x78\x38\x54\x60\x30\x0c\x57\xbc\xc9\x10\x9c\xba\x43\ \x62\x09\x49\x40\x07\x5c\x5c\xc1\xcf\xcb\x8c\x3c\x29\xc6\x69\x47\ \x8d\x1c\x6c\xc6\xa1\x88\x94\xac\xc0\xb8\xa7\x6a\x7b\x93\x1b\xc7\ \x36\x8c\x0f\xbd\xb9\xad\xae\x10\x04\x33\x3c\xc3\x31\x9c\xbe\x24\ \x4b\xb6\x7f\xec\x0a\x73\xf0\xc7\x73\x50\xb2\xe3\x6b\x02\xf3\x5b\ \xbf\x6d\x50\xc8\x87\x7c\x04\x89\x7c\x5a\x1f\x40\xa7\x2f\xab\xc4\ \x68\x29\x93\xf9\x9a\xaf\x5d\x57\xa8\xff\x3a\x54\x4f\xf0\x03\x23\ \xb0\xc9\x57\x0c\xc1\x1b\x00\x0d\x02\xbb\x19\x96\x44\x07\x2f\x40\ \x07\x15\xfc\xc5\x59\xa8\x93\x8a\x3b\xc6\xf2\x50\xc6\xa0\x48\x07\ \x7e\x50\xc6\x47\xb9\x77\x77\x77\xaa\x6f\x5c\xb1\xd7\x6a\xc3\x14\ \x69\xc5\xe7\x10\x04\x3e\xeb\xbe\xae\x08\xb6\xae\x00\xc8\xf9\x49\ \x04\xc2\x3c\x07\xa2\x8b\x0f\x24\x6b\xcc\xf3\xbb\xcc\x86\x5c\xb2\ \x47\xd0\x91\x43\xd7\xb6\x77\x85\x5e\x87\x18\x85\x60\x87\x57\xd7\ \xcc\x75\x81\xa4\x70\xc2\xeb\xb3\xfc\x00\x5f\x3f\x60\x0a\x59\x00\ \xfe\xc1\x55\xfc\xc0\x5b\xf0\x00\xb5\x00\x0d\x03\x9b\x04\x2f\x30\ \xd3\x5c\xfc\xc5\x16\x9c\xa1\xde\x29\x7e\x62\xa8\xca\xac\x9c\xbd\ \xd8\x0b\x83\x6f\x6c\x76\x34\xb8\xcf\xf3\x67\xad\x37\xb8\xb5\x00\ \x10\x0d\x2d\xf0\xb7\x11\x7d\xd0\x64\x2b\xcc\xe4\x9a\xd0\xc2\x4c\ \xb2\x0e\x4d\xd5\xc9\x8c\x0f\x85\x6c\x0e\x99\x9b\xc8\x08\x37\xbb\ \xfb\x1b\x81\x62\xd0\x09\x72\x0b\xc0\xb2\x48\x8b\x5d\x17\xb7\x09\ \xec\xb3\x4f\xe0\x02\x23\x30\x0c\xb4\xe5\x02\xa6\x10\xd7\xa6\xa0\ \xd2\x1b\xb0\x03\x1b\x90\xc5\xc8\x61\x49\x2f\xa0\x07\x34\x6d\xb0\ \xa1\x60\xac\x7f\xdd\xce\x53\x3a\xa9\xa8\x30\x94\x65\x4c\x07\xf4\ \x7c\xbd\xd7\x9b\x86\xb6\x67\x8d\xbe\x17\x87\x6f\x9c\xb5\x35\xc8\ \xad\xef\xf0\xb9\xa4\xab\xc0\xb6\xcc\xd0\x62\x5b\xb6\x24\x6b\x02\ \x0f\x3d\xcc\xab\xfb\xd0\x56\x3d\xbf\x58\x6d\x0e\x25\xbb\xaa\xab\ \x1a\xc4\x5f\x4d\x0e\xac\xfd\x5a\xc2\xe8\xd1\xd8\x4c\xc9\xc1\x9b\ \xd6\x1d\x36\x0c\x55\x6c\x0a\xde\x30\x0c\xa6\xe0\x02\x2e\xb0\x01\ \xc3\xa0\x0a\xb7\xbd\x01\x73\x8d\xd7\x63\xe3\x0a\x43\x35\xd3\x2f\ \x30\xca\xf1\x10\x0f\x1b\x1c\xd8\x1f\xe8\xce\xd2\x4b\xbd\xf2\xfe\ \x20\x0b\x66\xdc\x02\xd9\xcb\xa5\xa1\xc8\x77\x66\xf7\xd8\x67\x1a\ \x87\xff\x6c\xbe\x1f\x4b\xd0\x64\x40\x04\xd1\x40\x01\xe5\x1d\xda\ \x55\x2d\xcc\x07\x0d\xda\xc5\xfc\xd0\x97\x3b\xbe\x41\x40\xb2\x5a\ \x6d\xae\x89\xec\x91\x1e\x89\x5e\x69\xd0\xda\x16\x45\xa7\x1e\xdd\ \x8e\xb0\xb5\xb3\x66\x39\xbc\xa3\xf0\x03\x2b\x6d\x0a\xc3\x00\xd7\ \x70\xfd\x00\x3b\xb0\x03\x73\x6d\x0a\x0a\xbe\x01\x5b\xe0\x17\x79\ \x6d\x00\x7e\x3b\xd3\x74\xb0\xc1\xcb\x1d\x0f\x17\xce\xbc\x4d\x40\ \xc1\x18\xac\xd3\xd4\x88\xdd\x7e\x40\xcf\xac\xfc\xd3\xa2\xe8\x7b\ \x71\x90\xe2\x29\x1e\x87\x26\x40\x01\x58\x4c\xba\xa6\x3b\xbf\x73\ \x40\x01\x07\x40\xb6\x9d\x9d\xd9\xe7\x6d\xe3\xc3\xdc\xde\x98\x5b\ \xb2\xad\xeb\xd0\xa6\x7d\xb6\xaf\x6b\xdf\x69\x50\xe4\xac\x4d\x0e\ \x01\x2a\x8c\x4f\xa0\x54\x24\xc9\x45\x68\xed\xb7\x60\x40\xe0\x0f\ \x9c\xd2\x28\x8d\xd2\x5b\x60\x0a\x3b\x00\x02\xba\x5d\xd7\xb2\x00\ \x02\xc0\x4d\xdc\xe6\x4c\xe1\x15\x9e\xce\x5c\xbc\xdc\x88\x3d\xca\ \x86\x8b\xa1\xe2\x09\x74\x86\x3d\xe2\x3d\x6d\x86\x5e\x0a\x87\xb2\ \xa7\xe2\x71\x88\xba\x56\x7c\x00\x30\x3e\xbe\xf6\x07\xc8\xfe\x3e\ \x9e\xde\xa0\x0d\xcc\xc3\xdc\xd0\xf1\x5d\xae\x98\x3b\xbe\x0e\x5d\ \xae\x69\xeb\x0f\x1e\x19\x06\x69\xc0\xe8\x61\x40\x0e\x69\x10\xa0\ \x46\x0c\xc0\x60\x40\x92\xd0\x65\x96\x97\xfc\xb7\x69\xf0\xcd\x57\ \x3e\xd7\x10\xec\xe9\x2d\xbd\x03\x0a\xbe\x03\xb5\xa0\x02\xdc\xb0\ \x03\xc0\x9d\xbc\x8c\x01\xca\x99\x7e\xdc\x33\xfd\xd7\x66\x2e\xca\ \x5d\xfc\x81\x86\xab\xa1\x99\xe8\xac\xd8\x6b\xc6\x3f\x1d\x8a\x32\ \x78\xaa\xbc\x47\xe7\x71\x70\x00\x58\xfc\x0e\x25\xbb\x7b\x9e\x2b\ \xda\x31\xfa\xd9\x33\xfe\xe7\xed\x0d\xd1\xa4\xbd\xaa\xf3\x7b\xb2\ \xe5\x88\xae\xf6\xcd\xe8\x47\x9e\x06\x1e\xc5\x0f\xe4\x00\xdb\x9a\ \x03\x5d\xf0\x4a\xdb\x60\xe0\x0d\x59\x60\xc5\x5b\xc0\xdb\x55\x6e\ \xe0\x1b\xe0\x02\xc3\xf0\x00\x20\x00\x02\xb5\x50\x0b\xa3\x50\x0b\ \xb2\xb0\x03\xe2\xf0\x9a\xe5\x3c\x17\x62\x3e\xbc\x7c\x9d\xdc\x49\ \xa0\xe1\x1a\xfe\xd7\x60\xac\xe6\x22\xc8\x89\xd7\x68\x94\x30\x28\ \xcf\xba\x8e\xc2\x63\x88\x0a\x29\x1e\x0d\x71\xb0\xad\x00\x6d\xc7\ \x39\x1e\x9c\xf1\xdd\xe7\x44\xc0\xd0\x3b\x4e\xcc\x54\x7d\xb6\xe8\ \x4b\xda\xe5\x8a\xb6\xe2\x4d\x06\x36\x9a\x0f\xdf\xd5\xfe\xe8\x8d\ \x2e\x06\x69\xc0\x57\x48\xbc\xe4\x7a\x25\x8c\x75\x1a\xa0\x50\x7e\ \x0d\xdf\x4c\xee\xea\xfe\x00\xc3\x90\xee\x0f\xe0\x0d\x20\x40\x5b\ \x59\xce\x0d\xb2\xc0\x0d\x2a\x50\x0b\xed\x2e\x0b\x2f\x7d\xef\x55\ \x61\x49\xad\x3e\xbc\xc9\x1d\x0a\x1a\x7e\xe6\x15\x4c\xeb\x0a\x5b\ \x90\x3b\x4d\x8d\x5e\x1a\x83\xd5\x0d\x91\xa2\x08\x87\xf0\x17\xec\ \x2d\x8c\xc5\xdb\x6a\xde\x65\xab\x73\x3d\x6e\xcc\x24\x5b\xcc\x18\ \x1f\xe8\x10\xed\xbe\xe9\xfb\xb1\x98\x2b\x74\xbc\xac\xc0\x38\xfa\ \x01\x24\x9f\x06\x6f\x90\xdf\x62\x20\x06\xaf\xa5\xed\x00\x3c\xd6\ \x2d\x49\xdb\x7a\xf0\x04\xe3\xae\xd2\xbb\xed\x5e\xc3\x70\xe0\x3f\ \xe0\x0d\x1f\xc6\x0d\xed\x0e\x02\x0b\x2e\x0b\xb2\x60\x04\x44\xff\ \x02\xb5\x90\x04\x46\xdf\x1f\xac\xa0\xef\x4a\x2f\xca\xe8\x4c\xe6\ \x49\xf0\xd7\x1d\x5e\xb0\xe0\x07\x7e\xb4\x37\xc6\xd4\x18\xa2\x56\ \x8f\xbe\x3e\x3d\x83\x5a\x3f\x73\x34\x0e\xf1\xa9\xdb\xad\xab\xcb\ \xba\xf4\x5b\xd5\x54\x2d\xda\x17\x1f\xe8\xed\x1d\xde\xe9\x9b\xbe\ \xa8\x7d\xb2\x6f\xaf\xc0\x22\x2f\xf7\x45\x6e\xf7\xcd\xc0\x0f\x60\ \xd0\x09\xdb\x1e\x5b\xc2\x48\x96\xdb\xac\xc0\x7f\xfe\xcf\xd6\x9d\ \x6e\xe0\xc3\x00\x05\x2e\xf0\x03\x3b\x80\x61\x20\xd0\x5d\xdc\xf0\ \x61\x8c\x0f\x02\x3f\x1f\xf9\x41\x4f\xf9\xab\x6e\xdc\x98\x7f\xdc\ \x7c\x8d\xd8\x9b\xbf\xf4\xcb\xdd\xc5\x86\x3b\xbd\xcc\x5a\xf0\xa6\ \x9f\xeb\xd6\xdd\x02\x65\x6a\x02\x60\x1a\x07\x9e\xbb\xb5\xf1\xab\ \xd0\x78\xdc\xf1\x65\x1f\x0d\x00\x61\x8e\x08\x11\x81\x44\xe6\x1c\ \x74\x35\x27\x9a\xba\x39\x6d\x82\xb4\x78\x18\x24\x48\x9b\x36\xfe\ \xfc\xb5\xf8\xd0\x82\x0c\x13\x3d\x7a\x46\x81\xa9\x93\x2f\x4d\x1a\ \x72\xe4\x88\xcd\xe0\xf7\xa4\x64\x9d\x3a\x9e\x9e\xa4\xe9\x94\x72\ \xd4\xa8\x8e\x1d\xc1\x80\x99\xe9\xed\x9a\xa9\x6b\x5b\x4c\xb9\x00\ \xda\x87\x1b\x37\x3e\xa6\x46\x48\x33\xc5\x67\xc7\x50\x59\xdc\x54\ \xc8\x02\x11\x15\x84\x2c\x15\xd0\xfe\x5d\xc5\x9a\x55\xeb\x56\xae\ \x5d\xbd\x7e\xe5\x6a\x29\x09\xc7\x9a\x65\xcb\xbe\x78\x41\x87\x4e\ \xda\x17\xf1\x92\xc4\x0b\x95\x24\x41\x12\x56\xac\x92\x18\x48\x60\ \x40\x2f\x2b\x07\x7a\xe5\xc9\xb3\x33\xcf\x8e\x3c\x14\x28\xfc\xf8\ \x81\xe8\x07\x85\x1d\x3b\x8b\x5d\x45\x83\xf6\x38\xda\xe4\x68\x73\ \x5c\x11\x74\x40\x44\x62\x10\x7c\x03\x2b\x1f\xfe\x3c\x58\xb9\x72\ \xc2\x68\xe7\x28\x68\x6e\x91\x1a\xa2\x3f\x87\xfe\x82\x5c\xfc\xf0\ \x81\x4c\xcd\x51\x1f\x78\x8c\x24\xd9\xac\xd9\x13\x7e\xcd\xf8\xb1\ \xe4\x07\x33\x0d\x4b\x9a\x1d\x99\x80\x09\x0e\x46\xcf\x13\x6f\x0f\ \x86\xb9\xb8\x36\xec\x47\x9f\x34\x3a\x01\x5c\xc7\x3e\xe2\x81\xd3\ \x5a\x50\x77\x3c\x10\x27\x6e\xc7\xd4\x24\x96\xc0\x9e\x47\x9f\xde\ \xab\x25\x03\x66\xdd\x9f\x55\xbb\x96\x8e\xdb\x50\x71\x9b\x24\x09\ \x65\x17\x9a\x81\xfd\xac\x0c\xfc\xd5\xcb\x80\x79\xfe\x72\x40\x9e\ \x79\x50\x78\x28\xb5\x20\x10\x5c\xac\xaf\x68\xf4\x8a\x61\x32\x83\ \x12\x72\x60\x8e\x81\xf0\xc1\x70\x20\x85\xd4\x59\x88\xb2\xcf\x28\ \xf0\xe2\x1d\x75\x1e\x22\xa3\x44\x88\x28\x7a\x2d\x88\x8c\xc0\x88\ \x4d\x39\x3d\x98\xa8\x03\x8c\x27\x78\xe0\x8d\xa4\x3a\xd2\x10\x83\ \xc6\xe0\xc8\xf9\x0d\x0c\x4f\x8a\xfb\x88\x1f\x72\x3a\xc1\xa9\x8e\ \x94\x78\x00\xc1\x9b\xa1\xd2\x00\x46\x1a\xec\x9e\x04\x40\x9a\x1f\ \x3e\xe0\x46\x96\x3e\x1e\xb8\x32\x3c\xa9\xac\x52\xaf\x4b\x2f\xd7\ \x6b\xef\x3d\x31\xd3\x52\x0b\x2d\x3a\xde\x72\xeb\xbe\x24\xe4\xca\ \x2b\x8e\x00\xdf\x84\xd3\x81\x03\x11\x4b\xfe\xcd\x8f\x05\x1b\xb3\ \xc3\x01\x3d\x89\x88\xf0\xb3\x68\x0c\x52\x68\x20\x22\x3a\x23\x68\ \x0e\x0e\x39\x74\x84\x02\x0e\xdf\x39\xe7\x1c\x75\x88\x68\x81\x09\ \x13\x25\xaa\xe8\x21\xd8\xc8\x60\xf1\x09\x17\x3d\x9a\xc9\x47\x99\ \xf8\xe1\x61\x14\x95\xc4\x20\x12\x24\x9c\x3c\x42\xee\x89\x7c\x9e\ \x88\x91\x25\x26\x66\x7a\xe2\x09\x10\xf8\x18\x01\x4a\x28\x4d\x71\ \x0a\x84\x61\x36\x08\x4f\x9c\x07\x76\xb8\x72\x83\x73\xcc\xfb\xb2\ \x58\x2f\xd9\x13\x73\x4c\x32\xd7\xd2\x63\x3e\xb5\xe2\xa2\xeb\xae\ \xbc\xf6\x33\xc0\x3f\x79\x0c\xe8\xab\x2f\x03\x62\xd8\xb6\x30\x3a\ \x5b\x50\x8c\x31\x7c\x4c\xc8\xcc\x81\x18\xe6\x88\x21\x21\xcb\x14\ \x9a\xcc\xc2\x0c\x01\x35\xf4\x1d\x2f\x14\x6d\x74\x5e\xcd\xc8\x50\ \xf0\x44\x89\x54\xf3\x47\x36\x16\x57\x2d\xce\x2c\x4f\x8a\x1c\x85\ \x09\x1e\xc4\x20\x87\x55\xe2\x3a\x0d\x2e\xd6\x18\x3f\x0a\x18\x8c\ \x1d\x7a\xb2\x15\xca\x2d\xb8\x59\x6e\x03\x9f\x4c\xd9\x00\x4b\xf0\ \x36\x50\xe5\x00\x62\x8d\x25\xf9\x2b\xb1\x92\x4d\x76\xd9\x17\x9a\ \x2d\xd3\xad\x68\xef\x6a\xc2\x80\xbb\x00\x63\x65\x1e\x03\x4c\x90\ \xa7\x2f\x6e\x05\x6c\x03\xb1\x04\xef\xfe\xd4\x53\xcf\xce\x12\x3a\ \xd7\xc3\x85\x04\x15\x14\x34\x75\xd4\x11\x51\xde\x46\xe7\xc0\x67\ \xb3\x89\x30\x74\x88\x44\x32\x56\x94\x91\x38\x94\x69\x1a\x85\xc6\ \x3a\x78\x48\xa9\x8e\x4e\x45\x4a\x23\x1f\x80\x5f\x25\x6b\x14\x6e\ \x9c\xac\xd8\x56\x7b\x46\x79\x61\x07\x53\x38\x16\xa7\x8f\x2b\x1f\ \xc0\x12\x84\x24\x4a\xe6\x3b\x2c\x03\xc8\x42\xf9\x3d\xb6\x3a\x22\ \x53\x0f\x97\xeb\x5a\x53\xe6\x6a\x1b\x13\x0c\x05\xc1\x72\xde\x96\ \xdb\x03\x23\x82\x28\x88\x3c\x33\x9b\x07\x1f\x73\xd3\x15\xad\x43\ \x0b\x91\x06\x74\x21\x47\xd5\x69\x54\x44\xcd\xf0\xa1\x88\x20\x73\ \xcc\x79\x03\x75\xd7\x30\xc2\xf4\xa6\x80\x03\x2f\x78\xa6\xe0\x7a\ \x34\x72\x24\x7e\x84\xcc\x27\xe0\x8f\xd2\xb8\xa6\xed\x8a\xaf\xe1\ \x08\x0c\x10\x76\x18\x6f\x07\x5e\xc5\x99\x4a\x85\x17\x42\x19\xb9\ \xef\x92\x91\x0d\x1c\x65\xb4\x56\x66\xeb\x05\x3f\xd6\xac\xcf\x8e\ \xba\xea\x6a\xac\x30\xf1\xe7\x21\x3f\x40\xf2\x0b\x0b\xc2\xce\xca\ \xed\x30\x81\x08\x3b\x34\x74\xc5\x9c\xd0\xda\xfd\x1c\xe9\x83\xd4\ \x51\x54\xd1\x85\xdc\xc5\x10\x43\x73\x2a\x61\xc8\x1c\x58\x87\xa1\ \x23\x58\x84\x09\xaf\xaa\x9e\x7b\xfe\x46\x91\x3b\x7e\xe4\x23\x38\ \x69\x38\x02\x49\x12\x06\x38\x30\x10\xa5\x56\xc2\xbb\x95\x72\x46\ \xa1\x82\x5c\x3d\x40\x15\x1b\xd8\x81\x0a\x6a\xb1\x32\x3d\xb0\x42\ \x7a\x7c\x13\x0b\xe0\x12\x68\x16\x32\x61\x8f\x0e\x64\x48\x4b\x5d\ \x42\x81\x82\xfa\x80\xcf\x30\x87\x51\x8c\x61\x0a\x43\x3e\x1e\x1e\ \x08\x41\xe9\x93\x9a\x1d\xc6\x45\x04\x0a\x91\x66\x32\x1c\xaa\x5f\ \x67\xee\x57\x99\x82\x5c\x48\x50\x9d\xf9\xdf\xd2\x04\xb8\xba\x4a\ \x98\x23\x0c\x6f\xc8\x87\xd8\x54\xb8\xc2\xaf\x49\xb0\x24\xb8\x19\ \x89\x8b\x6e\x22\x92\xe0\x61\x10\x4a\x59\x38\xce\x0e\x86\xb1\x03\ \x59\x7c\xa7\x63\x23\x24\x61\x47\x58\x11\xbd\x13\xaa\x87\x7a\x2b\ \x14\x5c\xf6\x06\x47\x87\xfa\xc4\xc3\x0f\x33\x04\xe4\x0d\x71\x88\ \xc3\xf1\x39\x2e\x73\x82\x71\xc8\x0f\x23\x32\xc4\xfa\xb1\xeb\x20\ \x06\x71\xa2\xfc\x1e\x39\xa8\x20\x0c\xe4\x0d\x05\x79\xc3\x1b\xe6\ \x50\x89\x4a\x4c\x71\x93\x86\xaa\x84\x18\xc2\x50\xb6\x4d\xe1\xd1\ \x13\xf9\xe8\x84\x18\x54\xd9\x0c\x31\x94\xed\x03\x62\xd3\x03\x18\ \xd2\xf0\x83\x1f\x94\xd1\x8c\x4f\xca\x82\x8c\xb6\xe0\x93\x0d\x80\ \x10\x04\xce\x8b\x63\x4d\xca\xfe\x53\xc7\x2e\xb1\x67\x8b\x29\x23\ \x9c\x1e\xb0\xa7\xcc\xc1\x65\x8f\x0c\x7d\x3c\x4c\x3c\x68\x28\xc8\ \xf4\x81\x0b\x31\x39\x6c\x83\xe3\x02\x23\x44\xc6\x6c\x46\x41\x9c\ \x79\x5f\x65\x42\xf7\xb9\xcf\x61\x08\x34\x02\x41\x1d\x3e\x32\x39\ \x45\x22\x5c\x92\x93\x9e\xec\x24\x27\xd7\x31\x4a\x1e\x89\x6d\x76\ \xd5\x13\x95\x90\x4a\xa2\x9b\x27\xa8\x10\x0c\xde\x00\xc6\x35\x2e\ \x78\x4b\xec\x48\x43\x46\xa6\x00\x00\x2f\xd9\x28\x42\x59\x90\x10\ \x2d\xb2\xb0\xc7\x39\x88\x99\x1e\x4b\xb0\x02\x8f\x84\x5b\xe6\xf5\ \x94\xc9\x2c\x8d\xa6\xc5\x0f\xf1\xa0\xc3\x20\x43\x71\x18\xd5\xd4\ \x09\x5c\x0b\x2a\x8c\x1d\xda\x20\x44\xf2\x11\xc1\x04\x76\xf0\x66\ \xe5\x88\x38\xd3\x49\x02\x2a\x6a\x6d\x20\xc2\xd2\xd0\xd9\x3a\xf9\ \x55\x71\x75\x9b\x64\xc8\xea\x7a\xba\x49\x2b\x1e\xe1\x08\xab\xfa\ \xd1\x45\x69\x53\x07\x55\x21\xcc\x45\x05\xf3\x88\x3f\xd2\xd0\x8b\ \x11\x9c\x81\xa0\xd8\xb9\x46\x2c\x87\xb1\x85\x2c\xf8\x72\x3c\xb2\ \x30\xc2\xf5\x6a\x61\x8f\x2d\x24\x54\x64\x13\x35\x99\x2b\xf0\xd8\ \xd1\x8e\x32\x13\x2d\x18\xed\x48\x7c\x70\x48\x87\x1b\x96\x94\x0e\ \xaa\xb9\x26\x0a\xb2\x29\xfe\x3e\x7c\xe4\xa9\xaf\x7d\xdd\x17\x44\ \x30\xd4\x3e\x78\xa9\xcb\x42\x0e\x79\x83\x14\x59\x77\xc9\xff\x09\ \x50\x9d\x00\xf4\x29\x15\xa5\x78\xc5\xa3\xc6\x0a\xaa\x78\xfc\x48\ \x48\x46\x42\x8e\x66\x10\x23\x8b\xaf\x2c\x98\x2c\x1d\x31\xd0\xab\ \x02\x80\x0f\x1d\xf9\x81\x4f\x86\x51\xa5\x1d\x84\xc7\x1e\xc0\x94\ \x85\x38\xca\x2a\x0d\x71\x24\x00\xad\x5d\x49\xe1\x45\xaf\xb7\x5b\ \xde\xae\x65\x99\xca\x24\xc3\x5d\xe3\x43\x06\x3f\xdc\x35\x35\x25\ \x32\x91\x6a\x24\x62\x27\xcb\xe1\x03\x05\x7d\x6d\x9f\x09\x00\xfb\ \x33\x89\x0c\xe4\x32\x90\x7c\x64\xd4\xf0\x61\x28\x75\x54\xd1\xbb\ \x95\x58\x47\x26\xdf\x00\x59\x2b\x46\xb1\xbb\xac\x83\xa0\x03\xb3\ \x38\x93\x15\x06\x89\xb3\x33\xb8\x02\x1e\x82\x11\x8c\x19\x8c\xb2\ \x6c\xf9\x10\x43\x2f\x4a\xfb\xa4\x2d\xfc\x40\xab\x5c\x5d\x8a\xae\ \xe6\x66\x8a\x3e\xc8\xa2\x16\x7d\x80\x82\x2a\x54\x61\x0f\xbb\x25\ \x80\x8e\x68\xbd\xa3\x7b\x8e\xc9\x4c\xb7\xf2\x56\x65\x6e\x65\xd9\ \x0b\x5f\xc8\x04\xe3\xbe\xf0\x05\x1b\x41\x6e\x49\x21\x82\x20\x98\ \x96\xd8\xa5\x03\x91\x1a\xbe\x24\x42\x28\x0d\x65\xd7\x22\x89\x5d\ \x1a\x27\x65\x6c\x8e\xfe\x23\xb4\x21\x0c\xf2\x2c\xef\xd2\xba\x4b\ \x59\x08\x92\x23\x0d\xbf\x51\xaa\x27\x84\x44\x8c\xf8\x06\x63\x05\ \x78\x68\x06\x39\x46\xb9\x0e\xfd\xee\x37\x3b\x69\x50\x5b\x4f\x4c\ \xf1\x03\xe4\x99\x42\x1a\x57\x56\x45\x82\x55\x21\x0d\x06\x33\xd8\ \x6e\xd0\x78\x70\x1d\x23\xec\x9e\x8d\xb8\x87\xad\x16\x8e\xcf\xf5\ \xfc\xb0\xb2\x90\x86\xb4\x05\x1a\xd6\x08\x88\x0f\x78\xc0\x10\x7f\ \x53\x91\x12\x79\x1f\x61\x4d\xb0\xaf\x49\x55\x57\x50\xab\xc3\xc7\ \x45\xc6\xdb\x5d\x19\x83\xf7\x0d\xfe\x38\xc2\x8d\xc1\x1b\x86\x75\ \x00\xd0\x11\xea\x08\xef\x15\xc1\xf8\x1b\x96\x60\xd6\x48\x26\x99\ \x01\x1e\xbc\x80\x07\xfb\x86\x81\x18\xa4\xdd\xaf\x2a\xb2\xe8\x8d\ \xb9\x49\x67\x07\x50\x98\x9b\x2a\xac\xec\x24\x69\xa8\xa2\xc0\x46\ \x80\xb5\x2c\x64\x01\xe6\xdb\x5a\x42\x1e\x81\xf3\xc3\x07\x82\x99\ \x4c\x33\xf5\x36\xcd\x1b\xe5\x08\x19\xfc\xf8\xd1\x37\xa7\x86\x0e\ \x73\x46\x36\x9d\x25\xf5\xcd\x7d\x49\xed\xc4\x83\x8a\x9a\x46\x96\ \xbd\x62\xaa\xbd\xa1\x80\x2d\xf0\x07\xa3\xd7\xb1\xed\x6d\x87\xe1\ \xa8\x6f\x58\x47\x33\xb8\xad\x0e\x47\x94\xbb\xdb\x61\x40\xf7\x11\ \x54\xa9\x4a\x7e\xfe\x94\x32\x70\x20\x09\x8e\x18\x88\x7c\x05\x31\ \x88\x24\x0c\x62\x70\x44\x93\x9d\x3c\x82\x30\x54\xf0\x07\x3f\x19\ \x06\x83\xf9\xa0\xe0\x04\xb7\xfa\xca\xf6\x68\x68\x5a\x6a\x71\x60\ \x71\x9c\x95\x98\xec\xb9\xa7\x7b\x3e\x60\x80\xd9\x98\x79\xb7\xf2\ \xb9\x5e\x9b\x5f\xc0\x61\x8e\x78\xb4\xcd\xc5\x2e\xd1\x87\x39\x32\ \xf2\x39\x27\x57\xc4\x95\xe3\x0c\x67\x30\xb4\xaf\x39\x9f\x88\x22\ \x35\x3e\x34\x8b\xde\x80\x6e\x74\x8b\x61\x1d\x10\x4c\x43\x25\x1c\ \x51\x09\x71\x97\xbb\xdc\x95\xa0\x39\xba\xc5\x0d\x5f\x62\x24\x8c\ \xbd\x09\x74\x09\x49\xc4\xd0\x8c\x19\xcc\xe0\x08\xa3\x32\x09\xa8\ \xaf\xca\x07\x4d\x71\xe3\x39\xb4\xdc\x81\x11\xfa\xa0\xe0\x3e\xd8\ \xa3\xd5\xf6\x80\x02\xc2\x77\x5b\x0b\x28\x48\x63\x0b\x12\x15\x73\ \x0c\x06\x11\x71\xb3\x18\x41\x1a\x31\xd8\x35\x46\x79\xcb\x04\x32\ \x81\x94\xee\x6f\x7e\x11\xb8\xee\x4a\xd2\x17\x96\x08\xd9\x65\xa1\ \x33\x72\x05\xaf\x5c\xa9\xad\xfc\x21\x74\x6e\xc1\xcb\xdb\x60\xd4\ \x23\x6c\x24\xd1\x4a\x0e\x83\x6e\x46\xd9\x0c\x3c\x5c\x41\x37\x4d\ \x77\xc4\x0c\x78\x8e\xee\x70\x97\x7b\x06\x99\xf7\xb1\xc2\xd8\x6e\ \x96\x82\xdd\xfe\xe6\xbd\x33\xa8\x37\x49\xd2\x10\x06\x7d\xef\xf7\ \x1a\xf9\x90\x11\x2d\x03\x3e\x0c\x28\xc0\x9a\x0f\x7d\xa0\x03\x37\ \xec\xd6\xf5\x3e\xc4\xc3\xa1\x46\x50\xc5\x2e\xcf\x1e\xe6\x2f\x59\ \xa2\x0f\x83\x58\xfb\xe8\x3b\x12\x86\x2d\xbc\x7d\xd7\xbc\x55\x26\ \x70\x43\x0a\xd2\xe0\xaa\x45\x52\x70\xb9\x66\x71\xdf\x1c\x5c\x49\ \x25\xbb\xe4\xdd\x97\x94\xe0\x4d\xbe\x99\xa8\x1d\xfe\x80\x2d\xc8\ \x47\x1b\xf2\xc1\x78\xb1\xe5\x43\xc9\xeb\x6e\x65\x1a\x9a\x71\x05\ \x62\x5c\xfe\x0a\x4d\x6f\x86\x23\xf2\x8f\x07\xfe\x97\x9b\x95\x3e\ \xde\x1d\x1e\x70\x37\x8f\x28\x8b\x56\x79\x09\xa6\x8b\xaf\x66\xd8\ \xac\x23\x98\x81\xaa\x72\xb2\x6b\x38\x82\xe3\xf0\x86\x1f\x70\x81\ \x61\xe8\x83\x81\xf3\x06\x23\xb0\x07\x23\xa0\x3b\xb0\x8a\x07\x59\ \xf3\xad\xee\xe8\x03\x53\x50\xb5\xb9\x39\x80\xbe\xb1\x04\xb5\xcb\ \x86\x41\xf0\x04\x4f\x40\x19\x6e\x98\x2d\x54\x28\xb3\x9a\x78\xab\ \x1a\x0c\xae\x8f\x0a\x05\x90\xd2\x83\xe0\x82\x21\x3f\xb0\x03\x3f\ \xb8\x41\x1c\x3a\x2e\xbf\x4b\xb6\x8d\xf0\xbe\x23\xec\xb3\x36\x28\ \xbf\x91\x03\x03\x44\x33\x9b\x34\xf8\x00\x51\x29\x89\x29\x4c\x83\ \x97\x20\xfe\x06\x62\x58\xa5\xcf\xab\xbf\x4c\xd3\x34\x2f\xd8\x34\ \xfd\x4b\x32\x1f\x03\xc0\x88\xab\x83\x8e\x98\x89\xdc\xe9\x04\xf9\ \xcb\x34\x19\x70\x04\x55\x2a\x89\xd6\xbb\xaa\x6b\x78\x83\x9b\x78\ \x82\x1f\x50\x35\x17\xb0\x87\x1f\xd8\x40\x23\xb8\x3d\x30\xa8\x05\ \x23\x30\xb0\xb5\xe8\x0e\x88\x42\x35\xa4\x50\x85\xf0\x78\x00\x5a\ \x33\x16\xe3\x43\x83\x6c\x58\xc1\x41\x38\x06\xe5\x63\x02\x60\x28\ \x28\x68\x40\x81\x09\xdb\xa8\x67\x89\x07\xdf\xdb\x38\x18\x62\x82\ \x16\x18\xa9\x0f\xb3\xa6\xc3\x08\x29\xe4\x0a\x3c\xc1\x3b\xa0\x17\ \x31\x0b\x92\x2b\xb9\x89\xa0\x08\x7f\x60\x42\x55\x89\xa0\x76\x63\ \x82\xdb\x71\x20\x56\x91\xbf\x91\x90\xb7\xfa\x9b\x3f\x3c\x58\x81\ \x33\xf0\x42\x2f\x28\x37\xf8\xfb\xa2\x50\xa1\x0d\x58\x79\x82\x05\ \xda\x1d\x72\xd8\xc5\x93\xf0\x45\x19\x98\x81\xfa\x73\x04\xab\x72\ \xbd\x23\xc0\x89\x0a\x1a\x86\x2c\xd8\x25\xda\x02\x86\x3e\x00\x86\ \x2c\x83\x35\x54\x00\xc4\xdc\xd3\x3a\x71\xb0\xb2\x5d\x3a\x44\x06\ \x0b\x0f\x5c\x20\x3e\xb0\xb0\x84\x68\x70\x44\x47\x1c\x84\x6c\x38\ \x86\xc0\x79\x01\x3e\x78\x92\x73\x40\x85\x78\x88\x3e\xc0\xbb\x41\ \x3f\xfe\xf2\xb0\x66\xe1\x88\x16\x60\x05\x3b\xd8\x88\x51\x24\xa9\ \x38\xc3\x17\xd5\x40\x45\x23\x0c\x9c\x65\x5b\xbc\x02\x52\x8e\xe3\ \xd0\x1d\xd8\x3b\xc3\x96\xb0\x27\x00\xc4\x91\x75\x9b\x01\x19\x58\ \x81\x8f\xdc\xb4\x19\x10\xb7\x75\x63\xa5\x91\x48\x46\x33\x34\x95\ \x4e\x20\x07\x19\x61\x46\x79\xbb\x82\x97\x8c\x2f\x2f\xc4\x83\x68\ \x84\x43\x33\x1a\x01\x47\x80\x3d\x30\x28\x1e\x10\x50\x85\xeb\xd8\ \x82\x05\xb3\x07\xb0\x53\x85\x18\x08\x4a\x54\xe8\x32\x7b\xd8\xb2\ \xe6\x4b\xb5\xe5\x79\x00\x5e\x39\xc1\x63\x51\xbb\x63\x38\x86\x79\ \xcc\x86\xa4\xaa\x9e\xd4\x2a\x2b\x9f\x3c\x00\x3e\x88\x81\x5a\xb0\ \x3e\x96\xf9\xc7\xb5\x08\xae\x16\x78\x01\x82\x4c\x82\x4b\xc4\x2b\ \x6b\x4a\xcb\x92\x12\x3f\x87\x44\x19\x3a\x63\x0d\xa3\xc2\x09\x26\ \xe0\x8d\x96\x00\x92\xb2\x00\x09\xa6\x52\x3d\x31\x88\x2f\x90\x9c\ \xc9\x19\x98\xa7\xf7\xd3\x0d\x00\x4c\xc6\x57\x79\x89\x98\x10\x83\ \x19\xf0\xb1\xc4\x6c\x3a\xf9\xf2\xc2\x60\xd8\x34\x71\xbb\x82\x0e\ \xb8\xaa\x2d\xc0\xc9\x7f\x59\x2f\xb5\xd9\xba\xe6\xdb\x40\xbb\x89\ \x01\x58\x43\x30\x28\x38\x80\x2d\x33\x38\x12\x54\xb0\xb9\xe9\xa5\ \xfe\xf0\xe8\x25\x87\x43\x8f\x14\x44\x83\x3a\x80\x44\x34\x40\x83\ \xb5\xe3\x14\xab\x7c\x0f\x26\xe0\x86\x26\xc9\x4a\x9f\x94\x06\x54\ \xc0\x05\x6e\xf0\x83\x6b\x99\x21\xbd\xb0\xbb\xbb\x2a\x11\xbb\x08\ \x85\x12\x11\xae\x62\xdb\xbb\x84\x3c\xb9\x38\x9b\xb3\xea\x61\x82\ \x0f\x20\x1b\x8b\xc4\x89\xd1\x63\xaf\xaf\x19\x32\xf9\xaa\x3c\x91\ \x64\x25\x37\x5c\x25\x84\xf1\xb1\xe1\x60\xaa\x54\x62\xa5\x8e\xbc\ \x02\x93\x88\x2f\x3c\x90\x01\x2f\x38\x83\xf7\x3c\xb2\xd5\xab\xc9\ \x8a\x19\x81\x6b\x48\x03\x9d\x94\xa5\x1f\xf0\x06\xd8\xa3\x92\xdc\ \x84\x02\x28\xe8\x03\x0d\x0c\x50\x6e\x40\x01\x23\xe0\x06\x0d\x0c\ \x4a\xb0\xb3\x87\x5e\x41\xb5\xb9\xc1\x1b\x71\xd8\x00\x13\xa4\x28\ \x03\x40\xbe\x63\xf0\x04\xa9\x9c\xcd\x99\x68\x41\xab\x3c\x3a\x05\ \x3a\xd0\x81\xbb\xb2\x14\x00\x06\x54\x88\x81\x0f\x40\x05\x69\x38\ \x00\x54\x38\x80\x03\x88\x01\x0f\x83\xa1\x67\x72\x85\x24\xe8\xbb\ \xc1\x53\x4b\xb6\x14\x31\x53\x4c\xb6\x64\x91\x94\x97\x68\x25\xe5\ \x23\x3d\xe4\x20\x32\xfc\x13\x4f\x66\x6c\xc9\xcb\x6b\xba\xfa\x03\ \x40\x4c\xa3\xbf\x2b\x58\x01\xfa\x22\x06\xc7\xfc\xc8\xf7\x7c\xfe\ \x4f\x3c\xf8\x80\x34\xe8\x00\x6a\x6c\x9b\x5e\xe0\x83\xfb\x2c\x1e\ \xe0\xb9\x86\x6b\xa0\x25\x7b\xe0\x03\xa8\x00\x06\x28\xe0\x83\xa0\ \x14\x0a\x3a\xa8\x05\xba\x4b\x8b\x78\x00\x4d\xad\xb3\x1b\x54\x4b\ \xc7\x3e\x30\x47\x53\xd8\x82\x0d\x50\xc4\xf5\x50\xbb\x79\x94\xca\ \x63\x58\x00\x77\x58\x80\x16\xac\x4a\xdf\x69\xc1\x87\x44\x9b\x17\ \xd9\x38\x13\x05\x86\x18\xc0\x05\x3e\x30\x00\xdf\x53\x26\xba\x0b\ \x85\xfb\x40\x81\xbe\x9b\xd1\xe0\x4a\x90\x38\x3b\xae\x4d\x6d\x4b\ \xb7\x14\x13\xba\x14\x89\x27\xc0\xa3\x3a\x20\x52\xdd\x01\x23\x66\ \x3c\x89\xf5\x94\x01\xfe\x13\x49\x55\x82\x2f\x19\x58\x55\x3c\x98\ \xd2\xbe\xfc\xc8\x5f\x94\x52\x2a\x15\x83\x5a\xc1\xd2\xec\xe8\x05\ \x05\xd4\x20\x90\x98\xa5\x1f\x00\x06\xa0\xb0\x87\x61\xe0\x83\x0c\ \x4c\x50\x10\x30\xd0\x38\xda\xb8\x41\xd4\x3a\xd0\xa4\xd3\xba\x79\ \x80\x05\x8d\x50\x9f\xf0\x95\x3c\xdd\x8a\x14\xf4\x04\xe4\x5b\x41\ \x34\x38\x06\x24\xf8\x05\x24\x60\xc1\xa4\x02\x12\x1f\x7d\xc8\x66\ \x3d\x50\x3f\xa8\x85\x48\xd5\x9e\x24\x70\x85\x50\x28\x39\xbf\xc3\ \x97\x79\xa5\xd7\xb6\xec\xbe\xc1\x03\x31\x23\x4c\xc5\xb2\xfe\xe8\ \x94\xf6\x62\x2a\x96\x60\x89\x58\xc9\x8d\x57\xf5\x82\x28\x5d\x01\ \x2f\x58\xd5\x68\x24\xd8\x4d\x93\x01\xf8\x8c\xc9\x33\xb0\x55\xab\ \x3a\x83\x5e\x48\x83\x75\x90\xd8\xeb\x38\x83\x11\xd8\xb4\x30\xd0\ \x94\x82\x51\x89\x1f\x68\x86\x1f\xa8\x2c\x6e\x50\x12\x2a\xd1\xba\ \x1f\x00\x01\x6e\x60\x53\x5e\xa3\x83\xae\x4b\x50\x97\xf5\x32\xbb\ \x11\x87\x12\x24\xc1\xe5\x61\xcd\xac\x30\xbe\x71\x45\xbe\x79\x44\ \x83\x05\x40\x02\x77\x48\xbe\x04\x32\xd7\xdb\x6c\x01\x23\x58\xb3\ \x8d\xdb\xc1\x24\x68\x02\x78\x7d\x11\x65\x0b\xbf\xf0\xab\xd7\x23\ \x3c\xc5\xe4\x7a\x0d\x8b\x68\x91\x89\x54\x2a\x7e\xbd\x91\xc4\xbc\ \x02\x8f\x94\xd2\xaf\x6d\xd2\xbf\xcc\x34\x2f\x30\x32\x58\x95\xd2\ \x55\x35\xb2\xf7\xbc\x52\x89\xd5\x0d\x2f\xe8\x00\x3c\x70\x04\x62\ \x70\x25\x31\x32\x12\x62\xe8\x05\x2d\xad\xb7\x03\x2a\x18\xb2\xa8\ \x20\x6e\x58\x57\x8b\xa3\x03\x04\x4d\xd0\xff\xf4\x15\x99\x15\x07\ \xb3\x43\xcd\x5e\xe2\x15\x6c\xfd\x07\x4b\x40\x05\x16\x84\x5c\x4f\ \x88\x47\xd9\x1c\x54\xf6\xba\x4b\x7e\x1d\x85\x16\xf4\xd1\x99\xe8\ \xd0\x0f\xe8\x03\x03\x78\xa1\x8d\x62\x85\x26\x60\x05\xfe\x3f\x60\ \xc5\x54\x8c\x57\x22\xcc\xd1\x22\x4c\x2e\x8b\x88\xc8\x7b\x33\xba\ \xac\xf5\x08\x2b\xa4\xd5\xaf\x05\xdb\x4d\xbb\xbf\xcf\x83\x55\xb2\ \x65\x4f\xf7\x04\xc6\x98\x0c\x86\x5e\xf0\x02\xe1\x8d\x4c\x51\xaa\ \x42\x9d\x4c\x1b\x96\xd4\x8d\x2f\x9d\x81\xfd\x8c\xc2\xe3\x28\x0e\ \xba\xa3\xbb\x94\xa9\x3b\xb0\x42\xca\x43\x0c\x0f\x05\x43\x0a\xa4\ \x28\x5c\xc5\xc5\x53\x9c\x05\x06\x79\xe4\x56\x6e\x8d\x47\xcd\xcd\ \xdc\x6d\x65\xc1\x72\xd5\xd0\xf4\x9d\x1d\xce\xcd\x5c\x0b\x75\x41\ \x33\xfc\x00\x23\x88\x01\xd3\x1d\xc8\x49\x5d\x93\x48\x99\xde\x55\ \x7c\xda\xe8\xdc\x22\xef\x5b\x48\x8c\xc8\xb6\x70\x6b\xa5\x93\xc4\ \x2c\x95\x98\x37\xf6\x9c\xaf\x82\xfd\x45\x90\x4c\x58\x84\xd9\x2c\ \xce\xfa\x3f\xce\xba\xc2\x7a\x53\xaf\x94\x60\x95\x27\xf8\x80\x9b\ \x38\xd4\xd0\x1a\x95\x53\x98\x81\x6b\x68\x3a\x5a\xca\x49\x55\xe1\ \x86\xd8\xa8\x05\x6e\x00\x03\x66\xf5\xc4\x8d\x7b\x01\xaf\xac\x12\ \x59\xb3\x92\xa3\x2c\x38\xa5\xac\x1b\x23\x00\x01\x08\x3d\xc4\x44\ \x34\x0f\x4b\xf8\x81\x46\x8c\xc7\x9d\xa5\x4a\xf6\xd5\x83\x6d\x95\ \xc7\xf6\x3d\xdf\xf4\x35\xc3\x22\x1e\xd7\x6d\x9d\xfe\xca\xd9\x99\ \x4e\x6e\x90\x87\x8a\x7b\x26\xb9\x78\xd7\xd0\xfd\x3b\xe3\xc8\x51\ \xe9\x3c\x45\x44\xe3\x11\x56\x19\xda\x1f\xd5\x2c\x66\xec\x2c\xf8\ \x7a\xc9\x09\xae\xc2\x87\x41\x9b\x8f\xe8\xd8\xe3\xb8\x89\x4d\x09\ \x18\xc0\xf1\xe0\x97\x28\x89\x79\x3b\x09\x24\x68\x86\x53\xf8\x01\ \x52\x62\x82\x7c\x00\x81\x58\xe1\x06\x65\xd5\x49\xe3\x90\xb5\x67\ \x85\xb5\x43\xb6\x1b\x23\xf8\x40\xb0\xc2\xe1\xae\x8b\xd0\x0f\xb2\ \x1b\x59\xa3\x53\xbc\xa1\xd3\x13\xb4\x04\x68\x00\xe2\x20\x1e\x5f\ \xae\xd1\xd0\x6c\xc8\x50\x81\x69\x41\x25\x36\xc3\xcc\x6d\x62\xe4\ \xbb\xa7\xda\xf8\x4c\x7f\x58\x19\x0e\x1b\xdd\xa5\x9d\xc1\xe8\x5c\ \x45\xa5\x42\x36\x7f\x58\x95\x01\xc4\x23\x78\x53\x3a\x5e\x2c\x49\ \x56\xb9\x4e\xe3\xa0\x0d\x18\x91\x9d\x4e\x01\xe3\x39\x8e\x15\xb3\ \x21\x1b\x09\x96\x37\xdd\xb8\x63\x2c\x24\x87\x1f\xf0\xb1\x5a\xae\ \x0e\x6e\x78\x81\x51\xa8\x85\x0f\x58\x57\x26\xe8\x8e\xff\xbc\x32\ \x69\x00\x50\x79\xd8\xbd\x00\x95\xe1\x46\x0e\x50\x10\x08\x4a\xf0\ \x78\x00\xa9\xe8\x95\x99\x45\x3b\x4b\x48\x80\x4c\x46\xbe\x6d\xd5\ \x5c\x33\x94\xdc\x15\x44\xe2\x9d\xb5\x4d\x0d\xfe\xdd\x50\xce\x15\ \x13\xb5\x21\x51\xfb\xc5\x17\x56\x18\xa9\x7d\x55\x36\xd9\x95\xb0\ \x0f\x40\x34\x0c\xd6\x94\x53\x69\x2f\x21\x81\xaf\xca\xb3\xbc\xf1\ \xfc\x31\x55\x89\x95\x57\xca\x4b\x07\xf2\x22\x31\x64\xcc\x30\x3c\ \x89\x93\x68\xba\xa6\xa3\x3f\xf8\xf2\xce\x53\xc8\xe3\xef\x2c\x09\ \x67\xd6\x60\x9c\x38\x50\x6e\x80\x1b\xb8\xc1\x66\x0d\x24\xcd\x6d\ \xae\x3d\xb0\xfa\xdc\x6f\x5e\xd0\xff\x5c\xb0\x71\xce\x12\xf1\x48\ \xe7\xda\xc2\xd9\x04\xd0\xe4\x71\x05\x12\xf4\xfd\x91\xd9\x09\xe5\ \x79\x6c\xdf\x0d\xb5\xcd\x63\xac\x89\xe3\x18\x51\x6e\x78\xb3\xef\ \xe3\x5f\x82\x7e\x11\xe4\xfa\x80\x36\x58\x87\xcc\xeb\xce\xa2\x83\ \xa5\x03\xde\xa7\x21\x55\x49\x32\xee\x68\x92\x96\x37\x8f\x7e\x49\ \x85\xf5\xc8\x60\x90\x81\x2b\x2c\x6b\x33\x26\x6b\x90\x3e\x52\x62\ \x10\x69\x08\x6e\x66\x28\x9c\x4b\x51\xf1\x5b\xe9\x3d\x0e\x23\x40\ \x85\xff\xb4\xe9\xb0\x33\x82\xc0\x0d\x50\xbb\x11\xca\x2c\xfb\x4f\ \x84\x93\xb5\xa8\xc8\xe9\xba\xe9\x03\xdb\xd2\x8a\x4b\x6e\xc4\x26\ \x06\x12\x7b\x3e\x65\xa4\x3e\xea\x7c\xe6\x57\x26\x8e\xdf\x9a\xf0\ \x06\xae\x04\x42\x4c\x8c\xe5\xcf\xe6\x5f\xfe\x15\xa3\x88\xf1\x72\ \x04\x2f\xfc\x5d\xdf\xb0\xe5\x64\x09\x58\x1a\x51\x98\x1a\x61\xc6\ \x86\xe6\xce\xfb\xbb\xc2\x54\xbd\xbf\xac\xee\xda\xf9\xa2\xbf\xb1\ \x6e\x68\x98\x34\x63\x98\xbc\xc2\x23\x45\x18\x90\xa5\xa5\x76\xd3\ \x94\x58\x4a\xe1\x5a\x58\x61\xe3\xb6\x92\xdd\x0b\xca\xbf\xee\x0e\ \x40\x44\x50\x71\x60\x30\x23\x58\x38\x38\x7a\x01\x15\x78\x8a\x3e\ \x58\x9e\xc5\x0e\xb3\x4b\x9e\x47\xcb\x26\x65\x7a\x56\x20\x72\xe5\ \xd7\x0d\x65\x41\xcc\x45\x6a\xb3\x00\x03\x60\xe0\xec\xb7\x54\xc5\ \x91\xd3\x62\x24\x5c\x48\x25\x74\xa7\xd2\x96\x49\xd4\x03\x32\xae\ \x49\x20\x52\x65\xe6\xdd\xd9\x1d\xa5\x2b\x63\xa6\xe3\x68\x56\x32\ \xd2\xfb\x93\x81\xb2\x96\xaf\x26\x3d\xf0\x79\x83\xaf\x4d\x9b\x49\ \x98\x84\x55\xd9\x3e\x52\x25\x5b\x07\xe1\x3e\x82\x3a\xd8\x60\x8e\ \x18\x8a\x85\xb3\x66\x6c\x3e\x50\xe6\x86\xb5\x85\x5b\x6e\xa1\xac\ \x1b\x03\x0b\xa6\xeb\x06\x81\x2b\x81\x02\x5e\x61\x6c\xdc\x82\x06\ \xf3\xc5\x67\x51\x16\x98\xa3\xe3\x64\xca\x3e\x6a\x7d\x56\x6f\x10\ \x30\x3b\x54\xf0\x83\xdb\x94\xda\x32\x3b\xc5\x65\x43\x39\x28\xfa\ \x9f\x47\xf3\xbc\xf8\x9b\x91\x5b\x34\xfe\xd7\x8f\x68\x07\x90\x66\ \xa5\xfa\x9b\xed\x75\x0b\x83\x96\x5c\xba\xa5\xe3\xe8\x97\x84\xd5\ \x2c\x37\x32\x05\xef\x68\x82\x5d\x55\x2c\x87\x55\x11\x90\xed\xfa\ \x13\x83\x1f\xb0\x2f\x5a\x7a\x25\xbf\x1d\x05\x59\xb3\x66\x6b\x16\ \xf1\x44\x46\xd3\x2e\xdb\xb2\x82\xfb\xba\x02\xab\x6e\xef\x98\xd6\ \x74\x76\x30\x77\x4c\x00\xae\x41\xea\xa1\x26\xbd\xf3\x55\xdf\x7c\ \x76\xdf\x51\xf6\xd1\x34\x28\xab\x2d\xf8\x1b\x09\x8b\xd7\x65\xeb\ \x54\xaa\x95\x1a\xfa\xfe\x1f\x47\xf3\x4e\x55\xaa\x60\x20\x4b\x16\ \x51\x01\x9b\xc4\xcc\xf2\x31\xd7\xe5\x92\x98\xf2\x29\xdc\x45\x8f\ \xee\x74\x19\x98\xaf\xf9\x5a\xf0\x8e\xe6\xbf\x2c\x67\xf5\x03\x47\ \x82\xa6\xbb\x06\xdd\xd8\xe3\x7c\x10\xd6\x0d\x8e\xe1\xa0\xf4\xdb\ \x18\x66\xe4\xc1\x85\x82\xec\xb5\xb2\x2c\x53\x30\x2c\x29\xdc\xa6\ \x24\x41\xba\x81\x50\x9e\x6e\xcd\x38\xf0\x88\x3f\x8f\x67\xda\xb0\ \x6c\x79\xb6\x71\x4e\xe6\x94\x17\x64\x1b\x69\xa8\x38\xc0\x0b\xbf\ \x21\xbc\xd1\xe7\xfc\x26\xd6\x68\x03\xd6\xb9\xb1\xb2\x7e\xc9\xac\ \x26\x87\x32\x4c\x16\xe4\x70\xc3\xf9\x83\xd5\x60\x80\xc9\xdc\xe5\ \x45\xf1\x94\xa0\x51\xef\xda\x03\xfe\x7f\x55\x56\xff\xe8\x76\x67\ \x4f\x87\xfe\x85\x2b\xf8\x85\x8e\xbe\x86\xcc\x03\x06\x72\xf8\x80\ \x28\x5e\xe1\x0a\x32\x02\x17\xa8\x3d\x72\x56\xd6\x5d\x17\x87\x5e\ \x47\x53\x04\x53\x05\x2c\xe1\x95\xa0\x84\x50\x90\xb1\xf8\x0f\xc2\ \x9b\x07\x68\xf1\xd6\xec\x73\xca\xde\x56\x1a\x17\xea\x72\xfd\x11\ \xcd\x85\x71\x02\x0c\xf4\xb2\xe0\x01\x84\x4a\xa8\x5b\x6b\x5a\xe3\ \x30\xb9\x92\xca\x54\x7b\x45\x2e\x4a\xc1\x07\x73\xd8\x36\x4d\x6b\ \xcf\x82\x45\x6b\xfa\x5b\x49\x93\x5f\x20\x7b\x62\x89\x4e\xe8\xac\ \x0a\x26\x32\x56\x17\xdb\x2b\x9c\x60\x55\x3a\x05\xb8\x4e\xd5\x23\ \x3d\x05\x08\x5f\x6b\x55\xe7\x3f\x4f\xef\xf2\x19\xe0\x03\x72\x58\ \x15\x26\xe4\x08\x6a\x86\xa8\x0d\xd0\xb2\x0d\x44\xec\xf0\xe8\xf5\ \x3e\x88\x0a\xa8\xb0\x9b\x14\xe7\x15\x05\x53\xb0\x0d\xb0\x87\xef\ \x68\xfb\x06\x2b\xbe\x04\x60\x76\x0e\xcd\xdc\x15\x84\xf1\xf3\x65\ \xf6\xf6\x35\x74\xad\x55\xf9\x2d\x88\x01\x2d\xd6\xe2\x85\x74\xce\ \xe3\x02\x3f\x7d\x45\xbc\x89\xb8\xa4\x30\x28\x6d\xdb\x0d\x5b\xb9\ \xcd\xac\x32\x94\x25\xf2\xfc\xef\x32\x6e\xd5\xa2\x57\xf0\xee\x8c\ \x46\xdd\x18\x7a\xcd\xcf\xe3\xfe\xdf\x8e\xc6\xa5\x37\xe3\x03\xa7\ \xbf\x54\xe5\x3f\xcc\xef\xf2\x6b\x20\x06\x90\x25\x87\xca\x3a\x8e\ \x0d\x06\x03\xa8\x58\xd0\xd3\xdc\x00\xb2\x17\xec\xba\x79\xfb\xb3\ \x3f\x1e\x60\xd9\x81\xd8\x67\x7b\x60\x91\x8a\x14\xdf\x81\x8d\x2f\ \x26\x68\x60\xdf\x66\x0f\x6f\xcd\x4d\xdf\x50\x26\x79\xda\x3c\x46\ \xf7\x45\x62\x7e\xe8\x49\x00\xc0\x85\x63\xa2\x33\x21\x54\xc8\x2c\ \x46\xdd\xf3\x4b\x3c\x70\xbb\x6a\xdb\x85\xd8\x60\x40\x32\x1e\xc8\ \x1d\x01\xe4\x01\x91\x5e\xc6\x92\x58\xba\x8e\x9e\xed\xf8\x32\xf5\ \x58\xad\xfa\xb7\x9e\xed\xdf\x9e\xed\x32\x8e\xf0\x31\x1f\xf7\xa9\ \x77\x68\xb8\x4e\xb2\x91\x08\x83\x09\x04\x86\x34\x00\x08\x6e\x02\ \x65\xf5\x51\x25\x6d\x0b\x14\x7b\x7d\x1e\x2c\x14\xd7\x67\x47\x9f\ \x88\x7d\x40\x80\x60\x08\x31\xa2\x42\x71\xf6\x40\xd4\x02\xf3\xc2\ \xe3\xa8\x5a\xb2\x12\x58\xfa\x67\xf2\x24\xca\x94\x2a\x2d\x25\xf0\ \x34\x6a\x94\xcb\x51\x7a\x60\x0e\xaa\xf9\xd2\xd3\x20\x4f\x38\x6b\ \xc6\xd4\x29\x73\xe6\xcb\xa0\x2f\xf5\x10\x0d\xaa\x87\x89\xb7\x2d\ \x00\xa4\xf9\x23\xea\x94\xc9\x51\x26\x2d\xe8\xf8\xf1\xd3\x82\x09\ \x56\xac\x4e\x9f\x62\x25\xfe\x43\x26\xc8\x9b\x4a\x8e\xc6\x02\x38\ \x53\xf6\x0c\xda\x60\x57\xc4\xe4\x4b\x23\x86\x5c\x9a\x3a\xe4\x88\ \x11\x23\xc7\x4f\xcc\x5b\x72\xa7\x66\x5c\xe9\x4b\x97\xd8\x0c\x3c\ \x5e\x64\x78\xc1\x83\x67\x06\x62\xc4\x80\x17\xd3\x9d\xc1\xb8\xb1\ \x0c\x19\x57\x1c\x03\x46\x7c\x05\x4f\x64\xc9\x75\xc9\x35\xfb\x91\ \x0f\x4c\xbe\x7c\x47\x50\xf1\x41\xd5\x87\x9b\x11\x3e\xa6\xb2\x98\ \x52\x45\xb1\xa1\x43\x10\x0b\x17\xca\x92\xcd\x90\xe2\x6d\x10\xdc\ \x5e\x6c\x3d\xfa\xa2\x89\xca\xe0\xc2\x4f\x5a\x8a\x73\x33\x26\xcd\ \x9c\x3a\x97\xeb\x54\x7e\x5c\x26\xcc\xe5\x46\x8b\xc6\x24\xfa\x41\ \x1a\x00\x00\xa8\xc8\x6c\xcd\xca\x84\x8c\x55\xab\x64\xa0\x92\xe7\ \xfa\xbd\x45\x10\xb0\xea\xbc\x9c\x33\x6c\x16\x2d\xfc\x60\x33\xc8\ \xcd\xa5\x9b\xe6\x49\xa7\x66\xc4\xf2\xf2\x27\xd6\xb7\xaf\x62\x7c\ \x61\x66\xd8\x15\x7f\x39\x66\x59\x62\x09\x26\x76\x45\x64\x00\x52\ \x26\xa0\x64\x93\x35\x43\x8e\x18\xd7\xf4\xf2\xc3\x07\x19\xe6\x03\ \x8c\x0b\xa5\xf5\xf1\x83\x3d\x1b\x98\x62\xca\x06\x14\xed\x60\x8f\ \x38\x0f\x80\x50\xdb\x45\x2b\xca\xf6\x5a\x44\xb5\xd0\xc1\x5b\x6f\ \x7a\xb8\x32\x1c\x8e\xfe\xc1\x59\xd2\x84\x74\x37\xd9\x14\x9d\x8f\ \xce\x49\x57\x14\x74\x3f\x51\xe7\x49\x6f\xd7\x01\x70\x40\x1b\x50\ \xe9\xe1\x15\x77\x47\x51\x25\x9e\x93\xbd\x65\x85\x5e\x10\xf8\xcc\ \xe1\xc8\x39\x85\xe1\x51\xd6\x59\x68\xc9\x30\x83\x7e\x93\x89\xf1\ \xc4\x13\x73\x39\x86\xd7\x29\x78\x55\xd6\x17\x1e\x7e\x35\xd3\xcc\ \x65\xff\x4d\xb6\xa0\x9d\xff\xf1\x35\x59\x5f\xc1\x04\x23\xd9\x98\ \xc4\xe8\xc7\x57\x62\x82\x9e\x82\xc7\x08\x00\x5c\x13\x86\x37\x61\ \x18\x01\x8c\x2a\xaa\x00\x63\xcf\x30\x1b\xb8\xb0\xc1\x03\x3b\x50\ \x04\xc2\x0e\x16\x71\xda\x69\xa7\xf6\x3c\x20\x8e\x43\x7d\x18\x51\ \x4b\x95\xdd\x01\x97\x23\xab\x28\xb1\x94\xcd\x20\xc7\xf9\xc4\xdc\ \x4e\xd9\x04\xc5\x13\x74\x33\x15\xd5\x9b\x91\x4f\xa5\x71\xce\x39\ \x28\x10\xd5\x95\x56\x4f\x56\x65\x55\xaa\xe4\x75\x85\x5e\x1b\xf8\ \x84\x91\x82\x23\xec\x79\x01\x26\x7c\x67\xe0\xd1\x8c\x80\xc4\xdc\ \x97\xe6\x9e\x13\x8a\x61\xe0\x9e\x86\x1d\x46\xe6\x9b\x75\x02\x9a\ \x27\xba\x7c\xc9\xe0\xa7\x9f\x9a\xe9\x37\xa8\x62\xfa\xf5\x92\x5d\ \x07\xc0\x00\xc3\x47\x69\xf8\x7e\xb8\x81\x2a\xc3\xe4\xa6\x69\x45\ \x99\x72\x3a\xaa\xfe\x88\xa6\x40\xb1\x41\x42\xa7\xa6\xba\xd5\xaa\ \xad\x3a\xfc\x0f\x4b\x31\xf1\xd4\x1c\xac\x14\xfb\x54\x53\x36\x2e\ \x01\x55\x23\xc7\xdd\x71\x13\x43\x0b\x4e\x41\x59\x65\x0b\x28\xd8\ \x81\x6c\x77\xcb\xa6\xd7\x2c\xb4\xd7\x24\x6a\x16\xb5\x67\x78\x31\ \x99\x60\xf3\xf1\xf3\x04\x3f\xfe\xf9\xa5\x57\x65\x95\xc5\x79\xd9\ \xb8\xcd\x38\x82\x67\x66\x99\xf5\x65\x74\x84\x0c\xae\xb0\xf4\x0a\ \x6a\x15\xf8\xd7\x62\x62\xec\x95\x28\x00\x23\xe0\xcb\x07\x30\x3f\ \x7c\x08\xc2\x30\x2e\x0c\x93\xe2\x0e\xa0\x66\xba\x50\xd8\x0c\x89\ \x63\x8a\x34\xad\xa1\xd8\xc7\x0b\x0b\x0f\xdb\x44\x49\x0f\x3f\x1c\ \xb1\x27\xd9\xc0\x3a\x88\xdd\x19\xe3\x24\x1d\x4e\x15\x1b\xd5\x6b\ \xaf\x1d\x7f\xf7\x54\x0b\x85\x5f\x35\xac\x1f\xac\x98\xe0\xc7\x78\ \x47\x45\x25\x55\x7a\x59\xbe\x91\x02\x1f\xd3\x82\x19\x73\x61\x84\ \xc9\x20\x46\x1a\xfc\xf0\x43\x8e\x65\x05\x8a\x81\x6d\x80\x00\xc2\ \x79\xc5\xd0\x50\xab\x5b\x34\xeb\x46\x33\x28\x03\xd3\x4d\xff\x79\ \x67\x65\x33\xe0\x75\x4d\x76\x00\xf4\xd2\x8c\x37\xde\x80\x60\x44\ \x0c\x3b\x40\xda\xda\x06\x96\x3e\x70\xfc\xf1\x0f\x1d\x1f\x76\x1f\ \xe2\xa8\x92\xfe\x90\x46\xb5\x6c\x45\x47\xe3\x7a\x34\x2c\xf7\xdc\ \x71\xe0\x5d\xd3\x20\x68\xa0\x71\x37\xae\x3b\xf9\xb4\xd5\x50\x1d\ \xeb\x2a\x38\x7a\x26\xdb\xd1\xb8\x54\x06\xc4\x61\x40\x10\xe3\x39\ \xa9\x32\x3e\x0e\xc4\x90\x82\x3a\xb8\x67\x07\xf3\x7b\xbd\x10\x76\ \xc6\x5a\xe0\xd2\x89\x6f\xe9\xa9\x31\x77\xda\x93\x80\xe2\x54\xa8\ \xbf\x1c\xed\x75\x7f\x8a\x0c\xbb\x22\x04\xc1\x0e\x2c\xad\x5d\x0a\ \x44\xcc\x35\xf6\x43\x0c\xaa\x29\xea\x07\x69\xe8\x9d\x11\x7e\x20\ \xa2\x2c\x6c\x61\x44\x24\x42\xde\xa8\x2c\x92\x3c\x85\xac\xad\x0f\ \xb2\xa8\x12\x13\x8c\xf0\x81\xb6\x5d\x0f\x7b\x73\x4b\x00\x1a\x30\ \x96\x37\x58\x55\x0c\x63\xb1\xca\x15\x75\xcc\x27\xc4\xef\x98\xc0\ \x15\xac\x60\x85\x2b\x42\xc1\x1d\xa9\xb0\x22\x1a\xd0\x58\x9c\x57\ \xbc\x53\x38\xc9\x85\x21\x06\xeb\x48\x41\x07\x72\xb7\xbf\x33\x74\ \xa0\x17\x1d\xe0\x62\x00\xc9\xd1\x09\xd0\xd9\xe9\x40\x0e\x5a\xd0\ \xcf\x00\x44\x97\x53\x94\x8b\x41\xec\x92\xdd\x03\x33\xb3\xb4\x2e\ \xca\x2e\x42\x85\x9a\x01\x07\x01\x90\x85\x61\xfc\xa0\x6b\xc3\x50\ \x8d\x29\xb6\xb0\x05\xd6\x98\x62\x79\x29\x72\xc8\x03\x50\xa4\xc8\ \x88\x18\xfe\x41\x16\x64\xa0\x11\x51\xc8\x80\xaa\xdf\xd8\xb0\x92\ \x10\x4b\x80\xdd\xbe\xb7\x43\xee\xe1\x2d\x63\x35\x8a\x8e\x10\x85\ \x18\x04\x57\x34\x81\x94\xae\x70\x05\x0a\x5a\xe0\x15\x3f\x40\xe3\ \x00\x71\x70\x40\xfc\xa2\x38\xc5\x2c\xc5\x20\x06\xe6\x48\x81\xcb\ \xb4\xf8\x9e\x0e\x7c\x11\x2d\x33\x68\xd3\x18\xb1\xf5\xba\x71\x21\ \x30\x41\xe8\x9a\x8c\xea\xfe\xb3\xae\x39\xd6\xf1\x4f\x7e\xe2\xe5\ \x0a\x28\xd8\x01\x3f\x1d\xe6\x1a\x18\x9c\x97\x16\x47\xd0\x8b\x6b\ \x5c\xc3\x14\x5d\x33\x21\x38\x97\xc7\x10\x89\x2c\x64\x91\x46\x88\ \x07\x24\x9f\x42\x94\x1a\x5a\xf2\x86\x0b\xd8\xa1\xdd\x38\xa9\x13\ \xa7\x94\x0f\x26\x81\x0b\x25\xe1\x58\x51\xca\x26\x24\xe0\x1d\x09\ \x48\x65\x55\xa2\x71\x80\x03\x50\x00\x64\x5e\x61\x56\x1b\x12\xfa\ \x86\x18\x38\x42\x1a\x1d\xf0\x02\xd5\xb8\x38\x83\x1f\x88\x01\x0f\ \xbc\x14\xdd\x29\x28\xa4\xb3\x75\x69\x06\x81\x8e\xa0\xd9\x9e\x4c\ \xa7\x20\x42\xb9\x31\x18\xbd\x90\x5d\x2f\xd8\x65\xd2\x68\x72\xf1\ \x8b\xd3\x2c\xd0\x0c\x64\xe0\x45\x2d\x66\x67\x04\xd7\x70\x41\x37\ \x5d\xe0\x82\x11\x15\xec\x84\xc9\x8b\x88\x46\xc4\x01\x85\xa1\x1a\ \x61\xfe\x46\x6e\x7b\x5b\x3b\xdb\x69\x09\x68\xe4\xb0\x93\x77\x1b\ \xd2\x4c\x34\x06\x24\x7c\x76\xec\x2b\x8a\x73\x45\x02\xce\xf1\x0e\ \x03\xa0\x00\x05\xf2\x70\xe2\x01\xce\x71\x80\x39\xcc\x12\x1f\x09\ \x6d\xc3\xfd\xa4\xe1\x05\x69\x38\xe2\x65\x23\x58\xc7\x13\x46\xf1\ \x04\x31\x28\xe6\x2d\x52\x63\x63\x4c\xdb\xc5\xa7\xc9\x7c\xb4\x2f\ \x43\x2b\x63\x9e\x8c\xe9\xc0\x5e\xa4\x34\x18\x2b\x20\xac\x61\x79\ \xa9\x58\x2e\x8e\xe9\x0a\x1d\x18\x01\xcc\xb2\x99\x85\x6b\x0c\x63\ \x18\x37\xd5\xe9\x4e\x0b\xb6\x01\x7f\x2d\x04\x0a\xa4\xb2\x87\x42\ \xfa\x60\x00\xe9\x09\x91\x9d\x49\x95\xdb\x52\x35\x99\x37\xe7\x00\ \xc5\x27\x34\xd1\x18\x55\x6b\x74\x1e\x3f\x98\xe0\x1d\xe7\xb0\x44\ \x34\x4c\x66\x80\x18\xa0\xe2\x00\x00\x00\x96\x03\xcc\xda\xac\x37\ \xb4\x61\xa1\xd0\x72\x44\x18\x7e\x80\xa8\x0e\xa4\x00\x0c\x7a\x00\ \x03\x31\x0e\x23\x35\xa9\x69\xd4\x3f\x10\x94\x4c\x9c\x08\xc4\x17\ \x47\x00\xe6\x8c\x7a\x52\x63\x77\xd7\x65\xd2\x95\x4a\x93\xb0\xd1\ \x3c\xef\x34\x0d\x93\x45\x9a\x6a\x71\x9b\x96\xc5\x29\x66\x57\x63\ \xc2\xe2\x3d\x80\x0f\x0e\xe1\x46\x2d\x26\x99\x4e\xc7\x3d\x05\x6e\ \xfe\xa7\x4d\x2a\x4b\x54\xab\x37\xe4\x30\x07\x57\xb1\x95\x2d\x19\ \x54\x49\x06\x14\xb8\x02\x58\x09\x30\x81\x1d\xe4\x21\x0f\x07\xf8\ \xf6\xb7\x7c\x88\x46\x0c\xe6\xb1\xd0\xfb\xb5\x2c\x05\x3f\x70\xc4\ \x35\x1c\x91\x82\x27\xcc\xa4\x19\x90\xbd\xc2\x5e\x0c\x25\x28\x75\ \xc5\x51\x06\x86\xf9\xe8\x47\xcd\x98\x98\x06\x21\xe8\x40\xe1\xe2\ \xa8\x49\xcd\x3b\x4d\x5e\xb6\x94\xb0\x32\x8d\x2c\x7b\xab\xc6\xcd\ \x9b\x76\xb3\x9b\x82\x2c\x21\x7d\x27\x62\x04\x8f\x74\xa7\x46\x34\ \x62\x82\x69\xff\x8b\x3d\x4b\xe0\x62\x87\x52\x8d\x0e\x73\xca\x77\ \x60\x2b\xb5\x80\x71\x5d\xc6\xaa\x2b\xe6\x81\x82\xaa\xcc\x03\x15\ \xe7\xc8\xce\x39\xf8\x90\x82\x5a\x4e\x4e\x1d\x7c\xb8\x86\x34\x7a\ \x61\xd3\x14\x84\xe1\x33\x7a\x78\x02\x1e\xce\xd0\x0b\x03\xae\xd1\ \xba\x38\x9e\x5d\xe8\x62\xcc\xa7\xd5\xdd\xe9\x80\x21\xbd\x4c\x66\ \x52\xea\x3f\xc2\x2e\xb6\xa5\x5f\x0c\x72\xd5\x1e\x3b\x82\x2c\x4c\ \x16\xa7\xac\x19\x81\x20\x37\xa0\xa9\x27\x74\x84\x09\xfb\x1d\xe2\ \x8d\xa4\xfc\xdf\x00\x67\xac\x48\xac\xd5\xf2\xf9\xb6\x7c\x14\x3f\ \xd8\x01\x05\xe3\x59\x70\x55\x50\x60\xbf\x18\x9c\x39\x77\xe7\xfe\ \xb8\x46\x34\xd6\x0c\xad\x11\x70\xd0\x11\xfe\x00\xc3\x13\xda\xd2\ \x0c\x3c\x38\x42\xa3\x6a\xa4\xeb\x15\x54\xfa\x40\xd4\xcd\xc0\x11\ \x0a\x1c\x74\xba\x4c\x57\x27\x38\xe1\xa1\x17\xd5\x96\x69\x64\x10\ \xeb\x45\xc8\xb2\x37\xb2\x1d\xf8\x96\x52\x30\x3d\xe9\xd5\x48\x63\ \x18\xbf\x73\xee\x10\x05\x07\x65\x51\x8b\x9a\x25\x39\x81\xce\xde\ \x8a\x74\x4f\x55\x1f\xc5\x0e\xd1\x48\x02\x0a\xbe\x73\x2c\x14\xc4\ \x00\x1a\xbd\x55\x8a\x16\xa5\x21\x8d\x14\xa4\x00\x3b\xb9\x1b\x41\ \x0c\xc0\xf0\x81\x23\x08\xcd\x11\x3f\xf8\x9c\xce\x14\xb3\x97\x92\ \xb6\x4b\x32\x81\x21\x90\x48\x0d\xb8\x20\x01\xcd\x0e\x33\x2e\xc6\ \xc3\x35\xaa\x7d\x0d\x19\x5c\xe3\x4f\x21\xef\x05\x90\xd9\xdb\x01\ \x62\xf0\x63\x06\x00\x1f\xa4\x34\xae\xa1\x0a\x0c\x8d\xe2\xa8\x5b\ \x79\x01\x1d\x6c\x1e\x65\x76\x57\x32\x62\x3f\x19\x5f\x54\xe7\xad\ \x6a\x26\xc8\xa3\x9f\xae\x88\xf5\xc9\xec\x60\x80\xdd\xa6\xa0\xc2\ \x5a\xdc\xc2\x39\x38\xb8\x85\x11\x38\xe2\x0d\x0b\xbf\xe2\x0c\xf8\ \xc0\x39\x62\xb8\x18\x99\x06\xbc\xae\x9f\x0a\x73\x19\x2f\x39\x9b\ \x76\xb5\x43\xa3\xff\x24\x13\x72\x90\x13\x3b\xe4\x24\x07\xfe\xf9\ \xb6\x21\x9d\x96\x66\x7c\x86\x07\xfa\xb3\x29\x30\xd2\xc0\x8d\x34\ \x7c\x40\x88\x2f\x78\xb2\xe0\xfc\xcb\xf3\x76\x27\xe0\x27\xf6\xbc\ \x89\xd0\x87\x8e\x82\xb0\x36\x21\x14\x7e\x08\x85\x1d\x20\x3f\x8f\ \x79\x38\x60\x1e\x29\xa8\x75\x36\x73\xb7\x05\x47\x44\x03\x18\x47\ \x38\xc2\x1b\x92\x3b\xb4\xd1\x55\x7b\x5c\x0c\x7c\x9d\x08\x64\xea\ \x05\x6b\x8b\xab\xf5\x07\x34\xfb\xc5\xab\xed\x63\xa0\x15\x26\x30\ \x16\x02\x79\x30\xf2\xd8\x6d\x6d\xa1\x3b\x0d\xd8\xec\x45\x18\x9e\ \xc0\x04\x30\x08\xc4\x3b\xf4\x5e\xf7\xe0\x79\xbe\x23\x26\x24\xc7\ \xb5\x54\x45\x35\xc7\x50\x00\x2c\x4b\x18\xa0\xd5\x90\x57\x9c\x3c\ \x6a\x89\x0a\x83\x43\xfa\x1c\x29\x78\xc3\x11\xda\x20\x1a\x60\xe0\ \x12\xb9\xc3\xc6\x8c\xd7\xf9\x22\x82\x38\x52\xd0\x4b\xad\x17\x17\ \x4c\x0f\x04\x98\xf7\xf7\x62\xf5\xc4\x66\x7d\xb5\xbd\xa0\x58\x48\ \xe7\xce\x5a\xf9\x18\x05\x18\xd4\x01\x9e\x69\x1e\x1f\x7c\x06\x68\ \x78\x03\x37\x7c\x80\x40\x7c\x1a\xa8\x25\x5f\xf2\xed\xc8\x28\x74\ \x4f\x0e\xcd\x13\x3e\x1d\x9e\x10\xb5\x40\x58\x69\x55\x12\xb0\x82\ \x1d\x70\xa0\x09\x18\x40\x34\xe0\x82\xd3\x65\x07\xc0\xfe\xd5\x94\ \x88\x99\x95\x3f\xf8\xc3\xe4\x88\x58\x18\x84\x81\xd0\x54\x5b\xe9\ \xe0\x81\x49\xb9\x18\x2f\xb9\xdf\xfb\x19\x86\x63\xe8\x47\xed\x58\ \xd4\x36\xc9\x1e\x2f\x55\xdb\x63\x65\x51\xca\x41\x5a\x07\x34\x03\ \x3f\x40\x05\xce\x90\x43\x1e\x5d\xc3\x11\x8c\x02\x19\x7c\x4c\x0c\ \x18\x41\x1f\xc4\x00\xaa\x84\x12\x6f\xd0\x90\x03\x3a\xe0\x8e\x74\ \x8f\xf3\x71\x4c\xaf\x54\x87\x10\x91\x41\x1c\x4c\x9f\x01\x1c\x91\ \x09\x70\xa0\x40\x41\x5d\xc0\x95\xe0\x6f\x79\x5f\x2d\x05\x01\x5a\ \x01\x43\x0c\x80\x9e\xd0\xac\xdd\xd0\x5c\x1c\x61\x31\x5a\x0d\xde\ \xe0\xfb\x25\x86\xb3\xa9\x57\x7a\x59\x14\x2f\x51\xcb\xe5\xf0\x5f\ \xee\xf4\xc2\x99\x80\x81\x4c\x28\x22\x18\x34\x43\x09\x32\x61\x56\ \x08\x84\x02\xca\x90\xcd\x39\xc5\x0b\x8c\xc7\xce\x65\xe1\x7f\x25\ \x40\x1d\x24\x5e\xaa\x45\x15\x92\xe0\xd3\x3c\x00\xcb\x39\x34\x01\ \x12\xb1\x42\x97\x45\x03\xe6\x65\x87\x34\xe8\xde\x16\xb0\x15\x86\ \x99\x55\x0c\x84\xc1\xe7\xad\x83\x17\xbd\xdf\xea\xe9\x9f\x4b\xf1\ \x58\x0d\x7a\x41\x61\xfc\xa2\x20\x8a\x4b\x64\xf0\x12\x64\x8d\xc0\ \x63\x15\xa2\x21\x06\xd9\x35\xa4\x41\x00\xde\x4c\xfe\x5c\x41\xc5\ \x11\x70\x10\x1e\x7c\xc0\xf0\x29\xdc\x07\x90\x01\x18\xb4\x00\x18\ \xa0\x0a\x19\x50\x0f\x79\xf8\x81\x23\x1d\x45\x0b\x64\xa2\x26\x9e\ \x16\x4b\x54\x62\xe0\x00\x5d\x28\xb5\x00\x34\x00\xcb\x3b\x98\xa2\ \xab\x61\x60\x32\xda\xda\x39\x70\x9e\x03\x38\x00\xc1\x99\xc3\x3a\ \x38\x02\x00\x3c\x94\xb3\xad\xde\x62\x41\xd6\x19\x70\x5b\xff\x00\ \xe4\x43\x29\x56\x17\x59\xdb\x35\x3c\x1a\x32\xce\x23\x7b\x8d\x00\ \x1e\xfc\xdf\x73\x7d\x4e\x5c\xcc\x04\x3f\xe6\x4e\x16\x1c\x01\x18\ \xf8\x03\x37\xb4\x41\x02\x7e\x40\x2d\xb4\x80\x02\xa2\x06\x37\xe4\ \x5c\x2d\xcc\x43\x51\x79\x1a\x39\x96\xa3\x39\x36\x81\xdb\x4c\x07\ \x51\x40\x95\x27\x92\x81\x01\x90\x62\x02\xb8\x82\x2a\x39\xc0\x2a\ \x26\xe3\x08\x9c\x43\xae\xe5\x1a\xc1\xb5\x55\x59\xf8\xe2\x42\xf2\ \x18\xb5\x10\x64\x59\x18\xa3\x2e\x2a\x16\x64\x11\x63\xb5\xe9\x9e\ \x43\xb2\xd7\x16\x74\xc0\x0c\xfc\x1f\x54\xd4\x81\x00\xa6\x81\x56\ \x3a\x02\x1b\x22\x1c\x68\xa0\xc6\x11\xf8\x41\x86\xc8\x02\xf0\x18\ \x01\x4a\x52\xe3\x77\xbc\xda\x4a\xb2\x64\x4b\x2a\xe2\xcf\xe5\x04\ \xf9\x8c\x0f\xf4\xc9\x96\xf4\x01\x4b\x1c\xe4\xfe\x9b\x3c\x46\x25\ \x3d\xf6\xc2\x01\xa4\xc0\x3a\x48\x83\x59\x8c\x00\x44\x09\xa1\x31\ \xbe\x07\x21\xf6\x4f\x0d\x12\xa3\x61\x56\x8d\x5e\x1a\xe2\x08\xcc\ \x00\x33\x32\xdf\x13\xd4\x01\x3d\xf9\xde\x43\x7a\x03\x13\x2c\x1c\ \x30\x48\xe2\x48\x1a\xc1\x47\x46\x09\x52\xb1\x25\x4b\xb2\xc4\x50\ \xd0\x84\x91\x4c\xd5\xae\x84\x12\x13\xd4\xe4\x39\x98\xc0\x78\x8c\ \x62\x63\x6a\x5e\x3d\x02\xc3\x5f\x72\x9b\x10\x26\xa5\x51\x2e\x26\ \x5a\x20\xe4\xcb\xf4\x5f\x6c\xfa\x66\xca\x75\x40\x3e\x48\x26\x7d\ \x48\xe4\x51\x80\xc1\x0c\xf8\x66\xd5\xc4\xc0\x28\xe4\x83\x37\x00\ \x83\x67\x82\x64\x37\x66\x88\x1f\x94\xa4\xfc\x20\x9f\x68\x8e\xa6\ \x4b\x12\xc9\x91\xc0\xd6\x81\x65\xa6\x01\xcc\xc3\x12\xa1\xc2\x6f\ \x1e\x5c\x0a\x00\x83\x50\x16\xa6\x6f\x12\x66\xca\x0d\x64\x79\x76\ \x9b\x2e\x05\x59\x2f\x1c\xc1\xf0\xb9\x05\x39\x08\x9f\x91\xfc\x00\ \x1b\x56\x8d\x23\x7c\xcc\x0f\xc4\x80\x40\x70\x64\xce\x65\x45\x86\ \x64\x08\x1d\xac\x65\x76\x4a\xd9\x39\xc6\xa5\x3a\x6e\x59\x5a\x12\ \x45\x0c\x70\xdf\x6f\x6e\xde\x41\xe4\xce\x31\x02\x67\x43\xbe\xa7\ \x86\xea\x4e\x1a\xe4\x03\x3f\x80\x81\x22\xfe\x4e\x26\x51\x80\x81\ \xfe\xd0\xd4\xa2\xfc\x00\x30\x80\x00\x47\x72\xa6\xfc\x5c\xa2\x24\ \x21\x68\x82\x2a\xe8\x76\xc6\xa4\x72\xd0\x13\xbd\x8d\xa8\x84\x96\ \xa7\x9c\xe9\x12\x54\x6e\xa8\x8f\x3e\xe4\x32\xa2\x1b\x18\x68\x65\ \x1a\xb8\x40\x90\x8d\x40\x0a\xa4\x41\x0c\x78\xc3\x11\x70\xc3\x11\ \xc8\x43\x02\xd2\x01\x18\x54\xc9\x6f\xc4\x4d\x8c\x66\xe7\x76\x46\ \x60\xac\x10\xc9\x5c\x52\x15\x19\xf4\xa8\x5e\xbe\xa2\xe5\x24\x0a\ \xb7\xfd\xa8\x99\xf2\x1f\x1e\xa0\xdb\x73\x91\x03\x36\xb1\xd7\x7c\ \x3a\x69\x2d\xdd\xcb\x66\x62\x63\xf5\x60\xe7\x95\x66\x27\xdd\x94\ \x1a\x3d\x79\xe2\x10\xf1\xc1\x86\x22\x69\x8e\x9e\x69\x32\x0e\x61\ \x63\x6e\x41\x33\xa8\xe9\x13\x94\x28\x4d\xf5\x42\x0c\x38\xe7\x0f\ \xfc\x00\x1f\xc4\x5c\x0c\x64\x48\x02\x62\x05\x8c\xde\x29\xbb\xf9\ \xdc\x69\xf2\x69\x28\x45\xa3\x86\xda\xd4\x7e\x0a\xaa\xa8\x4a\xe5\ \xa1\x0e\x8b\xa2\x6a\xd1\x35\xe4\xdd\x66\x02\x03\x76\x6c\x01\xd6\ \x78\x26\x37\xc8\xc3\xa5\x62\x6a\xa6\x36\x01\xa7\x6e\x19\x18\xb8\ \x00\x98\x8e\x2a\xaf\xfa\xe8\x16\xfc\xc0\x55\x9e\x6a\xee\xf0\x41\ \x72\x01\xc3\x73\xea\x8f\x34\xa0\x82\xfe\x0c\x7d\x40\x02\xd0\xaa\ \xb3\xce\x68\x97\xaa\x5a\x1d\xe8\x67\xaf\x56\xab\xa0\x8e\x80\x07\ \x05\x6a\xee\x38\xc2\x73\x76\xc8\x35\x44\x2a\xd6\x70\xc3\x77\x08\ \x9e\xb3\xde\xe9\x39\xde\x6a\x6c\x21\x27\xaf\x59\x2b\xbb\xfa\x2a\ \xff\xfd\xea\x11\x28\x69\x1a\xcc\x03\x37\xe4\x03\x35\xae\x53\xb9\ \x96\x2b\x69\xde\xa8\xf9\xf0\x43\x16\xf0\x9a\x9c\x89\x5b\xa8\xb6\ \x2b\xc1\x36\xe6\x35\xdc\xab\xdb\xd8\x69\xbe\x62\xea\x8e\x80\x26\ \xbf\x6e\x45\xa2\x0a\xd9\x90\x71\x13\xa2\x90\xe9\xba\xf2\xda\xae\ \x16\x2c\xc1\xf2\x81\xd0\x29\xec\xc2\x32\x6c\x02\x3c\x6c\x8d\x90\ \x68\xd5\x6c\x53\xcc\x39\xc2\x9b\xb9\x0c\xaf\x49\xda\xa4\x91\x90\ \xc6\xbe\xac\x16\xcd\x80\xce\x7d\x2c\xcd\xce\xa8\xc8\x12\x45\x1d\ \x28\x2a\xc0\xee\x68\xd5\x5c\xec\xa4\x41\x25\x99\x0e\xac\x5e\x12\ \x2a\xcc\x8e\x00\x08\x70\x8c\xc7\xd2\x2c\xad\x2e\xdf\x27\xf2\x6b\ \x3e\xe4\xd2\xfe\x48\x25\xd5\x70\xd0\x40\x56\x6d\x31\xfe\x28\xd1\ \x6a\xec\xc1\x72\xcc\xac\x2a\x6d\x39\x2e\xe8\xcd\x12\x05\x3f\x78\ \x11\x43\x3a\xe4\x40\x62\x1a\xcc\xb2\xab\xab\xaa\x69\x68\x7a\x2d\ \xcd\x32\x6d\xd8\xd6\x01\xa5\x31\xfe\x5a\xc6\xee\xcf\x16\x64\x6d\ \x90\x45\x96\x61\xe2\x6d\xda\x6e\x01\x39\x58\x49\xd7\xba\xed\x68\ \x26\x40\x25\x1e\x18\x89\xf2\x1a\x37\xad\x17\xde\xf2\x2d\x4d\x9d\ \xc1\xdd\x46\x6d\x86\xa6\xad\x89\xf6\x1d\xc3\x08\xae\xe0\xc2\xad\ \xc8\xf2\x03\xa6\x75\xd1\x42\x1e\x26\x41\xd6\x6d\xd5\xe8\xed\x54\ \x36\x6e\x21\x32\x6e\xbb\xfe\x80\xaa\x58\xae\xe5\x62\x2e\xbf\xe6\ \x6c\x4d\x19\x23\xc6\x82\x49\x6f\xce\x23\xec\x42\x6e\xb7\x4d\x5d\ \xd5\x4e\xe5\x7a\x49\xee\x16\x78\x43\xe5\xaa\xae\xea\x12\xee\xc3\ \x8e\xc2\x0f\x70\x10\xc6\x1a\xe3\xee\xea\x65\x07\x74\x2e\xff\x05\ \x21\xc6\x12\x56\x51\x9a\xee\xa8\x6e\x41\x1a\x90\x07\xb9\x02\xaf\ \xdb\x82\xad\xaa\x8d\x02\x12\x88\x9b\xc5\x5a\xac\xf4\x82\xc9\x85\ \xd2\x54\x31\x1a\xe3\x36\x59\xc8\xf9\x06\xac\xe4\x56\x0d\x89\x59\ \x0f\xf6\x62\x2f\xeb\x3e\x9f\x37\x64\x41\xd5\x58\x16\xa5\x59\xc8\ \xc5\x3a\x24\x64\x3d\x6e\x36\x59\x2d\xec\x6e\x13\x88\xe5\xa1\xfa\ \xae\xef\x35\x4c\x69\xe0\xbe\x6f\x8c\x36\xec\x81\xd5\x41\x3b\x0c\ \x83\x20\x0d\x03\x0f\x78\xc3\x35\x50\xda\xbf\xf2\x9a\x7b\xd6\xd4\ \x43\x4a\x9a\x7c\x1e\x2f\xcb\xfe\x72\x13\xc6\x0a\xed\xcb\x0e\x03\ \x18\x1c\x30\x02\x27\xb0\xcd\x0a\x51\x1d\xec\x80\x08\x88\x00\xa5\ \x3d\x40\x0a\x9b\x02\x00\x94\xe0\xca\x92\xe9\x20\x46\x1a\x2f\xcd\ \x94\xca\xe1\x6f\xec\xf6\x2c\xda\xae\x2f\x4d\xf9\x2d\x09\x97\xf0\ \x95\x9e\xf0\x27\xf1\x83\x0b\x08\x52\x21\x0d\x03\x12\xc8\x42\x3b\ \x1c\x31\xf9\xae\x2b\xe7\x4a\xda\x63\x0d\x70\x36\x11\x56\x44\xf9\ \xf0\x3c\x5e\xc3\x3b\x08\xb1\x10\xc7\xef\x56\x18\xb1\x52\x6c\xc1\ \x2f\xec\xc0\x26\xec\x80\x0a\x70\xc3\x0e\x04\xd2\xc0\x62\xac\x06\ \xdf\x66\x36\x71\xee\xba\x62\x31\xed\x5a\x29\x17\x23\xb0\xf6\xd2\ \xd3\x13\x3c\x80\x08\x1c\x99\xc0\x6c\x82\x2c\xf0\xc0\x0e\xfc\xc0\ \x11\x63\xda\x1a\xf3\x9f\xf9\xc6\x59\x0f\xcb\xb1\x63\x9e\x43\x1d\ \xd7\xb1\x02\xd3\x13\x20\x77\x8a\x08\x8c\x48\xa6\x80\x4a\xd8\xec\ \xc0\x30\xac\x86\x0b\xb8\x6c\x54\xf2\x12\x37\x79\x01\x08\x2b\xb2\ \x16\xd1\x71\x23\x97\x30\x4b\xd0\x13\x08\x20\xc1\x03\x70\xc0\x03\ \x88\x88\x08\x2c\x4f\xa7\x64\x8a\x37\x3c\x00\xa5\x99\xc2\x04\xeb\ \xef\x63\xa9\x15\xe8\x8a\xf2\x6f\x95\xb2\x2f\x37\x01\x19\x8c\xc2\ \xfc\xba\x00\x0a\x61\x4a\xfe\xd8\xa8\xc0\xc0\x68\x4a\x26\x0f\x92\ \x29\xd4\x2d\xf2\xea\x32\x2f\x3b\x24\x29\xfb\x72\x17\x37\x01\x37\ \x4c\x30\x0a\x2d\x8f\x0a\x6c\xb3\x2c\x1c\x0f\x45\x0c\x03\x09\x51\ \x9a\x20\x41\x5a\xf9\x76\xd1\x2e\xf3\x32\x23\x53\xb3\x2f\x5b\x42\ \x9a\xb9\x40\xa7\x14\x92\x19\x6f\xf3\x36\xef\x80\x38\x80\x00\x32\ \x1f\xf1\x20\x09\x12\xaf\x4d\x1d\x07\xc7\x6e\x22\x8b\xf2\xae\xf6\ \xa4\x3a\x0f\xb4\x25\x0c\x03\x26\x17\x92\x0a\xfc\xdd\x3c\x9f\x0d\ \x47\x80\x80\x1a\xaf\xc6\x64\x71\x53\x05\x1f\x6f\x34\x3b\x26\x17\ \xd5\x54\x3a\x0f\x34\x35\x5b\xc2\x01\xa0\x82\x88\x3c\x80\x0a\xe8\ \xc1\x0b\x20\xf3\x03\x08\xd2\x0e\xd4\x82\x43\x9b\x50\x91\xd9\x32\ \x05\xc7\x71\x34\xeb\xde\x15\x1b\x63\xd5\x64\xb4\x46\x6f\xb4\x25\ \x1c\x8f\x3d\x6c\x33\x08\x14\x8f\x2a\x94\x90\x3d\x17\x84\x29\xec\ \x54\x4b\xdb\xb2\x44\xbb\x34\x16\x7f\x2f\x8f\x9a\x85\x06\x4f\x73\ \x4d\x97\xb2\x25\x58\xc2\xa6\x3c\x00\x76\x98\x90\x6b\x70\x43\x26\ \xb7\x86\x13\xeb\x73\x16\x88\x00\x4e\xa9\xec\x39\x7f\xea\x62\x32\ \xa6\xf1\xee\x30\x0f\x93\x69\x2f\x37\x75\x53\x27\x00\x8a\xbc\x1c\ \xa6\xb8\x48\x20\x8d\xfe\xc8\xcb\x91\x20\x51\x4f\xb0\x15\x83\x6e\ \x28\x3f\xf1\xf7\x3e\x96\x61\x4e\x2d\x0f\x4b\x9a\x7b\xbe\xc7\x16\ \x30\x35\x5a\xaf\x73\x02\xf4\x74\x18\x97\x88\x2c\xa8\xc0\x0e\xbc\ \x62\x20\x49\xe5\xfd\x4e\xf0\x04\xc7\xee\xcb\x79\xef\x3f\x1f\xe9\ \xeb\x9a\xaf\xf9\x06\xec\xd4\xba\xe7\xf1\x52\x34\x99\x6e\x13\x4d\ \x0f\xb6\x46\x3f\x35\xda\x6c\x81\x2a\x3c\x80\x2c\xd4\x02\x37\x9c\ \x4d\xda\x8c\xf3\x0f\xb7\xec\x44\x87\x5b\x67\xef\xf2\x6c\x6b\x13\ \x37\x6d\x93\x66\xf3\x0f\xee\x4e\x5d\x59\x1f\x5c\x2f\x78\xc3\x16\ \x8b\xf6\x60\x3f\x35\xc2\xf4\x41\x7e\x21\xf3\x5b\x1b\x36\xa4\x0d\ \x52\x64\x8b\xf5\xd4\x7e\xf5\xf3\x9e\x6f\xcc\xa9\x2c\x06\x17\xa3\ \x66\x8f\x35\x99\xca\x00\x37\x04\xb1\x70\xaf\x6e\x02\x4c\x84\x2c\ \x8c\x82\x2c\xe0\x73\xa4\xec\x67\x09\x32\xb7\x0e\xfb\xb3\x51\x93\ \xf3\xeb\xf6\x42\x44\x73\x53\x00\x93\xe9\xd9\x6a\x13\xcf\x7e\x2f\ \xc6\x5e\x03\x0f\x70\x77\x77\x07\xef\xa9\x10\x44\x20\xb5\x76\x90\ \xc9\xb0\x7b\xbf\xb7\x66\xff\x6b\x80\x33\xe6\xeb\x76\x40\x16\x6c\ \x13\xbe\x64\x1d\x4e\xcd\xb6\xa4\x5d\xf7\xf1\x72\xd3\x29\x3c\x81\ \x7e\xef\xf7\xea\xfe\x36\x81\x48\xa4\xf1\x91\xbd\x9c\x87\x3f\x5d\ \x4d\xf5\x82\xa5\x91\x35\x09\x52\x74\x7b\xc7\x5c\x44\xcf\xc0\x90\ \x5d\x6c\x1e\xaa\x6c\xc0\x4e\x30\x05\x23\x81\x37\xd4\xc1\x08\x63\ \x38\x86\xb3\x84\x11\x3c\x80\x2a\x34\x76\x18\xbb\x76\x0c\x43\x5a\ \x44\x1b\xf8\x91\x92\xf5\x08\x20\x72\x2f\xb4\xe2\x80\x3f\xb7\x4d\ \x45\xf4\xf1\x4e\x16\x12\x0c\xc3\x29\x78\xc3\x33\x5e\xb8\x8d\x03\ \xef\x3b\xd8\x43\x63\x83\xf8\x0f\x03\x69\x64\xaf\xf7\x65\x77\x76\ \x2b\xe6\xef\xc1\xd5\x94\xcb\x64\xc1\x9b\x35\x03\x1f\x75\x02\x37\ \x4c\xa6\x22\x1e\x05\x95\x57\xb9\xea\xb2\x04\xfd\x26\x63\x87\x1f\ \xdc\x3e\xdb\x14\x37\xb1\xe1\xd4\xed\x39\xaf\x09\x5c\x9c\x85\x39\ \x4c\xdf\xf7\x35\x78\xc6\x07\x28\x22\xf3\x01\x2e\x9c\x27\xba\x25\ \x3c\x1d\x27\x6b\xde\xbf\x96\xe0\xa3\xd7\x94\x0b\xc4\x19\x1f\x6c\ \xf2\x08\xa8\x02\x09\xf1\xf3\x9d\x1f\x99\xf1\x0e\x99\x0b\x4c\x94\ \x46\xaa\xe6\x9b\x27\x3a\xf0\xb2\x33\x09\xe6\xf3\x79\x0f\x52\xa3\ \x4f\x5a\x36\x5d\x83\x37\x4c\xe9\x07\x18\xc1\x11\x40\x6a\xa5\x0b\ \xd2\x4e\xf6\x6c\xaa\xae\x39\x8d\x4f\x29\xa7\x8e\x3a\xa9\xc3\x6f\ \x0c\x1f\x99\xfe\xa3\x8b\xf3\xcb\x51\x9a\xd4\x01\x83\x9a\xca\x04\ \xf3\x7d\x87\x7f\x92\x06\x2a\x9c\xe7\x1c\x16\x3a\xba\xf6\xd7\xaf\ \xff\x3a\x3b\xbb\xb6\x20\x91\xd0\x6a\xf8\x78\x3e\x3f\x9d\xb8\xa6\ \x9b\xf1\x3d\x6c\xd2\x56\xfb\x8d\x63\x1e\x92\x6d\xbb\x9e\x37\x3a\ \x00\xf0\x41\xe1\x86\x6d\xea\x92\x7b\xb5\x3f\x35\x46\xba\xc0\x1e\ \x9b\xb7\xc0\x6e\x81\x0b\xb0\xad\xbb\x9b\xcf\xb8\xc3\xbb\x8d\xcb\ \x7b\x0c\x8b\x73\x80\xdf\x94\x2d\x73\xc3\xbe\x53\x95\xaf\xfb\xbb\ \x10\xdf\x3a\x09\x86\xb3\xd7\x6c\xb2\x29\x18\xfc\xc1\xf3\x7b\xc2\ \x2b\xbc\x29\x2f\xba\x63\xdb\xb2\xd7\x5c\x83\x20\x49\xfc\xc4\x73\ \xad\xc5\x5b\xbc\xa9\xff\xb0\x08\x5c\x03\x0b\x1b\x59\xbe\x7f\xbc\ \x6c\x55\x7c\xc8\x73\x31\xc6\x37\xbc\x50\xb3\xc6\xbf\x3e\x40\xbb\ \xdf\x6c\xbf\xb7\x3c\xa9\x8f\x7c\xc0\x53\x30\xb1\x1f\xad\xca\xff\ \x2e\xce\xb7\xfc\xcb\x63\x1a\x05\x87\xb1\xbe\x4f\xfc\xcd\x07\xbd\ \xb5\xaf\xa2\x3e\x67\x87\x0b\xd4\xfc\xc3\xb2\xbc\xd2\x3b\xf5\x96\ \xaf\xfb\xcf\xbb\xf9\xd4\x4f\xbd\xce\x6b\x9e\xef\xaa\x7c\xd2\x67\ \x3d\xb9\x6f\xbd\x1e\x51\x2e\xd2\x4b\x3d\xd8\x6f\xb4\x16\xa5\xfc\ \xc4\x93\x8e\x81\xd9\x9f\xfd\x3a\xbf\xfc\xd3\x7f\x7c\xdb\xbb\x3d\ \x35\x9f\x59\xef\xae\xfd\xdc\xd3\xfd\xdb\x6f\x01\xd9\x87\xed\xd7\ \xeb\xbd\xc8\x5b\xc2\xd1\xf3\xeb\xdf\x03\x7e\xc8\x03\xb3\xdf\xe7\ \xbd\xe1\xab\xf3\x1d\xdf\xa8\xe2\x2f\xfe\x40\x23\xfe\x8d\xb2\x3d\ \xe4\x43\xfe\x23\xab\xda\xe3\x57\x3e\x41\x4b\x7e\x6c\x15\xbe\xe6\ \x2b\x3d\xe7\x8b\xfa\xe7\x7f\x7e\xe3\x23\x6d\xe6\x8f\x7e\x53\x87\ \x7e\x8d\x50\x3e\xea\x8f\xfe\xe5\xd7\xc8\xe9\xb7\x3e\x5a\xab\x3e\ \xd6\xcb\x7e\xeb\xbf\xbe\xe7\xdb\xfe\xd9\x83\x6d\xee\xeb\xbe\xdb\ \x37\xc1\x55\xc4\xbe\xef\x8b\x36\x4b\x08\xff\xf0\x1f\xbf\x68\x07\ \x04\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\ \x00\xf0\x00\x87\x04\x02\x13\x44\x8a\x4c\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xd8\x88\x8e\x94\x4a\x35\xff\xff\xff\xcf\ \x49\x2d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xde\x94\ \xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x0e\x27\x1d\xcf\x49\x94\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x57\xa8\xe3\x55\x67\x1d\xff\xff\xff\xff\xff\xff\x13\x28\ \xa7\xff\xff\xff\xd7\xc8\xe4\x09\x68\x9a\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xf6\x89\xb9\xd6\x0d\x0e\x96\x64\x3e\xff\xff\xff\xf7\ \xa8\xb8\xff\xff\xff\x8e\x69\xb0\x9a\xf3\xfc\xff\xff\xff\x12\x29\ \xe0\xd9\xe8\xf8\x4e\x68\xf8\xfb\xc8\xe4\xba\x89\xb7\xff\xff\xff\ \x28\x47\xea\x7d\xb1\xad\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf1\x71\x45\x98\xc8\xfa\xff\xff\xff\x7a\x88\ \xab\xff\xff\xff\xb2\x68\xa9\xf9\xe8\xf0\xd7\x88\xf0\xf6\xb2\xf1\ \x30\x07\x17\x09\x48\x73\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x34\x8b\xc7\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xed\x49\x43\xff\xff\xff\ \xb7\xc9\xf4\xff\xff\xff\x6c\x69\xe6\x39\x56\xf6\x0a\x17\x1c\xff\ \xff\xff\xff\xff\xff\x98\xb2\xf8\x11\x37\x66\xff\xff\xff\xff\xff\ \xff\x5b\xb8\xeb\xd7\xd9\xee\xff\xff\xff\xff\xff\xff\x2f\x29\xed\ \xff\xff\xff\x08\x16\xdd\x3b\x62\xf4\x74\x89\xf8\xfb\xfd\xfa\x79\ \xe9\xfb\xff\xff\xff\xff\xff\xff\xfa\xd8\xeb\x4d\x37\x1a\x7c\x8c\ \x3e\xff\xff\xff\xba\x8e\xf3\xfb\xd0\xa6\xda\xae\xf8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\x99\xb5\xfb\xb8\xbd\xff\ \xff\xff\xff\xff\xff\x36\x4a\xeb\xb2\x68\xec\xdb\x98\xf4\xff\xff\ \xff\xb7\xd8\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xc4\xe2\x94\xaf\x2b\x21\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x75\x48\x58\xff\xff\xff\x73\x26\x4d\x89\x27\xc0\ \x78\xc8\xf8\x93\x68\xfb\xff\xff\xff\xff\xff\xff\xb9\xf2\xfc\xaf\ \x36\x5b\xff\xff\xff\xff\xff\xff\x3c\x1e\xdc\xff\xff\xff\xff\xff\ \xff\x9c\x48\xdb\x90\x70\x6d\x78\xb4\xf8\xff\xff\xff\xfa\xae\x88\ \xff\xff\xff\xfa\xeb\xba\xff\xff\xff\xff\xff\xff\xf7\x93\x8d\xff\ \xff\xff\xf3\x71\x6c\xff\xff\xff\xff\xff\xff\xff\xff\xff\x54\x99\ \xe2\xff\xff\xff\x80\x9e\x5a\x7d\x8a\x73\xd8\xd7\xa6\xff\xff\xff\ \xff\xff\xff\xf3\x7a\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\ \xb6\xed\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x4e\x59\x18\x56\x76\x27\x56\x77\x9f\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x19\x37\xe0\x58\ \x76\xfa\xff\xff\xff\x99\xd8\xfc\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7a\xf3\xff\xff\xff\ \xff\xff\xff\x2d\x39\x98\xff\xff\xff\x94\x3a\x39\xb2\x57\x34\x32\ \x58\x60\x72\x79\x9c\xff\xff\xff\xff\xff\xff\xb4\x57\xb3\xff\xff\ \xff\xb5\x38\x14\xff\xff\xff\x37\x57\x91\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x7f\xfa\xfc\x96\x97\x51\xde\x97\x94\x05\x58\x8c\x97\ \x98\xb7\xff\xff\xff\xb9\xb8\xb8\xd8\xfb\xfc\xff\xff\xff\xff\xff\ \xff\x6f\x78\x29\xff\xff\xff\xff\xff\xff\x9a\x98\x78\x7d\x97\xf9\ \xff\xff\xff\xb0\x78\xf9\x71\x5b\xf6\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x7d\xd6\xfb\x91\x78\xf3\xff\xff\xff\xff\xff\xff\x90\x5a\ \xf9\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\ \x13\x2a\x5c\xc8\xb0\xa1\x42\x13\x0e\x23\x4a\x9c\x48\xb1\xa2\xc5\ \x8b\x18\x33\x6a\xdc\x58\xb0\x90\x24\x88\x1c\x43\x8a\x1c\x49\xb2\ \xa4\xc9\x92\x26\x4c\x84\x40\xd7\x26\xe5\xc9\x97\x30\x63\xca\x9c\ \x59\x31\x25\xa4\x10\x45\xb8\x70\xf9\x48\xb3\xa7\xcf\x9f\x40\x39\ \x9a\xb8\xd6\x04\x5d\x91\x9c\x45\x24\x05\x5d\xca\xb4\xa9\x53\x13\ \x99\x9a\x34\xc1\xc9\xa5\x08\xba\x10\x21\x32\x39\xdd\xca\xb5\xeb\ \xc8\x94\x3e\xa4\x1a\x45\x77\x15\x6b\x88\x42\x5e\xd3\xaa\x5d\xcb\ \xd0\x04\xa8\x5c\x53\xc9\xa2\x93\x8a\x15\x9d\x4e\x90\x6c\xf3\xea\ \xe5\x6a\xa2\x50\x2e\x57\x71\xaf\xd2\x0d\xa1\x93\x4b\xb6\x6b\x78\ \xf7\x2a\x5e\x3c\xd3\x84\x30\xb8\x2b\x05\xd3\x35\x7a\x14\xab\x36\ \xc6\x98\x33\x93\x4c\xf9\x38\x57\xdd\x10\x52\xa7\xe2\x44\x2a\x38\ \x9b\x4b\xcd\xa8\x53\x4f\x34\x01\xe9\xef\xd4\x22\xa0\x43\xaf\x2c\ \x0c\x5b\x74\x88\x6b\xaa\x73\xeb\x46\x98\x52\x03\x64\xab\x52\xe1\ \xbe\xce\x59\x35\xf6\xd4\x26\x07\x12\xef\x5e\xae\xb9\xaf\x6f\xb1\ \x57\x73\x49\xff\x7d\x94\x8b\xe4\xe0\x1a\x34\xa0\x65\xce\x1d\x33\ \xeb\xe9\x2b\x41\xfe\xe7\xfa\xf2\x45\x03\x56\xab\x56\xe7\x86\x1e\ \x1f\xca\x95\xb0\x15\xca\xbb\xcb\xf7\x0a\x75\xfc\x97\xb8\xb1\xc9\ \x7b\x8e\x5c\x16\xb4\x78\x4a\x94\x00\xd6\x84\x30\xf1\xcd\x67\xe0\ \x52\x7d\x49\xa7\x0f\x5c\x46\x89\x37\x9e\x79\x0d\x9a\xb5\x9e\x06\ \x00\x1e\x17\x42\x38\x4a\x1d\xa8\x21\x82\xc2\x34\x31\x9e\x67\x95\ \x35\xa1\xc1\x17\x0c\xc2\xe6\x9f\x71\xe3\x51\xa2\x41\x51\x12\x42\ \x52\xe0\x86\x30\x9a\x64\xc2\x0a\xd3\x79\x66\xd7\x5c\xb9\xd4\xf0\ \x85\x2b\x84\xa9\x27\xa1\x74\x5f\x84\x52\x5e\x68\xae\xac\xe8\x0a\ \x24\xdb\xc5\xa8\x24\x4a\x40\xe8\x43\xde\x8a\x38\x09\x96\xdd\x70\ \x21\x40\x86\x55\x2e\x14\x92\x47\x1e\x60\x58\x86\x36\xd5\x37\x4b\ \x86\x19\x52\x4a\xfa\xe8\x43\xc9\x90\x56\x81\xb6\x62\x5c\xb0\x91\ \x18\x9e\x87\x5f\x9c\x19\x24\x80\x24\xda\x16\x1a\x3a\x2f\x8a\xa9\ \x67\x43\x26\x6c\x61\xe6\x7d\xf8\xb9\x22\xdc\x79\x45\x88\xc8\x22\ \x9c\x74\x92\x57\x26\x25\xb6\x19\x17\x42\x36\x49\xee\x29\x69\x5b\ \xda\x64\xb9\x26\x56\x5e\x12\x5a\xe8\x6b\x21\xc4\x79\xa6\x9c\xfa\ \x2c\xc3\xc2\x7d\x3f\x8a\x26\x22\x10\x79\x4e\x3a\x29\x54\xbe\x3d\ \x39\x98\x59\xfe\x64\xad\x74\x14\x65\xa0\x69\x49\x1e\x80\xa2\xea\ \x63\x1e\xa6\x83\x79\xa8\xe3\x0a\x5a\xa9\x2a\xec\x40\x60\xdd\xea\ \x64\xa3\x94\xa5\x67\x94\x4e\xb5\x4d\x17\xa7\x99\x2c\x2c\xb3\x20\ \xa6\x66\x5d\x69\xe6\x9a\xc1\x0e\xab\xaa\x09\x3e\xdc\xaa\x5f\x6c\ \x5d\xce\x96\xe6\x51\xb5\xad\x47\xc9\xa2\x2c\xb0\xc0\xa8\x6d\x0d\ \xe6\x42\xc9\x32\xeb\x36\xe1\x4a\x37\xa9\x6a\xab\xa1\x09\x40\x24\ \x4a\x09\x64\x70\xea\xc3\xa3\x5d\xd6\x45\x26\x9e\xb9\x00\x86\x7a\ \xec\x64\x47\x35\x41\x89\xba\x74\xc9\xfb\x05\x0f\x52\xd8\x2b\x66\ \x6f\xb6\x0e\xda\xc4\x17\xd2\xda\x18\xf0\x8f\xd2\x1d\xf7\x97\xbb\ \x4e\x02\x66\x56\x65\xb9\x98\xc9\x23\x68\xae\x7c\x11\x2a\x15\x52\ \xd4\x2b\xf1\x72\x29\xa5\x5c\xf1\x7a\x65\x7e\x71\x9e\x8f\x57\x02\ \xf8\x9c\xb9\x6e\xca\x16\xeb\x90\xd8\x9d\xbb\x8c\xa8\xcb\xf8\xe0\ \xf2\xcb\xb9\x39\xd6\x2a\x89\x24\xc2\x05\x32\xa3\x51\x0e\x2c\xd5\ \x17\xea\xc6\x29\x9c\xbb\xfb\x9a\x6a\x67\x97\x53\xeb\x93\xae\xa8\ \x98\x2c\xd3\x04\x86\x48\x1b\xd8\x57\xca\x72\x36\x2d\xdd\xb9\xc7\ \x8e\x65\x9c\x87\xa2\x0a\x0d\x68\x9c\x80\xbe\x6d\x96\x6b\x22\xbe\ \x1b\xed\xfe\x32\x98\x60\x42\x09\x3a\x1e\xa0\xe3\x62\xd9\xdc\x41\ \x25\xb3\x7d\xce\xaa\x7c\xac\xc0\xe0\x2a\x1c\xea\xbb\xfe\x06\xd7\ \xb4\x87\x99\x8a\xb7\xe6\x78\x43\x97\x19\xad\x2b\x1e\x70\xe1\x21\ \xb0\x84\xc3\xdc\xed\x87\x93\xab\xfc\x29\x84\xd7\x21\x0a\xe0\xa7\ \x92\x67\x47\xa1\x80\xa6\x72\x2d\xef\xb9\x42\xb3\x10\x4a\x08\x1e\ \x14\x0a\x98\x2b\x99\x1c\x1d\xfa\x5a\xf8\x6a\xf9\x61\x70\x65\x3a\ \xf9\x9b\xd4\x58\x8e\xf8\xe7\x88\x1a\xa0\xdd\x2a\x94\x12\x5e\x7c\ \xb9\xe9\xe7\xb2\xc0\x83\x67\xb9\xc7\xe6\x4a\x28\xd8\xf8\xfe\x7b\ \x57\x43\x7d\xb8\xe0\xd5\x5f\xa4\xb1\x3a\xa9\x38\xd6\x89\xa5\xa7\ \x2a\x16\x49\xe1\x99\xd9\xd5\xc0\x63\xaf\xe5\x09\xaa\xf8\x99\xa1\ \x32\x4c\x6b\x08\x45\xce\xa3\x81\xd1\xdf\xf3\x0e\x9c\xd2\x30\x9d\ \xe0\xa4\xc1\x78\x6e\xba\x12\xf3\x44\x94\x22\x9d\xcd\xce\x7c\xcd\ \x73\x9f\x97\x2e\x56\x1e\x0a\x65\x2e\x4e\x44\x83\x1e\x56\x5c\xb1\ \xbd\xe6\x35\x0f\x3e\x01\xdc\x8b\x63\x80\x44\xc0\x8e\xe5\xe2\x80\ \x4e\x22\x4f\xec\xa6\x84\x28\xba\x49\xc5\x15\xa1\xba\x4f\x91\x80\ \x26\x2f\x11\x55\xf0\x82\x2a\x0b\x1b\xa9\xbc\xa4\x81\x50\x84\xa2\ \x79\xfe\xf2\x72\x05\x08\x43\x08\x3c\x13\xec\xcb\x49\x25\xf4\xd0\ \x09\xe1\xa5\x32\x2b\x3d\xc8\x63\xec\x33\x12\xc6\xe0\xa5\x81\x1a\ \x2c\x83\x07\x6b\x2a\x92\x88\x8a\x24\xb4\x4f\xb1\x00\x13\x3b\x84\ \x8b\xfb\x7c\x08\x98\x0e\x15\x29\x1d\xa8\x22\x22\x7d\x12\x50\xbe\ \x34\xb8\xb1\x46\x27\x3c\xa0\xa7\x44\x33\x3c\x25\xd2\x6d\x19\xf5\ \x7b\xd8\xd0\xe0\x35\x34\x1e\xb0\x68\x44\x1c\xdc\xde\xf9\x42\x41\ \x89\xb0\x1d\x47\x3f\x22\xf2\xe1\x8a\xae\xb2\x3d\x42\xf2\x00\x08\ \x09\x50\x23\x5f\x08\x59\x3e\x33\x99\x50\x1f\x69\x28\x87\x99\xb2\ \x26\x9e\x1d\x05\x87\x4e\xd7\xe2\x22\x25\x78\xd0\xc7\x51\x2e\xb2\ \x09\x8a\x14\xe5\xea\x42\xb5\x8c\x5c\xe0\x28\x64\x1c\x9c\x52\x38\ \x50\x06\x20\x1e\xf8\x70\x0b\x11\x93\x24\x53\x4c\x80\x8d\x9a\x99\ \xaf\x46\x5f\x28\x47\x39\xe4\x08\x28\x25\x76\xa9\x64\x9b\xac\x5f\ \x2e\x7c\x48\x48\x3a\xfd\x70\x2a\x66\x70\x05\x25\xda\xd3\x43\x69\ \xb1\x32\x5a\xeb\xca\x05\xbc\x84\xc3\xc1\x26\x98\x21\x04\x66\x40\ \x25\x0f\x6c\xe9\x48\x88\x79\x4f\x97\x22\xe1\x25\x0b\xdc\x58\xc2\ \xe9\x64\x52\x98\x07\x2c\xa0\x54\xb2\x43\x42\x69\x6d\xe9\x62\x2a\ \xfe\xf2\x21\xfc\x60\x27\xa2\x2d\x34\x4f\x9f\x43\x4b\xc3\x1e\x55\ \x84\x31\x27\x45\x10\x30\xdf\x94\x17\x21\xe1\xc5\xcc\x50\xd8\x32\ \x1d\xe7\x44\xa7\x46\xa0\xb2\xb0\x37\xd6\x88\x9d\xeb\xdc\x97\x7e\ \xc8\xd7\x43\xaf\xfd\x49\x4b\xb6\xcc\x8e\x90\xd6\x54\xc3\x22\xb5\ \x67\x7b\x2a\x5b\x86\x40\x17\x55\x26\x7b\x02\xb1\x9b\x2f\x74\xe8\ \x38\x4f\xda\xd0\x50\x6c\xe1\x34\x12\x85\x09\xbe\x30\xa9\xae\x8b\ \x96\xe9\x80\xfb\x42\x9c\xe4\xa6\xf9\x2e\x3c\xb2\x8f\x07\xf9\xa4\ \x24\x0f\x5d\xe7\xbf\x79\x60\x70\x68\x72\xaa\x1e\x1e\x77\x27\xa0\ \xdd\x39\x34\x5a\x8a\xf4\xa1\x53\x1d\xba\x85\x50\xa4\x31\xa7\x27\ \xd9\x69\xf1\xc8\x67\xbe\x45\x01\x09\x91\x1e\x5a\x1d\x29\x55\xf4\ \x3e\x9d\xf5\xd0\x81\x96\x0b\x52\x90\xb6\xd7\x52\x08\x72\x91\x68\ \x80\x4a\xd9\x41\x09\xf9\x87\xa1\x35\x74\x9a\x0e\x6d\xa8\x0c\x26\ \x00\x56\x94\x14\x62\x0b\x74\x32\x61\x25\x69\x67\x2b\x4f\xa6\x15\ \xaa\x66\xfa\xa1\xca\x90\xea\xc1\xa1\x15\x73\x7d\x71\x12\x52\x33\ \xb1\x29\x20\x6d\x7e\x6d\x4d\x3d\xec\xa6\x0f\x49\xc9\x50\x66\x22\ \x75\xa6\x5d\xe5\xea\x04\x22\x5a\xd8\x85\x98\x00\x04\xd2\x3a\xfe\ \x93\xa0\x4a\x96\xc9\xe2\x11\x75\x9c\x22\xb3\xe0\xe3\x90\x3a\x4d\ \x83\x9d\x14\xaf\xa1\xd1\x12\x51\x9b\x99\xb9\xab\x2d\x0c\x9b\xa1\ \x90\x17\x0b\x39\x08\x20\xd3\x32\x73\x19\x54\x98\x29\x25\xba\xba\ \x85\x71\x02\x21\x97\xad\xcd\x88\x09\xd8\x80\x86\xb0\xb1\x4d\xa5\ \xe9\x72\xe3\xd7\x78\xf0\x87\x3f\xf0\x40\x18\xd9\x68\x82\x15\xb1\ \x39\xca\xcc\xc5\xad\x3c\x85\xa4\xa2\x87\xb2\x33\x27\xa2\x42\x6e\ \x9a\x02\xc2\x18\x7b\xe7\xa1\x50\xaa\x8e\xb6\xa6\xa1\xf8\x43\xdf\ \x96\xf1\xd7\xea\xf2\x60\x0b\xf3\x60\x6d\x76\x09\x62\x02\x29\xa0\ \x81\x1d\x98\xe0\x41\xa8\x30\x91\xae\xaf\xf5\x8d\xc2\x7d\xfb\x43\ \x0d\x84\x11\x0e\x61\x2c\xe3\x05\x98\xe8\x2b\xdf\xa2\xf5\x45\x26\ \x2e\x0c\x13\x06\x5d\x1f\x9d\xec\xcb\x50\x20\x2a\x0f\xb9\xed\x91\ \xca\x3c\x02\xe9\xc3\x65\xf4\xb5\xa1\x3c\xe8\x1b\x3b\xfe\x10\x8a\ \x79\xd8\x54\xa6\xa9\xc5\xa5\x82\xb3\xdb\x60\x30\xb0\x63\xc7\x43\ \x1b\x30\x2b\xc1\x86\x89\x23\x63\x82\x0a\xf3\xe0\x70\x0d\xa8\x50\ \x5e\x1b\x0f\xd8\xca\xea\x3a\x31\x15\xe9\x6b\xb0\xd5\x85\xe2\x4f\ \xca\x8d\x13\x29\xa3\x15\x59\x57\x44\xb3\x3d\xc9\x18\x2d\xfe\xdf\ \x78\x30\xe3\x79\x90\x52\xc0\x61\xfb\xe1\x2d\x49\x39\x5a\x52\x42\ \x74\xc1\xab\x01\xc1\x0b\x8e\xbc\xe3\x3f\xb0\xe0\xc6\xef\x1a\x25\ \x9c\x5f\x40\x85\x75\xf8\x40\x18\xda\x48\xc7\x81\xb7\x40\xe5\x10\ \x8f\xb3\x6f\x2a\x3a\x6e\xda\x30\x67\x3d\xfb\xe2\x37\x65\x7b\x14\ \xd5\xde\x6c\x49\x63\x6f\x3a\x74\x68\xe6\x3d\xe9\x16\xac\x1c\xe1\ \xa6\x3a\x34\xd4\x9f\x1e\xe7\x16\x0c\x30\x64\x89\x9a\x60\x02\x54\ \x78\x01\x1a\x1e\x1c\xb6\xbe\x4e\x93\xbc\x54\x10\x34\x18\xa8\xb0\ \x85\x74\xf8\x40\x1b\x3e\xf0\x35\xb0\xd3\xb1\x85\x75\x8c\x93\x0a\ \x21\x6e\x4f\xa0\xbd\x35\xa2\xb8\x35\x13\xa9\x72\xe6\xdb\x1e\xf7\ \x66\xde\x19\xbb\x62\xc6\xe1\x4c\xf5\x15\x67\x7c\x6a\x1b\xff\x01\ \xb0\x75\xee\x31\x79\x45\x1c\x36\x03\xe0\xb9\x2d\x52\x58\x07\x15\ \xc0\x10\x84\x07\x57\xd9\x96\x3c\xd8\x33\x1a\xfe\x40\x85\x7a\xa7\ \xe3\xde\x3e\x00\x85\xb0\x11\xed\x83\x60\x17\x3b\xd6\x3c\xe0\xe0\ \x5a\x47\xd4\x5c\xbd\xf1\x40\xcc\xa3\xac\xe5\xde\x88\xd6\xc7\xe4\ \x36\xe1\x0c\x08\x75\x05\x79\x0f\x6c\x4b\x1f\x8f\xfa\xc2\xe6\x9d\ \xe6\x3c\x0c\xec\x43\x38\xf3\xad\xd6\x32\x68\xd9\xb9\xfe\x11\x92\ \xee\x62\x83\x00\x0c\x28\x8f\xae\x2d\xa7\x2c\x6b\x34\xbc\x60\x1d\ \xf7\x4e\xb4\x0c\xd2\x31\x73\x19\x68\x03\x14\xda\x58\x41\xa2\xe1\ \xa0\x6e\x5e\xd7\x80\xbc\x4c\x24\xa4\x3e\x05\x6c\xa6\x3d\x92\x32\ \x6c\x61\x5b\xb8\x3e\x52\x99\x0c\x57\x24\x43\x5e\x06\x86\xf6\xb5\ \x43\x61\xe5\x3d\x47\xf8\xc0\x0d\xad\xee\x95\x05\x0c\xea\x65\x60\ \x77\xe4\xc4\x32\x00\x1c\xee\xad\xee\x75\xc0\x3c\x1d\x30\xaf\x01\ \xa3\x5f\x10\x04\x10\xf4\x1a\x14\x2b\x90\x87\x0c\xd6\x51\xf3\x9a\ \xfb\x00\x08\xf7\x86\x83\x1c\xa8\xb0\xf7\xf2\xf2\xa0\x06\xa9\x74\ \x68\x88\xaf\x78\xe5\x8f\x23\x7d\x6f\x80\xcd\x4e\x20\x7d\x3c\x4e\ \xbf\x73\x9b\xbc\x98\xd8\x73\x9f\xc9\xd9\x63\x99\x72\xbd\x6f\x7f\ \xae\x32\x15\x58\x0d\x76\x81\x40\xc5\xd7\x2b\x58\x01\xda\xe5\x70\ \x6f\x5f\x9b\xbe\xf4\x34\x97\x81\x0c\xe4\xae\x7a\x19\x9c\x63\xee\ \x0e\x70\x7d\xeb\xd7\x21\x07\x10\xac\x03\x04\x54\xde\x42\x0d\x00\ \xdf\x1e\xc1\x27\xbd\x6f\xe3\xfc\xb8\x9f\x6d\xdc\x70\x66\x72\x50\ \xa6\x8d\x27\xb0\xff\x46\x0d\x67\x08\x47\x98\x99\x88\x0d\xfe\x85\ \x33\x6c\xe5\xbe\xd2\x5b\xe4\xe7\x4e\xc9\x01\x56\xfe\x00\x0a\x48\ \xdc\x1c\xe6\x67\x07\x85\xea\x41\x91\x6f\xee\xaf\xa0\xf5\xb2\x3f\ \x87\x03\xd6\xbf\x7e\x19\x18\x00\x08\x06\x70\x80\x1c\xe6\x7f\x7b\ \x10\xdc\x7b\x0b\xf8\x3f\xf5\x85\x3f\x9e\xe4\xfd\x63\xd8\xaf\xa1\ \xe5\x63\xa3\x34\x4e\x04\xd8\x7b\xe3\x16\x62\xc0\x47\x4e\xd1\xf7\ \x66\xd3\xd7\x7f\xe5\x25\x60\xf4\x26\x03\xad\x86\x34\x26\xf0\x7e\ \x72\x47\x7e\x73\x37\x73\xe2\x77\x73\xdd\x07\x09\x70\x27\x7e\xe7\ \x70\x0e\xef\x17\x7f\x29\x90\x02\xed\xe7\x00\x06\xe0\x7e\x24\x28\ \x07\xb4\xd7\x82\xc4\x46\x65\xe5\xe5\x7c\x86\xd7\x57\xfb\x67\x78\ \x7e\x13\x48\x3d\x24\x53\x57\x74\x63\x8c\x07\x81\x0f\x78\x45\x5d\ \x45\x80\xc1\x07\x67\x21\xf6\x67\x18\x67\x3d\xde\xe6\x00\x38\x05\ \x56\x26\x90\x00\x0e\x40\x77\x74\x27\x7e\x51\x08\x0a\xdd\x77\x02\ \x6d\x20\x09\x1e\x08\x04\xad\xf7\x7a\x06\x60\x00\x77\x90\x02\x77\ \x70\x07\x0e\x50\x02\x40\x00\x04\x13\x60\x00\x25\xe0\x00\x22\x28\ \x86\xb4\x37\x73\x70\xb0\x6e\xed\xb6\x63\x48\xe7\x64\x3a\x56\x84\ \x3a\x46\x60\x4e\x97\x83\xa7\x95\x63\xe6\x15\x24\xa3\x46\x05\x57\ \xb4\x87\x81\x48\x80\x82\x86\x79\x34\x18\x62\xfe\x34\x78\x6c\xe5\ \x05\x06\x68\xa0\x0a\xad\xd5\x60\x29\xc8\x85\xf2\x20\x7e\x54\x78\ \x02\x90\x70\x89\x98\x78\x02\xf0\xd7\x85\x2a\x88\x86\x60\x78\x07\ \x25\x10\x8a\xaa\x30\x8a\x5e\x58\x02\xb5\x10\x7f\x27\x38\x77\x72\ \xd0\x6e\x2e\xd7\x7c\xce\xd7\x64\x10\x66\x83\x9c\xd6\x48\x73\x66\ \x63\xb6\x53\x67\x58\x67\x53\xc1\x47\x4a\xe3\x54\x88\xd3\x57\x83\ \x7d\x44\x4a\x2f\xf0\x07\xac\x88\x0a\x5f\x27\x49\x29\x11\x82\xf2\ \x70\x0e\xf2\x60\x00\xa0\x80\x0d\x54\x48\x85\x98\x88\x85\xdb\x07\ \x7f\x65\xa8\x0a\xa5\xf8\x85\x61\x08\x8a\xa6\x38\x01\xb5\x50\x0b\ \xa6\xa8\x0a\xb5\xc0\x7e\xf2\x27\x03\x7a\xc7\x06\x41\x10\x04\x60\ \xf0\x07\x92\xd7\x67\x7c\x56\x5e\xb0\xf8\x6d\xae\x73\x4b\x6a\x86\ \x6a\xef\x82\x5b\x3e\x96\x69\xbd\x88\x7f\x39\x86\x71\x0d\x68\x74\ \xe4\xf5\x02\x2d\x37\x6b\x41\x70\x8c\x44\x64\x02\xaa\x10\x82\xcc\ \x68\x00\x27\x60\x89\x27\x50\x89\x07\x70\x0d\xd4\xf8\x8c\xd8\x00\ \x04\x15\xe9\x85\x61\x08\x86\x25\x18\x86\xe1\xe8\x8d\xa3\x08\x04\ \xb5\xb0\x8d\xeb\x27\x07\xf2\x57\x7b\xb8\xa7\x67\x47\x36\x8c\xb0\ \x08\x62\x7c\x13\x8b\x81\xc5\x4c\x80\x45\xfe\x88\x3e\x04\x88\x94\ \x07\x79\x83\xa8\x66\xbf\x88\x74\xd2\xd6\x47\x1f\xc6\x0e\xb3\x36\ \x6b\xf6\xb7\x0e\x09\x30\x81\x13\x23\x05\xa3\xb0\x90\x27\x70\x00\ \x90\x70\x00\x07\xd0\x90\x15\xa9\x94\x4c\x09\x04\x9a\x68\x91\x40\ \xa0\x0a\x0e\xa0\x91\x25\x38\x04\x9f\xf8\x8d\x13\x20\x05\x13\x30\ \x01\xe2\x18\x92\x29\x50\x02\x77\xd0\x07\x62\xd8\x07\x72\xd0\x07\ \x70\xf0\x86\x60\xf0\x02\x6d\x19\x79\x47\x66\x7d\x71\x99\x70\xe4\ \x44\x80\xc4\x87\x75\xcc\xa7\x7c\x7c\x35\x78\x35\x29\x60\x10\xc6\ \x92\x48\x87\x71\x36\xf6\x93\xb3\xf6\x02\xc2\x20\x01\xd9\xd0\x06\ \x44\x40\x94\x4a\x02\x89\x5d\x68\x0e\xd8\xc0\x94\x50\x79\x02\x91\ \x79\x00\xdd\x80\x0d\x27\x70\x99\x54\xa9\x0a\x40\x80\x0a\x5f\x58\ \x82\x29\x80\x07\x1b\x69\x8a\x5e\xf9\x6a\x52\xf0\x8d\xdf\x68\x8a\ \x0e\x10\x86\x7d\x60\x82\xad\xa7\x77\x27\xc7\x6e\x0f\x36\x8c\xf1\ \x06\x61\xbd\x58\x93\x47\xe7\x77\xba\x18\x88\x72\x76\x74\x57\x67\ \x5a\x4d\xf6\x8f\x10\x88\x88\x7f\xe0\x93\x04\xf9\x02\xe9\x80\x05\ \x00\xb0\x9c\x00\xb0\x98\x8c\xb9\x21\x8e\xc9\x90\x4c\xb9\x94\x4c\ \x99\x94\xd7\x70\x00\x54\x09\x8d\x55\xfe\x39\x82\x9e\x09\x9a\x78\ \x30\x04\xdb\xd8\x8d\xa6\xc9\x95\x61\x89\x9a\xab\xd9\x07\x0e\xd0\ \x07\xaa\x97\x0e\x3c\x77\x72\x85\x39\x8c\xec\x38\x8c\x51\x67\x4b\ \x03\xf8\x80\xe6\x35\x84\x33\xc5\x4c\xc5\xf9\x7c\x41\xe8\x97\x74\ \x18\x36\xd5\xd7\x57\xc6\x89\x06\x60\x90\x0e\xda\xd0\x06\xcc\x09\ \x00\x58\xa0\x9c\x19\x12\x3a\x0d\xb6\x03\x98\x69\x00\x98\xc9\x94\ \xa0\x90\x94\x92\x79\x91\x15\x79\x91\x5d\xe8\x85\x1a\x89\x07\xa2\ \xb9\x95\xaa\xf0\x95\x99\xd0\x95\x24\xfa\x95\xe5\x29\x04\xdb\x98\ \x96\x0e\xb0\x96\x72\x00\x06\x6c\xe0\x96\x02\x29\x90\x7f\x60\x60\ \x3f\xc8\x8b\x3c\x10\x5d\xfc\xf8\x80\x78\x29\x78\x3b\x86\x5a\x2d\ \xc9\x67\xb1\xf8\x66\xd6\x37\x90\x2f\xe0\x03\xca\x99\xa0\x0a\xba\ \xa0\xc0\x20\x0f\x06\xa9\x2d\x29\x01\xa1\xd8\xb0\x03\x94\x29\x99\ \x0d\x29\x99\xd7\x80\xa1\xd8\xb0\xa1\x5d\xd8\x9d\x5f\xf8\x9d\xa2\ \x09\x8a\x5c\xe9\x95\x5e\xf9\x95\x63\xea\x8d\xb5\x00\x92\x25\xd0\ \x07\x25\x90\x02\x24\xa9\x7a\x68\x09\x02\x70\xea\xa2\x6c\xb0\x6b\ \x6b\xc7\x0e\xf0\xa9\xa3\xf8\x47\xa3\x7e\x77\x60\xd3\x55\x9c\x3d\ \x3a\x5a\xfe\x49\x87\xc4\xd7\x57\xfe\xc8\x36\xa0\x60\xe0\x03\x12\ \x80\xa4\xcb\xa9\xa4\x35\x20\x0f\x91\x62\x2f\x4d\x98\x00\x09\x80\ \x0d\x94\x3a\xa1\x07\x50\x99\x11\x79\xa9\x94\x59\x86\x5d\xa8\x90\ \xda\x58\x82\x31\xf0\x9d\x1c\x09\x8e\xb5\xd0\x95\x29\x51\xa2\xa5\ \x9a\xaa\xa9\x69\x96\x43\x10\x7b\x5a\x28\x03\x7d\x80\x96\x26\x09\ \x02\x7b\xc7\x6e\x76\xfa\x80\x4f\xb6\x68\x37\x5a\xa3\x79\x2a\x8c\ \x61\x63\x4b\x17\x07\xa4\x10\xd6\x57\xb8\x66\x63\x03\x39\x6f\x5b\ \xa0\x0d\x5c\x20\x01\xcc\xca\xac\x0b\x0a\x00\x12\xf0\x0e\x6e\x20\ \x01\x8b\x09\xa9\x91\x3a\xa9\x93\x5a\xa9\x54\x2a\x99\x97\x6a\x91\ \x22\x18\x82\x29\xa0\x90\x58\xf9\x9d\x9f\x48\x96\xdd\x38\x01\x23\ \x6a\xa6\x5f\xb9\xae\x5f\x99\x9a\xe0\xd9\x07\x65\x58\x86\xe6\x28\ \xab\x43\x00\xa7\xb5\x17\x87\x32\x5a\x6f\x8c\xc6\x68\x0f\xa8\x72\ \xa9\x05\x79\xe6\xd5\x9f\xc2\x3a\xac\xd0\xe5\x6d\xf2\x36\x6b\x60\ \x80\x68\x35\x60\xa0\xd9\x00\x0c\x0d\xbb\x01\xce\x2a\x01\xc1\xe0\ \x06\xc0\x20\x01\xcf\xa9\x1b\x26\xf0\x0d\x3b\x90\x00\x10\x0a\xa5\ \x16\x7a\xa1\x97\x8a\x99\x9b\x08\xae\x24\xfb\xa9\xa1\xf9\x89\xdb\ \x58\xaa\xeb\x8a\x9a\xde\x08\xfe\x96\x2d\xfb\x95\x20\xa9\xa6\x29\ \x28\xaf\xb0\x8a\x96\x43\x10\x03\xf3\x17\x9b\x6d\xe9\x96\xf5\xc6\ \x6b\xf5\xd6\xaf\xf9\x67\x71\xe3\x06\xac\x39\xe6\x7c\xaf\x68\x5e\ \x3f\x7b\x64\x3f\x19\x04\xe9\xc0\xac\xda\x00\x0b\xc1\x90\x0d\x1b\ \x10\x0c\x01\x10\x0b\xd3\x2a\x01\xc0\xe0\x06\x35\x60\x0e\xc0\x40\ \x04\x3c\xb1\x2a\x26\x00\xa5\x95\xaa\xad\x56\xaa\xa9\x97\xb9\xa1\ \xe7\x80\x07\xa3\x10\xae\x21\xb8\x9a\x9f\xa9\x95\xdb\x08\xa6\xa8\ \x39\xb7\x2d\xab\xb2\x99\x90\x09\x85\x90\x09\xb5\x20\x04\x0e\x20\ \x04\x65\x08\x0a\x65\x28\x04\x42\xd0\x07\xf5\x5a\xaf\xf3\x57\x7b\ \x28\x87\x7b\x5b\xa0\xb8\x54\xa0\x67\x01\x6b\x53\x42\x4b\xac\xd5\ \xe5\x9f\xc1\xd9\xa3\x07\x78\xac\x2f\x10\x0e\x0a\x9a\x0d\xc2\x10\ \xb5\xd9\x90\x0d\xc1\x20\x0f\x35\xf0\x0e\xc0\x10\x0c\xb0\x40\x08\ \xeb\x00\x0b\x1b\xd0\x06\x2d\x71\xb1\x99\xd1\x84\x63\x4b\xa9\xdf\ \x50\x9d\xdc\x9a\x9d\x23\x98\xb6\x25\xb8\x0e\x77\x70\x0e\xbb\xcb\ \xbb\x5f\x08\x9e\x28\x6b\x8a\x73\x4b\xb7\xeb\x6a\x02\x92\x70\xbc\ \x13\x40\xb8\xe0\x69\x00\x99\x70\xbc\x92\x30\x09\x40\xa0\xbc\x43\ \x60\xb8\x7a\xb7\xb8\xf3\xfe\xc7\x77\xd8\x0b\x02\xf4\x96\xa7\x5d\ \xb5\x71\x40\x47\x71\x02\x06\x62\x20\x86\x88\xe3\xc6\x8e\x84\xf9\ \x02\xda\xa0\x9c\x58\x80\x98\x45\xd0\xac\x12\x0b\x0b\xf0\x7b\xba\ \x2f\x40\x08\xb2\x00\x0b\x6e\x60\x0e\x42\xb9\x27\x19\xfb\x0d\x09\ \xf0\x0d\x63\x1b\xb2\x94\x99\x94\x22\xbb\x03\xa0\xd0\xa9\xe7\x30\ \x0a\xeb\x10\xae\xbb\xbb\x7e\x9e\x08\x9a\xe1\x29\xbc\xc3\xab\xb2\ \xc6\x2b\x09\x5e\x6b\xbc\x13\x30\x04\x41\xc0\x06\x43\x20\x04\x14\ \xec\xb5\x93\x30\x01\x83\x7b\xb3\x31\x30\x04\x72\xb0\x96\x6b\xb9\ \x05\xd5\x7b\xbd\x29\xd7\xab\xdd\x3b\x71\x39\x6a\x75\xc3\x4a\xa8\ \xe5\x75\xb0\xb3\xb6\x05\x89\x2a\x01\xcb\xda\xac\xd9\xc0\xac\x1b\ \x10\x0b\xb0\x50\x03\xeb\x40\xbf\xa5\x20\x0b\xeb\x60\x0e\xf2\x20\ \x0b\xb2\xb0\x03\xae\x2b\x42\xfb\xeb\xbf\xb1\x1b\xc0\x53\xba\xa9\ \x5a\x9a\xb6\xe7\x10\xae\x26\x28\x82\xa8\x80\x86\x9f\xa9\x91\xa1\ \x08\xc1\xa9\xa9\xb2\x1d\xfc\x11\x99\xc0\x07\x5f\x39\x04\xe8\xc8\ \x06\x7d\x90\x09\x44\xe0\xc1\x7c\x20\xbd\x23\x3c\x04\x6a\x59\x0f\ \xf5\x60\xc2\x7d\xb0\x05\x39\xcb\xb8\x8b\x36\x0f\x3e\xe6\x77\x93\ \xeb\x64\x20\x46\xac\xfe\x0f\x78\xac\x60\x90\x0d\xcb\xd9\xb0\xcd\ \x0a\x0c\x1b\x50\xb5\xda\x10\x0b\x3e\xbc\x0e\x8d\x0a\xc4\x66\x47\ \x08\xa5\x30\xc4\xa5\xd0\xa4\x06\x22\xa9\x93\xea\xbf\xfe\x2b\xa5\ \x94\x4a\x99\x13\x9a\xa5\xa0\x40\xc0\x06\x00\xae\x09\x1c\x86\xea\ \x97\x86\x9e\xa9\x8d\x1c\xd9\xc5\xa1\x88\x9a\x25\x80\xae\x93\x60\ \xbc\x23\xca\x07\x37\x0b\x9e\x22\x3c\xc2\x7c\x30\x09\xcf\x0b\xc2\ \x70\x3c\xbd\xb5\x9c\x96\x70\x30\xc7\x42\x00\x07\xb1\xba\x77\x7b\ \xa7\xaf\xbc\xb6\x05\x67\xe0\x66\x7c\x4c\x5e\x74\x88\xb4\xe3\x26\ \x9b\x04\x99\x9c\x85\x1c\xb5\x51\xbb\x01\xc2\x10\x0b\x68\xb7\xb0\ \xf2\xe0\xc8\xe6\x60\x0e\xa7\x6b\x76\xb2\x80\xba\x84\x20\x0f\x4a\ \x0c\x23\x61\x2b\xa9\xd8\x90\xad\x94\x4a\xc0\xb1\x5b\x91\x9b\x68\ \xc0\x55\x3c\xcf\x0e\x80\x0a\xbe\xeb\xb6\x60\x48\x96\x0f\xac\xa6\ \xa6\xd8\xbc\x92\xc0\xcb\x23\x1c\x03\x6c\x30\xd0\x70\x9c\xa6\x64\ \x38\x01\x1f\x5c\x0f\xbd\x5c\x02\xbe\x3c\xbd\x25\x2c\xc7\x6a\x09\ \xcc\xc6\xcc\x77\x79\xaa\xc7\x6e\xb6\x63\xbc\x06\x8f\x31\xac\x88\ \x7f\x70\xbe\x3e\xc0\x05\xcc\x29\xb5\x3e\x00\x0b\xda\x10\x0c\x1b\ \xe0\x03\x66\x07\xfe\xa7\x91\x2c\x0f\xdd\x6c\x76\xe6\xe0\x06\x6e\ \x20\xad\x2e\xbd\xc4\xf4\xb1\x03\x36\xbd\xce\x51\x1a\xa5\x9e\xfc\ \xc9\x52\x5c\xc0\xa3\x1c\x82\xeb\xc0\xbb\xea\x27\x86\x71\x1b\xb7\ \x0c\x7d\xd4\x43\x70\xd4\xb5\xa0\xc6\x44\x90\x09\x18\x9c\x8e\x19\ \x3c\xd0\x31\xd0\x07\xb5\xd0\x0d\x56\x5d\x0b\x7c\xd0\x0d\x7c\x90\ \xa6\x7d\x20\xb8\xd2\x4b\xc2\x42\xc0\x07\xf5\x30\xb8\x87\x5b\xc2\ \x79\x2a\x07\xf8\x67\xd1\x54\xb0\x63\xf8\xf7\x61\x91\x77\x9f\x8d\ \x67\xbe\x04\x69\xc3\x8b\x8a\x98\xd9\x1c\x0b\x27\x1d\x73\xda\x50\ \xd2\xc2\x00\x0b\x91\x3c\xce\xf2\x60\xbf\x6e\x10\x0c\xef\x00\x0b\ \xf8\x7b\x02\x85\x40\xd3\x4f\x21\x05\x37\x8d\xad\x95\xba\x03\x16\ \x89\x0d\x57\x9a\xa5\xf1\xac\x90\xba\x5b\xc5\x57\xa9\x7e\xdd\xb9\ \x91\x28\xfb\xae\x65\x39\xbd\xaf\xdc\xc1\x13\x10\x03\xac\x98\xc1\ \x6f\x5c\xd5\x20\xc9\x07\x7c\x80\xd5\x40\x30\xb8\x5d\x2d\xb8\x0d\ \xbd\xc1\x72\x4c\xd6\x65\x6d\xd6\x70\x80\x7f\x70\xe0\x63\xb1\xc6\ \x63\x8c\x16\x9c\x01\xbb\xab\xc7\x8a\x06\xf3\xb0\xa0\x38\xcc\x05\ \xa5\x2b\x0c\xc0\x20\x0c\x66\x77\x98\x47\xba\xbe\xc0\x50\x03\xb2\ \x60\x7b\x2f\xfe\x6d\xbf\xef\x30\xb1\xf6\x1b\x0c\xc0\xd0\xa0\xcc\ \x91\x12\xa8\x60\xd3\xea\xbc\xb1\x10\x2a\xa1\x94\x8a\x9d\xce\xb8\ \x03\xf2\x6c\xc5\x42\x1d\x86\xa8\xb0\x9a\xa9\x0c\x86\xa0\x5d\x96\ \xf0\x3d\xbd\x4b\x8d\xbc\x37\x8b\x8e\x68\x90\xc1\x1b\x6c\xd5\xdd\ \x20\x04\x06\x1d\xd6\x7b\x3b\xb8\x82\x1b\xc2\xd3\x4b\xb8\x82\x5b\ \x0f\x36\x4b\xab\x68\x5d\xc7\xb9\x6d\xd1\xf3\xc0\x8e\x6c\xb6\x05\ \xe1\xfb\x64\x34\x4a\xc3\x0f\x46\x05\xe1\xa0\x13\x3b\xdc\xb0\xc2\ \xf0\x0e\xc4\xb6\x01\x8a\xba\x9c\x6d\x00\xdd\xa9\xbb\x01\xc0\x50\ \xba\xd6\x1d\xd3\x84\x8d\x0d\x96\x8c\x1a\x61\xdb\xd8\x8e\x8d\x0d\ \xaa\x00\xd9\x9c\x6c\x00\xe6\x6d\xc0\xa3\xa0\xb6\x6c\x9b\xd9\x6e\ \x7b\x07\x9e\xb9\xd9\xe0\xc9\xca\xa0\xdd\xbc\x99\x70\x07\x02\x3d\ \xd0\xe9\xa8\xc1\xfa\xdd\x0d\xad\xfd\xda\x58\xad\xd5\x01\xee\xd5\ \xb1\xaa\xbc\x5d\x3d\xd6\x72\x60\xb8\xf3\x87\xc2\x28\xbc\x71\xcb\ \x8c\x6c\x08\x16\x90\x8e\x66\x53\x33\xbc\xb4\x6c\xc7\x0e\x5b\x20\ \x0c\x1b\xb0\x01\x9f\xcb\xe1\x68\x27\x0c\x44\xf0\xe1\x0a\xaa\x0d\ \xb2\xf0\x02\xb0\x50\xb1\x12\xb0\x01\x85\x0d\xd3\x30\x7d\xba\xa5\ \xb0\x03\xfe\x30\xd3\xe2\x36\xfd\x0d\xfe\x2b\xa9\xe6\x9d\xa5\x01\ \xac\xa5\xa3\xbc\xb6\x47\xa9\xbb\x6a\xe8\xb6\xbe\xab\xde\x61\xa8\ \x95\xac\xcc\xcf\x13\xe0\xb5\x40\xc0\x8a\x1a\x1c\x03\x53\x6d\x86\ \xdd\xf0\xdf\x25\xc0\xdf\xaa\xad\xd5\xaa\x1d\xe0\x51\x1e\xe5\x70\ \xdc\xd5\x68\x19\x03\x20\x80\xea\x14\x9d\xdb\x5b\xb0\x0f\xf3\x70\ \x06\xb9\x37\x0f\xc8\xc6\xc7\xa1\x10\x6b\x03\x1a\x04\x33\xda\xd1\ \x60\xb0\xb0\x0b\x1b\x0b\xc5\xb6\x0e\x6c\xee\xe6\xcb\x29\x01\xeb\ \xe0\x72\xef\x20\xb5\x6e\x70\xdd\xd6\x2d\xc9\x68\x50\x0a\x6c\xa0\ \xd8\x34\xf1\xa4\x09\xd0\xdd\x3b\x00\xe8\x85\xe0\xc4\x9c\x49\xa9\ \x16\x29\xca\x87\x7e\xb2\xe8\xdd\xbb\x3c\x5e\xd4\xfa\xcc\x8d\x64\ \x39\x04\xa5\xda\xc1\x25\xf0\x93\x68\xdc\xe9\xdd\x80\xd0\x4b\xde\ \xe9\x58\x3d\x01\x5a\xdd\xe4\x7c\x00\xdb\xb1\xda\xcb\x84\x1b\xd0\ \x45\x0e\x06\x70\x8a\xe5\xf3\x90\xdb\x67\x00\xeb\x7f\xa0\xc7\xf0\ \xc8\x6b\x1b\xc7\x8e\x03\x3a\xa3\xb0\xce\xb3\xf1\xf9\x07\xb2\x50\ \x03\xda\xd0\xe6\xc2\xbe\x9c\xda\x20\x6b\x2f\x77\xba\xf0\x5b\xe2\ \x7a\x5e\x0a\xea\xbe\xe2\x22\xb4\xb1\x52\xd0\xdd\xfd\x0b\xe8\x8f\ \x9d\xfe\xa5\x51\xea\xd3\x3f\x7d\xe3\x38\x3e\x0a\xbd\x5b\xcf\x63\ \x88\x0a\xa9\x6c\xd4\xac\xfc\xca\xcd\xeb\xb5\x7d\x90\x8e\x68\x10\ \x03\x42\x90\xe4\xfb\x0d\xe0\x64\xac\xd5\x56\xad\xda\x58\x2d\x04\ \xb1\x1d\xe5\x72\x50\xe4\x50\x3d\xa7\xb4\x5a\xd1\xf3\x20\x0d\xd2\ \xc0\x68\x04\xbf\xbd\x07\x5f\x9c\xac\x48\xa7\x6b\x47\x6f\x03\x49\ \x05\xe9\x3b\xf1\x21\xcd\x88\xec\x40\x08\xa8\x5b\x03\x83\xed\x06\ \xcc\x4e\x98\x68\x30\x0a\xd8\xd0\x1c\x61\x2b\x05\x92\x0a\xf3\xfd\ \x8b\x0d\xfc\x3b\xb6\x52\x29\xa1\x9d\xaa\xf2\x1e\x8a\x07\x55\xcc\ \xf2\x59\x8c\x86\xf1\xe7\x99\xe3\xce\x8d\xa4\x5a\x0b\xce\x3b\x01\ \x0c\x2d\xd0\x41\xa0\xf3\xe8\xfa\x09\xdd\xd0\xe9\xb1\xfa\x8d\xaa\ \x3d\x01\x7c\xa0\xf8\xa2\x5e\xcb\x0e\x5d\xcc\x98\x8e\xf3\xf7\x9d\ \x72\xbc\xb6\xe0\xd2\x90\x0c\xf8\x27\x0d\x0d\x3e\xa3\x1b\x47\x65\ \x20\xe6\x93\x2f\x70\x60\xf5\x86\x72\x02\xf9\x93\x2f\x20\x0f\x47\ \xca\xf5\xd0\x5a\xec\xf2\x30\xb5\x82\xed\xd7\x92\x3c\xc9\xb3\x56\ \x0a\xeb\x00\x0c\x58\x50\xad\x8c\xf1\xa0\x6c\x6f\xd3\xa8\xc0\xb1\ \x23\xbf\xce\x9c\x2c\xa5\x68\x6b\xf7\x6a\x8b\xe3\x29\x00\xf3\x5d\ \xfe\x58\x0b\xa8\x00\xfd\x25\x90\xca\x5d\x4c\xaa\x4c\x2d\x09\x66\ \xfc\xc6\x53\x5d\x0b\x9f\x90\x09\xfb\x4d\xe0\x82\x9b\xd5\x9f\xee\ \xe4\xca\x2b\xd0\x6f\x9c\x96\x39\x6b\xf8\x62\xae\xb8\x1b\xa7\xcc\ \xd2\x10\x5d\x67\x00\xe1\x08\xb6\x71\x7d\x26\x6b\x6c\xcd\x68\xf5\ \x26\x6b\xf8\xba\x0e\xe1\xf0\xfa\x5c\x8f\x05\x00\x91\x8e\x5d\x36\ \x2c\x58\x24\x00\x0b\x00\x8b\x10\xa1\x75\x84\x4a\xa1\x29\x25\x0b\ \x18\x11\x00\x6d\x0e\x24\xf8\x97\x51\xe3\x46\x8e\x1d\x3d\x7e\x04\ \x19\xb2\xa3\x09\x13\x52\x76\xec\x30\x89\xea\x64\x02\x6c\x2c\x59\ \x62\xdb\x71\xe2\x04\x10\x03\x06\xce\x9d\xc3\x13\x07\x4f\x4e\x3c\ \x29\x7a\xa6\x48\x71\x07\x55\x4d\x03\xb5\x6a\x19\x28\x61\x54\x69\ \x89\x12\x13\x24\x01\x00\x20\x69\x08\x1a\x36\x31\xfa\xd4\xe2\x03\ \xa4\x56\x3d\x21\x7d\xbc\x0a\x11\xc2\x07\x2b\x1f\x3e\xdd\xf8\x74\ \x1d\x32\x24\xc6\xda\x18\x6a\xfb\xc8\x91\xa3\x36\x06\x88\x18\x41\ \x82\xa0\x41\xc3\xee\x0f\x15\x1e\x5b\x78\x50\xd9\x12\xea\xcf\x9f\ \x2d\x7f\x5e\x6c\x39\x33\x6f\xb0\xe1\x17\xec\xc0\x6c\x81\x0c\x99\ \xca\x0b\xbc\x68\x5e\x50\xf1\x51\x0d\xea\x66\xce\x9d\x01\x60\xfe\ \xf1\x11\x24\x16\x16\x00\x12\x82\xc1\xaa\x01\xcb\xdc\xea\x52\xad\ \x25\x4a\x68\xb3\x61\x75\x02\x13\x22\x6d\xdf\xc6\xfd\x91\xa4\x94\ \x04\x27\x7d\xab\xdc\x91\xe0\xdb\x37\x98\xd8\x8c\x1b\x37\x00\xea\ \xdc\xa8\x51\x3b\x9d\x8f\x4a\xd1\x1c\xe8\x9d\x3b\x25\x6a\xd6\x52\ \x05\x44\x95\xaa\x09\x13\x6a\x25\xcd\x44\x31\xea\x10\x36\x43\xae\ \x4e\xe8\x56\xeb\xab\xd7\x3e\x61\xc3\x8e\x3d\x0b\x16\xed\x5a\xb5\ \x43\xe2\xca\x01\x21\x87\x0d\x08\xfe\x94\xd1\x04\x79\x21\xc0\x00\ \xf5\x9a\xec\x85\x3f\xd0\xc0\x24\x30\xbe\xb6\xa0\x82\x31\xc8\xe0\ \x80\x6c\x9f\x2d\xee\xca\x0b\x8c\x75\xc2\x11\xcf\x33\x0d\x01\xd0\ \xe6\x05\x30\xb2\x91\x20\x9b\x60\xd6\xa9\xc1\x9c\x77\x36\x78\xc7\ \x1c\x42\x64\x31\x11\x98\x77\xdc\x58\x6d\x35\x29\x72\xa3\xb1\x46\ \x90\x4a\x92\xc2\x24\xdf\x46\x01\x0e\x9b\xe1\x8e\x83\x09\x94\x1d\ \x88\xc2\x69\xa7\x38\x74\x8a\x0e\xa8\x9f\x84\xb2\xee\xa8\x09\x80\ \xe8\x6e\x02\x55\x92\x7a\x0a\x00\x22\x24\xe9\xa6\x04\x28\xbb\x31\ \xab\x8f\x21\x4a\x68\xcf\xbc\xf6\xc0\x22\x4b\xac\xb2\x3e\xe9\x8a\ \xad\xb4\xec\x8b\x6b\x08\x10\x86\x00\x63\x2e\x2a\x40\xf0\xfe\xaf\ \xb2\xca\x30\xb1\x8c\x1d\xcb\x26\xdb\x4b\xb2\x3e\xe7\x81\x6c\x9e\ \x79\xa8\xc0\xeb\x05\x10\xb6\x48\x47\xb3\x0d\x37\x8c\x05\xc0\x58\ \x24\x90\x20\x80\x75\xd6\x79\x07\x18\xd8\x36\x70\xe3\x04\x60\xda\ \x48\x31\xc6\x73\xd6\x31\xa7\x36\x1b\x47\xad\xd1\x84\x1d\x46\x39\ \x09\x15\xe0\x54\x4d\xa0\xd5\xe1\x76\x28\x2e\x26\x03\x4e\xa8\x89\ \x39\x9e\x9c\x53\x12\x28\x5d\xa9\x33\x60\xbb\xee\x12\xf0\x6e\x82\ \xf0\xa0\xba\x52\x92\x49\x32\xf9\xa4\x9b\x3b\xd2\x2a\x41\xbe\xae\ \x9c\x2d\x13\xab\x49\x26\x11\x42\xae\xaa\xd8\x94\x23\x86\x6c\xe9\ \x02\x03\x0c\x2a\x1a\xa4\xd0\x4e\x71\xf1\xd2\xf3\xb2\xc8\xb6\x00\ \x14\x42\x40\xa9\x00\xe3\xbf\x2d\x7c\xd0\x06\xc3\x45\x37\xf4\x81\ \x9d\x17\x7c\x80\x34\x96\x12\x37\x38\xa8\x0d\x7f\x0b\x6a\xc3\x8d\ \x38\x4a\x89\x43\x16\x83\xdf\x69\x43\x02\x51\x49\x65\xf8\x46\x13\ \x8e\x54\x49\xd5\x54\x51\xe1\x4d\x38\xe2\x60\x45\x0e\x1b\x9a\x6c\ \x5a\xc7\xa7\x38\x62\xd0\xc9\xb9\x9f\x76\xb5\x4e\x3b\x6c\x84\x15\ \xb6\x4a\x22\x8a\xcd\x04\xbd\x35\xcd\x0b\x8b\x0f\xae\xea\x29\xd3\ \x2c\x69\x27\xf9\xa4\x8f\xba\xd8\xb8\xf6\xbe\xb5\xde\xfe\xec\x16\ \x84\x6f\x1b\x1b\xb7\x68\x72\x5f\xe8\x6b\x9e\x33\x96\x96\x66\x1e\ \x10\xba\xbd\x8b\x1d\x2a\xd2\x59\xa1\x9a\x32\xe6\xf5\x0c\xb4\x20\ \xc0\x10\x26\x44\x6d\xe4\x71\x03\x18\xb1\x37\x68\x63\x53\x4e\x41\ \x91\x05\xa2\xd6\xd6\x01\xa6\x20\x22\x16\x6e\x38\x6e\x8d\x4c\x18\ \x85\x60\x54\x77\x00\x8e\xc7\xe0\x84\x2b\xe4\xa5\xe3\x64\xb5\xe9\ \x26\x91\x43\xf6\x69\xe4\xa0\xee\xc0\x0e\x4a\x28\x33\x09\x4f\x3c\ \x49\x24\xc9\x44\xac\x6a\xe9\x23\x13\x08\xb2\xb8\x4c\xf6\x93\xb2\ \xa6\x9d\x84\x8f\x21\x82\xa8\xaa\xad\x97\x63\xa8\x0a\x04\x9e\xc1\ \xa0\x53\x4f\xa3\x8d\x96\x1a\x5d\xa6\x9b\x6e\xd7\x4e\x6f\xf7\xf1\ \x00\xeb\xac\x7d\xf8\x63\x9d\x6c\xda\xc8\x26\x96\x58\xc2\x8e\xad\ \xd2\xe0\x4f\x70\xa3\x6e\xbc\x4a\x31\x67\x53\xd8\x2c\x82\x5b\x6e\ \x52\xe9\x6e\xad\x94\xbc\x79\xd4\xdb\xd5\x6f\x7a\x6b\xe9\x38\x20\ \x68\x95\xe1\xa6\x73\x0a\xdf\x09\xfc\xf0\xa7\x23\x2a\xbb\x09\xb0\ \xc9\x44\x92\x95\x89\x28\x64\x82\xf8\xaa\x4d\x6b\xcc\x33\xbb\xf1\ \xe7\x13\xfb\xbb\xb1\x7f\xda\x9c\xd5\x84\xcb\xab\xb8\xd8\xe2\xcf\ \xd6\x88\xb6\x3a\xd6\xed\xa5\x2f\x90\x49\x0c\x65\xfe\x04\x14\x04\ \x10\xcc\x43\x51\xb6\xe3\x8c\x04\xb6\x00\x86\x74\x08\x23\x1b\xda\ \xf0\x9d\x3c\x62\xe1\xa2\x73\x98\x08\x14\x31\x92\x45\x6b\x56\x14\ \x36\xb1\x05\xe3\x45\x3e\x72\x1e\xc3\x4a\xf2\x10\xbb\x9d\x8a\x39\ \x2f\xf4\x4d\xab\x60\xe5\x37\xe3\x6c\xcc\x26\x77\xf8\x1e\x74\xc4\ \x37\x04\x3c\x0c\xe1\x70\x49\x29\x0a\x10\xb0\xd1\x8d\x94\x65\x62\ \x12\x66\x69\xd6\x56\xbc\xc4\x1e\x32\xf9\x03\x7f\xf9\xcb\x9f\xb1\ \x3c\xb7\x26\x39\x08\xa1\x1e\x70\xe8\x0a\x5c\xb4\xf8\xb4\x17\x84\ \x8b\x80\xac\x33\x10\x60\xa4\x21\x8d\x2d\x08\x6d\x82\x54\x70\x20\ \x04\x3d\x03\x09\x3a\xa5\x63\x03\xc2\xf8\x5d\x2c\xd6\x21\x8f\x0f\ \x46\x64\x1d\x9f\x1a\x85\xc1\x0c\x26\x0f\x84\x5d\xca\x0d\x7f\x34\ \x61\x21\x52\x68\xa3\x92\xb0\x01\x22\x10\x79\xe1\x0b\xe3\xa0\x37\ \xdf\xf8\x26\x7b\xc7\x01\x05\x91\x50\x91\x82\xef\x29\x09\x0f\x6b\ \xd9\xc9\x10\xa8\x53\x1d\x07\x18\x00\x3d\xd9\x01\x02\x97\x6a\x21\ \x04\x20\xb8\xa7\x94\xf2\xf9\x4a\x99\xf8\x60\xbf\xfc\x4d\x82\x13\ \x68\x5a\xa2\x1c\xea\x41\x33\x7f\xc8\xec\x8a\xb3\xbc\xa2\x64\xba\ \xf8\xc5\x71\x01\xe8\x31\x67\x48\xc6\x15\xf6\xfe\x40\x83\x2b\x24\ \x06\x50\xfb\x90\x97\x1a\x37\x23\x41\xa1\x55\xd0\x77\x1b\x00\x86\ \x3c\xd6\xe1\x06\x79\x04\x21\x22\xf2\x30\x98\x1d\xcd\x41\x36\x48\ \x89\xed\x1d\xef\x30\xe1\x06\x82\x51\x88\xe6\x0d\x32\x24\x26\x40\ \x45\x65\x5a\xb3\x48\xe6\x1c\x09\x62\x31\x3c\xc9\x23\x8d\xa3\x0a\ \x6c\x18\x60\x63\xa8\xf8\x5e\x25\x7d\x82\xc9\x18\x4c\x67\x93\xb5\ \x00\x42\x40\x83\xd8\x0d\xcb\x59\x0e\x2b\x5c\x7a\x9f\x7c\xca\xf4\ \x09\xfd\x71\x8e\x0f\xec\xf1\x0a\x2d\x6b\x39\x4b\xb2\xf8\xa3\x12\ \xd2\xd8\x07\x1c\xe6\xc1\x83\x03\xf1\xd2\x4e\x09\x9a\x87\x34\x60\ \x20\xcc\x31\xb8\x60\x0c\x4d\xd3\xe8\x3e\xf6\xa0\x4c\xce\x58\x61\ \x1d\x16\xf2\x81\x30\xde\xe1\x3b\x48\x98\x83\x8e\xef\x58\x07\x8b\ \xcc\x91\xc7\x3b\x9e\x28\x61\x65\x13\x1b\x30\xc4\xf9\x4d\x68\xb6\ \xa1\x9c\xe6\x1c\x89\x14\xec\x14\x3d\xea\xb5\x33\x0e\xc0\xd9\xdb\ \x49\xe8\x49\x4f\x21\x02\x61\x48\x35\x39\x87\x03\xee\x40\x49\x5d\ \xed\x24\x06\x99\x04\x8a\x26\xef\x50\x14\x03\x80\x25\xa0\xa5\x4c\ \x4f\x56\xee\x07\x96\x31\xc5\x0c\x8a\xac\x64\x2b\x5b\xfb\x50\x8f\ \x4a\xd4\xb2\x12\x34\xe3\x43\x25\x2a\xb1\xfe\x8f\x7a\x00\x8a\x41\ \x03\xf4\x68\x10\xec\xc5\x03\xa5\x8d\x74\x0f\xc8\xd8\x03\x19\xe7\ \x01\x07\x69\x5c\xa1\x76\x2c\xad\xc6\x4b\x29\x28\x0c\x60\x64\x63\ \xa6\xb1\x90\x07\x1d\x81\x01\x0a\x3a\xc2\x08\x14\x6e\x20\x9b\xbf\ \x80\xaa\x3c\x4c\xb9\xa1\x52\x07\x01\x06\x36\x8e\x8a\xd4\x7f\x94\ \x64\x5c\xeb\x44\xc5\x28\xdc\xc9\xa3\xd8\xa2\xa4\x37\xb0\x9a\x2a\ \x36\x54\x41\x14\xa2\xa0\xc2\x01\x59\x75\x80\x03\x94\xc4\x96\xb6\ \x04\xe5\x70\x42\x30\x80\x03\xfa\x20\x83\x52\x16\x94\x4b\x08\x75\ \x16\x58\x68\xc6\xca\x84\xb6\x87\x2b\x7d\x80\x03\xcd\x2a\x61\xcb\ \x8a\xf2\x21\xa3\x5b\x90\x43\x61\x54\xe7\xd1\x8f\xa2\x31\xa4\x23\ \xbd\x02\x1c\xa8\x60\xcc\x70\xb0\xf4\x33\xe9\xa0\x13\x66\x12\x56\ \x90\xcd\xc6\x02\x14\xef\x80\x04\x35\x41\xa1\xa9\x03\x6c\xea\x44\ \x28\x7a\x51\x50\x83\x01\x48\x4b\x65\x03\x53\x27\x58\xed\x20\x49\ \x12\x83\xa2\x11\x2c\xb6\xb2\x3d\x12\x6d\x29\x76\x5b\x03\xe8\xb6\ \x9e\xbc\xc5\x6a\x72\xef\xf0\xdb\xe0\x86\x95\x2d\x3d\x0c\x4a\x1f\ \x4a\xe0\x00\x21\x90\x58\x08\x32\x30\x13\xe6\xcc\x92\x50\xe9\x96\ \x89\xad\x62\xca\xae\x15\xad\x98\xd7\xfe\xbb\x52\xb4\x96\x7c\x85\ \xd0\xb7\x1a\x04\x58\x8f\xda\x0b\x30\x4a\x0b\xa6\x34\x00\xb3\x8f\ \x79\xec\xc3\x6a\xca\xc4\x82\x15\xe8\xe4\x21\xdd\x49\x00\x2a\x9c\ \x32\x87\x1b\x30\x7b\x8e\xcc\xae\xe6\x04\x29\x3a\x41\x8c\x56\x73\ \xa2\x01\x13\x35\x61\x25\x0c\xc6\x09\xbe\xc1\xda\x8d\xa0\x73\x75\ \xa5\x68\xe7\x3a\x9b\xfa\x9b\xa1\x0c\xe9\xc2\x37\xc1\x30\x86\x1d\ \x20\x07\xaf\xb6\xa5\x2d\xd4\x71\x40\x2d\x94\x4b\xe2\xad\x30\xb7\ \x2c\xf8\x5b\x31\x2a\xdb\x53\xa6\xeb\x7a\x05\x0e\x64\x99\xe5\xa1\ \xf5\x6a\x4b\xba\x5a\x34\x97\x7d\x38\xd7\x1f\xd8\xe1\xc5\x2f\xea\ \x25\x69\xd2\x48\x06\x0c\xce\x10\x5e\x40\x9d\xe1\xb1\x10\xc4\x82\ \x3d\xe6\x04\x86\xbb\x80\x81\x8f\xdd\xcc\x6c\x66\x73\x5a\xb0\x81\ \xc9\x62\x91\xf2\x30\x07\xa8\x56\xf3\xc7\x59\x73\x53\xa8\x1b\xc0\ \xb5\x38\xbf\x91\xe0\x86\x99\xf9\xcc\x47\x8a\x1e\x9a\x61\x78\x12\ \xda\xe2\xb6\xb7\x72\xae\x89\x0c\x0c\xd0\xbd\x14\xd8\x99\x3e\x9a\ \x44\xae\x10\xc0\x44\xca\x51\x8e\x05\xd0\x67\x89\x4f\x2a\x35\xd7\ \x15\x43\xd3\x55\x66\x73\xad\xeb\x5d\xb3\x5b\xd7\x1b\xc3\x01\x42\ \xea\x62\x50\x83\xc6\xfb\x45\x00\xfe\xa1\x11\x98\x23\x55\x2c\xa0\ \x56\x7a\x35\xdb\x25\x79\x1d\x42\x9b\x8c\xbd\x26\x05\x8a\x0d\x9c\ \x20\x16\xe6\xc8\x72\x1e\xd9\xf0\x90\x20\xc8\x62\x52\x5a\x8e\x32\ \x8c\xb6\x6c\xa9\xb2\x75\x39\x18\x42\x7d\x07\x0a\x91\x6a\x02\x4a\ \x8b\xab\x35\x75\x1b\x98\x83\x63\xbb\x2a\x95\x58\x18\xc3\xe7\xa8\ \x49\x27\x6b\x42\x13\x66\xa7\x80\x87\x6a\xe9\x61\x4f\xfa\x70\x07\ \x11\x9b\xf5\x2c\xd6\xee\x06\x99\xce\xc2\x1e\x3e\x4c\xd4\xdc\xe6\ \xce\xeb\x15\xcd\xad\xd7\x1a\xef\x83\xdc\x7b\x3d\x77\xa0\x04\x35\ \x28\xf2\xda\xcb\x5c\x22\xdd\x43\xd2\xa5\xb1\xb4\x33\x1c\xd9\x76\ \x5c\x58\x41\xb7\xde\x95\x0e\x2a\x4c\x4a\x9a\x1a\xdc\xc0\x67\x6d\ \x9a\xb6\xe3\x95\xe2\x1c\xef\xb8\xf2\x95\x4f\xf4\x4d\xd3\x0a\xaf\ \x6c\x98\xaa\x75\x69\xdf\xc1\xeb\x52\x99\xc0\x90\x5f\x24\xd8\xc0\ \x06\x46\xbd\xa7\xa6\x4a\x15\xf1\xcc\xce\x6e\xcf\x81\x8a\x0d\xf7\ \x3d\xb8\xcb\x4e\xae\x70\x4d\xde\xc3\x97\xad\x29\x05\xd2\x16\x02\ \x56\x64\xfe\xbe\xf8\xa4\x05\x0e\xf5\xab\x31\x5d\x79\x0e\x07\x39\ \xc0\xa1\x12\x56\xe0\xeb\x3e\x7c\x6e\x0f\x8b\x66\xb4\xc8\x1a\xb5\ \x02\x0c\xc8\x68\x18\x4c\xd4\xfe\xa9\x68\x8e\x39\x60\x61\xaf\x30\ \x06\x62\xda\x43\xa4\x9f\x5e\x14\x16\xc2\x91\x8e\x2e\x52\x21\x5e\ \xe1\xc0\x20\xae\xe5\x91\x0e\x73\x7c\x76\x1d\x03\x3b\x1e\x44\x0c\ \x86\xf0\x4a\x01\x58\x79\x7e\x54\xc8\xac\x5f\x74\x22\xb6\xd3\xc8\ \x04\x29\xf0\x68\xdc\x33\x2e\xec\x23\xed\x40\x15\xaa\x52\xc9\x76\ \x6a\xc2\x77\xe3\x6e\x55\xab\xde\x0b\x6e\x70\xfb\x10\x56\x93\xa7\ \xe5\xd9\x30\x7b\x4f\xcc\xc8\xa2\x7e\xb4\xf4\xa1\xe6\x76\xdd\xae\ \x5e\xeb\x01\x97\x79\xe8\x55\xf3\x9b\xe7\xbc\xe7\xeb\x71\x06\x69\ \x58\xc1\x1e\x66\x38\x83\x74\x33\x8c\x71\xf1\x8f\x00\x21\x0c\xfe\ \x4b\x86\x4c\xbb\x02\x1a\x18\x83\x31\x10\xbd\x2b\x78\x3a\x2b\xa0\ \x82\x52\x3b\x03\x6d\xb0\x20\x38\xf2\x01\x1f\xc8\x2c\xcc\x5a\x87\ \x87\x78\xad\xb8\xcb\xa3\x28\x23\x1e\x80\x33\xad\x4d\x01\x86\x01\ \x83\x11\x42\x88\xb2\x60\x30\xa1\x31\x4b\x21\xd7\x22\x2f\x77\x8a\ \x1e\x19\x94\x30\x55\xe9\x15\x03\x50\x15\x5d\xd1\xc1\x9e\x10\xae\ \x1e\xd4\xaa\x3e\x50\xae\xa0\x18\x1d\xd1\xf9\x92\xb6\x52\x3c\x33\ \x99\x39\xfc\xb0\x3c\x7f\xb0\x28\x9e\xfb\x2e\x39\xb8\x3f\xcd\xf3\ \x3f\x7b\xb0\x07\x22\xd3\xfe\x3c\x69\xa0\x42\x7b\x10\x3d\xbf\x82\ \x0c\x3c\x11\x97\xbd\x08\x90\x40\x11\x29\x61\x4a\xba\x31\x40\x86\ \x62\x32\xb2\x79\xc1\x82\x3d\xa0\x3d\x5f\x4a\x87\x79\x48\x87\x49\ \x89\xc3\x81\xb3\x90\x9c\xaa\x38\xb5\x89\x83\x83\x5b\x87\x51\x00\ \x95\x39\x42\xb8\x3f\x2a\xbb\x3f\x42\x11\x37\x50\xad\x17\x94\x82\ \xb7\xe3\xa5\x75\x3a\x12\xbc\x00\x36\x34\xc3\x9b\x8d\xc3\xbe\x49\ \x12\x1f\x5c\x91\x03\xa0\x90\x03\xef\xd3\x2a\xe5\x2a\x01\xea\x58\ \x13\x35\x89\x9f\x66\x81\x16\x44\x13\x82\x6c\x91\x25\x9e\xbb\x28\ \xcd\x03\xaf\x22\xb3\x02\x8c\xc2\x42\x2a\xc4\x3c\xcd\xa3\xc2\x3d\ \xd0\xc2\xa6\x19\xba\x8d\x8a\x1d\xbc\x28\xbd\x3f\xd8\x28\xc2\x18\ \xa3\x64\x30\x83\x3d\x70\x81\x60\x0c\x46\x7b\x40\x0c\x0f\xa0\x37\ \xcf\xf0\x00\x2b\x98\x90\xcb\x38\x03\x61\xb0\x02\xf8\x02\x10\x36\ \x08\x97\x52\x40\xc4\xbb\x28\x05\x6b\x8a\x08\x2a\xd3\x32\x83\x39\ \xb8\x28\xd3\x32\xd5\xf8\x23\x70\x7a\x91\x50\x51\x30\x3c\x20\xaf\ \xae\x03\xbe\x75\x1a\x38\x3c\x50\x09\xe6\x78\xb0\xd8\x9a\x44\xaf\ \x1a\x1f\xe1\x1a\xbf\x7a\x24\x31\x30\x01\x93\x4e\x3c\xbf\x96\x8b\ \x2e\x73\xc3\x0f\x10\xfe\x80\x83\xfb\x0b\xc8\x33\x90\x10\x38\x38\ \x03\x59\x5c\xc5\x91\x82\x01\xd7\xf3\xbf\x3d\x68\xc0\x31\xb0\x07\ \x2b\x58\x9a\xa1\x83\x8c\x8e\x42\x03\x6f\xe9\x0b\x4c\x43\x17\x69\ \x30\x03\x92\x72\x81\x32\x00\xc9\x32\xa8\x06\x2a\x80\x83\xda\x39\ \x46\xa8\x48\xc6\x09\xb2\x97\x2d\x80\x81\x6a\x08\x07\x1f\x98\x20\ \x00\x09\x90\xff\xe8\x96\xca\x28\x38\x83\x83\xb5\xd5\xc8\x49\x4f\ \xd9\xb2\x4a\x11\x1b\x73\x90\x05\x86\x20\x04\x58\x80\x05\xd0\xfa\ \x26\xda\x78\xc1\x74\x3a\xc7\xae\x6b\x0d\x88\x00\x3e\x76\x7a\xa1\ \x24\xb9\x03\xe8\xf0\x2a\x94\xbb\x24\x10\xd3\x15\x4d\x4a\x81\x95\ \xbb\x03\xc4\x6b\x16\x2f\x31\x3f\x9e\xa1\x8f\xb6\x80\x28\x73\xeb\ \x03\xd3\x01\xc8\xc5\x12\x94\x7d\x20\xa3\x2d\xb0\x82\x2b\x10\x3d\ \x91\x82\x01\x18\xc8\x34\x87\x2c\xa9\x31\xd8\x83\x55\xdc\x07\xa6\ \xf3\x2b\xa2\x41\x9a\xa1\x83\x01\x1a\xd0\xb4\x64\x18\x26\x33\xfc\ \xc8\x90\x1c\xc9\x74\x30\x46\x00\xb8\x1a\x0f\xa8\x06\x2b\x98\x07\ \x52\x63\x87\x43\x91\x86\x70\xa8\x06\x61\x28\xa3\x6e\xa9\x3a\x10\ \x98\x14\x3b\x3c\x1e\x80\x23\x1b\x22\x38\x80\x9d\x92\xb5\x0e\x8a\ \x32\x68\xea\xb7\xfe\x58\x0b\xa1\x52\x58\x11\x15\x14\x47\x17\x74\ \x1e\x92\xb8\x43\x5e\x02\x36\xa7\x8c\x03\x44\x8a\xad\x9d\x80\x0e\ \x1d\xaa\x33\x90\xf9\xb0\xb6\x20\xbc\xad\x34\xae\x7a\x6c\x96\xaf\ \x04\x4b\xd2\x01\x9d\x6b\x79\x8b\xb7\x08\xaf\x3e\xa0\x02\x36\x78\ \x0c\x8d\x22\xc8\xa5\x83\x8c\xb9\x4c\x0c\x91\xb2\x82\x64\x78\x4b\ \x64\xf8\x48\xbc\x84\x01\x22\x7b\x1d\xbf\x62\x97\xbf\xc4\xb4\x33\ \xb8\x02\x17\x40\x86\xb9\x04\x46\x61\x0c\x49\xc6\x0c\xc0\x31\x60\ \x4c\x0f\xd8\x83\x7d\x98\x40\xc1\x3a\x0c\x91\x32\x83\x70\x90\x06\ \xaa\x63\x83\x17\x58\x87\x2d\x68\x88\xaa\xb3\xc3\x52\x00\x01\x79\ \x08\x2d\x7f\x01\x86\x58\x1b\x05\xe2\x1b\xc1\xd5\xac\x0c\x83\x8b\ \xb2\xb1\x53\x30\x29\x30\xc7\xa5\x54\xa7\x45\x5c\x27\x35\x93\x2d\ \x91\x69\x8e\x4b\x5a\x0b\xb1\x24\xae\x4b\x3a\xb9\xf2\x5b\x13\x96\ \x03\x45\x11\x3b\x4e\x69\x04\x9d\xb6\xd0\xa2\xf0\x82\x10\x52\x73\ \xb7\x5a\x14\xa3\x00\xe4\xbf\x31\x6a\x2c\xee\x44\xcf\x2b\x90\xc8\ \xc5\xaa\x51\x63\xf2\x2b\xc2\x6a\xac\x3d\x80\x01\x60\x2c\x83\x31\ \xf8\xc5\x92\x2a\x83\xc3\x04\x49\x00\x48\xac\xb7\xd4\x06\x3a\xa9\ \x8c\xc7\x50\xfe\x9a\xfc\x1c\x23\xbf\xa2\x93\x2d\x90\xa6\x17\x88\ \x08\x59\xb0\x26\x50\x31\xc1\xe2\x3b\x01\x79\x60\xcd\x3b\x02\x95\ \xb1\x53\x4d\xe1\x23\x04\xb0\x31\x21\x16\x5c\x3b\x05\x83\x3e\x0b\ \x65\xca\xa6\x8c\x9e\xff\xd0\x89\x3a\xbd\x15\xb6\xe0\x99\x3c\x0d\ \x1d\x4f\xf4\xa1\xc2\x8b\x1f\x96\x63\x8f\x35\x51\x51\xd0\xc9\x0f\ \x08\x91\x03\x92\x9c\x0c\x30\x10\x94\xc8\xe0\x81\xc3\x08\x40\xd7\ \x59\x9a\xc0\x0c\x46\x21\xad\x52\xa6\x43\xc0\xec\x5c\x3a\x41\x09\ \x52\xc4\x22\xd2\x32\x20\x26\x1a\x38\x4c\x63\x0c\xc9\x3d\x00\x14\ \x39\xd8\xa5\xad\x41\x23\x33\x30\x83\x4c\x6b\x82\x79\xf0\x01\x40\ \x59\x07\x76\x59\x87\x74\xa8\x81\xd8\xb1\x26\xff\xec\xac\x2c\xcb\ \x14\xa0\x74\x35\x50\x31\x2d\x7f\x41\xbb\x9c\x02\x1b\x68\x2a\x21\ \xd3\x6a\xbe\xdc\x28\x89\xd9\x3c\xb3\x43\x9a\xd3\xe0\xb3\xcd\x23\ \xc9\x09\xdf\x04\x19\x9e\xb9\xc6\xe4\xd4\x53\x4f\x24\x2e\x22\x7c\ \x19\xaf\xe8\x44\x69\xa4\x0a\xfe\x08\x2f\xc0\x28\x23\xc7\x10\xc0\ \x76\x01\x0c\xc2\x10\x94\x50\x90\x06\x1a\x40\xac\x2b\x48\x86\xa5\ \x9b\xc8\x33\xb0\x82\xb7\x4c\x3a\x21\x8d\x4b\x8f\x44\x2c\x25\x4d\ \x3a\xee\xfe\x44\x06\x64\x30\x03\xc8\x84\x2f\xc9\x6c\x37\xc4\xc0\ \x34\x55\x4d\xc0\xc4\x38\x03\x98\xec\x0f\x43\xc9\x29\x59\xd0\x52\ \xbb\xd8\x23\x84\x5b\x8d\x32\x0d\xaa\xb2\x79\x91\xb2\x3b\x91\xb1\ \x41\xc1\x13\x98\x50\x44\x84\x3b\x66\x65\x56\x82\xf1\xc0\xa6\xa4\ \x8a\x8f\x89\x03\x6a\x65\x83\x8f\x51\xd1\x41\xb5\x0b\xbb\xc8\x53\ \x3c\x25\x9d\x98\x25\xae\xfa\x88\x1f\x2f\xd1\x8f\xbb\x00\x90\x43\ \x89\x8c\x09\xb4\x8c\x01\x32\xba\xcb\xf8\x0b\xf3\x14\xd2\x64\xf0\ \x51\x4d\xbd\x82\x05\x14\xc6\x76\x9d\x4b\x61\x42\x4f\xd6\x1b\x03\ \x90\x74\x81\x62\x4a\x8c\xcc\x0c\x17\x5f\x22\x58\x60\x82\xd7\x64\ \x70\x05\x1f\x4d\x87\x2d\x10\x10\xcb\x30\xb8\x0e\x04\x03\x2e\x2d\ \x38\x59\x83\xb5\x8b\xfd\x26\x60\x05\xa7\x41\xf4\x49\xa1\x02\x44\ \x37\x50\x8d\x63\xc5\x0d\xb7\x8b\x3e\xb5\x91\x53\x74\x24\x59\x16\ \x2a\x85\x9c\x30\xd9\xd0\x39\x59\x6a\xb4\x0b\xbc\xc0\xd9\x96\xad\ \x0a\x3d\x35\xdc\xc3\xa5\x0f\x39\x60\x4e\xd3\x29\x14\x9d\xcd\xb7\ \xbc\x10\x17\x3d\xb1\x17\xc2\xc8\x34\x5a\x3c\x97\x33\x18\x52\x24\ \x0d\x49\xa5\x1d\x52\x87\xa4\x81\xa1\x9d\x4b\x32\x22\xb5\xff\x38\ \x1a\xfe\x6f\x71\x37\xcc\xa5\x4b\x4c\xd3\xda\x2a\x85\x43\x69\xf0\ \x01\xaa\x13\x9a\xbb\x78\x01\x83\x33\x18\x10\xd0\x23\x59\x33\x91\ \xb1\x23\x2a\x17\x29\xca\xdd\xbd\x35\xb8\x25\x4a\x73\x80\x85\x19\ \x79\x41\x55\x20\x2f\x16\xb2\xdb\x60\x8b\x3b\x16\x1a\x18\x6b\x12\ \x19\xbe\x25\x1d\x9e\x69\x59\x9c\x15\x5c\x97\x9d\xde\xeb\x1d\xdc\ \xff\x20\xdc\xb9\xa8\x3c\xf0\x9a\x8c\x9c\x7d\xdc\x2f\x52\x54\x40\ \xf9\x8b\x6f\x41\x8c\xcc\x0d\xc9\x90\x74\x81\x3d\xb8\x02\xd7\x63\ \x9a\xa5\x61\x90\x6e\x81\x1a\x72\xf1\x16\xd7\x91\x4b\xb8\x1c\x29\ \x33\x98\xcb\x04\x4c\x5d\xa5\x91\x06\x6d\x48\xd8\x39\x99\x93\x00\ \x99\x23\x59\x18\xdb\xce\x34\x4d\xa2\x52\xb8\x9c\x84\xdb\x08\x85\ \xa6\x77\x90\x26\x42\x00\x81\x52\xd0\xd2\x1d\x90\x5b\xdb\x30\x01\ \xe3\x3d\x5e\xbd\x55\x5e\xe9\x7b\xca\xdb\x44\x03\x3b\xf5\xd0\x8f\ \xa1\x46\x96\xd5\xde\xff\x90\x46\x15\x3d\x61\x76\x4b\xce\x42\x95\ \x0c\x30\x98\xb4\x75\x5b\x9d\xc5\xe8\xa2\xd6\x79\xcb\xa7\x4d\x5f\ \xa8\x15\xd2\x00\x64\x17\xf9\x1d\xc0\x9e\x05\x8c\xbf\x38\xdf\xa5\ \xc5\xdf\xa3\x35\x62\x83\x9d\x4b\x33\x58\x3a\x8d\x7a\xc3\xd7\x95\ \xfe\xd5\x83\x73\x03\x61\x8d\xb5\x3e\x34\xad\x41\x8c\x91\x75\x08\ \xde\x59\xf3\xbd\x6b\xb4\x13\x54\x30\x27\x0a\xdd\xe0\x0e\x56\x5e\ \x77\x82\x08\xd0\x39\x1e\x23\xa9\x53\xdf\x3c\xd9\x14\x9e\x5e\x3d\ \xbd\x5e\xd2\x0d\x2c\x42\xdd\x02\x83\x9c\x07\xd3\xab\xb4\xca\x70\ \xd4\x2b\xe0\xce\x1c\x76\x01\x62\x22\xa3\xf1\xac\x0c\xc7\xd8\x0b\ \x1d\x9b\x07\xf4\x12\xbd\xfc\x1d\x29\x7b\x38\x5a\x18\xe8\xc8\x05\ \xbc\x02\x83\x3d\x58\xfe\x93\x90\x75\xc8\xc0\x97\x0a\xdb\x4a\x81\ \x11\x14\x89\x35\xe5\xa3\xb5\x18\x51\x0d\xe1\x55\xb8\x33\xb5\x93\ \x20\x20\xde\xd8\x54\xca\xe3\x8d\xd3\x31\x06\x36\x6b\x3a\x59\xbb\ \xc0\x83\x51\x00\x19\x91\x59\x8b\x35\x66\xe3\xc3\x75\xe3\xc0\x3d\ \xc7\x81\xfd\x0b\x3b\x66\xb7\x54\xa5\x81\x5f\xfe\xe5\x61\x72\x57\ \x5d\xaa\x5a\x03\xb1\x5f\x4c\x1b\x52\x7e\x05\xc0\x4c\x53\xcf\x60\ \x46\x2f\x60\xa6\x01\x83\x15\x06\x18\xb0\x02\x6d\xd0\x86\x32\xe2\ \x4c\x10\x00\x90\x11\xd2\x14\xff\xf2\xe4\x4e\xfe\x66\x58\xf0\x55\ \xd5\x04\x61\x9b\x2c\x65\xb9\xf1\xb5\x5e\x9a\x4d\x31\x9e\xbe\x94\ \x95\x2d\x6a\xcc\x09\x78\x46\x05\x0f\x7d\x5e\x0f\xbd\x56\x3c\xfe\ \x3d\xdc\xe9\x25\x5d\x65\x1d\xe5\x49\x5b\xca\xc3\x98\x87\x04\xec\ \xc5\x4c\x4b\x40\x40\xf9\x03\x30\x10\x10\x03\xe9\x13\x64\x16\x26\ \xfd\x4d\x06\x76\x45\x86\x68\xa6\xcb\x8e\xcc\x5c\xd6\x63\xdf\x5f\ \x8e\xe8\x10\x50\x55\x46\x0e\x87\x55\x84\x2f\x9a\xc4\x59\x83\x03\ \xad\xdf\x4d\x38\x2d\x83\x91\x49\x09\x5e\x2c\xa6\xa6\x72\xb6\x93\ \x73\x8e\x9b\x64\x35\x9a\x20\xc0\x83\x75\xee\x60\xbb\x80\xd6\xe6\ \x90\x3b\x6a\x8d\x81\xe6\x90\xc6\xaf\x7a\xde\x8f\xc9\xd6\xa0\xfe\ \xd0\x41\x65\x63\x0a\x79\x63\xea\x85\xd3\xbc\x30\xc0\x8c\x2c\xcf\ \xa9\x15\x62\x41\x61\xba\x31\x32\xe4\x45\x5e\x5a\x7e\x3d\xc3\xb9\ \x5c\xda\x61\x1a\xa6\x5f\x7e\x64\x55\x55\xd5\x69\xd6\x4f\x06\xd1\ \xe6\x8b\x7c\x1a\x2f\xf5\x97\x4e\x59\xc1\x14\x51\x8d\xa2\x24\x4a\ \x5f\x1d\xc7\x9c\xf2\x40\x3b\x61\x83\x0b\xb6\x0d\x30\x8e\x69\x9c\ \xa0\x69\x92\x85\x08\x77\x66\x8e\x6b\xa4\xc6\x6a\x15\x8a\x38\x00\ \x1d\x9d\xf8\xaa\xc2\xc6\xa4\xde\x94\x59\x7c\xb6\xe5\x6b\x05\x57\ \x71\x2d\x0c\x5e\xe6\x25\x6f\x09\x68\xf4\x4a\x86\x45\xf5\xdf\xce\ \x65\x5f\xd1\xe3\x5f\xfd\x5d\xc0\xa4\xc3\xe8\x60\x8c\x68\xfe\xfc\ \x45\x2f\x61\xfa\x5c\xaf\x6e\x02\xfd\xd5\xdf\xfe\xf3\x01\x08\x89\ \x43\x39\xe8\x4c\x4a\x49\x18\xd3\xb0\xa9\xa2\x34\xa1\xe4\x0b\x5e\ \x37\x08\xa7\x6f\x32\x07\xe0\x13\x17\x36\x70\xe9\x5e\xab\xd0\xd5\ \x49\x87\x13\x58\x87\x3b\x94\x53\x16\x4a\xd9\x57\x86\x30\x6b\x54\ \xd1\x51\x50\x85\x3b\x00\x51\x35\xbe\x4a\xc3\x4e\xec\xc2\x75\xe3\ \x97\x7d\xd9\x16\x35\xb7\x55\x0c\x40\x49\x5b\x4a\xa9\x51\x57\x46\ \x26\x5a\x40\x81\x6a\xc3\x4a\x3a\x6a\x5e\x3a\x64\x56\xd5\xc3\x82\ \xe6\x7e\xed\x57\x89\x56\x40\xc3\x22\xa6\xfd\x4d\xe2\x69\x7e\xd5\ \x37\x4c\x07\x78\x01\x05\x0d\x9c\xa3\x4a\x01\x91\x77\x10\x67\xa2\ \xfc\xa3\xb5\xa6\x6d\x4b\x81\x38\xe2\x8e\x6b\x5c\xf6\xe2\xe2\xe5\ \xe7\x20\x48\x87\x8a\x90\x01\x2e\x26\x20\x6a\xbc\xe9\x78\xa6\x70\ \x69\x7c\x2a\x55\xc0\x03\x9e\x39\xd9\xe8\xf5\x4d\x0f\x8d\x5e\x5b\ \xbe\xde\x14\x7e\xd9\x9f\xc9\x8f\x22\x03\x94\x5d\xb2\xd0\x20\xe8\ \x13\x1d\xfb\x31\xfe\x5b\x48\x1b\x1d\xa3\xa5\x49\xc0\x4c\xeb\x48\ \xae\x56\x55\x68\x8e\x66\xfd\xc5\xea\x7a\x3d\x62\xb8\x84\xd7\x41\ \x11\x1a\xd7\x5e\x81\x0d\x80\x84\x0d\x7c\x07\x03\x3b\xfe\x8d\xd4\ \xc0\x62\xb6\x16\xf0\x60\xe0\x26\x00\x33\x87\xb8\x66\x83\x73\x08\ \xa1\x14\x50\xb0\x04\xf0\x6e\x02\x5a\x07\x62\x39\x01\x19\xd8\x70\ \x65\x25\x98\x75\xec\x50\x0a\xef\x70\x54\x50\x05\xd9\x12\xcb\x94\ \x2d\xf1\xa1\x8e\x59\x96\x0d\x5c\xec\xb5\xd6\x98\x25\xc9\xc7\x86\ \x53\xc1\xea\x93\xf2\x4d\x9a\xa8\x2e\x5a\x63\x42\x40\x66\x26\xa6\ \x47\xf6\xc5\x46\x0e\xf4\x55\x0d\x3d\x61\x22\xc3\xcf\x75\x57\x41\ \x99\xe6\x74\x40\x1d\x2a\x90\x83\x74\x80\x84\xfa\xca\xb5\x99\x0a\ \x70\xa2\x2c\xca\x84\xc0\xf4\x2a\x7e\x11\x04\x7f\xd0\x0e\x4c\x01\ \xba\x16\x09\x13\x30\x00\x4c\x60\x07\x19\x16\x97\x20\xd0\x06\x22\ \x20\x0d\x2c\x20\x82\x36\xc0\x06\x2b\x2f\x98\x81\x0b\x02\xc1\x0e\ \x02\x5b\x01\x39\x03\x90\x2d\x97\xa5\x46\xe7\x4e\xf3\x18\x28\x61\ \xe9\xb5\xe5\xe8\x7d\xe3\x98\xd6\xde\x96\xe5\x8f\x6e\x31\x40\xc3\ \xe0\xe7\x40\xe6\x01\x60\x1a\x6f\x04\x54\xdd\x1a\x55\x1a\x1f\xb5\ \xdf\x1a\xdf\xe8\x04\x74\x05\x46\x36\x03\x1c\xe7\xdf\x67\xc6\xf1\ \xa6\x91\x86\x6a\x90\xbd\x74\x80\x83\x74\x48\x07\x50\x10\x06\x48\ \xf0\x9d\x24\x9f\x29\xe0\x4d\x88\x00\x00\x5e\x37\xfe\x90\xf7\xa2\ \x34\x91\xd5\xe0\xed\xea\x0d\x02\x55\x50\x30\x19\x28\x07\x16\x30\ \x75\x76\x5b\x07\x27\xdb\x8c\x95\x11\x2d\x48\x00\x85\xfd\x5a\x07\ \x3c\x00\x85\x03\x90\x09\x48\xa8\x29\x3c\x68\x0d\x6c\xc4\x83\xed\ \x40\x05\x43\xb2\x5e\x39\xcf\x53\x7d\xce\xe5\x20\xa8\x3c\x41\x79\ \xd7\x00\x44\xf5\x02\x9a\x87\x8e\xe4\x6c\x41\xc7\xea\xd4\x0d\xf2\ \x6a\x07\xa6\xad\xfd\xf6\x77\xed\xc5\x6e\x27\x26\x1e\xa7\x4b\xf9\ \xe6\xf1\xa5\x33\x83\xda\x49\x46\x6b\x86\x04\x6d\x00\x05\xcc\x4a\ \x07\x28\x67\xc1\x60\x08\x00\x00\x2f\xfa\xb7\x0d\x47\x85\xb3\xf2\ \x3b\xe4\xf7\x17\xc4\x86\x7f\xff\x77\x16\x80\x6c\x71\x01\x01\x48\ \x70\x32\xd2\xe0\x0c\x2c\x40\x78\x50\x70\x80\x02\x85\x78\x19\x90\ \x09\x9b\xf0\x40\xbb\x40\xb3\xed\x10\xec\xff\xa8\x56\xa4\xce\x78\ \x5c\xe6\x25\x9c\x05\xc8\x4a\x58\x40\xd6\x93\x06\x1e\x68\x76\x9b\ \xc4\x04\x74\x1d\x52\x76\x2d\xed\xa3\xe5\x71\x4c\xcd\xda\x1a\x57\ \xdd\x1a\x17\x7c\x5f\xc4\xf1\xfd\x55\x6f\xd1\xc6\xb4\x70\x78\x2c\ \xdc\xf3\x79\xcc\xda\x40\x2e\xe0\x9d\x12\x92\x77\xdc\x46\x41\xdc\ \x36\xad\x2c\x03\xca\xb8\xee\x62\x51\x3f\xa7\xfe\x75\x28\x87\xa8\ \xd7\x07\x2f\x8c\xec\x59\xf5\x1d\x50\xf0\x79\x47\xdf\x1a\xb7\x27\ \x35\xd4\x91\x85\x14\x70\xb5\xa6\xbc\xf5\xbb\xbb\x78\x7d\xf6\xa2\ \x62\x6f\x7b\xd0\xb1\x8f\x7d\xb0\x07\x4e\x28\xd2\x62\x6a\xd4\x49\ \x33\x90\x4a\x8b\x51\xcc\xfd\x45\x8c\xb6\x68\xd1\xa6\x66\x66\xa6\ \xcb\xc1\xa7\x79\x46\x1e\x29\xbd\x57\x74\x98\xaf\xf1\xfd\xe5\x3f\ \x45\xc1\x82\x6a\x78\xdd\x74\x90\xa6\x58\xa0\x2c\x48\x09\x91\x13\ \x4c\x08\x14\x04\xc7\x2a\x16\x98\xb3\x1f\x17\xdf\x56\xb0\x2d\xf8\ \xfc\xf5\x17\xfd\x91\x37\xf6\xba\xff\x0f\x79\x30\x80\x30\x87\x88\ \x8a\xb7\x3e\x54\x68\x65\x7d\xbf\x73\xaa\x20\xcb\x80\xdc\x7d\x4e\ \x00\x88\x31\x57\xa4\x6d\xd9\x42\x85\xca\x96\x50\x3c\xfe\xa0\x69\ \xe8\xf0\xe1\x8b\x2d\x67\x92\x51\x94\x36\xf1\xca\x1e\x1a\xc8\x90\ \xed\xe9\x78\xe5\x0a\x8c\x90\x21\x93\x85\x34\x63\x12\x86\x99\x92\ \x29\xcd\xd0\xd0\xb8\x91\x06\x48\x8a\xc9\xa4\x51\x84\x91\x6c\x9e\ \x34\x2e\x00\x76\x86\x9b\x57\x23\x5d\x2c\x79\xef\xb2\x49\x28\x2a\ \x21\x5b\xb6\x60\x6e\x60\x2d\x95\x67\xce\xcd\xbb\x13\x1b\x4e\x98\ \x2b\xf5\xf0\x61\x10\x29\xff\xb6\x72\xed\xfe\xea\xf5\xeb\x57\x13\ \x06\x96\xb1\x58\x56\x8e\x05\x0b\x76\x68\xd8\xb1\xc3\xa4\x76\x2d\ \xdb\xab\x72\xe7\x3a\x7c\x8b\x26\xc8\x3a\x79\xe7\xe2\x04\xb9\x1b\ \xe7\xce\x0e\x29\x3b\xee\xf0\xed\x1b\x24\x08\x9b\xbe\x74\xe5\x1a\ \x66\x13\xa3\x4f\x1f\x38\xfb\xfc\x4d\xb2\x67\x6f\x8f\xc5\x33\xf3\ \xe6\x91\x94\x36\x8f\xe1\x43\x76\x60\xd8\xfe\xf9\x23\x91\x64\x48\ \x8b\x24\x31\xd2\x18\x83\x8c\xc6\x1e\x90\x36\x49\x26\x33\x69\xfb\ \xf6\x47\x33\x18\x91\xb9\xe8\xfd\x52\xb6\xcd\x94\x37\x61\x60\xd9\ \x89\xa5\x9a\x30\x1f\xc2\xb2\x09\xdb\x20\x01\x18\x74\xa4\xc0\x02\ \x04\x70\x13\xcb\x0d\xd4\x77\xa0\xe4\x8d\x92\xc5\xe6\xea\xe1\x86\ \x31\xc0\x92\x2f\xcf\xd5\x44\x82\x75\x64\x97\x99\x75\xdb\xd6\x7d\ \xc3\xb6\x76\x17\xcb\x65\xf7\xc2\xad\xc3\x20\x60\xd6\x9d\x5b\xf7\ \xfd\x2e\x1e\xa8\x48\xa1\x0a\x2a\x89\xe5\x17\xde\x5c\x86\xdd\x75\ \x17\x62\x31\x0c\x31\x44\x64\xf5\xd4\xb3\x4f\x25\x95\x58\x36\x1b\ \x0c\x18\x99\x71\x13\x15\xec\x04\xf1\x16\x42\x54\xfc\x81\xd0\x66\ \x13\xa1\x34\x12\x4d\x30\x64\xd4\x1a\x4c\xc0\xa1\x64\xd2\x47\x1f\ \xb5\x14\xa3\x8c\xbc\xf5\xe6\xc2\x6b\xfe\x30\x9d\x34\x52\x32\xd5\ \xec\xb4\x13\x17\xe1\x20\x85\x54\x30\xd9\x40\x07\x8c\x74\xc1\x04\ \x73\x5d\x30\xef\x98\xb3\x8e\x2c\x56\xd1\x87\x87\x09\xe6\x59\x19\ \xd6\x1f\xcb\x60\xc2\x9e\x3e\xfa\x94\xd3\xd6\x59\xf3\xc5\x15\xda\ \x98\xf5\xb5\x45\x96\x87\xf9\xad\xb3\x8e\x0c\x29\x94\x72\x58\x10\ \x01\xa2\x82\x87\x62\x0d\x21\xb8\x60\x7e\x0c\xc2\xe9\x98\x83\x0f\ \xca\x01\x59\x1f\x12\x4a\x16\xe3\x1e\xae\xc1\x06\x83\x34\x54\xa0\ \x51\xda\x0b\xec\x48\x34\x4f\x41\x9b\x6d\x46\x53\x8c\x22\x25\x63\ \x45\x86\xb1\xd1\xa8\x9b\x8c\x2d\xb6\xf4\x69\x8b\x7b\xd8\x88\xe3\ \x4b\x87\xa6\x14\x52\x38\x3f\x1a\x17\xe4\x90\xc1\x08\x69\x24\x51\ \x46\x6e\xd0\xe4\x3b\xf2\xc8\x52\xe7\x62\x31\x54\x79\x25\xaf\xff\ \x88\xc5\x42\x1a\xeb\x7d\xd1\x44\x2e\xe5\x60\x82\x1f\x7d\x6c\x1d\ \x2b\xe6\xb2\x65\x69\x79\x95\x68\xeb\x80\x02\x0a\x1e\x6c\xb0\xf1\ \xe6\x9d\x8c\xd9\xa9\x20\x62\xd6\x5a\x1b\x43\x9f\x7d\x0e\x21\x87\ \x1c\x92\xed\x73\xd9\x18\x63\x94\x71\x23\x4c\x67\x94\x56\x90\x88\ \x9c\xdd\x24\x91\x66\xf3\x9c\x81\x52\x47\x9a\x22\x9a\x62\x86\x1f\ \xad\x98\x23\xa8\x01\xc7\xd6\x12\xfe\x32\x1e\xb8\xe0\x01\x6f\x2f\ \xa1\x14\x0e\x4b\x1e\xa8\x0a\x80\x07\x45\x68\xb3\x1c\x73\x1b\x34\ \x67\x94\x91\x4b\xae\x79\x2b\x7d\x0e\xa1\xd2\x2b\xaf\x26\x48\x81\ \xd6\x59\xcb\xa4\x91\x4b\x08\x4d\xa4\x81\x6c\x5d\x64\xb6\xc5\x02\ \x7e\x6a\x9d\x09\x33\x26\x30\xcf\xe7\xd0\x0b\xe9\x80\x22\x43\xb5\ \xff\x25\xb8\xe0\x9e\x89\x09\xfd\x2d\xb8\x45\x17\xfd\x60\xa0\x13\ \xee\x51\x06\xd3\x4d\xbb\x00\xd3\x3c\x08\x69\x66\x90\xbc\x25\x9e\ \x71\x86\x2b\x34\xc1\x88\x51\x6c\xb3\x61\x2a\x12\x4b\xa0\x02\xec\ \xd2\xd8\x1a\x19\x7c\x36\xc2\x34\x5c\x4a\x43\x35\x0e\x3f\xec\x01\ \x73\x44\x0e\xd9\x06\x16\x47\x05\x03\x4b\x0d\xb2\xbc\x20\x17\xb6\ \x72\xa1\xb2\x2b\xc8\xe5\x89\x5c\x33\xc9\xe5\x98\x9c\x4b\xb1\x6c\ \x29\xbe\xec\x5b\x8a\xb3\x83\x96\x5d\xca\xda\xac\x78\xcb\x0f\x51\ \x31\x6d\x3a\x74\xe2\x7a\x60\xd0\x44\x83\xcb\xa7\x63\xde\x76\xeb\ \xe0\x9f\xe6\x2e\xdd\x74\xd3\xc8\x5c\x01\x29\x4d\x04\x21\x54\x13\ \xd6\x38\xd5\x14\x12\x46\xfe\x02\x37\x13\x45\x26\xcd\x78\x85\x4b\ \x37\xbe\xf4\xda\x46\x1e\x94\xe1\x81\xf0\xc2\x73\x64\xc6\x1e\x6e\ \x3f\x0c\xa4\x90\xe1\x2c\xd7\xfe\x06\x17\x5c\x48\xd0\x06\x2c\x54\ \x48\xc9\x58\x29\xd7\xe7\xa7\x55\xe0\xe6\x99\xb0\x0e\xcc\xe1\x97\ \x53\x4e\x1a\xe3\xa7\xc5\x16\xc9\xe7\xd7\x75\xac\xcd\x75\xbd\x57\ \x66\x7c\x69\x61\x45\x85\x36\x90\x80\x92\xc2\xe6\xdb\x36\xe8\xad\ \xd1\x9f\x7b\x9b\x18\x9c\xba\x35\xae\x7d\x50\x88\x13\x44\x28\x03\ \x00\x50\x87\x0c\x18\x5c\x2d\x35\x5b\x30\xcd\x8b\x60\xb0\x99\x9a\ \xd4\x84\x46\x1e\xb1\x14\xee\x6c\x53\xa3\xde\x20\x8c\x54\x1b\x09\ \x1e\xda\x88\xa7\xba\xe4\x2d\xef\x47\x58\xf0\x00\x17\x8a\x80\x94\ \x70\x70\xa1\x0d\xc1\x90\xc7\x3a\xf6\x76\x95\xec\xd1\x27\x2b\xdd\ \xf3\x9e\x0c\x68\x86\x96\xc2\x19\xcb\x71\xe6\x63\x19\xfa\x20\xb7\ \xbe\x63\xb1\x0c\x2e\x42\x7c\xc8\x1f\x40\x21\x01\x22\x40\xe2\x1c\ \x09\x1a\x5d\xff\x8a\x66\x2d\x38\x31\x48\x4f\x6c\x28\xd7\x27\xf6\ \x70\x19\x87\xa1\xae\x0c\x63\x40\x54\xbf\xa2\x46\x85\x79\xf4\x8b\ \x81\x67\x90\x86\xa5\x2a\xc5\x35\x90\xc4\x44\x26\xab\xf9\xc8\x07\ \x13\x16\xc7\x82\x05\x6f\x78\x1c\x6c\x89\x07\x8a\xb3\x3c\x0f\xb4\ \x0d\x62\x58\x90\x1e\xf4\xb2\x11\xc3\xfc\x35\x44\x7b\x72\x51\xc5\ \x0d\x05\x87\x8d\xf2\xa5\xfe\xaf\x70\xe7\x53\x16\xf9\x8a\x48\x38\ \x98\x85\xa6\x66\xf0\x89\x8f\x7c\x6e\xd6\x90\x75\x48\x60\x27\x6d\ \x00\xc1\xb6\xb6\xf5\x2d\x3c\xe0\x41\x8a\x31\x00\xe0\xe6\x0e\xe3\ \x98\x21\xc0\xc1\x1f\x92\xe0\x04\x27\xec\x81\xc0\x59\x32\x8d\x06\ \x21\xe9\x48\x32\x0c\xb2\x05\x32\xe6\x26\x19\x13\xd9\x91\x48\x32\ \xc5\xc6\x2b\x08\x47\x26\x29\x21\x26\xef\x82\x07\x42\x11\x12\xaf\ \x99\xce\x14\x5e\x09\x3d\x20\x0d\x57\x28\xaf\x1a\xe1\xd0\x86\x0f\ \xd2\x41\xc8\x1a\xa2\xa1\x14\xba\x4a\x24\x79\x4c\x40\x89\xf1\x9d\ \xe5\x2c\x85\x6b\x5c\xcd\xc2\x54\x49\xb4\x00\xf1\x71\xcb\x72\x1f\ \xfc\xae\xf2\x87\x6c\xec\x84\x08\x32\x30\x4c\x9d\x46\x47\xca\x52\ \x9e\x32\x80\xe0\x41\x0c\xd2\xf8\x60\x8f\x6a\x48\xa2\x1a\x06\x9c\ \x65\x02\xcb\x00\x93\x42\xed\x01\x52\x05\xb9\x17\xa7\x66\x13\xd1\ \x90\xd8\x83\x46\xb5\x23\xe6\x6d\x82\xc9\xbb\x8c\x6c\xa4\x1a\xca\ \x44\x58\xc1\x84\xc7\x34\xe2\x25\x70\x8f\xe1\xd8\x82\x0f\xf4\x58\ \x0d\x6d\xa4\x03\x04\x20\x58\x07\x18\xee\x52\x8a\x98\x76\xac\x9b\ \x41\x88\x03\xf7\xc0\xe9\x15\x13\xa4\xa3\x7c\xe4\xdc\x21\xe4\x64\ \xf6\x32\xf5\x39\x84\xfe\x71\x91\x7b\x1f\xe5\x30\x49\x1f\x30\x68\ \x43\x8f\x6d\xf0\x19\xe7\x1c\x43\x4a\x70\x51\x11\x57\x70\x02\x17\ \x84\x64\x20\xd0\x3d\x1c\x70\x27\xb4\xf4\xc0\x18\x32\xe2\x02\x33\ \x6c\x66\x97\xf7\xba\xa8\x48\x3e\x02\x03\x7b\x1c\xb3\x5f\x5d\xbb\ \x8d\x6e\x84\x43\xbb\x96\x78\x94\x6d\xc8\xf0\xa8\x47\x8b\x70\xb0\ \x66\x96\x54\x55\x23\xb5\x02\x15\xc0\x70\x06\x87\x61\xe1\xa4\x20\ \x78\xc1\x4b\xd3\xb1\xa6\x35\xf1\x85\x2e\x8a\x29\x05\x1b\x00\xa7\ \x53\xaf\x14\x62\x1d\x3e\xfd\x61\xfb\xd6\xb2\x43\x4d\x26\x15\x93\ \x44\xa4\x9c\x50\xc5\x34\x1f\x4c\xd4\xa0\x0d\xf5\x5c\x07\x21\x0f\ \x13\x87\x18\xf0\x13\xaa\x76\x62\xd0\x2a\xc7\x55\x8f\x15\x40\xc2\ \x47\x7d\x9d\x25\x1f\x69\xb0\x2e\x33\xd4\x2b\x14\x10\x85\xcd\x1e\ \x36\x44\x3b\xda\x81\x84\xad\xb9\x41\x89\x8e\x8e\x8b\x1a\x7f\xc1\ \x86\xae\x77\xa5\x41\x38\x9e\x1b\x5d\xe5\xf9\xb5\x1a\xf3\x88\xe9\ \x0b\xcc\x50\x9c\x13\x6a\xe3\xb0\x2f\xf5\x81\x0c\xe4\x21\x0f\x19\ \xdc\x4a\x41\x76\x8a\xc3\x3a\xe2\xf0\xa6\x14\x48\x76\xb2\x5d\x41\ \xcf\x4f\xd9\x19\x17\xb6\x98\xf3\x66\xca\x6a\x9c\xb2\x96\xe5\x9e\ \xa4\x1e\x55\x4c\xfe\x2f\x28\x6d\x71\x20\x01\xd5\x00\x1e\x86\xb5\ \x53\x4d\xe5\x55\xfb\xd4\x07\x19\x58\xc1\x1e\x6e\x43\x60\x49\x87\ \x37\x06\x91\x22\xaa\x5e\x67\xd0\x8d\x46\x60\x42\xbb\x3d\xac\xb5\ \x6b\xab\x39\x15\xef\x56\x72\x2a\xe2\xfa\x6b\x0f\xd5\xa0\x6b\x4b\ \xa2\x4b\x83\x22\x14\xac\x84\x65\xa8\xc6\x16\xc0\xf0\x82\x88\x50\ \x17\x12\x5b\x38\x0c\x08\xe4\xb0\x8e\x97\xae\x23\x06\x60\x78\x13\ \x1b\xbc\x73\x18\x3c\xc8\x03\x7f\xa3\x68\xaf\x7b\xbd\xf2\x8d\x71\ \xb2\x13\x3e\x8f\x3b\x62\x25\x81\x48\xc4\x29\x77\x76\x2d\x70\xe9\ \xef\x5d\xd2\xd1\x49\x22\x80\xc2\x40\x77\x99\xe2\x79\x53\x90\x82\ \x6a\x29\xa6\xcc\x0d\x42\x9a\x10\x56\xa0\xe6\x3e\xfa\x35\x81\x22\ \xf5\x00\x6f\x5d\x31\x0f\x57\xac\xc6\x25\x9a\xba\x68\x45\xad\xf0\ \xe1\x0c\xb5\xe4\x24\xb2\xe1\x5a\xbe\x80\x1b\x8e\x3d\x84\x83\x06\ \xe8\x20\x34\x9b\xa3\x29\x8d\x46\x91\x88\xba\xd5\x40\x2d\x8e\x41\ \x60\xad\x38\x80\x41\x16\x3c\x96\x41\x7a\x55\xf9\x26\x44\x26\x19\ \x87\x67\x31\x6a\xcd\xaa\x6c\x44\xf9\x5d\xf9\xb3\x96\x14\xad\xe3\ \x30\x69\x97\x17\x28\x11\x00\x92\x70\x40\x99\x01\x68\x27\x36\xe0\ \x21\x05\x77\xfe\x28\x25\x82\xf0\x89\xd5\x05\xc3\x41\x06\xfb\x58\ \x01\x75\x11\x88\x0c\x33\xb4\xed\x69\xbe\xbc\x9a\x89\x92\x39\xa3\ \x7c\x5d\xe6\x0a\x15\x2d\x23\x86\x43\xac\xa2\x18\xb1\x8d\x98\x26\ \x26\x34\x87\xaf\xcd\x3b\xea\xbe\x2d\x19\x54\xe8\x0b\x18\xc2\x3d\ \x8f\x6a\xde\x18\x0c\x3c\xee\xb1\xa5\xf9\xa3\x97\x75\x8c\x42\x86\ \x0d\xe1\x74\xa7\xbd\xf7\x8d\x75\x38\x6e\xca\xfb\xad\x8b\x7c\x43\ \x4b\xe5\xcc\xd6\xbb\x4c\xf2\xb9\x8a\x0c\xda\x20\x09\x19\xfc\x47\ \x74\x75\x62\x43\x0a\x6a\x61\x80\x14\xc4\x00\x31\xf8\x04\x28\x84\ \x7a\x3d\xdb\x6a\x54\x83\x08\x3f\x92\xe6\x41\xe4\xe5\xcb\x39\x63\ \x8d\x22\x04\xcb\x30\x4c\x2a\xfa\x6c\x36\xbe\x48\x83\xc1\xec\xc8\ \x89\x61\x83\x91\x6a\x68\x71\xd0\x6d\xcb\x63\x09\x77\xe2\x01\x61\ \x04\x76\xc6\x32\x04\x81\x6d\x01\x80\x85\x15\x50\xe1\xa5\x70\x58\ \x87\x1c\x5c\xba\xa6\xfe\xec\x58\xd2\xd8\xfa\x5b\xbc\xaf\x24\x32\ \x27\xbe\x67\xca\x44\x7d\x59\x98\x18\xb7\x43\xf7\x38\x19\xa9\xfd\ \xbd\x19\x5e\x56\xe0\x00\x87\xf0\x09\xd7\x76\xc2\x83\x01\x26\xa0\ \x0a\x07\x50\x15\x80\xb1\x5d\xb0\x0c\x56\x50\x50\x36\x97\xc1\x1e\ \xdf\x7e\xfe\x41\x32\xae\xe0\xcb\x99\x5c\x4d\x6b\x19\xfe\xa0\x86\ \x33\x55\x51\xb5\xf2\xe8\x54\x56\xf0\x17\x5e\xef\x8a\x3c\x8a\x9b\ \x18\x9a\x31\x37\x8e\x19\x0e\x5b\x10\x83\x1c\x26\x1d\x7a\xe4\x09\ \x08\xf6\x93\x0e\x4c\x43\x09\x04\xe9\x96\x05\x1e\x8a\x0e\x02\x3c\ \xe4\x34\xe9\x56\x32\xc1\x0e\x46\x63\x6a\x4a\xc2\x85\x70\x6e\x31\ \xbd\xe9\xf3\x8b\x5f\x51\x6b\x72\xd6\xb1\x1e\x02\x1e\xee\x70\x87\ \x86\xdf\x25\x06\xa8\xc0\x46\x26\x80\x50\x82\x21\xfc\xef\x31\xe4\ \xfa\x93\x0c\x06\x5a\x8d\x15\x5c\xc1\x61\x30\xfe\xd0\x60\x3d\x80\ \x28\xda\x24\x83\xce\xc9\xc4\x7b\xc8\x01\x4d\x23\x4c\xa1\x06\x8c\ \x2a\x42\x79\x48\xb5\x58\x8d\x09\x43\xf8\xf0\x3b\xb9\xc2\xdb\xc7\ \x08\x29\x84\x70\xfb\xd1\x41\x00\x41\x3a\xc6\xbb\x0e\x3c\x80\xa0\ \x30\xaa\x94\x45\x0c\x64\xd1\x79\xcf\x7f\x3e\x01\x54\xb0\xe4\xe9\ \xc7\xf4\xe4\xf3\xd1\xec\xc9\x8c\x0b\x35\x5c\xd4\x54\xc7\xb0\xc1\ \x1d\x94\x00\x2a\xa8\x82\x2a\x94\xc0\x29\x59\x0b\xd8\x5d\xc3\x35\ \x60\x03\x10\x0c\xc1\x29\x39\x08\x64\x90\x4b\xaf\x41\x42\x38\xac\ \xc0\x3c\xac\x40\x35\xd8\xc3\x19\xc4\x14\x08\xec\x01\x00\x20\x43\ \xee\xfe\x98\x84\x2f\xf1\x19\xde\xbd\x46\x6c\x74\x44\x58\x71\x4d\ \x5a\x85\x84\x9e\xc1\x00\xe1\x99\x18\xdb\xf0\x55\xf7\x79\x1f\x00\ \xec\x01\x28\xad\x85\xcd\x6d\x81\x34\x70\x1b\xc4\xa4\xc3\x7e\xb0\ \x54\x4b\xad\x89\xe5\xa1\xd2\x61\xcc\x1f\xfd\x7d\x9e\x09\xe4\x10\ \xd5\xa1\xd3\xa7\x21\x15\xfb\x50\x5d\x0f\x29\x55\x68\x08\xa0\x9d\ \xc4\x40\x2d\x20\x20\x02\x4a\x41\x2d\x8c\x19\x6b\x01\x01\x36\x38\ \xa0\x24\x4c\x80\x03\xf8\xc9\x9f\x44\x46\xda\xd9\x83\x15\x68\x83\ \x15\xbc\xa1\x0f\xc8\x01\x18\x04\xc1\x16\x64\x84\x6a\xd8\x86\x4c\ \xf0\x8e\x46\xa0\xc3\x46\xb8\x46\xbe\xfc\x61\x47\xc0\xe0\xec\xc0\ \x00\x0d\xf0\xd1\x15\x50\x9c\xe1\xe1\xe0\xc5\xc1\x58\xa3\x84\xdb\ \x5b\x04\x01\x15\xa4\x8a\x57\xfd\x88\x15\xac\x43\x3a\xac\x80\x62\ \x9d\x9b\x8f\xd5\x49\x1c\x20\xd9\x12\x7a\x8f\x09\x00\x81\x2c\xa8\ \x9e\xe4\xd8\x8c\x7e\xb1\xc0\xf8\x9c\x1e\x2a\x3e\x92\xcc\x54\x0e\ \x16\xa2\x81\x16\x4a\xc1\x80\x64\x42\x21\x14\x82\x2a\x8c\xd9\x1d\ \x18\x80\x18\x4a\x02\x11\x10\x41\x37\xc8\x80\x0c\x38\x80\x10\x00\ \xa3\x9a\xd9\x43\x6d\x55\x5c\x35\xb4\x54\xc6\x49\x83\x15\x40\x4a\ \xfe\x6d\x10\xd3\x6c\xd4\xc6\xa7\xbc\x06\xf1\x00\x22\x20\x2e\x1f\ \xa6\xac\x5c\xf1\xb4\xcd\x0d\x2a\x22\xc4\x68\x03\x15\xbc\x00\x18\ \xc0\x4b\x3e\xcd\x43\x09\x55\xc3\x3e\xa4\x03\x78\xad\x83\x03\xa4\ \x43\xd0\x59\xcb\x1c\xa2\x41\x64\x7d\xe2\x0d\x99\x80\x58\x58\x5d\ \xff\x4d\xe1\x24\x05\x51\x98\xac\xde\x2b\x62\x45\x9c\x94\x40\x09\ \xd4\x82\x14\x14\x82\x09\x64\x42\x09\xa4\x80\x2e\xea\x22\x2f\xf6\ \x22\x24\x00\x01\x10\xc8\x40\xaf\x55\x02\x07\x72\x81\xc5\x01\x80\ \x15\x44\x9e\x1c\x9c\x41\x83\x59\xc1\x2e\x6d\x14\x8f\x20\x17\x3a\ \xc0\x46\x35\xb8\x40\xba\xac\x20\x4a\xda\x03\x47\xb0\x11\xca\x1d\ \x8c\x9b\x79\xe3\xf2\x54\x83\xa2\xd0\xa1\x45\xf0\xc0\x0b\xd4\x89\ \x0f\x94\xd0\x49\xc1\xc1\xe4\xa5\x83\x36\x6c\x87\x4b\x05\x25\x1b\ \x7c\x0c\x3d\xd6\xa3\x09\x9c\x43\x3f\xba\x93\x5b\xac\x22\xfb\x9c\ \x4f\xea\xb5\x62\x00\xfe\xe3\x43\x48\x55\xc2\x65\x82\x24\x84\x22\ \x2a\xdc\x81\x98\xc9\xc0\x09\xd4\x13\x13\xa9\xd9\x0a\xc8\x00\x10\ \xac\xc0\x45\xea\xdc\x0a\xb8\xd4\x19\xac\x80\x15\x84\x83\x67\x58\ \xc1\x89\x11\x93\x31\x29\x9b\xa8\x54\xa3\x35\x9a\xd8\x84\xb1\xfe\ \x1c\xcb\x1d\x62\x22\x2a\x62\x37\x02\xc0\xf1\x45\x84\x41\x80\xc1\ \x88\x8c\xc6\x16\xe8\xc4\xc3\x60\x41\x25\x24\x96\xce\x64\x03\x13\ \x29\x16\x0c\xad\x83\x2a\x78\x62\x51\x86\xcc\xf7\x04\x11\x0f\xb1\ \x13\xcd\x1c\x4b\x3f\x5a\x59\x7c\x14\xd1\x2b\xee\x4f\x0c\xa4\x80\ \x2a\xd0\x22\x10\xdc\x5a\x0a\xf0\x07\x24\x94\x25\x00\x10\x41\x1b\ \x40\x82\x31\xe6\x9c\x07\x48\xc2\x3c\x94\x0b\x1c\xf8\xc0\x0a\xd8\ \xc3\x0a\x4c\x84\xb6\x55\xd0\x8a\xdd\xd5\xcb\x79\x80\x5d\xb2\x1c\ \x27\x6c\xdf\x6f\xb6\x0d\x74\x01\xe1\xe1\xf5\xe5\x8f\x54\xc3\x19\ \xa4\x43\x8c\xd9\x09\x0f\xe0\x84\x61\x2e\x4f\x38\xc0\x01\x4a\xc9\ \x80\x0f\xd0\x0d\x16\xd8\x4f\xe6\x9c\xc3\x64\x4e\x96\x3d\x82\x40\ \x3a\xed\x50\x1a\x30\x12\x53\x92\x93\x67\xfe\x9b\x54\xce\x9a\xff\ \xc4\x80\x03\x9c\x83\x69\x3a\x80\x2e\xa6\x66\x09\x15\xd4\x8f\x48\ \x02\x24\xec\xc3\xcf\x95\xcb\x3e\xac\xe5\x3e\xcc\x03\xa6\x98\xd8\ \x15\x64\xa3\x89\x85\x54\xf1\x0c\x0f\x58\x6d\x5f\x33\x4d\x18\x5f\ \x91\x14\x0e\x2a\x67\x09\x9d\x10\x0c\xa0\x96\x9d\x50\x81\x34\x3c\ \xde\xc3\x84\x43\x4f\xaa\x23\x24\xe8\x5c\x1b\xf8\x40\x1c\xfe\xa0\ \x81\x12\x7e\x67\xe0\xd8\xa3\x14\x98\x05\xc9\x5c\x96\x39\x01\x15\ \x7e\xc5\x4f\x3c\x7d\x66\xad\x31\xdc\x90\x91\x92\x42\x02\x01\x28\ \x00\x01\x7d\x1e\x66\x59\x56\x43\x3d\x00\x9d\x1c\x50\x01\x1c\xd0\ \x96\x7e\xf6\xe7\xa0\x69\x11\xd7\x70\xdf\x81\x46\x98\x33\x21\x28\ \x17\xc1\xa4\x93\xaa\x4a\x61\x29\x8a\x43\x50\x41\xce\x41\xa9\x3d\ \xa8\xa3\x36\xd4\x4f\x38\x40\x82\x36\xc8\x40\x4c\xc1\x1b\x89\xea\ \x14\x7a\xd4\x00\x2a\xaa\x28\x66\x91\xda\x95\xbd\x4c\xeb\x61\x61\ \x9c\x18\x80\x2a\xdc\x01\x03\x8e\x59\x0a\xc8\xa7\x01\x9c\x83\x0c\ \xe4\x68\x09\x11\xc1\x0a\x00\x01\x1c\xfc\x9e\xaf\xfd\x1c\x1c\xb8\ \x25\x27\xfc\x61\x33\x7d\x15\x42\x31\x29\x83\xde\xd6\x93\x2e\x6a\ \x61\x69\x53\x43\x80\x81\x24\x52\xa7\x6d\x0a\xc3\x0a\xf8\xc0\x9a\ \xc4\x63\x0c\x8c\x68\x98\x76\x8f\x3d\x2e\x92\x99\x4e\x1d\xb2\xb8\ \xd3\x50\xad\x29\x16\xa6\x40\x37\x24\xc0\x9b\xd6\x1a\x2a\x88\x59\ \x09\x9c\x83\x03\x00\x23\x9e\x2e\xcf\x57\x02\x41\x1f\x90\x0b\x30\ \xf6\xe9\x3e\x54\xdc\x18\xb8\x1c\x27\x10\xcf\xa1\x2a\x2a\x58\xf1\ \xd5\xa2\x0e\xeb\xc3\x24\x63\x43\x50\x41\x27\xe9\xe4\xfe\x9a\xf4\ \x1c\x4d\xd9\x89\x64\x6e\x6a\x3d\x62\x83\x97\xa0\xe2\x4f\x7d\x96\ \xe4\x4c\x21\xa9\x62\x61\x0c\xa8\x42\x2d\xa6\xaa\xad\x65\xa5\x7c\ \x4e\x0b\x9e\x12\x41\xb2\xd6\x53\x35\x40\xc2\x27\xd0\xea\xab\xae\ \x00\x01\xd9\xc3\x01\x79\xc0\x70\xfe\x66\x84\x41\xd8\x57\x61\x01\ \x84\x12\x2b\xa3\x0a\x83\x36\x54\xe9\xc3\x68\x13\x21\x69\x2a\xb4\ \x26\x92\x3d\xae\x03\x39\xa1\xe7\x7e\x89\xaa\xa8\xad\xa7\x3c\x02\ \xc1\x55\x16\x42\x2d\xa0\xc2\x28\xdc\x01\x2a\xa0\x42\x09\x18\x80\ \x55\x4a\x82\x1e\x11\x41\xc5\x3d\x8c\x24\xe0\x27\x44\x8a\x25\x58\ \xda\xd6\x70\x72\x82\xbd\x42\x8c\xaf\xf6\xd5\x8f\xdc\x2b\x5f\xe2\ \x6b\x84\x1e\x9e\x07\xa4\x03\x5d\xb0\x57\xc0\x7a\x9e\x09\xc8\xc3\ \x65\x4d\x0e\xfa\x38\x4e\xb6\x7e\x66\x0a\xf0\xa2\x09\x7c\x03\x81\ \x50\xac\x56\x32\xec\xc3\x10\x01\x86\xfe\x08\x11\x74\x2c\xba\xba\ \x26\xbb\x4a\x02\x02\x79\x40\x57\xb9\x19\x17\x21\x27\xcb\x56\xed\ \xa2\x3a\xea\x55\xc8\xec\xcc\xd2\xec\x37\xf0\x80\xf9\x34\x8e\x10\ \x25\x2c\x5d\xec\x2c\x1b\x24\x80\xcf\x12\xc8\xc3\x96\x52\x2d\xf4\ \xa2\x93\xf6\xa2\xc6\x42\x02\x1c\xec\xeb\x01\x45\xfe\xed\x24\x22\ \x94\xd5\xde\xed\xb0\x62\x01\xcc\xca\xc5\xb3\x6e\x2d\x78\x62\xc3\ \xe4\xa0\xc1\xa9\x5d\x99\x00\xbe\x28\x78\x38\x40\x21\x74\xac\x2d\ \x52\xac\x63\x00\x81\x6a\xc2\xa4\xc6\x16\xe3\x45\x3a\xe8\x24\xe2\ \xad\xe5\x0e\x2b\x17\x48\xe9\x43\x44\xa6\xdf\x7e\xa2\x09\x60\x43\ \xd5\xcd\x97\xe1\x5e\xc5\x3b\x0d\x20\xc3\x5e\x25\xaa\xc2\x69\x0c\ \x1c\xc0\xe3\x42\xae\x31\x62\xe8\x5e\x5e\xae\xec\x3a\x69\x35\xec\ \xa0\xc7\x74\xee\x64\x4a\x81\x01\x60\x52\x5a\x7c\xd6\x5c\x8c\xd6\ \xe8\x62\xc5\x28\x14\x42\x2f\x16\xc2\x04\xd0\xc9\x1d\x48\x02\xcb\ \x52\x9c\xaa\x40\xed\xec\x3e\xef\x93\x66\x83\xed\xde\x05\xc0\xe2\ \x6e\x92\xd9\x23\x2a\x7c\x08\xb0\x44\x61\x4d\xbd\x07\x9b\x1a\x80\ \xe2\x1a\x40\x62\x18\x40\xeb\x3a\xa9\x04\x6c\xac\xdb\x94\x2f\xf4\ \xae\xef\xc3\x08\x83\xbb\xd9\x90\xf5\x4e\xa6\xc8\x80\x8f\x3e\x04\ \x6e\x7d\x84\xc6\xd3\x75\x4c\x0c\x00\x41\x21\x74\x03\x1e\xc8\xe3\ \x0a\x54\xed\xf0\x51\x2d\xfb\x16\x30\x94\x62\x2d\x1a\x80\x69\xfc\ \xd2\xe3\xc0\x12\x95\x99\x0c\x91\x50\xd5\xd4\x4d\xb5\x49\x5f\xac\ \x83\xf2\xb2\xec\x96\x1e\xad\x01\x6f\xb0\x09\xfe\x6d\x81\x43\x7c\ \xd3\x02\x93\xa8\x09\xa8\x42\xb3\xba\x0c\xfe\xea\x1f\x9b\x1a\xc6\ \x0a\x68\xf0\x93\xb2\x30\x07\x73\xb0\xde\xf6\x05\x08\x87\xb0\x08\ \x4b\x81\x6b\x09\xae\x94\xed\x6c\x4d\x81\xc2\x0b\xe3\xab\xca\x6e\ \x30\x16\xf8\x40\x43\x54\x2f\x0d\xd3\x9f\x3d\x9e\x03\x68\x1d\xd1\ \xfb\x28\xec\x43\xac\x83\x69\xf5\xf0\xb0\xfe\x70\x01\x63\xc1\x8d\ \x21\x5d\x11\x43\xeb\xfc\xaa\x5a\x67\x5e\x12\x13\xdf\x45\x4a\x41\ \x31\x18\x57\x2d\x15\xb3\xc1\x15\x6f\xad\x3d\xfe\xef\x3a\x85\xaa\ \x0e\x2f\x46\x24\x4e\x27\xa3\x86\x71\x0f\x73\xc1\x16\x10\x71\x19\ \x33\x30\x2a\xc4\x00\xbe\x91\x5a\xf0\x62\x61\x44\xd0\x13\x16\x60\ \xe8\x76\x41\x29\x61\x45\x8c\x1b\x0b\xb2\x0b\x2f\x8f\xdd\xc2\x71\ \x09\x49\x00\x1d\xd7\x31\x03\x27\x00\x1e\x83\x09\x96\x75\xf1\x5d\ \x6c\xc1\x6f\xa2\x10\xc5\x85\x03\x22\xfe\x31\x0a\xe5\x51\xf4\x70\ \x01\x20\x0f\x4f\xc9\x7a\x23\xbd\xa2\xac\x29\x83\xb1\x24\x38\x32\ \xee\x86\xa7\xa8\xba\x22\x25\xaf\x85\x30\x14\x87\x35\x85\x83\xf3\ \x08\xc3\x5a\xb6\xcd\x09\x71\x41\x1e\xed\xb2\x57\x89\xf2\x21\xfb\ \x15\xb7\xd9\x6d\x19\x9c\x10\x34\x49\xb1\xfe\xec\x62\x41\xdf\xaa\ \xb2\x08\x27\x00\x17\xaf\x31\x16\x8e\x1b\x00\x70\x01\xc5\x9d\x2f\ \xc5\x55\xc3\x74\xfe\xf1\xf2\x9c\x10\xc4\x90\xb2\x36\xfb\x15\x31\ \x13\x0f\xc5\xe9\x32\x18\x13\x41\x32\x2b\x73\x0d\xab\x82\x2b\xbf\ \x32\x1a\x80\x81\x30\x70\x1b\x01\x3f\xcc\x30\xab\x6c\x29\x77\xe3\ \x30\x37\x93\x34\xd3\x72\x1e\x19\xf3\xe5\xa6\xb2\x39\x2f\xf0\x08\ \x5b\x99\x33\xf3\x71\x3a\x84\xc3\x1f\x27\xf2\x83\x7a\x1f\xf1\x14\ \xb2\x37\xcf\x72\x35\x53\xdc\x2f\x43\x2f\x39\xf7\x73\x08\x8f\xb0\ \xbb\xa9\xf3\x55\x6c\x41\x38\xd8\xa0\xf7\x19\x74\x34\x65\x34\x22\ \x37\x13\xc5\x61\x60\x38\xbf\x33\xfb\x96\xb3\x44\x6f\xea\x19\x6f\ \x13\x25\xbf\x80\x30\x44\x4f\x35\x37\x69\xca\x96\xac\x14\xf3\xd1\ \xdb\x40\x8c\x2e\x53\xf3\x40\x59\xa4\x22\x5f\xe5\x49\x17\x31\xe8\ \x55\xb4\x45\xa3\x41\x28\xe4\x91\x35\x21\xa2\x9b\x3d\xed\x29\xbb\ \x58\x37\xcb\x1c\xf1\x10\xf3\x09\x11\x01\x0a\x3d\x74\x01\xf3\x73\ \x4f\xfb\xb4\x0d\x07\x75\x7e\xf8\x80\xc3\x60\xb2\x2e\x6b\xb3\x3e\ \xc3\xf4\x22\x76\x35\xcc\x29\xf2\xc3\x54\x75\x1d\xdb\xa3\x01\xa8\ \xb4\xc2\xf2\xc0\x35\xef\x32\xe5\x22\xfe\x74\x53\xef\x51\x1f\x91\ \xf4\x06\xa7\xaf\x49\x9b\xb5\x19\xa3\x33\x9b\x76\x0c\x3b\xf8\x40\ \x5b\xeb\xc4\x52\xc7\xdc\x2e\x27\xda\xc5\x69\xb2\x54\x1b\x30\x5f\ \x61\x01\x55\xe3\x75\x19\x2f\x9d\x45\xb3\x75\x34\x7f\x72\x90\x88\ \xb5\xf2\x50\x2e\x38\x53\xdc\xe3\xf2\x91\x35\x93\x75\x4c\x3b\x4c\ \x44\x33\xb6\x2a\x9b\xc0\x9c\xac\x67\x9d\xcc\x93\xce\x09\x43\x0d\ \xb0\x90\x34\x83\xf2\x37\x6f\x35\x22\xee\x32\x54\xbf\x4d\x35\xeb\ \xb4\x22\x43\x53\x53\x7f\x36\x68\x87\x76\x21\xe0\x31\x78\x08\xe0\ \x7f\x85\x00\x00\x48\x40\x0d\xfc\x81\x36\x48\xc0\xd1\x46\x4f\x71\ \x68\x76\xdb\xd0\xed\x22\x4e\x33\x14\xe7\x11\x86\xd6\xb3\xce\x01\ \xc0\x5d\xe7\xf6\x2a\x9b\x00\x9d\x48\xe5\x6f\x67\x03\x17\x64\x43\ \x0d\xac\x43\x0d\x18\xb7\xf7\x61\x33\x0b\x5f\xf6\x12\xbd\x30\x27\ \x5b\xb6\x57\x2b\x76\x75\x5b\xf7\x2a\x5f\x35\x1f\x53\x42\x36\xa8\ \x50\x00\x64\x03\x2c\xf0\xc0\x3a\x04\x40\x51\x1c\xf6\xdb\xf0\x91\ \xd1\xc2\xf0\x36\x9f\xd0\x1f\x35\x75\x3c\x43\xcc\x62\xbb\xb7\x39\ \x8b\x4c\xb6\x2c\x46\x0d\x64\xc3\x1f\x7b\x77\x0d\xd4\x00\x21\x10\ \x02\x50\x10\xc5\x27\x4b\xf5\x65\xfe\xf3\xab\xec\x76\x1f\x52\xcb\ \x5c\x2e\x0b\xb8\xdb\x54\x83\x2b\xb4\x37\x82\x5b\xaf\x3d\xea\xb5\ \x63\xa1\x01\x0f\x38\xb8\xce\x41\x78\x84\xd7\x00\x2c\xc4\x78\xac\ \x20\x05\x0e\x12\x35\xd4\xd2\x35\xb1\x6e\x35\xd3\x6c\xf3\x30\xfb\ \xd1\x2e\x8b\xb3\xcc\x09\x43\x23\x97\xb8\x4f\xab\x02\x6f\xcf\xc5\ \x7f\x11\x45\x51\x04\x40\x8c\x33\x05\x2c\xc4\x42\x0d\xc4\x82\x85\ \x23\x85\x0b\x13\x33\x54\xff\xf7\xe5\xea\x91\x3d\x17\x34\x53\x0b\ \xb8\x1e\x11\x33\xc4\x84\xc3\x3a\x10\x39\x5e\xdb\xe3\x1d\x20\x79\ \x0d\x50\x47\x00\xd0\x37\x93\xc7\x38\x76\xc0\xb8\x92\x17\x01\x28\ \x9b\xd0\x1f\x7f\x33\x7f\xb7\xb0\x33\xad\xb6\x65\x37\xf5\x58\x83\ \x78\x90\x6c\x01\x89\x93\xf9\x44\x67\x6f\x68\xa4\x39\x8c\xd7\x77\ \x00\x6c\x40\x00\x48\x78\x9a\x2f\x45\x0d\x04\x83\x51\xec\xf7\x85\ \x27\x74\x60\xe3\x2d\x88\x17\x75\x38\x9f\x10\x93\x22\xf7\x36\x47\ \x75\x11\x84\x43\x13\xa4\xc3\x90\x0b\x7a\x63\x9b\x40\x99\xf1\x40\ \x00\x08\x03\x93\x07\x80\x92\xc0\xc2\x84\x13\x02\x2c\xbc\x83\xab\ \xcb\x83\x73\x14\x85\xf4\x7c\xba\x26\x4b\x0f\x90\xb7\xb0\xcb\xfa\ \x79\x35\x64\x03\x2d\x47\x8f\xfe\xcc\xe9\x5c\x42\xc3\x9c\x64\xff\ \x39\x18\x10\x25\xa9\x83\x36\x76\x07\xc1\x3c\x71\x81\x9a\x07\x03\ \x93\xbf\x3a\xac\xdf\x8d\x2c\xac\x03\x30\xd4\xcd\x7c\x0f\x09\x52\ \xa4\x90\x35\x13\x96\x22\xd6\xf9\xe1\x5d\x7a\x90\xd0\xb2\xb9\xf3\ \x39\xa5\x23\xe2\xa7\x17\x41\x35\x14\x81\x30\xfc\x41\x10\xa4\xc0\ \xb2\x5b\xb7\x89\x36\x78\x36\xc4\x42\x00\x4c\x07\xb5\xc3\xfa\x3b\ \xb4\x81\x1b\x10\x42\x0d\x38\x07\x92\x70\xb7\xae\xab\x50\xf3\xfc\ \xa6\x06\x73\xb2\xb8\x8f\x37\x0a\xdd\xb3\x30\x5c\x93\x30\x54\x83\ \x04\x24\xb4\x34\xe3\xb2\x07\x48\x40\x90\x24\x07\x0f\x28\xca\x91\ \xcd\xbb\x7b\xdb\xa3\x24\x04\xc3\xa3\x17\xc1\x06\x10\x82\x55\x4c\ \xb8\x1b\xd0\x4d\x30\x5c\x7b\x30\x1c\x89\x76\x1a\xf7\x1f\xc5\x0d\ \x77\x8f\x34\x27\x13\xfb\x9c\x8f\xb7\xcd\xdf\xf3\xc4\x9c\x3b\xb1\ \x67\xb2\x35\xb7\x7b\x38\xf8\xc0\xc6\xcb\x50\x10\x28\xb0\xc7\x33\ \xb6\x3d\x1e\x40\x2c\xbc\x83\x04\x04\x03\x21\xb0\x43\x29\x30\x05\ \xa4\x4b\xc0\x3b\xac\x03\x2c\x04\x43\x1b\x18\x49\xb2\xea\x91\x04\ \x18\x3c\x0b\x59\xf3\xc4\x27\xb7\xc2\x1f\x72\x20\x63\xf2\xaf\x9b\ \x7b\x46\x6f\x57\xcc\x4b\xfe\xb3\x30\x24\xc7\x41\x00\xb5\xd1\x1f\ \x3d\xb3\x9b\x00\x28\xb8\x81\xc8\xcb\x82\x39\x00\xc3\x73\x40\xc7\ \xbf\x9b\x03\x51\xb4\x81\x78\x43\x29\xc6\x1f\xbb\x71\x74\x33\x0a\ \x4d\xf7\x61\x56\x76\x38\x2f\x7e\x9f\x6f\x35\xdb\x6f\x01\x08\xa4\ \x56\xa0\xcb\xbd\x23\xdb\x23\x55\x98\x43\xde\xef\x44\xd3\xc3\x82\ \x3c\x10\x02\xd3\x4f\x4f\xb9\x96\x50\x90\x7c\x7b\xb1\x73\xb2\x42\ \x77\xf2\xe3\x1d\x07\xdd\x54\x43\xc2\xef\xb2\x30\x08\xe1\x62\xb0\ \xc1\xa8\x53\xbe\x44\xa3\x87\x39\x6c\x00\xd7\x07\x83\x39\x10\xc2\ \x3a\xc4\x02\xe0\x03\x03\xdd\x1c\x5e\xb9\xb3\xd0\xa7\xb7\x7b\xc3\ \x17\x32\x88\xc3\x1c\x51\xff\x7c\x6c\xcb\x1c\xc6\x3b\x8f\x10\xaa\ \x34\xfc\xd2\x3e\x99\xdb\xa3\xde\xff\xb1\xbf\xaf\xc3\x84\xeb\x3d\ \x74\x04\xbe\x71\x3c\x0c\x72\xa3\x90\xf3\xb0\xd0\x21\xb3\x36\x0a\ \xb5\x41\x35\xb4\x41\x1b\x10\x01\x6b\x1b\x07\x4b\x85\xa3\x00\xe2\ \x01\xf5\xcf\xbb\x09\x14\x02\x74\x54\x3d\x21\xc8\x82\x3c\xd0\x0d\ \x92\x84\x7e\xe1\x47\x28\x40\x70\x09\x17\x8e\x0b\x16\x83\x00\x10\ \x22\x34\x88\xc5\x03\x16\x2e\x44\xaa\x11\x59\x48\x04\x00\x96\x6a\ \xe1\x7c\xbc\x40\xb3\xfe\x91\x63\x47\x8f\x78\x4c\xfc\x13\x39\x92\ \x64\x49\x93\x27\x51\xa6\x54\xb9\x92\x65\x4b\x97\x2f\x61\xc6\x4c\ \x69\xc2\xc4\xb7\x77\xe6\x08\xc9\x22\xa4\x4d\x02\x16\x09\x6d\xb0\ \x20\x94\x90\xf0\x60\x42\xa3\x5c\xaa\x65\x43\x7a\x31\x68\x50\x00\ \x48\x0d\x3e\x94\x20\x11\x80\x44\x22\x90\xb4\xa5\x03\x13\xc4\x63\ \x57\x8f\xaa\x64\x86\x15\x3b\x96\x6c\x59\xb3\x32\x69\x1a\x20\xb4\ \x6e\xdd\x86\x36\x12\xe0\x36\xed\x69\x94\x6e\x42\x2e\x05\x1d\x0a\ \x0b\x77\xd1\x87\xb6\x0d\xda\xe4\x09\x03\x95\x4e\x9b\xb0\x15\xa0\ \xb4\xc9\x48\x07\x82\xab\x57\xc7\x1c\x51\x9d\x95\x3c\x99\x72\x65\ \xcb\x23\x4d\xec\x60\x1b\x00\x18\xdc\x8a\x0a\xe9\x2e\x74\x0a\x40\ \x42\x41\xbb\x90\xc2\xad\x0b\x12\xe4\xc5\xea\xd6\x68\x82\x80\xd9\ \xba\xfa\x71\xed\x8d\xa8\x42\x5e\xd6\xbd\x9b\x77\x6f\xcc\xdf\xcc\ \xc5\xca\x36\xb4\x2e\xdd\xd2\xc4\x2b\x9a\x4e\x28\x21\x5d\x63\xdb\ \xcf\x1f\x07\x91\xe2\x9b\x7a\x75\xeb\x64\x4d\x9c\x00\x6a\xb4\x28\ \xd1\xd2\x5c\x88\x56\x53\x4e\x9a\x0a\x74\xf3\x5e\xa5\x5f\x57\xbf\ \x9e\xfd\x49\x9a\x92\x46\xc3\xf5\xbc\xbc\xc8\xfc\xa7\xe3\x01\x64\ \x63\x73\x9e\x3f\xfe\x47\xb0\xed\x01\x0c\xf0\x3a\x9a\x28\xaa\x28\ \x2e\x85\xbe\x9b\x4b\xa1\xf1\x24\x50\xad\x3f\xfe\x62\xc8\x4d\xc0\ \x09\x29\xbc\x8c\x40\x9f\x9c\x32\x08\xae\xfa\x46\x4b\x6e\x21\x09\ \xb4\x01\xe3\xc1\xf3\xd8\x98\xae\xc2\x13\x51\x94\x8c\xc0\xe5\xb2\ \x69\x51\x41\xee\xb8\x68\x31\x1b\x79\x46\x3c\x2f\xb2\x14\x71\xcc\ \x31\xac\x15\x85\x0a\x66\xb8\x0e\x83\x8a\x51\x9b\x6c\xb0\x10\x46\ \xc4\x1a\x6d\x4b\x41\x42\x1d\x99\x6c\x72\x26\x9a\x16\xb4\x8f\xb4\ \xd2\xb2\x09\x40\x18\xf0\x80\xd1\x08\xc9\xc7\x40\x72\xd2\xcb\x2f\ \x4d\x82\xb2\x38\xd2\x64\x94\x11\x0b\x6d\x4a\xd9\xd2\xb1\x20\xfe\ \x03\xd3\xcd\x2f\xdf\x2b\x2e\xc6\x6c\xea\x53\x4a\x82\x58\x9c\x53\ \xb3\xa3\x36\xdf\xec\xd3\x49\x13\x24\x29\x50\xa1\x22\xe8\xac\x0f\ \xaf\x58\xf4\xec\xaa\x96\x25\xfd\x6c\x34\x47\x1e\x11\xe2\xa2\x88\ \xbb\xb8\x18\x0a\x8b\x74\x12\xed\x28\x3d\x47\x39\xd5\x11\x52\x0d\ \x8f\xab\x68\x9d\x4c\x39\x32\xb1\xd3\x53\x71\xfc\xb4\xa2\xa6\x8e\ \xcc\xb4\x4b\x54\x61\x45\x31\xce\xba\xb0\x18\xd5\x55\x46\x63\xcd\ \x35\xc0\xf7\x04\x8d\xb4\x55\x35\x83\xc0\x55\xd7\x61\xdb\x83\x34\ \xbf\x5f\xb7\x98\xbc\x91\xd8\x65\x77\x35\x41\xd0\x6a\x90\xad\x11\ \x37\x66\xa9\x6d\x96\xa2\x6c\xf2\xac\x11\x8f\x6a\xb9\x05\x90\xc0\ \x6c\x12\x35\xb5\xdb\x71\xad\xa3\x29\x81\xfd\xb6\xe4\x93\xdc\x75\ \xa9\x33\x41\x8a\x18\x90\x8c\x41\x5c\x76\xe9\xe5\x8d\x26\x3c\x46\ \x64\x43\xd8\x7a\xf9\xb5\xcc\xdd\x6c\x9f\x9b\xb7\xdf\x81\xfd\x7d\ \xf7\x3c\x25\x09\x4e\x58\x37\x9a\x50\x01\xb8\xab\x57\x15\x8e\xb8\ \x32\x77\xe1\xad\x4d\x5d\x89\x31\x36\x8b\x26\x74\xbd\xba\x38\xe3\ \x8f\xb1\x93\x02\x60\x65\x41\x2e\xb9\x2c\x77\x51\xd1\x54\x60\x93\ \x59\x8e\x89\x26\x55\xb8\xda\xb4\xe5\x99\xc5\x32\x41\x15\x3c\x3c\ \xa6\x59\xe7\x96\x68\xda\x77\xe7\x9f\x77\x0e\x08\x00\x21\xf9\x04\ \x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\ \xff\xff\x1a\x84\xaa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbb\xc8\ \x99\xd8\x88\x8c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x5e\xc9\xf7\xff\xff\xff\xff\xff\xff\xde\x93\xb2\xff\xff\xff\x50\ \x04\x17\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xd9\xad\xb4\xff\xff\xff\x60\x86\xb0\xff\xff\xff\x52\x67\x20\ \x6a\x08\x9c\xff\xff\xff\x52\x66\x9d\x13\x27\xa7\x08\x69\x9c\xd7\ \xc9\xe4\x0f\x27\x68\x98\xa7\x65\xff\xff\xff\x84\x62\x0c\xff\xff\ \xff\xff\xff\xff\xf6\x89\xb8\xf7\xa8\xb7\xff\xff\xff\xff\xff\xff\ \x9a\xf2\xfc\xff\xff\xff\x12\x29\xe0\xff\xff\xff\x28\x46\xea\xba\ \x89\xb6\x4e\x68\xf9\xd9\xe8\xf8\xff\xff\xff\xfa\xc8\xe8\x31\x6b\ \x1b\xee\x68\xa5\x3f\xa9\xdd\xff\xff\xff\x7f\xb2\xae\x98\xc8\xfa\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\x71\x45\xff\xff\xff\xf6\ \xb2\xf0\xff\xff\xff\xf9\xe8\xf0\x7a\x88\xb1\x2d\x06\x15\xff\xff\ \xff\xd9\x90\xf3\xfb\x8e\x5e\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb3\xa9\x75\xb6\xb3\xf3\xb6\xc8\xf3\x35\x8b\xc7\xff\xff\xff\xff\ \xff\xff\x90\x26\x84\xff\xff\xff\xff\xff\xff\x39\x56\xf5\xff\xff\ \xff\x6e\x68\xea\xff\xff\xff\x11\x38\x66\x99\x88\x81\xff\xff\xff\ \xff\xff\xff\x97\xb1\xf8\xff\xff\xff\x95\x94\xf5\xff\xff\xff\xff\ \xff\xff\x29\x26\xf9\xff\xff\xff\xfb\xcf\xab\x57\xa9\xe5\xff\xff\ \xff\x5b\xb8\xeb\xd6\xd8\xf0\xff\xff\xff\xff\xff\xff\x3b\x63\xf6\ \xfb\xfd\xfa\xff\xff\xff\xd9\xad\xf7\xff\xff\xff\x73\x88\xf7\xff\ \xff\xff\xff\xff\xff\x7d\xf5\xfc\xff\xff\xff\xfa\xd8\xec\x71\x69\ \x6c\x7d\x95\x45\xba\x8d\xf5\xff\xff\xff\xf5\x99\xb5\xff\xff\xff\ \xff\xff\xff\x37\x4b\xeb\xfb\xb8\xbd\xff\xff\xff\xb2\x68\xed\xff\ \xff\xff\xce\x2d\x69\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8e\x2a\ \xc5\xff\xff\xff\x94\x68\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x79\xcb\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\x76\ \xa9\xf7\xff\xff\xff\xff\xff\xff\xfb\xae\x88\xff\xff\xff\xf9\xec\ \xba\xff\xff\xff\xff\xff\xff\x5f\x8c\x67\xff\xff\xff\x28\x7a\xc8\ \xff\xff\xff\xff\xff\xff\x4d\x17\x32\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xf3\x7a\xb4\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xdf\x97\x95\xd9\xd7\xa8\xff\xff\xff\xb8\xb8\x7e\xb7\xd8\xfb\ \xd5\x3a\x73\x7a\x1b\xaf\x9c\x38\x91\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x5a\x75\x24\x55\x76\x9d\x19\x36\xad\xff\xff\ \xff\xff\xff\xff\x8c\x7a\x9e\xff\xff\xff\x19\x37\xdf\x55\x77\x63\ \x58\x76\xfa\xff\xff\xff\x9a\xd8\xfb\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x4b\x59\x64\xff\xff\xff\x6a\x7a\xf3\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x31\x57\x61\xb4\x58\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x5a\x5f\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x96\x98\x50\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xd8\xfb\xfc\xff\xff\xff\x6f\x78\x28\x2e\ \x1a\x58\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7d\x97\xfa\xb1\x78\ \xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6e\x57\xa2\xff\xff\xff\ \x92\x5b\xfc\x91\x79\xf6\x55\x9a\xe4\x79\xb8\xf8\xff\x00\x00\x08\ \xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\x70\ \x60\xa0\x28\x81\x02\x35\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\ \xc8\xb1\xe3\xc4\x40\x1f\xb0\xb4\x92\xe8\xb1\xa4\xc9\x93\x28\x53\ \xaa\x5c\x59\x30\x50\xaf\x90\x58\xb0\xc0\x8b\xc8\xb2\xa6\xcd\x9b\ \x38\x73\x5e\x0c\xb4\xed\x03\xcc\x98\xdb\x68\xea\x1c\x4a\xb4\xa8\ \xd1\x8d\x0f\x03\xfc\xf4\xe9\x53\x5a\x94\xa3\x50\xa3\x4a\x85\x1a\ \xc8\x89\x13\x9f\x58\x7c\x2a\xfd\x49\x72\xaa\xd7\xaf\x60\x3b\x06\ \xca\x77\xe3\x6a\xc8\x0f\x01\xb6\xc6\xcc\x2a\x34\xac\xdb\xb7\x70\ \x0d\x56\x2d\x7b\x36\x6d\xda\xa5\x1f\x3a\xf4\x8a\xcb\xb7\xaf\xd7\ \xb1\x64\x6e\x6c\x45\x7b\xf7\x67\x56\xa5\xdb\x20\xfa\x5d\xcc\x18\ \x67\xa0\x0e\x37\x6e\x9c\xfd\xe0\xe4\xee\x5a\xad\x85\x87\xb5\x6d\ \xcc\xb9\x33\xd2\x28\x91\x07\x07\x70\x22\xd8\x30\x96\xd1\x95\xad\ \x92\x19\xb2\xd7\xb3\xeb\xd7\x1f\x03\x44\xae\x4b\xba\xb2\x61\x9f\ \xb5\x23\x9b\x21\xe3\x44\x73\x57\xd8\xc0\x81\xbb\x0c\x1d\x72\x74\ \x64\xc1\x31\x61\x62\x96\xbd\x69\x13\x28\xab\x4e\x12\xff\x0e\x4e\ \xbd\x71\xa0\xe3\x75\x6f\x98\x31\x63\x7b\x32\xe1\xb4\x64\xfc\xfe\ \x6d\x32\xa3\x0a\xad\xcf\x7c\xe4\xaa\xab\x5f\x1c\xa8\x4e\x64\xb3\ \x94\xb7\x9b\x41\xce\x74\x39\xe9\x05\xfe\xfa\x6d\x55\x05\xdd\xf7\ \xfa\xff\x61\x45\x34\xcc\x7c\x4a\x9d\x26\x9b\x19\x0b\x94\x96\x95\ \x56\x68\x91\x66\x86\x3f\xf3\xa9\x62\x1c\x6f\x95\x05\x30\x8c\x62\ \x00\x66\x48\x55\x2f\x37\x2c\x60\x86\x68\xda\xcd\x37\xd9\x5d\x69\ \x85\xf8\xe0\x7c\x37\xf4\x53\x96\x52\x69\x5d\x25\x4d\x6b\x1a\xc6\ \xa8\x53\x55\x08\x22\x97\x95\x83\xdc\xd5\xb5\xd5\x68\x66\x6c\x02\ \xe1\x89\x0b\xf0\xb6\x63\x69\x94\xf5\xb3\xcb\x74\x32\x26\x79\xd2\ \x43\xda\x25\x18\xc0\x82\xda\xe5\x60\xa3\x6c\x43\xf6\x28\x5f\x73\ \xe3\x0d\x66\x15\x8b\x37\xe4\x00\x0a\x06\x9b\x29\x29\x26\x47\x81\ \xc8\xa6\xdd\x55\x31\xc9\x46\x06\x19\x01\x6c\x93\xd5\x6c\xa7\xdd\ \x40\x46\x73\xdb\x89\xb7\x42\x33\x92\x69\x65\x15\x6e\x08\x52\x58\ \x47\x7a\x63\x06\x9a\x51\x7b\x81\x11\xb8\x20\x69\x18\x14\x88\x85\ \x13\x39\xa2\xb5\xdd\x78\x10\x6e\xd2\xcc\x0a\x9b\xe4\x49\x98\x56\ \x37\x34\x33\x9e\x13\xfc\x91\x01\xca\x91\x82\x86\xda\x50\x44\x39\ \x6c\xe2\xa1\x64\x87\x95\x65\x56\xaa\xaa\xbc\x89\xdf\x76\xfe\x0b\ \x34\xb7\x02\xa5\xb6\xa9\x45\xd9\x26\xb4\x06\xc0\x9f\x19\x3a\x34\ \xc3\x04\x39\x48\x8a\x2a\xec\x3f\x81\x90\xa3\xa9\x93\x5a\xf5\xd3\ \x8f\x6d\x97\x7d\xd0\xd3\x81\x75\x36\xd7\xcc\xa4\x95\x16\x96\x9c\ \x19\x9a\x96\xa6\xca\x9c\x92\x7e\xd2\xc4\x31\x30\x0e\x3b\x6c\x20\ \x5c\x98\xaa\xea\x72\xf5\x65\x75\x99\x99\x4d\x6a\xba\x89\x1c\xcd\ \x38\x59\x5e\x48\xdb\x04\x10\x2b\x79\xbb\x4a\x3a\xe9\x27\xcd\x90\ \x11\x52\x98\xe2\x8a\xe9\xd2\xbd\xcb\x0e\xe6\x6c\xb3\x6b\x1d\x06\ \x1d\x82\xa6\x4a\xba\xa9\xb5\x8e\x72\xc7\xa3\xa4\x77\xae\xc0\xaf\ \x13\x1e\x9c\x86\x41\x2f\xc1\x06\xac\x21\x8d\x1e\x92\xa1\x1f\x83\ \xea\x7a\x77\xe3\x8a\x6a\x36\x69\x6a\x85\xf3\x6a\x15\x58\x65\x73\ \x4e\x7a\x67\x33\x9f\x6c\xa2\x4a\x08\x94\x89\xfc\xa7\xc7\x4a\xb6\ \x07\xeb\xa6\x1f\xf0\xb7\x25\x5e\x98\x12\xa8\xab\x55\x1d\x56\xdb\ \x60\x61\x6a\x5a\xd5\x0f\xb6\xd3\xe2\xba\x82\x19\x1f\x78\x40\x0c\ \x74\xfd\x80\xf2\x69\xc7\x3c\x0b\x17\x08\x19\x8f\x3a\x09\xde\xca\ \xca\xd5\xe7\x84\x87\x28\x4a\x28\x67\x73\xa5\x41\x47\xe2\x9a\x9c\ \x32\x8a\x25\xae\x3a\xf4\x43\x0c\xce\x41\x3b\xe1\xa9\xfe\xc8\x43\ \x70\xdd\xb5\x6b\xc5\xc2\x7a\x2a\x5a\xda\x65\x8b\xd5\xa5\x1f\xdc\ \x20\x69\xac\x09\x3a\xf8\x70\x6e\x5b\xe9\xad\x6a\xd2\xb2\x1a\x4e\ \x0c\x31\x68\xf5\xe3\xa9\xb2\xfd\x0c\x01\xe8\xdf\xd4\x05\x02\xca\ \x02\x68\x0b\x56\xa2\xa4\x0a\x52\x86\xb2\x3f\x77\x3a\x7c\x83\x2a\ \x21\x46\xf6\x72\xad\x29\x3b\x4e\xba\xd4\x8d\xe2\x96\xb5\x19\xfd\ \x60\xb0\xac\xb2\xc0\x82\x0e\x5b\xe0\xf2\x19\x5d\x78\xa5\xca\xa9\ \x4a\x9a\xbe\x0e\x73\xaa\x5d\xa1\x41\xda\x85\x1b\x28\xbc\xc5\x3c\ \x1e\xc5\xfd\x5e\x25\xa1\x13\x59\xfb\x93\x9f\x2a\xaa\x28\x0b\x8a\ \x0e\x5c\x04\x2f\x3c\x67\x11\x99\xb8\xdd\x71\x8a\x9b\x5a\x20\x66\ \x65\x59\x7f\x6f\x59\x1d\xee\x66\xc6\x73\xf5\x85\xbf\x5b\x78\xcd\ \xc8\x71\x7d\xeb\x15\x8a\x8c\xe6\xbc\x87\xbf\xf0\x79\xaf\x39\xfe\ \xf0\x82\x01\xce\x67\x9d\x0e\x14\x6f\x7d\x91\x89\x15\x9e\x0c\x36\ \x21\x86\x8d\x27\x3c\x6b\xf2\x1e\xef\x76\x93\x1a\xa7\x85\x47\x73\ \x93\xd2\xc1\x76\x68\x86\xa7\xa0\xcd\x87\x73\xfe\x78\x4e\x79\x0c\ \xa8\x03\x1f\x95\x4b\x07\x3a\x30\x1f\x03\xe1\x12\x11\x46\x21\xe8\ \x54\x1d\x8a\x55\x73\xe0\x43\x19\xa4\x81\xad\x47\xfe\x3e\x52\x11\ \xb7\x76\x23\x44\x0c\x38\x4d\x35\x6b\xea\x91\xa6\x1e\x44\xad\xf2\ \xd4\xaf\x2c\x9a\xeb\xc7\xbc\x86\x01\x0a\x49\x79\xcf\x7b\x3a\xf0\ \x07\x17\x40\x21\xc3\x19\x82\x65\x38\x68\x43\x11\xc3\xd0\xf6\x3e\ \x39\xd1\x0f\x6c\x58\xe2\x0e\xa3\xa6\xa5\xc6\x1c\xf8\x43\x55\x9c\ \x53\x56\x78\x9a\x83\x9f\x05\x4c\xeb\x2a\x4e\x68\x0e\x6f\x38\xc7\ \xa9\x0f\x2c\xa3\x1f\xfe\x68\x46\x16\x35\x07\x8a\x14\xfa\x03\x86\ \x5e\xe8\xa2\x17\xa3\x12\x91\x1f\x76\xe8\x38\x3a\x34\x15\x9b\x0e\ \x03\x41\x1b\x8a\x67\x13\x14\xc2\xd6\x78\x00\x09\x43\x32\x94\x67\ \x4d\x29\x7a\xda\xdc\x28\xb6\x00\xf0\xd9\x31\x48\xbf\xe3\x14\xf8\ \xfa\x21\xa9\x16\x8a\x4c\x6b\x85\xf4\x1e\x17\x52\x18\x43\xbf\x2d\ \xd2\x31\xe4\xb8\xa1\x76\x04\xd3\x21\xff\xe1\x87\x4d\x7c\x9a\x8f\ \x83\x3c\x74\x41\xee\x51\xcc\x47\xad\xec\x87\x4f\x00\x29\x32\xfe\ \x49\x6b\x52\xcd\x78\x23\x19\x8e\xb5\xc7\x65\x71\x2a\x6b\xcd\xd0\ \x45\x16\xb5\x26\x1e\x2c\xfa\xa8\x90\x5c\x20\x9f\x22\x6f\x99\x13\ \x52\xc1\x2a\x34\xb2\xf1\xdf\x39\xb7\xb2\xcb\xd4\xf4\x48\x3c\x27\ \x24\x43\xaf\xa6\x05\xc3\x66\xe4\x68\x18\x64\xfe\xd8\x62\xd6\x9e\ \x39\x33\x77\x4d\x6b\x01\xca\xe2\x1e\xf7\xfe\x28\x4f\x7e\x45\xf3\ \x8a\x59\x84\xa1\x16\xb1\x78\xc8\x26\x24\x12\x60\xe4\x64\xc9\x63\ \x6e\x98\x20\x5e\x2e\x40\x9d\xeb\xd3\x4a\x90\x52\x53\x3f\x3a\x0d\ \x70\x13\xf3\x1c\x0f\x28\xa4\xe8\x47\xf1\x88\xec\x80\xad\x9b\xdb\ \xa4\x00\xca\xbd\x35\x2d\x2b\x83\x21\x25\xe0\x21\xe9\xc9\x50\x2d\ \x92\x4f\x96\x36\xb0\x65\x44\x3d\x12\x91\x00\x50\x34\x34\x37\x90\ \x43\x0b\xad\xc4\x4e\x02\xdd\x67\x3c\x9a\x4a\x62\x37\xe9\x04\xb7\ \x6b\x6e\xee\x69\xe2\xe9\x9f\xa9\x46\x38\xab\x4d\x40\xe7\x83\xe2\ \x3b\xa4\x8f\x0e\x19\x4b\x9a\xe9\xa2\x19\xdc\xb4\x29\x0c\x0b\xd9\ \xab\x5f\xe9\x74\xa7\x1a\x09\x84\x34\x9a\x44\xba\x05\xc8\xe6\xa2\ \x74\x52\x9a\x0d\x79\x89\xa5\x57\xe9\x0d\x42\x61\xa5\xd0\x0d\x30\ \x90\x22\xad\x7d\x14\x57\x3e\x4a\x91\x1d\x5b\xe7\x49\x42\x4a\xf1\ \xae\xdf\xbc\xe2\x21\x3f\xd1\x0e\x7e\xc1\x52\xac\xb3\xac\x27\x0c\ \x99\x60\x00\x88\xa2\x35\xad\x81\xa0\x28\xe9\x8e\x23\x07\x78\x31\ \x4e\x3f\x07\x7a\x4f\x8f\x28\x05\xa1\x14\xcd\x89\x7a\x27\x82\x0e\ \x69\xd6\xb4\x26\xea\xe9\xcb\x9e\xcb\xba\xfe\x01\xeb\x66\xb6\xc7\ \xa6\xee\xb3\x57\x29\xd4\x5a\xaf\x3e\xc1\x5b\x1d\x50\x4f\xb7\xda\ \x04\xee\xb4\x2c\xd6\x8c\x26\xe4\xf4\xb2\x25\x09\x44\x0e\x48\x27\ \x87\xb6\x46\xb0\xb3\x0d\x93\x18\x69\x76\xf9\x28\x4a\x85\x0c\x88\ \xdc\xdc\x68\x89\x32\x78\xbf\x39\x4a\x95\x3b\xb0\x83\x66\x73\x46\ \x9a\x35\xce\x85\x47\x07\xba\x08\x6e\xd6\x7a\xa5\x8b\x4f\xc8\xc0\ \xb7\xb0\x84\xa1\x6f\xfd\xc1\xdb\x69\xd5\xb7\xb8\x94\x3d\x2b\x72\ \x13\x52\x2c\x53\xf9\x4f\x0e\x04\xea\x65\x67\x37\x3b\x39\xcd\xa1\ \xd1\xba\xfe\xc0\x0f\x48\xf3\x03\x44\x36\xa9\xe6\x41\xf8\x39\xa0\ \xbe\x84\xa9\x9d\x59\xc5\x2b\x3f\x9c\xa2\xde\x1f\x67\xba\x02\x5d\ \x6c\x82\x1e\xdd\x6b\x42\x7b\xa7\x95\xdb\xf1\xdd\x14\xbd\x9f\xf8\ \x6a\x8a\xb3\x99\x4d\x1d\x34\xa1\xb2\xfa\xdd\x2f\x41\x02\x31\x84\ \xb6\x36\x37\x82\x17\x85\x2e\xe9\x50\x84\xb4\x07\xd9\x09\x93\x40\ \x1c\x64\xcc\xfc\xc1\xd1\x68\x2d\xd5\x5d\xbc\x59\x1b\xb5\x08\xc8\ \x1f\x7a\xec\x71\x7c\xd3\x52\xef\xf8\x74\xd1\xe1\x4f\x28\x34\x85\ \xb3\xf4\x9e\x57\x2d\x56\xdf\xf6\xa6\x37\xbd\x20\x38\xae\x8c\x3f\ \x42\x8e\x77\x5d\xb4\xa2\xcc\x95\xc3\xfe\x0a\x9a\xbb\x63\xa0\x02\ \x31\x90\x60\xd5\x0e\x96\x44\x06\xb5\x05\x54\x46\x4e\x75\x3a\xb2\ \x8f\x44\xa6\x39\xec\x49\x6a\x8b\xdc\x1b\xa9\x2a\x96\xe1\x0f\x6d\ \xca\x17\x14\xf4\x08\x64\x7b\x65\x90\x62\x18\xce\x92\x9b\x30\x6c\ \x2f\x6f\xbf\xea\x65\x4a\xf3\xab\x09\xf9\x1d\x33\x43\x02\xa1\x83\ \x35\x9b\x2b\x87\x39\xf6\x65\x93\x80\x6a\x47\x69\x61\x52\xcb\xd1\ \xd4\x9b\x0e\xf8\x25\xcc\x1f\x26\xd8\x47\x12\xc4\x70\x21\xf5\x65\ \xe1\x68\x8e\x14\xc4\xcb\x08\x9f\x7c\xb7\xb9\xde\xf6\xb6\xa3\xb1\ \x5f\xcd\x32\x59\x51\xcc\xdb\xfa\x16\x3b\xc5\x2b\x60\xaf\x2e\xce\ \x40\x87\x3c\x58\x76\xcc\x81\xd8\x85\x9a\x6f\x8c\x63\xff\x2d\xd1\ \x44\xbc\xd4\x64\x0b\x41\x8a\x4c\x4a\xed\x66\xb6\x98\x0c\x11\xb7\ \x91\xa9\xd5\xf8\x4d\x6b\xb8\xe7\x8e\x66\x3f\xfe\x28\xc5\x65\x98\ \x78\xac\x23\x0d\xe7\xa2\x7f\xfd\x55\x43\x92\xaf\x9e\xc7\xce\xe6\ \xa4\x69\x06\xc3\x26\xc8\x40\x17\x32\x58\xc3\x1a\x84\xe0\x83\x5d\ \x68\x5a\x2e\xa5\x9a\x15\x8a\x40\xed\x4b\xfb\x09\x73\x5b\xcc\x03\ \xa9\xa6\xa0\x69\x4f\x3b\xb2\x3a\x89\x50\xd3\xd4\x25\x83\x38\x27\ \x83\x56\x8c\x9e\x14\x7a\xc3\xba\xfe\x39\xf9\x55\xb0\xf6\x83\x1e\ \xec\xe5\x6d\x63\x05\x39\x6c\x89\x4b\x9a\x5f\x5e\x36\x28\x3d\xb3\ \x29\x83\x80\x0b\x5c\x08\xcd\x8e\xb1\x17\x8b\xb5\x6d\x0f\xbd\xb5\ \xb9\x58\x3a\xa0\x0e\x72\x10\x1d\x55\xe4\x80\xe2\xd8\xb3\x18\xa5\ \x64\x75\xa7\x90\x15\x8e\xb4\xe2\xc9\xe2\x01\x49\x88\xf4\xdc\xc6\ \xb1\x1f\xe1\x8c\x34\xf9\x7a\x9d\xe2\x49\x2b\x74\xd7\x29\x47\x76\ \xb1\x05\x49\x4f\xf4\xca\xa0\x1d\x02\x17\x38\x17\xb2\x20\x82\x3a\ \x3c\x9b\x9c\x11\x19\x02\x1d\xd9\x97\x63\xc0\xba\xdc\x1f\xc3\xd8\ \x06\x06\x56\x2d\x03\xfb\xde\x97\xb7\x48\x55\xb8\x95\xf8\xd7\xf4\ \xe6\xb4\xf0\xdc\x1e\x17\x6f\x21\xfd\xda\xbd\x5d\x07\x17\x14\x5c\ \xa8\x34\xd9\xc1\x2e\x5f\x9a\x15\xfb\xe5\xe9\x86\x21\x63\xd3\xbe\ \x06\x10\x6c\x83\x08\x21\x20\x02\x11\x20\xf0\x14\x19\x47\xdb\x5d\ \xbb\x49\x9a\x9a\x2b\x76\xa7\x49\x73\xa1\x03\x7a\xff\x72\x7a\xbd\ \xde\x8c\xc6\xae\x09\xb0\x68\xd4\xa0\x78\x5f\xbb\x6a\xde\x12\xd7\ \xa0\x52\xf7\xc7\xe6\xa0\x2c\xd9\xfc\x4c\xf9\xab\xbb\x9e\x7c\x42\ \x7b\xcf\x5b\x19\x70\x99\x66\x1d\xa6\xb4\xcd\x6f\x2e\x02\x78\x88\ \xfe\xfa\x44\x18\xc9\x7e\x03\xfe\x51\x8a\x9a\x61\x49\x66\xb3\x9a\ \x55\xb1\xcf\xde\x84\x1c\x74\xa0\x03\xf4\x68\xc2\xbd\x45\xac\x7e\ \x14\xd7\x8d\x95\x49\xed\x26\x13\xf9\x05\xd2\xfa\xee\x16\xd9\x14\ \xb7\xf5\x2b\x87\xad\x6f\xf8\x72\x81\x9e\x59\x26\x59\x0a\x55\x2e\ \x34\xc3\x68\x63\xd7\x75\xfb\xa6\x0b\x68\x37\x70\x67\xc0\x05\x58\ \x80\x7d\xa0\x17\x02\x58\xf0\x0e\xb6\xf0\x76\xa0\x13\x08\x3e\x20\ \x04\xed\x70\x6e\x4a\x57\x6b\x5c\x06\x6c\x4c\xe0\x05\x18\x30\x0c\ \x43\x90\x03\x59\x30\x04\x25\xe8\x05\x5c\xc0\x04\x4c\x90\x5e\x5c\ \xe0\x25\xd9\xe4\x23\x0f\xe2\x29\x85\xb6\x62\x5e\x35\x71\x63\x87\ \x79\xf9\x91\x55\x20\xc5\x5e\x82\x74\x3f\xbd\x02\x5f\x90\xc7\x62\ \x82\x24\x75\xc4\xe6\x5e\x32\x57\x65\x29\xa6\x80\x69\xd7\x04\xd2\ \x00\x81\xd8\x17\x02\xc2\x20\x02\xef\xa0\x7d\x70\xd7\x07\x6b\xc0\ \x2f\xbb\x95\x52\x45\xb8\x68\x32\x50\x7e\x59\x70\x0c\xc7\x70\x82\ \xc3\x30\x0c\xc7\x30\x04\x63\xb8\x82\x4d\x00\x02\x5c\xc0\x05\x22\ \xd6\x0c\x6e\x04\x0a\xf7\x03\x48\x96\xc7\x65\x06\x95\x6f\x96\xe7\ \x58\x2d\x75\x48\x36\x95\x4d\xc9\x56\x48\xf4\x34\x52\x8b\x85\x7c\ \xdb\xa4\x45\xb5\x77\x6c\xfe\x06\x55\x69\xe9\xb5\x80\x32\xe0\x05\ \xa1\x07\x85\xd7\x87\x05\xc2\x20\x0c\x1a\x00\x0f\x56\x38\x43\x18\ \xf8\x6b\xed\x50\x72\x06\x15\x75\x09\x95\x5e\x98\x96\x05\x5e\x80\ \x86\x27\x78\x0c\x75\x60\x8a\xc7\xe0\x05\x30\xc0\x82\x20\x80\x69\ \x67\xa0\x0b\xe5\x47\x0f\x39\xb0\x45\x53\x36\x69\xf9\xd6\x7c\x1d\ \x66\x31\x8d\xa5\x03\x7c\x16\x4b\x57\xd4\x62\x58\x14\x84\xf6\x26\ \x69\x57\xb6\x58\x8c\xf5\x6b\xf7\xf5\x65\xd9\xb4\x80\x03\x97\x03\ \xd2\x10\x7a\x21\x10\x8d\x09\x23\x7a\x35\x20\x0c\x76\x60\x07\x1a\ \x90\x7d\x16\x28\x2a\x11\x01\x02\x9a\x08\x6c\x34\xd5\x04\xf4\xd6\ \x04\xe4\xe8\x05\x59\x90\x03\x30\x20\x8a\xe9\x78\x0c\x30\x60\x8e\ \xec\xe8\x05\x4b\xd0\x06\x6d\x00\x02\x20\x50\x00\xe5\x38\x8b\xf2\ \xb5\x68\x9f\xf0\x81\x5d\x07\x6c\xfc\x98\x42\xdd\xa3\x58\xbb\x46\ \x56\x2d\x16\x56\x5c\x36\x80\x81\x74\x8c\xc8\x68\x83\x25\xc7\x84\ \x02\x27\x03\x2f\x88\x01\xca\xb0\x0d\x35\x40\x91\x1a\xf0\x0e\x35\ \x80\x05\x12\x68\x07\xb9\x90\x0b\xa8\xa0\x01\x35\x20\x0d\xd1\x26\ \x3c\xd1\x06\x02\x42\x20\x70\x2b\x57\x6f\xe8\xb5\x80\xba\xc0\x04\ \xa5\x98\x05\x4c\x00\xfe\x03\x4b\xb0\x8a\x32\x09\x03\x36\x79\x93\ \xf2\x08\x02\x16\x30\x8f\x16\x10\x82\x4c\xd0\x04\x67\x70\x76\xed\ \xd0\x77\xbe\x06\x6c\x9a\xb8\x84\xc0\xb6\x55\xf6\x96\x75\x45\x48\ \x4b\x41\xf8\x58\x0a\xd8\x68\x64\xa5\x80\xdf\x68\x7f\x5f\x25\x62\ \xd3\xb7\x06\x5c\xa0\x0c\xc3\x90\x03\x43\xa0\x0c\xd2\xa0\x01\x1a\ \x80\x0a\x22\x20\x02\xc2\x50\x03\x35\x80\x0e\x05\x70\x0b\x05\xb0\ \x04\x76\xf0\x0e\xe8\x90\x0b\x95\xf5\x37\x81\x00\x03\xcb\x36\x70\ \x9b\xd8\x04\x82\x34\x8b\xba\x70\x92\x32\x00\x02\xee\xc8\x8e\x33\ \x69\x93\x0e\x60\x01\x77\x60\x01\x0e\x60\x00\x8a\x69\x00\x16\x80\ \x98\x8d\xc9\x04\x16\x30\x93\x5e\x00\x02\x67\x70\x92\x6b\x60\x80\ \xc8\x48\x33\x9a\xa8\x62\xbf\x16\x4d\x2d\x94\x42\x12\xd7\x0c\x8c\ \xa6\x4d\xf2\x66\x68\xb1\xf4\x7f\x43\x29\x48\x86\xa8\x90\xc8\x98\ \x5e\xe8\x35\x7b\xcc\x28\x04\xc3\x00\x7a\xca\x60\x07\x13\xb9\x0d\ \x14\x49\x96\x76\x80\x0a\x76\x50\x00\x32\x50\x0a\x32\xd0\x96\x22\ \x90\x0b\xa5\x50\x0a\xb7\x30\x0a\xdb\x28\x23\xd1\xf6\x93\x20\x50\ \x73\x67\x80\x69\x2f\x08\x79\xcc\xc9\x04\x83\x99\x8e\x84\xe9\x00\ \x85\x89\x9d\x89\xfe\x09\x03\xe4\x60\x00\x27\x90\x07\x27\x50\x98\ \x8d\x79\x07\x77\x20\x93\x6d\x50\x99\x97\x99\x5e\x42\xf9\x6f\x42\ \x89\x94\x8d\x65\x78\xc1\x17\x69\x5f\x96\x8f\xc1\xc6\x87\x2b\x69\ \x65\x59\xf4\x7f\xac\xd9\x58\x8d\x66\x76\x59\x29\x03\x9f\x47\x04\ \xdb\x30\x91\x31\x21\x7a\x58\x70\x8d\xc3\x59\x00\x0a\xba\xa0\xb9\ \x50\x00\xc6\x79\x0b\x6c\x59\x70\xe2\x12\x08\x06\x10\x93\xe4\x08\ \x02\xd4\x09\x8f\xe6\x38\x04\x22\xb0\xa1\x62\x08\x03\x16\x60\x93\ \x8a\xe9\x00\x28\x90\x07\xd8\x69\x00\x36\xc0\x0d\x06\x20\x0b\x27\ \x70\x02\xde\x89\x9d\x20\x1a\xa2\x77\xd0\x06\x40\x40\x07\x42\xd0\ \x8a\x41\x79\x99\x29\xb6\x99\xcb\xb8\x89\xf7\xb6\x55\x95\x47\x9a\ \x87\xa4\x8c\xe4\x93\x75\x8c\x65\x65\x91\x55\x94\x47\xea\xa3\xaf\ \x79\x76\x9c\x97\x03\x8f\x98\x30\x6b\x51\x03\xca\xc0\x9b\x39\x90\ \x0b\x39\x50\x96\xc3\xd9\x91\x1d\x79\x8d\x1d\xb9\x04\xe8\xa0\x73\ \xd5\x81\x81\x77\x70\x82\x30\x99\xa1\x66\x9a\x05\x61\x68\x8a\xa7\ \x78\x0c\x06\xe0\x00\xb6\x40\x0e\x30\x70\x02\x28\x50\xa2\x2d\x2a\ \x0b\x06\xc0\x0d\x36\x60\x00\xe0\x89\xa7\xb2\xa0\x9d\x46\x80\x98\ \x33\x0a\x04\xfe\x6d\xc0\x82\x4c\x10\x94\x41\x19\x70\x43\xf9\x65\ \x8c\x76\x6f\x2c\x36\x4f\xc5\xd5\x86\x6d\x28\x62\xae\x79\x53\xf2\ \xd6\x68\x49\x8a\x8c\x0b\xa9\x4d\x94\x9a\x95\x67\xf0\x80\x44\x50\ \xa0\xa1\x5a\x03\x63\x69\xa6\x65\x79\xa5\x08\xaa\xa0\x22\x70\x8d\ \xef\x60\x8d\x65\x89\x0e\x55\x98\x9c\xa1\x53\x2c\x5e\x50\x07\xf9\ \x50\x07\x4b\xc0\x82\xa2\xa8\xa6\x59\x40\x0e\x4e\xf1\x27\x37\x69\ \x0b\x30\xa0\x98\x79\x60\xa7\x7d\x6a\x03\xc8\xca\xa2\xc8\x6a\x03\ \x24\x0a\x9e\x0e\x90\x07\x81\xea\x00\x6d\x50\x9e\x30\x30\xa3\x6b\ \x78\x06\x28\x59\x73\x00\xf7\x85\xf2\xf6\x6f\xb2\x47\x9a\xe4\x93\ \x4d\xae\xa9\x7e\x58\xf6\x7f\xae\x69\x53\x48\xc8\x9f\xff\x26\x48\ \xea\xc9\x8c\x5a\x09\x8d\x15\x19\x13\x21\xa9\x0c\x22\xc0\x05\x05\ \x80\xa1\x4c\xa0\xa0\x0d\xaa\xaf\xab\x7a\x8d\xc2\xf0\x0e\xac\x3a\ \x89\x1a\x40\x0e\x3e\x20\x30\xed\x21\x86\xa7\x08\xa2\x4b\xa0\xa6\ \x6c\xda\x0b\xad\x20\x0d\x72\xaa\x98\xc3\xaa\x98\xdf\x59\xa2\x79\ \x70\xb1\x27\x20\x0b\xcb\xba\xb1\xc5\x0a\x9e\xc5\x8a\x02\x81\x6a\ \x04\x0e\x50\xad\xab\x78\x07\xf4\x28\x04\x28\x5b\x73\x42\x20\x03\ \xcf\x19\xfe\x79\x42\xc9\xa8\xa4\xe9\x86\xb2\xa7\x7e\xb4\x08\x79\ \xaf\xb9\x7e\x54\x89\x84\x2b\xd6\xa9\xcc\x28\x03\x75\x20\x7a\x21\ \xa0\x0c\x1a\xa0\x0c\xca\x40\x89\xca\x30\x04\xb9\xca\x04\x26\x98\ \x03\xb9\x5a\x00\x67\xd0\x96\xe8\xf0\x96\xad\x6a\x8d\xac\x0a\xb0\ \xc4\x89\x9c\x49\x52\x2c\x63\x98\x8e\x59\x50\x93\x08\xdb\x0b\x24\ \xe0\x14\x24\x10\xb1\xe4\x60\x03\xe4\x70\xb1\x17\x5b\xa2\x16\x9b\ \xb1\x36\xb0\x0b\x6e\x9b\xac\x2d\x9a\xb1\xb2\x60\x04\x68\x0b\xad\ \x0e\x70\x98\x36\x99\x93\xf4\x48\x8f\x74\x70\x06\x67\xc0\x82\xe8\ \x39\x94\xde\xda\x04\x6e\x48\xb8\x58\xa9\x0b\x6d\x08\x79\x5a\x23\ \x6f\x82\x64\xa4\x8d\xd5\x58\xeb\xaa\x97\xea\x99\x76\x42\xa0\x03\ \xa0\x2a\xa0\xca\x80\x0e\x5f\xa9\x0c\xa2\x78\x0c\xd2\x60\x7d\xa1\ \x27\x89\x39\x70\x0b\x20\x20\x02\x1f\x89\x9b\x17\x79\x8d\x6f\x39\ \x9c\xb7\x50\x0a\x02\xd7\x07\xa0\x02\x20\xd1\x26\xac\xb6\x30\x93\ \xec\xa8\xa6\x75\x40\x02\xbd\x20\xb6\xbd\xf0\x27\xdc\x40\x0e\x2a\ \x6a\x00\x16\x5b\xa7\x40\xb0\xb6\x6d\x1b\x6d\xbb\x60\x03\x1a\xbb\ \xb1\x7e\x7a\x02\x74\x9b\x07\x6d\x00\xb2\x24\x6b\x04\xf2\x58\xbd\ \x20\xfe\x40\x03\xf4\x38\x8f\x32\xb0\xb2\x35\xf7\x85\xe4\x48\x8e\ \x3f\xf9\x8a\x31\x9b\xb8\x43\x08\xae\x2b\x39\x94\x4b\x28\x48\x22\ \x86\xad\x69\x77\x06\x01\x0a\x7a\x03\xfa\x95\xc2\x30\x04\x05\x30\ \x04\x97\x8b\x7d\xdb\xb0\x04\xc1\x69\x07\x0f\x28\x89\xac\xaa\x01\ \x53\xd8\xba\x9c\xb7\x06\x3e\x20\xa6\x7e\x81\x81\x91\x69\x93\xbd\ \xaa\xa6\xe4\x50\x07\x60\x1b\x05\xad\xa0\xbb\xe4\x30\xc1\xdd\x49\ \x0e\x74\xfa\xb1\x28\xd0\x07\xc6\x7b\x24\x81\xb0\xb1\x6f\xab\xbc\ \xb2\x10\xc2\x30\x00\x9e\x46\x80\x02\x40\x30\xac\x30\xc0\x8e\xd5\ \x5a\xbd\x40\x40\x03\x7a\xeb\xb7\x95\xf9\x85\x4c\xd0\x8a\xac\x48\ \x99\x84\xdb\x86\x45\x4a\x0f\x53\x46\xb3\x4d\xe0\x5e\xfc\x89\x7c\ \x9d\x4a\xb9\x43\xf0\x88\x12\x58\x03\x75\x20\xb4\xc7\x50\x00\x5e\ \x60\x7d\x90\x48\x04\xca\x10\x70\xb7\x60\x07\xa4\x6a\x07\x65\x79\ \x96\xc2\xe0\xa0\x03\x5c\x0a\x4b\xd0\x0a\x97\x18\x1c\x18\xd8\xb5\ \x16\x60\x00\x0c\x3c\xc1\xbd\xea\xc0\x24\x10\x05\x63\x4b\x0e\x6e\ \x3a\xc1\x15\x5b\xa7\x7d\xa0\xc1\x68\xab\xb1\x47\xe2\xb6\x74\xfc\ \xb6\x7a\xba\xac\x2c\x4a\xb7\xc5\x6b\x04\xdc\xd0\xc7\xdc\x00\x03\ \xfe\x77\x4b\xbd\x40\x00\x02\x84\x0a\x02\xd5\x3b\xc3\x86\xcc\x82\ \xf3\x88\xc8\xcf\x49\xb8\x2e\xb6\x45\xf4\x80\x72\xae\x29\x6f\x90\ \x4b\x88\x94\xca\x79\x32\x80\x01\xa1\xbb\x16\x1a\x50\x07\xa8\x90\ \x05\x5c\xf0\x84\x4d\x2c\x7a\xa8\xe0\x97\x0b\x5a\x00\x76\x40\x89\ \x22\x50\x9c\xae\xbb\x06\xc5\x89\x0e\x4c\x2c\x0c\xc0\x62\xc0\x5f\ \x14\x08\x47\x60\x0b\xb5\xcb\x9d\xe4\x40\x02\x24\xf0\x27\x13\xac\ \xbb\x12\xdc\xab\x65\x4b\xac\x6a\xdb\x07\xc5\x8b\xb1\x72\x5c\xc7\ \x74\xbc\xac\xc9\xab\xa7\x7a\xca\xa2\x17\x6b\x04\x06\xc0\x9d\x37\ \x69\x04\xd6\x4c\xa3\x34\x30\xc8\xf2\x78\x07\x4c\xc0\xcd\xdc\x5c\ \xa8\xe0\x0c\x94\xe0\x7b\xc3\x5c\xf0\x06\xa0\xe0\x6f\xa4\x29\x62\ \x48\x68\x68\xe4\x08\x70\x9c\x57\xb9\x6e\x82\x05\xf1\xaa\x01\x48\ \x9b\x03\xc7\x30\xca\x91\x58\x00\x02\xc7\x96\x05\x90\x03\xaa\xbb\ \x96\x10\xda\xca\x05\xf0\x0e\xf0\xfb\x0e\x60\x3a\x4e\xd6\xb1\x0b\ \xa3\xb0\x04\x62\xbc\xcb\x67\x3c\xb6\x69\x4c\xc1\x14\xac\x98\xdd\ \xd9\xc6\x19\x5c\xbc\x76\x1a\xc2\x72\x1c\x11\x1f\xdc\xb6\x1e\xdd\ \xcc\xbb\xc0\x0d\x73\xfb\xa7\x30\xf0\xbb\xbd\x70\xd2\xdc\x50\xfe\ \x0f\x46\x00\x04\x2d\x9c\xcd\xd3\x7a\x07\xf5\x40\x9e\x32\x3d\xa3\ \x4c\x30\x8f\xe3\xcc\x04\x5c\x10\xc9\x28\x37\x94\xf7\x76\xa4\x48\ \xda\xad\xee\x7a\x99\x5c\x80\x0a\x44\x8b\x0a\x75\x90\x05\x3a\x50\ \x00\xc7\x70\xbf\xa3\x3c\x04\x6b\x70\x06\xa8\x40\xaa\x93\x48\x96\ \x6b\xd9\x91\xac\x7c\x0b\xef\xa0\x01\xad\xf0\x0e\x70\x89\x0e\xe8\ \xc0\xd0\xb2\xfa\x45\xb7\x6c\x0b\xbd\x0a\xcc\x68\x3c\xc1\x67\x2d\ \xd1\xdd\xb9\x98\xb6\xa0\xb6\x28\x40\x03\xc6\x6c\xa7\x71\x9b\x53\ \xd1\x96\xac\xcc\x8c\xac\x6e\xfb\x10\xbb\x30\xb7\x40\x00\xad\xe4\ \x00\xc1\x10\xb0\x01\xbd\xc0\x0d\x2b\xcd\xd2\xd9\x0c\x04\x46\x00\ \xd3\x31\x7d\x07\x89\x7d\xc8\x85\x6a\xa8\x6d\xe8\x05\x91\xac\x03\ \xff\x86\xc3\x0a\xe8\xad\xe1\x84\x95\x94\x9b\x5e\x6b\xd0\x0e\x4a\ \xbb\x86\x4d\x50\x00\xba\x20\x02\xa2\x8c\xcf\xa2\xb7\x0d\xff\x16\ \xa0\xf2\x4c\xc5\x59\xea\xa5\xc6\x99\x0b\x59\xdd\xd5\x5f\xdd\x91\ \xef\x40\x02\x5d\x7c\xc0\x81\x60\x0b\x0d\xbd\xcb\x60\xdb\xdb\x12\ \x5c\xc1\xe4\x90\x05\x7b\x4a\xb1\x6d\xfd\xb1\x71\x2d\xd7\x79\x90\ \xcc\xc9\xba\xbc\x1b\xfb\x10\x10\x00\x01\x81\x60\x04\x34\xfe\x40\ \x07\x40\xe0\x00\xdc\xd0\x0a\xa2\xd7\x0a\xbd\x60\x03\x85\x6d\xd8\ \x2c\xdd\x06\x89\x1d\xd3\xd4\xdb\xd8\x86\xda\x06\x2b\xc8\x05\x2a\ \x38\xd9\x95\x7d\xce\x8b\xa6\x4d\x43\xea\xa4\x02\xa7\x0b\x2a\xa8\ \xad\xfe\xd6\xd9\x5f\xf8\xb3\xa6\x7d\x7d\x21\x90\x03\x67\xa0\x0c\ \x06\xaa\x01\x39\x80\xca\x94\x28\x96\x5e\xad\xd5\x1a\x80\x0e\xa3\ \x00\xa1\xb7\x30\x06\x05\x40\x02\x8f\x58\x7a\xb8\xed\x03\x3e\x40\ \xd1\xc0\xfc\xcb\xbb\x1c\x05\x13\x6c\x00\x19\xae\x98\xb8\x6c\x0b\ \x18\x7c\xd1\x75\x5a\xb7\x27\xc0\xbc\xcc\xdd\xb6\x47\xb2\x01\xa4\ \x17\x05\x51\x70\x02\x36\x2a\x04\x34\x00\x03\x51\xf0\xdc\xbc\x40\ \xd8\x88\xcd\xd2\xde\x2d\x8f\xf5\xf0\x07\x2a\x4d\xbd\xd5\x3b\xad\ \xdd\xec\x05\x21\x28\xd9\xf4\xc0\x05\xff\x86\x68\x94\xbd\xae\x38\ \x0c\xdf\x97\xd9\x04\x6f\xe0\xb2\xaf\x68\x99\x42\x90\x03\x4c\x9c\ \xdf\xa2\x87\x01\x42\x50\x00\xca\x10\x13\x00\x5e\x00\x22\x50\x03\ \xad\x20\x12\x5a\x4d\x04\xf0\x70\xe0\xad\xcb\xca\x05\x50\x89\x32\ \x81\x05\x24\x10\xd6\x46\x11\x11\x3e\xd0\x9d\xc2\x5c\xe1\x0f\xfc\ \xdb\x59\xf0\xe6\x1d\x9e\x07\x6d\xed\xe1\x75\x7a\xd1\xfe\x75\x7b\ \xac\x2c\xaa\xd1\x23\xee\xdc\xcf\x0d\x11\xc9\x6b\x03\x35\x4a\x07\ \xd4\xcd\x0d\xbd\x10\x05\x83\xbd\xd2\xd0\xda\xdd\x2c\x1d\xde\x3b\ \x4e\xa3\x87\xcc\x82\x5e\x70\xe9\xf4\xe0\x05\x6f\x40\x0f\x2e\x78\ \xce\x4b\xb8\x45\x6e\x08\xdf\xed\xc0\x86\x6e\xe8\xb7\x35\xc7\x92\ \xc7\xf0\x88\x54\xee\xc4\x1a\x08\xa5\x21\x00\xe0\x1e\xb9\x0d\xad\ \xa0\x01\xb2\x5e\x91\x11\x6c\x07\x02\xec\xca\xb0\x2d\x96\x00\xcc\ \xd5\xef\xc0\xe6\x33\x12\x6d\x6f\x4e\xb0\xbc\x0d\xd1\x66\x2d\xd1\ \x1d\x8e\x02\x16\x60\x0b\xcb\x6e\xb1\xc5\x7a\xcc\x68\x7b\xa7\x7f\ \x1e\xc2\x6c\x1b\xe3\x83\xbe\x0b\x79\x10\xe9\x36\x0e\x04\x27\xf0\ \x07\x8a\x4e\xd8\x74\x6b\xcd\xd6\xbc\xed\x88\x6d\x04\xf5\xa0\xd2\ \x6d\x80\xbd\x89\x3c\xad\xe8\x9d\xde\x6f\xe0\x05\xe9\x25\xd9\x58\ \x49\x3e\x53\x56\x73\x0f\xa9\x03\x2d\xf8\x8a\x67\x77\x92\x2b\xeb\ \x8c\xab\x7e\x7d\xdb\x70\x92\x4c\xf0\x80\xdb\xc0\xa1\x59\xbd\x0d\ \x24\x20\x96\x11\xcc\xd5\x24\xb0\x04\xae\x6b\x9c\xe8\x50\x89\x62\ \x59\xb5\xbc\x4c\xcb\x36\xc1\xd1\x6a\x3d\xb6\x68\xdc\xdb\x6a\xad\ \x98\x16\x50\xa7\xa3\x80\xcb\x78\xee\xe1\x18\xdc\xfe\xd7\x18\x9b\ \xb1\x72\x4b\xed\xdc\xf0\x10\x2a\xbe\x0b\x27\xd0\xc2\x88\x4e\x07\ \x34\x60\x04\x36\xf0\x07\x29\x5a\xf3\x22\x2d\xee\xe2\x4e\xee\xe5\ \xbe\xe3\x2c\x9d\xbd\x86\x7a\xe9\x97\xfe\x06\x6f\x80\x5e\x93\xdd\ \xe9\xa1\x4e\x95\x6b\x80\xb8\x6e\xf8\x93\xd3\x37\xea\x5e\xf0\xbe\ \xab\x8e\x05\x95\x59\x00\x6e\xb2\x0d\x76\x90\x05\x59\xdd\x0a\xff\ \x9a\xf0\xb2\x6d\x01\xc5\x59\x00\x11\x0f\x0f\x58\xb0\x0d\x1a\x40\ \x02\x5c\x2d\xb0\x5a\x0d\xec\x35\x11\x11\xe4\xb0\x0b\x19\xff\xd0\ \x13\xdc\x0b\x14\x9c\x05\x06\x80\xcb\x1f\xff\xf1\xb8\x8c\x9d\x2d\ \x6a\xc2\x25\xda\xd7\x71\x9b\xf2\xca\x1a\x08\x1b\x10\x08\xdc\x70\ \x02\x34\x90\xf8\x31\x9f\xcd\x7d\x5c\xf3\x36\x50\x0f\xb2\xa0\xe3\ \x2b\x6d\xee\x73\x3b\xf9\x35\x5e\xee\xd4\x8b\xbd\xd3\x4d\x8f\x3e\ \x99\xde\xd4\xb0\x0c\xf0\x4e\x0f\x6f\xe0\x9a\x99\x8e\xce\x4c\x28\ \x03\x38\x1d\xd9\x44\xde\xbe\xdf\xa2\xea\x53\xef\x6f\x39\x50\xf6\ \x9e\xac\xa6\x59\xad\x01\x16\x20\xf6\x5f\x6d\x01\x0b\x7e\x0b\xb9\ \x10\xf1\xa1\x3a\xeb\xbc\xee\xeb\xc2\xe0\x26\x67\xcf\xf6\x29\xc1\ \xd1\x12\xbe\x0b\xc3\xfe\xd7\x0f\x8d\xe1\x12\xfe\xcd\xe1\x16\x30\ \x0a\x7a\x0f\xa7\x89\xc9\xa7\x1f\x2b\xe2\x81\x8f\xf2\xbb\x80\xe2\ \xbb\x00\x04\xfc\x8e\x73\x89\x0f\x04\xb2\xd0\xc7\x0e\x20\xee\x36\ \xff\x07\x95\x5f\xf9\x3a\x7f\xf9\xd8\x1c\xf3\x67\xc0\xf9\x21\x88\ \xde\xa2\x1f\x03\x9c\x4e\xf4\xe4\x58\xce\x9c\xce\x9e\xda\x8a\xde\ \x38\x9d\xe9\x36\xf7\xb7\x00\xe1\xa5\x03\x3c\x82\xf0\x88\x1c\x44\ \x98\x30\x61\x08\x26\xba\x96\x6c\x93\xa6\xec\x98\x9d\x25\x4b\xea\ \x64\xb9\xb5\x66\x4c\x2e\x0b\xb7\x4a\x95\xca\x85\x8e\x44\x2b\x2c\ \x1a\xb6\x69\xc0\x72\x52\x98\x9d\x77\x28\x4b\x6a\x78\x47\x22\xd0\ \x3f\x9a\x35\x6d\xde\xc4\x99\x53\xe7\xce\x7f\x81\x7c\xfa\x20\x17\ \x54\x28\x09\x72\x24\x48\x44\x11\x4a\x2e\x8b\x01\xa6\xb6\x50\xa0\ \xb0\xe0\xd4\x81\xad\x13\x54\x4f\xe4\x41\x91\x47\xeb\x89\xab\x5a\ \x8d\x9c\x30\x62\xc4\x46\x14\x08\x10\xb8\x01\x59\x93\x76\x8d\x10\ \x1a\x46\x64\x71\xe3\x66\x23\xec\x09\x59\xf5\xfe\xdc\xbd\x1b\xd6\ \x08\x90\xbd\x46\xda\xf8\x05\x42\x83\x06\x1d\x21\x6b\x85\x9c\x39\ \xd3\xa4\x09\x17\x2e\xf4\x40\xd1\xa3\x06\x4a\x17\x17\x50\x32\x74\ \xd1\x7b\xc3\xa5\x89\x8e\x26\xba\x64\xc8\xfe\x60\xc2\x98\x8b\x17\ \x7a\x5c\x64\xac\xe5\x32\xac\x0e\x31\x78\x21\x08\x2a\x84\x8d\x10\ \x0b\x88\x33\x39\xa4\xd5\x41\x65\xe7\x62\x01\x74\xef\x6e\x09\xb9\ \x55\x31\xd7\xc6\x2c\x24\xb6\x61\x69\xa5\x41\xf9\xb6\xe4\x2b\xed\ \x68\x20\xa9\x5c\xd8\x74\x99\x33\x79\x5e\xc7\xbe\xf3\x27\x39\xa0\ \xe4\x02\x11\x2d\x1a\x3e\xa9\x01\x72\x06\x6c\x59\xb0\xf0\x54\xab\ \xad\xa9\x55\xb5\x62\x7d\x9f\x07\xc8\x09\x20\xf2\xeb\xef\x2a\xdb\ \x4a\x16\x10\xc2\x6b\xe9\x88\x85\xeb\x0f\x18\xf4\xfa\xc3\x86\x02\ \x0f\xac\xa7\x2f\x20\x16\xf4\x6b\xaf\xc1\x84\x28\xcc\x30\x19\x12\ \x13\x4d\x33\xc6\x64\xe8\xac\x1d\x19\x40\xd1\x41\x17\x1d\x18\xeb\ \xec\x43\x2f\xbc\x60\x8c\x89\x26\xd2\x02\x2d\x0b\x2f\x3c\x68\x8d\ \x08\x83\x62\x83\xad\x83\x33\x40\xf0\x02\x15\xdc\xea\xd0\xa0\x8e\ \x8a\x2e\xca\xc5\x22\x74\xb2\x10\x09\x3a\xe5\x48\x78\x27\x26\xe5\ \xde\x61\x49\xb9\x94\x94\x63\x52\x03\x22\x7d\xca\x2e\xca\x28\x7d\ \x4a\x2a\xa8\xef\xaa\x14\x8a\x3c\x5b\xcc\x73\xea\xbc\x3c\x6c\xf9\ \x32\xbe\xf8\xe8\x23\x53\xab\x05\x4f\x08\x04\x82\x28\x6c\x08\x8c\ \x0e\xc2\x84\x00\xc2\x06\xb8\xe6\x92\xfe\x45\x96\x02\xb9\xc1\x2b\ \xaf\xbd\x16\x5c\xf0\xaf\x36\xda\x00\xe1\xc1\x08\xd7\xc2\x50\x31\ \x5d\x3c\xf3\x70\x8d\xcf\x14\xf5\x0c\xc3\x0a\x47\xa4\x87\x1e\x2f\ \x9a\x90\x41\x88\x76\xd2\x4a\xcc\x8b\xd6\x5e\x84\x51\xa1\x10\x86\ \x48\x4c\x84\x63\x94\x01\xb2\x8e\x77\x96\xc8\x42\xb9\x2c\xb2\x88\ \xc9\xa8\x56\x48\x70\x12\x1d\x59\x97\x28\xd2\x0e\x3b\x7a\xd3\x80\ \x88\x97\x90\x6c\xa9\x06\x5e\xc9\x91\x32\x58\xed\x02\xf1\xae\x58\ \x2c\x83\x22\xa1\x17\xa5\x98\x6a\xea\x3c\x14\xc0\xb4\x85\x3d\xad\ \xb2\xa2\xf6\xbd\xfa\xf2\xd8\x33\xce\x28\x02\x71\xe0\x4d\x3a\x04\ \x03\x42\x96\x5e\x7a\xf9\x43\x96\xb0\xec\x84\x2b\xdd\x72\x13\x0c\ \x0c\x5c\x20\xfc\x6c\x43\x30\x1a\xce\xa0\x43\xad\x35\x34\xc4\xf7\ \x5e\x0d\xef\x4d\xab\x9d\xc2\xda\x39\x94\xb2\x37\x30\xa3\x66\xe0\ \x41\x31\x65\x82\x0f\x22\x42\xe8\x34\x36\x2c\x98\x48\x6c\x08\x65\ \xa4\xc9\xd1\x8e\x63\x56\xad\x83\x04\x1d\x59\xcd\xf8\x56\x74\x96\ \xf8\x18\x64\x5b\x65\x0d\xb2\x95\x93\xde\x41\x47\x04\x91\x84\x29\ \xb2\x25\x61\x5f\xb6\xc9\x27\x2a\xaf\xc4\x12\xbc\xa0\xc8\x63\x6a\ \x89\x68\xa3\x7d\x36\x0f\x07\xe2\xfe\xab\xf6\x4c\xae\xb8\xda\x4b\ \x16\xb2\x7a\xa1\x41\xad\xb6\xc0\xe2\xa6\x17\x6e\xcc\x0d\xeb\x40\ \x39\x03\x0c\x6b\xc1\x6f\x69\xe8\xf3\x4f\x20\x02\xe5\x9a\xb6\x83\ \xed\x05\x1b\x6c\x80\x17\x7b\x63\xe0\x37\xa8\xa1\xe7\xb4\x09\x11\ \xe3\x22\x1f\xd7\x1a\x8e\x0d\x83\x33\x84\xe0\xa2\x8e\x6d\x16\x86\ \x07\xa6\x22\x57\x5d\xc2\x82\xbe\x6f\x19\xe3\x96\x3e\x7a\x24\xb9\ \x48\x74\x6e\x6d\x29\x3a\x0d\xd0\xc9\x25\x17\x11\x58\x6a\xd9\x3a\ \x98\x5f\x96\x19\xa9\x62\xbb\x3b\xb6\xbc\xa5\xb8\x8c\xca\x82\x2f\ \x51\x98\x4a\xcc\xac\x16\xcc\x63\xe8\xad\xf0\x23\x22\x8a\xa4\xd7\ \xa2\x01\x5d\xa7\xff\xd0\x8b\xae\x3f\xf0\x9c\x9d\x9b\xaa\xdb\xc5\ \x1a\xeb\x36\xde\xdd\x9a\x86\xae\x15\x3b\x2d\x6c\xe1\xed\xb5\xac\ \xc2\xc6\xde\x50\x6c\x31\x13\xa9\x21\xc6\x45\xb8\x15\x7a\x18\xb1\ \x02\x86\xc1\x42\x36\x8a\x80\xcc\xa5\x8f\x02\xc6\x28\x65\x8d\x52\ \x82\x13\xa9\xb7\x98\x58\x86\x35\xd7\x10\x4a\x42\x32\x65\x90\x5b\ \xf6\x6e\x72\xca\x03\xe9\x6e\x97\xa4\xba\x23\xca\x66\x66\xcd\x4b\ \xaf\xcb\x30\xc5\x3c\xc2\xda\xac\x86\x9e\xcf\x58\x0e\xd2\x0b\x20\ \x14\x86\x2d\xe2\x1a\x17\x37\xfe\xc0\xc2\x17\x23\x1c\x68\x76\x7a\ \x72\x10\xb8\x74\xb7\x3b\x10\x2c\x88\x36\x33\x32\xd4\xa5\x86\x37\ \x3c\x7c\x59\xa6\x09\xf4\x58\x06\x15\x62\xf0\x86\x11\x8d\xc8\x0a\ \x2c\x7a\x9e\x42\x30\x00\x82\xcf\x9c\xa1\x00\x76\xb8\x5b\x08\x34\ \x90\x05\x54\xbd\x23\x17\x1e\x29\xcc\x47\x96\x60\x94\x77\x14\xa7\ \x25\x44\x32\x12\x93\x48\x00\x39\x5b\xbd\x83\x65\xe8\xd8\x85\xfb\ \x28\xb7\x0b\x1f\xc8\x8f\x1c\xf2\xc3\x5c\x50\x2c\xe7\x83\x2c\xf8\ \x80\x73\xa3\x40\x8f\xb4\x42\x07\xa6\xf7\x70\xa5\x8b\x43\x73\x4b\ \x20\x36\x10\x85\x5e\x18\xa0\x4d\xdf\x32\x42\xd3\x6c\xc7\x40\xb1\ \xe4\x09\x4f\x76\x4a\x50\x04\xc1\xa5\xb5\xad\x05\x8a\x06\x32\x00\ \x41\x13\xce\x10\xbc\x0d\x6e\xd0\x51\x21\x7c\x41\x18\x5a\xc0\x07\ \x12\x8e\x88\x79\xaf\x49\x21\x11\x88\x01\xb1\x33\x60\x2a\x17\x59\ \x40\xc5\x90\x58\x95\x85\x5c\x74\x2f\x2d\xa5\x18\x03\xaa\x74\xd6\ \xa3\x5a\x91\xac\x70\x45\xe4\x15\xcb\xde\x01\x2c\x25\x0a\x2b\x10\ \x47\x00\x0a\x14\x85\x82\x39\xa2\x58\x91\x59\xb6\x18\x05\x54\xb0\ \x02\xad\x9f\x71\x51\x4c\x5d\x94\xc5\xd0\xb8\x41\x16\x6e\xb9\x8b\ \x2f\x71\x29\x57\xd5\x8c\xfe\x60\x17\xb7\xe0\xc5\x06\xf5\xa0\x9a\ \xbc\xbe\xf5\x97\xde\x09\x06\x04\x20\x38\x0c\x0b\x35\xd8\x47\xe1\ \x4d\xe6\x0d\x31\x88\x01\x1f\x02\x99\x0c\x42\x8e\x06\x33\x6e\x43\ \x24\xdc\x3e\x85\xc1\xb9\xc9\xa0\x00\x4c\x40\x15\x8e\x6e\xd5\x11\ \xb5\x94\x42\x08\x1f\x09\x5c\x01\x1a\xd7\xa3\x8a\x80\x6c\x56\x20\ \x13\x41\x3e\x1f\xa7\x37\xc9\x95\x32\x3b\xa7\xf4\x41\x2a\x81\x32\ \x50\xee\x8c\xc7\x00\x9b\x43\x4f\x2c\xbd\x24\x2d\x68\x75\xe5\x96\ \x5c\xa9\x93\x2c\x02\x71\x90\x56\x14\x90\x2d\x79\x78\x8b\x5c\xf4\ \xd2\x17\xb7\x84\xc5\x40\xb0\xfb\x43\x25\x2a\xf1\x07\xfe\xb8\xc9\ \x97\x6d\x72\x26\x1d\xf6\x38\x4d\x6a\x82\xed\x13\x9b\x89\xd4\x32\ \xb0\xa9\xcd\x18\x78\x81\x09\xa4\x79\x03\x1f\xde\xf6\xbc\x4f\xe5\ \xb1\x44\x4d\x10\x15\x45\x44\x75\xaa\x31\x08\x0f\x93\xb7\xa0\xe7\ \x3c\x7b\x64\x07\x58\x91\x80\x71\x05\xb8\xc5\x2d\x0a\x20\x02\x23\ \x16\xa9\x9f\xfe\xe4\xc9\x4f\x52\xf9\xc4\x27\x0e\x94\x3c\x41\xa1\ \xa2\x2b\x61\x89\x82\x3e\x60\x71\x14\xd0\xa2\x8a\x01\xaa\x62\xba\ \xad\x40\x94\x2b\x36\x80\x00\x45\x1d\x20\x04\x3a\x84\x2b\x40\xf2\ \xd9\x28\x5f\x12\x64\xfe\x97\xbb\xc8\x89\x17\x95\xa8\x07\x0d\xe8\ \x3a\xc7\x77\xc9\xab\x82\x5e\xe3\x63\x4b\x85\xe7\x28\x50\xbc\x41\ \xa6\x54\xb0\x42\x13\x98\x20\x29\x2f\x10\xc3\x35\x9c\xea\xd4\x30\ \x58\xe8\x85\x3a\x74\x00\x15\x43\xc0\x51\x1d\x44\xc0\xb7\x46\x86\ \xed\x7b\x7e\x23\xd9\x12\x08\x57\x3e\x0d\xd8\xa1\x92\xde\x43\x2a\ \x4b\x58\x76\x55\xac\x6a\x87\x89\x01\x25\x16\x57\xb9\xf3\xd5\xee\ \xbc\x12\x96\x7d\xe8\xc3\x53\xb2\xf2\x25\xa6\x9c\x40\xad\x6a\x1d\ \x1a\x44\xeb\xc4\x15\x6e\xc4\xf5\x20\x24\x05\x50\x5c\x38\x2a\x8b\ \x3b\x84\x25\x41\x78\xa1\x5d\x25\x36\x60\xbb\xc1\x08\xe6\x2f\x7a\ \xf9\x93\x9f\x98\x30\x5e\xe0\x25\x56\xb1\xfd\x92\x81\x88\x1c\x3b\ \xc2\xd0\x90\x66\x45\x97\x6d\x58\x08\x3a\x70\x22\x10\x0c\xa1\x03\ \x10\xb9\xc8\x12\x98\x50\x80\x8a\x80\xc0\x92\x69\x79\x67\x29\xfc\ \x66\x4f\x03\x7c\x4c\x56\x92\xac\x64\x84\x62\x5b\x24\x61\xc8\xa4\ \xb6\xd8\xd1\x6a\x40\x8b\x95\x5b\x82\x66\x41\x73\x4c\xc1\x22\x70\ \xcb\x1a\xcb\x51\x8c\x42\x2b\x47\x60\x8a\x2c\x0c\x20\x8b\x23\x88\ \xd8\x06\x27\x3e\x71\x2e\x27\x7a\x10\x35\xed\x62\x5c\xbd\x30\x17\ \x83\x1a\x78\x17\xfe\xbb\xa4\x2b\x40\x95\xe0\x05\x2f\x48\x3a\xc7\ \x61\xd6\xa3\x1e\x77\xb8\x83\x8f\xeb\x71\x89\x4b\xf0\xc3\xbd\x3a\ \x90\x01\x4b\xcf\x3b\xb6\xe3\x59\x21\x06\x56\xf0\x26\x17\xde\xc0\ \xa2\x70\xc2\x26\x04\xc3\x68\x24\xdd\x30\x70\x0c\x2f\x64\x21\x07\ \x2c\x5c\x0b\x62\xda\xf9\xbd\x02\x14\x47\x56\xb6\xb0\x27\xc8\x88\ \x44\x24\x74\x14\xe0\x92\x52\xb5\x43\x0d\xa6\x63\xd5\x07\x43\x18\ \x7e\x3e\x40\xa5\x4f\x90\x42\xac\xee\xf4\xd6\x8a\xbf\xd5\x70\x1f\ \x2c\x10\x4b\xe1\x96\x6e\x4b\x22\x96\x85\x0d\xc8\xa1\x68\xf9\xd9\ \x20\xd1\xad\x40\x08\x04\xc6\x18\x05\x3c\xb5\x8b\x81\x0f\xc4\x13\ \x37\x2a\xb1\x8f\x4a\x68\x5a\xbb\x23\xe5\x13\x10\xee\x70\x97\x4b\ \xd0\x98\xaf\x44\x36\x32\x89\x3c\x73\xde\xb0\xe9\xe2\x83\xeb\xe5\ \x03\x1f\xd0\x56\xb6\x13\x56\xd9\x53\xa0\x52\x54\x13\x46\xc4\xc8\ \x3d\x02\x58\x06\xff\x0d\x4e\x71\x88\xf0\x2a\xd5\xa6\x59\x56\x6c\ \xbe\x21\x99\x9f\x53\x83\x93\xd8\x8a\x04\x75\x86\x70\x13\xf1\xec\ \x83\x40\x6c\xeb\x58\x16\x7e\xe5\x28\x34\x3c\x86\xb2\x06\x37\xb8\ \xea\xd1\xca\x71\x6d\x40\x1e\x1b\xec\x62\x17\x27\xee\x85\x73\x89\ \x50\x16\x4a\xfe\x3b\x7a\x77\x58\x73\x4b\x8d\xf7\xc1\x8d\x7d\xf4\ \xa2\xd3\x9a\xde\xc0\x06\x2a\xb1\x51\x23\x8c\x7a\x1f\xfb\x28\xf5\ \xa9\x8b\xec\x85\x3b\x18\x2a\xc9\xac\x26\xde\x64\x20\x43\x85\x17\ \x24\x03\xb2\xcb\xa0\x86\x4e\x0b\x12\x1b\x0f\x50\x63\x8f\xba\xf0\ \x02\x06\xac\x00\xb1\xb5\xf8\x4b\x08\x32\xb8\x05\x34\x01\x9c\x0b\ \x12\x48\x23\x3a\x24\x10\xc1\x2d\x46\x51\xcf\x20\xc1\x64\x56\x54\ \x35\xc9\x91\x6c\x45\x5b\x68\xc7\xac\x89\x4c\x44\xa5\x95\x74\xdb\ \xe7\x65\x19\x60\xd0\xdb\x06\x2e\x0a\x62\xf9\x6d\x70\x97\xce\x00\ \x8c\x7e\x62\x2f\x5c\xac\x6e\x35\x3d\x8d\x5d\x32\x8e\xda\x1f\xe6\ \xfd\x6f\x91\xee\x83\x17\x1b\xd0\x31\x47\xdb\xe0\xe3\x4b\xec\xe3\ \x0f\x3e\x26\xf5\xd7\xef\x40\x5e\x83\x23\x5c\x43\xae\x6e\x0c\x35\ \xb2\x19\x06\x6e\xc6\x60\x19\x7c\x78\x0d\x66\x0f\x42\x0c\x50\xb5\ \xa3\x09\xd4\xd8\x06\x1f\x86\x00\xb1\x09\x35\xa1\x00\xf2\x5c\x42\ \x01\xea\x05\x92\x3a\x98\xcc\x49\x30\x59\x02\xf7\x42\x22\x92\xbb\ \xc1\x44\xb6\x4c\xaa\xd5\xad\x92\x58\x73\x9d\xfc\xc4\xdc\xd3\x66\ \xa2\xb1\x54\xd9\xca\xa5\x00\x9a\xdb\xc0\x25\x34\x59\x85\x3b\xdc\ \x3c\x1c\xfe\x9d\xdc\x49\x27\x0b\x42\xda\x1d\x6f\x61\x6e\x14\xbb\ \x22\x85\xfd\x48\xf9\xdd\x6f\xbb\x04\xdc\x2e\xff\xae\x07\x3f\xc6\ \x3e\x5e\xc6\x74\xc8\x32\xe7\x2d\x5e\xa4\xa8\x21\x53\x6d\x86\x81\ \x0f\x56\xe0\x87\x65\x6d\x1d\x02\x62\x78\x21\xc9\x67\xa0\x07\x1f\ \xb0\x30\x8c\x3b\x20\x06\x04\x4c\xc8\x45\x13\x40\xf0\x77\xff\xca\ \x60\x09\xc7\x18\x52\x91\x9c\x7a\xc3\x5b\xb4\x9c\x49\x76\x48\xd5\ \x72\x50\x96\xcf\x1e\xd1\x9c\xf2\x3d\xb9\x2d\xce\x8f\x50\x50\x62\ \x65\x7e\x95\x55\xc4\x9f\xb6\xfb\x30\x86\xcf\xff\xdc\xdb\xa3\x37\ \x3a\x45\x53\x34\x6e\x78\x22\xb2\x68\x3a\xdb\xa9\x07\x18\x08\xa6\ \xd9\xe3\x2b\xa9\xbb\x37\x1a\xb3\xae\x38\x1a\x35\x22\x13\x32\xa9\ \xfb\x03\xdd\xb3\x29\x12\x21\x8d\xc5\xe0\x02\x5d\x50\x32\x7b\xd1\ \xa0\xb1\xc1\x8c\x18\xa0\x82\x58\xdb\x26\x2a\x20\x91\x64\x08\x01\ \xf8\x3a\x08\x0f\xe0\x83\x26\xb0\x14\x10\xe0\x82\x65\xd8\x86\x0e\ \x78\x03\xbe\xd3\x85\x1c\x58\x82\x33\xf0\x97\x5f\x03\x8e\x47\xea\ \x0d\x1a\xfa\x11\x03\x43\x87\x5c\xd9\x06\x12\x10\x06\x27\x69\x09\ \xc8\x13\x81\x02\x38\x83\xef\xf1\x81\xf7\xcb\x89\x08\x0b\x28\x54\ \x92\xfe\x30\x2a\x59\xa5\x9b\x21\x07\x9d\xc9\xb0\xfd\xeb\x03\x1a\ \x08\x34\xd1\x03\x40\xe3\x32\x31\x6e\xf0\x01\x02\x24\x07\xa7\xe1\ \x06\x18\x30\x10\x73\xa9\x1d\xd8\xe1\xb7\xbb\xd0\xb4\x79\x83\x43\ \xbd\xf0\xb1\x1e\xeb\x3a\x21\x1b\xb2\x7f\xd3\xbd\x3b\xc8\xc0\xd1\ \x70\x2c\xc9\x48\x32\xf3\xba\x97\x4a\x59\x83\xc9\x90\x32\xe2\x13\ \xa4\x16\x68\x01\x0f\x08\x83\xf1\xd2\xa9\xcb\x82\x07\x0f\x48\x06\ \x2f\x00\xb3\x26\x58\x06\x35\xe8\x00\x35\x20\x21\x13\x99\x11\x2f\ \x18\x82\x02\xf8\x35\xc3\x10\x82\xed\xb3\x80\x59\xe9\x0d\xf1\x61\ \xad\x77\x78\x1c\x23\x1a\x92\x25\xf8\x0d\x00\xa3\x03\xf7\xa3\x3c\ \x9f\xb8\xad\x2a\xb4\x42\xf9\xe1\xb3\xfb\x03\x8a\xa6\x18\x34\x0b\ \xf0\xc2\xcf\x0b\x34\x20\xe8\x03\x20\x18\x2e\xe3\x72\x80\xa3\x23\ \x87\xb8\x58\xc3\xb8\xb0\x8b\x63\xaa\x1d\x72\x89\xa3\x8e\xe2\x2b\ \xaf\x7b\x3a\xda\x13\x32\x7f\x23\xb2\x20\xe3\x87\x7f\x03\x38\x82\ \x2b\x21\x2f\x90\xa9\x65\xe8\x40\x57\xfb\x84\xaf\x59\x03\x1d\x40\ \xb2\xc9\x18\x3e\x12\x7c\x01\x46\x6c\x44\x0f\xf0\x80\x49\x39\xa1\ \x15\x94\x47\x7e\x98\x9b\x43\x6c\x82\x37\x50\x03\x35\x18\x86\x37\ \xfe\x18\x82\x9f\x32\xa7\x5c\xd8\xaf\x5f\xf3\x41\x32\xb3\x27\x91\ \x40\xc2\xf4\x61\x89\xc3\x91\x95\x22\xd1\x91\xd2\x52\x8b\x28\x94\ \x42\x9c\x08\x84\x5b\xc4\x45\x69\xab\xb6\x82\x8a\xa2\x83\xe2\x1c\ \xb2\x0a\x34\x6f\x0b\x49\xd2\x33\x3a\x02\xe4\x06\x03\x70\x80\x74\ \x61\xc3\xbe\x82\x0b\xaf\xeb\x28\x3b\xcc\x13\xf0\x1a\x26\x08\xd4\ \x46\x1f\xbb\x83\xae\xdb\x07\x2b\xb8\x04\x3f\xbc\x03\x23\x73\xb2\ \x11\xe2\x82\xd0\xe8\x40\x96\x4a\x32\x29\xa3\x87\x26\x00\x05\x6a\ \x50\x83\x58\x4b\x06\x41\x92\x47\x79\xe4\x03\x26\xa0\x06\x0f\x08\ \x01\x0f\xd8\xb8\xe0\x81\xbe\x65\x58\x06\x27\x18\xa1\xb2\xa1\x07\ \x13\xa9\x94\x76\x70\xa1\xbf\x8b\x2a\xda\xf8\x1e\xc2\x29\x8e\xe9\ \xf0\x98\x1e\xc9\xa7\x5b\x41\x3f\x59\xc9\x08\xb0\xa1\xc5\x9a\x03\ \xa8\x5d\x38\x02\x2b\xbc\xcb\xad\xc2\x42\xb0\x2a\xa8\xf2\x80\x81\ \x9d\xc1\x8a\xf4\x48\x0f\x0d\x93\x97\x62\x24\xc9\x00\x74\x00\x23\ \x70\x00\x18\x58\x43\x39\xa4\xb7\x00\x49\x90\xba\x20\x10\xbc\xd0\ \x0b\x20\x1b\xb2\x9d\x04\xb2\x6e\x1c\x38\x7e\xb8\x04\x2b\xc8\x49\ \x23\xe3\x07\x7e\xa0\x06\x2b\x80\x2c\xb4\x29\x0d\x50\xd0\x0c\xfe\ \x3e\x4a\xaf\xc5\x08\xa1\x82\x89\xb8\x6d\x62\xc4\xa7\x84\x4a\x7e\ \x78\x32\xe7\xc3\x94\x0f\x52\x03\x2a\x50\x03\x6a\xc0\x80\x48\x19\ \x82\xa3\xfc\xb8\x4a\xf9\x38\x10\xc8\x05\x10\x88\xaa\xe2\x04\xbc\ \xc3\x69\x09\x94\x91\x15\x3b\x68\xcb\xc7\x01\x12\x58\xfc\x9a\xc9\ \xab\xc8\x9a\xb8\xc8\x31\x40\xa5\xbb\xcc\xce\x5c\xdc\x05\x6b\xdb\ \x2a\x83\x6a\x8a\x30\x09\x3d\xe0\x02\x43\x30\x24\x3a\x14\xb8\x16\ \x23\x30\x80\x01\x31\x02\x05\x94\x05\x05\xb4\x31\x3a\xac\x07\xa8\ \x21\x10\x6b\xec\x37\x20\xfb\x83\x6d\x6c\x03\x3f\xd4\xc9\xd0\xec\ \xcc\x9c\xdc\x07\x2f\xc8\xbd\xd1\xe4\x83\x9c\x1c\x18\xd2\x88\x14\ \x4a\xe9\x17\xa4\x8c\xa9\x86\x73\x3b\x2a\x48\x06\x78\x8c\x4d\x79\ \x0c\x81\x30\x20\x21\x18\xcc\x35\x2f\x70\x2c\xad\xd4\xca\x48\x01\ \x85\x21\x08\xc8\x3c\xd2\xa3\xb4\x40\xaa\x5c\x28\xc5\x1e\xa1\x27\ \xf1\xe9\xa4\xc3\xb1\x95\xb6\xa4\x88\x58\xb4\x97\x31\x98\x4b\x68\ \x3b\xa5\x31\x18\x85\xed\xc4\xb3\xbc\xd4\x45\xdd\xba\xb6\x57\x0a\ \x93\xa7\x48\x0f\x90\x94\x20\x63\x24\x3d\xb7\x48\xcc\xc4\x74\x4f\ \x01\x81\x8b\x4e\xcb\x8b\xaf\x13\x26\xa9\xb3\xc6\x20\x23\xfe\xb2\ \x6d\x64\x82\x36\xe0\xcc\xd0\xe4\x07\xcf\xa4\x82\x7d\xc0\x52\x2b\ \xe0\x83\x30\xb0\x02\x2b\x28\x18\xb3\x29\x0d\x4a\xb9\x14\x19\x48\ \x44\xb5\x8b\xd0\x30\x10\xa1\x40\x9a\x50\x79\x6c\x81\x4a\xc4\xd0\ \x76\x90\x41\x0d\x5d\x86\xb2\xe9\x07\xaf\xd4\xd0\x21\xa0\x86\xbd\ \x9b\x11\x27\x74\x21\x20\x91\xa7\xe8\x5c\x02\x95\x69\xc8\x97\x73\ \x48\x11\x00\x99\x2c\x28\x00\x74\x3c\x81\xea\xb4\x39\xee\xb9\xd1\ \x1c\xbd\xcb\x49\x0d\x28\x28\xba\x54\x1e\x2d\x8f\xf2\x28\x2e\x30\ \xe9\x19\xe1\x22\x4f\x79\x59\x90\xe1\x72\x80\x23\xfd\x8a\xba\x80\ \x01\x3b\x31\x90\x00\x91\x4c\x38\x5c\x10\x7f\xfb\xb7\xfc\x9c\x52\ \xdd\xbb\x3e\xd1\x0c\x4d\x02\xcd\xc9\xd1\xa4\x82\x30\xe0\xd5\xe3\ \x1b\x53\xaf\xec\xbd\x80\xb9\x26\x2a\x20\xd6\x77\x64\x44\x13\x94\ \x50\x3e\xe0\x07\x88\xf9\x97\x33\x60\x82\x6b\xd2\xca\x0d\xd5\x4a\ \xd3\xec\xd3\x21\x00\x45\x3d\x6a\x82\xc6\x29\xc2\x19\x5a\xc2\x7c\ \x6a\x4e\x92\x71\x4e\xc7\x71\x4b\x59\x79\x2d\xb0\x19\x03\x48\x8d\ \x99\x51\x80\xa7\xec\xec\xb0\x76\xb5\xc2\x80\x82\x57\x2c\xe9\x45\ \x57\xe2\x92\x2f\x29\x55\x07\x78\x0a\x62\x14\x8c\x2f\xfe\x24\x1d\ \x07\x38\x81\x54\x35\x02\x6c\xa9\x07\x03\x89\x37\x39\x84\x1d\x3b\ \xd1\x93\x77\xa9\x07\x6f\x9c\x52\x54\xb3\xa9\x3b\x08\x53\x31\x25\ \xcd\x9f\x5c\x3b\x5e\x7d\x81\x30\xe5\x87\xb2\x29\x98\xd2\x20\x91\ \xa0\x4c\x4a\x86\x7b\x81\x2f\x85\x47\xe3\xe3\x83\xb6\xf3\x82\x55\ \xbb\x17\x67\xc5\x8c\x10\xc2\x26\x6c\xca\x44\xb7\x23\xa1\x54\x03\ \xd1\x2c\x38\x83\x5b\x68\x82\xe0\x00\xbf\x92\xc3\x02\xe6\x64\x4e\ \x16\xbd\x95\xb6\x5c\x4e\x8c\x88\x90\x77\x4a\x0b\x8a\x44\xd7\x9e\ \xe8\x1e\x4c\xba\xd1\x76\x1d\x05\xfe\x1b\x05\x78\xc5\x54\x69\xeb\ \xcb\xfb\x61\x8a\x2d\x4a\xc6\x52\x1d\x4c\x79\xd9\x57\xd2\x01\x0b\ \x6c\x01\x8b\x54\xfd\x3a\x37\xa4\x4c\xca\xf4\x0b\x1a\xd8\xba\x7f\ \x9b\x52\x6a\x30\xb2\xf1\xe2\x07\x3e\x28\x4d\x6c\x7a\xb8\x2f\xe5\ \x55\x87\xbb\x84\x11\x79\x03\xd1\x2c\x1b\xc7\x1a\x98\x85\x0b\xa4\ \x30\x08\x59\x09\x7d\x01\x6a\xd0\x8c\xd2\xfa\x38\xb2\x61\x59\x12\ \xec\x47\x35\xe0\x50\x55\x28\x98\x54\x53\x8c\x2c\x60\xd6\x52\x70\ \xa1\x96\x4b\x1f\x23\x72\xce\xb6\x64\x51\x21\xb2\xa1\x41\x19\x03\ \x0b\x70\xa7\x19\xad\xb3\x40\x48\xda\x8f\xe8\xb0\xfe\x23\x70\x5a\ \xa5\x85\x57\xa9\x25\x28\xaf\x6a\x0a\xaa\xbd\x1f\x18\xf0\x39\xf4\ \xe4\xd7\xdc\x09\x35\x06\xc1\x96\xba\xc0\xdd\x36\x9a\xcf\x3c\xa9\ \x2e\xdf\xd9\x3a\x2c\x1d\x11\xd1\x24\x91\x9c\xea\x4a\x6c\xa2\x06\ \xb5\x33\x56\x87\xb3\x02\x12\xc2\x8c\xb3\x89\x81\xdc\x74\x59\xb5\ \x63\x38\x41\xe2\xa6\xa6\x4c\x86\x9a\x32\xc4\x35\x38\x03\x6b\x3a\ \x5c\x62\xf5\x5e\xdd\x54\x03\x55\x98\x56\x2b\x18\x06\x2b\x18\x02\ \x18\x9c\x90\xc2\x30\xa7\x54\x69\xb6\xe6\x54\x4b\x11\x10\x57\x3b\ \x10\x06\x2c\xc8\x1b\x22\xc1\x08\xb5\x10\x82\x25\x80\x26\xa3\x85\ \x54\xf8\x89\x90\x8f\x28\x85\xd2\xb5\x51\xfe\xd3\x4e\x54\xc2\x48\ \x8e\xf4\xad\xfb\x49\x46\xa6\x38\x49\x94\xc4\x0a\x62\x5c\x90\x62\ \xe4\x13\xda\x85\x3a\xeb\xca\xdd\xf9\x14\xb2\xb2\xbd\xbe\x7a\x28\ \x21\xd1\xa4\x86\xe1\x8d\x81\x0f\x3e\x9b\xe3\x7d\x3b\x46\x74\xb8\ \x5f\x1d\xe1\x12\x6c\xb8\x58\x6b\x59\x6d\x4a\x06\x6e\x5a\x5e\x12\ \x19\xd1\x94\x85\x0c\x12\x14\xa1\x1b\xb6\xe1\x17\xd0\xe1\x7e\x74\ \xbb\x0e\x80\xac\x80\x34\x20\x95\x0a\xb9\x22\x5c\x98\xd6\x12\x19\ \x96\xb8\x5c\x5b\x49\x42\xe6\xd0\x9b\x2c\x28\xfe\x2a\xb5\x18\x03\ \x21\x90\xd1\xa3\xed\x89\x51\x18\x33\x4c\xba\x4b\xa7\xb5\xd1\x23\ \xb8\xd1\x23\xb8\x3c\x3c\x33\x00\x2b\xe2\x54\xf3\x18\x31\x66\xf1\ \x57\xd8\x5d\x4f\x18\xb8\x57\xf4\x44\xcf\xda\x1d\x52\xd2\xe1\x0b\ \xb0\x98\xbd\xb0\x00\x32\x26\x00\x01\x3a\xa0\x91\x12\xca\x5b\xcd\ \x00\xa1\xd2\x38\x9b\xb2\x51\x83\xa6\x7c\x01\x2a\x18\xd3\xe6\x75\ \x47\x46\x64\xbb\x41\x76\xb2\x12\x7c\xb2\xa3\x4c\xb2\xc2\xe5\x40\ \x7e\xe4\x03\xb8\x8d\x35\x11\xca\xcd\x86\x7b\x81\x0f\x78\x01\x1e\ \xee\x80\x0e\x10\x5c\x66\xc5\x23\x0b\xe0\xaf\x2c\x38\x0e\xf4\xd1\ \xa7\x56\xb4\x95\x54\x66\xb0\xbd\x29\x57\x7b\x39\x02\x2a\xf6\x5f\ \x7b\x01\xe0\xa5\xe5\x3f\xa5\xe5\xe2\xa7\x0d\xa8\x3c\x98\xd4\x82\ \xba\x9f\x68\xa9\x8a\x52\xad\x0a\x34\xbe\x57\x9f\x79\x0f\x6a\x09\ \x35\xad\xa5\x60\xfb\xd8\xa8\x3f\x61\x82\x3b\x68\x83\xb9\xa1\x91\ \xb2\x41\xd0\xce\x20\x0d\xc6\xf0\xd0\x88\x73\xb8\x11\x42\xd0\x85\ \x6b\x4a\x09\x35\xbe\x10\x96\x94\xa0\xd4\x05\x1e\xfc\xb8\xc9\xb0\ \xe1\xdd\x94\xa9\x99\xfa\xd2\x58\x73\x5b\x1d\x1e\x64\x1e\x1e\x86\ \x27\xdb\xbb\x9b\x52\x11\x54\x41\xa7\xe7\xfe\x38\x3f\xc7\x79\x9c\ \x54\xe6\xe7\x87\x24\x2a\x74\xa4\x03\x2a\xee\x09\x14\x30\x2a\xec\ \x6c\x5a\x78\xa2\x65\xbc\xcc\x4b\x5e\x36\x80\x23\x70\x0f\x2e\xea\ \x12\x0b\x98\x0a\xd0\x91\x68\xc5\xfc\x8b\xc4\x2c\x1d\xf9\xb0\x8f\ \xdc\xe9\x2e\x51\xcd\x9a\x36\xa8\xd2\xf1\x62\x21\x34\xad\x66\x2e\ \xd0\x01\x1e\xfc\x10\x0f\x29\x0d\x7a\xc8\x26\x42\x8e\x14\x6b\x7e\ \xbb\x45\x04\xdc\x18\xf8\xca\x3d\xb2\x94\xed\x45\x3b\x2f\x80\xd0\ \x16\xd8\xe4\x76\x14\xa1\xe2\x73\xe7\x77\x56\x85\xf0\xcd\xc4\xdd\ \xec\x53\x23\x1b\x82\x63\xa8\x83\x3a\x38\x86\x1f\xb1\x11\xe5\x70\ \xce\x1c\xb0\x83\xdc\xe0\x67\xaa\xee\x59\x75\x15\x1e\xfe\xad\x4e\ \x9f\xd8\xa0\x00\xe6\x1e\xee\xb1\x65\x4b\xf5\x81\x3c\x98\xbf\x81\ \xb2\xa2\x89\x1e\x3d\x20\x7d\x0a\x7c\x1d\x2e\xd0\xf1\x19\x7f\x9d\ \x8b\xb0\xb0\x8f\x05\x19\x0c\xc2\x70\x93\xba\x7a\x97\xb1\x03\xe9\ \x3b\x08\xca\x3d\xe2\xc0\xce\xf0\x40\x21\x18\x67\x0f\xc2\x4d\xa0\ \xb4\x10\x96\x76\x53\x09\x1d\x24\xc1\x95\x48\xb1\x04\x44\xad\x8c\ \x81\x86\x7b\x61\x11\x7a\x59\x75\xd6\xa6\x77\x56\xdc\xa2\x8e\x81\ \x7f\x0c\xca\xa0\x44\xa7\x3a\x90\x06\xfe\x69\x80\x24\x1c\xd1\x00\ \xaa\x9e\xea\xd3\xe6\xe7\x95\x60\x4e\x58\x14\x1e\x21\x00\xdd\x07\ \x0b\x84\x7a\x31\x2a\x4c\xaa\x65\x84\xbe\x65\x85\x0e\x28\xd3\xeb\ \x1f\xac\x78\x0a\x91\x3c\xcf\x36\xc8\x03\xe0\x46\x01\xe0\xc6\x96\ \xd2\xf9\x8a\x73\xb9\x9d\x36\x81\x10\x08\xf1\x2e\x90\x1e\x2f\xa1\ \x6c\x24\xcb\x60\x29\x0d\x4a\x32\x1d\x28\x1b\xcd\x40\xbb\x37\xd8\ \x55\xc5\xe6\x69\x6a\x60\x02\xd5\x3c\x83\xc6\x08\xa1\x49\x86\xdb\ \x17\x7e\xe1\x77\x6e\x59\xef\xad\x64\x35\xc0\xa6\x7e\xbc\x53\x80\ \xe4\x02\xda\x78\x26\x26\x38\x06\x69\x20\x81\x89\xd0\x00\x69\x78\ \x07\x65\x78\x07\x54\xc8\x0d\x54\x98\x0e\xe7\x80\x1c\x22\xc1\xea\ \xac\x86\x65\x1f\xa0\x26\xda\xc6\x24\xa5\xed\xb0\x00\xbe\xcb\xab\ \x70\x68\x30\xbe\x0a\xfd\x0b\x49\x30\x24\x52\xe1\xba\x16\xe2\xae\ \x8f\xe3\xa6\xcf\x6c\x11\x8c\xe5\x0e\x33\x10\x70\x6e\xa1\xd4\x85\ \x7e\xf1\x23\x10\xf9\x8c\xf4\xca\x29\x99\x3e\xd6\xcc\xe0\x41\x42\ \x49\x2f\x96\xce\x4d\xef\xc5\xa6\x86\x83\xc7\x6c\x7e\x2c\x1b\x66\ \xe7\xef\x1d\x21\xcc\xe0\x83\x7c\x98\x14\x26\xc8\x02\xa5\x5e\xea\ \x2c\x10\x01\x65\x90\x0e\xe9\xc8\xfe\x0d\x61\x30\x6d\x96\x30\x0a\ \x74\x38\x98\x41\xe9\x83\xd7\xae\xad\x40\xe8\x83\x04\xa7\x6d\xb0\ \xf6\x6a\xfe\xcb\x03\x3c\xbb\x51\x5d\xee\x9f\x23\xe8\x6d\xe0\xd2\ \x57\xf2\x2c\x46\x09\x36\xc6\xfa\x68\x63\xd2\x09\x58\xb9\x66\xa0\ \xb9\x56\x6e\x5f\x0b\x6f\x71\x3e\xb8\x3e\x02\x98\xe0\x41\xd3\x65\ \x70\x53\xeb\x25\xa4\x93\x6e\xa1\xec\x1e\x56\x4b\x66\x67\x1d\x36\ \xef\xf3\x66\xef\x96\x25\x41\x76\xde\xf1\x1e\x8f\x81\x15\x94\x86\ \x63\x20\xf2\x8b\x31\xf2\x21\x90\x86\x94\xd8\x86\x1a\x90\xb3\xff\ \xf6\x18\x91\x30\x15\x46\x0d\x1b\x03\x7a\xe5\xa3\x8d\xe5\x04\xe7\ \x3f\x2d\xb7\xd1\x75\x1d\xeb\x0e\xd3\x65\x5d\x1e\xf3\x76\xf9\xc2\ \xf2\xb4\x70\x09\x5e\xf3\xda\xa5\x75\x06\x81\x17\x40\x11\x2c\x00\ \x4b\x8c\x93\xfe\xc0\x3e\x3a\x03\x50\x88\x6c\x3e\x38\xf4\x68\xc5\ \x6e\xc6\x70\x5e\xb7\x83\xec\xe7\x65\xb8\x64\xd8\xe1\xa0\xc6\x6c\ \xe3\xb5\x61\x15\x0e\x59\xf6\x2e\x1b\x2a\x30\x08\xf9\x52\x8d\x8b\ \x41\x95\x21\x40\x89\x85\x49\x09\x39\x4b\x65\xe5\xec\x21\x74\xe0\ \x1e\x74\x4c\x8b\x80\x86\x65\x2b\x6e\xa9\x2c\xb7\xa4\x05\x97\xe2\ \x4a\xed\x30\xa1\xcb\x8a\xa1\xfe\x7b\xf5\x31\xa0\x83\x31\x40\x66\ \x8f\x9e\xe0\x7c\xc7\x1d\x8f\xf6\x93\xdd\xa3\x0d\x0d\x59\x14\x84\ \xfb\xf5\x69\xcd\xdb\x3b\x2d\x0d\x6b\xa6\x06\x1d\x76\x5b\xd7\x1c\ \x3e\xf6\x96\xf6\xc4\x55\x83\x4d\x06\x59\x62\x85\xb8\xf4\x66\x38\ \x61\x57\xdc\xe1\x7b\x01\x86\x51\x24\x10\x1d\x82\x8a\x18\x02\x61\ \x28\x65\x2c\x58\x12\x65\xf0\x6f\x50\xc2\x88\xff\x1a\x1e\xad\xae\ \x48\xae\x56\x2c\x78\x02\x6b\xef\xa9\xe5\x35\x50\x75\x6d\xc3\x79\ \x79\x7f\xf5\xba\x76\x13\x7b\xef\xe8\xad\x55\xa6\xee\xfa\x96\xbb\ \xbe\x6b\xba\xba\x1a\x66\xe6\xeb\x11\x51\x50\xb3\xdb\x0c\x13\x11\ \xef\xdd\x74\x0c\xd2\x18\x6f\x16\x16\xd3\xb3\x81\xec\x7e\x64\x38\ \xdd\x44\xf6\xc4\xd5\x61\xad\x1f\x47\x27\xcb\xcd\x61\x3f\x9b\xe6\ \x39\x08\x2c\x10\xdc\x1c\x00\x51\x3b\xa8\x74\x94\x60\xb6\x4b\x57\ \x4b\x54\x78\x07\x1d\x71\x27\x6a\x72\x6d\x58\x66\xf9\x75\x07\xe0\ \x4b\x8a\x62\x8d\x68\x57\xd0\xab\x70\x7b\x77\x13\xa3\x2f\x7a\x93\ \x12\x0c\xa2\x0f\xfc\x37\x31\x20\xfc\x5d\x6e\xba\x9a\x91\xf6\xca\ \x0c\x42\xa4\x7b\xcb\x00\x21\x62\xa5\xe9\x95\x7e\xac\x30\x3d\xde\ \xbc\xb5\x7a\x0e\x7d\x5e\xfe\xf7\xa6\x86\x7e\x80\x6c\x77\xe6\xe1\ \x10\xe6\xfc\x74\x7e\x6f\xcb\x3a\x88\x10\xc0\x00\x10\x55\x86\x6d\ \x40\xf2\x25\x31\x09\x2c\xc0\x74\x0d\x60\x19\x20\x89\x4b\x7b\x41\ \x47\x97\x97\xc2\x53\x32\xf7\x3e\xa2\x6d\xef\xf9\xfd\x00\xd6\xb6\ \xcf\x13\x46\x7c\x0f\xfc\xc5\x47\x7e\xc3\xa7\xab\xc5\x3f\xaf\xc5\ \x4f\x8c\xce\xa8\xf3\xf3\xfa\x84\xc6\x78\xde\x1e\xb7\x66\xe7\xdd\ \x58\xcc\x88\x14\xc7\x68\x5e\x88\x33\x7d\x0e\x5d\x2f\x77\xf6\x5e\ \xa3\xf6\xfe\x87\x7f\xef\xea\x49\xfd\x1a\xec\x80\x93\x8f\xb9\x92\ \xaf\x01\x0d\x50\x86\x36\xbb\xfd\xb5\x98\x7b\xb0\x99\x72\x51\xb7\ \x72\x84\xd3\x7b\xee\x01\xfe\x8f\xa0\xf9\xfd\x03\x88\x31\x02\xe9\ \x8c\xa1\x43\x83\x0e\x9d\x52\x74\x84\x08\x59\xd3\xf0\x21\x43\x84\ \x0c\x27\x36\x74\xb8\xe6\x22\xc6\x8c\x1a\x37\x72\xec\x88\x51\x86\ \x8c\x26\x5c\xb8\xe8\x68\xa2\x4b\x24\x3d\x6a\x6f\x56\x7a\xa1\xe7\ \xf2\x8d\x17\x2e\xf4\x56\x2e\x7b\xd3\x6f\x19\xce\x18\x38\x97\xc5\ \x88\xa1\x86\x4a\xb2\x17\x42\x5f\x50\xd1\xc9\x33\xa7\x9a\x9a\xcb\ \x42\x10\x69\x4a\x24\x04\x96\x6d\x35\xb6\x6d\x53\x26\xad\x0e\x55\ \x2c\x51\x35\xa0\x5a\xfe\x72\x66\x63\x29\x21\xa5\x36\x1e\xf9\x67\ \xf6\x2c\xda\xb4\x6a\xd7\xb2\x3d\x1b\xc8\x47\x45\x8f\x1c\x4b\x95\ \x1a\x33\x76\x0d\xdd\x8b\x62\x05\x8e\xa1\x31\x46\x08\xc1\x82\x0b\ \x29\x62\x84\x48\xf8\xa1\x5c\xb9\x42\xda\x25\x96\x2b\xe3\x64\x49\ \x91\x5e\xde\xe0\x7c\x43\x6d\x19\xb5\xcc\x2b\x67\x52\x5e\x76\x73\ \xa7\x4e\x35\x3e\x7d\x52\xe1\xf3\xa2\x45\xb2\xd4\x42\xa9\xa8\x69\ \xed\xb3\x43\x0c\x6a\x2f\x9c\x36\x85\x8a\x61\xd8\x36\x69\xb9\xad\ \xd6\x16\x26\xe2\x56\x5c\x8b\x1e\xe9\xb4\x2d\x6e\xbc\x78\xa0\x3e\ \x8d\x3b\xd2\xbd\x8b\xf7\x6e\xa9\x3e\x03\xa7\xfb\x1d\x4c\xd1\x30\ \x42\xeb\xd7\x1b\x4f\xa4\x73\xa6\x09\x13\x26\x26\x97\x6b\x3c\x09\ \xea\x8d\xcb\x94\x47\x79\xf6\x5c\x66\x45\x73\xe7\x9d\xec\x7b\x26\ \x6d\x2d\xba\x74\xb2\x16\xfa\x51\x07\xe5\x53\x54\x34\x7d\x4c\xd1\ \x16\xc2\x36\xc3\xe0\x26\x8d\x6e\x51\x85\x10\x82\x06\x05\x04\x77\ \x91\x73\x1b\x09\xe1\xc3\x71\x15\x5a\x18\x48\x20\xe4\x65\x94\x17\ \x5d\x76\x61\xc4\xa1\x40\x34\xf4\x21\x9d\x5f\x07\x65\x77\x5d\x77\ \xd9\xa9\x28\x11\x8a\xda\x21\x44\x03\x08\x6d\x30\xe1\x05\x3f\x2a\ \x71\xa1\x0b\x63\xfe\x1a\xb6\xa3\x03\x3d\x31\x14\xd5\x13\x51\xf7\ \xb1\xd6\x93\x4e\x45\x8e\x26\x9a\x7d\x48\xb2\x46\x05\x93\xf8\xed\ \xa7\x9f\x6a\x44\xc5\xd0\xc1\x4f\xc4\x08\xe8\x54\x08\xc4\x50\x55\ \x60\x82\x58\x68\x90\x85\x83\x73\xcd\x25\xc4\x18\x81\x58\x78\x66\ \x5b\x81\xec\x12\x61\x63\x63\x41\x57\x17\x87\x75\x35\x34\x46\x1f\ \xa3\x8c\x48\xe2\x74\x2a\xa6\x78\x90\x89\x06\xf9\x69\xdd\x8a\xd9\ \xd1\xd0\x06\xa1\x32\xd2\xf8\xc6\x8d\x39\x6a\xb8\x86\x0c\x3a\x50\ \xe3\xe3\x0b\x41\x0d\x25\x94\x7f\x45\xfd\x58\x24\x4e\xf6\x2d\x59\ \x1a\x1f\x9d\x32\x69\x9a\x7e\x1e\xa4\x36\x6a\x32\x3f\xbe\x60\x25\ \x6d\x58\x62\xa1\xe5\x96\xf0\x68\xc0\xc4\x57\x8b\x2a\x44\x21\x9a\ \xb5\xa6\x15\xc8\x11\xe4\x35\xf7\x9c\x9b\x75\xd9\xe5\xa6\x87\x64\ \xd2\x29\xd0\x88\x25\xe6\xa9\x22\x0d\xc9\xf2\x69\x90\xb2\x81\xbe\ \x28\x28\x0d\x40\x80\x10\xe3\x1d\x31\xe9\xa2\x97\x70\x8d\x3d\xa6\ \x03\x17\x94\x7d\x2a\x54\x32\x61\xf4\xe7\x69\x7b\x45\x0a\xd9\xe4\ \x50\xa6\x31\x39\x54\xa8\x2d\x78\xe0\x41\x0b\xc4\x50\xb1\x0c\x15\ \x1e\xc0\x03\x4f\xaa\xb5\x41\x05\x15\x3c\x54\xd5\x71\x8b\x86\x10\ \xa1\x60\xa6\xfe\xad\x05\x63\x38\xc6\x72\xbd\xc6\xd9\xa1\x40\x74\ \x91\x59\x11\x99\x7d\xf8\x75\xe7\x9d\x22\x26\xfb\xa2\xc5\xca\x6a\ \xdc\xe7\x60\x7a\x3e\x6b\x22\x08\xe2\xe9\x02\xd2\x19\x5c\x34\x21\ \x03\x79\x9f\x74\xab\x12\xcb\x3c\x75\x2a\x94\xb8\x91\xfa\x47\xa4\ \x4f\x3f\x51\x41\xd4\xa4\x91\xbe\xf0\x72\xa4\xf0\xbe\xeb\x2e\xbc\ \x4c\xda\x9b\x2f\x11\xc4\xa0\xfa\x54\x08\xd2\x1c\xb3\x04\x13\x28\ \x33\x04\x9c\x47\x63\x58\x70\x4b\x58\xb4\x16\x6c\x2b\xae\x09\xe3\ \xc5\x6b\x73\x0c\x0b\x04\x61\x41\x78\xf5\x81\xc2\x28\x25\x52\x7c\ \x67\x5f\x7d\x49\xdc\xec\xc5\x7d\xa2\xd8\x62\x77\x31\x36\x31\xd3\ \x32\xf4\x5c\x4b\x9e\x2e\x5c\x5c\xd6\x9e\x65\x48\xf1\xec\x69\x93\ \x37\x0f\x25\xe9\xcd\xa3\xe6\x9c\xcc\xbb\x3e\xc3\x4b\x4c\xa7\x1e\ \x10\x4d\xcc\x4d\x02\x26\xed\xc5\x19\xba\x30\x91\xcb\xb4\xb9\x64\ \x31\x35\xc4\x7a\x09\x61\xc1\x12\x16\x00\x76\xf5\xd5\x81\x3c\xc8\ \x5c\xd7\xa9\x37\xc7\x97\x5d\x81\x21\x34\x46\x1e\x65\x03\x66\x71\ \xc5\x6b\x17\x7b\xf1\x9f\x0b\x69\x87\x58\xe7\x10\xd1\x70\x07\x35\ \x9c\x52\x73\x37\xa3\x8a\x72\xd4\x4e\xde\x9d\xb9\x26\x1f\x7b\x9f\ \x36\xe9\xfe\x1f\xb8\x83\x47\x4a\x6a\x50\xa3\x12\xe3\x2e\xd0\xee\ \x06\x45\x8c\xe3\xb5\xd5\xf6\x02\x17\x18\x30\x45\xa0\x17\x20\xc8\ \x40\x07\x13\x59\x64\xb1\x04\x0c\x59\xe4\x72\xc6\x43\x63\x80\x70\ \x4b\x42\x04\x31\x64\x35\xe9\x67\x26\xa7\xab\xc2\xaa\xfb\x3a\x4a\ \xeb\xf8\xc2\x90\x3e\xe4\xa1\x0f\x0c\x51\x9b\xc4\xd2\x26\xa2\xdb\ \x05\x6a\x3b\xdc\x01\x81\x17\xf8\x10\x86\x30\xbc\x60\x19\x3a\x38\ \xc3\xb6\x12\xa5\x11\xe4\xb5\x23\x24\x23\xa1\xdb\x32\x6c\x76\xa9\ \xcc\x50\xc3\x0a\x34\xb3\xd9\x50\x04\x97\x9a\xfd\x50\x8f\x18\xf9\ \x49\xdc\xbb\x92\xc1\xbd\xa1\x11\x01\x1e\x21\xb8\x17\x31\xbc\xa0\ \x0b\x7a\x48\xae\x03\xb0\x92\x41\xc8\x60\xc0\x84\x02\x4c\x8b\x0e\ \xb7\xa0\xc1\x2d\xd8\xb7\x84\x85\x60\x84\x0e\x04\xcb\xdf\x85\xd6\ \xa4\xab\xad\x75\xed\x57\x64\x8a\xce\x28\x00\x18\x16\x89\xac\x01\ \x76\x47\x40\xc1\xeb\x0e\x22\x18\x31\x36\x8b\x59\x2c\x62\xc8\x72\ \x00\xd3\x86\x7a\x54\x62\x82\x61\x58\x46\x4c\x9a\xc0\x23\xf4\x70\ \x01\x65\x19\xc9\xdb\x8d\x78\x94\x1e\xca\xf8\xa8\x53\x7e\xec\xc9\ \x65\xac\xb0\x1e\x9f\xbc\x40\x84\xf9\x79\xa1\x0c\xf3\x73\x3d\xa3\ \x01\xfe\x0d\x86\xef\xaa\xa1\x53\xde\x45\x0c\x2e\x38\xe4\x0d\xdd\ \x7b\xca\x10\xe0\x27\x84\x33\x14\xd1\x88\x99\x83\x41\x2e\x2c\x60\ \x01\x3a\x38\xa4\x21\xf8\x83\xe2\x71\xb2\x36\x45\xff\x39\x2c\x30\ \x59\xf4\x90\xc3\x00\x33\x0a\x59\x1c\xa1\x0f\x0b\x19\x23\xb2\x04\ \xb3\xa2\x89\x70\x87\x0e\x40\x68\x03\x3f\xac\x10\x06\x5e\x24\x23\ \x06\xe8\x01\x45\x4a\x7a\xf2\x06\x50\x7c\xa5\x83\x6b\x68\x87\x4c\ \x10\x15\x4d\x7a\x9c\x87\x27\xcf\xe3\xd4\xa5\x98\x57\xb3\x6f\xa5\ \xe6\x7a\xdd\xcc\x9e\x07\x8c\xe6\xc8\x05\xd1\x06\x1e\x1e\x78\x81\ \x17\x50\x76\x86\x0e\xe0\xcb\x29\xc3\xd0\x24\x1d\x40\x60\x81\x69\ \xcd\x0f\x74\xa0\x04\x01\x11\xc7\x70\x86\x31\x0c\x0c\x95\x51\x5c\ \xd4\x87\xba\x46\x45\x81\x64\x11\x80\x7f\xe9\xa2\x40\x00\x73\x04\ \x5a\xda\x92\x20\x1e\x03\x4c\x8a\xac\xd3\x18\x83\xb4\xc1\x08\x77\ \xd8\x47\x25\xf8\xb0\x0f\x2a\x08\x32\x33\xa5\x29\xa4\x31\x71\x74\ \x92\x91\x71\xa1\x32\x32\x51\x09\x4d\x88\x54\x9a\x4f\xcd\xac\x3d\ \x38\xb9\x49\x4f\x98\xa4\x86\xc1\xb9\xb0\xa6\x46\xab\x29\xe2\x64\ \xc8\xbd\x2b\x35\xc5\x9c\xf4\x38\xc3\x77\xb8\xc0\x87\x76\x36\x85\ \xfe\x18\xe6\x03\x41\x13\x2c\x70\xb9\x69\x59\xa0\x00\x4d\x9d\x27\ \x0d\xe6\x39\xad\x53\xfa\x33\x4d\x79\xe8\x08\x42\xe4\x22\x50\xbc\ \x08\x6b\x0c\x76\x92\x4e\x00\x69\xa0\x90\x51\xf8\xc0\x07\x05\xec\ \x8e\x42\x78\x69\x18\x5e\x2a\x46\x08\xd1\x32\x42\x3d\xf8\x71\x89\ \xb9\x5e\xc2\x84\x7d\x7c\x01\x05\xf9\xa0\x86\x37\xe8\xa2\x64\x23\ \x11\xc9\x4e\xd0\xd3\x0f\x9a\xe4\xc4\x47\xcf\x9b\xd9\x7f\xe4\x43\ \x1f\xd2\xd0\x54\x28\x35\x75\xac\xd1\x4c\x43\xc3\x01\x25\xa3\x09\ \x8c\x2a\x09\x13\x3a\x70\xa5\x10\x0c\x61\x5a\x4c\x60\x1f\x13\x9a\ \x3a\x3f\xef\x4c\xe4\x0c\x0a\x19\x43\x55\x2f\x74\xba\x8b\x44\x35\ \x2c\xa8\x83\x10\x46\x58\x57\xa7\x11\xfd\x05\x30\x61\xe9\xc3\x11\ \x7c\x20\x8b\x51\x40\x6c\x30\x12\x42\x63\x62\x66\x07\x04\x8b\xde\ \xe1\x0e\xf5\x38\xae\x17\xac\xd0\xa9\x09\xee\x87\x28\xd4\x90\xe3\ \x4c\xe8\xa1\x03\x1d\xf4\xcd\x98\x2e\xc9\x49\x4e\x10\x4b\x2e\xff\ \x00\x08\x49\xe5\xba\xeb\x50\x88\x71\xaa\xc8\x9a\xe6\x54\xe4\x4c\ \x95\x39\xdf\x80\x32\x90\x34\x84\x09\x3c\x25\x06\xac\x40\xc0\x05\ \xf5\x49\x15\x04\xdb\x31\x65\x6a\x53\xa9\x9c\x8e\x08\x01\x06\xfe\ \x06\x80\x1a\x79\x08\x32\x31\x03\x64\xc1\x16\x7d\xc8\x8b\x58\x84\ \x80\x5b\xb3\x1e\x54\x2c\x9e\x5b\xad\x47\x22\x12\x2d\x20\xfc\xb2\ \xa2\x46\xf0\x42\x5c\x25\x18\x86\x27\xb5\x20\x0c\x54\x40\x94\x7a\ \xde\xd0\x84\xb9\x91\x26\x06\x74\x1b\x8d\x35\x55\x1a\x38\xd6\x24\ \x69\x48\x48\x61\xa9\x69\xca\xfb\x82\x6d\x94\xe6\x68\xf9\x0a\xc1\ \x32\x9a\x80\x41\x0c\x5e\x84\x0b\x44\x7d\xca\x31\x36\x99\x3e\x2f\ \xe4\x22\xb4\x98\x9b\x5f\x5c\x9c\x98\x5f\xe4\xc0\x45\x2e\x4b\x68\ \x45\x1d\x6c\x11\x2b\x8f\x84\x45\x21\xb6\x20\x30\x39\x48\x10\x05\ \x12\x58\x00\x96\x0d\x29\x45\x1e\xca\x9a\x87\x82\xa8\x95\xad\xfc\ \x2d\x25\x43\x26\x4c\xe1\x35\xff\x32\xae\xfc\xe0\x03\x0c\x9f\xf4\ \x02\x6a\xa4\x44\x34\xf4\x18\x71\x8f\x64\x8a\xd2\xd1\xf8\x48\xc5\ \x81\x6b\x4d\x93\x6c\x46\xb3\x95\x72\x8a\x71\x1d\xe0\x83\xa1\x5f\ \x80\x05\x9e\xd2\xe6\x05\x4d\xfb\xe0\xc9\x9a\x90\x8f\x7c\x75\x80\ \x93\x59\x18\x42\x16\x98\x00\x82\x50\x32\x41\x9f\x4c\x2c\xd3\x92\ \x91\x93\x2b\xb9\x30\xc1\x29\x24\x38\x86\x01\x0c\x60\x8b\x84\x8e\ \xe1\x16\x5d\xb6\xc5\x31\x44\x99\x85\x28\xb4\x82\x1c\x75\xfe\x20\ \x01\x0c\x56\x8d\xb0\xb0\x88\x05\x05\x65\xf5\xc1\x17\xc3\xa6\x17\ \xdf\x72\x24\x22\x80\xc1\x98\xc6\x28\x5c\xd1\xe3\xf2\x83\x17\x8e\ \x6c\xae\x4a\x62\xc0\x87\x18\x98\x8c\xc4\x4d\x02\xcd\x4a\x7b\x62\ \x42\x4b\x95\x46\x49\x43\x72\x0d\x69\x3c\x85\xe8\x4e\xe5\xa3\xd0\ \x8a\x66\x34\x96\xe8\x01\x12\x1d\xc4\x84\x1e\x5e\xd0\xac\xbe\x6a\ \xc3\x0f\x26\x0c\xe1\x18\x30\x08\xa2\xa6\x11\x32\xda\x3c\x84\x3a\ \x4d\xbb\xd0\x56\x1d\x88\x46\x84\x56\x10\xbc\xa7\x24\xc8\x47\x16\ \x5a\xbd\x3e\xfb\x22\x24\x89\x16\x38\x70\xfc\xc2\xbc\x0b\x60\xdb\ \x12\x62\xc0\xfd\xed\xb1\x99\x55\x46\x83\x28\xfb\x0e\xfc\xe0\x47\ \xbd\x3c\x10\x82\xc4\xe9\xe7\x05\x3d\x31\x0d\x35\x4c\xd6\xad\x10\ \xca\xd4\x48\x97\x62\x12\x91\xf4\x7a\x9f\x20\x19\x96\xb1\x44\xe1\ \x94\x1f\x0f\x6d\x25\x74\xd3\x66\x19\x28\x6b\x47\xe5\x80\x2e\x54\ \xa7\xd8\xd0\x29\x7c\x18\x82\x17\xb2\xe0\x85\x25\x64\xa1\x0e\xc7\ \xc0\x5c\x91\x41\xd7\xef\x34\xd9\x62\x39\x32\x40\xc7\x36\x04\x5e\ \x9b\x3a\xc8\xd3\x8e\x17\x5f\x03\x1d\x98\x6e\xe0\x8a\xd0\x61\xc1\ \x36\xf0\x01\x0d\x82\x13\x97\xb5\x76\x67\x59\x2c\xd2\xfe\x5d\xb2\ \x8c\xc0\x8f\x7d\xe4\x43\x82\xe6\x8c\xb3\xc9\x6f\xc6\x07\x69\x22\ \x93\x5e\xd8\x4c\x4a\xcd\xa5\xcd\xd1\x98\x02\x68\x28\x42\x92\x36\ \xa2\x77\x56\x68\x3f\x9a\x93\xe7\x4e\x49\x86\x0e\x1a\x62\x47\xbd\ \x34\x81\x18\x44\xdb\x86\x17\x2c\x90\x74\x18\x74\xa0\x15\xdb\xa8\ \x43\xfb\x96\x00\x02\x72\x4c\x9d\x2d\x81\x68\x87\xf1\xe4\x72\x86\ \x21\x60\x01\x5f\x0b\x8a\x8a\x34\xc0\x34\xf9\x8e\xc8\xc0\x02\xa0\ \x94\x0e\xd9\x69\x90\x87\x2f\x92\x92\xbf\x11\xf1\x53\xdb\xf4\x74\ \x1d\x83\xdc\x21\x1f\x1b\x08\x43\x3e\xc2\x60\xc3\x91\xff\x2c\x0c\ \xd2\xa6\x20\x35\xbd\xd0\xf7\x9f\x50\x0a\xf0\xa5\x11\x3c\x47\xb7\ \xbd\xcd\x4f\xa9\xb4\x53\x37\xdd\x59\xdd\x89\x71\x77\xad\x37\xc5\ \x03\xd4\x40\xd9\x88\x67\x2f\x83\x61\x10\x2d\x06\xe2\x59\x42\xd2\ \xa5\x81\x2f\x78\x28\x0d\x04\x4a\x2e\xfd\xad\x0a\xb0\x82\x4f\x7c\ \x62\x51\x18\xbc\x85\x0c\xb8\x96\x47\xa0\x5e\x46\xb4\x83\x3c\xc1\ \x40\x97\x45\xd4\x6a\x51\x04\xb4\x68\xcc\x19\x59\x5c\xdc\x5d\x42\ \x25\x10\x03\x2f\x0c\x95\xbd\x2c\x48\xe2\x24\x83\x04\x9d\xd3\x66\ \x20\x13\x35\xa8\x81\x69\xf4\x87\x61\x75\x8a\x72\xfe\x59\xc1\x8f\ \xfc\x47\x8b\xc5\xc0\xb6\xe5\x03\x64\x85\x53\xa7\x98\xd3\xbd\x90\ \x1f\x31\xfc\x94\x0c\xc8\x84\xdd\xc4\xc5\x19\x64\x5d\xbe\x10\x83\ \x10\x61\x1a\x13\xd4\x01\x16\x34\x45\x1d\x2c\xc1\x84\xe0\xdf\xad\ \xec\x42\x33\xac\xc0\xfe\xa5\x1e\x40\x1d\x8f\x0c\xf0\x9f\xa2\x6c\ \x52\x01\x1c\x43\x16\xdc\x1b\x99\xf9\xde\xef\x35\x60\xb2\x40\x54\ \x46\x3c\x44\xb2\x0c\xd7\x25\xe4\x43\x3e\x88\x1f\x0c\x2e\x08\xf3\ \x85\x01\xf7\xa0\x46\x4d\xa4\x07\xcb\x4d\x8f\x1f\x79\x8a\x72\x71\ \x5b\x9f\x19\x89\x91\xc4\x18\xe3\xcc\xd0\xbd\x38\xde\x53\xd4\x86\ \x15\xa8\x53\x4a\x70\x41\xe5\xe8\x98\x0c\x0c\x81\xc0\x85\xc0\x30\ \xc0\x00\xd2\x65\x41\x3e\x48\x03\x16\x0c\x21\x60\xec\x82\x11\xa2\ \x45\x20\x2c\x81\x1c\x28\xe1\x0a\xe8\x00\x13\x36\x21\x46\xb4\xc3\ \x27\xe8\xc0\x0a\xa4\x5e\x07\x31\xc1\x31\xd4\x81\x01\xf8\x05\x84\ \x39\x84\x16\x3a\xa0\x99\x95\x12\xc7\x19\x81\x11\xc0\x40\x18\xf2\ \xc2\x0d\x2d\xc8\xf2\x91\xdc\xcf\x60\x46\x3f\x9c\x58\xe1\x4c\x0a\ \x93\x98\x60\x1c\x36\x89\x4b\x11\xc9\xa3\x20\x1a\xe3\x10\xa3\xbd\ \xc4\x60\x21\xb6\x53\x08\xf4\xe1\x1a\xe8\x82\xfe\x17\x9c\x0c\xa3\ \x44\x93\xe3\x85\xc0\x31\x78\xc1\x28\x76\x80\xd2\x78\x45\x43\xa0\ \x40\x24\xba\xc5\x2e\xc8\x01\x38\x5a\x62\x8e\x10\xe0\x45\x90\xe3\ \x72\xa0\x1e\x27\xae\xc0\x26\xf4\x5f\xb1\x15\x80\xd3\x15\x58\xda\ \xf9\xde\x8b\x30\xd0\x89\x3c\xc8\x44\x4c\x58\x1b\x14\x5f\x3e\x74\ \x8f\x19\xd6\x22\x0c\x25\x43\xdd\xd8\x44\x67\xec\xa2\x6a\x4c\x1b\ \xe2\x01\xce\xcb\x11\x89\x09\x11\xa3\xf7\xc1\xa0\xd6\xdd\x50\xaa\ \x84\xc0\x1b\x30\xc1\x48\x4c\x99\x10\x38\xa3\xe5\x11\x4d\xd2\xd4\ \xdb\x30\x64\x1a\x70\x09\x41\x37\xba\x45\x0e\x80\x23\x49\x8e\xe3\ \x27\x98\x24\x3b\x16\x20\x3a\x16\x20\xff\xf1\xdf\x12\x7a\x84\x0c\ \xfc\x60\x3e\x90\x00\x39\x88\x4e\xb1\x09\x4a\xc5\x1c\x04\x1a\xad\ \x1d\x2b\xe2\x63\x3d\x1c\xc3\x18\xb6\xd3\xbd\xd8\xd0\xbb\x80\x8a\ \xc9\x6d\x06\x61\x11\x24\xe1\x28\x97\x1f\x61\x93\x42\xce\x07\x9c\ \x49\xd2\x50\x0a\xdc\xf2\x69\x64\x96\x74\x40\x1d\x15\xe0\x10\x38\ \x9e\x34\x78\x01\xac\x7c\xdd\x09\x84\xa4\x59\x04\x42\x12\xae\x40\ \x38\x32\x46\x4b\x2a\x8a\x39\x96\x23\x27\x9e\x64\x39\xae\xc1\x27\ \x28\x21\x14\xaa\xa5\x5b\x66\xc4\x19\x64\xfe\x41\x3b\xb5\x82\x05\ \x14\xc6\xda\x61\x4c\xc5\x30\x51\x61\x78\x0e\xc7\x0d\xd7\x2b\x5e\ \xc2\x31\x58\x81\xc8\xf5\xd4\xc8\xe5\x10\x89\xd5\x04\x35\x0c\xd6\ \x67\xfc\x44\xf5\x44\x89\x7f\x2c\xd7\x1b\x92\xe0\x65\xd0\x8b\x31\ \xde\xd0\x25\x15\x22\x44\x3e\xa4\x07\x50\x4e\x5c\x70\x81\xe3\x55\ \x5a\x47\x3c\x51\x24\x06\x02\x0c\xac\x40\x33\x94\xe5\x27\xb6\x83\ \x12\x66\xe2\x26\xa6\x63\x5d\xa2\xe3\x12\x1a\x0f\x6c\xee\xdf\x46\ \xe8\x82\x32\x38\x85\x34\xec\xd7\xc5\x41\x84\xda\x88\x48\x56\x69\ \x44\xdb\xbd\x95\x05\xdc\xc1\x31\xdc\xc1\x25\xc8\x1f\x53\xd8\x90\ \xa3\x01\xdd\x1b\x4c\xdb\xde\x54\x46\x3f\xcc\xd4\xf4\x4c\xe6\xce\ \x5c\x66\x53\x16\x49\xa1\xbd\x0b\x32\xa2\x97\x50\x7e\x26\xf9\x3d\ \x05\x16\x00\xa2\x43\x78\x81\xd6\x0d\xc3\xec\x61\x04\x55\x95\x9e\ \x9a\x34\xc1\x27\xb4\x66\x33\x2c\x80\x1c\xb8\x64\x5d\x6e\x04\x3a\ \xe6\x66\x4a\x3e\x53\x5a\xce\x66\x5b\x76\x44\x0e\x5c\x49\x1d\xf4\ \x9e\x71\x96\x12\x02\x49\xcc\xd7\x09\xe6\x84\xdd\x01\x0c\xfc\x64\ \x3e\x94\xa1\x0d\x59\x01\xfc\x70\x01\xf7\xcc\x4b\x08\x89\x46\x4d\ \x50\x5f\x37\x9d\xca\x04\x71\xa7\x1f\xfe\x15\x23\xa2\x51\x41\x07\ \x24\xc3\x79\xe5\xcb\xf2\x09\xc8\x8f\x95\xe7\x53\x60\xa5\x17\x04\ \xa1\x46\x4a\xc3\x94\x35\x11\x6a\x1a\x61\x20\xe4\x42\x12\xce\x67\ \x33\xdc\x40\x00\x2c\xc0\x4b\xbe\xa5\x39\xa2\x9e\x4b\xd2\x25\x14\ \xaa\x64\x7e\x6e\x44\x01\xe8\x60\x0d\xed\xa5\x71\xaa\x15\x9d\xa0\ \xc0\xd8\xe8\x64\x29\x59\xc4\xec\x0c\xca\x2b\xc2\x40\x84\xc2\x03\ \x0b\x12\x25\x13\x2c\xc6\x1b\x98\xd3\x5e\x25\xc9\x4e\x60\xe7\x50\ \x48\x12\x88\x36\x4e\x38\x19\xcd\xce\x1c\xe3\x8a\xf6\x54\x78\xb2\ \xa8\x46\x96\x67\x08\x58\x96\x46\x8c\x82\x58\xaa\xc9\x27\xc8\x41\ \x6b\xae\xc0\x02\x38\x41\x00\xdc\x80\x1c\x30\x06\x3a\xc6\x65\x7e\ \xb6\xe5\x8f\xfa\x67\x4b\xaa\xa4\x6c\x5e\xc4\x27\xe4\x80\x92\x4a\ \x83\x4d\x36\x11\x60\xa2\xe2\xd8\x9c\x40\x01\xe9\x24\x03\xfa\xd2\ \x2f\x19\xc1\x1a\xf5\x82\x34\xe4\x83\x65\x18\x0d\x3f\x58\x96\x0c\ \x50\x83\x07\x7c\xd8\x1b\xfc\x44\x52\x8c\xa9\x63\xdd\x8c\x07\x88\ \xcb\x65\x86\x81\x04\x71\xcf\xdd\x11\x25\xd1\xa1\x28\x9c\xe6\x2a\ \xf9\x61\xc1\x8c\x3a\x84\x58\xfe\x43\x20\xe8\x5f\x38\xca\xc1\x26\ \x2c\xc0\x0d\xf8\xe8\xa0\x9a\xe5\xfe\x27\x16\xa0\xb2\xa6\xa4\x90\ \xde\xe6\x6c\x6e\x10\x6e\xca\x40\x01\xb0\x5f\x53\x48\x03\x0a\x24\ \x19\xb1\x5d\x04\x1d\xa0\x80\x01\xd8\x80\x01\xe4\x01\x10\xb8\x8d\ \x2f\x55\x14\xa1\xbc\xa2\x18\x5a\x81\x35\xe6\x83\x15\x68\xda\x19\ \x30\x41\x09\xd1\x43\x49\xd1\x5c\xa6\xcc\xd4\x07\x68\xe0\x0c\x6d\ \x27\x1a\x46\x65\x38\xc1\x90\x1e\xba\xe9\x8f\xb5\xa9\xae\x92\xdf\ \x36\xd0\x29\x46\x94\xc5\x9d\xc6\xa5\x25\x92\xe4\x59\xa2\x9e\x59\ \xde\x27\x4b\xca\x25\x91\x9e\xa4\x5a\xae\x24\x5b\xaa\xe4\x45\xe8\ \x42\xc0\x35\x05\x39\xb4\x81\xa4\xb2\x88\x5e\xe8\x1e\x39\x8c\xac\ \x2c\xe4\x41\x9f\x44\x8b\xb9\xe6\x23\x50\xe6\x03\x36\x12\x43\x3e\ \x68\x5a\x13\x78\x01\x35\x74\x40\xca\xbd\x01\x15\xc8\x4b\x30\xde\ \x8c\x9a\xce\x10\x0c\xa1\x21\x0c\x35\xde\x89\x12\xcd\x54\x0e\x2c\ \xd1\x3a\x85\x51\x75\x21\x24\x86\x64\x20\x58\x00\x7e\x3e\x2c\x38\ \x52\x2c\x5c\x2a\xab\xf1\xe0\x67\xc5\xce\xe5\x7e\xea\x67\x90\x9a\ \xe3\x5d\x66\x5d\x2b\xe4\x41\xee\x2d\x10\x60\x96\xdd\x09\x90\x43\ \x14\x8c\xac\x0d\x38\x80\xb2\x54\x54\x72\xc2\xa2\x18\x0e\xd5\xbd\ \x1c\x03\x08\x9c\x01\x8d\xb0\xfe\xab\xba\xca\x86\xbc\x14\xc5\x65\ \x80\xa0\x38\x8d\xd3\xdd\xbd\x2a\x0c\xb1\xe8\x50\xbe\x69\xd1\xea\ \x2a\x16\x80\x40\x46\xbc\xe7\xd4\xa9\xc9\xfe\x59\xa2\x12\x96\xe4\ \xa0\x3e\x6d\xd5\x0a\xea\x26\xa6\xe5\x7e\x56\xec\x33\x91\xa3\x90\ \x6e\x04\x08\x1c\x43\xc7\x36\x91\x88\xe4\x81\xa5\xa6\xdd\xec\xf4\ \xc1\xc8\x46\x81\xe9\xf6\x02\x0c\x38\x80\x11\xa8\xee\x2b\xfe\x01\ \x50\xca\x9f\xbc\x71\x52\x72\x59\x41\x3e\xa8\x84\x09\xc6\x98\x0a\ \x4a\xdb\xa9\x38\xd2\x05\xf2\xae\xc0\x0a\xad\x0d\xfd\xee\xe0\x96\ \x27\xaf\xd2\xe8\x9d\x7a\xe2\xe2\x56\xe2\xc3\xb2\xe3\xb3\x2e\x6b\ \x46\x40\x2d\x5b\xb6\xa4\xf4\xae\x65\xe5\x4e\x6e\x26\x6e\x12\xc4\ \xe8\x1e\xe8\xfa\x80\x0d\x7c\x91\xc4\x8c\x8d\x01\x8c\x6c\x2b\x0c\ \x5c\xd9\xda\x1b\x0c\x9c\x2f\xdb\x12\x15\x3c\x0c\x81\x8c\x28\x27\ \x50\x5a\xc1\x4a\x28\x17\xe3\xf4\x11\x31\x84\x81\xef\x9a\xe1\xcf\ \x0a\xef\xad\x06\xae\xfe\x0e\xef\xe5\x4d\x19\xbf\x29\x2d\x39\x0c\ \xab\xf2\x5a\x22\xf3\x2a\x2c\x13\x72\x62\xd5\xa6\x25\xa1\x8e\xa3\ \x90\x5a\xec\xe5\x2e\x6a\x61\xa0\xc0\xd9\x9d\xdd\x2e\x5c\x70\x1e\ \x40\xa9\x03\x90\x03\x0c\xfe\x90\x43\x2f\x38\x45\x2b\xf4\x42\x3e\ \x1c\x83\x61\xd6\x43\x84\x62\x49\x3e\xd4\x03\x13\xdc\xc1\x0a\xa7\ \x2b\xf0\xd4\x1d\x1f\xc0\x70\xe2\xe0\xaf\x19\x32\x1f\x78\xf6\x6f\ \x6d\xc4\x20\x0e\xfb\xef\xe5\x19\xec\xaf\x06\xc2\x48\x92\xa4\x5c\ \x4a\x2c\xa3\x8a\xe3\x46\xcc\x65\xf4\xb6\xe5\xf4\x96\xe3\x49\x42\ \x2f\x40\x09\x41\x1e\xd8\xc0\xc4\x49\x71\x20\x44\xc1\x2e\x64\xf0\ \x09\xa8\x9a\x2d\xd4\xc1\xf8\x12\x5d\x2b\x48\x43\x14\x88\x21\xd1\ \xe5\xc3\xbc\x11\x8a\x72\x5a\xc1\x25\xcc\x08\x0c\xfb\xd1\x38\x89\ \x9c\xc8\xdd\x10\x51\xfe\x6b\x39\xcd\x1f\x0f\x0f\x6f\x08\x50\xd2\ \x1a\x20\x6c\x37\x62\xc8\x26\x30\x6c\x01\xf3\x1f\x13\x9b\x65\x7f\ \x06\xb2\xb3\x0a\x29\x03\xbb\x65\xe5\x4a\xf0\xa2\xba\xd5\x09\xc8\ \x82\x2c\x94\x55\x14\x40\x40\x20\x90\xc3\x09\xa0\x80\x05\x58\x32\ \x0c\x74\x31\x8a\xaa\xef\x31\x70\x6a\x1b\xc4\x08\x0c\x2c\x27\x30\ \x0d\x65\x0c\x2b\xdf\x0c\xbb\x31\x1c\xef\x30\x7a\xd5\x71\x1d\x0f\ \x81\x43\x24\xed\x1e\x07\x42\x16\x34\x03\xc3\xca\x25\xd4\xd2\x26\ \x28\xf2\x27\xc5\x36\xef\x2e\x43\xaf\x04\x93\x87\x5b\x8d\x08\x0a\ \x9c\xc0\x2e\x04\x02\xfe\x04\xec\x82\x2d\xa0\x80\x25\x6f\xb0\x26\ \xdf\x98\xd1\x72\x03\x0c\xdc\x41\xa1\x44\x33\x0b\xef\xa3\x39\xa1\ \x61\xdf\xbe\x0b\xf3\x91\x27\xd1\x0a\x2e\x2b\xeb\x6a\x08\x60\xc0\ \x1a\x20\x2e\xfe\x61\x48\x16\x08\xf1\xfe\xf5\x32\xe5\xd2\xa5\x38\ \x4a\x6f\x9e\xa6\xb3\xc3\x22\x32\xf5\x6a\xa2\x5b\x21\x04\x01\xf9\ \x00\x39\xc8\x02\x94\xe6\x41\xf8\x72\xae\x34\xb0\x68\x2b\xe4\x03\ \x37\x1c\x83\x03\x54\x54\x28\xf3\xc3\x31\x54\x42\xf0\x4a\xe8\x36\ \x8f\x9c\xff\xce\x9f\x37\x7f\x33\x8b\x62\xc0\xfd\xfd\x2a\xb0\x62\ \x88\x0f\xf4\x31\x3c\x1b\xf2\x12\x07\xf2\x7d\xa6\x63\x3a\x37\x30\ \x2e\x5f\xee\x33\x69\x62\x61\x98\x11\x4e\xf6\x01\x10\x78\x6b\x07\ \x9f\xef\x3f\x93\x9f\x96\x8a\xf0\x1f\x38\x00\x0c\x70\x83\x40\xd3\ \x2e\x06\x3a\x24\x06\xf6\xe3\x43\x43\x92\x2a\x4b\xb4\x3b\xd9\x82\ \x45\xab\x05\x86\x18\x40\x33\xec\xa7\x3b\x27\xea\xe5\x22\x70\x5b\ \x1a\xea\x6b\xc6\x65\x25\x4a\x2e\x49\x9b\xb4\x43\x88\x08\x94\x0e\ \xc6\xd8\x8c\x8d\x03\xd8\xc2\x56\x6f\xf0\x8f\xa1\x1b\x3c\x84\x71\ \x2f\x70\x83\x4d\x8f\x70\x3d\x38\x67\xe3\xb9\x5e\x1e\x02\xf5\x4f\ \x03\x75\x53\x74\xfe\x40\x8d\x0e\xf5\x58\x06\x82\x01\x2c\xb5\x3b\ \xbf\x66\x11\xc7\x26\xe5\x1a\x70\x3a\x46\x75\xc5\xfe\x72\x62\xd0\ \x41\x1e\xc8\x82\x01\xa0\x80\x5f\xa0\x40\xec\xe4\x41\x1e\x38\x00\ \x4d\x73\x6e\xc0\x0a\x1c\xc1\xd1\x5a\x40\x1f\x83\x09\xe7\xa1\x43\ \xba\x1e\x2b\xb7\xb5\x5b\xd3\x46\x14\xc8\xb5\xe9\x61\x88\x2d\xdc\ \xc2\xf4\x2a\x30\x5b\x0a\x72\x13\xb7\xa4\xd4\xba\xe4\x4b\x9a\x24\ \x60\x2b\x86\x2d\x90\xc3\xc4\x9d\xc0\xd8\x64\xf0\xee\x2d\xb6\x07\ \x4b\x03\x04\x10\x9d\x1c\xd7\xd0\x08\x5b\x81\x32\xce\xa2\x66\x6b\ \x5d\x44\x6f\xb6\x9c\xc6\xb5\x67\x4b\x22\x5d\xe7\xa8\x21\x27\xeb\ \x12\xe2\xa7\xc2\x52\x2c\x11\xd3\x65\x6b\xcb\x05\xe9\x62\xb4\x2c\ \xd4\x89\x62\x83\xee\xd8\x36\xf3\xc0\x6a\xe9\xa4\x61\xc9\x64\xd5\ \x71\x1e\xa6\x32\x71\xc3\x69\x2b\x1c\xb7\x71\x60\x88\x2c\xf7\x32\ \x52\x53\xec\x3b\x53\x2d\xff\x3d\xad\x7e\x02\x32\x55\x83\x9d\x01\ \x44\xb2\x9a\x1c\x81\x62\x1f\x41\x25\xe7\x01\x37\x70\x37\x38\xc3\ \x43\x46\x56\x25\x5b\x2f\xf4\x70\x97\x37\xd1\x19\x37\x7a\xdf\x0a\ \x68\x8b\xf6\x6d\x3e\xf7\xc3\x32\x6e\xf2\x46\xf5\xc5\x46\xed\x20\ \x37\xa1\x82\xfe\x19\xb3\x24\xef\xc2\x11\x2c\xd4\x11\x24\x8b\x0d\ \xf0\x70\xbf\xd0\xf1\x37\xf3\x6f\xe0\x42\x12\x82\x6b\x1d\x04\x2c\ \xb8\xfe\x24\xf7\x53\x17\x30\x3a\x17\xb0\x5c\x62\xc4\x2e\xc7\x66\ \x7d\xeb\xc5\x7d\x43\x80\x24\xeb\x96\x7e\x1b\x04\x39\xf0\x70\x08\ \x8c\xa1\x5b\xeb\x30\x1d\x17\x39\x82\x3f\x36\x3c\x28\x38\x8b\xaf\ \x85\x7a\x67\x01\x48\x2f\x6c\x2d\x33\x6e\x6d\x4a\xaf\x6e\xde\x38\ \x6b\x91\xad\x8e\xbf\x85\x0d\xe4\x81\x8f\xf3\x30\x16\xe4\x03\x8c\ \x96\xb8\x65\xeb\x30\xd1\x05\x37\x9c\xae\xe8\xbd\x48\xf2\x92\xd7\ \x0a\x86\x2c\x41\x13\x10\xb0\x1f\xdb\x32\x22\x27\x75\x01\xde\x38\ \xe9\xea\xf8\x86\x83\x51\x1f\x44\x01\x90\x9b\xb9\xc0\x8e\x37\x91\ \xf3\xef\x67\x9a\xf9\x99\xd7\x90\x92\xaf\x39\x72\x24\xb7\x1f\xa3\ \xf3\x46\x2b\x31\x04\xcb\xc5\xa3\xf3\x17\x0a\x90\x03\x9e\xfb\x80\ \x72\x80\x00\x80\xa7\xf8\xad\xa2\x68\x0d\xa7\x72\x8a\xd2\xe2\x81\ \x8b\xf9\x8a\x23\xba\xc1\x98\xb3\x7d\x56\x62\x94\xef\x72\x53\x47\ \x7a\x47\x38\xb1\x6b\x47\x72\x14\xd8\x00\x29\xf5\x41\xa6\x6b\x3a\ \xae\x2e\xdf\xa7\xe7\xa1\x36\x83\xba\x98\x53\x25\x11\x1c\x3a\xa9\ \xa7\x52\xfe\x20\x88\x80\x0e\x2c\xba\xaa\xff\xe8\x91\x76\x04\x69\ \x03\xf3\x28\x8c\x6c\xb6\xae\x01\x0c\x10\x3a\x38\x93\x1f\x2d\x3e\ \xc5\x78\xd3\x30\xe3\x98\x61\x81\x07\xac\xeb\x8d\x7a\xb0\xe7\x0f\ \x86\x0c\xb0\x10\x1f\xf0\x6a\xaf\xa5\xb2\xbb\x7a\x70\xf5\xc1\x28\ \x39\xc4\xc6\x22\x78\x0d\x53\xe5\xc8\x81\xba\x3f\x2e\x66\x07\x6c\ \xc3\x31\x16\x78\x99\xd3\x62\x08\x00\xfb\xb7\x57\x48\x93\x93\xe4\ \x9c\xd3\x37\x27\x9e\x23\x7d\xd3\xf3\x31\xd4\xb1\xb6\xdf\x58\xc2\ \x5b\xe5\x79\xe9\x7a\x96\x68\x89\xd1\x14\xdd\xe0\x1a\x79\x4f\x59\ \xfb\x78\x1f\xa3\x9a\xf7\xbb\x3f\xb5\x39\xb4\x3e\xf0\x7f\xea\x27\ \xb3\x8e\xa3\x26\x36\x81\x92\x0e\x2c\x39\x41\x85\x56\x58\x7c\xbc\ \xff\xb9\x62\x0e\xba\xae\xb3\xac\xf8\x59\x09\xa1\xa3\x39\x24\xc1\ \x31\xd2\x38\x74\x92\x6b\x7c\x7e\xbd\x85\x01\x4c\x19\x84\x9b\xfb\ \x5b\x32\xf1\x2d\xd3\x33\x13\x84\xb9\x9c\xea\x4b\x0d\x2f\x1a\xd2\ \xbc\xb1\xe3\xb1\xe9\xa0\xe7\xb4\xcb\x4a\x83\xf8\xed\xf6\xc4\x0f\ \xe5\x2c\x9a\xa1\xb7\xeb\x7c\x55\xa9\xb7\x01\x2c\x46\x9e\x56\x62\ \xb2\x07\xbd\xd0\x6f\xa2\x49\x0b\x81\xa3\xc2\xa8\xfa\x9a\x27\x31\ \xac\xfe\x0a\x0d\x9f\xbc\x62\x8a\xdc\xef\x6a\x73\xc5\xd7\x06\x2a\ \x4b\x03\x1f\x38\xe7\x66\x43\xf4\xb5\x6b\x3b\xbf\x6b\xbd\xc1\xf8\ \x00\x0a\xe4\x69\x33\x5c\x78\x85\x2f\xb5\x95\xeb\x85\x2e\xe8\x80\ \x66\xe1\xef\xaa\x74\x80\x81\xb0\x2c\x44\x06\x6d\xcb\x73\x33\x6d\ \x78\xc0\x36\xa8\xe8\x4e\x5f\x60\xf0\x52\x7d\x37\xfb\x74\x0d\x7d\ \xfa\xbe\xfb\x3d\x7c\xfa\x00\x17\x10\xfe\x33\xe1\x35\xa2\x1e\xfe\ \x1d\x69\x96\x0d\xd5\x7b\x6e\xf0\xc1\x36\xec\x9c\x70\xa7\x68\x21\ \x3e\xd2\xe4\xf3\x74\x8a\xe3\xfa\xe7\x8f\xdc\xf2\x65\xbc\xe8\xf7\ \x9b\x7a\x3b\x87\xa2\xe4\x29\x4a\xaa\xe5\xe1\x0b\x01\x69\x22\x8d\ \xcc\x57\xfb\x43\x12\xb8\x46\x3a\x7f\x43\xc3\x3d\x71\x07\x6e\xa7\ \xa7\x28\x74\xf6\xfd\xef\x83\xfb\x5b\xf4\xc1\x4a\x06\xe8\xe5\x56\ \x39\xd0\x53\xb5\x2e\x88\x4f\x44\x4a\x3e\xc0\xe2\x3e\x8a\x4a\x3f\ \x96\x44\x3c\x89\x0f\xb9\xb5\xdf\x7c\xf5\x0b\x38\xe9\x65\xff\x1e\ \xfb\x00\x93\x6e\x10\xb4\x4e\xf5\xe1\xcb\x00\x28\x6c\xc3\xa2\xc5\ \x3f\x40\xc0\x0b\x41\x84\x88\xc0\x10\x07\x07\x12\x54\xb8\xd0\x43\ \x08\x78\x0b\x89\x84\x20\x86\xe5\x21\x44\x8b\x17\x31\x16\x84\xb7\ \xfe\x71\xa3\xc3\x8e\x08\x1b\x3a\x8c\x38\x2c\xd0\x3f\x93\x27\x51\ \xa6\x54\xb9\x92\x65\x4b\x97\x2f\x61\xc6\x74\x19\x28\xd0\x2e\x21\ \x6b\x70\xe2\xfc\xb4\xe2\x53\x3b\x9c\xed\x7c\xe6\x14\x3a\x94\x68\ \xd1\x9c\x42\x64\x80\xc2\xe2\x81\x29\x53\x87\x07\x43\x86\x14\x79\ \x11\x9e\xd3\x8a\x04\x25\x4a\xf3\x90\x91\x6b\x46\x8e\x1f\x37\x46\ \x44\x38\x76\x23\x31\x18\x32\xd1\xa6\x55\xbb\x96\x6d\x4a\x9a\x3e\ \x40\xe4\xfc\x24\xe7\x93\xd0\xa0\x46\xf1\xe6\xfd\x39\xe4\x20\xb1\ \x7c\xc4\x88\x8d\x0d\xf9\xf0\x2a\xc4\x10\x4c\x05\x2e\xec\x9b\xb8\ \x6b\xe3\x82\x4f\x3d\x22\x34\x78\x50\xe1\x64\x2c\xfd\x4a\xb6\xd5\ \xbc\x99\x33\xdb\xb7\x7d\x3e\xed\xbc\x7b\x57\x6f\xe9\xa2\x3a\xb6\ \x21\xc4\xa2\x15\xea\xe1\xc2\x16\x1b\xc2\xe3\x13\x96\xa0\x07\x78\ \xc4\x18\x3b\xee\xfa\x51\xea\x47\xc9\x58\xfb\xf6\xf3\x91\xb9\x73\ \x71\xe3\xc7\x51\xd2\xdc\xd5\x93\x34\x69\xd3\xcf\xd7\x08\x69\xc2\ \x07\xeb\xe4\xb1\x09\xc5\x1e\x34\x68\xdb\xb6\xc2\xc3\xd2\x66\xeb\ \xe6\x7a\xf5\x70\xf9\xc8\xbd\xb3\x87\xd8\x06\x0a\xc4\x2e\xe4\xef\ \xe1\x77\x7e\x1b\x77\x8d\x73\xe8\xd0\x65\xe4\xc0\x9e\x3d\xfd\xfe\ \x53\x0f\xb8\x6d\x7b\xaa\x20\xac\xfe\x93\xe6\x35\xf1\x16\xf2\xad\ \xa1\xc0\x04\x93\xe8\xa1\xb1\xb0\x58\x4f\x86\x3c\xe2\xab\xd0\xc2\ \xb5\x3e\xab\xef\xbe\x0d\xd7\x90\x61\x98\x81\x54\xdb\x86\xc1\xc3\ \x62\x13\x08\xb0\xaa\x5e\xd3\x8e\x36\x04\xa9\x12\x68\xc1\x89\xac\ \x93\x68\xc4\x89\xb0\xf8\x60\x08\x19\x84\x70\xef\xc2\x1d\x79\x9c\ \x89\xa6\x52\x6e\xe2\xf0\xb9\x1c\xb0\x20\x02\x8b\x0e\xb6\xc1\x42\ \x49\xca\xd2\x8b\xc8\x20\x8b\x1c\xfa\xef\x40\x16\x81\xcb\x8a\x98\ \x6d\x04\x9a\x2c\x24\x06\xb1\x50\xa5\x03\x0c\x9a\x90\x61\x8d\x3e\ \x7a\x2c\xd3\x4c\xb7\x02\x81\x4b\xc8\xd2\xda\xe9\x80\x20\x27\x74\ \xc0\x60\x1b\x2a\x81\xb3\x2d\x30\x3a\x0d\xeb\x6b\x1b\xf0\xb6\x89\ \xcd\x3c\xa9\x22\xc4\x20\x87\x33\x82\x24\xee\xcc\x43\x7b\xa4\xe9\ \x88\x20\xd7\x2c\xaa\x99\xd4\x88\x40\x45\x97\x1c\xe6\xa4\x32\xcb\ \x00\xf1\xac\xf2\xb0\xd5\xf8\x90\xa6\x03\x69\xb0\x18\x8b\x98\x0e\ \x42\x55\xaf\x03\x50\x08\xcd\xe9\x08\x43\x11\x6d\xf5\x42\xe5\xc6\ \xb0\x4f\xc8\x4f\xfa\xf9\x40\x49\x65\x72\x28\x00\x95\x24\x41\x64\ \x92\xab\xf2\x72\xa3\xf3\xba\xd5\x3e\xed\x60\x18\x3e\x20\xfe\x13\ \x71\x9b\x4e\xa9\xe1\x22\xd5\xa3\x74\x74\x55\xda\x1d\xdf\xa2\xa1\ \xd1\x9f\x28\xad\xe1\x03\x65\x70\xd5\xa5\x00\x3b\x50\xa9\x21\xd4\ \x08\x8b\xc4\xa8\x35\x04\xf7\x4b\x30\x22\x0f\xb0\x18\xb5\x83\x77\ \x53\xeb\xb5\x4f\x2c\x8e\x71\xb6\x28\x0a\xa7\xcd\x97\xda\x40\x16\ \x6d\x54\x07\x65\x0e\xc2\x35\x87\x5c\x0b\xc8\x01\x5c\x71\x23\x4c\ \xd2\xb0\xec\x82\xfd\xd5\xab\xec\x88\xf1\x74\x98\x0e\x18\x8c\x28\ \xa2\x88\x87\xa1\x8f\xa8\x1c\xf5\xed\xf8\xd5\x9a\xc6\x60\xf4\xb9\ \x33\x00\x8e\xa8\x86\x81\x45\x30\xd8\x8e\x1c\x86\x50\x46\xc9\x08\ \xb1\xa3\xec\x5c\xc7\x10\xc2\x88\xa3\x83\x94\xe5\x43\xc4\x84\x24\ \xdb\xc6\x0b\x31\x8d\x22\xd3\xe3\xa1\x2b\x9c\xef\x3e\x22\xb1\xaa\ \x41\x04\x70\xc1\x45\x25\x65\x54\xc6\x2d\x35\x84\x97\x0f\x2a\xb5\ \xab\x9a\x1f\x76\x91\x22\x69\xb0\xae\x68\xea\x0e\xb8\x10\x99\x28\ \x56\x89\x2e\xbb\x38\x9a\x02\xb1\xe5\xb9\x4f\x72\x40\xb8\x86\x1a\ \x50\x41\x65\x65\xa6\x97\xae\xe1\xba\x6d\xf6\x4c\x12\xe6\xeb\xa0\ \xc4\x1a\x4a\xf2\x0c\xa4\x68\x20\xaf\xa7\xc6\x80\x09\x1c\xf3\x5a\ \xd5\xec\xc5\x91\x43\x7b\x97\x90\xf1\x6a\x47\xd7\x70\xfe\xdf\xae\ \x41\x18\x82\xed\x10\x46\x84\x02\x44\x28\x72\x6a\x25\xf1\x4e\x18\ \x6f\x24\x17\x34\xaf\x66\x5f\xf3\x9c\xca\x21\x8a\x04\xaf\x08\x0b\ \x2f\xc2\x2c\x8d\x63\xc6\x69\x3f\xee\x2d\xbc\x74\x21\x03\x95\x1c\ \x28\xd7\xbc\x80\x4f\xbe\x15\xa6\x80\x5b\x44\xa8\x21\x22\xbc\xf5\ \xfe\x1c\x79\x24\xaf\x9c\xcc\x49\xfe\x14\x1b\x4b\x2c\x78\x56\xa3\ \x3e\xb1\x83\x72\x10\x1b\x2f\x14\x6a\xef\xde\x38\x58\x89\x6a\x27\ \x07\x65\xe2\x0e\x57\x18\x3b\x7e\xbf\x25\x78\x3b\xd4\x17\x77\x1b\ \x0d\xb0\x64\x72\x6a\xe4\x69\xa4\xac\xa3\x07\x51\xef\x4f\x3b\x03\ \x57\x0c\xa1\x03\x26\xb4\x67\x14\x21\x90\xcd\x7b\x05\xc4\x10\x4d\ \x46\xc1\x28\xd4\x6c\x23\x6e\x70\xdb\xdc\x27\x4a\x41\x3c\xbb\x69\ \xa0\x00\x05\x78\x87\x06\x34\x20\x0d\x0d\x40\xe9\x65\x4a\x9a\xc8\ \x75\x54\x93\xae\x2a\x65\x89\x3c\xf0\x18\x02\x00\xef\x23\x34\x03\ \xae\x70\x33\x35\x51\x5b\x3b\xa0\x06\xb7\x70\xa1\xa2\x00\xed\x88\ \xe0\xb7\x8c\x57\x83\x5c\x58\x70\x1b\xad\x30\x1e\x57\x22\x44\xb1\ \x76\xd1\x2f\x7f\xde\xb1\x58\x64\x22\x22\x8d\x2c\xa0\x70\x43\x04\ \x64\xe1\x13\x65\xa2\x1c\x0b\xc8\x09\x57\x6f\x13\xfe\xc6\x2d\x4a\ \x51\x0a\xce\x09\x63\x4e\x4a\x2b\x80\x30\xa8\xf6\xab\x2b\xbd\x6c\ \x1b\xf0\x92\x99\x61\x42\x45\x84\x3d\xad\xe6\x18\x59\xc8\x05\x1d\ \x02\x58\x1a\xc5\x41\x91\x8e\x9e\x09\x44\x2f\xde\x81\x0a\x97\xd5\ \xa0\x86\xb7\x88\x61\x0d\x34\x20\x8c\x25\xe4\x42\x03\x1b\xf9\xe1\ \xaf\x62\x76\x25\x5e\x2d\xa9\x6a\xab\xc9\x82\x08\x86\x40\x28\x21\ \xc0\xf1\x5a\xb3\xab\xe3\x25\xd3\x82\x36\x12\x64\x41\x18\xbe\xeb\ \x1c\x41\xb6\xf1\x8e\xcd\x7d\x31\x42\x1a\x28\x97\x78\xa6\x46\xa3\ \x0e\xd4\x61\x35\x22\x00\xc1\x2d\xe2\x12\xc7\x35\x71\x0f\x93\xb5\ \xcc\x24\x4d\x48\x80\x8e\xa5\x6d\x90\x20\x58\x78\xc7\x12\xd4\xa7\ \x0c\x78\xec\xa9\x15\x17\x11\xa1\x77\xd2\x68\x24\x69\x48\xe3\x67\ \xd7\xca\xcb\x00\x6d\x19\xcd\x5b\xfa\xe0\x1d\x95\x32\x12\xfa\xd4\ \xb7\x41\x2c\x98\x12\x5d\xc9\x54\xc8\x36\x34\xe6\xcc\xa2\x8c\x42\ \x9a\xe5\x8c\x22\x4d\x5a\xf1\xb2\x77\xe4\xe2\x16\xb7\x40\x1a\x16\ \xd2\x09\x1c\x28\x59\xcc\x3b\xe9\xc2\xc2\x19\xc4\x89\x17\x27\x9a\ \x93\x9f\xc9\xc1\x25\x09\xec\xc0\x4e\xe2\xcd\x69\x49\x46\x4c\xdd\ \x42\x18\xa9\x10\x69\xc8\xd2\x99\x73\xec\xe7\xfe\x43\x5b\x82\xcb\ \x0a\x7e\xcb\x94\x53\x42\xa3\x37\x95\x04\x91\xec\xe5\x73\x63\xd1\ \x82\xe8\x47\x55\xa2\x1c\x03\x10\x4f\x19\x87\xfc\x95\x37\x8d\xb4\ \x1f\x2c\x84\x93\xa3\x38\xa1\x25\x48\x61\x1a\x52\x9a\xa0\xa3\x9a\ \x07\x45\x66\x46\x91\xa9\x1a\x65\x00\xad\xa5\x38\x81\x66\x4c\x81\ \x2a\x53\x5e\x2a\xc4\x6a\x44\x45\xa9\x77\x90\xb7\x8d\x02\xf4\x34\ \x27\x2f\x0d\xea\x53\x4d\x42\x13\x08\x40\xa0\x9e\x46\x2d\xa8\x45\ \xb6\xc1\x2d\x82\x0c\x81\xa9\x38\xd9\x27\x54\x61\x2a\x55\x7a\xf6\ \x72\x1b\x6f\x3b\x25\x32\xb9\xa5\x30\x54\x74\xd5\xa1\x60\x75\xeb\ \x3f\x02\x41\x55\x84\x86\x0e\x22\xa2\x43\x1e\x16\xec\xc0\x50\x0e\ \x59\xf2\xad\x6f\x95\xaa\x5c\xc5\x62\x91\x84\x81\xae\x48\xca\x60\ \xaa\x53\xfb\xda\x57\xb1\x66\x04\x6f\xb6\xc2\xe9\x4e\x5b\xfa\xd3\ \xc4\x4e\x16\xae\x71\x05\xec\x42\x3e\xa0\xb7\xc7\xea\xf5\x3e\xe4\ \xa4\xec\x67\x2b\x3b\xd5\x3c\x85\x91\x08\xd2\x68\x29\x0a\xbe\x0a\ \x5a\xa8\x2e\xd6\x88\x20\x02\x25\x4f\x9d\xe9\x03\xd5\xce\x16\xae\ \x51\xb8\x2c\x94\x6e\x91\x4f\xc4\xd2\xf6\xb3\xac\xad\x2b\x3e\xc5\ \xe9\x51\xde\x82\x16\x6d\x17\x59\xa9\x38\x73\xe9\x30\x5c\xe5\xd6\ \xd6\x30\x39\x08\xee\x72\x97\x6b\x59\x85\x38\xf7\x5a\xa8\x85\x6e\ \x74\x69\x42\x10\x26\x54\x52\xb6\xd7\xbd\x2e\x4d\xc8\xc1\x59\xbc\ \xa8\xd0\xbb\xdf\xdd\x85\x0f\xd6\x24\xdc\xf2\x42\x57\x51\x74\xb8\ \xcf\x18\xd6\x1b\xdf\xa8\x06\x22\x81\xcf\x51\xaf\x7c\xd9\x7b\x3b\ \xbd\x58\x17\xbf\xf8\x6d\xaf\x00\xbb\xdb\xdf\xfe\x22\x50\x7b\xe4\ \x15\xb0\x7f\xf5\x9b\x93\xfb\x1e\x58\xbe\xff\x85\x2f\x83\x21\x3c\ \xdf\x51\xa4\x36\xc2\xe5\x45\x5b\x85\x31\x0c\xd1\x80\x00\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x87\xff\xff\xff\x1b\x83\xaa\xff\xff\xff\xff\xff\xff\x1d\x47\x1d\ \xa8\xc7\x90\xd8\x88\x8d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5e\xc8\xf6\xff\xff\xff\xff\xff\xff\xdc\x89\xb5\x5f\x8a\ \x40\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd1\x4a\x96\x5d\x85\xab\xff\xff\xff\x9c\xa8\xb8\x53\ \x66\x20\xff\xff\xff\xff\xff\xff\x57\xa8\xe4\x14\x28\xa5\xd7\xc9\ \xe4\x0f\x27\x68\xff\xff\xff\x09\x69\x9b\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xf7\x89\xba\xff\xff\xff\xb6\xa9\xb6\xf9\xae\xba\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x9a\xf2\xfc\x4d\x68\xf8\x13\x29\ \xe1\xb8\x89\xb6\xfa\xc8\xe4\xd9\xe8\xf9\xff\xff\xff\xff\xff\xff\ \x2f\x48\xeb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x98\xc8\xfa\xff\xff\xff\x0a\x47\x71\x78\x88\ \x3b\xd8\x89\xf1\x7a\x87\xab\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf6\xb2\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\ \xe8\xf0\xff\xff\xff\xfb\x8d\x5e\xff\xff\xff\x6b\x69\xe9\xb6\xb3\ \xf2\xb7\xc8\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd6\xd9\xec\x95\ \x94\xf5\xff\xff\xff\x97\xb1\xf8\xff\xff\xff\xff\xff\xff\x39\x56\ \xf6\xff\xff\xff\xff\xff\xff\x09\x18\x61\xff\xff\xff\x11\x38\x68\ \x97\x27\x19\x5b\xb8\xeb\xff\xff\xff\xda\xae\xf7\x73\x89\xf8\x70\ \x69\x65\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xfb\xd1\xa7\xfb\xfd\xfa\xfa\xd8\xeb\xff\xff\xff\ \x7d\x96\x45\xff\xff\xff\x7d\xf5\xfc\xff\xff\xff\xff\xff\xff\xda\ \x98\xf5\xb7\xd9\xfb\xf5\x99\xb5\xb2\x68\xeb\x6f\x78\x28\xdf\x98\ \xb3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb0\x29\x1d\xff\xff\xff\xc4\xe5\x99\x36\x67\x63\xf0\ \x2c\x2c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6d\x57\xf1\xff\xff\xff\ \xff\xff\xff\x64\x29\x51\xff\xff\xff\xff\xff\xff\x7a\xcb\xf9\xff\ \xff\xff\x94\x54\xf0\xff\xff\xff\x92\x6f\xf6\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xea\x57\x9c\xff\xff\xff\x72\x0f\xa5\xff\xff\xff\ \x57\x93\xe9\xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\x34\x4d\x19\xf9\ \xec\xb9\xfb\xaf\x87\xff\xff\xff\x78\xb3\xf8\xff\xff\xff\x34\x1a\ \xdc\xf4\x75\x71\xff\xff\xff\xf7\x91\x8d\xff\xff\xff\xff\xff\xff\ \xf2\x79\xb2\xff\xff\xff\xff\xff\xff\x84\xba\x84\x34\x76\x24\x42\ \xb6\xed\x98\x38\xd6\xde\x97\x94\xd9\xd8\xa6\x9a\xd8\xfb\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x55\x77\xa4\x18\x36\xa9\x11\ \x77\xa8\xff\xff\xff\x58\x78\x64\xff\xff\xff\xff\xff\xff\x59\x76\ \xfa\x19\x37\xde\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xb2\x79\xa9\x69\x7a\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8f\x3a\x39\xff\xff\ \xff\xb2\x57\x36\x34\x57\x64\xb5\x58\xb1\x71\x78\x9e\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x59\x5f\x73\x57\x68\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xa4\x3e\xd4\x96\x97\x50\xff\xff\ \xff\x99\x98\xb5\xff\xff\xff\x9d\xb8\xb8\xff\xff\xff\xff\xff\xff\ \xd9\xfb\xfc\xff\xff\xff\x1f\x96\xc8\xff\xff\xff\xff\xff\xff\x99\ \x99\x78\x7d\x97\xfa\xb1\x78\xf8\xff\xff\xff\xff\xff\xff\xff\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x24\ \xa8\xc8\x92\x21\x43\x8a\x16\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\ \x6a\xdc\xc8\xb1\x23\xc5\x86\x22\x40\x58\x2a\x53\xc6\x90\xc7\x93\ \x28\x53\xaa\x5c\xc9\xb2\xa5\x44\x43\xe1\x7c\xc8\x04\x41\xc6\x87\ \xa5\x74\x11\x5d\xea\xdc\xc9\xb3\xa7\x4f\x8d\x8a\x0c\x89\x10\xe1\ \x83\x4c\x4d\x11\xca\x94\x85\x23\x53\x46\x51\xce\x9f\x50\xa3\x4a\ \x9d\xca\xb1\x61\x00\xa2\x32\x91\x2a\xc3\x4a\x53\x04\xc4\xa7\x54\ \xc3\x8a\x1d\x1b\x55\x51\xba\x7b\x58\x7d\x24\xdd\x2a\xb3\xa8\xd6\ \x74\x25\xc9\xca\x9d\x4b\xf7\xa4\xa1\x7b\xf7\x94\xf9\x18\xaa\xec\ \xde\xd5\xb6\x59\x03\xb0\x4d\x87\xb3\xae\xe1\xc3\x88\x0d\x1a\xd2\ \x85\x76\x2f\xd2\x00\x57\x89\x1a\xdd\x0b\x39\x69\x80\x7b\x41\x4a\ \x7d\x4d\xcc\xb9\x33\x55\x45\xa5\x18\x13\x1d\x7a\xf9\xef\x64\xb5\ \x78\xfd\x96\xea\xc0\xba\x54\x00\x64\x0f\xc1\x7a\x9e\x4d\x3b\xa5\ \xa2\x7b\x1d\x1a\x8b\x28\x6d\x7a\xf2\xee\x7b\xa5\x80\x9b\x69\xd5\ \x2a\xf8\x05\xbd\xe9\xbc\x99\xac\xcd\xbc\x39\xc6\x86\x1d\x74\x05\ \x70\x7c\xd9\xaf\x88\xc9\x35\x7d\x40\x86\xdc\xc1\x4c\xa6\x05\x79\ \xb7\xfe\x22\x2d\x85\x4c\x4d\x3a\xe7\xe8\xd3\x23\x34\xa4\x8c\xf5\ \xe8\xbe\xab\xff\x02\x7e\xcc\xdd\x7b\xab\xc8\xca\x4a\x05\xbf\x77\ \x01\x72\xa2\xcd\xea\x05\x58\x5b\x43\xf7\x98\xa1\x1b\x5e\xac\xc9\ \x97\x95\x65\x7d\x75\xb7\x40\x07\xa5\x28\x13\x40\x68\x1d\x5c\x25\ \xa1\x75\x22\xc0\x16\x94\x80\x1c\x26\x66\x56\x82\x32\xb5\xd7\x9d\ \x68\xa3\x69\x75\x21\x6e\xc3\x99\x01\x21\x6e\x78\x0d\x25\x02\x70\ \x16\x76\x57\x9c\x37\xe8\xc8\xd6\xe1\x8d\x54\x19\x82\x0c\x63\x6c\ \x05\xa0\x8b\x2e\x66\x18\xc8\x16\x5f\x96\x09\x97\xa2\x19\x40\x9a\ \x11\x21\x5f\xc1\x6d\x15\x40\x77\x2b\x96\x32\xce\x38\xe2\xe0\x68\ \xa5\x54\x41\xe9\x92\xdb\x7b\x05\x06\xd9\x81\x5e\x7b\x25\x45\x5a\ \x77\x99\xb4\x12\xe4\x02\x99\x64\x22\x24\x65\x15\x22\x75\x4f\x9a\ \x2a\x0a\x56\x4a\x2b\x99\xf0\x00\x85\x53\x36\x5e\xa9\x27\x4a\x1f\ \xf2\xc8\x17\x8a\x48\x62\xd5\x97\x78\x4f\x9a\xb1\x80\x99\xde\xf9\ \xe2\x0b\x78\x7c\x41\xe6\x62\x07\x8a\x56\x28\x61\x29\x66\xf0\xa0\ \xa8\x2f\xad\xa4\xf3\xd0\x9e\x9c\xa2\xa4\x23\x90\x79\x51\x17\x9d\ \x90\x64\xbc\x18\x6a\x83\x68\x06\x99\x68\x0b\x06\x92\x96\x14\x65\ \xfe\x66\xb4\x90\xc9\x97\xf9\xe9\x92\x89\xa2\xa7\x9c\xf2\x65\x32\ \x3e\xa0\x53\x58\xa7\xc0\x62\x74\x97\xa1\xba\x80\xf9\x62\x07\x66\ \xde\x93\xd5\x96\x6e\x7a\xa7\xe6\x70\x99\xb4\xe0\x4b\x26\x68\x89\ \x79\x9d\x0f\x6f\xfa\x62\x86\x60\x4f\xde\xda\xc2\xb7\xa7\xb4\x22\ \x82\x18\x22\x40\x38\xa5\x05\xc1\xa6\x2b\x91\x22\x65\xe8\xb2\xc0\ \x83\x58\xbd\x18\x64\x7f\x35\x05\xd0\x2a\xb6\xc3\x1d\x6a\xa8\xb7\ \xac\x4a\x0a\xe6\x5e\xf7\xf0\xb0\x80\x6b\x01\xd0\xe9\x8b\xb4\xbe\ \x9c\xd2\x42\x07\xc9\x78\x70\x2c\x70\xc8\xb6\x82\xa7\xba\x14\x0f\ \xa4\x48\xa1\x8c\xd6\xa4\xcc\x05\x09\x5e\x7b\x4f\x2b\x17\x00\xac\ \xaf\xa1\x3c\xa4\x29\xed\xac\x95\xc5\x7b\xc1\x83\x90\x51\x7a\x30\ \xc2\xd2\x76\xe0\x83\x07\xda\x4d\xb8\xda\x3e\xfa\x5d\x90\x8e\x05\ \xcb\x55\x1c\xec\xc5\x5d\x2a\x2b\x93\x8f\x4d\xb6\xf5\x24\x51\x7d\ \x05\x09\xe4\xad\x26\x2f\x5a\xa1\x60\xf1\xe2\x96\x5b\xa1\xb7\x4e\ \x1b\xad\x2f\xa5\xcc\x4c\xdd\x9c\x10\x42\x98\x73\x35\x35\xfa\xcc\ \xa9\x59\xa1\xc5\xe9\x18\x70\x79\xa5\x35\x54\x88\xb8\x69\x69\xeb\ \x77\x99\xdc\xe1\x0b\x63\xdb\xb9\xf8\x5b\x6e\xc1\x75\x80\x66\xfe\ \x9a\x07\x53\x2b\x02\xaf\xe3\x21\x0b\xe1\x05\xc0\xad\xd6\x0a\x0f\ \xf0\xc0\x83\xae\xd8\x56\x2a\x12\xc4\x02\x4a\x83\xf9\x64\x9b\x69\ \xc9\xa4\x31\x5e\x97\xe9\x6d\xa8\x77\x0f\x5e\x58\x37\x52\xdd\x11\ \x5c\x4a\x9a\x26\xcb\xba\x24\x69\x73\x12\x17\x61\x7e\xc8\x96\x4c\ \x1c\x0f\xb0\xc3\x30\x31\xe3\xe9\x39\x95\x41\x9a\x53\xa3\x1e\x99\ \x63\x96\x0f\x8d\x39\x70\x8c\x85\xf6\x5d\xda\xd5\x59\xd7\x1e\xdd\ \xc2\xbf\xeb\x2d\xb5\x5b\xc1\x37\xe7\xac\x17\x8c\x47\x67\x9a\xaf\ \xbb\x4e\x9c\x05\xe0\xe4\x49\x7b\x67\x8a\xa8\xe1\xcb\x1d\x2a\x62\ \xb8\x7b\x5b\x6b\xfb\x9e\xe0\x76\xc2\x0d\x9f\x54\x29\x17\x10\xee\ \x64\x6b\xb8\xa5\x79\xe8\xc1\x98\xfa\x55\x38\x6b\xaa\x5f\xf5\xc5\ \xc7\xb0\x13\xe7\xbf\xff\x3c\x68\xc5\x3e\xe0\x51\x8d\xc5\x6d\x6f\ \x36\x8a\x40\xc7\x77\x20\xe4\x28\xa4\x00\x86\x7c\x2e\x42\x11\x6b\ \x7e\xa7\x37\x35\xa9\x26\x35\x16\x5a\x4d\x6e\x3a\xc0\x34\xc8\xd1\ \xef\x4b\x4f\xd2\x92\x7e\x54\x54\x0a\x26\xb5\x42\x51\xad\x80\xd0\ \xff\x02\x08\x40\x2e\xc0\x03\x05\xda\x3b\xa0\x5c\x82\x62\x28\x33\ \x75\xe0\x38\x8f\xb1\x96\x6f\x46\x53\xa0\xef\xa4\x28\x38\xfe\xa3\ \x7b\x10\xa5\xce\x87\x3a\x15\x21\xeb\x60\x90\x8b\xd6\x29\x32\x21\ \x98\xa0\xe9\x87\x81\x5f\x08\xc0\x33\x0e\x57\x32\x15\x46\xec\x70\ \xfe\xe3\x02\x15\xb9\x10\xc0\x6a\xcc\x4e\x86\x33\xf4\x86\x96\x20\ \x27\x24\x09\xb1\xa6\x4d\x46\xd1\xca\x50\xee\xa1\x28\x93\xb5\x42\ \x35\x5e\x02\x52\x9b\xc4\x83\x0c\x28\x71\xb0\x8d\x1c\x6c\xc1\x29\ \xcc\x80\x14\xef\x44\x29\x38\xc8\x50\x46\x1d\x6f\xc5\xc2\xd7\x55\ \x0f\x8b\x99\xd0\x62\xff\x5e\xe7\x0b\x0b\x84\x0d\x8c\x63\x51\xc4\ \x8e\x9c\x25\xa4\x09\x2d\x40\x5b\x8d\x41\x4d\x65\xf2\x38\xad\x45\ \xb9\xa6\x4b\xf8\x6b\xd3\x6b\x26\x64\xc7\x0e\x1a\x0c\x6b\x2f\xba\ \x95\x2e\xf4\xa3\x9f\x00\xb8\x60\x42\x95\xda\x03\xa6\x56\x58\x27\ \x16\xda\x72\x91\xb0\xf3\x05\xec\x50\x00\x03\x58\x40\x32\x2c\x8b\ \x39\x13\xe4\xb8\x75\xc7\x6d\x8d\xe6\x49\x98\x83\x94\xac\xa8\xb7\ \x41\xc8\xb1\x26\x4e\xc8\x40\x9b\x06\x59\x43\x3a\x33\x45\x8b\x89\ \x22\x30\xc3\xb4\x94\x04\xb1\x7b\x44\x73\x74\x7b\x38\xd9\xff\x14\ \x25\xcb\x2c\x52\x91\x07\x8a\xd4\xa5\xa5\x4e\x21\x4b\x14\x3c\xe1\ \x8b\xbf\xdc\x89\x22\xbc\x91\x44\x67\x26\xa5\x87\xb3\xfe\x8a\xd7\ \x84\xf8\x43\x4d\x38\xd9\x50\x46\x46\x9c\x20\xe1\xf4\x73\xbf\xe9\ \x91\xee\x60\xc5\x19\x9d\xd3\x80\x78\x01\x56\x1e\x4e\x51\x01\x64\ \x61\x26\xf6\x90\x2b\x4c\xed\x03\x80\x50\x08\xe0\x3e\x7c\x21\xcb\ \x84\x29\x8c\x07\x7b\xc8\x28\x14\x78\xe1\x94\x78\xca\x93\x83\x9b\ \x33\x10\x64\xee\x71\x49\xbf\x65\xe5\x6e\x64\x82\x93\x11\x2b\xa5\ \xa6\xbc\x15\xa7\x65\xf0\x43\xd6\x41\xe9\x07\x37\x59\xad\x28\xa7\ \x3a\xb5\x1e\x00\x4f\x51\x0f\x76\xa6\x10\xa3\x3c\x40\x16\x45\x4f\ \x81\x2b\x59\x3a\x95\xa3\x2d\xd8\x43\x28\x1e\x69\x52\x95\x18\x62\ \x1f\xef\x52\x9a\x74\x70\x73\x49\xf0\x18\xeb\x42\xd1\xa9\x60\x99\ \xba\xd6\xd2\x0d\xca\x83\x07\x66\x40\xc6\x8b\x52\xa8\x42\xa6\x29\ \x4a\x6e\xa4\x93\x16\x37\x39\x96\x42\x87\xd6\xe9\x7f\x0f\x5d\xea\ \x1e\x04\xd8\x81\x8b\xc2\x2e\xa2\x14\xe5\x28\x3b\x99\xba\x87\xc2\ \x72\xb4\xb0\x85\x45\x01\x1f\xf8\x10\x8a\xaa\x9e\x24\x28\xdd\x51\ \x15\x92\xee\xb1\xb4\x34\x45\xc6\x4d\x97\x59\x4d\x90\x48\x97\x9a\ \x56\xc8\x4a\x45\x27\xc4\xd4\x56\x90\x41\x9c\x33\xf2\x0d\xae\x07\ \x95\xd6\xc0\x32\x57\x1c\x6f\xe2\x4f\xa8\xc4\x11\xfe\x2c\x3b\x0b\ \xb9\x0f\x74\xbe\x8e\xa2\xe1\xac\xa8\x5e\xc3\xe9\xd4\x3d\x7c\x40\ \x06\x72\x50\xc2\x1c\xe2\x00\x4f\xc7\x56\x44\x11\xe3\x40\x92\xd2\ \x90\x14\x1d\xd2\x19\x13\x35\x13\x2c\x5b\x2b\xd0\x94\xc2\x09\x55\ \x2d\xa2\xba\xec\xc0\x50\x9e\x51\x29\x15\x9e\x72\x9b\xce\xfa\x96\ \x2f\x2a\xf4\x0c\x64\xb9\x46\x3f\xa1\xdd\x43\x26\x70\xe6\xd7\xc3\ \xb6\xa0\x90\xe6\x5c\x67\xae\x74\x3b\xdf\x8e\x82\xb4\xb0\xc0\x95\ \x43\x70\x3f\x30\x07\x58\x6c\xca\xb8\x15\x31\x44\x72\x25\xfb\xa3\ \xa5\xa1\x29\x54\xda\x81\x92\xd4\xec\x53\x53\xe0\x58\x4a\x5a\x25\ \x43\xeb\x71\xbe\x40\xa9\xba\x5a\xf3\x7b\x6a\x82\xd0\x25\x11\xb6\ \xa2\xba\x8e\xf0\x84\x51\x0d\x20\x7a\xef\xcb\x4e\x5d\x6a\x51\x8b\ \xd5\xcb\x6d\xae\x64\xb9\xe2\x84\xa9\x13\xbf\xfa\xd5\x6f\x16\xc6\ \xc1\x0c\x35\x88\x41\x0c\x24\x89\x21\x80\x05\x12\x94\xd0\x64\x75\ \xb2\x7b\xf3\x92\x5e\x76\xa3\xaa\xbc\x6d\x36\xc3\x94\xb2\x94\xa5\ \x70\xc7\xc0\x09\x11\x67\x1f\xfd\x54\x54\xf8\x46\x27\xde\x32\x39\ \xd4\xae\x20\x45\x21\xce\x2c\xb5\xd4\x12\xc3\x97\x8a\x85\x9d\xaf\ \x60\x03\x0b\x51\x90\xca\xa0\x1e\x31\x96\x03\xfe\x3c\x40\x70\xe3\ \x36\x8b\xc1\x12\xde\xd0\xb1\x71\xe7\xe9\xae\x33\x31\xc6\x56\x56\ \x8b\xd3\x1a\x83\x94\x4c\xce\xd5\x94\x4c\x74\x12\xd8\x19\x6d\x36\ \xcd\xe7\x61\x58\x48\xb6\xfa\x16\xf5\x5c\xc3\x31\xaf\x3d\x54\x51\ \x50\x78\xf2\x3a\xcf\x5c\x8f\xc2\xb2\x50\x91\x96\xf2\x28\x61\xf5\ \xf8\xde\x32\x83\x14\xcd\x31\x56\x02\x33\xdc\xec\x66\x0d\x14\x00\ \x05\x71\x2e\xe9\x8e\x79\x8c\x0c\x24\x01\x89\x31\xf8\xfc\x0e\xcb\ \xd6\x98\x42\xfb\x69\xae\x8a\xf8\xf3\xdf\x58\xf9\xc3\xa2\x50\x8e\ \xae\x6a\xb3\xc2\x0b\x88\x17\x95\xbf\x29\xba\xc6\x05\x1d\x50\xb2\ \x6d\xe7\x04\xd2\x5c\xd5\xa3\xa8\x85\xfc\x2b\x97\x57\x3c\xdf\x12\ \x5f\x4a\x97\x44\xd5\xaf\x12\x94\x00\x85\x54\x90\xba\xcd\xa9\xf8\ \x41\x1d\x52\xc1\xe6\x92\xf4\xcc\xb1\x34\x74\xd7\xab\xf1\xa2\x8b\ \x3b\x3c\xab\x73\xa0\x8b\xd3\x93\x0e\xb5\xb7\xdc\x10\x07\xb4\x41\ \x22\x18\x8a\xcc\x74\xef\x3a\x29\x6a\x60\xc2\xe1\x69\x00\xbd\x06\ \xa1\x57\xb6\x62\x0f\x8b\x84\xf2\xe1\xf6\x20\x03\xa2\xe6\xaa\x7f\ \x7f\xf5\x77\x97\xbb\xcc\x54\x85\x39\x35\xbf\x72\x90\x41\x06\xc2\ \xf1\x6d\x37\xa7\x42\x03\x0f\xd0\x80\x06\xfe\xbc\x3d\x92\x32\xcc\ \xd9\x10\x0b\x50\x37\xdd\x0a\x34\x2d\x20\x79\x95\xc8\x2a\x7d\x93\ \x73\x0d\x24\xa3\xa3\x06\xbb\x65\x41\xe2\x37\x71\xf8\x56\xd3\xd5\ \x78\x6b\x5a\xfd\xd3\x0f\xce\xa4\xf8\xd0\xa0\x5f\x14\xb1\xb9\x92\ \x81\x3a\xcf\x99\x4b\x8a\xf3\x56\x8f\x2b\x96\x25\x9a\xb7\xbd\xf1\ \x8e\x93\x9a\x00\x3f\xc0\x85\x3e\x7e\x30\xf2\x54\xf8\x01\x1d\x06\ \x90\xb3\xcf\x0c\x61\x26\x95\xa7\x26\x6e\x70\x63\x94\xbc\x0c\x14\ \xbf\x69\x39\x93\x35\x55\xdc\xf9\xd4\xf6\xed\xac\x32\xe1\xf1\x89\ \x55\x93\x96\xb4\xb8\xc0\x3e\xfd\x3c\xe3\x19\xa5\xe0\x82\x2f\xa0\ \x20\x4b\xbe\xb7\x42\xf0\xb8\x75\xaa\xb4\x21\xee\xd1\x86\xe7\x2a\ \xaa\xb8\x65\x67\x61\x63\x5c\x8f\x20\xb0\xd9\xcd\x20\x20\xc0\xc7\ \x09\x70\x63\xac\x17\xa0\x17\x05\xd0\x87\x3b\xdc\x51\x87\xcf\xf7\ \xa2\x17\xab\x28\xae\xd8\xd2\xe1\xae\x77\xa5\x9c\xdd\xd7\xb4\x8f\ \x5f\x42\x18\x3e\x43\x2d\x13\x51\x87\x03\x2d\xee\x70\x9a\xf3\x32\ \x7d\x67\x5a\x5d\x4b\xd4\xcb\x2e\x75\x53\x56\x32\x1b\x76\xe5\x84\ \x72\xb3\x65\x29\x6d\x75\x46\xf4\xd3\xd5\xee\xe8\x98\xc3\x9c\xe6\ \x27\x30\x83\xdc\xa9\xc8\xfe\xc7\x99\xfe\xf1\x03\xae\x67\xbf\x0e\ \xa7\x57\x05\x22\x42\x8f\x82\x5e\xa8\x42\x15\xa0\xef\x05\x0c\xb3\ \x27\x76\x3d\x29\xa2\x5c\xad\x7f\x3d\x4b\xe1\x9a\xaa\xbc\x4c\x4e\ \x4b\x64\x92\x95\xf2\xea\x34\xab\x23\xa2\x6c\x72\xbd\xb7\x73\x9e\ \xf4\x31\xd7\x46\x3f\xba\x94\x50\xac\xd4\x3a\xb9\xa4\x51\x07\x67\ \x58\xb0\xe3\x6f\x4b\x77\x5b\xf3\x55\x54\x4c\x45\x4e\x25\xb6\x07\ \xa0\x16\x5c\x3c\x90\x01\x19\x10\x04\xcc\x90\x08\xe1\xa0\x01\xcc\ \xc0\x0c\xfa\x80\x0b\x75\xf0\x00\x0f\xf0\x79\x32\x80\x08\x59\x00\ \x7a\xfa\x70\x7a\xa0\x37\x7a\x05\x30\x83\xee\x00\x0e\x24\x31\x76\ \x3e\xe2\x7a\xaf\xe7\x2e\x77\xe0\x6e\x59\x75\x41\x67\x74\x47\x2d\ \xf0\x20\x75\x57\x57\x1f\x04\x31\xbd\x47\x3a\x8b\xc6\x49\x06\x38\ \x4b\x24\xf4\x44\x8b\x07\x3b\x50\x86\x78\xd1\xa6\x4b\xce\xc7\x48\ \x45\x45\x81\x0a\x43\x4e\x90\x86\x81\x31\x26\x03\x41\x80\x0c\x41\ \x00\x0f\x17\xa0\x01\x21\x98\x7d\xcc\x50\x07\xfa\x50\x07\xb8\x30\ \x83\xa7\x16\x7a\x33\xa8\x0f\xa2\xf7\x03\x7e\xe0\x07\x75\x30\x7a\ \xde\xa7\x01\xe0\x90\x7a\xe9\x32\x4f\xd1\xa1\x83\x77\xb6\x00\x3d\ \x28\x3f\xf0\xd3\x36\xfc\x26\x65\xfe\x3a\x55\x27\x2a\xa4\x68\x67\ \x64\x2b\x25\xe3\x7b\xd4\xa3\x22\xda\xc4\x54\x7a\x37\x2d\x78\xa5\ \x42\x0b\x58\x58\xb3\x52\x74\x02\x44\x1c\x88\x15\x81\x0b\x47\x54\ \xcf\xd6\x62\x87\xd5\x6c\x4a\x10\x63\x50\xc0\x71\x04\xc0\x0c\x41\ \x90\x08\xa9\x40\x00\x6c\x06\x02\x20\xa7\x86\x19\x10\x7a\x75\xf0\ \x03\xfa\x50\x00\xab\x50\x00\x75\x70\x8b\x75\xf8\x00\xbd\x58\x87\ \x76\xf8\x79\xaa\xa0\x04\x4c\xa0\x6a\xee\xf7\x38\x82\x78\x07\xf2\ \xd7\x6e\x3d\xc8\x8c\x29\x17\x3c\x54\x13\x5a\x63\xa5\x4d\x0b\x95\ \x09\x4c\xd5\x7f\x4b\x23\x4e\xd3\x43\x27\xe9\x75\x30\xd2\x57\x26\ \xa5\xa5\x70\x7f\x15\x58\x49\xc5\x89\xca\x97\x30\x1d\x75\x78\xaf\ \x23\x8a\x59\x28\x79\x96\x42\x78\x0c\x97\x66\x50\x70\x79\x04\xe0\ \x8a\x04\x00\x8b\xf9\xc8\x8a\x41\xa0\x86\x05\x20\x0f\xee\x90\x8b\ \x2e\x48\x7a\x27\xe8\x07\x1a\x20\x6e\xb7\xd8\x8b\x05\xa0\x0a\x69\ \x36\x07\xaa\x27\x20\x86\x00\x0f\xdf\xe1\x83\x05\xb6\x8c\xfa\x97\ \x72\x71\x42\x59\x4a\xe8\x3a\xc2\x47\x84\xd8\xa8\x2d\x67\xe4\x1d\ \x27\xe3\x2c\x7f\xe5\x51\x51\x25\x5e\x10\xb6\x5e\x67\x74\x78\xb5\ \xc4\x51\x07\xc8\x89\x43\xe5\xfe\x65\xd5\xe3\x8e\xa3\xc8\x54\x59\ \xc6\x70\x19\x28\x07\xf2\x70\x79\x99\x27\x06\x99\xf7\x71\x41\xa0\ \x0f\x19\x80\x02\xf2\x20\x0f\x05\xf0\x01\x33\x78\x7a\x28\x40\x7a\ \x75\x28\x72\xc0\x78\x8b\x0f\xf0\x03\x0b\xc9\x90\x69\x56\x00\xa9\ \x30\x12\xed\x87\x40\xe8\x60\x28\x82\xf8\x2e\x05\xd6\x83\x2d\x00\ \x8d\xea\x96\x1b\x6d\xf7\x88\x69\xf2\x60\x6e\xa7\x44\x8b\xc2\x5c\ \xab\xb2\x53\x97\x32\x5f\x27\xc9\x5b\x98\xe2\x68\x74\xc2\x05\x12\ \x37\x4b\x27\xc4\x7c\x11\xd3\x6c\xb3\xc5\x48\x34\x39\x5f\x22\x55\ \x58\xcf\x16\x6a\xe3\xd0\x66\x9c\xe7\x93\xa9\xc0\x8a\xfa\x20\x0f\ \x50\xf0\x01\x1f\x20\x0f\x19\xa0\x0f\x28\x70\x94\x2e\x68\x90\xf9\ \xa8\x01\x76\x58\x07\x22\xf7\x03\x88\x40\x95\x31\xd6\x0b\x1a\x70\ \x63\xa9\x00\x0e\x35\xc8\x21\x09\xa4\x83\xd1\xc8\x83\x61\x99\x09\ \x05\xc6\x67\xdd\xd2\x46\x10\xf8\x32\xfa\x97\x30\x43\x58\x43\x2a\ \x72\x2b\x4c\x65\x30\x36\x29\x5b\x1d\x25\x66\x08\x68\x48\x54\xf4\ \x92\xc8\x67\x5b\x17\x75\x42\xcf\xb6\x74\xcd\xf6\x6c\xca\x59\x69\ \xba\x24\x8f\x18\x97\x71\x64\x20\x9a\xaf\xa8\x79\x66\xc8\x8a\x28\ \x80\x02\xfa\xc0\x0c\xfa\xfe\x98\x0a\x6a\x90\x01\x1f\x00\x7a\x0f\ \xe0\x6d\x04\x60\x87\xb8\xe0\x07\x1f\x57\x07\x0c\x49\x95\xe7\xe7\ \x0e\x6d\xe6\x07\xa3\x37\x7a\x28\xc0\x7e\xe8\xe1\x38\xee\xc6\x8c\ \x15\x59\x9f\x3e\x94\x24\x37\xf4\x9a\x6d\x64\x80\x7a\xa4\x5e\x22\ \x09\x92\xde\xa8\x9b\x9d\xe4\x65\x07\x23\x66\x4b\x55\x0f\x98\xf2\ \x44\x78\x75\x42\x19\x55\x3d\x2f\x89\x85\x95\x16\x40\x5c\xe4\x0b\ \x67\xe6\x70\x14\x98\x51\x88\x95\x93\xf2\x10\x9d\x62\x90\x98\xe1\ \xf0\x03\x1e\xa8\x01\x41\x39\x0e\xe1\x70\x79\x1e\x97\x01\xc0\xd5\ \x0b\xfa\x90\x0b\xe2\x36\x83\x5c\x97\x82\xe2\x77\x7e\xfa\xa5\x0a\ \xee\x70\x95\x5e\xf7\x9e\x93\xe9\x0e\x1a\x50\x72\x59\x49\x16\x41\ \x11\x96\xf6\x79\x9f\xa4\x43\x84\xc4\x71\x1c\x01\xb0\x51\x5b\x78\ \xa0\x1d\x55\x54\x4a\x72\x42\x0b\x44\x5d\x66\x20\x78\xd6\x56\x51\ \x16\xc8\x4e\xe0\xb2\x62\x75\x35\x1c\x58\x94\x4b\xc8\x69\x69\x97\ \x76\x70\x45\x85\x70\x8a\x44\x51\xa3\x48\x81\x08\xe7\x9c\xa7\x18\ \x63\x19\xd0\x66\xb2\x38\x0e\xfa\xf0\x00\xcc\xf0\x00\x1c\xc8\x71\ \x56\x97\x0a\x28\xa0\x04\xf5\x20\x03\xa0\x37\x7e\x05\x20\x6e\xee\ \x50\x00\x88\x90\x7e\xfe\xe7\x67\xa3\x06\xe9\x9e\xee\x60\x00\x9f\ \xb7\x0a\x3f\x70\x98\x6f\x16\x67\x08\x04\x0e\x2f\xb3\x83\xad\xe7\ \x5c\x54\xd4\x0a\xc8\x90\x08\xa4\x95\x78\x14\xa5\x74\x96\xa2\xa0\ \x10\x62\x8d\x9b\xc8\x56\x27\x24\x66\x08\xea\x6c\x84\xe5\x70\x78\ \x09\x40\xc8\xc7\x4e\x19\xc5\x45\x86\xc5\x05\x5c\xf4\x57\x44\x85\ \x70\x87\xf7\x69\x14\x58\x54\x32\x80\x70\x87\x75\x66\x5f\x58\x98\ \x6d\x26\x82\x1e\xa8\x06\xf0\xf0\x04\xc0\x6a\x75\x1f\x0a\x05\x31\ \xf6\x8f\x26\xe8\x07\x0f\xd0\x86\x34\xb8\x0a\x9d\xd9\x0b\x3c\xea\ \x0d\x7e\xb0\x0a\x30\x88\x7e\x37\x0a\x02\xaf\xe8\x75\x74\xc8\x7e\ \x3f\x0a\x15\x8a\xd0\x0a\xcf\xc8\x76\x3c\x98\x26\xee\x26\x71\x3c\ \xa0\x56\xc8\x90\x01\x88\x75\x5f\x08\x67\x27\x4a\xa7\x7c\xe5\xc4\ \x6f\xf8\xa3\x69\x13\x98\xaf\x15\xa7\xaa\xd5\x14\x5b\xeb\x94\x05\ \xf1\x0a\xaf\x7f\x75\xab\xcb\x47\xa1\xc9\x79\x0a\x0d\xb7\xab\x83\ \xe7\x9c\xa1\xd6\xa1\x86\x99\x98\xcc\x20\x82\x43\xe9\x6d\xc8\x7a\ \x63\xe1\x90\x05\x72\xd0\x0b\x89\x00\x8b\xdf\x57\x82\xee\x40\x87\ \x98\xf9\xb1\xde\x76\x90\xe6\x47\xa3\x36\xda\x75\x07\xd9\x7d\x06\ \x29\x72\x1a\x00\xfe\x20\x73\xa1\x08\x75\x07\x1e\x94\x35\x88\x72\ \x73\x29\x13\x8a\x0c\xe1\x80\x0c\x5c\x00\x05\x90\x99\x01\x3b\x2b\ \x0f\x5c\xf0\x04\x84\xc7\xb3\xee\x2a\x4b\xf2\xd0\x01\xf2\xc0\x8e\ \x5c\xc0\x70\x58\xea\x70\x83\x35\x8a\x61\x06\x6d\x87\x23\x8e\xc1\ \x09\x05\x26\x06\xab\xef\x8a\x62\x58\x6b\x62\xa1\x78\xa6\xe6\x88\ \x58\x18\x27\x03\xc8\xe0\x66\xf9\x98\x0e\x35\x16\x04\x19\x70\xac\ \x15\x2b\x06\xfa\x20\x03\x50\xe0\xa8\x1a\xc0\x86\x5b\x37\x72\x9a\ \x77\x95\x37\x66\xad\xab\xa0\x9e\xd4\xda\xa3\xde\x4a\x87\x87\x4a\ \xb7\xa3\x09\x11\x33\xa4\x40\xf9\x49\x59\x82\xa8\x77\x9c\x56\xab\ \xf2\x10\x86\xe3\x00\x0f\x5c\x10\x04\x90\x0b\x0f\x63\x98\x01\x4f\ \x20\xb4\x50\x20\xb4\x7b\x90\x05\x1b\xb8\x0f\x67\x05\xab\x08\x5b\ \x62\xa2\xb8\x54\x72\x30\xa6\x18\x08\x6d\xb5\xb4\x73\xd2\x06\x05\ \xb2\x8a\x7c\x69\x6a\x5b\x87\x87\xb5\xb0\x83\x78\x17\x4a\xba\xb0\ \x23\x8f\x69\x96\x05\x63\xdb\x79\x1c\x4b\x82\x19\x00\x0f\x14\xbb\ \xb6\x62\x70\xb1\x59\x90\x0e\x37\xc6\xad\x75\x00\x05\x05\x60\x9e\ \x04\x60\x09\x38\xca\xbc\x75\xe8\x0e\xe6\x27\x07\xaa\x90\xbc\xde\ \xf6\x71\x4d\xfe\x29\x8c\x1a\x90\x8f\xde\xea\x07\xe0\x90\x3d\x62\ \x41\x76\x68\xf2\x20\xf9\xf7\x2d\x59\xfa\xb9\x7b\xd0\x81\x53\x22\ \xb9\xc8\x80\x0c\x53\x32\x0e\x41\xa0\x05\xd7\x89\x06\x68\xf0\x01\ \x8d\x09\x05\x50\xd0\xbb\x5c\xc0\x98\x59\x00\x5c\x7b\x9a\xa0\x92\ \xa7\x9c\x84\xf5\x6c\xea\x35\xab\xea\x44\x4e\xe8\xb4\xba\x88\x45\ \xa6\x5a\xb4\x0f\x7e\x05\xa6\x5c\x04\x05\xa2\x88\xb0\xcc\x77\x5f\ \xcf\x99\x05\x41\x40\x06\x99\x17\x0e\xd9\x17\x0e\x41\x20\x0f\xc6\ \x0a\xbc\x6e\x16\x04\xdc\x76\x7d\x99\x17\x04\xff\x68\x9e\x1f\xa7\ \x7d\x7a\xf8\xbc\x71\x80\x7e\x28\x60\x9e\x1f\x9a\x7d\x23\x77\x90\ \x75\x60\x99\xdc\x2a\x72\x2b\x5b\x87\x2e\xeb\x13\x4e\x01\x05\x4a\ \x18\x2d\xe4\xab\x28\x50\xb7\xa7\x32\xf0\x04\xe8\x3b\x86\x41\xa0\ \x06\xee\x3b\x0e\xd5\x30\x0e\x30\x00\x03\xee\xf4\x01\x68\x80\x02\ \xf3\xeb\x4e\x89\xf3\x04\xbf\xa5\x5f\xf5\x00\xb0\x94\x56\x69\xa2\ \xb8\xab\xd0\x97\x51\x5c\x96\xc0\x85\xa5\xba\xb5\x9b\xb9\x21\x25\ \xab\xec\x28\x40\xb0\xea\x0b\xab\xcb\x03\x44\xe5\x78\xf1\x6a\xbf\ \xf3\x18\x6a\x1a\xf7\x81\xac\x08\x0f\xb8\x20\x0f\x59\xa0\x0f\x76\ \x0a\xc2\xfe\xc1\x8b\xb1\x59\x90\x08\x62\xb0\x8a\x72\x68\x9e\x96\ \x80\x99\xc9\x71\x90\xee\xc0\x0b\x05\x10\x07\x31\x78\x95\xcb\x9b\ \xc2\xd6\x5b\xc3\xd9\x4b\x9d\x2c\x3b\x72\x76\x68\x90\x65\xc1\x0b\ \xcc\xe9\x2d\x15\x88\x30\x75\x92\x78\xbd\x2b\xb9\xd5\x10\x04\x30\ \x10\x04\xd5\xf0\xc4\xd5\xb0\xca\x4f\x2c\xbf\x53\x9c\x02\x28\xf0\ \x01\xd7\x09\xc5\x68\x90\x05\xa7\xc8\x6d\xf3\x48\xc4\xbe\xba\xab\ \xf8\x25\x03\xe8\x44\x78\x0d\x07\xb6\x26\xa6\xba\x74\xbc\xab\xb2\ \x9a\xcc\x0b\x4c\x85\x0f\xcc\xb4\x13\x5a\x8e\x32\xb0\xa6\x5a\xbc\ \xa7\x50\xe0\xb8\x84\x97\x05\x59\x00\x05\x36\x06\xc8\xc5\xfb\x01\ \x72\x60\xc1\x6c\x96\x08\xfd\x98\x87\xb8\x38\x7a\xfa\x80\xad\x90\ \x4c\xad\xe0\x50\xbd\x2c\x4b\x9d\x2a\xdb\xad\x38\x0c\xb2\x29\xcb\ \xc9\xe2\x9a\x02\xa6\x4b\x9b\xb2\x72\x42\xcf\xe7\x5b\x4f\x90\x38\ \xf0\x00\x03\xff\xfc\xcf\xb5\xfc\xc4\x06\x00\x03\x0e\x90\x02\x7f\ \x90\x02\xb1\x8c\x02\x7a\xf0\xc4\x7a\xf0\x04\x31\x30\x07\x73\xf0\ \x01\x42\xbb\xbf\xfb\x2b\x03\xfc\x8b\xd1\x0c\xb7\xab\x4f\xf0\x69\ \x19\x87\x5f\x21\x75\xb9\x22\x0d\x05\x00\xbb\x07\xc9\x7c\xc0\x0c\ \xdc\xfe\x0a\x10\xfc\xaa\x07\x4b\xa6\x76\x82\x93\x31\x96\xcd\xc0\ \x05\xcc\x50\x90\x5f\xf5\x20\x0f\xc4\xcb\xcd\x37\x16\x04\x19\x97\ \x01\x97\x39\x0e\xb8\xa8\x06\x1a\x90\x0e\xfa\x70\x7e\xbb\x58\x7e\ \xbd\x10\x07\xfa\x80\xc2\xce\x6b\x90\x1f\xa7\xb2\x23\xf7\xa1\x21\ \xfb\xb1\x06\xe9\xb7\xe7\xc6\x13\x8a\x10\x0a\xa3\x5b\x81\xea\xa8\ \x2d\x75\xe2\xcb\xf6\xdb\x81\x63\x08\xc5\x4f\xcc\x0b\x28\xe0\x00\ \x28\xf0\x07\xbc\x60\x00\xd5\x60\x00\x06\xc0\x07\x7f\x60\x00\x7f\ \x30\xd7\x68\xad\x07\x67\xad\x07\xb0\x3c\xc5\x95\xeb\x98\x1f\x80\ \xcb\x19\x87\xd1\x32\x30\x07\x32\x40\xd1\x4f\xe0\xd7\xbc\x1c\x52\ \x96\x5b\xb9\x8d\x99\xcd\x66\xcc\x45\x5c\x80\x33\x2a\xbd\xab\x66\ \x8c\x81\x12\x8c\x4e\x2f\x1d\xb6\x5c\xa0\x05\x35\xed\xb6\x7b\xd0\ \xb0\x28\xca\xcd\xe9\xb0\xbf\x1b\x47\x06\x4a\x8c\x8b\x4b\xe9\x07\ \xfa\x30\x07\x19\xab\x0f\x8e\xbc\x0a\x4b\xed\x0d\x1f\x37\xd5\x75\ \xf8\x03\xef\xd9\xa3\xcb\xeb\x9e\x34\xe8\x8b\x75\x18\xae\x1d\xa1\ \x08\x06\xa0\x9c\x9f\xa8\x28\xb0\x8a\x66\xbb\x8a\x02\xf0\x30\x0e\ \x6a\x50\x0d\x03\x3d\xd7\x7f\xe0\x00\x0e\x00\x03\xd5\x00\x0b\xd5\ \xfe\x60\x02\xb2\x50\x0b\x06\x60\x02\x0e\xd0\xdc\xd9\xfd\x07\x0d\ \x8d\xd7\x0d\xed\xd0\x5a\xf0\x04\xf3\x8b\xcb\x73\x80\xcd\x31\x90\ \x05\x31\x40\xd1\x8e\x19\xcd\x18\xad\x04\x32\x90\x05\x42\x4b\xd1\ \x50\x80\x06\x8b\xfd\x01\x3c\xd0\xd1\xaa\xfb\xd8\x0c\xcc\x03\x7b\ \x7a\xc0\x9d\x3a\x5b\xb0\xea\xab\x32\xc6\x05\x69\xb0\xb4\xef\x9d\ \x05\x53\xb7\x07\x6b\xa6\xd3\xa2\x49\x78\x1b\x17\x0e\xac\x68\xda\ \x4b\xf9\x03\xe5\x37\xe1\xee\x50\x87\xb0\xfd\xbc\x01\xf9\x9e\xef\ \x69\x90\x96\xa0\x79\x88\x5a\x00\xa3\x27\x8c\xee\xc0\xdb\x55\x81\ \x02\xcb\x29\x79\x07\xc8\x03\xf9\xa5\x04\x1f\xd0\xbb\xab\xec\xca\ \xbc\xe0\x00\x70\xad\xdd\x06\xe0\x48\xb5\x20\x0b\x7c\x50\x0b\xd6\ \x6d\x02\x8b\xf5\x07\x70\xcd\x07\x68\x30\xd7\xdf\xfd\xc4\x30\x60\ \xd7\x68\x90\xde\x52\xbc\xe4\x1f\x90\xde\xe2\xcd\xd7\x8e\x99\x05\ \x52\x5c\xb9\x68\x20\xde\x58\xcc\xd8\x95\xfb\x04\xb2\xca\xc0\xb5\ \xd5\x70\x3c\xb0\x0f\x06\x8e\xb0\x6e\xbc\x70\xf5\xb0\xa6\xc8\xbc\ \xb4\xd8\x7c\x66\xa7\xe8\xb6\x96\xc7\xe0\x3e\x89\x02\x59\x20\x0f\ \x6a\xa0\x06\x24\x28\x72\xee\x80\x9d\x6a\x80\xda\xbc\xf0\x03\xfe\ \xe0\xe0\x07\xde\x80\xc3\xa3\x67\x00\xa2\xf7\xb1\xb4\x0d\xb2\xa2\ \x99\xb2\xa4\xc7\x94\x7e\xf0\x03\x26\xbe\x11\x4e\x81\xe0\xd3\x7c\ \x29\x01\x24\x0f\x0c\xa7\x04\xf0\x6d\xe4\x46\xee\xd6\x7c\x90\x02\ \x70\xed\xdc\xb0\x10\x0a\xb0\x50\x0b\xd4\x5d\x0b\xa1\x60\x00\xb5\ \xc0\xe9\x3e\xce\x07\x45\xb0\x58\x7a\xc0\xdd\x7a\x60\xd7\x0e\x7d\ \xe4\x0f\x3d\xeb\x45\xf0\x01\x45\x20\xbf\x8e\x29\xbf\x54\x5e\xb9\ \xb3\x4e\xe5\xf3\x4b\xbf\x42\xab\xe5\x99\xcd\xc0\x06\x1e\x69\x5c\ \x34\xcc\xc6\xce\x03\x08\x0e\x6a\x45\x6c\xbf\x1f\x50\xc7\x32\xb6\ \xb8\x6e\xee\x93\x85\x0d\x05\x34\x06\xd4\xe6\xe1\x07\xd8\x99\x0e\ \xdc\x39\x7a\x79\xee\x9e\x06\xc0\x0b\xab\xc0\xe1\x7e\xdb\x94\x92\ \xfc\xd4\xc2\x58\xee\x8c\x2e\xae\xde\xd0\xd7\xb9\x2c\xd9\x01\xc4\ \x81\x5c\x40\x94\x89\xc3\xc4\x28\xc0\x0b\xd0\x5d\x0d\xb2\xc0\xe9\ \x7c\xe0\xe3\x26\xc0\xe3\xa0\x0e\xf0\xa1\x20\xea\x8b\x85\xdd\x26\ \x90\xea\x8b\x05\xd7\x45\xf0\xea\xd0\x9d\xef\x0e\x8d\xd7\x45\x50\ \x04\x31\x80\x06\xb7\x8e\x06\xaf\xae\x05\x5a\x00\x04\x19\xaf\x05\ \xaf\xfe\xd0\xbb\x5e\xb9\x41\x3b\xec\x60\x5e\xd3\x5f\x7e\xfe\xec\ \x96\x06\xe6\x2c\x2e\xe0\x26\xbd\xb3\xf6\x8b\xb1\x5a\x0c\xdf\x6a\ \xcb\xcd\x96\x40\xd2\x50\xe0\x81\x24\xb8\x75\x41\xe0\xed\xe9\xf0\ \x03\x82\x7e\xce\x49\xad\x94\x78\xb8\xb2\x98\x89\xbd\xb3\x4d\xe8\ \xc1\x38\xf4\x57\x2d\x4f\xee\x94\xe6\xef\x6d\xc4\x89\x33\x86\x92\ \x1b\x04\xe3\x80\x0e\x4c\xcc\x0b\x71\xcd\xd6\x3a\x9e\x02\xfe\x7e\ \xf0\xa4\x6e\x01\xa1\xf0\xf5\xa1\xce\xe3\x62\x5f\x0b\x0e\x40\xf6\ \x40\xc0\x07\x7a\xe0\xe3\x45\xf0\x07\xad\x2c\x0e\xad\x0c\x03\x40\ \xd0\xf1\x78\x1d\x03\x12\x5f\xf1\x19\xcf\x0f\x78\xaf\x07\x1a\xdf\ \xf1\x55\xee\xf1\xe1\x8d\xf1\x22\xcf\x05\x6e\x7b\x51\x84\x77\x0a\ \xaa\x7b\x78\xf8\x45\xdc\x2b\xaf\xe5\x9a\x1d\xd3\xfd\x9c\xd3\x0c\ \x1e\x0e\x7d\x8d\x02\x49\x2c\x72\xe9\x90\xe7\x6a\xd0\x7d\x8d\x5c\ \x00\x29\xd0\x0b\xb9\x4c\xad\x75\x08\x0e\x7e\x3b\xd5\xa3\xc7\x0b\ \x1c\x1e\xa8\xb8\x70\xe1\x06\x09\x0e\x65\x81\x02\x41\x2b\xe5\x97\ \x5b\xca\x4f\xdf\xc4\xe6\xd1\xca\xab\x8c\xef\x06\xa0\xe3\x09\x9f\ \xf0\x00\x6f\x01\xbe\x3f\xf0\xa4\xfe\xf5\xc0\x3f\xf6\x07\xaf\x07\ \x45\xc0\xe9\x0e\xd0\xf6\xb6\x2f\x0e\x7d\x00\x04\x40\xfe\x10\xf1\ \x12\x4f\xf7\x16\x0f\x04\x78\x9f\xf7\xaf\x2e\xde\x78\xcd\xeb\x4f\ \x80\xf1\xdc\xbf\x0f\x69\xb0\x0f\x85\xd5\x0a\x69\x70\x5f\xaa\xab\ \x05\xca\x9e\xb9\x67\xe6\xb6\x5a\xb0\xe5\xfb\x50\xd3\x19\xf7\x04\ \x52\x9f\x0c\xd3\xae\x06\xd8\x9c\xb6\x27\x2a\x9a\x6a\xe0\x0e\xd5\ \x10\x90\x28\x00\xc9\x4a\x90\x9e\x00\xc1\xcb\x0f\x38\x77\xee\xf4\ \xb9\xfb\xf1\xa3\x20\xaf\x82\x05\x0b\x14\xe8\x85\xa8\x57\x01\x84\ \x1a\x06\xfe\xc3\x98\x51\xe3\x46\x8e\x1d\x3d\x66\x54\x64\xe8\x09\ \x3c\x14\x4f\x9e\xa0\x40\x91\x01\x5e\x90\x6a\xfa\xaa\xa5\xf3\x96\ \x0e\x5d\x35\x18\x06\x60\x54\x33\x20\xcb\x04\x9f\x14\x3c\x7b\xf2\ \x31\x01\xcb\x42\x48\x0b\xa1\x8c\x86\xb2\x50\xd4\x68\xad\x50\x7d\ \x42\x39\xa8\xb5\x53\x0f\x1f\x20\xb5\xaa\xa1\x13\x07\x73\x97\xb7\ \x76\x0e\x80\x14\x29\x12\x43\x2c\x58\x34\x68\x80\xf0\xe3\x07\x44\ \x8f\x9e\xb2\x65\x9f\xe8\x79\xa2\x25\xae\x16\x2e\x5a\xf6\xa5\x49\ \x03\x65\x0f\x97\x34\x5c\xb2\xec\xe1\xb1\x8f\xcb\x1e\x19\x84\x65\ \xd4\xcb\xc2\x85\xcb\x93\xba\xfb\xa0\xc8\x90\x23\x23\xc3\xb8\x20\ \x35\xc4\x5c\xc6\x9c\x59\x73\x66\x78\x59\x64\xc8\xfe\x1b\x47\x20\ \xb3\x1f\x7d\x07\xdd\xf1\xea\xa5\x4a\x8e\x1c\x55\xbd\x56\xa1\x28\ \xb0\xca\x75\x01\x5e\xb1\x29\xfe\xd0\x60\x11\x75\xeb\x89\x3f\xfc\ \xf8\xd1\xa0\xe8\xe3\x70\xe2\x1f\x15\xd9\x0c\x32\x6e\x1c\xca\x93\ \xd5\x82\x04\x51\x83\x2e\x9d\x25\x4b\xd5\x70\x1a\x40\x67\xc0\x00\ \x1f\xee\x3c\x8b\xfc\x34\x81\xd4\x90\x22\xa5\xa1\xc8\x97\x3f\x2a\ \x2e\x54\x2d\x71\xb5\x6a\x01\x71\xf0\xc7\x81\x38\x6f\x96\x46\xd9\ \xb7\xd0\x07\xec\x7e\xfe\x66\xd1\xa6\x65\xab\x88\x0f\xdc\x7a\x2b\ \xae\xb9\xf6\xb1\xc6\x9a\xc1\xb4\xe8\x6b\x0f\x28\xee\xda\x67\x8f\ \xbf\x08\xab\x07\x8a\xba\x14\xa3\x0b\x0a\x25\xe4\x50\x62\x0f\x93\ \x2c\xd9\x2c\x44\xcd\x2c\xe1\x62\x0e\x19\xa0\x80\x47\x83\x54\x2e\ \xb3\x44\x83\x83\xd4\xf8\x01\x05\xd5\x56\x53\xa5\xc6\x5e\xe2\xe8\ \x05\x36\x14\x72\x2c\xc0\x37\x0d\xbc\xf1\xc3\x9d\x19\x55\xc1\xc5\ \x37\xe0\xfc\x28\x2e\x49\x25\xff\x51\xa4\x1a\x78\xd2\x49\x47\x0d\ \x18\x50\xd2\x87\x25\x35\xa0\xa4\x2e\x3a\xeb\xd0\x81\xa5\x16\x5e\ \xb8\xeb\x29\x05\x31\x81\x32\xa1\x96\xa4\xc8\x43\x33\xa9\xa3\xd2\ \x43\xca\x02\x43\xda\xa9\x85\x0f\xb0\x1c\xa8\xfe\x86\xba\xcb\x46\ \x11\x47\xad\xb5\x8a\xd0\x23\xac\xb0\xd6\xfa\x4f\xcf\x0f\xc2\x1a\ \x10\x0d\x93\xb4\xa0\xcb\xae\x34\x5c\xc8\x8b\x8b\x67\x06\x0b\xac\ \x41\x1e\x06\xfb\x2b\xae\xba\xb4\xd0\x4b\x89\x7a\x56\x53\x22\x0b\ \x2d\x3c\x10\x31\x54\x31\xc2\xf9\x40\x06\x53\xb3\x40\x41\x1f\xe0\ \x34\x50\x23\xc8\xd3\x7a\x59\x2d\xd6\x1a\x71\x6c\xa8\x36\x86\x72\ \xd3\xc0\x9d\xd4\x56\x43\x44\x55\x8b\x1e\xb8\x68\x49\x61\x3b\x0a\ \x29\x9d\x6a\xc6\x31\x16\x25\x14\xaa\x51\x23\xba\x98\x60\x42\x27\ \xda\x68\x71\x32\x21\xcc\x14\xbe\xeb\xae\xcc\x36\xc9\x1b\x4f\x29\ \xa6\xca\x4b\x6a\x94\x32\x0c\xf9\x6a\x8e\x18\xf8\xb4\x80\x3a\x4b\ \xca\xc8\x93\xcf\xb5\xfa\xe4\xef\xdd\xb3\xd4\x42\x23\x86\x0f\xec\ \xfd\x00\x8a\x43\x1b\x4b\xe3\x19\x6b\x78\x08\x8c\x8b\xc2\xf6\x71\ \x6c\x52\xc5\xa0\x98\xd4\x2e\xc1\x3e\xd8\x30\x56\x19\x9e\x98\x44\ \xd4\x50\xe1\xf9\x20\x8b\x86\x3f\x28\x20\xd5\x1f\xae\x8c\xb1\xc6\ \x58\x63\xed\x85\xa1\x86\x1a\x02\x2e\x1d\x5d\x69\xa4\x48\x45\x8b\ \xea\xa8\x43\xb8\x61\x5f\x06\xc9\x10\x63\x61\x80\x81\xa5\x54\x5f\ \xba\xb2\xbe\x67\x67\x9a\x29\x94\xed\x7c\xfe\x12\xf3\x27\x3e\xdc\ \x33\x6a\xa8\x6e\xd7\x5b\xf3\x28\x6f\xca\x28\x43\xdc\x50\x62\x50\ \x22\xea\x18\xaa\x69\x67\x94\x51\xda\xe9\x43\x4e\x3d\x4c\x00\xe2\ \x2b\xfe\xf6\x3b\x8b\x9f\x3e\xed\x9d\x23\x8b\x0f\x3e\x30\xe9\xc2\ \x7d\xec\xb2\xe6\xb1\xc1\xea\x91\x81\x07\x28\x4e\xb1\x50\x31\x2e\ \xee\x4a\x23\x41\x2d\x20\x8b\xcc\x33\x28\xd2\x00\x41\xe2\x10\x49\ \xcc\x02\x0a\xcf\x64\xf8\x20\x03\x2a\x15\xd2\x67\xc6\x8f\x55\x89\ \x03\x85\x86\x0c\x68\xc8\x48\x77\x76\x54\x45\x86\x1e\x53\xe1\xdc\ \x8f\x1f\xea\xf8\xc1\x65\x98\x87\x55\x84\x3c\x18\xf4\x41\x81\x97\ \x6a\x7e\xb0\x2e\x3a\x98\x74\x9e\x96\xcb\xec\x7e\x0e\x3a\x86\x31\ \x81\xaa\x45\x96\x6f\xc9\x5b\xcf\x3d\xa6\x98\x42\x4a\xdc\x75\x0d\ \x09\x45\x8f\x39\xcc\x8d\x81\x8f\x50\xc4\xb1\xa0\x3d\xb5\xba\xee\ \x1a\xde\x3d\xfb\x84\xb7\x88\xe3\x95\x38\x3e\x0b\xb3\xf5\xbd\x9b\ \x0b\x80\xbd\x2f\x0c\xb2\x7a\xf6\xd8\xf0\x14\x07\xef\xc6\x2b\x6f\ \x6b\x1c\x33\xd5\x42\x93\x9c\x10\x3c\xc4\x71\xf2\x65\x0c\x0a\x79\ \x36\x56\xa3\xb4\x96\xe2\x68\x98\xc6\x1c\x0b\x5a\x85\x69\x48\xf6\ \x1b\x87\x48\x0e\x37\x16\xf1\x03\xcb\xfe\xdc\x21\xba\xd1\x09\x2b\ \x24\xa9\xfb\xc3\xe9\xa6\xc5\xba\x68\xc1\x04\x5a\x57\xb9\x8a\x01\ \xaa\x01\x8b\x9f\x88\xe9\x3b\x45\x20\x93\x09\x44\xd8\xa6\xde\xf9\ \xae\x68\x4d\x2b\x83\x25\x0c\xf1\x1e\x20\xc8\x89\x4f\x5c\x13\x47\ \x1f\xc4\x21\x0e\x00\xe9\x01\x7a\x7a\x7a\x17\x9f\xc0\x22\x96\xa8\ \x71\xaa\x53\x85\x9b\x14\x14\xf4\x52\x98\x3d\xac\x66\x53\x72\x38\ \x62\x64\xf6\x72\x37\xc1\xa0\xaf\x89\x88\x42\x94\x13\x92\x11\xbf\ \xcc\xa4\xc3\x70\x5a\x48\xce\x73\x9a\x15\xa3\xd2\xf4\x82\x6f\x4a\ \x68\x0d\x0a\x7e\x00\xa4\xcb\xad\x02\x80\x14\x49\x47\x2a\x2c\xe2\ \x0e\xcf\xad\x2a\x81\x75\x70\xc7\x43\x18\xd8\x40\x25\x29\x02\x1d\ \x7f\x40\x89\x06\xdd\x91\x0e\x70\xa0\xc3\x0f\xe8\x70\x96\x37\xa4\ \x95\x9d\x0d\xe6\x84\x27\x3e\xb1\x9d\xd0\xb8\xa3\xad\xa5\xf8\xce\ \x3d\xe9\x52\xd7\x0a\xfd\x74\xae\x32\xcd\x30\x14\x40\xe8\x43\x2d\ \xfa\x10\xbd\x1b\xe6\x70\x2d\x65\x11\xcb\x1c\xfa\xe7\x30\x07\xed\ \x61\x0f\xf5\xd8\x14\x2a\x47\xd9\x3f\xb8\x01\x86\x0b\x42\xfc\x9b\ \x0b\x6a\xf0\x05\x27\xac\x8d\x6d\x11\xa3\xe2\x65\xb4\xa0\x84\x0f\ \x04\x21\x1c\xe1\x48\x44\xfe\xe4\xfe\xa1\xbd\x5e\x7c\x40\x15\x0d\ \x9b\x88\x3e\xa6\x43\x00\x6f\xc4\xb1\x17\xbd\x88\x23\x1b\x39\x97\ \x8a\x20\xad\x4a\x8d\x3f\xd0\x07\x44\x7a\x61\x80\x39\xd2\x91\x38\ \xa5\xe3\x85\x3e\x78\x11\xce\xab\xf0\x31\x3a\x83\x94\x56\x06\x0b\ \xe9\x00\x3e\xac\xc2\x3b\xd7\xba\xd6\x22\x71\xe7\x1e\x11\x3a\x32\ \x14\x86\x88\xe4\x57\x62\x20\xca\x39\x14\x41\x86\xe2\x70\x00\x3f\ \xde\x93\xc9\x4c\x76\xd2\x93\xef\xaa\xd7\xf1\x44\xf9\x31\x25\x1c\ \xe6\x63\x0f\x85\xa8\x11\x4d\x35\x3e\xbe\xb8\xe0\x05\x17\xfd\x02\ \x14\xd7\x06\xbf\x5c\xa6\xa3\x7d\xc8\x70\x82\x1a\x28\x83\x82\x86\ \x81\xb1\x7f\xd0\xf4\xc6\x8a\x5a\xf4\x03\xd9\xb8\x86\x8d\x7e\xe0\ \xdc\x1a\x57\xa5\x81\x18\x79\x71\x43\xb0\xf0\xa6\x03\x0d\xf1\x1a\ \x72\x82\xe3\x75\x03\x81\x16\xcf\xa6\xa5\x9d\x71\xf2\x22\x4c\x3e\ \xc1\x56\x77\xc8\x14\x95\x32\xd1\x33\x78\x4c\x7b\x5a\x28\xcd\x85\ \x2e\x80\x02\x81\x6b\x40\x88\x61\x0c\xfb\xb0\x55\xaf\xc5\x8b\x2d\ \xf5\xba\xd7\x1c\x3e\xb0\xd0\x88\x96\xb5\xac\x0d\xdd\xc7\x33\xbe\ \x50\x83\x1a\x5c\xb4\x06\x89\x22\x18\x47\xe3\x47\xaa\xc8\x60\x11\ \x1e\x4f\x30\xdb\x17\xb5\x17\xfe\x2b\x25\xe8\x43\x03\x96\x50\xe3\ \x1a\x0b\xd0\x1a\x77\xc4\xf4\x48\xc0\x51\x23\x69\x76\xc5\xa9\x50\ \xe4\x74\x49\xc7\x19\xa7\x06\x7d\xea\x8d\x98\xf4\x91\xb2\xd1\xd2\ \xe0\x4c\xb4\x63\x80\x71\x2a\x35\x68\xf1\xe4\x4e\x11\x44\xd8\x54\ \x47\x9a\xc0\x02\xe2\xb2\x00\x10\xa0\xc6\xcf\x73\xe9\x81\x3d\x00\ \x5d\x4b\x55\xb6\xea\x94\xad\xbe\xe7\x6b\x45\x40\xc3\x57\x09\x75\ \xb6\x8a\x7d\x80\x30\x66\x05\xae\x12\x5b\x61\x0d\x17\xb8\xe0\x0b\ \xc7\xad\xc1\x24\x30\xc5\x17\x06\x81\x4a\x70\xe1\x78\xc2\x86\x3e\ \xa0\x05\x78\x3c\x46\x53\xd7\xcd\x51\x2f\xb2\xc0\x1a\x14\xf8\x01\ \xb0\xd5\x0c\x52\x38\xd9\x48\x80\x95\xbe\xb4\x64\x3f\xe0\xdf\xc7\ \x64\xe1\xd8\xc7\x8e\x53\x1f\xd8\x81\x09\x38\x2a\xcb\x47\x6f\x80\ \x63\x4b\x98\xed\x6c\x51\x53\xf0\x25\xa0\x29\xb2\x9e\xa4\x2d\x93\ \x21\xc4\xd5\x07\xb2\x4a\xcd\xb5\x33\xac\x86\x55\xbb\x26\xc3\xa6\ \xf0\x83\xab\xfa\x3c\x57\x6b\xd9\x72\x36\xb1\xc4\x60\x7b\x42\x2c\ \x62\x70\x23\x3a\x3e\x0b\x11\x2c\x6f\x4e\x30\xae\x0b\x30\x85\x28\ \x2e\x58\x23\x7e\x20\x78\xc2\x61\x1e\x84\x0c\x2d\x30\xac\xa1\x85\ \xcb\x58\x36\xe7\xa0\x8a\xfe\x0f\xb0\x71\x8d\x23\x43\x08\x62\x6f\ \x8c\x10\x23\xc9\xe8\xa1\x7c\x60\xaf\x92\x0c\x11\x59\x77\xc8\x17\ \x4a\x7d\x7c\x9d\x7c\xfb\x78\x1d\xce\xee\xd7\xa8\xbc\xf8\x83\x52\ \x3f\x28\xa7\x10\x8e\xb6\x4c\xe1\xb9\x8f\x25\x9e\xd6\x3f\x25\x14\ \x81\x3d\x05\xed\x9a\x26\x9b\xb7\x89\x18\x42\x0f\x2c\xc8\x23\x0b\ \x1a\xd2\x7c\x2f\xed\xa1\xcd\x70\x49\x1c\x65\x70\x4d\x75\x3e\xbe\ \xe4\xad\xb8\x23\x16\x8c\x35\x9c\x2b\xaa\x20\x78\xe6\x09\xc8\xa8\ \xc1\x38\x5a\xfc\x17\x79\xc8\xe3\x03\xbd\x80\xc2\x33\xc1\x98\x2a\ \x01\x52\xee\x37\x8f\x2e\x48\x42\xdc\x01\xc7\x48\xeb\x23\x0e\x0f\ \x9d\x43\x37\x83\xcc\x11\x45\x80\x63\xb3\x80\x54\xb2\x1a\xc0\xa1\ \xe4\xcb\xf6\x91\xa8\xab\x48\xc1\x2a\xfe\x00\xe5\xa2\xee\xe4\xa8\ \x8b\xb4\xb2\x09\xb6\x66\xda\x32\x88\x41\xcb\xd6\xeb\x61\x0c\xb0\ \xda\x0e\x71\xac\xe5\x3d\xcb\xfb\xe7\x0c\xbb\xb6\xc3\xb1\x9c\x0b\ \xb7\x68\x18\x94\x80\xc8\x66\xb6\x53\x6a\x38\xb8\x74\x53\x4c\xde\ \x9e\xc1\x28\xba\xc4\x75\xcf\x22\x9a\x84\xc5\xf6\x60\x8d\x64\x84\ \xc3\x09\x78\x3d\x11\x0a\x0c\x2d\x03\xd5\x98\x54\x06\xbd\x48\x81\ \xe4\x48\xd6\x2a\x57\xfe\x15\xc0\x34\x70\xc4\xe6\x6e\x30\xbd\xe9\ \xe2\x74\x1a\x16\xda\x41\xc7\xa8\xe7\x9b\x64\x3e\xce\x6e\x9c\x62\ \x5a\xf5\xaa\xf9\xc0\x0b\x07\xc8\x02\x4c\x20\x04\x8a\x52\xa7\xf2\ \x42\x7c\x5a\xc2\x1b\x61\xd9\xe7\xf1\x8a\x20\x8e\x76\x58\x20\xc1\ \x36\x64\x4f\x53\x64\x88\x35\xb5\xec\xa7\xd8\xc7\xc6\xad\xbd\x04\ \x54\xb6\xbc\x6e\x2a\xce\xce\x96\x68\x87\xfb\x75\xdc\x2f\x24\xc8\ \x5f\x2e\x90\x58\x3a\xb8\x00\x37\x2e\x20\x23\x19\x4e\x08\x82\xe1\ \x10\x97\x01\x7d\x0c\x93\x35\x32\x88\x1a\x18\x27\x22\x32\x1f\xb9\ \xaa\x20\xb8\x70\x07\xd2\x11\xa2\x8f\xc5\x7e\x0c\xa7\xf4\x36\x8e\ \x22\x60\x31\x6a\x03\x8c\x3a\xbe\xa3\xd6\xf7\xa8\x87\xfa\xef\x74\ \x3b\xd9\x00\x05\x67\xa7\x52\x77\x62\x02\x10\x52\x0f\x2c\xb5\x40\ \x2d\xae\xa7\x5a\x04\xac\x7a\xc3\x79\x5b\xc3\x24\x6d\x65\x08\xbd\ \x3d\x55\xf8\x5c\x6d\x81\xb8\x58\x2d\x5c\x36\xbe\x01\xf7\xe4\x0f\ \x35\x25\xfa\xd4\x5a\x03\x68\x24\xd7\x05\xd3\xbe\xb6\x66\xbe\x10\ \xdd\x13\x2d\x2a\x1c\xd6\xc8\xc0\x13\x0c\x97\x05\x95\x64\xe0\x99\ \x59\xc8\x9c\x2a\xb2\x30\x87\x67\x92\x0c\x81\x0d\x51\xa0\x3b\xe4\ \xb1\xf4\x4b\x43\xfe\x54\xd3\x50\xc7\x48\xe9\xc0\x31\x75\xac\xeb\ \x3b\x26\xf5\xed\xb7\x66\x9b\x8c\x02\x54\x7f\x69\xd5\x26\x30\xa4\ \xd8\xe5\x44\x76\xa9\x80\x25\x14\x4c\x03\x42\x49\xd9\xce\x1e\x0b\ \x70\x3c\xb6\x40\xd0\xb8\x0c\xb9\xba\x49\x08\xef\xb3\xb5\x79\x17\ \xcb\x58\x4d\x85\xc4\xbf\xa3\x7c\x35\x27\xe2\x8b\x35\xd6\xfa\x0a\ \x68\x40\x63\x12\xd6\x70\x42\xe2\x31\x93\x8c\x27\xac\x86\x07\xd3\ \x76\x01\x32\xd2\x40\x17\xc9\xfb\xad\x00\x4f\xd0\x66\x31\x9f\xc9\ \xa3\x82\x3c\x5a\x21\x95\x4b\xfa\x41\x50\xe7\x38\xbe\x9e\x1e\xf5\ \x21\x69\x3d\xac\x4b\xb2\xfa\xea\x23\xcc\xc2\x09\x5e\x40\xb5\x3f\ \xf8\x83\x14\x58\x35\x59\x88\x32\x3e\x30\x38\xa5\xa2\xb2\xa9\x20\ \x3b\x10\x6a\x07\xfb\xe0\x05\xbe\x2a\x82\xe5\x69\x07\x5e\x93\x35\ \xb6\x8b\x3b\x4d\xd2\x38\x4c\xea\x40\xd5\x52\x28\x63\xf3\x38\xb1\ \x70\x0b\xb4\x91\x3c\x0a\xb1\xbe\x8f\x69\xa5\x0e\x23\xae\xb5\x82\ \x86\x57\x78\x06\x2d\xd0\xb3\x10\x71\x82\x52\x29\x8c\x34\xf8\x82\ \x70\x78\x86\x34\x08\x02\xc1\x80\x82\x52\xe1\x90\x73\xfb\x80\x1d\ \xc9\x82\x1c\xd1\x91\x68\x22\xa0\x86\x78\x08\x38\xa2\xb4\xc6\x29\ \x29\xfe\x51\xfe\x02\xff\x83\xba\xd2\x31\x04\x70\xe8\xb4\x00\x04\ \x87\x1f\xb9\xac\xab\x70\x87\xec\x18\xa7\x05\x34\xaa\x28\x13\x38\ \xfe\x3a\xa4\x78\x12\x21\x32\xd9\x9a\x5a\xa8\x35\x4b\x10\x07\xe1\ \x6b\xbb\x76\x48\x30\x10\xd4\x24\x4c\x8a\xbb\xaa\xd8\x85\x5d\x68\ \x07\xd5\xc2\x9e\xb1\x68\x8b\xb6\x58\x0b\x2d\xe0\x07\x44\x21\x18\ \xbd\x78\xc1\x8f\x29\x0c\x2e\x68\x85\x7e\x29\x2e\xb6\x7a\x01\x68\ \x70\x82\xba\x98\x22\xcd\xe8\x84\xed\x3a\x11\x04\x29\xae\x52\xb8\ \x8b\x20\x00\x37\x53\xd9\x10\x25\xe8\x05\x79\xd8\x91\xff\x89\xa6\ \xfa\x03\xbd\x38\x3a\x08\xdc\xf8\x0d\x5e\x70\x9c\x5e\x80\x01\xd5\ \xc0\x42\x7a\x2b\x1d\x7b\x0b\xc0\xfa\xa2\x2c\xad\x9b\x89\x7b\x23\ \xaa\x74\x53\xb5\x81\x13\x46\x30\x39\x24\x17\x0a\x21\x0a\x4c\x17\ \x5b\x13\x87\x7d\x92\x1a\x20\x28\xbe\xf6\x90\x17\x3d\x94\x2d\x82\ \xda\x85\xab\x31\x9e\xe3\x69\x2d\xba\xeb\x1a\x7e\xe8\x84\x6e\xec\ \x04\x12\x9b\x9b\x24\xd2\xb0\xfe\xa1\x9b\xbb\x50\xab\xb5\x7a\x81\ \x57\x78\x01\x0f\xa8\x81\x27\xf8\x00\x5c\xba\x8c\x64\xd8\x1b\x0e\ \x89\x25\x17\x28\x85\x67\xf0\xc4\x21\xcc\x00\xc3\xc9\x17\xcf\x90\ \x83\x5e\xfe\x38\x08\xd8\xf0\x0d\x83\x10\x20\x85\xf8\x9c\xca\x39\ \xac\x02\xe8\x9f\x38\xd0\x07\x39\x90\x85\x5a\xdc\x34\x00\x64\xbd\ \xd6\xf3\x03\x20\xf1\xa9\x25\x93\xbd\xa2\x0a\x46\x56\x83\x40\x09\ \xec\x89\xef\xb0\xb2\x3e\xa9\x05\x01\x1b\x05\x6f\xa8\x05\x62\x3b\ \x30\xaf\xd0\x13\x3e\xb9\xa1\xd9\xda\x2a\xab\xd1\x0f\xe7\xe3\x93\ \xff\xa0\xc9\x4e\xe8\x83\x4d\xf8\x46\xb9\x68\xc1\x89\x7a\xc1\x46\ \xbc\x0b\xe3\xaa\xc1\x8b\x12\x83\x57\xf0\x00\x4c\x49\x83\x57\xb8\ \x8c\x49\x88\xae\xd5\xd8\x03\x2d\x38\xae\xc3\x2b\x85\xbe\xd8\x87\ \x20\x48\x83\xea\xda\x83\x7c\x99\x88\xee\xa2\xa9\x3d\xa2\xa6\x48\ \xc3\xa6\x82\x90\xc2\x3a\x50\x99\x47\x2b\x3d\x4e\x99\x03\x39\x78\ \x3a\xd4\x23\x96\xd5\xcb\x45\x2f\x2c\x40\x0d\x22\x2a\x28\x53\x40\ \x06\x14\xc6\x2f\x89\xc0\xee\x40\xb8\x58\x3b\xad\x71\x01\x02\x6c\ \xe4\x93\xa6\x88\x1e\x1b\x8a\xc6\xb8\xd3\xaa\xaa\xd9\x05\x71\xf0\ \x93\x99\xe4\x46\x9c\xec\x03\x6e\xec\x83\x6e\x44\x0b\x93\x80\x25\ \xb9\x99\x33\xe0\x9a\x3e\x9a\xbb\x0b\xe2\x92\xc4\x74\xc4\x0c\x68\ \x58\x3f\x59\x9a\x04\x0d\x89\x8c\x27\xe8\x97\x67\x30\xcd\xa8\xb4\ \x8b\xfe\x20\xc0\xb9\x7d\xd8\x47\xb3\x31\xc5\x1e\x49\x07\x15\x49\ \xac\x1c\xf3\x03\x5c\x88\x42\xd0\xd1\x00\xd1\x40\x20\x74\xe8\x85\ \x38\x53\x82\xc6\x52\x4b\x4e\xeb\x42\xb7\x1c\xb5\x22\x83\x96\x31\ \xdc\x2c\x5e\x48\x1d\x55\x7b\x32\xee\xb8\x4b\x59\xd0\x89\x6c\xb1\ \xb2\x91\xa4\x8e\x32\xd0\x03\xa9\xf1\x32\xe6\x69\x21\x10\xe4\xa4\ \xd9\xa2\xb8\x3e\x68\x87\x6a\x1c\x85\x8e\xc3\x2d\x3d\x70\xb0\x4d\ \xd8\x84\xc6\x74\xb0\x9b\x7c\x4c\x44\x49\x1b\xba\xe0\x01\xc0\x80\ \x82\x7a\xa8\x3e\x0e\xf3\xc9\x69\x43\xc7\x8b\x7a\x05\xa4\xbc\x8c\ \x17\xd0\x9b\xc7\x90\x83\xc4\xe8\x17\x6b\x28\x85\xa8\xb4\x86\xf5\ \xcb\x9b\x20\xc0\xa2\x71\xa0\x98\x25\x7c\x26\x31\x8a\x4d\x02\xaa\ \x03\xe0\x50\x08\x8a\x60\x99\x07\x90\x4d\x04\xf2\xb1\x87\x5a\x85\ \xe0\xec\x88\x2d\x24\x4e\xb7\x24\xa4\xb8\x7c\x32\x05\x8c\x32\x35\ \x94\x40\xb1\x8b\x0a\xa6\xa8\x35\x5b\xab\x86\xa8\x61\xbb\xe6\x69\ \x97\xab\xda\x2a\xb4\xd8\x38\x5e\xeb\x40\xab\xd9\x85\x3e\xe8\x13\ \x3d\x59\x4c\x9b\xec\x84\xf5\xc4\xc9\x43\x84\x0b\x4b\x11\x8c\x44\ \x44\xa5\x53\xe8\xbb\x92\xda\x83\x44\xe4\x81\x45\x91\x44\x68\x10\ \xfe\x4a\xfe\x1c\x4a\x11\xfb\x00\xfa\x6c\x4a\x04\x49\x83\x52\xb0\ \x06\xd3\xf4\x97\xf5\x83\xa2\x0c\x78\x0e\x92\xa2\x4f\x80\x5c\x15\ \x6c\xd2\x07\xd0\x79\x80\x83\xc4\x85\x3a\x58\xd3\x47\x1b\x08\x4b\ \x8b\xa8\x14\xf0\xd0\x8d\x08\x89\x2d\x04\xd1\xd6\x93\x16\xad\x5b\ \x32\x12\xdd\x2f\x05\xfc\x12\x8e\x44\x51\xb1\xfb\xaf\x50\x00\x91\ \xcb\x40\x87\xb3\xab\xb8\xac\x01\x0b\x1b\x72\xc9\x19\xea\xc0\x0e\ \xdc\x04\xf1\xdc\x05\xb1\x79\x17\xf3\x74\xcc\x20\x3d\xcf\xc7\x3c\ \x44\xf7\x4c\x94\x7e\xd9\x87\xf8\x14\xa2\xbe\x5b\x0d\x25\xdd\x83\ \x45\x09\xc2\x34\x70\x82\x2f\xd0\xcf\x8b\x4a\x47\xa4\x7c\x81\xc5\ \x83\x8c\x4e\xd9\x87\xe2\x32\x4d\x5b\x2d\xae\xf5\x59\x3f\x50\x2c\ \x42\xbc\xda\x10\x80\x54\x11\x31\x48\x05\x6c\xb2\x50\xd0\x61\x99\ \x63\xa5\x34\x36\x3a\x19\x88\xca\xb4\x3a\xd5\x88\x3b\xc5\x53\xac\ \x9b\xba\x7c\x53\x83\xfa\x9a\x09\x4f\xe3\x2c\x04\x44\x01\x31\x61\ \xb5\x13\xed\x48\x83\xbb\xcb\xa5\x62\x2a\x43\xc5\x8c\x32\xa8\xb8\ \xad\xe8\x35\x3f\xc1\x38\x19\x22\x33\xf4\x0c\x4f\x3f\x14\xcf\x4d\ \x78\x1e\x1f\xe5\x87\x21\xfd\x0f\xf4\xd4\xd4\xb9\x88\x0b\xe2\xfe\ \x72\x81\x7d\x78\x02\x83\x69\xb6\xeb\xb3\x90\x27\x5d\xab\x1a\x28\ \xae\xfc\x14\xca\x8b\x12\xb1\xed\x8a\x8c\xba\x98\xc1\xe2\x3a\xbc\ \x69\xf3\x17\xf0\x1b\x07\x6b\x88\xae\xa8\x29\x1b\xb1\x2a\x2c\xd1\ \xe8\xca\x02\x40\xba\x36\x7d\x00\x37\x3d\x56\x49\x3b\x8d\x63\x62\ \x56\x67\x7d\x56\x43\xc8\xd3\xd6\xab\x06\xac\xab\x2f\x26\xcb\xd6\ \xda\xdb\xaf\x3f\xe5\x05\x59\x00\x3b\x83\x33\x81\xe8\xac\x27\xdf\ \x31\xad\x43\x5d\x17\x71\xd9\x85\xfc\x80\x38\xee\xdc\x2a\xf4\xbc\ \xc9\x77\xed\xc3\x3e\xe4\xa4\xb4\x08\x1b\x9b\xfc\x0f\x9b\xc4\xc9\ \x6f\x04\x02\x43\x64\x90\x49\x68\xb9\x26\x52\x0c\x1e\xe8\x3b\x19\ \x60\xa2\x45\x71\x55\x83\xdd\x4c\xb7\xd2\x02\x86\xed\x90\x12\x3b\ \x58\xe3\xfa\x02\x88\x35\x4d\x90\x72\x02\x41\x2b\x3f\x0e\x31\x9b\ \x8c\xe1\x4a\xce\xc1\x26\xa5\x43\x56\x37\x5d\xd3\x81\xac\x0d\xfe\ \x8b\x95\xb4\x74\x56\xd5\xe3\xc2\xc0\x1d\xb5\x89\x54\x32\xb8\x3c\ \x40\x54\x4b\xb5\xe6\x94\x05\x82\xb3\xd9\xc6\x1d\x2d\xf7\x80\x85\ \xa3\x10\x21\x0b\xc8\x8c\x14\x1a\x85\xe6\xa9\x85\xb1\x61\xc9\x6d\ \x74\x49\xa4\xc5\x9a\x4d\xb2\x21\xb4\x68\x5a\x7b\x5d\xcc\xfe\x49\ \x18\x52\x28\x72\x82\x49\x98\x04\x27\x48\x83\xb5\x21\x18\xc1\xe0\ \x9b\x0a\x19\xae\xc3\xb3\x28\x57\x85\x86\xfc\xac\x81\xbc\x98\x55\ \xae\x5d\x94\xa7\x64\x39\x96\x53\x06\xd3\xfc\x41\xd6\x6d\x4d\xed\ \x39\x09\x94\xb0\xb1\x95\x41\xba\x0b\xbd\x5b\x60\x21\xa0\xd4\x28\ \xa9\x51\x94\x03\x88\x0c\xb2\xd2\x21\x5c\xb6\xf4\xb4\x3e\xd2\xba\ \xcd\x8a\xd9\xa0\x41\xc0\x40\x95\x85\xcd\xaa\x05\x03\x18\xdf\xf1\ \x85\x85\x6a\x08\x05\x74\x48\x0a\xf7\x68\x51\x16\x29\x49\xba\x6b\ \xd4\x4b\x3d\x8b\xd9\x9a\xd4\x1d\x05\xdd\xd0\x0d\x94\x7a\x85\x4c\ \xb4\xe8\x84\x4d\x50\xdd\x6f\x3c\xc4\x4e\x50\x5d\x17\x38\xd0\xd7\ \x6d\x22\xc3\xe0\x5d\xe3\x9a\xa5\xb6\x4a\xc7\x8b\x9a\x04\x46\x31\ \x9c\x23\xac\xa8\xb4\x45\xdb\x82\xad\x01\x11\x78\xca\x83\x65\xb1\ \x43\x81\x87\x95\x20\xc8\x20\xf0\x83\x70\xd0\x80\x90\x4d\xd3\x07\ \x30\x61\x60\x09\xd9\x84\xf8\x8d\x66\x3a\xcb\xc7\x59\x8d\x66\x45\ \x59\x26\xc1\xde\x00\x9c\xba\xaa\xcb\x37\x77\x80\xcb\x6c\x4d\x81\ \x38\x48\x35\x31\x71\xa7\x81\xd3\x89\x9c\x20\x5f\x03\x80\x05\xf5\ \x48\xdf\xa4\x28\x0a\x74\x68\x5f\x31\x60\x9a\x82\x4a\xfe\x30\xba\ \xb3\xa1\x96\x04\xcf\x5d\xd8\x04\xb1\x29\xcf\xb3\x08\xd2\xa9\xfd\ \xd1\x00\xee\x04\x27\xd8\x04\x27\xe8\xd4\xd4\x4d\x2e\x27\x28\x60\ \xbc\x68\x22\x0c\x7b\x10\xed\x6b\xab\xcd\xdc\xcf\x17\x78\x06\x00\ \x8d\x8c\x07\x59\xd5\xb3\x45\x5b\xc2\x23\xbc\xa7\x44\x06\x17\x70\ \x02\x9c\xa3\xae\xe4\xb8\x92\x74\x18\x87\xe4\x65\x86\x84\x30\x61\ \xbc\xf5\x83\x35\x8d\x34\x3f\x48\x07\x96\x12\xc7\x8f\xa1\x5e\xf6\ \x2a\x1d\x26\x98\x3a\x5c\x9c\x3a\x58\xc8\x0e\xed\x35\xb5\x53\x13\ \x93\x38\x58\x40\x54\x43\x5c\x08\x6c\x5c\xf2\x0d\x5f\x4b\x46\x0a\ \x70\x48\x8a\xa5\xf1\x59\x3c\xa9\x85\xb4\x20\x28\x69\x8c\xe2\xb8\ \x63\x4f\xe6\x63\x0b\xf3\x74\x5a\xb1\xd1\x82\xfe\xed\xc6\x5b\xf6\ \xe2\x49\xe8\x84\x34\xe0\xc6\x49\xa8\x81\x57\x78\xe0\x5e\x56\x1f\ \xc1\xb0\x0b\xbb\x81\xd2\x8b\x2a\x3c\x06\x86\x86\x37\x6e\x98\xc4\ \x40\xbf\xe3\x02\x66\x83\x65\x39\x11\x98\x25\x65\x80\x58\x64\x78\ \x06\x05\x75\xcf\x65\x09\x87\x28\xf9\x81\x71\x50\x03\x0d\x60\x86\ \x72\x26\xe7\x90\x45\xe1\x44\x0e\x12\xd9\x30\xab\x47\x76\xac\x48\ \x9e\xc8\xe1\xbc\xb7\xec\x9d\x9d\xb8\x5c\x05\x1e\xfe\xde\xe1\xcf\ \x0a\x1a\xa5\xfa\x83\x20\xae\x05\x74\x38\x62\xf5\x15\xb0\x14\xa2\ \x0e\x6f\x20\x28\xaf\x98\xa1\x32\xbb\x21\xce\xad\x51\x1c\x32\xc4\ \x9b\x3c\xc4\xdc\xea\x62\x6f\x14\xe0\xd5\x75\x82\x4e\xb0\x06\x60\ \x56\x47\x5a\x4a\x9f\x04\x69\xdd\xf4\xc1\x0b\x35\x96\xd2\x65\x26\ \x60\x4c\x31\x95\x46\x44\x5b\x17\xb0\xda\xc2\x2b\x3c\x0b\xa6\x60\ \x17\x08\x80\xb4\xed\x0b\x21\x3a\x9b\x91\x88\xcd\x74\x28\x0d\x66\ \xc0\x95\xdc\xc8\x05\x74\x7e\x80\x56\xfc\xa3\x1d\x09\x2e\x77\xce\ \x29\x5c\x14\x5c\x69\xb5\x64\xfb\x1a\xb5\xeb\x40\xc0\x4d\x0e\x1a\ \xc4\xd5\x67\xff\xc2\x37\x4b\x4e\x0a\xf5\x5d\x1a\x6f\xb0\x00\x4d\ \xd2\xa4\x04\xa3\x38\x61\x5b\xe8\x05\x9b\x2d\x1c\xe2\xdf\x6e\x04\ \x02\x93\xe0\xc6\x6f\x54\x55\xd5\xdd\xe3\xd4\x0d\xca\xe4\x42\xeb\ \x5e\x76\x39\xb5\xc5\x4f\x49\x4c\x2e\xc7\xc8\x02\xb8\x79\x90\xd2\ \x44\x3f\xb4\xed\x3e\xb6\x62\x2b\x0a\xbe\x55\x02\x3e\xd0\x0c\xa8\ \x18\x7d\x41\x01\xe8\x80\x11\x78\xd0\x87\x70\x20\x80\xc6\xe6\x9c\ \x9e\x3e\x56\x7d\x18\xc8\xa6\x2b\xab\x87\x8c\x61\x26\x81\x85\xcc\ \x1e\xb5\x4e\xcb\x53\x4b\xae\xba\xcf\x3e\xb5\xfe\x44\x8a\x83\x44\ \xf2\xe4\xa8\x16\x1a\xf7\x20\xdf\x0d\x12\x07\xac\x48\xe8\x18\xaa\ \x06\xe5\xdb\x38\x71\xb0\x49\x83\x9a\xdf\xf4\x6c\x4c\x43\xe4\x5f\ \x9c\xd4\x02\x43\xb9\x65\x6b\xe8\xe2\x39\x26\xe0\xed\xc3\x28\x27\ \x40\x94\xf4\x39\xc7\xbf\xa6\xe0\x69\xfe\x3e\xbf\x10\x58\x6b\xf8\ \xeb\x89\x0d\x31\xe4\xf2\xeb\x59\xa2\xdd\xb4\x7d\x86\xb8\xf2\x36\ \x2d\x40\x01\x71\x56\x83\x96\xc8\xe9\x15\x11\x03\xc7\xee\xe9\x90\ \xad\x03\x66\xf0\x1c\x92\x7a\xa8\x93\xf3\x5b\x67\x1d\x0f\x49\x1e\ \x35\x95\x5d\x59\x3e\xc5\x8e\xee\xe5\xe1\x18\xe0\x61\x4e\x66\xc0\ \xcf\x5a\xc3\x9e\x08\xdf\xf2\x5d\x6d\x71\x38\xdf\xd7\x02\x28\x82\ \x4a\x68\xdb\x5e\x68\x96\x2c\xda\x2a\x1e\x6b\x6f\x7c\x02\x43\xa9\ \xe8\x2e\x55\x69\x3d\x36\xae\xaf\x9d\x04\x33\x0e\x69\x1a\x9c\xc4\ \x59\x7a\xe0\xc3\x9b\xe9\xc3\xf1\x10\xe7\x76\x2b\x5b\x7d\x69\xab\ \x75\xe9\xdf\xb5\xc7\xbb\x98\x22\x10\x48\x87\xe4\x88\x12\x7d\x80\ \x01\x78\x18\x87\xdc\x14\x0d\xc7\x3e\xe7\x41\xf6\x03\x35\xd8\x50\ \x4e\x61\x8d\x87\x8a\x01\xa2\xf6\x26\xd5\x63\x02\x49\xbe\x53\x1a\ \xd6\x5e\xe4\xe4\x2c\xc4\xbd\xef\x7c\x36\xfe\xed\x7d\xe6\x0e\x07\ \x70\x72\xf2\x55\xdf\x6a\xa8\x05\x07\xb8\x09\x1a\x9a\x8f\xd6\x9e\ \xa1\xb0\x66\x3e\x77\xb9\x49\x7c\xed\xdf\xa8\xfd\xc6\xb8\x98\xe3\ \x04\x81\x58\xcd\x54\xe6\x96\x03\xe9\x55\x65\x60\xb7\x92\xe9\xc5\ \xf0\xf0\xbd\xd0\x02\xb5\xea\xbe\xbe\x7e\xe9\x83\x65\x39\xe4\x46\ \x2e\x02\x46\x90\x4b\x04\x81\xb6\xa5\x0c\xd4\x51\x15\xce\x21\x80\ \x69\x4a\x85\x5c\xc8\x05\xf3\x1e\x64\xa6\xeb\x1f\xc8\x39\x39\x3a\ \xbd\x6c\x7b\x83\x05\xf7\x8e\xd6\xd6\xab\x3a\x53\x3b\xc0\xa6\xde\ \x61\xfb\xce\x67\x7c\x4e\x01\xdb\xf9\x20\x45\xe2\x03\x27\xb7\x8a\ \x29\xb7\x21\xeb\x00\x82\xd7\xfe\xa7\x0e\xd4\x2a\x3d\x4c\x0b\xb2\ \x00\x82\x2f\x07\xf3\x5c\x96\x0b\x2d\x08\x31\xbc\x30\xcd\x04\x61\ \xd5\x49\x24\x60\x0b\x07\x4a\x57\x75\xab\x49\x70\x8c\x86\x39\x11\ \x1c\x84\x58\xa0\x1c\xe9\x96\xbe\x55\x0a\x5e\x2b\x0b\xa6\xee\x20\ \x7c\x86\x4b\x14\x03\x32\x10\xb4\x0c\x10\xd3\x8d\x71\x6c\x35\x6a\ \xec\x41\xcf\x8d\x1f\x30\xa6\xf4\xe6\x5b\x0e\x59\xaf\x18\xbe\xc5\ \xd5\xd3\xec\x2e\x8c\x6f\xac\xc3\x0e\x1c\x6e\xea\x0f\xd8\x64\x4d\ \xff\x2c\xdb\x49\x24\x50\x6f\x72\x07\xfe\xf8\x3a\xf8\x38\xf5\xaa\ \x78\x6d\x4d\x82\x54\xe6\xdb\x43\x20\x50\xb3\xdc\xfa\xd1\x5c\x4e\ \x83\x5e\xa6\x0b\x10\xb3\x06\x06\xf1\xe8\x67\x20\x3c\xef\x0b\x42\ \xd7\x55\x78\x75\x6c\xe3\x49\x74\x82\x56\xf8\x00\x89\x9a\x60\xeb\ \x96\xa5\x91\xce\xf0\x97\x9e\x36\x12\x97\x6e\x83\x3d\xbc\x2e\x85\ \x76\x10\x18\x07\x2e\xc8\x80\x0b\x48\x84\x44\x60\x86\x70\x88\x29\ \x41\x6f\xec\x5c\xe8\x18\x67\x03\xa3\xcb\x96\x61\x58\xe8\xb4\x20\ \xc7\xde\x2d\x1c\x4e\xb6\xd4\x8e\x7b\x53\xce\xa6\x46\x35\xd1\x76\ \x6a\xbb\x83\x27\xef\xa0\x32\x13\xf0\x8a\x3f\xb0\x21\x07\xa8\x2d\ \x3d\xdc\x2a\x85\x76\xc9\xae\x41\x83\x39\x30\x94\xb3\x86\x22\x8c\ \xee\x0b\xbe\x08\xc2\xbb\x59\x9f\x5a\xbd\xe3\xae\xe7\xfa\x5c\xdf\ \x4f\x75\xf4\x4f\x81\x31\xa2\xc4\x98\xc1\xdf\xa5\xc1\x39\x6f\xe9\ \xb4\xfd\x82\x97\xab\x60\xb6\x52\xdb\xbc\x09\x87\xcc\x48\x84\x0b\ \xb8\x00\x96\x17\x61\x66\x48\x87\x60\x4a\x05\x02\x00\x01\x02\x70\ \x11\x2f\x7a\x9c\x6f\xdf\x10\x55\x88\x01\x9a\x57\xbd\x48\x76\x6f\ \x9b\x07\x87\x2d\x64\xbd\x1a\xee\xd3\x6c\xfd\x03\xc4\x85\xea\xda\ \x11\x8b\x4e\xd7\x7c\x10\x12\x1a\xfe\xf8\x70\x00\x3d\x50\x7a\x3a\ \x59\xe5\xaa\x10\xa8\xa8\x87\x65\xd0\xbd\x17\xde\xee\x54\x84\x9f\ \x69\x1c\x54\x0c\x82\x79\xc4\x65\x5f\x3f\xbb\xd1\x3e\xfd\x6c\x63\ \xcf\x24\x1f\x81\x4d\x2b\xdf\x2d\xd8\xdb\xb5\xe3\x05\xfe\x5d\x2f\ \xa5\xdd\x10\x9b\xfb\x34\xb0\x0c\xcc\x00\x81\x5f\x52\xfe\x94\x2f\ \xe7\x44\x10\x0d\x61\xd5\x07\x44\x80\xa8\x6f\xa7\x11\x18\x46\x59\ \xeb\xad\xe4\x48\xcf\x6c\xd6\x03\x51\xc2\xfd\xec\xec\x80\x81\x32\ \x94\xcb\x99\x8d\x6a\xbb\x33\xb6\x9f\x90\x0f\x27\xf7\x0a\x1a\xd5\ \x24\x7e\x9f\xad\x3c\xe4\x2a\x22\x1d\xab\x01\x81\x22\x33\xd6\x02\ \xad\x0d\x0c\xb9\x41\xe6\x36\x7f\xa5\x12\xcb\x75\xdb\x05\x88\x67\ \x5c\xb2\xc8\x91\x23\x03\x0a\x97\x34\xd6\x5c\x7c\x71\xc1\xb0\x06\ \xb4\x1a\x35\x1a\x7e\xa9\x58\x51\x62\x45\x17\xcf\x1c\x2a\x7c\xe6\ \x71\xa3\xc6\x34\x69\xc2\x89\x29\x69\x32\x1c\xb2\x44\xe1\x54\x86\ \x0b\x97\x0e\x84\x18\x10\xee\x64\x14\xac\x69\xf3\x66\x41\x25\x4a\ \x14\xfd\xeb\xe9\xf3\x27\xd0\xa0\x42\x87\xfa\x54\x64\x08\x16\x52\ \x45\x4c\x96\xc2\x02\x07\xcb\xe8\x51\x70\x52\x9b\x4a\x45\x57\xad\ \x9a\x81\xac\xbc\x78\xc9\xe2\xfe\xc3\x2b\xc5\x9f\x3f\x60\x53\x90\ \x4d\x11\xe3\x2c\xda\x22\x6a\xf9\xf0\x71\xe0\x80\x8f\x1e\x3e\x40\ \x4c\x00\x01\x52\xab\x4f\x2d\x7e\x76\x81\xf4\xa9\xeb\x17\x88\x1e\ \x3d\x4f\xd0\x7c\x50\x22\xe3\xc9\x3e\x91\x5a\xb8\x70\xd9\xa3\x64\ \x0f\x8f\x2c\x7b\xa0\x40\xe1\x61\xed\x59\x9a\x27\x7b\x26\xa7\xa9\ \xf1\xe2\xf3\xe7\x1a\xfb\xa0\xc8\x90\x31\x39\xf1\xb3\xcb\x20\x2f\ \x62\xd4\x08\xf2\x61\xeb\x86\x2e\xac\xa9\xf6\xe8\xd0\x85\xc8\x64\ \x26\x4d\x92\x41\x96\x32\x9c\x9a\x54\x64\x08\xa4\x4a\xf5\xe3\x03\ \xce\xe4\x4a\x54\x2d\x57\xb2\x8a\x27\xd1\xe8\xd2\x85\x2a\x32\x8a\ \xf4\x3a\x53\x45\x52\x0d\x19\x9a\x2a\xd5\xe9\x77\x74\xee\xb2\x6a\ \xe5\xe5\x35\xc5\x79\xb1\x65\xcf\x9a\x4d\xab\xb6\x08\x9f\xf7\x45\ \xe2\xfa\xa5\xfb\xf7\x6f\xe0\x27\x5a\x04\x3f\x21\x98\x45\x8b\x16\ \xfb\xf0\x00\xc5\x1e\x34\x99\x26\x47\x3d\x32\xd4\x93\xd0\x68\xa5\ \x41\x91\xc6\x17\xa0\xbd\x30\xd1\x68\x9b\x21\x06\x52\x6a\xaa\xc9\ \xf6\x45\x6b\xcf\x94\xe2\xe1\x46\x5f\x40\x63\x51\x46\x1f\xb9\x76\ \xdb\x46\x30\xed\x26\x06\x4a\xc8\xb4\xe4\x62\x2a\x20\xa4\x82\x42\ \x16\x4a\x24\x87\xd3\x1c\xfe\x28\xac\xc2\x1c\x74\xd3\xf9\x38\x9d\ \x51\xda\x31\x81\xdd\x2a\x4c\x80\xa3\x08\x2c\xdc\x75\xf7\x5d\x78\ \xe0\xa0\x03\x0b\x3a\xe4\x19\x20\x8b\x79\x7c\x84\xc5\xcb\x1f\x0e\ \xa8\xd7\x5e\x0c\x45\x74\x19\x43\x0a\xf2\x75\x29\x9f\x1e\x6a\x05\ \x66\x82\x09\xf3\xcd\x97\x9f\x1e\x68\xe8\xf7\x04\x14\x59\x98\xc6\ \x43\x63\x0a\xd6\x54\x4f\x4d\x32\xd0\xb9\x07\x82\x59\xec\xc3\x61\ \x44\xb2\xa5\xc1\x05\x14\x4f\x70\xe1\x82\x44\x35\xcc\xd6\x91\x6d\ \x0e\x65\xe4\x9a\x6a\x0f\x41\x13\x11\x46\x1b\xde\xe6\x10\x32\x35\ \xac\x58\x12\x08\x3e\xb4\xd4\x52\x3a\xc3\xa5\x83\x5c\x4e\x35\xd9\ \x78\x93\x12\x29\xe8\xc3\x8b\x4e\x3d\xfe\xf8\x2a\x75\x48\x2a\xc5\ \xd4\x52\x43\x1e\x09\x4e\x77\x48\x32\x19\x9e\x55\x50\x92\x87\xa5\ \x79\xbc\xfc\x1a\x56\x98\x6a\x75\x59\xac\xb1\x5e\xa2\xe5\xde\x59\ \xc9\x9a\x89\x06\x7f\x4f\x48\x2b\x2d\x41\xa5\xe1\x79\x63\x3d\x72\ \x16\x24\xc3\x3e\x88\x36\x74\x99\x35\x83\x72\xb1\xcf\x42\x10\x7d\ \xe1\x04\x66\x22\x5d\xf6\xe1\x47\x1b\xb5\xbb\x1a\x44\x93\xca\x9b\ \x28\x45\x0c\x21\xf3\x85\x07\x9b\x72\x4a\x46\x32\x64\x80\x40\x86\ \x4b\xf0\x10\x24\x87\xfe\x12\xbd\x7c\xd0\xcb\xa9\x04\xeb\xb4\xdc\ \x1c\x73\xa8\x22\x07\x2c\xb0\x4a\x4c\x5d\x91\xb0\xd4\x8a\x54\xad\ \x52\x69\xe7\x14\x52\xb7\x56\xe5\x54\x94\x52\x0a\x2b\xac\x03\x59\ \x55\x03\x83\x01\xc4\x96\xa5\x56\x98\xc8\xbe\xb7\x6c\x0c\x73\xc4\ \xdc\x70\xc3\x5d\xa2\xe1\x26\xce\xd2\x2e\x06\xc5\xb5\x37\xe2\x24\ \xc3\xa1\x1a\x25\x76\x59\x1a\xfb\x8c\xbb\x50\x45\x4e\xd0\x26\xd2\ \x3e\x4d\x2b\x54\x8a\x35\xec\xba\x7b\xe9\x45\x93\x82\x36\xaf\x44\ \x8e\x7e\xa1\x9b\xbe\x9c\x96\x04\xf0\x38\x19\xa0\x10\xe7\x1c\x1f\ \xe8\xa3\xcf\x07\x73\xd8\xa8\x44\x1c\x28\xa0\x10\x47\xc2\x10\x4f\ \x3c\xb7\x4f\x86\xc4\x51\x31\xad\x4c\x54\x7c\x9d\xae\x54\x7d\xd7\ \x54\xc8\x5a\x91\x57\xb2\xc9\x26\x63\x19\x56\x7c\x7c\xa4\xa0\x07\ \x7a\x89\xcb\x27\x66\xc3\x0b\x2b\x41\x73\x0c\x1f\xb8\x29\x2d\x63\ \x3c\x14\xe8\x33\x4e\x4a\x3c\x68\x34\x0f\x69\x3c\xf3\xc5\x33\x46\ \xa3\xf6\xc5\x24\xd6\x24\xd6\xf4\x3e\x8b\x25\xf6\x61\x6d\xaf\x31\ \xe4\x28\x44\x12\xca\x3b\xe9\x44\x1b\x25\x93\xaf\xbe\x2a\x96\x64\ \x49\x10\xfd\x41\x81\x82\xd8\x28\xe8\x03\x03\x0a\x08\xcf\x61\xf0\ \xaa\x1f\x3c\x6c\xfe\x63\x0c\xae\xd2\xfd\xaa\x22\x3b\xc6\x31\x64\ \xad\x7a\xaf\xb2\x37\x55\xd7\x75\x1c\x8a\x53\x58\x19\xc0\x95\x94\ \x06\x94\x5c\xb2\xf8\x6e\x85\xb5\x7e\x5c\x7a\x98\xe0\xbe\xfb\x73\ \x95\x59\xe6\xcb\x31\x2f\xac\xf0\xe4\x59\x7c\x60\x28\xa1\x34\x71\ \x7e\xd3\x29\x36\xa3\xa7\x34\x20\x0a\x37\xe3\x1a\x5a\x6a\x5a\xa7\ \x85\xa2\xb1\xae\x23\x51\x6b\xd4\x6d\x48\x04\xa8\xcf\x78\xe0\x05\ \xd0\xb0\x60\x32\x26\x45\x91\xae\x81\x60\x21\xbb\x09\x9e\x0c\x94\ \xf0\x01\x78\x1c\xcf\x6d\x1f\x88\xc3\xf2\x3e\xe0\x36\xb7\xc5\xa1\ \x46\x65\x5b\xc5\xf4\xe6\xa6\x88\x38\xa8\xe2\x6e\x18\xbb\xdb\xf6\ \xae\x37\xa4\xa4\x80\xa7\x29\x3e\x04\x07\x79\xa8\x34\x38\xf3\x99\ \xc7\x01\xc2\xfa\xc3\xe1\xfe\x60\x25\xb8\x84\xc5\x01\x68\x9a\x4b\ \x5d\xe8\x42\x97\xc0\x88\xe9\x2c\x6a\xb3\x49\xb6\x28\xb3\x87\x9e\ \xfd\xaf\x54\x40\xb3\xc6\xb7\x46\xc3\x18\x72\x89\xa4\x8c\x0a\x61\ \x5a\xec\x2e\xc5\x10\x09\xb2\xe6\x82\x2f\xa8\xa0\x07\xe0\x38\xa2\ \xad\x75\xad\x06\x5c\xb8\x00\x6f\xc6\x41\xa3\x2c\xe8\xef\x09\x28\ \x48\x5b\x0a\x55\xd8\xbc\x0f\x7c\x20\x05\x07\x4b\x41\xc4\x62\x08\ \xab\xea\xa8\xfe\xa2\x91\x45\xd2\x5e\x0e\x55\xb1\xb7\x21\x69\xc7\ \x7b\x50\x42\x8a\xc8\xa6\xe4\x00\x59\x28\x71\x7d\xeb\x4b\x01\x1a\ \x96\x18\x97\x3f\xb4\x0f\x2e\x74\x71\x80\x5f\x02\x43\x45\xfa\x15\ \xe1\x66\x95\xab\x51\x08\x0d\x12\xb7\x2e\xe6\x09\x0a\x89\x29\x1a\ \x81\x2a\x83\x9a\x8e\xa0\x8b\x36\xe1\xba\x8c\x1a\xd7\x28\xc1\x4a\ \x25\x0a\x1a\x70\x7c\xa3\x18\xde\x58\x11\xde\x6d\x0a\x19\x50\xd0\ \x82\xef\xc8\x30\x8e\xfe\xe8\xa4\x6c\x84\xbc\xe6\x0a\x59\x78\xcd\ \x38\x7c\x40\x91\x12\xab\x9e\x1c\x1a\x79\x37\xed\xdd\x2d\x0e\xe6\ \xcc\xde\x53\x38\xb6\x14\x03\xf8\x2a\x70\xb2\x78\x8b\x79\xd0\x53\ \x96\xb1\x88\x45\x89\xf0\x09\x25\x5b\xe2\x52\x04\x20\xc8\xe5\x7d\ \x6a\x9a\xdf\x9a\xda\x24\x98\x68\x15\x6a\x73\xb4\xbc\x49\x82\xe6\ \x94\xcb\x84\xb4\x0b\x45\xb3\x91\x9d\x46\x84\x69\x91\x44\xd1\x4b\ \x22\x93\x8a\x63\x1c\x29\x18\x91\xdd\xe9\x2b\x19\x4f\x00\x9a\xa6\ \x4c\x02\x02\x81\xe9\x44\x7f\x26\x34\x98\xc1\xe2\xd0\x0b\xb5\x39\ \x4c\x6d\x4a\xf0\x26\xf5\xc0\xd9\xc8\x1a\x6e\x8f\x9c\xab\x18\xa7\ \xde\x28\x69\xb1\x55\xc8\xa2\x63\x4e\x61\xe7\xf8\xf8\xb0\x8a\x79\ \x12\x95\xfe\x2c\xf1\x41\x0f\x7c\xd4\xf4\x9e\xf8\x3c\xee\x65\x5e\ \x6a\xe5\xcd\x2e\x07\xa0\x05\x0e\xca\x31\x07\xbd\xc9\x64\x18\x33\ \x2e\xd9\x3d\x2a\x98\x53\xd3\xda\x44\x23\x82\x3b\x8b\x7a\xe6\x98\ \x19\x4d\x46\x32\x5e\xa0\x2f\x0f\x68\xa1\x20\x5c\x60\x66\x49\xd2\ \xf1\x04\x25\x98\xd4\x6d\x29\x48\xde\x09\x6b\x74\xbf\x82\x48\x0f\ \xa6\x44\x41\x52\x4d\x1e\x46\x53\xbd\x99\xd3\x9c\x35\xad\x29\xc6\ \x98\x20\x0b\x03\xf4\x10\x16\x41\x1d\x2a\x51\xc1\x04\x26\x50\x22\ \xb5\x08\x48\x65\x6a\x53\x95\x35\xb3\xc8\xd1\x6c\x0e\x59\xa8\x1c\ \x21\x0d\x35\x20\x3b\x5d\x15\x41\x7b\xe0\x42\x6d\x10\x35\x11\xd6\ \x48\x70\x12\x0e\x69\xd4\x44\xdb\x38\xaf\xdb\xa5\x15\xa3\x18\x45\ \xe6\xa6\x3c\x90\x06\xc7\xc8\x40\x0b\xfa\x12\xd8\xfe\xdc\x06\x03\ \xb1\x5d\x33\x6d\x7a\xad\x49\x5f\xfd\x4a\x1d\x58\x04\x76\xa6\x45\ \xca\x21\x0d\xc7\xb9\xbd\x55\xf8\xf0\x62\x48\x89\x12\x2c\xba\x42\ \x54\xcb\x4a\xd6\x2c\xc5\x42\x56\xb1\xac\x28\x5e\x99\xb9\x54\x27\ \x04\xcb\x89\xe4\x74\x92\xa0\x59\x5e\x75\x80\x6b\x24\xab\x45\xc7\ \x4a\x2f\xaa\x71\x28\xbe\xf1\xbd\x1d\x6d\xdf\x88\xdb\x38\x76\xed\ \x0b\xfe\x1f\x3d\x2d\x17\x9c\xe0\xbb\xaf\x69\x81\x8f\x68\xc8\x40\ \x10\xf4\x41\x98\x93\xc6\xa0\x46\x04\xe3\x43\x72\x95\xfb\x93\xea\ \xcc\xc1\x26\x82\x95\x24\x61\x67\x2a\x5d\xee\x31\x05\x63\x53\x92\ \x05\x64\xbd\x1b\x83\x38\xc0\x4c\xb2\xcd\x0a\xaf\x15\x3b\x2b\xb9\ \xd2\xb2\x18\x8b\x40\xdb\xc7\x46\x28\x2a\x56\xfc\x06\x8a\x44\xf0\ \x8d\x57\xed\x2c\x48\xdb\x0c\xd6\x96\xbf\x6a\xed\x9a\x13\x08\x32\ \x19\x39\xc1\x63\xc0\x62\x18\x15\x5d\xe1\x11\x04\xe4\xa9\xd0\x6d\ \x0d\x2e\x9b\x67\x23\x2c\xe1\xa2\xc0\x82\xbd\xe1\xc4\xa1\x38\x6b\ \xa8\xc3\x71\x5a\x4c\xb1\xb2\xa0\x92\x97\x15\x47\x16\xcd\x9e\x85\ \xc4\x25\x4e\x4b\x8a\x69\xb6\xd7\xab\x1a\xa6\x34\xfe\x2b\xad\x12\ \x4e\x81\x10\xd4\x7c\xc4\xc6\x14\x5d\x2d\x6b\x20\x32\x91\xf8\xea\ \x57\x5e\x69\xfd\x33\x5a\xfb\xcc\xb5\xdc\xee\xc3\x40\xb1\xcc\x82\ \x25\x36\x05\x0f\x19\x8c\x70\x1c\xf0\xf8\xa3\x09\xd3\xa6\xc2\x0f\ \xf0\x42\xca\x53\xfe\x87\x22\x52\xe0\x33\x2d\x47\x57\x9c\xd0\xd5\ \xa1\x62\x79\x2a\x6a\x10\x8b\x59\xc4\x66\x46\x0b\x79\x6b\x96\xe6\ \xc8\x99\xf7\xa0\x3a\x61\x34\x80\x5a\xd1\x18\x2e\xd2\x52\x4f\xaf\ \xfe\xf3\x48\x19\x23\xe5\x5a\xd4\xd5\x60\x12\x14\x89\x6d\x58\x75\ \x8c\x56\x68\xd4\x36\xd0\x3c\x4e\x86\x44\xe0\xba\x9b\x2f\x90\xa6\ \x34\x03\x7b\x82\x91\x8f\xac\x05\x14\x04\xa1\x1a\x8f\xa6\xb6\x1a\ \x90\x97\xcd\x44\x5e\x7a\x28\x8a\xf8\x1f\xa7\xcd\xe9\xe9\x9b\xd6\ \x10\x7b\xd3\x15\x6a\x0a\x56\x21\x66\x54\x77\x56\xcd\x2c\xad\x59\ \x79\x5b\xdd\xc5\x6a\xce\xc1\x4d\x5a\xa0\x4d\x83\x5a\x5c\x0f\x1e\ \xc0\xf8\x52\xef\xfa\x08\xba\xfc\xbd\x1a\x1b\xe3\x57\xd8\xc4\x26\ \x76\x0d\xd0\x9a\xf0\x41\xaf\x08\x04\x5a\xa0\x0c\x42\xe2\x94\x05\ \x27\x74\x2d\x1c\xfc\x50\x32\xf2\xaa\x91\x0e\x4b\xa4\x62\x1c\xfa\ \xa8\x46\xf2\x64\xd1\x6d\xa2\x80\x63\xd3\xe1\xe4\xf4\x4c\x69\xca\ \x9c\x38\xc8\x62\x29\x43\x7d\x39\x7a\x20\x4b\x62\x14\xc6\x3b\xbd\ \x93\x63\xf5\xda\x94\x73\x5e\xf4\xca\x4c\xaa\xfc\x28\x1a\x17\xde\ \x6c\xe5\x1b\x1d\x84\xce\xb3\xb3\xc8\xec\x7a\xf9\x6f\xd8\x92\x48\ \xac\x3c\x5e\x38\xc2\x13\xe5\x03\x86\xaf\x28\x19\x72\xe2\x41\x80\ \x5a\x97\x86\x68\x9b\x24\x78\xf0\x50\xf2\x38\xd2\xf1\x3b\x4b\xa8\ \xa1\x17\xd1\x1b\x39\x75\x2a\x0c\x6e\x94\x87\x73\x0e\xe2\x66\xfe\ \x1b\x88\xb7\x47\x96\xa1\xc6\x21\xdd\xec\x9e\x9c\xcd\xf1\xb7\xe2\ \xbc\xdb\x9c\xa5\x67\x89\xaa\xe5\x00\xf4\xd1\x7a\xd0\x95\x40\x07\ \x2d\x0d\x9d\x8c\xce\xc6\x89\xbc\xf6\xb5\x20\x2a\x45\x44\x7f\x5d\ \x5f\x4a\x49\x04\xd9\xc8\x0e\xc7\x45\xb8\x5e\x92\x20\x28\x08\xe2\ \xa7\xa1\xba\x48\xf9\xa1\xc2\xaf\xc3\xe3\x25\x71\xcd\x40\xaa\xd0\ \x9e\xf6\x2e\x8a\xb3\xb0\x17\xa6\xe1\x95\xbf\x7c\xd3\xba\xa7\xa0\ \xee\x60\xa2\x79\x79\x51\x45\x30\x35\xe3\x1d\xe7\x92\x83\xb7\xaa\ \x3f\x70\x96\xd0\x6a\x46\x06\x59\x48\x48\xd0\x4b\xd5\xb9\x04\x25\ \x88\xdf\x0d\x44\x1a\x87\xa2\x8f\x67\xd7\x3a\xde\x44\x8d\x7f\x6f\ \x7d\x13\x7e\x67\xcc\x93\xa1\x6b\x62\x48\x06\x14\x08\x56\x9a\x5a\ \x92\x44\x5f\xd3\x44\x01\xe9\xc7\x91\x68\x4b\xe8\xc3\x46\xdc\x56\ \x7d\x4f\x90\x34\xf4\x9b\xb4\x3e\x0e\x81\x15\xb7\x1c\x70\xb8\x8a\ \xdb\xcf\x1c\x85\x23\x76\x18\xdf\xed\xde\xcd\xb5\x9b\xbb\x0d\x60\ \xaa\xc9\x0c\xbb\x55\x0e\x1a\xd8\x12\x18\xed\x56\x41\xd4\x43\x81\ \xd0\x5a\x3d\x54\x06\x81\x1c\x10\xeb\x00\x53\x6b\x55\xca\xec\xa8\ \x91\x6c\x30\x5d\x9e\x55\x44\x38\x68\x1f\xe8\xed\xc6\x38\xfe\xd0\ \x44\x82\xa0\xca\x38\x74\x4d\x32\x54\x83\x16\x04\x01\x3c\x84\x9d\ \x1a\xa8\x81\x3c\xac\x0d\xfc\x01\x85\x22\xf0\xc1\x55\x69\x58\x23\ \x9d\x1c\x0a\x3d\x4c\x61\x15\xd6\x88\x4d\x0e\x89\x71\x96\xcd\xd1\ \x1b\x01\x2e\x0b\x01\x12\xe0\xcd\x49\xce\x07\xdc\x1b\x87\xb8\x40\ \xd0\x25\x08\x42\xf0\xc0\x9b\xe5\x84\xf3\x69\x15\x66\x34\x0d\x30\ \xd1\x0e\x6b\x49\x54\x04\x3d\x4a\x88\x4c\x54\xa2\xf8\x1a\xa2\x70\ \x94\xf7\xb1\x95\x61\x50\x06\x17\xc9\x80\x1a\x78\x9f\x1e\x05\x41\ \xd8\xa5\x03\x49\xe5\x44\x0d\x4e\x98\xa6\x95\x56\x96\x09\x16\x0d\ \x3d\x0c\xc1\xd4\xdd\xcc\x35\xcc\xcc\xcd\x8c\x2a\xd4\x5c\x35\x21\ \x21\xcc\xa8\x58\x35\x05\x20\xc1\x7c\x00\x3f\x4c\xc2\x2b\x4c\x88\ \x80\x9c\x86\x48\xb4\x02\xcf\x18\x44\x3d\x24\x08\x17\xe0\x5a\x2b\ \xdc\x12\xa3\x44\x1e\xea\xb0\x11\x28\x76\xd5\x43\x5c\x04\xb2\x49\ \xc4\x24\x24\x9c\xf7\x99\x44\x90\x4d\x60\xeb\x90\x86\x61\x28\x01\ \x17\x74\x5f\xd7\xc8\x61\xd8\x81\x90\x4d\xc4\x40\x1d\xc6\x9f\x22\ \x0c\x0c\x1e\xe2\xdf\xc9\xf1\x61\xb8\x8d\x58\xed\x95\x59\x12\xba\ \x14\x02\xa2\x9a\x21\xfa\xde\x9a\xd9\xc4\xe4\x68\x81\xfe\x23\x5a\ \xd0\x33\x2c\xc6\x56\x85\x44\xd0\x3d\x06\x81\x1c\x1f\xb8\x30\xcd\ \x3e\xb0\xcb\x89\x3c\x0a\x1b\x69\x4d\x04\x45\x10\x31\xdd\xd9\x08\ \xae\x88\x13\x90\x46\x16\x28\xc4\x40\x00\x18\x17\x20\x43\x2a\x92\ \x41\x27\x64\xc0\x5c\xe1\x84\xa5\x4d\x19\x60\xb5\x58\x1e\x16\x84\ \x60\x15\x84\xdb\x09\xe3\x30\xfe\x21\x0a\x05\x64\x67\x35\x4b\x89\ \x21\xa2\xbc\xdd\xc8\xe4\xe8\x81\x23\xbe\xc2\x2b\xe0\x86\xd3\xac\ \x91\x43\x14\x9a\x9e\x30\x86\x2e\xd9\x46\x16\x8a\xce\x06\x72\x60\ \x6c\x81\x15\x38\x02\x4a\xa5\x9c\xa2\x25\xa0\x95\xb2\xe9\x8b\x16\ \xd8\xc8\x1e\x2c\x86\x55\x65\x01\xd6\x7d\x41\x2a\x8e\x94\x83\xd1\ \x63\x2e\x62\x9a\x01\xe0\x23\x0f\xf2\xe1\x2f\x5e\x59\xba\xf9\xa1\ \x59\x04\xe2\x21\xa2\x05\x97\x00\x1f\x11\x32\x63\x72\xc8\x8c\x1e\ \x74\x82\x23\xee\x82\xa2\xf8\x92\x47\x36\xc4\x3e\x6c\x06\xeb\x10\ \x4a\x26\xae\x51\xe9\x74\x84\x6c\xcc\xce\xae\x49\xd4\xe8\xd4\x80\ \x08\xd4\xcb\x44\x29\x1c\xb2\xf1\xda\x48\x76\x8d\x16\xe0\xc9\xf1\ \x85\x9f\xa9\x1c\x84\xd8\x79\x1f\x0a\xdc\xc8\x53\xe4\x62\x75\xb4\ \x58\x73\xcd\xd4\xfd\x3d\x0f\x89\xed\x1f\x89\x15\xfe\x15\x59\xd8\ \xde\x5d\x22\x23\xbc\xad\x18\xe7\x4c\xce\x7c\x34\xe2\x2e\x4c\xc2\ \x24\x38\x01\xf5\x89\xc8\x67\x04\x8a\x35\x20\x84\x42\x58\x03\x54\ \x12\x50\x89\x40\x0d\x58\x39\x81\xa3\xb8\xc0\xae\x6d\x88\xb9\x54\ \x65\x43\x88\x60\x1c\xa1\x55\x2a\x6e\x4a\x32\x04\x41\x80\x64\x06\ \x2f\xd6\x44\x06\xa4\xe2\xa2\x25\x47\x28\xc4\xe4\x5b\xe6\xe0\xc9\ \xe9\xa3\x96\xed\xa0\x39\xa9\x1d\xdb\xdc\x9e\x30\x4e\xd6\x30\x72\ \xc9\x64\xa5\xd8\x66\xdd\xcf\xfc\x01\xa6\x1e\xf0\x03\x3f\x74\x82\ \x13\x74\x82\x71\x5e\x84\x84\x58\x10\xe9\x4c\xa3\x40\x70\x86\x30\ \x9d\x08\x44\x82\x63\x65\x4a\x5e\x57\xb1\xc6\xb0\x85\xe5\x67\x8a\ \x14\x08\xd4\x40\xf0\xf0\x22\x2c\x6a\x1e\x8b\x90\x8a\x4d\xc4\x41\ \x3d\x4a\x58\xa6\xb1\xd8\x3e\x6a\x18\xfe\x0d\x22\xdc\x14\x44\xdd\ \xd1\x9d\xcc\x04\x22\x59\x8c\x58\x77\x25\x20\xce\xfd\x8f\x4e\xc4\ \x80\x1e\x00\x01\x3f\x68\x81\x70\x0a\xa7\x51\xba\xd1\x23\x82\x86\ \xa2\x24\x06\x43\x38\x26\x65\x40\x26\xd2\x45\xd4\x1a\xf9\x9a\x83\ \x7a\x84\xa5\xd4\x4b\xe4\x51\x94\x48\x66\xa7\x85\x86\x83\x0b\x08\ \x8c\x41\x04\xc1\x67\xae\xe5\x4d\x88\x5c\x4c\xfe\x96\x1c\x2d\x5d\ \xd8\x6b\xd6\xdf\x7a\x9a\x13\xc3\xc4\x01\x5b\xc0\x8d\x12\xb0\x47\ \x99\x59\x91\xff\x6d\x96\x41\xfe\x65\x8b\x06\x54\x60\x08\xa7\x16\ \x38\x41\x0d\x3c\xa2\x18\x30\xe4\x80\xbe\x00\x6e\x38\x01\x87\x20\ \x28\x43\x49\x54\x43\x84\xe1\x27\x6a\x66\x55\xda\x06\xe9\x50\xa6\ \xf6\x9d\xa2\x19\x5a\xa8\x94\x86\x83\x13\x8c\x03\x78\xc6\x84\x87\ \xda\x04\x88\xd6\x61\x6b\x72\x0e\x30\xa6\x1c\x98\xfe\x20\x73\xb0\ \xa7\xfd\xcc\x41\xba\xf1\x41\x0c\x54\x93\x99\x15\xa3\x31\xfa\x9e\ \xcf\x4c\xce\x98\x40\xd5\xcd\xf8\xe7\x70\xbe\x82\x49\xd8\x29\x43\ \x7e\xc6\x24\xc4\x58\x0d\x88\xcb\xb8\x40\x5e\xf6\x31\x9e\xb7\x54\ \x84\x83\x7e\xe2\xec\x40\x10\x84\xd6\x80\x07\x28\x1c\x76\x4a\xa9\ \xa3\x76\x4d\x6a\xd6\x04\x2e\xb2\xa6\xda\x81\xdb\x2f\x82\xa9\x7a\ \xd6\x1e\x0d\xb9\x1d\x8a\x4e\x0e\x75\xc9\x42\xed\xd1\x8c\x40\xb2\ \x14\xde\x15\xe1\x9b\xe6\x67\x66\xdd\xa8\x16\x74\xc2\x8e\xee\x06\ \x9e\xbe\x00\x45\x44\x84\xd1\x6c\x62\x2b\x40\x26\x8e\xd9\x58\xa1\ \x26\x69\x46\xa2\x88\x93\xda\xd6\xa3\xfe\xaa\x85\xaa\x41\x15\x4e\ \x6a\x2e\x5a\x80\x4d\x7a\x69\x38\x5d\x2a\xfe\x98\x72\xea\xec\x31\ \x8c\xc3\x10\x4c\x0a\xf4\x14\xa8\x02\x62\xbb\x2d\xa3\xc2\x20\x24\ \xfe\x10\x64\x5a\xdc\x4c\x70\x1a\xa7\x23\xae\x88\x9d\x4e\x08\x87\ \x4c\x88\xea\x00\x9d\xe8\x54\x0d\xe5\x71\x48\xae\x92\x48\x30\x41\ \x5f\x39\x02\x2b\xbc\xae\x48\x38\x94\x66\x79\x2a\x97\x22\xf0\x02\ \xeb\x95\x28\xa6\xd2\x10\xdb\xe8\x1f\xdc\x3c\x0c\xcd\x30\x47\x0a\ \x2c\x05\x88\xa1\xd0\xc2\x00\x60\xce\xe1\xe7\xef\x1d\x23\x32\xaa\ \x05\x1a\x0c\x27\x61\x26\x83\x9d\xba\xaa\x05\x41\xc4\x2b\x40\x43\ \xba\x38\x4d\x88\x60\x4d\xa0\x58\x66\x7d\xf9\xda\x45\x1c\x69\x6a\ \x3c\xc4\xee\x34\x6a\xbc\xc6\xeb\xbc\xda\x44\x4c\x62\xda\x1d\xae\ \x5d\x98\x66\x59\x8a\x4e\x57\x0a\xec\x60\x0d\xa5\x40\x4b\xf1\xc1\ \x75\xa4\xc0\xa9\xec\xdd\x41\xea\xde\xc1\xaa\x5a\x6f\x52\x4e\x51\ \x5a\xc2\x2b\xf4\xda\x48\x86\xc6\x2b\x54\x10\xe9\x94\x42\xd3\x7c\ \x08\x6c\xcc\x98\xa0\x06\x6a\xa5\x7c\x01\x6d\xbc\x57\x94\x9e\x2c\ \xd6\xee\x86\x25\xf0\x22\xb1\xd6\x60\x75\xcc\x1f\xfd\xc1\x26\x98\ \x86\x53\xbf\xe2\x50\x61\xb5\x94\xc1\xd6\x10\x76\xa4\x29\xfe\xa0\ \x97\xb5\x9a\x0a\xbd\xad\x5a\x7a\xcd\xfe\x41\x11\x68\xc1\x26\xbc\ \x02\xd1\x12\x6d\x6e\xbd\x42\xc9\x16\x2d\x66\x94\x42\x1a\xb0\x8b\ \x47\x62\x0d\xaf\xdd\x59\xaf\xc5\x06\x46\x84\x54\xd6\x2e\x2e\xa7\ \xc8\x03\x72\xb1\x26\x73\x1d\x54\x7a\xca\x25\x30\xba\x5d\xba\x95\ \xc5\x6c\x8e\xa9\x9a\xf6\x54\x76\x19\xec\x5e\x2d\x61\xa9\xec\xac\ \xc2\xc0\xdb\xcc\x98\x57\x21\x16\x41\x1f\x6c\x42\x3a\xe0\x2d\x76\ \xbe\x51\xbe\x4c\x48\xe9\x6c\x63\xe0\x8e\x8e\x88\xcc\x16\xe5\x8d\ \x21\x85\x5a\x1e\x5a\xd1\x11\xe3\xf6\xee\x38\x9c\x4a\xbd\xfa\xd5\ \xbd\xa2\xa7\xb2\x26\xab\x2a\x8c\x58\x40\xae\xc2\x56\xf0\x42\x0f\ \x9e\xdc\x72\xc4\x01\x52\x84\x42\x76\xdd\xd4\x15\xb9\xad\xa9\xec\ \x1e\xe5\xa4\x99\x6f\xca\x81\xcc\xcc\x07\x0c\x74\xc2\x26\x38\xc1\ \xbb\x66\x94\x05\xe1\x06\xd3\x8a\x44\xa2\xe2\x97\x67\x50\xca\x29\ \x52\xd4\x24\x48\x6c\x67\xe6\x8b\xc9\xf6\xee\xaf\x92\x01\x41\xb4\ \x25\x97\x7e\x1b\x5c\x96\xa8\x3e\x5e\x19\xf2\x1a\x00\x3a\xa4\xc3\ \xf8\xc0\x9e\xe9\xb2\x5c\x52\x58\x8c\xce\x26\x4c\xdc\xfc\xec\x21\ \xba\xd4\xf5\xd6\xe8\x9a\x54\x83\x13\xac\xae\xf7\xd5\xc0\x6b\x04\ \x2e\x6d\x7c\xc8\x87\x4c\x1e\x34\xfe\xf8\x00\x44\x78\x40\xd1\x9a\ \x22\x45\xf1\xad\xfc\xce\x2f\xfd\xc2\xab\xe3\xae\xa6\x5b\xea\x2f\ \xaa\xf4\x6c\x72\x1c\x6b\x4e\xc4\x81\xb0\x54\x03\x3a\x78\x83\x25\ \xb8\x03\x2f\xac\x42\x2f\xcc\xd4\xda\x18\x30\x2c\x48\xef\x2a\x58\ \xd9\xda\xdc\x1c\x9a\xb1\x5a\x0b\x77\x6f\x60\x8e\xc3\x24\x24\x9a\ \xbe\xf8\xd7\x49\x72\xc4\x6b\xa4\x46\x29\xe4\x99\x58\x55\xd0\xe1\ \xea\x19\xdf\x66\x10\x7f\x4d\xec\x09\xd3\x2f\x3c\x9c\x9d\x5b\xc6\ \xc0\x8d\xc8\x0c\xd8\xe2\xc4\x20\x3a\x07\x3a\x58\x02\xd9\x9d\xcd\ \x1f\xf4\x02\x0a\x7c\x45\x10\xf2\x63\xba\x61\x8c\x18\x77\x8e\x11\ \x02\xad\xfd\x1c\xe4\xc2\x34\x8b\xf7\x6e\x82\x12\x8f\x64\x0d\x68\ \x41\x69\xa4\x01\xb2\x31\xe9\x6b\x41\x5f\x0d\x78\xb0\x88\x24\x2d\ \xa5\x84\x30\xfc\x62\x54\x17\x47\x32\x32\x18\xc0\xca\x2a\xc2\xd0\ \xcd\xc1\x56\xb4\xe7\xa6\xb1\xcd\x07\xa0\x83\x1a\xf0\x82\xd9\xfc\ \x40\x35\x20\x8c\xc2\x7c\x80\x3b\x54\x03\xf3\x26\x0c\x7b\xda\xec\ \x2c\x2d\x6c\x41\xde\x67\xe8\x22\xe0\x9a\x7c\x6f\x35\x74\xc2\xc6\ \xad\xc8\x24\x10\x04\x14\xe8\xc6\x0b\x30\x29\xe9\x80\x88\xa4\x54\ \x5e\x1c\x41\x43\x16\xc3\xaf\xfe\x18\xf0\x57\x24\x47\x32\x19\xbc\ \x1f\xfc\x29\x82\x05\x70\xce\x07\xa8\x41\x3a\x20\xcf\x20\xf6\xa3\ \xd9\xb5\x8d\xc6\x6d\x5c\x3a\xa4\x03\x0a\x94\xd4\x41\x36\x19\x0a\ \x18\x52\x79\x39\xb0\x72\x10\xb1\xb6\xf2\x9e\x02\x8f\xee\x98\xc0\ \x05\x0c\xb4\xb3\x51\x82\x00\x5c\x59\x03\x4d\x40\x41\xbe\x7c\xc1\ \xb9\x76\x60\x18\x8a\xc0\x46\x95\xec\x16\x2f\x2a\x08\x9b\x70\x32\ \xc3\xab\x25\x54\xb2\xfd\xbd\xa9\xd8\xa9\xf1\x36\xa7\x83\x0d\xdb\ \xb0\x25\x10\x80\x49\xa8\x41\xf2\xfc\x26\xa3\xa1\x40\x3b\xaf\xc2\ \x09\x45\xce\x9b\x0e\xe4\x7c\x5a\x91\x10\x17\xa2\xcd\xe8\x41\x3b\ \x6b\xc1\xc6\x25\x43\x3a\x24\x03\x4c\xbc\xc2\x47\xc9\xc1\x13\x0c\ \x29\x8c\x81\x61\xfa\xa2\x95\x31\xef\x06\x08\x97\x6c\x40\x47\xf2\ \x40\xb3\x66\x1d\x23\x24\x3c\x48\x69\x3a\x54\x2f\x16\xd1\x9a\x20\ \x8d\x03\x3a\x84\xb3\xfd\x9c\xaa\xaa\x79\x57\x7b\xf4\x6c\xce\x11\ \xf1\x2c\xf3\xc3\xea\x5a\x82\x35\xd8\x72\x32\x4c\x53\x8d\x70\x41\ \x61\x8e\x8b\xb7\x54\x5f\x45\x88\xa4\xfc\xae\xc8\x0b\x5c\x6d\x4d\ \xd3\xaf\x21\xb0\xa6\x2c\xcc\x9b\x3e\xa4\x02\x07\xa5\x43\x35\x14\ \x80\x95\xd5\xc3\x29\x5c\xfe\x22\x16\xd1\x15\x0a\xc4\x20\xc8\xd5\ \x9e\x0b\xbb\x2d\x20\xd2\x67\x52\x77\x74\x8b\x7e\x34\x0a\xf4\xc1\ \xc6\x21\xc3\x02\x11\xa6\x16\x7c\x40\xa1\x50\xe6\xa0\x40\xc8\x57\ \x7e\x8b\x6a\x41\xf2\x48\x22\x73\x58\x77\x71\xf0\xc2\xd4\x79\xd2\ \x92\x08\x49\x33\xc7\xa5\x02\x44\x7f\x40\x15\x02\x10\x0f\xb4\x00\ \xad\xe5\x49\x06\x8c\x83\x34\xa7\x83\x55\xf4\x02\xdc\x2a\xf0\xda\ \xc8\x4c\xed\x6d\x74\xcd\xe1\x4f\xf7\x72\x2b\x48\x6f\x02\x95\x86\ \x5d\x38\x74\xc2\x07\x64\xc1\x13\x38\xc1\x04\x3b\x81\x13\x96\xe2\ \xb9\x3c\x04\x64\x3f\x76\x64\xdb\xf4\x64\x2b\x52\x75\x84\xf6\xff\ \x30\xda\x71\xf9\xcc\x25\xfa\x82\x2f\x80\xf6\x9b\x42\x41\x10\x30\ \x31\xd9\xe5\xb4\x1e\xe3\xcf\x5d\x9e\xa9\x97\x18\x63\x22\x76\x49\ \x60\x70\xab\x04\xa7\xc3\x24\x74\x9f\x07\x00\x57\x8e\x1a\x26\x32\ \x84\x8b\x93\x26\x03\x45\x28\x2a\x17\x17\xb7\x7c\x8b\xc1\x58\xbb\ \x25\x2c\x28\xf7\xfe\xfe\xf4\x29\xb4\x80\x2f\x9c\x02\x16\xfd\x0c\ \x0a\x68\xc0\x6e\x80\x43\x61\x94\x73\xce\xb1\x36\x1f\x7c\x59\x57\ \xb0\x1b\xcd\x04\x14\x0a\x0c\x67\x3a\xd4\x80\x75\x6b\xc1\x1c\xe8\ \x47\x35\x28\xf1\x24\xfe\x88\x26\x6f\x8b\xb0\xa2\x42\xf6\x7c\x17\ \x77\x7d\x73\x69\x06\xbc\x75\x7e\x27\x87\x5b\x9f\x02\x8a\xb7\x00\ \x89\x17\x04\x8a\x2b\xb7\x3c\xa0\xb5\x49\xf4\x74\xe7\x60\xb4\xa9\ \x98\xa9\x2c\xa0\x83\x38\xc0\x42\x2d\x38\x80\x59\x34\x38\xb7\xc2\ \x00\x3f\x68\x5c\x79\xef\x46\x35\x48\x8b\x1e\xac\x2a\x79\x03\x08\ \x61\x8a\x70\xd2\x1e\xb3\x4c\x7f\x78\x40\x97\x01\x6b\x1a\xc2\x7e\ \xbf\x35\x7e\x77\x91\x04\xb6\x80\x8a\x5b\xf9\x9d\x68\xb9\x72\xcb\ \x40\x0a\x9a\x84\x25\x8c\xf2\x02\x1b\xb1\x4d\x98\x29\x00\x1b\x82\ \x37\xe0\xf8\x8e\xd3\x0f\x29\x51\xf4\x70\xaa\x9f\xd6\x8e\x83\x60\ \x50\xb4\x2d\x3b\xc1\x91\x4b\xb8\x07\xb4\x6f\x09\x83\x30\x94\x87\ \xb5\x94\xbb\x25\x38\x68\xf9\x96\x77\xf6\x9d\x98\xb8\x5b\xc3\x35\ \x82\xc8\xc1\x7e\xab\x38\x17\x9d\xb8\x7f\xdf\x88\x3c\x24\xc2\x8a\ \xa0\x43\x81\xe7\x04\x67\xf9\x34\x6b\x03\xb0\x37\x74\xba\x25\xac\ \xf9\x55\x9c\x4c\x3b\xc3\x40\x35\x6c\x02\x13\x8b\x81\x25\x4c\x02\ \x3c\x68\xc1\x9c\xd6\x32\x3c\x3c\x41\x27\x30\x71\xd1\x5a\x02\xef\ \x78\xf8\x9f\x47\xf2\x71\x23\x37\x0f\xdc\x01\xa1\xf7\xf7\x9d\x5c\ \xcb\x89\x4b\x20\xfe\x8a\xaf\xf8\x25\x0e\xfb\xa3\x5f\xe2\x95\x33\ \x3a\x14\x64\x40\x1b\x9a\x84\x37\xfc\x01\x6d\xf6\x35\x77\x5d\x11\ \x9c\xf2\x01\x3a\xd4\x70\x19\xac\x9f\x37\x88\x83\x5a\xd7\x72\x2d\ \xa7\x65\x5c\x55\x43\x9b\x58\xce\x13\x9c\xcc\x60\x74\x02\xef\xb0\ \xee\xad\xcb\xf7\x4d\xe7\xa2\x21\xb4\xc0\x1d\xf0\x3a\xaf\x5f\x0b\ \x97\xb3\xb8\xa2\x3f\x60\x3d\x68\x79\xa4\xe3\x7b\x8b\x63\x51\xbd\ \x3f\x20\x42\x15\x44\x16\xc8\x39\xaa\x7b\x43\x11\xd4\x04\x02\x46\ \xab\x09\xa0\xa9\x4f\xa6\x00\x0d\x57\x83\x37\x68\xad\x1a\x4f\xbc\ \x1a\xef\xc6\x2e\xc0\xc0\x13\xb4\x89\xf7\x76\xc2\xf7\x52\x70\x8f\ \x02\xf4\xba\x2f\x6e\xbb\x7b\xad\x21\xc4\xbb\xbc\x47\xba\xb1\x3b\ \xf7\x25\xea\xfb\xaf\x1b\x7b\xcf\x20\xfb\x4f\xff\xf4\xb5\x28\x81\ \xf1\xa8\xb1\xc1\x23\x3c\x7c\x70\xee\x75\x88\x19\x1f\x60\xc5\x55\ \x9c\x7a\xef\xec\x86\x37\x74\xc2\xc9\x00\x01\xb4\x7c\xef\x38\x18\ \x25\xd0\x87\x7c\x71\x07\x3a\x97\x56\x83\xc9\xc7\xbb\x95\xef\xf7\ \xbd\x23\x54\xb1\x53\xfd\x9d\xa4\xf8\x8a\xe3\xfb\xb1\x03\x7b\xd5\ \x13\x4c\x16\x38\x19\xa6\xe3\x6c\x2d\xfc\xb0\x51\x58\x00\x2c\x90\ \xc5\xc8\xa4\xfe\x80\x01\xd8\xb0\x94\x5a\x42\x3a\xb4\x83\x38\xc0\ \x00\x2a\x55\x03\xb7\x13\x3d\x17\xc7\x37\xd3\x27\x73\x25\xcb\x83\ \x96\x47\xb7\xa3\x37\xba\x04\xfe\xba\x5b\x3b\x7a\xcb\xb7\xb8\xd7\ \x77\x7d\xd6\x2b\xf7\x9a\xc5\x40\xd9\x87\x02\xe4\x73\x47\x19\x18\ \x82\x05\xbc\x45\x59\xa0\x40\x1a\xbf\x3d\xdc\xa7\x83\x38\x88\x43\ \x36\x4f\x02\x0c\x10\xfc\xde\x17\xf7\x94\xf3\x00\x74\x43\x77\xbc\ \x6f\xf9\xbe\x23\x48\xa2\x67\x3d\xa1\xbf\xfc\xb0\x93\xf8\xbd\xe3\ \x09\xed\x2b\x7a\xb1\x27\xbb\xa4\x9a\xc0\x0f\x5f\x87\x21\x94\xc1\ \xe4\xc3\x82\xe2\x84\x05\x0d\xbb\xbd\x85\x52\x3c\xc5\xa7\x83\x71\ \x02\xbd\xde\x8f\x7e\xd6\xaa\x48\xae\xc7\x90\x22\x18\x40\x7f\x47\ \x77\x26\xe8\xc2\x3d\xe8\x82\xe1\x5f\xbd\x8a\xfb\x3b\xbc\xaf\xbe\ \xcb\x23\xfb\xec\x83\x7f\xcf\x6c\x3d\x7e\xe6\x3c\x5b\x98\x40\x28\ \xf4\xbe\x21\x38\x80\x65\xfd\x01\x00\x87\x3a\xf1\x17\x3f\xaa\xc7\ \x55\x27\x34\x3b\xf3\x27\x33\xef\x3c\xff\xf4\x28\x02\x0c\x44\xb7\ \x2f\xec\x01\x40\x64\xba\x27\xe2\xde\x9d\x53\xf5\x10\x9e\x6a\x61\ \xb0\x9e\x1c\x87\x08\x5b\x44\x6c\xf8\xb0\xde\xa9\x83\x07\x11\x4e\ \xa4\x58\xfe\x51\xa3\x9c\x8e\x0e\x41\x86\x04\xa9\x64\x4e\x0c\x93\ \x31\xf8\x98\x70\xe0\x80\x4f\x8a\x22\x7c\x0c\x54\x33\x00\xe3\x4f\ \x35\x4b\x62\x70\xe2\xbc\x99\x93\x67\x4f\x31\x96\xd2\xd5\xf0\x39\ \x94\x68\x51\xa3\x47\x91\x26\x1d\x5a\x46\xd1\x3f\xa7\x4f\xa1\x46\ \x95\x3a\x95\xaa\x53\x45\xe0\x4e\xdd\xf1\xe5\xab\x45\x26\x33\xf7\ \x74\x31\xac\xb8\x90\x21\xc8\xb1\x18\xcd\x5a\xb4\x58\x71\xed\xc6\ \xb6\x22\x45\x7e\x84\x4b\x72\x4e\x5d\xbb\x26\x53\xe4\xfd\xb3\x97\ \x17\x8c\x6a\xe9\x78\xee\x54\xfa\x73\x70\xe1\xa2\x1e\x92\x81\x30\ \xbc\xb8\xa7\xa1\xaa\x8f\x21\x57\x55\x14\x8a\x2c\xd9\x3b\x0b\xee\ \xb4\x38\xe8\x91\x6c\x47\x8e\x1a\x13\xaa\x55\xab\x79\x62\xc2\x8c\ \x70\x51\xa7\x76\x58\x32\x46\x0a\x93\x73\xe4\xcc\x49\xb1\x2a\xaf\ \x2c\x5e\x7f\x0c\xa0\x4b\x67\x49\xf0\x62\x4b\xe1\x18\x33\x4e\x16\ \xae\x86\xe2\xe0\x8c\x9b\x46\x56\xae\x5c\x11\x8a\x88\x11\xef\x44\ \x8f\x8e\x11\x61\xf4\x16\x08\x43\x6e\x36\xcb\x76\xad\xe8\xd2\xa7\ \xe5\xaa\x4e\xad\x44\x09\x4a\x59\xb2\x5c\xc7\xe1\xc3\x07\xbd\x2c\ \xf6\x0e\xd0\xf5\x66\x1c\x6e\xf7\x71\xa5\x88\xc3\x4d\x22\x63\xdf\ \xb0\xfe\x87\x32\xcb\x01\x7c\xec\x2a\x85\x34\x83\x4e\xba\x8c\xc6\ \x2a\x2b\x3b\xb4\x3c\xca\xc8\xbb\xb5\xbe\x8b\x2b\x3c\xf1\x46\x9a\ \x43\x16\x74\x42\x81\x05\xbd\xbc\x56\x59\x4f\x16\x95\xe2\xe3\xef\ \x37\xfe\x8e\xf2\x00\xbf\x64\x12\x23\x71\xb0\x2f\xd0\x09\xd0\x45\ \xa9\x9a\xb3\xa8\x40\x03\xaf\x6b\x50\x21\xed\x42\x62\x0b\x34\xb6\ \x34\xc3\xe8\xad\xd3\x28\x0c\x72\xa4\x3f\xd0\x31\xc4\x90\x0c\x53\ \xe0\x63\x95\xf3\x4c\x48\x52\x1c\xf9\x54\x8c\x12\x27\x0f\x88\x0b\ \x07\x31\xe3\xa4\x34\x2a\x19\x35\x92\x7b\xd1\x4b\x43\x22\x22\x30\ \x33\xb2\x4e\x01\x49\xc6\x1a\x73\xac\x87\x34\xb7\xc2\xf4\xb1\x2d\ \xec\x26\x14\x12\xae\x18\x4c\x30\xa4\x0c\x43\x26\x63\x82\x49\x59\ \x4c\x32\x00\xca\x2c\xf9\x03\xa1\x86\x74\xd2\x49\x11\x50\x9c\xc8\ \xc0\x92\x27\x64\x0c\xf0\xd2\xd1\x7f\xc0\x7c\x6e\xcc\xe7\xca\xf4\ \x28\x2b\xcd\xe0\x1a\x8b\x34\x8e\xce\x84\x30\xcc\x86\xe0\xc4\x4e\ \x4e\xf1\x94\x48\x01\x9d\x32\x2c\x29\x83\xa9\xf3\x60\x31\x21\x86\ \x39\x4c\xf8\xf3\xd0\xe0\x3c\xb0\xe4\x8b\x70\x92\x99\x15\x27\x10\ \x78\xe5\x95\xa7\x71\x42\x79\xf4\x45\x45\xe0\xb1\x6e\xa1\x19\x2d\ \xfe\x7a\xe8\xd2\x4a\x73\x24\x70\xb4\x67\x7d\x5c\x88\x41\x87\xa6\ \x1d\x15\x35\x25\x1c\x40\x35\x55\x43\x2c\x80\x45\xc3\x18\x94\xf0\ \x53\x57\x12\x41\x18\xae\x50\x45\x01\xed\xd5\x57\x44\xe1\x11\xf6\ \x45\x43\xe4\x91\xce\xd8\x1e\x27\x92\xb1\xda\x84\xa6\x3b\x4b\xad\ \xcc\x12\x3a\x76\xda\xb7\xac\x1d\xef\x0f\x3b\xb7\xb5\x20\xc3\x57\ \x1d\x90\x75\xdc\xa4\xae\x14\xc3\x03\x74\x75\x55\x94\x8c\x0b\xfe\ \x70\x37\x40\x45\x0c\xc9\x44\xde\x49\x21\x84\xa8\x63\xd0\x9c\xd5\ \x31\x41\xd2\x14\x52\x30\xad\x38\x03\x96\x03\x5b\x6f\xb4\xbd\x13\ \x16\xd8\xfe\x50\x78\xe1\x5d\x89\x5a\x77\x66\x31\xd0\x25\xc3\x07\ \x64\x78\xe8\xd2\xe2\xc8\x30\x0e\x62\x63\x4a\xa9\x13\x4d\xad\xd2\ \x08\xbc\x4e\x47\x19\x19\x3a\x13\x4e\x33\x93\x4d\x59\xb5\x39\xfe\ \xf0\x86\xb7\x54\x6b\x81\x59\xe6\xc1\x74\x86\x58\xcb\x5c\x7d\x02\ \xe1\xe1\x9b\x87\x02\x81\x0c\x64\xb8\x90\xc1\xe7\x9f\x05\x54\x44\ \x11\x6f\xaa\xd1\xd8\x58\x08\x8d\xbe\x51\xd4\x8a\x32\xeb\xee\x4c\ \x92\xa5\x95\xcb\x6e\xa9\x1d\x52\x62\x2e\x3e\xc0\xe1\xad\x0c\x07\ \x04\x47\x61\x6b\xa5\xc8\xd8\xaf\x30\x2b\x7b\x1a\xdb\xeb\x9b\xfe\ \x13\x0d\xa7\x15\x19\x60\x59\x9b\x6d\xc8\xdc\x36\x52\x1f\x5f\xf2\ \x76\xf0\x68\xd1\x94\x0d\xd9\xd9\xba\x8f\xdd\xae\xa1\x1b\x01\x27\ \x35\x85\xdc\xd0\x29\x42\x65\x14\xec\xb3\x79\x31\x0f\x7a\x1a\x8e\ \x6c\x9c\x0d\x45\xb4\xf1\x0b\xb2\x90\x43\xf3\xcd\x97\xc3\x18\x1c\ \x5e\x78\x81\x2d\x34\xbd\x4f\xb3\x17\xa2\x36\xdb\xb4\xae\xd2\xa5\ \x25\x12\xb2\xa2\x80\x63\x40\x23\x05\xd8\x94\xa0\xfd\xb8\x44\x27\ \x5f\x4c\xf7\x43\x4d\xcc\xdd\x50\x9d\x7d\x08\x07\x19\x28\xe4\x88\ \x63\x78\xe2\x01\x74\x5b\x11\x58\x0c\x78\x36\x34\x04\x6f\xb4\x48\ \x3a\x49\x9f\xab\xde\x52\xa3\x73\x94\x9a\xcf\xb4\x2e\x36\xd5\x50\ \x8a\xd9\x7e\x13\x3e\xfb\xa0\xe8\x50\x28\x42\x57\x32\xc8\x90\x2b\ \x10\x84\x23\x11\xe1\xd8\x07\x14\x1a\x02\x0b\xf8\x59\x4c\x7e\x57\ \xe1\xc1\xa6\x44\xa6\x2f\xcb\x40\x27\x4c\x9f\x52\x56\x8f\x98\x45\ \x21\x8e\x10\xd0\x21\x1f\x50\x83\x02\x41\x90\x0e\x64\x38\x01\x19\ \xc5\x99\x55\xa1\x00\x35\x1c\xdc\xf1\xe4\x61\xe5\x4a\xd4\xce\x32\ \xb0\x07\x90\x68\x70\x83\x9b\x33\xde\x07\xb2\x70\x16\x7c\x49\x6a\ \x63\x1c\x2b\xda\xc7\xac\x17\x35\x6b\x09\x4e\x24\x32\x80\xfe\x47\ \x05\x7b\x62\xb6\x70\x84\xe3\x56\xb8\x52\x20\xc3\xca\x96\x8c\xc5\ \x31\x8e\x0c\xb8\x02\x1b\x4f\x12\xc3\xab\xc6\x8d\x83\x07\x32\x00\ \x49\x0a\x8a\xb8\x41\xf9\xc1\x40\x1e\x12\x51\xd3\xa4\x9a\x38\xa6\ \xa3\x65\x44\x69\x0d\x8a\x22\xb3\x50\x16\x38\xd5\x28\x21\x0b\x7b\ \x80\x47\x38\x8c\x43\x86\x74\xe0\x2a\x51\x3b\xac\xdd\x2b\xc2\x66\ \x89\x33\x06\xaa\x4a\x10\xcc\xc9\xc3\x86\x93\xab\xe1\x04\x61\x0f\ \x54\x74\x08\x1c\xe3\x58\x44\x8c\xcd\xaf\x00\x25\xcb\x4c\x1e\x4f\ \x49\xaf\xfb\x59\x2a\x90\xa5\x03\xd5\x84\x3c\x29\x24\x19\xec\x01\ \x19\x39\xe9\x9d\x8a\x24\x99\xc5\x73\x45\xa9\x8c\xc4\xd9\xa5\x18\ \x22\x58\xa5\x70\x8c\xe3\x09\x6e\x0c\x89\x12\xde\x17\x4a\xb6\x75\ \x10\x74\x96\x39\xe5\xfe\xd6\xa4\xc4\x06\x4d\xc8\x33\xd1\x64\xe1\ \x31\xb9\xe0\xb8\x1c\x26\xc3\x91\x38\x49\x46\x3a\xba\x79\x1c\x2d\ \x0e\x4a\x7d\xc0\xc1\x59\x19\x3d\x40\x86\x49\x8c\x83\x7d\x73\x51\ \xe6\x3b\x9f\xe2\x36\x70\xb4\xc2\x0c\xcd\x1c\x5a\x69\xc2\xa4\x2c\ \x51\xc5\x65\x41\xad\x94\x9a\x0c\x9e\x80\x0c\x73\xf2\xf0\x38\x3d\ \xcc\x62\x2e\xc9\x65\x09\x1f\x2c\xd2\x05\xc8\xd0\x4f\xfe\x4e\xca\ \x38\x1c\x78\x18\x13\x2e\xa0\x84\x27\x3c\xe5\x67\x08\x7d\xc4\x4b\ \x5e\x7d\x0c\x21\xc0\xf8\xe9\xca\x6b\x0e\x12\x0a\xf2\x18\x07\x19\ \x10\x53\x03\xe2\xf4\x2e\x9c\x45\xf1\x1a\x62\x54\x64\xb6\x32\x36\ \x74\x91\x03\xf5\x66\x38\x82\x90\x85\x58\x86\x24\x99\x17\x15\x25\ \xc6\xd0\x11\x04\xb9\x6d\xca\x46\xce\x93\xcb\x3e\x57\x38\x52\x0a\ \xf1\x20\x11\x38\x2b\xd7\x16\xc7\x86\xb3\x96\x7a\xd3\x12\x51\x1d\ \x8a\x25\xbe\x48\xc6\xe1\xd0\xf0\x0b\xda\xcc\x09\x08\x72\x2a\x9e\ \x9e\xfa\x34\x8e\x9d\x03\x47\x06\x88\xca\x19\xe9\x1d\x15\xa9\x38\ \xf2\x27\xe0\x64\xc0\x85\x2f\x40\x0c\x86\x5e\x9c\xdc\xf8\xc8\x55\ \xc6\x2f\xd4\x34\x67\xe3\xd0\xa9\x6a\x42\x31\x56\xb2\xbe\xd3\x6d\ \xb0\xd8\x1e\x67\x32\x81\x29\xd4\x28\x04\x69\x68\x01\x95\x52\x53\ \x93\x85\x5a\xf6\xa4\x6b\x97\x4c\x94\x52\xaa\x3a\x55\xc6\x04\x13\ \x82\xe1\x04\x01\x33\x32\x10\x3c\xb1\x0e\x96\xb4\x53\x91\x9f\x01\ \x0c\x70\xac\xf0\xa8\x09\x4d\x6a\xd2\x0e\x90\x20\x2b\x12\x25\xf0\ \xc0\xab\x13\xf4\xe2\x57\xb3\x3a\x25\x29\x91\xe1\x37\xb7\x44\x54\ \x10\xda\x49\xa1\x60\x95\x96\xb8\x50\x91\x1f\x38\xfe\xd0\xf1\x81\ \x00\x96\xee\x84\x80\x7c\x2b\x01\xe5\xe1\x38\x32\x10\xa0\x71\x5e\ \x2d\x4c\x6e\x0f\x68\x89\x44\x61\xb5\x27\x6a\xc8\x00\x45\xc5\xc3\ \x07\xc1\x16\xf7\xa2\x19\x85\x85\x12\x64\x00\x24\xd0\xf4\x68\x3b\ \xb1\x45\x4d\x3d\x2e\x80\x93\x44\x64\xe0\x02\x04\x10\x67\x96\x26\ \xa8\x46\x45\x81\x40\x1e\x3b\x55\x0d\x11\xc9\x1b\xe0\xa8\x74\x8e\ \x17\x1f\x00\xef\x43\xfc\xf7\x10\xf7\xc2\x65\x0f\xe6\x64\xc6\x1e\ \x32\x60\xd3\xeb\x62\x77\x30\xda\xc5\xaa\x60\x2c\x91\x81\xb7\x2a\ \x61\xb8\x02\xf6\xb0\x71\xdd\x26\x0b\x03\xe4\x28\xc1\xcf\x6d\x1d\ \x0f\x1c\x2c\x8f\x02\x04\x41\x03\xf6\xcd\x09\x01\xc2\x61\xdd\x2c\ \x52\x38\xbb\xbc\xe5\x49\x3a\xfa\x3b\x2a\x8b\x7e\x98\xc7\xf1\x74\ \x5b\x28\x52\x20\x4d\x05\x07\xd2\xbf\xa3\x92\x41\x26\x12\xc1\xab\ \x44\x5c\x00\x11\x05\x80\xc7\x03\x98\x91\x08\xea\xc2\x18\x91\x44\ \xb9\x6c\x52\x64\x8c\xdb\x9c\x58\x22\x15\x57\xfe\xc9\x38\x94\x6b\ \xad\x1d\xf7\x98\xcc\x1d\x04\x87\x0c\xd0\x6c\x16\x0a\x15\xd9\x5a\ \xbe\xb8\x80\x08\x12\x91\x0b\x66\x5c\xa0\x00\x7b\x28\x80\x3e\xea\ \x50\x87\x70\x10\x00\x04\x04\xe8\x32\x4f\x7c\xfe\xd5\x38\x1a\xd7\ \xcc\x38\x08\xbc\x31\x0a\xd8\x3c\xc8\xf1\x92\x39\xc0\x9d\x53\x44\ \x0a\x3e\xb0\xcf\x05\xab\x0c\x17\x3e\x20\x40\x22\x3a\x80\x0b\x5c\ \xa8\x18\x17\x75\xc0\x45\x10\x1e\x60\x5f\x3e\xbb\xd8\xb6\x31\xa6\ \x32\x04\x79\x85\x48\xaf\x99\xed\x28\x36\xe3\x0d\x0a\x62\x20\xb5\ \x39\x30\x9a\xd6\x54\x91\x1f\x3a\x78\x71\xe0\xd8\xee\x21\x00\x38\ \x21\xc0\x03\x34\x8d\x8b\x07\xd4\xe1\x02\xfa\xc0\xc5\x05\x72\x61\ \xdf\x44\x6e\x91\xd9\xcc\x16\x28\xae\x20\x37\x14\x2f\x13\x25\x15\ \x3f\xb1\x44\x10\x50\xd0\x8b\x44\x53\x08\xc0\xb5\xf6\x36\x88\x7f\ \xbc\x6d\xc0\xe1\x82\xd4\xc0\xae\xc3\x03\x86\x7d\x6e\x5c\xe8\x83\ \x19\x8a\xe9\x33\x01\xa8\x6c\xb6\xf4\x55\x70\x8b\xa8\xde\xaf\xbb\ \x27\xd7\x67\x31\xa4\x42\x0d\xfa\xc8\x40\x01\xe6\x20\x6e\x0a\x2d\ \xfa\xdb\x65\x9e\xdf\x1c\x44\xcb\x42\x19\xc4\xd7\xd7\xb9\x40\x77\ \xb0\x99\xf1\x83\x02\xe0\xe2\x07\x2e\x86\xb1\xa0\x0b\x9d\xbe\xf4\ \x41\x10\x7c\xc0\xec\x65\x96\x73\x92\x8a\x6a\x8c\x03\xd1\x02\x17\ \xd2\x1c\x08\x5e\x70\x83\x1b\xa2\x25\x26\x57\x8d\x2f\x42\x0d\x6f\ \x02\xe4\xc2\xe1\x05\xb0\xb9\x06\xea\x50\xfe\x80\x5e\xb8\x43\xd4\ \xa9\x08\x47\xb5\x7d\x02\xbe\x5e\x42\x7b\x8b\xc8\xa8\x20\xc4\x52\ \x91\x0e\x35\xa0\x40\x06\x2e\x97\x53\x87\x55\x1e\x75\x18\xb9\xcd\ \x02\x06\x48\x81\x47\x02\x36\xdb\x07\x04\x80\xe6\x33\x07\x36\x22\ \x9a\xec\x07\x89\xf7\xa2\x00\x1a\x48\x45\x2a\x34\x90\x8e\x2f\x92\ \xc1\x05\xaa\x7e\xea\xad\x2a\x97\x8e\x44\xa9\x01\x0a\x4d\x77\xfa\ \xa8\xa0\x2e\x75\xbd\x83\x1b\x1c\x06\x30\x39\x15\x4f\x81\x8b\x0e\ \x9c\x9b\xe6\xb9\xc0\x05\xd8\xc3\x9e\x0a\x3f\xe8\xfc\x07\x66\x47\ \x3b\x96\x29\xbb\x45\x2d\x22\x83\x50\x19\x98\xb4\x43\x64\x91\xf2\ \xbd\xd7\xba\x83\xae\x81\xcd\x52\x1f\x8e\xee\x61\x17\x00\xf1\x75\ \xd0\xc0\xbe\xf5\xb1\xf3\xb3\x9f\x3d\x38\xb6\x23\xc3\x38\x84\x78\ \xf9\x6e\x6f\x9e\xf6\x53\x57\x84\x7b\xd8\x2c\x03\x5c\x88\x80\x19\ \xe8\xae\x39\x22\x54\x01\xf6\x3a\x54\x9b\x00\xee\xb8\x33\xf1\xc7\ \x28\x6d\x9f\xa4\x23\xe1\xee\x9d\x43\xde\x6b\x1f\x7d\x1f\x17\xf6\ \xea\x22\xd9\x43\x05\x73\x81\xec\x5c\xd4\x01\xf8\xc1\x77\x47\xe3\ \x41\x90\x0a\x89\xeb\x83\xf8\xa9\x18\xf4\x39\x7d\x92\x8a\x30\x2f\ \x78\xcc\xd2\x77\xff\xf4\xaf\xe2\x00\xfe\x90\x44\xd7\x07\xc0\x4e\ \x36\xf7\xe5\xa0\x8a\xb2\xa3\x5d\x03\x1a\x70\x47\x2f\xf4\xa1\xc5\ \xce\x2e\xf9\x66\xac\x27\xc2\xe1\xf3\xd8\xef\xfd\x14\x50\x32\xf0\ \xe4\x03\x0e\x29\x11\x82\xa0\x0e\xa4\x2c\x17\x0a\x20\xf8\xfc\x60\ \x57\xfc\x4f\xe7\x0a\x40\x0d\x08\xc0\x12\xcc\x8e\x31\xcc\xaf\xbb\ \xee\x6e\x54\x94\x60\x01\x4d\xd0\xd6\x30\xc6\x10\xbc\xe1\x07\xea\ \x80\x19\xfa\x6f\xfc\x80\x6e\xdf\x7e\x20\x03\xc8\xee\x02\xfd\x2c\ \x06\x5d\x0a\x5d\x6c\x47\x0c\xf4\xe1\xf2\x4a\xf0\x04\x81\xd0\xf6\ \x8c\xc4\x0f\xdc\xa1\x08\xeb\xc0\xc5\x64\x50\xe7\x7a\xe1\xf4\x7e\ \x02\x09\x5d\x6a\xda\xf4\x2d\xe4\x72\x6c\xc1\x66\x2f\x08\xad\xf0\ \x1f\x32\x0a\x1c\xdc\xc1\x0f\x90\x50\x03\x74\x4e\x15\x70\xe1\xf4\ \xa2\xb0\xd5\xf8\xac\x6c\x60\x8c\x00\xd4\xa0\xf9\x20\x4b\xf3\xae\ \x50\xfa\x3a\x07\x55\xd0\xce\x0f\xb2\xad\x17\x50\xc0\xf1\x94\x82\ \xba\xa8\xcd\xe8\x70\xe2\x07\x46\x30\x48\x50\xae\x0d\x01\x71\x2a\ \xf0\xc4\x10\xc0\x61\xf1\x34\xb0\xf1\x70\xb0\x28\xf8\x6c\xd5\x12\ \x81\x19\xd4\x00\x27\xd4\xc0\xc4\x84\x04\xfa\x02\xb1\x12\x3b\xc8\ \x00\xc8\x8e\xdd\x12\x51\x0c\x9c\xfe\xd0\xd7\x3a\xf1\xc5\x8c\x4e\ \xca\x3e\x4b\x0d\xaf\x89\x12\x2b\xf1\x14\xcd\x8c\xfc\x8e\x42\xe6\ \x3e\xb1\xcf\x9a\x0d\x38\xd4\x2f\xb6\x32\xef\x14\x69\x51\x32\xdc\ \x46\x66\x2e\x6d\xcf\x7c\x82\x00\x7c\x20\x11\x1a\xa7\x0c\xc5\xc0\ \xf2\x20\x4b\x16\x6a\xb1\x18\x6d\x11\x55\x88\x02\xc6\xe8\x6a\x8b\ \x7c\x80\xd5\x70\xa2\x07\x95\xea\x0f\x8d\x71\x1a\x85\x30\xf9\x60\ \xcc\xd2\xa6\x2b\x27\xd4\x00\xb2\x62\x80\x1a\xbd\xd1\xb4\xdc\x06\ \x19\x8f\x02\x1b\x7b\x05\x27\x52\x81\x14\x01\xa7\xfd\xbe\x71\x1d\ \xad\x42\x11\x6e\x82\x00\xc5\x00\x05\x46\xea\x07\xd9\xb1\x1e\x07\ \x2c\x1c\x93\x4f\x1f\xfa\xd0\x9d\xec\xb1\x1f\xef\x91\x60\x8e\x62\ \x1c\xf6\x51\xb6\xfc\xb1\x20\xc1\xcd\x4e\x8a\x22\x1c\x82\xab\x75\ \xd8\xd0\x20\x8d\x11\x63\xca\x60\x28\xe4\xe1\x9a\x1a\xd2\x21\xa7\ \x11\x22\x23\xf2\x19\x59\x28\x05\x2a\xd2\x22\x2f\x32\x05\xcb\x40\ \x0d\x06\xd2\x21\x4c\xd1\x23\x4d\x32\xa3\xb6\x27\xe0\x82\x24\x96\ \x38\xcc\x24\x5d\xb2\x6d\x0c\xc1\xb0\xd0\x31\x35\x88\xf1\x25\x6d\ \x12\x05\xdd\xc6\xea\x84\xa4\x26\x6f\xb2\x27\x6d\x4f\x11\xfe\x20\ \xd1\x62\xa0\x23\x7d\xd2\x1f\x23\x3b\xc8\x24\x62\xa9\x1b\x8b\x72\ \x29\x6d\x71\x7e\xf8\x20\xd6\xe4\xa0\x0a\x99\x72\x2a\xa7\x8f\x7e\ \xa8\xf2\x2a\x71\x12\x2b\xb5\x92\xf6\x02\x02\x00\x21\xf9\x04\x09\ \x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\x04\x02\ \x13\x1c\x84\xab\xff\xff\xff\x8c\x89\x46\xff\xff\xff\xff\xff\xff\ \xd3\x88\x8b\x93\x4a\x34\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xce\xc8\x99\xff\xff\xff\x5e\xc8\xf6\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd0\x48\x92\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x51\x67\x9d\xce\xc8\xe1\xff\xff\xff\xff\xff\xff\x13\x27\ \xa9\x10\x27\x69\xce\x66\x47\xff\xff\xff\xf3\x8a\xb8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xf6\xa7\xb8\xf9\xc8\xe4\xb0\xa9\xb5\xff\ \xff\xff\x8f\x68\xb2\xb3\x89\xb4\x12\x29\xde\xff\xff\xff\x4e\x68\ \xf8\xff\xff\xff\xd1\xe7\xfa\xff\xff\xff\x22\x45\xe7\xff\xff\xff\ \x93\xf3\xfc\xff\xff\xff\x2b\x2a\x67\xf1\x70\x44\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf4\xb1\xf2\xae\xb4\xf4\x75\x8c\ \xae\xf6\xe8\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x89\x22\x81\x91\xc8\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd1\ \x28\x20\x6b\x69\x22\xff\xff\xff\xf9\xd8\xe8\x49\x4b\xe2\xff\xff\ \xff\xff\xff\xff\x8c\x96\xf7\x2a\x2a\x1e\xce\xd9\xf0\xff\xff\xff\ \xff\xff\xff\xd3\x8f\xf4\x39\x56\xf6\xfa\xfd\xfa\xb0\xc8\xf6\xff\ \xff\xff\xff\xff\xff\x10\x38\x67\xb7\x67\x4a\xff\xff\xff\x8d\x2b\ \x26\xff\xff\xff\xff\xff\xff\x28\x2a\xec\x09\x18\x62\x3c\x64\xf6\ \xf1\x99\xb3\xd1\xaf\xf6\xb0\x8e\xf3\x30\x8f\xc7\xff\xff\xff\xff\ \xff\xff\x2e\x48\x64\x07\x15\xdd\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x8f\xb1\xf9\x73\x69\x63\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xfa\xb8\xbc\xf0\x91\x91\xff\xff\xff\x70\x87\xf8\x8e\x97\x4e\xb2\ \x68\xed\x32\x49\xeb\xf3\x74\x70\x32\x47\x96\xf9\xd0\xa0\xff\xff\ \xff\x77\xf2\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf2\x35\x36\xf8\ \xa6\x88\x4c\x27\xdc\xff\xff\xff\x27\x18\x8e\xff\xff\xff\xff\xff\ \xff\xf8\xea\xb4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x95\x56\xf3\x93\x6e\xf8\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xe8\x56\x9a\xff\xff\xff\x75\x13\xa9\x4e\x96\ \xe0\x91\x6e\x6e\xb2\xf3\xfc\x6f\xb3\xf5\xff\xff\xff\xff\xff\xff\ \xb9\xd6\x90\x90\x12\x4b\xff\xff\xff\xff\xff\xff\x75\xca\xf9\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x91\xd8\xfb\xff\xff\xff\xaf\xd8\xfb\xff\xff\xff\xff\xff\xff\xd4\ \x97\x92\xff\xff\xff\xff\xff\xff\xfc\xb7\x8b\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x18\x35\xa6\x12\x78\xa8\xff\xff\xff\xff\ \xff\xff\x19\x37\xe0\xff\xff\xff\x58\x76\xfa\xd0\xfb\xfc\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x47\x5b\xf5\xff\xff\xff\xff\xff\xff\x68\x7a\xf5\xff\xff\xff\x8c\ \x3e\x27\xff\xff\xff\xff\xff\xff\xb1\x58\x37\x71\x78\x9c\x31\x57\ \x63\xb4\x58\xaf\xff\xff\xff\xff\xff\xff\x37\x57\x92\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x71\ \x5a\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x04\x58\ \x8b\x94\x98\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x6f\x78\x28\xff\xff\xff\x77\x96\xfa\xb1\ \x78\xf8\xff\xff\xff\xff\xff\xff\x66\x5b\x1a\xff\x00\x00\x08\xfe\ \x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x06\x97\x28\x5c\xb8\x04\xa1\ \xc3\x87\x10\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\x88\ \x70\x09\x9b\x2e\x21\x42\x82\x59\x72\x6a\x21\xc7\x93\x28\x53\xaa\ \x5c\xc9\xb2\x25\x45\x85\xf0\xba\xc8\x94\x09\x0f\x5e\x32\x78\x6c\ \x4e\x9d\x1a\x09\xc6\xa5\xcf\x9f\x40\x83\x0a\xd5\xb8\x84\xdc\xcd\ \x99\x35\x93\xdd\x8c\x29\x53\xe9\xb6\x03\x46\xb6\x8d\x1c\x4a\xb5\ \xaa\xd5\xab\x44\x8d\xd6\xa4\xa9\x74\x29\x52\xa5\x01\x96\x92\x3b\ \xc0\x22\x94\x1c\x16\x0d\xb1\xaa\x5d\xcb\x36\xe8\xa9\xb0\x47\x6d\ \x26\x0b\xbb\x35\x66\xd2\xb9\x4a\xd3\xa4\x19\x35\x4a\xef\x37\x0e\ \x72\xfc\xb0\x49\xdb\xb6\xb0\xe1\xc3\x12\xb7\xa5\xa1\x7b\x77\xb1\ \x57\xae\x7a\x03\x48\x06\xc5\x17\x14\x28\xbd\x4b\x03\xfc\x4d\x43\ \xce\x1f\xe2\xcf\xa0\x0b\x2f\xf9\x96\x66\xa9\x5c\xc9\x5b\xbf\x06\ \xd0\x6b\xf9\xc1\x28\x55\x7d\x93\x69\x65\x1d\x59\xf2\xcd\x00\xa0\ \xe2\x31\x54\x18\xba\xb7\x6f\x94\x4b\xe4\x5c\x0e\x50\xd3\xe6\x6a\ \xba\x33\xbb\xd4\x5c\xbd\x38\x8d\x6b\xd8\x69\x92\xa6\xb1\x5c\x9a\ \x79\xe9\xb9\xa0\x1e\xe8\x73\xe6\x8c\x83\x33\x85\x8a\xc2\xfe\x13\ \xfe\x4d\xbe\x7c\xc7\x6f\x0f\x16\x17\x4f\xb6\x18\x79\x72\xe3\x92\ \xa7\x3f\x80\x9e\x37\x7b\x69\xe3\xa0\xe0\x06\x70\x3d\xea\xb2\x5e\ \xbe\xaa\xd8\x82\x8b\x01\x14\x2c\x01\xc6\x4e\xe3\x99\xa7\x60\x68\ \x4b\x70\xf0\x40\x7e\xc5\x59\x77\x94\x72\xca\xc1\xc7\x5e\x76\xb0\ \xf9\xe7\x9c\x63\x36\x4d\x47\xd7\x5e\xaa\x3c\x18\x5f\x76\xb6\x08\ \x68\xc3\x11\xd1\xd5\xf4\xcd\x01\xe1\xb0\x98\xe0\x82\x30\xaa\x75\ \x8a\x83\xea\x19\xa7\xd7\x7d\x14\xde\x35\xd7\x6a\xae\xf5\x98\x5d\ \x7f\xf7\x75\x08\xe1\x6a\xaa\xd8\xd0\x57\x58\x20\x96\x28\x8a\x28\ \xb6\x80\x02\x0f\x08\xc9\x58\x26\xa5\x14\xa1\x94\xc5\xc2\x01\x31\ \x66\x59\x15\x18\xb8\x3d\xb0\x14\x7b\x1b\x32\xb6\x1e\x58\xac\xf1\ \xd7\xe3\x03\xe9\x75\x05\xe6\x4d\x51\x06\x62\x4b\x9a\x51\x3e\x50\ \xa2\x0d\xb8\x2c\x09\x0a\x32\x64\xc0\x43\x9d\x65\x95\xe9\x63\xd9\ \x37\x2c\x7c\xd3\x82\x6e\x5a\x16\xba\x92\x81\x1b\xc2\x83\x0c\x3c\ \xab\xd9\x17\xa4\x8e\x73\x39\xd7\x23\x5f\xf3\xbd\x79\x1f\x58\x5f\ \xca\x69\xcb\x28\x79\xbd\x66\x8b\x0d\xb6\x2c\x69\xc3\x9d\x20\x74\ \xf8\x5f\x7f\x52\x4a\xf9\xda\x11\x71\xc4\x13\xc7\x0f\xfe\x3f\xa8\ \x40\x81\xa1\xb4\x5e\xb4\x84\x1f\x1b\x66\x86\xe6\x83\x8f\x32\xaa\ \xe6\x5e\x3e\x56\x6a\x8b\x2a\xf9\xa9\xb9\xde\x28\xc3\xb6\x07\x4a\ \x80\x4c\x2a\xd9\x24\x3c\x64\x2c\x5a\x5f\x65\xfe\xe9\xc3\xd7\x11\ \xb0\xc5\x71\xc4\x11\xb6\xc4\x31\x8a\xb6\xde\xa2\xc5\x50\xad\xe4\ \x12\x14\xdc\x74\x29\xc2\xa3\x97\x8f\xc4\xc5\x84\x97\x5c\xce\xa9\ \x02\xdb\x83\x45\x82\x0a\xa1\x52\xa9\xed\x07\x1d\x6e\xaf\xd9\x20\ \x0a\xa8\x9f\x6e\xaa\x68\x85\x51\x5a\x0b\x24\x39\xd3\x5d\x7b\x84\ \xc2\xde\x8e\xb2\xf0\xc2\x52\xbc\xfa\xea\x0f\x8a\x2c\x51\x71\x78\ \xe5\x16\xda\x60\x7a\xe9\x76\xb9\x6b\xbb\x1d\x66\x06\xec\xbc\x9e\ \x82\xfa\x80\x6d\x5e\xd9\x94\x5d\x7e\x09\x07\x68\x0b\xb6\x25\xbe\ \x69\x1a\x76\x0e\x8f\xa2\x0f\x71\x65\x50\xb6\x2d\x6c\x7c\xf5\xfc\ \xed\xc2\xd7\x6a\xbb\x6d\xc3\x47\xe0\x82\x0b\x05\x14\x28\x22\x42\ \x81\x19\x9b\xb7\x31\x66\xf0\xca\x77\x99\x5d\x91\xe1\x37\x9f\x99\ \x45\xe2\x12\x48\x5f\x1c\xda\xc5\x1e\x90\x8d\xce\x27\x6f\x80\xa0\ \x8e\xd2\xae\x52\x7c\x7a\x0b\x0a\x9b\x3a\xbf\xdc\x9f\xc1\x3f\xb3\ \xfa\xad\xb7\x42\xd3\xbd\xed\xcb\xdc\x8a\x32\xa0\xfe\x08\x9d\x88\ \xd0\x87\x22\x4d\x87\x06\x86\xa3\x5f\xf2\x88\x26\x71\x5d\x80\xd9\ \xae\xa4\xa3\xec\x2a\x6f\xc0\xc4\x3a\x66\x1a\xa3\x8e\xb2\x36\x76\ \xd6\x96\x92\x09\x0a\xdc\x69\x94\x21\x1b\x65\x6e\xf7\xe7\xb3\xb6\ \xd9\x62\x2b\xb4\x16\x44\x6b\x71\xf7\x92\x46\xe3\x22\xa0\x2d\x67\ \x18\x20\xbb\xec\xb3\x06\xbe\xd6\x12\xdb\x64\x97\x66\x84\xce\xf5\ \x87\x78\x32\x68\xb2\xd9\x3b\x7f\x01\x92\x3d\xec\xc9\x28\xdb\xd4\ \x21\xaf\x65\x8e\x1d\xb0\xd9\x17\xaa\x7a\x30\x76\x77\xf3\x65\xad\ \xb6\x0e\xb3\xba\x70\x1c\x76\xab\xfe\xb3\xd1\x02\xb2\x5e\x74\xeb\ \xe4\x6b\xa1\x45\x07\x28\xd8\xa1\x3e\x0a\xb6\x57\x85\xbb\xa4\x38\ \xa2\xed\x5a\x7e\x4d\xf5\xb7\x94\xee\xfd\x55\x2a\xaf\xc9\xed\x39\ \x06\x17\x7b\xcc\x8b\x57\x88\x98\xd5\x24\xec\x3c\x48\x55\xc5\xca\ \x99\xc3\x42\xa7\xb0\x6d\x6d\xab\x67\x71\x50\x85\xb6\x70\xd1\xb0\ \x3a\x31\xa9\x4e\xe4\xcb\xa0\xde\x5a\x27\x83\x2c\x78\x30\x0b\x4e\ \x48\x41\x0a\x1a\xe0\x8f\x17\xb5\x2f\x25\x4b\x38\xc0\xae\xbc\xe4\ \x35\xca\x5c\x26\x19\x4d\xb1\x8c\xf0\x78\x85\x26\x79\x89\xed\x4d\ \x61\x39\x4e\x64\xc0\x02\xa4\x78\xbd\xa9\x5f\xfe\xa2\x50\x45\x69\ \x24\x75\x99\x54\x25\xa3\x0c\xb8\xe1\x96\xeb\xf8\x42\xb4\xa2\x89\ \x82\x55\x06\xe3\x9e\x16\x70\x71\x04\x6b\x69\x61\x83\xa1\x62\x9d\ \x05\x5b\xf7\x32\x5c\xc8\x80\x0a\x54\xf8\x60\x16\x3a\x10\x8f\xbf\ \x00\xe0\x8c\x67\x9c\xc2\x48\x76\x73\xc2\x8c\x14\x45\x77\x38\xea\ \xd0\x91\xea\xa2\x1e\xe5\xdc\x48\x3e\x68\xd2\x1d\xb1\xe0\x72\x47\ \x3e\xf2\xaa\x71\x25\xaa\xe1\x92\x84\x08\x40\xd7\x4c\x87\x3a\x92\ \x71\x06\x28\x9c\xf8\xb2\x86\x39\x6c\x49\x32\x10\x85\xf5\x98\x68\ \x0b\xef\xc5\x61\x8b\x5a\x0c\x55\x24\xf5\xf6\xc4\xa2\x51\xc1\x8b\ \x62\x54\x01\x1b\x00\x30\x05\x34\x96\x72\x0a\xfe\x50\x41\x03\x98\ \x50\x4a\x9d\x8c\xab\x8d\x12\x69\x90\xee\xbc\x44\x13\xdc\x40\xad\ \x42\xa9\x89\xd4\x8d\xa4\x34\x1d\x1b\xf2\xd1\x3f\xb7\x71\x21\x89\ \xca\xf6\x9a\x3a\xb1\xf0\x35\xc4\x4a\x15\x28\x9c\x71\x48\x01\xb9\ \xee\x81\x3f\x93\xc1\x33\x44\x21\x83\x23\x50\xc6\x60\x47\xf0\xde\ \xf8\x38\xb9\x24\x4e\x46\x12\x7c\xdb\xf2\xa2\x34\x3f\x18\x84\x78\ \x94\x12\x8d\xa4\x24\x25\x1b\xf0\xa1\x07\x7c\x80\x83\x0d\x6c\x38\ \xe7\x14\xa6\x60\xb1\xf0\x88\xc0\x84\x6d\xfe\x54\x08\x00\x65\x28\ \x9d\xe1\xa4\x0c\x29\xea\xaa\xcd\x1d\x6b\x38\x9c\x22\xd6\xa8\x4b\ \xad\xe1\xd6\x0f\x1f\xe0\xaf\x51\xd8\x44\x4e\x21\x2a\xa2\x7f\x36\ \xb7\xc0\x61\x7d\xeb\x5a\x59\x5c\x12\xd0\xae\xc7\x3d\xba\x85\x6f\ \x49\xd3\x34\x9a\x16\xe9\xe4\xc0\x71\x8a\xf1\x1b\xe8\x44\xe7\x3c\ \xa7\x00\x0e\x26\xb0\xb3\x9d\x4c\xf0\x87\x4b\xf5\x60\x8a\x9a\xfe\ \x21\x07\x39\x10\x81\x4e\xef\x09\x4b\x85\xac\x6b\x77\x89\xb3\xcf\ \xe4\x52\xc3\xa8\x0d\x09\x34\x5e\x68\x92\x1a\x87\x2e\x94\x21\x4d\ \x6d\xca\x53\x05\x4c\x46\xf1\x80\xa4\xcc\x06\x32\x31\x6e\x75\xfa\ \xa6\x23\x2f\xea\xad\x70\x82\x54\x6f\xe1\x93\x41\xcc\xf0\x06\x4a\ \x31\x52\x81\x03\x29\x4d\x2b\x4b\xf5\xa0\x02\x53\xa8\x40\x0f\x70\ \x85\x6b\x03\x22\x41\xd7\x9a\x36\x40\x95\x2a\xf0\xc2\x01\xc0\x00\ \x86\x03\xe0\x53\x63\x60\xc8\xe3\xee\x28\xd7\xab\xe2\x28\xe7\x42\ \x34\xbc\x63\xe3\xf2\x67\x48\x35\x35\xaa\x32\xc8\xb2\x61\xc9\xcc\ \x06\x8a\x40\x4a\x14\x55\x7c\x92\xd7\x56\xbf\x87\x41\x2a\xb2\x8a\ \x7b\x36\xfb\xd9\x14\xa9\xc9\x3a\x6e\x96\xa8\x68\x2f\xbb\xa2\x59\ \xbf\x71\x4e\x95\xae\x54\x9d\xf8\xa8\xfe\xa9\x29\x64\xe0\x56\x3d\ \x34\x60\xae\xcf\x30\x45\x5c\x69\x0a\x57\x26\xb4\x14\x1f\xbb\xf0\ \x85\x2f\xd4\xd7\x87\x5a\x2d\x21\x1c\xbb\x9a\x23\xa3\x50\x53\x9c\ \xf5\x48\x67\x85\x57\x0b\x5b\x5f\x7e\x74\x1d\xe6\xf0\xe9\x47\x97\ \x73\x16\x80\x6c\x90\x4c\xf9\xa0\x2a\x61\x0b\x04\x5a\x1e\xac\x95\ \xcd\xce\xe2\x8d\x6e\x71\xfb\x28\x27\xb7\xf8\x3a\xf2\x75\xd0\x83\ \x54\x00\x42\x6b\xd3\xc8\x52\xdf\xfa\x76\xad\xb3\x8d\x44\x6e\x4d\ \x71\x57\xfe\xbe\x15\x1f\x2f\x85\x2b\x80\x01\x4c\xd3\x48\x90\xd3\ \x09\x7f\x30\x80\x1a\xb7\x11\xa3\x25\x84\xc2\xb2\x92\xc3\x97\x5d\ \xbe\xf2\xdc\x61\xb9\x0c\x7a\x92\x7a\x90\x21\x27\xb3\x27\x29\x89\ \x4d\x15\xdc\x02\xd8\xfe\x2c\xfa\xd8\x1e\x5a\x26\x9c\x54\x44\x95\ \x3e\xb6\xf9\x4d\xcf\x5e\xd4\x81\xce\xec\x66\x9d\x9e\x11\x52\x19\ \x1b\xed\x19\x1e\x0c\x42\x07\xd0\x6a\xca\x2e\x80\xe3\xb7\x02\x26\ \x70\x4d\x65\x70\xdb\xb6\xaa\xe0\xad\x41\x1e\xb0\x80\xe3\x6a\x0a\ \x03\x8b\x91\x84\xa5\xf4\x07\x3b\x07\x00\xd7\x8a\xbd\x12\x31\x4b\ \x88\xc7\xf1\x6e\x84\xaf\xc9\x7d\x85\x4d\x01\x28\xd2\xb0\x02\x79\ \xa3\xf9\x3d\xa8\x87\x87\x54\x26\xfe\x88\xc7\x1c\xb3\xc7\xd1\x69\ \x53\xcd\x11\x66\x1a\x0c\x96\x45\xd4\xf9\xc9\x61\x59\xa5\xb1\x0c\ \xa8\xd8\x44\x07\x8a\x74\x93\xdd\xe4\xa6\x16\x71\x0c\x5f\x20\x7c\ \x84\xa5\x3f\xfe\x2d\x10\xf4\x70\x84\xb8\x1e\xc1\xbf\x4c\xbe\xeb\ \x6e\x07\xfc\x52\x21\xd3\x55\x8c\x91\xd0\xc3\x39\xfd\x41\x65\xb8\ \xee\x42\x0f\x03\xf0\x47\x2b\xd9\xc8\x16\x85\x8c\xad\x87\x60\xde\ \x21\x57\x50\x96\x06\x55\xe0\x82\xbb\x16\xf5\x70\x44\x29\x03\xb6\ \x84\x79\x18\x59\x73\x2a\xd1\xd8\x8e\x60\x83\x5e\x47\x6e\x2f\x98\ \x6d\x1b\x38\x43\x3b\x3e\x1a\x87\x14\x17\x4c\x74\xa0\x57\x49\xdb\ \xe2\x6e\xca\x60\xcf\x46\x13\x63\x10\x62\x05\x04\x20\x7c\xc3\x9d\ \xbe\xfd\xf1\x4b\x17\xdd\xd6\xdd\xb2\xb5\xa6\x71\xa5\x74\xa5\xd9\ \xd9\x64\x4c\x47\x62\x00\xa7\xc4\xc7\x00\xa8\xbc\x0b\xfe\xa2\x5b\ \x9e\x53\x00\xb0\x37\x76\xf3\x57\x97\x28\xa4\x71\xfc\x79\x21\x62\ \x63\x63\x17\x5b\x2e\x66\x59\xba\x7e\x4d\x65\xe6\xf3\x5d\x81\x83\ \xc2\x28\xb4\x16\x1d\x54\x75\x4d\xbc\x50\x95\xa8\x3f\x8a\xb4\x99\ \x65\xf4\x01\x62\xd7\x79\xf6\x7a\x45\x8b\xa4\xb1\xf9\xac\x6c\x3f\ \x83\x74\x93\xaf\x8e\x71\x9d\xfe\xb4\x60\x52\x0f\x1e\x21\x1e\x40\ \x88\x03\x10\xdc\xf9\xe3\x95\x82\x23\xc0\xf1\x70\xeb\x5b\xed\xfa\ \xd6\x01\xb0\xfc\xe5\x02\xfe\x31\x4d\xb3\xe0\x64\x9e\x67\x5a\xd4\ \x9c\x66\xb7\x29\xfe\x90\xe9\x95\xb2\x41\xca\x54\x1e\xb0\x6f\x8f\ \x3e\x92\x79\x7b\x23\x28\x24\xa1\xcc\xae\xf4\xdd\xea\x61\x41\xa8\ \x26\xe8\x2a\x93\x85\x07\xee\xa9\xc8\xf1\xe5\x65\x9c\x89\x92\xc1\ \x01\x44\x36\x79\xb5\x46\x15\xff\x8a\x35\x02\x27\x5e\x34\x07\xc6\ \x41\x1f\xe4\xf5\xa2\x28\xf4\xec\xe2\x6d\xa9\xce\xab\xd3\x94\xf1\ \xeb\x36\x68\xb4\xf7\xe6\x18\x08\xef\xfc\x46\xb5\x7f\x1c\x4f\x52\ \x82\x43\xf0\x7a\x88\x47\x5b\x6b\xaa\x05\x53\x74\xa0\x01\xba\x75\ \xe7\x3c\x71\x0e\x53\x26\xe8\x81\xae\x98\xf7\x60\x24\x1a\x80\x0f\ \x99\xea\x61\x17\xb7\x9d\xeb\xe6\xfd\x71\x74\x99\xb2\x13\xc0\x2e\ \xbd\x2f\x2a\x29\x7d\x80\xd6\x7b\x63\xde\x2c\x31\x10\xfe\x42\x94\ \x43\x12\xd9\x22\x8e\xd6\x99\x25\xb6\x0e\x38\x9d\x4f\x45\x14\x59\ \x54\x5c\x1b\x3c\x9c\x51\x33\x3e\x41\x15\x3a\x20\x4a\xbb\x04\x2f\ \xc3\x81\x6b\x22\x71\xc5\x7c\xf6\x96\x9f\xe2\x30\x5a\xb9\xeb\xad\ \xe3\x9f\x15\xd0\x33\x22\xfe\x09\xe8\xf6\x92\x4f\x14\x62\x94\x01\ \x8f\xd9\xf0\x72\x70\xcc\xe4\xe5\x40\x50\xfc\xa3\x63\x75\xe4\x98\ \x83\x51\xd2\xe0\x98\x42\x17\xc8\x1d\x64\xd9\xf2\xb7\xc9\x74\x6d\ \xa7\x3f\xfc\x71\xf9\x4b\x1b\xd8\x14\x9d\xb7\x7a\xe2\x06\x60\xef\ \xe4\x63\x2e\x85\x0f\x4c\x90\x80\x48\x87\x0f\x4f\xa7\x12\x29\xa4\ \x61\x21\xe2\x3f\x00\x97\x1e\xcd\xa5\x4b\x67\x86\x4c\xc8\xb7\x2c\ \x26\xf3\x75\x2f\xe3\x24\x5f\x23\x71\x64\x07\x2a\xbf\x26\x27\x22\ \xf8\x1a\xfa\xb0\x18\xc4\x77\x19\x65\xa0\x0f\xa9\xf5\x40\x77\xb6\ \x4d\x46\x73\x77\xae\x73\x77\x11\x74\x45\x73\x37\x77\x34\x06\x56\ \xe4\x93\x71\x84\x96\x05\x41\xc0\x5a\x67\xe4\x63\xf3\x44\x7e\xf8\ \x00\x04\x47\xe6\x78\x64\xc4\x72\x4c\xf0\x0d\x6d\x15\x04\xb9\xb5\ \x64\xb2\xd5\x4e\x34\x65\x57\xb6\x05\x79\x0d\xf0\x6e\x96\xf7\x07\ \x1f\x44\x57\x2a\x80\x0f\xf1\x04\x0e\x52\x46\x69\xfa\x37\x79\x2d\ \x95\x80\xbe\x25\x65\x30\x75\x28\x2c\x00\x5d\xf9\x21\x19\x68\x92\ \x2c\x71\x91\x17\x52\x53\x43\x0b\x73\x23\x01\xf2\x4c\xdc\x52\x87\ \x1c\x90\x0c\x11\x87\x2a\x0b\x27\x22\x7b\x11\x2a\xdc\x25\x41\x12\ \xe7\x42\x65\x30\x1d\xfe\xa8\x75\x71\xdf\xd2\x77\x46\x03\x63\x6d\ \x27\x37\xde\x32\x63\xd2\x74\x83\xa2\xa0\x05\xce\x34\x45\xb8\xd0\ \x83\x59\xf0\x0c\x28\x45\x4a\xf2\xa4\x6d\x8b\xf6\x2a\xf1\x10\x7f\ \x29\x35\x05\x40\x60\x0a\x41\xe0\x41\x34\x16\x85\x42\x46\x53\x36\ \x17\x86\xac\x44\x4a\x9c\xd6\x6e\x4e\x76\x6e\xa2\x36\x79\xfe\xa0\ \x6d\xa7\x77\x5f\x60\x78\x80\xd8\x76\x7a\xf8\x70\x28\x8b\xb5\x2b\ \xed\x81\x1b\xc5\xf3\x28\x3a\x34\x3c\xc8\xc4\x31\x8b\xf4\x3a\x0f\ \x87\x66\xc6\x77\x67\xb9\xc6\x3c\xf3\x01\x30\x0e\xd4\x1f\xe3\x95\ \x1f\xce\xb0\x62\xe3\x43\x41\x9b\xa3\x0a\x57\xd4\x88\x7e\x96\x87\ \x0f\x24\x34\xd2\x64\x6c\xc7\x46\x45\x1c\xa4\x89\x41\x00\x0e\x41\ \x18\x7f\xf2\x97\x68\x45\x58\x46\xf3\xa5\x52\x72\xa0\x02\x84\x46\ \x5b\x2b\xc7\x01\x38\x37\x0a\x30\x75\x8b\x40\x37\x4f\x2e\x35\x00\ \xa2\x17\x09\x2a\xc0\x4a\xb8\x18\x7f\x40\x86\x80\x53\x40\x7e\x33\ \x95\x64\x03\x26\x8c\x68\xd2\x38\xf6\xc1\x23\xaa\x10\x08\x84\xd4\ \x4f\x65\xb6\x2c\x62\xe3\x87\x2e\xc3\x2d\x19\xd2\x61\x0a\xd7\x38\ \x1f\xc9\x35\xc3\x64\x8d\x6f\x77\x48\xdc\x41\x19\xaa\x33\x45\x2f\ \x73\x3d\xad\x03\xfe\x89\xce\xe4\x76\x94\x84\x83\xe8\x08\x56\xaa\ \x23\x4e\x62\x94\x05\x54\xd0\x05\x67\x94\x68\x38\xe7\x52\xe9\x27\ \x5f\x69\x95\x52\xe0\xa0\x02\x1e\xd4\x00\x1c\xb0\x52\xf3\xc7\x5b\ \x7a\x00\x8f\xf3\x04\x74\x9c\x16\x0a\x03\xb0\x0b\x74\xd5\x00\x7a\ \x70\x8b\xbd\xa8\x90\xc0\x08\x8f\x94\xa7\x5b\x49\x36\x00\x2b\x01\ \x06\xf8\x86\x6f\x65\xf6\x61\x1d\x43\x8c\x78\x04\x20\xd3\xb5\x2a\ \x11\x04\x34\x77\x94\x70\x3e\xa3\x50\xd0\x91\x1d\x4a\x04\x2a\x46\ \x43\x2c\xcc\x94\x07\x13\x27\x34\x6d\x17\x07\x3a\x83\x0b\xde\x13\ \x77\x38\x09\x89\xdc\x72\x8e\x37\xd9\x88\x82\xe9\x45\x9a\xa8\x05\ \x3e\x09\x00\xeb\xc4\x01\xf8\x80\x72\xe0\x60\x84\x2a\x20\x07\x45\ \x99\x56\xe0\xd0\x01\x3c\xe9\x8e\xef\xc8\x68\x00\x08\x74\x31\x85\ \x4a\x32\x25\x74\x7f\x70\x57\x01\x48\x9a\x9d\x07\x64\xaf\x38\x79\ \xf4\x07\x96\x03\xa9\x07\x63\x19\x2c\xb3\x84\x21\x11\x18\x21\x2b\ \xe3\x1f\x8b\x65\x43\xad\xe1\x33\x19\x32\x50\x3f\xd2\x70\x6a\x07\ \x55\x7a\x03\x30\xde\x92\x66\xe4\xe5\x40\xaa\xa3\x0a\xe4\x65\x89\ \xd2\x87\x67\xac\xd3\x48\xd7\x32\x63\x9b\x68\x6c\x91\x64\x3e\x53\ \x44\x05\x7e\xfe\xe7\x41\x3f\x30\x4a\x3f\x59\x84\x2b\x57\x84\xa6\ \x10\x0f\x38\x90\x99\x69\xc5\x01\xda\xa9\x07\xf1\x34\x79\x8c\xf6\ \x56\xf1\x27\x65\x0a\x38\x8b\xb7\x75\x95\xa1\x86\x8b\xe2\x16\x6e\ \x00\x19\x60\x49\x06\x57\x2b\xa1\x42\xb3\x44\x43\x35\xc4\x17\x8c\ \x11\x00\x66\xb9\x2e\x24\xf9\x26\xb4\xc6\x33\x94\x32\x1c\xde\xf5\ \x1c\xc8\xf4\x70\x99\xa5\x50\xbd\x86\x37\x85\xf8\x82\x6d\x07\x3e\ \xa9\xd3\x2d\xa2\xe3\x44\xdf\x34\x34\x13\x64\x93\xc6\x46\x4d\xe5\ \xd5\x77\x9a\x28\x4a\x68\xe4\x63\x45\xe8\x4e\x7a\x10\x07\x40\x68\ \x9e\x2a\x05\x04\xcf\x16\x0f\x1c\xb0\x9e\x93\xf9\x56\xd9\x86\x86\ \x9e\xa6\x4a\x44\xd7\x00\xbb\xd0\x79\xfb\xc7\x69\x70\x65\x73\xbb\ \x85\x90\x47\x77\x7a\x10\xc9\x80\x0e\xd8\x1a\x1a\xb6\xa4\x62\xd3\ \x58\x56\x13\x19\xc3\x23\x2f\xa8\x92\x6f\x06\x37\x22\xc4\x23\xa5\ \x01\x62\x4d\xbd\x14\x33\x74\xf2\x4c\x3e\xe3\x87\x7e\x56\x27\x16\ \x55\x51\x72\xf3\x3d\x73\xd7\x88\x3f\x63\x0b\x88\x69\x9d\x95\xe8\ \x49\x65\xf5\x41\xf1\x10\x02\x68\x44\x84\xdf\xf0\x72\x8a\xc7\x63\ \x2e\x8a\x4e\x6c\x80\x94\x59\xa0\x05\xa4\x58\x99\x02\x46\x7a\x9c\ \xd6\x00\xfe\x41\x70\x9a\xa1\xc7\xa3\x01\x58\x9a\xde\x16\x57\xa3\ \x29\x90\xf7\x89\x80\x00\x56\x6f\x16\xb1\x04\x19\x26\x58\x3e\x14\ \x22\x22\x62\x1c\xbc\x32\x19\x13\xf9\x9b\x5f\xfa\x1a\x22\xc2\x23\ \x3f\x22\x70\x6b\x96\x4c\xc8\xd2\x2c\x21\x37\xa6\x3d\x63\xa1\x4a\ \xa4\x37\x76\x23\x98\x1b\xb5\x2a\x93\xc8\x67\x12\x34\x63\xe8\xb8\ \x7d\x8d\x98\x9d\xdb\x19\x04\x1c\x40\x06\x69\xf4\x4e\x2d\x25\x78\ \x2a\x60\x68\x79\x9a\x56\xdf\xd0\x41\x32\x10\x0f\xf1\xc4\x06\x1c\ \x00\x04\xeb\x36\x00\x31\x35\x00\x9c\x99\x05\x57\x58\x95\xa0\x26\ \x6a\x0f\x29\x69\x36\x67\x73\xa9\x39\x05\x0f\x19\x60\xa8\xc7\x04\ \x92\x5a\x11\x94\xaa\x3b\xba\x63\x91\x0b\x75\x32\x9a\x9a\x1e\x16\ \x69\x43\x86\x34\x1f\x0b\x43\x19\x66\xc7\x1c\x3d\xe3\xa0\xf2\x12\ \xaf\x24\xc2\x24\xff\xe2\x3a\xd2\x39\x49\x0d\x84\x89\x29\x86\x67\ \x02\xe2\x48\xda\x82\x83\xd1\x97\x4d\x36\x29\x4d\x2d\x06\xb0\x7e\ \x17\x04\x5a\xe0\x9d\xf2\xd7\x05\x0d\x09\x0e\x6c\x35\xac\xf5\x58\ \xac\x53\x80\x94\x0e\x6b\x7e\xe8\x37\x00\x8a\x07\x6a\x03\xa0\x02\ \x7f\x40\x05\x2a\x30\x00\x54\x19\x53\xa5\xf9\x69\x9f\x06\x6a\x90\ \xda\xfe\xb2\xfa\x09\x57\xe0\x46\x69\xe3\x4a\x11\xa7\x60\xae\x49\ \xb5\x2e\x18\x39\x75\x1f\xb2\x61\xce\x61\x0b\x18\xb9\xa0\xc8\x22\ \x3a\xc5\xc3\x32\xce\x81\x5d\xa6\x23\xa5\x00\x22\xa6\x46\x03\x30\ \x2f\xc3\x9c\xc6\xc7\x3d\xda\x23\x20\xe5\x18\x4e\xd0\xd4\x55\x99\ \xf8\x0c\x2e\x76\x49\x57\xab\x71\xd4\xa4\x98\xb8\xa0\x9d\x62\xd4\ \x9d\x00\x40\x06\xf1\xd8\x05\xeb\x14\x0f\xb8\xa0\x02\x4b\x59\xac\ \xc6\x4a\x05\xcf\xd0\x01\xdf\x00\x4f\x1c\xb0\x6e\x6c\xd5\x00\xf1\ \x40\xb7\x2a\xb0\x0b\xd0\x1a\x53\x07\x00\x5c\xb7\x15\x57\xaf\x18\ \x86\x74\xeb\x94\x53\x08\x6e\x30\x85\x0f\x33\x3b\x11\x83\xb3\xa4\ \x0c\xfa\x00\x3f\x4b\x91\x7e\xc4\x8c\x9a\x22\x59\x1f\xa6\x33\xfc\ \x03\x2c\x1f\x86\x4c\xd8\xf2\xa0\x62\xba\xaf\xce\xa4\xa1\x13\x27\ \x70\x0d\x04\x4d\xe5\xe5\xa1\x50\xcb\x98\xd5\xd4\x51\x6a\x6a\x9d\ \xdb\x77\x7d\x98\x48\x05\xa9\xf8\x41\x5a\x10\xb7\x32\x01\x8a\xa7\ \xa8\x05\xca\xca\xb6\x69\xc5\x06\x3f\xf0\x45\x86\x86\x7e\xf8\x20\ \x07\xf8\x70\x64\x03\x20\x07\x38\x4a\x95\x55\x19\x7a\x9f\xb6\xad\ \x31\xf5\x90\xde\x06\x79\x4d\x16\xb3\x08\xe8\x57\x28\x14\x0a\xf8\ \xfe\xa6\x61\xcd\xe1\x26\x98\x7a\x38\x79\x81\xbd\x35\xc4\x5d\xcf\ \x01\x62\xf1\x0a\x7c\x70\x86\x5d\xa7\xa5\xb9\xe2\x9b\x51\x9d\x2b\ \x63\xc9\x44\x6b\xd8\x63\xb5\xaa\x73\xba\x8d\x08\xb5\xac\x22\x77\ \xb0\xfa\x2d\x53\x74\x8e\xa4\x15\x83\xe5\xe5\xb6\xd2\x76\x04\x40\ \xc0\x8f\x82\xb7\x2d\xa6\xd0\x78\x2d\xaa\xbb\xa6\xf4\x0d\x5a\x40\ \x05\xf1\xe0\x5b\xd5\xe6\x4e\xfc\xf7\x56\xc6\xeb\x0f\x2d\xa0\xb2\ \x44\x97\x05\x7f\xa0\xb7\x09\xf8\xac\x04\xa6\xad\x1b\x3c\x57\x3c\ \x17\x79\x03\x96\xb8\xb1\x14\x0f\xd0\xd5\x1e\x6f\xf8\x54\xb0\x51\ \x7b\xde\x4b\x82\xf3\x72\xaf\xa6\xea\x2f\x11\x05\x81\xcd\x02\x20\ \x77\xe3\x44\x32\xd6\xa5\xdd\xa4\xa5\x09\xf7\xaa\xf3\x3b\xa2\x1c\ \x47\xbf\x72\xf7\x59\xe5\x95\xb0\xd0\x36\xa2\x61\xb4\x93\xdb\x87\ \xbb\xa3\x60\x0a\xda\xe9\x84\x70\x8b\xc0\xe7\xb9\xc0\xb3\x2b\x07\ \xdf\xf0\xac\x72\xe0\xb1\x26\xeb\x0f\xa1\x70\x64\xb7\xa5\x79\x57\ \xc8\x69\x06\x00\x7a\x72\x85\x95\x70\xf5\xa3\x97\xa7\x79\x5d\xe8\ \x8b\x24\x1c\x11\x4b\xa0\x0f\x4c\x1a\x19\x68\xe2\x26\x04\x85\x24\ \x45\x7b\x66\x9a\x92\x1e\xcb\x12\x20\x7e\xf8\x2f\x4d\x85\x21\xfe\ \x6f\x06\xaf\xce\xa8\x49\xd1\x69\xab\x4f\x14\xba\x71\x73\x98\x7a\ \x73\x77\x00\x1b\xbf\x44\x0c\xb0\x43\xe3\x49\x89\xe9\x59\xf9\xbb\ \x93\xb1\x8b\xb5\x3f\x80\x0b\xb1\xcb\x93\x72\xe0\xab\x52\x8c\x46\ \xe0\x70\x06\x54\xd0\x01\x0f\xfc\x0d\x7a\xe0\xac\xce\x1a\x0a\xec\ \xa4\x4a\x0d\xf0\x07\xb1\xbb\x79\x7a\xe0\x05\x87\x7a\xa8\x25\xbb\ \x7f\xf8\x80\x5b\x21\x9c\x6d\x2f\xd5\xc6\x10\xb1\x04\x40\x70\xc2\ \x3f\x65\x32\x57\x73\x47\xde\x55\x4c\xc8\x06\x20\xba\x86\x21\x83\ \xb4\x32\xf4\x02\x39\x77\xc8\x24\xcb\xb6\x24\x19\x35\x4d\x40\x33\ \x97\x4a\x74\xc4\x13\x54\x3e\x0d\x13\x31\x28\x16\xbf\xd4\x97\x89\ \x0a\xbb\x67\xd9\x94\x4d\x60\xfb\x41\x54\x60\x3e\xa9\x78\xce\x9a\ \x2c\xbb\xdf\xe0\xc9\x9f\x0c\x00\x1c\xa0\x02\xe7\x5c\x46\x1c\x70\ \x86\xa5\xd9\x69\xa0\xe7\xca\x06\x46\x57\x7f\x70\x9a\x86\xfa\x79\ \x7f\x1b\x6a\x32\xa5\x02\xb5\x98\x95\x0e\xb9\xcb\x2a\x51\xb3\xd0\ \xc5\x31\x8e\xab\xbd\x11\x45\xcc\x93\xa2\x50\x3d\x23\x66\x21\x72\ \xaa\xe0\xcb\x1f\x80\xa4\x51\xcc\x02\x56\x38\xfc\x4d\xfe\x92\x83\ \xdb\xa3\xa0\xe1\x74\x89\x50\xdb\xc8\x9f\x65\x2d\xfa\xa0\xfe\x2d\ \x98\xf8\x59\xf9\x9b\x83\xf3\x8b\x89\x0d\x4b\x05\x52\x30\x0a\x24\ \xf7\x45\xfe\x9b\x05\x32\x70\x99\x72\xfa\xce\x90\x29\xca\xa4\x5c\ \xa7\xf3\x24\x8b\x89\x07\x6a\x6c\xd5\x73\x91\x10\x04\x98\xc7\xa3\ \x39\xda\x5b\x9e\xd7\x00\x1e\xe4\x56\xb9\x08\x64\x70\xc5\xcb\x0f\ \xb1\x04\x1e\xa3\x96\x73\x1c\x08\x81\xb0\x42\x1a\x62\x97\x20\xf6\ \xd5\xf0\x4a\x27\x03\xe4\x2f\x16\x75\x35\x81\x09\x56\x1f\xd5\x3a\ \x38\xb8\x41\x06\x8b\x2d\x43\x33\xba\xe6\xd3\x51\xd9\x29\x98\xa8\ \xe3\x2d\x33\xdd\x51\xe3\xe3\xc8\x57\xf4\x6c\x91\xa4\x3d\xe6\x93\ \x89\x1f\xf4\x0c\x5a\x20\x05\xfa\xf0\x03\xda\xf9\x6c\xa9\x18\x04\ \x54\xc0\xa2\xe5\xc9\xd3\x7e\xd0\x01\xbe\x2b\x07\x41\xfd\x93\x9f\ \xa7\x07\x59\x6c\x95\x3b\x79\x95\x66\xbc\x5b\xd0\xba\xca\xd1\xdb\ \x85\xb6\xfc\x52\xa6\x40\xd5\x0e\x81\x28\x0b\x8d\xb3\x36\x40\xc7\ \x96\xba\x2e\x2e\xf3\xd5\x0a\x25\x88\x16\xf6\x29\x46\x22\xaf\x40\ \x83\xc3\xae\x13\x68\x16\x34\x77\x62\x65\xc8\x6e\x0d\x62\x89\x0c\ \xab\x52\x94\x9d\x9f\xf4\x59\x1d\xf5\x76\x29\x9d\xd7\x3f\x50\x5e\ \x1a\x67\x34\xa7\x2b\x03\x9b\x3c\x6d\xaf\xb2\xc0\xb0\xfe\x1b\xd8\ \x54\xf0\x03\xdf\x80\x03\x64\x90\xdd\xd9\x8d\xc0\x1c\x70\x06\x8a\ \x5d\x46\xeb\x29\x8b\xcf\x4a\x65\x7f\xa0\x89\x1e\x94\xc1\x7a\x60\ \x00\x95\x0d\xb2\xce\x8b\x64\x31\x25\xda\xfc\x05\x38\x28\x84\x1e\ \x73\x4c\x8c\x59\xad\xd5\xc0\xec\x43\x16\xf6\xda\xdd\xa4\xc2\x26\ \x83\x21\x3e\x93\xdb\xdd\xe4\xd2\x09\x7b\x63\xd4\xec\x97\x61\x2a\ \x98\xaf\x72\x04\x99\xec\x45\x46\xf3\x03\x78\x0d\x5a\x70\x97\xbf\ \x0a\x8e\xb0\x74\xc7\x2a\x2d\x9d\x63\x32\xa0\x05\x3f\xb0\xc0\x5f\ \xab\x89\xd5\x7d\xdd\xbe\x3a\xe2\x08\x2c\x07\x5a\xa0\xd8\x5a\x30\ \xac\x08\x08\x86\xfe\x20\x07\x4c\x10\xb2\x5a\xb8\x93\x18\xfc\x56\ \x2b\xbb\xde\xa1\x16\x9b\x00\x16\xd5\xe4\xd6\x00\x54\x10\x09\x39\ \xe0\x80\xbf\x5c\xdf\x0c\xed\xb8\xbd\xb6\xd5\x1a\xa6\x21\x4e\xf5\ \x38\xd2\x1c\x2a\xcf\xd0\x24\x00\xb7\xb9\x3d\x43\x6b\x84\xac\x37\ \x21\x4a\x4d\x38\x56\x63\x7a\xa6\x6c\xe0\x03\xb0\x54\x94\xdc\x1d\ \xbe\xc0\x5f\x54\xd7\x5e\x1e\x07\x84\x9d\xd2\xe0\x5c\xd7\x35\x8d\ \xab\x50\xab\x9d\x3d\x58\xdd\xd9\xd4\x01\x1d\xbe\xc9\x1b\x2e\xa3\ \x8e\xa0\xdd\xee\x5c\xac\x64\xf0\x0d\x90\xed\xdc\xfe\xb4\xa5\x02\ \xf1\x70\xca\xc5\xab\x6e\x84\x9a\xd9\x7f\x40\xe3\x4a\x6d\x5b\x9f\ \x86\x0f\xaa\xa9\x7f\x40\xe6\xc4\x1f\xf4\xe3\x28\x64\xc2\x17\xb9\ \xbd\xce\x11\x08\x45\x9e\x54\x6a\x59\x75\x31\xe3\x44\xcf\x24\x4d\ \x70\x06\x7c\x0a\x5a\x19\xda\x02\x72\x20\x85\xb5\x56\x4e\x63\xad\ \x93\xe5\xd9\x0c\x6d\x0e\xce\xe1\x1c\x0e\x2b\x1d\x00\x46\xe7\x0c\ \xe1\x0c\x5e\xd7\x70\x77\x49\xcf\x86\xe6\xf6\x5b\xd7\xb8\x4e\xdd\ \x13\x03\xe1\x71\x90\xc4\x63\x44\xcf\x75\xbe\xdd\x08\x4c\x06\x40\ \xd0\x01\x4e\x40\x68\x3a\x86\x57\xa0\xc6\x84\x4e\x8d\x69\x57\xa8\ \x6e\xa0\x87\x95\x9f\x16\xc6\x02\x19\xa8\x68\x38\x5b\x39\x96\x05\ \x90\x0e\x1c\x40\x10\x22\xf8\x9d\x1e\x59\x0d\xbe\x3f\x82\x48\x94\ \xa1\x45\x33\xd6\x49\x99\x88\x0b\xa0\x00\x04\xe3\x53\xcd\xaf\x2a\ \x4d\x22\x85\x83\x7b\x86\x98\x8b\xf9\x6c\x5d\x2e\x4e\xf7\xde\xea\ \x5f\xee\xea\xb1\xde\x01\xe6\x03\x2b\x1c\xce\x3d\xe3\xa5\x0f\x24\ \x27\xd8\xa3\x10\x31\x72\x47\x05\x50\x74\x04\x87\x7d\xe5\xd5\x1d\ \x31\x64\x2e\x05\x27\xee\x83\xd6\x0d\x28\x78\x62\xec\xba\x8b\x03\ \x3f\x10\xeb\xb0\xfb\x0c\x24\x9b\x78\x7e\x4e\xfe\x65\x83\xce\x73\ \x33\xce\x04\x60\x10\x6f\x55\xf8\xb7\x7a\x80\xb2\xbf\xb5\x9a\x96\ \x87\x8a\x62\xd4\x07\xa4\x7d\x10\x0a\x01\xc7\x0b\xed\xb8\x17\x79\ \x3c\xf8\x93\x1f\xe4\xb0\x48\xed\xee\x4d\xd8\x19\x83\x50\x2b\xce\ \x28\xc7\xe0\xca\x4d\x77\x88\xb9\x67\xe0\xf7\x0c\x41\xc0\x41\x7b\ \xd6\xe1\x80\xbd\x7d\x7c\x2d\xf0\xe7\x03\xe7\x1d\x70\x06\x1d\x00\ \xf2\x03\xff\xea\x64\x7e\xeb\x0e\xfe\x76\x19\x27\xce\x64\x9e\xbf\ \x6e\x0b\xc5\xdc\x03\x2b\x52\x20\x05\xbd\xeb\x41\x1c\xae\x02\x52\ \xe0\x07\x1c\xaf\xbb\x7e\x60\xd8\x58\xdf\x01\x5d\x28\xbc\x1e\xcb\ \x56\x31\xce\x73\x77\x75\x8b\xde\x6a\x5b\xf4\xf9\xa3\x4a\x87\xb2\ \xc3\xdb\x73\x1e\x54\x5c\x28\xe4\x05\x42\x4e\xee\x73\x1c\x20\x13\ \x59\x33\x40\x90\x0c\x95\x09\xf1\x31\x88\x9d\xa8\xd3\xe1\xa3\x4c\ \xf0\x9f\x84\xbb\xae\xc2\xf9\xef\x15\x04\xf7\x7e\xe5\x7c\x5d\x9d\ \x9f\x74\xd8\x1d\x40\x7d\xd3\xed\x84\x7c\x5e\xdd\x67\xa0\x05\x5c\ \x7f\x06\x1f\xdf\xf5\x5d\xdf\xe1\xb0\xc2\x3d\x6d\xaf\x0f\x6e\xff\ \x6c\x47\x10\x31\x14\xfe\x03\x29\x4d\x72\x1f\x8e\xd3\x9b\x0f\xe1\ \xc0\x3f\xfa\x32\xd0\x01\x52\x50\xec\x9f\xfe\xcc\x01\xb7\x1f\x0f\ \x8a\x67\x6d\x72\x60\x84\xb7\xd5\x01\x9b\xec\x04\x63\x88\x4a\x2f\ \xde\xca\x58\x29\x9a\x2c\x2b\x86\x27\xff\x41\x8c\x0f\x1c\x2d\xa0\ \xd5\x17\x39\xe4\x37\xc4\x33\x52\x2b\xa3\xe4\xc0\x01\x45\x93\xe2\ \xae\xa2\x02\xad\xa2\x02\xb0\x9e\xf5\xb6\x0f\xe7\xd2\xcf\xf9\xb1\ \xab\xd8\x5e\xe4\xfa\x00\x21\x83\xca\xb3\x2c\x41\x82\xc8\x40\x18\ \xc4\x49\x87\x1f\x67\x3a\xc8\x30\x28\x10\x61\x07\x86\x67\x1a\x36\ \x3c\xe3\xb0\x83\xc5\x1f\x1d\x7f\x48\x89\x23\x45\x9f\xbe\x38\x5a\ \x64\x68\x19\x79\x04\x17\x15\x5c\x21\xe3\xe0\x42\x48\x05\xa1\x8c\ \x8f\x52\x3e\xc6\xf9\x41\x25\x48\x16\x9e\x59\x7e\x7c\x73\x04\x80\ \x0c\x00\xa2\x45\x8d\x1e\x05\x80\x03\x0d\x95\x8f\xdf\x38\x70\xc0\ \x07\x44\x05\x95\x82\x4e\x22\xf5\xcc\xd2\x60\xc0\xb6\x29\xfe\x98\ \x30\xc1\xa7\x67\x97\x29\x15\x03\xfc\x4d\x99\x12\x56\xcf\xda\xb5\ \x03\xf4\xc8\xc0\xca\xb3\xcf\x3f\xba\x75\xed\xde\xc5\x8b\x77\x49\ \x0b\x1b\x36\x02\x3d\x00\xf5\x20\xcd\x83\x07\x7f\x6d\xa9\x42\xac\ \x52\x14\xae\x51\x1c\xc8\x7d\x8b\xa7\x25\x1e\x10\xca\x40\x20\xc7\ \x53\xa1\x22\xe3\xc6\x0e\x2a\x28\x66\xfe\xc6\xec\xd0\xc9\x4e\x19\ \x14\x1f\x52\x71\x22\x73\xe7\xb3\x84\xa9\x17\x72\xee\x80\xba\x43\ \x8a\xd9\x1b\xd1\x64\x44\x73\x25\x63\xc6\x8b\x0d\x6d\xa2\x91\x12\ \x3c\x0f\x49\x96\x22\x5f\xe2\xd2\x12\x87\xb8\x0c\x5c\x30\x05\xfe\ \x08\x09\x32\x27\xd6\x67\x41\xa4\x3c\x21\x33\x14\xe9\xf6\xa2\x1c\ \x62\xff\x24\xc7\x06\xdc\x37\x15\x0d\x7a\x42\xdc\x59\xb0\x01\x93\ \xae\x4c\x06\x0c\x08\xc5\x76\x00\x13\x7f\xfe\xf0\xa9\x95\xaf\xa7\ \xc1\xd5\xb8\x73\xf3\xfe\x07\x90\xae\xbd\x6c\xe9\x4b\xb0\x34\x06\ \xfb\x2b\x10\x55\x02\xb1\xa5\x41\x51\x9e\xc1\x45\x05\x20\x9e\x8a\ \x27\x0e\xcb\x38\xf8\x26\x43\x16\xe2\x41\x43\x05\x34\x38\xdb\xed\ \x8c\xcc\x5a\x68\x41\xb7\x14\x9c\x48\x21\x05\x8f\x34\x9a\x0d\x22\ \x27\x52\x9b\x8d\x36\xda\x32\x9a\xd1\xa2\x33\x6e\xcb\x0d\x8d\xdc\ \xce\xd0\xed\x36\x8b\xd0\xf8\x01\xc8\xe0\x86\x94\x22\x0f\x29\x4c\ \x8a\xc3\x48\x2d\x90\xd3\x27\x8f\x92\x70\xf9\x41\x0b\x96\xa0\x24\ \x52\x8b\xf4\x04\xa2\xa2\x83\x3c\xfc\x18\x4a\x3b\xee\x8e\x22\x43\ \x0a\x88\x54\x78\x0a\x08\xcc\x4c\x49\x2f\x88\x06\x1a\x48\xaf\x01\ \x3d\xea\xf3\xc7\xad\xf7\xe4\x04\xfe\x8b\x2d\x3b\xf5\x70\xab\x01\ \x27\xe2\x92\x2b\x40\x3f\xf5\x0a\x25\x90\x02\x0d\x2c\xcc\x86\x06\ \x6d\x58\xec\x41\xe6\x2c\xfc\x86\xb2\x78\x32\xd4\xf0\x1b\x12\x49\ \xcc\xc8\x87\x33\x76\x69\x60\x97\x0e\x76\xb9\xa2\x44\x15\x74\xb3\ \xf4\xc6\x16\x70\xdc\x2c\xc5\x85\x76\xf3\xc1\x87\x0e\x54\xad\x14\ \x37\x1d\xf7\xd1\x31\x47\x1e\x43\xe4\x4d\xc7\x9a\x3e\xca\x23\x8f\ \x6c\x5e\xfa\x21\xd7\x25\x7f\xd0\xc7\x99\x92\xe2\x20\x56\x0b\xe8\ \x84\xcb\x26\x0f\x2b\xb3\x78\xce\xd8\x4c\xb8\xcc\xee\x4b\xa4\x70\ \xe8\x80\x59\x29\x20\xcb\x49\xa7\xea\xd4\xcc\x8c\x8a\x48\x9c\x50\ \x21\x14\xb0\xdc\xda\x05\xcf\xf9\xea\xd4\xc3\x14\x53\xee\x0c\xcb\ \x5b\x3e\x51\x50\xe4\x4f\x79\xff\x59\x82\x02\xc4\x16\x24\xb4\x30\ \x41\x11\x15\xe5\x41\xd6\xb4\x90\xf0\x9b\x50\x80\x68\x21\xc3\x50\ \xe2\x99\x94\x44\x03\x76\x31\x03\x85\x5d\xce\x30\xe3\xd2\x2b\x1e\ \xe6\xf4\x53\x1e\x3b\x9d\x14\x8d\x12\x43\xd4\x0d\xd5\x14\x52\xfd\ \x78\xd5\x2b\xae\x40\x63\x1f\x93\x73\x1b\xb9\xe3\x10\x6f\xeb\x48\ \xc8\x21\xf3\x80\x21\x9b\x1f\x70\x69\x32\x0e\xe6\x46\xfa\x95\x58\ \x62\x47\xca\xa6\xe7\x5d\x65\xfe\xea\x20\x24\x34\x92\x5c\xc7\x91\ \xec\xa2\x95\x56\x28\x31\xb3\x60\xca\xa6\xd1\x98\x0d\x82\x8a\x06\ \x54\x88\x67\xbf\x20\x22\x51\x41\x0f\x15\xca\x25\x57\x8f\xaf\xf0\ \xb3\x33\xeb\xb5\xca\xe3\x33\x8b\x3b\xe6\x95\x77\x09\x6f\xee\x1d\ \x05\x94\xc0\x0a\x25\x10\x97\x7e\x59\x13\x85\xa6\x78\xee\x96\xf4\ \x6e\x12\xb7\x6e\xc1\x00\x03\xbc\x30\x80\x04\x33\xcc\x08\x9c\xe1\ \x5d\x38\xdd\xc5\x07\x33\xae\x18\x5c\x62\x4f\x31\x2e\x91\x44\x8d\ \x47\xae\xd4\x87\x8f\x3f\x0e\x75\xe4\x92\x4f\xd6\xed\x8a\x54\x43\ \xad\x35\x48\x9b\x90\x85\x41\x1f\x19\x94\xc3\x85\xb5\x1f\x8e\x40\ \x08\xb9\x63\x73\x35\x52\x9f\x22\x8d\x24\x32\xb8\x6c\x9e\x08\xaa\ \xcb\xa4\xbd\x2b\x48\xcb\x16\x7e\x40\x8f\xa9\x06\xb4\x50\xd7\xdb\ \x83\xfe\xe8\x60\x4d\xb1\xf5\xc0\xe7\x2b\xb7\xee\x5c\x6b\x5d\xad\ \xff\xe8\x49\xa1\xab\xce\x46\xdb\xcf\x7a\x11\x23\xec\x6d\x7e\x0d\ \xb5\x41\xee\xba\x9f\xd3\x5b\xef\x16\x32\xdb\x85\x6f\xbf\xc3\xb9\ \x83\x04\xf7\x03\x77\xdf\x0c\xc1\xaf\x40\x21\xe2\xc1\x19\xa7\x7f\ \xe2\xc8\xc3\x61\x81\xc4\x94\x53\x06\x59\x8a\x30\xb7\x9b\x2b\xec\ \x63\x0f\xfb\x18\x99\xa5\xfe\x54\xa5\xaa\x8d\x70\xa4\x26\x21\x69\ \x52\x36\xf4\x01\x93\x25\xf1\x64\x25\x59\x60\xcd\xa2\x94\x03\x12\ \x63\xe9\x03\x06\x7c\xe0\x03\x16\xb2\x41\xa4\x3c\x7c\x03\x04\x47\ \x4b\x9a\x1f\xa4\x10\x84\x67\x68\x89\x03\x32\x8b\x4d\x84\x54\x20\ \x25\x83\x44\xc2\x20\x05\x89\x84\xf2\xda\xd2\xbc\x71\xd9\x49\x2d\ \x62\xdb\x4f\x4f\x9c\xb0\x0b\x1b\x2e\x22\x7b\xda\x5b\xdb\xbd\x1e\ \xa0\x0a\xf0\x85\xcf\x16\x47\x80\x62\x73\x90\x73\x37\xcc\x4c\x6a\ \x17\x2d\x40\xdc\x15\x0c\x10\x0e\x03\xf4\x41\x7e\x77\xe8\x43\x27\ \x02\x57\x3f\xc1\x0d\xce\x8c\xf4\x5b\x1c\x0a\x7c\x80\x82\x4e\x71\ \x31\x1c\x5c\x6c\xc1\x1e\xf6\xd0\x09\x00\x82\xcc\x72\x9f\xe3\x91\ \xc9\x4c\x46\xb9\x00\xd6\xc6\x81\xc1\x71\xc9\x48\x52\x27\x13\x9e\ \x54\xa7\x27\xff\x4a\x8e\x16\x14\x19\x87\x0f\xba\xc0\x05\x63\x70\ \xc6\xe8\x8c\x94\x87\x31\x1c\xcd\x4b\x48\x21\x03\x07\x74\xa2\x85\ \x6c\x90\x83\x03\x40\x38\x03\x15\xb2\xa4\x82\x38\x34\x00\x2e\x3c\ \xb1\xa1\x0d\x65\x90\x43\x37\x65\xad\x79\xf8\x78\x9e\xf4\xd8\x72\ \x9f\x01\x98\xa7\x27\x7f\xd0\xc3\x9e\xb0\x77\xc4\xff\x2c\xc1\x0b\ \xb8\x68\x90\x2a\x6c\xfe\xd1\x2f\x51\x1c\xa6\x41\x47\x88\x03\x14\ \x15\xa9\x02\x81\x21\x8c\x6f\x0c\x9b\xd8\x2e\x48\x60\x80\x4e\x70\ \x31\x7e\x7d\x08\x87\xfb\xd6\xe8\x3e\x6e\x72\xd3\x07\x65\x4c\x15\ \xe1\xc2\xd1\x02\x2f\xb0\x20\x1c\xa1\xa0\x80\x11\x8c\x10\x8e\x3d\ \x98\xe1\x73\x76\xfc\xdc\xc8\x10\x88\xc0\x04\xc6\x48\x36\x1d\x30\ \xd6\xb1\x8a\x05\x25\x2d\x14\x84\x20\x65\x63\x8d\x73\x70\x21\x85\ \x6c\x60\x61\x0c\x63\x70\x01\x0d\xd6\x81\x13\x34\xc8\x4e\x0a\xd0\ \xd2\xdd\x76\x90\xf1\x83\x83\xc4\xc1\x0f\xc8\xe0\xc0\x91\x46\x13\ \x21\xa9\xac\x69\x95\xab\x94\x9a\x13\xd6\x34\xb5\x1d\x3e\x2f\x7a\ \xeb\x1a\xc0\x2b\x6b\x89\x95\x20\xec\x22\x0b\x4e\x88\x17\x2f\x7b\ \x69\x00\x08\x41\x71\x98\xa2\xb0\xc1\x11\x1e\x10\x07\x5b\xc0\x04\ \x39\x00\x7b\x54\x28\xce\x87\xc5\x16\x98\x91\x70\x24\x10\x63\x27\ \xfa\xe0\xbe\x30\xf6\x61\xa9\xdc\x14\xa3\xfb\xb4\xd8\x09\xf9\x91\ \x40\x71\x8a\xd3\xe2\x16\x43\x11\x8e\x53\xe0\xe0\x14\x46\xa0\xc0\ \x1e\xae\xfa\x4e\x78\x7a\x6e\x64\x07\xf4\xdc\x89\x50\x23\x4a\xd3\ \x40\x07\x27\x30\xa1\xdb\x3f\xcb\x56\x48\x9e\x9c\xce\x19\xd6\x00\ \x61\x5e\xad\x11\xfe\xa5\x5e\x05\x07\x3b\x28\xbc\x24\x51\xc8\xb0\ \x0e\x5c\x30\x4d\x1f\x7e\xf0\x43\x46\x73\x22\x10\xc9\x9c\x69\x4d\ \xde\x6a\x40\xf2\x94\x27\xb6\x94\x42\x6f\x2d\xaf\x84\x25\x55\x58\ \x9a\x05\x3b\xc8\xb4\x97\x8a\x70\xc2\x33\x9e\x71\x04\x61\x2e\x06\ \x17\x47\x18\x85\x4a\xfe\x79\x12\x15\xf4\x4f\xa8\x44\x6d\x58\xfd\ \xae\xf0\xbe\x4e\xd4\xd6\xa9\xb5\xed\x04\x54\x91\xba\xdb\xdc\xee\ \x41\xaa\x82\x23\xc1\x6c\x67\xbb\x87\x70\x80\x01\x00\x53\x00\xc0\ \x29\x30\xd1\x89\xab\x06\x97\xac\xef\x5c\x5c\x02\x53\x64\x10\x83\ \x38\x01\x4b\x8a\x6c\x8e\x0c\xe4\x3a\x57\x3e\xc9\x80\xa0\xce\x80\ \x41\x78\x61\x60\x0d\x2c\x58\x43\x0a\x1d\x08\xce\x47\xac\x61\x34\ \xa4\x21\xc5\x0f\xc0\x0b\x82\x16\xf2\x40\x0e\x72\xec\xaa\x23\xb1\ \x11\xa5\x29\xb4\xd0\x80\x1f\x3c\x36\x87\x59\x2b\x8f\xd6\x2e\x6b\ \x59\xfa\x80\xc5\x3d\xb6\x8c\x4b\x67\x3d\xab\x17\x45\xf0\x64\x31\ \x3d\x95\xdb\x13\x55\x71\x04\xcd\xbe\xf4\x07\x54\x4b\x58\xdf\x1a\ \x36\x38\xe0\x32\x15\xb7\xb6\x55\xea\x87\xa9\x89\xd4\x10\xe7\xb6\ \x13\xbe\x95\xaa\x38\x4f\x01\x00\x47\x9c\xe2\x14\xe1\xd8\x87\xe2\ \x16\x17\x5c\xfe\x77\xc6\xf3\xb9\xd3\xad\x1e\x4f\xa2\x26\x4a\x43\ \x72\x77\xae\x34\x19\xc9\x48\x74\xe5\x0c\xf0\xc2\xc0\x26\x35\x91\ \x82\x35\x2c\x29\x94\xa3\x20\x43\x0a\x3a\xa1\x99\x33\xca\x00\x03\ \x20\x1c\x39\x27\x3b\x39\x88\xd4\xa6\xc6\x26\x92\x0a\xd8\xb2\x6c\ \x01\x07\x5a\xc0\x12\x27\x36\xf1\x49\xc1\x0b\xb6\xcb\x12\x3a\x81\ \x41\xd1\xca\xad\x39\x4f\x4c\x26\x21\xa3\xd6\x5a\x2c\x1e\xee\x6f\ \x63\x44\x41\x19\xa1\xda\x09\x0a\xf4\x59\xa9\x24\xf6\xf3\x87\xab\ \x59\xcd\x3e\x53\x20\x9b\x77\xf4\x41\x0b\x28\xe0\xe2\x16\x63\xc2\ \xb9\xff\xf3\x5c\xaa\xcc\x6a\x56\x01\x3e\x8d\x4f\xd5\xd9\xae\x8f\ \xe3\x72\x90\xe6\x68\x01\x99\x22\xd1\x47\x36\xc2\x3b\x42\x91\xe4\ \x0a\x06\x27\x8c\x68\x51\x1c\x91\x8d\x3d\x79\x17\x06\xe4\x70\x06\ \x10\xf2\x10\x8f\x23\x3d\x84\x85\xd5\x5b\x57\x79\x54\x80\x0f\xfb\ \xe4\x47\x05\xb2\x64\x1e\x1b\xa6\xc0\x06\xb0\xe0\x83\x88\x65\x3b\ \x33\x9a\x05\xa4\x08\xd1\x36\xdb\xb4\x70\x2e\x89\x16\x18\xa2\x82\ \x16\xbc\xf6\x70\x2d\xb0\x26\x0a\xf2\x5c\xbf\xaa\x86\x71\x09\xf5\ \xfa\xb0\x22\x02\x2d\xe8\xda\x1a\xc1\xc5\x7d\xf0\xc1\x68\x82\xf0\ \xb1\x2b\xfe\x84\x43\x9d\xeb\x44\x60\x74\xf7\x00\x69\xb3\xfa\x20\ \xd2\xa6\x1a\xcd\x9e\x34\xbd\x6f\xea\x88\x96\xb1\xc4\xd2\xd5\x78\ \x9f\x10\xb3\x6c\x10\x19\x06\xc8\x00\x6c\x51\xc8\xf0\x84\x1f\x54\ \x07\x17\xf3\x2d\x83\x33\x72\x55\x65\x93\x08\x24\x36\x06\xa1\xc2\ \xae\x61\x69\x16\x62\x5f\xf6\x3e\xe9\x9a\x25\x3e\xc0\x51\x1f\xf7\ \xe8\xa7\x6c\x41\xd8\xa5\xb2\xe9\x25\x82\xf4\x60\x90\x39\xa7\x8d\ \xc3\x28\xee\x46\xb5\x47\xb1\x40\x60\x58\xcc\xaa\xe0\xb4\x1d\xdb\ \xaa\xd6\x76\x09\x46\x50\x44\x6d\xc5\x4d\x81\xa0\x93\x3b\x1c\xe9\ \x74\xf1\x29\x28\x70\x05\x75\xaf\xdb\x07\x5b\x7c\x63\x38\x84\xfb\ \xcd\x94\x3d\xda\xde\xb3\x3a\x83\xe5\x5e\x74\x22\xeb\x52\x37\xd3\ \xfc\x3e\x39\x72\x20\x28\xea\x27\xd0\x60\x0c\xe4\xb5\x46\xc1\xf9\ \xb0\xe4\x2e\xf1\x01\xbe\x2d\x91\x72\x19\x40\x31\x92\x2a\xff\xc0\ \x34\xd2\x6e\x80\x29\xdc\x24\x07\xaf\xf8\x63\xe4\x6a\xb9\x4f\x58\ \x64\x19\x96\xc0\xc3\xb2\x01\xd4\xe3\x93\x13\x54\x9e\x66\x03\x40\ \x64\xb5\xf9\x8c\x03\x15\x27\x23\x30\x39\x08\x75\x17\x7e\x0b\xdc\ \x1d\x06\xa7\xed\x35\x72\xb8\x0f\x7d\xae\x97\xb8\x15\x01\x6e\x13\ \x0b\xfe\x7a\xd1\x49\x37\x02\xba\x05\x68\xef\x13\x77\xc2\x80\x74\ \x14\x2e\xbd\xe3\x49\xb9\xac\xa7\xc8\x34\x77\xd7\x09\xd8\x7d\xfc\ \x2f\xe8\x04\x1c\x0b\x7c\x40\x28\x1f\x9e\xd0\xb3\xbf\x02\x96\x11\ \x71\xd8\x09\x15\xa4\x40\x64\x50\x48\x5c\x76\x95\xa9\x75\x96\x00\ \x46\xd2\xe6\xd5\x07\xf0\x81\xff\xb2\x7c\x82\x98\xf8\xc5\x2f\xdb\ \xee\xe8\x89\xda\x85\x69\x1e\x8f\x01\xb4\x40\x0e\x72\x38\x40\xff\ \xfc\x86\x6d\x86\x69\x5e\xdb\x6a\xe4\xb6\xfb\xf8\x4c\x74\x0a\x7c\ \x7b\xdc\x1f\x46\x6a\xd2\x95\x7e\xe2\x1a\xbb\x8f\xb8\xbe\x05\x40\ \xb4\x9a\x37\xdf\x7a\xae\xab\xab\xbd\x18\xb1\x3d\x7c\xca\x89\xaf\ \xd3\x3d\xac\x40\x88\xe4\x28\x92\xf1\xe2\x03\xb3\x3b\x3b\x29\x40\ \x03\x18\x60\xaf\xa3\x01\x81\x78\xc0\xb2\x1f\x70\x06\x2c\x88\x38\ \x67\x70\xa8\x50\x33\x93\x78\xc8\x96\xbc\xcb\xbb\xac\x29\x30\xcb\ \x02\x9b\xfc\x10\x8b\x32\xe3\xbe\xee\xfb\x36\x8b\x10\xa5\xd2\xe8\ \x8c\xbb\x21\x18\xf8\x08\x85\x6d\xc0\x81\x03\xe8\x1b\xbf\x01\x1c\ \x12\xe0\x36\xce\xb3\x03\x32\x22\x81\x30\x9a\xbf\xd1\x03\x37\xf9\ \xe3\x2d\xa4\x73\xb1\x70\xa8\xb1\xcf\x99\xa3\x70\xe8\x03\xdf\xba\ \xfe\x82\x39\xc2\x42\x39\xaa\xa3\x77\xe2\x11\x05\x92\x11\x51\x7a\ \x8d\x8a\x6b\xc0\xdd\xa3\x82\xe4\x08\x38\xbc\x1a\x03\x66\x78\x82\ \xd1\x41\xb8\xa3\x19\x83\xa5\x31\x2c\x18\x28\x83\x88\x1b\x0e\x91\ \xc8\x90\x3c\xa8\x0c\xcf\x38\x88\xa8\x69\x00\x7c\x10\x36\xc1\x63\ \x97\x90\x63\x1e\x58\xd2\x0f\xc4\xd3\xb1\xf4\x50\x3c\x19\x5c\x82\ \x8e\xd0\x08\xf1\xbb\x9b\x83\xa9\x36\x7f\xc0\x81\x6d\xd8\xaa\x2d\ \xc2\xa6\xa5\xaa\x1f\x6d\xb3\x83\x22\xdc\x30\xa6\x42\xc2\xfa\xa3\ \x80\xda\xe2\x2d\x12\xa8\x3f\x17\x9b\x82\x53\x38\x00\x12\xe0\x3a\ \x14\x21\x81\x37\x8a\x3d\x12\x90\xa3\x58\x3c\xb1\x79\xb3\x23\xcc\ \xb1\xb7\x54\x59\x15\x55\x51\x2b\xe9\x3b\xa5\x31\x2c\x9b\x07\x4c\ \x12\x51\xc3\x2b\xb3\x03\x01\x17\x58\x07\x8a\xc8\x06\x47\x68\x03\ \x32\x18\x03\x0e\x2c\x08\x2d\xf8\xae\x3c\x10\xc1\x3a\x2c\x92\x4c\ \xa0\xb5\x47\x89\x87\x0e\xd8\x89\x1c\xe2\x35\xb4\x00\x07\x40\x04\ \xb6\x90\xa3\x25\x03\xb0\xa1\x93\x4b\x81\xee\xa3\x97\x25\x38\x03\ \x2a\x52\x01\x47\x44\x98\xf3\x93\x83\x6d\x00\x03\x23\x90\x03\x2f\ \xf0\x82\x70\xb8\x47\xbf\x89\x2d\x14\xb0\x83\x35\x8a\xbf\x6e\xfe\ \xe2\x33\x71\xcb\xad\xdd\x42\xaa\x45\x3b\xae\xaf\xb2\xaa\x13\x51\ \x08\x7b\x33\xb4\xe0\x0a\xae\x39\x7a\x3d\x03\x9a\xb7\xb4\x5a\xbd\ \x8f\xc9\xba\xac\x5b\x15\x19\x91\x81\x85\x18\x08\x5f\x04\x28\x2a\ \x38\x82\x22\x01\x2f\x2c\x30\x3b\x17\x68\x83\x65\x64\x86\x23\xf9\ \x81\xf5\x02\x81\x6c\xd0\x2c\xe5\x23\xb2\x5c\x01\x05\x69\x4c\x16\ \x22\xb9\x88\x50\xc2\x38\x15\x60\x0f\xb4\x60\x83\xb0\x58\x1e\xe8\ \xa1\xa5\xaf\xd0\x03\xfe\xe0\x93\x20\x48\x36\x65\xab\x17\x6a\xfb\ \x86\x0d\xd1\x8c\xcc\x18\x98\x50\x38\x80\x6d\xf0\x83\x03\x38\x80\ \xad\xb2\x47\x7c\x0c\x9c\x7d\xdc\x44\x7f\xac\x2a\x80\x14\x45\x26\ \x2c\xc8\xa4\xa3\x00\x77\xe2\xba\x8f\x31\x03\xe2\xe2\xa2\xd9\x7a\ \x48\x76\xd2\xc2\x79\x4b\xc8\xd5\x4b\x95\x8b\x0c\x19\xcb\xe9\x80\ \xd4\x50\x0d\x8f\xbc\x34\xa6\x18\x05\x51\xfb\xbd\x31\x38\xc9\xbf\ \x24\x03\x3e\x18\xa1\x82\xcb\x03\x6d\x8c\x9a\x24\x91\xb8\x98\x1c\ \xb5\x6a\xa4\x35\x8a\xaa\x2e\xd4\x68\x00\xf2\xf3\x3b\x70\xf8\x46\ \x76\x21\xbc\x90\xfb\x0a\x97\xe2\x2e\x74\xa4\x17\x14\x78\x94\xf3\ \x0b\x85\xcc\xa0\xb6\x50\x08\x85\x78\xdc\x86\x6d\xa0\xca\xfe\xaa\ \xc4\xc7\x7b\xc4\xc4\xf7\xeb\xc7\x7e\x34\x42\xaf\xd4\x2d\xf9\x3b\ \x3d\x23\x40\x81\x17\x19\x8d\x14\x61\x3d\x57\x0c\xae\x2b\x38\xb1\ \xa3\x63\x4b\xe7\xb2\x1c\xdd\xd4\xcd\x8b\x1c\x4e\x14\x99\x0d\x85\ \x60\xa1\xe5\xc4\xcb\xba\x6a\x89\x08\x24\x49\x84\x3a\x49\x32\x58\ \xc6\x36\x70\x84\xe1\x93\x82\x33\xa8\x0e\x2a\x88\x03\x9f\x91\xc6\ \xb8\x83\x01\x89\x2b\xa1\x6c\xf8\x86\x65\x61\x9a\xce\x98\x9a\x94\ \xfa\xbb\xb5\x18\x05\x71\x54\x8b\x94\x72\x0f\x4c\xf1\x31\xce\xdc\ \x8b\x16\x60\x81\xf3\x63\x81\xf4\xd9\x05\xd2\x44\x3f\x39\x30\x82\ \x49\x94\x83\xd5\xe4\x22\x11\x30\x00\xf7\x6b\x98\x4d\x84\x4d\x32\ \x6a\x98\x6e\x62\xd0\xb0\x3c\x05\xe6\x7a\x9a\x9d\x70\x82\x6f\x7a\ \x23\x2b\x44\xaa\x29\x8c\x3a\x18\xbb\xb7\xe1\xd4\xcd\x50\x49\x15\ \x14\x41\x11\xda\x88\x0d\x7c\xc2\xae\x5e\x1c\xc3\x67\x60\x8a\x60\ \x84\x81\xb2\x93\xce\xe9\xac\xce\x37\x34\x09\x66\xf9\x01\x51\x0b\ \xcf\x39\x24\xb2\x1b\x25\xcf\x75\xf8\x86\xf3\x22\x8d\x14\x10\x4d\ \x57\x62\x82\xca\xbc\xac\x34\x60\x9e\x00\xc0\x8f\xf9\x18\x00\x15\ \x28\xc7\xcd\x44\xc7\x25\x38\x00\x49\x09\x85\xfe\x41\xfe\x18\x3d\ \x30\xbf\x03\x88\x47\x30\x40\xcd\xaa\xb4\xc7\x3b\xcb\xca\x45\x68\ \x18\x1f\x78\xcd\xce\xdb\xbc\xd9\xfc\xca\x4e\x30\xb7\x53\xd8\x83\ \x14\x88\x8b\x09\x25\x2e\xd8\x1b\xae\x59\x44\x4b\x0d\xbd\xc5\x3b\ \x82\xcb\xac\xd3\xba\x14\xd9\x0d\x24\x8b\x03\x99\x60\x40\xee\xd2\ \xae\xba\x52\x0e\xbe\xe4\x03\x66\x68\x51\x17\x75\x04\x18\x58\x96\ \xa6\x19\xaf\x39\x94\x43\x22\x0b\x41\x0e\xb0\x06\xc5\x92\xb6\x86\ \x20\xbf\x16\x58\x8b\x6f\x10\xb9\xfb\x00\x82\xc2\x1b\x44\xf9\xb8\ \x0f\x25\xdd\x37\xfa\x4c\xbf\xf3\xd9\x4f\xa1\x22\x4d\xd2\xa4\xca\ \xd3\x3c\x00\x7c\x64\xd5\x2e\xca\xca\xf7\xe3\xc7\x04\x95\x9f\x7f\ \x04\x4b\x13\x33\x45\x0a\x48\xb7\x82\xe0\x89\x14\x30\x03\xe0\x14\ \x2e\x58\x6c\x3d\x39\x0a\x2b\x48\xfb\xd0\xad\xb3\xc5\x3b\x72\x95\ \x4c\xc8\x84\x21\x99\x19\xb8\xe8\xd3\x5f\x54\x24\x51\x42\x89\xbb\ \x32\x3b\x66\x70\x24\x93\xa4\xce\x36\x40\x86\x6c\xd0\xc6\x82\xe8\ \x95\x6c\xb0\x06\x6b\x28\x03\x10\x9c\x43\x1b\x7d\xb5\x27\x50\xac\ \x8f\x00\x82\x50\xf8\x86\xf3\xfb\x06\x3d\xf8\x86\x20\x2d\x3c\x23\ \x05\xbc\x90\x03\xd5\x50\x6d\x52\x12\xd1\x4f\xf8\xfe\xf0\x82\x50\ \x30\x00\xd2\xf4\x86\xd4\x84\xca\xd5\xc4\xbc\x02\xdd\x30\x58\x85\ \xcd\x0d\xeb\xca\x81\x04\xc8\x15\xfb\x2a\x14\x50\x48\x83\x48\x81\ \x2b\x48\x27\xa9\x63\x9c\x87\x94\x23\x38\x8d\x45\x39\xd2\xba\xad\ \x8b\xcb\xcc\x29\xa0\x7d\x50\xd6\x65\xf5\x88\x95\x58\x09\xb8\x40\ \x08\x4d\x7b\x06\xf9\x92\x1d\x62\x01\xd7\x41\x75\xa4\x93\x04\x81\ \x36\x00\x01\xf3\x3a\x25\x9a\xb8\x2b\x71\x25\xaf\x09\x04\x41\x2c\ \x48\x86\xf0\x84\xd4\x17\x92\x02\xaa\x61\x01\x20\xe0\x3b\x36\x90\ \x83\xf7\xc0\xd4\x6f\x04\x07\x79\x0d\x00\xcb\x54\xd2\x96\xd3\x31\ \x3e\x89\xa9\xc5\x5b\x02\x03\x40\x01\xbe\x21\x27\x80\x45\xd5\xad\ \x5a\xd5\x7b\xec\x57\xc0\xd1\x47\x86\x59\x84\x21\x84\xbf\xce\x8b\ \xcd\x06\x25\x45\x87\x0d\x87\xe3\x44\x11\x1f\x78\x23\x23\xb0\x42\ \xe1\xd2\x58\x76\xba\xc2\x74\x12\x2b\xdc\xd4\xcd\x94\xa1\x27\x93\ \xc1\x04\x4c\xc8\x04\x58\x01\x12\x45\x52\x24\x0a\x93\x01\x95\xa0\ \xab\xa2\x44\x51\x0f\x9a\xb2\x64\x19\xaf\x92\xfc\x4b\x66\x70\x86\ \x1f\xd0\x31\x2a\x08\x16\x18\x28\x2f\xf2\xa2\x81\xcd\xdd\x5c\x72\ \x0d\x4f\xf2\x5c\x56\x29\x88\x07\x8b\x30\xbf\xfe\xfa\x80\x0c\x3d\ \xa0\xcc\xd4\xa5\x4c\xb5\x00\x82\x41\xac\x25\xa9\x4d\x25\xaa\x6d\ \xd2\x85\xd9\x9a\x2b\x42\xd5\xaa\x3c\x80\x80\xf5\x06\x6f\xb0\xc7\ \xab\x24\xd0\x3b\x68\x3f\x33\xd8\x85\x4c\xdc\x47\xce\xe3\xb0\x06\ \xe5\xb0\xd3\x03\x03\x12\xc8\x37\x76\x6b\xc5\x75\x1a\x99\x19\x33\ \x19\xd7\x83\xd3\x76\xfb\x04\xb9\x4d\xb7\x75\x63\xb7\xcd\xd1\x23\ \x89\x1c\x59\x9b\x38\x03\x63\x09\x89\xd5\x09\x09\x5c\x60\x21\x3e\ \xa5\x8e\x93\x68\x89\x0f\x62\x06\x66\xc8\xdc\x09\x44\xa8\x84\x52\ \x16\xd2\x80\xc6\x70\x1d\xaf\x9e\xe5\x5c\x1a\x80\x07\x10\x84\x01\ \x0e\x28\x03\x52\xbb\x2f\x8a\x88\x07\x78\x4c\x52\x20\x08\x33\xb4\ \x98\x82\xd5\xfd\xb8\xc0\x8b\x07\xa2\xcc\x82\x6f\x71\x60\x1d\xab\ \x5a\x95\xbb\xda\x3a\xdb\x85\x01\xf0\x82\xa8\xac\xca\x80\xa5\x4a\ \x2e\xea\x5d\xb1\x1d\x9c\xc3\xa9\x1f\x86\x31\x23\xf8\xe3\x36\x0e\ \x1b\x9c\x6f\xfa\x9c\xb5\x3d\x85\x16\xd0\xb7\x09\x75\x9f\x37\x32\ \xb4\xd9\xb2\x37\xdf\xbc\xc2\x2b\x9c\xa3\x2b\x0c\x87\xeb\xcd\xdb\ \xb7\x3d\xab\x58\x0c\x5c\x39\x02\xdc\x93\x01\x92\x8e\x00\x89\x90\ \x18\x8e\x25\x41\x0e\xf3\x65\xa9\xe7\x24\xfe\x28\x3e\x30\xc9\x36\ \x60\x06\xe1\xfb\x3d\x1a\x78\x02\x7d\xc8\x3d\x9a\xc8\x03\xf2\x2a\ \x83\x70\x2d\x57\xce\x1d\xd7\x32\x48\x83\x29\x13\x5a\x69\xcb\x12\ \x11\x61\x57\x76\x8d\x87\x60\x43\xe0\x2e\x58\x5d\x7a\xdd\x54\xfd\ \x30\xd1\xab\x29\xca\x2c\x98\x60\xa4\x04\xde\xf4\xf9\xd7\x54\xb5\ \x52\x0e\xce\x5d\xc0\xe9\x57\x2e\x62\x18\x14\x58\x84\xe1\x35\x1c\ \x33\x68\x9f\x7d\xfc\x26\xf9\x31\xaa\x14\xfe\xa6\x45\x3b\x00\x1f\ \xa8\x9e\x89\x3d\xba\x75\x92\xba\x1a\xbe\x42\x7a\x82\x45\x39\x22\ \x01\x4c\xf8\x84\x4f\x10\xab\x0e\x2d\xa0\x4c\xf8\xdb\x4c\x38\xa0\ \x58\x1c\x62\x20\x11\x92\x8f\x08\x16\x11\x24\xdc\x27\x71\x40\x94\ \x18\x32\x6b\x60\x86\xbf\x7c\x24\x3e\x48\x3b\x9b\x29\x88\xd3\x01\ \xd7\x70\xdd\xd9\xfb\x25\xc9\x72\x8d\xbb\x98\x9c\x35\xbb\xfb\x81\ \xa0\x92\x03\xcc\x80\x57\x26\x10\xb6\x04\x56\xdd\xfb\xa8\x4c\x34\ \xe1\xb7\x6f\xb9\x63\x34\x5b\x82\x3c\xc6\x60\xa8\x54\xd5\xd4\xa4\ \xca\xdd\x0d\x05\x2f\x20\xd0\x02\x7d\xbf\xc3\x21\x61\xf8\xd9\x3c\ \x33\x02\x27\x77\xb2\xaa\x54\x21\x01\x17\xb3\x4d\xac\xf8\x98\x6a\ \x5a\x27\x02\x8c\xae\x2b\xc4\x58\xb6\xfe\x34\x02\x1e\x46\x34\x1f\ \x28\x99\x3d\xf8\xdb\x03\x32\x19\x7f\xc6\x04\x93\xb1\xc0\x20\xa9\ \x09\x70\x35\x32\x9d\x29\x96\x5e\xe4\x4e\x98\x99\x32\x92\x8c\xe2\ \x93\x14\x4c\xf3\x54\xbe\xf1\x12\x38\x10\x1a\x03\x10\xda\x5c\x61\ \x96\xb2\x98\x69\x12\x0e\x48\xac\x6c\x88\x87\xfb\x94\x03\x49\xc9\ \x9a\x6f\x00\x07\x61\x53\xdd\x67\x1e\x00\x69\xd6\x34\x1b\x0a\x82\ \x3e\x58\x82\x26\xcd\xe3\x3d\x4e\x4d\x39\xf0\x06\xf4\x4b\x4d\xde\ \x15\xdb\x5d\x28\xdb\x06\x70\x18\x87\x21\x9c\x3b\x30\x58\x9e\x03\ \x27\xab\xf2\xa6\x6f\x5a\xb1\x29\xe8\x84\x3d\xc1\x32\x1f\xd8\x87\ \xa8\x03\x20\x7a\x93\x23\x7c\xd6\x67\x49\xcb\x23\x52\x56\x56\x80\ \xf6\x67\x65\x15\x5c\xe0\x00\x92\x4c\x70\x86\x81\x3b\x62\x40\xb2\ \x19\x82\x40\xd1\xee\xc4\xab\xbc\xf2\xcb\x93\x74\x81\xbd\xba\x92\ \x38\x18\x57\x6b\x10\x38\x42\x9d\x40\x1a\x98\xc0\x29\x8b\xbb\x29\ \x93\x9d\x2d\x19\x0a\x3f\x80\x94\x6f\x18\x00\x65\x96\x83\x94\x5e\ \xe9\x2e\x70\xe3\x6f\x54\x01\x13\x8d\x84\x08\xee\x09\x1b\xaa\xe6\ \x05\x5b\x82\x3e\x28\xe4\x7f\xf5\xe3\x50\xf0\x63\x0d\xfe\x5a\xc0\ \x19\xde\x71\x16\x5e\x03\x38\x2a\xfe\xcd\x9b\x55\xa3\x6a\x2e\x3d\ \x33\x48\x00\xc0\x55\xdc\x84\xe1\x6c\x8a\xbd\x48\x2b\xa0\x58\xa4\ \x00\x4c\x38\xba\x4f\x06\xe5\xff\xb1\x37\xbf\xdd\x83\xc0\x0d\xe8\ \x52\x0e\x5c\x55\x96\x82\x4c\xc8\x86\x75\x88\x99\x21\x69\xd9\x3d\ \x95\x89\x32\x0c\x96\x41\x4d\x43\x10\xb2\x56\x48\x5a\xc0\x45\x11\ \xb5\x29\x0b\xaf\x2a\xc6\xeb\xbc\xe2\xdf\x30\x86\x81\xe1\xc8\x03\ \x1a\x10\x2c\x1c\x78\x21\x13\x9c\x0c\x7c\xf8\x06\x7f\x50\xe9\x20\ \x0d\x33\x37\xc6\x07\x53\x30\xd1\x07\xf6\xb1\x20\x88\x6c\xcf\x9a\ \xec\xcb\xd3\x83\x7e\x15\x58\xcc\xe6\xe3\xdc\xe5\x5d\xbf\xe9\x6c\ \x87\xb1\x83\x10\x26\x01\x12\x2e\xa3\x0d\xfb\xa6\x06\x7d\x64\xb6\ \x25\x4b\x76\x66\x27\xe7\xea\xcd\x94\xa9\x6a\xd9\x76\x70\xda\xa6\ \x45\x48\x13\x59\x53\xee\x5e\x52\x06\xdc\x3c\xd0\x91\x4c\xc8\x83\ \x4c\xb0\x86\x75\x70\x06\x09\x12\x32\x92\x80\x8e\x57\x86\x19\x98\ \x5d\x6e\x2c\x88\x24\x29\x39\x89\xee\x8c\x19\x69\x1c\x2f\x5f\x7e\ \x82\xdf\xb3\x6e\x2c\x90\x71\x2c\xf0\x68\x67\x58\x3b\xc1\xf2\x03\ \x20\x88\x3c\x03\xfe\x46\xa8\x68\x5a\xca\x44\x60\x26\x50\x6f\x7e\ \x0b\x82\x3f\xb8\x1a\xf7\x6e\xfe\xd2\x1c\xc0\x3c\x11\xc8\x60\x6e\ \x86\xca\x9d\xf6\x06\xac\x5c\x98\xe1\x05\xea\xe1\x15\x5e\xc1\x11\ \xed\x4c\xac\x9f\x70\xea\xa6\x6f\x32\xd3\x27\x54\x45\xcc\x81\xc5\ \xb0\x72\x27\x06\xcf\x64\xe2\xc2\x04\x23\xc0\x84\xd8\xce\xe7\x4f\ \x9e\xc8\xff\x29\x19\xc0\xed\x6d\x91\xc5\x84\x75\x58\x07\xaf\xfe\ \xed\x4c\x58\xd1\x75\xc8\x06\x0d\x6f\x92\x3a\x24\x16\xe2\xde\x62\ \xe0\xb3\x56\x1a\xb0\x86\x3c\x80\xaf\x93\x28\x28\x1a\x40\xf1\x82\ \xeb\x62\xf1\x0a\x57\x1a\xb7\xee\xbc\x9a\xc3\x64\x71\x06\x72\x00\ \x81\xa2\xc0\x28\xca\x40\xe9\xd4\xc5\x07\xa8\xe0\x00\x70\x20\x8a\ \x29\x78\x0b\x23\xb7\x03\x4c\x31\x88\xf7\x96\xa9\x25\xc8\x81\x70\ \xb6\xc7\x80\xcd\xd2\x9d\xee\xe6\x2d\x5d\x98\x9d\xdb\xb9\x43\x3e\ \x67\x2e\x5f\xa3\x01\xf7\xa6\x30\x7f\xb1\x14\x90\x58\x1f\x20\x34\ \xb1\xba\x9f\x8d\x55\xf3\x70\x58\x73\x36\x7f\x73\x4c\x10\xab\x02\ \xe2\x5b\x03\x1a\x68\x58\x99\xf0\x3b\x07\x5c\x0b\xcc\x83\x75\x78\ \x82\x27\xf0\x73\xd8\xe9\x19\x87\x82\x9d\x5c\xb9\xab\x09\x64\x06\ \x2b\xd6\x87\x6e\x2d\x8d\xed\x76\x01\xf7\x95\x6e\x39\x0c\x2f\x5f\ \xde\xd9\x10\xd2\x68\x3e\xfe\xd0\xeb\x9e\x81\x81\x10\x50\x38\x36\ \x78\x8a\x64\x30\x6c\x70\x08\x00\x70\x18\xf5\x03\x06\x07\x04\x7b\ \xe9\xad\x61\x13\x25\x97\x41\x11\x50\x78\x27\xa7\x6f\x6e\xd6\xdd\ \x29\xb7\xc7\x1f\xec\x6c\x43\x1e\x61\x44\xde\xf5\xcd\x63\xe7\x06\ \xed\x04\x87\x3d\x00\x61\xcf\x82\xdd\x24\x40\xaa\x8b\xc5\x37\x72\ \xf0\x35\x6f\x73\x66\x8f\xf3\xee\x95\xf6\x91\x2d\x99\x4c\xc0\xf3\ \x3c\xcf\x04\xe0\xd0\x76\x46\xd8\xf6\x75\x08\xf7\x64\x09\x35\xf0\ \x32\xb8\x71\x17\x3e\x23\x8b\xd1\x93\x48\x32\x6b\x6d\x5f\x47\xa7\ \xf1\x98\x79\xf7\x2e\xde\xd9\x2a\xa6\xf7\xf0\xfa\x70\x69\x44\x06\ \xa3\x08\x81\x2e\x10\x8f\x80\x0f\x72\x36\x50\x69\x7c\x98\x0a\x23\ \x17\x29\x3b\xd8\x09\x78\x91\x41\x45\x78\x75\x11\xe0\xdd\xdd\xe5\ \x60\xd4\xcc\xd2\x0f\xc6\x3c\x9f\xde\x85\x22\x34\x64\x46\x1e\x1c\ \xcd\x13\x6d\x21\x4c\x5b\xf7\x39\xed\x53\x60\x3a\x27\x30\x83\x6a\ \x3a\x34\x49\x1b\x2e\x35\xff\x5b\x65\x7f\x37\xd9\x46\x2b\x79\x9a\ \xb7\x79\xd2\x6a\x93\x19\x59\x3c\xd7\x70\x34\xc8\x84\x27\x38\xa8\ \xb3\x5b\xd6\x65\xf5\x99\xbb\xa2\xf1\xcc\x7d\xf7\x44\x8f\x83\x87\ \x10\x88\x90\xc0\x5c\xfe\x1a\x68\x5f\xa1\x77\xf4\x88\x13\x2f\x22\ \x43\xbb\x71\x05\x21\xe9\xfe\xf0\x26\xf1\x03\x30\x71\xe3\x6f\x48\ \x83\x20\x1d\x75\x61\x13\x8f\xc5\xd6\x34\xea\xb2\x7d\x9e\xe8\x84\ \x26\x55\x04\x85\x27\x7b\xb2\x4f\x4d\x7f\x38\x4d\x9e\xde\x52\xce\ \x16\xde\xa0\x0e\x61\xe1\x15\xed\xb8\x0f\x70\x06\xe5\x33\xa3\x38\ \x80\xe1\x02\xab\xb6\x45\xb4\x1f\xae\x6a\x21\xf6\x64\xc1\xff\x9f\ \x80\x46\xa0\x96\x87\xf9\x3d\x7f\x79\x65\x0d\xee\xc7\x47\x74\xda\ \x81\x1d\x09\x34\x3b\x10\xa2\xeb\x64\x89\x92\xe3\xfe\x08\x1a\x1d\ \x57\x6b\x5d\xf7\x75\x77\x74\xf1\x8a\x99\x22\x3b\x7a\xba\x2e\xb2\ \x69\xc4\x02\x30\x21\x83\xf1\x08\xf8\xa7\x00\x08\x70\x6c\xa6\xe0\ \xeb\x90\xe5\x60\x90\x48\x4e\x22\x05\x09\x82\xf0\x8f\x8a\x06\x7f\ \x1c\x22\xcc\xf1\xef\x22\xc6\x8c\x1a\x37\x6e\x5c\xb2\xc4\xdb\x47\ \x45\xde\x44\x78\xf3\x76\xe0\x24\x4a\x6f\x5e\x42\x79\x31\xd0\x72\ \x17\x4c\x14\xbb\x64\x9a\xd9\x65\xe6\x26\xce\x9b\x77\x48\xe4\x24\ \xe1\xf3\x27\x85\x53\x00\x86\x9e\x32\x42\xc1\x68\xb8\x3d\x3e\x52\ \xa4\xf0\xe1\xe3\x0a\xd4\x2b\xfb\xf6\x50\xdd\x83\x09\x93\x11\x4c\ \x7b\xae\x38\x85\xfe\x3a\x75\xcf\x3e\xa8\x68\x32\x65\x5a\x97\x69\ \x5f\x9e\x75\x6a\xd7\x39\x73\xb6\x8e\xcf\x98\xb8\x4f\xb2\xed\x93\ \x22\x25\x53\x9e\x6c\xd6\x68\x8c\x71\xe1\x82\x19\x1f\x6b\xce\xa4\ \x68\x91\x91\x25\x08\x95\x1f\x79\xca\x60\x81\x91\x0d\x06\x16\x66\ \xcc\xfe\x32\xa3\x41\x03\x0b\xe6\x32\x30\xda\xc2\x70\xec\x6c\x73\ \xdb\xcf\x65\x9c\xe5\xc9\xe3\x87\xcc\xd0\xd4\x21\xe0\x71\x00\x47\ \x0e\x1c\xb8\xd6\x6c\xd8\x7c\x33\x78\x10\x62\xc4\x86\x87\x21\xc2\ \xec\xe0\xb0\xa1\x13\x8b\x1c\x87\x13\xbf\xe8\x51\x24\x49\x92\x25\ \x4f\x7a\xf3\x67\xb2\xa4\x97\x96\x06\xa6\xdb\x8c\x79\x13\x45\xcd\ \x9c\x8b\x72\x62\x37\xf3\x13\xe8\x94\xd4\xa7\xc6\x1b\x09\x17\x8e\ \x04\xd7\xa6\xe8\xa3\x42\xad\x7a\x55\x6b\x54\x1f\x67\xa4\x62\x3a\ \x8b\xe6\xcc\x99\xb1\x64\xef\x66\x5b\x67\xcd\x31\x0c\x70\xb5\x11\ \x97\x35\xd9\xe4\x21\x45\x69\x7a\xf1\xe1\x42\x1b\x6d\xb8\x40\xc3\ \x13\x83\xd9\x16\x84\x0c\x71\x64\x53\x06\x1f\x8d\x41\x66\x59\x65\ \x96\xd1\x90\x61\x86\x58\x68\xf6\x19\x69\xd9\x38\x63\xa2\x89\x30\ \x70\x00\x1a\x32\xa9\xa5\x46\x06\x19\x5d\xc0\x33\x5b\x17\x53\x4c\ \x01\xce\x37\xfe\x2a\x68\x81\x98\x13\x2a\x0c\xd0\x82\x0a\x7f\x38\ \xe1\x04\x15\x0d\xa8\x70\x64\x03\x43\xfe\xd1\x41\x0a\x8a\x14\xf7\ \x64\x47\x4b\x88\x30\xa5\x22\x5e\x2c\xe7\x0d\x13\x25\x99\x74\x80\ \x4a\x2e\xb5\x40\xdd\x4c\x31\xc1\x84\xd3\x1d\x66\x94\xc9\x1d\x4f\ \x3e\x75\x02\x94\x50\x44\x91\x17\xce\x3e\xe8\x39\xf5\x94\x0f\xeb\ \x45\x45\x55\x38\x98\x24\xc5\xde\x15\x68\x4c\x55\xdf\x7d\x3f\xa0\ \x91\x47\x26\xd9\x14\xba\x0e\x16\xd6\xb0\x15\x20\x83\x80\xc1\x50\ \x5a\x82\xd6\xf0\xd1\x60\x83\x0f\x5a\x23\x05\x2e\x14\x51\x61\xa1\ \x35\x98\x61\xc6\x87\x87\xa1\x32\xe6\xa1\x88\x30\x68\xe6\x99\x89\ \x9c\x99\x2a\x58\x19\x2d\xba\xf8\x62\x17\x5d\x84\x10\x42\x17\x6c\ \x00\xf1\x43\x07\x47\xea\x1a\xcf\x91\x44\x36\xd0\x40\x0b\xbb\x34\ \x60\x47\x03\x1d\x34\x90\xc2\xb0\x4e\x42\xb9\xec\x71\x53\x2a\xc7\ \x25\x97\x2a\x45\x17\x2d\x4b\x2e\x19\x60\x93\x4c\x34\xdd\x64\x53\ \x99\x3b\x99\xe9\xd3\x4d\x3e\xf5\xd1\x09\xb9\x3e\x51\xf0\xea\x78\ \x70\x92\x10\x27\x9f\x76\x4a\x75\x45\x55\x54\x45\x35\xdf\x3e\xfb\ \x90\x75\x16\x7e\x63\x19\x9a\xcd\x63\xff\x39\x26\xa9\x83\x81\x19\ \xa8\x8f\xfe\x3e\x79\x30\x4a\xe9\x80\x97\xee\x78\xd0\xa6\xd9\x24\ \x5a\x86\xa4\xa4\x96\x31\x71\x66\xa3\x5e\x26\xa2\xa4\x23\x8a\xa6\ \x99\x66\x2b\x96\x01\xe3\xab\x00\xc0\x08\x32\x19\x38\x7c\xf3\x03\ \x62\x2a\xc4\x03\x04\x90\xc7\x3a\x91\xa4\x91\x40\xaa\xd0\x81\x1d\ \x34\x3b\x11\x44\x1f\xcb\xea\xbc\x04\x72\x53\x96\xb4\x04\xb4\x2a\ \x0d\xe0\x4d\x28\x5c\xb6\xf4\x52\x4c\x0d\x98\x41\x53\x75\x66\x3a\ \x1d\xee\x4f\x7d\x8c\x5b\x2e\x09\x41\xb9\x58\xd4\x79\xf0\x6e\xd5\ \xc9\x54\x51\xb9\x1b\xaf\xbc\x62\xd9\x7b\x6f\x26\x3f\x9c\xf1\x43\ \x59\x8a\xf2\x2b\xd8\xda\x93\x8d\x81\x85\x33\x04\xdb\x95\x8d\x80\ \x94\xba\xc0\x87\x3e\x54\x1c\x94\x45\x85\x8b\x95\x5a\x06\x0d\x95\ \x65\x38\x5a\x68\x9d\x01\x6e\x19\x88\x17\x67\x66\xcd\xc4\x8c\x9b\ \x8a\x8c\x23\x21\x93\x11\x02\x08\x2f\x72\x10\x0f\x15\x88\xe5\x7a\ \xa4\x1d\x54\x10\xb9\xa4\xae\xbf\x0e\x19\xc4\xcd\x38\xeb\xcc\xac\ \x94\x5a\xaa\x0e\xdd\x95\xd0\x21\x8d\xc2\x22\x28\xc8\xde\xb4\x4d\ \x24\xec\xb4\x93\x4f\x3b\xf5\x61\x40\x27\xe1\x74\x22\x02\x05\xe4\ \x1e\xd0\x26\x51\x49\xad\x4b\x02\x9e\x49\x6d\xb5\x9e\x9d\x54\x69\ \x05\xfe\x96\x9f\xf6\xee\x71\xaf\x14\x68\x74\x20\x05\xa2\xd6\x24\ \xe8\x98\x89\x58\xf4\xc5\xc7\xa3\x76\x21\xe8\x3d\xc2\x6d\xf0\x91\ \x87\xde\xcf\x04\x81\x4b\x1c\x06\x77\xc6\x38\x66\x96\x65\xd6\x16\ \x28\xa4\x39\x63\x71\xe0\x81\x0b\xce\x07\x88\xff\x71\x80\x85\x1f\ \x40\x80\x9a\x57\x21\xc3\x19\xe4\x18\xa0\xc9\xe2\xd1\x81\xcc\xc9\ \x80\x74\x1d\x78\x60\xcd\x8c\xd5\x81\x3f\xb8\xac\x21\x14\xc9\x42\ \xce\x4e\xf7\x24\x8f\x28\x67\x75\x2a\x29\x49\xd1\xa4\x25\x9d\x5d\ \xdc\x61\x17\x76\xc8\x56\x98\xcc\x34\x1d\x12\xac\xb0\x0f\x24\xd8\ \x1d\xb9\x78\x47\x81\x19\x86\xe3\x28\xc4\xc3\xda\x1e\x0c\xb0\x3c\ \xf3\xe8\x29\x2c\xec\x69\x9e\x55\xae\x32\xbd\xe9\xd5\xc7\x2c\x65\ \x13\x14\x64\xb4\xa7\x0f\x14\xe5\x85\x0f\x95\x09\x5f\x1c\xa4\xa0\ \x0f\x18\xd0\x00\x61\x77\xcb\x9b\xfa\x64\xa0\x05\x29\xf0\xeb\x44\ \x86\xa3\xd8\xc5\x46\x93\x07\xfb\xdd\x0f\x54\x92\xf1\xcb\x19\x25\ \xe3\x21\x3e\x7c\x06\x0b\x02\x1c\xe0\x8b\xc8\x11\x07\x67\x0c\x90\ \x0c\x6c\xb8\x9c\x16\x9c\x70\x98\x20\xa4\xe0\x0c\x11\x99\xa0\xb1\ \x46\x67\xc1\xbd\x61\x50\x83\x1b\xfc\x08\x48\xa2\x25\xc2\x2d\x99\ \xfe\x24\x3a\xd6\xda\x45\xec\x16\x71\x42\x13\xea\x64\x17\x2c\x34\ \xc0\x0b\xa7\xe3\xc2\xdd\xd5\xd0\x1b\x33\x3c\xc0\x0c\xc1\x30\x9e\ \x51\x9a\x07\x79\x5c\xdb\x83\x79\xcc\xb3\xbc\x3d\x20\x8f\x2b\x51\ \xd9\xc7\x7b\xae\x42\x96\xfa\x64\x02\x41\x68\x90\x82\x62\x04\x63\ \x97\xbc\xe4\x41\x1f\xce\x00\xd5\x5c\xa4\x10\x87\x61\xd2\x8d\x41\ \x95\xba\x14\x15\x64\x20\x83\x4d\x19\xec\x44\xa9\x32\x9c\xa9\x44\ \x44\xb8\xc2\xad\xca\x89\x93\xf1\x0b\x65\x2a\x23\x19\xf0\x05\x08\ \x64\xaf\x22\x03\x0c\xa2\x78\x1a\x91\x89\xcc\x0f\x98\x6b\x08\x15\ \x36\xa7\x02\x3f\x16\x2b\x90\x9e\xbb\x19\x42\x32\x68\xc8\xe1\x2c\ \x61\x1b\x1f\xb1\x67\x49\xa6\x14\x1d\x2f\xa4\x64\x3a\xfe\x84\x89\ \x24\x51\xe0\x0b\x48\x6e\x67\x3b\x77\xd8\x89\x01\x10\xca\xc2\x4c\ \x8a\xa0\x13\x9e\x9c\xa1\x27\x0f\x60\x04\x30\x94\xa7\x05\xc8\x83\ \x93\x0e\x79\xa8\xbc\xad\x6c\x05\x2a\x73\xa2\xcf\x7b\xc8\x96\x87\ \x7d\xf0\x0b\x97\x52\x68\x8b\x30\xe5\x76\xd2\x0c\x65\x43\x98\x5a\ \x50\x0c\x16\x8c\x39\xa0\x32\xc4\x21\x99\xcc\x84\xc1\x13\x0a\x54\ \x9a\xd0\xf0\x94\x44\x9d\xf9\x0c\x34\xb1\x00\x2a\x06\x61\x53\xfe\ \x32\xc8\x70\x01\x08\x2a\x63\x0d\x6b\x20\x03\x8e\xde\x04\x01\x07\ \xa8\xa0\x05\x18\xc0\x11\x00\x8e\xe0\xc0\x19\x28\xe4\xc7\x23\xb5\ \x8c\x66\x0d\x38\x43\xb1\x88\x44\xba\x20\xdc\x61\x9e\xc4\xf1\xc8\ \x12\xc0\x80\xc8\x7c\xee\xb3\x75\x47\x9b\xce\x1d\x62\x67\x87\x13\ \xca\x2e\x76\xb0\xd3\xc9\xb7\x70\xc7\xc2\x3e\x84\x43\x04\x7d\xed\ \x2b\x05\x6a\x98\x4a\x55\xea\xb0\x13\xa8\xcc\x93\x2a\xe5\x15\x36\ \xae\x38\x85\x5e\x99\xa0\x65\xf5\x10\x84\x17\xc2\x1c\xa1\x34\x71\ \xf8\x41\x1c\xf4\x31\x4c\xc8\xc0\x80\x30\x5a\xd8\x22\x0c\x98\xd1\ \xa0\x31\xd0\xc0\x1a\xfa\xd0\x02\x2e\xb6\xf8\x4b\xfe\x3d\x2a\x41\ \xfc\x1a\x63\x5e\x78\xfa\xd3\xc6\x31\x8e\x7f\x93\x01\x01\x52\xb1\ \x09\x82\x36\x24\x15\x33\x2e\x70\x2a\x6a\xc8\x80\x0c\x94\xc9\x20\ \x1b\x55\x05\x80\xc9\x16\xf8\xc0\x33\xc4\x23\x1e\x40\x02\xeb\x91\ \x26\x38\xa4\x62\x35\x40\x9e\x66\xd5\x08\x5a\xb9\xf4\x91\x8f\x24\ \x27\x3a\xcf\x91\xce\x3f\x25\xe9\x8b\xb9\xfa\xa2\xae\xb2\x3b\x6f\ \x77\xc8\xe4\x13\x03\xc0\xd0\x00\x7f\x6d\x49\x38\x0c\xc0\x02\x55\ \x5e\xf4\xb0\x79\xa2\x40\xd8\xa8\xe2\xc3\x33\x34\xb6\x4f\xfe\xd4\ \xab\x1e\xa4\x4e\x8b\x0b\xbb\x1c\x41\x0b\xc3\x54\x6d\x67\x51\x4b\ \x85\x23\x64\x83\x06\x7e\xb9\x4c\x81\x2e\x8b\xd9\x5f\x8e\xe1\x09\ \xdc\x3b\x10\xc1\xf2\x50\x3f\xd8\xb6\x65\x34\x1c\x5b\x1c\xff\x02\ \x87\x4d\x64\x80\x60\xb7\x25\x46\x06\xff\x9a\xfa\x22\x18\x39\x22\ \x1b\x0e\x29\xee\x71\x4b\x76\x32\xcf\x69\x41\x05\xdf\xe0\xd5\x3a\ \xa3\xfb\xc0\x5c\xf9\xd1\xba\xd7\xc5\x08\x07\xbd\xd1\xb3\x91\x8c\ \x44\x04\x5e\x50\x8e\x23\x45\x70\x2d\x48\xce\x75\xae\x02\x3d\x61\ \x93\xd1\x7b\x5e\x9c\xac\x77\x77\x7c\xfd\x6b\x1f\xae\x90\x51\x1d\ \xb6\xc0\xbe\x1a\xdd\x93\xd6\xc0\x02\x95\x33\x30\xa5\x03\xf9\xb9\ \xe5\x2d\x0f\x74\xa0\x38\xe0\x42\x8b\x6c\xd6\x22\x2e\xd8\x97\x8d\ \xd3\xca\xe0\x19\x5b\xb4\x66\xa2\x4e\xa4\xd9\xcc\x3a\xe3\x09\x19\ \x3a\x51\x2f\xf5\x91\xd2\xbc\xa4\x2a\x34\x1c\xa3\x98\x50\x3f\xc5\ \x21\xdc\x9a\xd8\xc4\x0f\xf2\xc3\x6f\xeb\x48\x86\x36\xf8\x21\x0e\ \x75\xee\x40\x36\x54\xfc\xcd\x6f\xa4\x20\x65\xa1\x00\xc2\xcc\x72\ \xd5\x55\x5d\xfd\xc1\x00\x3f\xee\x88\x22\x3a\x58\xe4\x22\x1f\xd9\ \xbb\x8e\xa4\xce\x22\x24\xd9\xe4\x13\x8e\xd7\xae\x4e\xfe\x96\x72\ \x77\x16\x8a\x49\xf7\xf6\x55\xcb\x57\x20\x41\x97\x75\x88\xbc\xe4\ \x51\xe0\x79\xbf\x06\xdb\x98\x7d\x30\xa4\x0e\x08\x6a\x97\x76\x19\ \xa6\xde\xb4\x68\x98\x3a\x57\x88\x30\xd3\x8e\x43\x80\xc0\xc7\xaf\ \x39\xa7\x54\x2f\x16\x36\x10\x82\xc4\x27\xc5\x31\xd6\xaf\xc3\xa6\ \x62\xcc\xa7\xf8\x97\x6e\x11\x3b\x1a\x04\xc8\x60\x06\x32\x48\xdc\ \x06\xe0\x82\x20\x0f\x85\xe9\xc0\x65\xe3\x90\x09\x3f\x84\x0c\x07\ \x52\x08\x42\xae\xbe\xc1\x82\x1c\x87\x42\x0e\x72\x60\x41\x0b\x7e\ \xd4\x00\xb2\x9e\x1a\xbb\x54\x12\x81\x48\x52\xed\x2c\x03\x18\xd9\ \x4a\xfb\x84\xf5\xac\xed\xf0\x87\x5b\x97\x17\x05\x50\xc6\xf5\x77\ \x2e\xd9\x09\xf7\xfa\x04\x2a\x06\x88\xd3\x3e\x84\xcd\x51\x54\x56\ \x25\xcc\xfa\x0d\xcb\x19\x16\x48\xa4\x1f\x84\xdb\xa5\x85\x39\x88\ \x61\xf6\x16\x84\x02\x3f\xe3\x20\x5a\xa0\x1b\x16\x0c\x64\xa2\x5e\ \x46\xd1\x60\xff\x39\x90\xf8\xe4\xe6\xcb\x9e\x4e\x0c\xd1\xfc\x0b\ \xb1\x50\x41\x15\xb8\x12\x53\x1d\xa9\x49\xdd\x6d\x8c\xc7\x20\x85\ \x06\xa6\x56\x6f\x54\xf8\x46\x8c\xd9\x10\x0f\x41\xb1\x8c\x57\x2d\ \x90\x03\x0e\xa6\xc0\x06\x7f\xc8\x21\x14\x54\x68\xfe\x52\xc3\x33\ \xa2\x88\x1c\xe4\x40\x39\x3e\x4b\x4e\x1f\x8c\x5c\xf1\xa3\x91\x50\ \xae\xe3\xdd\xb8\x1d\x3a\xee\x71\x8f\x7f\xdc\x0e\x3e\x90\x5d\xb8\ \x12\xbf\x5e\x03\xfc\xda\xe4\xfb\xe8\xc4\xaf\xe3\xb4\x72\xc3\x76\ \x4d\xcc\x3e\x14\x54\xcc\x1b\x22\x03\x9a\x0b\xf3\x07\x75\x26\x24\ \x21\x9f\xd1\xc0\xbd\xe5\x01\x6e\x9a\x5d\xcc\xa3\x34\x5b\x30\x67\ \x22\x3d\xc0\x3b\x1d\xcd\xb9\x29\xc6\x18\xa9\xaf\x51\xea\x46\xcd\ \x6d\x89\xe7\x8d\x75\xa7\x8a\x0c\x04\x71\xf8\x4d\xce\xb3\x10\x8f\ \xe3\x96\x93\x05\xcd\x75\x6e\x0b\xbe\x21\x87\xf0\x00\x60\x0a\x38\ \x68\x41\x10\xec\x10\x77\x20\x2b\xe2\x0e\x75\x8f\xb8\x90\x8b\xbc\ \xbb\xbd\x83\x17\x92\xe3\x6d\x72\x0a\x9a\x3c\xde\xc1\xcf\xd5\x07\ \x50\x3e\x3c\x77\xd0\xff\x6b\xf4\xec\xe2\x0a\x66\x68\x0f\x55\x90\ \x27\x7f\x78\x4d\x05\x3d\xeb\x9a\xd7\x7d\xee\xd3\x81\x06\xca\xa0\ \x03\x05\xc6\x45\xcf\x81\x9e\x00\x1e\x06\x83\x9d\x56\x2e\xb1\x91\ \x30\x8d\x1b\xa4\xb8\xd6\x6b\x99\x08\xc7\x88\x86\xa7\x44\x9d\x87\ \xa8\x11\x87\xdc\x1e\xd5\xcd\xdb\xbc\x79\x93\x8b\x90\x01\x1f\x78\ \x5e\x16\x3c\x43\xe6\xf0\x0d\x0b\x48\x5a\x1d\xfe\xf9\x41\xd9\xa8\ \x4c\x73\xb1\xc0\x40\x34\x5f\x28\x18\x84\xf4\x4d\xdf\x3f\xf0\x8c\ \xf5\x91\x04\x77\x81\x44\x91\x71\xdf\xab\x41\x12\xe1\x69\x5c\x0a\ \x6c\x1c\xe0\x45\x59\xf9\xd9\x41\xf8\xe1\x1a\x0a\xf8\x40\xb8\xf8\ \xda\xfb\xad\x97\x29\x55\xde\xb1\xf1\xc9\x98\xe1\xc7\x0f\x44\xe1\ \x0f\x68\x41\x08\xd6\xd9\x05\x0d\x20\x21\x6d\x1e\x6a\x69\x81\x3e\ \x30\x06\x0c\xe8\xc3\x14\x66\x96\x81\xc4\xd6\x89\x38\x13\x50\xfd\ \xd4\xfd\xa0\x5b\xa2\x4d\xe0\x18\x48\x86\x1b\xbe\x1b\xbc\x59\x5d\ \xd5\xcd\xdb\x37\x39\x02\x0c\x14\x46\xff\xfd\x40\x32\xfd\x80\xab\ \x8c\x0c\x1c\xe1\x80\x02\xfd\x80\x73\x39\x17\xda\xe1\x80\x1c\xa8\ \x80\x43\xbc\xe0\xf4\xf1\x0c\xdd\x29\xc7\x76\x71\x89\xb3\xec\x93\ \x23\x8d\x50\xec\x7c\xdf\xc6\x85\x5f\xf8\x65\x9c\x10\x66\xa2\xf9\ \x1d\x1e\xfa\x51\x19\x0b\x35\x9e\xd7\x40\xc5\x9a\x94\xdc\xfa\xc9\ \x89\x2b\xe1\x07\x14\x0a\x0a\x66\xe1\x02\x16\xbe\x22\xdf\xd4\x19\ \x15\x4c\x91\x60\xc4\x01\x6a\xfd\xc0\xea\x51\xd3\x3a\x74\x06\x2f\ \x82\x86\x87\xc5\x0f\xe2\x54\x60\x36\xdd\xde\x51\xbd\x5b\x89\x55\ \x86\xa6\xbd\x0a\x08\xe8\x43\x07\xbc\x54\xfe\x66\x45\x51\x36\x44\ \xce\x8b\xb8\x88\x23\xe0\x92\xca\x80\x5a\x3c\x70\x80\xc1\x65\xd5\ \x41\x28\x62\xdc\x79\x04\xdd\xd1\xdd\x47\xa8\x95\xea\x74\xd7\xc5\ \x79\x01\x4c\xec\x42\x79\x35\x99\x0f\xce\x1a\xe1\x31\x05\x26\x62\ \x62\x27\x16\xe1\x4d\x34\x1e\x4f\x50\x99\x28\x3e\x85\x77\xc8\xc9\ \x47\xa9\x62\xa0\x48\xe1\x65\xdd\x1c\x2c\x62\x21\x15\x20\x08\xd1\ \xe1\x42\x62\x8c\xc2\x18\x01\x95\xbf\xbc\x0f\x2f\xaa\xca\xa8\xd0\ \x1e\x87\x14\x95\x64\x30\x9a\xbb\xbd\x5b\xbc\x31\x03\x39\xf0\x41\ \xe5\x84\x0c\x00\x54\x9a\x9b\xb9\x14\x2e\x92\x03\x0e\x78\xa4\xc8\ \xe0\x00\x0b\xa0\x81\x73\x29\x9f\x1f\xb0\x80\x6f\xec\x8d\x37\x36\ \x1c\x38\x86\x23\x48\xe0\x53\xf6\x8d\x84\x77\x49\xcb\x3f\xc9\x84\ \x26\x92\x97\xec\xcc\x5a\x3c\xc2\x63\x53\xcc\x63\x77\xcc\x89\x51\ \x1e\xa5\x51\xc2\xe3\x9c\xa8\xa2\xd9\x48\x21\x66\x51\x41\x00\x0e\ \x24\xe8\xd9\x59\x6a\x15\xd8\x67\xe1\xe2\x19\x76\x4a\xa2\x74\xca\ \x13\x6c\xe5\x6c\x61\x48\xa8\xe4\xcf\x35\x25\x15\x1c\x92\x58\x59\ \xd2\x40\xbc\xd1\x80\x1f\x24\xe3\x06\x92\xc3\x8e\xc0\x19\xff\x21\ \x46\x1e\x10\xdf\x50\x90\x01\x39\x34\xfe\xd7\x37\x70\x00\x07\xb8\ \x24\x21\x05\x81\xb2\x7c\x23\xcf\x88\xc0\x41\xe5\x40\x4d\x6e\x57\ \x3e\x11\x99\x24\x8e\x50\x98\xa8\xe3\x4f\x0a\x1e\xf9\x01\xa5\x50\ \x2a\x25\x52\x32\xc5\x52\x54\xe6\x52\xc0\xe3\x90\x64\xa6\x50\xfa\ \xc0\x72\x49\xa1\xb5\x45\xa5\x54\xf6\xa5\xfa\x18\xd8\x30\xd1\x62\ \x63\x44\xcc\x87\x3c\x1d\xff\x2c\x95\x56\x4a\xe4\xd3\x4d\xc6\x64\ \x1c\x15\xbc\x8d\x41\x31\xbe\x9b\x1f\x58\xc6\x6d\xb2\xe5\x06\x66\ \x43\xce\x8d\x1e\x21\x69\x41\x49\x9a\xa4\x1f\xdc\x18\x0b\x7c\x43\ \x0b\x84\xe0\xde\x38\x01\x0c\xc6\x60\x60\xe6\x80\xf5\xe5\x40\x3d\ \x89\x00\xd0\x1c\xa6\x96\x18\x99\x4b\x28\x66\x98\xa0\x10\x11\xca\ \x8e\xf9\x09\xa1\x77\x52\x66\xf8\xcd\x49\x53\x44\x66\x64\x0a\xd2\ \x6f\x0c\x92\x05\x29\x53\x33\x4e\x61\xf0\x85\x26\xe8\xad\x4f\xfb\ \xe4\xc5\x86\xa4\xa6\x64\xb4\x21\x5f\x08\x4e\x57\x66\x48\x58\x5e\ \x8c\x35\xbd\xa1\x1a\x61\x24\x33\xdc\xa6\x1f\xf0\x81\x1f\x90\x03\ \x33\xd0\xa5\xc8\x48\x01\x42\x80\x26\xc3\x30\x9f\x47\x5e\xd5\x8d\ \xfd\x80\x1e\x81\x9e\x72\xc2\x20\x07\xcd\x5d\x0e\x2c\x02\x61\xa6\ \x9a\x0d\x72\xe8\x0d\xb6\x9a\xb5\xfe\x2c\x19\x09\x95\x90\x76\xa4\ \xd0\x75\x14\xa1\xe1\x81\x67\x8a\x76\x22\x52\x56\xe6\x78\x32\x45\ \x66\x96\x0e\x16\x36\x04\x83\xba\xe7\xde\xd8\xd9\x14\x79\x8a\xfe\ \x68\x93\x36\x91\xd6\x18\x80\x4a\x60\x54\x0c\x30\xaa\xa1\xfe\x04\ \x4e\x31\x82\x4a\x6e\x06\x28\x0d\x90\x03\xe0\x84\x00\x82\xf2\xc1\ \x8e\x80\xa0\x40\xee\x8d\x16\x20\xe8\x50\x24\xd7\x15\x26\xe7\x72\ \x82\x63\xaa\x39\x67\x23\xd2\x60\xb4\xdc\x1d\x4e\x26\xe6\x97\x5c\ \xcb\x41\x95\xd0\x4c\xe0\x44\x75\x60\x0b\x77\x1a\x9e\xe1\x1d\x65\ \x11\xb6\x68\x8b\x92\x27\x8c\xca\x40\xe9\x2c\x93\x6f\xda\x68\x16\ \x1e\x81\x2f\xc1\x40\xa7\x84\xc8\x9f\x26\x5a\xa2\xf1\x41\x57\x36\ \x64\xd3\x31\x86\x1a\x3e\x1d\x87\x20\x8e\x1f\x04\x28\x81\x5a\x06\ \x39\x60\x81\x6e\xbe\xc8\x13\x68\x41\x16\x6c\x8a\xb5\x2d\x53\x3a\ \x65\x83\x49\xbe\xc8\x37\x64\xa9\x96\x5a\xe8\x12\x40\xe7\xdc\x0d\ \xa6\x08\xd0\x1d\x48\x70\x57\x72\xe0\x24\xf7\x85\x28\x5c\x1d\x54\ \x0a\xed\xc2\x74\x04\x4b\x0b\x2c\x4d\x11\xde\xea\xe1\x21\x1e\x28\ \xda\x5f\x9a\xb8\x5f\x8b\xf2\x97\x2a\x9e\x4d\x14\x46\xd1\x9b\xe9\ \x69\xe8\xc9\x00\xfb\xac\xde\xfe\x66\x3c\x13\x2f\x36\x64\x2f\x32\ \x5d\xe3\x3c\x4c\xd4\xa9\x26\x90\xf2\xcf\x46\xe6\x66\x47\x7a\x24\ \x19\xa0\xcf\xe6\xf5\x12\x15\xe2\x9b\x14\x1d\x50\xa7\x0e\xc5\x37\ \xe8\xcd\x00\x96\x95\x85\xce\x9d\x90\x9d\xea\x73\x9e\xaa\x22\x6c\ \x83\x5a\x39\x4b\x75\x6a\xc9\x3e\xb5\x40\x4b\xec\xce\x74\x6c\x4b\ \x4d\xf8\xd3\x3f\x8d\x09\x76\xfc\xab\xfb\xad\x5f\xc0\xda\xdf\x28\ \xba\x12\x9d\x8c\xd9\x15\x98\x0d\x1a\x70\x9e\xf8\xd4\x54\x8d\xba\ \x27\x7c\x66\x16\x2f\x31\x60\x5b\x6c\x5b\x17\x91\x48\x4f\x89\x46\ \xb3\xfe\xa9\x9f\xf1\xcf\x80\xfa\x81\x35\x3c\x41\x6e\x6a\xe0\x37\ \x55\x2a\x62\x70\x91\x14\x44\x9b\x54\x6d\x11\x07\x58\xe9\x47\xc6\ \x03\xa8\x66\xc1\x72\xc6\xe0\xa9\xe6\x00\x86\x0e\x66\xdd\x49\x67\ \x3d\xad\x9a\x48\x78\xd0\x24\xf2\x6b\x42\xad\x90\x3f\xc5\xd7\x97\ \x5c\x41\xfb\xbd\x1f\xd2\x22\xad\xc0\x12\xac\xfd\x39\x85\x19\xfc\ \x2a\xb0\xe2\xc7\x7a\xfe\x00\x00\x1a\x6b\xe8\xb1\xcf\x49\x71\x86\ \xaa\xf4\xe2\x7f\x30\x2b\x4f\x95\x9b\xc6\x9e\x21\xba\x61\x08\xa1\ \xfa\x41\x4e\xc1\xc0\x5a\x3a\x82\x95\x92\xc1\xbf\xf1\x0d\xb4\xbd\ \x67\x16\x68\x01\x39\x8c\xfe\x2b\x19\xf8\x81\x6d\x80\xde\xcc\x32\ \x62\x38\xd2\xdd\x22\x58\x9f\x22\x70\x68\x5a\x49\x89\x23\xae\x0e\ \x88\xfa\xd3\x25\x01\x2d\xe2\xea\x6b\x3d\x62\x87\xfb\xdd\xa3\x3d\ \xfe\xda\x9c\x0a\xe5\x90\xd8\x69\x7a\xc6\xac\xb1\x56\xc8\xd2\xad\ \x0a\xe3\xb0\xa6\x56\xb2\xe6\x4f\xa1\xa1\xb9\x9d\x4a\xe1\x60\x41\ \x7e\xde\x26\xa1\x3e\x01\xea\xfa\x81\xda\x4a\x4e\x6a\x80\x80\x14\ \xf4\xdc\xe6\xe9\x21\x16\x02\xc1\xb8\x22\x97\x0a\x0c\x60\xde\xd6\ \xec\xde\xf6\x6d\xdd\x65\x5f\xe0\x52\x89\x96\x20\x92\x5f\x29\xd9\ \xee\xb0\xd0\x1d\x18\xee\xae\x01\xdb\x74\xb8\x9f\x19\x9c\xc1\x4d\ \x38\x2f\x0a\x5c\x41\x51\x72\xc5\xd3\x92\xc0\x64\xa6\xc0\xe8\x94\ \xce\x6f\x58\x6d\x68\x6a\x51\x2e\xbe\x4f\xd4\x4d\x2b\xa1\x26\xca\ \xfb\x3c\xe0\x2f\x96\xca\x67\x48\x4a\x88\x10\x28\x1f\x20\x83\x1f\ \x98\xed\x1b\x49\x4e\x1d\x71\x00\xae\x80\xab\x1e\x82\xaa\x14\xd4\ \x2e\x19\x00\x01\xee\x6e\xa9\x94\xec\x6d\x86\x7a\x69\xc4\x09\x6f\ \x23\x12\x59\x72\x4c\x89\x3f\x95\x90\xd0\x62\x92\x4d\x64\x47\x03\ \xff\xeb\x75\x9c\x01\x3d\x7a\x62\xe4\x9a\xa7\x54\x6a\x1e\xb2\x9a\ \xab\xd5\xba\x59\xc1\xfe\xc4\x16\xc4\x7c\x8a\xa7\x74\x6c\x4e\x69\ \xe5\xa1\xaa\x61\xb3\x46\x5d\x19\x74\xa5\xc8\xf2\x01\x23\x90\x18\ \xc9\x4e\xe3\x8b\x38\x82\xc8\xe2\x40\x89\x71\x40\x1e\xc4\x43\x61\ \xa0\x13\x07\xe8\x2f\x39\xdc\xed\x41\x54\x68\xba\xce\x1d\xef\xf2\ \xed\x73\x16\x59\x97\x7e\xa9\xc4\x45\xe2\xab\x1e\x2e\x09\x34\x30\ \x9b\x4a\xb0\xec\x40\xef\x27\x36\x6f\x9c\x8a\x27\x66\x6a\xef\x05\ \x03\x5c\x14\x81\x61\x7b\xda\x28\xb2\x0e\x93\x14\x29\xeb\x52\x25\ \x4a\x86\xfc\xe9\x6a\x92\xb0\x88\x08\xa9\xe3\xa0\x26\x88\x90\xae\ \xc8\x3a\x82\xda\x12\xdf\x0b\x6b\x6b\x08\xe0\x80\x1f\x70\x40\x5e\ \x06\xe7\xb8\x02\x22\xe8\xfd\xe5\x37\xea\x6e\x00\xd3\x5d\x5c\x69\ \xa8\xcd\x7e\x69\xcd\x9e\xaa\xb3\x4c\x09\xbe\xc2\x55\x42\x91\xe8\ \x89\xe6\x2a\xae\x51\x70\x15\xc3\xe8\x15\x0f\xd2\x40\xa2\xd3\x19\ \x70\xd1\x81\x54\x2d\x42\x48\xa5\xfa\xf0\xcd\x11\x64\x16\xc1\x48\ \x2c\x2f\x7e\xf0\x56\x26\x9a\x1a\x82\x51\xe3\x40\x8c\x9f\x4a\x0a\ \x32\xa8\x25\xbc\x81\xec\x13\xc4\xb1\xb6\xba\xac\x49\xda\xf2\x8b\ \x00\xc1\x15\xfa\xb1\x4c\xc6\x9a\x20\xf3\x6e\xdf\xc6\x1a\x21\x87\ \xa3\xc4\xe5\x6c\xfe\xde\x29\xf2\xbd\x32\x32\x4e\xa0\x57\xc6\xe1\ \x6a\x15\xe3\xea\x15\x5b\xf0\x25\x93\x0e\x7e\xf0\x87\x14\x1c\x41\ \x6f\x26\xd3\x25\xc7\x59\x9c\x6d\x51\x07\x13\x4c\x8a\x6c\x86\xa4\ \x2c\x95\x1a\x7a\x4a\xd3\x79\xca\xfb\x74\xca\x9f\x36\x6a\xbc\x59\ \x1d\x1c\xcb\xf1\xc8\xd4\xae\x3c\xd7\x6e\x54\x11\x12\x2f\x9f\xda\ \x12\xfc\x81\x2f\xf8\x72\x86\x06\xf3\x22\xf8\xc2\x3e\x03\xf0\xdf\ \x9e\xaa\xd4\xb0\x17\xc5\xe9\x5d\x02\x9b\x81\x5d\xed\x60\x93\x75\ \xa7\x9b\x86\x67\x52\x62\x6f\x66\xea\xc6\x05\x3b\x41\x1f\x9d\x4d\ \x9a\xd5\x94\x43\x24\xc6\xc2\xc0\xa2\x9d\x11\x6b\x69\x2e\x60\x4f\ \xa9\x33\xf8\x76\xca\xc5\x98\x8a\xfc\x40\x0c\xe7\xfa\x59\x80\xd2\ \x26\x89\xd1\xb2\xfc\xe2\xf2\x3c\x8f\x2b\x1b\x68\x70\x16\xdc\xf3\ \x8f\xe5\x73\x24\x04\xb4\x73\xfe\xf3\x3f\xff\x81\x3e\x13\xf2\x73\ \xfe\x6f\x1f\xf4\xed\x0c\x4e\x5c\x1f\x9c\xc9\x4f\x7a\x5c\x77\x92\ \xa7\x10\x5e\xe6\x65\x4a\xf4\x44\x5b\x2e\x85\x3a\x81\x7c\x30\x25\ \x1a\xa0\x81\x16\x3c\x83\x9d\x95\x86\x2b\xe2\x1c\x27\xf7\x25\x17\ \x92\x86\xea\xf5\xd2\x42\xa2\x61\x2b\xa7\xb3\x56\x8a\xc8\xfd\x60\ \x81\xfc\x34\xfe\xe4\x52\x6d\x64\x80\xc2\x5b\xfc\xd6\xb2\x4c\xcf\ \xb4\x49\x86\x00\xcc\xee\x0d\x4e\x5f\x97\x4e\xff\x01\x21\xff\x33\ \x40\xfb\xc2\x1f\x44\x02\x60\xf7\xb4\xdf\x12\x74\xac\x1d\x75\x43\ \x09\xe6\x41\x31\xf4\x5c\x65\x62\x50\xd2\x29\x8c\x62\xf1\x8c\x1e\ \xc6\x61\x58\x74\x53\x74\xc0\x52\x98\xd9\x19\x50\x61\xc3\x5c\x4a\ \xce\xb1\x0f\x6a\x5d\x50\xcf\x75\x75\xc5\x06\x1a\xc1\x6c\xad\x43\ \xb6\xf2\xe6\x66\x06\x4a\x2b\xce\x66\xf8\xe9\x13\x40\xc8\xc7\x8e\ \xc1\xea\xda\xf5\x5d\xe3\xb5\x47\x72\x80\xa5\x1e\x44\x5f\x9b\x95\ \x08\x44\x42\x16\x18\xb6\x2f\x1c\x94\x60\x13\x76\x50\xfb\xf3\x30\ \x67\xa8\xa9\x8a\x40\xde\x1d\xef\x63\x13\xde\x52\x6c\x22\x9d\xc6\ \x68\x65\x5b\xd0\xf6\x62\xf6\x1e\x01\x07\x76\x4b\xee\xb2\x31\x5b\ \x1e\xf8\xd9\x1d\x2a\x13\xfb\x1c\xe4\x41\x20\x64\x9b\x8d\x75\xe1\ \x04\xda\x18\xa9\xb4\x9f\x6e\xac\x60\x44\xd3\x39\x53\x4c\xd7\xfa\ \xa9\xfb\x9e\x6e\x53\xc5\xb3\x5d\xf3\xb6\x7f\x7b\xaa\xde\x04\xf7\ \x3c\xe9\x74\x24\x18\xf7\x3e\x27\xb7\x72\x03\xb4\xf5\x01\xb4\x86\ \xde\xec\x1d\x48\x0d\x84\x37\xf2\x1d\x3c\x26\x66\x0a\x49\x8c\x66\ \xef\xcd\xfe\x58\xb0\x76\x6f\xaf\x05\x0d\x49\x65\x6b\xb6\x20\x59\ \x34\x1a\xd0\xcd\x8f\x0a\x98\x81\xa1\x88\x66\x19\x06\xfb\xd8\xa2\ \x81\x2d\xd1\xaa\xa4\xde\x18\xf9\xa9\x50\xf9\x8b\xe7\xb6\x05\x39\ \x37\x1d\x34\x01\x48\x6d\xdb\x26\x0d\xd0\x32\x70\xcd\xf1\x7f\xfb\ \x37\x1b\x58\xaa\x80\x1b\x52\x3e\x1f\x44\x81\xef\x74\x40\x13\xb6\ \x72\x03\xb5\x30\x2b\x78\x38\x16\xf5\x41\x25\xf5\x99\xc6\xd5\x4f\ \x7e\xa7\x54\xc7\xe8\x86\x9b\xe7\x86\x6f\xf9\x85\x5f\x38\xe9\x4c\ \xa8\x13\xa0\x0d\x23\xfc\x45\x67\x5d\xd6\x49\x39\x4e\x4b\xb5\x19\ \xcd\x69\x56\x18\x3e\x06\xba\x71\xcf\x63\xc8\x78\x63\xf8\x47\x57\ \x76\x86\x5e\x90\x33\x5a\xe3\xb9\x33\x58\x43\x00\x51\xdd\x1c\xf3\ \x77\x90\x0f\x3a\x00\x84\x80\x2e\x17\xb9\x06\x2d\x41\x0a\x10\x37\ \xa3\x1b\x77\xac\x35\xb9\xa3\x3f\xf9\x73\x26\xf5\x62\x33\xb7\xad\ \x45\xb6\x44\x8f\xd5\x86\x77\xb7\xa6\x7b\xf7\x44\x67\x78\x98\x4f\ \x35\x7a\x1e\x46\x0a\xec\xc3\x13\x8c\x41\x1b\xcc\x85\xa0\x2d\x51\ \xa2\xfd\xc7\x69\x6d\x4a\x07\xd7\x14\x2e\x42\x06\x6c\x53\x13\x49\ \xb3\xa6\x7f\xb0\xe6\x03\x9e\xe1\x6c\x87\xd6\xee\xc1\x33\x90\x13\ \x3a\xfe\x5e\x73\x80\x0c\x20\xfa\xe9\x2c\xc1\x84\x16\x77\x92\x1f\ \xf6\x4f\x27\xf9\x4e\x6b\xe8\x22\x04\xb5\xf5\x59\x7a\xac\x29\x34\ \xec\x60\xfa\x90\x28\x84\x76\xeb\xdc\x1e\x7d\xb9\x87\x7b\x3b\xa8\ \x5b\x32\x21\x8d\xf9\x3a\x30\x02\x23\x8c\x81\x4e\xe5\x05\xe0\x08\ \x0e\xdc\xd8\xe2\x12\x9d\x08\x9b\xa9\xd6\x5a\x23\xea\x6c\xa3\x5b\ \xc8\xde\x3b\xe7\x3a\x4e\x6b\x7f\x06\xea\x42\x8e\x1f\xb2\xee\x8f\ \x0b\x3b\x6f\x77\x41\x1c\x18\xfb\xce\x24\x7b\x71\x2b\x3b\x60\x47\ \xbb\xb3\x1b\xb6\x30\x17\xb6\x3e\x5b\x5f\x51\x0b\x33\xec\xc8\xce\ \x3a\x6e\x22\x97\x77\xf2\x79\x82\x3b\x78\x6b\xaf\xb8\x53\xe8\x19\ \x98\xba\xb9\x33\x82\x67\xf4\x39\x33\xf4\x85\xe0\x9c\xf9\x14\x6d\ \x46\x1c\x74\x00\xfb\x40\x60\x04\xfe\x47\x9f\x0b\x55\x4e\x8d\x70\ \xae\x7b\x6e\x2f\x9a\x88\x9f\xc9\x5b\xb0\x93\x6c\x1d\x09\x3c\x5e\ \xdb\x93\x85\xde\x81\x00\x12\x77\x71\xeb\x33\x61\x17\x78\x61\x1b\ \xb8\x2f\x28\x3d\x30\xff\xb3\xc7\x7d\x1f\x94\x09\xa1\x85\x6f\x3b\ \x87\x87\xfa\x77\x47\xf3\xa6\x83\x2a\xe9\xf8\xc0\x58\x98\xfb\x5a\ \xb4\xb2\x83\x39\x88\x0b\x90\x96\xf6\x20\x08\x67\x79\x16\x82\xb4\ \xfe\x11\xb5\x6a\x86\xfa\xe6\x94\x9d\x8f\x31\xe9\x92\x2f\xf7\xf4\ \xb9\x9f\xd3\xc0\x1b\xd1\x65\x70\x7d\x13\xd0\xe3\x35\x19\x9c\xc2\ \x96\xa2\x00\x2c\x1a\x36\x50\x43\xbc\xb3\x03\xf4\x44\x38\xfc\x20\ \x07\x1e\x79\x69\xdc\x5c\x09\x09\xf6\x76\xb9\x97\x63\x26\xf6\x76\ \xbc\x6e\x50\x75\xd7\x87\xfc\x7b\x98\x45\x36\xf8\x59\x15\x59\xd1\ \x8f\x96\x88\xa4\x24\x58\x48\x9b\x8a\x19\xa5\x66\xa2\x8d\x30\x4e\ \xf9\x59\xcd\x83\x88\x85\x79\x11\xea\x62\xc6\x7e\x07\x7a\xb0\xf7\ \xfd\x3c\x03\xbe\x85\x0a\xfe\xe0\x17\x3e\x50\x33\x84\xb2\x6b\x1c\ \xa3\x47\xfc\x3f\x3b\xfe\xe3\x7b\xf8\x1f\x60\xaf\xb6\x4b\x3e\xe9\ \x94\x27\xe5\x67\x2f\x55\xff\x70\x0a\xf4\xc9\xd8\xd8\xc7\x3a\x9c\ \x3a\xaa\x97\x8f\xa5\x18\x0c\xa8\x7c\xe1\x30\x89\x72\x5b\x57\x60\ \xa8\x24\xca\x2e\xbe\x3d\x88\xa8\xdb\x69\x02\xd0\x92\xba\x51\x70\ \xc5\x18\x39\xd9\x7e\x90\xff\xfd\x96\xda\x01\x16\x1a\xfd\xb2\x17\ \x7e\x81\x2b\xfc\x44\x1c\xfd\x93\xfb\x60\x0f\x92\xce\xf1\x57\x3d\ \x40\x38\x71\x12\x44\xe0\xc0\x82\x29\x10\x26\x44\x58\x90\x60\x90\ \x20\x59\x20\x46\x94\x98\x25\x48\x0a\x1f\x57\xf6\x65\xcc\x88\xfe\ \x06\xcd\x3a\x3e\x2e\xda\x84\x14\x19\x92\x19\x16\x67\xd6\xf8\xd0\ \x80\xa1\x2f\x8e\x3e\x29\xa3\xf4\x39\x83\x81\x85\x0f\x33\x66\x34\ \x70\xe2\xe4\x63\x0d\x86\xb5\x27\x7c\xc6\xf0\x79\xf2\x73\xe8\x13\ \x64\x34\xfc\xd0\x40\x06\x82\x19\x32\x32\x64\x00\x44\x95\x0a\xf5\ \xe9\x53\xa9\x57\xb1\x66\xd5\xba\x95\xeb\xd4\x53\xff\xc0\x86\x15\ \x3b\x96\x2c\xd9\x25\x76\x26\xa6\x85\x18\x29\xd2\x1f\xb7\x7f\x22\ \x06\x69\xfb\x27\x52\x96\xb6\x76\x7c\xfd\x49\xe1\x36\x85\x93\x48\ \x4e\xf4\xf6\x2d\x38\x78\x30\x42\x3b\x09\x05\x0a\x1e\xe8\x50\xad\ \x44\x82\x3e\xce\x5c\x41\x23\x59\x72\xa6\x8e\x8c\xda\x54\xcd\x2c\ \xd2\x05\x9f\x9e\x63\xc6\x60\xc9\x93\x47\x9f\x4b\x7d\xd9\x9c\x95\ \xc1\x82\xf3\xe6\x4d\x9c\x4f\xac\xf9\xe4\x33\x5b\xa8\x50\x9a\x20\ \x70\x23\x1b\x53\x15\x6a\x56\xde\x56\xbb\x06\x17\x1e\x7c\xca\x92\ \xb2\xc7\x91\x87\x5d\x92\xa2\xf1\x44\xb6\x6f\xe9\x46\x9c\x1b\xe9\ \x21\xf5\xb7\x7b\xf5\x06\xce\x0e\x98\xfb\x1f\x27\x82\x0d\x23\xfe\ \x3e\xde\xe1\xc3\x87\x8d\x1d\x5a\xbc\x78\x05\xb2\xe4\x8c\x99\x9e\ \x38\xda\x4c\x66\x73\x48\xa1\x4f\x98\xb9\x50\x39\x5a\x1f\xfe\xcc\ \x3c\x32\xcb\xc8\x89\x06\x9b\x6e\x9a\x8d\xa8\xda\x0e\xe4\x03\x04\ \x47\x70\x03\x01\xb8\xad\x78\x03\xa0\xb7\xe1\x28\xac\xf0\xab\xe4\ \x30\x1c\x6b\x89\x3e\xce\x6b\x4e\xba\xe7\xd8\x62\xcb\x2e\x10\xa5\ \xc3\x0e\x30\x3b\x50\xd4\x0e\xa1\xc0\x52\x38\x4c\x21\x3b\x7c\x58\ \x28\xb1\xc5\x18\xf3\xb0\x22\xf5\x7c\x80\xac\x3d\xcb\xa4\x58\x87\ \x11\xcd\xe8\x0b\xb2\x33\xa0\xda\x70\xc1\xa4\xd1\x48\x73\x46\xc9\ \x00\x07\x24\x90\x19\xd0\x82\x3a\xf0\x40\x46\x74\x73\x50\xbe\x07\ \x7d\x93\x50\xc2\x09\x2b\xec\x32\xb8\x0b\x33\x0c\x73\x89\x3b\x3c\ \x6c\xec\x39\xba\xea\x0a\xb1\xae\xb5\x00\xdb\x0b\x45\x3b\xb2\x6b\ \xf1\x8f\xc3\xde\x94\xd3\x30\x17\xfb\x52\x8c\x46\x1b\xbf\xcb\xd1\ \xcf\x1c\x23\x43\x23\x93\x4c\xd6\x89\x2f\x33\x20\xed\x6b\xaa\x0d\ \xa6\x9c\xc9\x03\x14\x47\x47\x93\x09\x0b\x9b\x9a\xc4\x69\x0c\xdd\ \x6c\xfb\x69\xb6\x4b\x9b\x02\xe1\x50\x2c\xaf\xa2\x0a\x54\x2f\x49\ \xc5\xea\x29\x30\xc3\xc4\x70\xcc\x32\xcd\x9c\x4e\x22\x11\xd7\x9a\ \xd3\x97\x14\x5b\x7c\xd3\x0e\x14\x6c\x75\x91\x4e\x17\x0f\xea\xab\ \x3c\x3e\x71\x4c\xc8\xcf\xc8\x08\x7d\xa2\x50\x47\x7e\xfe\xdb\xac\ \x4a\xfa\x5c\x28\x83\xb4\xd2\xfe\x4b\x2d\x25\x02\x8f\x62\x06\x04\ \x17\x98\x19\x8a\xa6\x31\x8c\xc2\xcd\x91\x31\x42\xa8\x8a\x2b\x71\ \x4b\x2d\x37\x2a\x2e\xa9\x42\x35\x55\xe4\x56\x65\x55\xad\xb6\xe0\ \x7d\x55\x44\xb9\x00\x9b\x35\x3b\x14\x5b\xac\x95\xce\x15\xc3\x23\ \xcc\xa0\x1a\xd3\x2a\x0f\xa1\x18\x11\x13\x16\x0d\x4c\x3e\x71\x84\ \x91\xf8\x7e\x7b\x6a\x51\xdc\x42\xda\x8f\x34\x48\x95\x5c\x6d\xc0\ \x9c\x14\x04\x21\x28\xa1\x9a\x02\xca\x53\xdc\x46\x0d\x55\x54\x73\ \x4b\xc5\xd2\x2a\x75\xd7\x2d\x6b\x09\x33\xdc\x6d\x35\xba\x57\xdd\ \x8a\xe8\x44\x7c\x03\xc3\x97\xe6\xf1\x0e\xa2\xd1\xa1\x81\xd0\x2b\ \xef\x3b\xf1\x0c\x1a\x78\x9f\x27\x70\x60\xa4\x68\x64\x1b\x6e\x83\ \x41\xdc\xf8\x28\x23\x9b\xff\x40\x51\xd2\x51\x67\xb0\xb0\x58\xa9\ \xd9\x34\x06\x61\x53\xdd\x96\x5a\x9a\x5c\x08\xb9\x24\x99\xd4\x09\ \x45\x45\x39\x65\xb1\x96\x50\xc4\x89\x96\x9d\x5b\x8b\xc4\x34\xbd\ \x3b\x8f\x20\x3b\x16\x59\xc4\x8e\x9d\xf5\x3a\x4c\x2f\x7f\xf7\xfc\ \xb5\xc3\xb8\x7c\x4e\x4c\xb1\xf2\x08\x72\xe2\x8c\x3d\x30\x31\x82\ \x11\x3f\x90\x6e\x98\xbe\x27\x50\x83\xa1\xd1\xa8\xfe\x61\x90\xdc\ \x19\xd4\xca\x50\x0d\x27\x78\xb0\xf6\x16\x99\xa5\x2f\x1d\x03\x64\ \xe1\xa8\xd2\x52\xec\x0a\x4b\x9f\x0a\x00\xb3\xcf\x56\xae\x0f\xb6\ \xdb\x86\x1b\xcd\x34\x83\xa0\x8b\xb1\x48\x6e\x35\x03\x4e\x9f\xf3\ \x24\x8c\xf0\xbf\xff\x8e\x8b\xa2\xc2\x70\x36\x2f\xbd\x14\xae\x68\ \x81\x85\x75\x58\x60\xc4\x91\x2d\x93\x25\xe7\x07\x2d\xf4\xc9\xfc\ \x3f\x18\x32\x2f\x43\xea\xd4\xac\xf6\x83\x8f\xa5\xe7\x5b\x74\xa9\ \x05\xc3\x86\x50\xcb\xf2\x4f\x1f\xd7\x54\x32\x58\x6f\xfd\x9f\x0d\ \x61\x97\xce\x2e\xb7\xdf\x12\xd1\x3a\xef\xfe\x72\x02\x2f\x33\x74\ \xf7\x55\x20\xef\xb8\xa3\x33\x77\x05\xee\x67\x0c\x91\x5b\x9f\xae\ \x80\x11\x16\x70\x80\x71\xe7\xfa\xcd\x18\xe2\x20\x03\x19\x64\x03\ \x19\xcc\x80\x41\x36\x66\x82\x85\x32\x58\x2e\x35\x01\x82\x07\x33\ \xf8\x50\xa5\x4f\x3d\x45\x63\x48\x1b\xce\x6f\x4c\x97\x3e\xf5\x65\ \xa9\x7d\xad\x83\x5f\xfc\xe6\x97\xa6\x33\xb9\x85\x3a\x76\xb1\x13\ \x75\x82\x60\x87\x3b\xf4\xe1\x0e\x76\xf3\x8b\xef\x16\x03\xbb\x9d\ \x8d\x47\x30\x8c\x79\x48\x9f\x72\x24\x99\xe5\x19\x01\x07\x0f\x7a\ \x8a\x23\x60\xd0\x81\x2c\x68\x81\x03\x8b\x72\xfe\x16\xf7\x32\xa7\ \x24\xee\x21\x65\x7c\x57\xfa\x94\xd2\x9c\x82\x3e\xf3\x59\x45\x8c\ \x2a\x3c\xd7\xfa\x24\xd4\xc2\xb3\xbd\x90\x6d\x69\x8a\xe1\x0c\xb3\ \x43\x9d\xb9\x08\x04\x22\x39\xdc\x61\x1f\x16\x81\xab\xb8\x51\xc4\ \x6f\x3b\x03\x98\x63\x08\x58\x44\xc7\x64\x41\x20\xc3\xba\x02\x0b\ \x16\x48\x34\x13\x3e\x31\x1b\x32\xc8\x42\x07\xf8\x40\x06\x10\x3c\ \x2d\x83\x95\xd3\x22\xf6\x94\xb2\x94\xf9\xf0\x66\x3e\xa8\x3b\x5f\ \x0a\xcd\x28\x32\xd3\x35\x4c\x8d\x29\x5b\x59\x1b\x47\xa4\xa6\x11\ \xd1\xc5\x2d\x79\xc1\x9f\x43\xfe\x40\xb8\x48\xa4\x60\x11\x7d\xe0\ \xe1\x1d\xee\x06\x38\xb9\x15\xae\x43\xc6\x2b\x9c\x42\x04\x62\x1e\ \x5d\xfe\xac\x3d\x88\xcc\x04\x22\x19\x27\x2a\x32\xe4\xe1\x21\x32\ \x80\x81\x23\x9e\x50\x1a\x67\xd0\x40\x83\x1b\xbc\x1c\x0c\x9e\xa0\ \x14\x17\x38\x68\x93\x28\xf4\xa4\xea\xca\x28\xb6\x91\x9d\x4f\x5c\ \xee\x3b\x4e\xda\x60\x17\xa2\x37\xaa\xc9\x2f\x29\xf0\xc5\x3b\xf1\ \x47\x91\xb6\xf4\xe5\x2f\xbe\xb8\x43\x0e\x72\x80\xc7\x58\xf2\x11\ \x60\xbf\x1b\xa6\x42\x16\xf2\xc7\x3a\x26\x26\x47\x66\x90\x4c\x0b\ \x5a\xd0\x11\x1c\x38\x82\xa1\x4f\x94\xc2\xfe\x43\xa8\x90\x87\x27\ \xe4\x21\x0e\x71\xb0\x06\x32\xf8\x80\x05\x9e\xa0\x06\x25\xa2\x0b\ \x9f\xe3\xc2\x99\xa5\x50\x85\x32\x4b\x64\xac\x8a\x95\xcc\xa9\xb2\ \x4e\xb4\xcc\x8d\x6a\x72\x29\xbd\xdc\x52\xb7\xbc\x9c\xe7\x44\x71\ \x73\xc2\x22\xee\x69\x4b\x5c\x0e\xa6\x9f\xc0\x1b\xa2\xb0\x7c\x25\ \x50\x81\xa9\x27\x81\xc9\xdb\x07\x0b\xe4\x80\x03\x3f\x30\x90\xa1\ \x4f\x90\x02\x15\x82\xd0\x81\x3c\x70\x40\x0a\x3f\xc8\x43\x19\x8e\ \xf2\x13\x9e\x60\x33\x63\x20\x0d\x19\xe9\xc8\x49\x52\x53\x6d\x89\ \x9c\x20\x08\x01\x00\x1c\x91\x52\xb3\x28\x02\x95\x2e\x75\xab\x5c\ \xfe\xf0\xce\x45\xb8\x92\x2d\x04\x89\x9b\x1c\xe9\xd6\x07\x7c\xf2\ \x70\xae\x7b\x1c\x24\x3f\x0b\xf7\x33\x19\xfd\xd1\x78\x03\xf3\x01\ \x0a\x12\x88\xd0\xe6\x15\x0d\x08\x99\xe0\xc0\x13\xbe\xf1\x83\x0e\ \x68\xa1\x47\x17\x94\x42\x1e\x60\x90\x14\x1a\x08\xa5\x27\x19\xfb\ \xe2\x08\xc7\x06\xbd\x71\x8a\x55\x99\x0d\x43\xa9\x5a\xd1\xb6\x52\ \x77\xb5\xd4\xad\xb1\xa4\xce\x89\xde\x09\x27\x38\xbd\xd2\x2e\x72\ \x81\xe5\x0e\xf1\x99\xcf\x3b\xa0\x80\x67\x01\xdb\x59\x9e\x80\xe6\ \x37\x8a\xf0\x51\x70\x80\x4a\xa8\xf2\xfe\x98\xf8\x0d\x29\x48\x81\ \x03\x2c\x90\x42\x07\x3a\x20\x05\xc7\xae\x83\x03\xa3\x59\x87\x4f\ \xbc\x07\x9b\x27\x78\x2b\x48\x9a\x01\x65\x97\x1c\x47\xda\x4f\x9a\ \x34\x42\x69\x45\xad\x72\x72\xc0\x52\xfb\x81\x48\x95\x7f\x71\x0b\ \xdd\x50\x34\xab\xd9\x9e\xa7\x86\x14\xb1\x67\x1f\x14\xa1\x08\x11\ \xe0\x71\x6d\x13\x31\x8f\xe0\x80\x19\x4c\xb5\xfc\x8e\xa0\x17\x39\ \x43\x0b\xf6\x20\x07\x3f\x38\x97\x81\xeb\xf8\x01\x15\x3a\x80\x86\ \x6c\x70\x80\x79\xd9\xb8\x6c\x36\x0a\x75\x9f\xf8\x78\x2a\x48\x9b\ \x34\x57\xc3\xa0\xf7\xdd\xd0\x96\xae\xb4\x0d\x33\xce\x79\xc1\xc2\ \xc6\x32\xb1\xd6\xa5\x71\x01\xcc\x5b\xf0\xb2\x0b\x03\x78\x61\x17\ \x34\x5c\x4b\x75\xf4\x87\x53\xbd\xf6\x01\x05\xc1\x23\xae\xe0\xf0\ \x15\x50\x1f\xfb\xb7\xc0\x91\x49\x1e\x0b\x9e\x40\xe1\x26\xfa\xe1\ \x0c\x51\x95\x02\x0b\x1c\x6b\x2c\x34\xf4\xa8\x28\x43\x19\x5f\x83\ \x1a\xf7\x55\xb0\x8a\xab\x37\xa3\x25\xa3\x88\x47\x4a\xe2\x51\x7a\ \xd5\xbc\x28\x4e\xdb\x90\xcd\xb4\x4e\xfb\x8d\xa8\x76\x7b\xa9\x9d\ \x19\xbc\xb0\x0d\x39\x18\xa0\xc6\x74\xf1\xcb\x01\xe7\x84\x02\x33\ \xf4\x78\xc0\x81\xfd\x0e\x8a\x7c\xfe\xc0\xab\xde\x0e\x92\x70\xea\ \x39\xc3\xa1\x8f\xfc\x04\x39\x3c\x0f\x00\x7e\x50\x81\xe1\xd0\x10\ \x0f\x34\xb0\x60\xc1\x53\x7e\x02\xe3\x8a\xc2\x08\x07\x91\x90\x9b\ \x5a\x0e\xce\xc8\x9c\xe8\x4d\xd5\x7d\x3a\x85\x62\x2e\x31\x19\x38\ \x80\xe2\x14\xb3\xb5\xad\xa9\x54\xe7\x9a\x28\x32\x27\x3b\xec\x22\ \x14\x07\x90\xb3\x01\x54\xe0\x0b\x15\xd8\xcd\xaf\xc3\x13\x70\x9f\ \x7f\x99\xaf\x3a\x09\x52\x98\xbe\xfc\x8e\x91\x21\xd3\x82\x63\xfa\ \x01\x07\x38\x88\x0a\x0e\xf6\xf1\x83\x33\x70\x44\x79\x4f\x68\xc1\ \x0f\xf6\xc1\x38\x86\xfa\x21\x99\x4f\xcc\x72\xc9\x40\xcc\xe5\x10\ \x87\x34\xcc\xe3\x0d\x6b\xc3\x90\x11\x0f\x55\xbf\x8f\xd5\x30\x74\ \x5b\x63\xfe\xb0\x8b\x38\x1f\x20\x14\xf1\xd8\x45\x03\x9c\xd0\x80\ \x16\x0c\x60\x17\x87\xa9\xa1\xcf\xd0\x5c\xc7\xc0\x86\xc7\x56\x83\ \xf5\xa3\x9f\x0b\x1a\x99\x16\x1c\xf5\x09\x46\x38\xeb\xb3\x59\x80\ \x06\x69\x9f\xe1\x98\x11\x9f\x76\x32\x15\xb6\x50\x90\x96\xcb\xd4\ \xe4\x14\xf5\x37\xc1\x39\xde\xdf\x48\x6f\xdd\xe8\x74\xf7\x5a\xe6\ \x27\x1d\x58\x1a\xe0\x00\x6c\x08\xc5\x19\xfe\xed\x04\x15\xb4\x40\ \x05\xbb\xd8\x85\x8c\x7e\x6d\xfe\x23\xc2\xfd\x4f\x5f\x28\xc0\x15\ \xc1\xf4\x54\x10\x40\x19\x15\x91\x2c\x70\x76\x54\x1c\x21\x07\x8b\ \x1f\x1a\xa1\x12\xa7\xb8\x11\xaa\xd2\xd0\x12\x7f\xd8\xab\x20\xf6\ \x12\xfa\x4e\xcd\x65\x67\x88\xa0\xe4\xed\x3e\xb9\x73\xec\xd0\x82\ \x7b\xcf\x9c\xe6\xfe\xa5\x42\x03\xce\xa0\x02\xb2\xf7\x1b\x80\x01\ \x17\xf8\x70\x03\x9b\x67\x3d\xdf\x81\x04\x77\xd8\x73\x8e\x64\x84\ \x90\x04\x1e\x78\xe1\x88\x3c\x3a\x00\x8c\xb0\xf4\x0e\x30\x7d\xe1\ \x93\x66\x18\x19\xa4\x3e\xda\x92\x89\x96\x9c\x0c\x0a\x23\xb9\x45\ \xba\x3e\x32\x84\x20\x5c\x28\x24\x03\x28\xd6\xfd\xbe\xfe\x7e\x5d\ \x3a\x32\x0f\xc5\x36\x42\xd1\x81\x5f\x0d\xb8\x03\x2a\x88\x47\x28\ \xe4\x10\x0a\x9a\xe3\x2a\xe7\xc3\x0b\x5e\xb1\x7f\xab\xe7\x3e\x88\ \x80\x02\x22\x08\x47\x1f\x0c\x60\x00\x12\xb0\x07\xb1\xbb\x68\x41\ \xf2\x7e\x8f\x48\x46\x37\x9a\x05\x87\x3e\x83\x71\x8b\x8e\xe4\xe7\ \x21\xeb\xdb\xe2\xac\x3a\x32\xb8\xfd\x35\x90\x9f\xf1\x29\x94\xef\ \x82\x59\x2b\x5f\x7d\x7d\x64\x5e\x11\x68\x6e\x7d\x73\x22\x81\x82\ \x50\xf8\x03\x0c\xfe\x60\x81\x0a\xdc\x0e\x11\x19\x04\x81\x0a\xa6\ \x97\x43\xea\x43\x11\x0a\xfe\x6f\x84\x62\x17\x7f\xdb\xbc\xc0\x07\ \x4d\x5c\x3b\x98\xc1\x00\xde\xb0\x35\x05\xb6\xc1\x08\x0e\xc0\x08\ \xbc\x20\x1c\x58\x20\x1c\x94\x47\x79\xfc\x6e\x0a\xa4\x22\xf0\x7e\ \xef\xf7\xd6\xa3\xe8\x8e\x49\xe3\x10\xaf\x71\x4e\xe7\xf9\xc8\x81\ \x1c\xc2\xe8\x02\x4d\x8a\xf2\x3c\x30\xfb\xc8\xe1\x08\x32\x6f\x09\ \x9a\x43\x7f\xec\xa0\x01\x5e\x4f\x2e\xdc\x49\x05\x42\x81\x01\x01\ \x00\x07\xd0\x2f\x2d\x9e\x61\x06\xd1\xa3\xfd\xbe\x21\x14\xd8\x80\ \x01\xa7\x00\x0c\x42\x21\x05\xd0\x8c\x97\xd4\x42\x7f\xf8\x8f\x02\ \xc0\x20\x00\xc1\xe0\x14\x56\x67\x1b\xe4\xcc\x08\xe4\x80\x89\x70\ \x80\x89\xae\x02\x07\x8a\x0e\x01\xaf\xc0\x00\x5a\xc0\x00\x59\x20\ \x1e\xb2\xed\x79\xa2\x6e\xf8\xa8\x0e\xa4\x40\xc0\x0f\x2e\xad\x89\ \x2e\x50\xb4\x26\xcf\x03\xab\x2f\x04\xba\x00\x14\x3a\x60\x04\x9b\ \x23\xaa\x64\x4c\xec\x1a\x20\x05\x3a\x60\xd6\xbc\xc0\xd6\xa6\xc0\ \x05\x01\x60\x0a\xe2\x41\x2d\x9e\x41\x06\x44\xe1\x19\x6c\xa4\x03\ \xe2\xc1\x1f\xb0\xe2\x00\x62\x30\x60\x82\x49\xa8\xbe\x03\x05\xfa\ \xef\x00\x0e\x00\x09\xaf\xc2\x11\xa6\xe0\xe8\x18\xf0\xef\x5e\xd0\ \x08\xfc\xe0\x00\x0e\xfe\x30\x1c\xf6\x20\x1c\x92\x0a\x91\x5a\x00\ \x0a\xb7\x04\x59\xc0\xcb\x37\xc0\x10\xfa\xb8\xcd\x29\xc4\x89\xf1\ \xaa\xaf\x03\xbb\x80\x03\xe2\x20\x08\xdc\xd0\x43\x1a\xc0\x1f\xf2\ \x70\x1b\xd8\x40\x17\xf5\x50\x2a\xa6\x40\x0e\x12\x51\x22\x9e\x01\ \x17\x6c\x21\x10\xcb\xe4\x19\xa8\x20\x1e\xd8\x00\x2b\xb6\xe1\xd1\ \x14\xb1\x57\x82\x28\x31\x66\x2d\x1c\x0c\x20\x1c\x0e\x00\x0c\x82\ \xc3\x0b\x33\xd1\x08\x98\x50\x00\x99\xe8\x13\xc8\x81\x05\xbe\xc1\ \x0f\xa6\xc2\xd3\x50\x31\xcc\x1c\x27\x0c\xfd\x00\x19\x70\x60\x03\ \x39\xce\x0c\x79\xe3\xe1\x24\x44\x0d\xe1\x41\x1f\x64\xe0\x0e\x4a\ \x8e\x4c\x3c\x84\x0a\x58\x80\x38\xe4\x20\x1e\xa4\xc8\x0f\x6d\xa1\ \x18\x5b\x26\x08\xe2\x01\x1c\x98\xb1\x05\x3a\x60\xd0\x7e\x2b\x05\ \x7c\x0e\x57\x5e\xc4\x0e\x48\xc0\x0b\x5a\xc0\x0a\xe5\xa0\x17\x87\ \xa3\xd9\x98\xc8\x08\x18\x90\x12\x8d\xe0\x1b\x8c\xae\x1c\xaf\x4e\ \x64\xc8\xeb\x89\xb8\x8d\x1c\x98\xcd\x1c\xbb\x02\xd4\x36\x6e\xf2\ \xba\x20\x16\xb5\x20\x0b\x4e\xcc\xcc\xd2\xef\x91\x0c\x51\x2b\xd8\ \x00\x18\xf3\x4f\x18\x45\xc1\x16\x6c\x40\x14\x22\x62\x06\x8d\x51\ \x2d\xa8\x00\x08\xfe\x30\x72\x07\x5b\x80\xb7\xe2\x22\x21\xcc\x60\ \x87\xea\xce\xee\x50\x04\x05\x64\xcc\x00\xa4\x32\x1c\xb0\x31\x7d\ \x1c\x01\x07\x88\xe6\x5c\xb4\x71\x6c\x2c\xef\x29\x94\xea\xb1\xfc\ \x40\x25\xc7\xa5\xea\x1a\xe6\x25\xd9\xc0\x1e\xb3\x40\x11\x4a\xae\ \x26\xb3\x00\xc2\x54\x60\x00\x2e\x12\x07\x42\x41\x05\x50\xd0\x43\ \x9e\x41\x14\x44\xe1\x27\x05\x11\x22\xf2\x72\x28\x65\xd0\x14\x80\ \x00\x08\xc0\xa1\x17\xa7\x20\x1c\x72\x09\x22\x2c\x42\xf6\xfa\xa0\ \x13\x14\xa1\xf6\x48\x80\x7f\xf8\x07\x05\x0e\xab\x05\x0e\x00\x23\ \xa3\x10\xbc\x9a\x8d\x0c\x43\x8b\x24\xbf\x0c\xf1\xa0\x8f\x81\x38\ \x73\xf1\x4a\x92\x84\xb2\xcf\x25\x63\xf1\x08\x1e\x82\x2d\x55\x6d\ \x09\xdc\x12\x70\xf8\xe8\x18\xf5\x52\x2f\x67\xb0\x2f\xb3\x60\x36\ \xf1\x32\x10\x0d\xf2\x22\xa3\x62\x07\x49\xe0\x80\x50\xe0\x8e\x1c\ \x73\x09\x4e\xe1\x14\x96\x40\x04\x22\x13\x57\xa4\x32\x14\xc2\xc1\ \xff\x0e\x00\x13\xf7\xb0\x2b\x89\xc3\x0f\xd6\x01\x3a\x29\x24\x6c\ \x22\x04\x7a\xb2\x52\x0c\x1b\xe8\x14\x3d\x2e\x1d\xd9\xc0\x2a\x42\ \x00\x1e\xba\x00\x1e\x64\xd1\x91\xd6\xb2\x2d\x39\xcf\x43\xf6\x12\ \x17\x02\xd1\xfe\x36\xb3\xe0\x2f\xe1\x53\x06\xe3\xa2\xf4\x4e\x8f\ \x13\xeb\xaf\x8e\x52\x80\x04\x1a\x33\x07\x3a\x41\x04\x88\xb3\x38\ \x4f\xa1\x13\xcc\xe0\xb0\xac\xd0\x0b\x54\x2f\x79\x2e\x33\x0a\x31\ \x53\x38\xfc\x40\xc1\xae\xb3\x2c\x81\xe3\x89\x90\x21\x04\x36\x13\ \xf2\x4a\xca\x2c\xa1\x6f\xd3\xba\x20\x03\xcf\x13\x22\xfe\x80\x35\ \x69\x72\x3d\x9b\x63\x2f\x69\x53\x18\x6b\x73\x22\xe6\x93\x06\xcd\ \x2e\x05\xa8\x40\x22\xf6\xb3\x13\x3a\x21\x9f\x1a\x33\x40\xc1\xa0\ \x0f\x74\x47\x2a\xab\x91\xce\x7c\xcf\x2a\xaf\x62\x0a\xa4\x33\x38\ \x94\xaa\x41\x51\x51\x8c\xb2\xf3\x29\xd8\xb1\xf2\x48\x46\x99\x40\ \xe6\x37\xd8\xb1\x42\xd5\x90\x1c\x38\x20\x1e\xd0\x33\x3d\x5b\x53\ \xb5\xd6\x33\x45\xfd\x32\x3e\x71\x13\x45\xe7\x33\x3e\x51\xd4\x46\ \x24\xc2\x09\x82\xb3\x0f\x48\x80\x04\xe6\x4e\x04\x44\xa0\x13\xee\ \x20\xd0\x72\x67\x17\xcc\xc0\xf7\x5a\xa0\x09\x89\xb4\x4b\xea\x34\ \x54\x1c\x44\xf2\x94\x09\x7a\x2a\xd4\x14\xdf\xf1\x7c\x40\x00\x19\ \x1e\xcf\x34\x43\x00\x19\xd8\x40\x0d\x39\x60\x14\xaa\xd4\x4a\xcd\ \x0c\x2e\xb2\x54\x4b\x05\x51\x28\xdf\xd3\x4b\x55\xd4\x36\x6b\xf3\ \x4b\xd1\xfe\xa3\x4f\x50\x40\x58\x20\xd2\x56\xf4\x2c\x4e\x49\xa0\ \x05\xbc\x81\x23\xc5\x0a\x6c\x46\x25\x42\x98\x94\xf2\xc8\xd2\x7c\ \xf8\xf4\x50\x7f\xa3\x50\xcf\xb0\x43\x81\x60\x51\x19\xf5\xbc\x96\ \x03\x28\xbf\x4e\x52\x71\xd5\x2f\x85\x92\x45\x83\x72\x45\x7d\x35\ \x2f\xe3\xe7\x97\x78\x8a\x20\xf4\xcc\xe7\x9a\x92\x04\x76\xc1\x1a\ \xad\xb3\x54\x19\xcf\x54\x02\x95\x6c\x78\x63\xd3\x96\x94\x8c\xa0\ \x6f\x50\x91\x34\x3c\xc9\x00\x19\xc8\x81\x4a\xd3\x42\x44\x6d\xb5\ \x03\xde\x13\x53\x83\x72\x52\x7f\xf5\x19\x6c\xc0\x06\xe0\x53\x57\ \xd7\x15\x4c\xcf\xf5\x5c\xc9\xf5\x0d\x01\x2a\x98\xc8\xb4\x87\xe6\ \xee\x4c\x49\x20\x12\x9d\x55\x4f\xb5\x82\x0c\xa2\x6f\x2a\x1c\x41\ \x50\xb3\x93\x34\xb7\x55\x15\x4f\x33\x50\x33\x90\x1d\x3f\xf4\x5b\ \x4b\x4e\x0b\x66\x53\x14\x16\x75\x5d\x01\xb3\x5c\xd3\x75\x57\x25\ \x95\x2f\x55\x14\x4c\x23\xd5\x57\xe3\x33\x5e\x7b\xa6\x11\x83\x73\ \xcf\xde\x04\x05\xf2\xe8\x0e\xec\x8e\x7f\x7c\xd4\x59\xa7\xae\x5f\ \xa1\x8f\x6c\xb8\xb5\x89\x30\x54\x42\xb9\xd5\x0f\xd8\xc0\x0f\xb2\ \xaf\x50\x6b\xd6\x0f\xa4\x74\x16\xd5\xa2\x0f\x66\xd2\x56\x71\x21\ \x10\xfe\x7e\x72\x20\x2d\xb5\x68\x65\x50\x52\xd7\x55\x3e\x69\x90\ \x63\x3b\x96\x69\xbf\x6e\x6e\x48\x60\x4d\x6d\xc9\xe7\x6e\x65\x11\ \x9a\x12\x97\x52\xc0\x0c\xb6\x21\x94\xd4\xb0\x0b\x4a\x8b\x5a\xfb\ \x55\x92\xc8\x46\xa9\x58\xd1\xf9\xc8\x20\x67\x33\xd0\x0f\xbc\x96\ \xf2\x68\xb6\x0b\x70\x20\xb2\x68\x35\x22\xc0\x15\xb5\x96\x40\x05\ \xd2\x55\x68\x6d\xc0\x16\xca\xd5\x69\xcf\x75\x36\x25\x76\x5c\x35\ \xd6\x52\x9b\x96\x44\x97\xb2\xff\x96\x60\x09\x28\x40\xb7\x4c\x76\ \x87\x74\xc7\x09\x7c\xc0\x1b\xcc\x88\x0c\xca\xb3\x0b\xc2\x45\x42\ \x12\xcf\x54\xb1\x42\x1d\x63\xb6\x2c\x43\xe0\x24\x39\x80\x03\xc8\ \xa1\xf2\x3a\x57\x6d\xfd\x60\x56\x9b\x23\x07\x4a\x4e\x05\x02\x01\ \x6f\x31\x56\x3e\x1b\xa3\x2f\x85\x32\x5d\x93\x16\x70\xb5\x94\x57\ \x6b\x97\x70\x83\x00\x05\x3a\x21\x12\x8d\x73\x09\x3a\xe1\x96\xcc\ \x34\x4f\xc2\xe1\x4e\xaf\xb3\xfa\x5e\x32\xeb\xc2\xd6\x64\x94\x6a\ \x34\x39\x8e\x0c\x70\xa0\x66\xa5\x94\x03\xbe\x81\x1c\x78\xa3\x0b\ \x6a\x96\x03\x02\xb2\x31\x3a\x21\x75\x85\xb6\x7b\x81\x72\x06\x31\ \x36\x4c\x29\x56\x76\x7f\x95\x36\x2f\x35\x58\xf3\xf2\x76\x09\x97\ \xfe\x4c\x45\x40\x40\x8b\x53\x11\xf2\x89\x3f\x79\x2b\x05\x44\xe0\ \x74\x54\x75\x60\x3f\xae\x1c\x0f\x25\x54\xb8\x8d\x79\x47\xd2\x79\ \x0d\x35\x7a\x3f\x77\x2c\xc9\x2a\x04\x64\xb1\x4c\xb6\xb7\x35\x55\ \xb7\x7b\xf9\x32\x2f\xc3\xd7\x76\x79\xb2\x62\xe1\xd3\x6f\x03\xd1\ \x6f\xe1\x35\x63\xd7\xd7\x0c\x22\x71\x0a\x04\xf4\x38\x1b\x93\xb7\ \x82\x80\x04\x24\x91\xe3\xd4\x30\xfb\xc6\x4c\xfa\xca\xd1\x64\xb6\ \x73\x73\x25\x0f\x07\xdc\x76\xa9\x3e\x17\x25\x4b\xab\x0b\x4c\xd7\ \x43\x50\x57\x81\xd3\xf5\x6e\xd5\xd5\x75\x79\xf5\x44\x29\x56\x2f\ \x51\xd4\x7c\x1f\x16\x76\xd5\x97\x70\xc7\xd4\x0c\xbc\xc1\x7d\x7b\ \x97\x02\xee\x60\x6d\x50\xe0\x2a\x47\xac\x1d\xbd\x16\x5d\x42\xac\ \x5f\x1b\x2a\x54\x96\x97\x85\x45\xa6\x50\xa3\x54\x7a\x19\xa8\x72\ \xab\xa2\x0b\xbe\x21\x7b\x1b\xe3\x0e\x7e\x56\xad\x8e\x93\x18\x07\ \x72\x20\x03\xe1\x01\x02\xe1\x44\x6b\xd3\x06\xde\xf8\x6f\x59\x34\ \x52\x69\xf3\x3d\xfd\x56\x70\x3d\x96\x44\x2b\x42\x04\xb6\xe1\x14\ \x38\x98\x83\xc1\xc0\x0c\xd6\xa6\x03\x0e\x60\x6c\xd0\x10\x85\xf3\ \x17\x60\x3f\x67\x6c\xc7\xf0\x0b\x25\xb7\x0b\x74\x36\x86\x59\xfe\ \x91\x2a\xc0\x21\x1e\x5e\xb4\x4c\xfa\xa0\xe4\x5a\xa0\x18\xd7\x58\ \x15\xd2\x20\x00\xdc\x78\x69\xd1\x55\x68\x77\x15\x22\x7c\xd8\x76\ \xff\x32\x8f\x01\x77\x4b\xf7\x98\x44\x9d\x00\x89\x01\x79\x96\xef\ \xe0\x21\x52\x40\x0e\xba\xa4\x50\x75\x36\x25\x4d\x35\x64\x40\x33\ \x99\xb8\xb2\x7f\xb5\x38\xcc\xdc\x56\x15\xfd\x20\x4f\xb7\x84\x0d\ \x22\xc8\x5d\x36\xb9\x35\x5b\xc0\x3d\xf5\xd2\x16\x1e\x20\x0d\x92\ \x41\x94\xc7\x75\x2f\x57\x97\x63\xd5\xf7\x7c\xcd\x17\x69\x79\xf5\ \x9b\x8d\x78\xc0\x52\xc0\x00\xb6\xe1\x08\x0f\xc0\x0c\x1e\xa2\x03\ \x70\xf9\x84\x70\xe0\x73\x07\x18\xeb\x16\xf9\x5c\xda\x71\xa1\xca\ \x51\xa9\x82\x34\x42\xb3\xb5\x66\xa7\x78\x2a\xa6\xf4\x95\x21\xa2\ \x99\xcd\xcc\x00\xf2\xd6\x16\x88\x51\x15\xa6\xd9\x8d\x77\x38\x3e\ \xe5\x58\x5d\xd3\xa2\x95\x6d\xd7\x44\xaf\x19\x8e\x03\xd7\x9f\x9f\ \x96\x4c\x67\xcc\x00\x7c\xe0\x88\x58\xe0\x4e\xa1\xc2\x42\xc9\xe1\ \x1b\x40\x17\x98\x8b\x14\x85\xb9\x92\x1d\x17\x09\xf1\x78\xf9\x1d\ \xab\x6f\x79\xb5\xd5\x74\xd8\xe0\x07\x28\x3a\x0b\x00\xda\x56\x05\ \x3a\x6f\xd3\x55\x15\xda\xd8\x8d\x8d\x11\x7c\x85\x96\x69\xfe\x79\ \xb8\x87\xf7\xb2\x75\x25\xd8\x5d\xfd\x72\x62\xc3\xd9\x31\x0a\x48\ \x66\xbe\x01\x07\x30\x92\x37\x94\x2a\x03\x51\x12\x66\x93\x77\x60\ \xcb\x11\x04\x28\xd0\x81\x1c\x81\x80\xc1\x2a\x6c\x25\x64\x79\x9b\ \x4d\x49\x25\x84\x03\x32\xd9\x5d\x52\x60\x6e\x53\x2a\x6d\xa8\x60\ \xa1\xe5\x78\x75\x57\x77\x87\xe3\x78\x8e\x65\xd0\x82\x2f\x35\xa8\ \xbb\x79\xa1\x77\x7a\x6f\x8f\xfa\x0d\x03\x46\x05\x38\xc0\x03\xcf\ \xa7\x73\xa5\xd4\x55\x51\xb5\xea\x52\x98\x37\x4c\x08\xab\xbf\xfa\ \x84\xc6\xa8\x73\xbf\xfa\xab\x2d\x59\x05\x60\x07\x1f\x5b\xb3\x0f\ \x72\x38\x87\xd9\x1a\xae\x3b\x76\x2f\x31\x75\x95\xb9\xf9\x61\xc7\ \x35\x87\x8d\x3a\x7d\x63\x3a\xaf\x83\xe0\x07\xe2\x21\x1e\x46\x61\ \x7a\xf3\xd4\x11\x6a\x16\x8c\x07\x9b\x93\x3e\xd3\x72\x1d\x21\x04\ \x90\xa5\x72\xeb\x99\xd9\xee\x59\x24\xcf\xb1\xab\xd9\xa0\xd9\x7a\ \x9b\x2a\xc8\x21\x18\xdd\x45\xb2\x03\x9a\xae\x83\x9a\xad\x71\xf5\ \x62\x4f\xb9\x87\x25\x98\xae\xff\xb2\x81\xf5\xf2\x8d\x8d\xfa\x36\ \xcd\xf5\x18\xf9\x96\xf3\x04\x31\x08\x64\x40\x0b\xbe\xe1\xe1\xa4\ \xd5\xab\xac\x24\x75\x2c\x97\xdb\x70\x1b\x3b\xb3\xb2\xfe\xd9\x42\ \x8a\xa4\x3f\xd3\xb7\x99\x1a\xe9\x60\x10\x86\x88\xdb\x56\x5b\xc0\ \xb3\x7f\xb2\xad\x87\xd2\x81\x7f\xf2\x68\x9d\x5b\x69\x4b\x99\x2f\ \xf5\x32\x7c\x2d\xd5\x44\x5b\xa6\x88\x8f\x5a\x0b\x9c\xc1\x6b\xcd\ \x70\x41\x04\xb5\x91\x25\x29\x04\x36\xcd\x71\xb2\x18\x3b\x11\x0f\ \xac\xcb\x72\xaa\xb7\x64\x33\xa7\xa0\x37\xe4\xa0\xc9\x60\xc8\x0c\ \x52\x77\x36\x2b\x1b\x9b\x2d\x36\x87\x9d\xd6\x81\xe7\x58\x69\x83\ \xda\xad\x87\x7a\x4b\xb9\xb4\xba\x73\x73\xb4\x61\xe8\x19\xb4\x20\ \x1e\x80\x20\x86\xaf\x0f\xfa\xa4\xf4\x09\x34\xf0\x34\xcd\x12\xeb\ \x66\x3b\xb7\x9f\x75\x8b\x9d\x3a\x07\x5d\xf0\x17\xcf\xc0\xdd\x82\ \x60\xa6\x51\x8b\x02\x2a\x16\x9b\x7f\xb2\xc9\x83\x72\xc5\x83\xf8\ \x27\xf1\xb8\x36\x53\xfc\xad\x6d\x00\x5e\x1d\x98\xa2\xd3\x37\xaf\ \x1b\x43\x82\xa8\xe0\x08\x38\x60\x6d\x67\x1b\x07\x54\xf5\x7e\x4f\ \x4a\x50\x6d\x9b\x73\x43\x4a\x55\xfb\x35\x91\x31\xfc\xd9\x5e\xee\ \x35\x27\xc2\x0e\xba\xee\x8d\x2b\xbb\x62\x1b\x38\xb3\xbb\x59\x62\ \x25\x78\x95\x3d\xfb\x2f\x57\xf7\xbe\xd3\xb7\x4b\xdd\x45\xb4\x83\ \xd2\xcb\xfd\xeb\x08\x34\xf0\x33\x5d\x52\x6d\x6f\xfe\x76\xcd\x21\ \x24\x60\xdb\xdc\xcd\xd7\xe7\x7e\x2d\x14\x48\x73\x31\x1e\xee\x2f\ \x7e\xec\xbc\x35\xbd\xa1\xad\xd7\xfa\xc9\x35\x9b\x57\xa9\xbc\x82\ \xeb\x18\xbf\xdd\x9a\xbe\x41\xbc\x62\xcb\x75\x88\xd9\xa6\x57\x59\ \x5c\xd1\x85\xb1\x03\xe2\x80\x03\xd0\xa5\x43\xc9\x81\x72\xc1\xeb\ \x0c\xc3\x29\x0d\xc5\x5b\x99\x28\x6f\x0a\xce\xaa\x12\x5b\x80\xc3\ \xbf\xee\xd3\xcd\x2c\xd4\xd9\x5a\xad\x21\x7a\x63\xef\xd8\x82\x4d\ \x1d\xba\x9b\x9c\xae\x41\xfb\xbe\xf3\x78\xb4\x25\x1a\xc6\xbf\x4e\ \x06\x7e\x80\x7a\xab\x42\x0d\xd9\x00\xc1\x51\xc7\xd7\x7b\x19\xd8\ \xb9\x22\xc3\xa7\x80\x0d\x72\xd2\x19\xd7\x53\xd9\x6d\x95\x05\x2e\ \x5b\xd4\xb3\x1d\x69\x39\xfb\x57\xff\x5c\x14\xf0\x36\xc5\x9f\x1c\ \xc0\x95\x96\xa8\x59\xe5\xa7\x69\xbd\x31\xa8\xa0\xaf\x01\x80\x0d\ \xc8\x01\x1c\x0e\xb5\xd7\x27\x6f\x03\xa7\xce\xcd\x5d\x12\x7d\xd4\ \x70\x0f\xc1\x41\x05\x44\x8f\xce\x3d\x04\xde\xe9\x36\x1e\xe6\x3d\ \xc4\xc7\x55\x3e\xa3\x7d\x52\xd9\x15\x9b\x45\x7d\xdf\x4f\x7d\x69\ \x81\x78\x70\x5f\x97\x27\xa7\x7b\xe0\x25\xc2\x16\x10\x32\x04\xbe\ \x41\x15\x08\x13\x23\x43\x80\xdd\x17\x9e\x24\xfe\xd5\x10\x66\xab\ \x22\x49\x79\x5c\x42\xac\x17\x7d\xa6\x80\x03\xc0\x41\x0e\x44\xef\ \xa8\xe3\x7b\xe3\x55\xe0\x08\x54\xc0\x16\x2e\x7b\xa8\xad\xbc\xcf\ \x3f\x1e\xd0\xd7\xfa\xe9\xf7\x5d\xae\xcd\x57\xe5\xdd\xa5\xe5\x5d\ \x3e\x22\xe2\xa0\x0b\xf6\x10\x08\x70\xe1\x08\xbe\xa1\x30\xf3\xb0\ \x0b\xa6\xc0\x7a\xc1\x61\xed\xe5\x11\x00\x5e\xb2\x6b\xc7\xdd\x85\ \x47\xd7\x66\xc5\xe5\xcc\x29\x4f\x2b\xd6\x1d\x20\x31\xde\x5d\x9c\ \x20\xf3\x52\xec\x70\x97\x80\xe6\x68\x6e\x17\x6a\xee\xa1\xeb\x5d\ \xe4\x53\x5c\xdf\x9b\xbd\xd9\x9b\x7c\xae\x19\x5a\xeb\xe9\x73\x6f\ \xb9\x9d\x70\x47\xc1\x05\x03\xc0\x14\x4c\x21\x0e\xf4\x80\x03\xf0\ \x61\xed\x0b\x53\xed\xc7\xbd\xa3\xbb\x40\xe1\xad\x97\x0d\xc0\x01\ \xaa\xdb\xd6\xcc\xa9\xc2\xfa\x8e\x57\xbc\x47\xff\x1b\x54\x00\xd6\ \x8e\xba\xef\xfd\x5e\x43\x00\xff\x70\x69\x14\xf7\x70\xe1\xcf\x5b\ \xdc\xca\x41\xbb\xea\xbb\x97\x75\x5b\x77\xcb\x55\x79\xe5\xf1\x3a\ \xd1\xbb\xde\x2f\x8f\xa0\x30\x01\x00\x1c\x80\x20\x1e\x30\xff\x08\ \xf4\x40\x0f\x08\x93\xc8\x5f\x92\xd8\x6f\x1e\x1c\x88\xde\xf3\xa5\ \x34\x03\xc1\x01\x19\x28\x37\x8c\xb9\x35\xfe\x03\xa7\x58\x72\xcd\ \x9c\x0d\xbe\x01\x05\xe3\xd6\x88\x69\xbf\xf6\xd9\xe5\xf6\xf5\x4b\ \x4d\x3b\x61\x17\xc0\x97\xda\x59\x97\xf1\x3b\x9e\x88\xb1\x9e\x6f\ \xb5\x19\x30\x23\x35\xf9\x01\x22\x8b\x8c\x51\xc9\xe0\xb1\x01\x17\ \x40\x85\x29\x51\x2a\xf4\x00\xd1\xa3\x07\x5c\x97\x29\x53\x26\x4e\ \x09\x71\x90\x8d\x46\x83\xe0\x3a\x82\xf3\xd3\x25\x64\x48\x64\x6c\ \xc8\x71\xe0\x40\x8e\x4d\x08\x8c\x1c\xd8\xe0\xe0\xd0\x21\x8b\xcc\ \x99\x34\x6b\xda\xbc\x79\xd3\xc9\xbf\x9d\x3c\x7b\xfa\xfc\x09\x34\ \xa8\xd0\x7f\x4b\x8a\x1a\x55\xa4\xc8\xdb\x12\x2f\xcf\x9e\x89\xb2\ \x11\xc8\x06\xd4\x40\x54\x9f\x52\xa5\x2a\x55\xd4\x4c\xa7\x4d\x9d\ \x8a\xfa\xfa\xec\xa6\xa8\xa6\x32\x9b\x8e\x0d\x9b\x85\x2c\xce\xb5\ \x6c\xd9\xe2\x02\x05\x2e\x59\x00\x88\xaa\x14\x42\xd4\x33\x4a\x0f\ \x3e\x70\x14\x2b\x86\x04\xc7\xa6\xcb\xca\x8b\xf0\xc0\xc1\x13\x49\ \x2e\x31\xb9\x90\xf0\x14\x4b\x3c\x78\x12\xdc\x37\x19\x6d\x2b\x57\ \xd6\x39\x34\xb3\xe6\xcd\x3e\x8d\x7a\xf6\x7c\x15\x6b\x68\xac\x67\ \xcb\x36\x85\x6a\xe3\xeb\xcd\x67\xa9\xb7\x82\xdd\x8a\xd6\xb2\xec\ \xb5\xb6\x02\x54\xc4\xf7\xc0\x14\xc4\xfe\x87\x0f\xf5\xa8\x8a\xd8\ \x05\x40\xc5\x8e\x81\xa7\x90\x01\x80\xbc\x62\x08\x00\x64\xba\x98\ \x24\x17\x82\x8c\xf4\x10\xce\x55\x4a\x9f\x82\x83\x4d\xbc\x20\xb3\ \xbb\xd3\x5c\xc2\x39\xbc\xf8\xf1\x9f\x97\xa8\x50\x15\x48\xd5\xd4\ \xd4\x5d\x67\x8a\x4a\x6f\x23\x76\x4d\xd6\x63\x65\x3e\xad\xbf\xd5\ \xbb\xfe\x99\xf1\xd8\x08\x87\xa7\xc7\x03\x10\xe1\x33\x20\x44\xa6\ \xec\x25\x5c\x17\x80\x19\x47\xc6\x14\xc8\x3d\x08\x61\x48\xd1\x41\ \x48\xdd\x72\x10\x02\x20\x07\x77\xfb\xc9\x16\xc4\x78\x1e\x7e\x18\ \xde\x67\x5e\xfc\x60\x0a\x89\x1d\x38\x51\xd6\x7b\x81\xe0\x67\x13\ \x57\xee\xb1\x97\xdf\x86\xde\xc9\x90\x86\x83\xc2\xdd\x85\x57\x80\ \x4c\xe8\x61\x8a\x6e\x7c\x4d\x01\x8e\x3f\x7c\x5d\x48\x24\x72\xd2\ \x5d\xb8\xd2\x71\x17\x76\xa1\xa1\x8c\x95\x81\x08\x65\x94\x99\x95\ \xa7\x88\x19\x8b\xec\xa2\x82\x0a\x2b\xce\x17\x9b\x7c\xac\xc5\x47\ \x93\x7c\x4e\xb6\x65\xca\x90\x00\x74\x11\x00\x3e\x04\xf6\xa8\x17\ \x8f\x3d\xe2\x73\x90\x90\x4c\xd8\x58\x64\x9d\x0f\x56\x48\x24\x0e\ \x54\x8c\xf9\xa4\x94\x7e\xfe\x09\x54\x79\x06\x0c\x6a\xc0\x2e\x69\ \xa9\xd5\x22\x8c\xf9\x89\xc9\xa7\xfe\x4d\x47\x24\x43\x91\x82\xe0\ \xac\xd9\xe3\x81\x6b\x36\xa0\x57\x47\xfe\xb0\x41\xa7\x9d\x75\x36\ \x27\xd8\x91\xc8\xb1\x11\x53\xa3\x6b\x01\x8a\x6a\xaa\x3d\x51\xd9\ \x87\x08\x84\x36\x69\xdf\x53\x5e\x9a\xca\xd6\x33\xa6\x04\x10\x97\ \x47\x6b\x8a\xf2\xe6\x41\x6e\x0e\xe0\x4f\x5f\x9d\x2e\xe9\x29\x00\ \x18\x0d\xeb\xcf\x9e\xb4\xda\xd4\x87\xaa\xce\x3e\x4b\xd4\x67\x48\ \x89\x20\x42\x0b\x0d\x80\x35\xeb\xb2\xab\xc5\x01\x44\x1a\xf8\x24\ \x13\x97\x9b\x91\xf4\x38\xe7\x14\xf8\xd8\xc5\xe9\x14\x9c\xda\x49\ \xe7\x71\xa2\x1a\x09\x8e\x92\x0f\x72\xa0\xac\xb6\x33\x29\x02\x6d\ \xbe\xd0\x96\x57\x94\x37\x22\x98\x51\x96\xbd\xab\xe5\x35\xa0\x9a\ \x6e\xb2\x89\x0f\x72\xe0\xf0\x18\x11\x45\x0b\x16\x2b\xdc\x4a\xc1\ \x41\x18\xd8\x72\x0d\x1e\x14\x4f\x24\x02\xcb\x84\xaf\xbe\x1e\x7f\ \x1c\xad\x51\x5e\x38\x41\x72\x10\x26\x6b\x4b\x45\xb7\x7a\x80\x82\ \xcf\x5c\x3d\x46\x32\xae\x5e\x9c\x2e\x6c\x8a\x0a\xe5\x06\x49\x51\ \xb1\x91\x76\x21\x2f\x73\xc5\x49\x4a\x51\x3c\x1b\x67\x01\x1e\xc8\ \x46\x83\xec\x19\x05\x7d\xd8\xd1\x40\x0a\x4e\x9c\xec\xa4\x2d\x69\ \xcc\xe5\xed\x9a\x30\xdb\xaa\xfe\x66\x47\x94\x36\x1c\x24\x38\x0f\ \xf6\x55\xa4\x5f\x16\x42\x78\x11\x38\x1c\x78\x0d\x00\x3e\xf5\x6a\ \xdb\xf1\xd1\x6e\x1b\xed\x99\x08\x77\xdc\x61\x86\x1d\x1d\xc0\x2a\ \x5b\x3c\x1d\xa5\x11\x11\xcd\xcf\xc0\xac\xc7\xcc\xf8\x0c\xc0\x23\ \x15\x0d\x4f\x21\x24\x9d\x39\x13\xe9\xd7\xb0\xc8\x75\xc1\x01\x10\ \x12\xa9\xab\x82\xc0\x28\x14\xfd\x76\xe6\x47\x7b\xa6\x48\x1f\x9e\ \x7f\x8e\x42\x5b\xcf\x00\x51\x18\x3e\x2c\x4f\x6a\x4a\x24\xb6\xfa\ \x93\xdc\xa4\x3c\x46\xa2\x02\xeb\xc2\x42\x2c\x52\x9d\x66\x07\xc0\ \x04\x5f\x5d\xe8\x41\x19\xdb\x9a\xff\xfe\x3b\xab\x9d\xe4\xd0\xc9\ \x4d\x35\x82\xf3\x90\x6d\xa8\xfb\xf8\xf5\x9a\x32\x94\xe9\x20\xd8\ \x9e\x36\xce\x78\x08\x1e\x99\x1d\x1c\x38\x6b\x9b\xda\x36\xf0\xde\ \x6b\x2e\x2d\x52\x48\xa1\x28\x39\x07\x77\x69\x7d\x97\xe2\xf8\xbc\ \x6c\xf3\xec\x17\x0e\x4b\x7d\x84\x7f\x49\xa4\x60\xf4\x95\xfb\xfe\ \x7d\xfe\xdf\xf3\xbb\xc4\x29\x4b\x1c\x30\x00\x02\xe1\xc8\x46\xea\ \x5a\x1f\x15\xc6\x95\xbb\x74\xbd\xcf\x22\xc9\x99\xc2\x61\xe0\x27\ \xa9\xc9\x4d\x0c\x00\xdf\xc0\x1b\x9f\xba\xa7\xbf\x0c\xea\x8f\x5f\ \x7a\x60\x42\xb0\x36\x35\xfd\xb8\x2c\x99\x02\x53\x7b\x81\xe0\xe2\ \x86\x63\x98\x89\xbc\xaf\x30\x87\x09\x89\x8d\xc0\xd1\x00\xfc\x69\ \x70\x86\x34\x2c\xcf\x01\x98\xe0\x05\x3d\xec\x62\x84\xba\x29\xe1\ \xfb\x14\xa7\x20\x1f\x2e\xa9\x23\x2d\x0c\x49\x72\x80\x60\x41\x19\ \x39\x01\x83\x34\x6c\xe2\x0c\x3f\x93\x03\x03\x78\x21\x14\x72\x58\ \xdc\xd7\xde\x77\xac\xb0\x15\xf1\x22\x63\x63\x43\x0c\x4d\xd5\x09\ \x27\x8a\x71\x8c\x3b\x29\xcf\x29\xce\x08\x80\x53\x08\xc7\x71\x9e\ \x4a\x92\x85\xe4\x35\x85\x38\x24\x71\x3f\x61\x24\xa3\x1d\xc9\xf8\ \x99\x33\x9e\xd1\x8a\xc5\x72\x17\x73\x2e\x34\x19\x53\xe5\xe0\x8e\ \x84\xbc\x23\xbf\xf4\x38\x05\x35\x42\xec\x42\xda\x01\x63\x21\x1f\ \x59\xc8\x43\xee\x71\x91\x14\x64\x14\x1d\x21\x89\xc9\x4c\xf2\xa4\ \x28\x7a\xb4\x13\xa9\xf8\xd4\x2c\x4d\x8a\x52\x94\x46\xd1\xa3\x22\ \xa7\xd0\x82\x39\xce\x26\x94\xa3\x6c\x25\x29\x4b\xb9\x84\x1c\xa0\ \x00\x05\x76\x43\x91\x77\x58\xe9\xca\x5c\x8e\x92\x73\x9d\x9b\x1b\ \x0a\xee\x56\x19\x5c\xea\x72\x98\xae\x3c\x4a\xe7\x88\x97\x03\x80\ \x31\x8b\x98\xcc\x64\x66\xf8\xc4\xb7\x34\x26\x36\x73\x9a\xb9\x2c\ \x0f\xb4\x02\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\ \x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x3c\x86\x3c\xff\xff\xff\ \x8c\x89\x3f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\ \x4c\x2f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xce\xb0\xb8\xff\xff\xff\x97\xa8\xac\xff\xff\xff\xff\ \xff\xff\x0b\x27\x17\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x27\ \xa8\x4f\xa8\xe0\xff\xff\xff\xff\xff\xff\xd0\xc8\xe8\xf3\x89\xb8\ \xce\x68\x98\xff\xff\xff\x8f\x69\xa4\x0c\x28\x69\xff\xff\xff\xff\ \xff\xff\xf6\xa7\xb7\xb0\xa8\xa9\x12\x28\xe2\xff\xff\xff\x4d\x67\ \xf9\x22\x46\xea\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xc8\xe7\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x73\xab\xa7\xf9\xf0\xbf\xff\ \xff\xff\x92\xf4\xfc\xff\xff\xff\xff\xff\xff\xae\xa9\xf0\xff\xff\ \xff\xff\xff\xff\xee\x95\xea\xf3\x6e\x3f\xff\xff\xff\x93\x68\xf8\ \xff\xff\xff\xff\xff\xff\xf6\xb1\xf1\x4a\x4b\xe3\xff\xff\xff\x2f\ \x90\xc1\xfb\x8f\x5e\xff\xff\xff\xfa\xfc\xfa\x91\xc8\xfb\x8d\x95\ \xf6\xd3\x8e\xf4\xff\xff\xff\xff\xff\xff\x6f\x69\xe7\x38\x56\xf6\ \xff\xff\xff\xff\xff\xff\xc2\x26\x30\xff\xff\xff\x11\x78\xc9\xb1\ \x8f\xf2\xb5\x67\x5a\x0d\x38\x67\xf9\xd0\xa5\xff\xff\xff\xcf\xd9\ \xf2\xff\xff\xff\x6f\x69\x68\xff\xff\xff\xd1\xaf\xf6\xff\xff\xff\ \x2d\x48\x67\xff\xff\xff\xff\xff\xff\x54\xb7\xeb\xf2\x98\xb4\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x72\x8d\xfa\xff\xff\xff\xaf\xc8\ \xf7\x90\xb2\xfa\xf9\xd9\xed\xff\xff\xff\x8d\x37\x2e\xff\xff\xff\ \xff\xff\xff\x19\x37\xe1\xff\xff\xff\x07\x18\x64\xb2\x69\xee\x32\ \x4a\xed\xad\xb9\xf2\x6f\x78\x26\x6e\xb3\xf6\xef\x91\x90\xff\xff\ \xff\xff\xff\xff\xfb\xb7\xbc\xff\xff\xff\xff\xff\xff\x72\xe9\xfc\ \xff\xff\xff\xff\xff\xff\xbc\xe2\x8c\xff\xff\xff\xcc\x29\x67\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x4f\x96\xe1\x93\x6e\x66\xb1\xf3\xfc\xff\xff\xff\xff\xff\xff\ \xd0\xf7\xfc\xff\xff\xff\xb6\xc8\x86\xff\xff\xff\xff\xff\xff\x69\ \x3d\x98\x74\x3e\xc4\x72\x8b\x5f\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xd1\x38\x67\x75\xcb\xfa\xff\xff\xff\xff\xff\xff\ \x77\x8b\x34\xff\xff\xff\xff\xff\xff\xb4\x26\x7c\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x91\xd8\xfc\xaf\xd8\xfb\xff\xff\xff\xff\xff\ \xff\x98\x37\xd4\xaf\xb7\x72\x78\xfc\xfc\xff\xff\xff\x8d\x97\x44\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x92\x98\xad\xff\xff\xff\x4e\ \x58\x11\xcd\x57\x2e\xff\xff\xff\x44\x99\xc4\x12\x36\x17\x56\x76\ \x1f\xff\xff\xff\x14\x35\x9d\x0e\x78\xa8\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x57\x76\x63\xae\x97\xab\x57\x76\xfa\xff\xff\xff\xff\ \xff\xff\x75\x97\xab\xff\xff\xff\xff\xff\xff\x92\x77\xf0\x47\x5a\ \xf5\x27\x3a\xe3\xff\xff\xff\xff\xff\xff\xf2\x78\xa7\x91\x59\xf8\ \xff\xff\xff\x07\x19\xe2\xff\xff\xff\xff\xff\xff\xff\xff\xff\x33\ \x57\x62\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x36\x56\ \x16\xaf\x77\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb4\x58\x31\xb4\x57\xa2\xff\xff\xff\xff\xff\xff\xfb\ \xb8\x8d\x6f\x5a\xf3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xa1\x69\x19\x48\x50\x0b\ \x34\x24\x08\xa1\x29\x34\x08\xcd\xc3\x15\x24\x02\x0d\x22\x59\x06\ \x0b\x96\x07\x84\x08\x97\x41\x44\x78\x45\x61\x44\x8f\xcb\xcc\xec\ \xf1\xe0\xa9\x24\xc2\x92\x82\x72\x08\x82\x35\x12\x22\x43\x68\xcb\ \x3c\x88\xdc\x43\x93\x64\xc9\x9a\x1e\xf6\xc0\x62\xc2\xd3\x0d\x13\ \x37\x7b\x78\xb6\xe9\xb9\x73\x17\xa8\x51\xa3\x96\x8c\x02\x65\x14\ \xe9\x28\x5d\x4c\x74\x19\xdd\xa5\xab\xcd\x2e\xa7\x4b\x77\xb5\x71\ \x93\xa7\xcb\x92\x25\x5d\xbe\xa0\x0b\x01\xa0\x6c\xd9\x10\x19\xd2\ \xa6\x65\x26\xec\x97\xaa\x66\xed\xda\x31\x9b\xdb\xae\x99\x9e\x66\ \x19\x98\xe9\x69\xfb\x4b\x98\xdf\xbe\xa5\x7e\xcd\x6a\xa7\xb6\x59\ \xa9\x1b\x37\xbe\x2a\xfe\x7a\x23\xb0\xb0\x01\x90\xf9\xfe\x9a\x3c\ \x4b\x4f\x5c\x64\xcd\x66\xfd\x15\xd6\x0c\x6e\x67\xbb\x7a\x34\xf7\ \xdd\x3c\xab\xb2\x5c\x66\x0b\x0b\x0e\x3c\xe8\x72\xf5\x41\x8d\x1e\ \x15\xe6\x34\x73\x11\xe3\x32\x85\xcf\x60\x7b\x44\x27\xf0\x60\xce\ \x3d\x25\x4b\xb6\x88\xa9\xf3\xa7\x4e\x88\xbd\x11\xd2\xf6\xe0\x06\ \x16\xd0\x65\x25\x49\x7a\xc8\xe9\xf3\x27\xcf\x9f\x6e\x86\xba\x01\ \xba\x67\xbb\x50\x9e\x34\xdd\xfe\x18\x05\xc5\x24\xa8\x2e\x50\x4c\ \xad\x36\xed\xc2\x74\x17\xcf\x2e\x49\x47\xf1\xc8\xf3\xd5\x2c\x00\ \x6a\x6a\xd5\xaa\x2a\x54\xaa\x19\xb3\xfc\xf9\x31\x83\x0c\x64\xbf\ \x94\x52\x48\x63\x93\xf1\x27\x0c\x32\x6a\xe9\x71\xd8\x62\x8a\xdd\ \xf0\x8b\x1e\x90\x45\x26\x59\x29\x9c\xfd\x97\x41\x5c\x99\x69\x26\ \xcc\x2c\x9e\xd9\x55\xda\x66\x7e\x8d\xc8\x19\x32\xcc\xb4\x13\x91\ \x6a\x02\x3d\xb4\xe2\x41\xac\x2d\xa4\x50\x4c\x16\x21\xf1\x10\x6c\ \x12\x61\x14\x9b\x47\x32\x8d\x64\x12\x12\x9e\xac\xb1\x53\x54\x51\ \x79\x00\xcd\x33\x39\xda\x44\x13\x4f\x9e\x00\x19\x9c\x27\x3b\xb1\ \xe4\xd3\x2e\x54\x06\x55\xdd\x1e\x6b\x5c\x37\xa5\x71\x7b\x4c\x55\ \x1e\x2c\x53\x69\xc5\x04\x95\xe8\xed\xd2\x85\x56\x56\x79\x55\x56\ \x7d\x66\x75\x01\x60\x5a\xb3\xdc\x50\x88\x2a\x6f\xaa\x35\xe0\x64\ \xbf\x1c\x28\x67\x60\xfc\xfd\xe2\x5f\x5e\xc2\x1c\x08\x21\x00\x4b\ \x6c\xc1\x20\x32\x08\xec\xf5\x58\x5b\x8e\x31\x68\x67\x87\xb3\x04\ \x00\x22\x32\x1c\x7a\x58\xda\xa5\x26\x36\x83\x22\x6a\x2b\x12\xb4\ \x63\x41\x1e\x21\xf7\x92\x4c\xb5\x2d\x73\xdb\x91\xaf\xe9\x06\x11\ \x6f\x0d\xb1\xd4\x64\x93\xfe\xc4\x45\x85\x1e\x28\x6e\x38\xc4\x90\ \x4c\xd0\xfd\x06\x5c\x4e\x36\x2d\x13\x14\x78\x3c\x51\x59\xde\xaf\ \xdc\x55\xe7\xd3\x56\xe1\x8d\xb9\xcb\x4e\xe7\xb5\x47\xe5\xb3\xe3\ \x3d\xdb\x05\x7c\xf6\x01\xe0\x55\x17\x74\xbe\xa9\x4a\x17\x85\xcc\ \xa2\xa1\x86\x69\xb5\xb3\xd7\x16\x87\xc9\xb9\x67\x60\x7d\xcd\x42\ \x29\x32\xc2\x3c\xb8\x18\xa1\xbf\xd8\xd9\xd6\x00\x92\xe9\xe1\x68\ \x61\x9a\x81\xf8\x19\xa5\x02\x86\xa6\xef\x67\x99\x7d\x68\x99\x5c\ \xad\x7d\xe4\x91\x41\x2c\xee\xf8\xda\x6f\x25\xe1\x28\x9b\xa9\xb6\ \x21\x07\xd3\x4c\x4d\x3e\xe4\x89\x19\xb0\xe8\x22\x15\x7a\xb0\x5c\ \x61\x87\x1d\x57\x98\x61\xc6\xab\x36\x00\x77\xd3\x93\xc5\xb1\x74\ \x1d\x13\x52\xee\x54\xac\x75\x3d\x01\x15\x2c\x4f\x1b\x83\xa2\x31\ \xb4\x38\x53\x79\xe6\x12\xd5\x1a\x33\x06\xb8\x00\xb6\x23\x8c\x05\ \x93\xce\x32\xc0\xba\x7a\x50\xa8\x82\x9e\x7b\xe2\x49\xd9\x5d\xa1\ \xb5\x9b\xd8\xbb\x37\xe8\xa1\x16\x02\xf3\x0e\x80\xe7\x00\x40\x23\ \xb3\xd7\xbf\x77\x9d\xd6\x0e\x66\x00\x53\xda\xcc\x87\x9d\x21\xaa\ \x87\xa8\x03\x99\xa0\x85\x8b\x2b\xa2\x83\xb0\x42\x3a\x36\x44\x1d\ \x70\xb1\x21\x41\x9b\xfe\xc4\x13\xad\xda\xaa\x2e\x7b\x5f\xf1\x90\ \x4e\x1a\xa3\xf7\xd4\x15\x1d\xd8\xe1\x02\x90\x27\x79\x42\x53\x36\ \x26\xdd\xf4\xab\x73\x4b\xd2\xd4\x1d\x78\xdd\x05\x15\xd4\x50\xc3\ \x6e\x39\xe6\x51\xa0\xb4\x21\x15\xce\xce\xc2\xd7\x46\x17\xd5\x7e\ \x61\x07\x80\x40\xd7\xd5\x19\xa3\x16\xb4\xe5\x97\x30\x2a\x94\xc2\ \x18\xda\xf4\xa6\x2b\xe2\x2c\x05\x22\x06\xa1\xa1\x0d\x56\xd8\xd6\ \x16\x37\x2c\x98\x17\x32\x5e\xe7\x7b\x97\x5d\x9a\xce\x25\x60\xd9\ \x97\x7d\x08\x62\x68\xa5\x1c\xec\xe9\xa7\x9d\xb2\x36\x91\xa9\x1e\ \x64\xac\x0b\x2c\x48\x20\x09\xcd\x15\xbc\xf6\xe6\x9b\xc4\xdd\x7f\ \xbf\x4c\x47\x57\x40\xa9\x71\x0e\xe7\x3d\xb5\xcc\x33\x76\x3c\x33\ \xbe\xe0\x9e\x94\xec\x23\x44\xd6\xfc\xc6\x13\x4b\x96\xe3\x8e\x95\ \xca\xe3\x13\xef\x30\xa1\x0d\xc8\x12\x0f\x53\x0a\x57\x26\x32\x65\ \xa5\x3d\x63\x82\xcf\x55\x78\x66\x16\xfc\xd4\xe9\x4d\xed\xb0\x41\ \x29\x0c\xd4\x85\x0d\x52\x00\x4f\x5b\x28\x44\x5f\x3a\xe3\xaf\x7c\ \x79\x28\x4f\xbe\x63\x8c\x84\x1c\xc5\x8c\x01\x50\xa8\x2d\xf8\x40\ \x4c\x29\xf4\x20\x20\xe4\x7d\x6d\x7a\xa5\xb1\x17\x83\x6a\x88\x99\ \xa4\x69\x6a\x2f\xfe\x49\x7b\x61\x29\x24\xe6\x9a\x18\x75\xca\x35\ \x7d\x43\xc8\x74\x32\x06\x8b\xf5\xd1\x6d\x3a\xa2\x82\xc9\x45\xa0\ \xc1\x1b\x33\x9c\xa7\x89\x0a\xb9\x02\xe1\x6c\x36\x2b\x50\x78\x80\ \x0e\x76\x30\x81\xfd\x14\x72\x13\xa0\x78\x02\x1d\x1d\x71\x1c\xcd\ \xca\xe3\x38\xcb\x5d\xae\x3c\xe0\x91\xd2\x01\x77\xc1\x1d\x26\x64\ \xa5\x66\xed\x01\x05\x7b\xc8\x04\x95\x08\xaa\xc9\x3e\xd9\xb8\xe0\ \x9b\x98\xc1\xbb\x2e\xf8\xae\x4f\xbf\xf8\xe0\x84\x2a\xf3\x99\xa8\ \x49\x8f\x77\x29\x54\xe1\x84\x90\x87\x00\x7a\xe1\x03\x1f\x21\x4c\ \x4c\xf1\x10\x20\x17\xaf\xf9\xb0\x43\x02\x3b\x4d\x0f\x2d\x95\x43\ \x12\xce\x8e\x23\xa9\xa1\x1b\x11\x13\x96\x90\x87\x74\xaf\x22\x1e\ \x58\xdf\x44\xcc\xa0\x9b\x19\x39\xcc\x8a\xa0\x00\xdf\xf8\x1c\xa7\ \x8b\x1c\xd8\xac\x97\xa0\xc8\x81\x43\x9e\x21\x46\x83\xb4\xcf\x13\ \xe0\xf1\xc4\x15\x5c\x00\x8d\xfe\x45\x05\x2a\x26\x5b\x83\xe5\xb4\ \x34\x40\x99\x55\xc9\x71\x6d\x00\xdd\xc6\x46\xf1\x2c\xa4\xcc\x4a\ \x58\x63\x42\x0a\x9b\x08\xa5\x3a\x41\x06\xc8\x41\x85\x58\x02\x62\ \x3a\xb8\xc1\x52\xa8\xc0\x44\xc2\x80\x9a\x87\x02\x50\x97\x5f\x4c\ \xed\x06\x84\xfe\x52\xa7\x84\x8e\x76\x27\xe2\x69\x12\x31\x13\x22\ \x4c\xbf\x90\x87\x19\xe5\x6d\xaa\x87\x7c\x99\x9d\xa6\x72\x47\x2f\ \x1d\xd9\xef\x25\x6c\x53\x0d\x43\x90\x83\x04\x99\xb0\x64\x39\x32\ \xd9\x9b\xf9\x12\xc2\x2a\x33\xe4\x20\x07\x7b\x80\x48\xfb\x32\x86\ \x9e\xef\x35\x6b\x0f\x57\x78\x86\xf8\x76\x99\x8d\x21\x29\x13\x1d\ \xcc\x64\x8e\x54\x5c\xf5\x2b\x98\x41\x53\x9a\xc6\x51\x56\x79\xd6\ \xa0\x8b\x07\x76\x71\x9b\x79\x5c\x19\xb5\xec\xd3\x05\x74\xd4\xe9\ \x79\x9a\x8a\x4b\x3b\x54\x51\x0a\x6e\x89\x30\x76\xb5\x73\xcc\xec\ \xfe\xc5\x3b\x10\x31\xa3\x19\xf6\xd4\xe7\xd4\xd4\xb9\x05\x7e\x7e\ \x22\xab\x11\x2a\xde\xbd\x90\x27\x97\xb1\x7d\xad\x79\x35\xe4\x0b\ \xba\xe2\xf9\xc2\xd9\x41\xb1\x23\x10\x4d\xc8\x11\x21\xfa\x44\x8c\ \x89\x44\x64\x18\x83\x85\x19\x14\x56\x30\x2b\x02\xce\x46\x48\xd8\ \x03\x30\x6d\x96\x31\xf8\x59\xa4\x23\xf6\xb3\x58\x78\x80\xd3\x91\ \xf1\x09\x09\x2a\x2c\xc1\xe9\xca\xa4\x32\xac\xc5\x8a\x47\x2b\x97\ \xbb\x0a\x53\x8e\xe2\x53\x6e\x4a\x45\x63\xd7\x49\x0a\x05\xad\x55\ \x4e\xd6\x21\x83\x1a\xaa\x30\x06\xd1\x54\x31\x0b\x0d\x16\x22\x04\ \x6e\x31\xfe\x9a\x05\xb6\x10\x02\x77\xce\x82\xb5\x4a\x3d\xdb\x87\ \xcc\x66\x4f\x39\xf5\x0e\x31\x2b\x64\x46\x1c\x9a\x51\x0d\xe2\x45\ \xa8\x14\x47\x5b\x0b\x59\x53\xd4\x0c\x17\xea\x30\x2d\xc8\xcb\xdd\ \x5a\x3d\x29\x99\x8c\xa6\x52\x7b\xa9\x41\xd8\x4b\xb4\xd7\x23\xbd\ \xea\x84\x89\xba\x1c\xa3\x42\xe4\x66\x10\xbf\xee\xb5\x7d\xdf\x35\ \x2c\x49\x73\xe9\x10\xf6\x4d\xc4\x03\xd2\xb4\x88\x27\xa0\xc1\x4c\ \x4f\x78\x60\x4c\xba\x10\x60\xe6\x6a\x46\xc7\x20\x85\x27\x3b\xee\ \xb1\xe6\x66\x97\x52\x52\xcd\x52\x45\x63\x94\x65\xc2\x51\xcc\xb2\ \x04\x0b\xac\x8e\x75\xed\x40\x87\x1e\xb2\x51\x20\x1b\x08\xc3\x06\ \x05\x72\x8c\x2a\x54\xd1\x96\x42\x88\x70\x42\x70\x81\xae\x68\x6c\ \x00\x97\x59\x18\x48\x41\xbf\x08\xe1\x16\x26\x74\x35\xd1\x00\x77\ \x85\x69\x89\x83\x0d\x3b\xb9\x17\xc8\xd8\x0b\xba\x03\x9a\x9d\xf4\ \x82\x98\xb4\x76\xe9\xcd\x0c\x10\x11\x2f\x46\x0a\x56\x44\x55\x56\ \xf4\xae\xdf\x2d\x2c\x16\x3f\xb5\x1a\x8a\xd0\x66\x7c\x21\x79\xe5\ \xf7\x0a\x9b\x4b\x20\x77\x64\x22\xf6\xd5\x95\x35\x14\x32\x1c\x37\ \x7c\xb6\x73\x4b\xea\x29\x52\xdc\x43\x13\x69\x2e\x69\x28\x97\xcb\ \xa6\xfe\xe1\xb2\x32\x95\x05\x7e\x96\x4a\xba\xf8\xa3\xb5\xb2\xf1\ \xe0\x0c\xd8\x61\x0c\xc8\x40\x07\x35\xa8\xd1\x0c\x0e\xc7\xce\x2f\ \x18\xb6\xc0\x2f\x04\x9d\xa0\x10\x6c\x41\x05\xc2\x78\x8b\x86\x84\ \x26\xc2\x12\xb5\xcb\x40\x2b\xe6\xf1\x8d\xd3\xa2\x07\x7a\x8c\x8b\ \xab\xc9\x3d\x5e\xd2\xd6\xe5\xa1\xc7\x20\xe0\x50\xec\xda\x71\x66\ \x7e\x18\x9a\xc9\x64\x34\x8a\x0b\x63\x9b\xf9\xf2\x66\xd1\x8b\x8a\ \xac\x97\xf0\x73\x48\x6c\xb4\x7b\x10\x8c\xd5\xc6\x49\x49\xa6\xb2\ \x2e\x42\x2a\x38\x52\x05\x87\x24\x36\x42\x07\x90\xba\xb4\xc0\x9f\ \x00\xb0\x4b\x4e\x61\xca\x48\xca\x0c\x94\xed\xd4\x94\x4c\xa0\xe3\ \xe2\x1d\xcf\x13\xa6\x5d\xb0\x69\x09\x3e\x33\x41\x06\x4c\x80\x8c\ \x6c\x8c\x81\x1a\x5f\xe0\xd7\x5c\x36\x4c\x6e\x41\xef\xa2\x14\x21\ \x08\x81\x21\xd9\x99\x0d\xcb\xcc\x45\x0f\x79\x12\xe1\x86\x2f\xbc\ \xc1\xdd\xae\x2b\x0e\xc2\x65\x46\xa2\x92\x56\x8d\x18\x06\xa6\x1a\ \x28\xca\x80\x0d\x3f\x01\xb5\xdc\xc5\xd3\x51\xd1\x65\x64\xd4\x36\ \x7d\x17\xa3\xfd\xd8\x48\xab\x51\x22\x14\x65\xb4\xdd\x2c\x8a\xac\ \x22\x16\x11\x89\x20\x8c\x02\xb8\x53\x35\x96\x20\xbc\x89\x09\x2d\ \xfe\x31\x12\x32\xf0\xc2\xc2\x97\x80\x13\x5c\x48\xf6\xf6\x24\x24\ \xb4\xc0\x62\xb2\x22\x2c\x97\x14\xe8\x4d\x5a\x65\xae\x3b\xc5\xda\ \xdc\x78\x08\xec\xc0\xa5\x34\x6b\xb3\x54\x1a\x05\x83\xbb\x60\x01\ \x1e\x18\x23\x0f\xd9\x10\x4b\x84\xe5\xa2\x16\x3d\xa7\x56\xb5\xe8\ \xee\xc2\xa0\x9b\x6a\xc8\x51\x34\xcd\x40\xe7\xee\x02\x89\x25\x55\ \x0a\x0b\x27\x55\x2d\x73\x51\x5b\x85\x52\x7c\x83\x2d\x08\xe3\x13\ \x9b\x8a\xc3\x0b\x85\xe7\x97\x4c\x0b\x1c\x19\x39\x3c\x21\xd4\x42\ \x43\x2f\x68\x88\x2c\xc8\xaa\x5c\x8e\x4b\x56\xbd\xa3\x56\xeb\x55\ \x24\x27\x0f\x66\x8d\x24\x46\x45\x56\x4d\x6c\x0f\xeb\x7b\x48\x5e\ \x45\x52\x38\x5d\xb4\xb7\x7b\xb4\x79\x55\x70\x1e\x62\x0d\xc7\x79\ \xc9\x4a\x61\x9e\x55\x56\x9a\x9d\x39\x37\x48\x73\x4a\x78\xd4\x7c\ \x17\x41\xc7\x4d\x2a\x8d\xb6\x2c\x79\xd8\x85\x05\x54\x9f\x0d\x6a\ \x28\x55\x2d\x4b\x35\x46\x35\xf2\x90\xee\x52\x58\x40\x15\x7b\x46\ \xad\x0a\x92\x42\xa8\x7c\x8e\xa2\x10\xb1\x83\xcb\x52\x0b\xb4\xdb\ \xff\x20\x4f\xc6\x04\x1d\xc0\x07\xfd\x49\x81\x78\xe2\xdb\x6b\x5a\ \xeb\x0b\xbd\xe6\x35\xe9\x7e\xcd\x2e\x41\x82\xf1\xa4\x87\x1a\xfe\ \x22\xb2\x8f\xfc\x58\x64\x46\xea\xcd\x76\x6f\x95\xd7\x8b\xee\x41\ \x10\xe7\x31\xac\x46\x1a\x2b\xfe\xba\x5a\x19\x4a\x18\xc7\x18\x7a\ \x72\xa0\xcc\x56\xc9\xf7\x49\x9e\xb0\x06\x90\xee\xfb\x4c\x95\xbd\ \x11\xda\xa5\xa7\x25\x5c\x72\x1d\x78\x34\x0a\x7b\x34\x7a\xa0\xc3\ \x1e\x56\x31\x4e\x4b\x90\x0d\x81\xe4\x80\x36\x40\x0d\xe8\xe0\x3c\ \x1b\x92\x0d\xd5\x60\x01\xea\x36\x0a\x14\x40\x0d\xcc\x50\x67\x69\ \x21\x0c\x64\x41\x54\xaa\x40\x18\x79\xb1\x54\x1a\x54\x0a\xaa\x80\ \x22\x6a\x83\x3c\xc2\xa5\x07\xd5\x90\x62\xcc\x77\x34\xfa\xf6\x42\ \x93\x51\x21\x03\x50\x19\x04\x45\x21\x5a\xf3\x17\x27\xd6\x17\xcb\ \xa3\x28\xdc\x67\x24\xe2\xb3\x72\x7f\xa7\x6a\x09\x41\x7e\x18\x97\ \x64\xc0\xf4\x3d\x17\xf1\x10\x84\xc7\x2a\xdd\x53\x1b\xe9\xf3\x77\ \xb0\x70\x14\xc2\x14\x53\x2a\x31\x1d\xd1\x11\x39\xd4\xd1\x47\xc0\ \x21\x40\xd5\xf1\x2c\xed\xd1\x47\xcd\x06\x33\x51\x11\x74\xd1\xf6\ \x4d\x9b\xb5\x47\x4d\x51\x2d\xd6\x60\x67\x79\x81\x7b\x62\x83\x0e\ \xaa\xa0\x02\x16\x40\x7b\x5d\xa0\x02\x63\x60\x4e\xdb\x42\x41\xa5\ \xd0\x3a\xd4\x60\x01\x85\xb0\x0b\xbf\xb0\x29\x49\xf3\x09\xfe\xc2\ \x43\x01\xf8\x50\x0a\x5b\x40\x2e\xc2\xf0\x69\xd0\xf7\x82\xd2\xc7\ \x63\x9e\x94\x3b\x93\xc1\x28\x32\xc4\x56\xaf\x53\x1a\x41\x68\x3e\ \x44\x88\x57\x48\xe0\x1a\x53\x24\x11\x17\x47\x85\x53\xf6\x51\xea\ \x73\x65\x14\x15\x1b\x51\x86\x10\x82\x05\x3f\x17\x37\x2b\xe1\xe7\ \x01\xf0\x33\x12\x1a\x11\x39\x92\xc3\x32\xcd\x11\x1e\x66\x36\x25\ \x4c\xc1\x66\x01\xb6\x24\x2b\x03\x80\x4b\xf1\x40\xa3\x83\x1e\x67\ \x62\x7a\xf6\xd1\x80\xf9\xa1\x05\x24\xb8\x21\x7b\x96\x0d\x75\x48\ \x01\xc6\x60\x4e\x6a\x31\x06\x6a\xd2\x05\x7b\x08\x76\xed\x90\x0d\ \xa5\x90\x07\x93\x44\x56\x7a\x40\x01\xc4\x43\x2e\x8a\xf4\x41\x9f\ \xd0\x0e\x32\x46\x20\x2f\xf8\x18\x36\xa4\x83\x90\xb1\x88\xf4\x52\ \x2e\x00\xc5\x48\x01\x53\x19\x21\x43\x1b\x29\x95\x23\x17\x77\x77\ \xd0\xe0\x36\x76\xb7\x77\x25\x47\x13\x80\x97\x03\x15\xd1\x4b\x4c\ \x78\x65\x1a\x51\x51\xe8\x13\x79\x50\x82\x8a\xde\xd5\x2c\x48\xd0\ \x01\x5a\xa4\x31\xf2\xe5\x24\xf8\x27\x8c\x3d\x01\x1c\x6b\xe0\x09\ \x97\xa5\x47\x58\x41\x66\x6f\x34\x8c\xa4\xf7\x53\x54\x41\x26\x54\ \x62\x15\x42\x67\x1f\x6d\x20\x48\x97\x41\x0d\xd9\x60\xfe\x0c\xd9\ \x00\x34\xd6\x48\x16\x0d\xb6\x8d\x6b\x11\x88\x16\x60\x01\xfc\x24\ \x20\x08\x90\x4e\x84\x82\x0f\x90\xa1\x02\xbf\x00\x89\x03\xf2\x41\ \x6d\xe7\x42\xc9\xa7\x35\xd5\xd0\x76\x14\x62\x5c\x4b\x50\x08\x9c\ \x71\x36\x23\x62\x17\x3f\x16\x45\xae\x64\x51\x40\xf6\x8f\x5a\xf0\ \x63\xc9\x11\x7f\x79\x35\x65\x1a\xb3\x12\x7c\x93\x11\xe8\x63\x8b\ \xf7\xb5\x40\x7b\xc0\x78\xe8\xe1\x01\xcc\x74\x72\x2c\x61\x13\x0c\ \xf3\x2a\x4b\x32\x1e\x4c\xd0\x91\xfe\x25\x15\xc5\xe8\x14\x55\xf2\ \x7f\xd7\xd1\x14\x7b\x59\x26\x37\x63\x14\x43\x11\x74\xd5\x32\x0a\ \x5a\x00\x76\xb0\x27\x81\xa7\x55\x0d\xd5\x50\x5a\xd6\x98\x16\x26\ \xd0\x06\x3c\x43\x74\xaa\xb0\x8d\xcc\x80\x5a\xd9\x00\x19\x68\x87\ \x0c\x5f\xa0\x02\x89\x01\x00\xa5\x40\x70\x04\x87\x0c\x32\xd6\x6f\ \xf8\xf0\x0b\xd5\x30\x00\x04\xa7\x43\x7b\xb1\x35\x2a\x28\x0c\xf8\ \xf4\x15\xfd\x71\x55\x99\xd2\x0c\x7a\xd3\x84\xab\x76\x64\x18\x03\ \x11\x6e\xe3\x95\x0c\x81\x57\xb4\x91\x57\x2b\x81\x31\x82\xb0\x95\ \xb6\x34\x11\x0b\x51\x51\x34\x61\x5f\x7b\x00\x91\x8c\x17\x6b\x57\ \x40\x11\xec\x45\x97\x35\x81\x04\xd6\x00\x1d\xe6\xfe\x71\x14\x37\ \xc5\x1c\x9f\x23\x4e\x63\x06\x2c\x44\xf2\x97\x9c\xa5\x47\xd1\x76\ \x92\x39\xb3\x92\x66\x31\x0a\xda\x96\x17\x1c\x08\x8d\xd2\x88\x5a\ \x79\x90\x07\x38\x19\x99\x92\xc9\x03\x14\xd4\x06\x5f\xd0\x74\xd2\ \x98\x5a\xaa\xc9\x9a\x7a\xa0\x02\x5b\xf0\x06\xc8\x45\x70\x32\xf6\ \x55\x98\x24\x42\x96\x06\x8f\xaf\x79\x89\xf6\x12\x07\x03\xb0\x05\ \x8a\x51\x08\x03\x40\x63\x55\x45\x29\x78\x35\x8a\xa1\x42\x11\x7a\ \x85\x04\xe4\x85\x04\x15\x11\x8a\xbc\x91\x51\xd3\xb1\x78\xf6\x65\ \x45\x16\x01\x12\x10\x93\x1c\x6d\x34\x1d\x82\x35\x65\x84\xf3\x51\ \x23\xe1\x51\xb9\xb4\x90\xcc\x09\x1c\x27\x51\x97\xed\xb1\x15\x8e\ \x33\x25\xf0\x81\x15\xe4\xb1\x32\x9c\xe3\x8b\xde\x94\x6c\x63\x88\ \x33\x48\x51\x2d\x5d\x50\x67\xa8\x85\x5a\x16\x60\x0c\xa7\x65\x01\ \x79\xe8\x81\xf6\xb9\x6d\xa8\x53\x16\x16\x60\x54\x76\xf0\x05\xa8\ \x35\x00\xd5\xc0\x88\x88\x46\x70\x90\xe1\x98\xce\x55\x5c\x88\xb1\ \x05\xd5\x60\x2f\x14\xa2\x9a\x7d\x91\x62\x18\xd2\x99\x03\xb0\x55\ \x5b\x30\x18\xfd\xd2\x69\x73\x91\x51\xc8\x29\x8a\xb6\xe6\x9b\x06\ \x31\x1d\x1b\x65\xa3\x19\xd5\x24\x32\xc1\x84\xfe\x19\x11\x4b\x47\ \x38\x3e\x39\x61\x11\x39\xf1\x3d\x2c\xe3\x3d\xbf\x54\x58\xcb\xe2\ \x10\x36\xd2\xa2\xfa\xe7\x38\xcc\x82\x9e\x3b\xb5\x07\x56\xb1\x66\ \x59\x21\xa4\xd7\xf1\x2b\x46\x0a\xa4\xc2\x22\x2d\xa2\x45\x54\x6a\ \x61\x07\x7a\xe6\xa4\xaa\xa0\x67\x2a\xd0\x05\xd5\x40\xa5\x55\xfa\ \x05\x6d\xe2\x6d\x19\x80\x0e\x5f\x60\x0c\x14\xf2\x82\xee\x24\x0c\ \x5f\x30\x36\x9f\x40\xa6\xe4\xc8\x18\x14\xa0\x07\x6a\xc7\x07\x8b\ \x78\xac\xa5\x90\x9a\xae\xf9\x0b\x11\x22\x0c\x97\x11\x30\xed\x62\ \x03\xbd\xfa\x7d\x7b\x65\x30\x1e\x60\x03\xb4\x44\x45\x11\x77\x1b\ \x48\xc4\x11\x43\x86\x10\xb0\xb0\x12\x17\x41\x11\x53\x94\x45\x37\ \xb2\x96\x2e\x8a\x71\x07\x89\x72\x26\xe5\x4b\x82\xd0\x12\xc3\x61\ \x39\xf9\xd7\xa3\xf8\xe5\x1e\xc6\xb1\x06\xc7\xa2\x59\x4b\xc1\x1e\ \xca\x92\x60\x65\xa8\x60\x58\x51\x73\x46\x11\x2c\x66\x22\x4e\xf6\ \x31\x0a\xf5\x39\x06\x5c\x6a\x0c\x29\xf8\x05\x18\x58\x02\x55\xfa\ \x26\x76\x60\x0c\x3c\xd3\x60\x46\xa5\x67\x0c\x1b\x6e\x9f\x49\x01\ \x2a\xf0\x09\x2d\xa8\x02\x1c\x4b\x01\xf7\x44\x01\x2e\xc4\x07\x85\ \x40\x2e\x81\x41\x2e\xbf\xc0\x4f\xec\x22\xfe\xa1\xea\x34\x43\x66\ \x75\x42\x06\x12\x02\xd4\xf0\x63\xc7\xd9\x1a\x06\x11\x65\xa7\x72\ \x3d\x5a\x00\x90\x0d\xc1\x11\x82\x23\x38\x7a\x83\x71\x17\x61\x57\ \x12\xb3\x90\x59\xd6\x46\xea\xfa\x3e\x16\xe9\xa8\x84\x85\x11\x42\ \x62\x32\xf4\x4a\x15\x1b\xd9\x91\x41\xd1\x66\x70\xc6\x39\xee\x61\ \xaf\x75\x14\x3f\xf1\x61\xa4\x68\xa2\x1e\xf0\x71\x7a\x4b\x80\x0e\ \x1e\xe8\x74\x62\xe1\xb0\x79\xb0\x9f\x11\x0b\x20\x5a\x40\x1f\x5d\ \xa0\x9f\x63\x60\xab\xd9\xb0\x20\x02\x32\x00\x44\x49\x70\x5f\xa0\ \x7c\x8a\xe8\xb2\x88\x91\x9a\xe4\xa8\xb2\x5a\x93\xac\xee\x38\x20\ \x44\x89\x18\x52\xa9\x29\xba\xd5\x61\x37\xf0\x06\xd6\x32\xb4\xc7\ \xc9\xad\x0c\x11\x13\x38\x22\x51\x00\x59\x51\xb7\x36\x64\x5a\x59\ \xa2\x8e\x47\x51\x0d\x83\x91\x96\x8a\x60\x08\xf9\x3d\x31\x1a\x4c\ \xe4\x21\xb5\x9e\xd0\x04\xc0\x61\x0d\xed\x33\x26\xda\x61\x39\x1d\ \xa9\x2c\x6c\x48\x80\x54\x0b\x1e\x65\xc8\x59\x5f\xbb\xaf\x54\x81\ \x40\x3a\xa3\x9e\x15\xe4\x81\xed\xc0\xa5\x5c\x5a\x87\x2a\xc0\xb6\ \x6d\x9b\x1f\x25\x70\x3a\x44\x07\x6e\xa8\x65\x0c\xac\xf9\x05\xaa\ \xb0\x9a\x7b\xab\x7c\x2a\x76\x4f\x8d\xfe\x08\x5c\x2b\x36\x76\x7e\ \x61\x2f\xd1\xb7\x56\x29\xe8\x99\xaa\x50\x20\xbd\x47\x28\x5d\x60\ \xb3\xdd\xe7\x29\x94\x7b\x30\x72\x93\x3d\xdf\x27\x72\x4d\xa8\x37\ \xe8\x6a\x51\x36\x70\x1b\x35\xeb\x09\xd0\x91\x91\xcf\xd4\x4b\x54\ \xa1\x57\x89\x9a\x7e\xd0\x04\x39\x2d\x50\x51\xb5\x72\x05\x2d\x80\ \x4c\xe0\x34\x14\x56\x2b\x1e\xba\x6b\x1d\x5f\xc6\xb5\xdd\x01\x0b\ \x2a\xa9\x14\x01\x7b\x14\x43\x91\x26\x47\x41\xb6\x66\x0b\x76\x3f\ \x23\xbc\x77\x68\x01\xf5\x79\xbc\x76\x26\xa5\xa3\x90\x07\xb9\xa7\ \x0a\x0e\xab\x02\x2a\x30\x00\xaa\x20\xa6\x2f\x48\x8e\x5b\x05\x5c\ \x5c\xb5\xb2\x03\xc0\x07\x59\xe3\x5c\xd3\xe7\x5c\x64\xc5\x2e\x4d\ \xf5\x2e\x00\xf0\x7d\x29\x2a\x8a\xb1\x34\x5e\x14\xb7\xad\xc2\xb9\ \x78\xbd\x66\x57\x2e\x6a\x8b\xb6\x81\x13\xce\x79\x90\xa3\xab\x57\ \x17\x13\x78\x06\xc9\x24\xf3\x25\x05\xcc\xb1\x07\xac\x6b\x0d\x04\ \x2b\x2c\x58\x72\x5f\x3a\x73\xba\x57\x0b\x67\x64\x98\x39\x00\x1b\ \x1f\x4a\x21\xc1\xa1\x73\x40\xdc\x34\xb6\x07\x3b\x06\x75\xf6\x33\ \x73\x01\x93\xe8\x66\x0c\xa8\x00\xc2\x00\xf2\x05\x5d\xf0\x06\x5d\ \xc0\x03\xaa\x90\x74\x1b\xa6\x07\xfe\x5f\x00\xc8\x5e\x2a\xc3\xbf\ \x10\x02\xb3\xf9\xc2\x5b\xf0\x41\x3b\x28\xc3\x36\x56\x89\x4a\xb9\ \x2e\x4c\x15\x9a\xe3\xa4\x44\x78\x25\x23\x76\x13\x45\x2f\x31\x2a\ \x66\x80\x7e\x9b\x6c\x33\x66\x20\xb4\x79\x35\x1d\xa2\x1c\x4b\x41\ \xbb\x6c\x26\xb3\x24\x85\xf5\x3d\x23\x53\x51\x55\x28\x78\x41\x41\ \x12\x5b\xd6\x9c\x48\x20\x05\x48\x00\x7a\x70\xe6\x06\x41\x12\x41\ \xc1\xe8\x8b\x10\x64\xbb\xc1\x12\xb0\xc9\x76\x26\x73\x74\x26\x57\ \x6a\x16\x21\xb0\x3a\x0f\xf6\x33\xc7\x63\x0c\xd3\x62\x0c\xed\x69\ \xc7\x69\xf1\x0c\x21\x60\x80\x7c\x5c\x02\x7a\xe6\x28\xc1\x5b\x83\ \x62\xea\xb2\xf9\xc4\x18\xf8\x20\x0c\x59\xf0\x18\x6c\xfa\x18\xfc\ \x24\x2e\xf4\xf2\xbd\x7d\x06\x56\x6b\x52\x1f\x4e\x58\xc9\x11\x97\ \xad\xe4\xd5\x7e\x1b\x75\x72\xa7\x08\x52\x18\xb1\x78\x17\x51\x32\ \xb5\x72\x46\x2e\xe0\x2b\xc3\xa2\xb4\xde\x93\x03\x4c\xd0\x84\xdd\ \xe3\x4b\x55\x66\x1c\xf3\xea\x79\x04\x5c\xcb\x42\xf1\x2c\x65\xd6\ \xaf\x40\x81\x53\x4d\xd1\xcb\x65\x78\x15\xb9\x9b\x6c\xee\x91\x4d\ \xc4\x5c\x2d\x6d\xf0\x31\x0f\x86\x0e\xa9\xaa\x5a\x1d\xa4\x0a\xb0\ \x7a\xbc\x26\x10\x02\x7a\x4c\xfe\xc2\xd9\x60\x54\xf9\x81\x0c\xd5\ \xd0\x7c\x80\x2c\x0c\x5b\xb0\xce\x15\x2b\x21\x6d\x91\x04\x8b\x92\ \x9a\xbf\x90\x05\xe1\xc2\x2e\x69\x6a\x43\x02\xca\x80\xf5\xb1\x72\ \xa0\x98\x1c\x3b\x9b\x3d\x96\x0c\x0d\xad\x6c\x52\xaa\x6c\xbf\x18\ \x83\xae\x40\x12\x15\x6e\xc0\xad\x81\x95\x4c\xd2\x84\x31\x08\x59\ \x23\x0f\x41\x52\x06\x49\x2c\x1c\x69\x32\x95\x77\x2c\x10\xfd\x79\ \xc2\x82\xcb\xe1\x11\x74\x04\xf6\xba\xc1\x82\xbb\x40\x1a\x80\x66\ \x62\x26\x4a\x4a\x0d\x0f\xa6\x05\xd1\x78\x87\x66\xa2\x9f\x25\xdd\ \xb6\x76\xc0\x03\xd3\x12\x02\x49\x47\x93\x39\xb6\x9a\x11\x8a\x4f\ \xd5\x72\x03\x24\xcb\x07\xe8\x42\x20\x42\x49\x43\xfd\xb2\x69\x63\ \xf3\x05\xcc\x4a\xb6\x8e\x0b\x00\x78\xc5\xbf\x7b\x67\x3d\x5a\x40\ \x5e\x3e\x1b\x1b\x24\x35\x65\xc3\xb2\x44\x84\x5a\xcb\xe7\xc1\x04\ \xf3\xf5\x0c\xad\x3b\xd0\xce\x49\x38\xbd\xa4\xd5\xee\x13\x4c\x08\ \x06\x1e\xd9\x39\xaf\x61\x7d\x1d\xa2\x53\x59\x67\x98\x5f\x5d\xec\ \x13\x5e\xeb\x59\x3d\x71\x40\x6c\x8d\xbb\xcf\xa2\xcb\x72\x06\x00\ \xa3\xe0\x06\xd6\x20\x81\x7a\x76\x87\xe2\x04\x16\x24\x0d\x20\xc8\ \x0c\x87\x91\x69\x07\xd5\xfe\xe0\x15\x7e\xfd\x05\x73\xd1\xd2\x68\ \x47\x21\x14\xa0\x18\xf6\x71\x03\x42\x69\x49\x2b\x86\x27\x85\xfb\ \x8e\x3a\x74\x94\xe3\x54\x2d\xe1\x1a\xae\x23\x47\x78\x99\x9d\x5d\ \x13\xd5\x58\x81\x95\xd5\x04\xb9\x6c\x57\x74\x11\xd9\x40\x6c\xe5\ \xe1\x11\x3d\xda\xc5\xf0\x97\xd5\x52\x68\x45\xa8\x38\x3a\xb5\xf2\ \x72\x78\xa9\x46\x9c\xa3\x2c\xb5\x22\x4d\x56\xb1\x91\x95\x53\xc6\ \x69\x7c\xbb\x17\xcd\x73\x19\x6d\x26\xc3\x4d\xdc\x71\xeb\x06\xc6\ \x60\x03\xa7\xb3\x18\xa3\x60\x0c\xcf\xfd\x60\xc8\x9c\xd7\xce\xcd\ \x0d\x6f\x00\x16\x46\xf7\x05\x28\x8e\x3c\x28\x6e\x2f\x7b\xcb\xcd\ \x6b\x22\x21\x9f\x86\x35\x30\x18\xde\x9d\x29\x69\xd3\xfb\x94\xe7\ \x6d\x1f\xba\x80\x7e\x1d\x2a\x57\x15\x07\x57\x12\x61\xa8\x4a\x04\ \x5e\xf1\x7b\x31\xfe\x6d\x1e\x50\x91\x0d\xcb\xd4\x3e\x66\xc6\x91\ \x08\x66\x58\x40\x76\xa2\xc0\x04\x3f\x4c\x51\x1e\xb7\x58\x46\xbb\ \x5b\x33\x00\xb4\x13\xbf\x54\x1e\xbf\x31\x25\x12\xcc\xb5\x53\x92\ \x6c\x4e\xb1\x47\x15\x6c\x98\xd5\x42\x41\x4b\xb0\x0b\xa9\x57\xaa\ \x60\xe1\xcc\x1f\xee\xd1\x1f\x53\xa5\xdc\x70\x2d\x66\x92\x07\x16\ \xe0\x98\x2a\xd0\x94\xfe\x9f\x80\x88\xa0\xb9\x26\x84\x62\xd8\x56\ \x93\x01\x10\x1a\x28\xc0\x95\x5c\x5e\x23\x3b\x49\xf9\x55\xa1\x59\ \x2d\x66\xf1\x3e\x83\x57\x96\xa2\x9c\x4a\x15\xb5\x90\x34\x42\xe4\ \xb5\xf1\x90\x07\x66\x1e\x6c\xb4\x11\x37\x91\x13\x6b\x20\x65\x9f\ \xd5\x24\xf1\xfd\x73\x5f\x16\x4d\x58\xfc\x2b\x5b\x7b\x15\x22\x39\ \x25\x65\xfd\x79\x57\x9b\x6c\xc6\x31\xe6\x6c\xcd\x66\x67\x0e\xd7\ \xcb\xc8\x7b\xc4\x8d\x40\xc5\x6c\x2d\x74\x2c\xe7\xc0\x5e\xa5\x76\ \x90\x0d\xd3\xac\xc7\x5f\x51\x5b\xe8\xf6\x0b\x2a\xe0\xbc\xb4\x43\ \xd8\xfa\x34\x9a\x76\x42\x21\x31\x54\x76\x83\x9e\xe8\xa3\xb1\x28\ \xb4\x23\xa1\x8e\x6e\x16\x2b\xf1\xae\xb4\xd4\x24\xa1\x62\x5e\x05\ \xb3\x3d\x19\x51\x8a\x16\xf9\xbe\x82\xc5\x45\xa0\x35\x12\x1e\x90\ \x0d\xd0\xa1\x9d\xcb\xd6\xbf\x16\x19\x1c\x2f\x7a\x1e\xa2\x5b\x66\ \xec\x5e\x12\x6b\x44\x15\x4b\x81\x39\xca\x62\xaf\x96\x25\x66\x48\ \x81\x1d\xf9\x2a\x4e\x9c\xb5\x47\x07\x94\x26\xba\x5e\x16\x5d\x90\ \x07\x6d\x20\x74\x06\x98\x81\x6b\xd2\x06\xc6\xa0\x3a\xc0\xee\xd1\ \xc2\x1e\x05\x79\xbc\x92\x5f\x91\x87\x28\xfc\x0b\xc6\x80\x88\x21\ \x50\x1f\x85\xa2\xfe\x9a\x83\x2e\x63\x6b\x5a\x6f\x07\x15\x6a\xb3\ \x43\x2f\xc1\x7a\x7a\xd5\x52\x7e\xec\xee\x44\xd3\x49\xcf\xd5\xda\ \xad\xbc\x99\xa8\x58\x1d\x52\xae\x38\x3a\x08\x86\xae\x10\x13\x13\ \xb3\x61\x39\xcc\x02\x15\x23\xc3\x4b\x8d\x17\x4c\x98\x13\x1e\xf0\ \x75\x66\x67\x38\xb0\x04\x44\xb0\xb3\x5e\x40\xe1\x84\x14\xda\xb1\ \x1d\x68\x2d\xaa\x62\x22\xb6\xa7\xd7\x05\x4d\xb0\x06\x5d\x01\x1f\ \xd3\xa2\x18\xd3\x62\x01\x74\x76\xf1\x73\x6e\x9f\x76\x50\x02\xd3\ \xe2\x15\x42\x97\x87\x7a\xd0\xbc\xc2\x50\x0d\x41\x4d\x41\x5d\xf0\ \x88\xa6\xe9\x35\x89\x22\x0c\x8a\xec\x42\x89\x12\x19\x7f\xa6\x0a\ \xf3\x38\x35\xdb\x5e\x16\x19\xa5\xae\xa7\x32\x11\xaf\xb8\x07\xe2\ \x07\x51\x22\x87\xad\x2c\x41\xba\xb7\x88\xe4\x50\xb1\x6b\xb1\xb4\ \x90\x49\xac\x13\x9a\xdf\x4b\x6c\x64\xe4\x4f\xbe\x0b\x39\xb0\x2c\ \x6e\xc4\x1d\xd4\xb1\x32\x3a\xd5\x39\x27\x09\x15\xd5\x61\x1d\x68\ \xc8\xb5\x0d\x0d\xcc\xe0\x14\x41\xa5\x5a\x16\xbb\xb0\x06\xd6\x20\ \x1e\xd3\xb2\xf0\x6b\x9e\x07\x58\x80\xf6\x22\x2e\xb1\x4d\xd0\xf6\ \xea\xd6\x05\x21\x90\x82\x63\xf0\x09\xc6\x40\x01\xe8\x46\xd8\x81\ \x6e\x3c\xd0\xfe\xe7\x42\x5a\x03\x19\xd6\xee\x18\xd7\x2e\xf8\x22\ \x2b\xd4\x6c\xc2\x9b\x18\x77\xb4\xde\xb3\x95\xab\x61\x4c\xf7\x7c\ \x71\x84\x43\x1b\xa6\xc2\xe9\x8d\xda\x12\x18\x31\x1b\xea\xaa\xda\ \x9d\xeb\x38\x25\x65\xef\xf0\x83\x39\xdc\xd1\xa3\x2e\xe3\x1c\xa7\ \xdf\x6c\xa3\x13\x60\x54\x0f\x60\x64\x32\xa4\x73\x04\x9e\x00\x31\ \x0a\xd4\xae\x36\x4c\xf2\xb4\xd9\xb5\xab\xcb\x92\x25\x00\x00\x2c\ \x69\xd3\xa4\x49\x9b\x2e\x15\x1b\x3a\x64\xd8\x25\x8f\x31\x13\x76\ \x3c\x7e\xb4\x93\x41\xe4\x48\x92\x25\xed\x34\x79\xa3\x31\xcf\x4a\ \x0b\xd4\xbe\x7c\x2a\x75\x63\xc9\x8d\x37\x32\x1d\x02\x78\x33\x20\ \x4e\x06\x04\x03\x84\x0d\x00\x0a\x54\x8f\x9e\x01\xbf\x4a\xfd\x42\ \x2a\xcc\xc6\xaf\x9f\x45\xb7\xdc\x04\x70\x63\xcb\x0d\x99\x0d\x97\ \x99\xc1\x0a\x4b\x10\x56\x68\x5d\xaf\xea\xd2\x05\x0b\x49\x57\x2d\ \x5a\xa0\x21\x41\x8b\xd6\x83\x99\x3d\xb0\xcc\xc0\x82\xeb\x61\x99\ \x87\xb6\x4c\xf6\xec\x71\xe3\xd6\xc3\x58\x68\x57\xef\xc2\xda\xc3\ \x84\x09\x60\xb0\xba\x3c\x21\xf1\x04\x0b\x14\x28\xb0\x8b\x0b\x0b\ \xb6\xeb\x49\x32\xde\xc0\x77\xdd\x08\x4e\xc8\xc4\x4d\xe0\x36\xa0\ \xba\x64\xfe\xbe\xec\x46\xb4\x60\x84\x9f\x05\x8f\x46\x38\x4a\xb5\ \xea\x5d\x9a\x49\x2b\x1c\x75\x73\xc9\xae\x3c\x4c\x2a\x5a\x84\x3a\ \x6a\x63\x89\x67\x20\x3d\x96\x04\x6e\xb2\x49\x45\x1e\xc6\xb2\xb9\ \x54\x65\x2c\xc4\xc3\x8c\x0c\x31\xfe\xfa\xd2\x0e\x99\x1e\x61\x2a\ \x7e\x09\x9d\x4e\x5d\x18\x53\x61\xdd\x91\xaa\xe8\x4e\xe1\x06\x54\ \x7c\x9f\xaa\x36\xc4\xfa\x16\xae\x19\x0f\x5d\xa1\xad\x15\x14\x76\ \x19\x59\x68\x57\xe6\xca\x45\xe2\x61\x2d\x5c\xfe\xfa\x97\x55\xbe\ \xab\xad\x3d\x96\x19\x0b\x89\xb9\xde\x12\x10\xae\xb6\xc2\xf2\x40\ \x32\xc5\x06\xd2\x05\x42\xb0\x76\xd1\x25\xb2\xc9\x42\x0b\x50\x30\ \x5d\x0a\x72\x2d\x35\x82\x20\xdb\x4c\xb4\xcb\x12\x02\xa5\x8d\x36\ \x44\x2c\x0d\x14\xd5\x06\x2a\x48\x34\xd8\x2e\x02\x60\x94\x10\x0e\ \xea\xc2\x44\x8a\xa0\x0a\xc1\x98\x2f\xa2\x40\xc5\xb7\x90\x82\x03\ \xd2\x0e\x1e\xde\x08\x61\x0d\x74\xc6\x40\xf2\x0b\x63\xde\xb8\x68\ \x89\x10\xa6\x72\x68\x0b\x63\x90\xe9\x09\xa8\x6a\x7e\xa9\x66\x00\ \x04\x9a\xa1\x8e\xa9\x01\x66\x99\x45\x15\x55\x84\x39\x4a\x98\x6a\ \x4a\x71\xce\x21\x0a\x3e\x61\xc8\xb9\xf4\xd4\xc3\x8a\xaf\xaf\x72\ \x80\xfe\xa5\x3d\x68\xcc\x42\x22\xbd\xbd\x96\xb9\xca\x2d\x58\xc2\ \x32\x63\x2e\x01\xe9\x1a\xb4\xc0\xab\xd8\x42\x10\x30\x58\x98\xa8\ \xb0\x41\x0f\x98\x70\x6c\x97\xc5\x72\x90\x74\xa0\xc8\xac\xf1\xa4\ \x32\x58\x42\x64\x42\x52\xd3\x98\x40\x28\x21\x51\x4f\x74\x63\x8d\ \x3d\xd6\xb8\x0c\xd4\x81\x5a\xeb\x70\x97\xd5\x54\x6b\xd1\x0d\x57\ \x55\xbb\x49\x37\x37\x0e\x6a\x83\x87\x26\xf2\x88\xed\xa1\x3c\xb2\ \xf9\x22\x1b\x6e\x7c\x04\x12\xc8\x54\x16\x6a\x23\x0a\x74\x96\x2d\ \xc1\x98\x52\x16\x72\x28\x84\x5f\x54\xe8\x42\x26\x0a\x82\x02\x0f\ \x28\xa4\xf4\x68\x06\x19\x9f\xba\xeb\x0e\xcc\xed\x54\xf9\x72\x80\ \x2d\xd2\x5c\x62\x8b\x6a\xda\x74\x68\x3d\xb7\xd2\x2b\x50\x3d\x06\ \xef\x34\x0b\x9a\xb7\xb0\x22\x30\x4f\xc0\xcc\x00\x6b\x40\x42\xf7\ \x20\x34\xae\xf9\x0c\x34\xc3\x06\xb6\xe0\x1a\x6c\x51\xc0\xee\x62\ \xb4\xd2\x08\x07\xa2\xd4\xb1\x3d\x0e\xf3\xc4\x03\x4e\x35\x5c\xed\ \xc3\x50\x45\x25\x68\xb3\x26\x28\x6b\xc2\xc5\x84\x4c\xcc\xc3\x0d\ \x84\x54\xcc\x58\x33\x93\xbb\x18\x85\x5d\x88\xf2\xd8\xb5\xe4\x35\ \x86\xbb\x28\x84\x26\x8c\xc9\x83\x87\x0e\x40\x2a\x16\xc8\x28\xba\ \xfe\x00\x20\x84\x28\x76\xb4\xa0\x8d\x10\x5a\x66\xe8\x8d\x5f\x8c\ \x51\xe1\xdc\x1b\x42\xa0\x80\x82\x52\xa4\xbe\x6e\x80\x4f\x86\xc2\ \xba\xa8\xa4\xc0\xc5\xfa\x0b\x34\xd1\xad\xea\xa6\x7b\xd7\x83\x37\ \x4f\x7e\x05\xa9\x93\x2c\x2d\xf2\x7b\x37\x5f\x0f\xfc\x04\x2b\xd0\ \xff\x16\xf5\xc0\x54\x46\xcd\x28\x30\x3f\xb6\xda\x5a\x34\x30\xfe\ \x16\x7c\x18\xe2\x5d\x72\x58\x6c\xc5\x89\x27\xfb\x4b\xc3\x84\x46\ \x49\x48\x44\x51\x3f\x8b\x15\xaf\x90\xf7\xf8\x58\xd6\x51\x20\x17\ \x2d\x35\xd5\x30\xdf\x43\xf3\x36\x67\x83\xf9\xd6\x52\x27\xea\x75\ \x89\xdb\x78\xf0\xad\x67\xe0\x4e\x6a\x28\x04\x6b\xbe\x68\x22\x84\ \x85\x98\x94\xb1\x14\x0b\x54\x78\x56\xa6\x1b\xba\x78\xb2\x10\x7c\ \xb8\x1b\x60\xa8\xe9\xbe\x35\xea\x28\x55\x66\x41\x26\x3b\x7c\xd8\ \xc5\x08\x2a\x00\xf8\x7b\x33\x7a\xb8\xe6\x45\xa7\xde\xb5\x02\xe5\ \x6b\xec\xb8\xd0\xda\xa3\xd1\xbf\x74\x19\xf0\x2c\xbf\x10\x56\x74\ \x51\xc8\x74\x91\x54\xa0\x81\x18\xab\x74\x45\x26\xea\x0e\x10\xaf\ \x4e\x29\x54\x68\x17\x11\x41\xfd\xec\xb3\x92\x45\x0c\xad\x09\x4f\ \x42\x66\xc2\x6a\x48\x05\xaa\xcb\x09\xa4\x35\x95\x63\x19\xcb\xfe\ \xda\xb4\x0b\x1e\xdc\xaa\x64\x4d\x58\x43\x1e\x80\xf6\x90\x87\x84\ \x00\x0b\xa9\xfb\x91\xea\x32\x60\x87\x3c\x34\xa4\x0b\xd9\xd8\xd5\ \x1b\x1e\x72\xb9\x10\xa8\x20\x04\xb9\xa3\x09\x43\xa8\xf2\x86\x2d\ \x1c\xe5\x4a\x3f\x19\x1e\xb8\x90\x62\x94\xe0\x79\x6b\x00\xc8\xf8\ \xc5\x78\x9c\xe7\xbc\xac\xdc\x4b\x4f\x59\x79\x97\x5c\xdc\x73\x16\ \x7c\x15\x08\x7a\x6d\x7b\x5b\xa3\x3c\xc1\x28\x06\xa9\x45\x5e\x61\ \xe1\xdb\x60\x2a\x84\x3e\x94\x2d\x26\x21\x84\x5b\x0d\x28\xec\xc2\ \xb0\x0c\x41\x86\x20\xa4\x32\x99\x42\xba\x50\x22\x30\xd6\x26\x34\ \x6b\x30\x95\x1b\x16\xc2\x38\x37\x84\x2c\x35\x9e\x69\x4d\x1b\x6d\ \x53\xc0\x96\x8d\xe2\x44\x31\x93\xc8\x4a\x90\x86\x91\x3c\x58\x83\ \x58\x19\xec\x59\x37\x26\x58\x24\x63\x84\x01\x68\xa6\x0b\x81\x05\ \x9e\xd5\x26\xaa\x9c\x67\x77\x5b\x98\xe1\x4f\x88\xb2\x9d\x9f\xcc\ \x82\x92\xc8\xe8\x16\x50\x90\x51\x8d\x73\xed\x10\x2a\xd1\x7b\x13\ \x7c\xa0\xc7\x95\x3b\xf5\xc5\x2d\x03\x7b\x4b\x7c\x14\x94\x1e\xc1\ \xc0\x62\x32\xa0\xc8\x81\x2e\xf0\x76\xa8\x3f\xc1\x72\x30\x77\x99\ \x50\x61\xda\x17\xa9\xc2\x09\x44\x17\xa9\xda\x62\x60\x20\xfe\x03\ \x2a\x95\x81\x0a\x36\x9f\xb1\x1f\x8a\x48\x75\x2a\x54\xb5\xa1\x65\ \x07\xc4\x8b\xab\x58\x96\xcc\x26\xd8\x26\x7f\x4b\x68\x59\x1b\x60\ \xd6\xc0\x06\xde\xc8\x39\xd8\xe4\x41\x3e\x7c\x14\x12\x40\x06\x47\ \x48\x37\xc9\x43\x14\xd6\xc0\x83\xdb\xb4\xc1\x02\x12\xfc\x5c\xd2\ \x52\xb2\x85\x2e\xb4\x30\x92\xc1\xfb\x96\x30\x2c\xc9\x94\x66\x30\ \x43\x3a\xc2\xe3\xa4\x27\x3f\x99\x9e\x77\x61\x65\x3f\x68\x83\xde\ \x7c\xcc\xb2\x0c\xbd\x74\xe5\x2d\x60\x71\xd7\xf7\x00\x96\x18\xc7\ \xb0\xe7\x7a\xdd\x73\x8c\xa2\xa8\xa8\x45\x8c\xa9\xc8\x31\xbd\x1c\ \x05\xf8\xfe\x24\x18\xcb\x34\xec\x8b\xa2\x0b\x55\x02\x3b\x96\x39\ \x6d\xb6\x11\x8d\x21\x9b\xd5\x1d\x2d\x37\xc6\x2e\xb4\x51\x34\x97\ \x83\x8d\x6a\x42\x60\x53\x5d\x49\xb0\x56\xb7\xc1\x42\x37\xc6\xf9\ \x9b\x72\x92\xe4\x19\x13\xec\x82\x35\xd0\x11\x85\x6a\xc8\x8e\x77\ \x16\x60\x9a\xec\xa8\x52\xad\xa7\x4d\xad\x14\x57\x9d\x96\x99\x24\ \x09\x2e\x70\xcd\xa2\x1d\x22\x41\xc6\x27\xb4\xf4\x35\x81\x3a\x44\ \x7a\xf0\x32\x43\x7c\xc2\xb2\x9e\xf9\x74\x05\x09\xdb\xbb\x02\x56\ \x72\x10\x4b\xfe\x4c\xcf\x42\x7b\xa8\xa8\x7e\x08\x3a\xfe\x57\x88\ \x62\x14\x42\x0d\xab\x22\x89\x50\x16\x52\xc8\x2c\x6a\x33\x26\x25\ \xa3\xc9\xb4\xa9\xcd\xdb\xd4\x68\x25\xb8\xda\x1f\x1a\x9b\xb9\x90\ \xd6\x98\x2a\x0f\xd2\x24\xc8\xc7\x9c\x79\x39\x96\x65\x13\x66\x12\ \xd9\x55\xaf\x00\xa0\x11\xa3\xf1\x20\x0a\x63\x18\x6a\xcf\xec\xc0\ \x8d\x96\x75\xa1\x09\x63\x30\x02\x35\x24\xc8\xa4\x2e\x58\x40\x4c\ \xce\x2a\x45\x08\x0a\x51\x91\x2d\x9c\x90\x02\x58\x8a\x24\x57\x7f\ \x61\x49\x1b\xcc\xa2\x19\x5f\xcd\x80\xb7\x7e\x72\x2e\x18\x79\x92\ \x96\x70\xda\x4b\x2a\xdf\xd5\x50\x3c\x95\x0d\x2b\x82\xa0\x2b\x5b\ \xd6\x0a\xbe\x65\x2c\xd1\x97\x75\x5a\xcb\x7e\x1e\x96\x03\xbb\x3c\ \x8c\x71\x1b\x5d\xd1\xaa\x54\x84\x4d\x50\x6c\xca\x8b\x14\xf2\xd0\ \x87\x0e\xb2\x92\x10\x38\x95\x77\x8f\xd5\xe6\x4a\x6c\x8a\x46\xcb\ \xd9\x11\x82\x26\x83\xa3\x4b\x9d\x89\xcc\x76\xb6\x11\x82\xd6\x50\ \xa3\x43\x74\xa3\x2b\x5d\xad\x21\x1f\x46\x48\x6d\x51\x37\xd8\x41\ \xdd\x48\xc1\x04\xe8\x58\x67\x45\x46\x9b\x2b\x63\xdc\xee\x84\xb8\ \x9b\xca\xd3\xb8\x93\x14\xe2\x1d\x85\x29\xc6\xed\xd6\x74\x10\xe0\ \x2d\xf1\xa4\x49\xa0\x71\x4d\x6b\x0f\xd1\x92\x56\xfe\x40\x65\xc5\ \x4e\x44\xd4\xcb\xf5\x74\x11\x4b\xf6\xc8\xcb\x2e\x88\xc1\x2b\x2c\ \xf5\x6a\xd1\xb7\x39\x2c\x2c\x95\x5a\x55\x84\x5e\xb5\xaa\x57\xd9\ \x65\x7e\x92\x12\x15\x4e\x57\x62\xa2\x19\xe5\xa1\xbe\xed\x24\xd9\ \x63\x75\x25\x91\x99\x99\xec\x72\xa5\x5a\x83\x6d\x14\x02\x66\x37\ \x7c\x39\x54\xda\xe4\xb2\x35\xac\xb1\xce\x96\xe5\x0c\x82\x5b\xe6\ \x46\x14\x7a\x33\x4e\x73\xe2\x61\x21\x1a\xe9\x8d\x11\xac\xa1\x1c\ \xfb\xde\x46\xb7\x52\x93\x5a\xb5\xba\x70\x43\xa2\x80\x67\x28\xb3\ \x40\x4a\x99\x66\x11\x00\x61\x4c\x32\x28\x2d\x86\x51\x73\x1d\xa2\ \xb7\x82\xe2\xed\x3d\x66\xe0\x71\x2a\x6f\x6c\x36\x83\x62\x25\x42\ \xb2\x94\xcb\x9f\xe2\xb6\x9f\x8c\x22\x2c\x40\x8b\x52\x51\x42\xcc\ \xbb\x18\x56\xab\x86\xbd\x8b\xc3\xe6\x28\x3a\x04\xc7\xfc\xd5\xef\ \x20\x21\x68\x43\x18\xf2\x10\x86\x2b\x57\xa4\xbe\x8f\xcd\x99\x68\ \x40\xcb\x5f\x96\xb5\xe1\xa5\xf5\x2b\x15\x82\xd1\x2c\x9a\x06\x42\ \x70\x0d\x6a\x56\xe7\xcc\x78\x30\x33\xd0\x72\xb9\x09\xe2\xa4\x73\ \x39\xed\x10\x85\x3a\xba\xa1\x1b\xcf\xa0\x46\x04\x73\x66\xe5\xcf\ \xdd\x60\x14\x29\x59\xda\x2f\x5a\xf8\x89\x76\xfe\xb4\x43\x0f\x4c\ \xe1\x56\x33\x84\x61\x81\xa4\x88\x8b\xab\xde\xe9\x24\x46\x74\xd8\ \x24\x4e\xbf\xa9\x40\xd8\x05\xd4\x7a\xc6\x72\x05\xb3\x5d\x8f\x2e\ \x9f\x06\xd8\xc1\x41\x81\xb6\xbf\x4c\x6a\x0f\xea\x59\x58\xf7\x5c\ \xc5\x6a\x90\x1a\xb0\x8e\x4b\x80\x90\xab\x41\x21\xb2\xce\xd2\x14\ \xa7\x33\xaa\xef\xaf\xc3\xc0\xeb\x90\x87\x21\xd7\x39\x63\x70\xc8\ \x9c\x1d\xc1\x2f\xaf\x39\x54\xc9\xbe\x2c\x18\x5d\xfa\x6c\x89\xb8\ \x54\x0a\xdd\xc0\x43\x0b\xf2\x08\xc1\x90\x45\x61\xa8\xe4\x24\x49\ \x07\x78\xd0\xda\x26\x28\xb5\x05\xeb\x74\x43\x37\x0f\xd9\xa4\x1b\ \xa8\x60\x28\x03\x30\x86\x1e\xfc\x39\x49\x3d\x60\x92\xb8\x4a\xd1\ \xa7\x0d\xba\xe3\x93\x6a\x08\xa3\xc5\xfa\xde\x37\x93\x96\x00\x4a\ \xf6\x8c\x45\xae\x71\xe3\x97\x58\xea\x23\x17\xbd\x66\x08\x7d\x0b\ \xab\xe5\x5a\xb5\x22\x90\xad\x78\xc2\x0c\x8c\x72\x3b\xc5\xd7\x57\ \xc7\x5e\xc6\xba\x35\xb3\xea\xc2\x6b\x90\x46\x47\x19\xed\x5a\xe4\ \x23\x1f\x79\x08\x78\x8d\x72\x1e\x34\xbe\x09\x5b\x4e\x33\xcb\xdb\ \xa0\x66\x59\xd5\x08\x8d\xae\x3a\xd1\x32\x25\xab\x46\x63\x77\xc3\ \x1b\xe4\x20\x87\x37\xa2\x70\x2b\x67\xeb\xfe\x6a\x67\x11\x16\x89\ \x1d\x04\xc9\x90\xc9\xb7\xa0\x05\xd6\x00\xe1\xae\x64\x67\x3a\x96\ \x89\xbd\x0b\xc2\x88\x0e\x32\xbe\x90\xbc\xe9\x84\x4b\x0f\x60\xb2\ \x64\xb8\xc4\x35\x0b\xa2\x38\x85\x79\xdf\x14\x21\x43\xd2\xb3\x15\ \x83\x8e\xc5\x03\x82\x50\x2b\x9c\x90\x40\x70\x03\x99\x6d\x61\x85\ \xf9\x4b\x2d\x19\xe3\x96\x1d\x33\xa6\xc7\x0a\xd2\x4f\x60\xaa\xc8\ \x98\xc1\x92\x28\xd6\x8c\xeb\xd4\xe6\x32\xbf\xf4\xd6\x2e\x21\x25\ \x21\xe0\xc1\xae\xc3\xc0\x03\xc4\x23\x9e\xfe\xf7\xd7\x15\x16\x6a\ \x9e\x66\x97\xd7\x74\xcd\xdd\x2e\x33\x6c\xb2\x35\x61\x53\xa3\xc0\ \x8b\x02\x17\x58\x81\x04\x5c\x81\x16\x60\x27\x98\x59\xa7\x3c\xc0\ \x83\x9f\x23\x09\x0e\xca\x88\x35\x90\x02\x74\x58\x33\x34\xca\x06\ \x35\xa2\xbd\x3c\xa0\x80\x8a\xb8\xaa\x6a\xa8\x3a\xde\xf3\x16\xee\ \x38\x1e\x7d\x0a\x00\xe0\x53\x41\xe2\x13\xab\xe5\x71\x31\xe7\xb9\ \x08\xe6\x8b\xb1\x38\x41\x0b\xad\xc8\xae\xed\xd9\x0b\x27\x42\x98\ \xb0\x80\x28\x51\xcb\xa8\x87\x9a\x2b\xc0\xa0\x0b\xc0\xf0\x84\x34\ \x82\x8d\xf5\x59\x2f\x03\x72\x15\xbf\x33\x91\x3b\x9b\xb2\x85\x48\ \x9a\x2e\x78\x83\x73\xeb\x02\xfb\x73\xfe\x02\x2c\x70\x82\x91\xa3\ \x3f\x2d\x9c\x3f\x1e\xc0\x02\xc7\xdb\xb2\x36\xb2\x06\xd7\x5b\x03\ \xc6\x99\x19\xa4\x21\x08\x05\xc3\x26\xcc\x19\x30\x26\xb0\x06\x29\ \xf0\x86\x15\xf0\x86\x39\xec\x86\xe1\xb0\x99\x07\xf4\x39\xd4\xb3\ \x83\x7c\x40\x9a\x3c\xf8\xb6\xd7\x5b\x83\x6c\x58\x03\x6e\xb0\x00\ \xfb\xc2\xb5\x52\xc8\x83\x69\x29\x05\x15\xc8\x92\x4f\x98\x8e\xef\ \xe8\x8e\xa5\x58\x41\x30\x49\xc1\xe0\xd1\x03\x04\xf8\x1a\x49\xdb\ \x21\xb4\x01\xa5\xb4\x80\xbe\x1c\x40\xa8\xad\xd0\x8f\x1c\x9c\xb1\ \xc7\xd8\xc1\xc1\xa1\x38\xf0\x92\xb8\x60\x0a\x90\x6c\x08\x8c\xce\ \x62\xb2\x57\x79\x11\x01\xac\x88\xd6\x1a\x37\xd9\x99\x42\x5f\xab\ \x2f\x2d\xc4\x82\x5e\xcc\x42\x27\x00\xc6\xfa\xdb\xc2\xc6\x03\xc3\ \x61\x8b\x82\xd7\x6b\x83\xd9\x08\xc0\x58\x8b\x34\xd6\x80\xc2\x5d\ \x58\x03\x23\xc0\x03\x3c\xb8\x39\x29\x90\xc6\x35\x98\x91\x9a\x2b\ \x95\xd3\xcb\x36\xd6\xc1\xa6\x3e\xba\x02\x29\xf8\x1f\xff\x11\xc4\ \x9b\x91\xa0\x3b\x9b\x9a\xdd\x82\xa4\x1b\x4a\x1e\xad\x59\x0a\xee\ \xc0\x3a\xad\x5b\xb4\xa7\x4b\x1e\x17\x94\x0d\x81\xba\x17\xe8\x93\ \xc1\x19\xc3\x2e\x50\xe4\x44\x3d\xfe\xb9\x02\x82\xa3\xb1\xb0\x90\ \x22\x58\xa2\x10\x94\x71\x25\x24\xc0\x28\x28\xe2\x22\x17\x59\xaf\ \x81\x58\x8d\x58\x53\x20\x86\x28\x20\xf7\x4b\x89\x2a\x54\xbc\xfa\ \x92\x01\xc5\x9b\xbf\x2f\xbc\x42\x60\xc4\xc2\xfa\x13\xc9\x2e\x24\ \xc6\x9e\x0a\x19\xc9\xb2\x86\x26\x60\x88\x84\x90\x8d\xe6\xc2\xa6\ \x36\x19\x85\x35\x68\x81\x6e\x70\xbd\x9a\x9c\xc9\x28\x98\x2f\x9e\ \x5b\x03\x6f\x90\x40\xd5\x0b\x01\x6c\x2a\x12\x35\x53\x33\x54\x81\ \xa0\x12\x08\xc4\x98\x69\xac\xa9\xfa\x05\x64\x00\x2b\x3d\x50\x85\ \x19\xfa\x05\xad\xeb\x2a\x7d\xd2\x27\x2d\x09\xab\x5f\x80\x0a\xe6\ \xc9\xca\xeb\xd9\x8a\xae\x8c\x2e\x33\x00\x86\xb9\x42\x1b\x19\x2c\ \x3b\xbd\x29\x0c\x91\x72\x98\xf4\x63\x9c\xc3\xb0\x01\x28\x73\x03\ \x1b\x18\x0d\x83\xb0\x0d\x98\xa4\x88\xc1\xab\xc8\x58\x9b\xc2\x94\ \x78\x03\x22\xd9\x48\x5e\x2b\x02\x8e\xfc\x48\x2c\x70\x07\x5f\x04\ \x46\x27\xf8\x81\x30\x28\x82\xc4\x2c\x82\x91\xf4\x42\x9b\xd2\x46\ \x61\xdb\x85\x86\x10\x2d\x4d\x94\x0d\x37\x10\x4a\x34\x12\xca\x63\ \x4c\xc9\x06\xc3\xcc\x6e\xe0\x46\x1f\xf1\x86\xe5\x70\x92\xa2\xc3\ \x14\x4f\x58\xb3\xa4\xcb\x86\xfe\xd7\x69\x82\x6c\x28\x01\x55\x68\ \x2a\x46\x82\x0e\x66\x18\x89\x76\x40\xb4\xa8\x04\xbe\x14\x04\xbe\ \xad\xab\xba\x01\xc0\x07\x9b\x68\x49\x18\x04\x00\xbd\xe1\x44\xe6\ \x9b\x31\x60\x08\x4b\x60\xf8\xc7\x77\x41\x8b\xab\x88\x25\x88\x62\ \x82\x1c\x10\x08\x8c\x61\x9c\x3d\xd8\x40\x85\xd8\xb8\x6c\xc8\x06\ \x1b\x38\x08\xd8\xa0\x20\x19\x99\x15\xda\x9b\x48\xf7\xab\x08\xbe\ \xdc\x48\x19\x40\x4c\xbf\x1c\xb9\x2b\x14\x4c\x21\x70\x87\xf6\x04\ \x46\x1e\x38\xcc\xbf\xfc\xcb\x8d\x2c\xb9\xf8\x6b\x3c\x02\xdc\xce\ \xd6\x28\x2b\x4f\x62\x82\x2e\x1b\xb6\x03\xb3\x86\x6e\xd0\x33\x08\ \x72\x3d\x35\xe3\xc9\xa1\x6a\x02\x74\xb2\x06\x17\x90\x02\x40\x3c\ \xc9\x28\x88\x02\x10\xca\x86\xa1\x29\x81\x9f\x4c\x1a\xdc\x43\x2e\ \x66\x40\x06\x55\xa0\x37\x61\x10\x13\x1b\x68\x86\x00\x68\x86\xe0\ \x83\xa1\x4f\x80\x92\xfd\xc4\x88\x25\x10\xc8\xeb\x8a\x31\x7e\x3c\ \x4e\x19\x54\x4e\x82\xf9\xb4\x8c\x33\x20\x63\x62\xa3\xea\x64\x1c\ \x77\x6a\x02\x0b\xb8\x95\xd9\xbb\x88\x37\x30\x9a\xf1\x14\x52\x26\ \xd1\x4b\xc5\x5b\xcc\x22\x28\x4f\xc5\x0c\x81\xc5\x2c\x4c\x2c\x6c\ \x4f\xf7\x04\x46\xc5\x94\xfe\x81\xf2\xa4\xcf\x5f\xd3\x26\x5d\x19\ \x91\x3a\xa2\x15\x14\x75\x08\xfb\xb1\x91\xd3\x70\xa9\x31\xec\x06\ \x17\xf0\x06\x9a\xa4\x49\x75\x82\xb0\x71\x8a\x02\x18\x71\x03\x17\ \x70\x81\x2b\x70\xd0\x36\xe2\x06\x69\xb3\x00\x1e\xa8\xd3\x10\x60\ \x92\xa7\x51\x01\xe4\xe1\xbd\x11\x8d\x4a\x7d\xa2\x44\x6e\xb1\x24\ \x0b\x10\x86\xab\x11\x06\xdf\x64\x0e\xca\x6c\x08\x4e\x83\x3e\xb7\ \x70\xd1\xb9\xa2\x93\x37\xa9\x93\xb1\x60\x28\x24\x23\x91\xcb\xc9\ \x3c\x31\x9a\x32\xa7\x9a\x91\x3a\xad\x06\x1e\xa8\x2f\xb1\x4b\x09\ \x5d\x23\xb9\x90\xc3\xd3\xbd\xe4\x48\xc4\x4b\x4c\x19\x40\xd2\x29\ \x65\xd5\xc4\xac\x3f\x60\xbc\x83\x3b\x70\x87\xc2\x1c\xb9\xf9\x94\ \x01\x29\x7c\x3f\xde\x19\x20\x8a\x78\x41\x2e\x65\xc6\xcd\xa1\x8d\ \x30\x15\xd0\x39\x4c\x40\x6f\x30\x02\x89\xc8\x43\xdf\x20\x87\x3c\ \xb8\x89\x2e\x90\xc9\x0c\x94\x2c\x08\xe2\x06\x89\xe0\x01\x8a\x90\ \xc2\x6c\xad\xaf\xa5\xd1\x83\xdd\xa3\x06\xa7\xec\x0e\x31\x51\x05\ \x10\x1d\xd1\x79\xb3\x44\x73\x91\x34\x1d\xc2\xc7\xeb\x6a\xd4\xb2\ \x4b\xab\x7e\x04\xc5\xe8\xd9\x8b\xb3\xc8\x86\x59\x79\x1c\x16\xb9\ \x15\xa3\xc1\x35\x53\xfe\x0d\x39\x46\x34\x86\x2f\x9c\x4f\x54\x0d\ \x03\x2c\xf8\x54\x2f\xc4\x82\xf3\x44\x58\x27\x80\xcf\xf3\x44\xd2\ \x56\x75\x55\xc5\x84\xd5\x27\xad\xd5\x5a\x35\xcc\x80\xdd\xcb\xc6\ \xaa\x91\x26\x74\x35\xca\x2c\xab\x26\x89\xb5\x96\xc2\xcc\x99\xc4\ \x83\x38\x94\xc3\x7c\x58\x27\x1e\x38\xd0\x8f\x10\xba\x9b\x08\x4a\ \xc9\xc2\xcc\x35\xab\xb6\x6c\xc8\x03\x11\x7a\x88\x2e\xa0\x00\xa8\ \xc1\x92\x01\xa0\x86\x66\x40\x87\x0f\x5d\xb4\x45\x43\xc1\xa7\x94\ \xa4\x2f\x60\xae\x7b\x54\xd7\x14\xbd\x88\x18\xd3\x47\xb2\x14\x84\ \xb0\x8c\xd7\x1e\x7b\x8b\xf9\x40\x87\x2b\x30\x06\x69\x22\x23\x13\ \xb1\x53\x1e\x50\x81\x95\x28\xd5\xa8\xb9\xd9\x30\xa0\x00\x82\xad\ \x86\x6a\xb8\x55\x56\x0d\x83\x6a\x20\x58\x2c\xac\x06\x27\x20\x5b\ \x27\x08\x5b\xb6\x05\xc6\x1f\x30\xcc\xf8\x6c\x58\x87\x65\x55\xb3\ \x2d\xcc\x3b\x70\x82\x59\xcd\xc2\x22\xd8\xcb\xbf\x15\xcf\x8a\xd0\ \x1c\x2e\x25\x5c\xd3\x19\x56\x30\x73\x3d\x9c\x33\xd6\x64\x95\xa0\ \x26\x20\x07\x90\xe0\x86\x09\x1a\x05\x1e\x20\xc3\x67\x7b\xb6\xd7\ \xab\x56\x6e\xd0\xdc\x2f\xe0\x81\x26\x79\x03\x15\x00\x5d\x15\xb0\ \xad\xdd\xdb\x50\xfe\xe2\xdb\xd9\x00\xf0\x59\xae\xf9\x84\x43\x8d\ \x34\xdd\x71\x49\x75\x5d\xda\x76\x5d\x3e\xec\x52\x25\x56\xda\x03\ \x1b\xa0\x86\x31\x80\x86\x7a\xd5\x1f\x1b\xe0\x51\xe3\x30\x06\x63\ \x68\x3c\x0a\x18\xb9\xbe\x24\xde\x9b\xa5\x80\xb5\x5d\x5b\xb6\x45\ \xbc\x2b\xac\x06\x77\x50\x5e\x60\x5c\xdb\x12\x18\x81\x12\x80\x5b\ \xb9\x2d\xcc\x1f\x90\xd2\x86\x7d\x55\x56\xfd\x81\xef\x2d\x02\x59\ \x35\x4c\x19\x10\xbb\xe6\x51\xb0\x89\x24\x5c\x60\x65\x8d\x96\x22\ \xd0\x16\x90\xc6\x39\xec\x00\x23\x60\xa7\x2e\xe0\x86\x03\x6d\x56\ \x96\xb5\xdc\x67\x53\xb3\x06\x95\x56\x08\xdd\x40\xdb\x0b\x03\x15\ \x18\x80\x6a\x20\x54\x3d\xd8\x59\x74\x08\x93\xe3\x6a\x86\x10\x45\ \x34\x31\xf1\xd0\x12\x6c\x2e\xa9\x28\xdf\x14\xf5\x4d\x84\x82\x8b\ \x7f\x4c\x2b\xad\x00\x0b\xe6\xab\x8b\x36\xd8\x03\xa5\xc2\x30\x0b\ \x20\x08\xe3\x58\x83\x12\x60\x4d\x6e\x30\x86\x4f\x25\x5b\x5e\x03\ \x5b\xaf\xa5\x00\xb7\x75\x82\x33\x78\xe1\x18\xfe\x5e\x60\x1c\x81\ \x6a\xf8\x81\x17\x5e\xdb\x11\xa8\x5e\xea\xad\x86\x70\xc0\x82\x11\ \xa8\x07\x5f\xa8\x87\x3b\xd0\x5e\x88\x45\xe2\x57\x85\xd8\x23\x26\ \x5f\x9a\x15\xfe\xa8\x5f\x4d\xdf\x1d\x8a\x27\x3b\x42\x5c\xc5\x5d\ \x01\xd0\xb3\x83\x16\x90\x9d\x88\x18\xd9\xe1\xa8\xd9\x95\x53\xb3\ \xd7\x2b\x50\x68\x6b\x81\x28\xd8\x15\xde\xd1\xda\x4f\x50\x85\x97\ \x10\x06\x1d\x49\x1e\x6a\x50\x85\x05\x6e\xb7\x10\x1d\x93\xe3\x51\ \x05\x6e\x19\x00\x0a\x70\xb1\x99\x18\x0f\x8f\xb5\xc8\x87\x58\x8f\ \xae\x8c\x9e\x46\x15\x84\x60\x82\xb2\x3c\xf0\x84\x65\x89\x82\xa2\ \xb1\x80\x28\x70\x09\x60\x89\x82\x66\x21\x58\xb6\x85\xd5\x14\x28\ \x02\x0a\x48\x01\xb6\x95\xe1\x1c\x3e\x83\x33\x70\xdb\x1f\x90\x61\ \x27\xb0\xe4\x22\xf0\xe4\x2c\x70\x87\x1b\xae\x87\x1b\x2e\x81\x21\ \xb6\x05\x5b\xf0\x85\x11\x70\x82\x22\xd0\x5e\xf0\x5d\x55\xc5\x3c\ \xe2\xc4\xfc\x01\x57\xdd\xcb\x28\xe6\xe5\x8e\xa5\x62\x02\xb5\x62\ \x2c\x06\xbd\x7c\x00\xad\x39\xfd\xc9\xd1\xb2\x4c\xa1\x2c\x50\xd3\ \x54\xe6\xd8\xc2\x49\x34\x2b\x01\x97\x40\x05\xdd\xfb\x02\xa8\x13\ \x06\x6a\x40\x86\x76\x6b\x07\x7f\x6a\x87\x10\x45\xdd\x3a\xae\x66\ \x34\xc9\xca\x3d\xe6\x63\xc0\x0d\x64\x0c\xce\x60\x84\x82\x22\x58\ \x98\xb8\x36\x30\x86\x16\x40\x07\x6a\xc8\x86\xe2\xa0\x86\xa5\xfa\ \x82\x12\xfe\xb8\xe7\x12\x18\xdb\x11\xc0\xe4\x14\x38\x83\x6a\xe8\ \xe4\x7f\x16\x81\x81\xee\xe4\x1f\x48\x81\x14\x30\xe8\x84\x3e\x03\ \x83\x26\xe5\x1f\x30\xe5\x11\xf8\x84\x7a\x28\x01\x04\x88\x03\x3b\ \x88\x83\x38\x20\xe2\x59\x96\xe5\xef\xbd\x65\x5c\x3e\x4c\xed\x0d\ \x83\x29\xfd\x5b\xc0\x1d\xe7\x5e\x46\x51\xf6\x3a\x91\xcb\x7d\xdf\ \x2b\x7e\xdc\xc7\xb5\x83\xc7\x75\x01\x35\xf3\x62\x00\x48\x96\x9b\ \xb3\xc9\x31\x7c\x3d\x35\x33\x02\xd8\x7a\xc0\xdd\x30\x06\x7c\x1e\ \x83\xe4\xf9\x04\x0b\x68\x89\x0c\xdd\xe6\x76\x08\x00\x38\x6e\x06\ \x31\x21\x0a\x3d\x26\xe7\x71\x9e\x89\x9a\xd8\x4b\x42\x26\x4e\xb3\ \x69\xd4\xba\x82\x14\xd6\x80\xaa\xa1\xc9\x06\xe3\xc0\xe7\x66\x19\ \x5b\x80\xe6\x61\x3e\x08\x87\x4e\x16\x81\x70\xe0\x03\x11\x48\xeb\ \x33\x50\x6b\x83\xb6\x64\x84\xf6\xe7\x22\x10\x01\x50\x86\xd8\x1b\ \x16\x81\xea\xad\x87\x8a\xde\xa0\x38\xb0\x05\x23\x96\xe5\x8d\x9e\ \x5b\x5b\x0e\x03\x90\x1e\xec\x56\x1d\x69\x22\xf1\xb3\xcb\x6a\x19\ \x93\x7e\xe2\xcb\x91\x99\x31\x84\x43\x3a\x00\x3d\x61\xfe\x08\x72\ \x48\xd6\xc5\xd6\x08\x9c\x96\x82\x06\x95\x02\x38\x85\xd3\x30\xee\ \x86\xfe\x63\x8c\x3d\xe1\xf5\x40\x63\x40\x80\x69\x76\x4d\x15\xa0\ \x06\xd9\x14\x09\x6e\x46\xea\x05\x5e\xe0\xa7\x8c\x27\x44\x6d\xc9\ \xa8\xfe\xdb\xa5\xcd\x81\x41\x0e\x45\xf2\xeb\x25\x6d\xf2\xea\x66\ \xf9\xe9\xae\xae\x06\x46\xac\x06\x3e\xa8\x86\x1b\x46\xeb\x33\x20\ \xeb\x11\x18\xe8\x83\x46\x68\xb6\xfe\x81\xb9\x1e\xe8\xb9\x06\x65\ \x11\x48\xcc\x83\x76\x82\xb9\x76\x82\x11\xa0\xe8\x1f\xb1\x03\x5b\ \xa8\x87\x58\xde\x68\x8a\x8d\xe5\xef\x1d\xec\x30\x30\xcc\x2c\x2c\ \x5b\xf2\xad\xaf\xbf\xfc\x35\xc5\x86\x62\xc6\x1e\x21\xfb\x01\xe6\ \x91\x65\xe9\x96\x7e\x69\x8f\x68\x01\x28\xd4\x8d\xa2\x9b\xc9\xcd\ \x0e\xc7\xcd\xde\xec\x31\xb4\x06\x08\x85\x50\x63\x78\x3c\xd9\x09\ \x81\x6a\xf8\x82\x06\xef\x30\x0b\x90\xba\x91\x70\xed\x6e\x46\x07\ \xe9\x50\x85\xf2\xe5\xe3\xcf\x81\xea\x36\x79\x03\xc2\x81\xa5\xdc\ \x4e\x8b\x77\x45\x9b\xee\x03\x29\x77\x0a\x6e\x13\xae\x86\x14\x1e\ \xdb\x30\xf0\x64\xe3\x1e\x6b\xb3\x0e\x87\x70\x60\x6e\x4b\x06\xe5\ \x18\x3f\xeb\xb3\xde\xee\x85\xa6\x6e\x84\x16\x81\xec\xf6\x64\x21\ \xde\x89\x8a\xe6\x6b\xbd\xe5\x68\xf1\x4d\xef\xc0\x4e\xcf\x2c\xfc\ \xfe\x81\x10\x70\x55\xf2\xed\x02\xfa\x34\x39\x05\x92\x6f\x29\xc6\ \xd4\x64\x8b\x02\x2b\xbe\xef\xfc\x26\x07\x3c\x70\x56\x5f\xc1\xe9\ \xff\x96\x02\x17\xa0\xc6\x37\x6d\xd0\x9c\x2e\xc2\xc6\x33\xd5\x30\ \xd0\x91\x4f\x48\x61\x0f\xfd\x02\x66\x80\x73\x6d\xf6\x27\xd7\x96\ \xed\xd6\x3d\x8f\x26\x99\x0a\xdb\x7e\x83\x4f\x9c\x2b\x1a\x4c\x2b\ \xc2\xc1\xae\x56\xdb\x9c\x2e\x08\xde\xe0\x0e\x6b\x82\x95\x61\x80\ \xde\xee\xb1\x16\x81\x4e\x96\x71\xe6\x3e\x03\x52\x3e\x6b\x1b\x8f\ \xf1\x11\x88\xf1\x70\x18\x68\x19\x97\x71\x5a\x3e\x83\x3b\x78\x85\ \x56\xe6\x6b\x22\xbe\x83\x8d\xc6\xde\x70\x98\x5b\xc3\x2c\xec\xc3\ \xec\xdb\xf9\xc4\xd3\x5c\xbd\x48\x5c\x93\xf2\x29\xcf\xca\x5f\xbe\ \x5c\x38\x24\xd9\x2c\x27\x87\x6e\x58\x0e\x87\x70\x2d\x9c\xeb\x86\ \x5f\x0f\x73\x37\x75\xd3\xcd\x46\x82\x99\xec\x86\x94\xac\x4b\x22\ \xe1\x81\x06\x57\x92\xe1\xae\x06\x6a\xd0\x66\xe9\xc8\xe6\x76\x8b\ \xf3\x00\xf8\x85\xc5\xa6\xe0\x78\x7a\x08\x7c\xa8\x06\x0a\x38\x17\ \x9a\xd5\x8a\x7e\xdc\x0a\x17\x15\x04\x8a\x7b\x15\x3b\x82\x2a\x15\ \x0f\x6b\x11\xd0\x61\xb5\xe6\xe1\x2c\xb0\x74\xb6\x3e\x83\x47\xfe\ \xc7\xf4\x49\xb7\xf4\x4b\xaf\x74\x1e\x0e\x87\x7a\x78\x85\x54\xd6\ \xde\x91\x96\x81\x1f\x10\x62\x5f\x70\xe5\x7a\x08\x07\xf3\xae\xe1\ \xb8\x3d\xef\x5a\x46\xef\xf8\x5c\xd2\xf2\xd4\x4b\xde\x09\x81\xc8\ \xe4\x58\x93\xc6\xa6\x94\x0e\x50\x5b\x5f\x01\x3a\xb8\xe2\x0e\x68\ \x69\x2d\xbe\x08\x68\x0d\x50\x60\x6f\x81\x60\x17\xf6\xcf\x6e\x81\ \x2b\xe8\x06\x10\xb2\x32\x34\xc6\xe7\x06\xff\x04\xd0\xb5\x80\xdd\ \x8b\x73\x64\x80\xf6\x6d\x86\xf3\x66\xb0\x81\xa7\xd8\x70\x97\xb9\ \x81\x6a\xc8\x02\x0a\x10\x3b\x86\xb8\x60\x5d\x20\xce\xb7\x80\x54\ \x12\x47\x99\x8a\xd8\x08\xe1\x75\x76\x82\x65\xf7\x4e\x76\x02\x17\ \xd7\xf7\x4b\x1f\x81\x57\xc0\x77\x7a\xb7\x74\x7d\xbf\x7a\x1e\xfe\ \x74\xf0\xfe\x81\xa1\xb7\x48\xb9\x2d\xe2\x11\x98\x55\x22\x2f\xcc\ \xb8\x4d\x62\x58\xbd\x55\xf9\xb4\x58\x27\xa9\x45\x59\x8f\x91\x2d\ \x8d\x91\x3c\x78\x36\x2c\xbf\x6f\xd0\x33\x82\x36\x78\x56\x99\x3c\ \x76\x63\x2f\xf9\x93\xe7\xdf\x9a\x7c\xb6\x38\x0b\xed\xe0\xe5\x06\ \x66\x67\x9a\x69\x51\x05\x64\x88\xf3\x76\xab\x70\x38\x67\x86\x66\ \x28\x84\x9e\xd7\x70\x9c\x88\x1a\xe6\x02\xf7\x3f\xc1\x41\xfe\xb0\ \xa4\x38\x5d\x4a\x88\x1a\x29\x0e\x7d\x56\x01\x1e\xf8\xe1\x6a\x68\ \xf4\x1f\x40\x7d\xab\x07\x82\x4b\x07\x02\xac\xc7\xf7\x57\x78\x85\ \xab\xd7\xf4\xd9\xc7\x7a\xac\x3f\x04\x5b\xe0\xeb\x70\xf0\x5b\x8b\ \x7c\x03\x59\x36\xfb\x70\xb8\x83\xe0\xd7\xdb\xe2\x27\x72\x26\xbe\ \x5b\x59\x46\xcc\x25\x95\xcf\x25\xcd\xd6\x94\x10\x2d\xa4\xed\x65\ \x2a\x3e\x33\xbb\x0f\x50\x63\x25\x87\x8e\xdf\x72\x37\x08\x79\x6f\ \xb3\x69\x9a\x2c\xf9\xcd\x1e\xf6\x2b\xc0\x14\xfe\x95\x08\x6b\xe8\ \x08\x3b\x18\x83\x08\x8d\x82\xe4\x20\xea\xe3\xf8\x02\x55\xc0\x66\ \x74\xf8\x82\x7a\x66\xed\x0c\x50\x01\x97\x44\x97\xe6\x62\x21\x26\ \x41\xda\xba\x02\x08\x33\x1e\x3c\x98\xc9\x01\xea\x60\x8e\x1c\x4c\ \x98\xec\x59\xd8\x66\x57\x1e\x63\x5f\xbe\x54\xab\x46\xa1\x1a\x9f\ \x70\x29\x8a\xa4\x10\xc1\xe7\x8c\x08\x11\xe1\xc2\xbd\x02\xf2\xea\ \xe4\xc8\x91\x27\x0f\xbd\x22\xe9\xb2\xe5\xab\x11\x87\x6c\xc5\xc9\ \x50\xc5\x96\x88\x22\x32\x76\x16\xf9\x31\xa2\xde\x88\x3b\x22\x9c\ \x04\xbd\x13\xb4\xde\x9d\xa4\x3f\x74\xee\x94\xc1\x34\x4c\x11\xa8\ \x4e\x43\xec\xa4\x1a\xe2\xcd\x9b\x25\x4b\x46\x8d\xea\xfe\xb2\x6b\ \xd7\xa8\x25\x00\xc6\x92\x2d\x6b\xb6\xec\x28\x37\xd6\xac\xad\x69\ \xdb\x64\x4d\x8b\x6e\x2e\xbc\xd1\x59\x41\x8e\x1c\x1e\x1e\x61\x01\ \x74\x69\xd2\xc2\x48\x37\x6b\x52\xf0\x48\xb1\xd6\x42\x8a\x8b\x2b\ \x85\xd7\xb6\x68\xbc\xc6\x4d\x13\x6b\x26\xec\x50\x36\x81\x2e\x4a\ \x93\x3c\x11\xa9\xa1\x43\x47\xed\xf3\x17\xd0\x19\x46\x33\xa3\x20\ \xb6\xec\xe9\xb3\x37\xb2\xa6\x7e\x03\xe0\x0d\xac\xd8\xb1\xcd\xc0\ \x4a\x08\x4a\x97\x20\x5d\xba\x98\xb8\xb1\xe1\x86\x49\x9b\x3c\x2a\ \x4a\x10\xaf\xe8\x04\xe3\x19\x8e\x20\xcf\x80\x14\xa9\xf2\x24\x4a\ \x92\xd0\x47\x8e\x88\x19\x73\x84\x4c\x9a\x71\xe2\xd8\xb2\x55\x2f\ \x67\xcf\x70\xf5\xc6\x8f\x70\x12\xce\x89\xd1\x3b\x48\xd3\x9f\xd7\ \x89\x95\x67\x91\xf8\x50\xc3\x34\x7d\x53\x15\x6b\x97\x2e\x79\x78\ \xb8\xc9\xd3\x65\xef\x59\x01\x92\x25\xd6\x12\x6d\xc0\x85\x07\x61\ \xdd\x34\x16\x97\x11\xde\x78\xb3\x02\x1e\x4d\x84\xb5\x15\x0f\xd6\ \x74\x23\x45\x37\xdd\xe0\xe1\xa0\x0b\x1d\xba\x20\x45\x0b\x8c\x49\ \x01\xa2\x35\x90\x59\xe3\x02\x65\x19\xd8\xf1\x0c\x3a\x4d\xb8\x61\ \x41\x36\xe8\x30\x33\x86\x67\x9f\xd5\x38\x5a\x06\xfe\x9f\x74\xa1\ \x95\x59\x3c\x6a\x75\x83\x0c\x21\x6c\x91\xd5\x58\x4b\xdc\xb0\x04\ \x56\xb2\xc1\xa2\x9b\x2e\x07\xdd\x06\xcb\x1e\x6e\x80\x15\xd6\x28\ \x21\xb4\x61\x81\x31\xc6\x7c\x52\xcd\x08\x5c\x56\x23\x42\x0a\x29\ \x2c\xd7\x9c\x73\x2b\xc1\x24\xdd\x49\x23\x84\x53\x5d\x75\x6b\x86\ \x73\x48\x4d\x37\xd5\x13\x8e\x08\x4b\xf5\x04\x94\x9a\x4e\x0c\x15\ \xce\x1d\x7c\xa6\x97\x94\x13\x4b\xc9\x60\x9f\x53\x4d\x85\xf1\x03\ \x54\x54\x61\x45\x68\x08\x21\xec\xf7\x56\x13\x0f\x4d\x38\x21\x00\ \xa3\x08\x48\x16\x57\x5d\xa9\x85\x87\x5d\x2b\xac\xe0\x0d\x1e\x19\ \x6a\xd8\x8d\x5e\x5a\x8d\x52\x61\x86\x71\x6d\xc8\x61\x87\x84\x2d\ \x78\x18\x89\x6b\x44\x86\x87\x1d\x38\xda\x31\x86\x27\xc6\x64\xc3\ \x99\x16\xed\xa0\x13\x40\x67\xe8\xd0\x38\x06\x33\x9f\x84\x70\xc3\ \x59\x5a\x29\xfb\x46\x08\xd5\x0c\x40\x01\x91\xf6\x1d\xbb\x44\x08\ \x07\xe9\xb6\x64\x93\x08\x41\x09\x0b\x58\x45\x76\xd1\xac\x31\xc6\ \x71\xf9\x49\x38\x67\x84\xc9\x9c\xb9\x3f\x80\x24\xdd\x21\x2c\xc1\ \x34\x5d\x4a\x2d\xb9\x39\x02\x4d\x36\x8d\xc0\xd4\x7b\x22\x8c\x77\ \xde\x0f\xfd\xa6\x57\x14\x9f\x4e\x04\xca\x54\xfe\x53\x4e\xc9\x17\ \x15\xbe\x3b\x85\x11\x06\x16\xdc\x34\xf1\x30\x0f\x4c\xe4\xc7\x55\ \xb7\xa0\xb4\x51\x24\x80\x68\x41\xc4\x44\x1e\x7e\x79\x73\x17\xc8\ \x0e\xe2\xd1\x42\xa9\x00\x2c\x91\x47\x0b\x84\x19\xd6\x8d\x83\x22\ \x23\x88\x60\x86\x18\x7e\x58\x58\x5b\x6b\x74\x33\x99\xad\x63\x58\ \xc3\x59\xb0\x9d\x71\x36\xc6\x18\xa3\x21\x93\x07\x8f\x26\xaf\x76\ \xc3\x91\xcb\x5e\x64\xd1\x16\xab\xbd\x41\xc1\x16\x21\x40\x9b\x29\ \x28\xb1\x65\x0b\xca\x2e\x0c\x31\xb1\x4b\x6a\x5d\x84\x61\x8c\x3b\ \xd5\x30\xc7\x65\x16\x23\x98\x5b\x04\x73\x1b\xa1\x2b\xd2\x2b\xed\ \xba\xeb\xb6\xbc\xd4\xa9\x59\xdd\x4c\x19\x70\xf7\xc3\xa0\x59\xbd\ \x51\x84\xbe\xf5\xb8\xd3\x6f\xbf\xe8\x21\xb5\x9e\xc0\x82\x16\x4c\ \x70\x54\x86\x1b\x8a\x85\x3b\xdc\x38\x8e\x05\x0f\x3c\xe4\xf1\xd5\ \x2e\x6d\xb4\xa1\x69\x1b\xa6\x82\x92\xf1\x58\xa3\xb4\xf1\x56\x5b\ \x82\xd9\x05\xf2\x5d\xde\xac\x61\xe9\x58\x5d\xac\xe1\xc2\xc8\x2b\ \xe3\x31\x17\x1e\x46\xbc\x3c\xe2\x88\xaf\x83\x18\xe2\x1a\x6b\xa1\ \x68\xab\x1d\x5a\x3c\x43\xe3\xae\x3c\xff\xcc\x4c\x06\x63\xa8\x50\ \xf4\xd3\x2a\x50\x60\xda\x1b\xab\x6d\xa1\xfe\x82\xf2\x5b\x50\xd0\ \x68\xd4\x59\x1d\x59\x24\x28\x0b\xe9\xb2\x0b\xd6\xbb\xf1\xc6\xf5\ \x69\xcd\x96\xb0\xe5\x19\x14\xf0\x51\x4d\x38\x7c\xf0\x11\xa6\x98\ \xca\xa5\xf0\xc3\x73\x69\xb6\xcd\x52\x4a\x6e\xae\xf9\x4a\xbd\xdc\ \x8d\x80\xb7\xde\x4e\x39\x51\x8f\x2d\xf6\x07\x38\x3e\x8d\xc7\x17\ \xe3\xb9\xc3\xc0\xe2\x43\xb0\xf7\x28\x50\x27\x0e\x14\x98\x3b\x84\ \x20\x0e\x21\x70\x23\x72\x79\xb0\x5c\x1e\xdc\xd0\x9f\x5d\xb8\x61\ \x0d\x4c\xa0\x98\xa4\x52\x53\xa9\x36\xa8\xc5\x30\x16\xe2\x14\xe9\ \xc8\xd1\x8d\x3c\x0c\x88\x09\x86\x69\x8c\x82\x62\x18\xb3\xc1\x20\ \x88\x86\xb6\x53\x10\x5b\x72\xd7\x82\x5a\xf1\xae\x77\xe8\xf0\x44\ \x8c\x7c\xf6\x05\x61\xcd\xc8\x34\x45\x0a\x81\x0a\xf4\x60\x0c\x68\ \x31\xeb\x79\xd5\x50\x41\xd4\xa4\x06\xb5\xe6\x21\x6b\x40\xa3\xd8\ \xc5\xf6\xb8\xf7\x15\x5d\x34\xa4\x0d\xff\xf9\x56\x35\x8c\x51\x1c\ \x8c\x38\xe1\x7c\x7c\x10\x81\xb9\xc2\x54\x84\x3f\xac\x8d\x6d\xd5\ \x59\x09\xfd\xea\x47\x9d\x7a\xd9\xcd\x16\x78\xcb\xdb\xde\x7c\x72\ \x40\xc0\x19\x65\x3c\x05\x44\x4a\xbf\x7a\x02\x15\x7c\x11\xaa\x81\ \x61\x10\x18\x7a\x24\x48\x41\x6e\x40\xfe\xae\x51\x8f\xd2\xa0\x81\ \xac\xe1\x9f\xaf\x64\xb0\x5b\x98\xca\x43\xee\x2e\x44\x18\xd9\x8d\ \x0e\x2f\x4d\xe8\x42\xa5\x54\xb7\x96\xb6\x1c\x46\x41\x30\x14\x15\ \x0d\x69\xd8\x21\x53\xe2\xae\x2d\x1d\xe0\x21\xef\x3c\x13\x44\xcf\ \xa0\xa2\x33\x63\xf8\x82\x0a\x76\x84\x15\x15\x0c\xe0\x13\xca\x5b\ \x4d\x17\x2e\x22\x0c\xa6\x5d\x05\x2b\x55\xb4\x22\x57\x0e\x42\xb9\ \xac\x31\xc1\x37\x9a\xc1\x12\x71\x3e\x51\x02\xf4\x71\x49\x7d\x67\ \x58\x5f\xfb\xfe\xc0\x11\x75\xc1\x4f\x25\xec\x8a\xa3\x73\x52\x92\ \x3f\x5b\x10\x92\x27\x04\xac\x47\xa0\xcc\xa3\x1e\xa0\x24\x85\x70\ \x3f\x40\xa4\x7b\x16\xa5\xb0\x43\x22\x92\x71\x49\x11\xc2\x1d\x18\ \x09\x39\x1e\x38\x8a\x07\x0f\xeb\xe0\x5a\xdc\x80\x41\x48\xee\xe8\ \x34\xa3\xc0\xa4\x60\x5a\xf6\x32\xbb\xe4\xe3\x93\x4b\xe8\x82\x81\ \x46\xc4\x96\xb5\xb0\x32\x2e\xa8\xac\xe1\x60\x58\x17\xa2\x51\xd6\ \x6c\x0c\xb0\x54\x11\x65\xd0\xd1\x02\xa0\x75\x46\x0b\x1e\x65\x46\ \x09\x34\x03\x3d\x0b\xa8\xe0\x89\xd3\xc3\x8f\x13\x2d\x02\xad\xd5\ \x28\x0b\x35\x99\xa2\x52\xf7\xb2\xb6\x07\x1b\x58\x00\x4b\xba\x2a\ \xc1\x17\xc6\x57\x11\x3e\x7c\xc2\xfe\x6c\x62\x4a\x63\x0a\x64\xc0\ \x46\x74\xa5\xa4\x4c\xed\x92\x63\x38\xe0\x47\x2f\xee\xd8\x22\x1c\ \x79\x43\x92\x7d\x7e\xc0\x9e\x40\xf1\x09\x3b\x41\x39\x0a\xa0\xd0\ \xa3\x14\x3c\xda\xa7\x27\x4e\x70\x07\xe3\xdc\xa1\xd6\x3b\xe0\x93\ \x82\xee\x68\xc2\x3e\x23\xa7\x41\xbf\x04\x46\x83\x19\xfc\xe7\xe5\ \x2c\xf5\x50\x26\x1c\xe8\x41\x9f\x62\x9d\x11\x24\xb9\xa3\xb4\xb4\ \xc0\x05\x74\x58\x0c\x63\x42\x04\xc3\x05\x5d\x08\x43\xb5\xc3\xd0\ \xca\x42\xe4\xa2\x1d\xe2\x08\xa4\x76\x30\x81\x16\x4c\x0a\x34\xcc\ \x9a\xe0\x0b\x3c\xc8\x4f\x44\xb4\xa4\x82\xab\x00\x93\x02\xa5\x30\ \xed\xf4\xb6\xa0\xac\xa2\xf1\x88\x4a\xca\xa2\x18\x16\x33\x98\xa5\ \xd9\x02\x35\xa8\x67\x40\x1f\x76\x3e\x22\x26\xf6\xfd\xe1\x0f\xbb\ \xed\x88\x73\x42\x82\xa6\x91\x74\x33\xaa\x24\xe9\x4e\x00\x65\x50\ \xa4\x22\xc9\xe0\x07\xe4\x19\x98\x3a\xbf\x9a\x94\xe9\xf2\xc9\x17\ \xbe\xb8\x03\xde\xb0\xea\x94\x43\xba\xe3\x0e\xdd\x55\x6b\x77\xef\ \xe9\x5d\x2c\xec\x33\xae\x36\xc3\x83\x35\x5c\x04\x99\x3d\xa8\x77\ \x62\xbb\xe8\x42\x07\x35\xe4\x57\x3a\x78\x23\x30\x97\xd3\x8a\xea\ \x3c\xb5\x82\x99\x81\x28\x56\xfe\x16\xda\xe8\x61\x16\x84\xa1\xc6\ \x24\x96\x2d\x4d\x90\xc2\x47\x29\xa3\x60\x13\x3c\x43\x0b\x38\x43\ \x45\x36\x74\x19\x82\x2c\x3d\xb1\x98\x6f\xe8\x42\x14\x87\x74\x24\ \xac\x14\xed\x35\x9d\x9b\xd0\x6b\xf5\xa3\x02\x9f\x8a\xb1\x1a\x5f\ \x40\x45\x1c\x10\x50\x82\x6b\x8e\xa0\x6c\xea\x3b\x57\x0a\x7a\xcb\ \x11\xf6\x85\x24\x24\xcd\xa9\x5f\x71\xa3\x9a\x9d\x38\xd4\xa3\x08\ \x1d\x46\x52\x11\xc2\xe1\x0b\x5b\x08\x65\x80\x7e\x4a\x0f\x52\xce\ \x73\x87\x21\xfb\xc2\x09\x78\xf4\x5f\x77\x25\x98\x94\xb5\xde\x41\ \x1c\x6c\x45\x2b\x79\xfd\xd9\x84\xc8\x45\x21\x1f\xdd\xc0\x8c\x8b\ \x64\xe5\xa2\x0b\x5a\xae\x0d\x4c\xe0\xc1\x79\x1d\xe4\x29\xd3\xb1\ \xd0\x64\x7d\x69\x81\xa7\xe8\x60\x58\x39\xbb\x4a\xb1\xb8\x63\xcc\ \x5a\xf0\x3c\xd1\x00\xb3\x05\xc1\x95\x85\x65\x65\x52\x64\x87\x2f\ \x38\x34\x3f\x8d\xb2\x4a\xa3\xa0\xf6\xad\x2d\x74\x81\xa6\xcd\x63\ \x8d\xc9\x8c\xc4\xac\xff\xac\xf6\x5b\x79\xb0\x40\x18\xc3\x55\x8d\ \x4f\x6c\x07\x15\x45\xe5\x52\x8b\xb1\x83\xd4\x18\x2b\x75\xc6\xef\ \x6b\xce\x19\xfa\xd5\xd4\x6e\x8a\x04\x7e\xdd\xc9\xc0\x21\x8a\xe0\ \x9a\x48\x9b\x2c\xc8\x43\xfe\x46\x27\xe0\xb4\x7a\xe4\xe9\x62\xf7\ \x0e\xb6\x48\x45\x93\x65\x5d\xd6\x43\x26\x45\x1c\x56\x16\x02\x95\ \x8d\x2d\x0e\x2c\x43\x8e\xbc\x4d\xe0\x46\x14\xbe\xec\x16\xd0\x3d\ \x86\x37\x73\x7d\xd8\x09\x5b\x56\x5f\x09\x89\xe5\xa0\xab\x93\x33\ \x1d\xea\xb2\x82\x70\x7f\x68\xb1\xb8\x23\xf0\x44\xd3\xfd\x42\x02\ \x23\xf8\xa3\xa3\x51\xb0\xa0\x4d\x90\x8d\x30\xe4\x07\x49\x5a\xc1\ \x0a\x05\x94\x97\xe8\x10\x94\xa2\x51\x17\x66\xf4\xa2\xb0\xd2\xac\ \x3f\x5c\xb0\xde\xa3\xb8\x70\x1e\x32\xcd\x8d\x2d\x7d\xe2\x13\xa8\ \xb0\x1b\x02\xaa\x51\xb6\x89\x8f\x00\x9b\xec\x2b\xb5\x36\x8f\x8a\ \x46\x73\x85\x33\x9c\xc4\x0d\x47\xbd\xaa\x2a\x6c\xd7\x00\x79\x04\ \xbe\xe0\x31\x22\x03\xd7\xa7\x3f\xf5\x09\x3d\xbe\x40\xc5\x75\x85\ \xbd\x93\x1f\xa8\x55\x82\x56\x1e\x6f\x78\x8f\xad\x4f\x7f\x36\xcc\ \x1a\x46\xc8\x47\x0e\x65\x55\xb3\xfe\x50\x3b\x74\xaa\x72\x50\x0b\ \x1c\xfa\x50\x4c\xa6\x0c\x31\x75\x79\xba\x9c\x47\xd4\x58\x00\x73\ \x34\xcf\x79\x5e\x90\xee\x52\xf4\xe7\x5b\x3d\x83\x87\xb7\x2a\x81\ \x05\x0a\x7e\x6f\x6a\x85\x41\x79\xcb\xeb\x77\xd4\x96\xf7\x52\x81\ \xab\x5d\x18\x2a\xd0\xfe\x4c\xa3\xba\xf0\x86\x36\x20\x91\xc4\x5a\ \xfa\xc4\x17\x3a\xad\xe2\x2c\xf0\xbd\x6c\x15\x1f\xf5\x1f\x30\x7e\ \x2e\xe6\x2c\x45\xb8\x74\xf2\xb8\xab\x47\xc3\xe3\x1f\x04\x3c\xab\ \x26\xf7\x45\x79\x00\xa7\xce\x3e\x8d\x64\xba\x5a\xb5\x45\x07\x88\ \xec\xc0\xf8\xfc\xc0\x9e\x13\x44\xb6\x5a\xc5\x6a\x6c\x21\x08\x01\ \xae\xce\xe6\x86\x97\xf3\x11\x05\x6e\xd4\x2c\x77\xb2\x02\x68\xee\ \x4c\xc8\x20\x3c\x44\xc1\x0d\x5f\x84\x2f\x5c\x42\x24\x17\x71\xcf\ \xb9\x43\xb4\x93\xe8\x0b\xd3\x9d\xfb\x57\x2d\xa8\xeb\xee\x5e\xd1\ \x5b\x04\x5d\x3c\xcb\x60\xe1\x2a\x48\x4a\x34\xf4\x2a\x32\x3d\x29\ \x9a\x16\x3f\x52\x2c\x05\xf4\x4a\xb1\x9f\x3c\x1c\x3a\x0f\x14\x10\ \x4e\x4b\xc7\x87\x77\x04\xa0\x18\x01\x08\xa8\x47\x16\xc6\xc3\xf7\ \x8a\xb3\x4f\x8d\x81\xcf\x38\xda\xd4\xf5\xbe\x1f\xd4\x18\xc7\xc6\ \xcd\x5f\x8f\x07\xd5\x14\xf8\xf9\x51\x80\x66\x4d\xca\x79\x08\x8c\ \x7a\xac\x9c\x2d\xc0\x1c\x76\x39\x05\xa2\x70\x57\x94\x5d\x19\x78\ \x29\x5b\x3e\x20\x1b\x23\x39\x4e\x97\xfd\x9c\x35\xb0\x5e\xcd\x18\ \x98\x0e\xa5\xca\x97\x61\x9d\x7f\x74\x45\x5f\x08\x46\x60\x18\xc6\ \x9c\xc9\x99\xef\xfe\xbd\x8e\xef\xdd\x8e\xd4\xd9\x59\x5c\xf4\x57\ \x80\xb9\x80\xf1\x55\x96\x8a\x18\x01\x6f\xd0\x8a\x65\xa9\x08\x3a\ \x60\x01\x28\x51\x8b\x0a\xf0\x40\x4b\x51\x98\xda\xbd\x1d\x69\x49\ \x8d\xbe\x75\x41\x21\x30\xcb\x7e\x54\x03\x0f\x4a\x0e\x05\xf0\x40\ \xa6\x19\x03\x8a\xe5\x1d\x2a\x7c\x81\xf9\x7d\xc2\xfa\x55\x5c\xb9\ \xc0\x18\xa9\x65\xdc\x51\xa5\xda\xfb\x08\x57\x48\xd0\x1f\xfc\x24\ \x5e\x06\x54\x95\xde\xec\x4d\x9d\xa8\x87\x2d\x34\xd9\x52\xbc\x13\ \x7a\xa0\xc7\x3b\x11\xd0\x74\x15\x20\xcc\x2d\xc5\xa1\x38\x81\x59\ \xd5\x1c\xe8\x61\xc1\x59\xd9\x5c\x3e\x88\xc3\xe3\x3c\x5b\x14\x18\ \x81\x20\x46\x41\x05\xb6\x45\x14\xb8\x9e\x85\xc8\x8e\xec\xe0\x10\ \x66\x5c\x4e\xea\xcc\x0a\x88\x10\x22\x62\x78\xc8\x09\x8e\x48\xab\ \x8c\xc8\x61\x24\xc8\x0c\x11\x9f\x25\x2a\x98\x8a\xd8\xca\x33\xb8\ \x41\x08\x34\xc1\x0b\xbe\xdb\xad\x7c\xd6\x85\x85\x40\x18\x24\x5c\ \x36\x7c\x82\x05\x84\x41\xa3\x40\xcf\xf2\x48\x4d\x96\x50\xc0\x31\ \xd1\xa2\x18\x65\x83\x4b\x5d\x44\xc3\xe1\x5d\x1c\xa0\x58\x8a\x8d\ \x8f\x57\x4d\xdc\x8b\xfd\xd6\x1a\x1d\xe3\xfb\xb0\x4f\xaa\xd5\x09\ \xfd\xd5\x58\xfe\x20\x81\xdc\x76\xbc\xc2\xac\xbd\x46\x90\xa1\xa1\ \x01\xed\x0f\xe7\xe9\x49\xe1\x08\xe0\x75\x2d\xd9\xcb\x59\x97\x3b\ \x98\x55\xa0\x1c\x12\xe3\x58\x19\x37\xa8\x15\xe3\x90\x5e\x1f\xe6\ \x03\x23\xc1\x55\x20\x3e\xc8\xcf\xb1\xde\xb3\x19\xe2\xd1\xd1\x45\ \x82\x24\xdd\x8e\xb8\x59\x07\xd1\x50\x26\xfa\xde\x15\x50\x62\x63\ \x4c\x22\x7f\x79\x08\x82\xb4\x8a\x87\x74\x43\xee\xb4\x9b\xd7\x79\ \x5d\x07\xb8\x81\xe7\xec\x10\xa0\x51\x06\x2a\x18\x83\x7f\x20\x49\ \x17\x54\x43\x36\x4c\x13\xf7\x5d\x84\x96\x18\x43\x4b\x7d\xc2\x00\ \x84\x40\x59\x78\x8d\x18\x9d\x58\xb8\xe4\x5b\x18\x4d\xc4\x27\x20\ \x40\x1c\x30\xc3\x2f\xf6\x5d\xd9\xa0\x8f\xfa\xe8\x56\xfb\x85\x89\ \x36\xcd\xd8\x0f\x9c\x9a\x33\xe6\xda\x52\x40\xa3\x1d\xa1\x46\x4f\ \xd0\xcb\xad\xfd\x4d\xbf\xd4\x21\x22\x4d\x57\x37\x0e\x59\x07\x18\ \x60\x54\x20\xd2\x51\x4a\x19\x3a\x36\x8e\x04\xf5\xa1\xc3\x34\x4c\ \x20\x92\xc3\xa7\xb4\x80\xc3\xbc\x85\x05\xb2\x8c\x5f\x41\x48\xa8\ \xac\x41\xe6\x10\x88\x81\x68\x08\xed\x98\x60\xb9\x61\x9d\x88\x74\ \x08\x09\x86\x1b\xd4\x79\x43\x87\xc0\xe5\x62\x74\x03\x39\x08\x9a\ \xd6\xd9\xfe\x81\x37\x0c\xd6\x1a\x68\x1d\x48\x81\x94\x67\x89\x45\ \x30\x95\x80\x2a\x78\xa4\xd4\x7c\x02\x3a\xa0\x02\x33\x44\xa1\xa7\ \x4d\x23\x00\xd0\xe2\x89\x21\x43\x09\xc8\xe2\xa6\x91\x1f\xf9\x6d\ \x47\x8a\xa1\x5f\xdf\x55\x5c\xc5\xd1\x64\x4d\xae\x91\x1a\x25\x23\ \x18\x86\xa6\x9d\xf4\x04\x9c\xfc\x64\x59\x64\x15\x00\x21\x05\x33\ \x22\x4a\x4f\xd0\x5c\x3b\x5d\x17\x6c\x62\x9e\x01\x06\x8e\x3b\x20\ \x52\xcd\x4d\x90\x3e\x45\x90\x10\xe4\x03\x6f\x52\x50\x13\x04\x62\ \xa7\xfc\xdc\x96\x51\x5b\x14\x48\x41\x5d\xdc\x05\x84\x04\x16\xd1\ \x10\xc8\x2e\xac\xc1\x80\x1d\x86\x61\xcd\xcc\x46\x79\x42\xee\x50\ \x67\x63\x78\x48\xb8\x8d\x5b\x76\x86\x1b\x5c\x92\x5b\x63\xd0\xca\ \x42\xc2\xdb\x1a\x9c\x46\x13\xf0\xe5\x5d\x0e\x5a\x08\x20\x49\x1b\ \x18\x43\x14\x44\xe6\xd7\x7c\x41\xd0\xe0\x08\x33\x54\x83\x08\x31\ \xe1\xc2\x05\xd5\x96\x54\xc4\xa6\x8d\x1f\xa7\xfd\x22\x02\xa4\xdf\ \xfa\x61\x84\x19\x29\xe3\x51\xd9\xa4\xa9\x85\x09\xfd\xa5\x5a\xbf\ \xbc\x4f\x7c\x34\x57\xbd\xbc\xc2\x59\x34\xd7\x57\xa5\x53\xe1\x14\ \xc1\x51\xd6\x83\x01\x59\x97\x37\xa2\x42\x1a\x8e\x63\x1b\x9e\x55\ \x22\xfe\x4d\xd0\x78\x39\xce\x6e\xf2\xa6\xe3\xa0\x9e\x11\x94\x4e\ \x60\x3d\xcc\x3c\x46\x41\x61\x91\xce\xa7\x74\x03\xb7\x75\x8e\x5f\ \xd4\x99\xd3\x9d\x20\x47\xc5\x5e\x40\xb2\xa5\x7e\x69\xa7\x5b\x76\ \x00\x1d\x74\x40\xb9\x81\xa7\x29\x2a\x58\x43\x16\x49\x13\xd0\x81\ \x27\xbe\x9b\xad\x18\xc1\x68\xf1\x80\x18\x69\x9a\x89\xa1\x02\x2c\ \xc5\x81\x11\x91\x85\x34\x51\x84\x7e\x6e\x49\x16\x6c\x5a\x16\x50\ \xa1\xf9\x99\x1f\x66\x52\x61\x6e\x7d\xc4\x47\x98\xcf\x6e\xa5\x0d\ \x47\xac\xa9\xba\x80\x44\x4e\xbe\xa9\x9d\x38\xa8\xe2\x89\x00\x6b\ \x64\x85\x84\xfa\x1f\x1b\xda\x66\x52\x64\xa8\x75\x61\xe8\x37\x36\ \x19\x04\x9d\x55\xe8\xb1\x95\x38\xb0\x63\x04\x96\xa8\xea\x45\x81\ \x8b\x1a\x41\xa7\x78\x83\x11\x60\x46\xeb\xa5\x4c\x27\x91\x03\xa8\ \xac\x01\xd7\x74\x0e\x26\x61\x62\x40\x0a\x24\x26\x5a\x1d\x63\x68\ \x12\x5d\x8c\x4e\x07\xf8\x68\x07\x90\x43\x07\x00\x69\xa8\xe0\x41\ \x5d\xd6\x0a\xbc\xd9\x81\x24\x6d\x45\xc7\xf4\x07\x0f\x78\x03\xa0\ \x99\xe2\x18\x44\x81\x31\x34\x41\x45\x64\x09\x37\x48\xc4\xc3\x8d\ \x46\x09\x74\x18\x00\x9c\xd8\x96\x2c\x4f\x2f\x7e\xe9\x7e\x7e\x42\ \xfe\x3d\x28\x6b\xdf\xd5\x03\x3d\xb8\x98\x0a\xf0\x81\xf9\x50\x80\ \xb9\x5c\x53\x0a\x7c\xc4\xa8\xb5\x69\x9d\x24\xc7\x1a\x06\x12\xdf\ \xd8\xc2\xbb\xbd\x42\xc1\x38\x45\x50\xb4\xc7\x1d\x86\x57\x77\xd5\ \x83\x38\xf8\xc2\xba\x5a\x97\xbb\x5e\xd7\x36\x7a\x57\x6d\x3a\x41\ \x3a\x92\xde\x39\xfe\x26\x6f\xf2\x26\x5b\xb0\x4c\x70\x22\x64\xcd\ \x44\x86\x11\xd0\x41\x0a\x79\x43\x0b\x64\x4e\x91\x44\x92\x80\x05\ \x64\xca\xb8\x8a\xa7\xae\x5b\xed\xd4\xc5\xa8\xae\xc0\x33\xac\xc0\ \xa8\x96\xaa\x1d\x98\xea\xcb\xbc\x52\x78\x92\x43\x13\xbc\x17\x7c\ \x11\x8d\xc9\xe4\x41\x44\x5a\x96\x1d\xa0\x42\xa4\x30\x21\x85\xf9\ \x6a\x06\xa0\x42\x7a\x9a\x45\xc3\xe9\xe7\x45\x7c\x29\x15\xce\xec\ \xb3\x22\x00\x3d\x60\x66\x66\x16\xa3\xb4\xee\xec\x35\x9d\x41\xb9\ \xa8\xa9\x98\xd0\x1f\x83\x2e\x68\x9d\x84\x07\xb8\xaa\xc8\x2b\x8c\ \x66\x50\x02\xd2\x1a\x12\xc5\x74\xa9\x2b\x52\xf0\xe9\xbb\x3a\x25\ \xbd\x4e\x99\x13\xf0\x00\xbd\xa2\xde\x22\x3d\x5b\xbe\x6e\x94\x86\ \x94\xce\xc8\xfc\xab\xcd\x7c\x0c\x8c\xe2\xc1\x72\x56\x0a\x42\x8d\ \x92\x80\x19\x86\x44\x6d\xd4\xd5\xbd\xca\x24\x8a\x9b\xa7\x4c\xfe\ \xec\xa9\x9a\xea\xa8\xce\xc5\x33\xac\x6a\xab\xd2\x81\xed\xa1\x2d\ \x28\x15\x49\x78\xde\xe5\x33\xf0\x80\x11\x96\x80\x31\x34\xcb\x2d\ \xa1\x42\x29\x04\x88\xd8\x60\x84\x97\x7c\xe9\x14\xae\xa4\x98\x3e\ \x6b\x97\x64\xa6\xf9\xe0\x03\x05\x5c\xab\xf9\x94\x8f\xfa\x78\xc4\ \xa8\x2d\xc7\x52\x6c\x04\xdf\x84\x26\x34\x72\x87\x08\xe8\x5f\x7c\ \x08\x99\x77\x74\x2b\x7a\x8c\x80\x3b\x40\xad\xb1\x2d\x59\xbb\x76\ \x63\x20\x31\x4c\x94\xa1\x95\x13\x30\x8c\x55\xfa\xa6\x10\xac\x60\ \x88\x44\x1b\xd9\xd6\xd7\x21\x3e\x4c\x5b\xa0\x10\xe9\x98\x0e\xea\ \x78\xdb\x28\x59\x9d\xdb\x32\x2f\x9e\x95\x52\x7f\x65\x54\xb8\x4d\ \xac\xa9\x52\xec\xa8\xd2\xc1\x33\x3c\x83\x37\x68\x6c\xab\x5e\xec\ \xe9\xbc\xd6\x69\x74\x81\x5d\x2e\x29\x65\xe0\x20\x0f\x1a\x03\x37\ \x0c\xc7\x2d\xf1\x80\x80\xa8\xdd\xd2\x48\x9c\xe4\x22\x00\x98\x6e\ \x07\xfa\xf1\x41\x8b\x11\x63\xe6\x6a\xee\xce\x7e\x84\x4c\x6e\x5c\ \xda\xa4\x8b\xba\xec\x64\x50\xd2\x84\x77\xc8\x1a\x92\x38\x85\x78\ \xcc\x89\x9d\xa8\x5c\x3b\xdd\xdc\x9e\xba\x2b\x02\xd1\xe1\x3b\x11\ \xea\x1d\x90\xd7\xc2\xf0\xc0\x89\x3a\xce\xca\x84\xe0\xd8\xfe\x7a\ \x0a\x88\x88\x59\x07\xb5\x00\xd9\x86\x8c\x35\x14\xd4\x41\xd1\x15\ \x5b\x10\xa2\xa7\x7a\x82\xba\xa9\xe0\xef\xd5\x4e\x41\x06\x69\xa9\ \x96\xea\x33\x60\x2f\x7d\x19\x5f\xe0\xda\x41\x14\xb4\x96\x48\x8e\ \x05\x0f\xe4\xb0\x29\x9a\xac\x31\x30\x61\x46\x1e\xa6\x31\x88\x50\ \x59\x58\xc4\xfe\xc2\xef\x76\x34\x5c\x16\xb0\x64\x1c\xf4\x9d\xc4\ \x65\x81\x19\xe1\x43\x0a\xe0\x83\x6f\xcd\xa4\x4c\x62\x2b\xba\xa4\ \xd1\x0f\xfc\x41\xbf\xd4\xd8\x6a\xe2\xcf\x76\xd8\xc2\xa0\x8c\x45\ \x73\x91\x87\xa0\x88\xe3\xae\xf1\xda\xec\x16\xce\xc2\xd8\x2e\x5b\ \x91\x5e\xee\x86\x00\x0f\x60\x81\xa2\x12\x22\x37\x04\xdf\x21\xe2\ \x81\xc0\xd6\x97\x5b\x40\xc6\x1a\x18\xef\x5d\xd0\xc1\x1a\xfc\x47\ \x57\xa0\x0a\xed\x11\x6f\x9e\xad\x01\x75\xaa\xdb\xba\xc1\xca\xef\ \x5d\x08\xeb\xb8\x00\xc5\xda\x2d\x90\x9e\x6a\xdd\x92\xaf\x82\x91\ \xc3\xe9\x84\x05\x7c\x3d\x44\x17\x74\x83\xd7\xf5\x65\x0f\x81\x1d\ \x0f\x94\xc0\x61\x66\x43\x0f\x33\x2e\xcc\xc2\x2f\x14\x87\xa9\x14\ \xd2\x43\x1c\xd0\x83\xcd\xf2\x9d\xfa\xe4\x6f\xe6\x52\x2b\x73\x74\ \x2e\x17\xa7\x51\x1a\xc5\x07\x99\x14\xad\x4f\xd4\x84\xfe\xdd\x8c\ \x00\xc9\x15\x81\x50\x86\x83\x7b\x34\x17\x1b\x4e\x70\x78\x3d\x30\ \xbc\x22\x12\x3d\xdd\xa6\x10\x60\x01\x2c\x86\x01\xbe\x02\x9d\x0e\ \xdd\x19\xbf\x86\xad\x7a\x79\x0c\x8c\x16\xec\x17\x55\xc8\x5c\xd0\ \x4c\xeb\x85\x0e\x24\xbf\xd0\x0b\x13\x46\xed\x54\xb2\x0c\x5b\xef\ \x0a\x5c\x2c\x65\xe8\x6d\x0f\x3d\xc3\x27\x59\x49\x07\x61\x9b\x11\ \x2c\x29\x0c\x9a\xe2\x0d\x5a\x00\x37\x7c\x41\x36\x30\xe6\x59\x5c\ \xab\xe3\xf2\x9d\xf9\xa5\x98\xfc\x86\x29\x43\x3f\x2b\x2e\x63\x44\ \x8c\xb5\xdf\x35\x89\x0d\xb6\xfe\x56\xfb\x39\x45\x17\x7e\x21\xfd\ \xe1\x0f\x8e\xc4\x01\xde\xd8\x9a\x77\x30\x33\xea\x06\xce\x3b\xb1\ \xa1\x1b\x87\xd5\x36\xa6\x15\xe9\x51\x10\x3f\x85\x01\xea\xd5\x57\ \x7a\xe5\xce\x21\xb6\x45\x37\xc4\xe8\xeb\x69\xc6\x20\x77\x12\x84\ \x38\x64\x7e\xb8\xc1\x4d\x3b\xea\xf2\xfe\x13\xe8\x40\xb2\x80\x9d\ \x65\xab\xbc\xcc\x08\x52\x2c\x53\xd7\xe5\x5d\xf8\xb3\xad\xb8\x40\ \x1e\x1c\x94\x20\xf7\xc7\x05\x45\x86\xbb\xc1\xe0\x65\x95\x40\x36\ \xe4\xea\xdf\x5e\xca\xf2\xf0\xc1\x2f\xf0\xc1\x00\x3c\x71\x98\xc6\ \xef\x42\xdb\x2c\x66\xce\x64\xe6\x62\x6e\x0a\x50\xfe\xab\x98\x70\ \x31\x45\x23\x68\x7c\x00\xd7\xe1\xd1\x49\x3d\x54\x41\x65\x05\x90\ \xc9\x75\x07\x3a\x35\x28\xe7\x49\x9e\x53\xf2\xda\x74\x09\x4c\x53\ \x32\x0e\x37\xcc\x31\x5c\xc1\x62\x13\xe4\x43\x58\xbe\xc5\x28\x45\ \x46\x37\xc8\x59\xd2\xf5\x07\x09\x89\x70\xc8\xe0\xc1\x63\x40\x14\ \x26\x71\x4a\xeb\x4c\x9b\x20\xb3\x70\xec\xad\x05\x0a\x5a\x22\x25\ \x16\x24\x5d\x78\x43\x0d\xd7\xb0\x26\xbf\x92\x90\x6a\xec\x3f\xe3\ \xe5\xc5\xc0\x57\x7f\x88\xd0\x12\x44\xc1\x3f\x6f\x9d\x09\x18\x6e\ \x3e\x5e\x0a\x00\xe0\x03\xe6\x9e\x8f\x59\x23\x80\x14\x2e\xab\x43\ \xdb\xf2\x2d\x77\xe9\x08\xa0\xa9\x32\x9a\x8b\x5c\x57\x6b\x9a\x6e\ \x84\x4e\x8a\x04\x75\xd3\x4b\x65\x51\x15\x77\x8c\xc7\xc0\x20\x60\ \x51\xe6\xe9\x51\xf2\x5a\xe8\xe9\x21\x16\x90\xde\x1c\xaf\xde\x96\ \x8d\x22\x08\x96\x08\xb5\xc5\x17\x20\x5b\xb6\x81\xa8\x6a\xe9\x64\ \xc8\x63\x90\xd0\xd8\x12\xec\x1a\xc8\x23\x51\xab\x73\x62\x49\xb2\ \x40\xce\x05\x09\xfa\xf7\xf4\x62\x2f\xdd\x02\xa9\x14\x18\xc1\x2b\ \xe5\xb6\x1d\xe0\x01\x28\x79\x20\xea\x0c\x48\x1b\xe4\xb6\xad\xa8\ \xc8\x18\xb0\xaf\x6f\x8f\xc5\x1f\x98\x0f\x2c\xfe\x9f\x35\x98\xa6\ \xf5\xf9\x41\xf4\x80\xbe\x35\x88\x33\xc7\xe6\xae\xcf\x2f\xa3\x5a\ \xd0\x8a\xb1\x70\x1d\xad\xe2\xc5\x81\x1d\xf8\xb5\x3b\x0c\xc5\x02\ \x17\x8e\x77\x0b\x20\x7a\xc4\xae\xbc\xae\x55\x4b\x6f\x2d\xe4\x30\ \x5d\x0b\x3c\x46\x07\xbd\xde\x79\xa5\x97\x28\xbb\x01\x66\x43\x88\ \x63\x84\x73\xca\x48\x9b\x98\xad\x01\x7b\x01\x94\x09\xb1\xf3\x0b\ \x7b\x08\x5d\xd0\x97\x83\x04\xb8\x0d\x0b\xf8\x7e\xb5\x40\x29\x6a\ \xb5\x14\x5c\x2a\x57\x08\x2b\x5f\x64\x75\x6c\xf3\x00\x12\x07\x48\ \x70\x57\x43\x12\x40\x6e\x98\xfe\x67\x98\x22\x37\x44\xbb\x98\xb4\ \xce\xb5\x99\xf6\x6c\x2f\xf7\xac\x47\x6c\xdc\x46\xd3\x09\xfc\x1c\ \xc2\x9f\xd1\x44\x8b\x73\xd5\xdf\x50\x6d\xa0\x3c\x73\x3a\x4d\x97\ \xb2\x55\x59\x52\x70\xc3\x54\x96\x1e\xeb\x39\x0c\x7d\x23\xa4\x66\ \xe0\x95\x73\x22\xa4\xa4\xa8\x8e\x14\x8c\x1b\x7a\xe5\x10\xd1\x25\ \xa2\x8c\xb2\x28\xa4\xd4\x0c\xd6\x6d\x6a\x94\xb3\xe5\xd3\x8d\xa0\ \x0c\x8f\xea\x33\xb8\xe0\x33\x48\x01\x3a\x28\x29\x84\xdb\x41\x0b\ \xec\x45\x4d\x99\x45\x1b\x88\xb9\x56\x7f\xc1\x57\x5f\x8a\xfa\xa0\ \xb9\xc4\x21\xf7\x59\x37\xb4\xcd\xde\x6c\xfe\x80\xe6\x32\x88\xc3\ \xb5\xf9\x94\xf8\x16\xa6\xcd\x74\xef\xe4\x2b\x18\xf3\x8a\xa7\xe1\ \x50\x38\xed\xae\x6d\xe3\xa0\x4b\x5e\x77\xad\xab\xb2\x7d\xde\xd6\ \x6a\xb0\x58\x92\xd0\x21\x4e\x8e\x06\x01\x87\x5f\x94\x08\xa5\xb5\ \x81\x35\xd4\x05\xcd\x18\x98\x06\x65\x60\x7a\xf9\x53\x3a\x77\x33\ \x80\xf1\xb7\x25\xbe\x0e\xd4\x3d\x5d\x07\x3c\x03\xaa\x93\x60\xf6\ \x6e\x08\x5f\x9a\xa2\x8a\x70\xc3\x5e\x58\x0e\xe7\x8c\x02\x29\x43\ \xf8\x27\xaa\x48\x67\xe5\x7a\x80\xa8\x0f\x15\xf3\x01\xdf\xad\xe4\ \x76\x4c\x61\xb0\x9f\x9f\x14\x03\x81\x80\xa2\xe9\xe6\x96\x4f\x9d\ \x17\x68\x17\x9f\x4b\x33\x36\x95\xbe\x38\xbb\xe2\x79\x87\xc0\x28\ \xd9\x3a\x21\xc5\x36\x06\xe0\x52\x0c\x7a\x8d\x1b\x1b\xbb\xda\x2b\ \x5c\x3d\x4c\x4d\xdb\x5e\x73\x8a\xa5\x57\xd0\x7c\x64\xcc\xe8\x28\ \x34\xc1\x86\x48\x81\xac\x44\x76\x98\xe5\x99\x05\xaa\xf3\x68\xe3\ \xd0\xd5\x99\xb6\x41\x7a\x0a\x90\xd2\x57\x90\x52\x2c\xf6\x56\x32\ \x1e\x3c\x03\x82\x6c\x79\x91\xda\x81\x84\x54\x8a\x3f\xf9\x07\x44\ \xfd\xb8\x47\xd9\xfa\x27\x2a\x58\xb0\xfa\x36\x15\x77\xe9\xd8\xfb\ \x3a\x4b\x2e\x74\x14\xc3\x24\x15\x0b\xfe\xe8\xce\xbe\x75\xda\x5c\ \xb4\x6e\xad\x4f\xc7\xdf\x18\x76\x8c\x84\x08\x8c\x80\xc8\xdb\x0d\ \xe4\x99\x47\x6d\x12\x90\x01\xa9\x34\x02\x55\xa8\x7c\x9c\xd5\x1c\ \xb7\x34\x23\xf9\xd3\xd0\x3b\xe4\x12\x40\xc6\x94\x80\xc5\x12\xec\ \x81\xa5\xa2\xce\x2e\x14\x96\xcf\xc7\x57\x8f\xbb\x08\x7b\xb9\x05\ \x22\xaa\xb0\x35\xb8\x68\xf3\xc2\xca\x87\xfc\xb7\x61\x31\x35\x77\ \x6a\xef\xbd\x3f\xfd\x18\xe0\x01\x3a\x84\x0a\x3a\x74\xdd\xab\xdb\ \xc1\x78\x3e\x94\x5b\x80\x45\x06\x89\x99\x35\xb8\xbe\xc1\xf3\xd0\ \x18\x70\x8e\x59\xa4\x79\x12\x24\x43\xdf\x3d\xab\xd9\x47\xfc\x9b\ \x57\xae\x19\x4d\x2b\x89\x1f\x55\xc6\x77\x31\xf3\x0b\xd7\x1b\xa9\ \x89\x78\xe8\xf5\x75\xb3\x13\x51\x08\xcc\x1f\x51\x17\x8d\x57\x28\ \x4f\x2c\x0c\x62\x53\x10\x16\xb0\xe8\xbf\xda\x9e\x56\x6c\x4d\x91\ \x68\x85\x06\xa5\xc6\x81\xc9\xe8\xe7\xa4\x4c\x8f\xcf\x95\xeb\x91\ \x92\xdb\xaa\x30\xba\xb1\x33\x25\x92\xba\xd2\x4b\x2c\xf6\x56\x79\ \xaa\x6b\xef\x25\x1e\xc6\x81\x23\x38\x40\xd8\x69\xd2\x65\x49\x9e\ \x16\xd6\xdc\x2c\x51\xb8\x64\x14\x00\x00\x4b\xba\x74\xc8\x30\x91\ \x62\x45\x8a\x76\x8c\x39\xd4\xb8\xfe\x11\x40\x12\x20\x59\xb2\x24\ \xa3\x47\x2f\x0b\xbd\x4f\x08\x50\xa6\x8c\x03\x92\x65\x16\x3e\xd5\ \xf8\xc4\xa4\xc0\x87\xc2\x19\x9b\x33\x6d\xf2\xc9\x69\xf3\x8c\x4e\ \x11\x3f\xc3\x85\x1b\xf1\x6a\x68\xd0\x57\xb6\x2c\xda\xaa\xe7\x64\ \xc4\x88\x3b\x4e\xee\xdc\xa9\x27\xae\x5e\x54\xab\x50\x9f\x3a\xd1\ \x1a\xa6\xc8\x1b\x19\x32\xc2\x84\xc1\x82\x85\x5b\x13\x2c\x4d\x9a\ \xac\x69\xe2\x86\x2d\x41\x86\xa3\x96\x3c\x74\xb8\xab\xa1\xc3\x51\ \x2d\x5a\xb8\xd9\xe5\xc6\x9a\x0b\x3c\x6b\xdc\xb4\xc9\xe3\x66\x8d\ \xb5\xc2\xd6\xa2\xb4\x48\x8c\xb7\x45\x37\xbc\x6b\x18\x4b\x71\x31\ \xd9\x2f\x1e\x3c\x74\x30\x67\xa6\xb3\x82\x8e\x37\x17\xde\xbc\x3d\ \x0b\x8d\x67\x0c\x1e\x74\x2d\xf0\xd8\xb1\x63\xf1\xa2\xb7\x10\x10\ \xdd\xb4\x18\xc8\x71\x63\x93\xd5\xac\x2b\xaa\x1e\xf3\x9a\xb6\xc3\ \x24\x59\x80\x88\x14\x49\x92\x5e\x4a\xe3\x24\x41\xf2\x71\xe9\x12\ \xe6\x4c\xe7\x3a\x79\xf6\xdc\xc9\xe7\xa7\x88\xa0\x4d\x93\xbd\xd2\ \x5e\x6f\x84\x2d\x5b\x55\xe2\x64\x88\xa3\x74\x44\xb8\x3b\x4e\x9b\ \x4a\x9d\x5a\xb5\x2a\x54\xac\x4f\xdd\x69\x2d\x22\xc3\xab\x8c\x10\ \x61\x78\x9c\x6d\xc2\x4d\x6d\xfe\xe0\x2e\x70\x1d\x8a\x6b\xa3\xba\ \x1c\xe2\x8b\x89\x51\xba\xb0\x06\x0f\x17\x10\x6a\xa3\x8b\x36\xd6\ \x38\x8c\x31\xc6\xba\xa9\xd0\xb1\x83\xf0\x92\x8c\x32\x17\xa4\xe8\ \x46\xb2\xcd\xe8\x70\x81\x8e\x67\x46\xf4\xc6\x32\xbf\x50\x9c\x0c\ \x0f\x29\x9e\xb9\x8d\x35\xd5\xd6\x68\x08\xa2\x26\xda\x10\xb0\xb7\ \x10\x5c\xc4\x6d\x22\xd5\x4a\xb0\x91\xa3\xe0\x84\xa3\x27\x99\x92\ \x46\x4a\x49\x8f\x94\x90\xab\x26\x0b\x98\x64\x3a\x23\x85\x9a\x74\ \xc2\x89\xa6\x98\x62\xaa\x2e\x1c\x3e\x9a\x1a\x01\x08\xa2\xb4\xd3\ \xce\x96\xf1\xc6\xb3\xc5\x97\x11\xb4\x42\x2f\xaa\x7a\xea\xf1\x05\ \xcd\xaa\xee\x08\x47\x2b\xf3\xa2\xd2\x6a\xab\x30\xde\xa8\xb3\x8b\ \x10\xf2\x48\xab\xbf\x36\x46\x81\xcb\xc7\xde\x1e\xd2\x8b\xa1\x35\ \xa4\xc0\x03\xa1\x2e\x1e\xe4\xcb\x1a\x6b\x1a\xeb\xb0\x31\x0f\x57\ \xb4\x50\x0a\x0d\x37\xe4\xb0\x85\x42\x31\x43\xd1\x9b\xce\x2a\x7b\ \xc6\x32\x23\xd0\x21\x2d\x34\xd5\x72\xab\xa8\x03\x1e\x04\xec\xc2\ \x8d\x3c\xba\x00\x14\x80\x3c\x72\x7c\x71\x47\x2d\x5a\xed\x2d\x99\ \x5b\xab\xb8\x75\xc8\x22\x11\x18\x69\xa4\x2c\x50\xaa\x27\x8b\x11\ \x98\x7b\x29\x85\x63\x9f\xfe\xd4\x09\xba\x2a\x45\x88\xe9\xca\x67\ \xb3\x1c\xa1\x1e\xa2\xa6\xad\xb6\x1e\x5b\x10\x58\x13\x4d\x77\x44\ \x38\x8f\xbd\x34\xc1\xcd\xea\x3d\xab\xdc\xc1\xc2\x89\xb0\xba\x78\ \x23\xae\x37\xda\xe0\x41\x2d\x26\xe8\x52\xc8\xd5\x8d\x40\x01\xb0\ \x89\xc6\x00\xfb\xaf\x0d\xbe\x0e\x62\x74\xc1\x15\x0b\x05\xcd\xaf\ \x0a\x01\x9e\x94\xb2\x49\x11\x2e\x54\xc5\xcf\xfe\xc5\xe3\x19\x23\ \x2c\x5c\xb0\x45\x52\x2f\x22\x15\xc6\x5a\x55\x45\x8b\x55\x44\x01\ \x7c\xc8\x08\x1d\x71\xb3\xc3\x02\x40\x73\xd5\x55\xd7\x22\xe9\xd1\ \x83\x9e\x01\x4a\x42\x29\xb9\x25\xa9\xa4\x00\x1f\x0a\x8e\x9d\x52\ \x27\x26\x83\xc2\x92\x8f\x9c\xaf\xc4\x6e\x84\x64\x9a\x1a\x56\x58\ \x69\x9d\x2a\xa1\x2a\x32\xef\x70\x87\x3d\xf5\xd4\x8c\xca\x4d\x37\ \xad\x4a\xda\x89\xb1\xc2\x0a\xa1\xd6\x25\x76\x69\x43\x6b\xb7\xe6\ \xdd\x48\x5e\x08\x01\x73\x30\x6b\xc2\x2e\xcd\x10\xb4\xb3\xd1\x8e\ \x34\xe1\x4b\x27\x6d\xb4\xed\x42\x2d\xfb\xd4\xb2\x42\x8d\x30\x02\ \x2f\x23\xc6\xe8\x80\xe2\x1d\x55\xbb\xcd\x8e\x67\x9a\xe0\xa1\x09\ \x6b\x8c\xb0\xa3\x83\x0e\xbc\x19\x23\xf1\xba\xd1\xf1\x26\x56\x59\ \x29\x1a\x03\xd0\x64\xfe\x72\x05\x92\x57\x94\x90\x63\x19\xf3\xe4\ \x46\x70\x0e\x59\x9a\xa2\x73\x56\x67\x2a\x77\x2e\x5d\xa8\x68\x9b\ \xe2\x8e\x3b\x32\x9b\x2a\xc1\x29\x27\xc2\x71\xc7\xcc\x33\xaf\x7a\ \xaa\x76\xad\x78\x70\x22\x3f\x1e\x42\xb0\xba\xae\xb7\xba\xee\x6d\ \x14\x37\xea\x1d\x45\x6b\xb6\xd6\xe8\xe6\x5f\xc9\x36\xdd\x0c\xb4\ \xce\x2c\xab\x10\xaf\x45\x19\xbd\xd4\x9a\x49\x2f\x94\xbe\xd0\x0c\ \xe9\xc6\x03\xe2\x28\x8c\xd0\x7b\x6f\xbe\x5d\xec\xbb\x6f\x90\xd1\ \x07\xd9\x8e\x3c\x6c\x4d\x26\x38\x20\x7c\x8d\xc3\x57\x96\xe6\x4f\ \x52\x26\x3e\xf0\xc1\xe7\xc9\x14\xf0\xe1\x23\x05\xd2\x01\xd8\x2c\ \xea\x38\xeb\x74\x42\x11\x4a\x32\x56\x17\x8e\x33\x94\x49\x76\x4c\ \x71\x60\x50\xda\x44\xbb\x08\xc2\xee\x29\x3f\x38\x57\x58\x78\x90\ \x41\x1e\xe4\x21\x0f\x7c\xfa\x53\xf0\xbc\x26\xa0\xbd\x44\x08\x32\ \x52\xd8\xd4\xf3\x3a\x23\x30\x13\xe1\xc1\x42\x8c\xa1\x9e\x27\xa8\ \x37\xa1\xea\x35\x86\x85\x0a\x73\x41\xdd\xbc\xd7\x8d\x31\x90\x63\ \x7c\x19\x30\x5f\xfa\x80\x18\x44\x1f\x8e\x81\x7d\x1c\xd1\x15\x48\ \x86\xd3\xab\x5f\x8d\xe4\x24\xc8\x59\x4e\x4c\xf8\x97\x82\x3f\xd4\ \x0c\x59\xc8\x72\xfe\x12\x74\xa2\x53\x93\x9e\x94\x6e\x04\x3b\x4b\ \x1d\x77\x44\xe0\x84\x14\xc8\xc9\x09\xf1\x41\xda\x9b\xa0\x02\xa7\ \xa7\xb8\x49\x2b\x16\x0c\xcb\x1b\xf1\xa3\xc1\x55\x75\x0c\x84\x1c\ \x11\xd0\xf0\x20\xd3\x98\xe7\x79\x46\x45\x08\x6b\xe1\xf4\x5e\x68\ \x0d\x18\x52\x8f\x51\x84\x64\x94\x87\x26\x85\x07\xd0\x38\xcc\x08\ \x0f\x9b\x58\xac\xcc\xf7\x38\x21\x4e\x72\x47\x44\x34\xe2\x47\x6e\ \x45\x9c\xf9\x81\xa4\x57\xf2\x1b\x56\xb1\x68\xc2\xbf\x3f\xcc\x4c\ \x7f\x55\x2c\x65\x15\xad\x98\x02\x9b\x34\xeb\x4a\xcd\x0a\x5a\x96\ \x16\x48\x81\x32\x31\xc5\x1d\x4f\xcb\x0a\x1b\xcd\xe3\xa6\x1f\xec\ \xf2\x82\x6f\xcc\x43\x18\x38\x38\x18\x1e\xb4\x61\x17\xf2\xaa\x23\ \x6d\xf0\x28\x99\x13\xf9\xe5\x51\x78\xe9\x46\x21\xa3\x50\x98\xc2\ \x44\xc1\x90\x86\x89\xa1\x14\xfa\xb5\xa8\x4b\xa9\xcd\x7b\xde\x68\ \x64\x68\xc4\x97\xa3\x48\x5a\xa4\x87\x94\x4c\x9f\x1d\xa8\xe1\x23\ \xe0\xf8\x8a\x9d\x2d\x29\x0e\x3d\x3c\xf9\x92\x2c\xfc\x66\x26\x52\ \xc4\xc7\x14\x8f\xa5\x3f\xfd\xfd\x81\x9f\xf8\x3c\x96\x3f\x55\x79\ \x86\x66\x89\x60\x81\x02\x2d\x4f\x35\xc2\x18\xc6\x82\xca\xae\x96\ \x4e\x8b\x13\xfe\x2e\x9d\xc0\xcb\x1f\x84\x61\xa2\x17\xe4\x41\x18\ \x04\x93\x41\x78\x11\xe8\x98\x03\xda\xc5\xe0\xac\xf1\xcc\x90\x1e\ \x84\x84\xd6\x5c\x43\x34\xad\x49\xcd\x42\x56\x93\x51\x6d\xeb\x17\ \x0d\x99\xe9\xa1\x0a\xd5\xed\x19\xe1\xac\xd8\xf9\xc8\x39\x4e\x73\ \x86\x2c\x37\x4c\xb0\x11\xfc\x50\xf6\x2b\x77\xa2\x24\x9e\xcc\x01\ \x42\x28\xef\xc9\xcf\x7b\x46\x71\x8a\x4d\x95\xa2\x3f\x8b\x60\xc5\ \x55\x46\x27\x05\x3f\x10\xa8\x42\x29\x6a\xc1\xd8\x6d\xb5\x4d\x16\ \x74\x42\x18\x23\x3a\x9f\x22\x14\x01\x8e\x17\xdd\x20\x30\x79\xb0\ \xaa\xff\x74\x94\x36\x0c\x01\xc5\xd8\xdc\xa0\x27\x12\x4e\x73\x86\ \x80\xa4\xa6\x0b\x63\xc8\x36\x97\x66\x48\x91\x35\x94\x82\x11\xa2\ \x00\x3e\x9b\xde\x14\xa7\x3e\xf4\x61\x61\x21\xb7\xd3\x1d\xa1\x83\ \x40\x42\xa2\x47\x15\x94\x28\xa4\x8f\xd0\x6f\x73\x2f\x01\x02\x93\ \xf0\xc7\xcf\x2d\xf0\x53\x94\x52\xf4\x2c\x67\x53\x10\xd5\x7f\x1e\ \x2b\x3a\x67\x88\x6a\x54\xad\x1a\x46\x84\x3a\x61\x81\x61\xe4\xa5\ \x2e\x77\x19\xdb\x1f\xcc\xe7\x2b\x63\x1d\x6b\xd5\x7a\x27\x98\xb8\ \x0a\xea\x83\xc7\x94\xd7\x28\xf6\x92\x16\xea\x15\x66\x42\x15\xfa\ \xeb\x1f\xfe\x33\x34\xa1\x16\x5c\x41\xaf\x13\xfa\x10\x65\x9e\xf1\ \xb0\x46\x22\xf6\xb0\x3f\x8c\xa4\x24\x15\xab\xbe\x35\x68\xa4\x38\ \x55\x78\xec\x77\x59\xf2\x11\x5f\xf5\xea\x65\x2f\x41\x6a\x3f\x47\ \xa9\xd4\x28\x3e\x95\xb3\xfc\x2c\xc2\x1f\xa2\x4a\xd5\xd3\xda\xe4\ \x07\xd5\xf9\x6a\x44\x65\x8b\xdf\x5d\xda\x96\xb6\x75\xfa\x4a\x9d\ \x00\x0c\xe0\x51\xbc\x81\x63\x72\x61\x2b\x32\xf7\x95\xd7\x47\x21\ \x12\x52\x71\x03\x98\x63\x10\x89\x4d\x3f\x96\xcd\xb9\x0e\x0b\x4d\ \x4d\xc9\x71\xb8\x1f\xe6\x66\x9c\x3a\xcd\xee\x24\x4d\xb0\x0b\x87\ \x3c\xd6\xbb\x8e\x3d\x62\x4b\x92\x81\x80\xf2\x56\x23\x09\xf8\x63\ \xef\x16\x64\xd0\x4f\x53\xf6\xf3\xbd\xef\x85\x2f\x7c\x51\x19\x5a\ \x27\x5d\xb5\x1a\x6e\xb2\x49\x55\xab\x3a\xd6\xd9\x8e\x55\x06\x5d\ \xf1\x4a\x9d\x96\x80\xe4\x37\x78\xed\xc0\x20\x5c\x02\x28\xe2\x9a\ \x57\x09\x17\x8a\xca\x91\x72\x30\x84\x0b\x76\x85\xbd\x4e\x58\x91\ \x68\x8b\x6e\x38\x7b\x78\xdd\xea\xae\x06\xbb\x1f\x0e\x59\x36\x46\ \x0c\x1e\xef\x06\x29\x24\xc0\xf9\x24\x48\x90\xa3\x9c\xf3\x6e\xf6\ \x0f\x32\xd8\xec\x3d\x93\xfa\xd9\x7e\xc6\x38\xc6\xee\x85\xaf\x68\ \x7f\xfe\x50\xd5\xd6\xd2\x97\xc8\x44\xfe\xca\xa1\x03\xbc\x90\xb8\ \x18\xb3\xad\x1c\xa3\x63\x93\x1f\x02\x5c\xc2\x1c\x46\x9b\x11\x36\ \x02\xf6\x08\x16\xbd\x08\xb7\x74\xaf\x6e\x6b\x81\x11\x2c\x23\x1a\ \xd1\x78\xc3\xa6\x90\xec\x30\x99\x2f\x62\xe6\x20\xb6\xa0\x21\xf0\ \xcb\xa4\xc9\xda\x7c\xd4\x96\xb0\x84\xc5\x30\x11\x65\x3f\x37\xdb\ \x67\xf4\xee\xfa\xd0\x7c\x7e\xaf\xaf\x6b\x8c\xac\xd3\xd2\xb6\xd7\ \xbd\x3e\x72\x80\x91\x1d\xe0\x3b\x85\xa0\x5d\xc2\x05\x8c\x88\x21\ \xad\x11\xe3\xc9\xd5\x9a\x97\x32\x2e\x95\x11\x19\xbd\xb5\xb1\xcd\ \x52\x14\x72\xa6\xf2\x8c\xe0\x4d\xd1\x88\x2f\xd5\xd7\xf5\xb0\x61\ \x0d\x5b\xe6\x20\x96\x79\x0c\x70\x49\x82\x90\x28\x77\xc4\x5b\xb9\ \x79\xb2\x4e\xbc\xec\x51\x65\xa6\xd4\x18\x6f\x81\xdf\xfb\xfe\xc3\ \x66\x9f\xca\xe7\x43\xd7\xb9\xd8\x75\x16\x2b\x7f\x8b\x9d\x70\x62\ \x2b\xbc\xc8\x6f\xcc\xa0\x7e\x0a\x43\x23\x8e\x42\x9a\x21\xfb\x9a\ \x74\x84\xea\x1a\x61\xee\x25\xac\x6d\x8c\x9a\x0c\xc2\x8a\xdb\x0d\ \x50\x7b\xcf\x61\x60\x26\xac\xb9\x25\x59\x4e\x73\xaa\x3c\x03\xcf\ \x60\x42\x47\x4c\x06\xef\xf7\x0d\x2b\x09\xc4\x9a\xb5\x9c\x55\xe0\ \xfe\xbf\xa4\xc2\x98\xe7\x76\xd6\x35\x7a\x07\x9e\x70\x86\x8b\xf5\ \xd0\x07\x3f\xf8\x90\xf9\xcb\xdf\x73\xe9\x0e\x0b\xbb\x4b\xeb\x06\ \x8b\x19\x6d\x8d\x30\x64\x17\x83\xd9\xad\x9e\x32\x8e\xbd\x0c\x19\ \x97\x43\x52\x58\x14\xa5\xb0\x57\xe9\x7f\x41\xac\x1b\x8f\xa4\x18\ \xca\xc9\x1c\xe6\xc3\xaa\x5a\xe5\x76\x18\x83\x4f\xf1\xe1\x3e\x93\ \x1d\xf1\x23\xbf\x99\xac\x9b\x6b\xdd\x62\xa6\xa2\x77\xb3\x74\xde\ \xf5\xdf\xeb\x5c\x9f\x62\xcf\xe7\xcf\x49\x4f\xfa\x6c\x63\x5b\x04\ \xc4\x2b\x7e\x4e\x70\xec\x9d\xd5\x10\xc5\x68\xa9\x1b\x6f\x0f\x73\ \x8d\x2b\xa5\x17\x25\x53\x0a\x5d\x7b\x52\xda\x94\x8c\x1f\xa9\x27\ \xf2\xe8\x72\x28\x7c\x3a\x45\xfb\x86\x13\x6b\x66\x53\x6b\x61\x0d\ \xbb\xc0\x07\x10\x80\x34\xf7\x21\x01\x41\x4b\x6f\x6e\x09\xce\x5d\ \x7c\x4f\x3a\xfb\xdb\xb3\xec\x05\x3a\xc1\x09\x4e\x74\xfe\x86\x56\ \xf1\x8a\x97\xed\xf1\x13\x3f\xd1\xdb\x1a\x1a\xc0\xae\x92\x7c\xf0\ \x18\xa2\x10\xe3\x5d\xde\x30\x24\xcc\xe6\x21\xb1\xe9\xcc\xc8\x6c\ \x59\xcb\x2d\x44\x0c\x6a\x6a\x1a\xdd\x9a\x8e\xef\xf4\xa8\xe7\x9b\ \x10\xd5\xfd\x22\xf3\xa1\xc3\x13\xaf\x4f\x02\xae\x74\x55\xe2\xfe\ \x21\xd9\xfc\xe6\x30\x0b\xe5\x93\x94\x9a\xde\xde\xd3\x8c\xb4\x55\ \xbc\x31\xc1\x8b\xac\xc8\xfe\x0c\xbe\xac\x2a\xb6\x44\xa0\xbe\xee\ \xcb\x82\x76\x89\x2b\x6c\xcb\xd8\x90\xac\xb7\x00\x00\xb8\xf8\x84\ \xad\x24\x90\x98\x74\x4b\x9a\x30\xae\x7a\xb4\x89\x31\x12\xc3\x43\ \xb6\x2f\x32\x44\xea\x42\x88\xcb\x08\x5c\xe0\x70\x34\x8c\xfc\xca\ \x2f\xe5\x54\xad\x54\x08\xeb\x19\xac\x01\x1f\x3c\x62\x38\xd6\x0c\ \x01\x20\xcb\x7d\x42\xc2\x89\x5a\xe2\x37\x58\xac\x9e\xea\x49\x95\ \xfa\x2f\x95\x02\xca\x49\x8e\xa5\xc6\x6e\xec\xb4\x8e\xc5\xaa\xce\ \xa0\x00\xc3\xe8\x69\xda\x68\xbf\x1a\x30\xd1\x96\xcc\x55\x32\x46\ \x2f\x0e\x6c\x09\x98\x60\xd2\xf6\x60\x30\xe4\x8a\xb8\x38\x50\xb9\ \x1e\xe5\x9a\x96\x0b\xaf\x46\x8a\x7a\xa2\xa0\x04\xc5\xec\xe4\xd0\ \xae\x54\xd2\x4f\x7d\x78\x2a\xed\x54\xc3\x04\xa0\x01\x06\xdf\xef\ \x64\xaa\x00\xb2\x82\x63\x24\x86\xe4\x37\x44\x02\x24\x7e\xa3\x58\ \x9e\xe3\x7f\xae\xc8\x07\x7d\x90\x27\xaa\xe1\x0c\x0a\xb1\x26\x84\ \x6d\x08\x93\x70\x8c\xae\xaa\xbe\x10\x50\x2b\x0e\x10\xe9\xfe\xeb\ \x01\x21\x30\x40\xdc\xa5\x05\x00\x83\x8e\x40\xa1\x12\x37\xfe\x02\ \x42\xa8\xa7\x09\x2a\x6f\x0f\x40\xf1\x30\xa4\x47\xfb\x5a\x20\x1f\ \x64\x8a\x9a\x08\xa5\x14\xaf\xef\x20\xee\xaa\x05\x30\x8c\xba\xc6\ \xec\xec\xc4\x6c\x0d\x53\x8d\xa7\x72\xca\xdc\x4c\xe0\x19\x3c\x02\ \xf6\xe2\x2f\x0e\xd6\x4c\x48\x10\x60\xde\x76\x85\x25\xfa\xd0\xbc\ \x60\x02\xb3\x94\xa5\x07\x6f\x66\x67\x92\x51\x04\x0a\x91\x27\x90\ \xd0\xaa\x58\x0b\x12\x59\xcb\x00\x13\x8f\xd8\x28\xf1\xf9\x36\xe2\ \x0d\x78\x80\x1b\xf2\x41\x2d\xa2\xae\x40\x6a\x25\x40\x20\x10\x14\ \x30\x0f\x03\xd1\xe2\x30\x10\x06\x0f\x14\xa3\x51\x20\x66\x03\xcb\ \xc6\xeb\x32\xcf\x31\x32\xaf\x91\x4e\x30\xe5\x3c\xcc\x6f\xac\x0b\ \xdd\xd0\xc7\x16\x4f\x6f\x17\xdf\xcf\x23\xe6\xb0\x0e\x81\xf1\xbb\ \x88\xd1\xde\x58\x86\x25\x94\x43\x19\x01\xe8\xc7\xb6\xa8\xc7\x84\ \x82\x49\x10\x2a\x1a\xc5\x88\x02\x7e\x00\x11\x93\x30\x09\x15\x8f\ \xf8\x1a\x90\x3e\xd4\x45\x5d\xb8\x51\x23\x08\x2c\x0c\xd2\x22\x9a\ \xdc\x80\x20\x0a\x64\x0d\x8c\x09\xb8\xfa\x64\xea\xe0\xa2\x4f\x14\ \x45\x1e\x23\x64\x0f\xac\x89\xf3\x30\x84\xec\x4e\xb1\x85\x2e\xe4\ \xeb\x44\x2a\x0a\xba\xc1\x05\x9e\x61\x05\x3a\x80\x87\xfe\xc2\xec\ \x0c\x51\x0d\x29\xfd\x51\xb1\x4e\xcd\x7c\x4c\xc0\x05\xe0\x07\x08\ \x92\x20\x06\xc1\x83\x72\x68\x50\xb2\x86\xc3\xcd\xb4\x12\x08\x3e\ \x61\x39\xaa\xa1\x8b\x90\x31\x66\x62\x02\xa1\xb0\xe4\x2b\x97\xa4\ \x8b\x6e\x62\x1a\x17\xb1\x00\x87\xed\x23\x27\x71\x21\xe6\x25\xc9\ \x64\xe0\xe1\xb8\xa1\x2c\x26\x70\x09\xdc\xa0\x1b\x12\x22\x2e\x46\ \x81\x09\xf2\x60\x17\xc6\x11\xb8\x76\x41\x5f\x84\x8b\xd3\x48\x4a\ \x42\x38\xcd\x31\x50\xd1\x42\x18\x13\x9b\x2e\x64\x7a\x88\x0b\xdc\ \x52\xa3\x16\x51\x2e\xdd\xdc\xb0\xdc\x50\x0d\x88\xca\x29\x05\x4d\ \x40\x0b\xdc\x47\x2a\xf9\xe0\xfd\xea\x30\x93\xd6\x6c\x57\xf6\x70\ \x48\x66\x0d\x24\x88\x45\x49\xba\x08\x2c\x31\x8b\x2c\xbb\x28\x19\ \x5f\x82\xa0\xb4\x08\x11\xc3\xc0\xb4\x52\x20\x0c\x3c\xd2\xd0\xde\ \x52\x24\x47\xf2\x21\xde\x80\xac\x30\x48\x70\x02\x83\x21\x9a\x00\ \x9b\x5e\xee\x21\xda\x00\x14\xd7\x62\x13\x01\x20\x51\x38\x28\x51\ \xf2\x88\xca\x30\x84\x90\xdc\xc6\x42\x20\x66\x31\x1b\xb3\x27\xa7\ \x49\x79\x1c\x13\xcc\x2c\x26\x0d\x65\x91\xb0\x52\xaf\x62\x72\xf1\ \x7c\xae\x0b\x1a\x74\xe5\xa8\x62\x90\x1e\x80\xe4\xfe\x20\xe1\x0d\ \x89\xe8\x2d\x35\x9f\xc8\x25\xc0\xf2\x25\xae\xc4\xbc\x5a\x93\x49\ \x7e\xac\x08\xe8\x0b\x59\x6e\x93\xf8\x10\x6d\x12\x43\xf2\x21\x2a\ \xb1\x4e\x84\x33\x0c\xee\x03\x3f\xc2\x00\x41\xdc\x40\x32\xd6\xe0\ \x3f\x80\x6b\x70\x48\x28\x0f\x14\x22\xb8\x44\x91\x98\xf2\x24\xa4\ \x12\x29\xfb\xf0\x8a\x86\x72\x48\x3b\x1f\x85\xca\xc2\x4e\x9b\x18\ \xc9\x43\xce\x0e\x0d\x2b\x13\x92\xd6\x4e\x47\x8e\x52\x9c\x9a\xf2\ \x0d\x5d\xc0\x7d\x5e\x01\xf6\x42\x13\x48\x62\xaf\x2a\x61\xef\x06\ \x91\x23\x93\x70\x90\x58\xe4\x8c\x4a\x62\x33\x3f\xcf\x60\x26\x40\ \xa7\x26\x74\x73\x08\x43\x0b\xc8\x4e\x6b\x40\x13\x0d\xfa\x1a\x2e\ \x04\x68\xab\x0b\xc8\xca\x6a\x92\x67\x05\xfe\x02\x51\x54\x45\x03\ \x23\xa4\x98\x3e\x8a\x84\x52\x52\x55\x4a\x88\xc1\x40\x2f\x31\x12\ \x89\xec\xf2\xa1\x6e\x20\x06\x62\x48\x4e\xeb\x1a\x43\xfc\x56\x64\ \x33\xd3\x70\xdd\xfe\x51\xfd\xd0\x90\x7c\x54\x43\x0b\xa0\x01\xf6\ \x2a\x27\x09\x5e\xef\x7d\x82\x43\xcd\xdc\x73\x9d\x84\x63\x38\xda\ \x09\x38\xf8\x13\x26\x5a\x73\x2c\x73\xa2\x26\x34\xf2\x08\x87\x70\ \xd8\x04\x14\x24\x01\x4c\xd1\x9c\xcf\xbf\x02\xfe\x90\x40\xbb\x40\ \x06\x9a\xa0\x1b\x56\x60\x05\xf2\xe2\x78\xc6\xf4\x31\xdc\xc0\x78\ \x32\xb0\x09\x06\xf3\xa3\xaa\xa7\x1d\xe7\xe6\x42\xe8\xa6\x1b\xf2\ \xe1\x51\x14\x69\xa6\xe0\x06\xd4\x42\x83\x04\x47\xc5\xfc\xf8\xd1\ \xdc\x6e\xb1\xdc\xd2\xcd\x45\x43\x26\x29\x29\xb3\x6f\xae\xc0\x13\ \x7c\xb1\x4f\x63\x10\xf6\x02\xf5\x20\x6f\x05\xa8\xd8\xe9\x57\x7e\ \x66\x58\x46\x67\x2c\xa9\x15\x3a\x10\x71\x7f\x94\x34\xb4\x0a\x6f\ \x52\x91\x2d\xc9\xb8\x51\x21\x92\xcd\xd8\xbc\xf5\x0d\xb0\x20\x1f\ \x56\x80\x1c\xbc\x01\x21\x90\x47\x41\x0a\x46\x36\xb2\x66\x70\xf0\ \x82\x46\x12\xc5\xf3\x96\xc9\x44\x12\x69\x45\x58\x48\x31\x44\xae\ \xcb\x48\x2e\x87\xf0\xd1\x70\x72\x55\x4e\x57\x74\x05\x4d\xad\x7c\ \xca\xcf\x04\x90\xa0\x0d\xa6\x92\x72\xaa\x40\x2a\xa7\x52\x59\x7f\ \xb1\x34\xe1\x0f\x01\x5e\xc1\xc4\x40\x22\x3f\x8d\xd4\x21\x8b\xd4\ \x49\x68\x4c\x8a\x4e\xeb\xc6\x04\x90\xf9\xa0\xb0\x37\xc0\x35\xd9\ \x8e\x0d\xc9\x1e\x22\x0c\xb8\xc1\x08\xc8\x81\x1c\xfe\x62\x1d\x09\ \xe5\x84\x98\x09\x21\xf2\x00\x32\x3c\x64\x0d\xfe\x72\x5f\x22\x84\ \x7b\x3e\x23\x53\x96\xe9\xaf\xde\xd1\x32\xfe\x40\x43\x4d\xbd\xc7\ \x56\x8b\xd2\x04\xc7\xf3\xf4\xea\x34\x29\x27\x09\x3d\x67\x51\x17\ \x3d\x61\x14\x20\xf6\x33\xa7\x72\x61\x9b\x95\x61\xe3\xe0\x6a\x4f\ \x46\x24\x88\xe5\x67\x00\x28\x26\xc0\xf2\xc7\x90\xa5\xce\x68\x8c\ \xc6\x84\x8e\x40\x7d\xb3\xad\x90\x8d\x52\x47\x16\x00\xc8\xd5\x5c\ \xc9\x61\x05\x8c\xa0\xa4\x5a\xc0\x1b\x38\x83\x53\xdc\x71\x2d\x4a\ \xc8\x50\x3a\x48\x0b\x77\xd6\x60\x44\x24\x44\x26\x23\x44\x22\xe5\ \x51\x40\x0d\xd4\x24\x13\xd4\x4e\x30\x1f\x83\x75\x1f\x57\xb0\x57\ \x53\xd0\xdc\x3c\x61\x09\x94\xb5\x72\xa7\x12\x06\xe3\x0d\x57\xea\ \x50\x48\x3c\xe2\x67\xe4\xed\x23\x80\xf4\x6b\x3d\xe7\x9f\x6c\xec\ \x2b\x00\xf0\x6c\x09\x14\x5c\x15\x6d\x21\x42\xd2\x64\xb7\x51\x23\ \x64\x00\x0b\x52\xe1\x5c\x53\xe1\x99\xee\x4a\x91\xce\xf5\x53\x41\ \xe3\x99\xd2\x02\x35\xd2\xd5\x0d\xae\xd0\x0d\xf6\x80\x30\x5a\x6a\ \x41\x32\x85\x32\x08\x77\x4d\x0f\xb7\x68\xff\xaa\xcb\x48\xad\x28\ \xcf\xed\x69\x9d\xf6\x57\xeb\x54\x33\x55\x54\x17\xfb\xc6\x13\x00\ \xc0\x7d\x7a\x51\x59\xfd\xb4\x17\x33\x77\xcd\x6c\x14\xf6\xb4\xa4\ \xf6\x6a\x8f\xf6\xbe\xd2\xbc\xa0\xe8\xfe\x9f\x7e\x0f\x75\xe9\x03\ \xd1\x94\xcc\x40\x2b\xb5\x75\x93\xac\x5b\x7d\xd3\x98\xde\x20\x0c\ \x84\x60\x76\x7d\xc1\x1b\x62\xf5\x90\xbc\xa1\x65\x5b\xf6\x53\x43\ \x04\x13\x93\x47\x91\xf2\x22\xae\xd6\xa2\x30\x13\x69\x43\x32\xe3\ \x33\x56\xc8\x7b\x9a\x97\xe4\x40\x03\x71\x48\x2d\x7a\xf1\xf4\xdc\ \x6c\x91\x4e\xaf\x37\x92\x1e\x09\xcd\x9a\xb5\x7b\x1d\xb6\x6a\x03\ \x55\xee\x00\x75\x47\x3f\x02\x85\x83\xe6\x37\x48\x67\x6c\x03\x8e\ \x9f\x04\xee\x7d\xd9\xb6\x5b\x59\x97\x7e\x95\xcc\x7e\x57\x57\x5e\ \xbc\xa2\x5c\x53\xa1\x87\xf3\x41\x08\x66\xca\x6e\x05\x58\x80\x57\ \xc0\x1b\x6c\xb7\x6e\xe9\x40\x36\xb0\x70\xd2\x3c\x2f\x70\x07\x37\ \x44\xd2\x06\x71\x6d\x35\xdc\x4c\x70\xfc\x58\xae\xfc\x76\x64\x29\ \x71\xd1\x7a\xa5\xd7\xdc\x9e\xc1\x04\x54\x63\x0f\x96\x20\x3b\x60\ \xef\x61\x7b\xf1\x7b\x93\x55\x2a\x63\x4f\x59\xcf\x77\x04\xa6\x52\ \x35\x69\x8f\x4a\xf4\x0c\x64\xdf\x00\xc6\x7c\x8e\x6d\xc7\x55\xc9\ \xea\xb7\x7e\x5d\x37\x24\xbd\xf5\xf9\xea\x24\x0c\xdc\xa1\x87\x53\ \x21\x1f\xea\x32\x1f\x2c\xe3\x5c\x87\x98\x88\xdd\x31\xa4\xec\x96\ \x41\xf4\x64\x14\x25\x84\x52\x02\xfe\x17\x8a\x3f\x55\x6e\xd7\xb4\ \xcb\xc2\x87\x87\x18\x17\x72\x94\x16\xbb\x58\x94\x92\x22\xf7\x6f\ \xfa\x86\x25\x81\xa0\x72\x46\xb8\x8c\xd1\xd8\x7b\x63\xaf\x59\x41\ \x33\x05\xfa\x30\x38\xa4\x55\x8e\x81\xae\xd8\x5c\x77\x5c\xf7\xf8\ \x86\xfb\x18\x97\x2d\x75\xea\x82\xd3\x09\xb8\x41\x08\xf2\x41\x1c\ \xb8\x61\x2c\xd2\xf4\x53\x79\x28\x99\x87\xd8\x9b\xf4\xe8\x53\xbb\ \xc1\x13\x30\xb0\xf2\x06\xe9\x52\x2a\x79\x44\x3e\xe3\x70\x8a\x38\ \x87\xce\x26\x7c\x8e\xd6\xfc\x38\x2c\x05\x1f\x97\x9c\xba\xf8\xba\ \xc0\x58\x35\x26\x97\x4f\x61\x4f\x0e\xcb\x38\x7f\xd4\xf9\x84\x5f\ \x01\x95\xcf\xa0\x7f\xc0\x57\x4b\xe2\x38\x26\xce\x00\xbd\x7e\xcd\ \xce\x4c\xf6\x8f\xf3\xd8\x64\x1d\xd0\x8f\x97\xac\x97\x49\xb2\x08\ \xa6\xc6\x1d\x84\xc0\x1d\x10\xda\x98\x03\x38\x99\xed\x80\xa1\x05\ \x98\x85\xc2\xed\x5c\x93\x78\xae\x30\xf0\xeb\xaa\x99\x70\x03\x18\ \x71\x70\x88\xd4\x9e\xf7\x70\x02\x58\xdd\x46\x99\x83\xd1\x6f\x94\ \x9d\x52\x8c\x1f\x76\x84\xab\xf6\x72\xf1\x61\x0b\x60\x50\x95\x3d\ \x02\x95\xf1\x07\x06\xc3\xc1\x06\xb5\x24\x34\xd7\x77\xcf\xe0\xb7\ \x4e\x6e\xc0\x8f\x57\xb7\x75\xfe\xc3\x15\x6d\x73\x18\x2e\xa7\xae\ \xc8\xca\xa8\x5c\xb0\xa0\x5c\xca\x45\x08\x58\xb6\xa1\x99\xda\xa1\ \xd1\x55\x68\x8b\x92\x1c\x5c\x00\x13\xa1\x39\x42\xa6\x19\x79\x37\ \x84\x8a\x3b\xa0\x88\x2b\x18\x71\xbc\xfa\x04\xff\x31\x3c\x2b\x53\ \xa4\x53\x8f\xa4\x23\x49\x0a\x44\xec\x06\xb6\x80\x84\xa5\x32\x7f\ \xfc\x74\xa5\xd5\xda\x8c\x5b\x1a\x47\x5b\x2c\x34\x3b\x57\x2a\xc3\ \xa1\xae\x75\xee\x85\x8f\x6c\xa7\x77\x3a\xa8\x7d\xfa\xa7\xdf\x97\ \x7e\x57\xd7\x8e\x7e\x79\x6a\xc8\xc8\x1d\xca\xc2\x1d\xf2\x01\x7a\ \xcd\xc7\xa1\x11\x47\x91\xf4\xa6\x65\xbb\x21\x42\x24\x19\xe3\x00\ \x77\x43\x4c\xc8\x04\x9f\x57\x35\x32\xac\xa3\x59\x2e\x83\xe7\xf4\ \xc3\x32\xd3\xac\x0d\xe7\x0d\x3d\xa0\x21\x6e\x40\xad\xe7\xfa\xad\ \xd9\x79\x0b\x58\x3b\xa5\xdd\xda\x17\x1d\x36\x26\xa6\x32\xaf\x49\ \xa7\x7f\xd8\x97\xe0\xde\x60\xa7\x01\x9a\x75\x81\xd3\x75\xff\xf9\ \x7e\x21\x50\x2e\xbd\x0a\x8e\xca\xa8\x98\xb1\x40\x1c\xc0\xf3\xb1\ \xed\x00\x4b\xa1\x37\xc3\xa4\x80\xa2\x17\x05\x9a\x79\x56\x28\x5d\ \xa0\x1b\x3a\x1a\xcc\x3e\x7b\xb0\x5c\x34\xa4\xb9\xf8\xbb\xc7\x39\ \x05\x5d\x40\x17\xe2\x82\xfe\xdf\x58\x5b\x59\xf3\x87\xa5\x57\x9a\ \xdf\x58\x3a\xa5\x59\x3a\x05\x4e\x98\x4a\xea\xda\x4f\xf1\x27\x9e\ \x77\x7b\xb0\x7b\xfb\x7e\x03\x9a\x8f\xfd\x0b\x53\xd1\x96\xa7\x8b\ \xdb\x2b\xc8\x8a\xac\x86\x2c\x0c\x8a\x9a\x2c\xd2\xd4\x71\xcc\x2d\ \x99\x3b\x5b\xaa\xab\x0f\x9a\x17\x85\x6e\xa5\xe0\x0a\x16\x64\x32\ \xea\xe6\x70\x18\xba\x6f\xbc\x3a\xb4\x3b\xb8\xc3\xca\xf3\x71\xdc\ \xd0\xb4\xed\xa0\x9c\xed\x00\x09\xa2\x6e\xb5\x57\x5b\x0e\x2f\x97\ \xbd\xdb\x7b\xa5\x59\x9c\xdf\xe6\xba\x8c\xf1\xa7\xc6\xf3\x09\x95\ \x60\x78\x0b\x00\xec\xaf\xc7\x15\x38\xbd\x35\xe1\x8e\x8c\x52\x7b\ \xfc\x40\x09\xdc\xf0\xc2\x22\xb9\xf3\x21\xc9\x53\xa1\x70\x1a\xdc\ \x70\xa2\x7a\xaa\xad\xa9\x90\x00\x09\x86\xb8\xed\x19\xfc\xa2\xa6\ \x1c\xfb\xb1\xbd\xbb\x0d\x23\x57\xbc\x2f\x73\xc4\x49\x9c\xc3\xfb\ \xc6\x1a\x00\x04\xb6\x55\xdc\xad\x55\x9a\x9d\xe1\x9a\xdf\xbe\x97\ \x9d\x61\xd9\x46\x5b\xac\x7f\xf2\xe7\xc6\xe7\x5c\x7f\xfe\x4b\xc7\ \x73\x19\x97\x03\xcc\x96\x81\x5a\x24\xbb\x06\x41\x0b\xad\xc8\x6e\ \xeb\x07\xb0\x60\x7f\x3b\xa0\x90\x97\x1a\xe5\x32\xcc\x08\x86\x8b\ \x1d\x3b\x2e\xca\x11\xfe\x46\xfc\xe8\x40\xc3\x8c\xb2\x6f\x32\xcc\ \xc3\xc7\x3b\xcc\x37\x4c\xd3\xd1\x6e\x72\xe3\xe2\x06\x96\x40\xc5\ \x65\x3c\x7f\x80\xa0\xbd\xd1\x5b\xad\x65\xdc\x23\xf8\xc0\xbd\xff\ \xc0\xae\xdb\x9a\x7f\xf4\x29\xa9\xf4\x4d\xc7\x75\xfa\xb7\xe7\xb7\ \x3e\x78\x1b\xc0\x40\x92\x9f\x2b\x51\x2e\x03\xbd\xb6\xe6\x43\x2c\ \x52\x41\x6f\x50\xc1\x1b\x50\xe1\xf4\xc8\xc1\x1a\xb4\xe6\x7a\x30\ \xf1\xeb\x1e\x9d\x7a\x00\x17\xcb\x9b\x7a\xb4\x13\x2b\xcc\x33\x3d\ \xd3\xc3\xdc\xd3\x1f\x42\xc5\x45\x1d\xcd\xfd\xd4\xbd\xb9\x7d\xad\ \xa5\x92\xdb\x5b\x7a\x2a\x61\x3d\xbd\x34\x8b\xe7\xfc\x8b\xd6\x7d\ \xdb\xb7\xc3\x15\x00\x6f\x39\x6d\x49\xb6\xc8\x73\xfa\xbf\x8a\x60\ \x90\x51\xa1\x03\xf2\xdd\xd2\xcd\xad\x1b\x08\xa2\x0b\x5a\x20\xc3\ \x5a\x80\xca\xb5\x6c\xa5\x9a\xf8\xcb\x92\xb9\xb9\xc7\xd3\x3c\x45\ \x1b\x9c\x39\x3d\x20\x9d\x32\x92\xc8\x7c\xd1\x40\xbd\xe2\x45\x1d\ \xbe\xb9\x7d\xb5\x5d\x3c\x7f\x7a\xfb\x06\xfe\x40\xd5\xd9\xf9\xdf\ \xd2\x4b\x9f\xeb\x04\xc6\x6a\xbd\x8f\x71\xbd\xde\xe7\x37\xc9\x2e\ \x95\xc0\x73\x9a\x8f\xef\x9d\x90\x7b\x18\xd9\x9b\xa0\x21\xba\xc0\ \x05\x54\x63\xba\xfe\x4b\xc8\x43\xab\x2d\x60\x34\x5c\x35\x14\x5e\ \x33\x61\xf4\xe1\xc5\x73\x45\xfb\xa6\x33\xb5\xa0\x33\x4d\xc0\xc4\ \x4b\x3c\x1b\xe4\x45\x21\x2a\x3e\xd4\xbb\xfd\x72\xc3\xbd\xdb\xd7\ \x1b\xea\xb7\x80\x7f\xe2\xfc\xdf\xfa\xee\x0f\x3a\xbe\x8e\xff\xcd\ \x75\x69\xdd\xbf\x60\x78\x12\xf5\xbb\x40\x01\x65\x5c\x73\x1a\xa0\ \x83\xf3\x0e\x4a\x20\x15\x4a\x20\x1f\x8e\x1d\xed\xf0\xa0\x88\x76\ \x41\x7c\x2a\x1b\x32\xba\x2d\x9b\xa2\x40\x91\x9e\xa1\xd2\x2b\xdd\ \x9b\x1b\xf7\xc3\x95\x96\x05\x91\x12\xa7\x74\x51\xe9\x77\x91\xe9\ \xb5\x40\x8c\x17\x0d\xea\xa5\x7e\xb5\xa5\xfe\xb5\xd5\x1a\xd5\x25\ \xff\x06\xd6\x5b\xf2\x97\x80\xa5\x43\x33\x7f\xfe\xcd\xce\x74\xdc\ \xb7\x7d\xae\xe4\xeb\xb8\x8e\x85\xae\xec\xd9\x96\x3e\xf8\xb9\xad\ \xfc\x9b\x40\xe5\x17\x41\x11\x1c\xa1\xe3\x7e\x0c\x4e\xcf\x1b\x50\ \xe5\x21\x52\x23\xd9\xe3\xaa\x05\x26\xa3\x27\x6f\xf7\x82\x9d\x1b\ \x83\xd5\x4f\xac\x49\x5c\x7d\x0a\x0b\xf5\x50\x6e\xe9\x97\xbe\xc4\ \x97\x5e\x0b\xd0\xc1\xa7\xa6\xce\x40\x21\x1f\xea\x51\x7d\xcd\xcd\ \x3c\xd4\x37\xdf\xbd\xb7\x60\x21\x30\x1f\xcf\xf8\x8d\xf4\x7b\x0e\ \xf4\x4b\x3f\xfe\xd7\x70\xed\x2b\xfc\x2e\xc0\xf5\xf8\x4f\xfc\xfb\ \xbf\xb7\xd1\xbf\x18\x0f\x98\xe3\x1e\x15\xe6\xde\xdc\x4e\x25\x40\ \x9a\x60\x05\x00\x67\x39\x61\x91\x0e\xca\x34\xdc\xfe\x3e\xf0\x01\ \x82\x9c\x9d\x81\x03\x33\x18\x3c\x88\xf0\x20\xc1\x85\x0c\x1b\x3a\ \x4c\x98\xc1\x0e\xc2\x82\x0a\x09\x46\x74\x68\xc7\x84\x46\x2d\x04\ \x4d\x68\x41\xe7\x69\xd4\x12\x00\x24\x01\x2c\x39\x79\xf2\x06\xca\ \x94\x37\xf0\x6d\x79\x09\x53\x25\xcb\x97\x2a\x6b\xbe\xd9\x72\x13\ \xe6\xcd\x3f\xf8\xfe\xdc\x94\x21\x63\xcb\x9f\xa1\x43\x85\xca\xf8\ \x13\xf4\x28\x50\x19\x6f\x9a\x2e\x69\xea\xd4\xe4\xc9\x92\x4f\xdf\ \x54\x7d\xc3\x94\xa9\xd3\x93\x4d\x65\x14\x29\x12\x26\x8c\x93\x12\ \x25\xf2\xe5\x43\x85\xca\x61\x07\x1e\x23\x01\xe4\x69\x91\xcf\x4d\ \x9b\x26\x2d\x9e\xd1\xc1\x83\xc7\x5b\xb7\x28\x2d\xf0\x74\xf8\xdb\ \x50\x20\x45\x88\x10\x0b\x62\x3c\xcc\x90\xf0\xc5\xc1\x06\x11\x2f\ \xd4\xd8\xf0\xa3\x9b\xb6\x25\xa5\xae\x5c\x22\xf3\x86\xe6\x1b\x34\ \x69\xca\xc4\x9c\x73\xcb\x4a\xcd\x2f\x83\x6e\x91\xd1\xf3\xcf\x69\ \xa1\x43\x53\x10\x3d\x8a\xf4\x74\x56\x9c\x56\x9f\x5e\x9e\x4a\xd5\ \x2a\x54\xfe\xac\x5a\x6b\xfb\xc6\xfa\x15\xac\x13\x6e\x64\xb9\x11\ \x4f\xcb\x10\x55\x93\x2e\x24\xdd\x44\xe9\xd6\x24\xcf\x1a\x6b\x78\ \x9e\x19\xf1\x66\xbd\x45\x37\x6f\x7f\x3b\x08\xfc\x6e\xa7\x03\x63\ \xc5\x85\x1d\x13\xec\x60\x62\x21\x79\xf5\x09\xcd\x67\x4c\xdf\x58\ \x8b\x47\x4f\xcc\x2b\x57\x1e\x89\xb2\xe6\x4c\x98\x34\x47\xc7\xfc\ \x7c\x83\x69\x41\xf5\x94\xd4\x6b\x48\x11\x85\xd4\x4d\xbb\xed\x86\ \x92\x6e\xb8\xdd\x77\x55\x57\x50\xdd\x06\x95\x57\x5f\x89\x55\x02\ \x37\xd5\x60\x11\xc5\x18\x1d\xa0\x32\xc6\x33\x03\x19\xd1\x44\x1b\ \x5d\x84\xb0\x46\x3e\x46\x44\xd1\xc4\x1a\x29\x76\xd3\xcd\x75\x46\ \xcc\x68\x84\x77\xe2\x91\x03\x18\x7b\xe4\x35\xd6\x9e\x79\x1d\x84\ \x28\xde\x78\x13\x59\x24\x51\x63\xee\x41\x36\x90\x09\x63\x78\x94\ \x0d\x65\xf6\x41\x78\x1b\x66\x2f\xe1\xe3\xd2\x66\x35\x91\xa6\x99\ \x7f\x3c\x6d\x89\xd3\x69\x04\x2a\xb5\x14\x6d\x50\xdd\xb0\x15\x4a\ \x26\x3d\x49\x12\x57\x5c\x61\x35\xe1\x65\xba\x01\x57\xc4\x0f\x62\ \x55\xe3\x0e\x16\xd5\xa4\xa2\x51\x3e\x19\xa2\xf2\x4c\x09\x79\x84\ \x10\x02\x0f\xf9\xb4\xf0\x05\x89\x51\xb8\x18\x45\x14\x32\xce\x28\ \xa2\xfe\x78\x7f\xa1\x12\xa4\x45\x3b\x46\x44\x69\x45\x88\x29\x69\ \xc4\x18\x3a\x12\x26\xe4\x62\x8e\xa5\x97\xa4\x7c\x63\xd8\x80\xa6\ \x7d\x51\xe6\x67\xe5\x16\x58\x5e\x69\x25\x80\x3b\xe1\x93\xd4\x69\ \x3b\x1d\x65\x94\x98\x4d\x91\xe9\xe0\x83\xa5\x4a\x55\xa1\x56\x97\ \x99\xf4\xa6\x85\x3f\x38\xe1\x84\x9d\xee\x94\x80\x5c\x09\x4d\x38\ \x87\x4a\x14\x5d\x74\x91\x47\x13\x89\x2a\x7a\x28\x16\xd2\xc6\x38\ \x23\xb6\x41\xe2\x18\x69\xa7\xe5\x15\xe9\xe9\x61\xde\x18\x81\x8e\ \x11\x92\x2a\x46\x24\xa5\x12\xb9\xc7\x90\x16\xee\x52\xd3\xc6\xae\ \x50\x46\x99\x99\x66\x2e\xa9\x0a\x20\xab\xf9\xed\x94\x42\x0a\xb0\ \xaa\x54\xa1\x4f\x12\x8a\xf9\x94\xbc\xf7\xed\xb6\x94\x53\x6f\x40\ \x59\x61\x70\x4e\x50\x50\xec\x58\x68\x35\xeb\x46\x13\x85\x36\xd1\ \x54\x08\x4d\x94\x10\x45\x09\x5f\x34\xcb\x83\xb4\x7c\xa2\x42\x63\ \xb7\x0d\x4d\xca\x23\xb8\x46\x1e\xf6\x63\x37\xe8\x68\xaa\x32\xa7\ \x89\xad\xfb\xa9\x88\xa1\xba\x8b\x0e\x13\xa3\x18\x4c\xd5\xa9\x66\ \x4a\xe9\xd9\x65\xa4\xa9\xda\x16\x66\x32\xa4\x90\xc4\x19\x3e\xa5\ \x09\x15\x4e\xbd\xbd\x41\xe6\x4a\x0e\xce\x8b\x70\xc2\x4d\x3d\xd9\ \xfe\x20\x6f\x0e\x3b\x51\x0d\xd7\xbe\x80\xc8\x62\x14\x4a\x72\xc3\ \x9c\xc6\xc6\xad\x01\x22\x37\x3c\x60\x91\x8f\xa3\xa8\x78\x03\xe9\ \x61\x28\x5f\xd4\xa3\x63\xcf\x94\xeb\xa1\xb7\x43\xb2\xbb\x50\xde\ \x03\x69\x41\xcd\x18\xd0\x64\x53\x1f\xcf\xbb\xae\x64\x52\xaa\x59\ \x6a\x29\x5a\x9a\x64\xe2\x93\xc2\x19\x90\x0b\x4c\x26\xae\x62\x92\ \xc9\xeb\x55\x66\xf2\xda\xeb\x57\xbe\x16\xdc\x73\xb0\x4b\x7d\x45\ \x6c\xd7\xc8\xa2\x42\x4d\x87\x03\x95\xd0\xc5\x1b\x21\x60\x61\x27\ \xdb\xa8\x70\x13\x06\x0f\x51\x9c\x07\xa9\xc9\x9b\xa2\x2b\x24\x62\ \x1d\x3c\x33\x86\x37\x21\xea\x6d\x29\xdf\x03\x59\x07\xf3\x47\xd0\ \xa0\x13\x45\xbc\x86\x3f\x2f\xd5\x66\x9e\x6d\x86\x19\x99\x38\xc9\ \x04\xd5\x50\x7c\x24\x11\x4e\x12\xae\x41\xdd\xe6\x53\x51\x73\x0e\ \x95\x65\x6b\x76\x65\x75\x6d\x14\x46\xa8\x75\x58\x62\x61\x51\x82\ \x11\x1f\x17\x89\x0a\x0f\x21\xd4\xbe\xf6\xb1\xf5\x87\x15\x05\x72\ \xe1\xe9\x7e\xae\x1d\x9d\x8b\x66\x18\xf9\x51\xa6\x9e\xf1\x0c\x50\ \xa1\xcc\x78\x1d\x09\x51\x02\xdf\x33\x06\x6a\x4c\xc6\x49\xd0\xb3\ \x4c\xcf\x46\x33\x34\x2b\x25\x2e\x40\x2e\xb9\x95\x4a\x8e\x92\xfe\ \x04\x20\x00\x81\x0f\xae\xe1\x89\xfa\xd4\xb4\x3e\x37\xbd\x89\x37\ \x40\x51\x58\x94\xd4\xa7\x9b\xe0\x84\x41\x38\xc7\x2a\x94\xa6\x1a\ \x53\x02\x1e\xb8\x8f\x07\x64\x29\x41\x18\xee\x27\x04\xff\x01\x90\ \x78\x7b\xdb\x1b\x46\xac\x53\x2e\x9b\xc5\x8c\x77\x0c\xb4\x03\x02\ \x43\xa4\x29\x25\x65\x63\x67\x15\x34\xd5\x83\x52\x52\xbd\xea\xb5\ \x84\x3f\xf9\xf1\x12\x3e\xa0\x86\x92\xa3\x9d\xa1\x7b\x23\xf4\x9e\ \x68\x46\x73\xb5\xa2\xd9\x06\x3f\x2b\x64\x53\x6f\xd6\xe8\xb3\xab\ \xc4\x29\x2c\x60\x81\x1f\xb2\x60\xd6\x98\x54\xc0\xee\x87\x61\x30\ \x16\x16\xd6\x86\xac\x85\xe4\x68\x77\x02\xa4\x88\x79\x9e\x81\x8a\ \x2f\xe4\x03\x1d\x4a\x9c\x5b\xf1\x18\xf2\xbb\x86\xa0\xc7\x04\x88\ \xf4\x08\x35\x76\x51\x45\x34\x51\x06\x55\x98\xd9\xcf\x7f\x40\xd3\ \xa5\x5b\x35\xe8\x06\x7c\x08\x07\x10\x92\x01\x84\x70\xa4\x00\x27\ \x11\x02\x9d\x54\xd2\x74\x3e\x16\xb6\x50\x37\xb0\xc4\x8f\x9b\xaa\ \x52\x04\x27\x84\x41\x4e\xc5\x2a\x41\x2a\x32\x55\x24\x3b\xa0\xa2\ \x04\xd5\xf8\x61\x11\xee\xc7\xb5\x12\x60\x81\x1b\x51\x48\x45\xb7\ \x06\xb9\x44\x74\xd1\x6d\x65\x87\x01\x91\xfc\x8c\xa0\x40\xfe\x47\ \x86\x6b\x21\x08\x7c\x86\xc9\x1e\x98\x91\x8f\xe4\x21\x93\xf2\x12\ \x5a\xbd\x38\xc3\x9f\xe9\x55\xcf\x56\x95\xfb\x43\x0a\x44\x08\x4f\ \x11\xf8\x4b\x35\x94\xd3\x55\xd6\x58\x88\x94\x59\xaa\xcf\x8a\xb1\ \x7c\xc3\x1c\x89\x05\x3f\x71\x20\xcb\x04\x0a\x41\x85\x3b\xdc\x17\ \x82\xaf\xd8\xa9\x2c\x25\x38\x56\x2a\x24\x19\x24\x47\x26\x66\x9b\ \x0d\x01\xde\x22\x51\x91\x4d\x89\x3a\x44\x49\xc3\x63\x48\x47\x4d\ \x80\x8e\x09\x92\x93\x9f\x58\x64\x95\xf4\xf8\x93\x9a\xeb\x65\xe6\ \x25\xaa\xb1\x0a\x67\xfe\x70\x06\x3e\x88\x10\x95\xa9\x4c\x02\x1f\ \xbe\x88\x38\x58\xae\x50\x29\x43\x49\xdf\xe6\xd4\xd4\xc6\x0b\x51\ \x00\x0b\xee\x38\x96\x3b\xbe\x00\xae\x61\x1e\x34\x04\x3f\xf8\x01\ \xe9\x46\x40\x16\x54\x6c\x28\x90\xc9\x21\x62\xf1\x2c\x85\x1e\x87\ \x00\x0f\x15\x78\xc0\xa3\x36\x0f\x63\x1d\x25\x12\x04\x89\x08\x44\ \x47\x1e\x74\x35\x52\xf3\x95\x54\x3f\xab\xca\x09\x95\x3a\xf8\x99\ \x9d\xb0\xb2\x7a\x37\x91\xe9\x2b\x4e\x09\xcf\x55\x6e\x8e\x69\x0b\ \x82\xcd\x81\xf2\xf9\xc6\x36\xf6\x35\x97\xc3\xe2\x1a\xd7\x8e\x05\ \x2e\x61\x76\x2d\x62\x33\x1c\xd6\x1d\xbe\x90\x21\xf8\xfe\xf9\x6f\ \xa2\x1a\x4d\xec\x40\x74\x87\x1e\xf4\x80\x53\x9b\x8f\x24\xc8\x18\ \x3a\x7a\x3c\xe0\x5d\x73\x0c\xce\x4a\x2b\x49\xb5\x68\xd2\x56\xa9\ \x8a\x27\x6f\xbd\x1e\x5d\xc1\x57\xb9\x94\x20\xcd\xae\xaf\xb8\xab\ \x08\xce\x78\x30\xf6\x01\xe5\xaf\x7e\x05\x93\x3e\x7d\x05\x95\x22\ \x40\x6c\xa8\x23\xa0\x53\x20\x0b\x5a\x8f\x1e\x8e\x00\x0b\x4e\x28\ \xee\xc4\x94\x69\x8c\xb4\x50\x93\xb3\x01\x3c\x8c\x92\xc4\x1a\xcd\ \x05\x36\x24\x78\x7e\x4b\x12\xf0\x42\x84\x8e\x12\x51\x30\xad\xa3\ \x41\xad\x6a\xad\xe4\xd6\x24\x50\x49\x27\x35\x49\x1c\x18\x4f\x72\ \x34\xa4\x99\x32\x95\x29\x40\x2b\xd3\xae\xb2\x14\xd5\xf8\xb5\x35\ \xfd\xea\x6f\x11\x52\x10\x9c\xe0\xa4\xa0\xb9\x74\x32\x6e\x54\x13\ \x8b\x16\x64\xd5\x03\x15\xc9\xad\x07\x02\xd2\x92\x48\xc4\x5a\xea\ \xab\x8b\x31\x22\x24\xbd\x49\xc8\xca\x0e\x64\x0c\xe4\xfa\x6c\x02\ \x35\xe2\x11\x0f\xdb\x61\x0c\x16\x18\x2f\x79\x3b\xd9\xaa\x14\x6f\ \x06\x7c\x5b\x78\xeb\xbd\xe8\xd9\x1f\x0c\x72\xa5\x27\x3d\x39\x43\ \x0a\x6a\xa3\xc9\xdd\xe0\xea\x27\xac\x71\x67\x0a\x4a\x19\x8e\x11\ \x08\x79\x04\x41\xce\x42\x3d\x8c\x5c\x0f\xa8\xf6\xfe\xf0\x74\x18\ \x95\xae\x42\xe2\x30\x31\x04\x2c\x18\xca\x04\x99\x5d\x09\x6e\x98\ \xe1\x6f\x6d\x6a\x66\xc7\x43\x52\x76\xe7\xe6\x51\xbc\x75\xb8\x23\ \x1d\x56\x92\xf3\x4c\x0b\x25\xb6\xaa\x58\x55\x2c\x6e\x31\xe4\x52\ \xe3\xce\x37\xe3\x8b\xae\xb0\xac\xdc\xad\x78\xb6\x26\xf7\x36\xed\ \x28\xfd\xe2\xc3\x08\x92\x41\x8f\x2a\xc4\x81\x1e\xb6\x40\x80\x2d\ \xe2\x60\x87\x38\xc4\xa1\x04\x50\x86\xf2\x90\x7a\x04\x65\x54\x20\ \x3a\x98\x03\x99\x18\x65\x0b\x39\x18\x76\x25\x30\x52\x9c\xad\x5b\ \x46\x38\x8c\x0e\x74\x10\x6a\x49\xa1\x1a\x43\xb9\xa6\x68\x62\x72\ \xe6\x07\xc5\x8a\xe3\x0c\x67\x52\xd2\x94\x29\xf1\xe4\xc7\x59\xf8\ \xc4\x00\xf8\xa0\x1a\xcd\x84\x8f\xaf\x0b\xc3\xb3\xcf\x80\xd5\x14\ \x77\xfa\x39\x0b\x08\x50\xb4\xa2\x55\x16\xcc\x1e\x69\x99\x77\x63\ \xc0\xa8\x55\x3d\xe5\x69\xeb\x7a\xb9\xd3\x46\xd4\xc2\x67\x8d\x90\ \xba\xc0\x55\x14\x5e\xf6\x3d\xf1\x95\xb4\x88\x2f\x7c\x65\x26\x34\ \xe0\xc3\x47\x16\x14\xfd\x89\x6a\x50\x00\x1f\x14\xb8\x69\x4b\x71\ \x53\x95\x1b\x18\xee\x96\x53\xd9\x64\x53\x22\x77\x86\x11\x14\xda\ \xd0\x71\x00\xf3\x97\x27\x65\x87\xa8\x72\xaa\xfe\x3c\xf0\xb1\xb0\ \x24\x41\x95\x65\x7f\x7f\x1a\xd4\x2d\xa0\x86\x35\x60\xc6\x90\x6c\ \xf4\x1a\xcd\x10\x6a\x15\xb8\xad\xc4\x12\xb9\xea\x9a\x0f\xc5\xce\ \x40\x16\x28\x00\xf2\x6a\x0c\xe0\xe3\x3d\xb9\xd5\x82\x4a\x55\x95\ \x0b\xee\xda\x3e\x15\x4a\x81\x91\xb3\x70\xee\x7e\x2f\x90\xda\x8d\ \x41\x45\x36\xc6\xa0\xdd\xf0\x8c\x67\xc3\x36\x33\xd2\x67\x4d\x46\ \x73\x75\x7d\xfa\x6e\x85\xa2\x46\x0b\x18\xb9\xdd\x71\x52\x9c\x9f\ \x18\x97\x1e\xf5\x32\x63\x92\xd3\xb8\x73\x04\x9f\x40\xc0\x17\xd4\ \x0d\xb5\x2d\xa8\x20\xdd\x21\xa7\x80\x8d\x5b\xca\xca\x89\xe7\x46\ \xec\xc0\xbe\x5a\x8e\xef\xcd\x87\x2c\x14\x17\xaa\x32\x17\x60\xd0\ \x33\x40\xda\x25\xc6\xec\x64\x43\x72\x99\x21\xed\x00\xb7\x46\x06\ \xdd\xa3\x98\xca\xf6\xcb\x18\xa2\x24\x63\x2c\x1d\x6b\x6b\x35\xaf\ \xc5\xeb\xbd\x05\x8e\xf7\x3b\x0b\x21\xf8\x59\x08\x40\x4e\x01\x15\ \x54\xe3\x13\x94\xaf\x46\x35\x52\x40\x01\xd7\xf4\xeb\x8a\x67\x5f\ \xa1\x9b\x60\x93\x82\xb5\x83\x5c\x04\x08\xf8\xb7\x30\xff\x5d\xc8\ \xf2\x18\xbc\x3c\xc0\xa4\xb4\xa9\x21\xfe\xf6\xc7\x78\xa8\xd9\xd6\ \x70\x38\x3a\x4c\x36\x06\xc1\x0f\x9e\xe9\xfe\xdf\x56\x71\x94\xb6\ \x40\xec\x0c\xc4\xa1\x1a\x67\xa2\xca\x28\xde\x10\xf2\x4f\x7c\xe1\ \x0b\x56\x2f\x41\x16\xbe\xa0\xe8\x0c\x20\xe0\x0c\x64\x37\xd5\x84\ \xb0\xf2\x87\x22\x00\x16\x4c\x3f\x2e\xee\x50\x28\x30\x82\xe8\x93\ \xc7\xc9\x6f\x7f\x74\x67\x65\x06\xbc\xbb\xdb\x61\x46\x05\xdf\x7b\ \x92\x96\xa4\x24\x74\xd4\xbe\x05\x10\x2f\xc8\x14\x77\x4f\xf8\x92\ \xb2\x7a\x71\x6e\xda\x02\x05\x26\x4f\x7c\x58\x43\x12\xbb\xf0\x2c\ \xd0\x62\x0c\x1f\xa3\x7c\x95\x62\x10\x71\xc0\x07\xdd\x86\x5f\x47\ \x31\x46\x22\xc0\x07\x31\x35\x81\xad\x71\x06\x36\x76\x34\x14\x90\ \x05\x8c\x56\x0f\xf5\x70\x6c\x13\x81\x0a\xe5\xb7\x1e\x14\x25\x33\ \x3a\x67\x59\xa6\x26\x22\xee\xd7\x11\x94\xa4\x24\xdd\x40\x0d\xdd\ \x00\x5a\x12\x81\x0e\x22\x81\x7f\x9a\xd4\x49\x37\x98\x45\x97\x91\ \x02\xc3\x47\x01\x50\xe3\x6b\x69\xd2\x05\x6d\x90\x07\xaa\x80\x54\ \x84\x51\x0f\x32\x90\x6a\x4b\x90\x5f\x67\xc0\x3d\x22\x54\x5b\x40\ \x20\x02\x17\xa8\x34\xda\x43\x75\xf5\xf0\x09\x67\x40\x01\xc8\xa2\ \x6c\x22\x18\x6d\x19\xa1\x77\x5d\xa8\x10\x26\x60\x04\xce\x16\x7b\ \x8f\x61\x6d\x9f\xf5\x59\x44\x62\x07\xfe\xd9\xd0\x06\xa9\xb6\x7b\ \xb7\xb1\x41\x58\x84\x12\x5b\xf0\x09\xd2\x47\x01\x14\xb4\x57\x69\ \x62\x45\x6d\xa0\x02\x5f\xa0\x18\x71\xf0\x09\x29\xa0\x15\x07\x03\ \x14\x91\x63\x4a\xaf\x70\x08\x55\xa0\x88\x55\x90\x64\xf2\xe4\x4e\ \xd5\x00\x73\xc5\x95\x79\x90\x88\x68\x5c\x58\x18\xd4\xf4\x10\x5a\ \x96\x69\x19\x01\x22\xcf\x56\x82\x7d\xf3\x5d\x62\xd5\x18\x2a\x50\ \x83\x87\xf3\x33\xe6\xe3\x38\x14\x50\x6c\x71\x60\x0c\x56\x61\x1f\ \xa0\x00\x0a\x54\x54\x4e\x27\xd1\x06\xaa\x40\x50\x7f\x38\x02\xd4\ \x57\x19\x58\x11\x53\xa6\x14\x0e\xc9\xa0\x88\xc6\xa6\x88\x7c\xf0\ \x15\xdd\x57\x0d\x13\x68\x79\x50\x25\x69\x96\xd8\x23\xf2\x01\x49\ \xdd\xa2\x89\x77\x27\x62\xa8\x87\x69\x9e\xc5\x27\x31\x68\x10\x26\ \xd0\x86\xa5\x08\x3d\xb8\x41\x4a\x32\x87\x0a\x34\x68\x1f\xa3\x10\ \x8b\xdd\x56\x2a\x5d\x60\x01\xcc\xb0\x23\xaf\x50\x5f\x54\x51\x04\ \x22\x00\x4f\xaf\x10\x0e\xb5\x15\x8c\x8a\x26\x02\xa0\x17\x39\x98\ \x17\x0e\x9f\x50\x02\xc5\x46\x8d\x9d\xf6\x37\xe8\xe0\x2e\x90\x44\ \x48\x74\x77\x11\x20\x22\x1e\x12\xa5\x80\xdb\xc4\x51\xc0\x83\x70\ \x04\xf1\x05\xe6\xc8\x8d\x87\x93\xfe\x05\x08\xd1\x78\x14\x34\x0a\ \xba\xa0\x0b\xa0\x00\x6f\x12\x69\x12\xbb\x60\x0c\xd4\x40\x0d\x57\ \x06\x11\xb6\x30\x02\xf0\x56\x04\x87\x98\x4a\xe1\x10\x0e\x7c\xf0\ \x0a\xc1\x18\x0e\x4a\xb3\x5b\x3f\x16\x85\x67\x20\x02\x1e\xf8\x8f\ \xd4\xf5\x37\x21\xf2\x90\x97\x56\x11\x83\x74\x11\x1f\x42\x6a\xa8\ \xb7\x3b\xdb\xe5\x6c\x26\x30\x59\x76\xf0\x05\x85\x33\x91\x78\x66\ \x6e\x6d\x97\x01\x11\x39\x5e\xa0\xa0\x91\x1c\xd9\x16\xa3\x80\x95\ \x12\x49\x8e\x59\x99\x85\x1f\x83\x16\x50\xa6\x8b\x52\x21\x03\x22\ \x30\x8f\x2c\x69\x63\x91\x53\x81\x33\xd9\x1a\x7c\x20\x81\x12\x28\ \x7e\xcc\x08\x78\xce\x48\x40\x05\x59\x69\x6a\x28\x4c\xe8\x40\x86\ \x00\x17\x40\xe1\x82\x94\xa4\xc6\x51\x0b\xa1\x02\x6e\x88\x66\x4a\ \xb8\x15\x58\xf3\x4e\x55\x00\x11\xc6\x90\x87\x00\x40\x8e\xba\x00\ \x0b\x39\x60\x26\xa3\x90\x03\x39\x20\x8b\x9a\x24\x8e\x3d\x73\x7c\ \x6f\xd0\x05\x4e\xb2\x04\xf8\x26\x02\xdb\xc7\x14\x5c\x81\x96\xfd\ \x12\x53\x17\x28\x02\xfa\xc6\x8c\x14\xa5\x1e\x99\x38\x24\x1d\x60\ \x2e\x86\xb1\x61\xad\x97\x73\x73\xd7\x2e\xcd\xb6\x24\x9e\xf2\x09\ \x82\x39\x98\x6f\xf0\x66\x7f\xfe\x20\x6f\x28\xf1\x07\xaf\xa0\x18\ \x81\x89\x56\x4b\x00\x8b\x93\x09\x0a\xc5\x27\x99\x94\x59\x4e\x58\ \xc9\x4f\x28\xd7\x2b\x0a\x03\x43\x7f\xc0\x07\x24\xd4\x67\x17\x38\ \x75\x50\x59\x7e\xef\xc7\x2e\x9e\x86\x90\xb0\x29\x4c\x43\x99\x73\ \x5d\x98\x24\x20\x12\x82\xeb\xf2\x09\xd5\x87\x7f\x27\x41\x01\x94\ \x87\x00\xef\xd9\x71\x8a\xf1\x05\x0b\x53\x9c\x58\x09\x0a\x39\x10\ \x8b\x54\x71\x9f\xc9\x09\x21\x98\xe9\x91\xd0\xd9\x57\xb3\xc4\x5f\ \x3f\xc6\x96\x67\xc0\x14\x67\x60\x0b\x5c\xb8\x10\xd6\x06\x4e\xe0\ \x59\x94\xe5\xc9\x1d\x0d\xc1\x27\xff\xf8\xa0\x27\x03\x22\x95\x82\ \x0a\xea\x39\x91\x9f\x40\x94\x67\x85\x72\xf6\x19\x8b\x22\x51\x34\ \x21\x7a\x1f\x22\x9a\x26\x58\x79\x99\x15\xf4\x14\x7c\x76\x81\x13\ \xd8\x2f\x48\x01\x39\x04\xaa\x4a\x5d\x31\x02\x96\xe8\x59\x0d\x4a\ \x69\x06\xb9\x18\x08\xd4\x93\x3c\x67\x55\x5b\xe6\x10\xb6\x09\x2e\ \x71\x70\x87\x4d\xf9\x24\x21\xf0\x6f\x25\xb0\x98\x69\xb2\x9f\x21\ \x1a\x99\x28\xca\x99\xce\x79\xa2\x59\x49\x4e\x5d\x21\x6c\x23\x70\ \x4a\x2c\xe9\xa2\x36\xc5\x84\x2d\xa9\x1b\xe1\xa0\x9d\x3a\xd9\x44\ \x99\x76\x11\x95\xa4\x16\xfe\x13\x6a\x7a\x15\x9a\x1c\x38\x77\x10\ \xa8\x10\x98\x46\x8a\x26\x21\x10\x82\xed\xa1\xa4\x39\x65\x2a\x54\ \xb9\x91\x22\x8a\x1f\x28\x5a\x99\x26\x91\x95\x28\x01\x8b\x26\x5a\ \x45\x0d\xf2\x07\xe1\x10\x68\x55\xf0\x84\x35\x45\x42\x40\xe6\x13\ \x9d\x19\xa6\x1a\xc5\x51\x11\x65\x70\x03\xf4\x18\x43\x64\x9e\xc4\ \xe3\x93\x7f\x83\x70\xcc\x40\x6a\x8d\x91\x02\x70\x8a\x72\xb0\x06\ \x47\xf8\x71\x38\xf7\x89\x9f\x52\x4a\x12\x7c\x3a\x8e\x54\x7a\x12\ \x5b\xb9\x49\xff\x49\x15\x24\xf1\x06\x7c\x50\x0f\x8b\x68\xab\x77\ \x05\x85\xdc\x43\x7d\x4d\x51\x0f\x34\xb7\x61\xcd\x72\x7b\x72\x87\ \x11\x42\x37\xac\x17\x41\x49\x7e\xb3\x1e\x0f\x0a\x62\xdc\x39\x10\ \x50\xf6\x07\xba\xd9\x94\xb0\xca\x4f\xe4\x18\xa8\x51\x2a\xa8\x4c\ \x2a\x8e\x4b\xe0\xaa\x25\x71\xad\xd0\xf3\x06\xf9\x16\x7d\xc2\x58\ \x05\xc9\x70\x88\x7c\x80\x84\x4b\x20\x02\x8f\x2a\x40\x5a\xf0\x05\ \x51\x60\x74\x5e\x35\xa9\xbe\x23\x29\x1d\xe1\x3f\xc9\xba\x2e\x46\ \xe4\x11\xe9\xa1\x11\x58\x96\x9e\xd2\x0a\xaa\x87\xa3\xa7\xda\xca\ \xa7\xe5\xf8\xaa\x28\x6a\x7c\x54\x7a\xa2\xd0\xfa\x3c\x6f\xf0\x07\ \x23\x20\x68\xc2\x27\xfe\x7c\x8b\x78\x08\x77\x55\x04\xb2\xaa\xae\ \x13\xb1\x18\x26\xf0\x05\xf3\x07\x7b\x0c\x84\x94\x95\x04\xaf\xe7\ \x81\x70\x4c\x94\x4d\x72\x73\x8b\x06\xd1\xaf\x0a\xfb\xaf\xa5\xc2\ \xa7\xda\xda\xaa\x28\x1a\xa8\x10\xa2\xa7\x22\x01\xa5\xf5\xa6\x87\ \xbb\xd7\xb0\x82\x16\xae\xc2\x17\x07\x88\xfa\x07\x69\xd2\xab\x7a\ \x99\x24\xcc\x43\x0d\xad\x37\xa6\xe1\x09\x24\x8c\x51\x9e\x7b\x39\ \x24\x72\x69\x97\x0a\x41\x29\x52\x25\x03\x2b\x6b\x5a\x02\x1b\xb3\ \xb0\x44\xad\xd5\xaa\x46\x01\x2b\xb0\x08\x3b\x6f\xaa\x96\x92\x08\ \xa0\xb3\x0b\x98\x01\x87\xf0\xa9\x24\x51\x02\xf6\xea\x59\xcd\xf6\ \x77\x63\xba\xa3\x99\x92\x51\x98\xf8\x65\xa1\x82\x24\xd2\x54\x24\ \x17\x49\xb5\x23\x65\xb5\xf7\x59\x99\xda\x7a\x9c\x4e\xda\xaa\x97\ \xc1\xa7\xdd\x6a\x30\xfe\x6a\x45\x45\xc0\x07\x3d\xdb\x6f\xc6\xf6\ \x03\x6d\x41\x01\x73\x87\x89\xcd\x16\x38\x3d\xaa\x16\x8e\x82\x11\ \xd3\xd6\x23\x5f\x38\xa9\x1c\x11\x4d\x32\x88\x73\xc4\x67\xb8\x79\ \x2b\xb3\xa6\xca\x9f\x7e\x0a\xa2\x4e\xda\xb2\x45\x33\xb8\xb0\xf4\ \xb5\x69\xc5\x8b\x59\xa0\xb3\xf5\x70\x63\xb2\x5a\x0d\x96\xb5\x32\ \xf1\xc7\x17\x9c\xfe\xeb\x18\xbf\x83\x5d\x72\xd3\x23\x4a\xd2\x7e\ \xe4\x69\x6d\xd9\xa5\x94\xd5\x10\x02\xa2\xfb\x3c\x2e\x1b\xa5\x4b\ \x30\x99\x94\x09\x6f\x59\xfb\xa7\xca\x5b\x6f\x5b\x49\xb0\xbf\x62\ \xa4\xf0\xe5\x4e\x51\x88\x84\xb9\x51\x0d\xc8\xe1\x65\x0b\xea\xa0\ \xe1\xf1\x44\x1d\x21\x49\x63\x80\x07\xba\xcb\x44\x39\x22\xb7\x7f\ \xd3\x37\xf0\x9a\x10\x8a\xb9\xb2\x86\x4b\x8e\xf8\x69\x2a\x22\xf1\ \xb7\x1d\x19\xa8\x50\xda\xb2\xa6\x0b\xb8\x2b\xd1\xa7\xd1\x0a\x2c\ \x78\x78\x12\x5d\x90\x0d\xd9\xc0\x04\x6d\x30\x17\xd6\xc0\x11\x3c\ \xb2\x18\x1d\x00\x37\xdd\x50\x28\x07\xd4\xa3\x1a\xe1\x90\xde\xd2\ \x40\x4d\x34\xbc\x0a\x28\x11\xa8\xd0\x8a\x54\x6b\x9c\xff\x7b\x1f\ \xdc\x7a\xb5\x58\x7b\xba\x9b\x64\x9f\x59\x39\xb8\x94\xe1\xaa\x51\ \x02\xc2\x70\x2a\x98\x82\x9b\x0d\xbd\x7b\xac\xe4\xd2\x61\x36\xb3\ \x11\xcb\xea\x93\x8f\x84\xa3\x49\x02\x62\x0f\xa9\xaf\x3d\x19\x11\ \x63\x50\x0d\xa1\x4b\x71\xf9\x8b\xaa\xdc\xfa\x53\x7d\x6a\xb5\xcb\ \x69\x95\x27\x9a\xbf\xb0\x08\xc5\xa8\xaa\xaa\xf0\x86\xbc\xc9\x1b\ \x99\x4d\x60\x0d\xf2\x47\x0d\x6b\x40\x0d\x3b\x1c\x66\x2f\x13\xbc\ \x6a\x0b\xbc\xfe\x1e\x05\x22\xd8\x15\x62\x0f\x79\x11\xb9\xa7\xb2\ \xf8\x07\xc5\xb1\x48\x95\xb2\xf8\xc1\x0e\xe8\xb2\xf6\xd9\xbc\x70\ \x0c\xa2\x30\xbb\x9f\x5c\x1b\xb0\x55\x5c\xb5\x9b\x04\x0a\x1e\xa0\ \xbb\x0e\x81\x0e\x93\x9b\x93\x0b\x0a\x7f\x23\xa6\x11\x63\xb6\xa0\ \xa1\x26\x90\xa0\x32\x06\x5f\x80\x0e\x23\x46\x8a\xc8\xdb\xbc\xf8\ \x09\x0a\x7b\xc0\x91\x4c\x9a\x9f\xf9\xe7\xc4\x39\x20\x08\x4d\xec\ \xa7\x6d\x8c\xc7\xe5\x18\xb0\x28\xbc\xa4\x7c\x8c\x67\x4f\x32\x0a\ \x2d\x82\x0e\x3d\xea\x2e\x9d\x6a\x44\xcd\x18\x11\x67\x18\x6a\x1d\ \x36\x06\x81\x3c\x62\xa2\x66\x74\x02\x69\x07\x5a\x80\x3a\x51\x80\ \x0e\x5f\xa0\x74\xa2\x8b\x9f\xcd\x0b\x0a\xb0\xc0\x9f\xc6\x49\xca\ \x0f\x72\xc4\xc6\x69\xcc\x76\x1c\xa8\x21\xea\xc6\x21\x3a\xb3\x34\ \xdb\xb5\xe4\x85\xca\xb1\xba\xca\xf5\xf7\x59\x5a\x70\x89\xa6\x06\ \xc9\xed\x97\x11\x2f\xf3\xca\xc1\xec\x82\xa1\xf6\x0c\xf2\x01\x62\ \x9f\xa5\xcb\xa1\x86\x86\x83\xfc\x05\xcd\xb6\x8d\xc4\x9c\x03\xc0\ \x80\x9c\x9f\x9c\xaa\xf9\xfb\x4a\x8c\xd9\xcc\x7f\x5b\xca\x27\x6c\ \xc4\xa7\x4b\x45\x02\xcb\xbf\x2d\x5c\xb8\x06\x3d\x98\x6b\x9c\xaa\ \xd4\x60\xfe\x7f\xd9\xa0\x6d\x18\x0b\x77\x83\xfc\x32\x8b\xf1\x11\ \x90\x6c\x6a\x12\xcd\xc8\x8c\x04\x5e\xee\xfc\x5d\xe8\x20\x05\x60\ \xdc\x10\x4d\x82\xbc\xc0\x60\xcf\x24\x5d\xcf\x99\x2c\x99\xc0\x00\ \xca\x8c\x39\xc2\x26\x11\xc5\x28\x41\xb3\x00\xfd\xd2\x58\x69\xc9\ \x81\x8b\x1b\xd4\xaa\xd0\xfc\x9c\xa2\xc5\x97\xd0\x55\x34\x0a\x57\ \x20\x11\x5a\x60\x03\xbb\x60\x03\xd4\xa0\x8e\x07\xc1\x0c\xcc\x60\ \x02\x9c\x8a\x86\xde\x9c\x01\x20\x05\xc9\x19\xbd\x3c\x81\x73\xcb\ \xec\x7c\x74\x0d\xca\x51\x0b\x9c\x10\x63\xa0\xa1\x46\x4a\xd2\x25\ \x7d\xd2\x34\x0b\x0a\xc0\x60\xa2\x7e\x3b\x99\x70\xac\xcc\x56\xe9\ \xbf\x03\x9b\xbf\x02\x5b\xcc\x22\x2a\xa8\xca\x4c\xb8\xf2\xb2\xc2\ \x21\x4c\x71\x44\x3c\x0a\x6c\x6a\x02\x4c\xb0\x04\xbb\x60\x01\xaa\ \x80\x0e\xc8\x20\x92\xd4\x80\x0e\x49\x6d\x10\x9c\x4a\x29\x15\xfd\ \xca\x5a\xc0\x0c\x67\xe8\x2e\x1e\xf1\x0c\xb5\xd7\x73\x14\xdd\x3b\ \x78\x4b\xb5\x5f\x5d\xcf\x99\x8d\xc7\x70\x3d\xbf\x2a\xcd\x99\x5a\ \x6b\x4b\x5d\x3b\xbf\xa7\x6a\xbf\x99\xbd\xcc\x23\x4a\xa2\xd0\x83\ \xd3\xaf\x9a\xd3\x36\xe8\xd3\x4e\x9d\x01\x97\x54\x0a\xbb\x50\x08\ \x79\xfe\x60\x01\x36\x70\xdb\x80\x7d\xd4\x86\x1d\xc4\xe4\x5c\x29\ \x41\x0d\x1f\x1b\x06\xcb\x8d\xe1\x11\xbb\x43\x01\x23\x4d\xd2\x54\ \x09\x0a\x82\x60\xcc\x5a\x4b\xd3\x82\xe0\xd9\x45\x63\xba\xd1\x0b\ \xd3\xd4\x8a\x9c\xd4\x3c\xd6\xf6\x1c\xbd\x22\x8c\x9f\xfe\x7a\xc2\ \xc6\xd7\xda\xa1\x5a\x41\xa3\x80\x04\x45\xc2\x0c\xd4\x30\xd4\x85\ \x30\x0a\xa5\x20\x0c\xaa\xf0\x0b\x36\xa0\xdb\x47\xcd\xd8\xaf\x77\ \x9b\x18\x8b\x6c\xd5\xf5\x11\x68\x7c\x10\xba\x97\xb7\xba\x90\x03\ \xbb\xe0\xdf\x1a\x29\x08\x66\x60\x06\xd0\x8d\xc2\xf3\x0b\xdd\xe5\ \x58\xa2\x6d\x0d\xde\xa4\x0b\x8b\xad\x3a\xd6\x67\x2d\xbd\x4c\x7a\ \xaa\x3d\x43\xd7\xdb\xea\xa7\xe1\xcd\xc9\xdd\x68\x03\x4e\xfd\x11\ \x01\x50\x0a\x5d\x50\x08\xb9\x7d\xdb\xf0\x1d\x00\x48\x7d\xd1\x58\ \xa6\x5d\x85\xe1\x11\x9c\xca\x18\xaa\xa0\xe1\x69\xb5\x91\x1a\x49\ \xe3\x66\x70\x05\xd0\x00\x0d\x9f\x4c\xca\x92\x29\x08\x9f\xdc\xad\ \x7e\xfb\xe0\x2f\x7b\xba\x51\x4c\xc7\xa7\x7a\x2a\xc8\xa9\xc2\x2f\ \x4c\xad\x33\x4b\xc4\x36\x28\xbf\x66\xb0\x3c\xe8\x80\x04\xe8\x6d\ \x01\xa5\x60\x03\xed\xad\x0a\x36\xf0\x0b\xef\x4d\x0d\x08\xf1\x7a\ \xfe\x36\xda\x6c\x85\x01\xe3\xa2\xbb\x91\x96\x0c\x0a\xbb\x00\xe5\ \xcf\x00\x0d\x66\xa0\xd2\x31\x3d\xd6\x3e\x8e\x35\xf3\x5b\xad\x59\ \xeb\xc6\x75\x5c\xe4\xd5\x6b\xcd\xce\x9c\xc9\xac\x6b\xe1\x95\x31\ \xbf\xa6\xdc\xe4\x1b\xfe\x3c\xa0\x80\x04\xe8\x00\x0d\x01\x60\x03\ \xa5\xc0\x04\x36\x70\xe5\xaa\xa0\x0a\xb3\x30\x0b\x5a\xfe\x0b\xaa\ \x80\x0c\x07\xd1\x0e\xcd\xf0\x05\xed\x30\x70\x6e\x07\xb5\x91\x9c\ \x6c\xe0\xbc\x99\x54\xab\x0b\xbb\xb0\x0b\xb0\xb8\x0b\x39\x00\x0b\ \x04\x5e\xe0\x46\xce\xd2\xc0\xf0\xc9\xe3\x65\xd6\xa7\x0a\x8b\xf6\ \x9c\xbf\xa6\x7d\xe7\x6b\x8d\xa2\x67\x3d\x8b\x57\x04\xc5\x6a\x14\ \xe8\xa6\x52\x45\xa0\x10\x00\xde\xcc\x0c\xcb\x50\x0a\x85\x70\xe5\ \x01\x90\xe5\xc2\xd0\x0c\xb3\x70\xec\xa5\xa0\x0a\xea\xd8\x0e\xc8\ \x80\x0c\x99\x3e\x82\xf7\x9a\x32\xc8\x66\x6d\x95\x32\xd1\x19\xd0\ \x0e\x5d\x5d\x8a\xf7\x39\xe3\x34\xde\xe3\xd0\x4d\x99\x28\x4c\xba\ \x68\x05\xb3\x67\x2d\xd0\x9d\xdd\xdd\x34\x4d\xd2\x91\x19\xcd\x2d\ \x9d\x7f\x7e\xfc\xe0\xa8\x88\xbc\xa0\xd0\xe5\x06\x81\xe8\x8c\x1e\ \xe9\x5a\x6e\x03\xed\x30\x0b\x85\x70\x03\x85\xf0\x0b\x7a\x30\xfe\ \xed\xd4\x8e\x0c\x47\x0d\xd1\x1a\x9c\x6c\x4a\xfb\x59\x11\x81\x0e\ \x80\x5d\x24\xaa\x40\xb5\xb3\x4e\xe3\xc0\xa0\x0b\xe5\xde\xe6\x10\ \xfe\xe7\xf5\x79\x9f\xb4\x0e\xa2\x10\x4e\xba\xf6\xfb\xd5\xb2\x48\ \xe7\x04\xdb\x9c\xf7\xa1\xb5\xb1\x1a\xe3\x23\xa5\x0b\xb0\x9d\x01\ \x01\x30\x0b\x34\x6f\x03\x85\x50\x0a\xbf\xd0\x0c\x7a\xf0\x0b\x85\ \xf0\x06\x85\x50\x0d\x7a\x80\x0c\xed\xc0\x0c\xc8\xc0\xa6\x23\x98\ \x10\x1e\xb1\x90\xea\x12\xdb\x0e\x4d\x29\x63\x10\xea\xa0\x4a\x8e\ \x26\x3d\x99\x5f\x9d\xdc\x9c\xed\xcf\xb1\xca\xbf\x27\x0d\xe4\x20\ \xfa\xd6\xd4\x6a\xcf\xce\x9b\xcf\x46\xac\xad\xcf\xc9\xe7\xa1\x1c\ \xd7\xa7\x6c\xa4\x36\xc0\xf0\x33\x1f\x00\x34\x7f\xec\x38\x1f\x00\ \xcd\x80\x0c\xaa\x50\x0a\x37\x50\x0a\xc6\xb0\xf0\x19\x50\xf4\xd4\ \xc5\xf7\xf2\xb1\xf4\xd9\x38\xd8\xe8\x70\xd8\x16\xff\xaf\x92\x49\ \xba\xf5\x6c\xf5\x6a\xcd\xd2\x9e\xbc\xd2\x52\x71\xe7\xf6\x4b\xbd\ \x6d\xec\xc6\x26\xad\xf2\x72\x2e\xe4\x4e\x72\x99\x2e\x6b\x7c\xf7\ \x9e\xb0\xa2\xbb\x04\x1d\x8e\x10\xed\x30\xf7\x03\x3f\x0a\x85\x50\ \x08\xc2\x50\xe9\xcc\x20\x0c\x85\xd0\x05\x3a\x7f\xd4\xd4\xfe\x4e\ \x6d\xee\x42\x1e\x80\x43\xd8\x84\xcd\x0c\x12\xe1\xa1\x70\x6a\xaa\ \xd7\x5d\xf5\x5f\x1d\x99\x93\xe9\xdf\x54\xbc\xf5\x96\xbc\xee\xd3\ \x5c\xcc\x7f\xeb\xbc\x24\xff\xa7\x2a\x7f\xf6\xca\xeb\xc4\x65\x4d\ \xb3\xa0\xcf\xf6\xea\xc8\x0c\xed\x80\xfd\x88\x4e\xf0\xa8\xff\x0b\ \x95\xee\xed\x2a\x50\x0a\xd0\xae\xe9\x19\x40\xed\x47\x3f\x73\x88\ \xad\x18\x80\xc3\xc8\xd9\x50\x24\x11\x29\xf5\x94\x0f\xc5\x99\xbd\ \xfc\xad\x2e\xe1\xd0\x0f\xe1\xcf\x0c\xf6\x6d\x6c\xcc\xc9\xff\xa7\ \x27\x0c\xa8\x47\x0c\x10\x00\x04\x0a\x5c\x32\x6a\xc9\xc0\x82\xa0\ \x40\x2d\x61\x58\xd0\xe0\x40\x88\x11\x25\x4e\xa4\x48\x71\x14\xac\ \x00\xd0\x02\x04\x68\xd7\x2e\xc0\xac\x52\x85\x6e\x14\x2a\x35\xab\ \x5d\x06\x94\x03\x7e\x75\x11\x86\x0c\x25\xb2\x2f\xc8\x98\xa1\xa4\ \x59\xd3\x66\x06\x66\x63\x98\xd9\xb1\xc9\x33\x03\x3a\xa0\x5a\x32\ \x8c\xf1\x69\x87\xc2\xc1\x8a\x49\x95\x42\x54\xa8\x30\x07\xa8\x1c\ \xc0\xa0\xe6\xa0\x6a\xf0\xe0\xa8\xa6\xa3\xb4\x3a\x6c\xe8\x10\x14\ \xb0\xa7\x0e\xa9\x3e\x9d\x4a\xd5\x29\x28\xac\x5b\xb1\xa2\x6d\xa8\ \xd5\xea\xc4\x82\x0d\x01\x2c\xc9\x3a\x97\x2b\xd2\xa5\xfe\x79\xf3\ \x2e\x61\xb2\xd1\xaf\xc7\x59\x85\x04\x8f\xfc\xd5\x8c\x66\x33\x61\ \x85\x28\xb4\xc4\xf9\x25\xe6\x4d\xc8\x28\x99\x09\x85\xac\x65\x0c\ \x3a\x6a\x5a\x98\x99\xd8\x49\x13\x9d\x5e\xd0\x13\x9b\x3a\x05\x3b\ \x5a\x21\x52\xac\x64\xd7\xa2\x1d\x65\x57\x2b\x54\xa9\xaf\x81\x81\ \x1d\x1b\xd5\x2c\x59\xd6\xaf\xc3\x32\x4c\xdb\x7a\xa2\x5b\x86\x73\ \x9b\x76\x35\xe8\x3b\xf4\x71\x89\x4b\x6c\x2c\x5f\xee\x37\xb1\x48\ \xc1\xc2\x66\x21\x6b\x87\x6c\x96\x8a\x91\x2a\xbe\x48\x46\x86\x2a\ \x32\x64\x66\x33\x23\x6b\x81\x16\x74\x32\xe5\x0c\x76\xb2\xe1\x45\ \x9e\xd7\xac\xd3\xb1\x53\xd9\xf2\xce\xda\x74\x37\xc1\xb5\x39\xb6\ \xe6\x10\x34\x1b\xec\x6c\xdb\x70\x53\x6b\x14\xb3\xda\x62\x2d\xb8\ \x88\x86\x9b\x2b\x35\xb4\x10\xb2\x8a\x3d\x88\x20\x6c\x4f\xa2\x51\ \xfa\x62\x2e\x80\x66\x40\x12\xe9\x86\x1b\x0a\xeb\x48\x8f\x59\x84\ \xf9\x45\xa4\x52\xf4\xa0\x49\xa6\xef\x6e\x9a\x4c\x3c\x15\x81\x42\ \x47\x0b\x18\xc7\x48\x8f\x26\x15\x26\xd4\xeb\x3d\xaa\x4a\x83\x6a\ \xb8\xe2\xd6\x72\x6b\x34\xde\x12\xaa\x8f\x3f\x41\xfa\xfb\x8f\xb6\ \xf8\x06\xdc\xb1\xb8\xac\x10\x64\x4a\xaa\xe0\x18\xfe\x0c\xae\x2d\ \x27\x6d\x04\x4d\xb9\x8d\x54\x51\x05\xc3\xc0\x6e\x60\xe8\x06\x61\ \xc4\x6b\xa7\x19\x55\x2c\x28\xe5\x06\x96\x52\xfc\x8e\x19\x74\xda\ \x41\xcf\x26\x2d\xcc\x13\xca\x04\x2d\x7c\xfa\x49\x42\x2b\x23\x42\ \x32\xc0\xa7\x04\xf4\x0a\x2d\x40\x7d\xb4\xca\x2d\x06\x9f\x02\xa6\ \x48\x00\xfd\x0b\xb0\x41\x82\x14\x7a\x8d\xc1\x85\x20\xa4\x4b\x90\ \x85\x04\x62\xd0\xb8\xb8\x0a\x82\x2b\x4f\x8b\x6c\x40\x27\x80\x65\ \xb6\xf4\xe8\x17\x2f\x97\xb8\x61\x16\x9b\x90\x11\xa6\x94\x2e\x6e\ \xb0\xc0\xa5\x14\x59\xf4\x2c\x80\x36\x65\xad\x29\x28\xcd\xec\xd0\ \xd5\x4e\x13\x42\xe0\xb4\x22\x23\xa3\x52\x74\x49\x47\xe9\x4a\x2b\ \x50\x1f\xe7\xd3\x2a\x3e\x43\x13\x15\xd6\x59\xdf\x78\x73\x2b\xc0\ \x68\xd9\x13\x12\xa1\xa9\x1e\x22\x48\xae\xe4\xf0\xcc\x73\x94\x65\ \xe2\x54\xc5\x86\x66\xc2\x0b\xe0\xcc\x91\x0c\xab\x49\x55\x0e\x0b\ \xf9\xe5\x8b\xf0\x60\xb5\x29\xbc\x79\xa9\xb1\x57\x28\x3b\x69\xb2\ \x43\x0b\x13\x76\xdd\xd5\xa6\x67\xda\xf0\x36\x4f\x44\xfd\x43\x72\ \x47\xb6\x8e\xcd\xaa\x47\x47\x7b\x5c\x34\xaa\xfe\xfa\x34\x98\xb6\ \x85\x1e\x4c\x48\x10\x58\x28\x75\x52\xae\xae\xfe\x20\x1a\x05\xac\ \xb7\x16\xe4\x36\xc2\x2a\x11\xb2\x71\x14\x6a\x7e\x0a\xc0\x06\x55\ \x4e\x1a\xd5\x5d\x79\x51\x6a\x86\xd4\x1b\x46\xf9\x45\x15\x64\x50\ \x54\x13\x25\x9e\xec\x40\x27\xdf\x9a\xfc\xf5\x97\xe7\x9a\x5a\x28\ \xf9\xd7\x82\x0d\xae\x2d\x61\x87\x5e\x2b\xd6\xa0\xb3\x98\x04\xf0\ \x29\x44\x25\x56\xfa\x29\xe0\x1a\xfa\x0a\x96\xb0\x22\xdc\x6a\x64\ \x4b\xab\xaa\xf6\xc1\x6e\x4b\x06\x3b\xb4\x51\x7e\xd6\x82\xb9\x72\ \x99\xb1\x4e\x18\x61\xb6\xab\x49\x8f\x01\x4a\x31\xa6\x94\x2d\x7e\ \x31\x46\x15\x74\xbe\x03\x3a\xbd\xbf\x7b\xfa\x57\x57\xc8\x28\xf8\ \x55\xa2\x43\x13\x55\xb4\xb4\x07\xa7\x35\x6b\xc0\xc7\xd7\xa2\x0d\ \xac\x82\x9f\x75\xb6\xc9\xb6\xf8\xd3\xcf\xeb\xaf\x93\xf3\x11\xa9\ \x20\x8f\x8e\x2b\xa2\xae\x06\x4e\x6a\x89\x3d\x50\x41\x67\x16\x55\ \x84\xb1\xc0\x02\x11\x7f\xf9\x45\xba\x99\xe2\xd5\x63\xd5\x42\xb6\ \x08\x49\x18\x96\x65\x0d\x3c\xe8\xdf\x01\x27\x3c\xc5\xcf\x0e\x87\ \x28\xe9\x89\x6d\x6b\x3c\x3f\x3f\x61\xc3\x3a\xb5\xd9\x76\x99\xcd\ \xc8\xe4\xfd\x83\x2a\x64\x86\xb2\x45\xb0\xe9\xb6\x1c\xcc\x0d\xf4\ \x4c\x25\xad\xa8\x74\xe4\x96\x28\x05\x33\x28\x74\xb4\xd4\xa3\x19\ \xc4\x44\xb4\x21\x67\x64\x10\x18\x00\xee\xd9\x39\xbc\xa1\x94\x52\ \x2c\x60\xf9\x24\x9e\xed\x0c\xfe\xa6\x9e\xf5\x24\x32\xea\x31\x5d\ \x7b\x02\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\ \x00\xf0\x00\xf0\x00\x87\x04\x02\x13\xff\xff\xff\xff\xff\xff\x91\ \x8a\x49\xff\xff\xff\xff\xff\xff\xd8\x88\x8d\xff\xff\xff\xff\xff\ \xff\x84\x48\x90\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x89\x3f\ \xff\xff\xff\xde\x94\xb2\xff\xff\xff\xff\xff\xff\x0e\x27\x1d\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x54\x67\x1e\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x13\x28\xa7\x0f\x27\x69\xff\xff\xff\xd5\x10\x10\xff\xff\xff\xd7\ \xc8\xe2\xce\x68\x56\x8c\x68\xa1\x05\x05\x55\xff\xff\xff\xf5\x95\ \xb6\xff\xff\xff\xff\xff\xff\xf9\xae\xba\xff\xff\xff\x9a\xf2\xfc\ \xba\x88\xb6\x13\x29\xe3\xff\xff\xff\xff\xff\xff\x4e\x68\xf8\xd9\ \xe8\xf8\x2f\x48\xeb\xfb\xc8\xe6\x1f\x87\xba\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7b\x88\xae\x98\xc8\xfb\xff\xff\xff\ \xff\xff\xff\x94\x68\xf8\xf0\x68\x51\xff\xff\xff\x79\x88\x3a\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xda\x90\xf2\xff\xff\xff\xb7\xb3\ \xf3\xf7\xb2\xf0\xff\xff\xff\xff\xff\xff\x4a\x4a\xe0\xf9\xe8\xf0\ \xfb\x8e\x5e\xb7\xc8\xf1\x6f\x68\xea\xff\xff\xff\x6c\x6b\x22\x91\ \x27\x32\xff\xff\xff\xff\xff\xff\xff\xff\xff\xee\x68\xa6\xff\xff\ \xff\xf3\x47\x45\x95\x94\xf3\xff\xff\xff\x11\x38\x66\xff\xff\xff\ \x39\x56\xf6\x97\xb1\xf9\x74\x89\xf8\x0a\x18\x1b\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xd6\xd8\xed\x27\x2b\xe3\xff\xff\xff\xff\xff\ \xff\x6f\x69\x65\xff\xff\xff\xb9\x8f\xf3\x07\x16\xdd\xff\xff\xff\ \xd9\xae\xf8\x57\xa9\xe5\x5b\xb8\xec\xb6\xd8\xfa\xfb\xfd\xfa\xb2\ \x68\xeb\xf8\x7a\xcb\x7c\xf5\xfc\xfb\xd0\xa6\xfa\xd8\xec\x7d\x96\ \x45\xff\xff\xff\xd1\x48\x6a\xff\xff\xff\x31\x48\x96\xff\xff\xff\ \xff\xff\xff\xf4\x78\x59\x4c\x36\x9a\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe6\ \xa0\xff\xff\xff\xf5\x27\x2a\xb4\x51\x29\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xb2\x69\xa1\xff\xff\xff\x70\ \x58\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x79\xcb\xfa\x95\x34\xd0\x93\x33\x55\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x59\ \x92\xeb\x79\xb3\xf8\xff\xff\xff\xfa\xec\xba\xfa\xae\x89\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xa6\x1c\x5c\xb9\xf3\xfc\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\x91\x8c\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x84\xba\x7c\xd6\x39\x7a\xff\xff\ \xff\x99\xd8\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xde\x97\x95\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x58\x77\x26\xff\xff\xff\x18\x35\xa6\x11\x78\ \xa9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x19\x37\xdf\xff\xff\xff\ \x58\x76\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\x92\x78\xf0\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x69\x7a\xf2\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xef\x78\xa8\x90\x5a\xf8\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb0\x79\xf7\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xb5\x58\xa7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x42\xb5\xee\xff\xff\xff\ \x96\x98\x51\xff\xff\xff\x99\x98\xb5\xff\xff\xff\xff\xff\xff\xb9\ \xb8\xb7\xff\xff\xff\xd9\xfb\xfc\x7b\x95\xb2\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7e\x97\xf9\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\ \x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x98\x30\ \x84\xc5\x10\x8a\x2c\x2e\xa2\xc8\xb1\xa3\xc7\x8f\x20\x43\x8a\x1c\ \xb9\x10\xa3\xc9\x45\x52\x84\x48\x19\x20\x44\xc8\x46\x92\x30\x63\ \xca\x9c\x49\x53\x66\x88\x45\x21\xa6\x84\xe8\x54\x0c\x4f\x83\x62\ \x52\xa4\x68\xd0\xd0\x12\x68\x88\x9a\x48\x93\x2a\x5d\x1a\x73\xca\ \x94\x45\x50\x83\x0e\x95\x30\xb4\x18\xd0\x62\x43\x35\x14\x13\x02\ \xf4\x25\xd3\xaf\x60\xc3\x7e\x0d\x01\x64\x51\xa7\x29\x00\xa6\x48\ \x48\x29\xa4\xea\x54\xaa\x59\xb1\x0e\x4d\x99\xd2\xab\xd8\xbb\x78\ \xf3\x4e\x0c\x41\x62\xc0\x22\x12\xee\xdc\x09\x91\x10\xa6\xb0\xd6\ \xa2\x52\xac\x6a\x90\xc0\xb8\x6a\xcb\xc7\x41\xfd\xea\x9d\x4c\x19\ \xef\xc5\x8b\x7f\xec\x48\x01\xb0\x36\x70\xe0\x79\xf3\x06\x68\x08\ \x03\xf7\xf1\xd6\x96\x42\xe1\x12\xf5\xec\x0e\x4f\x62\x3c\x76\x2b\ \xcb\x9e\x3d\xf2\xb2\x22\x27\x72\x9a\xe4\x96\x23\x67\x9e\x06\x00\ \x61\x56\x0e\x08\x6c\x07\x91\xbb\xac\x73\x55\x5a\x2d\xba\xb8\xb4\ \xad\x79\xc6\xdd\x05\x75\x79\x94\xb6\xf5\xeb\x0f\x31\x66\x51\xb4\ \x5d\xe8\x50\x77\x88\x4c\xfe\xf1\xe6\x6d\x6a\x9e\x04\xe0\x91\xdd\ \xcd\xb3\x63\xca\xd4\xf1\xc6\xde\x87\x0a\x61\xf9\x76\xa5\xfa\xc0\ \x78\xae\xba\xc4\xce\xbf\xff\x3f\x8c\x8b\x64\x91\x05\x10\x40\x20\ \x32\x8f\x2d\xb6\xb4\x56\x15\x78\xed\x8d\x57\xde\x68\x6b\x0d\x77\ \x4a\x78\xed\xcd\x93\x1a\x5c\x70\x6d\x75\xa1\x7c\xad\xe1\x81\x58\ \x62\xb1\xf9\x27\xa2\x58\x39\x39\xe5\x94\x7a\xe1\x21\x62\xc7\x81\ \xf3\x04\xc6\x55\x4b\x0c\x8e\x27\x47\x79\x41\x4d\x21\x85\x3b\xc5\ \x89\x37\xe3\x3c\x83\x35\xd6\x5c\x4a\x2c\x6d\x28\x85\x87\x5b\x79\ \x18\x94\x14\x21\x8e\xa8\x24\x4d\x40\x90\x70\x56\x18\x53\x14\x46\ \xd5\x8d\x2a\x9a\x82\x88\x2d\x03\xe0\x81\x9f\x87\x42\x68\x19\x9e\ \x8c\xed\x9d\xd2\x96\x06\x03\xb0\xe7\xa0\x6f\x3e\x22\x27\x44\x60\ \x42\x3e\xb6\xa6\x3b\x56\x21\xb9\xe4\x9c\x31\x01\x00\x9c\x8d\x07\ \x16\xa3\x9a\x7c\x5a\xce\x63\xe5\x3c\xae\x9d\xb6\xa6\x4f\xc5\xc4\ \xa8\xe3\x8c\x88\x0c\x16\xd4\x7a\x0d\x1a\xd7\x9c\x06\x52\x41\xaa\ \xa5\x74\x8c\x4d\x99\xa5\x3b\xb6\x18\x97\x9f\x9c\x74\x76\xea\xd0\ \x65\x16\xdd\x71\xc7\x08\x03\x9c\x67\x27\x69\x1a\xe0\x91\x5f\x03\ \x78\x24\xf8\xdc\x73\xfe\x28\xb6\x58\xd4\x72\xaa\x0e\xd5\x00\x85\ \x14\x56\x28\x05\x69\x41\xa9\xd7\x9e\x1d\x03\x48\xc1\xd8\x14\x44\ \xb1\xe5\xa2\xb0\x96\xf6\x89\x88\x71\xca\x09\xa1\x88\xa7\xd0\x16\ \xa4\xc8\xb4\xd3\x66\xa1\x9b\x6e\xb9\xcd\xb3\x03\x1f\x61\xd8\x49\ \x98\x94\x1a\x70\x51\x28\x74\x56\xae\x08\xda\x96\x44\x12\x55\xab\ \x56\x7e\x1a\x37\xa1\x71\xa5\xf2\x6a\x5f\x71\xa1\x09\xcb\xa1\x3b\ \x03\x64\x19\xec\x91\xc3\x05\xb6\x6c\x71\x81\x6e\xf5\x6c\xb4\x73\ \x72\x77\x8b\x80\x59\x18\x10\x47\x1c\x3c\xc4\x51\xc6\x0c\x32\x96\ \x91\x46\x61\xa7\x9e\x47\x31\x67\xa9\x42\xd7\x04\x22\x23\x3c\x77\ \x6e\x87\xde\x15\x9a\x1f\x51\x99\x1a\xa8\xd2\x91\x6a\x69\x80\xd2\ \x00\xbf\xa8\xf8\x4b\x5b\xc4\xda\x87\x2f\x64\xbd\xfe\xe2\x2f\x7b\ \xe5\xbd\xd8\xe5\xc0\x04\xf3\xa7\x87\x1e\x24\x90\xa0\xc7\x3c\x3c\ \x3c\x91\x0b\x0f\xb9\x2c\xac\xf4\xc2\xd8\xca\x31\x03\x1f\x76\x46\ \x1d\x75\x61\xa4\x49\xd0\x00\x74\x1c\xbb\x4a\xaf\x60\x58\x51\xd5\ \x40\x82\x3e\xb5\x7a\x6e\x5b\x8d\xad\x05\xa9\x3b\x2d\xb3\x67\xe1\ \x62\xf6\xb5\xb8\x2f\x90\xfd\xf6\x29\x9e\xa3\x5a\xa9\xca\x73\xcf\ \x94\x85\x40\x0e\xfe\x09\x91\x90\x60\xc0\x17\xa4\xe4\xc2\x4a\x1c\ \x49\x2b\x5d\x78\x2e\xb9\x94\xe1\x70\x3d\xe3\x35\xd1\x40\xb7\x52\ \x57\xbd\x98\xad\xd0\x1d\xd8\x2f\x68\x2d\x36\x00\x61\xaa\x06\xaa\ \xba\x26\x82\x64\x53\x25\x01\xb1\x90\xfe\xc2\xe8\x08\xd2\xd9\xd8\ \x2f\x9b\x73\xad\x2e\xd4\x00\x88\xf0\x96\x68\x56\x5a\x66\x81\xb7\ \x65\x2e\xe4\xae\x3b\x29\xa4\xf0\xe0\x3b\xd2\x71\xb0\x82\x38\xe1\ \x0b\x27\xdd\x82\xef\x71\xcc\x30\x03\xe3\xe3\xed\x60\x6a\xc5\x75\ \xfb\xf4\xb5\xc7\x9e\x61\x2d\x6b\xb8\x1a\x7c\x0d\xdd\xaa\xb0\x76\ \x0d\xa9\x77\x2b\x61\xbe\xa2\x68\x67\x7b\xb6\xef\x6a\x6e\x7f\x27\ \x9e\x7b\x93\x77\xe9\x8e\xed\xb7\x2f\x75\x0b\x3c\xf4\x4b\x03\xcf\ \x17\x3c\x90\x82\x3f\xe0\xfa\x23\x8e\x74\x0b\xac\x10\xde\xc2\x06\ \x37\x38\xff\xf1\x80\x15\xcb\x1b\xcf\x0c\x76\x00\x39\xe0\xc0\x45\ \x7b\xaa\x12\xdb\xab\xa0\x33\x02\x8e\x21\xe2\x09\xaf\xaa\xe0\x81\ \xc2\xd5\x13\x58\x2d\x26\x66\xf9\xfa\xc5\x8a\x4c\x87\x2f\x29\xd8\ \xc8\x1d\xa7\x08\x4d\x90\x7a\x75\xae\xa1\x0c\xc0\x14\xba\x41\x44\ \xc8\xb4\x64\x8b\x53\xdc\x2d\x7e\x1f\x01\x55\x24\xbe\xf0\x04\x1e\ \xf0\xcf\x77\xfe\xbc\xe3\xdd\xef\xf2\xc7\xbb\xa4\x0d\x2f\x78\xc4\ \x0b\x20\x12\x7f\x97\xbc\xc6\xcd\x83\x0b\x53\x53\x4d\x03\x76\x80\ \x07\x7b\xa8\x2a\x4b\xa0\x31\x10\xe6\xca\x70\x28\xa7\xcd\xa3\x01\ \x84\xf1\x1a\x68\x6c\x41\x36\x17\xda\x61\x47\xf8\x0a\xd6\x09\x53\ \x28\x1d\x99\xa9\xc7\x0e\xd2\x39\x9b\x6e\xd8\x37\x14\x65\x35\x01\ \x7e\x38\x9c\xc8\xb4\x4c\xa2\x08\x6b\xd8\xc3\x77\x80\xfb\x5d\x10\ \x89\x28\x44\xfd\x01\x52\x88\x01\x44\x5c\x00\x5b\x30\xc0\xc1\xb5\ \xc0\x80\xb9\x80\x58\xf3\xa6\xc6\x07\x0d\x54\x32\x5c\x8c\x29\xc6\ \x14\xe9\x07\x1a\x78\x68\x4e\x03\x69\xc0\xc3\x3c\x1e\x46\x1e\x5b\ \x98\xaa\x31\xf6\xb0\x5c\x7c\xd2\xe0\x27\x39\x90\x4a\x0a\x69\xe8\ \x95\x1d\xc6\xb7\x92\x14\xae\xe7\x5c\x42\x91\x82\x9f\xca\x83\x07\ \x0e\xb5\x52\x0e\x37\xcc\x63\x45\x6e\xb1\x8a\x5b\x28\xe2\x16\xa4\ \x78\xc3\x1b\x46\xb1\x4c\x66\x6e\xe2\x99\x85\x0c\x62\xef\x78\xf7\ \xc3\xa2\x11\xb1\x61\x05\x54\x62\xd2\x12\x89\xb8\xa3\x21\x2d\x81\ \x4e\x73\x1e\x63\xf8\x90\x86\xa1\x54\xb2\x52\x1a\xd8\x01\x3c\xe6\ \xf1\x84\x2f\x72\xa1\x81\x61\xe0\x82\x06\xe0\xf1\x04\x39\xd4\xc3\ \x37\x52\xfe\x42\xa5\x3d\xf2\x15\xcb\x58\xaa\xe7\x5c\xf9\x62\x99\ \x78\x80\x25\x05\x12\x80\xc6\x5c\xe9\xbb\x11\xe6\x04\x53\x15\x8d\ \xf1\x26\x98\xc2\x14\x88\x22\x3a\x71\x96\x29\x24\x60\x99\x36\x50\ \xa6\x32\x99\x39\x8a\x8c\x46\x53\x9a\xd1\xdc\xc4\x17\x36\x21\x44\ \x20\xee\x63\x13\xc1\x13\x5e\x00\x55\xca\x4d\xa4\x1d\xb1\x71\x4f\ \xd8\x81\x4c\xed\x61\x8f\x62\x9c\x93\x31\x5c\x10\xc2\x3a\xdb\xe9\ \xbc\x06\x46\x6e\x9e\xca\xd3\x96\x25\xd1\xb9\x03\x21\xec\xe0\x3e\ \xf8\x4a\x43\x40\x5d\xc0\xb2\xd8\x99\x02\x8e\x03\xb8\xe5\x67\x4e\ \x21\x98\x5e\x79\x46\x2e\xa0\x44\x84\x24\x81\x19\xd1\x7f\xdc\x22\ \x12\x91\x30\x40\x58\xe1\x31\x0a\x64\x7c\x00\x19\xcc\x7c\x43\x46\ \xf7\x41\x8a\x51\x74\xd4\xad\xa3\x20\xc5\x33\x49\xfa\x86\x64\x0e\ \x92\x90\xfa\xd3\xdf\xc2\xa8\xd9\xc8\x95\x6e\x93\x70\xdd\x2c\x60\ \x1c\x98\xe7\xb4\x27\xc0\xc3\x1e\xb6\xb0\xc7\x4f\xb8\x20\x01\x79\ \x36\x80\x93\xda\x7a\x9e\xd4\xa4\xc6\x85\x1d\x8c\xa0\x1e\x33\x88\ \x03\x9a\x24\xc0\x87\x29\x0e\x07\x73\xc1\xd2\x40\x27\x3e\xdb\x4a\ \x53\x94\xc1\x0e\xa7\x28\x0e\x55\x59\x13\xac\x96\x64\x49\x25\x59\ \x81\xfe\x8e\x8c\x56\x50\x9d\x9e\x91\x23\x0d\x25\xc0\xed\x0e\xe0\ \xf0\x3f\xc2\xbd\xc1\xac\xc7\xb0\x81\x0d\xde\xaa\xcc\xb6\xda\x00\ \x19\x68\xe5\x2d\x10\xdd\x1a\xc4\x4d\x08\x52\x9a\xf8\x3b\x5a\x11\ \x05\x97\x52\x01\xfa\x55\x89\x83\x1b\xac\x8c\x62\x5a\xc9\x34\x8c\ \x02\x93\x43\x49\x03\x4d\x23\x3b\xd9\xf2\x7a\x2b\x0d\x4f\xd0\x4d\ \x19\xec\xc1\x07\x2e\x70\x21\x0d\x53\x14\x42\x1a\xd4\xc3\x54\x48\ \xb9\x60\x1e\xa7\xe0\xe2\x8c\x9e\x5a\x21\xd6\xa4\x11\x7c\xf3\xf1\ \xce\x00\x46\x20\xa3\xdc\x40\x74\x44\x7c\xe0\x43\x31\x76\x60\x0f\ \x8c\x0e\xd7\x06\x72\x55\x64\x0b\x36\x21\x03\x0f\x9c\x15\xb9\xc3\ \xad\x6b\x32\x6d\xc0\x07\xb4\xd6\x35\x17\x74\xad\x2b\x0f\x9c\xeb\ \xd2\xb6\x92\x82\xad\xbd\xf3\x61\x8a\xb1\xb9\x52\x46\x5e\x57\x89\ \x0b\x23\xac\x1c\x9e\x30\x1a\xd2\xb8\x17\x9d\x5a\x91\xe9\x6f\xcc\ \x6b\xde\x30\xf0\xa1\x0c\xbc\x89\x83\x3d\x38\x58\xd4\x72\x92\x09\ \x1e\x03\x50\xaa\x3b\x46\x60\xa6\x19\xed\x77\x45\x81\xb1\x59\x60\ \x82\xc5\x18\x20\x65\x05\x76\x4d\x7b\x28\x76\x40\x15\x82\xe1\x22\ \xe3\xb8\xc7\xc5\x30\x29\xe0\x80\x51\xb4\xb2\x63\x13\x88\x03\x60\ \xfe\x2e\xde\x70\x8c\x0f\x78\xe0\x18\x18\x8e\x2b\x49\xcb\x0a\xe7\ \x51\x38\x37\x17\x76\x9d\xe6\x36\x59\x91\x3f\x66\x9e\x98\x9a\x42\ \x54\x24\x8c\x01\xb8\xd2\xea\x2e\x6c\xab\x4e\x93\x41\xd4\x18\x83\ \x2a\x4b\x16\x83\x7e\x80\xf0\x29\x8f\xa7\x86\xde\xa0\xa6\xa1\xbb\ \x45\x56\x6a\x92\x43\x08\x9a\x2e\xee\x48\xca\x81\x61\xa3\xbd\xbe\ \x97\x15\x77\xdc\xa1\xc0\x5c\xad\x0c\x1f\x43\xa0\x07\xe1\x76\x18\ \xad\xc2\x15\xee\x6f\x91\xcb\x0e\x38\x6c\x02\x0e\x65\xfd\x72\xe0\ \x1e\x49\x68\x38\x20\xe3\x18\xee\xc5\xb0\x3d\x82\x18\x66\xb4\x06\ \x0e\xaf\x45\x64\x45\x3d\x06\x17\x44\x0d\x4b\x13\x79\x84\x5e\x69\ \x22\x19\x89\x44\xc2\xb1\x42\x46\x4d\xb0\x05\x14\xe3\x89\x53\x4d\ \xc2\x77\x1e\xf0\x80\xe2\xa4\x7b\xcc\x87\x27\x28\x0e\x1e\xc5\x80\ \x6f\x51\xe1\xe1\x0e\x4d\x0f\x67\x38\x67\x2c\xb0\x29\x6c\xf6\x0b\ \x50\xd7\x2b\x2b\x47\x4a\x89\x3b\xb2\xac\x65\xcb\x74\x62\x15\x53\ \x58\x45\x1a\xde\x40\xe6\x07\x87\xd9\xe0\x5f\x9e\xb5\xae\x41\x1c\ \x66\x3b\xe7\xe2\x91\x0f\x9f\x30\x9d\xe1\xec\x61\x0d\x97\xd5\x0b\ \xc8\x38\x29\xe2\x48\x2a\x4d\xc1\x2d\x5b\x78\xd0\xfd\x73\x8a\xfe\ \x0b\x57\x68\x56\x30\xf2\xe1\x86\x7b\x82\x76\xc7\xf3\x04\xa8\xa9\ \xa6\x18\xf6\xd8\x41\x3a\xc1\x0d\x88\x71\xf3\x58\x02\x3b\x98\xc7\ \x0c\x9e\x60\x8f\x34\xec\x20\xdd\xde\x99\x2f\x92\xc3\xd7\x45\x53\ \xa0\xee\x9f\xf8\x4d\x90\x54\x56\xd2\xa5\x80\xc2\xc3\xd3\x72\x00\ \xc2\x57\x4c\x34\x05\x8a\x16\x3b\xe1\x1b\x15\x2e\x32\xf8\x90\x51\ \x85\x3f\x18\xc3\x68\xce\x85\xd6\xdf\x80\xe6\x47\x86\x3d\x17\xec\ \x40\x6e\x87\x87\xeb\x67\xb5\x22\xd7\x19\x6f\x68\x18\xe1\x46\x3c\ \x48\x69\x33\x4c\xc5\xfc\x5b\xb1\xa0\xa5\xdd\xcd\xe1\x19\x71\xe5\ \xbc\x69\xb9\x9d\xc4\x05\x5f\xc5\x66\xef\x0b\xf0\x80\x9a\xcd\xcd\ \xcb\x05\x7a\x96\xe1\x0b\x3d\x2f\xe7\xb7\xc8\x64\xb3\x35\xc5\x7b\ \x3c\x50\x1d\xc0\x84\x54\x4b\xb6\x1b\x99\xef\xb3\x50\x6f\x42\x4d\ \x72\x02\x88\x04\x74\x02\x10\xee\xe5\x02\x72\xbf\xbc\xfa\x84\xcb\ \xd5\xed\xaa\x57\xe6\x71\x55\x9f\xd1\xd9\xdb\x00\x0e\x13\xfe\x6d\ \x46\x37\xd1\x02\xb3\x3f\x1c\xc4\xb9\x4e\x78\x5a\xdd\x2a\x83\x2f\ \xdb\xf9\xe4\x22\x0d\xe2\x11\x0b\xe8\x4d\x8e\xfb\x8e\xc4\xdb\x9c\ \x81\xdd\xfd\xce\xb0\x18\x47\x6c\x62\xc0\xe1\x42\x67\x65\xfe\x4a\ \x4e\xfa\x29\x7e\xf1\x93\x0d\x43\x1a\x90\x50\x06\x9e\x37\x80\x0f\ \x84\x39\x2f\x4b\xa2\x5a\xf4\xd4\x85\x8f\x3d\x88\x98\xdc\x6a\x22\ \x08\x6f\x54\xeb\x06\x26\x21\x00\x04\x20\x46\xf7\x01\xd5\x23\x37\ \xf5\xa9\xb7\x7a\xc2\xe5\x56\xb6\x36\x67\x18\x66\x03\xec\x70\x75\ \x5a\x87\x5c\x70\x00\x7c\xc2\x25\x57\x68\x36\x57\xbd\xb7\x09\x69\ \x87\x0c\xec\xf0\x06\x09\xe8\x56\x6a\x65\x03\x32\x30\x5c\x2e\x95\ \x3f\x1c\x37\x72\x03\x64\x38\xfc\x83\x3f\xbf\x23\x38\x01\x24\x7d\ \x1f\x67\x44\x85\x93\x3c\x32\x56\x0f\x0c\x74\x2a\xf2\x04\x5f\xd9\ \x43\x73\xe0\x67\x5e\x7c\x40\x7e\x23\x00\x0f\xdb\x92\x7e\x61\xf0\ \x3d\x4a\x45\x60\x0e\x32\x02\xbb\xb2\x16\x6b\x62\x25\x94\x02\x29\ \x83\x32\x33\xee\xa0\x5f\xbc\xd1\x04\x76\xd0\x04\xa6\x40\x12\x21\ \x80\x0c\x00\xe8\x7f\xab\x77\x85\x18\xb6\x81\x19\x55\x80\x1b\x78\ \x81\x6e\xb7\x75\xac\x17\x6c\x64\xb7\x09\xb1\x46\x70\x73\xf5\x4c\ \xbf\xb7\x81\xa3\x70\x81\x6f\xe5\x56\x03\xf8\x61\x23\xe6\x6c\xd4\ \xb4\x67\xca\x36\x77\xbc\x43\x62\xf9\xd3\x30\x1f\x27\x6d\x02\x84\ \x3c\xc9\xc3\x0a\x59\xf6\x05\xcf\x43\x15\x0a\x26\x5e\xfe\xf3\x30\ \x64\x37\x58\x5e\x61\x60\x59\x3b\x27\x73\x96\x14\x5e\x69\xe0\x4f\ \x97\xf7\x54\xee\x10\x25\x31\xa3\x1e\x2f\x13\x19\xc3\x91\x20\xad\ \x01\x7a\x4f\xb8\x22\x30\x44\x85\x53\x60\x85\x00\x98\x85\xaa\x77\ \x8a\x5f\x76\x86\x68\xa8\x51\x04\x47\x66\xad\xf7\x7f\xb4\x77\x6b\ \x6c\xd8\x86\x69\xf8\x7b\x15\x58\x6b\x64\xa6\x81\x70\xe5\x67\x74\ \x17\x44\xfb\xe0\x56\x5f\x10\x7d\xf5\xb0\x6c\x0c\x53\x52\x43\x14\ \x3c\xcb\x56\x8c\x1f\x57\x3c\x72\xe7\x82\x32\x32\x02\x8a\x17\x4f\ \xf2\xf4\x5e\x9d\x14\x69\x8b\x38\x59\x50\x30\x02\x4d\x10\x07\xf4\ \xb3\x4f\x2e\xc0\x6e\x48\x36\x00\x4f\xf7\x84\x65\x20\x18\x70\x21\ \x1c\x6c\xf2\x26\x07\x82\x29\xee\xe8\x2b\xe3\x41\x2a\x77\xd0\x04\ \x07\x46\x11\x21\xb0\x0a\x56\x68\x8a\x02\x28\x8b\xaa\xa8\x75\x5d\ \x08\x07\x00\x09\x90\xcf\x34\x6b\xaf\x66\x8a\x5c\x80\x80\x05\x77\ \x86\x05\xd8\x80\xbd\x37\x6b\x65\x88\x51\x70\xa8\x81\xca\x27\x5d\ \x70\xd5\x3b\x29\x55\x8c\x83\x33\x44\x40\x54\x44\xca\xa8\x6c\x1e\ \x99\x5d\x80\x18\x07\x05\xd6\x72\xdd\xd2\x58\x8d\x51\x0c\x3c\x94\ \x78\xd9\x38\x59\x7c\xa0\x73\xdd\x38\x03\x65\x30\xfe\x02\x98\xa3\ \x42\x4f\x87\x2d\x70\x64\x42\x90\x12\x50\x55\xf5\x39\xac\x01\x2b\ \x38\xd2\x34\xa6\xb0\x02\xba\x71\x07\xb5\x51\x8a\x56\xd8\x5e\x07\ \xc8\x8f\x01\xc8\x7a\xc2\x75\x81\xb7\x36\x66\x68\x56\x07\xb8\xd6\ \x7a\xa9\xb8\x7a\xae\x28\x6b\xb6\x56\x80\x00\xb4\x09\xb4\xf6\x4c\ \x17\x98\x61\x70\xe5\x51\x81\x13\x3c\xf9\xb3\x0f\x22\x96\x34\xcb\ \x18\x40\x1a\x99\x3f\x81\xe4\x71\xcc\xd8\x87\x0c\xa3\x72\xc9\x83\ \x68\x82\xc7\x19\xf2\x54\x49\xa9\x14\x07\xb6\x50\x73\x2b\x19\x35\ \x7c\x00\x0f\x0f\x83\x2d\x65\xe0\x36\xf4\xb3\x4e\x87\x72\x8e\x6c\ \x93\x46\x6f\xb3\x3a\x1e\x32\x29\x2c\xf1\x4b\x05\x46\x94\x22\x71\ \x8f\xc5\x86\x85\x5a\x77\x85\x58\xb8\x8a\xaf\x18\x90\x65\x47\x81\ \x57\xb7\x94\xc8\xa0\x51\xb2\x36\x57\x67\xb6\x95\x36\x40\x03\x67\ \x36\x90\x1a\x28\x7b\x12\x89\x72\xd2\xb5\x0f\x6c\x95\x52\xd2\x37\ \x03\xfe\x63\x40\x21\xb8\x4d\x6f\x89\x91\x77\xa7\x34\x88\x26\x8d\ \x52\x22\x2e\x0d\x40\x0a\xf3\x80\x40\xbe\xc1\x63\x26\xb0\x78\x1f\ \x00\x98\x33\xd0\x04\x98\x55\x06\x78\x30\x89\x6f\xe4\x84\x72\x50\ \x06\xe4\xe3\x79\xbf\xb0\x2f\x6f\x82\x2e\x6d\xfe\x74\x23\x50\x27\ \x07\x92\x19\x12\x37\xa1\x75\x48\x99\x94\xfa\x18\x6c\x02\x78\x7b\ \x72\xc5\x99\xbf\xb7\x09\x5c\x48\x95\x18\xf6\x95\xa3\xd0\x80\x75\ \x70\x6b\x0d\x28\x3c\x60\x86\x38\xb8\xd6\x75\x1b\x96\x61\x77\x86\ \x87\x83\x34\x82\x90\x84\x34\x2a\x66\x48\x83\x95\x9b\x29\x18\x92\ \x22\xa9\x40\xec\xe5\x5e\xe9\x64\x0f\xa4\x34\x63\x69\xf0\x01\x52\ \x73\x9c\xc7\xb9\x78\x61\x20\x0d\x65\xa0\x38\x8a\x23\x54\x39\xb7\ \x9c\xcb\x19\x8f\xa2\xa1\x8e\x6c\x92\x18\x6f\xe2\x89\x55\x05\x24\ \x97\x27\x23\xdf\x19\x12\x9d\xf0\x95\xf9\xb8\x8a\x09\x68\x90\x2f\ \x2a\x80\x05\x38\x66\x00\x19\x71\xb4\x08\x66\xb1\x88\x75\x6a\xd5\ \x99\x70\x20\x57\x8f\x54\x56\x6f\x00\x62\x70\x10\x87\xbb\x38\x5c\ \x81\xe6\x4d\x27\x16\x57\xd8\xe4\x8c\xbe\xe3\x4d\x23\xc6\x3f\x68\ \xa6\x6c\x06\x9a\x91\x72\x99\xa0\xe3\xe1\x8d\x34\x35\x6c\x4f\xb0\ \x55\x65\x10\x6e\x14\x0a\x00\x61\x6a\xa1\x3b\x10\x93\x4f\x80\x04\ \x87\xe5\x73\xf3\x30\x1e\xa7\xb5\x9c\xe5\x91\x2f\x06\xc0\x5a\x47\ \xe2\x3e\x0b\x75\x32\x29\x01\x99\xe3\xb1\xa2\x20\x11\x02\x09\x10\ \xa3\xda\x77\x80\x97\x39\xa3\x02\x88\x86\xfe\x3f\x5a\x80\x38\x9a\ \x80\xb1\xb6\x8a\x56\xa9\x51\x0d\x48\xa4\xb6\xf6\x70\xb8\x86\x7b\ \x68\xd7\x51\x48\xda\x4c\x71\xd5\x3b\xfe\x03\x38\xbe\x38\x82\x7b\ \xc8\x82\x1b\x69\x91\x54\xfa\x71\xc6\x38\x77\x0b\xf3\xa0\x4f\x88\ \x59\x99\x55\x34\xe0\xf4\xa5\x69\x60\x02\x14\xea\xaa\x62\xba\x78\ \x26\x00\x05\xe5\xa7\x05\x3b\x30\x89\xf3\x04\x64\xb9\x21\x93\x23\ \x00\x43\x33\xf9\x31\xc1\xb2\x15\xab\x83\x20\xd5\xa9\x12\xfb\x86\ \x6a\x7a\x9a\x43\x8b\x70\x81\xff\x47\x6b\xb2\xd7\xac\x99\xe9\xac\ \xcf\x24\x90\xcf\x64\x76\x6e\x77\x86\xc5\xa6\x51\xf1\xf9\x70\x74\ \xd7\x99\xd5\x0a\x62\x6a\xd5\x51\x75\x65\xa9\xa3\xd0\x30\x3e\x94\ \x7c\xa3\xb0\x0f\xcf\x88\x67\xa0\x0a\x58\x40\x14\x48\x1d\x99\x96\ \x20\xc9\x9b\x05\xc6\x3c\x30\xa9\x72\xd8\xa2\x59\xd6\xf0\x01\xae\ \xda\xaf\x8b\x08\x05\x4f\x30\x02\xdb\x42\x4e\xea\xf4\xa1\x83\xe9\ \x2b\x52\xc8\x64\xe6\xe2\x19\x2a\xf1\x26\xaa\x12\x18\xf2\x17\x14\ \xa7\x80\x6a\xbc\xb1\x02\xb5\x41\x0e\xec\xe0\xa7\x5b\x98\xb1\x59\ \xe8\x9e\xc9\x45\x9f\x69\x68\x76\x31\x6a\x7c\xe2\x19\x9a\xae\x98\ \x86\x65\xb7\x71\x69\x06\xae\x6f\xb8\xfe\xa4\xc6\x26\xa0\x26\x15\ \x57\xc5\x93\x77\x28\xa8\x44\xd7\x84\x34\x54\xea\x91\xd2\x37\x77\ \x72\x89\x68\x99\xd5\xa5\x98\x05\x8d\x4d\xb0\x73\xf0\x00\x08\xfd\ \x0a\xab\xe0\x27\x01\x18\x3a\x02\x3d\x27\x03\xa9\x04\x64\x41\x95\ \x45\x33\x00\x43\x4e\x63\x25\x6c\xe4\x22\x0e\xab\x25\xbd\xc4\x19\ \xc2\xc1\x8d\x14\x6b\xb1\x93\xd9\xa2\xb0\xf7\x65\x60\x88\x81\xb2\ \xa8\xa8\xaa\xa7\x8b\xf4\x09\x62\x73\x55\x07\x61\x58\x7b\xc5\xd6\ \x76\x75\x75\x8b\x1b\xa7\x86\xbd\xc7\xb2\x6f\xd5\x56\xc8\x20\x03\ \x71\x67\x34\x0b\x93\x3f\x6f\x30\x8c\xc7\x68\x96\xf8\x23\x9b\x73\ \xc7\x96\x68\xb9\x6c\xb3\x39\x38\x3d\x54\x34\x4d\xa4\x40\x5f\xa0\ \x05\x2a\xf7\x30\x5b\x45\xb4\xad\x7a\xb4\x37\xf8\x01\x3b\x00\x93\ \x5a\x60\x0d\x1d\xba\x3c\x83\x59\x41\x5c\xd4\x04\x52\x38\xb4\x76\ \x20\x93\x1f\xd3\x12\x5a\xdb\x1a\x5d\x73\x24\x38\xd2\x45\xd8\x02\ \xb6\xe0\xd9\x09\x08\xf8\x5b\xee\x85\x80\xba\xe8\xa7\x69\x3b\x7b\ \x16\x68\x6b\x4e\x39\xad\x0b\x19\x6b\xcc\x54\xb2\x5d\xa8\x4c\x05\ \xf8\xad\xd3\x5a\x76\x66\xd7\x56\xce\x60\x6c\xa3\xe0\x0c\xc3\x35\ \x8c\x0d\xf3\x9a\x98\x5a\x96\x1a\xfe\x86\xb3\xc6\xf8\xae\xd8\x84\ \x91\x8a\x9b\x34\xbe\x23\x97\x32\x32\x03\x5f\x00\x06\x3c\x44\x4a\ \xd8\x32\x03\x48\x60\x0f\x50\xc0\xaf\xfe\x0a\x7e\x61\xa0\x05\x43\ \xfb\x05\xea\x54\x06\xea\x05\x1a\x0f\x0a\x43\x30\x29\x93\x5a\xe4\ \x5f\xee\x48\x28\x40\xe1\x5a\x38\xb2\x55\x4d\x23\xbb\x2c\x5a\xbb\ \xbf\x86\x61\x01\x59\x70\xc1\x36\xb2\x5f\x06\x90\x19\x9b\x95\x19\ \x9b\x9a\x88\xaa\x4c\xad\x07\x96\x69\x15\x81\x88\x33\x9f\x64\xc6\ \x90\x13\x46\x57\xcf\xcb\x51\x1c\xc8\xa4\xe6\xda\x67\xd5\x8b\x6c\ \x48\xa3\x9b\xd7\x34\x40\xcc\x88\x40\x87\xab\x72\xe0\xe4\x34\x91\ \xcb\x03\x8a\xa3\x3c\x6c\xca\x83\x69\xc0\x04\xec\x5b\xa1\xc8\xa9\ \x05\xb9\x11\x53\x5a\x40\xb9\xed\xc4\x4e\xa6\x30\xb5\x53\xab\x22\ \x0b\xf5\x31\x34\xd4\x8e\x61\xf3\x6e\xa0\xf8\x84\x4f\x48\xc0\x20\ \x31\x05\x19\x95\x76\xc1\x56\xbb\x01\xc9\xbb\x04\x67\x03\xfe\x87\ \x81\x6a\xf5\xc0\xc3\x25\xc1\xb7\x07\x8b\xc8\x15\x91\xe2\x3a\x5d\ \x75\xb0\x71\x5c\xcc\x7b\x8f\xd4\x6c\x1a\x18\x8c\x70\x67\x82\xcf\ \xc5\x3b\x73\x37\x67\x75\x57\x8c\x0c\x03\x38\x85\x9b\xb3\x3b\xeb\ \x4d\x7e\xdb\x34\x3b\xc7\x43\xfe\x71\xf0\x04\xe6\x56\xc3\x3b\x60\ \xab\x1e\xd0\xbe\x8b\x97\x83\xbc\x21\xbf\x5a\x80\x04\x23\x50\x7e\ \x87\xe5\x31\x16\xf4\xc8\xe5\x21\x18\x0c\xdb\x13\xea\x01\x36\x0f\ \x9b\x2f\x68\x93\xa2\xd8\x26\x75\x93\x19\x9a\x15\xf8\x6a\xb8\x0b\ \x90\xc7\xd5\x7f\x2e\x4a\x7b\x88\x1a\x6b\xc2\x55\x80\x17\x68\x6b\ \xb3\x06\x96\x1b\xe5\x4c\x6a\x88\x9f\xe1\xaa\xc6\x73\xe5\x43\xe4\ \xca\x5c\x27\xc8\x30\x64\x36\x96\xd2\xf5\x6c\x81\xc8\x67\x3e\x64\ \x82\x2e\xb8\x8c\x77\x87\x3f\x2a\x47\x58\x3b\x87\x04\x82\x8c\x04\ \xfb\xf0\x05\xba\xfa\xc7\x4f\xb0\x06\xec\x1b\xab\x89\x0c\x64\x65\ \xb0\x0f\x50\x00\x05\xe4\x07\x93\xe0\x06\x59\xe2\x33\x03\x6b\xe3\ \x79\xff\x4b\x43\x11\xe4\x39\xf6\xd1\x9d\xbc\x11\x0b\xb5\x91\x06\ \x88\x2a\x86\x5b\x08\x90\x65\x45\x86\x5a\xec\x7f\xac\x2c\xbc\xba\ \xc8\xc5\x47\xca\x8a\xae\x98\x87\xbc\x77\x6b\x94\xca\xc1\x7a\xf8\ \x06\xd0\x5b\x91\x02\xba\x4d\xec\x1a\x5d\x77\x47\x4d\xc6\xcc\xc2\ \x40\xf4\xbd\xc1\xa3\x82\x0b\xf3\x05\xca\x8c\x40\x0a\xf4\x04\x16\ \x8d\x04\x91\xbb\x0f\x5d\xfa\x84\x30\xf9\x05\x87\x8c\xb4\x36\xd7\ \x88\x65\x50\x0f\x48\x90\xfe\x60\x3b\xf0\x05\x23\xa0\x3c\xe5\x37\ \x0f\x71\x60\x41\xe7\x02\x1a\xde\xd1\x25\x5c\xd1\x13\xe9\xdc\x00\ \x0d\x80\x1a\x52\xf0\x0b\xec\x2c\x07\xee\x3c\x99\x25\x90\xb1\xb3\ \x66\x9e\xe3\x3a\x7b\x58\x98\x7a\xb5\x3b\x80\x08\x88\x95\x64\xe6\ \x8a\xf6\xd0\x51\x1e\xc6\x3b\xcb\x84\x86\x65\x07\x07\x88\x6a\x6b\ \x77\xeb\x3f\xc6\x85\xd0\x4f\x1a\x3c\xc1\xfc\xa4\x87\xb4\x87\xc8\ \x63\x44\x80\x54\xb8\x1d\x99\x91\x3e\xc4\x03\xca\x43\x58\x8f\xa7\ \x05\x16\x0d\x9b\xd2\x1c\x31\x5a\x70\xcd\xb0\xaa\xc3\xe5\xf5\x01\ \x5a\x00\x93\xfb\x90\x60\x32\x40\x4f\x23\x60\x6e\xcb\x43\xba\x53\ \x8b\x3a\xae\xc5\x36\x6b\xa2\xba\x42\xb0\xd3\x61\xa3\xd3\x27\x33\ \x00\xba\x4a\xb1\x41\x2d\x12\x03\x97\xb1\xbc\x1b\x7b\xcf\x8a\x99\ \xfe\x77\x81\x11\x9c\x90\x61\xfc\xd4\xc6\xab\x56\x1d\x26\x67\x55\ \x0d\x95\x66\x27\xae\x67\xf6\x7b\x8c\xd4\x67\xbc\x18\x77\x4f\x5a\ \x38\x84\x24\x77\xda\x6b\x48\x8e\xfb\xb7\x16\x8d\xd6\x98\x55\x0f\ \x84\x03\xaf\xb9\x6d\x4f\x33\x50\xcc\x1c\xbd\x0f\xe4\x67\xaf\x23\ \xa0\x05\x46\xeb\xaf\x78\x9d\xd7\x3c\xbc\xcd\xc7\xc0\x07\xd6\x70\ \x3f\x48\x80\x04\x71\xfe\x40\xba\xcc\xd3\x04\x2d\x82\x1c\xfa\xd6\ \x21\xe9\x1c\x41\x3b\xed\xba\x9e\x2c\x23\x93\xcd\xa2\x18\x88\xd5\ \x67\xdb\x75\xfc\x28\xa3\x53\x2c\x90\x0e\xb8\x7b\xbb\xc8\xa4\x7a\ \xcb\x75\x6c\x0c\x81\x1b\xc7\x0e\x1d\x15\x38\x82\x03\x71\x74\xc5\ \x3b\x7e\xb6\x62\x1f\x48\x52\x0c\x9d\xcc\x25\x68\xcc\x87\xbb\xd6\ \x1d\x99\x59\x78\xdc\xa5\x6d\x3d\x9d\x48\x00\xd7\x91\xcb\x43\xd7\ \xa2\x3c\x4f\xa0\x05\x7c\x30\xd2\x98\x9b\xdc\x76\x02\x08\x3c\x30\ \xb4\xfb\x20\x03\x7c\xe0\x0c\xd1\xfc\x05\xdf\x0c\x93\x19\x6a\x20\ \x49\x95\x4b\x03\x80\x20\x98\xa2\xc9\xe9\x1c\x60\x9a\x47\xb1\xe3\ \x51\x03\x78\x14\xc5\x9f\x8d\xd4\x09\xb7\x80\xf9\x58\x95\xbb\x27\ \x81\x02\xdd\x86\xaf\xe7\x51\x88\xa3\x70\x1a\x16\x8c\x1f\x96\x0b\ \xf3\x59\xd5\x8d\x0a\x71\xec\x1a\xdf\x72\xc5\xdf\x1b\xd9\xa4\xcf\ \x05\x9b\x79\xf5\x8c\x3d\xa4\xcc\x13\x9d\x91\xd1\xdc\x30\x6d\x8d\ \x59\x3e\xc4\xe0\x48\x20\x49\xf5\x70\xa6\x0b\x0e\x05\x4c\x70\xdc\ \x77\x6d\x5e\x26\xc0\x04\x4f\x80\x59\x1b\x2e\x03\xce\x60\x0f\x70\ \xdd\xa5\xe5\x17\xb0\xbf\x1a\x47\x67\xd3\x8e\x1d\xe2\xd8\x6b\xb2\ \x2f\x78\x4a\xb1\xfe\x7f\x50\x1b\xb7\x77\x6b\x54\x4c\x7b\xcb\x04\ \xad\xd0\x2a\x5c\xeb\x49\xa4\xaf\xac\x9a\x64\x87\x38\xa4\xc0\x61\ \x6c\x97\x4c\xc5\xa5\x86\x3c\x50\xd5\x77\xf6\x7b\x49\xfe\xa3\x6f\ \x80\x62\xb1\xed\xbd\x04\xae\x34\x53\x2e\x72\x6c\x65\xd1\x48\xa4\ \xd1\xa2\xbe\xb3\xc7\x08\xc8\x87\x86\x59\x11\x1e\xb9\x70\xad\xab\ \x6f\xdd\xd1\xd6\x00\x05\x14\x5e\xe6\x91\xe3\x0c\x97\xf5\x04\xce\ \xe0\x05\xce\x30\x0a\x3b\x00\x06\xf0\x40\x7e\x19\xfa\xc8\xed\xf4\ \x2f\xd2\x81\x2a\xe3\x62\x0b\xaa\xa2\xd3\x45\x52\x42\x65\x92\x65\ \xfc\x16\x75\xef\x9c\xbb\xbc\x1b\x9a\x61\x16\x6c\xfe\x87\xcf\xbc\ \xc7\xb6\x21\x16\x76\x4f\xfd\x3b\x83\x0e\xbd\x1a\x65\x57\xdc\x1e\ \xe9\x2b\xbb\x71\x41\x24\x91\x21\x68\x91\x7f\x0b\x88\x2a\x77\x48\ \x78\x7c\x62\x6c\xc5\xd6\xba\x8d\x77\xd5\xf6\x04\xb0\x89\xe0\x73\ \xf9\xc7\x5a\xb0\x0f\xd6\xe0\xd1\x10\xce\xea\x5a\xa0\x05\x60\x00\ \x06\x64\x8e\xdc\x52\x93\x9c\xcb\xf9\x05\x5e\xd0\xe1\x60\x60\x0f\ \x60\xb0\x03\xfb\x00\xdd\xe6\x56\x06\x88\x40\xba\xa1\xc1\x58\x99\ \xe4\x8e\x3a\x9d\x1f\x5b\xe1\x22\xac\x14\xd9\xbb\x51\x60\x4d\xd0\ \xe7\x93\x09\xfe\xcf\x5e\x6c\x8a\xb5\x67\x90\xe6\x49\xa3\x75\xfb\ \xd4\xf1\x99\xed\xb9\x9c\x4c\xab\x59\x5c\x3f\xaa\x86\xec\xe9\x56\ \xd9\x1e\x71\x7d\x37\x67\xfb\x3d\x48\x7f\xb5\xd6\x7e\x7b\xc7\xb7\ \x7d\xdb\xc1\x18\xcd\x69\x6e\xe0\x57\xbe\xb3\x1a\xad\xae\xba\xbd\ \x34\xf6\xce\xef\xce\x60\x0d\xe4\x2b\xf0\x03\x1f\xf0\xfb\xb0\xef\ \xd6\x70\x0c\x47\x3b\xa6\x62\x8a\xe6\x30\x5c\x7c\xbb\x0e\x9b\xbd\ \x3e\x53\xf4\xe3\xb5\x6f\x2a\x7f\x1d\x94\xec\x3a\xbd\xd3\xcc\x9e\ \xa2\xed\xe1\x69\xa6\x00\xca\x22\x01\x08\xb8\xab\xb1\x81\xaa\x85\ \x07\x57\x86\xd0\x84\x51\xec\xb0\x6b\xdd\xc4\x9e\x5c\x48\xf3\x4b\ \x1e\x76\x6a\x45\x76\x26\x37\x3c\x48\xce\xda\xfb\x7d\x82\x20\x69\ \xd1\x52\x3e\xf4\x87\x04\x06\x72\x3d\x58\x0c\x13\xea\xc9\x13\xc8\ \xa4\x40\xbe\x8a\xa3\xd1\x82\xfc\x05\xfc\x0e\x06\xfd\x0e\x06\xb9\ \x4e\x03\x4c\x40\xbe\xd0\x0c\x06\x01\xcf\x04\x5b\x1f\xab\x14\x2a\ \x03\x04\x16\x07\xfb\xe0\x0c\xb2\x3f\x0a\xfb\x6e\x0f\x9e\xfb\xf0\ \x32\x35\x0f\xba\x41\xce\xed\x16\x17\x5a\xb2\xf6\xd2\xa3\x25\x30\ \x12\xd9\xa5\x9b\x65\xa6\x70\x07\x72\x1f\x12\x52\xfc\x8a\x63\xdb\ \xac\x67\xfe\x0b\x6b\x5d\x77\xbc\x80\x2e\x6b\x7d\x37\x87\x85\xff\ \xd9\xd0\x94\x86\x55\xcd\x03\x27\xb7\xd5\x8e\xb4\x09\x70\x75\xbd\ \x02\xba\x30\x1a\xdd\x3b\x2e\x4c\xfe\x78\x5c\xcc\x9e\xbf\x0f\x60\ \xa0\x57\xba\xbd\xfe\x72\x67\xef\x92\x2f\xf4\xeb\x3f\xf0\x1f\x6e\ \x0d\x4c\xf0\x02\x2f\x60\x06\x32\x20\xb9\x5f\x20\x0d\x00\xb1\xef\ \x8b\x35\x0f\x26\x0c\x1a\x04\x60\x02\x00\x00\x0f\x5a\x66\xcc\x78\ \x62\x4d\xc6\x28\x67\x60\xf6\x69\x01\x03\x65\x87\x16\x78\xf0\x90\ \x8c\x28\x73\x67\xc4\xbc\x79\x03\x8a\x69\xd0\x90\x06\x4f\x83\x06\ \xc5\x58\xe2\x81\x89\x27\x8d\x94\x79\x76\xe4\xdc\x94\xd3\x04\x27\ \x4e\x53\x4d\x62\x29\xfa\x17\x54\xe8\x50\xa2\x45\x8d\x4e\x79\x03\ \x47\xe9\x1b\x1b\xc8\x9c\x3e\x7d\xca\x85\x8b\xd3\x37\x4c\x6d\x24\ \x85\xb3\x49\xeb\xa6\x51\x36\x46\xbd\xe1\x91\x8b\x07\x8f\x4d\x70\ \xac\x5e\x4d\x4a\x8a\xd4\xa6\xb5\x6b\x73\x99\x7d\xb3\x29\x4e\x8b\ \x5c\xac\xe6\xc6\x61\x95\x97\x07\x9c\xaf\x6a\xd5\x8e\x0d\x3b\xf6\ \xcb\xe0\x38\x71\xca\xcc\x28\x3c\xf8\xcb\x93\x27\x48\xbe\xec\x83\ \x7c\x91\x47\x1c\x88\xa4\xc0\x2c\x8e\xf3\xe4\x0b\x18\x30\x3c\x34\ \x2b\xfe\x8e\xbc\xf8\x8b\x33\x1a\x2f\xcc\x30\x63\xb2\x0f\xc9\x13\ \x2d\x02\xf7\xd1\x38\x88\x50\xa1\x09\x26\x23\xe4\x94\xd9\xe7\xc5\ \x8b\x0c\x67\x90\x31\x6e\xfc\x82\xa4\x4c\x99\x26\x65\x46\x92\x74\ \x97\x06\xa5\x4b\xe5\x1a\x5c\xc6\xc4\x53\x4c\x8a\xbb\x19\x3b\xad\ \xe3\x6c\xd2\x24\x8b\x51\xee\xdd\x87\x86\x58\x5b\xd6\x2a\xd4\xab\ \xa3\x9c\x4a\xb5\x91\xbe\xea\x1b\x76\x4a\xb3\x96\xed\x1a\x97\x47\ \xdb\x4d\x6f\xba\xa6\x77\xbf\x36\x6b\x78\x52\x6f\x48\xe5\x6a\xc1\ \x2e\xba\x5a\xc0\x8b\x95\x7a\x72\x61\xcb\x3f\x52\xe0\x58\x0b\xb0\ \x27\x78\x18\x8c\x31\xc6\x0c\xcb\xac\x31\x1e\x1c\x73\xac\x35\xdf\ \xbe\x28\xec\x89\x7d\xc0\x20\x85\xb1\xc7\xf6\xe9\xd0\xb3\xc1\x48\ \x59\xcc\x43\x2f\x68\x60\x91\x06\x2f\xa0\x58\x6d\x44\x30\x64\x28\ \x28\x36\x83\x3e\x70\xe8\xb6\xdc\x78\x1b\x85\xb3\x8b\xa4\xd1\x42\ \x8b\x2f\xca\xb8\xa9\x89\x11\xe0\x71\x07\x49\x21\x50\x4a\xa3\x01\ \x94\x50\x62\x89\x25\x21\xd2\x70\x67\x1e\x53\xae\xb3\x4e\x27\xed\ \xbc\xe3\xd2\xa8\x10\xc2\xaa\x03\x0e\xaf\x9a\x72\x6a\x14\xad\xc4\ \x44\x66\xaa\xa7\xd4\x4b\x6b\x2b\xb8\xfc\x63\x8b\x41\xa5\xd2\x43\ \xfe\x0b\x2b\xb6\xb6\xba\x33\x97\xba\xf2\xba\x2b\x40\x03\x59\x99\ \x6f\x93\xf9\xfc\x0a\xab\x30\x08\x21\x5c\xed\x09\x90\xca\x90\x70\ \x35\xc7\x06\xd3\x90\x33\xcc\x46\xeb\x2c\x31\x52\xea\x91\x83\x95\ \x87\xe2\xf0\xec\xb0\x81\x56\xdc\x4d\x86\xdd\x04\xc2\x08\x0c\x6b\ \x9c\x61\xa2\xc6\xd8\xf8\x78\xe2\xa6\x38\xc0\x70\x66\x94\x1e\x9d\ \xb1\xc6\x22\x30\x76\xd8\xa8\xba\xe2\xe6\x71\x61\x00\x78\x06\x48\ \xe3\x24\x94\xa4\xe2\x02\xca\x06\x9a\x14\x02\x9e\x2b\x6f\x5a\xd6\ \x3a\x53\xec\xe8\x69\xbb\x2e\xa7\x0d\x2a\x84\x12\x10\x84\x8b\x4c\ \x64\xe2\x6a\x61\x13\x1b\x88\x55\x53\x3d\x76\xec\x2c\x0b\xae\x05\ \xfb\x6b\xeb\xac\xb4\xc2\xbb\x93\xac\x42\xf3\xca\x4b\xcf\x3d\xeb\ \x61\x25\x17\x52\xdc\x65\x6b\xac\x5c\x4a\x4c\x14\x89\x8f\x8c\x63\ \xb4\x31\x0c\x83\xfc\x22\x48\xce\xac\x21\xd1\x43\x6b\xbe\xc0\x34\ \x33\x9c\xea\xa9\x07\xb1\x19\xea\xc1\x4d\x06\xde\xac\x81\xc2\x19\ \x28\x2c\xae\x55\x22\x19\x24\x52\xf5\x20\x6b\x74\xc2\xcd\x9a\x8e\ \x9d\x71\x46\x06\x30\xa4\xc1\x18\x0a\x78\x86\x43\x02\x9e\x12\xd2\ \xa0\x79\x00\x7b\x76\x48\x83\x0b\x09\x34\xd8\xb9\xd8\x62\x7e\xfe\ \xd6\xa0\x81\x79\x76\x32\xa5\xd9\x22\x7f\x99\x67\x05\x39\xa4\xa5\ \x76\xda\x45\xce\xcc\x16\x99\xab\xe0\x40\xf0\x8d\xf3\x9c\x52\x0f\ \xad\xac\xde\x7b\x53\x2d\x05\xcb\x6a\x6a\xea\xf7\xe8\x0b\x4c\x5e\ \x78\x05\xcc\x8b\xde\x6e\xef\xd5\x77\x5f\xbc\x2a\x64\xcc\xd1\x11\ \x14\x1d\x61\x04\x7f\xfd\xd5\x02\x89\x20\x2f\xfa\xf0\x54\x30\x12\ \xfb\xa2\x3a\x88\x75\x7a\xf8\xa6\x7a\x36\xab\xf5\xc3\x0f\x53\x66\ \x82\x06\x26\x1e\xf7\xc2\x1a\x2d\x52\x8d\x8d\x06\xdb\x9a\x88\xa8\ \x22\x94\x53\xbe\x18\x0a\x8d\x82\x43\x02\x67\x9a\x01\x49\x29\xc9\ \x06\x74\x96\x20\xf5\x61\x9f\xdc\x01\x11\x2c\x77\xb2\xe3\x17\x65\ \x9b\xf8\x23\x84\xa6\xa7\xed\xa4\xbd\xb2\xc0\xc6\x7a\x2b\xab\xd3\ \xc4\xda\x2c\x36\x95\xda\xe4\x2d\xfb\xe4\x84\x33\x41\xf5\xb2\xd2\ \x73\xf7\xe2\xe5\x2d\xbe\xc0\x78\xf1\x82\x18\x50\x77\xdd\x2e\xac\ \xc3\x44\xdd\x78\xc2\x0d\x24\xdc\xf0\xde\x7b\x7f\xd7\x28\x38\x48\ \x21\x31\x92\x68\xe1\xc3\x28\x7b\x1d\xa7\x32\xbe\x40\x11\x34\x53\ \x45\x3d\xcd\x34\x26\xa4\x29\x98\x72\x13\xd8\x18\x59\x8e\x19\x36\ \xd3\x1c\x6f\x2c\x86\x32\x3e\xc8\x60\x23\x7a\xeb\x08\x3c\xfe\x68\ \x96\x92\x1d\xb8\x63\x49\x61\x50\x5d\xb1\xa4\xe2\x9c\x79\x10\xae\ \x7d\x77\xa8\x89\x96\x80\x72\x3b\x2e\xad\x82\x3d\x5c\x23\x93\x0d\ \x98\x87\x26\x35\x61\x85\x3d\x53\x73\x5e\x57\xe0\x40\x16\x7b\xf8\ \xa7\x6a\x5a\x2b\x1e\x5d\xf2\x44\x20\xb1\xec\xeb\x4f\x76\x99\xd7\ \x81\xbe\x30\x16\xca\x64\x6f\x53\x02\xb3\xdb\xf7\x84\xe8\xbd\x35\ \x20\xa1\x88\x45\x3c\x5f\x64\x6a\x05\x86\x5c\x3c\xa4\x1e\x16\xbc\ \x4e\x13\x32\x93\x3d\x08\x41\x26\x65\x2b\xa2\x81\x19\x5e\x40\x03\ \x19\x7c\x61\x04\x5f\x60\x82\x19\x3c\xd0\x10\x39\xd4\x83\x35\xb5\ \x4a\xd9\xe6\x50\x26\x83\xc7\xed\x00\x0c\x1c\xc9\x9b\x1b\x14\x98\ \x86\x12\x24\x29\x67\x3b\x7b\x92\x04\x26\xd8\x00\xd7\xb5\xaf\x48\ \x77\xb0\xe0\x06\x39\xd8\x9d\x10\x8c\x8b\x6b\xec\x08\xde\x26\xea\ \x50\x1f\xe0\x6d\x4b\x29\xec\xa0\x93\xf3\x84\xb7\xc2\xfa\x70\xcb\ \x78\x55\x61\x9e\x0c\xb5\xc2\x83\xbc\xd0\xc5\x86\x06\xa2\x57\x61\ \x20\x56\x8f\x38\xdc\x8b\x32\x10\x7b\xc8\x43\xca\x20\x44\x24\x18\ \x61\x0d\x46\x68\xe5\x10\xc7\xa7\x37\xbd\x15\xec\x31\xf0\xdb\x61\ \x75\xfc\x58\xc6\x51\x46\xec\x33\x8b\x63\xe3\x8a\xb4\xfe\x68\x06\ \x28\x28\x4a\x0b\xd6\x60\x02\x18\x6c\xf3\x3e\xce\x89\xaa\x99\xcd\ \xd4\x88\x6a\x3e\xf2\x04\x17\x94\xc0\x57\x48\x3a\x49\xcf\x86\xa5\ \x33\x0d\xd8\x02\x8a\x51\x34\xc5\x1d\xb0\x73\x07\x41\x0e\xd2\x4b\ \x1f\x74\x0f\x24\xf1\xe3\xbb\x34\x4d\x45\x84\x7c\x59\xde\xee\xcc\ \xa2\x14\xb2\xd8\x27\x86\xf5\x19\x57\x52\x62\xd8\x82\xeb\xf1\xa9\ \x5e\x69\x8b\x58\x1c\xea\x12\xd0\xb1\x3c\x61\x62\xfe\x4b\xa5\x71\ \xbe\xb7\x86\x22\x1a\xc1\x0d\x0e\x05\x1f\xf8\xee\x56\xcb\xf3\xa1\ \xe8\x09\x94\x61\xc5\x2e\xb1\x73\x13\xc4\x3c\xe8\x31\xf3\x63\xd1\ \x0b\x3c\xc0\x06\x0f\xa8\x0c\x7d\x5a\x20\x52\xc5\x76\xb3\x52\x2f\ \x20\x23\x54\x28\xdb\x81\x6a\x9e\x60\x1c\x78\x88\xce\x05\x25\xc9\ \x19\xcf\xb6\xa9\x3a\x22\xbd\xae\x09\xa6\x18\x89\x1d\xb2\xd3\x04\ \x3b\x8c\xa0\x9c\xe6\x24\x4a\x08\xd2\x40\xbc\x47\x42\x92\x1d\xec\ \xd8\x0a\x22\x81\x77\x15\x75\xda\x00\xaa\x6e\x62\x90\x56\xfa\x33\ \x0a\x52\xb0\xa2\x5b\x55\xc9\x27\xd5\xea\x22\x2f\x3f\x9d\xad\x97\ \x80\xc2\x0b\x62\x2e\x44\x19\x9d\xa8\xd2\x38\x6e\x60\x28\x43\x1d\ \x0a\xd1\x88\x7e\x4f\x7c\xfe\xb2\xe5\x62\x0e\xaa\xfe\xd1\xeb\x44\ \xac\xa3\x00\x6c\x9c\x19\xd8\xc0\x86\xfd\x99\xe0\x34\x2a\x6b\x15\ \x44\x66\x24\x2a\xdd\x34\xb6\xa5\x16\x33\xe9\x4c\xed\x26\xba\x3a\ \xce\x03\x1e\x4e\xe2\x83\x06\x32\xcb\xb3\x30\x84\x21\x0d\xb6\xf1\ \xe9\x08\x64\x37\x8f\x3b\x98\xc2\x38\x76\x38\x2a\x52\x85\x12\x82\ \x4e\x94\xab\xa9\x4f\xbd\xaa\xf0\xb4\x95\x14\xab\xc4\xa5\x0e\x08\ \x72\x5e\x3d\x47\x01\x87\x78\x61\x92\xb6\xc5\xe3\x13\x81\x00\x6a\ \x17\x50\x92\x92\x53\x94\x61\xd4\x62\x0e\x53\x9c\x11\x84\x2f\xae\ \x72\x5d\x43\x44\x93\xd0\xdc\xba\xd5\xcd\x51\x9f\x99\x0c\xa6\xf8\ \xfa\x3a\x52\x3e\xc6\x1a\xc2\x7c\xc1\x60\x0b\x6b\x10\x33\x7c\x81\ \x64\xfb\x90\x48\x63\x69\xc0\x0c\x64\x30\xc3\x0b\x57\x34\xe0\x45\ \x82\xb4\x83\x12\xcc\xac\x23\xf6\x38\x16\xd0\x68\x56\x0c\xd4\xb9\ \xa3\xa7\xd8\x21\x1c\x06\xe1\x81\xb4\xba\xad\x20\x24\xa6\xb0\x9d\ \x6a\x93\xda\x5a\xd7\xc2\x01\xb6\x4c\x9d\x13\xf0\xda\x23\x26\xab\ \x52\x6d\x91\xc4\xdb\x24\x53\xfe\xd3\x82\x16\xbc\xa7\x2c\x7f\xd9\ \x53\x27\x41\x69\x97\x38\x8c\x12\x31\x86\x79\x48\x10\xdd\x50\x37\ \x89\x32\x54\x1a\xe0\x58\x03\x8c\x8d\x30\x63\xfe\x37\x24\xc1\x0d\ \x35\xc0\xf1\x08\xee\x00\xb0\xb9\x31\x66\xaf\xdb\xed\x2b\xa3\xd0\ \x2b\xaa\xd2\x0c\x56\xbc\x46\x9e\x44\xab\x9a\x30\x1a\xdd\x10\x99\ \x19\xeb\x7d\xec\x00\x61\xc5\x07\x2e\x00\x22\x0d\xce\xc0\xd5\x17\ \x6c\xb1\x03\x3e\x64\x16\x19\x69\x40\x86\x66\x35\xc0\x85\x01\x0c\ \xad\x48\x45\x15\x6a\x4f\x46\xf2\x8b\x11\xd8\x21\x69\x21\xd1\x49\ \x82\x15\xbc\xda\x10\xb8\xc7\xc1\x8f\xd4\xa7\x9b\x20\x19\x3c\x07\ \x53\x75\x13\xdd\x32\x8b\x56\xb0\xa5\x94\x00\x21\x88\x1d\xfc\x71\ \x61\x81\xee\x02\xca\xc2\x18\xc8\x7f\xac\x58\xae\x71\xa8\xbb\x62\ \xf0\xc5\x15\x1c\x97\xc6\xf4\x2b\x21\x3a\xdd\x1a\xec\x78\xc7\xc3\ \xc9\x0c\x2b\xbe\x09\xe4\x87\xc5\x01\x7e\x33\x02\xaf\x91\x09\xcb\ \x06\x40\x04\x4e\x47\xa2\x62\x82\x7a\x69\xe0\x52\x01\xc6\x6a\x1f\ \x50\xf8\xc0\x6c\xb8\xc0\x07\x7b\x68\xe1\x66\x13\xcc\x6c\x97\x75\ \xc6\x87\x01\xe8\x72\x57\x55\x0a\xc9\x9a\xab\xd4\x66\xe2\x10\x4e\ \xce\x73\x0e\xca\x2a\x1e\x99\xce\xa7\x5a\x78\x77\x7b\xe6\xc2\x3b\ \xc7\x35\xae\x3f\x5f\xf2\x79\xbb\x03\x50\x87\xdb\x54\x15\xb5\x48\ \xaf\x40\xd5\x63\x9f\x5f\x67\x10\x92\x32\xfe\xd4\x80\xc5\x94\x06\ \xdf\x8c\xa3\x1b\xe3\x39\x80\xc3\x08\xf6\x86\x68\xa7\x87\x3a\x83\ \x26\xf8\x95\xd4\xed\xf3\x65\xdf\xbc\xc0\x04\x66\xbc\x20\xbc\x46\ \x3e\xc6\x3e\xaa\x33\x83\x7d\x40\x96\xa5\x2c\xda\x0d\xca\xde\x0b\ \x19\x6b\xf0\x41\x36\x05\xb4\xc7\x28\x8a\xe1\x65\x31\x8f\x59\x67\ \x3b\x00\x6d\x13\x4a\x72\xd3\x36\x8f\x04\x1e\x24\x19\x41\x76\x76\ \xf2\x6c\x68\x87\xc0\x1e\x0e\x76\x2d\x24\xe1\x70\x61\xf7\x84\xb0\ \x3d\x61\x7d\x5e\x7f\x32\x89\x27\x0e\x8b\x87\x41\xa4\xe8\xcb\x29\ \x1b\x6d\xe2\x87\x70\x74\xdd\x65\x98\x6e\xd2\x47\x90\x84\x24\xd4\ \x80\xe9\x11\x7d\xe8\xbd\xe7\x60\x84\x7a\xcf\x58\xdf\x5a\xda\xe8\ \xbf\xdb\xc7\x29\x8c\x38\x63\x45\x05\x17\x29\x49\x3d\x60\x0d\x22\ \x35\x01\x09\x5e\x17\x95\xc5\x74\xe3\x22\x01\xa6\xdd\x56\x5e\xc8\ \xf5\x42\xc2\xb0\xeb\x2e\x7f\x59\xcc\x5f\xce\x2c\x17\x3e\xbb\xee\ \x91\xdc\xb4\x26\xc6\x21\xc9\x29\x74\xac\xf2\x22\xa5\x56\xc1\x4a\ \x9d\x70\x53\x45\x18\x55\xf1\x60\x2d\x9f\xeb\xf9\x0f\x82\xd4\x12\ \x43\xdc\x3e\x0f\x5b\xe7\x52\x0b\x87\x50\x29\x4a\x84\xa6\x32\x3b\ \x92\x06\x1f\xd3\x9d\x3e\x7a\xa7\x33\xfe\xfd\xe9\x33\x46\xbd\xbd\ \x9b\x2e\x4e\xad\x03\xb9\xbb\xfb\x48\x59\x48\x0f\x3e\x58\x26\x7c\ \x21\x27\xaf\x5a\x69\xe3\xb0\xd8\x64\xb5\xeb\xa6\x22\x33\xb2\xf8\ \x42\x00\x10\x86\x0f\x48\x85\x0f\x0d\xb0\x41\x1a\xf8\xa0\xfc\x2e\ \xa7\xe1\xe4\x24\x81\x07\xc9\x77\xec\xe6\xea\xf6\x64\xa8\x43\x65\ \xf9\x9c\x59\x9b\x78\x07\x3b\x55\x91\xe5\xe2\x1d\x55\x31\xd9\xa0\ \xca\xff\x39\x5e\x86\x6c\x9e\x5f\xee\xc5\xa1\x83\xae\x1b\xc5\x7c\ \x87\x73\xbb\xe3\x2d\xdd\x1b\x93\x7e\xf4\xa6\x37\x02\xd3\xf3\xcf\ \x74\x40\x62\xbd\x48\x4e\x6c\xbd\xeb\x98\x01\x1e\x38\x26\x19\xc8\ \x22\x83\x0b\x2f\x0f\x60\x06\x85\xf3\x1f\xd8\xdb\x8d\xc6\x59\xaf\ \x16\x69\x32\xc7\x42\x99\x53\x91\x81\x0f\x10\x3e\xb9\x2b\x3e\x19\ \x50\x3e\x64\xa0\x32\xa9\xd8\x81\x79\x78\x82\x79\xd8\x81\x8e\xa8\ \x1b\x91\x28\x83\xa2\x1a\x01\xd3\x12\x09\x3b\x20\x8e\xba\x31\x00\ \x68\xfb\x8e\x29\x78\xaa\x4d\xb8\x39\x75\xfa\x3e\x79\x42\x24\x3a\ \x61\x0f\x3c\xd9\x24\x3d\xf1\x2a\xaf\x02\xba\x37\x90\x17\x2d\x43\ \x91\x4e\x31\x36\x46\xa9\xae\xee\x79\x37\xb8\x8a\x2e\x1a\xdb\x3f\ \xd3\x93\xc2\x29\xac\xb1\x1a\xc3\xfe\x31\x40\xba\x03\x4f\x0b\x18\ \x83\xd2\x2e\xad\x1b\x1c\xf7\xf3\xae\xb5\xd3\x22\x83\x93\x01\x22\ \x81\x08\x89\x88\xb5\x2c\x32\x83\x16\x81\xb8\xb5\x63\xbb\x58\x31\ \x19\x2f\x08\x83\x0c\x4c\x08\xba\xfb\x40\x9d\x71\x3e\xbe\x23\x89\ \x15\x1b\x89\xba\x99\x87\x3e\x1c\x89\x90\x10\x09\x92\x98\x07\x19\ \x5c\x2d\xa4\xb8\xc1\xaa\x62\x87\xdb\x72\x1e\x48\x1a\x05\x75\x8a\ \x0b\x41\xf9\x41\x4f\x2a\x10\x1e\x18\x05\x7b\x98\x0c\x4e\xb1\x07\ \x7b\xf0\x88\x99\x52\xb9\x3b\x68\x8c\x22\x32\xa2\xe8\x7a\xa8\x35\ \x70\x01\x17\x78\x80\x19\x03\x07\x6d\x50\xbd\x29\x9c\xc2\xfc\xcb\ \x3f\x2b\xec\xb4\x4e\x5b\x42\xbb\x39\xa5\x00\xec\x2e\x52\x80\x8c\ \x83\x61\xac\x16\xe9\xa2\x9b\x78\x02\x30\x08\x15\x03\x64\x43\x09\ \xfc\xba\x26\x43\x19\xce\x70\x06\x2e\xa0\x43\x13\xf8\x80\xe2\x93\ \x0a\x0c\xb4\x32\x83\x2a\x0e\x41\x1c\x89\x07\x20\x89\x15\xa8\x89\ \x6c\xd4\xb1\xe3\xd0\x46\x43\xac\x96\x10\x40\x27\xd8\x4a\x0f\x76\ \x00\x10\x3d\x1b\x17\x3a\x69\x0f\x3d\x21\x0b\xe0\x62\x47\x4d\x99\ \x0f\x4c\xb4\x8b\x79\xf8\x02\x78\xa8\xc7\xef\xd1\x31\x91\x80\xab\ \xe8\x33\x45\x17\xe8\x47\x17\xfe\x88\x84\x53\x74\x01\x72\x20\x07\ \x4e\x20\x87\x19\x4b\x02\xd4\x43\x01\x29\x44\xbd\x84\x84\x3a\x77\ \x73\xb7\xea\xea\x31\x5d\x0a\x40\xcc\x71\x40\x2c\x72\x91\x58\x63\ \x82\x2e\x5a\xb8\x2f\x48\x3b\x8b\x89\x35\xc7\x72\x91\x62\xac\x35\ \x84\xd9\x87\xe0\x13\x3e\x85\x48\x88\x67\x5c\x08\x2e\xd8\x01\x2f\ \x6a\x36\xe6\xe2\x95\x99\xfc\x43\x42\x04\x89\x23\x71\x81\x15\x04\ \xc7\x6a\x49\x83\x09\x23\x47\xab\x5a\xa4\x45\x2a\x97\xa7\xaa\x2d\ \xb1\x12\xb4\x00\xe1\x94\x4c\x34\xb5\xc5\x00\x09\x45\xe1\x95\xe8\ \xb3\xab\x1a\x78\xa8\x53\x64\xa8\x07\x80\x87\x07\x00\xc8\x48\x08\ \xc8\x48\x20\x87\x04\x58\x85\x55\x20\x87\x39\x48\xc8\x84\x6c\x48\ \x58\x74\x48\xd4\x03\x9f\x1c\xeb\x34\x76\xf3\xb1\x2e\xf4\xc2\xff\ \xf9\x2e\x66\x30\x32\x83\x5b\x43\xb2\x3b\x2f\x87\x0b\x15\xdd\x08\ \x49\x17\xd9\x3d\xc8\xb2\x18\xce\xf0\x02\x95\x6c\xc6\xb8\x03\x80\ \x0f\x48\x83\x03\x6a\xb6\x32\x70\x03\xcb\x4a\xa0\x3d\x8c\x3e\x92\ \x70\x01\x77\x18\x80\x94\xdb\xc9\x7f\xb0\x16\x98\x83\x2d\xef\xab\ \x83\xcd\xd4\x8a\x1b\x64\x8a\xa4\x90\x17\x20\xa4\x17\x08\xb9\xa8\ \xb9\xa9\x49\xa7\x94\xa3\xfe\x53\x7c\x00\x52\x34\x82\xd5\x44\x45\ \x37\x48\xc5\xac\xd4\xca\x48\x28\x81\x4e\x30\x81\x29\x00\x04\x4e\ \xb8\x02\x58\x44\xbd\xde\x44\xc8\x87\x02\xce\x15\x6b\xba\x11\x70\ \xb7\x17\x3c\x8c\x22\x29\x23\x52\x3b\xb1\xc7\x20\x8d\xd9\x1b\x2c\ \x1a\xc8\x91\xff\x81\x15\x89\xf3\xcb\xbc\x74\x2c\xdf\x7b\x26\xaf\ \x13\x4c\xe1\xfb\x80\x63\xe0\x02\x95\xfc\x00\x40\xd8\xb5\x1d\x40\ \x02\x7e\x5b\x25\xe8\xdb\x01\x17\x80\x87\xbe\xa3\x19\x9a\x49\x80\ \x34\x20\x8e\x3f\xd8\x49\x6b\xb1\xc1\x45\x24\xc7\xa7\xaa\x83\x16\ \xe0\x4c\x9f\xb4\x0a\xaa\x41\x4a\x1b\x12\x11\x11\xfc\x08\x16\x9b\ \x07\xf0\x99\x87\xd5\x7c\x00\x24\xc0\xca\x07\x80\xcd\x54\x64\xd0\ \x15\x78\x00\xac\x94\xcd\x4e\x98\x82\x84\x98\x82\x55\x98\xba\x24\ \x40\x81\x19\x9b\x03\x3a\x40\x4b\x1b\xb3\x31\xba\x9a\xae\x1b\x23\ \x4e\x76\x2b\xba\x13\xa3\x48\xbe\x32\xa3\x8f\x8a\x3d\xe7\x94\x01\ \x83\xfa\x1f\x8e\xb1\x40\xbf\xac\xce\xb6\x53\xa3\xb4\xf3\x3a\xc2\ \xe4\x4e\x5a\x09\x3e\xc1\xfc\x80\x04\x80\xc9\xe1\x38\x12\xfa\x7a\ \x3e\x78\x48\x80\xce\x82\xa0\x12\x20\x92\x1a\x98\xcf\x45\xb8\xaa\ \xce\xcc\xcc\xcd\xdc\xfe\xcf\xac\x48\xc7\xab\xd8\x93\x0e\xd1\x0c\ \x7b\xbc\x1b\xf0\x69\xae\xa4\x39\xd0\x35\xf8\x85\x06\x75\x83\x0d\ \x5d\x01\x23\x80\xd0\x85\x64\x3a\x6d\xd0\x06\xac\x8c\x04\xdb\x04\ \x80\x29\x30\x81\x4e\x38\x48\xde\xec\xcd\xb1\x34\x3d\xe0\xb4\x31\ \xa9\x24\xd1\x1a\x88\x3f\x8f\xe2\x42\x4c\xc1\x94\xa2\xe3\x25\xeb\ \x30\x23\x52\x48\x2f\x2c\x3a\xb8\xda\x1b\x0e\x8f\x74\x11\xce\x89\ \xb8\x8d\x91\x01\x28\x98\x51\x35\xda\x9c\xea\x2c\x08\x3a\x3c\x86\ \xcb\xb0\x86\xef\x14\x4c\x83\xe0\x83\x8d\x68\xb6\x11\x20\x52\xab\ \x2c\x01\x0d\x50\x49\x40\x18\x00\x71\x62\x52\x70\xdc\x3e\xfc\xb4\ \x4f\xa7\xca\x4f\xa1\xac\x36\xbe\x70\x8a\x1d\x98\x8c\x01\x84\x90\ \x04\xea\x08\x17\xf0\x17\xf0\x79\x00\x08\x8d\xd0\x60\x7d\x00\x0d\ \x5d\x01\x14\x40\x81\x32\x25\x53\x0d\x6d\xcd\xd6\xbc\x02\x72\x58\ \x85\x0b\x5d\x05\x83\x9c\x3a\x23\xd8\x50\x23\xf0\xd0\x28\x14\x3d\ \x1b\x0b\xbd\xa5\x83\x48\xe2\xb4\x2e\xf3\xb9\x55\x89\x19\xc0\x12\ \x43\xd1\x9d\x90\x22\x07\x2c\x46\x2e\x1a\x12\x88\x70\x06\x66\x70\ \xd7\xdd\x1b\x46\xde\x58\x23\x93\x99\xce\x66\x52\x3b\x3e\xb8\xd4\ \x0c\xfc\x80\x17\xfe\x7d\x02\x67\xc0\x40\x3a\x4c\x88\x4f\xbd\xc9\ \x9a\xda\x55\x9c\x49\x00\x09\x08\x83\x04\x80\x87\x9b\xb0\x83\xf9\ \x5c\x05\xab\x6a\x8f\x30\x71\xaa\x45\xd4\x4f\x89\x9d\x30\xab\x39\ \x3e\x52\x28\x0c\x12\xbc\x19\xfa\x4a\xcf\xe8\xfb\x55\x37\xf8\x05\ \x61\x0d\x56\x63\x35\xd6\xd6\xa4\x03\x93\xdd\x50\x3a\x48\xc5\x15\ \x60\x3a\xac\x2c\x48\x83\x0c\xcb\x6b\xa5\x03\x4c\x8b\x42\x1c\x6b\ \xba\xa7\xab\x31\xe2\xbc\x83\x1c\x73\x03\xf3\x11\x12\x24\x30\x94\ \x8b\xe2\x81\x7d\xe0\x81\x87\xf0\x0c\xbc\x28\x35\xf4\xf2\x02\x66\ \x18\x26\x2e\x42\xa9\x88\xf9\x02\x2f\x30\x38\x77\xb5\xda\x09\x8c\ \x38\xc8\xa2\x95\x35\x5a\x29\xc6\x3a\x06\x84\xc8\x40\x13\x90\x01\ \xca\xf8\x82\x7c\x05\xd8\x0f\x28\x81\x8d\xd8\x55\x5d\x4d\x83\x04\ \x20\xb6\x9e\x5a\x55\x56\xed\xc9\x45\x84\x52\xfc\xcc\xcf\xce\xfc\ \xb9\x9b\xf1\x40\x7b\x40\x82\x79\xb8\x99\xc3\xa4\xa3\xf4\x54\xcd\ \x07\x40\x81\x07\x30\x80\x08\x55\x59\x14\x60\x59\x3a\x50\x53\x6d\ \xb0\x56\x3a\xb8\x82\x2b\x88\x04\x3a\x58\xbd\x9e\x4d\x48\x6d\x08\ \xcb\x2b\x98\x83\xcd\xe5\xdc\x0e\xb5\x3a\x1c\x2b\x3d\x6d\x95\xc5\ \x9e\x6d\xae\xfe\x35\x90\x06\x20\xc9\x1b\x11\x19\x8c\xa2\xbd\x0c\ \xc6\x80\x10\xbd\xe2\xa8\x38\xd0\x02\xaf\xab\x9f\x27\xfb\x1b\x9d\ \x08\xc6\xf5\x72\xd7\xaa\x7d\xb2\xeb\x54\xbb\xea\x74\x2c\xde\xf0\ \x82\x1a\x49\x08\x84\xf8\x00\xb2\x93\x83\x27\xb0\x38\x1d\x0d\xdb\ \xf0\xdc\x81\x22\xea\x08\xf2\x2c\x81\xe5\x7b\x82\x00\x63\x1a\x19\ \x44\x3c\xad\x58\xa4\x07\xbb\x2d\x9a\x5b\x21\xb1\xe0\xb2\x2b\xb3\ \x47\x9c\x31\x20\xfa\x3a\x45\x03\x88\x04\x03\x88\x05\x14\x88\x85\ \xc6\x5d\x48\x63\x6d\x5c\x6d\x70\x01\x6d\x88\xdc\x66\x25\x87\x5b\ \x20\x07\x3a\xb8\xba\x9e\x35\x82\x48\xd0\xdc\x0e\x9d\x03\xcd\xfd\ \xdf\x69\x05\x5d\xd0\xd5\xd9\x3c\x75\x3a\x57\xfa\x81\x05\xd6\x02\ \x51\xd4\x0c\x21\x59\x1c\xa3\x1d\x8c\x7d\x40\x11\x14\xcb\x0c\x26\ \xcb\x22\xa7\xed\xa2\x7e\x63\x26\x2c\x2a\x38\xab\x2d\x46\xac\x55\ \x2f\x37\x14\xde\x7c\x8d\x0d\x0f\xb0\x87\xea\x08\x46\x8c\x49\x83\ \x4e\x4d\x88\x84\x08\x03\x26\x70\x94\xe8\x9b\x23\x78\x80\xa2\x15\ \x98\xcf\x12\xf8\xbe\xed\xad\xc1\xa0\x3c\x93\xff\x00\x14\x52\xe0\ \xb2\x06\xe0\x44\x9c\x31\x5f\x5e\x41\x5f\x03\x30\x00\xf6\x55\x53\ \x12\x58\xfe\x53\x63\x65\xdc\xc6\x8d\x5c\x82\xbc\x02\x3d\xb8\x85\ \xaf\x8c\x84\xca\x4d\x48\x3a\x08\x4b\xc7\xd5\x86\xce\x0d\xe0\x56\ \x34\x60\x9c\xad\xb1\x3b\x85\xab\x39\x58\xe0\x1f\x00\x87\xbc\xc1\ \xab\xbd\xf9\xcb\x09\xbe\x88\x1d\x7a\x10\xcd\x60\x5a\x16\x71\x2f\ \x30\x80\xd1\x81\x50\xbb\xf5\x7a\x81\x27\xe3\x4b\x63\xfc\x3a\x10\ \x06\xe1\x95\x32\xdb\x83\x28\x2f\x4f\x29\xcf\x19\x40\x02\x3e\x58\ \x88\xd8\x68\xe4\x0f\xf0\x88\xe8\xe5\xb2\x12\x68\x95\x9d\xc0\x61\ \x56\x8d\x84\xad\xe0\x61\xfc\xc4\x93\xac\x48\x2b\x1e\xb8\x19\x8d\ \xc0\x15\x5c\xb9\xa9\xc3\x75\x01\xf4\x55\x53\xf8\x8d\x5c\x6d\x50\ \xdc\xfa\x75\xe5\x2a\xbe\xdf\x67\xbd\xd0\xdd\x6c\x3a\xc5\xe5\xca\ \x6b\x9d\x83\x2f\xfe\x5f\x7c\x13\xbd\x02\x26\x63\x6d\x55\xc5\x39\ \xd8\x06\x35\x96\x06\x86\xc2\x1b\xc7\x98\x91\x64\x8a\x0c\xc8\x50\ \x0c\x19\x89\x3d\xc7\xb1\x86\x99\x82\xcb\x01\x32\x40\x77\x05\x64\ \x3b\x8e\x40\xab\xd5\xe6\x63\x78\x57\x2f\xf8\xda\xd9\x38\x08\x2f\ \x08\x1c\x46\x89\x83\x22\x81\x82\x46\x76\xe4\x84\x00\x04\x26\x78\ \x5e\xfa\x4a\x83\x0a\xb2\x8e\x4b\x36\xc4\x10\x88\x84\x3a\x80\xaa\ \x57\xfe\xbd\x2a\xa1\x14\x34\x4d\x61\x85\x27\xa8\x29\x22\x8d\x3e\ \xf5\x8c\xd0\x53\x8e\x04\x12\x70\x62\x14\xa0\x5f\x12\xb8\x02\x35\ \x85\xe5\x66\x8d\xdc\x5b\xd0\x83\x2b\xb8\x85\x2b\x9e\x82\x0b\xcd\ \x5f\xfd\x23\xc8\x6b\xb5\xd6\x39\x08\xcb\xcc\x6d\x45\xd3\xeb\x34\ \xcb\x25\x4b\x57\x02\x07\x34\x46\x63\x35\x6e\xe0\x06\x2e\x98\x35\ \x00\x83\x49\xf8\x18\xdf\xd8\x90\x0f\x31\x15\x8d\x49\xbb\x85\x79\ \x88\xcd\xe0\x3d\x78\x45\x46\x22\xd3\x5d\xb0\xdb\x66\x91\xea\x5d\ \x1a\x20\xac\x94\x64\x03\x2f\x40\x82\x27\x12\xd4\x19\x80\x82\x39\ \x3c\x88\xb3\x75\xbe\x9a\xca\x91\x78\xae\x4c\x97\x9b\xb9\xfa\x84\ \xad\x30\x51\x24\x00\x29\x10\x88\x90\xe4\x12\x88\xbe\x91\x3d\x50\ \xc3\x95\xdc\x85\x66\xe8\x88\x86\x5c\x2b\xbe\x85\x2c\x78\x68\x89\ \xae\xe2\x55\x00\x80\xaf\xf4\xd0\xa6\xab\x01\x3a\xe0\xca\x19\xab\ \x56\x82\x24\x48\x4e\x98\x56\x1a\xab\x5c\x9c\x25\xe9\x92\xbe\xb4\ \xcd\xfd\x01\x34\x86\x31\xf2\x59\x83\x20\x81\x02\x26\x80\x02\x1f\ \x31\x15\x8b\x18\x88\x66\x7a\xaf\xc5\x2e\x4f\x39\x90\x5d\xc6\xc2\ \x48\x2f\xb0\x01\x79\xa5\x88\x2b\x7a\xb2\x82\x63\x03\x04\x3c\x86\ \xfe\xb0\x1b\xa3\x63\xa0\x81\x63\x50\x95\xe2\x3d\x86\x1c\xa1\x18\ \x7e\x7b\x02\x19\xd8\x4e\x80\x75\xc6\x34\x70\x99\xff\xb2\x64\xc3\ \x53\x2d\x97\x53\x24\x8b\xe5\xe4\x45\x2a\x2b\x5f\xaa\x47\x1a\x3e\ \xc5\xb0\x46\x45\x86\xae\xdf\x2c\x88\xe8\xfa\x9d\xe8\x5b\x58\x6b\ \xe5\x96\x68\x59\x26\x87\x24\xc8\xc2\x26\xa8\x01\x23\x20\xc8\x48\ \x98\x31\x3a\xd8\x5c\xbc\x0e\xcb\xbd\x06\x87\xca\xbd\x83\x10\x05\ \x87\xc1\x56\xe3\x92\x16\xe6\x61\x5e\xe3\xc3\xd6\x82\xd3\x95\x81\ \x49\x90\x54\xce\x30\x95\x25\xf2\xba\x15\x89\x35\x95\x71\xb5\x33\ \x14\x49\xf7\x8a\xb8\x51\x38\x15\xae\x6d\xda\x82\xf3\x80\x17\x08\ \xed\xff\x1e\xa9\x31\x62\x06\xd3\x06\xdb\xd9\xf0\x80\xdb\x85\x08\ \x48\xb9\xc0\x7f\x05\xd8\x47\x4e\x03\xf3\x7a\x9d\x58\x98\x4f\x78\ \xe0\x4c\x1b\x84\xd8\xcd\x0c\x37\x78\x99\x81\x7e\xd6\x55\x5e\x41\ \x45\xc2\x7d\x00\x96\x25\x6e\xb4\x66\xee\x2c\x98\xe8\x57\x46\xee\ \x0a\x5d\x05\xfd\xcd\x42\xfe\xa5\x62\x6b\x35\x82\x66\xe5\xdc\xed\ \xa6\x3a\x8e\xce\xbf\x26\xb0\x5c\x37\x28\xe9\x61\x26\x6c\xce\x1d\ \x66\x94\x3e\xec\xd3\x9d\x04\xc5\xb6\x06\x69\x68\x6c\x93\xf1\xfe\ \x3a\x16\x31\x03\xdd\x80\x02\x06\x6c\xc0\xb4\xfb\xba\x36\x44\x99\ \xcd\xee\x3d\x3e\x36\x38\x01\x1f\x70\x05\xe4\x66\xc2\x52\xc9\x83\ \x18\xbb\x0e\x61\xe6\xc1\x80\x87\x7d\x70\xf0\x07\x2f\x4c\x1b\x9e\ \xf0\x0a\xe7\xb0\xed\x2d\x47\x45\xe2\xb0\xb2\xea\xa8\x9a\xba\x29\ \x17\xf8\x05\x17\x38\xd6\xc4\x2d\xeb\xe4\x56\x6b\x3e\x7f\xe5\x89\ \x76\xeb\x55\xb8\x05\x23\xb8\x42\xa7\xe3\x62\x72\xb0\x37\xec\x16\ \xe0\xec\x06\xe0\x39\xe0\x04\xbd\x4e\x02\x1d\x4f\xe0\xf0\xde\x86\ \x6d\xd8\x5c\x4c\xb3\xf4\x20\x2f\xe6\xf4\x4e\x6c\x26\x60\xef\x25\ \x52\x46\x03\xd4\x22\x3f\x8e\x66\x9d\xa8\x87\xb3\xc3\x5a\x28\x7b\ \xa9\x4a\x7d\x38\xab\x15\x6d\x2d\x1f\x23\xe2\x4d\xc9\x0f\x50\x26\ \x3a\x0e\x1c\x7e\xcb\x0e\x7b\x40\xf3\x0c\x64\x82\x79\x48\x51\x9c\ \xa0\x70\x56\x75\x81\xcd\xd4\xcf\xa7\x02\x4a\x0e\x0b\xcd\x0e\x21\ \x41\x6b\x3a\xc5\x91\xfd\xd5\xc4\x45\xe8\x2b\x40\x71\x41\x4f\xee\ \x14\xff\x73\xb7\xae\xe8\x48\xb8\x42\xcb\xe5\xe8\xdd\xbc\xee\x00\ \x06\xf7\xed\xa6\x83\x6d\x88\x56\xb1\x34\xe0\x7b\x03\x87\x4a\x1f\ \xef\xc0\xae\xf4\x49\xf8\x81\xd3\x4d\xef\x22\x5f\xc3\xc5\xfe\x4e\ \x6f\x65\x3c\xc0\xcf\x6e\x72\x28\x2f\x03\x52\x90\x72\xcb\xe6\x3d\ \xc8\x7e\x38\x3b\x66\x86\x2d\x1f\x23\x92\xf2\xf2\xd7\x3e\xde\x87\ \xf0\x31\xeb\x78\x82\x39\xdc\x75\x00\x90\x00\x3e\x98\x6c\xeb\x08\ \xf6\x79\x5e\x85\xb5\xd8\xe4\x3a\xf0\x2a\x4f\x12\x14\xcf\xf0\x67\ \x8f\x15\xc8\x25\x5e\x81\x62\xd5\x73\x13\x9f\x68\x45\x10\x74\x3a\ \x50\xf9\x2b\x80\xdc\x2b\x7e\xd3\x4e\x80\xee\xfe\x9b\x6e\x1a\xa7\ \xd6\xc7\x05\xe3\xcd\xc5\xee\x47\xe7\x84\xfc\x73\xba\x4a\xab\x37\ \xf1\xc6\xb4\x1f\x68\xf7\x6d\x00\x12\x70\x40\x26\x33\x58\xc3\x49\ \x30\x9f\x5a\x81\x82\x22\xfb\x6c\x66\x70\x86\xea\x2d\xa3\x88\xa8\ \xd1\xdf\x4d\x23\x47\xbd\xce\x16\x09\x70\x92\x12\xa9\xfd\x19\xa9\ \xd7\x2e\x4c\x6b\x98\x18\xc4\xb8\x8e\x27\x60\xc6\x87\x37\x81\x30\ \xe0\x03\x33\xdb\x89\x8a\x9f\xe7\xf0\x30\x8b\xdd\x0a\x37\x76\x3c\ \x42\xc6\xd8\x55\x81\x74\x01\x12\x30\x56\x92\x27\xf9\x56\xe6\xf3\ \x2b\x66\xee\x95\x5f\xf9\xaf\x6c\x71\x71\xd2\x92\x3b\xa0\x6e\x83\ \xf4\x4d\x70\x1f\xe0\x9c\x8f\xd6\xee\x0e\x51\x79\x0b\xef\x05\xbe\ \xb4\x18\x13\xfa\x49\x70\xf7\x20\xd9\x86\x30\x62\x03\xfe\x1a\xa0\ \xf7\x83\x69\xda\xb9\xa4\x01\x30\x10\x1c\x85\xa9\xd4\x01\x8a\x95\ \xd3\xef\x3d\x91\xd4\xdd\xd0\x36\xed\x2d\x37\x70\xd8\xb6\x86\x38\ \x30\xf5\x6f\xd2\x82\x33\xdf\x75\x09\x50\x52\x8a\x9f\x6a\x78\x80\ \x9a\x99\xeb\x39\xad\x50\x5a\x5f\x0a\x68\x3b\x07\x48\x25\xe6\xfb\ \xbe\x6f\xe5\x2a\x36\xf1\xc8\x55\x79\x0f\xa5\x83\x2b\x06\xcb\x24\ \xb0\x0e\xc4\x27\x07\x39\xd5\xe8\x9a\x05\x60\xec\xe6\x5c\x4e\x00\ \x84\x55\xd8\x06\xde\x8c\xba\x92\xa6\x7c\x18\x0b\x6f\x28\xd8\x06\ \x77\x97\x06\x28\x98\x04\xa4\x9f\x77\xf7\xce\x08\xa7\xff\xec\x17\ \x05\xc6\x63\xa2\x95\xfd\x4e\xfd\xcd\x5e\x23\x7f\x2f\xc6\xce\x2e\ \x70\x91\x02\x08\x0f\x02\x69\xf0\xf1\x60\x02\x00\xc2\x84\x61\xa0\ \xc4\x91\x33\x23\x4e\x99\x19\xf5\xca\x3c\xd9\x67\x8d\xcf\x87\x30\ \x09\x37\x6e\x34\xc1\x65\x47\x19\x39\x22\x45\x02\xf9\x67\xf2\x24\ \xca\x94\x2a\x57\x86\xb0\xb7\xe9\xe5\xa6\x5c\x2d\x58\xc5\xc9\x05\ \x87\x54\x9c\x7a\x22\x9b\x8c\x80\x07\xcf\x85\x8b\x5f\xbf\x0c\x18\ \xd0\x86\x62\x05\xd2\x24\x2b\x50\x30\xa5\xa3\xed\x8a\x36\x3a\x59\ \x6e\xdd\xba\x42\xe7\x2a\xd6\x5b\xab\x56\x91\xab\xfe\xd1\xa4\x89\ \x9c\xaf\x77\x50\x90\xe3\x44\x6e\x8e\x91\x24\x46\xe8\xcc\xa1\x03\ \x6e\xed\x9c\xb3\x73\x38\xad\x02\xc4\xc9\x48\x5a\xbc\x78\xc1\x81\ \xdb\xb6\xed\x07\x5f\x69\xd2\xb6\x4d\x9a\x04\xe5\x30\x13\x33\x6c\ \xcc\xd0\x90\x01\xe6\x31\x18\x19\xcc\xd8\x50\x66\x43\x63\xdf\x0c\ \x39\x65\xbe\x58\x93\x61\x0d\x8c\xb3\xd0\xa3\x9c\x59\xb3\x36\xda\ \x99\x8c\xd4\x5e\x56\xd3\xa0\xc1\xac\xb5\x6b\x66\xcc\x8e\xcd\x9e\ \x4d\x9b\x0f\x8d\x0f\x1c\x11\x9a\x60\xe8\xf0\xcb\x97\x27\x14\x81\ \x07\xff\x02\x45\xe3\xee\x8e\x7c\xe0\x81\x1d\x59\x72\x25\xf4\xe8\ \x27\x43\xc0\x7b\x99\x2b\xe6\xcc\x16\xd7\x79\xf0\xc8\xec\x10\x89\ \x8b\x12\x40\x7f\xb9\x20\xca\x94\xe9\x0a\xa5\x47\x51\x68\x6b\x8f\ \x82\xce\x95\xf8\x56\xb1\x5e\xa5\x0b\x60\x15\x8a\x1a\x77\xee\x7c\ \xad\x61\x84\xdc\x2d\xe4\xe0\xa5\x96\x11\x73\xbc\x65\x04\x38\x71\ \xcd\x31\x57\x5d\x9c\xa0\xb5\x97\x11\x6b\xac\x31\xc7\x0f\x7f\x49\ \xb3\x86\x60\x86\x19\xd6\x19\x0d\x8a\x99\xe1\xc5\x67\x60\x58\xe4\ \xc5\x0b\x95\xbd\x20\xc3\x13\x33\xcc\xc0\x59\x6a\x90\x41\x36\x9a\ \x35\xa1\xa5\x26\xc3\x6a\x5e\xbc\x26\xdb\x8d\xfe\xb2\xd1\xe6\x41\ \x6d\xc7\x1c\x43\xc3\x31\x07\xed\x66\x02\x1f\x21\x95\xf1\xd9\x17\ \x12\xa9\xb8\xd3\x13\x7c\x24\xb7\x5b\x1a\x4f\x8c\x24\xc7\x73\xd2\ \x59\x99\x52\x08\x23\xb0\xa2\xdd\x26\x3c\xe4\x42\x53\x2e\x3c\x90\ \xc2\x43\x44\x65\xcc\x03\x4f\x09\x69\x44\x02\x0f\x79\x06\x3c\x80\ \x1e\x52\x48\x9d\x87\x42\x2c\x74\x34\x15\x1f\x7d\x57\xa1\x70\xcb\ \x14\x00\x4c\x41\x4e\x12\x35\x08\xea\x1f\x1d\x65\x09\x88\x02\x81\ \x74\xac\x05\x97\x83\x65\x01\x62\xd7\x83\x6b\xbc\xc5\x57\x82\x15\ \x0a\x26\x18\x14\x85\xc9\x00\x05\x8d\x2f\xbc\xc0\x0c\x88\x60\x68\ \x61\x11\x0d\x95\xb1\xe1\x85\x16\x2a\x3e\x61\xcd\x6a\x9e\x3d\xb6\ \x0f\xac\xa6\x85\x86\x5a\x8d\x5e\xb4\x86\x23\xae\xb3\x09\x44\x1b\ \xaf\x7c\x04\x99\x9c\x09\x5e\xa4\xf8\x84\x33\x60\x34\x34\xa5\x48\ \x33\xa4\x81\xdc\x93\x08\x7d\xb0\x43\x73\x54\x5e\x39\xed\x74\x59\ \x48\x54\x93\x97\x71\xb4\xc0\xdd\x98\xf3\xf0\x70\xe6\x0e\x25\x88\ \x57\x5e\x24\x06\xfc\x82\xc2\x29\x47\xa5\x17\x67\x53\xe7\xe5\x99\ \xa7\x56\x7e\x02\xba\x5f\x0d\x49\xb0\x45\x4e\x27\xe4\x28\x9a\xd7\ \x5e\x0b\x92\x63\x28\x5d\x90\xea\x45\x29\xfe\x82\xe0\xfc\x70\xf0\ \xa5\x50\x30\xc1\x84\x0c\xa1\xd1\xe0\x69\x63\x22\xc2\x2a\x83\x62\ \x94\x99\x61\x6c\x1c\x4f\x80\xd1\x1a\x13\xa4\x89\xf8\xc5\x3e\xa3\ \xc4\x28\x63\xad\xb6\xde\x9a\xab\x07\x2f\xd0\xc6\x0c\x6e\xb8\x79\ \xf1\xeb\x90\x28\x36\x11\xc7\x3e\x49\x22\x9b\xec\x0e\x42\x36\x8b\ \x10\x17\x5f\x34\xf7\x07\xb5\x41\x87\xd0\x44\x3d\x60\x82\x19\x87\ \x98\xa4\xc0\xf3\x05\x3c\xe1\xa6\x51\x02\x51\x2e\x90\x50\xd4\x52\ \x71\x2a\x25\xe7\x9c\x4d\xe9\x49\x1f\x0a\x57\xac\x22\x2f\x7f\x72\ \x10\x8a\xaf\x59\x68\xa9\xe5\x46\xbf\x73\x71\xb2\xf6\xda\xab\x38\ \xb8\x57\x82\x6f\x49\x88\xe9\x0f\xd2\x80\xc1\x69\x6a\x31\x32\x01\ \xb1\x0c\xfb\x68\xf1\x45\x64\x25\xb2\xf1\x82\x17\xa4\x3c\x11\xc7\ \x17\x14\x37\xf6\x19\xac\xb0\x82\x86\x9a\x6a\x25\xc7\xf6\x29\x8e\ \xbb\xce\x46\xd0\x6a\xbe\xea\xbc\xd1\xb3\x21\xad\x88\x44\x19\x5f\ \xcd\x00\x56\x13\x65\xc0\xe3\xe4\xce\x1b\xf1\x61\x4f\x66\x77\x64\ \x11\xf4\xb4\x43\xcb\x51\x74\xd1\x35\x85\xf9\x85\x3d\x3e\xed\x90\ \x46\x1a\x09\x90\x50\x1e\x09\x91\x90\xf0\x66\xd5\x2b\xd4\x90\xde\ \xd5\xe7\x25\xa1\xb5\x9e\x46\xa0\x60\xfe\x84\xd7\x53\x4c\x61\xc4\ \x48\x4d\xf8\xa7\x4d\x59\x57\xe8\x85\x17\xda\x09\x02\xec\xe0\xda\ \xdb\x1c\x38\xa1\x81\x12\xba\x81\xa1\x34\x50\x48\x63\x0d\xde\x9e\ \x39\xe3\x85\x19\xa0\x5a\xf3\x37\x67\xa5\x0e\xde\x58\x71\x60\x30\ \xb1\x78\xe3\x8d\x43\x3e\x63\xad\x60\xc3\x8c\x17\xf0\xa8\x36\x3d\ \xfa\xd1\x31\xf8\xb0\x1a\x83\x24\xe7\x03\x60\xc8\x4c\x13\x9e\x30\ \xaa\x9a\xd9\xa3\x33\x7c\xb8\x60\xea\x76\xc3\x05\x78\xe8\xe4\x75\ \xb0\xb3\x52\x08\x24\x52\x8f\x11\xd6\xee\x09\x5f\xb0\x45\xd3\x5c\ \x30\x80\x04\x4c\x41\x4d\x52\x13\x5e\x24\xb4\x11\x8b\xe2\xa5\xe7\ \x78\x4b\xc9\xda\x7b\xda\xf5\x3c\x7b\x6d\x65\x15\x49\x98\x92\xf5\ \xfe\xa3\xbd\xed\x15\xc8\x7b\xdb\xe0\xc4\x11\xd9\xd6\x16\x23\x74\ \xaf\x2f\xe5\x73\x03\x12\xd6\x00\x86\x1f\x40\xa1\x34\x90\x2b\x8d\ \x64\x22\xf6\x05\x1e\x68\xc1\x19\x93\x79\x01\x0d\xbc\xf0\x31\x2d\ \xd0\xc8\x31\x13\x14\x11\x18\x62\x94\x1a\x92\xd9\x2a\x47\x03\x4c\ \x99\x8e\xe2\xc8\x07\x96\x79\xe1\x82\xba\x01\x16\x14\xbe\x30\x82\ \x55\x61\xe4\x03\x1f\x30\x01\xb3\x32\x98\x9c\xe5\xcc\xc0\x83\x1f\ \x8c\x4e\x08\xee\x30\xc2\x91\xcc\xfe\xe0\x09\x67\xf2\x89\x0a\x4b\ \xd0\x09\x09\x74\xa2\x04\xc1\x13\x5e\xf0\xd0\xa3\xae\xa4\xa8\x67\ \x3d\xee\x62\xca\x80\x96\xa7\x87\x55\x4c\xc1\x05\x77\xd8\x49\x13\ \xee\x00\x3d\xb3\xe1\x65\x41\xfe\xda\x06\x39\x60\xc9\xb6\xb7\xa1\ \xed\x7c\x14\xaa\xdb\x1a\x90\x00\x45\x69\x4c\xa2\x63\x69\x8c\xd1\ \x63\x64\xd0\x1a\x28\x90\x02\x09\x4f\x20\x05\x89\xc0\xe8\x05\x28\ \xd4\x8c\x45\x4c\x60\xa6\x16\x1e\xf3\x19\x35\xae\x91\x46\xac\x71\ \xe3\xa7\x7c\xf4\x29\x82\x70\x93\x9b\x3e\xda\x1c\x00\x84\x64\x82\ \x0f\xf0\x81\x09\x18\x01\xa7\x20\x9b\x15\x06\x3e\xf0\xc0\x90\x87\ \x64\x89\x01\x32\xa3\x93\x26\x34\xd2\x27\x4d\x1b\x40\x9a\x3a\xd1\ \x09\x29\x24\x20\x12\x8b\x88\x04\x39\xa6\x66\x00\x74\x6d\xf2\x6a\ \xea\x59\x9e\x0e\x99\xb2\xbc\x24\x24\x81\x1c\x7d\x5a\x85\x11\xf8\ \xb3\x1f\xb5\x90\x43\x1b\x79\x51\x54\x24\x14\xe4\xa0\x39\x24\x71\ \xa3\x4c\xc4\x8b\xa4\x6e\x79\xa1\x5d\x0a\x13\x0a\x22\x2a\x8d\x88\ \x84\x29\xc6\xe0\x68\xec\x61\x61\x2c\x4d\xcd\x2c\x92\x37\x34\x96\ \x86\x9a\x32\xa2\x11\x6c\x04\x98\xab\xcb\x01\xa9\x35\x99\x3b\x06\ \x1b\x36\x67\x82\xa1\x76\x24\xfe\x9d\x46\x45\xc8\x3a\x15\xf1\x4e\ \xe9\x84\x00\x22\xf4\x9c\xc1\x08\x90\xf0\xc8\xf0\xa4\x49\x0a\x80\ \xe8\xc4\x22\xd4\x14\xbc\xe0\x19\x60\x86\x70\xb2\x5a\xd5\x10\x35\ \xa7\xe5\xa5\x85\xa1\x57\xe8\x13\x00\x00\x15\x28\xb3\xfe\x8b\x0e\ \x64\x4d\xd0\x82\xb6\xe1\xca\x05\xad\xed\x41\x1f\x95\x94\xc1\xb6\ \x71\x21\x24\x20\x81\x8c\x8d\x69\xdc\xc7\x58\xd5\xb7\x38\x34\xd2\ \x19\xae\x01\x51\xb1\x00\xeb\xb1\x9a\xce\x6a\x46\x6c\x94\x4d\x18\ \xdb\x08\x59\xc8\xc2\x06\x37\x0c\x33\xa7\x41\x84\x4a\xd4\xa3\x72\ \x56\x21\x09\x08\xc1\x52\xa1\x13\x02\x63\x96\xa1\x0c\x7b\x7c\xe4\ \x3d\xd3\xa0\xcf\x4e\xf4\xee\x9f\x5b\x25\x4a\x2c\xd6\x13\xd6\xa4\ \x2c\x05\xa1\x6e\x7d\x1e\x28\x97\xe7\x50\x00\x84\xe1\x16\xf9\x61\ \x28\xf4\xcc\x52\x56\xbc\xb8\x65\xae\xae\xdc\xa8\x5d\x25\x64\x30\ \x84\x81\x21\x97\x2c\xea\x1b\xc8\xf6\x41\x0a\xc0\x79\xe6\x70\xf5\ \x48\x5c\x18\xd3\xe8\x8c\x51\xc4\xd4\x22\xfb\x48\x63\x6a\xda\x57\ \x4d\xd6\xb8\x26\xb2\x26\xcb\x29\x7a\xcb\x29\x03\x73\x06\x75\x48\ \xe8\xec\x6c\x3a\xf9\x00\xda\xd0\xaa\x64\xb4\x7c\x7d\x82\x54\xa5\ \x3a\x0f\xaa\x26\x40\x03\xfe\x53\xb8\x6a\x1a\xb6\x5a\xae\xa2\x0c\ \x34\x5d\xbf\x08\xab\x41\x71\xa8\x16\x50\x76\x8d\x94\x5c\xd1\xcf\ \x1d\xfc\x73\x05\x7d\x31\x14\xb8\xdb\xe3\xcb\x5c\xe5\x2a\xb7\x08\ \x2d\x17\x61\xd2\xd0\x82\x16\xfa\x0a\x1a\x30\x10\x27\x38\xfb\x70\ \xc6\x3e\x1a\xb2\xa2\xd5\x58\xe3\xc4\x20\xea\x6e\xb1\xfe\x67\x4d\ \x26\x78\xc1\x9a\xe7\x35\x6f\x00\x7d\x9a\xb9\x85\x95\x93\x09\x41\ \x02\xe7\x50\x81\xfc\x5e\xf8\x72\xe4\x03\xf3\xa5\x2f\x4a\x46\x8b\ \x5a\x78\xcc\xe3\x01\xf0\xc0\x67\x1a\x16\xc1\xc2\x7d\x76\xc2\x9f\ \xc2\x23\x8a\xb9\x0e\x7c\xe0\x39\x85\x75\xac\x62\x7d\x8f\xbd\xbc\ \xb6\x95\x39\xd4\x20\x2c\xfe\xf9\x57\x5a\x04\x45\xa0\xed\x29\xca\ \xb8\x0b\x02\x07\x5e\x0f\xc6\x5c\xbb\x6d\x11\x70\xfb\x78\xc2\x13\ \x78\x70\x38\x90\xf1\x00\x2c\x33\x00\x03\x88\x40\xb6\x9a\x9a\x99\ \xf0\x34\x33\xa2\x11\x8d\xbd\x90\xe8\x92\xb5\xaa\x46\x65\xcc\x31\ \x37\x7d\xe5\x81\xf6\x26\x24\xc8\x44\x86\x6f\x18\x8e\x8c\x64\x93\ \x84\xe0\x01\x48\x40\x53\x09\x76\xf0\x80\x79\xec\x97\x77\x09\x50\ \xad\x3e\x17\x61\x49\xe1\x95\x47\x28\x28\x38\xf0\x03\x7e\xf1\x80\ \x58\xbc\x49\xa1\x38\xfe\xcc\xe1\x6d\xa3\x07\x80\x5b\x18\xe1\x2b\ \x0d\xe5\x8a\x5b\xd5\x4c\x44\x08\x65\x98\x42\xc6\x96\xb3\xdd\xd6\ \xd7\x62\x3c\xf3\x59\x45\x39\x41\x9c\x77\xe2\x40\x1a\x1e\x7c\xc1\ \xb0\xce\xf8\x42\xc6\x4e\x4c\x2b\xd6\xec\xef\x35\x38\x06\xa0\x6a\ \xaa\x19\x39\x5b\xe1\x86\x06\x80\x30\xc3\x8f\x39\x62\xe9\x4a\x87\ \xf3\xd2\xa9\x33\x81\xa6\x37\x1d\x02\x45\x34\xad\x77\x69\xf8\xc9\ \x93\x23\x11\xe5\x04\x48\x81\xb5\xff\x54\xf5\xd4\x84\x72\x0a\xa1\ \xc8\xfa\x5c\x45\x39\xcf\x0d\xbf\x8c\xeb\xa6\x7c\x0d\x21\x9d\x40\ \x14\xf6\xb8\x12\xca\x35\xb3\x39\x6d\x7e\xb9\xf8\x5f\xea\x06\x62\ \xbb\x3d\x26\x49\x8d\xcc\x09\x23\x41\x2e\x07\x8d\xf1\x80\x66\xab\ \x61\x69\xb5\x21\x57\xde\xd8\xc0\xa6\xc6\x0d\x9b\xd5\x4d\x5f\x2e\ \x23\x1d\x2b\x9a\xc7\x99\xed\x48\x90\x0f\xa2\x73\x77\xab\x7b\x48\ \xf1\x46\x72\x08\x46\xeb\x02\xde\x89\xc7\x1d\x40\x19\x80\xbe\xa5\ \xbc\x88\x80\xfa\x93\xab\x42\x59\xc1\xd3\x0b\xfe\x80\x81\x72\xf9\ \x28\x0c\xb5\x93\x9d\x98\xa2\x6b\xde\xe6\x8b\x2e\xc2\x1d\x2e\x11\ \xf7\x75\xe1\x04\x61\xdc\x42\x20\xd6\x42\x8b\xf7\xd1\x1d\x87\x8c\ \x0e\x59\xcd\x09\xfe\xce\x0c\x90\xd0\xa2\x3d\xef\xe3\xd1\xae\x89\ \x1f\x63\x5e\xe3\xf2\x35\x8e\xc6\xd0\x8e\xc5\xa9\x79\x1b\xc3\x04\ \x40\x50\xba\xd2\x39\xe7\x0d\xcf\x05\x39\x85\x9f\x87\x36\xe8\x68\ \x72\xc1\x4f\x90\x8e\x74\x4b\x06\x58\xd5\xae\xc5\xa4\xb9\xa0\x0e\ \xf5\x58\x4f\x3d\x16\x03\x8d\xad\x6c\x11\x75\xc3\x3c\x91\x63\x23\ \x53\x70\x70\x02\xb4\x27\x76\xb7\x0c\x7b\x40\x79\xc1\xb0\x48\xcf\ \xfe\xaa\xe0\x1c\x4b\x27\x37\x9b\x9d\x8a\xca\x40\x0a\x11\xe9\xb9\ \x22\xef\x0b\x23\xcb\x61\xc3\x30\xc7\xc2\x1c\x72\xad\x02\x60\x37\ \x7d\x75\x0c\x33\xdc\x1c\xe7\xeb\x4e\xfc\xbb\xc3\xc9\xf8\xa5\x06\ \xfd\xd4\x90\x27\x4f\x94\xb3\x9f\x55\xac\x96\x6b\x00\x24\xb0\x64\ \xe6\x57\x30\xf0\x58\xa3\xc0\x4d\x74\x92\x6d\x6d\x19\xda\x2e\xac\ \x7b\x6d\x23\xab\x30\x81\xdb\x5c\x50\xdc\x2b\x28\x08\x2d\x6d\xde\ \x5e\x85\x93\xe0\x86\xf3\x29\x77\xe3\xa2\xda\xa2\x44\xdc\x1e\xb2\ \xe8\x04\xe2\xc4\x41\xc6\x80\x0c\xa0\xb1\x9c\xb7\xb5\x4a\x8c\x40\ \x01\x6a\x14\x9f\xf1\x1d\x1f\x4e\xf5\x88\x40\xdc\x9c\x90\x11\xd5\ \x7b\x0d\x19\x7c\x05\xd9\xf4\x51\x9f\x9a\xb0\x89\x0a\x45\x42\x09\ \x64\x15\x09\xfe\x62\x95\x6b\x71\x95\xb9\x9c\xc2\x0a\xcc\xc3\x52\ \x14\xdc\xab\x85\x9e\x27\x25\x1c\x56\x74\xcd\x2d\x98\xde\xe9\x25\ \x80\xa2\x68\x83\x11\x9d\xc5\x5b\xb8\x05\x5b\xe8\xc5\xfe\x05\xca\ \x08\x24\x41\x54\x45\x11\x88\x7d\x0c\x61\x09\xe0\xcd\x3c\xd5\xcc\ \x7c\xd7\xef\xb5\xdc\xde\xd5\x54\x03\x1e\xda\xa1\xd5\x0a\xf2\xcd\ \x11\x90\xa0\xdb\xf3\x21\xde\x66\x69\x60\xe2\xed\xdc\x50\x75\xe0\ \x3b\xcd\xdb\x3c\x90\x47\x79\x0c\x80\x94\x49\xc1\xbf\x75\x42\x02\ \x2c\x02\xc0\x79\xdf\xd3\x21\x05\xac\xad\xc0\xac\xd5\x1a\x53\xa4\ \xcb\xad\x2d\x9c\x1e\xa0\x55\x42\x48\xdc\x5b\xe8\xa0\xa1\xc8\x05\ \x38\xb8\x05\x5f\x20\x08\xf7\xb8\x41\x12\x94\xc1\x7e\x94\x96\x04\ \x01\x07\x99\xd8\x9e\x12\xde\xcc\x75\x8d\x42\x8d\xb4\x46\xde\x30\ \xd6\xdf\x55\xe1\xb8\x01\x50\xab\xb4\xc6\xf2\xcd\xd1\x31\x34\x5f\ \x38\xad\xdb\xce\x0d\xc9\x17\xf2\x06\x07\x6e\x5a\x92\x29\xc2\xa8\ \xfd\x02\x3c\x18\xc0\x0a\x4d\xc1\x3e\x95\xa0\x1b\xba\xe1\x80\x45\ \x9d\xe6\x9d\xcb\x9b\x9c\x0b\x1e\xc6\x56\x9d\x7c\x92\x53\xd8\xc9\ \x59\x99\x1e\x57\x68\xc3\x1c\xb8\x80\x81\xfc\x8b\x5c\xb9\xd2\x20\ \xce\x55\xfe\x21\xae\xc1\xfe\x8d\x40\xe8\x3c\xd5\xe1\x88\x5c\x24\ \x0e\x20\xcd\x94\xd1\x1a\x4d\xd3\x4d\xd5\x48\xa2\x8d\x9b\x15\x6e\ \x22\x8f\x11\x04\xf3\x3d\x5f\xce\xe9\x5c\x29\x42\x9f\xe1\xb5\x1b\ \x51\x89\xe1\x21\xcd\x1b\x9b\x08\x05\x1a\xaa\x56\xbf\x49\x19\x95\ \xb5\xe1\x08\x46\x02\xc1\x21\x05\x0b\xa2\x00\xe7\x9d\x0b\x53\x80\ \x1e\xc2\xb9\x4b\x7c\x44\xc5\x30\x6e\x44\x27\x2c\x88\x31\x1a\xe3\ \xbf\x34\xe4\x59\xec\x8b\x71\xc1\x19\x34\x42\x63\x69\x2d\xc9\x35\ \x2a\xe1\x0c\x50\x1b\x29\x28\x96\x76\xd9\x98\xa2\x09\x5f\xc9\x78\ \xa4\x36\xae\x97\xc9\xec\x0f\x1f\x1c\x1e\x2a\x62\xe0\x28\x7a\xe1\ \x06\x76\xe1\x4a\xaa\xe2\x74\x28\xc2\x2f\xb8\x83\x2b\x92\x40\x94\ \xe9\x93\xf6\x61\x95\x09\x5e\x19\x2e\x9e\x0b\xd4\xbd\x9a\x40\x66\ \xcd\xe8\x69\x03\x09\xe8\x81\x7c\xf0\x49\x1f\x92\xc3\x15\x20\xe3\ \x59\x64\x14\xc0\xf0\x20\x82\xb0\xc5\x82\x18\x62\x2e\xe5\xd2\x7d\ \x09\x07\x24\x5e\xe4\x94\x8c\xd0\x43\x20\xe0\xff\xd4\xca\xa2\xd1\ \x58\x18\xd9\x18\xad\x44\x16\x15\x46\x9a\x8d\x30\x90\xe1\x59\x9a\ \x4a\xaa\x23\xbb\x75\x61\x90\xc1\x24\xa7\x29\x42\x19\x0e\xc5\x00\ \x50\xfe\x99\xe5\x2d\x82\x4e\xaa\xa1\x25\x0d\x00\x51\xfc\xc2\x3c\ \x0c\xdc\xe6\xe9\xe2\x0b\xa6\x0b\x1e\xce\xc9\x53\xe8\x81\x62\xfe\ \x4b\x27\x90\x92\xf4\x70\x05\x38\xd0\x1f\x43\x36\xa4\x59\xc8\x85\ \x0f\x36\xe3\x5b\xec\x1f\x5f\xad\x41\x89\xa5\x88\x56\x0a\x60\x3d\ \x1c\x13\x35\xd5\x98\xe4\x54\x62\x00\xb9\x9c\xc9\xd4\x08\xe4\xf8\ \xd8\x6c\x14\xc4\x66\xad\x25\x3b\xc6\xa6\xce\xb0\xe4\xbb\xa5\x63\ \x5c\xca\xe5\xbc\x0d\xdc\x4c\x92\x40\x1b\xaa\x61\xf6\xd5\xa3\x2d\ \xa2\xa0\xab\x69\xde\x03\xe4\x62\xd6\x80\x5e\x2c\xb4\x07\x51\x2a\ \x26\x73\xf2\x09\x29\xe5\xcb\xbf\x44\x02\x38\xb8\x00\xfd\xc9\x85\ \x82\x58\x26\x5f\xec\xcb\xf9\x68\x26\x5f\x21\x01\x70\x3c\xc1\x22\ \x7d\x26\xb2\x64\xa4\xb6\x35\x56\x69\x7a\xa4\xad\x1c\x9f\xad\x20\ \xc3\x58\x7a\x06\x8d\x14\xc4\xa4\x89\x62\x4a\x02\x0b\xe2\xd5\xa7\ \x20\xa1\x13\x18\xbe\xa4\x5c\xfe\x43\x08\x00\x81\x50\xc0\xa2\x5e\ \xa6\x5a\x94\x29\x1d\x3e\x92\xc0\xef\xfc\x25\xc1\x15\xe7\xb9\x2c\ \xe8\xf9\xf9\x62\x9d\x14\x05\x09\x90\x03\x73\x2a\x26\x74\x46\x27\ \x40\x65\x94\x0e\x66\x14\xfd\xd1\x9f\x33\x8a\x1d\x13\x41\x11\x14\ \xfe\x75\xe7\x17\x20\x41\x12\x8a\x27\x36\x82\xcc\x67\x34\xd6\xa3\ \x29\x1a\x69\x32\x5a\xc3\x58\x61\x8d\x61\x11\x13\x4c\xda\x16\xce\ \xa7\x38\xb1\x5b\x51\xd1\xa6\x7d\xaa\x24\x3a\x0e\xd5\x7e\xf2\x67\ \x16\xcc\xa4\x01\xd8\xe4\x22\xa8\x21\x56\x0d\x68\x70\x7a\x9f\x5f\ \x66\x59\x19\x6e\x9e\x3f\x32\xe8\x2f\xc4\x56\x7b\xc4\xc2\x15\x90\ \xc0\x15\x18\xa5\x84\xfe\x4b\x84\x32\x5d\x86\x46\x82\x0b\x80\x83\ \x0e\xb2\xde\x5a\xf8\xe0\x12\x01\x21\x13\xe5\x52\x88\x7a\x27\xdc\ \x99\xe8\xcd\x34\xd2\x46\x2a\x56\x15\xee\xdd\x8a\xa2\x66\x8d\xc9\ \x18\xa7\x78\x81\x40\xd4\xe8\x4a\x0a\x95\x3a\xce\x26\x18\x8e\xd3\ \x6d\xc2\x64\x08\x04\x29\x96\x91\x80\x1b\x52\xd9\x3e\xc9\xe2\x22\ \x78\xdf\x95\x21\xa8\x96\xc5\xda\x4f\x2e\xa8\x36\xc0\xd6\xa4\x4e\ \x2a\x26\x05\x54\x84\x66\x6a\x45\x19\xc1\x03\x20\x88\x0e\x22\xa3\ \x11\x18\x23\xeb\x8d\x2a\x13\xe9\xdf\xfe\x9d\x2a\x12\xec\x11\x9e\ \x79\x26\x9b\x0e\xa0\x09\xbd\xa9\x13\x3e\x20\xad\xcc\xc8\xf0\x45\ \x0e\xf1\x41\xce\x9d\x16\x44\x50\xbd\x66\x4a\xf2\xa8\x7d\xe2\x68\ \x3a\xdd\xe8\x9f\x8e\xd3\x1f\x99\xc0\x7e\xce\x1b\x51\x4c\x0d\xfe\ \x91\xba\xa1\x14\x4c\x81\x5e\xaa\x21\x39\x5c\x9e\xa3\x6e\xde\x3f\ \xbe\x9a\x36\xfc\x42\xa5\x12\x98\x72\x5a\x69\x0c\x69\x43\x24\xe8\ \x81\x52\xba\x40\xa7\x76\xaa\xfc\xcd\xc1\x42\x26\x08\xa9\x96\x55\ \xbd\x30\xd4\x08\xd4\xc0\x34\x8a\x8e\x48\x64\x65\xab\x22\x8d\xe3\ \x38\xce\xc8\x90\x0c\x00\x31\x4c\x8c\x48\xa0\x8c\xa1\x86\x6b\xe4\ \xa9\x39\xee\xa9\x8e\x72\x56\x8f\x82\xe1\x07\x78\x40\xb1\x1e\xab\ \x22\x28\xab\xa1\x1a\xaa\x91\x36\x2b\x70\xf6\xa5\x40\xe1\xa2\x93\ \x0e\x85\xe7\x75\x15\xc6\xb2\x07\x9d\x68\x2b\x51\x5c\x01\x0c\x4d\ \x2a\x5e\x8c\x2b\x32\xea\xe0\x10\x29\x8a\x5a\x04\x8a\xa0\xec\x07\ \x7f\x44\xcb\xec\x50\x04\x9e\xc5\x01\xcb\x9a\x28\x2b\x54\x84\x45\ \x80\xc1\x28\x80\x06\x15\xce\xc8\x24\xb8\x1c\x1b\xe5\x6c\x68\xd0\ \x18\x6e\x64\x16\x5c\x9e\x63\x3a\xf6\xe9\x4a\xee\xe9\xc1\xfe\x91\ \xc2\x02\x81\x81\xd6\xa2\xa1\xd6\xa2\x1a\xba\x61\x1b\xfe\xce\x81\ \x3e\x1d\x0b\x46\x5d\x2c\x58\xac\x36\xcc\x9a\x3f\x66\x0d\x81\x15\ \xc5\x03\x68\x83\x0b\x6c\xad\xd8\x76\x2a\x71\x11\xd7\x20\x96\x15\ \x43\x41\xd8\x57\x44\x8b\xe8\x0c\xc7\x77\x61\x5b\xab\xd6\xfe\xc3\ \x43\x20\x0d\x02\xde\x2c\xce\x6a\x23\x6a\xd2\x18\xb8\x91\xa6\x63\ \x75\x06\x8b\xd2\x80\x5a\x3a\x1f\x5b\xba\x25\x17\x0a\xec\x50\xf9\ \x91\x8f\x2a\xec\xd3\xd6\x62\x91\x42\x2d\x09\x02\x5c\xab\x01\xa6\ \x0a\x6a\x99\x81\x9d\x07\x40\xa2\xdf\x79\x3c\x00\x1d\xbc\xc9\x03\ \x78\x2e\xa7\x86\xee\xf3\x74\xea\x0e\x21\xca\xda\xee\x47\xdb\x8a\ \xc5\x7e\x8c\x40\x11\x9e\x9d\xdc\xb6\x6a\x46\x46\x17\x70\x00\xd6\ \x28\x80\xa3\x0c\x4c\xc2\x7a\x5d\xd6\xce\xb6\xe8\x8c\xa8\x91\x8f\ \xd5\x11\xcc\xa8\x1b\x4a\x1a\x2e\x17\x12\x2d\xa0\x2e\x2e\x6e\x2e\ \xac\x1b\x1a\x68\xe3\x46\x2d\x1a\x9a\xa0\xf7\x65\x99\x0a\x0a\xe6\ \x81\xcd\x90\x0a\xc6\x09\xf6\xaa\x0b\x0e\x25\x1c\x7b\x84\x2d\xa7\ \xee\x50\xfe\x0d\x0a\xea\xaa\x6c\x84\x99\x6a\x14\xad\x41\x88\x91\ \x56\xab\x26\x0b\xe0\xa4\x91\xcd\xbe\xca\x77\x8d\x26\xdf\xae\x17\ \xfd\xd6\xd8\xa2\x39\x5a\x6a\xc0\xa7\x7c\x16\x6f\xbb\x11\x2f\x3b\ \x16\x6c\xe2\x12\x6b\x02\x28\xec\x22\x64\xc1\xf2\x3a\xae\x1b\xa2\ \xa1\x1b\x8e\xe0\xc4\xc6\xa1\xf8\x3d\x30\xf6\x66\x6f\xf6\x72\x99\ \xfa\xf9\xe3\x03\x88\x2b\xf8\x56\xd8\xa0\x6c\xf0\xa0\xfe\x54\xd8\ \xfe\x41\x63\xaa\x4a\xe3\xe8\xd8\x1e\xdd\xca\x6b\x24\x86\x66\xdd\ \xa9\xa8\x69\x3c\xc6\x57\xb2\xe8\x65\x5d\xd6\x6a\xd0\xd8\xfe\x90\ \x1b\x90\x08\xad\x7b\xe9\xa9\xd1\x02\xf0\x50\x21\xec\x50\xf1\x41\ \x09\x1c\x6b\x08\x14\x70\xd3\x3a\x6e\xd4\x3e\xad\x81\x46\x6f\x0a\ \x8a\xdf\x08\x08\xe6\xf5\x46\x70\x04\x27\xcf\x6c\x31\x18\x6e\xa1\ \x2c\x07\xe7\x9f\x15\x7f\x54\x34\xea\xc7\x57\x54\x4f\x23\xb1\x6a\ \x58\x5c\x23\xdd\xee\x1e\x1b\x79\x01\xcc\xbd\x1c\x4e\x2d\xcc\xed\ \xd6\x9c\x0c\x73\x4c\x0d\xef\xca\xae\x02\x8b\xaf\xfe\xea\xa5\xa1\ \xa3\xc0\xfa\xd1\x1f\x91\xd3\x0f\xe3\xe6\xa0\x2e\x02\x10\x20\xf0\ \x01\xef\xdb\x22\x48\x0d\x96\xfd\x42\x13\x63\xef\xf4\x3a\x31\x6d\ \x61\xaf\x52\x2c\xb2\x9c\x68\x70\xbd\xac\x6b\xfe\x21\x0a\xbf\xe8\ \x9f\xfe\xa5\xec\x16\x33\x12\x12\xc0\x0a\x78\x26\x8b\x77\xcc\x4e\ \x78\xce\x8e\x01\x1e\xe0\xe3\x84\xa3\x9c\xda\x0a\xdf\xae\x31\x0d\ \x88\xa5\x0c\x0b\x04\x1b\x00\x2c\x7e\x16\x2e\xf1\xb2\xa5\x0e\x17\ \xab\x0f\xff\xe8\xbc\x31\x2f\x02\xe7\xa3\x5e\xba\x21\x96\x21\xe8\ \x29\xd8\xc1\x0a\x00\x73\x13\x1f\xd8\x13\x1b\x8f\xfe\xf1\x2c\x72\ \xa0\x20\x8f\x15\x6b\xf0\x15\xeb\x45\x06\x07\x0a\xea\xc6\x6c\x13\ \x20\x41\x1a\xa5\x98\x48\x6c\xc6\xb1\x3c\xc4\xe1\x44\x5b\x9e\x19\ \x93\x09\xd5\x1d\x7a\x3a\x9a\x37\xde\xee\x7a\xb5\x86\x19\xec\x0f\ \x3a\x77\x08\x0f\xef\xea\x05\xfe\xa9\x5b\xe6\xa7\xf1\x2a\x2e\x91\ \xe4\x31\x6e\x1a\x70\xe3\x2e\xef\x3d\xab\xa1\x5f\x36\x30\x52\x00\ \xf3\xf1\x08\x33\x04\xc7\xc9\xf1\x0c\x8a\xf1\x6c\x30\xca\xae\x95\ \x15\x83\xd2\xa2\xb8\x9e\x06\xaf\xec\xed\x45\x90\x16\x98\x94\xcd\ \xac\x08\x66\x88\x04\xe2\x4c\x17\x78\xce\x8c\xec\x32\x5b\x64\x40\ \x5a\x64\xf9\xd4\xf0\x7d\x64\x2a\xa7\xb3\x19\x00\x42\x28\xbe\x31\ \x1c\x1f\x6d\xd1\x6e\xe0\x28\xaa\x74\x4b\x13\x6b\xe2\xda\x83\x3b\ \xc9\x9b\x01\x23\xb0\xf7\x91\xc0\x3c\xee\xb2\x40\xfd\xe5\x29\xfc\ \x72\x3f\x03\x33\x22\x1b\x33\x41\x73\xb0\x41\x33\xd4\xba\x48\xf2\ \x42\xeb\x45\x43\x87\xcd\x43\x47\x95\x60\x90\x98\x44\x20\x01\x8a\ \x79\x0e\xe0\x30\xce\xb3\x39\x0e\x18\x94\x9c\xef\x6d\x5b\xf0\xdd\ \x4a\x64\x5d\x56\x2a\x87\xd1\xfe\x00\x02\x33\x78\x40\x39\xf2\xaa\ \xf0\x9e\x23\xcf\xd1\x31\x8f\x9e\x63\xb1\x26\xfe\xee\x3e\x18\xc0\ \xb1\xd6\x34\x02\x37\x6c\xe3\x62\xd2\x92\x12\x72\x3f\x1b\xb3\x1d\ \xf4\x75\x30\xff\x73\x3f\x0f\x74\x41\x0b\x4a\x41\x1b\xf5\x22\x9f\ \x87\xf3\x2c\x8a\xa2\x98\x2e\x34\x5f\xf2\x12\xd6\xc0\xf9\x7c\x01\ \x38\x68\xc1\xb0\xbc\x4f\x8a\x91\xe7\xcb\xb5\x98\x01\x72\x46\x68\ \x50\xf6\x37\x73\x35\xae\x28\x60\x3a\xa3\xb2\x3a\x57\x20\x5a\xbf\ \xe5\xe1\xe1\xf0\x7d\xfe\xef\x4b\x27\x6e\x18\xd8\xb1\x3c\x73\x81\ \x3d\xc8\x75\xf2\xfa\xf1\x22\x30\xaf\x81\xfa\xd3\x6d\x1b\xa8\x2f\ \x07\xf3\x5f\xfb\xb3\x1d\xd8\x50\x50\x23\xc5\x40\xd7\x8b\x31\x2b\ \x45\x62\xbf\xc7\x5a\x90\x6e\xfe\x45\xb3\x00\x5a\x8f\x2e\x45\xb7\ \x37\x03\x9a\x17\xa4\x98\x09\xbd\x0f\x03\x9a\x58\x67\xf4\x8d\x9e\ \x45\x57\xed\x92\x97\x1b\x79\x1b\x63\x84\xf5\xfe\x9c\x33\x50\xb5\ \xf2\x69\xe3\x68\x8f\xc6\xe6\xce\xd8\x26\xff\x0a\xab\x1f\x71\x41\ \xd2\xc2\x36\x17\xbc\x01\xd0\xd4\xb6\xb3\x3a\xae\x5d\x33\xef\x08\ \x2a\x29\x4f\x63\x2f\x30\x07\xb7\x6f\x07\x34\x22\x33\xb2\x7a\xb8\ \x81\x3f\x8a\x6e\xe9\x86\xaf\x43\x2f\xa1\xf5\x9c\x2a\xeb\x46\xf8\ \x3e\xd8\x48\x75\x53\x1b\x75\x9b\x17\x89\xfe\x8d\x08\x0d\x5c\x9b\ \x46\xc2\x0a\x68\xe7\xc8\xdd\xbd\x40\xfc\x2c\x0c\xfc\xf0\x01\xba\ \x99\xb6\x17\xd2\x31\x7b\x3f\xc9\x8d\xf6\x6f\xff\xe6\x27\x3b\xc2\ \xb6\x1d\x8f\x13\x17\xf0\xc1\x17\xd0\x36\x6e\x3a\x6b\x10\x17\xf0\ \x6d\xef\x36\x2e\xe3\x76\x6f\xfb\x36\x60\x23\x45\x21\x17\xe7\xe7\ \xd2\x61\x04\xa3\x00\x82\x8f\x6b\xd7\xaa\xed\x52\x3b\xb6\xdb\x45\ \x98\x1b\x88\x6f\x0d\x8c\x80\x1b\x4c\x82\xa7\xf4\xcd\xa8\xbc\x8f\ \x6c\x8c\x77\xdf\x68\x38\x74\xd5\xcc\x46\xe2\xec\x35\xc5\x06\x8e\ \x1c\x83\x88\x73\x8c\x19\xa0\x1b\xf3\xb1\x72\x7b\xcb\xe6\x9e\xaa\ \xb7\x4b\xb3\xb7\x8a\xf7\xe8\x6b\xc3\x36\xb1\x72\x81\x0d\x3c\xc1\ \x0a\x28\x15\x6e\xd6\xf5\x7e\x0f\x29\x4e\x6f\x15\x12\x0b\x5c\x9c\ \x34\xf1\xf5\xc2\x9a\x2e\xca\x5a\xac\x89\xeb\xe7\x3e\xba\x3f\xae\ \x80\x11\x48\x7a\x7a\x30\xb6\xf8\x42\x39\x10\x59\x4f\xbd\xb4\xeb\ \xca\xde\x81\x34\x30\xc1\x62\x38\x46\x30\x0d\x90\xa7\xc8\x86\x2f\ \xfd\x5e\x75\xf7\x4f\xc8\xa8\xd1\x6a\xe0\xca\x8f\x94\xb6\x39\x57\ \x60\x9b\x0f\x2e\x8b\xab\x74\x5b\xb3\x36\x9c\xd7\xa7\x6d\xe6\xdc\ \x8c\x27\xee\x07\x7c\x44\x43\x54\x89\xfe\x2a\xf6\x27\x8f\xf3\x78\ \xa0\x37\xed\x4d\x2f\x29\x93\x32\xb1\x96\xc9\x1a\x92\xbf\xda\xd4\ \x19\x40\x79\x04\xc5\xa3\xbf\x09\x82\x4f\xfa\xa4\x5b\x7a\xca\x36\ \xb8\xdb\xa9\xee\xb6\x93\xce\x08\x48\xc3\x9a\x9b\xc1\x24\x90\x46\ \xa7\x50\x86\xa7\x7c\x0a\x19\x43\x01\xfc\xfc\xd5\x77\x35\x4e\xdf\ \xd1\x48\xae\x78\x22\x01\xb5\xb9\x09\xb4\xb2\x07\x10\x5e\x7a\xbf\ \x25\xe2\xb2\x35\x9c\xcf\xa6\x8b\xff\x3b\x20\xf9\x3a\x52\xc5\x37\ \xeb\x48\x0b\x6e\xf6\x31\x5d\xf7\xf1\x7e\x6f\xd5\x09\xe2\xb4\xa3\ \xd6\xe5\x0b\x6a\xd9\xc4\x63\x99\x0b\x94\x4b\x79\x18\x39\xf1\x3c\ \xc0\x42\x21\xca\x06\xab\x6c\xcc\x86\x85\xea\x92\xaf\x43\x37\x81\ \x1b\x6c\xc3\x9a\x2f\x0c\xe4\x98\x81\xe0\x98\xc8\x58\xda\x0a\x18\ \x79\xc6\xcd\xce\x3c\xab\x0b\x50\xb9\x09\x2e\x8a\xef\x70\x28\xb2\ \xa4\x0e\x1b\xef\xf0\x9a\x22\xbf\x03\x70\xaf\x7b\x04\x17\x7c\x44\ \x66\x08\xbb\xbc\xfd\x01\xd3\x92\x40\x4d\xd7\xb4\x1e\xfc\xf8\xa2\ \x9e\x60\x5e\x13\x1c\xc1\x65\x2d\xad\xbd\x9a\xac\x49\x7b\xd4\x10\ \xc5\x91\x23\xb8\x1b\xac\x0b\xc7\x2f\x35\xea\x3a\x78\x2a\x41\x98\ \x73\x8b\xc4\x1d\x20\xc1\x36\xd8\xfe\x05\x13\xe0\xee\xfe\xb4\xbc\ \xa9\xbc\xc0\x1a\xdf\x8f\xcc\x87\x8c\xcd\xd6\xfc\xad\x94\x1b\xf3\ \x05\xd5\xae\xe2\xfb\xbe\xe7\x28\xd1\xfe\xaf\x6a\x07\xfc\xe1\x06\ \xd9\x5b\x2b\xee\x9d\xd7\x38\x29\x1c\xfd\x8f\x02\xc1\x1f\x0c\x31\ \x5d\x1f\xf0\x6e\x2f\xef\x4d\x43\xfc\xb4\xf7\x72\x96\x31\x3a\xe6\ \x4b\xbb\xb3\x17\xa7\xf6\x1a\x75\x0d\x99\x3d\xa6\xb7\x2d\xbd\x44\ \xb3\xdb\x8e\xc0\x1a\x4c\x02\x27\x30\xc1\x5f\x28\x8c\xfd\xf0\x7d\ \xdc\xd3\xd8\xde\x5b\xc6\x76\x39\x8e\xc8\x8c\x86\x8d\x45\x1a\x2b\ \x13\x2d\x4a\xd3\xe7\x5a\xa6\x76\xe0\xfb\xbe\x29\xba\x35\x4c\xdb\ \x71\xd1\x8f\x82\x94\xc8\xc1\x1f\xb8\xe3\x07\x2d\xc2\x1f\x3c\xbe\ \xe3\xe6\xb7\x11\x37\x2d\x6e\x57\xbf\x20\x6f\x7e\x2f\x4f\x9d\xf6\ \xcf\x21\x52\x14\xa7\x61\x8b\xbd\x63\x93\xce\xc8\xaf\x2c\xcb\xa6\ \x92\x1b\x80\x43\x61\xfc\x85\x16\xfc\xc0\xde\xf0\xfd\xbd\xbf\x3f\ \x65\x78\x1b\x8d\x32\x83\xa8\x8b\x8c\x68\x90\x0c\x7b\xd6\xc6\xee\ \xb3\xf3\xe0\xf7\x9c\xf1\x22\x2e\x40\x00\x10\x38\x70\xa0\x09\x82\ \x02\x0d\x9a\x50\x68\xe2\x03\xc3\x0f\x0f\x15\x7e\xe0\xc3\x07\x99\ \x3d\x39\x17\xe5\x64\xf9\xb7\xfe\x91\x63\x47\x8f\x1f\x41\x86\x70\ \xf2\x07\x48\x96\x45\x8a\x16\x85\x58\xb4\x72\x25\x09\x96\x24\x60\ \x0e\x80\x19\x49\x26\x89\x9a\x24\x0c\xe4\x34\x10\x4b\xe7\x83\x07\ \x28\x7c\xae\x78\xb0\x42\x68\x92\x15\x46\x93\xd4\x48\x92\xb4\x46\ \x8d\x3b\x4d\xa0\xca\x81\x3a\x15\xea\x1d\xab\x4f\xa3\x62\x94\x5a\ \xc3\x0d\xb8\x6d\xdb\x7e\x80\x5b\xf3\x83\x89\x19\x36\x26\xce\xa6\ \x45\x6b\xe2\x85\x99\x63\x1e\xd8\xb0\x61\x26\xc3\xda\x28\x67\xce\ \x64\xdc\x75\x66\x57\x86\x17\x1a\xc7\x00\x9f\x85\xbb\x70\xe1\xc1\ \x83\x0a\x0b\x12\x4e\xb8\x10\x22\x62\xc3\x05\x0d\x2b\x66\x7c\xac\ \xa1\x09\x2e\x14\xd3\x3c\xd1\xaa\x11\x64\x67\xcf\x1c\x45\xfe\x21\ \x01\xc4\xe5\x94\x29\x29\x5f\xb6\x5c\xe4\x12\x26\xcb\x48\x8b\x22\ \x91\x70\x81\x53\x67\x6d\x14\x06\x50\x10\xd5\x6d\xf4\xe8\x8a\xa6\ \xbf\x9b\x5a\x8d\x4a\x75\xea\x55\xaa\x5a\x2f\xde\x49\xb2\x06\x5c\ \x73\xe6\xd2\xa4\x6d\x03\x74\x56\xf2\x5a\x0f\x66\x3c\xb0\xf5\xe2\ \x0c\x0c\xde\xbe\x32\xf2\xde\xed\x4b\xe3\xaf\x07\xb8\xd9\x15\x3f\ \x3e\x0c\x00\x71\x75\x86\xe6\xd1\xab\x67\x8f\x90\xbe\xe4\x86\x1f\ \x3c\xf0\xa1\xfc\x81\xcb\xfe\x65\x52\x33\x36\xfb\x4c\xc0\x90\x44\ \xfb\xc3\xc0\x93\x4e\x5b\x24\x41\x93\x5a\x63\x8d\xb5\x95\x5e\x83\ \x49\x27\x14\x7e\xc9\x49\x9b\x07\x7e\x01\x4a\xb7\x11\x88\x52\xca\ \x43\xe0\x82\x1b\xae\xaa\xab\x84\x3b\x0e\xb9\x26\xb8\x32\x42\xac\ \x35\x58\x6c\x4e\x1a\x28\x98\xa0\x4e\xb2\xb8\xcc\xa3\x61\xbb\xbd\ \xee\xf2\x42\x47\xbc\xf4\xf2\xeb\x18\x66\xd0\x93\xb1\x30\xf9\x20\ \x73\x4f\x21\x0f\x8e\xe1\x03\x22\x22\x0d\x9a\x6f\x3e\xf7\x3e\x38\ \x86\x0b\x29\xf9\x6b\x40\xb3\x00\x07\xcc\x72\x23\x95\x80\xf8\xc3\ \x09\x27\x80\x38\x89\x04\x93\x50\x6a\xa9\x35\x96\xd0\x84\x89\x84\ \x48\x72\xfa\xa5\xc2\x9c\x30\xcc\x4d\xb7\x1a\x7c\x03\x31\x38\x12\ \x89\x23\x11\xcf\xa9\x90\xbb\x08\x45\x23\x8c\x58\xc3\x08\x37\xdc\ \x50\x51\x1a\x2d\x7e\x98\xa4\x2c\x21\x09\x63\x83\x09\x52\xf6\x91\ \x81\x06\xba\x9c\xd1\x11\xbc\xf0\xf0\xf2\x02\x48\xea\xd8\xf8\x40\ \x46\x22\xd7\x33\x32\x49\xfd\x1c\x93\x2f\xa1\x27\x19\x63\xcc\x83\ \x28\xb9\x00\x84\x3f\x7b\x00\xc4\x52\xcb\x2c\x43\x18\xcd\x4b\xd1\ \x56\x0a\x53\x41\x33\x5d\x42\x33\x35\x09\x77\xfa\x85\xa7\x58\x7e\ \x3a\x65\xa8\x0e\x7d\xfe\xab\xf3\x4e\xac\x9e\xc2\xaa\x89\xab\x80\ \x2b\xb1\x4f\x3f\x51\x2c\x94\xd0\x24\x0a\x65\x51\x1a\x45\x15\x05\ \xc4\x3d\x0f\xf6\x99\x81\x07\x26\x3c\x60\x66\xaf\xbe\xbc\xb8\xd4\ \x19\x6b\x64\x60\xe2\xad\x46\x87\x04\x95\x20\x23\x25\x9a\xe8\x98\ \x26\x4d\x7d\x92\xbd\x85\x56\xbd\xcf\xa1\x87\xf8\x93\xe1\x89\x26\ \x90\xe3\x6c\xd6\x01\xa7\x30\xa9\xcb\x2f\x81\x20\xad\xa4\x94\x12\ \x5c\x84\xb4\x34\x57\x5b\x93\xb6\xda\x8a\x9d\x33\x59\x3b\x9a\xb2\ \xc3\xb8\x3c\xf5\x8c\x96\xcf\x69\x93\x5b\xca\xe4\xa5\x08\x1d\x0b\ \x90\x95\xa7\x73\xcf\x8b\x81\x9f\xe0\xc3\x84\x63\xb8\xab\xd4\xd2\ \x4b\xbd\x20\x37\xae\x85\xd8\x88\x4f\xde\x79\xbf\x9d\x48\x49\x7c\ \xf3\x5d\xec\xc8\xb7\xfc\x8d\xf2\x5e\x89\x6c\x89\x15\x39\x45\x0e\ \x1e\xb0\xd6\x2c\xb2\x00\xe2\x4b\x92\x1a\xee\x35\x84\x05\x61\x62\ \xb0\x62\x35\x2f\x0e\x56\x4e\xa2\x98\xea\x58\x4f\x11\x9f\x25\x31\ \x5a\x69\x49\x46\x51\xa9\x93\x51\x36\x42\x3a\x96\xdd\x73\x34\x0e\ \x39\xe2\x90\xa1\x67\x6b\x48\x71\xe6\x2f\xbf\xd2\x85\xc2\x0b\xec\ \xb2\xdb\xf9\x48\xa2\x7f\xb6\xcf\x04\x24\xed\x45\xbc\x68\x55\xb9\ \x80\xa8\xa1\xfc\xfe\xf8\xb8\x6c\x87\x32\x48\x86\x3a\xea\xcf\x42\ \xc0\x55\x11\x2f\x47\x6a\x78\x11\x93\x20\xce\x55\x34\xb0\xc1\x36\ \x00\x58\xdc\x4e\xd1\xd8\xec\x3d\x09\x8e\x5d\xcf\x3b\xd6\x1e\xb9\ \x4f\xa8\xde\x2e\xfb\x37\x37\xe6\x60\xd9\x5b\xf7\x64\x40\x42\x2a\ \x2d\xf8\x60\x02\x8c\x2f\xc0\xf0\xe2\x18\xf2\x98\x61\xa2\xdd\xb7\ \xe0\xc2\x0f\xbd\x52\x7f\xde\x97\x30\xf3\x2e\xa3\x92\x7a\x26\x9f\ \x8c\x72\xe8\xf7\xea\xe5\x23\x8d\x7d\x08\x9e\x56\xf3\xcd\x3b\xeb\ \x1c\x08\x94\xb2\x00\x7d\x24\x93\x48\x57\x29\x0b\x12\x0c\x74\x58\ \xcd\xd3\xd5\xdc\x29\x16\x39\xe9\x5c\xdb\x59\xad\xd2\x46\x3b\xda\ \xfd\xe6\x63\x59\xb9\x1d\xed\x96\xb2\xac\xa6\xf0\x2e\x01\xdb\x98\ \x04\x20\xa6\x67\x34\x40\x7c\xe1\x22\x71\xb0\x06\x13\xf6\x81\x84\ \x7d\x78\x81\x0f\x34\xe8\x20\x13\x40\x78\x8c\x9e\x49\x6f\x7a\xd5\ \x4b\x8c\x62\xf0\x33\x11\x57\x6d\xcf\x54\x46\xab\x57\x65\x1e\x72\ \x99\x89\xec\xe0\x6e\x99\x43\x9f\x67\x42\xd0\xbe\x86\x55\xcd\x4b\ \xa7\x00\xd3\xc3\x14\x36\x1a\x21\x92\xc6\x40\x06\xc0\x1f\x4c\xb4\ \x11\x0b\x25\xea\x46\x59\x56\x31\xc5\x70\xa4\x22\x95\xb4\x45\x6b\ \x59\xb6\x3b\xfe\x60\x02\x3f\x46\xbb\xae\xcc\xa1\x04\xdb\x48\xc0\ \xef\x24\xe3\x01\x2d\x00\xa8\x0c\xfb\x80\x82\x35\xb4\x00\x06\x76\ \x81\x90\x09\x34\x08\x61\xe1\xf0\x43\x18\x50\x21\xae\x3a\x48\x02\ \x44\x1a\xf8\xf0\x3b\x13\xb6\xc7\x32\x80\xb9\x8f\xf7\x2a\xc7\x05\ \x58\x91\x4c\x0e\xe7\xbb\xa1\x47\x42\xa0\x08\xfa\x75\x69\x61\x5f\ \x1a\xc9\x98\x24\x46\x92\xd1\xc1\xa4\x61\x4e\x50\xa2\x13\xc0\x56\ \xc4\xfd\xb5\x2e\x59\x77\x3a\x4e\xec\x46\x44\x45\x01\x9a\xe8\x76\ \x6e\x0b\x51\x71\x94\x12\x28\x70\x94\x80\x09\x09\x68\x65\x63\x8e\ \x24\x8d\x27\x94\xe1\x09\x30\x3a\x23\x18\xd4\x08\x05\x19\x00\x82\ \x8d\x10\xac\x8e\xbc\xe8\x68\x1f\x40\xf0\x01\x0a\x43\x33\xa1\xf5\ \xf8\x33\x91\x29\x01\x2c\x99\x13\x81\x47\xf9\xa6\x55\x83\x10\x1c\ \xf2\x23\x21\xa8\x95\x81\xb0\xe9\x3e\x86\x35\x0c\x6b\x61\x52\x44\ \xfb\x9c\x70\x8a\x53\x18\x48\x88\x49\x54\x22\x27\x75\xc3\xb1\x12\ \x11\x07\x95\x6b\x73\x0a\xdb\x4e\x24\xc5\x01\x62\x45\x8a\x6f\x1b\ \xd4\x1a\x4a\x50\x02\x28\xec\xa0\x04\x2b\xf3\x00\x20\x28\x03\x08\ \x2d\x3c\x01\x09\x5f\x80\x82\x2d\xa1\xa0\x85\x17\x31\x21\x8f\x0c\ \x8d\xa0\xfe\x1c\xb9\x77\x42\xfb\x4c\x04\x8f\x0d\x39\xa6\x42\xc2\ \x30\x2a\xa1\x45\xce\x21\x97\x49\x43\x0d\x09\x39\x4d\x6a\x76\xc4\ \x9a\xf3\x03\x5d\xfd\x7a\xe8\xc3\x1f\xde\x8a\x6a\x91\x54\x62\x2c\ \x46\xf2\x07\x98\x9e\x33\x16\xa7\x40\x41\xeb\x82\x63\x87\x67\xb1\ \x73\xa7\x08\x24\xa0\x55\x9c\x42\x4a\x8c\x84\xf2\x9d\x59\x71\x5b\ \xdc\xd6\x20\x8d\x48\x24\x35\x01\x1f\x00\x04\x14\x58\xc9\x04\x78\ \x8c\x60\x04\x0a\x85\x6a\x1a\x98\xa0\x05\x2d\x40\xc1\x97\x2b\x33\ \xc3\x2f\xe7\x88\x2f\x23\xad\x0a\xa0\x16\xbd\xa8\x42\x64\x98\x06\ \x19\xe0\x31\x0c\x26\x68\xab\x65\x76\xe0\x34\x92\x89\x74\xa4\x5b\ \xca\x21\xd5\x4e\x9a\x52\x71\xfa\xb0\x91\x3f\xe4\xe6\x97\x5e\x4a\ \xd3\xd6\xa1\x93\x63\x1e\xbb\xc3\x13\xa9\xa2\xb6\xfe\x05\xe7\x9d\ \xeb\x3c\x51\x28\x0b\x28\x15\x04\xa2\xcc\x05\x2e\x00\x87\x0b\xa4\ \xe1\xaa\x04\xd8\x63\x1f\x3b\x90\x6a\x19\xca\x80\x04\x69\xec\x00\ \x0a\x0f\xd4\x82\x1b\x32\xab\x10\x36\xf8\x32\x3d\xc0\x14\xeb\xe2\ \x2a\xc3\x1e\xfc\x00\x8c\x85\x61\x6d\xa6\xf8\x9c\xf1\xbd\x86\x70\ \xe1\x99\x84\xbc\x08\x5d\xeb\xfa\x8f\x1c\x8e\x49\x9b\x5f\x3a\x85\ \x1d\xfe\x90\xab\x52\x1f\x8a\xd3\xaf\x06\xb2\x64\x4d\x6b\x3a\x58\ \xa2\x70\x52\x80\xcd\x0a\xa0\x62\x95\xe5\x94\x53\x42\x93\x5a\x53\ \x2c\x6a\xf9\x42\xb9\x14\x40\xad\xa1\xb2\x25\x68\x2a\x13\x76\x20\ \x8d\x3c\x6a\xe1\x0e\xa1\x95\x06\x79\xd3\x90\x00\x2d\x88\x16\x8c\ \xd9\x89\x60\xe2\x88\x16\x91\xca\x28\xe4\x18\x2b\xac\xad\xbc\x62\ \x48\x51\x67\xa4\x81\x0b\x6e\xdd\xed\x47\x7d\xfb\xdb\xe0\x82\x26\ \x0b\x23\x71\x64\x38\xf7\x8a\x5c\x3b\xa8\xd4\xb8\xcc\xcd\xa6\x25\ \x21\xbc\x02\x4e\x9e\xa2\x06\x85\x2d\xac\x13\xaf\xc2\xb1\xdf\x70\ \xac\x43\x45\x35\x4e\x29\xa7\x78\xe2\xee\x4e\xd6\x08\x0f\x08\x14\ \x66\xbf\x98\x00\x6b\xa4\xe1\x18\x61\x48\xc0\x13\x46\xe0\x86\x35\ \xc0\x43\x0b\xf9\x5c\x83\x8e\xb9\xca\xaf\xc5\xc5\x2b\xac\x12\x4d\ \x48\x94\x1a\x73\xcc\x82\x84\x81\x72\x6a\x55\x26\x63\xf8\x40\xc1\ \x04\xcb\xe1\x0f\x0b\xde\x12\x09\x26\x1c\xba\x1e\x4e\x58\xc2\xc9\ \x5d\xee\x5e\x29\xec\xc8\x9a\x6a\x38\x9d\x86\xbd\xc3\x87\xcf\x7c\ \xe6\x8e\x01\xa7\x4e\xeb\xb4\xe2\x8a\x4f\xf9\xd8\xc9\x62\xeb\x01\ \x2c\x72\x41\x24\x4a\x40\x4c\x40\x84\x01\x00\x80\x90\x06\x12\x00\ \xfe\xad\x63\x69\x88\x05\x09\xab\x04\xe3\x90\x57\xe5\x38\xf5\xe4\ \x97\x21\xed\x79\x48\xa2\x15\x0d\x4c\xfe\x0c\x33\x0d\x03\xfe\x5e\ \x18\x24\x10\xd7\x29\x4b\xc5\xca\xc2\xcd\x82\x84\x63\x1a\xce\x09\ \x8b\x93\xcb\xa3\x56\x69\x97\x7d\xe8\xa5\x9a\xda\x61\x05\xc8\x6d\ \x75\x0d\x4c\xa1\xe6\x0e\xcb\xba\x7f\xad\x7e\x75\x87\xbf\x6b\xc0\ \xc7\x3e\xeb\xbb\x72\x06\x0e\xb6\x08\x65\x04\x17\x94\x60\x12\x79\ \x1c\x48\x02\xde\x4b\x28\x24\x54\x76\x07\xab\x84\xc2\x17\x51\x98\ \x1d\xfc\x02\x2d\xda\x49\x56\xb2\x81\x01\xe1\x51\x67\x20\x43\x66\ \xec\x09\x03\x1f\x78\xb0\x69\x4e\x5b\x39\x87\xa6\x30\x05\x72\x1d\ \x19\x61\x2e\x9b\xfb\xdc\xca\xb5\xc3\x13\x4d\xb1\x02\xc1\x1e\x17\ \xb9\xb8\xf6\x58\x61\x3b\x46\x14\x56\x2f\x56\x9d\x41\x05\x20\x8a\ \x7f\xaa\xeb\xc4\x02\x55\x29\x84\xd2\xb1\x79\x95\x24\x90\x30\x00\ \x02\x1e\x48\x70\x43\x8e\xdd\x70\xe7\x7c\x0e\x1a\xda\xad\x4d\x1c\ \xb5\x09\x43\xdb\xff\x9a\x0a\x60\xfd\xc1\x0c\xa9\xd8\xc3\x87\x41\ \x6e\xba\x09\x9d\x4e\xe4\xbb\xcf\x6d\xea\x0a\x23\x97\xdd\x29\x8f\ \x70\xcb\x4d\xdd\x3a\x0f\x77\xd8\x37\x85\x65\x62\xb2\xd2\xec\xfe\ \x58\xdf\x12\xb5\xd7\x00\x4c\x6c\x2a\x83\xed\x82\x49\xa4\x61\xcf\ \x02\xf9\x40\x02\x7e\x7c\xad\x42\x0d\x3b\x01\x25\x50\xa8\xb7\x10\ \xb2\xf1\xa8\x63\x5c\x31\xfb\x21\x72\xf5\xfe\x25\x25\xa1\xc5\xf6\ \xdb\x88\x10\xf7\xb8\xad\xac\x88\x5f\xc0\x3c\xb9\xc6\x65\xb9\xb9\ \xdf\x8d\x6a\x9d\xca\x01\xed\x1a\xee\x32\xae\x6d\xcd\xea\x4e\x92\ \xd8\xcc\xd6\x05\xef\xed\x24\xdb\x14\xa6\x48\x2b\x76\x51\x94\x67\ \x8a\xb2\xb5\xca\x2f\xf2\xb9\xcf\x48\x47\x82\xb0\x07\xf5\x00\x2e\ \x02\xa2\x04\xf0\xe8\x67\xd4\x3f\x10\x56\x46\xc7\x56\xb6\x13\xf1\ \xd9\x59\x23\xe2\xf1\xef\x19\xe4\xdb\x23\xf8\x7a\xc9\x4d\x3e\x76\ \xb6\xb3\xdb\xcb\xa2\x46\x3b\xbb\xd9\xde\xe5\x27\xb2\xbd\x09\x4f\ \xf4\xb0\xdc\x6d\x5e\x73\x9c\x37\x96\xef\x6f\xe6\x79\x9c\xa7\x45\ \x15\xa0\x93\x57\x1a\xf9\x2c\x3a\x7b\x9a\x5e\xd9\xcb\xde\x99\x1c\ \x5f\x64\x7c\x66\x09\x2f\x75\x00\x2c\x69\x5e\x20\x47\xc8\x44\x28\ \x7f\x6d\x03\x3b\xb5\x55\x1f\x68\xeb\xf5\x2f\xf7\x79\x83\x05\x57\ \x24\x6c\xf7\x3e\xcc\x49\xcd\x72\x96\x5f\xc4\x14\xa9\x47\x39\x46\ \x5c\xcf\x6a\x2e\xe3\x9a\xfd\x6b\xce\xf9\xff\x12\x7b\xf7\xfe\x00\ \x06\x9c\xbb\x7e\x92\x22\xaf\xe9\x2c\xec\xca\x4a\xa3\xa9\x03\x01\ \x44\xd3\x13\x20\x01\xc8\xa1\xf8\x3a\x01\x10\xfa\xec\x8e\x56\x46\ \xf9\x64\x2b\xf2\x0e\xa2\x5e\xc4\xea\x85\x22\x4d\xf2\x4c\xa0\x72\ \xb2\x2d\x72\x2a\x83\x0f\xe6\xe1\xeb\x2e\xa2\x06\x4c\xee\x0f\xb4\ \xc2\xdc\xc8\x0f\xed\xba\xec\xec\xd0\x2f\xe5\xde\x0d\xfd\x9a\xc0\ \xd5\x6c\xed\xd5\x46\x44\x9d\xd4\x89\x6d\x8a\xc3\x80\x20\xab\xb1\ \xea\xef\xfe\xc2\xeb\x9e\x5c\x80\x39\xcc\x8b\xf0\x00\x20\x0c\x0a\ \x30\x00\x03\x70\x0a\xf0\x65\xe1\x9c\x6a\x65\x78\x70\xd1\xa2\x0f\ \x21\x92\xc4\xac\x42\xce\x98\xae\x6d\x5f\x24\xc2\x55\x9c\x0a\x22\ \xc2\xa0\x04\xe4\x6a\xd3\x38\x90\xdc\x3c\x10\x39\xca\xaf\x04\x47\ \x70\xfc\x42\xb0\xe5\x7c\xee\xdc\x6a\x60\xb0\x9c\x02\xb1\x9a\xa5\ \x44\x10\xcb\xe7\xa0\xe9\xf6\xb6\x2b\x8a\x64\x47\x4f\x92\xe0\x01\ \x2a\x6b\xd8\xcc\xcb\x55\xe6\x05\x10\x0a\x70\x0a\xda\xea\x31\xee\ \x28\x0d\x22\x50\xb6\x58\xc8\x21\x4a\xc5\xa9\x9c\x50\xfa\x18\xa2\ \x72\x3e\x40\x02\x00\x41\x02\xdc\x0a\x10\xe6\xa1\x06\x13\x2c\x0b\ \x17\x2c\x91\x56\x20\xc1\x48\x4f\xf5\x50\xaf\xfc\x40\xfe\x50\x0c\ \xfd\xe4\x0e\x34\x6c\xcc\xd2\x29\xcd\xda\xf0\xcd\xa8\x85\xe0\x3a\ \xa9\x8a\xe6\x4f\xbb\xde\xe6\xce\xec\x30\x01\x24\x60\xe1\x14\xad\ \x0f\xd5\x23\x0c\x18\xea\x08\x0f\xa3\xd1\x1e\x03\xa2\x9e\x0f\x0f\ \x95\x2c\xea\xda\xaa\x55\x56\x26\x16\x7b\xd0\x05\x30\x47\x03\xe5\ \x80\x12\x17\x4c\x11\x32\x70\x5a\xba\xd0\x0b\xd3\x8e\x04\x3f\x30\ \xe5\xa0\x29\xd6\xe8\x04\x05\xc0\xe4\x9c\xdc\x0e\xbc\x76\xaa\x06\ \x65\xe7\x37\x3a\x29\x15\x97\xa2\x37\x56\x00\x28\xb4\x21\x12\x06\ \xd0\xbc\x02\xf0\xf7\x9c\x44\xc9\x24\x80\x0b\x98\x24\x09\x8d\xac\ \x20\xf2\x88\x01\x23\x8a\xda\x14\x8e\xfa\x0c\x10\x00\x12\xa0\x19\ \x91\xb1\x06\x0c\xa9\xae\x42\xe0\x17\xc4\xad\x13\xcd\xef\xfc\x3e\ \xb0\xb0\x62\x6d\x21\x0f\xab\x06\x50\x20\x16\xb2\x49\x89\x66\x0d\ \xdf\x74\x4d\x9e\x50\x91\x4e\xd4\x4f\x37\xf6\x27\x16\xb4\x61\x4d\ \xf4\x80\x1c\x3a\xc1\x34\xc2\x60\x0a\xd8\xf1\x17\xcf\x0a\xd2\x22\ \xa3\x84\x64\x6b\x98\x94\x6f\x7b\xdc\x2a\xe3\x1a\x91\xcf\x24\xc0\ \x05\x90\x51\x2b\x4e\xc1\xe4\x50\xa0\x26\x47\xef\xf4\x36\x71\xf4\ \xce\xac\xb0\x86\x83\xc4\x62\xa1\x61\x16\x26\xb0\xfe\x5a\xe7\x19\ \x87\xea\xba\xd6\x2c\x59\x34\x52\x75\xc8\x61\x11\x3a\x21\x2a\xf9\ \xd0\x24\xa9\xf2\x7a\xe4\x11\x21\x50\x92\x3d\xf2\xc3\x17\x5b\x28\ \x32\x0a\xa3\x08\xf9\x2c\x0c\x22\x41\x12\xc5\x6d\x05\x4c\x2e\x16\ \x74\x32\x0c\xcf\x0e\xf5\x5a\xaf\xc3\x38\x06\xb1\xa0\xc2\x14\xca\ \x50\x89\x0c\xa4\x6a\x88\xf2\x0f\x56\xe0\x0e\x50\x6c\x76\xee\xad\ \x29\x34\x12\x26\xf4\xa0\x13\xa0\x32\x24\x41\x25\x0c\xec\x91\x2a\ \xeb\xe3\x48\xf6\x2b\x25\xe3\x43\x21\x86\x49\x66\x02\xb1\x07\x11\ \x87\xb6\xc2\xa0\x55\x62\xd1\xc6\x3c\x2f\x2d\xe5\xc0\x2c\xc9\x0d\ \x2d\x35\x93\xec\xce\xae\xf5\x18\xf2\xde\x38\xa6\xf5\xd4\x4c\xde\ \xb0\x86\x6a\x80\x20\x16\x24\x91\xa7\x5c\x53\x29\xca\xf1\x01\x5e\ \xa3\x04\x16\x21\x01\xa6\x52\x3e\x4a\xf2\x17\xf9\x83\x0b\xde\xea\ \x70\x06\xd1\xbf\x10\x82\xfa\x70\xd1\x30\x1a\xe2\x08\xff\xc5\x30\ \xb9\x40\x02\x9c\xaa\x1f\x35\xf3\x22\x50\xc0\xe4\x14\x41\x2f\x6b\ \xf2\x19\x45\x50\xf5\x0e\x0b\xde\xda\x12\xb9\x9e\x62\xf5\xe2\x8d\ \x2e\x0d\x44\x1b\x2e\x91\x90\x46\xa6\x22\xfd\xc4\x29\x56\xe0\x17\ \xd8\xa4\xb2\x22\xe1\x36\xfd\x10\x31\xd9\xa3\xfe\x3f\x38\x0a\xac\ \x0a\xc2\xa9\x28\x63\x31\xa6\x30\x10\x0d\xac\x01\x99\xe9\x21\xc2\ \x60\xe1\x22\xb1\x39\x37\xb3\xd3\x84\xcb\x0e\x74\xb2\x13\xab\xd3\ \xd5\x8e\x6b\x05\x56\x8f\xed\xae\x02\xb1\xba\x50\x2e\x99\xa8\x06\ \xc8\x72\xd7\x72\x8f\xd7\x6a\xe0\x17\x64\xc3\x4d\xe6\x61\x3d\x4d\ \xa3\x13\x24\xe0\x20\x86\xf3\x98\x76\x33\x72\xa2\xee\xea\x56\x12\ \x8c\xb4\x72\x85\x88\x84\x09\xe7\x93\x3f\x17\xf1\x03\x3a\x01\x1e\ \x90\x52\x33\xab\x8c\xdc\xc2\x13\x19\x39\x71\x27\xa3\x11\xcc\xce\ \xee\x3a\xbf\xaf\xf5\xfc\x04\x0d\xc9\xd3\xef\x92\x92\x9e\xfa\x0e\ \x77\x7c\xe3\x36\x0c\x80\x28\x64\x33\x0d\x4a\xc0\x0e\xa7\xc0\x3d\ \x4f\x08\x96\xac\xc7\x25\x17\x07\x69\x60\x92\x37\x39\x0e\x17\x19\ \xe2\xfa\xac\x0f\x10\x06\xe0\x18\x01\xf4\x22\x62\xc1\xe4\x6e\xf4\ \xeb\x38\x31\x4d\xd9\xed\x27\x4d\xcd\xd5\x24\x0c\x48\x59\xaf\x14\ \x0f\xab\x42\xeb\xaf\x44\x08\xce\x2f\x99\x48\x43\x56\x60\x36\x22\ \xc1\x05\x7e\xe1\xce\x60\x51\x4a\x97\xcf\xfa\x8a\xd3\x68\x4c\xf4\ \x3e\xf9\x68\x98\xf4\xc8\x30\x0c\x93\x16\xe9\x23\x2c\x31\x2d\x0c\ \xd2\x40\x4c\xc7\x54\x0e\xb4\xc1\x4c\x71\xfe\xf4\xfb\x5a\x6e\x4d\ \x4d\xcd\xd6\x4e\xe1\x17\x64\xee\xdc\x48\x11\x0e\x85\xa3\x6d\x4e\ \x44\x6d\xca\x51\x89\xb4\x01\x08\xae\xe0\x0f\xb4\x01\x37\x98\xd4\ \x00\x22\x21\x12\xfe\xd4\x00\x06\xc0\x36\xa5\x94\x21\x2c\xb0\x54\ \x2c\x2e\xea\xea\xd3\x3e\xef\x13\x09\xad\x8f\x85\x2a\x33\x8f\xfc\ \xb1\x52\xe5\xa0\x4c\xc9\x2d\x0b\x26\xd4\x19\x37\xb5\xe5\x0e\x4b\ \xc2\xc4\x49\xc3\x4e\xc1\x56\x23\xc1\x1d\x4e\x61\x04\x3e\x75\x1e\ \x5a\x2d\xcd\xfa\x72\x94\x12\xcc\xbb\x1e\xf2\x0a\x4a\x62\x15\xa6\ \x60\x15\x16\x41\x0f\xc0\xd3\x28\x2a\xe4\x17\x30\xc4\x05\xc8\x21\ \x4a\x73\x75\x4a\xe2\xb3\x4a\xe3\x25\xe3\x28\x8f\xbf\xae\xd2\xe8\ \x76\xf5\x31\x16\x6e\x00\xfe\x13\x59\xc9\x54\x40\x15\x81\x52\x31\ \x71\x27\x61\xce\xdc\x70\xe7\xed\x7e\x01\x2a\xa5\xc0\x05\x4e\x61\ \x1e\xdc\x61\x00\xdc\xe4\x17\xe6\x81\x0e\x2d\xf6\x3c\xd1\x33\x0d\ \x0c\xe0\x17\x46\x60\x48\xf3\xce\x28\xb4\xe1\x0f\xb2\xe0\x16\xa6\ \x60\x6b\xce\x95\x04\x78\x43\x28\x30\xe4\x01\x0c\x00\x57\xdd\x53\ \xbf\x1c\xc3\x3e\x87\xc4\x3e\xa5\x6d\x3e\x17\x35\x32\xf6\x73\x38\ \xc3\x40\x03\x84\x47\x60\x31\xe2\x52\xfe\x4d\x4e\x3a\xa7\x4c\x4d\ \x9f\xd5\x41\x49\x33\x05\x5f\x56\x03\x22\x61\x1e\xce\x6c\x1e\x5c\ \x60\x1e\xa0\xd6\x05\x9c\x74\x00\x4a\x20\x12\x88\xee\x43\x31\xad\ \x13\x06\x20\x09\x40\x89\xbb\x50\x04\x35\xc9\x55\x0f\xf4\x60\x15\ \xcc\x75\x0a\xc0\x93\x29\x79\xe2\x21\x23\xa1\x13\x62\xd6\xda\x12\ \x63\xbf\x6c\x56\x0a\xf3\x8b\xf9\x74\x36\x21\xfa\x03\x17\xbf\x0d\ \x1e\xae\x10\x59\x9b\x60\xfb\x04\x92\x40\x0b\x12\x61\x51\xee\x04\ \x19\xb4\xde\x56\xc0\x00\xd2\x60\x11\x8c\xb1\xfc\x9a\x00\xb4\x46\ \x40\x6a\xe1\x01\x1e\xac\x36\x0d\xd2\x40\x03\x86\xf3\xff\x68\xf5\ \x01\x92\x80\x68\x51\x84\x0e\x48\x96\x55\x5d\x15\x08\xf4\x80\x04\ \x72\x83\x4e\x6c\xca\xa6\x50\x60\x75\x51\x40\x1b\xe4\x55\x37\xa1\ \x2f\x98\x86\x8c\x8f\x0c\x51\x49\x58\x94\x10\x1d\x07\x77\x2b\x93\ \x44\x07\x82\x0b\x76\x20\x33\x81\x56\x2b\x80\x60\x68\x07\x57\x4d\ \xcf\x2f\x47\xa5\x62\xc2\x0c\xa0\x00\xc3\xf4\xb1\x66\xa0\x0c\x66\ \x60\x06\x46\xe0\x09\xe6\xc1\xf1\x72\x73\x20\x46\x32\x01\x50\x00\ \x9a\xee\x00\x05\xc8\xf5\x0a\xb4\x61\x6c\xbc\x36\x6c\xf7\x47\xde\ \xca\x97\x4e\xd6\x13\x76\x19\x8a\xfe\x45\x91\xa9\x30\x22\xa2\xbf\ \xe4\x11\xb6\x0e\x13\x99\x86\x55\xe3\xae\x0f\x03\x83\xb7\x4f\x86\ \xb7\x33\x0b\x72\x13\x37\xd5\xfb\x86\x6a\x05\x06\x40\x0a\xfa\xb1\ \x59\x31\x22\x7a\xe3\x60\x1e\x08\x8c\xf0\x8e\x70\x24\x23\xc1\x73\ \x57\x40\x1b\x24\xb8\x89\x98\x85\xcc\x6c\x4a\x89\x50\xc0\x29\x1e\ \xc0\x6d\x45\x54\x7c\x8a\xc9\x1e\x15\xe3\x53\x80\x95\x7d\xff\xa5\ \x49\xf4\x8b\x0a\xf9\x83\x3f\xdd\xea\x32\xb8\x20\x33\xf2\x17\x39\ \xf6\x97\xdc\x8a\xd7\x68\x51\x6f\xa8\x4c\x61\x04\x2c\x36\x60\xbf\ \x6e\x06\xe2\xc0\x1d\x34\x40\x7c\xd2\x80\x11\x19\xb1\x13\xd2\xe0\ \x01\x3c\xd7\x94\xee\x84\xcd\x34\x52\x55\x63\x41\x42\x6b\x80\x04\ \x8e\xe9\xdb\x76\x40\x06\x36\x4f\x31\xb2\x43\x6e\x7b\x75\x3e\x21\ \xed\x5f\x1a\xe3\x21\x02\x29\x86\x2c\x57\x7c\xae\xe4\x85\x2f\x22\ \x86\x2b\x11\x4d\x73\xf4\x7f\xd1\xef\x4f\x9d\x96\xbb\xea\xa1\x1e\ \xbe\x2e\x0e\x78\xe0\x09\xe2\x20\x72\xa5\x96\xaa\x40\xab\xfe\x88\ \x8a\x28\x38\xf2\xa5\x1e\x72\x23\x39\xd2\x37\x40\x91\x83\x81\xc9\ \xa3\x6c\x97\x8f\xc0\x27\xd1\x1a\x02\x30\x0a\x4c\xd1\x4a\x18\xa3\ \x46\xa5\x38\x9b\x89\x8a\x23\xfe\x87\xa2\x2e\xa3\xb7\xc8\x38\x19\ \x03\x72\xa4\x42\xc0\x80\x3f\x10\x80\x47\x0f\x39\x56\x20\x0d\x62\ \x14\x29\x67\x80\x15\xe0\x58\xdc\xde\x38\x95\x3d\x19\x23\x80\x4a\ \xde\x48\x80\x6c\xab\xc6\x2e\x65\x6a\x64\xb5\x41\x42\xef\xc0\x05\ \x5e\x77\xd1\x26\x50\x68\x7a\x13\x85\x68\xeb\xd1\x2e\x83\x7d\x11\ \xc2\x30\x53\x18\x60\xa0\x0f\x86\x26\xa2\x01\xb8\x4d\x11\x95\x13\ \xd3\x5c\x38\x93\x33\xc2\xe4\x00\xf4\x19\x9b\x60\x04\x4a\xa0\x13\ \x84\xe0\x63\x31\xa2\x1e\x58\x01\x95\xb5\xe2\x8d\x7d\x4b\x9c\x91\ \x31\x6d\x84\x42\x0f\x16\xc1\x5c\xb7\x66\x15\x42\x40\x0f\xaa\x46\ \x0f\x80\x60\x7b\x37\x33\x01\xe2\xd1\x90\xab\xcd\xea\x92\x46\x17\ \xd5\xe3\x3e\x58\x58\x68\xbe\x78\x37\xfd\x79\x22\x3e\x94\x20\x24\ \x00\x93\xc9\x18\x70\x39\xb9\x95\x8b\xd6\x00\x30\xb7\x04\xea\x6f\ \x06\x72\x21\x17\x58\xa1\x9b\x5b\x00\x9c\x49\x86\x9c\x75\x12\x45\ \x0c\x40\x0f\x4c\x03\x00\x4c\xe3\xa3\x43\x60\x15\xf4\xc0\x00\xf4\ \x72\x06\x06\x20\x44\xf5\xeb\x31\xe1\xf1\x48\x18\xc7\x5e\xf6\x73\ \x5f\xb1\xb7\xe3\x28\x8a\x0f\x7e\x58\xf3\x94\x69\x11\xe1\x73\x38\ \xd3\xa0\x6f\x81\x16\xa1\xfe\xa9\x29\x04\xce\x34\x2d\x4d\xc1\x05\ \x3e\x54\x02\x74\xf8\x22\x58\x21\x17\x36\xc1\xa2\xeb\xa1\x05\x5a\ \x20\x95\xa7\x65\x95\x35\xf3\x59\x56\x80\x04\xce\xd6\xa3\xb1\xda\ \x34\xf4\xa0\x06\xa4\xc2\x0d\xf6\xf1\x30\x2a\xa3\x32\x19\xf0\x4a\ \xfd\x59\x72\xb6\x8e\x51\x1b\x90\x85\xb9\xe0\x87\x9b\xb9\x72\x26\ \x82\xdb\x78\x90\x10\xdb\x11\x00\xf8\x00\x78\x5f\xd8\xa7\xa9\x49\ \x11\x9a\x33\x05\x07\xc0\x00\x25\xd5\x60\xbd\xd9\xa9\x27\xfa\x22\ \xbc\x79\xb0\xbb\xb9\x9b\xbd\x19\xaa\x33\xfa\x59\x30\x34\x30\x3f\ \xda\xa3\xa7\xa0\x13\x56\x20\x76\xe0\x21\x88\x5f\xd4\x9f\x1b\x39\ \x38\x23\x07\x7e\x61\x49\x86\x88\x51\xe1\xde\xb1\x72\x18\xb8\x85\ \xdf\x9a\xa6\x69\x1a\x3e\x65\x68\x7e\xfb\x83\x50\x79\xd0\xa8\x15\ \x5a\x27\x63\x01\xb8\x04\x32\x2d\x53\xd0\x05\x3a\x81\xf0\xd2\x80\ \x9b\xc3\x99\x15\x9c\x1a\xaa\x13\x3b\x9c\x31\xfa\x9b\x15\x7b\xaa\ \xc3\xd6\x00\x56\xa2\x43\x23\x61\xb2\x3f\x71\x04\xe0\x61\x07\xec\ \x61\x1e\xe2\x20\x0e\x9e\xc0\x1e\xa0\x4f\x7c\x6c\x60\x22\x1a\xed\ \x54\x90\x53\x4b\x15\xee\xdb\xf0\x48\x03\x78\xd3\x30\x27\x02\xbc\ \x51\x3b\x6f\xfb\x73\xfe\xb5\xd3\x3a\x6f\x9b\xa4\x32\x85\x60\x1e\ \x0c\x16\x68\x37\x39\xaf\x33\xfa\x65\x3f\x1b\x12\xeb\xaf\xb0\x51\ \x39\x95\xdf\xd8\xa2\x09\x1b\xa3\x7f\x5b\x60\x71\xe7\x42\x31\xc4\ \x69\x6f\x27\x7a\xeb\xa1\x7c\xe4\x18\x1e\xe6\x38\x0e\xca\x80\x07\ \x46\xe1\xa6\xf7\x85\x85\x07\xba\x07\x77\x77\xad\xfb\x43\x39\xd7\ \x3a\x90\x2e\x53\x02\x3e\xdb\xdb\xfc\x55\x22\x18\x58\x02\x2a\x27\ \xd3\xde\x1b\x59\xe3\xfb\x90\x42\x40\x3c\xc9\xf3\x0e\x48\xa0\xc3\ \x35\xc0\xae\x09\xfb\x9b\x85\x1b\xb1\x31\x5a\x0e\xa4\xba\xbf\xc9\ \xf8\x6b\x35\x90\xbb\x9e\xb7\x0c\xe2\x00\x1e\xf8\xa0\xad\xf8\xa0\ \x01\xec\x01\xbc\xfb\xf3\x1d\x35\x80\xc3\xdf\x71\xc9\x8b\xf5\xc2\ \x19\xd8\x84\xde\x31\x39\x31\x8d\xa6\x8b\x1a\x1e\xc8\xf8\xc4\x6f\ \x48\xaf\xdb\x86\xe6\xec\x40\x5b\xe1\x61\x11\xbe\x5a\x20\x72\xbb\ \x06\x9b\xba\xa2\xfd\xfb\xc6\xfb\xbb\xc6\xa5\x19\x68\xeb\x61\x14\ \xfa\x93\x0f\x36\x81\x07\xec\xa1\x01\x68\xba\x01\xec\x1c\x19\x92\ \x53\xc9\x43\x7b\xc4\x3b\xfc\x98\x44\x3c\x39\xd7\xda\x19\xc2\x5b\ \x03\x8e\x55\x60\xb1\x1c\x7d\x72\x88\x90\xec\x60\x43\x6d\xb3\xcf\ \x01\xa0\xa0\x4b\xfe\xdc\xc6\x9d\xba\xa2\x91\x63\x95\xf5\x1b\xcd\ \xd7\x3c\x7f\xed\xe1\x43\xb9\xc0\x16\xe4\xd8\x16\xe6\xc1\x16\xec\ \xc1\x1e\xf0\x00\x0f\x1a\x20\xc9\x39\x3c\xc3\xa5\xfc\x67\xfa\x73\ \x58\x09\xa2\x3f\x2b\x33\x0d\x1a\xa0\x18\xf8\x80\xc3\x31\xf0\xb5\ \xc5\x0d\xaf\x6f\x28\xd1\xdb\xa6\x09\xe6\x41\x03\x18\xb5\x1f\x23\ \x1d\xa9\x65\x7c\xb8\xc5\x19\x8e\x2d\x3d\xd3\x5f\xb8\x1e\x48\xa1\ \xa8\x35\xc0\x1e\x3c\x1d\x11\x42\x1d\x0f\x44\x7d\xce\xa5\x1c\xc9\ \x93\xdc\x5f\x23\x15\x52\x53\x38\x44\xb9\x00\x19\xf0\x88\xd6\xa1\ \x79\x8c\x05\x16\x3a\xc3\xb5\xb2\x19\x51\x03\xee\x08\x1e\x8e\xba\ \xd2\xf7\xfb\xbf\x0f\x1b\xb1\xf3\x5b\xd9\xf3\x37\x17\xc2\xfb\xdb\ \xf1\x60\x1e\x10\xc1\x16\xe0\x01\x0f\xa0\xdd\x16\x4c\x5d\xc9\x35\ \x60\xe0\x27\x9c\x51\x5b\x3b\xd5\x1d\x1d\x00\x32\x1c\xcf\x83\xfc\ \xd1\x35\x0d\x68\xcd\x7d\xca\xca\x40\x6a\xcb\x60\x46\x69\x3c\xcd\ \x65\x9c\xa9\x6d\x5c\xde\x6b\x7c\xb8\xe9\x3d\x2d\x67\x60\x14\xfa\ \x43\x03\x2a\xc2\x16\x44\xdd\xd4\x85\x20\xdf\x43\xbd\x18\x24\x20\ \xc9\x09\x3e\x44\x0d\x1e\x3e\x0d\x23\xb4\x51\x9d\xbb\x0b\x9a\xa7\ \x35\x33\xe2\xfe\x01\xf4\xdd\x77\x9b\xb7\xe7\x1d\xcd\xdf\xdd\xbf\ \x3f\x7e\x4c\x59\xe1\x0d\x90\x01\x19\x8a\xc1\xe4\x45\xbd\x01\x4a\ \xdd\xce\x6d\x01\x11\xec\xc0\x1d\x8a\x61\xe0\xd7\x9a\xc3\xab\x07\ \xd3\x56\x7d\x20\xa2\x9c\xdb\xe0\xf3\xb3\x0b\x1a\xd7\x13\x8c\x60\ \xb7\xb0\x39\x0b\xdb\xbf\x33\xde\xd2\x15\x3b\xb1\x3d\x7e\xe8\x77\ \xbe\x01\xfa\x03\x19\xa8\x1d\xe0\xe3\xbe\x01\xa4\xc0\x1d\x10\x41\ \xda\xe7\x61\xea\x39\x1c\xd5\x79\xb0\x3f\xfd\x95\xc9\x09\xfa\x1d\ \x69\x1d\xb5\x27\x9c\x0b\x0a\xbd\x39\x05\x94\xd7\x35\x33\xb0\xcd\ \x5c\xde\x85\x1b\xd9\x83\x7b\xde\xc9\x9e\xed\xc3\xf9\x0d\x94\x3c\ \xe9\x99\xde\xe4\x57\x5e\x0a\x84\xc0\xee\x25\x16\xd5\x5b\xbe\x11\ \xb1\xd7\xea\x41\x14\xf0\x09\xfa\xdb\x35\x5c\x39\xb1\x37\x0d\xbe\ \x00\xec\xff\x2d\x0b\x0e\x1d\xd1\x81\x60\xe7\xcb\x9c\xbf\xe5\xe0\ \xec\xf7\x5b\xf2\xa5\x7a\xed\x55\x59\xcd\x3f\x7e\x06\x2c\xbf\x07\ \x25\xa0\x18\xec\x1c\x0f\xee\xde\x16\x7c\xb8\xe5\x3d\x1f\x0f\x30\ \xb7\xe5\xd5\x3d\xc4\x79\x76\xc9\x0b\x5e\x20\xa2\xfc\xc2\x4f\x45\ \xe1\xf8\x80\xdc\x55\xfc\x2a\x42\x00\x08\x6e\xc1\x9a\x64\x9b\xfb\ \xb2\x80\xfe\xf6\x79\xfb\xa9\x7b\x1e\xbf\x8b\x7d\xe3\x6d\x1c\xf2\ \x7d\x3f\xc1\xe0\x9d\xed\x67\xa0\x01\x06\xba\xe5\x89\xff\xe9\xef\ \xde\x87\x7b\x50\x03\xdc\x21\xd4\xa5\x60\xef\x07\xde\xef\x01\x02\ \x80\xc0\x81\x03\x25\x70\xd1\xc0\x45\x82\x04\x82\x00\x0c\x26\x34\ \x01\x91\x21\x80\x30\x69\xca\xc8\xb9\x88\xb1\x49\x8d\x11\x2b\x56\ \x9c\x22\x71\x2b\x84\xc8\x7f\x24\x4b\x9a\x3c\x89\x32\xa5\xca\x10\ \x59\x30\xba\x7c\x89\xb1\x9e\xcc\x97\x32\x59\xb1\x6a\x31\xf3\x62\ \x3d\x9b\xac\x76\xda\x6c\xd1\xb3\x9e\xcb\x99\x35\x73\xc2\x3c\xea\ \x53\xa8\xce\xa3\x4c\x9b\x3a\x85\xf9\x46\x42\x18\x83\x1a\x34\x34\ \xb0\x85\x28\xab\x2d\x0d\x52\x35\x14\x9b\x07\x56\x8a\x42\x09\x5c\ \xc3\x30\x54\x68\x76\xaa\x06\x64\x08\x17\x32\x0c\x03\x11\xae\x44\ \x81\x61\x76\x8c\x18\x71\xea\x17\x8a\x58\x40\x42\x8a\x0c\xa1\x32\ \xb0\xe0\xc1\x25\x59\x3e\x1d\x6a\x73\x68\xcd\x9b\x3d\x63\xf2\xec\ \xf9\xd8\x26\x51\xa3\x92\x0f\x3b\x6e\xac\x53\xa9\xe5\xcd\x4d\xeb\ \xd9\xe2\x72\xb0\xaa\x55\xac\xa6\x10\xd9\x12\xc2\x55\x83\x90\x79\ \x59\x85\x48\x1d\x6b\xb6\x20\xda\x89\x54\xf9\xb8\x95\x68\x02\x40\ \xee\xfe\xb9\x53\x00\x4c\xc9\xa2\xe8\x2f\x60\xc2\xc4\x8b\xab\x54\ \xb4\x62\xf3\x4e\xcd\x99\x6f\xd6\xc1\x79\xf9\xf1\x72\x9e\x4a\x99\ \x27\xe5\x9c\x54\x28\x73\xce\xdc\x5f\x6e\x6a\x60\xa3\x41\xb1\xaa\ \x57\x11\x95\x9e\x87\xba\x2a\x1e\xac\x76\xe6\x69\x98\x2a\x95\x20\ \x7c\xb7\xf0\xa7\xce\xe5\x3d\x65\xca\x2a\xe1\x23\x8d\xfb\xff\x6f\ \x52\x08\x7f\x38\xb5\xdd\x50\x3a\xdd\xd4\x02\x74\x07\x46\x26\x93\ \x4c\x09\xe2\xd4\xe0\x65\x0a\x1e\xe6\x13\x66\x05\x76\xc7\x5d\x2e\ \x78\x5c\xd5\x40\x87\x58\x99\x87\x88\x3b\xef\x91\x55\x8c\x3b\xac\ \xa1\xa7\xd0\x7b\x67\x29\x84\xdb\x7d\xf9\x4d\xc1\x5f\x7f\x00\xce\ \x48\x63\x08\x40\x44\x08\x13\x66\x06\x3a\x96\xa0\x85\x45\xfd\x14\ \x54\x3d\x09\xd6\x11\x14\x4d\x3d\x62\x07\xd4\x85\x18\x76\x17\x87\ \x2d\x6f\x5c\x55\x4c\x31\x78\x98\x27\x87\x29\x78\xc4\x46\xd6\x6a\ \xa5\xb9\x23\x05\x57\xf1\x11\xf4\x25\x7e\x31\xca\x48\x63\x99\x65\ \x86\x40\x42\x64\x71\x54\x57\x64\x4c\x46\xc9\xc1\x58\x75\x72\xfc\ \xd8\x63\x50\xac\xd4\xf1\x9c\x8e\x07\x02\x85\x5d\x65\x4b\xfe\x79\ \x11\x2b\xf6\x74\xd8\xe1\x68\xa6\xc8\x81\xc8\x95\x05\xb9\x83\x88\ \xfe\x1d\x88\xcc\xe3\x4e\x03\x69\xa8\x28\x5f\x18\x66\xe5\xc7\x9f\ \x99\x9a\x6e\x8a\x52\x08\x06\x00\x05\x2a\x0f\x6c\xb2\x32\xa7\x63\ \xcc\xf1\x44\xd3\x62\x75\xd6\xd4\xc2\x73\x44\x95\xba\xd3\x84\x48\ \x21\xa6\xa7\x92\x80\x32\xc5\x4a\x03\xc8\x84\xd7\xc0\x41\xe5\x21\ \x32\x00\x7d\x1a\x48\x01\xd6\x89\xb6\x34\x50\x96\x6f\x00\xc4\xc8\ \x69\xb3\xce\x16\x96\x05\x0f\x0f\xb6\x90\x0b\xa9\xb1\xea\x28\x64\ \xad\x41\xa6\x8a\x60\x92\x3e\x25\x98\x53\x83\xb1\xda\x7a\x94\x9f\ \xb0\xde\xaa\x5c\xaf\xc5\x0c\x5a\x0c\x59\x0d\xb8\x63\x4b\xb0\xaf\ \xa9\xc6\xa8\x01\x24\xdc\xbb\x48\x24\xcc\x3e\xcb\x2f\xbf\x21\xfc\ \x82\x67\xab\x44\xce\x19\xe7\x81\xae\x2a\xb6\x6d\x73\x40\x26\xf9\ \x13\x9f\x0b\x52\xf7\x94\x75\xd8\x92\x8b\xee\x50\xa3\x70\x81\x0c\ \x87\x55\x95\xe8\x0e\x1e\x55\xbd\xb8\xc8\x22\x59\xec\xdb\x6f\xc9\ \xfd\x86\xe0\x02\x9e\xcf\x11\xc9\x2a\xa9\x73\x0a\x79\x30\xc2\x95\ \x55\xc8\x53\xc0\x35\xe1\x69\x21\x83\xdb\x59\x47\x6b\x75\x6f\x56\ \xcc\xd4\x0c\x9f\xf1\xd1\xe1\x0e\x1d\x0e\x40\xc2\x22\x63\x92\x69\ \x72\xd3\x27\xa7\x1c\x70\x9e\x15\x6a\x77\xa7\xd4\x34\x31\x66\xfe\ \x67\x8f\xb1\x4a\xed\x9c\x82\xd7\x8a\x6b\xab\x51\xd7\x65\x06\xf4\ \x61\x4f\xec\xa0\x41\x1a\x9d\x2c\x3d\x9c\xd3\x6e\x3b\x8d\x72\xc0\ \x43\xaa\x0c\x21\xab\x38\x17\x28\x64\x9d\x71\xc6\xaa\xf5\x9d\xe0\ \x2a\x05\xf1\x72\x9d\x69\xf6\x93\x66\xda\x95\x9d\x51\x13\x8a\x37\ \x11\xdc\x98\x6f\x3f\x0e\xf9\x3f\x68\x06\x9c\x4b\x2e\x9b\xb0\x63\ \x83\x0d\x52\xdf\xcc\x32\xb7\xad\x4a\x06\x3a\x63\x40\xd9\xf4\x9c\ \xc3\x0e\x36\x56\x14\x52\x89\xe9\x34\xba\x81\x14\x3f\xa5\xd1\x1d\ \x77\xd8\xb1\x42\xa6\x91\xdf\x8e\xbb\xe4\xf3\x54\x9e\x4b\x0b\x97\ \x23\x83\x0c\x3b\x49\x12\x8c\x33\x4c\x76\x43\x18\x3a\x90\xdd\x4a\ \xd6\xa0\x9f\xcb\xe1\x7d\x13\xe0\x05\xc7\xd4\x5d\x3d\x4d\x94\x51\ \x43\x47\x7f\x84\xd0\x78\xdb\xb9\x7f\x1f\x39\xca\x2d\xc4\x41\x6d\ \x2e\x98\xb3\xb3\x09\xcb\xaa\xea\xb9\xa0\xd6\xdf\xf2\xd4\x6a\x8f\ \xa3\x07\x39\x3c\xc1\xec\x5f\x04\xee\x9e\xb2\x86\x7d\x51\x13\x1c\ \xfd\xf2\x0b\xbe\x8c\xec\x2f\xe0\x2b\xe0\xf7\x42\xf0\x80\x6a\xf5\ \xce\x72\xe9\xbb\x5b\xf3\xf2\x97\xaa\x69\x41\xe6\x41\xdd\x2a\xdd\ \xfc\x1a\xa4\x35\x38\x31\x8f\x5b\x84\x83\x20\xd9\x5e\x32\xfe\x82\ \x5f\x18\xc0\x00\x40\x00\xc2\x00\x99\x66\xc0\x14\xde\x2e\x04\xbb\ \x2b\x9f\xc0\x1a\xe8\x32\xbe\x39\xec\x6a\xf1\x0b\x4a\xfc\xe6\x36\ \x2d\x6f\xb5\xec\x7d\x17\x7a\xd3\xb5\x0c\x14\xc2\x7b\x65\x01\x38\ \xdd\xf3\x9e\x0a\x8f\x98\xbb\x7f\xc5\x6f\x65\x2a\x1b\x18\xeb\x8e\ \x54\xaa\xcc\xf0\x0d\x32\x55\x6b\xa2\xdc\x5a\xf7\xb2\x09\x5a\x8d\ \x7a\xaa\xeb\xc9\x0c\xec\xa5\x87\x45\x04\xa7\x88\x48\x2c\xa3\x0a\ \x45\x52\x06\xb9\x59\x31\x67\x9b\xc3\x11\xc1\x56\x65\xc5\x26\x0a\ \x6c\x42\xcd\xab\x43\xfa\xac\x33\x93\xc5\x29\xee\x17\x8b\xd0\xc3\ \xd2\xcc\x08\xc8\x32\x86\x60\x04\x12\x14\x98\xab\xa8\x36\x3f\x88\ \xbd\xec\x5a\xa4\x8b\xa3\x1c\xd5\x67\xb8\x1a\xf6\x6f\x23\x77\xb1\ \x03\x48\x84\x13\xc8\x4c\x6a\x52\x72\x65\xa0\x60\x0e\x67\x18\x19\ \x20\xf9\xac\x61\x73\x53\xa3\x15\xbd\xe5\x18\x7b\x80\xe5\x17\x2b\ \xf0\xa3\xed\x36\x09\xcb\x40\x0e\x72\x74\x37\x5c\x15\xeb\x42\x19\ \xa4\x07\xe6\xc9\x90\xa5\xa4\x9b\x4d\x66\x00\xc0\x11\x1a\x80\x64\ \xb1\x2c\x66\x26\x43\x50\x06\xd1\x95\x0e\x41\xa8\x9b\x5a\x28\xc5\ \xd5\x35\x43\x46\x0d\x4f\x9b\x18\x40\x24\xee\x45\x02\x95\x57\x12\ \xd0\x98\xdc\x8c\x65\x08\x9e\x00\xaa\x5a\x5e\x90\x66\xcc\xa3\x19\ \x06\xe7\xa8\x32\x78\x84\xac\x8f\x45\x44\x61\x37\xdf\xa9\x49\x5b\ \x4c\xeb\x8a\xd4\x59\x8c\x74\x58\x35\xba\x9d\xe0\x89\x04\xab\x50\ \x44\x3f\x89\x09\xcf\x80\x16\x33\x12\x71\x94\x60\x90\x26\x98\xa4\ \x19\x28\x94\x5a\x8e\x13\xa8\x43\x1f\x1a\x02\x47\x52\xd0\x5a\x35\ \x99\xc7\x13\x2c\xfa\x0b\x80\x3e\x74\xa3\x02\x0d\x41\x03\x25\x1a\ \xc2\x8e\xfc\x02\x08\xaf\xe4\xa8\x49\x39\x1a\x51\x2b\x6e\xc2\x16\ \xf0\x80\x87\x01\xda\x79\xd2\x98\xca\x34\x04\xa4\xb0\x87\x3b\xae\ \x99\x4d\x32\xca\x74\xa7\x3b\x85\x29\x4f\x7f\x0a\xd4\xa0\x0a\x15\ \x7c\x01\x01\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\ \x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x1d\x85\xaa\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xa9\xc6\x91\xd7\x88\x8d\x94\x4a\x31\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x5d\xc8\xf6\xff\xff\xff\x5d\x89\x3f\ \xff\xff\xff\xde\x93\xb2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x5e\x87\xb5\xff\xff\xff\xff\xff\ \xff\x9b\xa7\xbc\x54\x67\x1e\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x13\x28\xa7\x10\x27\x67\xff\xff\xff\xd7\xc9\xe6\x08\x69\x9b\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\x95\xb6\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x13\x29\xe2\x9a\xf2\xfc\xff\xff\xff\ \xf9\xae\xba\xff\xff\xff\x4e\x68\xf8\xba\x89\xb5\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xd9\xe8\xf9\xff\xff\xff\xfa\xc8\xe8\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x98\xc8\xfb\ \xff\xff\xff\x79\x88\x3b\x93\x68\xf6\xff\xff\xff\xda\x91\xf3\xff\ \xff\xff\xef\x68\x52\x1f\x87\xbc\xff\xff\xff\xff\xff\xff\xfa\xe8\ \xf0\xf7\xb2\xf1\xfc\x8e\x5f\x6b\x6a\x23\xff\xff\xff\xff\xff\xff\ \xb7\xc8\xf2\xb7\xb3\xf5\xff\xff\xff\xff\xff\xff\x6c\x68\xea\x85\ \x21\xb1\xff\xff\xff\xf3\x48\x40\x24\x09\x44\xee\x68\xa5\x95\x89\ \x81\x38\x56\xf7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x74\x88\xf7\xff\xff\xff\xff\xff\xff\x97\xb1\xf9\x95\x94\xf5\xff\ \xff\xff\xfb\xce\xab\x93\x54\xf0\x5b\xb7\xeb\xd6\xd8\xee\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfd\xfa\xbb\x8e\xf3\ \xff\xff\xff\xb3\x68\xea\x08\x15\xdd\x3c\x63\xf7\x7d\xf5\xfc\xfa\ \xd8\xed\xff\xff\xff\xff\xff\xff\x7d\x96\x45\xb7\xd8\xfa\xff\xff\ \xff\xff\xff\xff\x32\x49\xea\xda\xae\xf8\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x6e\x78\x27\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x14\x65\x74\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xb4\x52\x2a\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x72\x48\xe2\xff\xff\xff\xff\ \xff\xff\x72\x36\x55\xff\xff\xff\x96\x35\xd1\xb0\x2a\x74\x79\xcb\ \xf9\xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\ \x35\x66\x63\xff\xff\xff\xf9\xa7\x88\xff\xff\xff\xff\xff\xff\x78\ \xb4\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x93\ \xeb\xfa\xec\xba\x90\x6e\x6b\xff\xff\xff\xff\xff\xff\x71\x0d\x4a\ \xa8\x1e\x48\xff\xff\xff\x29\x7a\xca\xf7\x91\x8e\x4c\x19\x31\xff\ \xff\xff\xf3\x78\x58\xb3\x77\x6c\xff\xff\xff\xff\xff\xff\x84\xba\ \x80\xff\xff\xff\xd9\xd8\xa9\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x18\x35\xa3\x12\x78\xa9\xff\xff\ \xff\xff\xff\xff\x19\x37\xe0\xff\xff\xff\x58\x76\xfa\xff\xff\xff\ \xff\xff\xff\x99\xd8\xfb\xff\xff\xff\x92\x78\xf3\xff\xff\xff\x47\ \x5b\xf6\xff\xff\xff\x69\x7a\xf4\xff\xff\xff\x2f\x1a\x5b\xef\x79\ \xa5\xff\xff\xff\xff\xff\xff\xff\xff\xff\x34\x57\x62\xaf\x78\xf5\ \xff\xff\xff\xaf\x5a\x51\x72\x78\x9d\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xb4\x77\x9f\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x40\xb5\xef\xff\xff\xff\xfc\xb8\x8b\ \xff\xff\xff\x96\x98\x50\xde\x97\x94\x99\x98\xb7\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd9\xfb\xfc\xff\xff\ \xff\x7c\x98\xb1\x1f\x98\xcb\xff\xff\xff\xe9\x59\x34\x99\x98\x78\ \x7d\x97\xf9\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\ \x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x44\xe8\xaa\ \x8a\xab\x89\x18\x33\x6a\xdc\xc8\xb1\xa3\xc7\x8f\x20\x2b\x2a\x5a\ \xa2\x01\xa4\xc9\x93\x28\x53\xaa\x5c\xf9\x50\xd1\x81\x91\x7f\x7e\ \xfc\x59\xc2\xb2\xa6\xcd\x9b\x38\x73\x0a\x74\x25\xf2\xcf\x1f\x0d\ \x40\x35\xd8\xf1\xa9\x48\xa7\xd1\xa3\x48\x93\x52\xe4\x49\x89\x92\ \x06\x9f\x41\x81\xca\xfc\xf3\x4d\xa9\xd5\xab\x58\x51\x56\x74\xb5\ \x64\x09\xb7\x0f\xdc\x82\x42\xf5\xb9\xe4\xc7\xbb\x2a\x59\xd3\xaa\ \x5d\xcb\xf0\xe5\x92\x99\x3f\xbf\x72\x0b\xab\xe1\x87\x9d\x77\x76\ \x7e\xbc\xfd\x51\x94\xad\xdf\xbf\x56\x79\xba\xb2\x22\xeb\xa9\xcc\ \xa7\x40\x65\x81\x7d\xfa\xae\x40\x81\x77\xef\x7c\xfe\x51\x74\x11\ \xb0\xe5\xcb\x2b\x2b\x56\x51\x44\xc9\x8a\x95\x0f\x75\xa7\xfe\x38\ \x0c\x96\xdb\x9f\xc6\xef\x70\x0d\xed\xfa\xa7\x32\xe6\xd7\xb0\x35\ \x56\x99\x0d\xf9\x07\x37\x2b\x73\x43\xff\xcc\xfb\x43\xc3\x6d\x6e\ \x4b\xee\xbe\x9b\x4a\xb2\x75\xec\xe3\xc8\x1b\xba\x3a\xf0\x6d\x38\ \x3c\x5d\xef\x96\x2c\xd6\xd0\x35\xe8\x50\x0d\x8a\xc3\xfe\x19\xba\ \x3d\xef\xd3\x25\x68\x93\xfe\x8b\x47\xce\xb3\x4a\x2d\x59\x56\x34\ \x40\x6e\xac\x2b\x55\x01\x92\xd7\xe8\xe6\x1e\x1d\xb7\x70\xd9\xed\ \x8d\x57\x1b\x1f\xcf\xff\xf2\x6c\x50\x48\xa4\xf2\x83\x67\xc0\x41\ \x06\x4a\x7b\xa9\xbc\xa3\xc1\x35\xf1\x71\x23\x4b\x58\x66\x45\x97\ \x5d\x70\x77\xe9\xf2\x98\x64\x7d\xf5\xa7\x61\x56\x15\xf1\x43\x0b\ \x1b\x20\xb2\x91\x20\x81\xa7\xb5\xd3\x9e\x88\x0a\xc6\x57\x98\x6f\ \x42\x0d\xb7\x20\x68\xa7\xb1\xa7\x0b\x77\xa3\x6d\x68\xa3\x52\xae\ \x34\xf5\x47\x01\xa9\xa4\x12\x62\x82\xd8\x69\x50\x4b\x01\xba\xfc\ \xa8\x20\x6e\x40\x15\x57\x1b\x8b\x31\xf2\xe8\x5e\x6f\x0d\xd8\x61\ \xc7\x8d\x54\xda\x24\x98\x12\xc3\x91\xf4\x03\x2e\x27\x82\x98\x0a\ \x74\x3f\x2d\xf1\x0e\x19\x3e\xf6\x98\xe2\x35\x4f\xf1\x86\xd7\x4c\ \x65\x41\x46\x64\x2a\xf7\x14\xf0\x53\x8b\xae\x55\x69\xe7\x47\xb3\ \xf1\xd3\x8e\x63\x6b\xe2\xd7\xa5\x97\xba\xfc\xe0\x94\x98\x05\x90\ \xa9\x4b\x3f\x5e\x15\x16\xe1\x70\x6c\x9a\xd5\x8f\x59\x45\xba\x37\ \x57\x4c\xef\x18\x70\xe7\xa5\x1b\x75\x68\xa2\x85\xa8\x8d\x66\xd7\ \x3b\x91\x8a\x28\xa2\x2e\x7f\x10\xf6\xd6\x90\xba\x90\x21\x21\x63\ \x17\xb2\xb6\x5e\x57\xfe\x3f\xf8\x18\xa8\x76\x8d\xc1\x83\xe9\xad\ \x11\xb9\xd2\x8a\x22\x6f\xea\x82\x8b\x5d\xa3\x49\xd9\x9b\x1d\x08\ \xea\xd2\x9e\x85\x4b\x7c\xd6\xd5\x3b\xcf\x41\x47\x52\x5d\xef\xf4\ \x13\x19\x75\x66\xc1\xa3\xe0\x12\xfd\x88\xf8\x1e\x50\x77\xf1\x48\ \x04\xae\xe0\x1e\x24\x18\x7a\x85\xd9\x41\x24\x1b\x33\x4a\xd6\x5d\ \x03\x40\xe1\xf2\xe5\x63\x59\x52\xc2\x0d\x25\x62\x82\x9a\x8a\xaa\ \x07\xc8\x72\x9a\xb5\xd1\x2d\xfb\x58\x6f\x7f\x44\x8a\x8b\x54\xfd\ \x14\x89\x44\x2c\xe1\x26\xfc\x8f\x45\x83\x3d\xc8\x6d\xb4\x16\xfe\ \x7a\xd8\x1f\x0d\xbc\xc3\xae\x06\x5c\xf2\x89\x9d\x83\x61\x2d\x31\ \xe4\xa6\xaa\x00\x15\x2d\x64\x92\x99\xd5\x4e\x74\x42\x1e\xab\xe0\ \x53\x5c\x82\xe8\x42\x78\x0a\x5f\xea\x8a\x22\xd6\x42\x28\xa5\x63\ \xfd\x38\x66\xad\x94\x76\x00\x55\x31\x77\xe6\x3e\x96\x68\x58\xf6\ \xbd\xb3\x67\x3b\x88\x1e\xb0\xc4\x73\xd1\xd5\xc2\x6c\x01\x7b\x5e\ \xcb\xde\xa3\xbe\xed\x88\x04\x88\x48\xc0\x1c\xf3\x8d\xae\xa0\xf7\ \xc1\xcf\x75\xe1\x42\xa4\xb1\x8e\xf1\xe9\xdd\xa4\x62\xf3\x8c\x0b\ \x5e\x1b\x53\x57\x16\x3c\x05\x58\x2b\x2d\xbd\xa0\xc2\xa3\x97\xd1\ \x8e\x9d\x2c\xf5\xfe\xbf\x41\x15\x1c\x22\x1b\x5a\x6f\x2d\xde\x6c\ \x55\x74\xe6\xd9\x67\x60\x81\xf5\x47\xc1\x35\x90\xdd\xcf\x9e\x17\ \xfe\xd6\x00\x9f\xec\x8a\xdd\x4f\x03\x0e\x4a\x75\x62\x01\xb5\xb0\ \x39\xa6\xaa\x1e\x5b\x68\x2d\xbc\x7b\xd1\x47\xd2\x12\x19\xf8\xf8\ \x77\xe0\x82\xbf\x46\xf8\x1c\x21\xf4\x73\x9b\x67\x1f\x1c\xfe\x19\ \x37\x93\x1b\xbb\xf6\xd4\xfd\xc4\x85\xb1\x63\x98\x6b\x30\x79\x01\ \xfd\x24\x46\xdd\x1e\xba\x20\x01\x9d\x2a\xd8\x92\x99\x8a\xb5\xcf\ \xf1\x0b\x59\xe7\xa7\x9b\x15\x14\x3c\xaa\x63\xcd\x7a\xeb\x80\x11\ \x81\x0d\x28\x58\xe7\x73\x8d\xed\xb6\x7f\x00\x56\xee\x05\xd8\x81\ \x45\xce\x64\xe3\xd2\x0f\x97\x16\xfe\x61\x7e\x58\xf9\x14\x90\x41\ \xcf\x49\xae\x4f\xfc\xfa\x43\x96\x69\x21\x19\x9c\x5a\x0f\x64\x82\ \x14\x13\x0d\x38\xa5\x00\x35\xf8\x1b\x1b\x10\xc6\x3d\xcb\xb8\xe2\ \x01\x0f\x70\x82\x02\xc1\x41\x3e\xda\x05\x25\x4a\x38\x73\x1f\x91\ \xce\xa0\x8b\x33\x20\xe1\x1e\x57\xab\x41\x3e\x6a\x77\x3b\x0d\xe4\ \xa3\x1f\x8f\x5a\x1f\x16\x7e\xc0\xbc\x03\xfc\x00\x6e\x2e\x28\x93\ \xf3\xf4\x66\x00\x66\x41\x86\x12\xa0\xe9\xca\x5b\x16\x97\x3d\xac\ \x35\x90\x2d\xfe\xb3\xb9\xc2\x1d\xce\xf0\x8c\x3b\x0c\x31\x44\x48\ \xc8\x00\x09\x0f\x17\x96\x06\xa8\x46\x4a\xef\xcb\x00\x91\x32\x90\ \x81\x7e\x48\xf1\x0c\x70\x62\x03\x12\x0a\x70\x1b\xf3\xdd\xae\x01\ \xe0\xb0\x43\xce\xe2\x16\x1d\x4a\x2c\xce\x44\x57\x13\x51\x8f\xa4\ \x57\xab\x95\x51\xc7\x27\x3f\xc0\xc2\x3b\x52\x91\x46\xed\xfd\x10\ \x2b\x9a\x79\x42\x0f\x8c\x78\x87\x22\xd6\xe0\x0e\x09\x04\xd1\x19\ \x66\x47\xbb\x26\xde\x2f\x1f\x76\xc8\xc7\x3b\xa4\x98\x81\x3f\x70\ \xe3\x1a\xa5\x59\x42\x3e\x9c\x80\x84\x1a\x1c\xd2\x13\xe6\x03\x0d\ \x38\x56\xa8\x0a\x2c\x54\x51\x26\x58\x28\x40\x08\x7a\xa8\x2d\x03\ \x48\x4f\x4e\xd4\x12\x8e\x9b\x7a\x18\x20\x17\xdc\x51\x29\xfc\x30\ \xc0\x03\xfa\x58\xc4\x67\x6c\xe2\x19\x7b\x34\xe2\xdf\x06\x79\x38\ \xf3\x69\xc0\x13\x40\x69\xa2\x27\x9d\x20\xbb\x0a\x12\x68\x92\x35\ \xb8\x47\xe3\x2c\x20\x97\x06\x60\x61\x4e\xeb\xeb\x64\x3f\xe0\x56\ \xa4\xbf\xa9\x0a\x54\xba\x88\xda\x12\xca\x85\x97\xe1\x84\x92\x8e\ \x20\x9a\x03\x19\x90\xd0\x8e\x57\xea\x84\x27\x31\xc8\x80\x13\x58\ \xd0\x83\x22\x1a\xb1\x96\x3d\xd8\x63\x32\x43\x94\x81\xf1\x11\x28\ \x2c\x9e\xfe\xe8\xa2\x09\x33\x70\x06\x2e\x1a\xd3\x76\xdc\x00\x47\ \x1a\xcf\x00\x8e\xb9\x78\x02\x0b\xe0\x58\xc2\x26\x59\x48\xb2\x31\ \xfd\xed\x4b\x4e\x83\xdb\xbd\xde\x91\xb9\xd3\xdc\x25\x2f\xfd\x20\ \x43\x88\x74\x51\x0b\x3a\x7e\xcb\x9c\x2c\xe9\x90\x13\x9c\xd0\xce\ \x4d\xf4\xd1\x88\x26\x35\xe9\x1d\xe2\xd9\x83\x4d\x20\x71\x84\x04\ \xf2\x84\x4c\xbf\x72\xbe\x0c\x3c\x21\x04\xaa\xf8\x67\x05\xc1\xe1\ \x84\x1a\xd4\xa0\x00\x05\x55\x68\x03\xfa\xf1\xcc\x25\xac\xef\x1d\ \xaa\x00\xd5\xdf\x74\xa1\x0a\x59\x10\x8a\x4c\x2b\x0b\xce\xda\xa4\ \xf5\x83\x82\xa5\x11\x09\x21\x28\x12\x03\x41\x7a\x12\xc2\x89\xc1\ \x1f\xa3\xc0\x65\x49\x37\x71\x4b\x5b\x9a\x94\x05\xcf\x10\xeb\x1d\ \xee\x01\xa2\x7b\x64\xc0\xa0\xe0\xc8\x87\x6f\x68\x6a\xc2\x78\x64\ \x00\x0b\x4b\xd4\x29\x13\xf9\xd9\x4f\x70\x58\x00\x1c\x60\xe4\xd8\ \xe2\x86\xd3\x8f\xec\x3d\x2f\x48\x84\x92\xd3\x5b\x72\x96\x1a\xd4\ \x3c\x8e\xad\x58\xbb\xda\xcb\xb8\x0a\x92\x2a\x98\xc3\x1c\x61\xc0\ \x44\x18\x46\x31\x8a\x3d\xa6\xb5\x88\x26\x05\x6d\x59\x71\x89\xcb\ \x40\xb2\xa1\x06\x4f\xa0\x62\x06\xf2\xd1\x00\x4c\xe6\xc6\x99\xf1\ \xa0\xfe\xa0\x5e\x2b\xc8\x8d\x49\x9e\xe1\x09\xf9\x00\x87\x6f\x0e\ \xa7\x01\x55\xb0\xb0\x00\x57\x85\x8e\x2c\xd0\xe4\x31\x92\x9d\x06\ \x5e\x77\x91\x56\xb4\x48\x09\xa2\xed\x51\xf6\x21\x3c\xb9\x42\x3e\ \xbc\x90\x81\x51\x84\x81\xa5\x9c\xdd\x63\x59\xc9\x2a\x5a\x5a\x7e\ \xd6\x88\x90\x65\xc3\x19\xc2\xc0\x4c\x4f\x60\x6e\x7e\x61\x01\x47\ \x06\x3c\x31\x5b\x63\x72\x83\xaf\xb1\xf5\x84\x3d\x71\xd3\x15\x55\ \xf0\xc8\x4b\x72\xb2\x4f\xbd\xf4\xb2\x28\x29\x19\x57\xa9\x0a\x04\ \xdc\x73\x25\x42\xb8\x0c\x84\x61\xb3\xd9\xed\x6c\x3c\x11\x6c\x56\ \xb3\xde\xf2\x0e\xdc\x4d\x2b\x84\x8b\x18\x5e\x36\x28\x91\x76\xb5\ \x5b\x8c\x27\xec\xf0\x04\xd9\xb6\x97\x7c\xdc\x08\xc1\x19\x9c\x80\ \x85\x7c\x2e\xc6\xa8\x7f\xf0\xa4\xea\xc8\x80\x28\xa7\x9a\xa5\x16\ \x7a\xa9\x17\x64\x78\xa6\x17\x9f\x60\x2f\xc0\x02\x1e\x70\x43\x14\ \x51\x85\x18\xf4\x80\xb3\x9d\x05\x32\x90\xc3\x80\xcb\x51\xf8\xa3\ \xa5\x10\x26\xeb\x2d\x53\x9a\x56\x25\x1b\xd1\xb4\x6c\x70\xc2\xec\ \x32\xf9\x35\xc0\xf2\xd4\xc3\x1f\xee\x65\x3c\xce\x70\x86\x0c\x80\ \x23\x26\xaa\xb0\x22\x51\x43\x79\xd5\x02\x1c\xa0\x40\xb5\x81\xd5\ \xfe\x7a\xe0\xf5\x13\x38\x26\x2f\xc0\xce\xd5\xb1\x40\x2c\x6b\x8e\ \xec\xfe\x38\xc1\xd6\xfd\xf1\x75\x7b\xe0\x04\x20\x43\x38\xc9\xa1\ \x55\x32\x0b\xc8\x0a\xe1\x3d\x86\x17\x09\x30\xfd\x40\x3e\x4d\x68\ \x07\x4f\xfc\x20\x03\xf1\xc8\x6b\x96\xad\xe0\x89\x10\xd4\x60\xc4\ \x23\x2d\xc0\x13\x88\x87\x42\x50\x98\xf6\x3d\x66\x8c\x96\xb4\x58\ \x13\x21\x3e\x9d\xee\x0f\xaa\x78\xf3\xdf\x90\x00\x0a\x39\x17\x84\ \x27\xdf\x00\x87\x17\x46\x81\x09\x20\xd7\x1a\xc8\x77\x0e\x72\x67\ \x57\xaa\x60\xd1\x6e\x82\x05\x80\xfe\xb3\x4a\xd7\xfa\xb7\x3b\x90\ \x90\x1b\xe6\x8d\x2b\x49\xec\x8a\x9e\x49\xf7\xf2\x09\x67\xf0\x29\ \x12\x94\xd7\x8f\x4e\x4a\x71\x94\x58\x83\x87\x4f\x04\x18\x63\xfc\ \xac\xc7\x36\x2e\xae\x45\x35\x15\x38\x07\x57\xff\x63\x2b\x16\xc8\ \x07\x2a\x50\x61\x86\xce\xde\x9a\xb3\x60\x8d\xe7\xbb\x39\xbb\x67\ \x7a\x37\x99\xd0\x82\x06\xed\x3b\x75\x19\xa2\x1a\x34\x80\x89\xa6\ \x01\x87\x27\xc0\x61\x45\x42\x3a\xdb\x0a\xe0\xf0\x20\x08\xef\xe1\ \x04\xdb\x58\xb5\x92\x57\x73\xcf\xfa\xe0\xb6\x9e\x99\x44\x88\x67\ \xf2\xfb\xc0\x5b\x40\x55\xc7\x34\xce\x21\xce\x3f\xbc\xc4\x37\xfe\ \xcc\xe1\x0f\x75\xaf\x9b\xdd\xb4\xfe\xf1\xba\x6d\xbd\x60\x54\x80\ \x15\xac\xd6\xb5\xb3\xaf\xcf\xea\x5d\x23\xe6\xf2\xd0\x17\xb6\xa0\ \x27\x14\x2a\x45\x83\x3b\x3b\xc4\x5c\x1e\xb1\x97\xb1\x10\x82\xab\ \x29\x2f\x79\x58\x15\xa5\xe8\x2a\x7e\x71\xb6\x75\xec\x34\xa0\x30\ \x2c\xd6\x5c\xc9\x55\x57\xa8\x42\x15\x16\x40\xc5\x28\xcc\x80\x8a\ \x75\x58\xa0\x08\x16\x68\x77\x0f\x6a\x8d\x72\x4c\xc4\x73\xc2\x5b\ \xd7\x3a\xcc\xe9\xdd\xce\x99\xff\xfa\xbb\xee\xdc\x04\x94\xef\x40\ \xc8\xd2\x70\xe3\x07\x4f\x70\x42\x4e\x0f\x4e\x3b\x68\x3b\x21\xb5\ \xf9\x30\xea\x19\x04\x49\xc5\xf6\x20\x61\x0e\xa9\x12\xdd\xbf\xcc\ \x72\xd1\x06\x48\x66\x3d\x85\xc5\x31\xd5\x7f\x28\x18\x45\x77\x1d\ \x15\xfa\xd0\xfa\xba\x8b\x20\x02\x58\x68\xbd\x9d\x98\xf0\x87\x19\ \x36\x3b\xd6\x3e\x0a\x19\xde\x0a\x1e\x6b\x0d\x94\x1c\x5a\x09\xdf\ \x7c\xd5\x30\xbd\x9d\xe2\xd4\x09\x0e\x49\x4f\x9a\x9f\xb8\xcd\x67\ \x5c\x0d\x76\x28\x22\x4d\x5b\x8b\x64\x83\xd7\x9a\xf1\x62\x87\x28\ \x0d\xc7\x69\xed\xa8\x30\x12\x69\xc1\xbd\x3c\xa2\xa2\x10\xc6\xe8\ \x3c\x2a\x8a\x00\x8b\x7c\xb4\x7b\x14\xb0\x38\x86\xf4\xcd\xfe\x3e\ \xef\xce\x6e\xe2\x1e\x64\xbd\xf3\x81\x13\xcc\x52\x07\xaf\xde\xc9\ \xb8\xe4\xe3\x3c\xe9\x49\xc2\xd2\x78\x42\x9d\x96\xb4\x7d\x96\xa5\ \x70\x87\x0e\x07\x34\x1f\x96\xbe\xb4\x28\xe9\x98\x8a\x1a\xa4\x22\ \xab\x71\x43\x3c\x78\x61\x16\x8e\xf1\x44\x52\x42\x29\xc0\x85\x63\ \x6c\xc0\x7c\x31\xe3\x0a\xdf\xf0\x0d\x06\x50\x4b\x98\x00\x0b\xc6\ \xe0\x01\x22\x70\x0c\xc7\x50\x04\x28\x37\x0a\xa8\x00\x0b\x85\xe0\ \x79\x98\x50\x64\x42\xd6\x52\x4e\xc6\x52\xe2\x27\x6f\xed\x74\x7e\ \x64\x05\x7e\x2a\x15\x4f\x4e\xf0\x64\x7f\xe3\x04\x19\x06\x16\xef\ \x07\x48\xe8\x52\x7b\x7c\x87\x70\x22\xe6\x05\x52\xc0\x53\x1e\xd4\ \x4f\x96\xc6\x06\xf7\x40\x47\xc6\xb2\x69\x6e\x12\x19\xde\x46\x7c\ \xbc\xd1\x15\x37\x26\x79\x20\x47\x25\x57\x97\x75\x9d\xf5\x0c\x83\ \xb6\x09\x66\x20\x02\x1f\xe0\x01\xd1\x77\x0c\xb0\x00\x64\x1d\x28\ \x02\x71\x80\x0a\x6d\x97\x6b\xb4\xe6\x4e\x7f\xd6\x47\xb9\x26\x56\ \x67\xf7\x7d\xdf\xc7\x82\x2d\x98\x4b\xeb\x27\x5e\x98\x64\x3e\x9e\ \x90\x0f\x77\x90\x46\x22\xe4\x73\xf3\x17\x6d\xb1\xc5\x4f\x1f\xe4\ \x04\x05\xe0\x04\xba\xe0\x7f\x1c\xc4\x41\x87\x22\x13\xfe\x4b\xd2\ \x1d\x52\xd2\x00\x8c\x28\x13\x65\x31\x6e\x70\x86\x29\xe5\xa1\x6e\ \xb0\x50\x89\xec\x16\x82\x66\xd5\x03\x14\x68\x0c\xc6\x50\x08\xc7\ \xb0\x72\x5b\x07\x0b\xd2\x37\x0a\x13\x66\x76\x6c\xa7\x6f\x84\xf6\ \x0c\xa4\x87\x5d\x63\x75\x0f\xae\xe8\x8a\x84\xc6\x67\xea\x87\x44\ \x4e\x60\x01\xb6\x58\x3f\xc4\x76\x5a\x5e\x26\x7f\xb3\xc5\x0d\x1e\ \xe4\x04\xd4\x55\x74\xb7\x45\x45\x9a\x46\x24\x4a\x37\x07\xc5\x43\ \x1d\x8c\xd2\x00\x3f\x10\x25\x51\x52\x7c\x33\x71\x00\xef\x50\x47\ \x91\x58\x25\x82\x41\x09\x01\x80\x72\x98\x07\x0b\x45\x60\x06\x21\ \x88\x56\x2c\xc0\x02\x0b\x20\x8a\x5b\x98\x79\x66\xc0\x75\x95\xe8\ \x79\x66\x90\x56\x64\x98\x5d\xa0\xf5\x8a\x45\x86\x5d\x6c\xd7\x86\ \xaf\xc8\x82\x2b\xa5\x7e\x75\x74\x0f\x5c\xf6\x47\x23\x55\x03\x21\ \xe4\x04\xf1\xa0\x87\xed\xe5\x8b\xe2\xe5\x05\xd1\x00\x6d\x42\x87\ \x05\xf1\x20\x4a\x05\xb0\x07\x28\xf4\x18\xf2\x72\x1a\x76\xc1\x33\ \x14\x39\x1a\x46\xd5\x0e\xab\xa6\x40\xb4\x50\x27\xfd\xb1\x1c\x07\ \x00\x0b\x01\x70\x81\xfa\x40\x6b\x66\x50\x04\x5c\xe8\x8d\x68\x95\ \x56\xec\xb4\x0e\xda\x27\x02\x99\x77\x72\xeb\x56\xfe\x89\x61\x07\ \x7a\x5e\xe8\x72\xed\x04\x61\xb0\x88\x86\x26\x88\x6b\x38\xf9\x8a\ \x6c\xb8\x52\xb9\x74\x07\x01\x06\x59\x43\x74\x06\x90\x35\x62\xe0\ \xe0\x01\x07\x47\x90\x4e\x00\x0e\xe0\x20\x06\xd1\x56\x03\x23\x15\ \x02\x59\xc5\x41\x05\xc0\x3c\xcf\x52\x55\x90\xb1\x36\x14\x29\x1c\ \x62\x02\x89\xd4\x38\x6d\x4f\xf8\x1a\x94\xe0\x94\x20\x59\x04\x01\ \x50\x08\x2e\xb9\x8e\x98\x60\x92\xb0\x60\x06\x3d\x10\x8e\x98\x80\ \x09\x68\xc5\x75\x18\xb8\x0e\xeb\x80\x79\x27\x07\x76\x28\x47\x86\ \xfe\xb0\x72\xda\x05\x7e\xe0\x17\x4f\xec\xa8\x67\x65\x58\x8f\xb0\ \xd8\x82\x2f\x68\x83\xfd\xe6\x04\x51\xc9\x98\xe2\xd5\x61\x15\xe8\ \x6c\xd3\xe0\x8f\x61\xa0\x07\x9e\x20\x06\x8e\xb9\x8f\xa6\x85\x2c\ \xd4\xa1\x8c\x62\xb3\x36\xaa\xc1\x88\x94\xc2\x42\x91\x87\x35\xa4\ \xf4\x71\xe2\x21\x18\x9e\xd0\x79\x16\xa0\x0f\x01\x90\x8d\xb0\x59\ \x08\x01\xc0\x96\xa8\x70\x92\x54\xf8\x0c\x73\x49\x85\x98\xb0\x0e\ \x45\xd0\x8d\x5c\xa7\x97\xc2\xa9\x75\x53\xc8\x6b\x1c\xb8\x6b\x49\ \xf6\x4e\xed\xb4\x93\x79\x86\x93\x6c\x08\x7e\xca\x09\x83\x21\x72\ \x06\xfe\xe0\x0f\x2f\xe8\x8f\xd3\x19\x5b\xe0\xfe\x60\x0c\xce\x06\ \x0e\x3e\x95\x0f\xc6\xc0\x0d\xd5\x10\x06\x4f\x90\x77\x1f\x24\x6d\ \xba\x50\x45\xd5\x66\x40\xd0\x92\x3e\xc5\xe7\x78\xc6\x17\x13\xaa\ \x16\x20\x3d\x74\x2f\x93\x07\x1b\x97\xe0\x12\x5f\xa7\x7d\xd9\x18\ \x92\x2e\x89\x0a\x69\x79\x0c\xeb\x90\x56\xeb\x10\x00\x6f\xb9\x9b\ \xbb\x89\x56\xa3\x60\x92\xeb\xd0\x9b\x30\x29\x9c\xeb\x50\x86\x65\ \xb5\x59\xf1\x76\x86\x62\xf5\x59\xf1\x84\x6b\xb6\x94\x98\xe7\x07\ \x94\x8b\x59\x47\xe3\x75\x64\x67\x00\x99\x5d\x06\x0e\x4f\x20\x05\ \x4a\x99\x65\xe0\x00\x48\xfe\x60\x0c\x7a\x00\x0e\xe4\x19\x06\x3d\ \x75\x06\x21\x00\x88\x9b\x96\x4d\xb6\xb1\x18\x76\xc0\x95\xd0\x58\ \x31\x91\x21\x6e\x0f\x15\x96\x6c\x40\x06\xb0\xb1\x1c\xdf\x10\x9c\ \xfa\xe0\x81\x9e\x57\xa0\x22\x20\x02\xfd\x59\x08\xb4\x19\x82\xeb\ \xc0\x8d\xec\xe6\x8d\x73\x49\x97\xe2\x28\x8a\x0d\x8a\x09\x66\x90\ \x79\x2f\x29\x9c\x61\x05\x4f\xa2\x77\x64\x28\xc5\x6b\x9e\xa5\x93\ \x31\x67\x68\xb0\x08\x7e\x7f\x24\x56\x2f\x18\x5e\x35\x70\x60\x23\ \x35\x52\x83\x77\x5a\x73\x2a\x06\xce\x06\x03\x96\x09\x03\x9e\x50\ \x0d\xfe\x10\x0f\x61\x20\x62\x23\x46\x95\xfe\x63\x13\x02\x7f\xa0\ \x18\xa0\x51\x55\xef\xd9\x88\xea\x23\x9f\xd4\x88\x63\x73\xc0\x0f\ \x97\x21\x2f\xdc\xa0\x8e\x5c\xc7\x79\x4e\x9a\x97\x2d\x79\x0c\xb1\ \x09\xa5\xc7\xe0\x8d\x66\x10\x00\x1a\xa8\x0f\xe7\x88\x09\x0b\x10\ \x56\xb7\xa4\x0f\x22\x80\x0a\x73\x79\x8e\x16\x10\xa1\xe8\xd8\x97\ \x85\xc9\x81\x60\xf5\x67\xcf\x90\x5d\xc9\x29\x56\x79\x66\x56\x6c\ \x2a\x77\x7d\x44\x52\xd7\x19\x83\x73\xfa\x04\xfe\x10\x06\x75\x5a\ \x49\x67\x20\x06\x29\xfa\x61\xcc\x60\x94\x61\xc0\x0c\xd3\x60\x01\ \x5e\xe0\x05\xf1\xf0\x77\x74\xca\x65\x57\x83\x4a\xf3\xb1\x88\xcf\ \x28\x2c\x65\x81\x6d\x0a\xd8\x23\x07\xb3\x16\x82\xe1\x0a\x20\xd9\ \xa4\x19\x38\x92\x73\x79\x9b\x22\xa0\x81\x4c\xda\xa4\x01\x70\x0c\ \x85\xf0\x01\xb4\x79\x8e\x98\x47\x7d\x97\xb8\x00\x28\x69\x85\x9d\ \x17\x82\x0b\xa0\x97\xed\x36\x7d\x80\xa9\xab\x46\xf6\x79\x36\x67\ \x6f\x49\x76\x0f\x40\xd9\x9c\x72\x97\x98\x9b\x40\x52\x67\x97\x8b\ \xfa\x78\x60\x4f\x10\x06\xd5\xd9\x53\x48\x74\x99\x93\x66\x01\xd1\ \x16\x06\x71\x00\x03\xd5\x30\x5d\x5e\x30\x5d\xf1\x50\xb2\x19\x30\ \x07\x5a\x14\x3b\x73\x22\x3c\xc5\x27\xfe\x3c\x8c\x58\x7c\xa0\x34\ \x6e\xa9\x09\x0f\xd8\x33\x59\x78\xa4\x2b\x60\xa1\x96\xb1\xf9\x9b\ \x1a\x68\xa5\x5c\x67\x8e\xeb\xa0\xaa\x17\xa8\x7d\xf3\x0a\xa5\x99\ \xb7\x0e\x97\xaa\x0f\x0b\xd0\xaa\x21\xb8\x09\x13\x78\x0c\x0b\x70\ \xab\xfa\xf0\x75\xda\xb8\x6e\xed\xe6\x04\x6a\x78\x9c\x9e\x65\xb1\ \x9f\xd7\x64\xd0\x99\xa1\xd7\xd5\x93\xd0\xb9\x52\xd7\xf5\xa6\x78\ \xe8\x04\x62\x70\x60\x16\x6b\xac\x6d\x75\x5b\x52\x90\x85\x1f\xe6\ \x05\xa7\xe5\x05\x7a\x00\x0b\x7e\x3a\x5d\x7e\xa5\x9d\xf1\x20\x8c\ \xe9\xd9\x3b\xbf\xd4\x8c\x2c\x62\x5e\x8d\x58\x55\x81\x54\x26\x4b\ \x05\x37\xd3\xc6\x80\x49\x91\x23\x94\xe0\x09\xf3\xfa\x01\x9d\xa8\ \x96\x45\xe0\xa5\xa4\xda\x6e\xe7\x88\xb4\x4b\x1b\xaa\xe8\x2a\x02\ \xd0\x47\xaf\x9c\xca\x6e\xfa\xa0\x81\x21\xc8\xa5\x28\xf9\x0c\x98\ \x37\x0a\x2c\x80\x09\xd3\x07\x0b\x61\xc7\x6e\x31\xe9\x0f\x98\x40\ \x52\xcf\x40\x52\x1c\x48\x64\x45\x46\x9c\xbb\x06\x8b\xaa\x98\x67\ \xda\x95\x4c\xab\x47\xb6\x61\xeb\x8a\x20\xf2\x47\x14\x9b\xb6\x94\ \x74\x5a\x23\xf6\x04\xd5\x20\x05\x7a\xc0\x8b\xbd\x14\x06\x95\x34\ \x0a\x30\x00\x03\xd2\xea\x0f\x62\xfe\x50\x0d\x4f\x49\x45\x4e\x30\ \x07\x34\x9a\x01\xf0\xd0\x0f\xf8\xb3\x04\xc0\xf4\x5a\x8e\xe7\x09\ \x56\xf3\x23\xe4\x16\x02\xe3\xb4\x80\x8b\x2b\x0b\xb2\xd0\xa4\x9c\ \xdb\x89\xe6\xa3\x96\xe9\x6a\xa0\xdd\x38\x0a\xfa\xba\x75\xa3\xcb\ \xae\x18\xc8\xb9\x50\xaa\x96\x95\xdb\x75\x74\xa9\x9b\xed\x96\x56\ \x5c\x3a\xc0\xfa\x8a\xaf\x5a\x67\x06\xcc\x50\x89\xc5\x59\x64\xf1\ \x86\x5d\x66\x00\x73\x6a\xda\x47\x9b\x55\xb6\x09\x1b\x8b\x61\xeb\ \x53\x6c\x35\xb1\x69\x1b\x06\x50\xc9\x56\xa8\x95\xb6\x62\x60\x90\ \xd3\x00\x07\x7a\xf5\x01\xd0\x5b\x03\xfe\xc0\x0c\x2e\x5c\xac\x5e\ \xf0\x94\x9a\x59\x74\xe2\xe5\x90\x9f\xf4\x4b\x73\x55\x1a\x38\xfc\ \x14\x21\xa0\x80\x58\x83\xb2\x20\x72\x03\x63\x19\x12\x5d\x63\x0c\ \xf4\xba\x85\x44\x4b\xaf\xf3\xab\xb3\xf1\xda\xb3\x96\x3b\x97\x68\ \xb5\x00\xbe\x69\x92\x2d\x09\xbf\x01\x40\xaa\xa7\x6b\xc0\x65\x98\ \xba\x98\x88\x56\x2a\xd7\x81\x16\xc0\x81\xb0\xc0\x0c\x62\x78\x76\ \x3d\x10\x06\x13\x8c\x09\x68\x8a\x6b\xda\x65\x52\x2c\xb5\x67\x4f\ \x26\x77\x9b\x70\xc6\xbb\xc6\xc1\xca\x84\xb6\x20\x6c\x9d\x57\x13\ \xa2\x62\xf0\x55\xfe\x40\xb7\xfe\x7a\xe5\x01\x96\xe6\x04\xd5\x10\ \x07\x63\xec\x05\xd6\xdb\xc7\x5e\x00\x95\x5a\xd4\x65\x2b\x84\x50\ \xfd\xa0\x5b\x54\x36\x17\x94\x4c\x2c\x3e\x1c\x20\x46\x07\x3b\x43\ \xfc\x11\x39\x02\x7d\xf3\x1a\x7d\xf1\xea\xbf\x90\x6b\x3e\x5b\xb8\ \xb3\x48\xbb\x75\xa5\x1a\x8e\xcf\x60\x06\xbe\x19\x9b\x9c\xea\xca\ \xc7\xd0\xba\xe7\x08\x7a\x09\xaa\x9b\xdf\x88\x56\xb5\x66\x01\x96\ \x88\x7d\x9e\xb7\x67\xcb\xb9\x75\x53\x28\x82\x69\x1a\x94\xb3\x7b\ \xc6\x70\xfc\x7d\xbf\xbb\xb6\xea\xe7\x53\x4e\x90\xc7\x8b\x6c\x44\ \x61\xb0\xc8\x7d\x5c\xc2\x5f\xe5\x01\x28\x6c\x4c\x7a\xca\x06\x3d\ \x10\x07\x59\xc0\x0c\xd5\x30\xad\xd3\x1a\x0d\xb2\xf6\x04\x97\x76\ \x57\xaa\xe0\x14\x61\x56\x3c\x99\x44\xc9\xa5\x81\x0b\x8f\x8a\x44\ \x21\xf0\x1c\xd3\xa6\xbe\x1b\x89\x13\x39\xc2\xb9\xf3\x7b\x81\x68\ \x19\xbf\x4a\x0c\xa5\x17\x28\xaa\x97\x78\x8e\x05\x9c\x92\x5d\xca\ \x8d\xbf\xa9\x0f\xaa\x9a\x81\xf6\xda\x6e\x57\x8a\x89\x73\xb9\xb4\ \x72\x49\x76\x27\xf7\x97\x80\x79\x76\x22\x68\xc6\x7a\x76\xc6\x1a\ \x1d\x94\x6f\x2c\xa3\xc9\xb9\x52\xc5\x0a\x48\x80\xe4\x53\x77\x60\ \xb1\xd5\xf0\xcd\xd3\x2a\xfe\x05\x59\x20\x05\x9a\xf9\x55\x69\xfb\ \xb6\xff\x94\x0f\x5a\xe4\x04\xcc\x00\x03\x5e\x80\x0a\x2e\x8c\xd2\ \x52\x90\x0f\x79\xe7\x65\xaa\x50\x50\x66\x74\x42\x26\x16\x16\x73\ \xe1\x4b\x05\xa0\x80\x48\xc0\x62\xf1\x40\x06\xea\x9b\x55\x59\x63\ \xcf\xae\xc0\x0d\xfe\xdb\x89\x19\x18\xca\x46\x5c\xb4\xe8\x9a\x81\ \x48\xdb\xaa\xa5\x4a\x85\x72\x60\x97\xa2\xfa\x9a\x16\xd0\xa4\x96\ \x7a\x89\x57\x8a\xcb\x5b\x6d\x4b\xcf\x70\xaa\x12\x0d\x93\x7b\x06\ \x5a\xb7\xea\x8e\x62\x75\xc1\xf4\x06\xc7\x7c\x64\xcc\xf2\x64\x52\ \x7d\x66\x9d\x7f\xc4\x47\x68\x0b\xce\x7f\x3c\x0d\x2b\xb0\x02\x7a\ \x50\x0d\x7f\xf7\x55\xd1\xac\x07\xd7\x6c\x3b\x1e\xf0\x04\xa7\x15\ \x06\xdf\x8c\x0a\xd5\x50\xd3\x27\x2d\x05\x52\xe0\x05\xe5\x29\x06\ \x25\x8b\x05\xcc\x43\x70\x58\x30\x57\x44\x4d\x57\x90\x88\x35\x29\ \x0b\x37\x7b\x40\x95\x21\x30\x07\x4f\x6d\xcf\x9e\x20\x8a\x22\x40\ \xd5\x57\x1c\xaf\x50\x7a\xc4\x43\xab\xcf\x11\x5a\x6b\x56\x3a\xc0\ \x98\xa0\x0f\xfc\x79\xaf\xf2\xfa\x89\x5c\xc7\x75\xbb\xf9\x0c\x72\ \xb0\xae\x23\x49\x85\x5c\x7c\xc6\x66\xe0\x79\x27\xb7\x9c\x25\x25\ \x82\x61\x0b\x94\x74\xfe\x0c\x73\x60\x45\x64\xc9\x5c\xac\xf2\x74\ \x07\xcd\x7c\x60\x46\xd4\xcc\xcd\xfc\xc7\x5e\x70\x60\x74\xbb\x02\ \xca\xa0\x07\xd3\x60\x9d\xce\x0c\x03\x7a\x50\x41\x7a\x20\x94\x67\ \xe0\x05\xcc\x00\xdf\xcc\xf0\xb1\x2e\x3c\x0d\xdc\xc0\xd2\xf1\x20\ \x06\x19\x10\x02\x7b\x80\x50\x0a\x89\x28\x72\x41\xc9\x04\x02\x96\ \x74\xa4\x3c\xb1\xe3\x02\xba\xa0\xbe\x99\x9c\x13\xcb\xc1\xdb\xfe\ \xeb\xa4\x93\x1b\x92\x9e\x4c\xbf\x2d\xa9\x81\x0b\x70\xaa\x4b\x6b\ \xcb\xad\xca\xdb\x01\xe0\x75\x21\xc9\x85\x1a\xb8\x6e\xb7\x8d\x89\ \xba\xa9\x97\x0b\xa0\xca\x21\xf8\x63\xba\x7c\x72\xbd\xe6\x59\x74\ \x4c\x8a\x77\x3d\xdd\x46\x66\xb1\xd6\x05\x48\x0a\xbb\xb6\xd9\x6d\ \xb1\xd6\xb9\xdd\x60\x35\xad\xe8\xcd\x0c\x7a\x50\xde\xe6\x2d\x05\ \xe4\xe9\x0f\x93\x5d\x0d\x30\xc0\x9d\x87\x03\x07\x5e\x70\x35\xc0\ \x78\xd2\xf3\xed\xc2\x35\x3d\x0d\xd3\x00\x0e\x21\xfb\x04\x7b\x00\ \x90\xe0\x60\x6d\x44\x35\x57\xc1\xe4\x4b\x3d\x0c\x7c\x59\xa5\xda\ \xb1\x63\x45\x2e\xe0\x41\x21\x42\xa4\x0c\x8e\x79\xda\x57\x8e\x99\ \x27\xe1\x9d\xf8\xcf\xe8\x7a\xca\xa5\x6a\xaa\x17\x6e\xaa\xa1\xdb\ \x75\xf1\xca\x85\xfe\x7a\xf9\x92\x0c\xfd\x59\x52\x0c\x0b\xa4\xaa\ \x92\x9f\x85\xc6\xae\xcb\xd0\x26\xc8\x8a\x41\x49\xb6\xd6\x35\x7e\ \x7f\x19\xd2\xab\xb7\xd7\xd1\xdd\x03\xd3\x7a\x5d\x07\x66\xcc\x1e\ \x2d\x06\xd3\x60\xde\xd3\x3b\x0d\x30\x20\x05\x27\x0d\x03\xd3\x70\ \xd9\x30\x60\xcd\x56\x00\x07\xd7\x20\x06\xa7\xf5\x04\x5e\x30\xd9\ \x71\x50\xd3\xaf\x5e\xd3\x96\x1d\x8c\xb7\x85\x50\x46\x15\x0f\x97\ \xb3\x73\x03\x37\xbe\xdc\xd0\x0f\x03\x75\x57\xcd\x12\xcf\xfb\x8d\ \x74\x1e\xb7\xc9\x1e\xe1\x0a\xaf\xca\x79\x6a\xd9\xae\x41\xcb\x92\ \xf1\x4b\x9b\xaa\x0a\xc0\xf8\x7b\x8e\x4b\x2b\xc5\xac\xca\xa5\x95\ \x6b\x01\x18\xf8\x9a\x55\x6a\xb5\x9c\x15\xb5\xc5\x3d\xa5\xa4\xfa\ \x8d\x9f\x25\x64\xa0\x88\x60\x66\xa7\x93\x1c\xbd\xdd\x97\xae\xe3\ \xd5\x19\x06\x23\xdd\x03\xef\xfe\x82\x4e\xf0\x97\x61\xd0\xd7\xda\ \xcd\x67\x7f\xe4\x05\xd3\xeb\xcd\xa1\x9e\x05\x7a\x10\xe4\x7a\xc0\ \xd2\x90\x3d\x99\xca\x10\x06\xe2\xd5\xc2\xb0\x1e\x07\x0c\xcf\xf0\ \xd3\x6b\x01\xfe\xf0\x04\xda\xdd\x61\x4e\x59\xb2\xcc\x84\x6c\xa0\ \x1d\x1f\x58\x00\x59\xc8\x68\x45\xb0\xa3\x0b\x4f\xd0\x0e\x45\xa7\ \xda\xd3\x06\xfe\x3b\x8a\x7b\x13\xae\xc0\xca\xc7\x10\xe7\xe6\xc8\ \xca\x21\x49\xd5\xb3\xd9\xae\x97\x8b\x97\x3f\xab\x0f\x1b\x6e\xb9\ \x68\x09\x76\x99\xc7\x59\xc1\x6d\xa5\x69\xf5\xb3\xa8\xa0\x92\x65\ \xb5\x75\x30\x47\x9c\xb7\x46\x64\x7c\x64\xd7\x8c\x6e\xe9\x67\x5c\ \x9d\xef\x0e\xef\x52\xf9\xc7\x64\x5a\xd2\x3d\xf0\x8a\x3e\xe5\x53\ \x51\x26\xd9\x88\xfc\x55\x48\x0e\xf0\x83\x4d\xd8\xd5\x70\x53\xca\ \x9b\x05\xd5\xd0\xc3\xc0\x38\x0d\x0c\x9f\x05\xdc\x2c\x02\x6a\x0f\ \x0b\x9e\x3e\xad\xe0\x10\x09\x01\xd5\x83\x61\xb0\x5e\x94\x3c\x53\ \x34\xf5\x07\xc2\x58\x00\x31\xa0\xbe\x34\x1a\x02\x4a\x67\xe0\xba\ \x70\x03\x80\x6f\x00\xc6\xde\x11\xae\x80\x97\xaa\x1a\x7d\x95\x7b\ \x8e\xb3\xf9\x01\x02\x8a\x0a\xaf\x7d\x0c\xfa\x10\xb4\x9e\x87\xd0\ \x4b\x4a\xba\x02\xad\x6e\xb0\xc9\xba\xd7\xb7\x72\x50\xbc\xd6\x56\ \xdb\xc5\xba\x09\x64\xc1\x49\x6f\xee\x28\x77\x78\xcd\x47\xda\xad\ \xb6\xec\xee\xc7\x88\xec\xd1\x94\x1e\xde\x24\x7d\x87\x7f\xd3\xc1\ \x6b\xab\xb6\x7f\x0c\xad\x01\xaf\x07\x83\xad\x0c\x44\x1e\x06\xd1\ \xb0\xc8\x83\x57\xef\xa2\x9e\x05\x59\x50\xde\xca\xe0\xf0\xd4\xcb\ \x83\x24\xfe\x14\x9e\x3b\x9d\x0f\xf9\x84\x6c\xc8\xe6\x15\x73\x61\ \xa2\xf6\x93\x4e\xa9\xdd\xd4\x4c\x8d\xda\xdb\xef\xbd\x21\xf0\x51\ \x28\x5f\x9b\x92\x0f\xa5\x1d\x2e\xd0\x5d\x3a\xaf\xab\x1a\xaa\xe6\ \x8f\xd0\x3c\x2b\xe8\x2d\xcf\x75\xeb\x90\x0f\x48\x9b\x0f\x1e\xb8\ \xaa\x35\x39\xdc\x5c\xca\x6e\xed\x94\x92\xb8\x74\x6b\x00\x81\x0a\ \x95\x99\x51\xa3\x30\xf5\xe8\xf1\xec\xce\x9d\x1e\x61\xc2\x38\xb9\ \x73\x26\xa2\x93\x86\x4f\x7a\x3c\x79\xe2\x50\x8c\x3f\x7f\x5e\xbc\ \xf8\xeb\x41\x91\xe3\x1d\x36\xf7\x6a\xb0\x41\x99\x92\xcd\x99\x90\ \x0b\x9d\x84\xe1\x58\x8d\x19\x8c\x69\x7a\x56\x78\x80\xe3\xc1\x83\ \x1e\x3d\x52\xc2\x20\xb9\x17\xa6\xda\xb4\x69\x59\xf4\x28\xd3\x23\ \x22\x0e\x2c\x18\x30\x3e\xc2\xf8\x60\x45\xaa\x15\x63\x16\x3c\x71\ \xf3\x04\x0e\x1c\x37\xac\x94\x3e\x70\x8b\xe7\xe4\x09\x96\x78\xf0\ \x42\x84\xd8\x13\xa2\xc0\x1e\x5d\x21\xe0\x15\xb8\xd1\x36\x43\x86\ \x54\x44\xfe\xdd\xc5\x9b\x57\xef\x5e\xbe\x7d\xf3\xba\xe2\x86\x6a\ \x5d\x00\x63\xc6\x8e\xe9\x13\x6c\x66\x81\x99\x63\xc6\x0a\x05\x30\ \x43\xb8\x90\x88\x22\xa8\xf4\x15\x41\xac\x0f\x16\xe2\x75\x8b\x2d\ \x8f\xfe\xea\x81\xc9\x8c\x08\x11\xb0\x0a\x9a\x11\x68\x10\xd3\xb3\ \x51\x02\x57\x3f\x7b\xc6\x02\x36\xec\x1e\xa8\x53\x17\x44\xf8\x8c\ \x62\xc3\x30\x2d\x25\x9e\x71\x12\x1c\x63\x98\x27\x62\x36\x6e\xf4\ \x52\xad\x9a\xbf\x85\x3d\xee\x20\x51\x19\xbd\xc6\xa6\x7b\x26\x19\ \x3a\xf4\x57\x4d\x4a\x16\x65\x2b\xe0\xc0\xb1\x02\x1e\xce\x34\x27\ \x2b\xbd\x10\x8d\x63\x54\x84\xb2\x2c\x71\x98\xc5\x71\xda\x51\x4f\ \xd4\xa9\x1f\x3e\x18\xc3\x6a\x81\x2b\xb7\xaf\x4b\x9e\x20\x39\x2b\ \xc0\x0c\xe0\x79\xe2\xad\x10\x32\xc0\x28\x2d\x78\xb0\xc0\x62\x0e\ \x24\xaa\xf0\x2b\x42\x09\xfd\x72\xc5\x15\x7d\xcc\xd0\x47\x84\xc9\ \x8e\x09\xe0\x42\x33\x22\x2b\xe4\x83\xc7\x1a\x13\x31\x80\x75\x04\ \x5b\xc7\xa0\x75\x60\x29\x82\xa0\x0f\x2d\x30\x23\xa1\x30\x2c\x28\ \xcd\x02\x54\x46\x71\xf1\x35\xd4\xd6\xc1\x64\x13\xd8\x64\xfb\xf1\ \x8e\xd6\x04\x22\x08\x34\x84\x42\xe2\xed\x25\x27\x42\x38\xe3\x8c\ \x10\x84\xc3\x48\x8c\x30\xa4\x34\x2e\x39\x18\x98\x09\xe3\x8c\x1a\ \x6a\xb8\x27\x3a\x2f\x51\x32\x49\xa2\x97\x86\xb2\xe9\xbb\xef\xc2\ \x83\x03\x1c\xe8\x9c\x18\xaa\xa8\xf4\x78\x72\x0f\x86\x38\xdc\xf3\ \xfe\x08\x06\x63\xe8\x9b\xca\x8a\xaf\xb8\xc1\xef\xce\x6b\xc0\x71\ \x02\x09\x2d\x91\x00\xf0\x89\x0c\xfa\x89\x27\x03\x05\xfb\xc1\x42\ \x95\x25\x28\x01\x67\x0e\x36\x20\x9c\xb0\x52\x4b\x5d\xb1\x60\x1d\ \x7d\x1a\xdb\x10\x32\x1c\x61\x09\xd1\xb1\x10\x4b\x5c\xe7\x43\x33\ \x60\xc3\x50\x30\x83\x2c\xcb\x67\xb5\xd6\x60\x81\x45\xb0\x81\x70\ \x34\xe8\x19\xdb\x7a\x84\x6d\x13\x16\x58\xb8\x63\x13\x1f\x71\x2c\ \xb2\xa0\x83\x14\x42\xc8\x22\x8c\x96\x64\x32\x04\x8c\xa2\x2c\xce\ \x38\x98\x3a\xfa\xa8\x87\x93\xbe\xa4\xb6\xa4\x1a\x60\xa2\xa9\x3b\ \x33\xcf\x54\xa6\xbc\x1a\xc4\x90\x73\x9a\x39\x8d\x6a\xef\xbd\xf4\ \x60\xa8\xc6\x4a\x63\xf2\x94\xca\xbe\xc2\xec\xd3\x33\x9f\x27\x9a\ \x24\xd4\x49\x02\xe3\xc1\x22\x86\x0c\x0e\x54\x85\x9b\x6b\xfe\xfd\ \xe3\x0c\x36\x62\x71\xc5\x52\x83\x23\x74\x05\x9c\xcc\x34\xdc\x10\ \x46\x54\x02\xd0\x50\x44\xc7\x3e\x10\x21\x00\x54\x30\xc1\x78\x35\ \xd1\x06\x5a\x6d\xb1\x18\x43\xb3\xcc\x82\x0b\x69\x55\xed\x99\x05\ \x88\x64\xc1\x47\x5e\x53\xf6\x75\x93\x1e\x70\x2b\xc8\x48\x85\x28\ \x0a\x4e\xac\x27\xf6\x70\x02\xe7\x3d\x30\x6a\xa3\xd9\x29\x8d\xfe\ \xe3\xa8\x37\x27\xb8\xac\xf6\xcb\x1a\xee\x08\xc3\x0b\x9a\x8e\xf2\ \xce\x4c\x0f\xbc\xa8\x01\x89\x3b\xaa\xc9\x02\x86\x2c\x8a\xe2\xa9\ \x3d\x39\xe1\xbc\xb2\x4e\x3c\xd9\x85\x57\x4f\x70\xf2\x89\x27\x4b\ \x42\xc5\x2a\x20\x03\x2c\xc0\x89\x67\x8f\x0c\x54\xb9\x66\x2a\x35\ \x51\x2a\xf8\x60\xbb\xf5\xaa\xd0\x0c\x4d\x21\x16\xd5\xe2\xc1\x0a\ \x29\xc4\x31\x51\x0b\x39\x0c\x13\xd9\x32\xfe\xf0\x62\x16\x42\x3b\ \x08\x47\xcb\x2e\x9c\x15\xe3\x5a\x37\x5e\xed\x8e\x95\x15\xa2\xce\ \x47\x4c\x40\xdb\xfc\x20\xe7\x36\xb9\xe3\x58\x65\x77\x26\x9d\xe7\ \x27\x7a\x3e\xdd\x21\x98\xc2\xb8\x83\xe8\xa2\xbf\xdc\xe4\x25\x7f\ \x66\xe2\x69\x05\xef\x70\xd2\xe3\x09\x36\xae\x25\xaa\x26\xa4\x90\ \xd2\x23\x0b\xe1\xb9\x46\x17\x15\x2f\xe2\x60\x37\xf9\x76\x3f\xf8\ \x13\x50\x27\x91\x98\x23\x84\x78\xc0\xc9\x17\xdf\x25\xae\xb1\xaf\ \x1f\xe8\x26\xbd\xbb\x7b\xbc\x30\xfd\x50\x9f\x00\x42\x3d\xec\x61\ \xd2\x00\x9f\x2c\xf0\x8a\x4f\x65\x01\x63\xdb\x4a\x35\x7c\xb6\x8d\ \xf5\x11\x99\xa0\x05\x0c\x52\x2d\xe6\x1e\x5b\x56\x88\xe5\x7b\x7e\ \x3d\xd2\x42\x16\x22\x26\xb1\xec\xec\x66\x7b\x68\xc3\x1e\xfe\x14\ \xb8\x2c\x66\x49\xa9\x37\x77\xe8\xd2\xeb\xbe\x74\x0f\x96\x64\x07\ \x06\x4c\x6b\x9a\x07\xaa\x71\x12\x36\x11\x85\x27\xc0\xcb\x1a\x4f\ \xb8\xc6\x0c\x66\x2c\xc7\x02\x1e\x50\x9e\x08\xee\x94\xbc\x0f\x44\ \x62\x6c\x21\xa8\xc1\x19\xc6\x12\x8d\x78\xc4\x23\x06\xf9\x00\xc7\ \x12\x54\x51\x1e\x36\x40\xcf\x7b\xde\x73\xc5\x01\x3a\xb3\x80\x0c\ \x39\x46\x04\xfa\xc8\x87\x3e\x26\x23\x38\xd2\x34\x51\x1f\x1a\xdb\ \x1c\x86\x62\x35\x0a\x85\x3c\x23\x8a\xe2\xb3\xd8\x87\xf0\xd7\xb9\ \x8c\x3d\xa3\x65\xbe\xca\x15\x75\xee\xf1\x8c\xd0\x24\x44\x80\xd3\ \x69\xd2\xb2\x10\x98\xc0\x04\x1e\x50\x81\x06\x14\x8b\x43\x86\x26\ \x41\x6a\xdd\x03\x69\xb3\x33\x8a\xed\xe0\xe0\x1d\x3d\xfc\xe4\x5a\ \x34\xa9\xc9\x51\x42\x18\x3c\x11\xc2\x47\x4e\xe8\xaa\xc6\xba\xc0\ \xc6\x8c\x7c\x70\x43\x79\xed\x62\x9b\x18\xe2\x21\x86\xb9\xdc\xb0\ \x0d\x5b\xc1\xc2\xf6\xd8\x30\x87\x1f\x76\xaf\x42\xa5\x5a\xcc\xf8\ \x28\x86\x18\x88\x85\x4a\x44\x15\xe3\x90\x60\x32\x16\xc5\x22\x14\ \x01\x34\x56\x34\x88\x19\x2c\x10\x80\x0e\x99\x4a\x35\x92\x3b\x52\ \x18\xc1\xe8\xc5\xcc\x3d\xe3\x81\x9b\xe0\x52\xeb\x62\xfe\xa8\xac\ \x36\x14\x73\x0f\x42\x78\x63\x5a\xd2\x12\xa0\x9a\x39\xa1\x3a\x74\ \xfc\x92\xd4\x60\xc2\x0c\xdf\x75\xe7\x26\xcc\x28\xcf\xd4\xa6\xd1\ \x94\x9a\x74\xd3\x28\xc1\x23\x17\x7c\x66\x22\xce\x2c\x7c\x4d\x2a\ \x58\x0a\x43\x39\x1f\xa9\x27\x63\xb8\x50\x59\xf8\x9a\x5e\x24\x32\ \xa0\x12\x24\xd0\xa2\x93\x77\x73\xc5\x40\x16\x53\xc4\x42\x90\x32\ \x70\xa3\x22\x5c\x66\x10\x63\x86\x55\xa2\x66\x64\x9b\x3b\x8d\x19\ \x8a\x10\x80\x4c\xe5\x43\x31\x08\x1d\x16\x6d\x30\xd7\xb2\x85\x88\ \x11\x69\xce\xe9\xd2\x3d\x90\x10\xc3\x33\x20\x70\x8d\xc8\x54\x60\ \x12\x6e\x90\x84\x33\xcc\xa1\x49\x27\x6d\x5d\x04\xa1\x99\x92\xed\ \x51\x10\x26\x6d\x12\xe1\x34\x7e\xc2\x86\x27\x58\x0d\x90\xdb\xec\ \x9d\xf0\xda\x33\x27\x74\xcd\xa4\x29\x56\x43\x21\xbb\x8c\x11\x86\ \x1a\xf8\x43\x91\xeb\xb4\x02\x37\x30\x92\x81\xe9\x69\x25\x04\xd1\ \x01\xc5\x3d\xed\x96\x30\x7d\x94\x6a\x1d\xc7\x08\x1c\x2d\xff\x09\ \x38\x23\x3e\x0e\x46\xb6\x74\x5f\x6a\xa2\x18\xcb\x87\x65\x71\x01\ \x8c\xc3\xd1\x6a\x64\x93\x10\x2f\x56\x67\x3a\x0b\xa9\x0e\x43\x42\ \x12\xb5\x8d\x9e\xe5\x74\xc5\xec\x46\x1b\x84\xa0\xfe\xd7\x24\x28\ \xf0\x06\x37\x28\xe9\x1c\xa2\xb6\x25\x4d\xae\x14\x4c\x47\x93\x9d\ \x17\xa8\xe9\x41\x3d\x78\x41\x60\x6c\x18\xc5\x4f\x89\xc2\xcd\x6d\ \xfe\xf4\x4a\x25\x24\xe1\x21\x2f\x68\x4e\xaa\x84\x61\x77\x52\xb8\ \x0f\x67\xf3\x34\x0d\x70\x44\x23\x03\x5a\xc9\x40\x61\x07\x26\xd5\ \x83\x55\xa8\xaa\xa5\x2a\x82\x86\x44\x70\x0c\x0d\x1d\x83\xb6\x21\ \x3a\xe2\x65\x12\xf3\x21\x4c\xdc\x4f\x6f\xb3\x32\x83\x43\x55\x44\ \xcb\x0b\xa9\xd5\x8a\x67\xe5\x25\x6c\x7a\x25\x46\xd0\x29\xc4\x24\ \x4a\xd2\x92\x93\xd6\xd8\x86\x68\x74\xc3\xba\xdd\x10\xc2\x5e\x91\ \x79\x03\x07\xa9\xd6\xb0\xd1\xb1\x63\xd2\xac\x66\x13\x6b\x22\x45\ \x0c\x28\xb9\x43\x76\x14\x2b\xce\x9f\xca\xa4\x29\xca\xc9\xec\x21\ \xd3\x63\x8c\xa0\xe6\xc9\x18\x81\x2a\xea\x43\x32\xe0\xc8\x75\x7e\ \x25\x1e\x34\x94\x54\x74\x6e\x40\x29\xd6\x4e\xa8\x42\xbb\x7d\x18\ \x6d\x67\x5b\x84\x13\x95\xd2\x18\x15\xeb\xd0\x40\xed\x17\xd6\x22\ \x99\xc1\x1f\x92\x5b\x47\x8b\x3e\xf4\x23\x58\xf2\x92\xa2\x62\xb4\ \xa3\x6e\x5a\x67\xb3\xb3\xdc\x80\x74\x78\x6d\xc3\x75\xf3\x8a\xdd\ \x3d\x70\x77\x82\xdf\xa5\x67\x7a\x99\x51\xa6\xfe\x6d\xe5\x6e\x4b\ \xfe\x68\x4a\x7c\xaf\x94\xe3\x6a\x5c\x56\xb1\xe3\xe4\x29\x33\x94\ \xa1\xbc\xa1\x1e\x2d\x4b\x3d\xcc\x07\x52\xad\x70\x0d\x6e\x80\xe3\ \x09\xd3\x8a\x8e\x5d\x0a\x5c\x29\x57\x7c\x83\xa0\x18\x6a\x25\x6d\ \x5b\x64\x45\x7e\x4e\x26\x00\x45\xa8\x9f\x16\xc3\x8a\x8a\x05\x6c\ \xee\x62\xa8\xda\xed\x02\x38\x3c\x1b\x5f\xfd\xcf\x57\x5c\xb2\x4e\ \xeb\x04\x75\x16\x05\xa2\xe5\x98\x7a\x55\xa0\x10\xac\x2b\x84\x37\ \x64\x57\x08\x0e\xea\x61\xa0\x81\x93\x52\x18\xef\xee\x0e\x4e\x98\ \x1d\x8d\xbf\x03\x03\x27\x9c\x21\x0c\x30\x50\x46\x7a\xc8\x85\x53\ \x9e\x5a\x56\x4e\xc3\xd3\xc3\x95\xf4\x00\x1e\x76\xf5\x31\x86\xad\ \xeb\xa1\x18\x44\x0b\xb6\x78\x78\x97\x0d\xd8\xa8\xdb\x94\x11\xc6\ \x0f\x8c\x9d\x0c\x15\x45\xb0\xed\x96\x45\xa3\x21\x23\x5e\x28\x33\ \xfa\xcc\xd8\x40\x6b\x33\x90\x5d\x6d\x0c\x35\x8a\xe1\xa5\xe5\x96\ \x1b\xd7\xb6\xc6\x75\x4b\x25\xa5\x73\x48\x43\xd0\x57\x66\xfb\xd9\ \xcf\x22\xe5\x2e\xa1\x4c\x7a\x96\xe0\x3c\xf6\xbb\xe1\xed\x08\x35\ \x99\x36\x1e\x31\x1c\xad\x1a\xca\x00\x77\xb8\xc1\x29\x3c\x43\xea\ \xf4\x9b\xbf\xcb\x74\x16\xea\x2b\x15\x38\xfe\x14\x79\x77\x83\xcd\ \xc0\xba\xd7\xc9\x8d\x0c\x58\x5b\x25\x04\x56\x75\x5f\x5c\x51\x85\ \x0c\x98\xcc\xa0\x01\xe0\x10\x41\x45\x53\xca\x42\xc0\xa2\x54\x18\ \xd2\x87\x87\x62\xa9\x37\xfc\xa1\xc6\x8b\xb6\x3a\x78\x91\x3c\xbc\ \xab\x36\x83\x0e\x82\xd6\x8a\xe1\x0d\x96\x1d\x82\x91\xfe\xb5\xe3\ \x49\x00\x79\xc8\x45\xfe\xd7\x39\xcc\x41\xe3\x01\x7a\x02\x44\x54\ \x5a\x34\xd5\x5e\x4b\x69\xdf\x14\xa1\x63\x6b\xe0\x04\x66\xac\x20\ \xdc\x36\x47\xca\x37\xcd\x7d\x94\x70\x83\xdb\x18\x39\x37\x06\xa7\ \xa7\xe2\x01\x29\x90\x04\x09\x14\x11\xaf\x27\x8e\xba\x4e\x63\x80\ \xe3\xa9\xd1\xc1\x77\xbe\xf9\xe2\x0a\x73\xb8\x2f\x7c\xb6\x25\xb3\ \x15\x19\xa3\xc2\xc3\x00\x8b\x96\x04\x5d\x80\x6f\x09\xc2\x1a\xd7\ \xe8\xca\x45\xa7\x79\xe5\x72\xef\xf0\x8c\xea\xb8\xf5\x24\x1b\x95\ \xee\x1e\x40\xbe\x6c\x91\x42\x1b\xe4\x23\x4d\x82\x10\xf2\x2e\xf7\ \x16\xff\x95\xe3\x4c\x72\xd2\xd0\x54\xaa\x5a\x4d\xae\x7c\x77\xe2\ \xe5\x39\x52\xa4\x30\x34\x24\x3c\xfa\x77\x38\x07\x61\xce\x13\xdf\ \x73\x0f\xdc\x04\x78\xf2\xb6\x82\x1e\x86\x86\x34\x29\x35\x7a\xe6\ \xfc\x55\xb2\x05\xec\xcd\x86\x1b\xa4\xfe\x5a\xea\x7b\x71\x45\x2d\ \x3e\x54\x66\x4c\x88\x2f\xe0\xab\xc1\xd0\x3f\x35\x7c\x19\xc8\x68\ \xec\x7e\x05\x1d\x88\xae\x6c\x25\x70\x1c\x5d\xb8\x75\xa0\x6b\x73\ \x98\xde\x1e\xbd\x64\x86\x54\xe4\xc7\xdf\x3b\x32\x41\xca\x71\x8d\ \x03\xd6\xa4\xf4\x32\xb4\xeb\x34\x0a\xcc\xe8\xab\xf4\x1e\x88\x8e\ \x83\x4d\x6c\xa7\x07\x7f\x08\xec\x0e\xe0\xca\x7e\x77\xc0\x4d\xee\ \x73\x83\xdb\x76\x36\x5f\x41\xd0\x75\x52\x98\xa0\x27\x6f\xa8\x2f\ \x71\x08\x94\x91\x90\x64\x25\x8b\x2d\x50\x2a\x31\xfd\xe9\xf1\x26\ \x98\x32\x87\x92\x43\x9d\xc1\x18\x54\xc0\xaa\x80\x1a\x85\x15\x31\ \x91\xd7\x10\x0d\xd6\xab\x8d\x14\xd9\x95\xdd\xbb\xb2\x59\xe9\x15\ \x3b\x4a\x29\xb8\x6b\x12\xe2\x7b\x02\x67\xcb\xae\x90\x3b\x81\xe3\ \xcb\xae\x63\xf2\x40\xb9\xdb\x38\x8d\x33\x29\xc1\x32\x32\xd6\xe1\ \x92\x2d\xa9\x01\xe7\x38\x9a\x96\x98\x96\xa3\x49\xb4\x70\x93\xa9\ \x2d\x11\x8a\x2b\xe1\x0e\xe0\xd9\xa9\x39\x49\x3c\xdb\xa9\xbc\x1d\ \xcc\x09\x70\xc3\x3c\x2b\xf0\x00\x7f\x38\x9a\x27\x20\x09\x96\xca\ \x80\x51\x03\x1b\x40\x61\xa9\xa8\xd3\xbf\xef\xf9\xaa\xb0\xc3\x90\ \x0e\x49\x11\xf7\x81\x18\xd2\x98\xfe\xbd\x2c\xc2\x04\x39\x10\x0d\ \x82\xd0\x18\x60\x33\xbb\x60\xf1\x87\x51\x60\x9d\x2e\x39\x9a\xe8\ \x7a\x92\x64\x6b\x83\x07\xd0\xab\x18\x78\x83\x37\xb8\x02\xbd\x83\ \xc3\x0c\x94\xc3\xbc\xeb\x40\x65\x6b\xb1\x10\x18\x41\xb1\xe8\x3c\ \x97\x60\x08\x29\x59\x08\xd5\x11\xa6\x14\x14\x03\x66\x30\x0a\xa4\ \xa8\x86\xa1\x71\x82\xe3\x69\x0a\x9d\x9a\x13\xf7\x40\x85\xf7\x28\ \x44\x1d\xd4\x41\x9d\xd8\x41\x9d\x10\xba\xfa\x80\x1a\x93\x80\xb2\ \xdd\xf1\x07\x24\x4c\x1e\x70\x80\x32\x32\x68\xc2\xbe\x10\x22\xc5\ \x30\x95\x84\x83\x9f\xc5\x18\x0c\xd2\x38\x06\x53\xc1\x0c\x82\x6a\ \x9f\x5f\x8b\x8d\x55\x3a\x1c\x60\x89\x19\x69\x41\x09\xa9\x09\x0e\ \x03\x42\xa6\x36\x88\x81\x5f\xfc\x45\x4b\xb8\x04\x4b\xe8\x33\x3a\ \xe4\x33\x0c\x0c\xb9\x3c\x6b\x31\xb9\x6b\x3e\x3a\x0b\x83\x68\xe8\ \x3c\xa4\x73\x88\x8f\x40\x3a\x7f\x90\xa3\xeb\xc8\x0e\x0f\x9a\x86\ \x79\xf9\x3e\xab\xf1\xa0\x48\x8b\x83\x47\xfc\x31\xab\x89\x44\x49\ \xcc\x89\x9b\xc0\x89\x0f\xb8\xc4\xa9\xf0\x84\xb7\x73\x47\xa4\xf1\ \x02\x0b\xd0\x8f\xfa\xd3\x93\x78\x98\x96\x1b\x18\xc5\xa9\x5b\x8c\ \x2d\xfc\x10\x50\xb2\xba\xad\xfe\xa3\x8c\x7e\xd4\x27\xd8\xd8\xc2\ \xd5\xf0\x11\x8f\x99\x8d\x51\xc8\x07\xd0\x08\x8e\xa8\xe9\xa1\x10\ \x28\xa6\x0c\xf0\x45\x60\x34\x87\x8a\x34\x87\x6f\x98\x82\x56\x70\ \x85\x32\xc0\x86\x24\x38\x81\xec\xea\xb3\x39\x04\xb9\x37\xea\xab\ \xe6\x33\xb9\x24\x38\x1d\x68\x14\x83\x94\xcb\x08\x29\x51\x9a\x8f\ \x98\x92\xa0\xd1\x08\x8f\x98\x09\xa2\x10\x83\xe7\x48\x44\x9d\x3a\ \x0a\x72\x23\x21\xf7\x82\x0f\x4c\x33\x3f\x4a\xb4\xc4\xf0\x10\x2d\ \x63\x10\x98\x99\x73\x0e\xe0\x38\x32\xa9\x01\x3d\xa4\xfa\x00\x4f\ \x78\xb2\xd5\xca\xc7\xbf\x88\x87\xc5\xf0\x18\xbd\x01\xc0\x56\xc3\ \x10\x2b\xec\x47\x2d\x4a\x08\x84\x8a\x0d\x5d\xe9\x01\xd7\xa0\x8d\ \x7c\x98\x8b\x30\x38\x0b\x07\x99\x03\xb7\x89\x01\x5f\x4c\xc3\x18\ \xa8\xc8\x6f\x78\x83\x6f\xa0\x04\x59\xb0\x82\x56\x20\xc6\x38\x74\ \xb6\x0d\xac\x3b\xbc\x7b\x23\x8f\x33\xb1\x36\x00\x02\x20\x88\x06\ \xd4\x69\x49\xa1\x80\x0f\x8e\x50\x4c\xec\x50\xac\x9f\x92\x02\x2f\ \xf0\x16\xa1\xb8\x1a\x41\x0a\x1e\xf7\x20\xa1\x9a\x8c\x83\xa2\x80\ \xb9\x1d\x44\xc7\x9c\x28\x0c\xe5\xf9\x00\x67\xfa\x16\x7f\x78\x32\ \xd5\x8a\x07\x7a\x6c\x97\xfe\x0c\xa8\x81\x58\x98\xca\xbf\x38\x80\ \x51\xb8\xca\x75\x38\x11\x35\xeb\x2d\x53\xd1\x32\xc8\x11\x33\x2b\ \x7a\x0d\x5e\x62\x01\x59\x1a\x05\x01\xca\x00\xb3\x8c\x87\x9b\xb1\ \xb3\x3d\x00\xc6\x3d\x78\x00\x21\x80\xcb\x37\xa8\x48\x4b\x68\x05\ \xa9\x68\x85\x29\x30\x07\x0c\x3c\xc6\xbb\xfb\x38\x92\xec\xbb\x63\ \xea\x86\xc1\x84\x46\xd4\x71\xa0\xa1\x78\x4c\x8e\xf0\x08\x7f\x10\ \x03\xa5\x29\x0a\xa2\xa8\x86\x99\x2a\x2a\x9a\xc0\xc1\xac\x11\xa7\ \xf7\xb8\x34\x9d\x4c\xbc\x4a\xf4\x00\x63\x50\xb7\x47\xf2\x87\x8d\ \xca\x8e\x22\xa4\xa7\x30\xf0\x44\xb0\xc9\x87\x10\x60\xc2\x26\xcc\ \x9b\xd5\xeb\xc7\xe2\xaa\x4d\xd1\xd8\x94\x0e\x49\x0c\x61\x39\x88\ \xdd\x6c\xab\x1e\x58\x48\x01\x12\x8b\x18\xb0\xa1\x04\xca\x33\xe5\ \x14\x02\x17\xd8\x03\x17\x38\x01\x6c\x30\x00\x03\xb8\xc8\x56\x20\ \xd1\x56\xb8\x84\x32\x78\xc3\xec\xc2\x86\x36\xcc\x40\x8f\xab\xbb\ \xbd\xab\xbb\x3d\xd8\xce\xc1\xb4\x2e\xe3\x38\x1d\x31\x68\x83\x6a\ \x88\x04\x66\x18\xcf\xe4\xa0\xc9\x42\xd4\x83\x69\x38\x44\x94\xc8\ \xc9\xcc\x94\x34\x9e\xcc\x31\x49\x1b\x24\x9f\x53\x06\x63\x48\x3f\ \x0f\x40\x8a\x1f\xb4\xfe\x02\x66\x88\x88\x91\x48\x09\x8d\xba\x96\ \xa6\xa4\xc7\x0f\xb0\x80\x01\x25\x50\x2b\x03\x25\xbd\xa9\xaa\x05\ \x60\x01\x8f\x11\x8d\x56\xb2\x8c\xca\xa0\xcd\x32\x4a\x19\x32\xea\ \x15\x8a\xc8\x00\x64\x51\x96\x27\xf8\xc5\x07\x88\x81\x07\xc0\xd3\ \x07\xf0\xc8\x07\xe0\x4b\x3f\xfb\xc8\x8b\xb4\x04\xb9\x6c\xc3\x2b\ \x68\xc3\x42\x2d\x46\xee\xea\x38\xbc\x1b\xc9\xbd\xea\x86\x36\xa4\ \xd1\x62\x5a\x49\x31\x88\x06\x29\x98\x06\x29\x48\x17\x8f\x90\x09\ \x6a\x12\xb7\x69\xe8\xb6\x92\x08\x03\x6a\x6a\x44\x39\xb9\x4c\x12\ \x82\x8f\x37\x11\x21\x41\xf2\xb9\xf4\x6b\x52\x63\x98\x8f\x47\xb2\ \x80\x93\x40\x9a\x79\x11\x8b\x7c\x90\x02\x63\x88\x1b\xd4\xcc\x93\ \x0f\xd0\xc8\xd6\xbc\x8b\x2a\x0b\xd3\x05\x18\x8c\x0b\x81\x8d\xdb\ \xd3\x1b\xcc\x78\x35\x7d\x50\x33\xdd\xdc\x1f\x32\x0a\x09\xe0\xd0\ \x99\x03\x82\x87\x04\x7a\x00\xe4\xdc\x83\x13\x70\x01\x21\xf8\xc8\ \x0d\xfc\x50\x3d\xbd\xbb\xbc\x73\xc3\x6f\x05\xd7\x90\x84\x36\x8f\ \x3b\xc9\x3b\xb3\xae\x42\x1d\x4c\x20\xe8\x06\x1c\x35\x8e\x49\xad\ \x54\x29\x88\x06\x8f\x48\x8e\x19\x53\x86\x3d\x5a\x81\x18\x3c\xbc\ \xcb\xfc\x29\x12\xfe\x7a\x44\x20\x83\x39\x70\xe3\x39\x27\xa5\x2f\ \x56\x25\xd8\xa5\xcb\x13\xa8\xe9\xa1\x19\xe4\x93\xff\xac\xbf\x0f\ \xc8\xbf\x51\xac\x10\x18\x01\x56\x31\x35\x11\x32\xed\xad\x32\x3b\ \x11\x4d\x79\x45\x08\xf5\x15\xa4\x11\x8b\x9c\x49\xb6\x02\x79\x00\ \x78\xc0\x53\x0f\xbd\xd6\x13\x40\xd9\x8f\xc4\x86\x95\x15\x82\x1b\ \x90\x36\x8f\xfc\xd6\x15\x25\xd4\x6f\xcd\xc0\x90\x23\xb9\x91\x42\ \xa0\x73\x3d\xd7\x32\x78\x03\x75\x2d\x4c\x31\xe8\x86\x49\x8d\x84\ \x9e\xa8\x86\xf2\x8c\xd7\x0b\x6a\x1a\x65\x60\xb4\x1e\x4a\x44\xcc\ \xba\x4c\x54\xc8\x54\x9f\x32\xd5\x9e\x0b\x37\x9d\x00\xd8\xa4\x98\ \x06\x29\x65\x34\xe0\x00\x2d\x5c\xa5\xc7\x87\x85\x58\x55\xb0\x2a\ \x8a\x45\xd6\x59\xac\x4d\xd9\x4c\x53\x82\x9a\x0d\x0a\x0d\x03\x04\ \x49\x10\xb7\xe8\x50\x78\xb8\x53\x3c\x4d\xd9\x95\xb5\xdb\x2b\xb8\ \x82\x4b\x78\x83\x24\x50\xcb\x91\x22\xd4\x2b\xc0\x2e\x43\x65\x51\ \xbd\x93\x3b\x91\x2a\x39\x13\xd3\xb3\x37\xe0\xd9\x73\x55\xdc\x32\ \xe0\xce\x76\x9d\x86\x15\xd0\x83\x48\x28\xda\xf2\x1c\x8a\x7a\xfd\ \x0e\x65\xd8\x20\x4e\x2c\xa1\x4c\xad\x06\xa8\xfd\x5c\x7f\x05\x52\ \xaa\xad\xbc\xfe\xc2\xd0\x83\x42\xe0\x89\xac\x7d\xa4\x0f\x80\x01\ \x70\x30\x58\xaf\xed\x2f\x5e\xed\xd5\x03\xd0\x1b\x60\xd5\x14\x54\ \x94\x83\xdc\xbd\x58\x53\xc9\xb0\x1b\x61\x19\x86\x70\x02\xa6\xaa\ \xa1\x18\x38\xa0\x91\x25\xd9\x07\xf0\xd0\x13\x78\x80\x95\x8d\x01\ \x6c\xf8\xdb\xbc\x35\xd1\x37\xac\xbb\x99\xc5\x06\x15\x6d\x43\xbd\ \x1d\x5c\x3d\x13\x29\xe8\x09\x4c\xc5\x1d\xcc\x37\xb8\x2e\x20\x28\ \x83\x32\x90\x02\x75\x15\x03\x20\x88\x84\xed\x83\x46\x4c\xcd\x82\ \xa6\x81\x83\x3e\x02\x0a\x36\x41\x17\x79\xcd\xb6\xcb\x1c\x97\xe1\ \xa1\x5a\x9f\xfb\xb9\xc2\x40\x0a\x6e\x68\x55\xd8\x05\x60\xe5\x91\ \xdd\x5e\xcd\x87\x21\x12\xd3\x31\x95\x83\x67\x90\x83\xb0\x83\xc2\ \xb2\xca\x87\x67\x58\xc1\xb9\xc0\x21\x1a\xfa\x45\x78\x38\x01\x92\ \x35\x00\x3e\xdd\x40\xbb\x5d\x59\xbc\xcd\x5b\xe8\xd5\x48\xe9\x4d\ \x82\xb9\x4c\x51\x21\x58\xd1\xeb\x65\xd1\x42\x6d\xd9\x92\xeb\x2b\ \x3e\x13\x5f\x20\x00\x5f\xeb\x12\xdf\xf1\xad\x86\x75\x95\x82\x4d\ \x93\xdc\x4b\x4d\x8e\x4d\x33\x13\xf2\xa0\xa0\xf3\xc8\x82\x4b\xdd\ \x08\xe3\xc9\xac\xfb\x3d\x37\xcb\xfb\x39\x26\xe5\x09\x82\x5d\xc7\ \x00\x0e\xfe\xe0\x56\x18\x60\x57\xc8\x00\x60\x0d\x3b\xd9\x4c\xb8\ \x05\xc8\xdd\xdc\x9d\x58\xbd\xb1\x80\x42\xb0\x00\xe7\x08\x5e\x1c\ \xd2\x0a\x73\xc8\x97\x10\x45\xd9\x0e\xd6\xe0\x0e\xf6\xe0\x0f\xbe\ \x04\x57\xd0\xc8\x4b\xe8\x48\x90\x5b\x51\x73\xa8\x5e\x21\xf8\x5b\ \x9e\x1d\xd4\x37\xb0\x04\x62\x34\x5c\x90\x6b\x03\x47\x55\x57\xeb\ \x12\x4c\x20\x90\x02\xf2\x8d\x06\xa1\xdd\xa3\x1d\x1d\xcf\x0b\x32\ \x13\x65\x90\xb9\x30\xe8\xa6\x74\x09\x43\x31\xe8\xd7\xa6\x50\xd2\ \x0f\xea\x0e\x28\x55\x55\x3d\x60\xd5\x53\x95\x52\x27\x86\xdd\x28\ \xc6\x02\x2a\x66\x60\x4d\xe9\x0c\x39\x68\x9f\x2d\x36\x03\x58\xf0\ \x04\x58\xc8\x87\xde\x10\x63\x70\x50\x05\x73\x80\x4b\x11\x3d\x81\ \x58\xf8\x50\x73\xb8\x82\x0f\x5d\x63\xbc\xbd\x04\x5f\x26\xd1\x4b\ \xd8\xc0\xc3\x15\x82\x6f\xb0\x84\xea\x3d\xe1\xbf\x55\x61\x4b\x98\ \x02\x4b\xd0\x3b\x9c\x65\xd4\x9e\x0d\x64\x19\x46\xdf\xf2\x1d\x8a\ \xf3\xd3\x03\x1e\x25\x4f\x48\x33\x93\x2c\x20\x2a\x9a\x53\xbc\xf1\ \xdc\x88\x1e\x73\x8f\x9f\x9c\x3c\xf1\x53\x06\x28\x3d\xd5\x4c\xab\ \x09\x86\x05\xe5\xfa\x03\x5b\x02\x55\x0c\x06\x06\xd6\xaa\x42\x65\ \x2d\xfe\x2e\x95\x82\xc8\x87\xab\x18\x9b\xd3\xca\x0a\x0b\xbd\x53\ \x11\x05\x51\x5e\xc6\x5b\xe7\xfd\xe0\x2a\xb8\x02\x84\xf6\x65\x37\ \xbe\x04\xbe\x65\x61\x3b\x06\x5f\x13\x9e\xd9\x2b\xc0\x63\xc0\x2d\ \x83\x29\x98\x82\xbd\x6d\x61\x73\x95\xe6\xbc\x3a\xe4\x42\x96\x82\ \x90\xae\x89\x3d\xd2\x03\x49\xf6\x87\xc8\xfd\x8e\x15\xc0\x26\xa4\ \x89\x64\xc5\xcc\x36\x51\x85\xc4\x53\xcd\x5f\xe0\xe9\x64\x0f\x72\ \xe7\x77\x46\x2a\x28\x96\x5d\x4c\x19\xa2\x2a\x46\xe0\x54\xfe\x90\ \x23\xf1\x02\x4f\x20\xad\x1a\x02\x07\x73\xb0\x21\x3b\x15\xd1\x2b\ \x58\xd9\x58\x48\x68\xa6\x4e\xe8\x4b\x50\xe8\x5f\x06\xe6\x56\xf8\ \x06\xc3\x1d\x29\x6c\x40\x51\x3f\x53\x66\x70\xe5\x33\x8c\x76\x66\ \xbd\xd4\xb3\x6e\x70\xdc\x40\x16\xda\x4a\xa5\x1d\x38\x30\xc4\xe3\ \x40\x69\xb5\xf6\x82\x8b\x38\x8f\x4a\x15\x4f\x79\x9d\x09\x20\xa3\ \xcc\x1a\x04\x1e\x10\xfa\xa6\xa1\x6d\x3f\x9c\x06\x65\x9d\xe6\x55\ \x57\xa0\x04\x04\xb6\xdd\x53\x4e\xe0\xfb\xa1\xa2\x85\xc8\x00\x0b\ \xd0\x0a\xb2\x20\x0b\xe2\xc5\xe0\x2b\xf8\x06\xa8\x7e\x6a\x5f\x56\ \xe8\x35\x6e\x63\x12\xbd\x02\xac\x4e\x02\xad\x2e\x61\x88\x16\x5c\ \xfe\x42\x75\xce\x29\x28\x03\xea\x94\x61\xc7\x3d\xe4\x68\xd0\x0e\ \xa2\x90\x02\xa4\xbd\x57\x98\xf4\x87\xf6\xdd\xa3\x69\xf0\x02\x87\ \x68\x13\x2f\x40\x0e\xf8\xca\x31\x48\x04\x58\xf9\xb4\x41\x4c\xe3\ \x64\x4e\xf6\x6b\x9c\x8e\xe7\xd3\x73\x85\x4b\x18\xa2\x05\xb6\x5d\ \x2c\xce\x98\xfb\xf1\xa2\x14\x54\x1b\xad\xb0\xa1\x3a\x0d\xe8\x35\ \xae\x02\xa9\xc6\xdb\x2a\xb8\xee\x5e\xbe\x02\x37\xb6\x02\x57\xd8\ \x5e\x42\x49\x82\x6e\xd0\xdb\xcf\x76\x43\xd0\x6e\x43\x66\xc6\x68\ \x3f\x13\xe4\x73\x25\x64\xc2\xfc\xe8\x6d\x2a\xa1\x1a\x9c\x06\x6b\ \x84\x09\x1c\xce\xb4\xda\x9e\x9d\x6d\xfa\x08\xc5\x72\xaf\x24\x0d\ \x3f\x72\x61\xc4\xf6\xd0\xc9\x4e\x2e\x8c\x5b\x1d\x6e\x27\x06\xec\ \xd6\x4c\x18\x2c\x76\x70\xd9\x0c\x3b\x2d\xc4\x18\xcc\xb9\x3e\xa6\ \x62\x10\x80\x9e\x56\x92\xc5\x86\xe5\xb5\x6c\xa9\xbe\x6e\xec\xee\ \xe5\x4b\x20\xd1\xab\xde\x1e\x24\xb8\x01\x21\x18\xc6\xe9\xf4\xb3\ \x3e\x0b\x49\x3d\xd6\xe3\x8c\xcc\xe8\xec\x4a\xb1\x3e\x2b\xa6\x68\ \x18\xcc\x6a\x50\x6d\x4a\xbd\x92\x1e\x3b\x0a\x18\xe8\x3c\x2f\xd8\ \xb4\x20\x5d\x8e\x97\x52\x8e\xe4\x90\x02\x9f\xb2\x2c\x53\xad\xfe\ \x4c\x72\x33\xa4\x9a\x98\xcc\xc9\x1d\xe9\x04\xff\xeb\xe2\x96\xba\ \xd4\x8b\xf0\x2a\x1e\xa2\x09\x0f\x4b\x60\xba\x03\xe1\x1d\x5e\xba\ \x4d\xd9\x0f\x75\xde\x0f\xbf\xee\x32\x2f\x68\xa8\x6e\x63\x57\xc0\ \x86\xc2\x3a\x71\x63\xfe\x6c\x42\x05\x49\x17\x57\x6f\xd2\x96\xf1\ \x18\xee\x45\x49\x05\x02\xed\x70\xaf\x74\xb9\xe1\x4c\x7b\x08\x36\ \x01\xb7\x69\xd0\x66\xf1\xbc\x54\xcb\x3a\x4f\xcd\x24\xbf\x1b\xbc\ \xac\xa6\x48\x5d\xe1\x99\x86\x48\x78\x5d\x29\xf7\x5a\x2a\xcf\xb7\ \x0a\xb9\x58\x2c\x3f\x65\x2c\x66\x19\xea\x70\xb4\x1a\x6a\x03\xb9\ \x8d\x01\x6b\x0d\x73\x94\xf5\x65\xa9\xbe\x84\x53\x47\x68\xbb\x35\ \xe1\x53\xbf\x84\x3f\x23\x14\x42\x39\xf1\x2b\xb0\x84\xe9\x34\xc6\ \x38\x27\xc6\x5b\xc7\xe8\x90\xd4\xd9\x62\xc2\x88\x49\x0d\xe9\x79\ \x5d\x0e\xaa\x29\x69\xd6\x01\xf4\x92\x96\x09\xfd\xee\x88\x47\x94\ \xac\x98\x62\x44\x43\x42\xf2\xcc\x0a\xa4\x25\x2e\x8c\x4f\x96\x74\ \x78\x8e\xe2\xaa\xc4\x62\x2b\x3e\x65\xd9\xf0\x1f\xc5\x66\x90\x44\ \x19\x59\x51\x1f\xf5\x31\x47\x68\xed\xc6\x6e\x55\xc7\x86\xcc\x6e\ \x68\xee\x62\x61\xad\xd6\xdb\xea\xcd\x3b\x3a\x4c\xef\x3d\xfe\xa6\ \x77\x9e\xad\x73\xee\xc4\x50\x31\xb8\xe1\xf8\x18\xcf\xfd\xf6\x82\ \xd6\xb9\x83\x19\x83\x01\x1c\x73\x0a\xec\x80\x76\xc6\x02\x1e\x71\ \x79\xda\x22\x36\xa4\xa5\x29\x58\x9d\xa8\xf6\x77\x16\xe5\x2c\x5c\ \x60\x54\xd4\xf4\xd8\xe0\x15\xe0\x94\x65\x60\xcc\xe0\xe4\x4d\xde\ \x33\x36\xe8\xa8\x46\x68\x13\x66\xd9\x2a\x78\xce\x56\xd8\xec\x93\ \xb4\x63\x61\x94\x4b\x3f\x3b\xa6\x42\xb5\x84\x32\xa0\xf7\xbc\x6c\ \xe1\x19\x55\xd7\x65\x01\x02\xf4\x84\x09\x98\x54\x1a\x21\x64\x03\ \x27\xb0\x1a\x8e\x68\x0f\x7f\x78\x89\x1f\x8b\xf6\xab\xbd\x9a\xcb\ \xaa\xe4\x71\xa9\xac\xf0\x63\xd5\x26\xc5\x89\x88\xf7\xda\x0f\x08\ \xaa\x28\xae\x02\x54\x6e\x9f\xdb\xd5\x74\x20\x39\x88\xe0\xc0\x97\ \x68\xc8\x97\x5a\xa0\x63\x51\x77\x81\x24\xf8\x78\xe7\x55\x63\xbc\ \xb5\x63\x96\xed\x6e\x59\x90\x05\x12\x37\x71\x3b\x36\xe6\x37\xa8\ \xe3\x3a\x6f\xdc\x98\xdf\x63\x9e\xdd\xbb\x62\x92\x66\x20\x10\x83\ \x9d\x19\x44\x21\x55\x9d\x87\xe8\x88\x1e\x28\x89\x9a\xaa\x6d\x20\ \x67\x06\xe7\x10\x0a\xda\xe9\x39\x11\x82\x81\x23\x1f\x55\x73\x71\ \x74\xf8\xc0\x1a\x82\xd5\x03\x6a\x97\x7a\xe5\xf1\x80\xfe\xa8\x18\ \xe0\x7f\x70\x85\x1e\x60\x01\x54\xae\x67\xc3\x69\x40\x31\x04\xe3\ \x0c\xa8\x60\x3b\xad\x05\x6c\x20\x7b\xb3\xaf\x5b\xd7\x27\x68\x64\ \x66\x6a\xe7\xbd\x04\xb7\xbf\x82\x00\x33\x39\x3e\x6b\xf9\x8f\xe4\ \xb3\x42\xc5\x63\x7a\xcf\xde\xb1\x4e\x57\x95\x9c\x12\x99\x10\x83\ \x90\x08\x83\xd8\x61\x0e\x94\xf8\x54\x84\x20\x44\xa2\x47\xb4\x4b\ \xe3\xb9\x98\x92\xfc\x7d\x6d\xc4\x46\x24\x8a\xab\x09\x24\x26\xde\ \x7c\x5c\xb5\x0f\x14\x5a\xf0\xa9\x74\x85\x78\xc8\x42\x05\x65\x1f\ \x89\x82\x33\x65\xc9\x97\x18\xc0\x60\x03\x40\x59\x17\x90\x7f\x93\ \x3d\xe3\xd8\xb7\x5b\x95\x15\x02\x93\x6f\x85\x35\x67\xa9\x58\x97\ \x43\x43\x05\x08\x4b\x6f\xca\xbc\x19\x28\xf0\x8d\x10\x21\x7b\xda\ \xb4\x01\xe2\x30\x5a\x34\x2f\x62\xc4\xf4\x08\xe3\xcf\xdf\x9d\x1a\ \x77\xd8\xd4\x70\x52\x83\x63\x98\x30\x67\xc2\x4c\xf3\xe2\xe4\x4e\ \x98\x6a\x59\xf4\xe8\x51\xc6\x52\xcf\x34\x29\xd5\x66\xc2\xa8\x19\ \xe7\x26\x8c\x38\x59\xe2\xd4\x9c\xe6\xd3\x27\xcb\x69\x7a\x3e\x58\ \x29\x6a\xf4\x28\xd2\xa4\x4a\x97\x32\x35\xfa\x81\xa8\x95\x7f\x52\ \xa7\x52\xad\x6a\xf5\x2a\xd6\xaa\xae\x30\x71\x35\xfe\xb3\x0e\xd3\ \x33\x16\xcf\x16\x8c\xba\x73\x8f\x0d\x9b\x33\x19\xcc\x81\x7b\x10\ \xc3\x80\x81\x07\x27\x40\x9d\x70\x91\xc4\x85\x8b\x13\x7a\xf7\xee\ \xc5\x76\x02\x1b\x36\x21\x7a\xaf\x5c\x72\xf5\x6d\x0e\x1b\x24\x89\ \x6f\x08\x79\x73\x45\x48\x92\x84\x57\x0a\x52\xa6\x7c\x50\x08\xc3\ \x36\x6f\x1c\x3e\xf4\x52\xcd\xe4\x19\x94\x1b\xd1\xde\xbb\xa7\x98\ \x4d\xc6\x1a\xfe\xbc\x84\xa9\xe8\x8f\x59\x4b\x96\x59\xa6\x31\xab\ \xcd\xac\x26\xee\x9d\x37\xb3\xec\xf4\x89\x5b\xa8\x31\x96\xc6\x3c\ \x34\x2d\x6e\xfc\xb8\x51\x38\x56\xae\xb9\xca\xea\xfc\xb9\xf3\x2a\ \xa3\x30\x2d\xc0\x34\x2a\xec\xa6\x67\xd6\x33\x26\x0e\x11\x4f\x95\ \xaa\x18\x31\xcc\xc5\xad\x5b\xd7\x2e\x7a\xbe\x49\xfe\xb2\x17\x7c\ \x62\xfd\xa5\x56\xad\xcc\xdd\x98\x33\xe7\x46\x92\x2b\x96\x1e\x47\ \x4e\xf8\x26\x46\x41\xdd\x54\x46\x59\x37\x05\x02\xd1\x8d\x43\x12\ \x45\xf3\x59\x18\x66\xd5\x50\xc3\x59\x68\x49\xc8\x11\x6a\x0d\xa2\ \xe4\x05\x6c\x2e\x65\x01\x03\x33\xd5\xdc\xf6\xd3\x6c\x3f\xe9\xb1\ \xdb\x4a\xbc\x4d\x03\x83\x14\x30\xe8\x61\xcc\x70\x1e\x28\x87\x1c\ \x8c\x31\x16\x45\x9c\x15\xc6\x1c\x00\x1d\x8e\xfe\x39\xfe\x63\x18\ \x57\x5c\xb1\xb0\x89\x58\x3d\x8c\xd2\x43\x46\x4e\xac\x05\x4e\x78\ \x06\x98\x83\x8d\x01\xe7\xe1\x75\xd7\x5d\x79\xf1\xa5\x97\x5f\x82\ \x25\x71\xe5\x15\xad\x58\x31\xdf\x95\x57\x62\xf3\xc6\x37\x90\xf5\ \x97\x10\x99\x8d\x51\x46\x50\x19\x69\x96\xf1\xd0\x44\x5e\x78\xe1\ \x4f\x18\x4e\x28\x16\xe1\x84\x13\x3e\x78\x8f\x13\x5e\xc0\x50\x22\ \x0c\x9f\xd5\x06\xc3\x34\x2b\xbd\x04\x13\x6f\x1b\xea\xa4\xe1\x86\ \xb5\x09\xe5\x01\x8d\x32\x3a\x6a\x1c\x1c\x4f\xd5\x78\xa3\x8e\x95\ \x62\xe5\x4a\x15\x3d\x3c\xa3\x9d\xa6\x9b\xdc\xa1\x5d\x18\x19\x84\ \x9a\x0f\x38\x07\x98\xf3\x56\x2d\xdf\xf8\x35\x17\x5e\x2e\xdc\x60\ \xd7\x7a\x52\x52\xa9\x97\x7b\x5e\x6a\x69\xc5\x25\x49\xdc\x97\x9f\ \x25\xd8\x5c\x89\x5f\x99\x65\x22\x54\x90\x9a\x69\xb2\x29\x46\x34\ \x70\x86\xb1\x09\x9d\x75\x4e\x78\x56\x0d\x61\x30\x93\x28\x33\x6e\ \x7e\xc8\x9b\x1e\xb3\xc9\x56\xe8\x4e\x39\x65\xdb\x1b\x33\x29\x4e\ \x63\xcc\x8b\x8f\x9a\xcb\x14\x54\x1e\xa0\x52\x85\xa5\xed\x56\x55\ \xc5\x1d\x9b\x6c\xd2\x83\xa6\x9f\x3e\x23\x64\x06\x19\x7c\x47\x09\ \x38\xdf\xc4\x80\xcd\x37\x57\xd4\x12\x8b\xfe\x79\x4f\x1a\xfc\x9e\ \xac\x27\x40\xa6\xf0\x7a\x42\xb8\x22\x9f\x39\x49\x20\x81\x44\x12\ \xd8\xec\xb7\xc7\x0d\xc0\x06\x1b\x6c\x37\x9a\x6d\x86\x20\x44\x6d\ \xc2\xe9\x44\xb3\xce\xd6\x59\xc3\x28\x17\x5d\xf4\xe7\x9e\x25\x66\ \x1b\xe8\x4a\x30\xeb\xa6\x13\x4e\x31\x29\xca\x68\xb9\xe7\xea\x6c\ \x94\x07\x44\x7d\x00\xce\x25\xee\x0a\xbd\x23\x28\x6c\xc8\xfb\x8c\ \xa7\x9b\xf6\x90\x41\x3e\x58\x60\xa1\x0a\x25\x94\xa8\x62\x4e\xaa\ \xdf\x2c\x29\x57\x5e\xad\x1e\xbc\x9e\x7a\x0a\x7b\x5d\x58\x2b\xdf\ \x48\x4c\xf1\x1b\x97\xbc\xf1\xde\x95\x0a\x6f\x4c\x66\x64\x7b\x60\ \x96\x59\x1b\x22\x37\x68\x32\xdd\x46\xdf\x71\x87\x13\xab\x31\x73\ \x93\xcc\xd8\xfe\xd4\xf7\xcc\x71\xb0\x0c\xa8\x1e\x8c\xee\x7c\xb8\ \x53\x50\x19\x13\x43\x73\x43\x5b\xea\x8a\x12\x6c\x94\x56\x83\xbc\ \x78\x8f\x1a\x03\x16\x51\x53\x72\x40\xaa\xe6\x04\x3c\xf0\x5c\x05\ \x6b\x9d\xf0\x7b\x5e\x0b\x26\x44\x96\xf2\x89\x1d\xd9\x25\x66\x07\ \x76\x65\xb0\x5f\xb2\xdd\xe5\x0d\x21\xd4\x1e\x42\x08\x4e\x3c\x21\ \x46\x6b\x10\x9e\x56\xf7\xc9\xa3\x60\x58\xd3\x87\x20\x86\x08\xe8\ \x34\x71\x24\xdf\x2d\x4f\xb7\x71\xc8\xfe\x8c\x50\x2b\xe6\x8c\xf8\ \xe1\x1f\x64\xc0\xae\xe3\x96\x56\x11\x42\x69\x67\xdd\x83\xb7\xbe\ \x4e\x3f\x1d\xf5\x01\x07\x7c\x63\x75\x2d\x57\x18\x00\x4f\xc1\x7b\ \xe1\x55\xfa\x94\xed\x9d\x90\xa5\x2c\x45\x51\x72\xc9\x37\x53\x5c\ \x62\x0e\x99\x03\xf6\x4f\x66\x1b\x14\xb2\x87\x24\x84\x60\x0e\x67\ \x98\xd8\x83\x20\x04\xbc\xba\xa1\xc4\x1f\xa8\x98\x09\x86\xf6\x96\ \x9b\x13\x21\xef\x37\x38\xe1\x90\xf2\xc2\x25\x14\xa1\x40\x85\x7a\ \xe6\xea\x99\xcf\x3e\xb0\xae\xec\x3d\xce\x05\xa5\x41\x0b\x12\xd4\ \x12\x8f\x78\x60\x01\x49\x94\x58\x82\xd4\x54\x61\x35\x55\xc1\x25\ \x16\x0f\xa0\x4b\xfc\xb2\xa6\x17\xae\xb1\x67\x30\x97\x38\x8a\x7c\ \x5a\x71\x89\x6e\x7c\xe9\x4b\x60\x2a\x48\x63\xcc\xf4\x86\x02\x09\ \xa1\x1b\x0a\x79\xc2\x1e\x70\x57\x83\x33\xd4\xe0\x77\x0b\x74\xd6\ \xf7\x7a\xa0\x32\x37\x79\x88\x43\x3d\x39\x91\x6f\xfe\xe4\x13\x9e\ \x10\xaf\x1a\x84\x63\x49\x07\x3d\x08\xa3\xa7\xb0\x91\x8d\xc6\xc8\ \xc7\x19\x48\x58\x29\x57\xf0\xe3\x41\x48\xb8\xc7\x19\x42\xf0\x84\ \x15\x62\xc1\x1c\x30\xd4\xdc\x37\x64\x48\x35\xb8\xb0\x0f\x1e\x2e\ \x80\x07\x3c\x1e\x60\x43\xbd\x24\xfe\x8c\x6b\x80\xf9\x0b\x36\xb2\ \x64\x14\x59\xc8\x67\x88\x42\xc0\x86\x80\xde\x60\x09\x82\x50\x26\ \x89\x04\xea\x18\x43\x9e\x20\xca\xd6\x70\xe7\x8a\x26\xd3\x88\x45\ \xb6\x78\x9b\xc1\x21\x8f\x82\x7f\xe3\x09\x6d\xcc\xb8\xa2\x9e\xa9\ \x51\x46\x6d\xbc\x65\x21\xf2\x81\x04\x39\xce\x11\x77\x54\x3c\x83\ \xee\x32\x80\x39\x17\x92\xef\x7c\xdf\x48\x1f\x21\x11\x79\xc8\x07\ \x24\x72\x55\x8c\x7c\x92\x23\xfd\x12\xc9\x1f\x1a\xa5\x92\xfc\x73\ \xe2\x64\x0e\x52\x90\xc7\x28\x71\x89\x98\x81\x62\x1b\xc2\xf0\x84\ \x90\x78\xc4\x94\xa7\x74\x42\xca\xde\xe4\x8f\x2e\xfe\xe6\x8b\x7f\ \xf3\x49\xa1\x40\x34\xcb\x5a\x3a\xea\x96\x56\x78\x8a\x31\xc2\x80\ \x84\x58\xf0\x32\x47\xae\x30\xc0\x13\x74\xf7\x84\x0c\xec\xa1\x00\ \x98\x03\xcf\x01\xc8\x77\x00\x19\x1e\x73\x7d\x87\x44\x24\x33\x4f\ \xd0\x24\xf6\x99\x67\x87\xb2\x7a\xe4\xfc\x6e\x55\x14\x59\xb8\xce\ \x31\xdd\xf0\x9c\x40\xcc\x86\xc4\xc9\x20\xc4\x89\x7b\xd8\x83\x28\ \x53\x1a\xa7\x4d\x98\xd3\x59\x35\xa8\x08\x17\x1f\x58\xbc\x9f\x48\ \xc1\x27\x91\xf8\x1b\xb6\x5e\xd2\x22\xc3\xd1\x33\x46\x6d\x2c\xca\ \x53\xb8\x91\x81\x7b\xb8\xa0\xfe\x9f\xfe\x1c\xa8\x30\x57\xb8\x87\ \x7e\x8c\x4f\x15\xe5\x33\xdf\xf9\x90\x09\x0f\x50\x2c\x33\x91\x71\ \x21\x58\xe8\x74\x38\xa5\x47\x62\x83\x9a\x46\xd9\x9f\x63\xce\xf4\ \x0d\x81\x5c\x66\x58\x64\x5a\x08\x4a\x47\x29\x4e\x05\xb6\x94\x34\ \xa8\x0c\x83\x3a\x65\xaa\xbc\x78\xfe\x2d\x12\x21\x7a\x09\x70\x18\ \xe5\xa2\x9e\xda\xb2\x83\xf8\xcc\x07\x1b\xe6\x80\x3d\xa3\x3a\xc7\ \x15\x21\x38\x92\x2a\xb0\x00\x0f\x61\x82\xc7\xa9\xdf\x30\x9f\xe7\ \x1a\x6a\xc8\x43\xba\x20\xa2\x13\xad\x68\xfc\x20\x09\x98\x48\x6a\ \x14\x57\x98\x34\x47\x58\xbf\xa1\x49\xca\x90\x34\x58\x28\x4d\x6b\ \x4a\x4b\xd9\xd6\x8e\x84\xc4\x1f\x29\x43\xc5\x45\xac\x05\x4b\x13\ \xe9\xe1\xa6\x82\xaa\x2d\x4b\x22\xd1\x92\x6b\x28\x67\x7a\x7c\x35\ \x8e\xa4\xee\xf9\x81\x42\x0c\x95\x0d\xb4\x20\xec\x73\x30\x95\x01\ \x70\xf0\x0b\x0b\xf1\xa8\x05\x16\x6a\x01\x1e\x63\x52\xcd\x73\xb5\ \x58\xdf\x64\x0d\x99\x48\x8a\x4e\x09\xab\x52\x8a\xe4\x15\xae\x10\ \x49\x57\xd4\x8f\x92\xa0\x2d\x22\x69\xc3\xda\xc9\xc0\x24\xe4\xa4\ \xa7\x3d\x03\x15\x3f\x72\xc7\xb6\x82\xe4\x35\x7e\xf2\x90\xb5\x6c\ \x73\x46\x98\xec\x77\x50\xfe\x2b\x52\x06\x4f\x7f\x8b\x1c\x36\x0a\ \xb7\x10\x9e\x70\x02\x5a\x62\xd1\x38\xe4\x5e\x05\x53\x6d\x68\xe1\ \xd4\x54\x51\x0b\xe9\xca\xf0\xa9\xdf\x30\xc0\x84\x89\xe0\x50\xbc\ \x18\xf2\x01\x95\x65\x1f\x5d\xe8\x82\xd5\xbe\x4c\xf3\x0a\xe7\x2b\ \x8c\x2b\x5c\xb1\x3f\xd1\xbe\xe1\x54\x61\x95\xdd\x63\xde\xf0\xba\ \x2e\x45\xf1\x06\x13\x43\x0b\x6b\x1b\x64\xc5\x2b\x6a\x51\xbf\x3a\ \x79\x1e\x19\xa1\xb7\xc1\x9a\x46\x2f\xb7\x2f\xd1\x6b\xa3\x04\x8c\ \x2e\xa0\x42\x65\xb8\xc6\xb0\xc0\x19\x50\x38\x58\x06\x6b\xa5\x0a\ \xdf\x00\x47\x0c\x32\x00\x8f\xa7\xc9\xd0\xa9\x16\x36\xe6\x75\x11\ \x99\xdd\x0f\x9f\x80\xbb\x98\xa5\x52\x24\xbf\x71\x89\x2a\xb4\x0e\ \x7f\xa2\x05\xad\x68\x31\x29\x3b\x27\x22\xa4\x4c\x49\xc0\x4f\x7d\ \x7e\x97\x42\xb8\xfa\x03\xc1\xf4\x8d\x96\x67\x6e\xc3\x2d\x98\x89\ \x28\x28\x35\xd5\xad\x7f\x5d\x14\x60\x25\x17\xe7\x03\xb4\xbc\x27\ \x37\x3c\x91\x81\x8f\xa0\x65\xca\x54\xa6\x4a\x8a\xa7\x06\x8f\x18\ \x4c\x38\xa1\x0b\xf5\xf2\x01\x14\x11\x55\x42\x72\xf8\x90\x65\x96\ \x0b\x77\x47\x4c\x25\x13\xb3\xf9\x1b\x55\xf0\x1c\x98\xae\xe0\xe2\ \x18\x10\x91\x88\x32\xfe\x96\xb1\x9d\xed\x33\x87\x1b\x4f\x4c\x8f\ \x13\xe1\x1d\xa5\xcd\x79\x0f\xca\xdd\x41\x8b\x18\xe2\xd6\x6d\xb3\ \x35\xa8\x22\x23\x5a\x38\x8a\x66\x74\x71\x94\xf3\x14\x5a\x0e\x37\ \x0e\x05\x98\xd0\x0d\x2c\x7d\xe9\x1d\xb9\xa2\x16\x59\x36\x40\x74\ \x9f\x6a\xbe\xf2\x5d\xa2\x7c\xa3\x56\x26\x65\x51\x5d\xe6\x75\x63\ \x35\x16\x80\x49\x5f\xc0\xe2\x6d\xe2\x80\xf1\x4f\x61\x81\x39\x6f\ \x37\xae\xe0\xc4\x84\xdc\x39\xcf\x89\x41\xc2\x1c\x42\x80\x52\x31\ \x04\xb4\x9c\x92\x3b\x43\x84\xf4\x6c\x1a\x14\x6e\xc2\x09\xe4\x74\ \xb8\x9e\xe6\xca\x12\x65\x50\xbc\x25\x15\xf7\x2f\x70\x00\xac\x57\ \x68\x03\xd7\x03\x2c\x32\xc6\x53\xc0\x31\x1a\x29\x6f\xdb\x2a\x55\ \x30\xc0\x21\xb5\x0c\x9e\xcd\x2d\x54\xdc\xe6\x9b\x30\xa9\xe1\xb1\ \x07\xed\x9a\x9a\xa2\x04\x73\xb7\xbb\x4d\xac\x73\x7a\x9f\x4f\xd6\ \xec\x15\xc2\x03\x2e\xd9\x86\x9f\xff\x6a\xd7\x13\xdb\xd5\x49\xdb\ \x00\xc5\x10\xdc\x98\x23\x0e\xa7\xf4\x83\x70\x7c\xb7\x8d\x7c\x2f\ \x95\x71\xba\xd0\x6d\x74\x62\x71\x97\x50\xdc\x25\x2b\xf8\xba\x91\ \x3d\x00\xe0\x15\xec\x95\xe3\xc5\x61\xd1\x07\x40\xfe\x81\x7c\x04\ \xbb\xd2\x25\xd7\xfe\x0a\x2d\xe2\x81\xc8\x7e\x3c\xb6\x7c\xa0\xfe\ \x72\x2d\xc8\x23\x66\x31\xab\xbb\xcc\x36\x8c\x85\x01\x98\x24\xf8\ \x34\x63\xc3\x1c\xe1\xa5\x37\x36\x1e\x10\xf4\xa0\xdb\xb9\xe8\xf6\ \xc9\xd8\x95\xdc\x76\xd2\x02\xfe\x6e\x24\x5e\xe8\x81\x7c\x47\x11\ \x65\x36\x54\x64\x14\x71\xc2\x23\x5c\x19\x84\x37\xbd\xe5\x44\x50\ \x15\xef\xba\x1e\xc8\xbe\x82\x23\x33\x0a\xc0\x66\x57\x4a\x6f\x85\ \xeb\x46\x6e\xf4\xc0\x59\xbb\x7c\xfb\x54\x30\x15\x83\x7e\xc0\xc3\ \x00\xa0\x0e\xa4\xb8\xa3\x5a\x0b\x5a\x24\x93\xb2\x89\x7c\xe8\x09\ \x14\x19\xf8\xe5\x63\x03\xf0\x83\x7f\x40\xe1\x13\x0f\xf4\xe9\x7b\ \x8d\x76\x19\x83\x7c\x97\x04\xb8\x07\xfb\xe8\xf9\x09\x9f\x29\x67\ \x9e\xa8\x9e\x92\xcf\x60\x04\x25\x66\x64\x86\x18\x9c\xe0\x1a\x07\ \x96\x7e\xe2\x5d\xa7\xb8\x31\xc8\xae\x8c\xe1\xf4\x96\xfe\x3b\x8b\ \xd4\x07\xa1\x12\xa9\xb4\x3f\xc5\x02\x6d\x47\x21\xee\x61\x1a\x28\ \xc0\x43\x3f\x48\x97\xb8\x79\xd9\x63\x81\x19\xcc\x89\x59\x55\x29\ \x1e\x3c\x38\x5f\xe0\x99\x99\x44\x25\x9e\xe2\xf1\x05\xf4\x05\xdd\ \x0e\xfd\x0a\xf6\x75\x49\x64\x24\xc1\x00\xf9\xdb\x84\x84\x80\x18\ \x48\x81\x49\xfe\x0c\x1b\x86\x64\xc4\x1d\xf8\x03\x6e\x30\x43\x9f\ \xc1\x95\x4e\x30\x43\x48\x84\x41\xca\xbc\x46\x4d\xac\xc4\xfb\x05\ \x47\xe1\x90\xdd\x5e\x29\xc7\xa2\x39\xca\xfe\xa5\x11\x8c\xf4\xcc\ \xa3\xa5\x1d\x8b\x70\x43\x3c\xec\x18\x5a\x9c\x40\x00\x4a\x05\xe4\ \x20\x92\xef\xb9\x5c\xdd\xbd\xdc\x31\x5d\x17\x76\xc9\x5c\x87\x15\ \x12\x5c\x60\x03\xfb\x2c\xd2\x99\xed\x05\xd7\x00\x9d\xf4\xf5\xdb\ \x06\x46\x06\xc3\x38\x5e\x9d\xa4\xd0\xee\x24\x8b\x47\x90\x04\x33\ \x9c\x84\x13\xa8\x84\x89\xc0\x00\x9c\xe8\x09\x4c\xc0\x89\xca\x38\ \x90\x6d\xc4\x81\xc5\xe9\x81\x08\x4c\x1c\xce\x24\x87\x15\xf8\x96\ \x4f\xa1\xdd\xa3\x78\x5c\x08\xa5\x1d\x37\x70\x83\x14\xf8\x99\xb3\ \x14\xd5\x12\x62\x0a\x28\xf0\x5e\xaa\xb8\x5c\xf0\x75\x0e\x15\x2a\ \x93\x76\xf9\xdd\x09\x10\x0c\xfb\x68\x4d\x17\xde\x85\x5e\x28\x9e\ \x10\xd8\xc5\x18\x36\x0c\xbf\x41\x06\x08\x4e\x08\x12\xa0\x54\xdc\ \x88\x52\x9e\x28\x03\x0c\xc4\xa0\x8a\xb8\x04\x4b\xc0\x80\x9b\xa8\ \x88\x1e\xb0\xe0\x6a\xa8\x8c\x5c\x65\xcb\xfb\xb1\xc4\x1f\x02\xa2\ \xce\x78\x00\x37\x0c\x45\x3d\x19\xe2\x8c\x20\xa2\x31\x80\x03\x23\ \xd6\x89\xfe\x60\x2d\x21\xd1\xf4\xde\x84\x45\xe1\x53\x6d\x4e\x54\ \x11\xc1\x25\xba\x40\x3b\x68\x17\x55\x75\x22\x55\xe9\x90\x27\x3e\ \x13\xc2\xac\x07\x07\x72\x60\xb0\xd0\xce\xae\xd9\xde\x0d\x4c\x1e\ \x4a\x89\x60\x16\xac\x00\x0c\xf0\x8e\x17\x4c\x03\xc5\xad\x40\xc5\ \xd9\xe2\x2c\xe6\xa2\x17\xa0\xc2\x3e\xba\x09\x2a\xd4\x86\x4e\x60\ \x0b\x0e\x2a\x9a\x20\x3e\x0a\x1c\x18\x43\x31\x02\x21\x72\x20\x24\ \x8d\x28\xe3\x07\x78\xc2\xe6\x99\xcc\x71\x3d\x22\x3f\x5c\xd7\x84\ \xd5\x82\xa8\xb9\x9c\xa8\x09\x1f\x76\xb5\x8a\x21\x85\xd8\xe8\x8c\ \x4e\x94\x40\x13\xac\x94\x63\xf6\xd9\x5b\x42\xa0\x4d\x2a\x4a\x08\ \xc0\x4d\x9e\xed\x08\x5c\x34\x28\xc3\x0a\x4c\xc3\x6a\xa8\xc4\xd7\ \xc1\xc1\xd7\xad\x1e\x8a\x64\x81\x4c\x2a\x43\x1c\x7c\xc6\x9b\x3c\ \x90\x5c\xe9\x44\x1f\xb2\x08\x71\xc4\x5e\xf5\x20\xa4\x31\xda\x12\ \xda\xb5\x11\x42\x72\x03\x38\xfc\xdf\x84\x28\xd8\x23\x56\x01\x2d\ \xd4\x02\x11\x28\xc2\x46\x8a\xdb\x12\x28\x82\xb9\x2d\x20\x22\xb5\ \x43\xa9\x7d\x63\x48\x1a\x0c\x94\xdc\x19\x5a\x42\xde\xab\x80\x22\ \x4a\xce\xce\x4a\xb2\xe4\x3a\xda\x8e\xd1\xed\x81\x14\xac\x00\x1c\ \x4c\xfe\x03\x4d\xe8\x01\x1c\xec\x25\x5f\xae\x5e\xa0\xc8\x24\x1c\ \x28\x43\x16\xf0\xa3\x03\x79\xc8\x3f\x02\x64\x4b\xd0\x9f\x8b\x28\ \xa4\x0f\x5a\x81\xc7\xb1\xc8\xa3\x7c\x00\x37\x20\x24\xc8\xc9\x9e\ \x31\xc4\x83\x54\x4e\x88\xb6\x5d\x1a\xa6\x60\xa3\x56\x8a\x9a\x56\ \x96\x8f\x22\x54\x0d\x54\x5d\xa2\x58\x8a\x25\x5e\xa0\x26\x59\xb6\ \xca\x5d\x5c\x9f\x6b\x5e\xdf\x9d\xd9\xc5\x5e\x9c\x4e\x60\xa8\x64\ \x3a\xda\xde\x7d\x5c\x5f\x3a\x3e\x41\x24\x4c\xc1\x0a\x44\x42\x4f\ \x28\x03\x5f\x0e\xe7\xea\x01\xe3\x5e\x2a\x43\xb5\x1c\xe6\xf3\x00\ \xa4\x1e\xb6\x48\x20\x3e\xe7\xb9\x48\x5b\x11\x5e\x43\x3d\x15\x63\ \x22\x72\x43\x1a\x7d\x40\x3c\x2c\xd0\x66\x72\x66\x15\x64\xa5\x22\ \x54\xe4\x67\x76\x65\xa7\x5d\x63\x2d\x30\xa0\x0b\x90\x81\x36\x6a\ \xcd\x6a\xba\x4a\xc6\xb8\x8a\x7b\xbe\x0a\x7e\xa0\xc7\x28\x9e\x4e\ \xf5\x69\xe0\xc4\xec\xd8\xd1\xe9\xa6\x62\x20\x81\x10\x44\xc2\x0a\ \x4c\x41\x4c\xac\x84\x5d\x0e\x27\x5f\x8a\x5d\xe1\x28\x07\x72\x0e\ \xcf\x4d\x08\x8e\x6d\xd8\x60\xd9\x21\xa5\xb9\x38\x1a\x65\x32\x66\ \x53\x04\x15\x37\xc4\x84\x27\x18\x03\x93\x71\x43\x18\x70\x27\x34\ \xfe\x62\x4a\x78\x6a\x25\x3f\x84\xe6\x46\x9e\xcf\xcb\xc1\xc5\x79\ \x82\x02\x55\xb5\x43\x08\x68\xa3\x58\xb6\xe7\xab\x90\x81\x7c\xc6\ \x27\x9e\xe1\x45\x7d\x42\x9f\x95\x58\xdf\x6d\xb2\xe4\xd1\xe9\xda\ \x6d\x22\x01\x6f\x46\x42\x24\x48\x01\x10\xe8\x96\x5d\x3e\x67\xec\ \xc1\x81\xd8\xb9\x08\x1c\x08\x0e\x86\xd0\x4c\xf3\x74\x88\x8a\x0c\ \x87\x92\x5a\x28\x8c\x44\x0a\x37\x44\x02\x37\x50\x27\x53\x26\xa2\ \x14\x6c\xe8\x3d\xdd\x93\xff\x2d\x10\x12\x74\x27\x83\x61\x4a\x15\ \x8c\xa8\x89\x2a\x02\x43\x99\xdb\x55\xc2\xc5\xfa\x80\x42\x08\x88\ \x25\x8d\xe2\x85\x7a\xaa\x27\x6a\xc2\x67\x59\x3e\x49\xf2\xc9\xc5\ \x8e\xf2\x28\x12\x02\xdc\x7d\x70\xdf\xef\xdc\x40\x1b\x94\x01\x91\ \x76\xc3\x08\xea\xe5\x92\x2a\x69\x20\x7a\x1c\x06\xe5\xa1\x6e\xd4\ \x84\x2c\x09\x27\x74\xee\xa5\xce\x38\xda\x96\x72\x43\x92\x1d\x47\ \x50\xe9\x01\x54\x62\xa7\x51\x18\x43\x01\x20\xa1\xb3\xa0\x69\x9a\ \x62\x0a\x3f\x94\x68\x68\x1a\xd3\x63\x89\x9a\x45\x12\x52\x8b\xba\ \x4a\x3b\xd0\x68\x3b\xcc\x68\x9f\x8e\xce\x1e\xfc\xe9\x09\xf4\x6a\ \xaf\xaa\x64\x7d\x70\x9f\x2a\xee\xa7\xa1\xc2\x65\x43\x38\x44\xfe\ \xc7\x1c\x69\x84\x02\x22\x0f\xc6\x62\x35\xcc\x1f\x33\xa0\x42\xcb\ \x00\x0a\x6e\x14\xce\x0e\x16\xa4\x8c\x78\x5c\x31\xd6\x53\xda\x79\ \x42\x8a\x90\x6a\x51\x78\xc2\xc8\xd5\xcd\x3e\x85\xe8\x9a\x8a\xe7\ \x37\x68\xe5\x34\x46\x21\xcc\x11\x92\x9d\x6a\xe3\x0d\xe4\x6a\x9e\ \x86\x24\xfb\x30\x93\xe2\xe5\x6b\x05\xca\x45\xaf\x9e\x65\xc6\x1c\ \xab\x8f\x02\x69\xd3\xa1\xc5\x1c\x2c\x44\x37\x44\x43\x81\x20\x6c\ \x34\x94\x81\x5e\x2e\xc5\x41\x86\x81\x6a\x30\x8a\x1e\x78\x06\x4f\ \x16\x4a\x4d\x61\xab\x5e\x7d\x80\xb6\xae\xd1\x35\x18\x83\x97\xfa\ \x94\x64\x42\x25\x38\x2c\xe5\xda\x65\xa6\xb3\xcc\x01\x34\xee\x88\ \xab\x6a\xe5\x31\x8d\x66\xcb\x6e\xe4\x84\x11\x5f\x58\xe2\xa9\xab\ \x90\x41\xae\x6a\x4d\x87\xe1\xab\x5b\xbc\x45\xbe\x56\x56\xac\xfc\ \xea\x7b\xfc\x2b\xb1\xa2\xd0\x8f\x02\x2c\x0a\xcd\x41\x12\xb4\x41\ \xc7\xbc\x4d\x34\x88\xc1\x91\xea\x96\x20\xea\x01\x82\x39\x01\x71\ \xe8\xc1\x45\xc4\x01\x0e\x1a\x19\x6f\x39\xda\xa7\xae\xd1\x51\x30\ \xca\x35\x60\xe9\x85\x22\xe2\x34\x4c\xa6\x53\x5c\x9b\x29\x9d\x69\ \x88\xb6\xea\x67\xb2\x2b\x3f\xc0\xaa\x02\x26\x13\x6a\xde\xfe\xac\ \x6a\x1a\xdf\xa9\x29\x09\x5c\xf0\x6c\x65\xf9\xec\x59\xf6\x9b\xd1\ \x11\xed\xbf\x19\x2a\x12\xae\x23\x43\x08\x90\xd2\x76\x83\x14\xe8\ \x56\x24\x1c\xe5\x51\xc0\x81\x1e\x3c\x01\x12\xd4\x80\x17\x28\xc3\ \x34\x84\x04\x6c\x08\x07\x6e\x19\x8e\x84\xc6\x48\x92\x21\xa3\xb7\ \x82\x5c\x22\x56\x26\x50\x65\x80\x39\x21\x81\x23\x06\xa0\x88\xb6\ \x69\x45\x7e\xc3\x55\x1e\x93\xf0\x85\x19\xba\x79\xa4\xf1\x61\x8d\ \x55\xc1\x05\x79\xc4\x85\x87\xf5\x2b\x7a\x40\xc9\xb0\xe6\xa7\xef\ \xea\x9a\xef\x9e\xa1\xc6\x78\x60\xdb\x74\x43\x24\x5c\xc3\x35\xe8\ \xc1\x52\x78\x00\x66\xa6\x45\x35\x4c\x43\x9b\x1c\x1a\x6e\x49\xcf\ \xce\x24\x19\xff\x45\x26\x3e\x21\x64\x76\x86\x40\x4b\x9d\x2e\xea\ \xb6\x6d\xdb\x1e\x13\x11\x60\xe3\xea\x62\x23\x86\xed\xdd\x00\x6a\ \x17\x22\xad\x5b\x22\x3d\x80\x9c\xea\x9d\x87\x79\x58\x5d\xf4\xed\ \xbf\xf2\x1a\xa1\x02\x6f\x7e\xe2\x26\xf1\x46\x9e\x07\xb6\x41\x6f\ \x7a\xc0\x14\x74\x6d\x20\x4a\x41\x94\xd5\xc0\x08\x92\xa0\x67\x54\ \x83\x14\x68\xad\x00\x9f\x0b\x08\x89\xed\x52\xf8\xcc\x64\x76\x69\ \x07\x79\x82\xc9\x9a\x0c\x12\x10\x41\x88\xa6\x98\x56\xfe\xa6\xeb\ \x37\x10\x41\x45\xb6\x6e\xaa\x5c\x64\x9c\xee\x9d\x98\x01\x1e\x44\ \x39\x21\x5c\x38\xe0\x1e\x68\x0d\xef\xba\x26\xb1\x16\x6d\xef\x0e\ \xac\x2a\xe2\x87\x06\xf6\x9b\x10\x28\x2a\x91\x7e\x2c\x52\xe8\x81\ \x18\x00\x93\x18\xc4\x84\x14\x48\xc1\x44\x44\x82\xc7\x3e\x66\xf5\ \x24\xce\xa3\x61\x6f\xc7\x12\x98\x15\x80\x03\x7d\x4d\x24\xea\xba\ \x02\xf8\xbe\xad\xf8\x62\xa5\xeb\xbe\xee\x25\xf2\xde\x5b\xc8\x69\ \x5c\xc8\x69\xbe\xd6\xc5\x64\x19\x0c\x0c\x0b\xae\xae\xe9\xe6\xdf\ \x9a\xcc\xae\x88\xe1\xe3\xed\x41\x37\xa8\x02\x10\x8c\xec\x11\x3b\ \x45\x8d\xa4\xdf\x13\x78\x41\xe2\x2a\x62\xd3\x82\x83\x97\x5e\x43\ \xd9\x21\x0e\xfe\x6d\xea\x64\x22\x6f\x97\xde\xd3\x13\xd0\x97\x0b\ \xa8\x2a\x61\xa9\xa9\x22\xa4\x6b\x78\x96\x28\x36\x12\xc1\x37\xac\ \xee\x24\x0f\xdf\x45\xce\x2a\x5c\x10\x9f\x9c\x32\x49\x79\x4c\xd6\ \x8b\x8a\xa1\xd0\x02\xef\xae\x9d\xb1\xd0\xd2\xb0\x8f\xe2\x59\xc6\ \xfc\x68\xd2\x16\x88\x0e\x83\x83\x11\x7b\xdc\x8a\x44\x42\x3c\x9c\ \xc1\x1e\x81\x43\x34\x48\x01\x25\x44\xc3\x13\x18\x6f\xec\x6d\x2d\ \xe2\x5c\xef\xb9\xa4\x1d\x25\x48\xa6\x97\x2e\x01\xfe\x62\xb4\x95\ \xda\x4e\xf1\x9a\xb2\xe9\xca\x5a\xf1\x31\x59\xf1\x34\x5e\xf2\x25\ \xab\x8f\x01\x00\xde\x0a\xdb\x50\xab\xc8\x67\x19\xff\x2e\x90\xa2\ \x71\x1a\x9f\xac\xe3\xe5\x27\xb0\x2c\xc4\xd3\x80\x43\x37\x30\x97\ \x31\x48\x41\x34\x80\x83\x14\xc4\x43\x08\x9c\x41\x1b\x44\x43\x0c\ \x44\x43\x24\x44\xc3\x1e\x8c\xe0\xc7\xc2\x41\xd8\x6e\xec\x42\x7a\ \x2a\x04\x37\x1a\x31\x43\xc5\x11\xd2\x17\x1b\x28\xf2\x22\x7f\xa7\ \xab\xae\x2c\x68\x2a\x82\x24\x63\x64\x2d\x54\xa4\x24\xc3\xad\xf9\ \xae\x0f\x18\x77\x22\x5e\xd4\x28\x8d\xce\x70\x7e\x02\x69\x6e\xce\ \x30\xdd\x00\x1c\x7f\x26\xc6\x1a\x47\xc6\xe1\xc6\x00\x10\x20\x2f\ \x38\x88\x01\x38\xa4\xf3\x3b\x8b\xd2\x83\x81\x83\x39\x3c\x41\x1b\ \x98\xc3\xf1\x22\xc5\x3f\x27\xc5\xa2\x21\x62\x03\xaf\x91\x2c\x70\ \x43\x51\x70\x03\xf7\x12\x74\x41\x57\x25\x11\xd0\x42\xdb\x72\x70\ \x42\x7f\xe6\x43\xb7\xac\x33\x8b\xef\xfa\xd8\x50\x0d\x39\x09\x7c\ \x66\x34\x19\x00\xac\x0c\xa3\x71\xfe\xda\x1e\x48\xe7\x59\x7f\x22\ \x01\xf6\xb9\x8d\x78\x44\x83\x39\x50\x42\x3a\xbb\xf2\x07\x5c\x43\ \x3c\x9c\x96\x4c\x77\xc3\x3c\xaf\xf3\x91\xf2\xfe\x30\x70\x25\x05\ \x42\xda\x34\x64\x0a\xb2\x51\x60\x01\xaa\x5e\x51\x32\xa3\x2e\x2d\ \xd0\x02\xdb\x2a\x02\x15\xb7\xed\xdb\x32\x34\x68\x8a\x27\xcb\x4a\ \xf2\xed\xf6\x9e\x0d\x7d\xe4\x45\xbb\xa7\xc0\xf6\xa7\x48\x77\x74\ \xa1\x72\xb5\x29\x07\x6e\xa1\xfe\x2d\xa1\xda\xf0\xdb\xd0\x5a\x19\ \x50\x42\x24\xac\x74\x51\x5c\x83\x18\x28\x5d\xd2\x8d\x07\x38\x94\ \x01\x16\xd0\xb3\x4f\x25\xc5\x07\x2c\x25\x50\x99\xed\xa6\x52\x42\ \x51\x68\x40\x50\x13\xf4\xb9\x3e\x62\x5f\x83\x70\x89\x72\x70\x60\ \x6b\xa5\x67\x82\xef\x89\x62\xa3\x26\xd7\xd0\x18\xb7\x66\x55\x57\ \x75\xfe\x76\x75\x47\xff\xeb\xb0\x7e\x33\xd1\x6e\xf5\xd0\x6e\x34\ \xb0\xb8\x00\xd0\xb5\x81\x78\xb8\x72\x21\x2f\x07\x96\x2d\xdd\x1e\ \x3c\xc0\x1b\x47\x82\x39\xac\xb3\xd7\x2a\x45\x70\x95\xaa\x4f\xd7\ \x13\x93\x05\x15\x3c\x08\xb5\x84\xa0\x6c\x88\xf6\x35\x2d\x80\x30\ \x60\xbb\x6a\x6f\x8f\x2f\x9b\x7e\xa6\x24\x4b\x72\x26\x47\x75\x36\ \x63\x35\xaf\xfd\x5b\x66\xa3\xb1\x46\x9f\xe1\x19\x7f\xf3\x7e\xa2\ \xa5\x7b\x2d\x84\x39\xe0\x72\x07\x49\x41\x0c\x9c\x14\x64\x08\x41\ \x0c\x74\x36\x37\xac\x33\x5c\x2f\xd9\x42\xfe\x86\xad\xb7\xb2\x11\ \x75\xaa\xc2\x05\xa7\xad\x41\x1b\x15\x1d\xf1\x83\x12\x28\x81\x7c\ \xb7\xea\x6e\xd7\x77\x78\x4e\xf2\x8a\x47\x32\x56\x22\x53\x35\xaf\ \xe6\x0d\xd0\x28\xc0\xf9\xee\xef\xa2\xf2\xb0\x7a\xb4\x2a\x8e\x72\ \xef\x16\xab\x57\xbb\xa6\x07\x2a\xb8\x14\x64\xb7\x15\xa8\x82\xd2\ \x89\x87\x84\x7f\x03\x25\x5c\x83\x67\x83\x03\x05\xc7\xb5\xc3\x1e\ \x05\x22\x5e\xb8\x4d\xdb\xf4\x2d\xc9\x82\x06\x34\xa3\x50\x23\x01\ \x28\xa0\x2b\x3f\x10\x41\x89\xeb\x36\x8a\x03\x36\x99\x33\xf4\x43\ \xbf\xad\x8b\x8f\xef\xf9\x68\x98\x12\x10\x4c\x36\xbb\x8a\x7d\xa4\ \x42\x72\xff\xe8\x7b\xd6\x47\x8e\x27\xf7\x73\x3f\xde\xd0\xfa\xe8\ \xfd\xb6\xcd\x42\x2c\x6c\x4d\x17\x45\x24\xa8\x82\x80\xa8\x02\x98\ \x58\x82\x6c\x2f\x07\xf2\x1a\x03\x25\x9c\x77\x63\x4a\x39\x25\xb8\ \xf6\x80\x11\xd8\x07\x34\x40\x6d\xb3\x37\x5a\x74\xf9\x23\xb2\x6a\ \x51\x87\x39\x3f\xf8\x75\xab\xa6\xd8\x88\xc3\xf7\xf8\x8e\xaf\x01\ \xd0\xc2\x07\xb3\x2e\xf1\xc5\x42\x2c\x68\x0d\x8d\x22\x37\x37\x9f\ \x71\x7c\x72\x74\x65\x4f\x4c\x29\xb3\x24\x80\xdb\x7a\xdb\x48\xb8\ \x39\x80\xc7\xc7\x32\x79\x24\x24\x14\xfe\xa2\xd7\x0f\x52\x5c\x83\ \x93\x37\xc5\x12\x5b\xb9\x94\xd7\x35\x86\x93\xb7\x15\x08\x15\xa6\ \x9f\xa1\x06\x57\x65\x89\x92\x78\x89\xf7\xf5\x88\x96\x68\xba\x96\ \x3a\x56\x56\x73\x9b\x97\x7a\x0d\xc5\x02\x8b\x7e\x63\x28\xd7\x78\ \x37\x67\xb4\x63\x1b\x5d\xad\xff\x38\x65\xe3\x3a\xd1\x22\xad\xdb\ \x58\x77\xc2\x26\x7a\x68\x6b\xce\x92\x47\xb0\xd8\x62\xa9\xa3\xd9\ \xb4\xa3\x47\x30\xba\xfc\x4c\x2a\x44\x7b\x9d\x48\x31\xee\xa9\x69\ \xba\xd2\x42\x89\x9b\xb8\xb6\x87\xa7\x7c\x3f\x32\x89\xb3\xa8\x12\ \xc0\x37\x2d\xb0\x3a\x8b\xd6\x45\x8b\xce\x78\x9c\xeb\xda\xab\x67\ \x8c\x7a\xbe\xca\xb1\x0e\xea\xe3\xdd\x99\xba\x9f\x61\x64\xe3\x47\ \x77\x5b\x77\x0c\xa8\x42\x24\x28\x05\x95\x23\x47\xcf\x14\x64\xda\ \x59\xaf\xe8\x3a\x7b\x04\x73\x03\x16\x5c\xba\xc0\xb3\x41\x22\x53\ \x3b\x3f\x54\xc1\x97\x23\x3c\x28\x44\x3c\x8a\x7f\x7a\x7c\x6b\xfb\ \xa7\xb7\x79\x2c\x28\x41\x35\x53\x3c\x55\x51\x55\x9e\xde\x47\x55\ \xdb\xc7\x71\xcf\x28\xc7\x63\xfc\x31\x63\xf0\x56\xdf\xba\x2a\x8a\ \x34\x48\x9f\xfc\x78\x44\xc2\x92\xdf\x74\x8c\x68\xab\xc7\xf1\x70\ \xda\xb5\xbc\x70\x31\x05\xb4\xe7\xfe\x7c\x9d\x84\x78\x3f\xd1\xd1\ \xf8\xfe\x7c\xc2\x5f\x7b\xa9\x83\x39\xa8\xb7\x6a\xa7\xb7\x39\x28\ \x88\x7b\xd3\xa7\x27\xc6\xbf\xfa\x71\xcf\x41\xc7\xc3\x67\x73\xf7\ \xe8\x19\x06\x78\xfd\x1e\xbe\x0c\xf3\x3a\x4d\xa3\x7d\x5f\x65\x67\ \x04\x5b\x29\xcf\x34\x31\xbe\x97\xb7\x53\x44\x25\xdb\xab\xa2\xdb\ \xf3\x52\x67\x22\x3c\xa9\x97\x78\x3b\x40\x7c\x5f\x2b\x41\xd0\x87\ \xf9\xf8\x22\xbc\xde\x83\xc2\x69\x6a\x23\x8d\x0b\x3e\xc7\xdf\x69\ \x7a\xa6\xa7\xe0\x0b\x6e\x62\xd4\x3e\x0a\x05\xae\x7f\xd7\x7e\x7f\ \x32\x77\x12\x3c\x40\xaf\x47\x8d\xe3\xfb\x54\x21\xcc\x7c\x53\x78\ \x6c\x76\x7a\xec\xbf\x5b\xfe\x3d\x61\x41\x44\x66\xbe\x84\x2c\xd8\ \xdb\x89\x68\xde\xc3\xb7\x12\xb4\xc3\xad\xb6\xc3\xdc\x5b\x3f\xf6\ \x47\x3c\xea\x4f\xfc\x69\x92\x41\x9e\x1e\xf7\xc6\xbf\x79\x28\x63\ \xf6\xd1\x35\x1d\x9d\x7b\xb3\x74\xcf\xa7\xef\x5f\x82\xe6\x10\x3b\ \xf5\xfc\x94\x71\x10\xff\x3d\x71\xa8\xbf\x43\x5a\x1a\x01\x35\x7b\ \xeb\x19\xdd\x40\x7f\xf4\x57\x01\x40\x54\xe1\x47\x4b\x49\x41\x25\ \xa0\x40\x91\x51\xd8\x0e\x54\x41\x84\x0c\xdb\x91\x61\xa8\x84\xe0\ \x43\x17\x0a\x6f\x60\x6c\x97\xfe\xf1\xe2\x8d\x8e\x2e\xe6\x90\x99\ \x33\x12\x09\x12\x36\x25\xe7\x94\x64\xb3\x12\xc9\xc8\x1b\x2f\x61\ \xc6\xf4\xe8\xe2\x04\x36\x73\x97\x2e\xc9\x92\x65\x85\x67\x4f\x9f\ \xd7\x7c\x06\x15\x2a\xf4\xc3\x87\xa1\x43\x8d\x06\xfd\x00\x14\x69\ \xd2\xa2\x3d\x8b\x7a\x3a\xb3\x92\x6a\x55\xab\x57\xb1\x5a\x45\x02\ \xea\x5f\x57\xaf\x5f\xc1\x86\x15\x3b\xf6\xab\xab\x2a\x02\x09\x16\ \x84\x18\x51\xa2\xc4\x76\x07\x0f\x92\x49\x95\x4a\x21\x42\xbb\x0a\ \x45\x92\xf1\x48\xe6\xa2\x0b\x8f\x7b\x6f\x8c\x14\x59\xd2\xe4\xc9\ \x93\x26\x11\xcf\x79\xe9\x82\x71\xdf\xc6\xb1\xb0\x7d\xfb\x76\xe9\ \xc0\x81\x56\x3b\x8f\xf2\xe4\x96\x99\xf3\x53\xce\x41\x3d\x24\x85\ \x2a\x9a\x68\xd1\xa7\x51\xb9\x71\x0b\x51\x38\x6b\x6b\xd7\x54\x6f\ \x90\x95\x3d\x5b\xb6\x2b\x57\x06\x69\x55\x6c\xb7\x9b\xad\xdc\xba\ \x6a\x15\xb2\x49\x85\x84\x6e\x42\xbd\x78\xdb\x75\x3c\x1e\x52\x31\ \x73\xc2\x2a\xab\x16\x6e\xa9\x78\xb1\x5e\xc7\x27\x20\x4b\xa6\x4c\ \x99\x12\xe6\xcf\xdf\x7d\x9a\x26\xcd\x13\x0e\xd1\xd0\xe6\x4b\xf3\ \x2c\x6a\xcc\x34\x37\x70\xdc\x28\x59\xa8\xf1\x9a\x7e\xeb\x39\x55\ \x68\xe7\xd7\xff\xcf\x95\xfe\x5b\x8a\x04\x79\x63\x6b\xae\xb9\x16\ \x6a\x4b\x2e\xe1\x88\x23\x0e\x2f\x17\x22\xba\x61\x23\x32\x08\x4b\ \x69\xa4\x94\x4e\x1a\x0e\x3a\xaa\x50\x72\x49\x2f\x07\xab\x63\xec\ \x84\x13\x0c\x30\xe0\x1b\x55\xcc\xa9\x45\x15\x4a\xc0\x4b\x91\x27\ \xf6\xc6\x1b\xcf\x0a\x63\x8c\xe1\x86\xa9\xf0\x48\x33\x4d\xbd\x0f\ \xb8\xf1\x84\x9b\xa2\x64\x34\xea\x83\x7e\x58\xab\x4f\xc8\x95\x62\ \xd9\xcf\x48\xb2\xaa\xf0\xed\x2d\x87\x94\xe0\x4d\x21\x02\x07\xa4\ \x0b\xaf\xb9\x58\x3a\x09\x2f\x07\x5d\x00\x85\xb1\x90\x32\xc2\x4b\ \xba\xe9\x2e\x3c\x6c\xba\xe6\x44\x4a\xa9\xa5\x92\x60\x72\xa1\x44\ \x03\x1e\x78\xe0\x44\x4a\x54\x39\xd1\x3b\x15\x95\x42\x4a\xa8\x18\ \x3d\x68\x6a\x34\xf6\xac\xe0\x31\x0e\x4f\x74\x1c\x8f\x1b\x27\x5a\ \x0b\x72\x48\xaa\x8a\x3c\x52\xd1\xb2\xaa\x18\x70\xa1\x89\x0e\x6a\ \x07\xca\x01\x11\x94\x52\xae\x54\xa2\x23\x2e\xa4\x2c\x41\x81\x2c\ \x96\x58\x5c\x00\xb5\x1d\xc1\x18\x84\xf0\xaa\x08\x9f\x33\xf4\x24\ \xc5\x42\x35\xe7\x01\x17\xe0\x89\xe1\x9b\x5a\x1e\x88\x01\x0b\x4a\ \x66\xa4\xb3\x4f\x17\xc9\x23\x2a\xd7\xd1\x9c\xc2\x91\xcf\x0f\x62\ \x4c\x0d\x46\x17\xb1\xfe\x38\x54\x55\xd7\x88\x58\xd4\x59\xb3\xa2\ \x24\x50\xa2\x86\x22\xb2\x94\x4a\xaa\x26\x8d\x12\xc3\x90\x92\xc8\ \x92\x22\x6c\x68\x21\x82\x96\x58\x94\xf8\x74\x5c\x50\x28\xd4\x8a\ \xb0\x2a\x4f\xfd\x0b\xbb\x13\x5c\x78\xa0\x16\x73\xcc\x89\xd5\x9c\ \xee\x74\x55\x8f\xcf\x7c\x95\x12\x0f\xc6\x1d\xd7\x63\x51\x3c\xa1\ \xb8\xd1\x65\xd9\x43\xb3\x6a\xd6\xd9\x45\xab\x88\x05\xd3\x68\x2d\ \xed\x6d\x4a\xe1\x28\x7e\x58\x38\x85\x12\xcc\x18\x89\xc5\xfe\x0b\ \x97\x1f\x22\xf8\xe1\xa7\xe1\x1b\x5c\x43\x6c\xdd\x08\x67\xa2\x09\ \x5e\x58\xcd\x61\xf3\x81\x12\x51\xcc\x17\x47\x29\x78\x85\x43\xb4\ \x0f\xce\x3b\x6a\xbd\xd4\x8c\x2d\x76\x47\x60\xfb\x0c\xcf\x8e\x0c\ \xa6\x42\x98\x3e\x85\x17\x3e\xd2\x15\x22\x28\x16\x0e\xd3\x95\xa2\ \x7c\xb2\x5a\x6d\xab\x4a\x25\xa4\xbc\x06\x33\xc9\xea\x4d\xb3\x8c\ \x25\x5c\x22\xc0\x8e\x65\x8e\xd7\xd0\x44\x69\x26\xec\x88\xb8\x82\ \x08\x73\xb0\x71\xa1\x5b\x78\xda\x84\xdb\x1c\x57\x64\xe6\x46\x8a\ \x9f\x7d\xb2\xf9\x03\x9b\xad\x08\x6d\xdf\xd2\x70\xe4\xd9\x58\x6e\ \xb2\x30\xa6\x5f\xcf\x34\x2b\x6a\x09\x42\x8d\x76\xed\xbe\xa4\x95\ \x6e\xb4\x6a\xab\xfe\x1e\x96\xd2\xd2\x4b\x9b\xae\xf8\x6a\x91\xac\ \xe6\x3c\x63\x32\x4e\xe8\x14\xde\x1b\x54\x0d\x73\x4c\x8f\x20\x23\ \xa2\x0a\x57\x5a\xb1\xed\x9b\x13\xba\x65\x2c\x16\xec\x6c\x3a\x40\ \x57\xbb\x3d\x31\x5c\xa8\xd0\x7c\xb4\xb1\x29\x1c\x0b\xc9\x91\x1b\ \x16\x63\x74\x11\x47\xcf\x82\xf7\x51\x03\x27\x0e\x6e\x9c\x0d\xfc\ \x20\x37\xd2\x15\x50\xb2\x7a\x1a\x6a\x2a\xa1\xbc\x34\x5a\xa7\xe7\ \xb0\xba\x73\x8c\x13\x14\x8e\xcb\x90\x4a\x37\xbd\xa5\xc5\x62\x51\ \xfb\x12\xdb\x5a\x57\xe4\x84\x99\x40\x79\x97\x31\x6c\x62\x06\x0f\ \xc7\xdc\x6b\xec\xbb\x77\x5e\xc3\xd3\x51\x70\x16\xd5\xa3\xb3\xe3\ \xe1\xa8\x01\x9e\x30\x8d\x06\x9e\xd0\x3c\x84\x21\x81\x16\xd1\x93\ \x5e\x2c\x1a\x17\x35\xbc\x5c\x8a\x38\xc3\x79\x18\xf9\x12\x84\x29\ \x93\x9d\x49\x48\x66\x43\x9b\xea\xaa\x70\x89\x2a\xbc\xce\x23\xf1\ \x8b\xdf\xec\x4e\xa0\x18\x73\xcc\x89\x33\x31\xd2\x9d\x15\xca\xe3\ \x01\x63\xf0\x6e\x60\x34\x72\x8a\xf0\x04\xc6\xbf\xdf\xe5\xc8\x13\ \x1a\xf8\x19\x37\x32\xe0\xbc\xe8\x18\x80\x16\x57\x70\xa0\x91\x98\ \xe6\x3c\x47\x4d\x30\x22\x11\xe9\x5e\xc6\xac\x37\x9c\xe8\x98\x69\ \x5d\xaf\x99\xfe\x43\x12\xd2\x57\x85\x2b\x60\xe3\x53\x6d\x43\x93\ \x09\x43\xc5\x45\xd2\xb9\xe0\x1b\xf6\xd3\xd1\x8c\x64\xc8\x0d\x3d\ \x98\xc6\x85\x37\xe3\x99\x78\x52\x83\x38\x7e\x7d\xa0\x80\x71\xd4\ \x4c\x10\x8d\x66\x12\x78\xac\x6e\x75\xae\x38\xe2\x7e\xfa\x13\xc1\ \xeb\x31\x71\x37\xc6\x99\xa0\xf6\x32\x62\xa6\xab\x79\x04\x1e\x26\ \x8a\x81\x01\x42\x40\xba\x31\x6d\x0b\x1b\x69\x23\x02\xec\x02\x63\ \xa6\x94\x7d\x0a\x32\x7e\x41\x42\x12\x6c\xd7\x19\x6e\x4c\xe3\x85\ \x69\x5c\xe3\x0d\x6b\x24\x38\x1f\xc5\x51\x87\x40\x23\x4a\xa0\x10\ \xf7\x01\x70\xe8\xa2\x83\x19\xb1\x8d\x1f\xff\xa8\xa8\xe9\x19\xcd\ \x62\xd1\xc2\xcb\x43\x24\x02\x2b\x78\x24\x87\x0c\xf0\x18\xa6\x0b\ \x42\x60\x4c\x78\x64\xc0\x00\x27\xf2\x89\x2c\x96\x10\x27\x12\x3d\ \x80\x64\x2b\x99\x83\x0b\xb0\x81\x8d\xf7\x4d\x08\x7e\xa1\xe3\x24\ \xb8\xda\x36\x36\x17\xd4\x0f\x70\x37\x3b\x16\x8d\x36\x03\x2c\xf1\ \x04\x4e\x8e\x02\xf4\x9d\x4f\x82\x07\x30\x39\xe6\xe3\x0c\x0a\x44\ \x82\x0b\x88\x60\x9b\x5c\x26\xad\x0a\x82\x8c\x9a\xb4\x20\xc2\x98\ \x66\xaa\xa2\x1f\xed\xc8\x40\x3f\xfa\xb1\x4c\x5b\x49\x53\x15\x2c\ \x0c\x8a\xfe\x2c\x2e\x01\x0f\xd6\x50\xe7\x25\xac\x4a\x9d\xda\xce\ \x52\x05\xb0\x5d\xa1\x0a\xd8\x20\x19\x12\x54\x21\xc0\xf0\x14\x02\ \x80\x3e\x61\x65\x9f\x78\x28\xcf\x0f\x14\xe2\x78\x99\xa9\xd1\x4a\ \x5b\x14\xbc\xe4\xbd\xf3\x03\x9e\x60\x9c\x56\xe0\xc1\x51\x7d\xee\ \x33\x69\xae\xe0\x65\xc5\xa2\x84\x84\x47\x5d\x04\x14\xdf\xa0\xc4\ \x01\xe0\xa1\x8b\x1b\x2c\x73\x0f\xf0\xe8\x07\x16\xb0\x00\x0e\xa9\ \x1a\x30\x33\xb2\xa0\x44\x02\x33\x75\xbe\xf9\x29\x62\x7d\xac\xf3\ \xea\x2d\xdd\x67\x92\x10\x90\x13\x47\x16\x30\x2b\x7b\x8c\xe1\x89\ \x30\xf4\x60\x14\x16\x80\x81\x27\x58\xda\x27\x0b\xe0\xc2\x02\x3a\ \xd2\x40\x03\xec\x50\x40\x03\xae\x32\x35\x2a\x7a\xe7\x8d\xe2\xc8\ \x52\x17\x71\xa3\x9e\x86\x71\x81\x22\xfa\x88\x4b\x9e\xf6\x34\x89\ \xf5\xa9\x1c\xc4\x86\xc3\x1c\x8c\xc1\x43\x15\x07\xc8\xc0\xd8\x90\ \x50\x03\x24\x9c\xe1\x0e\x35\xf0\xac\x67\xcf\x10\x82\x0c\xe4\x03\ \x60\x3e\x4c\x8d\x2a\x0a\x50\x58\xac\x98\x4d\x44\x8a\x60\x5d\x2b\ \x60\x1b\x5b\xd8\xd6\x62\x6c\x6c\x38\xc3\x41\xc1\x61\x81\x7c\x74\ \x96\x0d\x35\xb8\x83\x13\xee\x50\x15\xcd\xde\xc3\x09\x9b\xf9\x40\ \x3e\xfe\x9e\x51\x00\x5c\x28\x77\xb4\xb8\xb0\x83\x1d\x7c\x88\x52\ \x0d\x68\xa0\x95\x23\xe5\x15\x4c\xdb\xd9\x13\x6e\xc0\xe3\xb0\x3b\ \x5d\xec\x11\xcd\x72\x28\xc8\xd2\xc5\x82\x9b\x23\x43\x2d\x0e\xd0\ \x8f\xda\x56\xe5\x1e\x58\xb9\x47\x0d\x70\x91\x8f\x02\x38\x21\x04\ \x21\x58\x6f\xc9\x56\x85\xcd\x6f\x78\x35\xb6\xb2\x98\x6d\x12\x58\ \x63\x92\xf9\x08\xa9\x06\xb0\xe0\x89\x27\x70\x91\x81\x3b\xe8\xa2\ \x00\xfd\xb0\x43\x3e\x70\xe1\x5c\xea\xa6\xc6\x87\xbf\xea\x4c\x76\ \xff\x1a\x14\xd8\xde\xf2\xbb\xfb\x34\x0b\xf5\x1c\xeb\xb4\x7f\x42\ \x4d\x41\x2e\xa8\x05\x25\xae\x8a\xb0\xf7\xb6\xd7\x79\x68\x82\x55\ \x88\x24\xa3\x88\x59\x3d\xe0\xbe\x8d\xb3\x80\x8f\x3c\xd1\x80\xe5\ \x16\x20\x1f\x78\xb5\x43\x01\x80\xfc\x87\xe9\xca\x62\x47\xe9\x1c\ \x0d\x51\xb8\x21\xd8\x14\x6d\xd8\xbb\x1d\xf6\x30\x2d\x84\x34\x5e\ \x4a\x3d\x4d\xa8\x26\xc2\x02\x2d\x55\xcc\x62\x21\xb2\x04\x25\x1b\ \x92\xe4\x96\xd9\xf0\x0c\x80\x15\xa2\x01\x10\xee\x71\x5e\x1b\x50\ \x00\x5d\x30\xf8\x1d\xd1\xfd\x80\x0f\xf3\xd7\x2f\xb8\x56\xd7\x0a\ \xad\xe3\xb0\x93\xbf\x6b\x16\x05\x66\xae\x72\x98\xb3\x9e\x95\xf6\ \xfe\xb0\x9a\x95\xdc\x83\xd0\x42\x22\xb4\x96\xc1\x9c\x68\xf7\xe6\ \xa3\x10\x85\x40\x70\x84\xf1\x8a\x8b\x7e\x68\xe0\x07\xef\x50\x73\ \x01\xda\xcc\xa3\xe8\x76\x06\x50\x46\x1e\x8a\x9d\xf1\x1c\xea\xae\ \xb8\xc2\x05\x8e\x95\xb2\xc5\xe6\xe0\xd4\x10\x58\xef\x1e\x9b\xd0\ \x72\xab\x11\x6d\x95\x42\x2b\x9a\xd6\xb2\x36\x03\x5c\x3d\x61\x07\ \x48\xef\x18\xba\xdc\xd0\xc0\x8f\x0b\xf0\x03\xea\x12\x99\xba\x2f\ \x0d\x56\x76\x65\x71\x4b\xc5\x8a\x1a\xcf\xbb\xa4\x4f\x2f\xb7\x47\ \x95\x76\x1c\x40\x15\x21\xa8\xca\x1d\x9e\xa1\xe5\x4d\x6c\x9b\xbd\ \x54\x69\xf5\x26\xba\x5d\x6b\x45\x3f\xc3\x13\x7d\x22\x73\x03\x74\ \xcc\xe0\x02\xfc\xc1\x28\xdc\xb0\x74\xb0\xa9\x7b\x0d\x22\x1f\xee\ \x28\xfe\x55\x36\xb3\xf1\xcd\x1f\x57\xd4\xb8\x7a\xbd\x74\x1a\xb6\ \x6e\x15\x0f\xd6\xdc\xe3\x19\xcf\x70\xf5\xa0\x59\x00\x6e\x6f\x7b\ \x1b\xd6\xe2\x76\xf8\x1d\xca\xdd\xa7\x1c\xa7\x7b\x13\x05\xb0\x83\ \x71\x35\xd0\x0f\x06\xff\xa0\x77\xfd\x1a\x8a\xb2\x97\x9d\x6f\x66\ \xef\x3b\xca\x99\xab\x0a\x19\xb0\x20\x0b\x70\x0c\x78\xd0\x9b\x78\ \x06\x0b\x58\xdc\x70\x86\xc7\x7c\xd6\x0e\xa7\xf5\x19\x02\xa0\xfe\ \x9e\x46\x6b\x00\x17\x6b\xd6\x05\x2e\x7c\xa8\x81\x3f\xf4\x9c\xc1\ \xec\xc6\x91\x9d\x7a\xd2\x3a\x91\x2f\xbd\x2c\x50\xde\x72\x2a\x42\ \x6a\x85\x64\xb1\x97\x05\x09\x8f\xf9\xc1\xbd\xad\x70\x9b\x6f\xbd\ \x06\x0d\xe0\x51\xf0\x28\x5e\x74\x5f\xff\xe1\x07\x1a\xd7\x45\x9b\ \x01\x26\x14\x9d\x80\x9a\xe9\x6d\xef\x4a\x15\xf6\xfc\x1a\x78\xec\ \xe4\x03\x58\xce\x3a\xb7\x57\xe2\x6a\x44\x1f\x7a\xeb\x5b\xbf\x07\ \x2e\x1a\x0d\xd7\x42\xf0\xbc\x00\x73\xc1\x85\x71\xdf\xfc\x8e\x54\ \xd4\x00\xd3\x7f\x68\x00\xde\xea\x7c\x6f\xb7\x4f\xbe\x0a\xfc\x16\ \xd2\x1c\x0c\x80\x19\x3b\x04\xe9\xdb\x5a\x67\xc3\xa1\x5f\x5d\xf3\ \xbe\x8b\xfb\x0e\xe8\x36\xbd\x8e\x53\x71\x8f\x54\xe0\xc2\x3b\xee\ \x66\x30\x83\x1d\x3c\x5d\x90\x4f\x9e\xf6\xa3\x06\xb1\xb2\xce\x8b\ \x19\x0d\x14\x8d\x2a\x9b\x48\x38\xd6\x3f\xcf\x77\xd0\xc7\x7a\xf4\ \x8a\xfe\xbb\x19\x70\x61\x7a\x3b\xe8\x42\xf5\x05\x30\x32\x37\xfe\ \x00\x64\x5d\xc0\xe3\x1d\x7d\xac\xfd\xf5\xbd\xb2\x34\xa3\x8d\x53\ \xbb\xd6\x66\xaf\xcb\x13\x7e\x95\x59\x13\x5a\xef\x83\x3e\x14\xf1\ \x8b\x3f\xe8\x1e\x9c\xbe\x87\xcb\x65\xb0\x06\xd4\x03\xfd\xfe\x77\ \xd4\x82\x16\xd6\xc7\xfe\xfd\xcd\x52\x4d\x21\x71\x5f\x3d\xfd\x70\ \xef\xb6\xcb\x6f\xe1\x06\x0d\xd6\x5e\x8d\x3e\x0a\x43\xf4\xd2\x8f\ \x2a\x0a\x20\x00\x02\x00\xdd\xe0\x8a\x1b\xf0\xea\x1d\x7e\x60\x47\ \x34\xe0\x00\xcc\xe2\xce\xee\x2f\x03\x5d\x01\x82\x56\xeb\x39\xe6\ \xa0\x00\x1a\x0a\x2a\xf0\x48\xfc\x00\x10\xeb\xda\xeb\xd5\x02\x50\ \xc5\xb6\x2d\xf4\x12\x70\x13\x1e\x0f\xc1\x1e\xcf\xd7\xde\xe1\x1d\ \xfe\xc0\x02\x31\x30\x03\x71\x90\x3f\xf8\xa1\x7c\xf8\x82\xb2\x0e\ \x60\x4e\x7e\xc4\xbd\x40\x0f\x00\x4f\xb0\xe6\x56\x50\x88\xbe\x4d\ \x00\xd3\xaf\x06\x6e\x2c\xc7\xec\xe0\x07\x96\x40\x32\x6e\x30\x07\ \xa9\xd0\x2c\x4a\x0d\x2b\xe6\x20\x04\x6e\x25\x28\x34\x20\x03\x38\ \x6f\xef\x7c\x6f\x05\x41\x2f\xeb\x4e\xd0\xfc\x86\x84\xfc\x0e\x0e\ \xfd\xb6\xee\xf0\xdc\xe3\x00\x5c\x6b\x0a\xa9\x30\x0e\x49\xad\x50\ \xce\xe0\x3d\xac\x80\x1b\xb0\xe0\x0e\x0c\x85\xfc\x42\x2f\x0c\x0b\ \x8d\xef\x3e\x2f\xf8\x82\x0f\x10\xeb\xa3\xf3\x12\x50\xb8\x2c\x00\ \xc5\x9a\x2c\x0e\x19\x31\xfb\x5c\xc1\x9e\xce\xe0\xcf\x64\xcd\xf7\ \xc0\x50\xef\x3a\xef\x0f\x07\x30\xf8\x8e\xd0\xd0\xac\xfe\x2e\x01\ \x47\x02\x1e\xba\x2a\xe4\x1a\x71\x14\xf9\x43\x12\xcf\xef\x1e\xaa\ \x0e\xe6\xee\xce\xd5\x00\xd0\xea\xc6\x0f\x05\x81\x8f\x3e\x36\x31\ \x10\xc5\x6d\x0e\xe2\x07\x0e\x49\x31\x17\x49\x0e\x09\xfd\xb0\x2a\ \x4a\xb0\xf3\x88\xb0\x08\xef\x4e\x15\xeb\x63\x16\x09\x71\xcb\x0c\ \x40\x75\x16\x31\x17\x99\x71\xd4\xfa\x09\x09\x51\x31\xfc\x56\x91\ \x08\x5d\xed\xf7\xca\x30\xeb\x88\x91\x3e\x92\x30\x13\xb7\xec\x06\ \xce\x02\x17\x9b\xb1\x19\xe1\x8e\x17\x7d\x2f\x1b\x81\x51\x0c\x5b\ \x4d\x0e\xaa\x0e\x01\xc3\xd0\x35\x10\x4d\x0c\xb9\xf1\x50\xce\xc0\ \x1b\x97\x31\x1c\xed\x31\xfb\xae\x50\x1b\x81\xef\xd0\xca\xd1\x04\ \x4b\x30\x18\x7d\x4f\x1d\xc1\xad\x0c\x5b\x4d\x1a\xb3\xa2\x12\x19\ \x6e\x48\x52\x6d\x8f\xea\xf1\x1e\x1d\x32\xbc\x8a\x31\x16\xc9\x8f\ \x05\xe4\x40\xe1\x86\x70\xdb\x5c\x31\x20\x3b\xf1\xf3\x58\x31\x05\ \xcd\x50\x10\x11\x4e\x22\xd1\x4f\xcb\xe0\x41\x19\x45\xd1\x21\x51\ \xd2\x19\x0d\x8d\xf8\x0a\x12\xe6\x68\x6e\x22\xab\x4e\xef\xfa\x71\ \x1a\x8f\x51\xd6\x62\xee\xf7\xc2\x2d\x3a\x4e\xa2\x16\xbe\xb1\x21\ \x53\x32\x25\xab\x20\x1f\x0d\xed\xfb\x44\xb2\x25\xfe\xa9\x71\x13\ \xd4\xf1\xea\x5c\xb1\x26\x5b\xce\x22\x7b\x31\x1e\x15\x23\x16\xc0\ \xf1\x27\xa9\x72\xd4\x9c\x4e\x08\x63\xcd\xf3\xbe\x2d\xd6\xd0\x50\ \x23\x27\xb2\x22\x59\x8c\x08\x39\x72\x24\x37\x72\x26\x17\x0e\x1e\ \x4e\xc0\xfe\xaa\x72\x2d\xc7\x82\x1f\x06\xac\xbd\x06\x2e\x05\x65\ \x6e\x2c\x03\xb0\x2b\x35\x92\x15\xe5\x00\x2c\x9b\xb2\x08\x3d\x32\ \xef\xb2\xf1\x29\xcf\x00\x1e\xf8\x61\x2a\xd9\x92\x2d\x5d\x21\x04\ \x3a\x32\xdb\xf2\x6e\x1f\xdb\xd1\x17\x83\xb1\x25\xbf\x12\x2f\xd7\ \xf1\x04\x01\xb0\xe5\x10\x70\x10\xbd\xcd\xea\x0c\x00\xb1\x7c\xb2\ \x30\x3d\xd3\x15\xe0\x21\xe1\x12\x0e\x13\x06\xf2\x29\xef\x41\x20\ \x49\x30\x26\x2f\x11\x23\x7f\x2f\x15\x97\xb2\x17\x0b\x52\x0d\xa9\ \x22\xb4\xe0\x81\x30\x3d\xf3\x36\x47\xcd\x35\xd7\x91\x0d\x60\x13\ \x29\xf5\x92\xbd\xa2\xd1\xea\x8e\xb2\x1c\x45\x13\x20\x29\xb1\x20\ \xf7\x11\xd1\x3e\x45\x2d\x71\xb3\x39\xc7\xc2\x15\x7c\x53\x1d\xe5\ \x80\x1f\xd3\xd0\x37\x0d\x72\x00\x91\x52\x38\x31\x92\x35\xd5\x31\ \x15\xd1\x91\x12\x03\x52\x24\x43\x40\x20\x6c\xd3\x39\x9b\xd3\x15\ \x14\x21\x2f\xa5\xb3\x35\x2d\x31\x20\x2b\x32\xfe\x35\x55\xb3\x25\ \x45\xb3\x3b\x63\xd2\x04\x09\x8d\x22\x31\x81\x18\x33\x0b\x1e\xde\ \xf0\x24\xcd\xf3\x3f\xbf\x22\x3d\xd7\x33\x2f\x17\x60\x01\xc0\xf2\ \xd0\xf2\xd2\xf3\xb0\xd3\x3b\x0b\x72\x40\xf3\x92\x22\x3b\xb1\x0c\ \x35\xb2\x06\x18\xa3\x3c\x01\x14\x40\x5d\x21\x03\xd4\xb1\xe0\x30\ \x61\x1d\x8e\xa1\x08\x16\x20\x42\x55\x13\x3e\xc1\xd2\x3d\xd5\xf3\ \x44\xe3\xd3\xdb\x0a\x20\x06\x6a\x61\x30\xfd\xf3\x42\x61\xb4\x2c\ \xbe\x81\x05\x5e\xae\xe0\xd6\xa1\x08\xf4\xc1\x40\x2f\xf2\x3a\x17\ \x54\x38\x29\xf2\x44\x81\x34\x29\x5d\x0d\x09\x40\x46\xf2\x62\xf4\ \x48\x9f\xb3\x0a\x0a\x8e\x46\x59\x00\x13\x0a\x34\x41\x29\x93\x22\ \xd3\xb0\x0f\xeb\xf3\x47\x1f\x34\x48\x13\xce\x00\x2e\xb0\x33\x91\ \xb4\x4b\x5d\xa1\x16\xee\x00\xfc\x9e\xe1\x44\xb5\x8e\x38\x87\x6f\ \x15\x53\x11\x45\xad\xf4\x19\x70\x81\x39\xbb\xf4\x4d\xc9\xc2\x15\ \x0c\xa0\x46\xc7\x14\x45\xaf\xae\x22\x59\x31\x42\x0f\x4d\x37\x81\ \x14\x13\xf2\xa1\x16\xde\x10\x4e\x05\x75\x36\xcc\xc2\x09\xd4\xd3\ \x4a\x13\xb4\x29\x4b\x70\x29\xf9\xf1\x4a\xd5\x53\x15\xbe\xc1\x4d\ \x07\x75\x52\xc3\x82\xd4\xba\xb3\x1c\x1f\xae\xd4\x04\x7f\xef\x1f\ \xd1\x31\x38\x9f\x01\x0b\x8c\x94\x52\x45\x55\x2c\x40\xd3\x3b\x63\ \xb2\x3e\x29\x93\x1a\xd1\xd0\x1a\x9f\x20\x03\x24\x75\x54\x61\x15\ \x2c\x6a\x81\x35\x21\x94\x41\xed\xd2\x12\x0b\xf2\x19\xfa\x21\x9f\ \xb8\x34\x56\x61\x15\x3a\xb9\xb3\x38\xbf\x73\x3b\xf5\xae\x16\x22\ \xb5\x57\x7d\x35\x56\xe5\x54\x34\x6b\x15\x55\xbb\x92\x05\xee\xc0\ \x55\x2d\x34\x59\x93\xf5\x1b\xba\xf3\x50\x51\xf5\xf3\x92\xa9\x16\ \xa6\x95\x5a\xbd\xd5\x15\x0a\x00\x4b\x05\xb2\x06\xc4\xa5\x5b\xbd\ \xf5\x5c\xbf\x34\x48\xf3\xd2\x00\x42\x08\x59\xcf\xf5\x5d\xb3\x4f\ \x11\x30\xe1\x44\x7b\x00\x54\xfd\xe8\x45\xe1\x35\x5f\xc1\xc2\x36\ \xfa\x01\x13\xfa\x81\x5b\xf1\x55\x5f\x05\xb6\x52\x13\x6b\x60\x0d\ \x56\x3f\xdc\xf5\x60\x71\x30\x20\x00\x00\x21\xf9\x04\x09\x00\x00\ \xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x1d\ \x84\xab\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd7\x88\ \x8c\x93\x49\x35\xff\xff\xff\xcc\x4a\x22\xff\xff\xff\x5d\xc7\xf5\ \xff\xff\xff\xff\xff\xff\xde\x93\xb1\xff\xff\xff\xff\xff\xff\x4a\ \x49\x9a\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xf5\xe7\xb7\xff\xff\xff\x9c\xa7\xb6\xff\xff\xff\x5c\x06\x94\ \xff\xff\xff\x14\x28\xa9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd7\ \xc8\xe5\xff\xff\xff\xff\xff\xff\xf7\x89\xb9\xff\xff\xff\xd4\x11\ \x11\xff\xff\xff\xf7\xa7\xb7\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x9a\xf2\xfc\x12\x29\xe1\xff\xff\xff\xff\xff\xff\x4e\x68\xf8\xfb\ \xc8\xe4\x28\x47\xeb\xda\xe8\xf8\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x98\xc8\xfa\xff\xff\xff\xff\xff\xff\xf1\x70\x45\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd7\x88\xf2\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xf9\xe8\xf0\xf7\xb2\xf0\xb1\xa9\ \x73\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb7\xc9\xf2\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb7\xb3\xf3\x7a\ \x8c\x3e\x34\x8a\xc8\xff\xff\xff\x39\x56\xf6\xff\xff\xff\xff\xff\ \xff\x6d\x69\xe5\xff\xff\xff\xff\xff\xff\x4b\x4b\xe5\xff\xff\xff\ \x11\x38\x65\x09\x18\x62\x94\x94\xf5\xff\xff\xff\x98\xb2\xf8\xd7\ \xd9\xed\xff\xff\xff\xff\xff\xff\x79\x8b\x6f\xff\xff\xff\x3b\x64\ \xf2\x5b\xb8\xeb\xff\xff\xff\xfa\xd8\xea\xff\xff\xff\x7c\xf4\xfc\ \xba\x8e\xf5\xff\xff\xff\xfb\xfd\xfa\xda\xae\xf7\xff\xff\xff\x73\ \x89\xf8\xfb\xd0\xa5\x71\x69\x69\xff\xff\xff\xb7\xd8\xfa\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\x99\xb6\x36\x4a\xeb\ \xff\xff\xff\xb1\x70\xf2\xdb\x98\xf3\xfa\xb8\xbd\xff\xff\xff\xcf\ \x2d\x6a\xff\xff\xff\xff\xff\xff\xc4\xe5\x99\xff\xff\xff\xff\xff\ \xff\xb2\x10\x12\x72\x10\xa4\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x78\xc7\xf9\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x6e\x49\xe0\xff\xff\xff\x77\x24\ \x4c\x93\x57\xf0\x92\x6e\xf6\xff\xff\xff\xff\xff\xff\x74\x10\x53\ \xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\xf5\x07\x08\xff\xff\xff\xff\ \xff\xff\x35\x4d\x19\xff\xff\xff\xfb\xae\x88\xff\xff\xff\xff\xff\ \xff\x51\x38\xdf\xff\xff\xff\x58\x93\xeb\xff\xff\xff\x78\xb3\xf9\ \xff\xff\xff\x25\x7b\xc8\xf8\x92\x8d\xde\x97\x94\xf8\xf7\xbd\x9e\ \xb5\x76\x97\x38\xd5\xff\xff\xff\xff\xff\xff\xff\xff\xff\x99\xd8\ \xfc\xff\xff\xff\xd8\xd7\xa7\xb2\x99\x75\xff\xff\xff\xff\xff\xff\ \x42\xb6\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x58\x76\x29\xff\xff\xff\xff\xff\ \xff\x12\x78\xa9\xff\xff\xff\xff\xff\xff\x19\x37\xe1\xff\xff\xff\ \x58\x75\xfa\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x1d\x97\xc9\xff\xff\xff\xff\xff\xff\x69\x7b\xf4\xff\xff\ \xff\xff\xff\xff\x47\x5a\xf5\xff\xff\xff\x35\x58\x64\xb4\x58\xb4\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x7e\xd5\xfa\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd2\x3b\x76\ \x39\x76\x67\xff\xff\xff\xff\xff\xff\x96\x98\x50\xff\xff\xff\x98\ \x98\xb7\xff\xff\xff\x86\x7a\x36\xff\xff\xff\xff\xff\xff\xd9\xfb\ \xfc\xff\xff\xff\x7d\x97\xb4\x6e\x78\x27\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb2\x58\x37\x7e\x97\xfb\xff\x00\x00\x08\xfe\x00\xff\ \x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\ \x10\x23\x16\x34\xf1\x49\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\xa3\ \xc7\x85\x26\x12\x44\x39\x60\xe2\xa3\xc9\x93\x28\x53\xaa\x5c\xf9\ \xf0\xd3\xa7\x7e\xf9\xa2\xe4\x23\x56\x92\xa5\xcd\x9b\x38\x73\xea\ \x9c\x08\x93\x18\xb1\x28\x32\xf3\xed\x1c\x4a\xb4\xa8\x51\x87\x26\ \xfa\x45\xf1\x29\x4a\x54\xbe\xa7\x51\x12\x1c\x9d\x4a\xb5\x2a\x4b\ \x97\x07\x88\x3d\xf5\xe9\x73\xeb\xbc\x79\x15\xad\x8a\x1d\x4b\x16\ \xe2\xa7\x03\x4d\x9b\x12\x73\x1a\xe5\xdd\xbb\xa0\xf3\xa4\x96\x9d\ \x4b\x97\xae\x89\x03\xf9\x9a\x76\x69\x1a\xd3\x88\x91\x58\xef\xb6\ \x1e\x08\x5b\xb7\xb0\xe1\xa1\x2e\xe7\xcd\x64\x9a\x96\xd8\xbc\x58\ \x90\x65\x6a\xcd\x57\xf3\xb0\xe5\xcb\x28\x3f\x1d\xb2\xf4\x73\xe6\ \xd3\xbc\x5c\x9a\xce\x73\x2b\x53\xb2\x56\xcc\xa8\x53\x6b\x3c\xb4\ \x69\x6f\xcc\xa5\x40\x97\x8a\xda\xfb\xb3\xb4\xdb\xad\x72\x55\xeb\ \xde\x8d\x30\xf1\x6c\xd7\x92\x63\x3e\x15\x65\x89\xaf\xcc\x77\xb1\ \x08\x7d\xee\x47\x98\xb7\x73\xd5\x9f\x4c\xe4\x32\xf2\x6e\xb6\x28\ \xae\x6b\x9d\x7e\xcd\x0b\x1c\x39\x21\x5c\x4b\x63\xfe\xe6\x7e\x4e\ \xde\xb2\x89\x1d\x6e\x71\x51\xcf\x9e\x96\xaf\xdb\x79\xd6\xf3\xb9\ \x25\x74\x41\xb9\xd6\x28\x60\xcb\xeb\xa7\x1b\xdd\xd2\xe8\xf4\x17\ \xc8\x91\x4b\x3e\x7b\xb5\x17\xd3\x3b\xf0\x89\x72\x40\x14\x7f\x5d\ \x00\x0b\x2e\x6b\x11\x83\x5c\x65\xfb\x55\x38\xd5\x27\x3b\x1c\xd0\ \x45\x17\x8e\xbd\x63\x04\x2e\xb0\x3c\xc8\x9d\x53\x9e\xdd\x96\x95\ \x87\xc8\xc1\xe2\x06\x2e\xc6\xc5\x82\x8b\x85\x30\x1a\xb5\x03\x09\ \x44\x18\xb1\xa1\x28\xf3\xe4\x82\x8b\x83\x0f\xc2\xb7\x17\x5e\x5f\ \xbd\x35\xd3\x7f\xf9\xe4\xa2\x62\x2c\x6b\xb5\x15\xcb\x05\x3b\xc4\ \xe8\xe4\x4d\x2e\x11\x41\x84\x1b\xb0\x18\x31\x9b\x7f\x46\x38\xe8\ \xc6\x8a\xf0\x15\x27\xe1\x6d\x4f\xfd\xb7\x96\x11\x54\x56\xf7\xd3\ \x92\x6e\xfc\xd1\xdc\x93\x6c\x76\xf4\x49\x02\xae\xa8\xb8\x25\x97\ \x79\xc9\x87\xcb\x8e\x17\xe0\x92\x4b\x76\x39\x1a\x11\x1c\x8a\x78\ \xe1\xe2\xc6\x05\xb1\xb0\x15\xcb\x94\x6e\x34\xd9\xe6\xa2\x1b\x6d\ \x96\x4f\x2c\x21\x6e\x19\xa2\x9e\x79\x1d\xe0\x56\x96\x02\xa2\x85\ \xa3\x5f\x32\x6d\x4a\x1d\x8e\x20\xe2\xf2\xce\x5a\xf3\xe0\x62\xcf\ \x96\x6a\x32\xaa\x6a\x44\x2e\x8d\xaa\x95\x8b\xfe\x72\x52\x59\x25\ \x81\x0a\xe6\x78\xa7\x11\xa4\xbe\x93\x0b\x82\x61\x72\xaa\xd5\x87\ \xb1\x44\x71\x1d\x19\x82\xce\x99\xc6\xaa\xc8\x32\x94\x80\x01\x80\ \x41\xf5\x0e\x21\x21\x46\x5b\xe5\x95\xf9\xcc\x63\x84\x1c\x17\x18\ \x81\x56\x8e\x08\x7e\x35\x9d\x7a\xf0\x59\xeb\x67\x9d\xef\x20\xba\ \x25\x11\xe3\x25\xab\xee\x3f\x70\xe2\x02\x99\x90\x40\x41\xfa\xe0\ \xad\x09\xe2\x38\x5d\x9e\x46\xe4\x73\xc0\x3c\xa4\x18\xf1\x95\x5f\ \xea\x51\x57\x2d\x50\x5f\x69\x37\xc3\x9c\x5b\xa2\xb0\xae\xba\x2e\ \x91\x72\x27\x60\x6f\xb5\xe5\x53\x14\xf4\x89\x3a\xcf\x5a\xc5\x9d\ \x48\x4a\x2c\xa4\x84\xfb\x21\x82\xef\xc8\xe1\x97\x5f\xdb\xdd\x27\ \x2c\xa8\x08\x6f\xa9\xe8\xc2\x8c\x1e\xc2\x2c\x2c\x84\x04\xfb\x99\ \xc4\xd7\x25\x07\x18\x7b\xa2\x8d\x8c\xa0\xa5\x72\xe0\x32\x4f\x3f\ \x1f\x1a\x91\xcb\xae\x08\xa6\xa5\x58\x98\x21\x5c\x90\x32\x0a\x6b\ \xb2\x0c\x23\x6b\x12\x82\x48\xe8\x62\xb5\x2d\x45\x0c\x64\xc1\xa6\ \xb5\x6f\x2e\xd8\x5a\x3c\x47\xa9\x01\x7e\xdb\xaf\xae\x44\x6b\xfa\ \xd9\x3c\x0c\x9a\x2b\x25\x2c\x81\x38\x1d\x63\x74\x37\x4a\x08\xec\ \x5b\xae\x4a\x18\xac\x92\xc1\xb2\x57\x24\xfe\x2e\x44\x84\x91\x8b\ \xb7\x4a\x13\x81\x4b\xd7\x6e\x4d\xe7\x57\x9d\xd5\xbe\x43\xc6\x3b\ \x3b\xce\xd9\x33\x11\xc7\xba\x5d\x21\x6b\x05\x8e\x16\xcb\x5f\xd4\ \x01\x95\x1d\xd6\x4b\x91\xf1\x6e\x7b\xe2\x0a\x3d\xb4\x11\x69\x0c\ \x7a\xc1\xe9\xaf\x0c\x7d\xe9\x80\x38\xba\xf5\xde\x87\x73\x86\x90\ \xcb\x05\x44\xac\x23\xb9\x7e\x09\xa8\x95\x9e\xbb\x2e\x5e\x2e\xdb\ \x5e\x36\xb3\x23\x4a\x14\xb1\x28\x01\xd8\x1c\x40\xce\x43\xc6\x1c\ \xa2\x4c\x97\x34\x95\x5b\x66\x3b\xb2\x5f\xd5\x39\xe5\xd6\xe2\x6d\ \x3d\xef\x06\x11\x72\x4c\xa9\xf0\xed\xbc\x45\x17\xd9\x99\x84\xcc\ \xf0\xf0\xdc\xd9\x3d\x1b\x0b\x3b\x05\xb2\x13\x4f\x06\x64\xb4\x65\ \x04\x14\xfe\x22\x4f\xc6\x1f\x8d\xcf\x59\xe5\x74\x3d\xcb\x51\xbd\ \x28\xae\xbb\x5e\x96\x52\xa6\x32\xf0\x41\xe7\x10\x5d\x08\x4d\x5e\ \x86\x17\x8b\x19\xd4\x67\x71\x2e\x32\x1e\x64\xca\x37\x03\x32\x70\ \x61\x43\x5c\x08\x0d\x3b\xc8\x40\x86\x5c\x64\x20\x17\xb1\xc8\x05\ \x19\x46\x63\x04\xed\x45\xef\x6f\xf7\xca\x96\x82\x90\x83\x9c\x77\ \xe9\x88\x80\x6e\x60\x9a\x01\x31\x83\xc0\x0d\xd9\x30\x81\x00\xfc\ \x4e\x2c\x38\xe8\x22\x5c\x84\x60\x06\xfe\x07\x73\x83\x3d\xde\x71\ \xc1\x04\xde\x68\x0e\x1c\x5c\x4b\x07\xbf\xe6\xba\x62\xa1\x2a\x1f\ \x96\xb0\x93\xc0\x88\x07\x18\x25\x29\xc6\x08\xe6\x42\x58\xd3\x66\ \x48\x96\x4f\xac\xc3\x46\x37\xb4\x61\x68\xa8\x08\x99\x12\x2a\xc1\ \x5d\x61\xc0\x45\x18\x0e\x36\x03\x23\x64\x20\x16\xf1\xd0\x86\x28\ \xb8\xa0\x0d\x0e\xce\xe1\x6b\x23\xdc\xd5\xd7\xf8\x16\x3d\x2b\x75\ \x01\x2f\xd3\x51\x0c\x83\x22\xf6\x16\xc7\xe4\xc3\x08\xb1\x32\x16\ \x17\xf9\xb3\x83\x18\x84\x40\x1b\x61\x8c\x1b\x31\x3c\x17\x8b\x0c\ \x9c\x11\x1f\xf9\x90\xa3\x26\xe7\x10\x0f\x25\x04\x71\x06\x21\x98\ \x83\x1c\x91\xb8\xb8\xe5\xcd\x61\x3a\x51\x98\xdd\x9c\x2e\x30\x8f\ \x1f\xc9\x27\x30\x07\xa2\x5b\x21\xab\x35\x0f\x39\x10\x90\x08\x2b\ \x5b\xa4\x55\x76\xf0\x87\xed\x91\x21\x92\x5c\x38\xd3\xe2\xf0\xd1\ \xc2\x0c\xfc\x26\x92\xa2\x88\x00\x18\xa6\x64\x0f\x25\x90\x41\x1b\ \xec\x40\x22\xf3\xf6\xa2\xbc\xd1\x84\xe1\x5c\xa2\x2a\x0e\xda\xb6\ \xf3\xca\x16\xc6\xc2\x33\xd5\x0a\x41\x16\xb7\xa7\x07\x5d\x56\xc5\ \x8b\x52\x9a\x53\x06\x90\x39\x49\xc5\x71\x10\x1f\x4a\x30\x66\x24\ \x23\xa9\x0d\x28\x84\xa1\x0e\x4a\xfe\x88\x07\x07\xe5\x68\x43\x51\ \xdc\xb1\x54\x53\xaa\x11\x7c\x16\x44\xb4\xc9\xe0\x0d\x49\xa2\xb1\ \x16\xc2\x10\x85\x4b\x73\x1a\x05\x43\x50\xa8\x43\x1d\x4e\x75\xae\ \x39\xdc\x30\x34\xc4\x10\x9e\x28\x36\xa8\x84\x50\xce\x73\x9e\x5c\ \x98\x83\x3d\xc3\x90\x01\x7c\x4c\xb3\x0b\x9c\xf9\x0a\x19\x42\x20\ \x27\x56\x36\xe5\x52\x8a\xb9\x4f\x00\xe3\xc3\x2f\x27\xc6\x4a\x86\ \x0e\xdd\xc9\x0e\xfc\x60\x0b\x25\xd4\x21\x0c\xd7\x9c\xd3\x2f\xfb\ \xa9\x8d\xb5\x6c\x88\x0c\x19\x08\x81\x3c\x3f\x3a\x4f\x91\x86\x21\ \x9f\x73\x08\x8d\x3f\xdf\x11\x0f\x04\x61\xf1\x5c\xb9\xc0\x8b\xeb\ \xb8\x49\x9a\x42\x2a\x28\x71\x4e\x4c\xd9\x16\x73\x9a\x99\x75\xd4\ \xc1\x16\x12\x45\xeb\x0c\x26\x7a\xae\xa1\xee\x45\x1b\x72\xbc\x20\ \x00\x33\x00\x3f\xa6\x32\xd5\xa9\x4a\xc0\x07\x07\x33\x30\x3f\x23\ \xc4\x23\x17\x2c\x3d\xd7\x37\x0d\x47\xb4\xa7\x74\xd5\x6a\x6d\xd1\ \x15\x1f\x09\x18\x39\xb2\xaa\x04\x43\x19\x48\xeb\x59\x6d\x81\x83\ \x3a\xcc\x80\xa2\x44\xb0\xe8\x86\xee\xa8\x51\x51\xd4\x11\x1f\xf1\ \xd0\xac\x5d\xe7\x19\x8f\x35\x86\x40\x09\x40\x0d\xc1\x08\xe3\xa1\ \xc6\x74\xd6\x68\x7e\x01\xa3\xfe\x0e\x82\x12\x1b\xb1\xb6\xa0\x8d\ \x71\xe3\x3c\x57\x2e\x1d\xeb\x91\x37\xbd\x01\xad\x12\xad\x03\x0b\ \xce\x8a\x83\xca\x52\xd4\x1e\x71\xd4\xc6\xfb\xf0\x21\x3c\xa9\x46\ \x33\xb4\xa3\xfd\x28\x17\xde\x00\xc4\x80\xc6\xe2\x8e\x87\x5a\x51\ \xd2\x88\x60\xbe\xc1\xc5\x96\x6e\x9c\x03\xca\x5b\xfe\x95\x48\x84\ \x95\x93\xb7\xbd\x5d\x47\x65\x59\x80\x03\xb4\x72\x42\xa2\x9c\x28\ \x6e\x7b\x83\xe8\x86\x19\xc4\x93\xb9\x64\x10\x1e\x0e\x7d\x42\xd7\ \xe8\x7e\x74\x0e\x3f\x04\xe2\x0c\xe0\x87\x8f\x80\x86\xc0\x08\x4a\ \xa0\x9d\x94\x04\xa7\x1e\x88\x91\xf1\x6e\x40\xd1\x57\x3e\x6c\x09\ \xc3\x44\xa1\x97\x23\x06\xc8\x05\x0e\xc6\xc1\x89\xf7\xba\xb7\xc3\ \xb6\x08\x31\x65\xd9\x7a\x2e\x30\x40\x32\x81\x17\x0c\xe6\x1c\xd8\ \x91\x01\x28\x44\xc0\xbf\xc0\x84\x42\x08\x9e\x0a\x05\x93\x96\x76\ \x7b\xc6\xc3\xc5\x0c\x60\xc1\xdd\x80\x5d\x2e\x30\xb5\xa9\xed\x52\ \x14\x03\x50\x18\x12\x01\xa7\x17\x96\x88\x17\xe3\x01\x06\xca\x56\ \xb6\xc3\x67\xad\x83\x87\x45\x7c\xd6\xcb\xce\x29\x0c\x27\x36\xa2\ \x28\xf4\x3a\xc9\x0c\x88\x16\xc6\x36\x9c\xc3\x53\xc1\xf0\x4c\x24\ \xce\x80\xbb\xb1\x48\x1a\xfe\x8f\x2f\x10\x82\x03\x43\x6c\x96\xb1\ \x89\xf3\x53\x72\xa1\x36\x84\xf1\x78\xac\x49\x4e\x88\x17\x71\xb0\ \x8a\x55\x34\x59\xc4\xb6\x00\x71\x87\x39\x21\xe2\xf7\x4a\x94\xa2\ \x5b\x5a\xea\x75\x48\x79\xc7\x0c\xc4\xe3\x98\x60\x4e\xa0\x8c\xbd\ \x10\x01\x6d\xc0\x93\xbb\x67\x64\xe3\x05\xd2\x98\x27\xf8\x48\xa8\ \x34\x71\x16\x6f\x14\xe6\x80\x48\xfd\xa9\x8d\x08\x7f\xc8\xf3\x43\ \xb6\xa1\x61\x1c\x80\xa1\xcf\x4f\x16\x2e\x94\xdd\x1b\xe2\x41\x57\ \x19\x61\x33\xc0\x87\x0d\xa1\x89\xc4\x68\x3a\xfa\xc5\x91\xb6\x21\ \x26\x66\x00\x85\x39\x54\x23\x03\xdc\x25\xe9\x19\xd3\xe8\xc3\x66\ \x93\xa1\x29\x6d\x51\x12\xf1\x62\x23\x24\x32\x9d\x4b\x69\xfa\x83\ \x45\x1a\x6c\xa7\x6a\x3d\xaf\x23\x1e\xae\x96\x6f\x9f\x57\x21\x65\ \x42\x0f\x3a\xd0\x50\x66\xc1\x7b\x0d\xcd\x09\x84\x29\xe1\xa2\x9e\ \x9d\x03\x31\x2c\xf9\xe5\x48\x8b\x39\x0c\x71\x20\x03\x14\xa4\x54\ \x07\xba\xbe\xd1\x78\x7f\xd9\xd5\x3c\xe6\x20\x1f\xc0\x44\x06\xb1\ \xdd\x5a\x2c\x11\xb0\x9d\x32\x57\xe0\x39\xc9\x26\x58\xc7\xab\xfd\ \xf1\x08\x3f\x17\x57\x09\xb0\x96\x72\xb9\xdf\xab\x6e\x28\x1b\x1a\ \xb8\x88\x76\x83\xae\xfe\xfb\x39\xc7\x79\xe3\x22\x1e\xc1\xb6\x61\ \x04\xc2\x40\x04\x28\xc4\x01\x0a\xa8\x7d\xea\xfb\x32\x00\x54\x22\ \xec\xd0\x9f\xda\x09\x2f\x62\xbf\x59\x64\x23\x07\xa8\xa1\xdd\x26\ \x08\xab\xc1\x50\xf1\x3e\xbf\x7a\x15\x95\x3d\x7a\x7b\x07\xed\x71\ \x42\x0f\xd7\xc3\xc6\x45\x58\x18\x44\x9b\x41\xcf\x46\x56\x09\xf5\ \x06\xb3\x12\xdc\x10\x06\x7c\x54\xc3\x9e\x33\x78\xea\x0f\x55\x24\ \xb8\x11\x2a\xe6\x3a\x05\x8f\x9f\xe6\xb0\x77\xc8\x0a\xbb\x21\x0d\ \xb9\xf8\x03\xaa\x1f\x9e\x53\x2f\x42\x81\xcf\x48\x87\xf5\x2a\x1e\ \x01\x86\xe2\xda\xe2\xd5\xc5\xdd\xf8\xc6\x01\x1d\x5c\xcb\x86\x7c\ \x9d\x18\xf4\x2c\x3e\x4c\x45\x84\xa5\x06\x1b\x0a\xf5\xad\x46\x04\ \xe2\x31\x63\xa0\xda\x63\x4a\x61\xbf\x9c\xd0\xf4\x02\xc0\x83\xab\ \x3d\x7e\x73\x28\x97\xa4\x52\x26\x32\x71\xba\x81\xee\xe6\x0c\x44\ \x02\xda\x8b\xf7\xbc\x1b\x1d\xd6\xc5\x85\x75\x88\x37\xce\xf1\xc9\ \xf6\x54\xad\x21\xc7\xf2\xae\xc9\x80\x03\x44\x75\x1d\xd8\x91\x46\ \x76\x1d\xae\xa0\x8d\x6a\x80\x01\x0a\x30\x07\x62\x47\x95\x60\x84\ \x34\xe2\xaa\x40\x40\xc9\x6f\xf4\xa3\x10\xbf\x47\x21\x2a\x52\x73\ \x22\x42\x0c\xb0\xfe\x1d\x83\x3c\x7f\xc2\x00\xf1\x70\xbd\xd1\x63\ \x3f\x6e\x7f\xf8\x79\xdc\x7e\xa7\xfd\xb9\x89\x5b\x78\x73\x55\x10\ \x83\xee\x23\x31\x49\xdd\x0a\xe6\x78\xd8\x37\x02\x1d\xb8\x02\x3e\ \x8e\x1f\xf3\x8e\xaa\xf1\x02\x6d\xc4\x3c\xd7\x31\x49\x4b\xc1\x0e\ \x55\x33\x49\xd6\x66\x64\xe9\x94\x06\x21\x90\x2e\xe6\x84\x15\x71\ \xf0\x08\x12\x38\x6e\xe3\xf6\x08\x94\xb5\x0a\xa9\x80\x81\x14\x88\ \x74\xed\xf5\x61\x9c\x30\x03\xb6\x46\x5c\x3e\x45\x62\x5b\x12\x02\ \xcc\xf5\x3e\x38\x80\x5a\x5b\x12\x76\xc5\x16\x6c\xd5\x40\x04\x75\ \x10\x07\xda\x60\x06\xf8\xe0\x05\x60\x80\x5a\x1d\x85\x4f\xd7\x54\ \x76\x17\x53\x54\x64\x10\x21\xec\x60\x80\x06\x48\x0c\x5b\x57\x61\ \x17\x50\x3a\xdc\x13\x02\x0e\x47\x56\x11\x97\x0a\xa9\x70\x06\xae\ \xe7\x84\x7d\xf6\x08\x95\x75\x81\x14\xf8\x6a\x44\x27\x5f\x52\x66\ \x0f\x1d\xc6\x85\xb6\x16\x78\x12\x45\x5f\xf5\x15\x06\xa7\x22\x51\ \x6b\xb4\x82\x50\x70\x05\xc0\xe7\x5f\x57\x40\x86\x60\x60\x06\x30\ \x50\x0d\x71\x80\x0f\xfe\x10\x0f\x5e\xe0\x68\x94\xc7\x5d\x07\x16\ \x0f\x3d\x38\x13\x8d\x91\x51\x4e\x11\x0b\x46\x96\x06\x46\xf0\x06\ \xb8\xc0\x80\xfe\xdd\xb3\x5b\x33\xf4\x09\xdb\x80\x0f\x67\x20\x05\ \x4f\xb8\x77\x38\xf0\x08\x19\xc8\x81\x81\xc6\x85\xad\x77\x74\x1c\ \x38\x89\xe8\xc6\x85\xf6\xf0\x89\x50\x56\x07\x29\x68\x86\x29\x73\ \x79\xf6\x20\x60\x14\x45\x6c\x64\xa0\x86\x60\x16\x01\x96\x05\x06\ \x30\x00\x03\xa9\xe0\x75\xb4\x18\x07\x9c\xa4\x04\x0c\xd8\x57\x3f\ \x28\x80\x73\xd4\x1e\xc3\x43\x08\x46\x26\x3b\x25\xf4\x07\x33\x36\ \x77\x5c\xe4\x12\x8d\x78\x06\x4e\x28\x05\x90\xb8\x77\xb6\x50\x74\ \xe3\x76\x89\x20\x26\x5f\x78\x27\x5f\x7d\x07\x5f\x9f\x98\x8d\x5c\ \xc8\x7e\x61\x28\x75\x38\x10\x51\x6b\xc4\x50\x64\x96\x01\x6c\xd0\ \x8a\x4a\x40\x04\x60\x40\x05\x66\x50\x0d\xfe\xe0\x0f\x5e\x57\x0d\ \x4c\x56\x8c\x7b\xa8\x38\x48\x34\x47\x38\xd4\x1e\x64\x10\x54\xd9\ \x47\x25\xb2\x13\x02\xc4\xb8\x58\xa8\x87\x2c\x11\x07\x89\x67\xe0\ \x88\xa9\xd0\x0a\xc7\xd0\x0a\x19\x48\x7e\xe8\x57\x6e\x85\x67\x85\ \xf2\x55\x71\xc5\xc5\x09\xda\x08\x8a\x6b\xd5\x53\xa4\x78\x65\x60\ \xf0\x72\x3f\x45\x5f\x4f\xf5\x54\x6b\x68\x57\x5c\xc0\x72\x60\xc0\ \x0c\xad\x50\x0d\xa9\xe0\x05\x5e\x70\x05\x76\x08\x05\x41\x14\x02\ \xa1\xf5\xfe\x35\xf8\xb0\x27\xd6\xd1\x1e\xc1\x24\x86\x01\x45\x04\ \xc2\x18\x02\x69\x60\x2e\xa9\x76\x3b\x9f\x60\x09\x52\xf0\x88\x04\ \x89\x81\x52\xa0\x0d\x09\x99\x0a\xed\x05\x8d\xce\xe8\x81\x1f\xf8\ \x77\x54\x58\x5c\x47\x67\x81\x14\x09\x8a\x5e\x28\x51\x60\x48\x5f\ \xc4\xb6\x0a\x3e\xa5\x04\x37\x88\x59\x30\x78\x05\x30\x16\x01\x5b\ \xa7\x04\xa9\xc0\x0c\xcc\x10\x07\xfe\xe0\x05\x71\xa0\x92\x94\xc7\ \x75\x31\xe9\x4f\x73\x00\x3f\xed\xa1\x5f\x1c\xe2\x44\x47\x78\x84\ \xea\x31\x34\xdb\x65\x60\x0e\x98\x2c\x67\x41\x47\x0a\x29\x0d\xcc\ \x38\x85\x07\x29\x03\xc7\x90\x0a\xe3\x80\x56\xe3\xd0\x7a\xe9\x57\ \x95\x50\x17\x91\xe3\xb7\x85\x56\xc9\x85\x3d\x35\x8a\x75\x80\x30\ \x75\x00\x73\x5e\xa9\x92\x9e\x74\x65\x71\x10\x92\x1f\xd5\x01\x3f\ \x54\x92\x66\x90\x96\x6a\xc9\x96\x98\x60\x7c\x21\x00\x06\x9c\x84\ \x3c\x77\x24\x42\xed\x11\x57\x7b\x11\x02\xe7\xe2\x17\x50\xc0\x66\ \x4a\xc5\x93\x90\x03\x39\xfe\xb8\x03\x01\x19\x23\x81\xb0\x03\x38\ \xc0\x0b\xc7\xd0\x05\x1d\x70\x0c\xca\xd9\x8c\x7d\x16\x00\x49\xb9\ \x0a\x84\x66\x0b\x7b\xd7\x67\xe6\xf7\x64\x97\x85\x89\x1d\x28\x95\ \xd1\xfe\x08\x99\x57\x49\x5c\x95\x65\x59\x73\x62\x5f\x60\x70\x7c\ \x60\xe0\x0f\x60\x70\x4d\xa7\x18\x06\x6c\x50\x0d\x57\xa0\x05\xa3\ \x45\x96\xe8\x68\x06\xa7\x19\x07\xd5\x20\x87\xec\x69\x7c\x50\x10\ \x0f\xf1\xc0\x06\xf0\xc3\x49\x46\xb0\x3c\x4d\x51\x54\xcd\x35\x0f\ \x41\x95\x06\x7f\x45\x3a\x6d\x86\x3f\x69\x90\x46\x61\x90\x06\xf4\ \xd3\x80\xeb\x62\x00\x91\xc5\x5e\xa9\xa0\x0c\x5c\xd0\x01\x5c\xa0\ \x9c\x91\xb8\x0a\x52\xd0\x0a\xad\x20\x05\x48\x17\x62\xe3\x26\x85\ \x4d\x26\x78\x4e\xe6\x64\x78\xd7\x77\x97\xc8\x85\x97\x65\x68\x17\ \x77\x68\x73\xe2\x95\xe3\x09\x06\x36\xb8\x83\x32\xca\x96\x71\x20\ \x96\x4c\x15\x01\x07\xa3\x04\x30\xc0\x0c\xa9\x10\x07\xb1\x58\x9f\ \x57\xc0\x92\x34\x9a\x54\x6f\x10\x5a\x7f\xa5\x4f\xbc\xc6\x0e\x11\ \xd0\x14\x62\xb6\x3d\x7e\x93\x01\x31\x90\x46\x6d\xe6\x43\x6d\x16\ \x03\xb8\x00\x05\xb9\x10\x06\xa9\xa2\x2a\x49\x11\x81\xb5\xc6\x09\ \xe3\x20\x05\x16\x9a\xa1\xc7\x40\x90\x4e\xe8\xa1\x0a\x49\x85\xd0\ \xe8\x0f\x52\xf8\x64\x4f\xe9\x77\x22\x16\x7b\x7c\x37\x91\x56\x09\ \x82\xa2\xf8\xa2\x88\xd6\x4c\x36\x48\xa3\x9f\x69\x0f\x50\xa0\x92\ \xfe\x84\xba\x92\x4c\x75\x05\x07\xe3\x72\x72\xc8\x0c\x70\x58\x0d\ \x30\x10\x01\x11\x90\x96\xf1\x20\x63\x5e\xd6\x68\xf9\xb5\x62\xec\ \x10\x57\xa1\x11\x0f\x7d\xe3\x46\x6f\x10\x06\x8e\x74\x60\x07\xf6\ \x06\xcd\x27\x3b\x64\xf0\x06\xa7\xc7\x28\x03\x09\x89\x0b\xb0\x98\ \xea\xc6\x02\x8f\x20\x0d\xc7\xa0\x0c\x49\xe9\x84\xca\xc8\x8c\x52\ \x18\x95\x21\xc6\x67\xe6\xb7\x0a\xc0\x45\x68\x8f\x99\x56\xb1\x77\ \x8d\x94\xf9\x81\xf1\x35\x9e\x95\x75\x9d\x42\x14\x06\x34\xda\xac\ \x2c\x37\x03\x34\x6a\x83\x6c\x69\x83\x30\xd0\x01\xf3\x74\x05\x52\ \x52\x92\x71\x80\x96\x26\x89\x96\x8d\x3a\xa9\x61\x10\x02\x5e\x70\ \x47\xef\xf3\x4c\xa1\x01\x57\xa2\x94\x4c\x64\x10\x4f\x7f\xd5\x66\ \x25\x64\x88\x21\x40\xaa\x5c\x1a\x5a\x11\x40\x67\x44\xd0\x36\x6c\ \xd2\x88\xcc\xd8\x0a\xd2\xb0\x0a\x8b\x19\x62\x2c\x60\x0b\x67\x80\ \x90\xc7\x20\x0d\xbc\x90\x0a\xb8\x8a\xb0\xb6\x4a\x71\x38\x00\x75\ \xab\x50\x9d\xc1\x55\x8d\x4c\xf7\x5e\xae\x66\x71\x52\x76\x9d\x1f\ \xb8\xa7\xd7\x08\x44\x97\x27\x9e\x2a\xa9\x96\x5e\xe9\xa8\x2f\x47\ \xa3\x6b\xe9\x05\x5a\x60\xad\x61\x14\x07\x42\xa4\xad\x8c\xca\xfe\ \x0c\xb1\xe8\xb2\xcc\x50\x0d\x5e\x00\x73\x5e\x80\x0f\x57\x00\x8f\ \x60\x50\x0d\x70\x05\x4d\xda\x30\x07\x11\x10\x52\x49\x05\x05\x19\ \xf0\x06\x6d\xe6\x00\x1f\x34\xb4\x4a\xc0\xa5\x73\x60\x09\x28\x45\ \x06\x53\xe2\x0a\x4e\x72\x17\x43\xb9\x0a\x8f\x98\x90\x67\x30\x0e\ \x01\xeb\xaa\xe3\x50\xb5\x43\x79\xb0\x90\xa8\xb0\x0a\x7b\x06\x16\ \x88\x56\x7c\x16\xa7\x14\x3b\x7e\x81\xd6\xa2\xa2\x68\x71\xa3\x68\ \xac\x50\xc6\x67\x37\xf8\x5e\xd7\xd9\x99\xf4\x19\x07\x71\x80\x0d\ \xca\xd0\x02\xd8\x30\xb3\x50\x50\x9e\xdb\x8a\x0d\x28\x6b\x43\xfb\ \x46\x04\xfe\xb0\xad\xf2\x79\xb8\xf2\x19\x8b\x76\xfb\xb3\x1d\x50\ \x69\xd5\xc0\x5c\x4d\x0a\x57\x19\x24\x52\x61\xd7\x93\x0c\x48\x57\ \xfa\x99\x0b\xa4\x8a\x09\xc7\x44\x06\x48\xf8\x97\xce\x71\x17\x48\ \x19\x00\x67\x20\xb6\x52\x60\xb5\x8f\xc0\x09\x2c\x30\x0e\xae\x5a\ \x9c\x05\xfb\x08\xa5\xab\xb0\x07\x1b\xb6\x21\x4a\x7e\xed\xd8\x5e\ \xa2\x08\xa7\xb0\x67\x0b\xa0\xa8\x9d\x5a\x38\x51\xa7\xc8\x09\x5e\ \x69\x9e\x3f\xd5\x91\x9b\x59\xb8\x6a\x19\x07\x7b\xd0\x02\xca\x70\ \x0a\x66\x30\xb3\x1b\x89\x96\xd5\x00\xb8\x37\xb4\x4c\x33\xfe\x20\ \xa4\x30\x70\xb8\x32\x90\xb8\xf3\xa9\xa3\x62\x54\x69\x74\x54\x0d\ \x4e\x0a\x49\x21\xe5\x92\x3d\xd9\x37\xc8\xe7\x57\x9c\xd4\x62\x64\ \x70\x00\x5c\xc0\xb4\x74\xb6\x25\x4b\xa8\x1f\xa2\x74\xba\xcb\xb9\ \x98\x67\xe0\x9c\x8a\x19\x62\x12\x68\x0b\x01\xcb\x0b\x08\x79\xb5\ \xa5\x5b\x94\xa9\x40\x98\xd5\x89\xa2\x7d\xb6\x90\x6b\xbb\x81\xd6\ \x09\xac\xae\x86\xac\xf0\xa5\xa7\x70\x6b\x59\xc1\x85\x71\xf4\x79\ \x7c\xfe\xb0\x07\xca\x20\x03\xd8\x80\x0d\xa8\xe9\xa8\x5a\xd0\x96\ \x26\xdb\x01\x1d\x70\x0a\xcb\x84\x6f\xd9\x4b\x05\x54\x20\x03\x2c\ \x6c\x06\xad\xb0\x8e\x85\x2b\x9a\x18\x24\xb9\x45\x34\x07\xfc\xc7\ \x72\x3a\xd9\x66\xf9\xc9\x49\xe0\x87\x09\x64\x10\x01\x73\x50\x84\ \x5b\x12\x9c\x85\x21\xb5\x52\x10\x00\x52\x20\xab\xc7\x10\x00\x0b\ \xf0\x8c\x1d\xca\x0b\xab\xd0\xaa\xe3\xd0\xbf\xb0\x7a\xba\x8a\xb9\ \xb5\x08\x5b\xba\xb7\x1a\x89\x95\x85\xbb\x38\xd0\xab\x4e\x96\xc0\ \x93\x59\x78\xd6\xd8\x77\xd6\x89\x4f\xe5\x89\x03\xf7\x34\xa3\xed\ \x18\x07\x29\x58\x0d\x7b\xb0\x07\xb1\x18\x8b\xd8\xb0\x07\x32\xd0\ \xbc\x30\xe0\x05\x1d\xb5\x92\x5f\xc7\x75\xfe\x00\x03\xfe\xd8\xb0\ \xc2\x2c\x2c\x03\xad\xd0\xb2\xed\xc8\x0c\xca\x20\x5d\x46\x84\x41\ \x3e\x3b\x07\xf8\xc0\x99\xd7\xa4\x9e\xfa\x39\xc9\x95\x6a\x9b\x73\ \xf2\x93\xbb\x61\x02\x96\x90\xa6\xcc\xc8\xc9\xce\x99\x98\xac\x9b\ \x0a\x48\x7c\xb0\x0b\xf0\x08\xa5\xcc\x61\x2c\x70\x06\x09\xf9\x08\ \x58\x8c\xab\x18\xe8\x84\x66\xb0\x90\x55\x58\xb6\x48\x37\x59\x29\ \x7a\xa7\x60\x58\xc1\x0f\x0c\x06\x1a\x97\xbb\xfe\xa0\x04\x32\x3a\ \x9e\xc4\xab\x04\x2d\x6b\x9f\xcc\x80\x0d\x77\xcc\xbc\xca\x10\xc2\ \x5e\xe0\x0f\x72\x58\x96\x8e\x1a\xc8\x83\x2c\x9f\x8c\xea\xc1\x76\ \xcb\x0c\x32\xfc\x9e\x90\x3a\xa9\xf9\xe9\x05\x93\x3a\xc9\x11\x90\ \x8f\x0b\xc5\x6d\xaa\x71\x47\xc7\xa0\x0d\x90\xa8\x9c\x9c\x7c\x0c\ \x5c\x20\x0d\xad\xca\x0b\x01\xf0\xa1\x52\xc0\x0b\x12\x58\xba\x81\ \x66\x0b\x01\xfc\x8c\x84\xc9\x8c\x67\x60\x7e\x03\xab\x90\x66\xbc\ \xa7\xe8\x47\xb6\x58\x08\xb7\x6c\xfb\x9d\xf6\x50\x07\xe5\x59\xcb\ \x6b\xa5\x04\x85\xcb\x95\x17\x97\x82\x4a\xd0\x4c\x31\xab\x96\x85\ \x3b\xbd\x5a\xa0\x05\xc9\x4c\xc2\x2d\xd0\x01\xca\x80\xa8\x6e\x00\ \x05\x80\xac\x8e\x66\xc0\xc2\x85\x0c\x03\x2a\xfc\xfe\xa3\xf5\x29\ \x79\x4c\x55\x44\x76\x05\xa9\x22\xf5\x06\x8e\x76\x47\x5e\x30\x4e\ \x50\x8b\x1a\x77\xc1\x0c\x9d\x7c\x0c\xbc\x70\xba\x19\x2a\x0d\xce\ \x99\xa1\x43\xa9\x8c\x84\xa9\x90\xad\x0a\xbb\x16\x98\xca\x52\x60\ \x81\x53\xfc\x88\x08\xdb\x8c\xa9\x60\x06\x20\x2a\x5f\xfc\xbb\xbb\ \x4e\xd6\x77\xd4\x99\xd5\xbc\x7c\x59\xa2\xd8\xcc\xc4\xba\x91\xfe\ \x40\xc1\x40\xf4\x81\xe8\x68\x9e\x6c\x5c\x0d\x2e\x8b\x0d\x5a\xd0\ \x02\x2d\x10\x46\xd8\x6a\x0f\xb0\x08\xc8\x66\xa0\xc2\xea\x08\xc8\ \x7b\x50\xd7\x40\x1a\x07\xa9\x20\xc3\x11\x10\x9a\x30\xc6\x92\x98\ \xa0\x9f\x57\x60\xc9\x0b\x05\xba\x73\x11\x08\xab\xe0\xb5\xea\x9c\ \x0a\xc6\xa9\xce\x41\x2d\xd4\xbc\x10\xbb\xd2\x90\x0a\xac\xbc\xb5\ \x57\xcb\xbf\x8f\xc0\x02\x01\x2b\x9d\xf8\x70\x90\x52\x00\xa7\x67\ \xa9\x94\xf2\xf5\x5e\x45\x07\x86\xd6\x68\x7e\xe5\xd9\x8e\xe6\xa7\ \x04\x19\xfb\xc5\xed\x08\xcc\x0a\xcd\xcb\x73\x72\x5c\xe3\x29\x51\ \x32\xda\x8e\x8e\x2a\x03\x6c\xdd\xd6\x1b\xd2\x02\x5e\x50\x5f\xd8\ \x4b\x05\xd2\x2c\x03\x74\xcd\xc2\x54\xf0\xb2\xec\xc8\x0c\x81\xab\ \x72\x7e\x16\x07\xcb\xfd\xd2\xf8\x10\xd8\xfa\xfe\x88\x30\xf3\x5b\ \x18\x9f\x10\x01\xec\xd0\xcf\x55\xdb\xce\x3d\x1d\xd4\xea\x9c\x41\ \x48\x99\xa6\x67\xd0\xd3\xf4\x1c\xb0\x15\x97\xd4\x53\x8c\xb5\x59\ \x4b\x89\x0a\xeb\x0f\x5f\xfb\xbb\xf1\xd5\x90\xc2\xab\x9d\x58\xf8\ \xb0\x6a\xe9\x67\x96\x35\x03\xae\x66\xb7\x38\x00\x44\xe0\x99\x32\ \x30\xf8\x89\x0d\xad\x04\x38\xe0\x05\xc7\x9c\xb7\x6d\xcd\xd6\x5d\ \xb0\x07\x5b\x17\x02\xc7\x5c\xc7\x83\x6c\xdc\x82\x7c\xdc\x73\x8c\ \x96\x32\xcc\x0c\xf7\x54\x0d\x60\xc6\x05\x93\x37\xdd\x5a\x54\x17\ \xd1\x11\x01\xcb\x19\xd9\x38\xf0\x88\x84\x59\xba\x8d\xad\xce\xda\ \x90\xa1\x68\x3a\x94\x59\x1c\x62\x53\x9c\xd4\x12\x98\xd4\xb0\x5a\ \x7e\x4e\x28\x85\xb5\x8b\x56\x94\x05\x78\x64\x3c\xa3\x7d\x27\xcc\ \x85\xeb\xd5\x6a\x5c\x07\xab\xc0\x8e\x99\xf9\x89\x04\x14\x72\x02\ \x8e\x03\xdb\xaa\xc1\xbb\x9d\xe0\x88\x4a\x04\x38\x00\xc8\x1a\xbd\ \xc1\x76\x1c\xc7\x54\x60\xc7\xc7\xed\xb2\x70\x98\xbd\xf3\xe4\x8a\ \x6e\xa0\x04\x57\x90\x54\xf4\xd7\xd2\xa5\x95\x5b\x98\x4c\x16\x77\ \xf1\xc9\x69\x4a\xd9\xf5\xcc\xd8\xac\xbc\x0a\x40\xad\xce\xca\x19\ \xde\x4b\x1c\xd9\x91\x18\xe3\xff\x6a\xd9\xfe\x99\x8d\xd9\x65\xab\ \x90\x71\x4a\x8d\x82\xfe\x9d\x68\xec\x67\x37\xc8\xc6\xaa\x6d\xd1\ \x37\xe8\x95\xb6\x20\x86\x6e\xb7\x25\x0a\x4d\x9f\x6a\x8d\xe0\xbb\ \x1d\x07\xdc\xe5\x05\x1d\xbc\xc2\xca\x80\xe5\x58\xae\xc2\x1e\x8c\ \x96\xd9\x9b\xbd\xcf\x8d\x9c\xe7\x98\xb4\x97\x47\x04\x2e\x2d\x92\ \x8e\x3c\x4e\xdb\xd6\x45\x95\xa6\x9c\x01\x80\xc4\x84\x19\xd9\xb0\ \x0b\x85\xac\x0c\xab\xa2\xcc\xe6\x4b\xfc\xc9\x20\xaa\x8c\x62\x2b\ \x81\x8b\xd9\xd4\x4f\x18\x68\x6b\x40\x85\x94\x75\xe3\xca\x38\x85\ \x7c\x66\xda\x7d\x37\x82\xa2\x38\xa3\xdf\x38\x9e\xd2\x7a\xd1\xf5\ \x49\x6e\x1c\xfb\xe8\x08\x93\xd0\x0e\x8d\xd6\x4e\xae\xe0\xca\x00\ \x79\x28\x4c\xe5\x7b\xd0\xc1\x81\x9c\xd2\x70\x18\xb3\x73\x8c\x0d\ \x66\x30\xea\x1d\xe0\x92\xf8\x14\x50\xde\xeb\x5f\x9d\xd4\x70\x56\ \xd1\x1f\x19\x94\x41\xca\x49\x98\x40\x4d\x90\x5a\x7c\xeb\xb6\x30\ \x0e\xbc\x00\xd4\x48\x1c\x00\x84\xa9\x9c\x0a\x19\xbb\x62\xfb\xef\ \xe6\x0d\xc0\xa9\xd0\xc4\x9a\x2d\x62\x54\xeb\x0f\xc9\xbe\x81\xee\ \x15\xdb\xdf\xd9\xd0\xfc\x87\x7c\x83\x5a\xa8\xce\x1c\xb3\x61\x8d\ \xed\x04\xb4\x56\x1b\x09\x03\xdd\xce\xfe\xd6\xd8\x50\x96\x28\x4d\ \xc7\x80\xac\xee\x80\xac\xd2\x68\xcd\xa8\x89\x4b\xbd\x61\xd4\x01\ \xfe\xc0\x46\xfe\x7d\x05\x1c\xde\x8a\xc8\x86\x30\xe4\x6c\x14\x87\ \x70\x00\xec\x7c\xef\x68\xba\xeb\x4b\x2c\x0d\x62\xab\xc5\xae\x0a\ \xab\x03\x3b\xf0\x9d\xcc\x05\x48\xac\x8c\x4f\x58\xd9\x30\x7e\x06\ \xd2\xd0\x0a\xbc\xe0\xaa\x10\x3f\xa2\x53\xf8\x6a\x54\x48\xb1\xe3\ \x39\x82\x40\x85\x4f\x49\xdb\xb7\x7d\xab\x92\x24\xab\xda\x29\xe8\ \xe8\xd8\xde\x4c\x45\x4e\xf2\xba\x5d\xe9\x07\x03\x8b\xd8\xd0\xf2\ \x2a\xef\xa8\x2e\x5f\xcd\x66\x30\xf7\x88\x3c\x4f\xd5\x90\x99\x61\ \x2e\xed\xf6\x94\x01\xa9\x2e\x92\x3b\xbf\x25\xe7\x55\x14\x41\x69\ \xe7\x2c\x2e\xf4\xbb\xce\xcf\x15\x57\xba\xac\xec\xbf\x02\xab\xc4\ \xcc\x78\xc4\xcb\x79\xe3\x91\x78\xeb\xe3\x20\xe7\x4e\xe8\xf0\xd1\ \x49\x81\x38\x7e\xa7\xc0\x25\xa3\x12\x1d\x73\xa7\x35\xf6\x5e\xc0\ \x06\xd1\x4a\xb2\x7d\x47\x86\x20\x5f\x8a\xcc\xca\x96\x54\xae\x05\ \xe3\x0e\x79\x6e\x80\x03\x31\xcb\xa8\x2f\xfb\xa3\xe8\xce\xad\x28\ \x6d\xc7\xc4\x4d\xf2\xec\xee\x05\x40\x94\xc6\x41\x44\x04\x23\x07\ \x63\x67\x3e\xc4\x88\xa1\xc9\xf8\xfe\xfe\xdd\x42\x3f\xf4\x45\xff\ \xeb\x90\x5f\xd9\xb0\xda\xd8\xf3\x6c\xbf\x90\x38\xd9\x07\x6b\xeb\ \x91\xbf\xb5\x49\x3c\xb6\xfe\x1b\xe3\x09\x0c\xa2\xca\x4e\x8d\x3f\ \x8e\x7c\x1d\xd5\x66\x21\xa0\xf1\x50\xc0\x06\x83\x3a\xa8\xcd\x4a\ \x82\xaf\x3f\xdb\x0a\xed\x0f\xc7\x9c\xe5\x72\x9c\x99\xd7\x9b\xfb\ \xa1\x7e\xcc\x00\x61\x06\x06\x33\x18\x54\xcc\x50\x91\x91\x50\xd9\ \xc2\x3d\x7b\x64\x74\x81\x18\xb1\x0b\x33\x25\x4a\xc0\x80\x99\xe1\ \x46\xa3\x1b\x28\x12\x3d\x7e\x84\xc8\xe5\x8a\x92\x19\x7f\xfe\x9d\ \x44\x99\x52\xe5\x4a\x96\x2d\x55\x9a\xb0\xc4\x45\xa6\xcc\x63\x35\ \x6b\xce\xa4\x69\xf3\x58\x2a\x5e\x8f\x1e\x9d\x79\x34\x6e\x5c\xd0\ \x47\xbc\xa4\x05\x48\x75\x26\xc0\xb1\x56\x52\x92\x9e\x39\x93\x4a\ \x2a\xd0\x71\xb6\x6c\x3d\x9a\x6a\x95\x85\x55\x1c\xb6\x70\xac\x4a\ \xe5\xf4\xcc\xaa\x55\x38\xcc\xda\x52\x82\x03\x4c\x45\x28\x50\xde\ \x40\x09\xe1\x16\x0a\x9b\xb6\x6d\xbd\x5c\xbc\x58\xc7\xde\x46\xbe\ \x7d\xfb\xce\xa8\x03\xc5\x5f\x41\x65\x2d\x0c\xb7\xd0\xa2\x84\x08\ \x8e\x82\x30\xcc\x34\x34\x88\x8d\x8a\xc1\x83\x0a\x17\x2a\xeb\xd0\ \x41\xd9\x1e\xcc\x1f\x23\x60\xfe\xac\x48\x64\xe3\x0c\x30\x11\x4c\ \x83\x44\xdd\x45\x1b\xbe\x10\xeb\x5c\xbe\x86\xfd\xda\x84\xb6\x63\ \x33\x6d\x4a\xbb\x49\x93\x8b\xce\x63\xd2\x80\x42\x0d\x3a\x6e\x41\ \xcf\x71\x67\x7c\x47\x0d\xd0\x54\x8a\x94\xb1\x64\x53\xad\x3a\x53\ \xf5\x2a\xaf\x54\x8f\xac\xda\xda\x6a\x95\xd3\x38\xb0\xcf\xc9\xae\ \x7a\x84\xa3\xce\xf8\xb5\x4a\xe2\xbe\x7d\xe3\xc7\xed\x5b\xf5\x75\ \xa1\x80\xd1\xeb\x57\x3e\x5f\x7b\x33\x94\x0c\xa6\x52\xf8\x70\x0b\ \x6c\x75\xc2\xc4\x91\x41\x99\x00\x17\x92\x61\xb2\x02\x27\xe3\xec\ \x32\xcc\x32\xcb\x4c\x19\xd4\xfc\xb1\x87\x08\x7b\xf6\x72\x23\x0c\ \x30\xfc\x21\x49\x89\x39\x52\x43\x6d\x8e\x6d\x62\x03\x31\xc4\x93\ \x0e\xb9\xa9\xb6\x9a\x02\x40\x31\x37\x13\x6f\x0a\x80\x97\xdf\x80\ \x5a\x20\x15\xdf\x7e\xa2\x6e\x81\xa8\xc2\x5a\xaa\x95\xef\xa2\xf2\ \x27\xa8\xab\x78\xc2\x21\x3b\x4e\xb0\xe3\xa4\xc8\xaf\xc0\x7b\x84\ \xac\xae\xea\xe0\x84\x2d\x25\xde\x82\xc2\x0f\xf5\xde\xa0\xf2\x8d\ \x10\xae\x0c\x21\x8c\x3a\x48\x9a\xaf\xcb\x8d\xec\xa9\xc3\x1f\x66\ \xf6\xd8\xaf\x85\x38\x00\x63\xa6\x85\x85\xd4\x14\x30\x21\x37\x03\ \x3c\x0c\xb3\x16\x3a\x98\xfe\x73\x41\x90\x22\xa8\xc3\x0d\xfb\x94\ \x18\x8f\x4b\x8d\xc2\xe0\x82\x43\x90\xb8\x30\x41\x44\x43\x5d\x32\ \x21\x02\x15\x8f\x09\x40\x8a\xa3\x4a\xe4\x22\xc5\xdd\x98\x3b\x83\ \x17\x17\xa3\x9a\xb1\x28\x17\xf1\x81\xea\x0c\x29\x68\x93\xc2\xb9\ \xa8\x7c\xfa\xb1\x3a\x5b\x86\x64\x61\xc8\x22\x8b\x1c\x0a\x87\xf0\ \xc2\x1b\xaf\xcf\x27\xa3\x64\x23\xbd\x2a\xb1\x8c\x21\x0c\x5d\xc3\ \x98\x21\x23\x2f\xbb\x9c\x41\xad\x38\x60\x70\xc8\x30\x6c\xa0\x20\ \x42\x09\x66\x2e\x63\x53\x86\xca\x2c\x33\x8c\xce\x39\x33\x9b\x16\ \x35\x2e\xa0\xd0\x13\x0c\x2f\x14\xeb\x2b\x8c\x08\x04\x05\x69\x93\ \x43\xc7\x5d\xe9\x10\x69\x70\x5b\x51\x1a\x29\x78\x59\x2a\xdd\xa5\ \xb8\x90\xc6\x45\x19\x1d\x95\xa6\xa9\x4b\x6f\xe4\xa5\xac\x55\x5a\ \xd1\xc6\x0c\xa7\xa0\x83\xce\xba\x71\x78\x61\xee\x54\x5b\xea\xd8\ \x8a\x49\x4e\xec\xb9\xaa\x2c\xf1\x62\xed\x35\x8c\xb8\xe6\x62\x43\ \x4a\x2a\x8b\x88\xa1\x88\x34\xc2\x48\x63\x06\x09\x7f\xf5\x12\x4c\ \x30\xaa\x81\x01\x1b\x87\xf6\xd0\xe2\x4c\x37\x94\xb5\xac\x4d\x33\ \x04\x42\x08\x4e\x69\xa9\xcd\x0c\xa2\x16\x50\x8b\x43\x42\x2f\xe2\ \x50\xa2\xaf\x10\xaa\xfe\x01\x17\xb5\x4f\xc8\x25\xfa\x9f\x4f\x0e\ \x50\x77\xc5\x16\x79\x92\x22\xb7\x78\xdf\x0d\xe0\xdc\x7a\x5b\x51\ \x57\x8a\x56\x92\xfa\xc9\xa9\x47\xea\xc0\x21\x95\x56\x90\xa2\x8e\ \x2c\x9f\xc2\x03\xeb\x8c\x20\x39\x61\xa1\x0e\x22\x17\x66\xd8\x55\ \xf1\x38\xe9\x35\xee\x10\xd8\xa0\xbb\xe2\x5a\x8b\xa0\x32\x86\x34\ \x88\x10\x8d\x3e\x90\xe5\x0b\x76\x58\x19\xd4\xe4\x0f\x0c\x22\x48\ \x23\xc8\x8c\x37\xcd\x60\xa6\xf1\x82\x12\x32\xac\x30\x06\xa7\xa5\ \xb3\x03\x90\x3a\x20\x09\x8a\x54\xb8\xb4\x70\x8e\x40\x83\x0e\xb7\ \x68\x72\x8f\xe6\xa9\xc4\x46\xa1\x32\x2a\x00\x9a\xa2\x32\xb1\xd1\ \x73\xd7\xf5\xf4\xdc\xb1\x2a\x0d\xd5\x96\xe2\x96\xa3\xd4\x27\x24\ \x87\x1a\xeb\xd4\x55\xd5\x5e\xd5\x9e\x21\xc1\x10\x6f\xaf\xfa\x24\ \xa6\x98\x0d\x20\x94\x07\x02\x08\x3f\xde\x88\xa1\xef\xd1\x94\x08\ \x83\xc2\xbf\xf9\xba\x8f\xd8\xc2\x94\xc1\x06\x0c\x30\x87\x25\x28\ \x21\x33\x5a\xa9\x26\x15\xc7\x0f\x72\x48\xa1\x39\x29\xef\x40\x06\ \xcb\x41\x82\xa2\x57\x30\xde\xf3\x82\x99\xcf\x41\x47\xad\x50\xd1\ \x0f\x35\x61\x5d\x5e\x6a\x83\xd7\xa5\x6c\xf4\x3f\x99\xf8\x46\x75\ \xbb\xf1\x8d\x8b\xfe\x56\x61\x8b\x05\x2c\x07\x28\x3f\xe1\x94\x59\ \x92\xe2\xc0\xb1\xe8\x6e\x6c\xe0\x39\xd8\xaa\x8a\x94\xc1\x09\x71\ \x4d\x3c\xa2\x99\x41\x18\xde\x42\xb7\x3e\x94\xb0\x84\x6c\xe8\x03\ \x10\xa0\x27\x1a\x16\x22\x2f\x3e\xbf\xaa\x8f\xf5\xdc\x50\x07\x30\ \x30\x43\x0b\x97\xa9\x46\xfc\xc0\x70\x05\x6c\x48\xa6\x40\x8c\x63\ \x46\x35\x1a\x67\x86\x1e\x1a\x28\x40\x95\x9b\x56\x0b\x22\xf0\xbe\ \x8f\x78\x41\x23\x4a\xf0\xc2\xb7\xf0\x27\xa8\x4d\x0c\x6d\x7f\x86\ \x3a\x04\x75\x70\xb3\x9b\x16\x75\x4a\x29\x34\x79\xd7\xa4\x2e\x25\ \x30\xac\x00\x85\x05\x42\xf1\x4a\x51\x70\xd7\x29\x24\x21\xe9\x2c\ \xda\xd1\xe0\x78\x16\x66\x9f\xb5\xe8\x2a\x0d\x21\x78\x03\x09\x49\ \xd8\x07\xe6\xa9\x50\x6f\x44\xd8\xd8\x95\x2a\xe2\x27\x37\x7c\x6c\ \x23\x75\x98\x41\x7d\x1e\x16\x21\x7b\x58\x68\x58\x0d\xd1\x82\x17\ \x00\xe3\x0f\x2a\xec\x21\x66\xce\x1a\x88\xe3\xb0\x71\x10\x23\x0e\ \x08\x33\x9f\x74\x1f\x6a\xaa\xa1\xab\x28\x4e\x31\x68\xfa\xbb\x62\ \x88\x3e\xa1\x0d\x4b\x29\x0d\x76\x9e\x02\xe0\x6e\xc0\x08\x14\xdb\ \x0d\x05\x3a\x49\x19\x87\xda\xac\x92\xb5\x46\x31\x27\x60\x63\xb3\ \x0e\x57\xde\xfe\x36\xa1\x19\x0c\x89\x49\x80\x69\x8b\x79\xf0\x98\ \x1e\x8b\xa5\xa7\x79\x16\x8b\x81\xde\xd2\x70\xc7\x2b\x49\x2c\x04\ \x79\xd2\x53\x7c\x62\x58\x11\xc0\xa8\x65\x2d\x80\xb1\x48\x1c\x98\ \x61\x32\x18\x90\xe4\x3f\x92\xc9\x4f\x42\x0c\xe2\x38\xc7\x54\xd2\ \x92\x0e\x59\x88\x66\x34\x23\x03\x2e\xd0\x13\x35\x1d\xb8\xc2\x15\ \xee\x67\x4a\x0e\x89\x2b\x95\xaa\x34\x17\x2c\x77\x53\x13\x5f\xa6\ \x22\x00\xda\xc0\xc9\x40\xa5\xf0\x88\xad\xf0\x4e\x46\x49\xb9\x8e\ \x4f\x90\x73\x3a\xa8\x80\x07\x49\xda\xb9\x4e\x91\x26\xc4\x09\xae\ \x21\x72\x06\x71\x59\xe6\x32\x2f\x86\x37\x3f\x14\x01\x6f\x26\x8d\ \x66\x4a\x73\xb5\x31\x5d\xf5\x0a\x07\x50\x40\x64\xac\x2e\x84\x16\ \x6d\x5d\xc4\x9b\x71\x10\x22\x0c\x60\x20\xc9\x95\x55\x83\x0a\x05\ \x89\xd9\x3a\x07\xf2\xb2\x4a\xbe\x29\x9e\x0d\x92\xc1\x3b\xf9\xb9\ \xd4\x8f\x58\xf1\x9f\xb1\xf9\xc4\x1c\x4a\xb7\xa2\x63\x30\x47\x0a\ \xef\xb2\x89\x2c\xab\x5a\x15\xde\x79\x6a\x39\xaf\x22\x0b\x54\x96\ \x23\x8d\xa7\xd8\x2e\x49\x41\x51\x18\x47\x35\x4a\xcc\xf1\x78\xcc\ \x9a\x6f\x40\x69\xc6\x32\x66\x52\x93\x96\xf4\x79\x54\x0a\x41\x0c\ \xae\xb4\xfe\xd2\x30\x10\xc1\x42\x77\xe1\x93\x37\xc5\x84\x17\x7f\ \xf8\xe3\x22\x3b\x23\x08\x36\x60\x90\x43\x37\xd8\x03\x0a\x8e\xd9\ \xe4\xcb\x04\xd2\x38\x66\xc0\xcc\x4d\x02\xba\x8c\x66\xda\xa4\x8d\ \x3d\x98\x81\xa9\x9f\x85\x88\x3f\x9f\x0a\x9b\x4f\x58\xc2\x28\xe8\ \xca\xc9\x54\x01\xc8\x9b\x00\x50\x65\x6c\x9e\xc2\xda\x77\x7e\xa2\ \x94\xd3\x59\xa7\xa1\xa4\xd2\xa0\x5a\x27\x54\x9f\x10\xde\x51\xae\ \x18\xc3\xd8\x5c\xe9\x2a\x25\xe2\x3e\xaf\x08\x21\x38\xee\x71\x73\ \x15\x17\x2f\xdc\x05\x0a\x16\xb9\x0b\xc9\xe2\x50\x58\x7f\x4c\xf7\ \x42\xe3\xa4\x82\x16\xb0\x51\x8d\x9e\xb9\x01\x0c\x8e\x79\x99\x62\ \x1b\x67\x3e\x9d\x3e\xcb\x93\x0b\xea\x00\x17\xda\x24\x83\x25\x82\ \xf6\xb3\xa8\x1c\x2d\xa2\xc8\xe0\x22\xd4\x4e\xca\xa0\x26\xca\x09\ \xa3\x60\x07\x4c\x35\x36\xa7\x39\x3e\x99\x17\x54\xaa\xc2\x82\xec\ \xc0\xb1\x83\x88\xdc\x4b\xc4\x90\x0b\x57\xe8\xd1\xd5\xc1\x75\xb5\ \x6b\x33\x4f\x9a\xd7\xbc\xce\x05\x13\x5e\x48\x66\x4d\xc7\xc9\x0c\ \xea\xe2\xd4\x1f\x24\x73\x13\x36\xe2\x90\x27\x7b\x7c\x77\x20\x99\ \x34\xdf\xf9\x8c\xa8\x1f\x05\x11\x28\x21\xea\x75\xef\x67\xab\x18\ \x5f\xfe\xd8\x64\x91\x17\xc3\x59\x6d\x2f\x63\x29\x93\x5e\x92\xd5\ \x8b\x12\x8d\x4a\x73\xb0\x36\x1d\x9e\x00\xe7\x54\x4c\x62\x52\xaa\ \x36\x8a\x60\x3d\x49\xac\x4a\xcc\x1c\x6e\x49\x8b\x50\x5c\xbc\xd9\ \x0a\x7a\x79\xd5\x5b\x0c\xf2\x88\x89\x0b\xd3\xc5\x2e\x60\xc0\x04\ \x36\xae\x10\x07\x32\x57\xc3\xcc\x63\x3a\xcc\x1e\x54\x16\x86\x0f\ \x0b\xb1\x71\x66\x76\x33\x51\x2f\xf9\xc9\xcb\x44\xa0\x4d\x11\xa0\ \x02\x13\x63\xcc\x4f\xf8\xd2\x78\x25\x51\xbd\x71\xa5\x00\xd8\xa2\ \x4f\xc9\x92\xc7\x04\x5b\xd7\x53\x7e\xa2\x3b\x5f\x26\xa9\x77\x0c\ \xbc\x14\xd6\x70\xa0\x41\xdf\x11\xb3\x57\x7c\xc3\x23\x71\x9b\xe7\ \xbc\xba\x6e\x9a\xb8\x0e\x7e\xb2\x72\xa3\xe9\x07\x2e\x73\x99\x0d\ \x18\xf6\xc2\xa9\xe3\x40\x89\x20\x92\xb9\xcc\x30\x18\x9c\x61\xf6\ \xe0\x0f\xd1\x28\x41\x9c\x67\x8e\x43\x2a\xca\x97\x38\x4e\xaa\x4f\ \x9e\x2e\xc6\x33\x11\xf5\xbc\xe7\x29\x8a\xd6\xcf\x7f\x36\xed\x19\ \x86\xb3\x45\x46\x95\x28\xc7\xae\x83\x5d\xc0\x84\xe2\x29\xa0\x94\ \x0d\x3b\xc5\x79\x0a\xc0\xba\xf2\x3b\xb6\x85\xb0\xaf\x22\xcc\xa3\ \xf2\xb6\x31\x6e\x20\x4c\xd9\x0f\x9e\xfe\xf4\x6f\x47\x1a\xcd\x3c\ \xfe\xf6\xe1\x12\x7d\xc0\x44\xdd\x50\x9d\x4f\x4a\x5c\x01\x13\xae\ \x16\xdc\x61\x64\xe0\x3d\xd2\x08\x91\xcc\x85\x4d\x71\xe2\x3a\xc9\ \xe2\x79\xa6\x2f\x02\x3d\x1c\x36\xb1\xf1\xe7\xd4\x63\xab\xe4\x68\ \x96\x62\x1d\x55\xab\x8a\x5a\x9b\x38\xca\x29\x3d\x79\x20\xb5\x5d\ \x35\x2a\xb4\x2d\x5a\x77\x63\x29\x1e\x60\x2e\xfd\xd6\x3c\x1a\x80\ \x0d\x06\xd8\x86\x25\x10\x31\x6e\xbb\x6e\x9a\xd3\xc1\x05\xee\x94\ \xe1\x4a\xd2\x12\xbe\x9b\xcb\xa9\x3e\x35\x97\xb5\xa0\x85\xc5\x36\ \x17\x13\x24\xd3\x4f\x0b\x64\x80\x2d\x36\x2b\xb6\x1a\xd3\x2d\x6c\ \x4e\xdb\xa9\x90\xf3\xb6\xe9\x64\x7b\x30\x8d\x83\x14\x3e\xc5\x40\ \x6d\xa0\xe1\x2c\x39\x1a\xd5\x68\xc7\x1b\x8c\xc7\x92\x51\x4c\x53\ \xd7\x6f\x66\x0b\x14\x1c\x78\x6a\x81\x43\x02\xce\x4f\x52\xd1\x23\ \xbd\x34\x92\x4f\x61\x68\x8b\x7a\x1c\xd0\x87\x6d\xc4\x63\xdc\x9b\ \xc0\xfb\x36\x9c\x27\x25\x97\x97\x34\xa5\x31\x67\xb0\x1f\x50\x58\ \xf3\x77\xf7\xa1\xb9\x39\xd7\xc2\x29\xf6\x40\x89\xe6\x92\x19\x1b\ \x41\x4f\xcc\x0c\x1e\xbb\x87\x20\x16\x16\x0c\xe2\x64\x1c\x78\x8d\ \xca\x90\xa4\x36\xc4\x21\x76\xee\xcc\xd4\xf9\x7c\xf5\x3f\xb3\xfe\ \xa3\x53\x04\x6b\x57\x00\x16\xf8\x88\xa6\x99\xe8\x38\xb1\xeb\x89\ \x44\x91\x94\x24\x5c\xa2\x8d\x8d\xdf\xc1\x81\xaf\xec\xd3\x16\xba\ \xc5\x03\x08\x28\x9f\xc7\x36\xfa\x61\x89\xd0\xca\x42\xef\x7e\x20\ \x41\xf3\x4a\x58\x6e\x95\xfe\xfd\x0d\x40\x30\xa1\x09\x2f\x31\x7d\ \x53\xc7\x01\x13\x5a\x50\x93\x88\x77\x16\x07\x6c\xec\x07\x06\x88\ \xf4\x47\x43\x98\x81\xf4\x0f\x3b\x66\x88\x6e\xb2\xe4\x9b\x20\x53\ \x54\xf6\x9e\x22\xe1\xa2\x07\xd7\x8c\x49\x9f\x92\x43\x3c\x30\x2c\ \xad\x6f\x6d\x50\x94\xd2\xba\x4e\x5d\x55\x0a\x42\xe1\x1d\x9f\x98\ \x36\x33\xda\x8a\xd9\x21\x8b\x6f\x12\x8d\x34\xc8\xa3\x78\x60\x03\ \x07\x70\x00\x36\xd8\x86\x5c\xd8\x06\x94\xb3\x04\xbc\xdb\x04\xe3\ \x4b\x21\xe8\x1b\xb7\x14\xf2\x83\xbf\x9b\xa6\x8c\x11\x3c\x78\x8b\ \x3e\x77\xa3\xbe\x0b\xbb\x3e\xc3\xd0\x02\x33\x73\xbc\xfd\xf0\x87\ \x30\x50\x82\x6a\xe0\x9e\xa3\xab\x2e\x32\x23\x88\xca\x52\x1c\x01\ \x99\x8c\x1c\x2c\x22\x04\x41\x19\x2d\x68\x2f\xf8\xa3\xba\x3e\x23\ \xbd\x4f\xc0\x87\x69\x43\x34\x82\x5a\x80\x69\xc3\x2a\xe6\x40\x3d\ \x69\xf0\x91\xe2\x80\x8a\x88\xf2\x11\xdb\x21\x0b\x7c\x20\xfe\x1e\ \xea\xe1\x1b\x05\x3c\xb9\x06\xf4\x03\x07\xec\x03\x03\x00\x82\x6d\ \x38\x00\x4b\xb0\x04\xe3\x1b\xb7\x0d\x34\xa1\x72\xa3\xab\x68\x4a\ \x83\x8c\x41\xa1\xe9\x1b\xc1\x4b\xb8\x82\x7a\x33\x41\xec\x6b\x81\ \x53\x18\xbf\xea\xea\xbe\xc3\x80\x0f\x65\xd9\x03\x18\x88\x83\xed\ \xcb\x29\xc7\xb9\x24\x1d\x74\x0c\xc7\xb0\x24\xc9\x68\x08\x29\x02\ \x42\xfc\xe9\x80\x0f\x99\x3f\x94\xf8\x84\x75\x18\xc0\x4a\x59\x8a\ \xfc\x1b\x8a\xa6\xe1\xb1\x04\xba\xaa\x9e\x58\x03\x06\xc2\x9a\xdb\ \x12\x30\xb5\xc9\x00\x7c\xc8\x80\x0c\x68\x8b\x27\x6b\x40\x07\x78\ \x03\x14\x28\x02\x14\x70\x00\x20\x70\x00\x3f\xd0\x03\xe4\xa3\xbb\ \x4d\xdb\x06\xba\x5b\x3e\xbb\xc2\x98\x0f\x9c\x32\x12\xc4\x84\x13\ \x82\xb7\x4b\xc0\x04\x39\xc4\x84\x2b\x38\x05\xc3\x90\x81\xf1\xf3\ \x82\xc1\x88\x13\x0c\x19\x8c\xed\x6a\x46\x9c\x22\x19\x9d\xaa\xac\ \x4b\x22\x2a\x6b\x24\x88\x93\x71\x9f\x9a\x69\xc4\x29\x62\x06\x86\ \x9b\xbf\x4f\x98\x07\x60\x32\x8e\x9a\xf0\x0d\x25\xb4\x89\xd6\xc2\ \x14\x9e\x18\x07\x16\x28\xbb\xde\x41\x9b\x71\x90\x8a\x55\x60\x12\ \x1c\xc8\x00\x30\x88\x87\x78\x98\x45\x28\x98\xc5\x59\xfe\xd4\x83\ \x59\x2c\x02\x3d\x00\x02\x3d\xc0\x18\x40\x2a\x02\x12\xd8\x86\xe4\ \x0b\xc3\x5c\x24\x37\xbe\x73\x9e\xbd\x71\x43\xe9\x0b\x46\xba\xe1\ \xb2\x39\xcc\x27\x34\x53\x93\x31\xf3\x07\x2f\x80\x81\xc3\xd0\x02\ \xc3\x8a\xc6\xa3\xc3\x29\x82\x28\x99\xa5\xa3\x0c\x81\xd0\xa9\x13\ \x23\x96\x00\x71\x9f\xd0\xfb\x46\xd0\xe1\x02\x03\x88\x44\x49\x5c\ \x87\x22\x7b\x04\x1b\x39\x8a\x19\x29\x0e\x82\xa9\xb8\x01\x52\x20\ \xab\x00\x8f\xaa\x58\x95\x47\xe0\x14\x3e\x61\x0b\x36\xc8\x85\x06\ \x64\x03\x3d\x78\x03\x3d\x40\x01\x5a\xd4\x03\x82\x34\x00\x3d\xd8\ \x1b\x22\x88\x01\x3f\x20\xb7\xe6\x39\xc3\x0d\xe4\xca\x4b\x00\x82\ \x2c\xd3\x32\xe8\x83\x37\x2e\x2b\x21\x2f\xe8\x83\x2b\x90\xc3\x2b\ \x18\xa7\xed\xe1\xb0\x0b\xf9\x48\x35\x81\x01\x91\x24\x99\xa3\xbb\ \x82\x95\xec\x21\x74\xa2\x0c\xca\x3a\x44\x9d\xf2\xa1\x85\xb0\xb3\ \xf7\x8b\xc9\xd4\xa8\x86\x04\xa8\xc9\x93\xf8\x04\xd3\x53\x36\x4d\ \x91\x9d\x17\x11\xa8\x78\xa9\x94\xa4\xc0\xa0\xf0\xc8\x28\x30\x59\ \x85\x0c\x50\x26\x3c\x7a\x85\x06\x7c\x03\x07\x40\x81\xa9\x2c\x48\ \x12\x20\x81\x3e\x58\x87\x85\xcc\xb2\x22\x08\x43\xfe\xd1\x04\x82\ \xe4\xeb\xca\x5c\xec\x03\x59\x80\xcd\x0e\xd4\x32\x29\x21\x21\x62\ \xac\xc8\x63\xa4\x04\xf1\xba\x02\x32\x51\x86\x2b\x30\x2c\x30\xd8\ \x43\x2d\xe0\xb0\xc2\xc2\x29\x9c\x5a\x49\x2d\x38\x19\x83\x18\x88\ \x80\xe3\x24\xc5\x2a\x19\xa8\x03\x4c\xc1\x1c\x4c\x90\xd0\x06\x25\ \x10\x47\xd2\xab\x3f\x65\x3b\x3d\x17\x11\xc0\x9c\xdc\xbf\xaa\xa2\ \x8e\xb4\x73\x15\xec\xe0\x8a\x58\x79\x2e\xb9\x30\x82\xce\x74\xc0\ \xcf\x44\x3e\x03\x50\x48\x12\x58\x87\x40\xb0\x84\x75\x58\x4d\x93\ \x3a\x43\xbe\x6b\x4d\xbd\x0b\x43\x44\x30\x3e\x29\xd3\xb4\x37\xb4\ \x4d\x2f\x38\xc6\x1e\x0a\x22\xce\x90\x01\xdf\x7c\x8f\x8f\x94\x81\ \xc5\x8a\x83\x55\x98\x46\xa5\x33\x99\x00\xd9\x03\xe7\x1c\xaf\xca\ \x02\x2a\x22\xa2\x02\x45\x8c\x80\x86\x90\xce\xe9\xf4\x08\x6d\x00\ \x83\x1d\x38\x4c\xa3\x21\x03\xed\xdc\xce\xe8\x80\x42\x41\x63\x14\ \x82\xc9\x97\xf0\x18\x8a\x47\xd8\x20\x1c\xa8\x08\x2c\x09\x81\x57\ \x68\x45\x07\x74\x40\x3d\x10\x4d\x94\x83\xcf\x6d\x88\x4f\xbc\x5b\ \x07\x12\xc0\x18\x85\x5c\xc8\xd5\x44\x43\xba\xd3\xbb\xd7\xe4\xcf\ \xbd\x3b\xb7\x10\x2c\xcb\x52\x8b\x83\xbb\x84\xfe\x81\x2b\x10\xa2\ \x84\x60\x86\xb5\x60\x8c\x18\xac\xbc\x0b\x11\xa7\x82\x68\x08\x86\ \xf8\xc3\x4c\x3a\x9f\x97\x29\x99\xbc\x8c\xd0\x0d\x95\x3a\x0f\x15\ \x14\x10\x25\x82\x11\xfd\x84\x40\x80\x91\x4a\xa1\x9d\x24\x14\x0e\ \x18\x39\x8a\x1e\x8b\x0e\xdb\x71\x15\x24\x53\x8b\xba\xa8\x92\x57\ \xc0\xd1\xa9\x24\x01\x30\x14\xcd\x20\x5d\x87\x75\xc0\xbb\x40\x28\ \xb7\x36\xd4\xca\x5c\x64\xc8\x0d\x74\xc8\x14\x92\x05\x44\x58\x52\ \xbe\x4b\x21\x3e\x82\x37\x7b\xe3\xb2\x41\x3c\x3a\x6c\x58\x46\x30\ \x70\x41\x66\x58\xc6\x38\x60\x1c\xe2\xa9\xa1\x71\x1a\x90\x84\xf8\ \x43\x76\x02\x2f\x4e\x2a\xaf\x95\x0c\x4c\x6f\x54\x53\x89\x08\x94\ \xcf\xe1\x02\x6d\x58\x05\x22\x70\x05\x37\x9d\x03\x1b\xf1\x22\xa3\ \x58\x00\xdb\x49\x3b\x47\x99\x17\x27\x94\x0e\xdf\x51\x82\x53\x44\ \x45\x56\x7c\x03\x40\xcd\xd1\x84\x54\xc8\x1d\xf0\xd1\x1e\x45\xd4\ \x4d\x58\x07\x14\xd8\x9b\x34\x28\x02\x94\x5b\x4d\x5c\x0c\xc3\x86\ \xa4\xbb\x49\xad\xd4\xc1\xb3\x9b\x9c\xab\x06\x2a\x85\xb3\xe9\xaa\ \x86\x14\x24\x89\x3a\x18\x93\xc2\xa2\x82\x2b\xbd\x8f\xc4\x71\x49\ \x19\xe0\x39\x21\x92\x52\xc9\xe2\xa4\xc8\xfe\xc0\xcb\x6e\x9c\x55\ \x8f\xa8\x55\x5a\xc5\x07\x7b\x88\x81\x40\x38\xcc\x4f\x30\x81\x55\ \x70\x11\x5f\x3d\x17\x5e\x00\xc0\x07\xb2\x14\x44\x63\x0e\xa2\x54\ \x1b\x25\x80\x82\x7d\x64\x03\x06\x7c\x05\x58\x74\x4f\xf7\xd4\xd1\ \x1d\x80\x4f\xf8\x5c\x87\x1d\x38\xd4\x43\xb0\x56\xe8\x61\xd4\x71\ \x4b\x3e\xe4\xe3\x4a\x5c\xcc\xc5\x49\xdd\x00\x59\x70\x1e\xe5\xe3\ \xa3\xf6\x60\x83\x2b\xe0\xb9\x19\x8c\x03\xb8\xac\x06\xbd\x08\x03\ \x82\xb8\x3c\x35\xab\x08\x52\xad\x24\x01\x99\xd0\xc5\x62\xd5\x1c\ \x34\xaf\x0c\x65\x4b\x9d\x4a\xd3\x7f\xa5\xd5\x88\x90\x09\x29\x48\ \x03\x37\x10\xd1\x83\xe5\x94\x40\x1b\x8e\xa8\x89\x8e\x33\xca\xc9\ \xe1\xa8\x14\x75\x31\x15\x8e\xc2\x47\x7c\xa8\x86\x39\x88\x07\x03\ \x50\x5b\x07\x70\x05\x12\x90\x56\xd1\x14\x59\x43\x0d\x52\xf8\x04\ \xd2\x5e\xcc\x18\xd2\xcc\x40\x86\xcc\xc0\x86\xdc\x06\xd8\xa4\xd4\ \x14\x1a\xbc\x60\xf4\x82\xe7\x81\x02\x9c\xdd\xae\x0b\xf9\xcd\xc2\ \xca\x93\x19\x98\xae\x17\x34\x03\xf8\x18\x99\x74\xb2\xd7\x4c\x2a\ \xd3\x09\x45\x27\x81\x78\x16\x22\x1a\x08\x92\xd9\x83\x0e\xfd\x57\ \x99\x60\x87\x30\xd0\x88\xeb\xbc\xba\xfe\x2c\x42\x9d\xb0\x6d\x91\ \x05\x38\x23\xa1\x00\x5b\xb1\x0a\x00\x7c\xc8\xbd\x3a\x28\xc5\x2b\ \x20\x03\x4c\x30\x80\x2f\xdc\x86\xb6\x2d\x54\x90\x3d\xd4\x43\x0d\ \xd9\x43\x0d\x84\xbc\xd3\x18\xbe\x89\x01\x20\x90\x85\x75\xe0\x40\ \xe5\x53\xbe\xbe\xed\x5b\xd8\x94\x85\x3e\xa0\x4d\x77\x33\x35\xbb\ \xa8\x06\x6c\x60\x06\x2f\xf0\x26\xae\xc1\x08\x3d\xc1\x10\x77\xad\ \x06\x19\xfd\x2e\x55\xd5\x29\x92\xc1\x06\xe4\xf4\xbc\x1c\x54\xce\ \x83\x20\x53\xbc\x64\x10\xa8\x4d\x0d\x2e\x50\x19\x37\xd8\xd5\x83\ \x8d\x00\x17\xb1\x5f\xa9\x71\xd8\x35\x58\x03\xe1\x58\x00\x5f\x6d\ \x1a\x76\x58\x85\xb4\xc0\x87\x39\x98\x03\x7c\x88\x87\x5c\x50\x5b\ \xb5\x15\x4d\x69\x05\x59\x92\x1d\xd9\x90\xa5\x5b\xbc\x33\x80\xbd\ \xd1\x88\x34\x50\x48\xe3\x33\x48\x97\xd3\x40\xe7\x85\x4d\xbd\x73\ \xa6\x12\x2a\xc6\x0b\xb3\x0b\x71\xe2\x99\xf1\xa8\x0f\x2e\x49\x16\ \xfb\xf0\x07\x19\xfd\x30\x84\xa0\x3c\x33\xf3\xcb\x77\x5a\xbf\x1f\ \x22\x2a\x20\xd2\x29\x1e\x72\x08\xcf\x55\xd3\x5b\xc5\x07\x5f\x69\ \xd3\x83\x35\x81\x39\x50\xb6\xe1\x38\xad\x1b\xd3\x5f\xfd\x85\xb8\ \xa8\x60\x07\x6d\x80\x01\x7c\x80\xfe\x82\x01\xbe\x82\xa5\x34\x39\ \x94\xdb\x86\x06\xf6\xdd\xde\x9d\x5b\x43\x0d\xde\x4d\xd0\x03\xe9\ \x49\x03\xad\x2c\xcd\x72\xd3\xb4\x30\xbc\x84\xe6\x85\xcd\x14\x32\ \x37\x36\x28\xb5\x0b\x6b\x2e\xc2\xda\x5e\x8d\xa0\x90\x09\x99\x21\ \x44\xaa\x21\x4e\x1a\x3f\x21\x42\x90\xc9\xd8\xa4\x4a\xda\x57\xcc\ \x3d\x31\xeb\x1d\xa7\x09\xdd\x03\xf7\xa5\xce\x56\xc0\x07\xbe\x98\ \xdf\x9a\x9c\x44\x4b\xe9\x5f\x4b\x69\xd8\x71\xd0\x5f\xe1\x50\x20\ \xb0\xd0\x06\x6d\x20\x03\x03\xae\xdd\x78\xd8\xcc\x57\x40\x39\x06\ \xc6\xe2\x1d\x08\x04\xdf\x85\x5b\xba\x5d\x07\x8d\x29\x24\x84\xec\ \x4a\x29\x31\xb7\x12\xea\xdb\x4b\x70\x5e\x0e\x14\x3c\x14\x5a\x63\ \x33\xdb\x16\xfb\x40\x24\x60\x69\xac\xef\xda\x2e\x71\x4a\x1c\x4b\ \xaa\xa4\x0c\x35\xd3\xf0\x92\xac\x95\xcc\x24\x6c\x88\x80\x50\x22\ \x64\x80\x05\x51\xbe\x28\xd8\x83\xfd\x04\x85\xed\xdf\x46\x8e\x97\ \x05\x58\x03\x16\x58\x03\x5f\x35\x0b\x30\xc0\x87\x2b\x98\x83\x6a\ \x20\x83\x7d\x5c\x4a\x40\x75\x4f\xde\xc5\xe2\xf8\x14\xe5\x22\xfd\ \xd1\x6d\xb0\xdb\x84\x24\xcd\xfe\x3c\xb7\xe5\x2d\xe3\x32\xee\xe0\ \x67\x12\xbc\x62\x24\x46\x01\xfe\x3d\x3a\xf8\x68\x2c\x19\x02\x1c\ \xea\x5a\x85\x61\x29\x53\x3d\xce\x41\xbf\x14\xaf\x32\x75\xce\xf1\ \x1d\x27\x59\x25\x64\x2e\xb0\x1c\x99\xd0\x06\x1c\x90\x1e\xab\xe5\ \xd5\x68\x4e\xc2\x65\xa3\x66\x6b\xfe\x89\xb2\xe0\x28\x6d\xae\x5d\ \x32\x50\x4a\x20\x70\xd6\x51\x86\xcf\x40\x08\xe5\xf8\x0c\x65\x91\ \xae\xd6\x4d\x50\xe7\x69\x42\x4d\x1f\x65\xb9\x73\x63\xe5\x6d\x28\ \x63\xba\x73\xe5\x13\x22\xa1\x35\x9e\x46\xc3\x82\xe8\xbf\x51\x2b\ \x5b\xab\x41\x93\x74\x4e\xc9\x08\x6a\x40\xee\x21\x22\x22\x22\xc5\ \x32\x19\x98\x24\xe4\x08\x90\x89\xf4\xaa\x4e\xbf\x20\xdd\x86\x33\ \x01\x9e\xa0\x68\x60\xdd\x5f\xa1\x80\x8e\x53\x01\x8c\x52\xfc\x66\ \x03\x48\x5b\x3f\x80\x45\x94\x2e\xe7\x93\x16\xe9\xe0\xed\x82\x40\ \x28\x82\x04\x9c\x32\x95\x4d\x48\xae\x74\x37\xd7\xa4\xe9\xe8\x7b\ \xb7\x00\x6d\x3c\xec\x7d\xa1\xbf\x09\x9c\x20\x1a\x3f\x76\x32\x49\ \x82\x1e\x6a\x74\x7a\x27\xf4\x4a\x66\x88\xc8\x0c\x86\x16\x09\x5f\ \x41\x64\x37\x8d\x80\x69\xbe\xe6\x88\xa5\x66\xa1\xc0\x2d\x30\xb9\ \x58\x8c\xcd\x05\x07\x80\x4a\x12\x10\x54\xb8\x25\xd9\x1d\x70\xe0\ \xb9\x1d\x65\x44\xed\x82\xfe\x4d\x88\x81\x8d\xc0\x4a\x3f\xe0\x40\ \xd4\x24\xcb\x11\x64\xe5\xe9\x63\x6d\xea\x6b\xae\x9d\xc1\x5e\xc4\ \xc6\xeb\x3a\x58\x05\xea\x4a\x3a\xca\x4a\xac\x32\xd5\x2e\x33\x35\ \x5f\xe4\xac\x19\x1d\x1e\xcc\xf7\xe1\x02\x7c\x88\xe8\x0a\x76\xd3\ \xa8\xea\xdf\xfd\x25\x62\x3a\x0d\x8a\x54\x81\x9b\x26\x01\xe7\x06\ \xac\xca\x81\x9c\xca\xcf\xd4\x51\x91\x16\xe9\x85\x14\x4d\x93\x3d\ \x84\xd1\x2e\x24\x37\xb0\x60\xb6\x7e\x67\x0d\xa6\x59\xc2\xb3\x39\ \xc3\x13\xd0\xc2\x52\x02\x7e\x06\x19\x91\x41\xdc\xea\xea\xeb\x1e\ \x22\xe8\xdd\xd6\xae\xde\xce\x61\xe0\x1e\x4c\x2e\x60\xea\x08\xc8\ \x00\xf6\x76\x03\x3d\x70\xd3\x03\x40\xd1\xc6\xbe\x31\x3a\x7d\x47\ \x8d\x72\xc1\x78\x40\x5b\x29\xb6\xec\xcf\x74\xc5\xcc\xc6\xee\x08\ \xdf\x06\x93\x0d\x4b\xe2\x5d\x6b\xbd\xa3\x2b\x26\x25\xef\x4d\xab\ \x9b\xf6\x80\x82\xbb\x80\x0f\xff\xfe\x95\x60\x99\x41\x5d\x4b\x2c\ \x1d\x34\xd3\xdc\xf4\xbc\xde\x96\xa7\xc1\x8e\x88\x0e\x30\x0d\x6d\ \xc0\x16\xf9\x68\xe6\x83\xfd\xda\x46\x66\x64\xfd\x5d\x1b\x8e\x52\ \x82\x01\xee\x03\x04\x9e\xc0\xea\x76\x45\xeb\x8e\x70\xec\x4e\xc8\ \x6a\x3d\x00\xbf\x4b\xfe\x48\x95\x8d\x26\x73\x83\x48\x26\x3d\x29\ \x8c\xc1\x92\x8e\x09\x21\x11\x07\x19\xae\xf1\x02\x5d\x53\xd7\x21\ \x2a\xa2\xf2\xa5\x6f\x87\x50\x3c\xcf\x63\x10\xfc\x9e\x3a\x59\x4d\ \x2f\xfd\xc6\x81\x2e\xb9\x5a\x45\x9e\x03\xe1\x20\x70\x4b\xa9\x66\ \x02\xdb\x8a\xb4\x98\x6c\x29\x56\xe0\xea\xfe\x83\x81\xfc\x4c\xb8\ \xbd\x6e\x91\xa6\x2b\x12\xd8\x84\xd0\x3e\x80\x5e\x2c\x02\xb6\x9e\ \xab\x99\x1d\xef\x4f\xbb\xab\x68\xca\x12\xbf\xba\xb4\xeb\xe9\x0b\ \x7b\x48\x8b\xf7\xf6\x07\x5d\x63\xc9\x4a\xe2\x39\x1e\xd2\x82\x84\ \x40\xce\x4d\x6f\x5f\xa8\x85\x71\x5a\x65\x6a\x2e\xc8\x00\x2f\x89\ \xea\x63\x4b\xd8\xc7\x2e\x62\x48\xe6\x8a\x47\x28\x8f\x0c\xf8\x71\ \x07\x48\x60\x12\x70\x05\x14\xb0\xf5\x3f\xb0\x75\xeb\x9e\x4a\x68\ \x85\x5b\xe4\x33\x29\x12\x08\x84\xd0\x56\x67\xbe\x29\xf4\x40\xe8\ \x83\xe1\xda\x70\x0d\x16\xbc\x29\xa9\x8b\xb5\xe0\x04\x48\x1f\x0d\ \xb5\x20\xce\xf2\x29\xc9\x1a\x7c\x4e\xcb\x85\x81\x4e\x6f\x08\x19\ \x70\x3f\x85\x9e\x55\x6d\xa0\x55\x6d\x88\x00\x36\xed\x92\x44\x8e\ \xc4\xa8\xb2\x85\x48\x3e\xad\x38\x87\xc7\xdc\x6b\xa4\x8b\x8d\x40\ \x59\x37\x80\x06\xfe\x47\x81\x3c\x2f\x82\x3c\xd7\xf5\x3e\xc7\xec\ \x92\x12\x52\x3d\x98\xf0\x4d\x08\x84\x37\xe0\x1b\x3f\x58\x07\xe3\ \xdb\x3b\x0d\x74\x39\xd5\xe6\x23\xba\x99\x8b\xf7\xc8\x0b\x68\x6f\ \xac\xfb\xb8\xb5\xc4\x39\x31\xcd\xf5\xa1\x86\xe8\x21\xf3\x4d\xea\ \x05\x99\x93\xcf\xf2\x76\xd0\x69\x2f\xe1\xee\x02\x2e\x00\x03\x2f\ \x49\x83\x53\xf7\xb3\x4f\xc8\x00\x02\x5b\x83\x88\x25\xcf\x71\x98\ \x34\x8d\x20\x02\x28\x20\x83\xba\xbb\xdd\x79\x77\xf0\x7a\xcf\x73\ \x7c\xdf\x75\x41\x35\x48\xcc\x16\x4d\xe4\xdb\x62\x4b\xd8\x06\x7f\ \x0f\x04\x59\x00\x43\xae\x3c\xc3\x34\x4c\xed\x5d\x74\x8f\xf7\x80\ \x29\xd9\xfe\x1b\x1a\xc2\x6d\xf4\x65\xbf\xf4\x31\xaa\x1e\xec\xdc\ \x6e\x27\xf3\x8f\x80\xf1\x7d\x92\xc9\x5b\x65\x6a\x8f\x28\x75\x2f\ \x31\xf7\x71\x4c\x80\xe0\x08\x32\x02\xb3\x05\xf0\xc8\x93\xc3\x89\ \x07\x32\x98\x83\x04\xee\x07\xb6\xcd\x75\x57\xfc\x03\x7c\xd7\xf3\ \xa9\xd4\x51\x83\x44\x3e\x5a\xa4\xdb\x88\x20\xc3\x4d\x20\xfa\xd5\ \x64\x65\x0c\x74\xcd\xf2\x6e\x9e\x28\x81\x12\x87\xc7\x26\x88\xa7\ \x21\x1a\xdc\xd7\xa2\x6a\x93\xcb\x80\x93\x3b\xe4\xd0\x06\xe9\x7a\ \x8f\x80\x71\xfe\x46\xc4\x1f\xd3\x30\x83\x4a\x96\x88\xa7\xf6\x92\ \x1a\x57\xe4\x55\x18\xc0\x71\x40\x9b\xab\x20\x1e\x5e\xb9\x58\x0f\ \x49\xdb\x09\xcc\x5d\x21\xaf\xf7\x57\xb4\x7d\x22\x37\xc8\x3e\xa7\ \xc5\x6d\x08\xf4\xd0\xb2\x40\xfd\xd4\xc0\xd6\xdc\xdb\x0c\x94\x92\ \x54\x4c\x26\x5e\x69\xac\xe2\x0e\x99\xf1\x10\x96\x13\x47\x08\xcb\ \x3f\x2f\x3a\x59\x88\x53\x78\xf1\xcd\x97\x88\x0e\xd0\x86\x87\xa0\ \xba\x71\xd7\x86\x2b\x00\xf7\x88\xd0\x06\xd1\xfd\x95\x1d\x40\x79\ \x1a\xeb\x87\x24\x0c\x8e\x0d\xba\x0a\xb5\x38\x45\x02\x3e\x00\xb5\ \x15\xbe\x09\x74\x05\xa8\x84\xca\x9c\xb7\x75\xea\xee\xfb\x08\x07\ \x6d\xdf\x57\xe9\xd1\x5c\x48\x9a\x06\x88\x6d\xb2\xb6\x6d\xeb\xd3\ \x07\x08\x42\x20\x7e\xfc\xbc\xf1\x03\x25\x0c\x91\x88\x75\xa0\x80\ \x99\xe1\xe6\x22\xc6\x8c\x19\x67\x28\x01\x03\x06\x4a\x1d\x25\xfe\ \xaa\x31\x83\x61\x86\x8a\x8c\x94\xca\x56\xae\xdc\xa3\xac\x03\xcc\ \x0e\x5d\x66\x76\x91\x49\xf3\x26\xce\x9c\x33\x3b\x44\xe0\xa2\xf3\ \x27\x4d\x2e\x11\x22\x48\x89\x70\x93\x1d\x11\x8d\x4a\x2f\x7e\xfa\ \xe7\xf4\x29\xd4\xa8\x52\xa7\x52\x85\x6a\x02\xdf\xa3\x71\xe3\x1e\ \xd9\xaa\xfe\xc3\xc9\x16\x8e\x55\xf8\x32\xc4\x9b\x63\x69\xce\xb6\ \x7e\x06\xd4\xf6\x73\xe0\x4a\x0f\x0a\x14\x70\xf5\xc0\x8d\x2b\x97\ \x6e\x91\x22\x24\xf6\xf2\x25\xb1\x6e\xd3\xcd\x4d\xeb\xfa\x18\x28\ \x48\x50\xe0\x61\x83\x07\x15\xbe\x69\x1c\x22\x4d\x52\x37\x75\xbc\ \xf8\xc3\x61\x6f\x29\x46\x7b\x91\x39\x81\xf1\xe7\x59\xc9\x44\xcf\ \x24\xcd\x9c\x94\xa1\xcc\xf4\x4a\x19\xa7\x5e\xda\x04\xea\x3a\x27\ \x97\x0e\x3e\x5f\xe7\xd4\x16\x81\xdd\x15\x6d\x37\xe3\x61\x56\xea\ \xaa\x2a\xf0\xe0\xc0\x3f\x6d\x63\x51\x07\xac\xad\xae\x60\xc1\xe0\ \x8b\x57\xd6\xd2\xd9\xb4\x69\x0d\x50\xa7\x7b\x57\xcf\x5b\xba\xd6\ \xf5\x14\x41\xa1\xb7\x2f\x09\x03\x96\x70\x0e\xde\x06\xc4\x30\x41\ \xc5\x06\x11\xe6\xcd\x0b\xf9\xe2\x8c\x10\x9d\xc1\x84\x81\x7f\xd9\ \x0d\x91\xfb\x75\xea\xe0\xa8\x63\x6f\x06\x0e\x71\x90\xe4\x05\x0e\ \x4a\xac\xb2\xca\x48\x25\xc1\x80\x52\x6a\xa7\xc9\x10\x41\x0b\x30\ \xd1\x36\x21\x4f\x11\xb4\x36\xe1\x4c\x42\x5d\xc1\x8e\x85\x19\x66\ \xd0\x9b\x46\x69\x34\x25\x1c\x89\x25\x9a\x80\x82\x3d\x9c\x70\xe2\ \xd5\x71\x4a\x90\x15\xcf\x3c\xdb\x88\x72\xc0\x01\x73\xa8\xb5\x0d\ \x75\xfe\x06\xb8\xf2\x0a\x0a\xaf\xbc\xa2\x87\x03\x06\x90\xa0\x9d\ \x5c\xde\xc9\x05\x9e\x5f\x87\xd0\xb4\xc9\x01\xe7\x01\x51\xd8\x7a\ \x09\x25\x44\x42\x11\x31\xc4\xf0\x1e\x11\x61\xbc\xe1\x05\x14\x0f\ \xc1\xa7\x44\x7d\x92\x85\x89\x83\x67\x95\x85\x21\x12\x33\xd8\x30\ \xe3\x51\x67\x08\xa6\xc2\x0c\x9c\x28\xa5\x34\xa7\x0c\x12\x62\xf8\ \x5a\x85\x46\xdd\xd9\x05\x17\x42\x69\x93\xdb\x4d\x1f\x82\x98\xd1\ \x6f\x25\x1a\x3a\x5c\x02\x6e\xd8\xb3\x68\x8a\x75\x80\x41\x16\x19\ \x7d\xcc\x71\x40\x04\x07\xf4\xb3\xcd\x3c\x6a\x55\xe7\x63\x8f\x0e\ \x38\x40\xc2\x2b\x43\x16\xa9\x1d\x5d\x48\x06\xb2\x09\xaa\x9b\x24\ \x06\x04\x61\x7d\x90\xb0\x18\x42\x54\x5e\x19\x11\x11\x69\xc4\x00\ \x05\x1b\x50\x84\x30\x43\x52\x33\x80\xb1\x4a\x1d\xf8\x81\xa1\x84\ \xa2\x60\x90\x54\x4d\x35\xc3\x8e\x44\xc5\x1e\x6b\x96\xe9\x4f\x1c\ \xa9\x8c\x66\x86\x0c\x72\x72\xc1\xda\x85\x7b\xe2\xc4\xd3\x1c\x7a\ \xee\xd9\x67\x04\xda\x5c\x48\xc6\xa0\x19\xa5\x11\xc8\xa1\xe9\x4e\ \xf5\x49\x7e\x8b\xba\x31\x43\x18\x50\x38\x47\xc6\x3c\x34\x5a\x52\ \xe3\xa5\x9a\x1a\xf0\xa3\x8f\x3f\x52\x97\xdd\x75\xa4\xee\xb5\xce\ \xfe\x3a\xdb\xec\xb0\x8d\x25\x9b\xdc\x7b\x58\x61\x08\x99\x67\x1e\ \x10\x24\xf8\x51\x25\x64\x11\xc5\xd0\x98\x43\x21\x44\x46\x04\x14\ \xd5\x78\x11\x6c\x1d\xc9\xda\x13\x06\x18\x26\x61\x83\x0d\x0c\x9e\ \xc5\x01\x43\xb5\x71\x40\x1b\x2d\xb4\xd2\x4e\x4b\xad\x69\x36\x65\ \xab\xed\x4e\x43\xcd\x76\x67\x6c\x7e\xe2\x24\x68\xb9\x17\xed\x30\ \xa2\xba\x45\xff\x63\x80\xbb\xf8\x85\x90\x01\x59\x7d\x90\x61\x56\ \x04\x0b\xe7\x6b\x80\x03\x3d\x76\xfa\xca\xa7\xdb\x69\x37\x64\xa9\ \x24\xec\x40\x30\xc1\x81\x5c\x8a\xa3\x01\xad\x96\xfd\x2a\xda\x79\ \xcd\x9a\x46\x1a\x79\x31\xf4\xc6\x7b\xf0\x79\x51\x8d\x3f\x75\x10\ \x51\x72\xdd\x22\xc9\x29\xc3\x1e\x30\x54\xb3\xb2\x4b\x32\xc0\xc0\ \x0c\xcc\xd1\x56\x93\xca\x9b\xcc\x94\x16\x13\xce\x40\xc5\xd6\x38\ \xb8\x7d\xde\xf4\x46\xd0\x19\x11\x6d\x74\xba\x9f\xbc\x31\x03\xe7\ \x1c\x41\x61\x44\x3c\xb9\xcc\x31\x29\x8d\x96\xf6\x13\xe3\xbe\xaf\ \xfc\x11\x17\xbf\x3e\x62\xf7\x7a\x76\x5d\x6f\x53\x70\xc1\x97\xae\ \x73\xb6\x94\xe6\x91\x10\xf1\xc4\x56\xda\x1a\x83\xdb\x8d\xc5\x7d\ \x51\x08\x5e\x60\xe2\x85\x12\x33\xa4\xb2\x47\x35\x38\x80\x11\xfe\ \x87\x4b\x2c\x55\x3b\xb8\x16\xca\xb4\xa0\x0c\x15\x84\xc7\x21\x20\ \x9c\xdd\x93\x56\x73\xe3\x40\xdd\xcc\x73\x4f\xad\x59\x42\x6c\xe5\ \x17\x15\x8a\x79\xe6\xfd\x3c\x14\x42\x08\x5d\xbe\x01\xfa\x36\x35\ \x96\x4e\x10\x5b\x3c\xb2\xde\x23\x90\x6e\x91\x2a\xb0\xd7\x0c\xb6\ \x8e\x7e\x14\xec\x60\x38\xf2\x94\x1f\x1c\xe0\x87\xdd\x45\x4c\x6d\ \x56\x02\x5e\xf0\x66\x65\x2e\x5c\x71\x09\x0a\x4a\xc0\x86\x32\x60\ \x00\x86\xb9\xc9\xa0\x05\x1e\xfc\xa0\x16\x4e\xd6\xc1\x0e\x5c\x8f\ \x19\xd2\x52\x9c\x19\x06\xc7\x8c\x6a\xc0\x00\x83\xe3\x0b\x9f\x6c\ \xc2\xc7\x27\x9f\x70\x41\x14\x33\x99\x43\x98\xd2\x27\x22\xf6\xa9\ \xeb\x13\xb9\x82\x02\x59\x72\x91\x01\x07\x88\xce\x46\xf5\xeb\x47\ \x3f\x72\xb1\x16\xea\xf0\xe8\x0f\xaa\x43\x81\x03\xf4\xc0\x2f\x52\ \xbd\x65\x2f\x85\xf9\x9a\xc1\x70\x24\x1d\x03\x44\x4c\x81\x12\xe3\ \x8e\x03\xdb\x53\x84\x85\x50\x2c\x32\x17\x21\x42\x08\xde\x00\x05\ \x35\x16\x6f\x0f\x2d\xc0\xc6\xf6\x98\xd1\xc1\x0f\x7e\x50\x19\x7b\ \xa8\xd3\x4c\x94\x41\x38\xc5\x51\x81\x34\xdd\x4b\xd3\x4b\x64\x98\ \x13\x3b\x41\x2e\x6a\x3b\x9b\x83\x19\xd3\xb7\x3e\x1e\x96\xfe\xe8\ \x13\x81\x60\x5a\x59\xe6\x10\x3a\x25\xce\x21\x53\xf5\xc3\xd1\xa5\ \x98\xf8\x44\x1e\xf9\x28\x8a\xb0\xa3\x8b\x2b\xc2\x73\x30\x03\x8c\ \x32\x47\x38\x0a\x0f\x10\x1c\x90\xca\x89\x55\xc9\x4a\x6e\x23\x63\ \x19\x43\xe4\x98\x18\x84\x21\x06\x6c\x38\x45\x0b\x64\x40\x12\x18\ \x58\xef\x83\x5d\x68\xc1\x2f\x5b\x80\x4b\x60\xca\x60\x8f\x7c\x4c\ \x21\x0c\xa8\xc7\x9a\x9a\xbc\xf0\x5b\x82\xec\x93\x25\x7c\xb2\x89\ \x78\x24\xb2\x72\xe7\x62\xe4\xa1\x3e\xe1\x80\x0c\x60\x62\x74\x7d\ \xc8\x05\xa6\x30\x55\x3a\x24\x22\x71\x1e\x4c\x44\x01\x29\xde\xa0\ \xbf\x29\xfe\x28\x94\xa1\x0c\x8f\xd7\xa8\xb3\x83\x88\x81\x27\x48\ \x40\x00\xa3\x2b\x5f\x29\x31\xf7\x54\xb3\x56\x6f\x28\x63\x1a\xbc\ \x80\xcb\x53\x24\xb3\x7a\xc0\x3c\x28\x4d\x22\x04\x93\x16\x24\xd3\ \x0c\xdd\xa3\x02\x44\x4f\xd6\xc2\x53\xc4\x84\x90\x82\xbc\x68\x17\ \xf4\x24\x8a\x10\xa4\x4f\x23\x43\xc3\xa6\xa1\x02\xf1\x06\x32\x6c\ \x83\x0c\x06\xa8\x64\x3f\x6c\x54\xaf\x71\x22\x91\x3a\xb9\xe0\xa4\ \x13\xab\x36\x45\x57\x04\x29\x47\xe0\x11\x92\x90\xe6\xa2\xca\x21\ \x85\x71\x8c\x0b\x84\xe5\xf0\x30\x42\x04\xe0\x3d\x26\xfe\x29\x69\ \xb8\xe5\x06\x4e\x71\x05\x4a\xb8\x11\x98\x3f\x21\x61\x1c\xc0\x40\ \x85\x2e\xc8\x20\x15\x71\x30\xc3\x69\xf6\xb0\x87\x10\x76\x08\xa3\ \x34\x69\xe6\x9d\xc6\xd3\x85\x03\x54\xb3\xa3\x97\x03\xe9\x70\x4e\ \x1a\x0f\x22\x9e\xb4\x1f\xf8\x2a\x1d\x8d\xa6\x96\xba\x1e\xf1\xa8\ \x6a\x51\x0c\x15\x4e\xe1\x99\x1d\xbe\xe0\xe5\x3a\x7e\xf0\x4e\x95\ \xf2\x22\x31\x06\xaa\x2d\xa8\x17\xf9\x1d\xdb\x92\x42\x04\x36\x50\ \xe2\x14\x94\xc0\x04\x26\xb4\xe0\x54\xa0\x28\x03\x0a\x33\x80\x41\ \x4d\xe8\x26\x47\x3b\x2a\x23\x02\x5a\xc0\xa3\x57\xf9\x04\xd6\x09\ \x89\xc2\x27\x96\x00\x5a\x47\x31\xb2\x48\xb4\x56\xe5\x13\xf7\x22\ \x03\x1b\x94\x28\xba\x7b\xc1\x75\x9c\xb9\x50\x4b\xbf\x5e\xa1\x4e\ \xac\xf1\xd6\x15\xd4\x09\x0f\xc0\x02\x56\x97\xb8\x88\x31\x2f\x7a\ \x58\x60\xac\x58\x69\x58\xfc\xb0\x2d\xb1\x8a\xf5\x03\x25\x28\x71\ \x09\x2f\xb0\xe1\x0a\xb8\x74\xcd\x1e\x88\x05\x86\x3a\x5d\xa1\x33\ \xd8\x88\xc0\x77\xb5\x20\xde\x53\x84\x36\xa3\xde\xba\xe8\x1c\xd2\ \x90\xda\x10\x9d\x95\xb5\xeb\xea\x07\x1b\x5e\x91\x8b\x78\xa4\x65\ \x9c\xa4\x33\x1d\xd9\x0c\xf0\x52\x4e\x61\xad\x53\xfe\x42\x72\xc5\ \x5b\xec\x22\xe0\xba\x14\xf7\x0f\x79\xf1\xce\x60\x79\xe7\x1e\xc3\ \xd6\xaa\xb9\x11\x39\x2c\x14\x30\x71\x09\x4c\xf4\x81\x0d\x90\x6d\ \x6c\x84\x74\xa2\x0c\x30\x44\x04\x0c\x57\x80\x81\x17\xe6\x56\x8d\ \x2b\x7c\xf7\x14\x5d\x0d\xad\x50\x9e\xd9\x05\x4b\xf0\x66\xbd\x1a\ \x59\xad\x7b\xa5\xf2\x09\x13\xcc\xcf\x01\xf2\x2d\x9d\x8d\xdc\x6a\ \x29\x4b\x65\x2a\x47\xfc\x75\x62\x3b\x77\x34\x5c\xbb\x74\xa7\xc8\ \x06\xfe\xc3\x03\x03\x4b\x17\xde\x51\xa9\xb0\xfd\xb4\x95\x73\xcf\ \x18\x03\x3f\x18\x84\x0d\x16\xee\x83\xf1\xa2\x4b\x5e\x9d\x5c\xa1\ \x3e\x33\xf0\x02\x36\xae\xb0\x3d\xe3\x75\xa8\x03\x5b\x0e\xdf\xce\ \x68\xd2\x13\x9c\xed\x4c\x14\x73\xb0\x88\x8b\xcd\x85\xae\x18\xb7\ \x56\xbf\x44\xcc\x14\x8e\x75\x8c\x44\x4c\x2e\xd1\x47\x6f\x20\x85\ \xd5\x86\xbc\xba\xb8\x1c\xf9\x0f\x86\x46\xf2\x03\x81\x67\xe0\xe3\ \xee\xc5\x0f\x60\xa4\x58\x50\x1b\x1c\x65\x8c\x4c\xd9\xca\x6c\xf0\ \x83\x95\x25\x7c\x8a\x4d\x3f\x95\xc3\x5f\xbe\x42\x04\xae\x70\x85\ \x10\x5f\x61\x03\x34\x31\x75\xf8\x4e\x3c\x93\x35\x43\xae\x0b\xda\ \xc8\x61\x9c\x31\xf2\x51\x3a\x53\xc5\x04\xaf\xfe\x30\x02\x75\xee\ \x1b\x57\x96\x1a\xc0\x9c\x4c\x04\xb4\xea\x5e\x41\x0a\x3d\x00\x7a\ \x75\x86\x46\xc1\xea\x12\x9d\xe8\xc0\x76\x27\x81\x09\x7c\xb4\xef\ \x1e\x7c\x46\x49\x4b\x5b\xca\x98\x06\xc2\x3f\x1b\xc2\x86\x4b\x74\ \x20\xa9\x40\xb9\x82\xae\xbc\x20\xea\x6e\x61\x82\x0d\x5e\x38\xef\ \x4c\x50\xad\xad\x34\xaf\x5a\x90\x73\xb8\x40\xac\x95\xb2\x03\x5a\ \xd7\x3a\x75\xb7\xad\x2d\x5c\xc9\x49\xb6\x97\x22\x3b\x2e\x80\x2e\ \x36\x3a\x91\x6d\xe8\x22\x20\xd9\xd0\x0f\x44\x72\x77\xe4\xe2\x68\ \xbc\x38\x30\xb1\x19\x89\x88\x83\x13\x39\xd4\x85\x34\xa6\x08\x18\ \xc3\x44\x04\x1c\x7b\x66\x9c\x50\xc2\x82\x11\xae\x06\xc6\x31\x01\ \x05\x3f\x5c\x01\x11\xe5\xbd\x09\x4f\xd0\x3c\x07\xd4\xc6\xfb\x22\ \x7f\xa0\xf7\xba\x12\xe0\x44\x25\x92\x13\xdf\x71\xf5\x75\xea\xfe\ \x40\x8a\xd5\x15\x1b\xd0\xfd\x4e\x76\xc1\x09\xee\x1d\x03\xc7\xe5\ \xd9\x0c\x61\xb8\xef\xe2\x46\xab\x5a\xd1\x4a\x29\x6d\x2b\x2e\xf0\ \xd8\xb0\x0d\x4a\x80\xda\x12\x43\x59\xf5\x50\x28\x91\x81\x30\x84\ \x20\x1e\x6c\xa0\xef\x1c\x72\x85\x89\x2b\x58\x42\xdd\xa1\xe5\x09\ \xbb\x31\xc4\x05\x32\x94\xb5\xe5\xf3\x86\xfe\x79\x54\x3e\x91\x23\ \xea\x64\x4a\xc7\x34\xc2\x33\x39\x7f\x2d\xf0\x43\xf3\xfc\xd0\x7b\ \x3f\xb6\x80\xa3\xe8\xa9\xb9\xa0\x60\x62\xde\xb9\x52\xc5\xf0\x43\ \x2b\xe7\x3e\xb9\x3d\x88\x67\x1b\x95\x0d\x32\x07\xaa\x5f\xc2\x42\ \x11\xf0\x42\x1c\x2e\x1f\x82\x78\xe5\x8a\x0d\x7d\x88\x87\xa4\xfa\ \x10\x07\x4a\x9c\xbc\xdd\xe1\x33\x42\xcb\x97\xf2\x87\xf6\xd2\x7b\ \xc6\xaf\x58\x22\x39\xdd\x5a\xaf\xd3\xb9\xb5\xa5\xbf\xe6\x3b\xee\ \xf9\xde\xef\x22\x79\xaa\xf7\x55\x73\xf4\x1b\x88\xbb\xe0\x07\x43\ \xbc\xc1\x4d\xd7\x48\xad\x1a\x5e\x2b\xe0\x61\xda\xc2\x61\x8f\x07\ \x25\x36\x71\x79\x4c\x08\x05\x13\xf1\x53\xa3\x1f\x32\xd0\x87\x6e\ \x96\x3b\x1e\x62\x2d\x2f\xba\xef\x84\xc8\xd4\x2f\x25\x01\x70\x8f\ \xfb\x0e\xd6\x12\x7b\x24\x9a\x2e\xf6\x4b\x54\xa2\xb0\x0f\x2d\x07\ \x43\xcf\xdf\xef\x71\xe9\x1f\x5b\x73\xe1\xa9\xc2\x13\xb9\xc8\xd1\ \x5e\x3c\x94\x39\x9c\x52\x2c\x5f\x19\x59\x4c\x5e\x68\x9b\x62\xcc\ \xc1\x06\xfc\xc9\x1c\xd0\x44\xd8\x31\x44\x08\x14\x81\x03\xf4\xc1\ \x36\x44\xc0\x1c\x60\xdc\x45\xdd\x4c\xf8\xdd\x44\xda\x65\x14\x2e\ \x90\xdf\x52\x10\x01\xeb\xd1\x9b\x09\xfe\xec\xc0\x0e\xf4\x43\x02\ \xf4\xc3\x09\x9a\x4e\xdd\x59\x8a\x7e\xf9\x18\xee\xc9\xc1\xfc\xd5\ \x9f\xcf\xd5\xd5\xdc\x11\x46\xd5\x40\x11\x60\x19\xd8\x03\x11\x1f\ \xdb\x24\x5d\xb5\x3d\x5c\xdb\xcc\x8a\x62\xe5\x93\x04\xfa\xc1\x5a\ \x75\x13\x25\x5c\xdd\x4c\x58\x02\x97\x60\x4c\x90\x50\x82\xd5\x4d\ \x5e\x34\x6d\xe0\x84\xa8\x5a\x46\xd1\x86\xe4\x38\x20\xac\x81\xa0\ \xac\x9d\x1f\x54\x7c\x02\x12\x25\x40\x0a\xb2\x5f\xfb\xd5\x9e\xbe\ \xec\x0b\x29\xec\x1c\xfd\x15\x9c\xa1\xe9\x0f\x14\x61\x4d\xd9\x30\ \x51\x0e\x06\x1f\xc1\x25\x1a\xe3\x41\xd9\xff\x85\x20\x62\x61\xc9\ \xef\xb8\x0d\x1b\x38\x80\x95\x51\x60\xb7\xd0\x84\x13\x2e\x44\x20\ \x52\xe0\x78\xa8\x9b\x05\x5a\x21\x9e\xa0\x9b\x23\x06\x05\x4e\x68\ \x03\x14\x78\xa1\x52\xbc\x1c\x18\x3a\xc5\x8c\xed\x00\x19\x9e\x20\ \x1a\xd2\x5e\x5c\x2d\x91\x7e\xa9\x0e\x1b\x1e\x5a\x0d\x42\x91\x14\ \xd5\x14\x1d\x0a\x18\x0f\x26\x5d\xc5\x34\xd7\x03\x4d\x1a\xf2\xfd\ \x60\xe2\xd1\x0a\x04\x59\x1c\xc5\x21\xe1\x12\xde\xc4\x36\x80\xde\ \x36\xa0\x05\x74\xe4\x44\x24\xba\xc6\xcd\x8c\xd6\x24\x76\x0b\x19\ \xa0\x8f\x25\xaa\x56\x26\x6a\xe2\xfe\x21\x24\xc0\x09\x96\xe1\xfa\ \xa1\xa1\x28\xfa\xc8\xce\xb1\x21\x27\xb5\x8e\xbf\x50\x47\xef\xa1\ \xc0\x1b\xac\x4e\x95\x20\x5a\xc5\x48\xda\x0f\xfe\x5f\x59\x41\x1c\ \xe2\x49\x1b\x3a\x02\x0f\xf0\x60\x8c\xa4\x90\x9e\x21\xa2\x45\xa5\ \x44\xd3\xc9\x19\xa3\x4e\xcc\x06\x17\xcc\x81\x6e\x74\x01\x0e\x2d\ \x23\x46\xac\x5e\x33\xce\x58\x0a\x7a\x22\x12\xa5\xdf\x34\x9a\x93\ \xa6\xe4\x56\xbf\xf4\xc8\x8e\x60\x8d\x8d\x51\x0d\xd5\xc0\x05\xdf\ \xe1\xe1\xd2\x91\x23\x10\x06\xe1\x19\xd1\xe2\xf0\xac\xa3\xad\x8c\ \x51\x43\xc4\xc3\x25\x54\xe0\x4d\x58\x9d\xd5\x01\x86\xda\x95\x5e\ \x50\x68\x83\x36\x6c\x21\x4d\x90\x81\x7a\xf9\xa3\x1b\x98\x5f\x40\ \x96\xe0\x34\xb6\x14\x5b\xe4\xdd\x0b\xa6\x8e\x11\xa0\xc0\x4b\xcd\ \x9d\x4f\xde\xd5\xde\x51\xa4\x0f\x96\x63\x1f\x1e\xdf\xb4\xd1\x62\ \x10\x2e\x9d\xad\x34\x04\xa6\x7d\x9e\xa4\x98\x5d\x17\x98\xa4\xda\ \x75\x20\x46\x71\x01\x3b\xc0\x80\x6d\xe8\x84\x11\xb4\x5d\xbc\x0d\ \xd5\xdb\x35\xa3\x09\x8c\xe1\x01\x48\xe3\x09\xc2\x9e\xfa\xb1\x85\ \x12\xf9\xa4\x5a\xda\x94\xfe\x18\x9c\x38\xd6\x62\x83\xc5\x62\x73\ \x8d\xe3\xc3\xc5\x65\xa4\x11\xfe\xdf\x50\x59\xdc\x1b\x08\xa2\x01\ \x74\xd3\xf7\x41\x0e\x55\x4e\x48\x9a\xb1\xa4\x6d\xa8\x64\x07\x6a\ \x43\x2c\xec\x0a\x08\xa2\xc0\xd0\x8c\x60\xeb\x91\xe1\x58\x8e\x25\ \x39\x95\xa5\x27\xde\x96\x59\x26\xd1\x5a\x80\xd3\x12\xf9\x56\x78\ \x18\x40\x5d\x1c\x99\x2b\xaa\xe3\xf2\xe1\x61\x3a\x26\xa5\x5d\x62\ \xa4\x62\x11\x20\xa6\x81\x9e\x59\xa0\xa4\x4e\xa4\xdc\x6b\xb0\x5a\ \x9f\xf4\x4c\x07\x96\x96\x28\x90\x01\x47\xc5\x5b\x1a\x24\xc0\x27\ \x38\x26\xdc\x99\x40\x02\x3c\x23\x19\xaa\x60\x41\xc2\xde\xfa\x19\ \xe7\x74\x68\x8a\x5b\x6c\x4a\x50\xc6\x80\x1c\x30\x1e\x7e\x28\x9e\ \xb2\x69\x64\x3f\x59\x0c\x11\x6e\x8c\x50\xfd\xa0\x04\xb2\xc1\x49\ \x41\xa5\x6b\xd6\x84\x15\xee\x4c\x8a\x45\x0e\x07\xf2\xc9\x4d\x94\ \xd6\x4c\x68\x43\x06\xc0\x59\x6a\xfd\xc1\xac\x35\xa3\x8c\x1d\x42\ \x64\x0e\x24\x71\x12\xe4\x59\x9e\xe5\x71\xfe\xcb\xbe\xec\x8b\x5d\ \x80\x26\x74\x2a\xa5\x2b\xb9\x62\xe2\x21\x9f\x5c\x56\xa7\xa4\xbd\ \x01\x21\xfe\x25\x9a\x61\x48\x78\xf2\x49\xb8\x80\xcb\x4a\xc2\x86\ \x0d\x65\x88\x3e\xda\x50\x0d\xf5\x63\xfa\x30\xa6\x09\xf8\x66\x26\ \x0a\x24\x19\x7e\x28\x0a\xfe\xae\x1f\x41\xaa\xe0\x3c\x8c\xa8\xed\ \xe5\x48\x80\x09\x5c\x81\x56\xe4\x3a\xbe\x25\x5d\x0a\x21\x3b\x0a\ \xa0\x50\xc5\xa5\x1e\x18\x00\xa5\x48\xe5\xa9\xb1\x59\x60\x0a\x66\ \xb8\x14\x26\x17\x68\x03\x15\x50\x25\x7a\x5a\xa5\x3e\x46\x68\x17\ \x88\x82\x65\x95\xcb\x6e\xf6\x26\x7c\x06\xc7\x8c\x11\x67\x0a\x42\ \x26\x88\x4e\x66\x4d\xd6\xa7\x4f\x02\x98\xb1\x19\x5c\xc4\x01\x20\ \xdb\x1c\x5a\x69\x0e\xe0\xef\xec\x61\x74\x12\xa0\x1e\xd4\x4f\x30\ \x7e\x27\x9b\xa9\xa4\x61\xd2\xd0\x84\x68\x03\x3b\x18\xe6\x79\x42\ \x01\x57\xfe\xc1\x3a\x70\x68\x93\x3e\x45\x09\x46\xe3\x87\x1e\x42\ \x88\x42\x63\x95\x96\xe1\x09\x1a\x8c\x5a\xa4\x9f\x8e\x10\x5a\xc1\ \xb1\xcd\x05\x28\xa5\x1e\xc6\x80\x38\x9a\x91\xa3\xc6\xe5\x45\xda\ \x62\x0c\xe8\x01\x09\x20\x0c\x8e\xe6\xc4\xa5\x9e\xdd\x4f\xcc\xa6\ \x9a\xb2\xa4\x60\xaa\xa4\x79\x9e\x27\x3e\x28\xa3\xcb\xed\xc0\x86\ \xde\x69\x23\x99\x20\x27\x42\xe6\x33\x8e\x65\x94\x9a\xa0\x0a\x4e\ \x29\x65\xae\xc5\xc1\xec\x00\x80\xb9\x82\xa1\x3a\xa7\x73\x35\x97\ \x1c\x30\xaa\x95\x20\x99\x8c\xce\x22\x51\xce\x25\xf0\xd4\x68\xfd\ \x1c\x40\xc2\x94\x97\xfe\xa7\x6e\x2a\x55\xaa\xe9\x4a\x2e\xab\x16\ \x6a\x43\x69\xcd\x26\x4e\x70\x41\x06\x18\x15\x6f\xda\x29\xaa\x5a\ \x05\x29\xe9\xa9\xab\x8e\xa5\x7c\xd2\x67\x7d\x42\x23\xac\x7a\x62\ \xfa\x01\x98\xcf\xb1\xe1\xe3\x5d\x40\x1a\xf4\x2a\xa3\xfe\x41\xaf\ \x46\xdc\xb4\xcd\x68\x39\xfa\xaa\xdf\xb9\xc2\xd7\x1c\x40\x20\x94\ \xce\x99\xa2\x8a\x0c\x31\xe1\xb6\x60\x88\x6d\x40\x2b\x6c\xe8\x84\ \x28\xac\x29\x50\xcc\x43\x20\x68\xeb\xb6\xc6\x1d\xb9\x9a\xe0\x87\ \x46\x6c\xb8\x8e\xa5\xaa\xc2\xea\xbf\x54\xac\x8e\xa0\x2b\x3a\x19\ \x5a\xbb\x5e\xc9\x73\x3a\xa7\xc1\xe9\x2a\x5c\x2e\xdd\x61\xd9\x4a\ \xa1\x21\xd9\xfd\x51\x07\x26\x4d\xc7\xbd\x9d\xc5\x6d\x25\xeb\x9e\ \x34\xe2\xba\xd1\xc4\xc1\xee\xe3\x6b\x50\x6b\xb5\x5a\x25\xc1\x76\ \xc1\x21\x1c\x02\xc3\x36\x6c\x54\xe4\x29\x80\xad\xaa\xaa\xee\xa9\ \x70\xaa\xaa\x0a\xde\x2a\xbe\x92\x92\xc6\xaa\xeb\xc7\xc6\x6b\xfd\ \x1d\xda\x5c\x36\x1d\xd3\x6d\xcc\x50\xfd\xaa\x1b\x1e\x5a\xc2\xfd\ \x41\x4d\x39\xc0\x5e\xa2\x05\xd5\x60\xc2\x01\xac\xdb\x1c\x98\x41\ \x60\x7a\xea\x8f\x4a\x6b\x86\x3c\xeb\x49\xea\x84\x91\xe2\xc4\x21\ \x9c\x2a\xd0\x16\xfe\xcd\x26\x9a\xe0\xd0\x72\xe2\xaa\x46\x2c\x34\ \x76\xa2\xdd\x92\xc2\xd0\x36\xad\xce\xc1\x6b\xad\xf4\x6a\xaf\x4e\ \xa4\xc8\xd6\xe2\x98\x66\x64\xbd\xc6\xeb\x38\x2e\xdf\x1f\x70\xe3\ \xe3\xae\x05\x5b\x1d\x40\xa6\xba\x46\x3e\x66\x0b\x6d\xfe\x28\x4e\ \x1c\x2c\xb5\xd6\xd0\x8e\x6e\xee\xe7\xd2\x84\xcf\xce\x2d\x0f\x01\ \x27\xb9\xde\x2d\xc4\x7e\x68\xb9\xaa\xae\xdd\xa2\xab\x2b\xac\x21\ \xdf\x3d\x27\xe1\xbe\xab\xbd\x06\xe0\x80\x22\x1f\xc4\xd9\x6e\x59\ \x99\x2c\x90\x78\x63\x8e\x24\x50\xfd\x54\x2e\x50\x00\x2c\x78\xca\ \xa6\xcd\x66\xc8\x0c\xf1\x09\xe7\xf2\x4c\xe8\x6e\xc2\xe8\x92\x2e\ \xfb\x7c\xc2\xde\x9e\xae\xdf\x16\x6d\xc5\x5e\xef\xc3\xde\x2a\x1b\ \xce\x60\xbb\xb6\xa1\x5b\x22\xd9\x73\x36\x2e\x46\x32\x17\xe3\x55\ \x67\x0c\xdc\xdf\x70\x79\x0a\xd6\xd4\x68\x3f\x08\x2f\x6c\xb0\x5a\ \xf1\x72\xa0\x78\x8a\x02\xfd\xe2\xe3\xc1\x4e\xa8\x60\x4e\xeb\x4f\ \xc4\xed\xcf\x42\x2f\x70\x98\x2e\xdf\x2a\x2d\xbe\x56\xac\xdf\xde\ \x6a\xeb\xf6\x2d\xec\xca\x20\xe1\x82\xaf\xc8\x92\xa3\x50\x3d\xe7\ \x39\x1e\x1f\x5e\xda\x0a\x0a\xb8\xc2\x3a\x7c\x4d\x3f\x70\xc7\xb1\ \x01\x18\x09\xfe\x78\x87\x78\x5c\xe1\xdb\xc6\xd0\x4d\x80\xea\x91\ \x92\x81\x09\xb3\x03\x31\x4c\x28\xfd\xce\x01\xfe\xde\xac\x28\xb0\ \x83\x4e\x3c\xaf\xff\x62\x93\xf4\x42\x6c\xc5\xa2\xeb\x1a\x92\x42\ \xeb\xe6\xf0\x35\xca\x41\x01\xfb\x2d\x29\x70\x6f\xfd\x15\x2e\x00\ \xca\x60\x1a\xc0\xc2\xe0\x22\x19\x57\xa6\xe6\x2b\x9e\x2f\xbe\xae\ \xc3\x21\x38\xaf\x25\x90\x00\xe0\x81\x12\x0a\xd8\xca\x07\x6b\xa1\ \x24\x4e\x62\x06\xe0\x83\x09\x93\x41\x2c\xe0\x43\x2c\xc4\x02\x19\ \xa4\x70\x0d\xd1\x2f\xfd\x92\x16\x09\x2f\x49\xdc\xce\x30\x6b\x7d\ \xc2\xf5\xaa\xea\xeb\x06\xb1\x0f\xff\x70\x0e\x5f\x00\x1e\xe3\xb1\ \x0c\xd2\xb1\x02\x07\xae\xce\xed\xdd\x1a\x56\xb0\x29\xe2\xab\x2b\ \xc8\xc1\xa0\x18\x9f\x13\x9b\x60\x20\xf4\x2c\x9f\xea\xc1\xea\xe0\ \xea\xad\x92\x40\x0c\x0c\x95\x2b\x28\x28\x50\x68\x43\x2a\xe0\x43\ \x04\xa4\x02\x19\xe8\x09\x3b\xe0\x80\x2d\xc4\x42\x1d\x10\x02\x3e\ \x44\x81\x18\x8f\x71\x2c\x10\x43\x0a\xdb\x10\x1a\x6b\x4b\xcf\xf6\ \xaf\x1b\x93\x48\xdd\xda\x2a\x21\xcf\xb1\x02\x07\xf1\x1a\xe2\xeb\ \x1a\xca\x20\x11\xc0\x82\x1b\xf8\xb2\x62\x5d\x80\x73\xca\x20\xcf\ \x55\xf0\xfe\x0e\x78\x4d\x1c\x5f\xf0\x0e\x4c\x32\xf2\x09\x2b\xa3\ \x0e\x0c\x16\xed\xc0\x15\x13\xc1\xa0\x0d\x9b\x3b\x4d\x33\x0a\x58\ \xb2\x83\xf6\x44\x04\x24\x23\x11\x74\x8e\x64\xec\x23\x3b\x88\xb1\ \x12\x8c\x71\x14\x44\x01\x31\xc4\x02\x21\xe0\x02\x2e\xbc\xc3\x3c\ \xb0\xf2\x8c\xb4\x30\xf2\xe2\x04\xaa\xc0\x72\x2c\x1b\x8a\xf4\x92\ \xab\x1d\xf3\xb1\x0c\xea\xf1\x2e\xd3\x31\x1e\xf7\x32\x46\x20\x71\ \x74\x76\xaf\xce\x61\x07\xbe\x22\x73\xc5\x4a\x32\xee\x4a\xdc\xf2\ \x19\xb3\x09\xc2\x45\x11\x54\xcc\x06\xdf\xad\x24\x27\x85\x11\x54\ \x6b\x32\x86\x81\xa3\x24\x8f\x52\xd8\x03\x19\xd0\x84\x9b\x8e\xf1\ \x17\x13\x43\x14\x8c\x31\x2e\x94\x73\x3e\xc0\x73\x1a\xbb\xc6\x26\ \x98\x80\xdc\xde\xb3\x7b\xf5\x26\xde\x22\x70\x1d\xf7\x73\x1e\xe7\ \xb4\x1c\x5c\x80\x02\x5f\x00\x2c\xfc\xb4\x40\x67\x24\x00\xb6\x61\ \x05\x93\x00\xae\x32\x73\x33\x2f\x45\x1a\x50\xea\x05\xcb\x4a\x97\ \xfe\x01\x76\xa8\xea\x05\x13\x8c\x01\xa8\x57\x1a\x38\x40\xb7\x8c\ \x4e\x45\x04\x0d\x0e\xe8\x86\x55\x62\x45\x2c\x9c\xf4\x18\xaf\x32\ \x31\x18\x41\x2c\x18\xc1\x3b\x10\xc3\x84\x38\x2f\x93\xca\x34\xad\ \x95\xfe\x60\x01\x23\x30\x2e\xef\xb4\x1e\xfb\xf4\x45\x20\x31\x2c\ \xe0\xf1\x4f\xbb\x01\x4f\xcb\x01\x11\xf4\x35\xf1\x25\x2a\x12\x27\ \x85\x30\x33\xee\x21\x3b\x6a\x0c\x78\x4d\x07\x5f\xc9\xf9\x7a\x0d\ \xc1\x98\x00\x23\x47\x31\x93\x90\x40\x6a\x46\xc4\x7d\x54\xce\x38\ \xbc\x29\x3b\xa0\xf2\x49\x13\xc2\x58\xcf\x84\x28\xc4\x02\x3b\xbf\ \x03\x2b\xff\x04\x5b\xbb\x35\xdc\xc1\xf1\x1e\xff\xb0\xf6\xd2\x35\ \x4f\xe7\xf1\x40\xef\xb5\x2f\xc3\x42\xbb\x76\xaf\xec\x76\x2f\x64\ \xf8\x34\x76\x56\x6d\xee\x8e\xe3\xc5\xfc\xc1\x4b\xe2\x47\x7b\xfc\ \xe0\x1f\xb8\x42\x3f\x2c\xb2\x64\xa7\x0a\xaa\x58\x82\x01\xc4\x40\ \xbc\xd5\x41\x00\xd4\x10\x3b\xb0\x43\x14\x6c\x36\x21\x78\x76\x0a\ \x1f\xe9\x49\x8f\x76\x2b\x07\xc6\x4b\xdb\x33\x6a\xab\x8b\x09\xd0\ \xf5\x1e\xd7\x31\xba\x2a\x30\x7a\xff\xb4\x5d\x0f\xf4\x2f\xff\x72\ \x1a\xb0\x6b\xa2\x16\x76\x2f\x47\x04\x41\x2b\xde\xc7\xda\x68\xd4\ \xcc\x08\xa5\x40\x87\x25\x38\x40\x70\x0f\xe5\xf9\xae\x05\xe5\x2a\ \xb7\xc2\x58\x42\x5b\x70\x65\xe5\xd8\x03\x3e\xcc\xc6\x0b\xa7\xf3\ \x75\x63\xb7\x28\xe4\x43\x14\xbc\x43\x2c\xcc\x00\x2e\x3c\xcd\x2a\ \xfe\x47\x25\xff\x86\x37\x18\x4a\xaf\x4f\xe7\xb4\x1e\xa3\xb7\x88\ \xa3\xb7\x5e\xff\x74\x5e\xcf\xb7\x60\xff\xf2\x5f\x27\xc5\x4f\x3b\ \xd7\xfc\xa9\xd3\x3c\x68\x73\x13\xe6\x42\x6e\x36\x74\x5e\xf6\x88\ \x8f\xf9\x08\x70\x23\x78\xfa\x8c\xc3\x84\x4a\x77\x14\x3c\x78\x2c\ \xac\x34\xfd\xa6\x33\x3b\x9f\xf5\x3b\x90\xc1\x01\xc8\x30\x87\x9f\ \x5f\x6f\xfe\x81\x89\x47\x79\x94\xfb\xf4\x4e\xef\x74\x5e\x57\x79\ \x5f\x2b\x70\xbb\x2a\xf0\x5f\xd7\x76\x1e\xbf\xeb\xcc\xc1\xc8\x2f\ \x02\xc5\x01\xc4\x83\xc6\x04\x0d\x8b\x2e\x63\x1d\xc0\xf0\x91\xbe\ \x70\x67\xc3\x02\x21\xe0\xaf\x28\xbc\x03\x3b\xb3\xb3\xc2\xb6\x75\ \x93\x77\xa8\x2b\xc8\xf6\x5e\xb3\x77\x94\xdf\xb5\x89\x87\xf8\x2d\ \xeb\x5c\x1f\x93\x42\xfc\x91\x42\x2e\x24\x3a\xe8\x8c\xce\x1c\x3c\ \x4d\x4b\xbb\xda\xe8\x6c\x0e\x4c\xc6\xd9\x0c\xe0\x03\xfd\x4e\x37\ \x75\x5f\x37\x9c\xe7\xc3\x4d\xe4\xc3\x3b\x18\x01\x29\x2c\x2c\x78\ \xe7\x79\xe9\xb2\xb8\x46\xcc\x36\x88\xcc\x76\x96\xaf\x36\x1b\x22\ \x7a\x12\x19\xc1\x1b\x24\xba\x1a\xd1\x38\xfc\x70\xf4\x99\x64\x00\ \x19\x6c\xdd\xf8\x4e\x7a\x47\xd9\x82\x14\x50\x37\x3a\xa7\xb3\xfe\ \x7a\x47\x01\xcd\x66\x0a\x6f\x92\xfa\xb6\xc2\xf1\x7a\xcd\xb6\x7a\ \xe7\xf1\x96\xe7\xf0\xe3\x22\x6b\x2e\xa4\x81\x85\x6f\x5e\x18\xf0\ \x4a\x74\x62\xc4\x0c\x70\x02\x7b\xf2\x7a\xbc\x8d\x03\x19\x9c\x41\ \x75\xab\xb2\x3a\x8f\x31\x1a\x5b\x42\xb6\x22\x7b\xc3\x9a\x00\x8f\ \x63\x06\x9f\xc3\x37\x1e\xc3\x2b\xbc\xca\xc1\x2b\xd4\xc8\x99\x27\ \xf8\x65\x7b\x7b\x9c\x11\xc2\x19\x00\x3b\x3b\x14\xf9\x49\xc7\xb8\ \xcf\x8e\xba\xba\x83\x94\xb2\x77\x14\xb3\xf3\xb5\x5e\x0f\xae\x11\ \xcb\x41\x2e\x1c\x00\x14\xf8\x72\xfa\x30\x8a\xbe\xc7\x9a\x82\x4f\ \x37\x19\x54\xb7\x28\x10\xc3\x3b\xf4\x43\x4c\x17\x7c\xc3\x3e\x39\ \xc2\xff\x72\xa0\x07\x34\x6d\x13\x73\xbd\x43\x7c\x6a\x51\x7c\xc5\ \xc7\x99\x2d\xb0\xc3\xda\x89\xfb\xd3\x1c\x3b\xc8\x43\xef\x27\xb8\ \x02\xc2\x4f\x79\x1e\xe3\x75\x44\xc8\xc1\x49\xa5\xd7\x45\xe4\x7b\ \xd2\x2c\x85\x8a\xe4\x7b\xcb\xa7\xcf\x0c\xc0\x3c\x3b\xe4\xc3\x1c\ \x0c\x7c\xcd\xcf\x30\xbb\x57\x0e\xb3\xe7\x75\x4e\x23\xdf\x1f\x6c\ \x65\xd0\x73\xc2\x65\xdb\x03\x0b\x6c\xbd\xd7\x1b\xfd\xd1\x57\x4e\ \x1d\x98\x05\x93\x3f\xbd\xff\xee\x80\xd4\x4f\x39\x5d\xff\xfe\x39\ \x35\x63\x7d\xd0\x7b\x05\x46\x70\x02\x0b\x70\x42\x46\x0c\x3d\xd8\ \x87\x7d\xd0\x84\x41\x3f\xe0\xb9\xd9\x43\x7d\xbb\xfb\x79\xb3\x9b\ \xf8\x3f\x1e\x80\x4b\xc6\xbd\x2d\x74\x7d\xd6\x0b\xfd\xd0\xe3\x7d\ \xfa\x0c\x55\xba\xf7\xfd\x3d\x1f\x7c\xaa\x93\xfc\x94\xe7\xb5\xc4\ \xbb\x81\x11\x94\xb9\x19\xcd\x40\x72\xd0\xfd\x45\x68\x7d\xdd\x7b\ \xfe\x7a\x2d\xfe\xdd\xa7\x9e\x2b\xd0\x3c\xe4\xbb\xf5\x27\xfc\x41\ \xb9\x24\xbc\x94\x4b\x7c\x1a\x74\x4b\x70\xbb\x81\xdc\xcf\x7d\xd0\ \xb3\xbc\xa2\x2c\x7e\x82\x6b\xfd\xd6\x2f\xa3\x1e\x34\x66\xea\x87\ \xf7\xcd\xff\xfd\x9f\xa3\xfa\x45\x5c\xc0\xd8\x8a\xc2\xec\xa7\x08\ \xe8\xe7\xbe\xbb\x5c\x06\xa3\xf4\x7e\xd0\xa4\x48\xd2\x94\xfe\x7a\ \x0d\xd5\xde\x13\x7c\xf0\x07\xe4\xec\x4f\xbe\xc4\x5f\xbe\x11\x8c\ \xc7\xf8\xc5\x3d\xef\x67\x06\xc5\x2f\x4a\xf9\xaf\x3c\xf3\xeb\x7e\ \xac\xbd\xc2\xe3\x6f\x7f\x93\xa3\x7d\xd0\x5c\xfe\xc3\x8d\x6d\x17\ \xa0\x5e\x66\xb0\xc0\xdc\x1b\xfd\xd6\xa7\xbf\xfa\xef\x3f\x40\xb8\ \x11\x38\x90\x60\x41\x83\x03\x51\x24\xf8\xf4\xe9\x5f\x43\x87\x0f\ \x21\x46\x94\x38\x91\x62\x45\x8b\x17\x31\x66\xd4\xb8\xfe\xb1\xe1\ \x27\x03\x07\x41\x16\x94\xd3\xaf\x4b\x17\x51\x44\x08\xda\x63\xc1\ \x82\x93\xbd\x82\x2e\x05\xda\x6b\x19\x92\xe6\x40\x4e\x33\x63\xc2\ \xac\x39\x70\x46\x0c\x03\x0b\x39\x06\x15\x3a\x94\x68\x51\xa3\x9f\ \x02\xc9\xd9\x69\x30\x0d\xc9\x92\x28\x0c\xca\xbc\x69\x0f\x26\x55\ \x9b\x56\x5d\x52\xd5\xb9\x54\xaa\x4e\xab\x4b\x89\xec\x30\xc1\xd0\ \x68\x59\xb3\x67\xd1\x72\xfc\x04\x75\xe9\x40\x22\xf3\x36\x95\x9c\ \x33\x23\x6a\xcb\xa9\x59\xbd\x6a\x75\xa3\x15\x67\x5b\x99\x55\xbf\ \xd6\xdc\x11\x88\x6c\x5a\xc3\x87\x11\x9b\xfd\xb4\x03\x65\x5b\x22\ \xaf\x4a\x9a\x0c\x11\x95\x2a\xa7\x95\x2d\xb5\x56\xcd\x19\xf3\x66\ \xdf\x9a\x5d\x07\x06\x36\x18\x46\xcf\xd8\xc4\xa7\x51\xa7\xce\xf8\ \xe9\x4f\x5b\x5c\xb9\xe2\x96\xcc\xf5\x32\xb4\x54\xcc\x5d\xf3\x12\ \xbc\xc9\x62\x2b\xed\xd0\x53\x53\x1a\x24\x62\x80\xb0\x6a\xe3\xc7\ \x91\xff\x4b\x40\x93\x48\x9a\x3f\xb9\x0e\x44\xee\x32\xa7\xf1\x5e\ \xd1\xb8\xa5\xb2\xd4\xbb\x37\xa5\x65\x4e\x34\xbd\x02\x0f\x5d\x70\ \x70\xe1\xe4\xe7\xd1\xa3\xf5\x78\xb0\xf9\xf3\x39\xd2\x45\x19\x79\ \x69\x39\x6f\x67\xfb\x9d\xb5\x5f\x67\x09\xbe\xaa\xfe\xf7\xdc\x61\ \x50\x30\x2d\xbd\x01\x09\x2c\x0a\x29\xa5\x0e\x4a\x23\x84\x5c\x22\ \xe8\xe2\x80\x78\xaa\xb3\xc9\xbf\xdf\xa6\xb2\x8b\xaa\x95\xb4\x8b\ \xc9\x3a\xf1\x0e\xda\xce\xb2\xfd\x78\x22\xce\xbc\x02\x49\x2c\x11\ \xa3\xb5\x98\x4b\x03\x97\x30\x3a\x94\x69\xa5\xad\xee\xbb\xcd\xb2\ \x35\x32\xdc\xcb\x3e\xd1\x52\x02\xd1\x8d\x0f\x61\xfa\x09\x28\x13\ \x81\x0c\x72\xa2\x85\x22\x6c\xab\xbb\x1a\x6d\x8c\xb1\x32\x1a\x71\ \xb2\x2d\x33\x90\x5e\x94\xb0\x8e\x84\x46\x14\xd2\x4a\x2b\x59\x33\ \x92\xb2\x0f\xbf\xcb\xc9\xae\xcb\x2a\xe3\x91\xb3\x0c\x6f\xa3\x4c\ \x37\x03\x14\xba\x52\xcd\x35\x95\xd3\xf2\x25\xa9\x68\xc4\x2b\xcc\ \xcb\xec\x9a\xb1\x49\xe0\x2a\xc3\x91\xa0\xe1\xc6\xaa\x92\xcd\x3f\ \x0b\x5c\x8f\xab\xbe\xb2\x02\xb3\x36\x17\x31\xc4\x8c\x93\x35\xd6\ \xc0\xaa\x33\xce\x3c\x83\x69\x06\x14\x7e\x04\xd4\x52\x13\x0f\x1c\ \xb4\x37\x17\xbb\x3c\xb4\x33\x46\xed\x62\x12\x2f\x3c\xa3\xcc\xc9\ \x1e\x34\xfd\xbc\x54\xd5\xf4\x50\xdc\x49\xcf\x24\xb3\xca\x49\xbb\ \x45\x59\xba\x89\xc6\xfc\x64\x5a\xe3\x4b\xde\x42\xec\x73\xd5\x5f\ \x4b\xfc\xa4\xc8\xcf\xc2\xfb\x0b\x2b\x30\xbd\xfe\x63\x49\xd9\xce\ \xc2\xdc\x2d\x4e\x37\x88\x08\x30\x55\x60\xa9\x45\x2e\x4b\x90\x70\ \x94\x69\xbe\x1b\x99\xc5\x0f\x43\x3a\x01\xcb\x75\x1c\x4e\xd0\x34\ \xa1\xda\x73\x0b\x4c\x60\x58\xce\xc2\xe3\xf5\xc8\x5a\x6d\xf3\xf6\ \x56\x43\xb9\xdb\xb1\x8e\x5c\x08\x9b\x16\xdd\x7d\x51\xfb\xe4\x95\ \xe0\xd8\xad\xaa\xd4\x23\xe3\xcc\xee\x5b\x46\x57\x12\xf5\xab\x3f\ \x04\xe4\xd7\xe1\xe4\x90\xc2\x25\x4c\x5b\xb2\xa2\xcf\x46\x84\x37\ \xdd\x0d\xde\x19\x59\x60\xd4\x63\x84\xf3\x7b\x25\x81\x86\x1f\x2e\ \xd9\x38\x7f\x6b\x65\xc1\x96\xef\x5c\xc4\xab\x63\x5d\xeb\x4a\xf4\ \xc2\x8f\x69\x06\x15\xdf\x4a\x4d\xce\x59\xb5\x4f\x12\xee\x98\x37\ \x27\x97\xd4\x75\x53\x17\x45\x7d\x19\x61\x9a\x71\xf0\x55\xe7\xa5\ \x77\xce\x80\xc6\xa7\xf1\xbb\x2d\x57\x77\x53\x42\xf4\x53\x8f\x13\ \x5e\x23\x83\x7e\x8a\x63\xda\xeb\xd4\x12\x30\xda\xe3\x05\x78\x29\ \x38\x3b\xcf\x28\x54\x36\x6b\x8f\xfb\x21\xf9\xeb\xb7\x0f\xfb\x24\ \x1e\x90\x6d\x59\xe0\x98\x63\x78\xc1\x95\x4b\xeb\xc2\xb5\x15\x43\ \x46\x17\xf8\x09\xee\xc1\x4f\xfb\x24\x81\x47\xd6\xb0\x45\xf1\x47\ \xa4\x91\x66\x1c\xa1\x6d\xc4\x30\x4c\xac\xce\x2a\x13\x7b\x0e\xb7\ \x09\xcf\xfc\xac\x4f\x72\xb1\x45\x65\x95\x1f\xc7\x78\x4c\xfb\x70\ \xe5\x4b\xe5\x7e\x70\xd6\x5c\xf5\xcd\x57\xe6\xc4\xf3\xd0\x41\xb5\ \xa9\xd6\x18\x99\xbd\x37\xf5\xd5\x71\x3f\x2a\x1e\xc5\x6d\x79\x1a\ \xeb\xfe\x2a\xe4\x8b\x56\x03\x30\xcf\xdd\x78\xa2\x02\xa1\xf5\xd6\ \xa7\x33\x6c\xf6\x2e\x7b\xc2\x68\x5b\xdf\xe3\xa9\xd7\x88\xf3\x44\ \xbf\x7d\x51\xf8\xdd\x38\x09\xc1\xc7\xea\xc1\x3f\x2a\x90\x3a\xb2\ \x5f\xf6\xae\x5d\x89\x9f\x3e\xfc\xf5\x2d\xf2\x17\xbf\x79\xe1\xd5\ \xaa\x0e\xe9\xd5\x67\xdf\xfe\x89\x4c\x50\x1b\x7e\xe0\xfe\xf8\xfe\ \xfe\xff\x83\xe2\x91\xbf\x81\x2c\x4e\xb9\x28\x1e\x00\x11\x68\x91\ \x40\xf8\x8c\x66\xb6\x30\xe0\xed\x12\x18\x41\x8a\x7c\x82\x0c\x48\ \xcb\x05\x04\x25\x98\x41\x89\x20\x05\x71\x8c\xca\xc0\x01\x35\x18\ \x42\x88\x7c\xe2\x1d\xab\x78\x07\x08\x45\x98\x42\x87\x7c\x02\x85\ \x2a\x74\x61\xfd\x5c\x88\x98\x80\x00\x00\x21\xf9\x04\x09\x00\x00\ \xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x99\xc2\x91\xff\xff\xff\xd9\x88\ \x8e\x94\x49\x34\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd4\xc8\xa3\xde\x93\xb3\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x5c\x86\xae\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x9d\xa7\xb8\x57\xa8\xe4\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x13\x28\xa8\xd7\xc9\xe7\xff\xff\xff\xff\ \xff\xff\x10\x27\x69\xff\xff\xff\xff\xff\xff\xcf\x66\x46\xf7\x89\ \xba\xff\xff\xff\xf7\xa7\xb7\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x12\x29\xdf\xff\xff\xff\x9a\xf2\xfc\xff\xff\xff\x4e\x68\xf8\x28\ \x46\xea\xd9\xe8\xf9\xfa\xc9\xe8\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7e\x9d\x4a\xff\xff\xff\ \xff\xff\xff\x98\xc8\xfa\x7d\x8c\xae\xff\xff\xff\xff\xff\xff\xf6\ \xb2\xf0\xff\xff\xff\xff\xff\xff\xf9\xe8\xf0\xff\xff\xff\xd9\x91\ \xf3\xff\xff\xff\xff\xff\xff\x6b\x6a\x21\xff\xff\xff\xb5\x68\xb1\ \xfb\x8e\x5d\xff\xff\xff\xff\xff\xff\xb6\xb3\xf3\xb7\xc8\xf3\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x38\x56\xf6\x95\x93\xf5\xff\xff\ \xff\xff\xff\xff\x6e\x68\xee\xff\xff\xff\x26\x29\xf2\x09\x18\x61\ \x7a\x8b\x70\xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\xb1\xf8\x5b\ \xb8\xeb\xff\xff\xff\x11\x39\x65\x73\x88\xf7\xd7\xd8\xed\xff\xff\ \xff\xff\xff\xff\x07\x14\xdb\xfb\xfd\xfa\xff\xff\xff\x7a\xe9\xfb\ \xff\xff\xff\xba\x8e\xf4\xda\xae\xf8\x1b\x7b\xc7\xfa\xd8\xec\xff\ \xff\xff\x6f\x6a\x63\xff\xff\xff\xff\xff\xff\xff\xff\xff\x37\x4b\ \xec\xff\xff\xff\xf4\x98\xb5\xfa\xb7\xbc\xce\x2e\x6b\xb7\xd8\xfa\ \xff\xff\xff\xf2\x72\x6f\x7b\x92\x44\xff\xff\xff\x50\x31\xa2\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe6\ \x9c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x70\ \x59\xed\x78\x48\x5b\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8f\x29\ \xc2\xff\xff\xff\x95\x68\xf9\xb3\x68\xec\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x37\x65\x65\xff\xff\xff\x7a\xcb\xf9\xff\xff\xff\xff\ \xff\xff\x76\xa9\xf7\xb9\xf3\xfc\x35\x4d\x18\xfb\xb0\x8a\xff\xff\ \xff\xff\xff\xff\x8f\x15\x50\xfa\xeb\xba\xff\xff\xff\x71\x11\x4d\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\x92\x8c\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x98\x39\xd5\xde\x97\x93\xff\xff\ \xff\xff\xff\xff\x41\xb6\xed\xb9\xb8\x80\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x4e\ \x58\x18\x56\x76\x28\xff\xff\xff\x17\x35\xa4\x12\x78\xa9\xff\xff\ \xff\xff\xff\xff\x19\x36\xe0\xff\xff\xff\x58\x75\xfa\xff\xff\xff\ \xff\xff\xff\x9a\xd8\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\x48\ \x5b\xf6\xff\xff\xff\x69\x7a\xf4\xff\xff\xff\x4e\x59\x66\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x34\x57\x65\xff\xff\xff\ \xb4\x57\xb1\xff\xff\xff\xff\xff\xff\x71\x59\xab\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xd8\xac\x7f\xfa\ \xfc\x95\x98\x53\xff\xff\xff\xff\xff\xff\x4c\x97\xb9\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xba\x99\xb0\xd9\xfb\xfc\xef\x78\xaa\xff\ \xff\xff\xff\xff\xff\x7d\x97\xf9\xff\xff\xff\xff\xff\xff\x95\x5c\ \xfc\x93\x78\xf3\xb0\x78\xfa\x96\x39\x56\xff\xff\xff\x54\x9a\xe3\ \xff\xff\xff\x79\xb8\xf8\xd4\x3a\x7d\xff\x00\x00\x08\xfe\x00\xff\ \x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\ \x10\x05\xea\xd1\x13\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\x23\ \x46\x3d\x25\x92\x1c\xa0\xe8\xb1\xa4\xc9\x93\x28\x53\xaa\xcc\x38\ \xf1\x80\x9f\x24\xc2\x46\xae\x9c\x49\xb3\xa6\xcd\x9b\x0c\x27\x26\ \x09\x96\xe4\x65\x12\x7f\x38\x83\x0a\x1d\x4a\x14\xe3\x81\x24\x3b\ \x85\xbd\xf4\x73\x8e\x64\xd1\xa7\x50\xa3\xe2\xd4\xf3\x52\x98\xd5\ \x9e\x48\xfd\xc8\x94\xca\xb5\xab\x57\x8d\xa8\x90\x0a\xcb\x7a\xee\ \x9c\x4f\x91\x5f\xd3\xaa\x5d\x6b\x50\xcf\x01\x52\x70\x83\x29\x3d\ \x97\x2b\x57\x55\xa4\x07\xd8\xea\xdd\x0b\xb5\x65\x30\x52\x22\xe2\ \x32\xcd\xa5\xc3\xcf\xdd\x24\x4e\xf9\x2a\x5e\xbc\xf2\xa8\xd5\xbf\ \x63\xe0\x26\xd1\x61\x56\x69\x61\xa4\x88\x19\x6b\xde\xbc\xb1\xa5\ \x1f\xab\x4a\x93\x00\x26\xc5\xf3\xb3\x9f\xba\xe7\x94\xfa\x49\xcc\ \xb9\xb5\xeb\x85\xa8\x48\x61\x55\xbd\x73\x74\xcf\xc1\x86\xcc\xf6\ \x6c\xfa\xba\xb7\xef\x81\x7a\x50\x6d\x91\x6d\x18\x66\x71\xd1\xab\ \x88\x9f\x33\x94\x2a\xf5\xd8\xb2\xac\x7f\x4b\x57\xac\x27\xd8\x96\ \x2d\x3c\x91\x92\xde\x2d\x7a\xf8\xe0\x54\x69\x08\xfe\x04\x0b\xe6\ \x47\x47\x2e\x26\xd1\xa7\xab\xff\x0a\xb2\x44\xb0\xc0\xe3\xc7\xc3\ \x9d\x7b\x4e\x72\xd9\x06\xe0\x73\x09\x23\x25\xec\x1c\xfe\x3e\xeb\ \x05\x98\x16\x48\xfe\xe5\x52\x1b\x7c\x82\x95\xc5\x13\x5d\x4c\x81\ \x27\x5e\x30\x94\xc9\x90\xc6\x0c\xe9\x09\x68\x61\x50\x04\x2e\x57\ \x4e\x03\xe7\x24\x31\x5c\x76\xdc\x21\x65\x56\x30\xcb\xa5\x91\x8b\ \x5c\xa7\x49\x98\x46\x1e\x15\x5e\xe8\xa2\x4a\xc1\x25\x51\x96\x7f\ \xa9\xa4\xd2\x80\x68\x92\x31\x75\x5c\x59\x3b\x9d\x43\x44\x2a\xfa\ \xc1\x94\x0b\x78\x69\x10\x91\xc7\x8b\x48\xd2\x14\xdc\x70\x32\x0e\ \x09\x5e\x2a\x7e\x90\xc2\x64\x59\x3e\x0d\xe6\x07\x89\xe5\x98\x18\ \x65\x30\xb9\xbc\x93\xc6\x97\x44\x00\x95\xe4\x98\x26\xf5\x51\x8a\ \x75\x5b\xc8\x88\xdf\x97\xe5\x74\x68\x5f\x2e\xe7\x8c\x97\x44\x5d\ \x3d\xe6\xd2\xc0\x4b\x72\xe5\xf2\xe5\x9e\x70\xb4\x48\xe6\x9f\x0e\ \xe9\x01\xc7\x8f\x7e\x6c\xb1\x8a\x9a\xa9\x94\x53\xa3\x81\xa4\x48\ \x32\x27\x8f\x4d\x1a\x48\x1e\x9c\x78\x26\x91\x01\x91\x7b\x12\xe1\ \x27\xa0\x9c\x1e\xa4\x47\x96\x5f\x1a\xb8\x13\x89\xf7\x6d\x18\xe7\ \x82\x1d\xce\x58\x0a\x9c\x22\xde\x36\x9e\x1f\xfe\x0d\x10\xb1\xe7\ \x97\x00\x76\x6a\xab\x42\x7a\x30\x01\x6a\x1a\x35\x36\xc0\xa8\xa3\ \x65\x99\x7a\x00\x89\xb5\xa4\x5a\x4b\x5d\xac\x22\x45\x1e\x66\x73\ \xca\x0a\x66\x2a\x44\xd4\x7a\xeb\xb4\x03\xa1\x72\xc0\x72\x98\xf2\ \xda\x80\x75\x87\xd2\x55\x4e\x9b\xc1\x5c\xcb\x61\x12\xb5\xf8\x4a\ \x17\x8f\x92\x21\xc5\x45\x59\x98\x96\x53\x4b\x2a\x28\x6c\x4a\x2d\ \x92\x7a\xc8\x66\x1e\xa6\x8b\x26\x21\xc2\x82\xe5\x72\x78\x54\x2e\ \xa5\x74\xd8\x00\x87\x33\x76\xf8\xd7\x82\x4c\xb9\xb3\x2b\x1c\xb9\ \x7c\x90\x06\x1e\xf3\xda\x0a\x52\x55\xa7\x19\xc2\xab\x21\xe5\xd8\ \xf5\x97\x24\x24\x22\x1b\xe7\x39\xa6\x96\x30\x70\x59\xc5\xb2\x4a\ \xde\x8c\x86\xe5\xb2\xeb\x8f\x5f\xc2\x12\x31\xa0\x7a\xd4\x65\x5a\ \xca\xa9\x18\xc2\x2a\x5c\xc9\x91\x9b\x8b\x3b\x78\x39\x39\x70\xa2\ \x06\xcc\x58\xec\x4e\x4c\x15\x76\xce\xba\xb1\xce\xfa\x25\x85\x2f\ \x27\x39\xd1\xaa\x65\x15\x26\x0c\x79\x86\x0c\x7c\x65\x60\x48\xa9\ \x0c\xe4\x39\x72\xf8\x57\xa4\xa2\x36\x92\x7c\xee\xc1\x4c\x15\x9c\ \x4b\x19\x4a\x7f\xd9\x67\xd3\x2e\xea\x51\x4a\x39\x04\x18\x66\x98\ \x0e\x49\xe5\x42\x80\xc6\xdb\xcd\x59\x46\xfe\xd8\x41\x27\xfd\x64\ \x9b\x75\x35\x90\xf1\x5f\x32\x9e\xa3\x43\x06\x76\xf9\xe1\x4e\xb6\ \x60\xce\xc0\xb6\x85\x25\x30\x51\xf5\x67\x63\x09\xa3\x83\x0e\x56\ \xe9\x40\x80\xe1\x38\x92\xd6\xb5\x3b\x5c\x24\xe1\x4e\x2e\x33\x64\ \xdb\xa6\x01\x5a\x8b\x7a\xee\xe5\x1d\xf6\xa4\x72\xda\x61\x3e\xae\ \x9e\x5b\x20\xa7\x61\x48\x71\x63\x9d\x76\xb9\xe5\x04\x10\x90\xc1\ \xa8\x49\xac\x9b\x04\xc7\x5c\x94\xb2\xe6\x9e\x37\x16\xee\xeb\x6e\ \x89\x43\x9a\xb5\xb3\xb3\x6a\x2a\xfb\x6f\xa8\x84\xe5\x9f\xaf\x72\ \xff\x25\xcc\xdd\x98\x0b\xc3\xc5\xdd\x19\x1c\x3d\xba\x3b\x47\x7f\ \x3e\xe4\xac\x67\x1e\x5a\xf6\x4b\x54\x1a\x9e\x1a\x66\x8b\x67\x2a\ \x2b\x11\x2e\x4f\xef\xda\x92\x0b\xa2\x56\x59\x5c\x04\x34\xc0\x45\ \x64\x9d\xe0\x82\x0f\xb8\xb0\xae\x73\x90\x8f\x7c\x5d\x2b\x8b\x9e\ \xbe\x04\xa4\x0f\x15\x4e\x44\x0a\x34\xd9\x6e\x76\xa5\xb4\x3e\xc8\ \xcb\x7e\x5f\xa9\x1e\x69\x4e\x83\x2c\x99\xe1\x48\x07\x86\xd0\xc1\ \x18\xae\x23\x82\xc0\x54\x83\x80\x72\xe0\x09\x01\xcb\x12\xba\x5c\ \x38\x8b\x08\xb9\x20\x45\xb7\x5a\x77\x9b\xb2\x10\x40\x07\xd6\xc9\ \x1f\x05\x67\x25\x2d\x0c\xf2\x45\x0f\xfe\x39\xf3\x4f\xd5\xee\xd6\ \x80\xbb\x19\x26\x03\x86\x90\x81\x0e\xae\x33\x9c\xeb\x90\xe2\x84\ \x5c\x90\x03\x01\x83\x57\x2c\x2e\x2c\x30\x0d\xe0\x42\x15\x0d\x8b\ \x56\x98\x83\x29\x2f\x6d\x5f\x62\x91\x0f\xf7\x92\x2b\xe7\xd8\x4d\ \x06\xa9\xd8\xdc\xf5\xfa\xa7\xa2\x34\x94\x21\x8a\x5c\xc8\x80\x30\ \xb4\x31\x06\x6d\x48\x91\x80\x92\xf0\xdc\x4b\xe2\x87\xc5\x13\xad\ \xa2\x6c\xba\x29\x5c\xd1\x72\x37\xa3\xa4\xc1\x4e\x8c\x63\x54\x8b\ \x1e\xf2\xc1\x94\xa9\x55\xac\x0c\xb9\xe0\x02\x08\xcb\x50\x06\x19\ \xc8\x80\x92\x96\x94\x81\x97\xde\x51\x86\x27\xc8\x41\x1b\x9d\x90\ \xa2\xbe\xae\x13\x2e\x35\x81\xe9\x46\x5a\x6c\x5d\xd1\x2a\xa3\x23\ \x19\xbd\x0b\x8c\xbc\xea\x61\x22\xa5\x12\x9c\x55\x0c\x47\x4a\x91\ \xd1\x41\x11\x37\x97\x0b\x28\xe4\x62\x80\x72\x20\x85\x36\xaa\x21\ \x07\x1f\x64\x40\x06\xb2\x92\x41\x0f\x06\x48\x81\x60\x32\x31\x78\ \xeb\x72\x21\x98\x52\xb5\x33\x94\x01\xb2\x30\x85\x39\xcb\x15\xd3\ \xc6\xb4\x59\x4a\xa5\x7a\x4c\x0c\x27\x7f\xee\x66\x37\x28\x70\x41\ \x4a\xe1\x0c\xe7\x18\xe4\x90\x01\x28\x50\x12\x0a\x03\x94\x92\x6c\ \x0e\x68\x45\xe8\xb9\x63\x74\xbe\xfe\xd2\x9f\x0d\xed\x96\xcd\xb3\ \xd4\xe2\x85\x4a\x2b\x87\xe3\xbc\x09\x15\x7f\x1c\x20\x9d\xa4\xb4\ \x5c\x06\x0e\x97\x8b\x0c\xa0\x13\xa1\xe9\xac\x46\x06\x28\xf9\x04\ \x1f\xc8\xe1\x84\xa3\x0b\x9f\x3b\x3e\x40\x84\x8e\xa6\x61\x60\x1f\ \xf8\x96\xfe\x0c\x63\xb8\xcb\xcd\x0c\x29\x0d\x98\x15\xbe\x3a\x2a\ \x4b\x82\xde\x44\x0f\xfe\x68\x80\x1c\xd2\xc9\x9f\xc3\x15\x26\x8e\ \x50\xa8\x06\x44\x77\x2a\x02\x1f\x7c\xa0\x0c\x50\x68\x67\x03\xca\ \x90\x01\x29\xa6\x54\x06\x03\x43\x63\x47\x91\x9a\x4f\xdd\xcc\xad\ \x3c\xfd\x4c\x82\x21\xa1\xa5\x34\x68\x59\xd0\xa5\x53\xc9\x43\x2a\ \x7c\x80\x50\x52\x48\x92\x0b\xc2\xa0\x40\x06\x1a\xe0\xd0\x9d\xf2\ \xd4\x07\x65\x20\x82\x25\xd3\x20\x03\xae\xf9\x40\x42\x30\xcc\x40\ \x39\x94\x3a\x30\x38\x51\xc9\x38\x72\x23\x69\x87\xae\x48\xd5\x4c\ \xa5\x62\x50\x17\xc4\x6a\x67\xf4\x90\x87\x22\x71\x01\xa1\x72\x11\ \x46\x64\x70\x7a\x58\xb3\xf2\xf4\x09\x95\x24\x02\x27\x33\x10\xc7\ \xf9\xd5\x65\x6f\x6a\x1d\xd8\xef\x76\x23\x37\x93\x7e\xc6\x2c\x72\ \x30\x24\xf4\xd4\x96\x8b\x3c\xd0\x2f\xb0\x82\xbd\x88\x1e\xfa\x00\ \x3d\x19\xcc\x94\x89\xa4\xe8\xfe\x44\x27\xe4\x19\x47\x4f\x3a\xd6\ \xac\x80\x98\x28\x50\x2b\x7a\xc2\xb4\x96\x81\x00\x2a\x4a\x45\x19\ \x0c\x01\xc3\x60\x92\xa8\x3c\x25\xb5\x4a\xd9\xe6\xc4\xb8\x3d\x95\ \xc3\x1d\x29\x8d\x56\x6a\x53\xe2\x0f\x03\x54\x72\x56\x0d\x10\x67\ \x27\xfe\x32\x1c\x01\x66\x40\xa7\xb7\xdd\xe9\x37\xdc\x59\xd1\x4e\ \x48\xd4\x92\x65\x68\x00\x1a\x87\x3b\x30\x5f\x71\x61\x41\x9b\xbb\ \xa1\x61\xac\xc2\xa3\x73\x38\x8c\x81\xd1\x6b\x00\x1c\xbe\x14\xaf\ \xe9\x96\x04\xa6\x40\xdd\xc3\x1e\xda\x58\x86\x11\x0e\xa7\x1a\xb3\ \x8d\x0c\x29\x9a\x39\xc0\xf0\x9a\xb5\x0a\x9d\xa4\x40\x35\x7c\xaa\ \xd6\x27\x10\x00\x0a\x45\xf4\x55\xf8\x94\xc5\x3c\xcf\x2a\x65\x8a\ \xa1\xc5\x2f\xa6\x3a\x2a\x2b\x38\x34\x00\x91\xfe\xd5\xc8\x6a\x05\ \xdc\x8c\x01\x6b\xf2\x4b\x05\xde\x82\x08\x8a\xc9\x85\x4e\x8c\x41\ \xc1\xc2\xf0\xc1\x13\x24\xe1\x60\x88\x02\x02\x0c\x65\xf0\xc1\x37\ \xd0\x5a\x61\xca\xb6\xf3\xa7\xfe\x0b\x86\x1c\x46\xc5\x3b\x1d\x80\ \xd5\xb3\x5c\x80\x15\x2c\xb1\xd8\x51\x13\xc3\xa1\x7e\x29\xfe\x88\ \x1b\x58\xdc\x0c\x28\xec\x61\x14\xce\x92\x01\x17\x26\x9c\x01\x51\ \xd4\x78\x84\xfc\x91\x83\xfe\x0e\x2a\xda\x63\x88\x42\x18\x9e\x55\ \x70\x67\x19\xf6\x90\x81\x76\xa6\xd5\x8d\x76\xed\x0e\x7f\x0c\x67\ \x15\x75\xcc\x37\x74\x29\x85\x1d\x1c\xa0\x6b\x62\x8e\xc6\x2e\xcb\ \x15\x99\x88\x97\x5b\xbc\x87\x66\x7c\xa2\x07\x7b\xf0\x52\x91\x88\ \x00\x05\x30\x74\x42\x04\x37\x76\xa2\x0f\x84\x21\xc5\xef\xb6\x39\ \xa2\x69\x85\x33\x64\xd5\x7a\xe7\x77\x20\xd5\x4e\x1f\x38\x67\x60\ \xbc\x07\x56\xd0\xb8\x3a\x03\x60\xb4\x11\x3e\x3f\x30\x03\x67\x89\ \x09\xd1\x81\x32\x80\x80\x59\x3c\x8a\x66\xf4\xe0\xd7\x91\x9e\xd5\ \x13\xb4\x01\xdb\xd8\x52\x36\x80\x94\xfd\x74\x3a\x9f\xe0\x46\x32\ \x7c\xa3\x0a\x7b\x00\x6a\x25\x65\xf0\x81\x06\x40\x01\xb8\xe5\x78\ \xef\x78\xac\x52\x63\xb8\x74\xc2\x2a\xdb\x25\x00\x18\x89\xd0\x00\ \xe8\xba\xa1\x1c\xd0\x3b\x12\xae\x73\x52\x02\x37\x34\x83\xd1\xa3\ \x18\x45\xa3\xdf\xdd\x83\x16\xcf\x4a\x06\x3e\x40\x67\x6c\xc3\x1a\ \x45\x76\x16\x55\xd9\x4c\xf4\x41\x47\x7d\xa0\x8d\x69\x64\xe0\x09\ \x4f\x90\x33\x14\xe4\xcc\xab\x48\x82\xb5\x1a\x8f\x81\x4b\x6c\xe7\ \x43\x80\xd1\xce\xaf\xdc\x84\x9e\x1f\xb9\x4b\x80\x5a\xff\x96\x00\ \x0c\xf1\x7e\xf7\x97\xfe\xe5\xfd\x6e\x46\x7f\x59\x69\x19\x60\x62\ \x60\x62\x0b\xf1\x0c\xa4\x1a\xe0\xd7\xa9\x86\x25\xa7\x41\x0c\x6d\ \xcc\x03\x0c\x60\x78\x82\x0c\xa0\xf0\x01\x28\x3c\xc1\x61\x44\xf8\ \x00\x9c\x42\x57\x0d\xc8\x28\x98\x14\x91\x11\xb7\x5f\x89\x60\xe2\ \x7b\xaa\x97\xe9\x26\x76\x43\x7f\xd7\x7d\x10\x7f\xd4\xa2\x07\x9f\ \x88\x37\xc9\x47\xee\x6b\x17\x6c\xbd\x8d\x69\x78\xc7\x6b\xaf\xa3\ \x60\x6d\x70\x61\x0f\xb9\x18\xfb\xa7\x45\xf0\x01\x19\x88\xc2\x0e\ \x05\xf7\xc1\x3c\xaa\xf0\x84\x3a\x0f\xf0\x09\x70\x10\xba\x3b\x28\ \x2b\x07\x61\x5c\xfa\x96\x70\xb9\xb1\x8f\xc0\xb4\x21\x4a\xe6\x33\ \xad\x79\x4f\xef\x58\xd5\x4d\x75\x82\xe8\xe1\xd7\xf5\xae\x77\xc8\ \xe5\xdd\xeb\x66\x68\x7d\xd7\x92\xfe\xd2\x1e\xd4\x0e\x18\x89\x96\ \xe1\x1d\x50\x50\x7b\x9b\x33\x40\x84\x3d\x90\x21\x1a\xca\x20\x83\ \x0f\x7c\x40\x06\x0a\xa8\xbe\x0a\x6d\x2f\xc3\xde\xa3\x78\x8e\xa2\ \x22\xdd\xdb\xe8\x0c\x06\xda\xdc\x18\xbe\x06\xcc\xa0\x01\x3f\x37\ \x71\x03\x3e\xd0\x74\xd2\xa3\x78\xdd\x20\x99\x47\x3f\xea\x3d\xef\ \x78\x37\x5a\xeb\x96\xff\x72\xa3\x05\x9c\x79\x37\x12\xdb\x89\x5e\ \xed\x01\x98\xfe\xfe\xad\x6c\x2c\x58\x12\x0c\x30\x80\x01\x19\xe6\ \x31\x0f\x1f\x60\x41\xc7\x50\x20\x71\x51\x25\x21\x87\xae\xbd\x57\ \xe2\xb2\x1d\x61\x12\x76\xff\x5c\xe8\x96\xa1\xda\xc3\x07\xfe\xf0\ \x41\x27\x07\x87\xb5\xd4\xbf\x13\xe1\x0e\x38\xd7\x0f\xfd\x30\x72\ \x7b\xe0\x75\x93\x37\x79\x5f\xc6\x7c\x60\x97\x06\x29\x47\x76\x9d\ \x90\x01\x7b\xb0\x27\x41\xe5\x03\x22\xf0\x69\xc4\x00\x05\xef\x30\ \x0f\x54\xf0\x06\xd3\x40\x7e\xaf\x47\x77\x12\xf2\x01\x16\x15\x0c\ \xec\xc7\x77\xb7\x27\x0c\x45\xf7\x44\x68\x43\x04\xb2\x77\x36\x33\ \x80\x7f\x1f\x30\x3e\xee\x20\x07\x92\x20\x09\xb0\xb6\x36\x88\x06\ \x12\x38\xf7\x6b\xfd\x20\x0a\x05\x48\x79\xce\x67\x79\xa3\xe0\x02\ \xf3\xb6\x6b\x5f\x56\x7d\xae\x45\x76\xc2\x00\x06\x03\xf6\x25\x97\ \x94\x01\xdf\x70\x81\x3d\x26\x02\xcc\x06\x05\x14\x00\x03\xa9\x37\ \x77\x64\x50\x05\xab\x07\x59\x55\xc0\x05\xf7\xd0\x6f\xb3\x37\x1e\ \xa1\xd4\x09\xda\x10\x18\x68\x45\x54\xee\xf0\x73\x0d\xe0\x06\xb9\ \xe0\x06\xc0\xe7\x06\x3e\x00\x5e\x5b\xe0\x0e\xf3\xd3\x71\xf6\xc3\ \x0d\x60\x00\x79\xbf\x26\x0a\x40\x18\x7d\x5a\x47\x79\x25\x57\x72\ \x5e\x16\x6d\xfe\xef\xf0\x42\x39\x15\x81\x60\xb0\x70\x4f\xc8\x56\ \x19\x80\x05\xdf\x00\x08\xa3\xe7\x82\xf3\xa0\x0c\x5b\x38\x77\xf7\ \x80\x05\x64\x70\x70\x55\xd0\x86\x6e\xb0\x42\xe4\x43\x01\x7e\x67\ \x5e\xb7\xc7\x4e\x0d\xe5\x03\x79\x30\x83\xf7\x94\x01\x6d\xd8\x00\ \x3e\xc0\x63\xd7\x71\x0e\x7b\xc2\x04\x29\xe6\x0f\x3f\x48\x80\xfd\ \xd0\x87\x50\xd0\x03\xbb\xf8\x6b\x44\x38\x88\x21\xd7\x68\xf5\x76\ \x88\xc1\xb6\x27\x32\xf0\x84\x9c\xb4\x56\x45\x92\x01\xc6\x54\x05\ \x54\x18\x5e\xd3\x50\x7a\x64\xd0\x81\xd3\x70\x8d\x64\x40\x06\x58\ \x80\x05\x55\x00\x06\x19\x00\x7b\x9e\xf4\x0d\x71\xc4\x05\xda\x00\ \x4a\xe6\x55\x0d\xd5\xb0\x4e\x3c\xf7\x73\xf7\xf7\x04\xb9\x10\x86\ \x3e\x70\x4f\x35\x78\x83\x38\x08\x3d\xff\x97\x48\x20\xf1\x09\x60\ \x40\x80\xfb\xf8\x8b\x7b\xe0\x8b\xcb\xc7\x7c\x5a\x27\x03\x83\xd8\ \x62\xbf\x76\x88\xc8\xa4\x34\xa6\x96\x8c\x60\x47\x67\x3d\xf7\x0d\ \x3d\xf6\x0d\x96\x54\x8d\xa9\xa7\x0c\x5a\x38\x0d\xd1\x50\x0d\xd3\ \xe0\x03\x74\x27\x7b\xed\x67\x4c\x14\xa0\x0d\xc2\x24\x5b\xd5\x40\ \x47\x3e\x25\x03\x83\xe2\x82\x6e\xe0\x8a\x35\x18\x8f\x2e\x79\x51\ \xcc\x96\xfe\x29\x82\xa5\x07\x65\xb6\x7c\xfc\xa8\x8b\x7d\xd8\x03\ \x40\x08\x06\x25\x37\x72\xc2\x28\x6f\xff\x08\x69\xbb\x16\x3d\x95\ \xd6\x88\x98\x04\x26\x92\x55\x06\x55\xe0\x01\x0e\x26\x91\x69\x00\ \x06\x15\x69\x91\x98\x18\x0d\xd1\xf0\x0d\xd3\x00\x06\x3d\x97\x01\ \xf7\x40\x01\x55\xe0\x8c\xa0\x44\x01\x68\x48\x47\x33\x06\x59\x69\ \xa5\x56\x3f\xd5\x49\x5e\xe8\x0e\x69\x59\x87\x4f\x30\x5a\xb0\xa0\ \x87\xb7\x02\x53\x4f\x00\x90\x36\x99\x8b\x80\x78\x97\x40\x08\x79\ \x3e\x49\x90\xef\xf0\x0e\x97\xd7\x03\xc6\xd8\x90\x73\x27\x60\x95\ \x06\x05\x6d\x44\x04\x4f\x20\x89\x80\xc0\x94\x66\x15\x0d\xb2\x02\ \x06\xd7\x88\x89\x52\x29\x95\x57\x09\x06\x58\x50\x0d\x80\x30\x4c\ \xd3\x10\x92\x5f\xa9\x0d\xc4\x70\x81\x12\xe5\x8d\x90\xd5\x73\x69\ \xf5\x01\xdf\xd8\x86\xee\xe0\x03\xf7\x50\x0d\xf7\x35\x2b\x78\x00\ \x97\x9d\x22\x80\xbe\x08\x88\x90\xf7\x83\xfb\x70\x97\xbb\x18\x90\ \x7a\x39\x0a\x7e\xd9\x97\xbe\xe9\x97\xff\xc8\x68\x9f\x97\x29\x85\ \x59\x69\x55\x30\x0f\x86\xa9\x79\x50\x50\x05\xd9\x88\x05\x94\xb8\ \x53\x32\x47\x04\x50\x49\x06\x92\x09\x03\x6f\x10\x7e\x30\xe0\x7a\ \x10\xfe\xa9\x4e\x23\x24\x02\xe5\x48\x0c\x06\x26\x02\xdf\x80\x99\ \xda\xf0\x0d\xe3\x39\x64\x42\x46\x01\x08\xe7\x8a\xc5\xd4\x9a\xb3\ \x02\x9b\x64\x12\x80\x40\xa8\x8b\xf3\x49\x6f\xb8\xd9\x8f\x01\xf9\ \x68\x90\x16\x6f\xbf\xe9\x97\x40\x09\x6c\x88\x88\x8c\x39\x87\x73\ \x60\xd0\x8d\x12\xb2\x73\xdd\xc8\x9c\xe4\x17\x0d\x8c\x99\x4e\x80\ \x20\x21\x50\x40\x06\xd3\x60\x9d\x30\x40\x05\x16\x8a\x9d\xd4\x49\ \x0c\xb7\x15\x8d\xe1\x35\x64\xe7\xe7\x85\xbb\xa7\x34\x3a\x38\x3d\ \x7a\x40\x80\x9f\x40\x80\x1a\x00\x84\x8f\x26\x7d\xcd\x40\x80\xbe\ \xd8\x8f\xb5\x19\x90\xbc\xd9\x9f\xce\x17\x94\x5e\xd6\x46\xa0\x87\ \x73\x4f\x40\xa0\xc9\xf4\x04\x55\xf0\xa3\xc7\x59\xa0\x58\xd0\xa0\ \x4c\x14\x0d\x10\x8a\x89\x15\x4a\x05\x31\x50\x0c\x54\x60\x9d\x1f\ \x78\x7a\x1a\x0a\x73\x3c\x55\x0d\x43\xe6\x9e\xb3\x82\x65\x6c\xa3\ \x07\x14\xa0\x0e\x79\xd9\x0f\x1a\x70\x9b\xfa\x68\x79\xfe\x49\x8c\ \xbe\x96\x97\x3e\xe8\xa2\x3d\x30\xa3\xfe\xa9\x49\x02\xa6\x97\x8f\ \x58\x24\x7b\x40\xa0\xdd\x88\x36\x32\x00\x06\xe3\x97\x73\x41\x4a\ \x06\x30\x60\x07\x0e\x5a\x49\x50\x00\x03\xd1\x60\xa1\x31\x30\xa8\ \xfe\xd7\x19\x7e\xe3\xa7\xa7\x9f\xb9\x53\xc4\xf0\x0d\x06\xb6\x76\ \x3e\xc0\x73\xa3\x55\x24\xb7\xf6\x32\x7a\xb0\x0f\xfb\xa0\x0e\x1a\ \xd0\x0f\x9f\xd0\xa2\x29\xaa\x8b\xc1\x28\x60\xff\xa9\x9b\xfb\x98\ \x97\x44\xd8\x97\xf1\x46\x90\x6d\x0a\x98\xd4\xf7\x25\xa6\xb6\x9c\ \x05\x7a\x73\x3b\x8a\x05\x76\x10\x0d\x74\xb7\x9c\xf3\x70\x8d\xd3\ \x10\x09\x1e\x80\x06\x5b\x80\x06\x31\x00\x05\x69\x00\x05\x13\x2a\ \xa8\x83\x4a\x05\x16\xd9\xa4\xd3\x20\xa1\xda\xd8\xa8\xe1\x54\x0d\ \xa2\x00\x99\x51\xba\x76\x80\x40\x64\x4a\x33\xa9\xd3\xa2\x07\x4b\ \xe0\x03\x1a\xa0\x0e\x14\xb0\x0f\x9a\x5a\xa6\x40\x98\x97\xbc\xc6\ \x9b\xf1\xe6\x87\x90\x37\x9f\xfb\x69\xaa\xbd\x29\x6f\x3d\xd0\x83\ \x91\xf6\x62\x9c\x54\xa0\x55\x80\x8d\xca\x10\x03\x2c\xa0\x05\xe2\ \xb7\xa3\x97\x18\x0d\xd3\xf0\xa3\xf7\x10\x09\xd1\x80\x05\xe9\x57\ \x06\x7a\x1a\xa8\x83\x1a\x03\x6f\x70\xac\x4d\x8a\x89\xd9\x38\x0d\ \x1c\xca\x44\xd3\x60\x98\xd0\x38\xad\x76\xd8\x63\x13\x16\xa2\x2b\ \x12\x31\x7a\xe0\x03\xa2\x70\xa9\x6f\xf0\xb1\x14\x20\x0a\x8f\x76\ \xa2\x04\x28\xb2\x00\xaa\xa6\x64\xea\x6b\x2f\xca\x8f\x69\xaa\xfe\ \xa6\xa3\x40\x90\xbf\x96\x93\x03\x36\x60\xa6\x16\xa7\xb7\x3a\x7e\ \xca\xa0\x05\xc8\x60\x07\xc8\x3a\xa1\x76\x80\xaf\x64\xf0\x04\x71\ \x2a\xa1\xc0\x0a\x05\xca\x70\xa1\x1d\x18\x03\xe1\xa7\xa4\xb3\xaa\ \x85\xa9\x77\x7a\x10\x65\x85\x6c\xd5\x88\x6e\x54\xb1\x3d\xa6\x0d\ \x55\x90\x90\x69\x70\x55\x12\xa3\x07\x72\x20\x0a\x29\xba\x0f\x14\ \xf0\x06\x4b\xea\xad\xf4\xa6\x8f\xb9\xd8\x0f\x2d\xf6\xb2\x43\x08\ \x8c\x91\xd7\xae\xbf\x08\x69\x7c\xe9\x97\xa8\xaa\x93\x8d\x38\xb3\ \x96\x34\xb4\x64\xd0\x88\xd3\x10\x03\x4d\x0b\xa8\x3f\xab\xb3\x80\ \xe0\xb7\x58\x10\x0d\x80\x10\x0d\xc0\xfa\x01\xe1\x17\x0d\x15\x5a\ \xac\x06\x1b\x03\xc6\x8a\x9d\x98\x18\x03\x10\x45\x06\xf1\x0a\x57\ \x55\x20\xa5\xc5\x04\x64\x5b\xdb\x29\x13\x91\x0f\xdb\xaa\x0e\xb7\ \xe9\xa5\x14\x50\x0c\xc5\xf0\x06\x41\xd8\xa2\x25\xbb\x0f\xca\xb7\ \xb6\x2f\xab\xb2\x2d\x66\x84\xc4\x38\x9b\x00\x4a\x90\xb6\x2b\x6f\ \x60\xf0\xac\x86\xb9\x6b\x50\x30\x0f\xd9\xd8\x88\xca\x30\xab\xca\ \x70\x8d\x80\x1b\x03\x3a\xcb\xab\xc8\x4b\x0c\x0e\xf3\xa7\x49\xaa\ \xa4\x90\x4b\xac\x0b\x0b\xa8\x4b\x0b\x51\xd1\xd0\x76\xd1\xfe\x26\ \x59\x60\x60\x07\x43\xf6\xb0\x3d\x16\x81\x4f\x00\x9f\xaf\x81\x0a\ \xda\xa0\x0e\xb8\xf0\xb1\x98\x4a\x80\xfb\xc0\xa4\xdd\xba\xa9\x2d\ \x1a\xae\x64\x70\x9b\x3c\x09\xaa\xcd\xb0\x8f\xc1\xc8\x9b\xc4\x48\ \xa0\x07\x39\x72\x35\xdb\xae\xcf\x9a\x8c\x45\x09\x06\x37\xe7\x65\ \x13\xfa\x81\xbe\x8b\x91\x54\x69\x07\x2c\x80\x06\xc8\xbb\x05\x5a\ \x80\x36\x60\xc0\xb8\x4a\xba\xb3\x83\x6a\x07\x14\x7c\xa1\x48\xba\ \xb4\x44\x7a\x1d\xc4\x00\x06\xb2\x92\xa3\xd0\x26\x2b\x0d\xc0\xbd\ \x3d\x36\x06\x92\x00\xbe\x9c\x91\x0f\xda\xe0\x01\xc4\xf0\xb1\xa7\ \xeb\xad\x5e\xfa\xb1\x6f\x80\xa9\xbf\x76\xa2\xb3\x79\x97\x42\x29\ \x60\xfc\x08\x6f\x7d\x19\x94\x60\xa0\x8f\x39\xe9\x65\xa7\xfa\x8f\ \x00\x0c\x69\x04\xda\x83\xc9\x98\xac\xcf\x0a\xc0\x12\x8a\x91\x08\ \xac\xc0\xc8\x0b\x03\xc8\xf4\xc0\xd1\xf0\xb3\x7e\xcb\xb3\xcf\xbb\ \xb0\x48\xda\xa4\x54\x90\xc1\x5b\xe0\x01\x11\x3b\xb5\xf3\xb0\x07\ \x61\xc6\x55\x52\xba\x05\xa8\x30\x26\x7a\x00\x05\xa2\xf0\x06\xe0\ \x09\x9e\xa7\x8b\xa9\x80\xb8\x0f\x1f\xab\x0c\x99\xba\x7c\x8c\x36\ \xbf\x1d\x2b\x0a\xfb\xd9\x0c\xb8\x29\xa3\x63\x0a\x79\xfe\x7d\xd8\ \x83\x40\x2c\x60\x4a\xbc\x70\xaa\x1a\x6d\x69\xb0\x07\x01\xfc\xbf\ \xbe\x1b\x0d\xc8\x90\xc0\x4e\x8c\x06\xd3\xf8\x0e\x55\x70\xc0\x13\ \x1c\xa8\x17\xea\xb4\xc7\x1a\x7e\xc1\xbb\x53\xd3\xb0\x07\x45\xd9\ \x46\x32\xe0\x6c\xcd\x24\xc2\xe1\x65\xc2\x3f\x54\x02\x42\xeb\x02\ \x9f\xc0\xc6\x63\x00\x9e\x31\x6c\xa9\x96\xca\xad\xa2\xdb\xa9\x3d\ \xe0\x02\xf6\x99\xc7\x90\xd6\xae\x29\x3a\x9f\xcb\x87\x84\x6d\xda\ \x8b\xed\xea\xae\xfe\x2b\x0a\x64\x20\x0a\x95\xf4\x9b\x6e\x24\xb7\ \x3b\xb7\x70\x50\x19\x0d\xc6\x0b\xc9\x1e\xe0\xc5\x6a\x35\x0f\x8c\ \x1b\xa8\x54\x79\xcd\xe1\x17\x99\x47\xab\xa4\x5a\x8c\x0c\x10\x15\ \x03\x42\xeb\x65\x61\xf6\x04\xc8\xdc\x8c\x52\x8a\xca\x6c\x81\xad\ \xf5\x86\x80\x9f\x90\xbe\xc4\x60\xba\xa2\x2b\xba\x96\xfa\x06\xb2\ \xbc\x0f\x1a\xb0\xa2\xbe\xf6\x83\xf3\xb0\x0f\xf1\x5b\xc3\x29\x9a\ \x93\x91\x37\x7d\x2f\x0b\xca\x80\x18\xc0\x84\x79\x73\x2f\x76\x6f\ \x12\xd2\x97\x6c\x0a\x95\x7b\x1a\x03\xc8\xa0\x05\x09\xec\x01\xf3\ \xc0\x56\xa7\xb7\xb8\x80\xca\xb8\x48\x3a\xbc\xc7\x6a\x07\x12\x0d\ \xb9\x76\x10\xad\xe1\x44\x06\x74\x6a\x6a\xa5\xe7\xfe\x4e\x7b\x52\ \x06\xd7\xa7\x6c\xab\xa0\xce\xec\xe1\xb5\xf9\xbc\xa9\x5e\xc7\xca\ \x72\x7c\xba\xb8\x80\x0b\x72\x7c\xcf\x3b\xed\xad\x91\x97\x93\x3f\ \x48\xaa\x3e\xf8\xac\xbb\x58\xc4\x45\x6d\x98\xc0\x89\x73\xe4\x27\ \x0a\x37\xea\x65\x60\x54\x7d\x39\x2a\xa1\x7b\x4a\xd1\x0a\x8c\x0c\ \x1c\xbc\x07\xd3\xd0\xa4\x54\x89\x9d\x4e\x8b\x9d\x54\x60\x07\xc8\ \x20\xd1\xc4\xe0\x01\x3b\xbb\xab\x08\x35\x06\x1c\x1c\xac\x8d\x08\ \x76\x44\x90\x01\xa6\x1c\x5e\x67\xbc\x1e\xf9\x30\xb6\xfb\x10\x06\ \x85\xd8\x0c\x6b\xf0\x09\xe5\xfb\x06\xb8\x10\x06\x61\x30\xcb\xf8\ \xfc\xa5\xf6\x2c\xd4\x06\x19\xd4\xcc\xa7\xb2\xcb\x37\xaa\x77\x39\ \x0f\xb4\x69\x98\x96\xd4\xae\xb7\x1a\xc6\x9b\x34\x65\x7b\xf2\x0e\ \x06\x3d\xa1\x12\xcd\x02\x9a\x4d\x05\x60\xc0\x56\xf3\xa0\x85\x92\ \xcb\xd5\x49\x2a\xd1\xc8\x80\x0c\xc4\xc0\x02\xd3\x4c\x0c\xe0\x0c\ \x51\x4e\x69\x7a\x59\x0b\x26\x32\x30\x0f\xcc\x0a\x70\x71\xfd\x1b\ \x7a\xc0\x0d\x5b\xfa\xb1\xf9\xec\x02\xac\xfc\x6e\xac\xac\x01\x1f\ \xfb\x09\x9f\x10\x06\xdb\x8a\xcf\x1d\x6b\xa9\xca\xc0\xa5\xc0\x66\ \x9f\x99\x0a\x8c\x3c\x5c\xc3\x4a\x3d\x7e\x8c\xfe\xcd\x8b\x84\x29\ \x0a\x0a\x4d\xd9\x0a\x19\xa7\x3e\x3b\xc1\x76\x00\x03\x74\x7a\x89\ \x7a\x4a\x05\xd7\x8c\xb4\x54\x50\xda\xe6\x8d\xda\x68\x40\xd6\x66\ \x0d\x51\xf3\xa0\x56\xe3\x47\xa7\x60\xd0\xd2\x65\xfc\xd2\xb6\x9d\ \xa2\x82\x5d\x0c\xfb\xf0\x09\xbc\x2d\xdc\x6b\xd0\x0c\x2e\x10\x06\ \x6f\x50\x0c\xb8\x20\xdc\x7f\x6d\xcf\xf6\x5d\xcf\x30\xa0\x01\xe6\ \xda\xbe\x01\xd9\x62\x2a\x8b\x73\x49\x9c\xbb\xbe\x3b\xe1\xe4\x87\ \x73\xc6\x88\xdd\xd1\x63\xb3\xd4\x59\xa1\x14\x0c\x03\x62\x6c\xb4\ \x10\x5c\xac\xd0\x9b\xd9\x2c\x70\xda\xbb\xaa\xc2\x4c\xc9\xab\x10\ \x65\x07\x86\xf9\xbf\x3e\x40\xd2\x65\x6c\x28\x30\x4d\x14\xf5\xd2\ \x09\xea\x10\x06\xc3\xad\x0e\xa7\xcb\xbe\xc2\x4d\xd3\xcd\x80\x0b\ \x3b\xde\x0c\x61\xa0\x0e\x31\x8c\xa9\xb7\x29\x0a\xca\x90\xb0\x89\ \xbd\x9f\x00\xa9\xc7\x48\xd8\x8b\xf8\x3b\xcc\xe4\x77\x9c\x4b\xac\ \x0c\xc8\xd9\x80\x18\xce\x49\x3d\x50\x05\xc1\x6b\xbc\x5a\x80\xb8\ \x75\x7a\xb0\xe6\x7d\xb0\x62\xfe\xc8\x9a\x8d\xda\x1e\x80\xde\xe9\ \xcd\xc5\xd7\x91\xb5\x08\xca\xa7\x31\x8e\x50\x33\x2e\x14\x7a\x50\ \x0d\xa6\x5b\x0c\xea\xe0\x68\x7b\xad\x01\xfe\x38\x4e\xe0\x9b\xda\ \x6b\xfb\x10\x03\x03\x3e\xdc\x72\xac\x0e\x49\x1e\xd8\xc9\xbd\x0f\ \xc0\xb8\xb6\x00\xd9\x87\xbb\x36\xcc\xcf\xda\x03\x3b\xba\xa3\x09\ \xea\xbb\x4b\xcc\xd4\xd5\x87\xe1\x65\x60\xa7\xe5\x1d\xc9\xe2\x6c\ \x7a\x8f\x1c\xea\x61\x6d\xa1\xce\x5b\xda\x9a\x9d\xe6\x27\x3e\xcd\ \x5b\x10\xd6\x3b\xe5\x7d\xc1\x6a\xb5\x71\xce\x44\x73\x7e\x13\x92\ \x50\x0d\x3a\x7e\xe7\x9f\x90\xd7\x44\x2e\xcb\x83\x8e\xe3\x5e\xd7\ \xca\x1a\xe0\xdf\xc2\xed\xa5\x62\xfb\x06\x64\xf0\xa5\xca\xa0\xe8\ \xce\xad\xb2\xbe\x58\x8c\x84\x39\xcc\x3e\x57\x94\x40\x7a\x9c\x15\ \x4e\xb3\x91\x0a\x4b\xc9\xd8\x03\xa7\x67\xaf\x91\xec\xdd\xb1\x7d\ \xde\x61\x0d\xb9\x4b\x1b\xc1\xe7\x3d\xcd\x68\x5e\xe2\x70\x8e\x50\ \xc4\x70\x70\x91\x10\xeb\x66\x35\xeb\x33\xe1\x16\x44\x1e\xc3\x77\ \xae\x0e\x9b\x0a\xdc\x30\xdc\xeb\x61\xd0\x0f\xfd\x3d\xdc\xfa\xcd\ \xdb\xed\x2b\xcb\xef\x6b\xa9\xba\xa9\x97\x80\xd9\xae\xc0\xec\xcc\ \x3e\xe7\xa3\x6d\x70\x73\x09\xda\xbf\x99\x8e\xdd\x5a\x7e\x89\x4a\ \xaa\x05\x3a\x3b\x0f\x95\x54\x05\x82\x5a\xda\xe2\x2e\x99\xa4\x5e\ \xe6\xa8\xae\xc2\xc4\x10\x03\x6f\xfd\xfe\xd6\xee\x5e\xdb\x7b\x81\ \x0a\x92\x40\xe4\xf2\xac\xe3\x63\x80\xe7\x7a\x1d\xba\xf6\x9c\xeb\ \x27\x8a\xe3\xc2\xce\xbe\xb8\x4c\xb2\xfd\xb0\x0f\x87\xce\xba\x75\ \xf9\xcb\xa3\x50\x94\x72\x4b\x49\x7b\xd0\x73\x08\xf7\x04\x6d\x00\ \x06\x49\x9f\xa0\x7d\x88\xe5\x18\xbe\x73\xa2\xb0\xdd\x3c\xcb\xc1\ \x6e\xb7\xb4\xcf\x6b\xec\x3c\xbf\xb8\x16\x0a\xd2\xa4\xad\xda\x5e\ \x1f\x03\x30\xee\xee\x6d\x86\xf2\x8a\x24\xbe\x78\x1e\xe0\xf2\x5c\ \x0c\x74\x84\xe7\xb8\xa0\x01\x39\x2d\xba\x61\x90\xf3\xdf\xca\xca\ \xc2\xed\xdf\x74\xef\x83\xf7\x6c\xcb\x2e\x2a\x7d\xfe\xe8\x65\x67\ \xf9\x01\x47\xdf\x06\x08\x97\xf4\x3b\xda\x88\x11\x8f\xe1\x43\x1b\ \xd1\x3a\x1b\x0d\x4f\xc0\x49\x7a\x7a\xb4\x1d\x3f\x0d\x59\x8c\xc9\ \xa5\xee\xf5\x23\x1f\x03\xda\x60\x07\x26\x2f\xf6\x08\x45\x85\x64\ \xef\x15\x5a\x1a\xe0\x6f\x30\xe4\xc5\xf0\xf2\x77\x7e\x63\xf5\xfe\ \xd7\xe4\x5b\x6f\x3d\xfe\x6e\xc3\xcd\xe7\xfe\xed\x68\xcc\x0d\x84\ \xa3\xab\x8b\xcc\x27\xf4\x08\xc7\x73\x50\xe0\x06\xbb\x8f\xf4\x47\ \x7f\xf4\x95\x36\x81\x18\x9e\x36\xa0\xf7\xd9\x60\xad\xb3\x76\x00\ \x06\xa0\xa7\x0c\x54\xe9\xcd\xc6\xfe\x5a\x9d\x1f\x0f\xd2\xa5\x7d\ \xda\xaa\x3d\xc1\x54\x10\xf6\x9c\x1f\x5e\xf4\x3d\x20\xb6\x6e\xba\ \x6f\x00\xdc\x77\x6e\xba\x74\x64\xfa\xa6\xdb\xf6\x96\xda\xe7\xfc\ \xed\x68\x7f\x3d\xe0\x76\x5f\x72\x76\xd9\xa9\x71\xcb\xec\x8d\x28\ \xe9\x08\xe7\x06\x4f\x60\xff\xf8\x6f\xff\x3d\xd7\x73\x6f\x3a\xfc\ \xb3\x32\xb4\x00\x41\x25\x06\x32\x2d\xd1\xa0\x94\x01\x03\xc3\x8e\ \xc0\x18\x31\xa8\xc0\x50\xa6\x0c\x06\x0c\x2a\x54\xec\x34\x1c\x88\ \x0c\x99\x07\x62\x1d\xed\x68\x8b\xe1\x61\xcb\x48\x92\x25\x4d\x9e\ \x44\x99\x52\xa5\x08\x7f\xff\x5c\xbe\x84\x19\x53\xe6\x4c\x9a\x35\ \x69\xea\x91\x33\x4f\x83\xba\x62\xda\x8a\xe1\xda\x59\x4c\xe8\x50\ \x6d\x3e\x85\xbe\xd1\x10\x46\x43\xd2\x4f\x4d\x9b\xb9\xf8\x14\xe6\ \x0d\xd2\x4f\x4f\x5d\x34\x6b\xd6\xaf\x9f\x28\x0d\xfb\xf6\x69\xd0\ \xda\xaf\xc7\xd8\x3d\x50\x7a\x80\x81\x02\xc5\xcd\x13\x37\x6e\xda\ \xb4\x6d\xfb\x41\x6e\x99\x32\x32\x64\xa4\xc1\x9b\x57\xef\xde\x34\ \x44\xf6\x42\x99\xa7\xb0\x21\x96\x3d\x32\xc0\x44\xab\x88\xf1\xe1\ \xc4\x89\x89\x33\x6a\x24\xc6\x82\x18\x32\x62\x0d\x3b\xaa\xc4\x9c\ \x59\x73\xc9\x6f\x7a\x6c\x7e\xfe\x06\x1d\x3a\xa6\x1e\x49\x4b\xfb\ \x69\x98\xfa\x06\x57\x98\x30\x3c\x87\xbe\x1e\xaa\x2e\xe9\x52\x51\ \x55\xb1\x36\xfb\x84\xeb\xcd\x3e\x5c\x55\xaf\xe2\xee\xf7\xa9\xdf\ \x3e\x65\x5f\x45\x69\xfd\xd4\x63\xcf\x72\x28\x4f\x3e\x3c\x79\xf2\ \x16\xae\x9b\x19\x1f\x66\xc0\x81\xe3\x97\xef\xf6\xbc\x32\x46\xd9\ \xc5\x2b\x63\x0f\x98\x69\x0a\xa9\x90\xb1\x7b\x38\x1a\xc5\x8a\x54\ \x22\x4a\xa4\xd8\x50\xe3\x7c\xca\x94\xed\x7c\xb4\x23\x72\xf3\x7e\ \xfe\x24\xb5\x2d\xf1\x4c\x34\x01\x07\x74\x49\x0f\x54\x7c\x52\x27\ \x8c\xa6\x94\x62\x2a\x2a\x75\xa6\x7a\xed\xc1\xa1\xbe\xea\x0a\xac\ \xa6\xd6\xc0\x2a\x8c\x7d\xa8\xc2\xea\xb7\x66\xc6\x1a\x6e\x9f\xe3\ \xb6\x4a\x6e\x8f\x51\xd2\x7a\x42\xad\xb7\xda\x30\xa2\xad\x19\xa8\ \xcb\x4e\x2f\xf1\xee\xe2\x8e\x88\xbb\x64\xe8\x21\xad\xc2\xf6\xe8\ \xa1\x0a\x32\x24\xc2\x02\x0c\xbc\x02\x7b\xa8\x22\x88\xde\x63\x0f\ \x23\x64\x58\xa8\x0f\x19\xc5\xa2\x89\x46\xbf\xfe\xa6\xd4\x8c\x82\ \x5a\x08\xc4\x12\x34\x3d\xf2\x89\x6d\x1f\x05\xfb\x61\xad\x29\x17\ \xa0\x0a\x03\x17\x9e\x1e\x54\x87\xa7\x31\x8a\xd9\xcd\xab\xaf\xc0\ \xac\x6a\x8d\xa6\xbc\xb2\xfe\xcd\xc3\x51\x46\xc9\x0a\xac\x1e\x84\ \x53\x6e\x39\xf1\x9e\x6b\x23\xd0\x16\x8d\x08\xa2\xad\xec\xb4\x4b\ \xa3\x0c\x1d\xf5\x42\xf4\x1d\x1c\xc5\x3b\x4b\x14\xb4\xc0\x98\xe7\ \xc7\xf5\xa6\x81\x22\x0d\xc3\x28\x62\xac\x38\x24\xdb\x93\xcf\x03\ \xc8\x90\xb9\x28\x06\x3b\xbe\xb1\x03\x10\x2a\x57\xcd\xcc\x87\x00\ \xb3\x84\x15\x26\x3d\x3a\x39\x0a\x4d\xde\x58\x0b\xd3\xaa\x66\xca\ \xac\xd5\xb5\x37\xd2\x74\x93\x36\xa7\x70\xa3\xf3\xb6\xab\x5c\x30\ \x11\x4f\x3e\xc9\xf2\xd3\xae\x0f\xdc\x12\x94\x45\x23\x5a\x9c\xc1\ \x2f\x22\x88\xa0\xeb\xb9\xc2\xc2\x1b\xe5\x1d\x47\x65\x00\x2c\x47\ \x4a\xe7\x01\xa3\x5c\x4b\xa1\xc4\x14\xaf\x84\x20\x3a\xf2\xc7\x88\ \xda\x63\x88\x05\x16\x44\x95\xec\x3e\x7b\x63\x20\x86\x55\x7d\x51\ \xd2\xe6\x89\x57\x63\xc5\xd2\xc0\x35\x85\x42\x93\x4d\xa0\xc0\x0c\ \xf3\x93\x31\xa3\x7a\x83\x60\xd7\x80\x4d\x2a\xc4\x06\x71\xeb\x4a\ \xe1\xa7\xf6\x40\xd6\x85\x6e\x47\xd9\x63\x59\x13\xed\x92\xa1\x8c\ \x0f\x02\x6d\x03\x1f\x93\x4b\xc6\xc7\x88\xeb\xae\x95\xab\x65\x28\ \x64\x70\x34\xad\xba\xcc\xea\x81\x0c\x32\xca\x9d\xa7\x0a\x72\xe7\ \x99\x26\x9a\x8b\xec\xfe\x50\x26\x53\xc3\x94\x99\x26\xa2\x7d\xa6\ \x21\x0e\x3e\x50\x35\x62\x52\xa3\x9f\x63\x00\x04\x6a\x29\xf7\xa5\ \x9a\x98\x0c\xfa\xf8\x17\x60\xd1\xf4\x10\x61\x0c\xaf\x07\x66\x93\ \x4d\x75\x70\x09\x4e\xa9\xa6\xe2\xcc\xcd\x60\x5c\x6a\xdd\x0d\xac\ \xad\xbc\x0a\x8e\xe2\xaf\x9a\xc1\x13\x4f\x64\xef\x7c\x87\xe3\xe4\ \x7a\x80\x59\x53\x91\xa3\xbb\xc7\x64\xc1\xa7\x0d\xe2\x3a\xec\xaa\ \x83\x83\x2e\xba\x88\x00\x0c\xad\xf1\xca\x95\x88\x8c\x79\x26\x9f\ \x46\x72\x85\xb4\x60\x21\x06\x18\x84\x06\x83\xe8\x69\x2a\x27\xa3\ \x68\x89\xda\x73\x72\x3e\x8c\x16\x62\xe8\x3e\x55\xa9\xa6\xba\x6b\ \x51\x88\xe8\x43\xeb\x01\x25\xd1\xe6\x6b\xaf\x8d\xaa\x75\xb5\x05\ \x83\x3b\xbb\x29\x33\xc9\xde\x09\xc2\x62\x28\x00\x4b\x14\xae\x8e\ \xab\x4a\xc3\x7d\xaa\x1a\x05\xd9\xa7\xee\xec\xf6\x9d\x66\xc0\x50\ \xee\x1d\x1b\x01\x15\xd4\x08\x69\x09\x2d\x7c\x06\xef\xad\xfb\x00\ \xbb\x32\xb0\x05\xa3\x0a\x30\x52\xa4\xb4\x8a\x9e\x95\x99\xdc\xe6\ \xcf\x61\x88\x41\xde\x82\x32\x2d\x83\x0c\x18\x6c\x9e\x47\x94\x4a\ \x25\x1a\x9d\x21\xf9\x1a\x42\x9d\xbd\xa0\xb4\x3a\xd6\x51\x69\x0c\ \x22\xd8\x42\xd7\xfe\x28\x30\xbe\xd8\xc9\xee\x33\xa4\x11\x8a\xd7\ \x8a\x61\x3b\xb0\x15\x63\x6c\x65\x0b\x83\x9c\x72\xa3\xa0\x32\x25\ \x48\x29\x4a\xa1\x40\x31\x62\xd0\x36\x0d\x88\x42\x41\x55\xf9\xc4\ \x52\x98\x07\x3d\xac\x98\xc8\x5b\x32\x98\x1e\x14\x3e\x40\x97\xb6\ \x4c\xab\x45\x6e\x20\x5c\xa1\xa6\x53\x9d\x20\xc8\xa5\x3a\xcf\xb9\ \x47\x15\xa0\xd3\x1c\xf3\x91\x21\x1a\x58\xb0\x59\xe8\x42\x17\x0d\ \x64\xa0\x01\x0d\x2c\x88\xc6\x1e\xd2\xb0\x87\x9e\x81\x6e\x72\xf0\ \x19\x9d\x62\xe0\xc5\x1e\x2a\x20\x06\x5f\x53\x2b\xe0\x66\x44\x30\ \x46\x92\x8c\x41\x1b\x42\x82\x45\xd6\x1c\x08\x13\x54\xac\x02\x6c\ \x14\xac\x20\xc1\x7a\x93\x30\x5c\x78\x45\x41\x40\x59\x8a\x9e\xfa\ \xe1\x1a\xe2\xb9\x8d\x77\x4d\xa9\x4d\xb2\xa0\xc7\x31\xba\xc1\xac\ \x2c\x68\x71\xc3\xb3\xe0\x12\x84\xc2\x31\x32\x08\x84\x9a\x56\x5b\ \x7a\x38\xc9\xea\xb8\x05\x13\x41\x84\x4e\x1b\xc0\xd0\x86\x2a\x44\ \xe2\x88\xf7\x48\x62\xd1\x9a\xf8\x44\x2a\x40\x81\x71\x88\xb9\xdf\ \xe4\x78\x36\x91\x2c\x36\xa4\x3d\x8c\x51\xc8\x7d\xbe\x88\x86\x30\ \xf6\x67\x8c\x08\x1c\x89\xd7\x7c\x80\x17\x58\xac\x51\x26\x02\x8b\ \xe3\x04\x6d\xfe\x07\x1b\xd5\x80\x09\x17\xab\x41\xcd\x31\x71\xa5\ \x14\x75\x88\xe2\x43\xa8\xa1\x80\x6c\x34\x70\x36\xe4\x08\xe7\x36\ \x74\xcb\x5b\xde\xf6\xd0\x0c\x3f\x95\x21\x91\x92\x9c\x41\xf7\x1c\ \xf9\xc8\x41\xdd\xd0\x0d\x85\xf2\x1e\x1c\x5e\x84\x89\x4b\xe2\x83\ \x93\x4f\xa8\x42\x15\xee\x81\x85\x48\xc0\x00\x89\xf2\xb4\x9f\x1d\ \x9c\x88\x86\x52\x1a\xe6\x3e\xca\x90\x1c\xe5\x8e\x44\x11\x27\xbd\ \x72\xa0\x17\xa9\x4c\x47\xf2\x55\x4b\xfe\xe0\x32\x97\x63\xd8\x47\ \x5e\x7a\xe9\xcb\x02\xa1\x62\x98\x61\x8b\xe0\x9a\x2a\xb8\x26\x0f\ \x06\x6f\x43\x53\xf9\x8a\x82\x76\xa2\x8e\xaa\x0c\x27\x4d\x40\x09\ \x03\x72\x78\xd7\x83\x0f\xb1\x34\x59\x2f\xe4\x51\x5d\x64\xd0\xb2\ \x46\x86\x73\x9c\x8f\xc4\x29\x0e\x25\xf9\x81\x20\xa8\xd3\x92\xec\ \xc4\x47\x15\x02\x25\x54\x32\x44\xe2\x3e\x91\x98\x86\xce\xc8\x80\ \x85\x51\xa2\x61\x73\x7b\x98\x87\x16\xa8\x90\xd4\x4a\x15\x8d\x5d\ \xf0\x73\x88\x91\x3a\x45\x11\x84\x22\x03\x10\xc8\x60\x28\xab\x44\ \xa0\x0d\x1f\xd0\x28\x0f\x6a\x04\x98\x1e\xf4\x50\xbb\xaf\xc5\xe6\ \x35\x1a\x3d\xca\x04\x7f\xa2\x9b\xd4\xd4\x71\x2a\x40\x71\xd0\x34\ \x7b\xb0\xfe\x47\x34\xb1\x06\x4e\xc2\x49\xce\x53\x58\xca\xcd\x6e\ \xa5\x41\x9b\x21\x53\x27\x4f\x6b\x7a\x53\x1b\x3a\xf2\x9c\x92\xa4\ \xce\x8b\x8c\x90\x09\x7b\xb0\x33\x13\x42\x15\xea\x3c\xed\xa0\x05\ \x3b\x60\xc1\x47\xa1\x8b\xc1\x3e\x95\x51\x96\x2a\x74\x51\x72\xa1\ \xb3\x6a\x63\x0c\x3a\x3a\x58\x5e\x24\x6a\xf8\xa2\x65\x58\xa7\x34\ \x86\x4e\x50\x40\x2f\x33\x40\x6b\xac\x20\x98\xd1\xdc\x0d\x45\x82\ \x3f\x69\xd8\x9a\x7e\xa5\x9b\x63\x46\x65\x43\x0a\xc2\x4d\x72\xa2\ \x12\xbc\x34\xf9\x55\x38\x29\x55\xd8\x20\xa1\xe7\xad\x6f\x89\xec\ \xb1\xe7\x74\xa4\x0d\x1b\x7b\xd3\x45\x16\xca\x08\xf8\xc8\x44\x78\ \xed\x51\xd9\xc0\xc5\x13\x13\x9b\x2d\x48\xe5\x78\xa6\x4f\x27\x06\ \xad\x66\xeb\xd1\xd9\xfb\x60\x00\xa5\x57\x1a\x4d\xb5\x45\x42\xcc\ \x7d\x7c\x06\x46\xd9\x6a\x86\xb6\x3e\x78\x87\x5e\x5a\x42\x51\x54\ \x54\xc3\xb7\xb1\x19\x9b\x84\xe4\x9a\x20\x75\x80\xed\x98\x49\x21\ \x93\xd9\x9a\x81\x21\xac\xa4\x90\x27\xaa\x89\x18\x0a\x9b\xa2\x9c\ \xe9\x2e\x67\x0f\x01\x76\x16\x5c\xb4\x4b\x4e\xed\x72\x4f\x9c\xe1\ \x7c\xac\xf6\x4c\x96\x09\x4c\x50\x76\xbc\x97\xac\xc2\x79\xb5\xc0\ \x59\xfe\x24\x56\x2a\x1a\x4e\x84\xa2\xa4\x8c\x18\x8d\xca\x29\x03\ \x0b\xf3\xdd\xe2\x7b\x22\xc2\x1e\x8a\x40\xc9\x67\xf8\x22\x06\x7f\ \xfb\x8b\x12\x5c\x2a\x10\x51\x7d\x19\xf0\x1a\xd5\x5a\x0d\x08\x49\ \x50\x35\xc7\x34\x93\x30\x2d\xc8\x93\xae\x59\xf0\x84\x25\x55\x5e\ \x18\x6e\xf3\xdc\xa0\x14\x43\x03\xbd\x79\x4a\x72\x59\xaa\x31\x6f\ \x71\xec\x3b\x7d\x81\xc3\xb3\x6c\xc8\x8d\x25\x10\x6e\x5a\x99\xd8\ \xae\xf7\x1a\x99\xdd\xef\x66\x62\xc5\x2e\x8e\x44\x24\xee\x31\xe8\ \x48\x68\x01\x0d\x9a\x23\x83\xce\x60\xc0\x02\x34\x68\x01\x06\xe4\ \x42\x6d\xe8\x26\x72\x64\x87\xac\xc7\xbe\x9c\x7a\x08\x94\x26\x62\ \x87\x8e\x28\x79\xc9\x27\x21\xc6\x18\xbd\x46\x01\x1a\xe5\x85\x08\ \xb9\x85\xd5\x96\xcc\x14\x5c\xa1\xac\x86\x83\x6b\xfb\x6d\x5b\x13\ \x84\xa1\x05\x75\xe5\x57\x62\xd9\xab\x56\x3a\x68\xc1\xa4\x4c\x58\ \x63\x74\xa3\xdb\x4b\xbf\xc5\x32\xb7\xb8\xc3\x08\xdc\xb0\x04\x2d\ \xb8\x01\x49\x13\x4c\x0b\x1e\x84\xf3\x5e\xb4\xd5\xf9\x48\x7c\x54\ \x16\x13\x82\xc3\xc4\x78\x03\xad\x59\x43\x3b\x9a\x0c\x92\x82\x81\ \xa1\x11\x4d\x29\x25\x2a\xcd\x0e\xa4\xb2\xc3\x91\xe0\x43\xe4\xf9\ \xfe\xb2\x52\x30\x5b\x88\xed\xa7\x55\xa2\x50\x62\x8c\xc1\xb6\x7c\ \x69\xa0\x2f\x49\x73\xcc\x08\x5a\x10\x28\xae\x56\x93\x19\xb5\x6c\ \x41\x8b\x91\xf9\x41\xd3\xd4\x8a\x85\x2c\x3c\xb6\x30\xb1\x74\x90\ \xc8\xa2\xae\xe2\x9e\xe5\x8e\x36\x18\x60\x09\xf9\x58\xc5\x2a\xb8\ \x81\x67\x48\x4e\x96\xe3\xd1\xee\xa9\xf7\x70\x58\x6d\x7b\xf8\xd9\ \x9d\xf8\x60\x67\xa0\xb1\x50\x1e\x3b\x30\x29\x1a\x89\x26\xcf\x92\ \xa6\xfa\xed\xf8\x96\xc7\x67\xe7\x6e\x88\xa5\x19\x53\x24\x78\x59\ \x9a\xe5\x9e\x96\x37\x49\x6e\xb9\x85\x31\x54\x81\x3b\xf9\x96\x72\ \x82\x8b\x41\x8c\x5e\xad\x26\xe0\x12\x04\x5b\x82\x7a\x97\x9b\x9d\ \x80\x25\x0c\x5c\xe1\x5d\x07\xf1\x18\xb7\x64\x99\xe8\xc3\xd8\x52\ \x8b\x5b\x96\x30\xf6\x25\xac\x62\x0b\x19\xe7\xc6\xb3\x33\x01\x8f\ \xf0\x86\xd7\xc4\xe9\x84\x03\xb5\x5f\x7c\x6d\xc1\xcd\x53\xe5\xca\ \xa0\x02\xe6\xec\x70\xb3\x1e\xcc\x83\x20\x10\x99\x06\xb9\x44\xf1\ \x23\xc1\x10\xc4\x0e\x3c\x2e\xcf\x7d\xdf\xc0\x90\x8a\xe8\x9c\xd3\ \x40\x0f\x7a\x02\x43\x0d\x88\x5d\x1e\x9d\xa2\x06\x1a\x1b\xac\xc1\ \x96\x94\x34\xf5\xdb\xf3\x66\xfe\x72\x53\xf2\x98\x52\xa5\xd4\xfe\ \xe6\x2a\x0c\x62\xcd\x88\x94\xe3\x9d\x3d\x94\xa1\xf5\x23\x33\xb6\ \x3b\xc8\x2e\x87\x8c\x6f\x01\x15\x96\xd8\x78\xdb\x37\x9e\x43\x42\ \x65\x07\xc5\x2b\x66\x27\xdd\xe5\x69\x0f\x4f\xda\x53\x19\xe7\xb6\ \xc3\x34\xd0\x52\x5a\x64\xbc\x8f\x5c\x60\x20\x7c\x46\x0e\x4f\x34\ \xc6\x20\x46\xab\x02\x59\xcc\x44\xb0\x70\x91\x8d\x44\x3e\x25\x22\ \x00\x44\x27\xb4\x31\x0f\xee\xa4\x01\x05\xa8\xce\x12\xe6\x75\x03\ \x1b\x5e\x37\x4c\xae\x60\xfb\x15\xc3\x13\x66\x61\x0b\x61\x7d\x61\ \x09\x3b\xcd\x3e\xfa\xd1\x0c\x10\x2b\x2a\x3a\x14\x97\xbd\x25\xb0\ \x38\x6e\xc0\x38\x54\x50\xb6\x25\x60\xbb\x25\x58\x3b\xb7\x9b\x96\ \x94\xe9\xa9\x69\x53\x31\x94\x23\x2f\x7c\xb8\x87\x69\xc0\x02\x28\ \xa1\xbe\x86\x50\x06\x30\x28\x0b\x8b\x08\x9d\xf3\x30\x8b\x1d\x1b\ \x88\xe9\x93\x08\x28\x59\x08\xeb\xdb\x39\xf7\x60\xa5\xe3\x3b\xbc\ \x85\xf2\x3e\x50\xd3\x06\x62\x20\xb5\xf2\x43\x01\x8a\xfa\x87\x59\ \x59\x35\x61\x1a\x98\x32\x1b\xa6\x34\xc1\xb0\xa4\x70\xae\xdc\x90\ \x0d\xe1\xa8\x98\xe6\x79\x2e\x22\x34\x9e\x97\xc1\x0b\x40\x01\x40\ \x07\x70\x80\x25\x70\x07\x03\xb0\x38\x03\x30\x02\x78\x40\xfe\x40\ \x7c\x60\xbb\x8d\xe3\x86\xdd\xcb\x04\x6e\xa0\x05\x42\x41\x31\x1b\ \x6a\x03\x17\xbb\xa4\x41\xc3\x82\x1f\xbb\x9f\x7c\x52\x86\x27\x10\ \x0f\x8a\x20\x0f\x2a\x98\x87\xf1\xc0\x3b\x8c\x60\x97\xfc\xba\x08\ \x78\x79\x88\x37\xd0\xb9\x68\x20\x9a\x68\x68\x08\xc8\x0b\x2b\x0f\ \x90\x12\x0f\x30\x23\x11\xa8\x86\x32\x28\x3f\x38\x40\xbf\x80\x41\ \x85\x04\x73\x3f\x09\xea\x3c\x1d\xf4\x1a\xd5\x88\x3f\x94\x8a\x8a\ \x05\xf9\x8a\x05\x51\x87\x7d\xa0\x1b\x17\x60\x90\xb0\xc8\x91\xbb\ \x20\x82\x19\x68\x03\x77\xc0\x07\x07\x70\x03\x14\x40\x01\x23\x68\ \x36\x46\x0a\xa7\x63\xcb\x84\x66\xeb\x42\x2f\xe4\x42\x5a\x48\x36\ \xee\x89\x24\x15\x63\x31\x2c\xb0\x87\x41\xfb\x9c\x88\x08\x3c\x32\ \x78\x88\x1e\x70\x94\xa2\x81\x3e\x2a\x10\x05\x39\x1c\xc1\x81\xba\ \x39\x8b\x40\x9d\x57\x5a\x0c\xfe\x99\x06\x2a\x48\xb2\x17\x1c\x09\ \x11\x08\xb5\x6b\x24\x06\x6d\x08\x3f\x29\x4a\xc4\x45\x24\x10\x3d\ \x38\x00\x65\x5a\x1b\x2d\x83\xb5\x7e\x83\xbf\xf8\x93\x3f\xdf\x51\ \x90\xbd\x32\x8d\x31\xc1\x8d\xd4\xa3\x1e\x19\xf2\x29\x37\x70\x07\ \x27\x44\x01\x46\x32\x01\x07\x28\x9c\x6b\x09\x82\x25\xfe\xe0\x86\ \x66\xab\xc2\x2e\x0c\xaf\xdd\x43\x36\x4b\xb0\x04\x07\xfc\xae\xef\ \x0a\x14\x93\xa9\xc0\x33\x04\x9d\xc0\x83\xbe\xa0\xf1\x8b\x4a\xd9\ \x83\x1f\x41\x8b\xc0\x30\x15\xa2\x29\x41\xfd\xea\xa2\xc6\xe3\x39\ \x58\x62\x25\x3f\x04\xc4\xb0\xc2\x46\x87\xba\x25\x62\x78\x82\xf2\ \xc3\x0b\x22\xb0\xc1\x7d\xbb\xa3\x7e\x7b\xc4\xb0\xf9\x2d\xd5\xf0\ \x41\xa9\xfb\x92\xb3\xd9\x93\x13\xba\x8a\xe4\xe8\x07\x1f\xc8\x80\ \x0c\x80\x0e\xb8\x70\x00\x23\x70\x00\x3c\x30\x02\x3c\x68\x36\x78\ \x08\x82\x6b\x99\x01\x3c\x80\x87\x65\x5b\xca\x2d\x6c\x3b\xb7\xb3\ \xc5\x55\xa0\x85\x94\x69\x40\x93\x31\x82\x4c\xea\xa4\xf5\xc8\x9f\ \xc9\x39\x8b\x79\xe8\x01\xbc\x38\x0b\x19\x98\x9c\xf1\x98\x46\x44\ \xb3\x1f\x8b\x70\xcb\xf5\x68\xb7\x23\x41\xa5\x8f\xf4\x99\x24\x2b\ \xc9\xb0\x8a\x41\x32\x2a\x89\x0c\x60\xc9\xbe\x40\x3a\x07\xd2\x03\ \x0a\x70\xb5\x73\x7c\x0d\xa5\xe0\x2d\xd5\xe8\x20\xd5\xf8\x04\x0d\ \xca\x95\xe4\x82\x2e\xac\xe8\x81\x0c\x10\x85\x0c\x00\x40\x63\x73\ \x80\x55\x54\x4a\x13\x88\xca\x80\xcc\x2e\x80\x7c\xb6\x81\xd4\xc2\ \xb6\x63\x3b\x4b\x58\x85\x5b\x6c\x40\x3f\x0b\x94\xfe\xb5\x68\x83\ \x0b\xe4\xb1\x72\x71\x9c\xb4\xb0\x9e\x19\xe1\x40\xa8\xea\x22\x66\ \x74\xcb\xf6\x80\xcb\xec\xe3\x22\x67\x0c\x89\x2d\xf0\x80\x78\xf3\ \xbe\x6d\xfc\x88\x92\x18\x83\x95\xec\x4b\x22\x88\xb2\x35\xca\x87\ \xcc\xe3\xb7\x08\x91\x13\xd7\x10\x2e\xd6\xa0\xab\xd5\x98\x30\xe3\ \x52\x10\x78\x6c\x0d\x0d\xe8\x01\x8e\x69\x0e\x77\xf0\x4e\xa3\xc4\ \x83\x20\xc8\xcc\x2a\xe4\x06\x54\x30\x4f\x7f\xe0\x1e\x13\xa0\x4a\ \xcd\x5c\xc0\xf0\x62\xbb\x82\x24\x4d\xac\x9c\x96\x31\x2c\x39\x77\ \x62\x0b\xf5\x91\x88\x79\x80\x82\xe5\x30\xac\x52\x03\xb1\x29\xb2\ \x9f\x6f\x4b\x3c\x23\x9b\xb4\xc5\x20\x50\x23\xb3\x43\xd5\x11\x44\ \x6b\x24\xba\x6a\xb0\x83\x6a\x80\x81\x31\x28\xa3\x4c\xe9\xcb\x34\ \x48\xa3\xcb\x5b\x4e\x64\x72\x0d\x82\x41\x21\xe8\x64\x13\xe9\x34\ \x18\xb4\x61\x0a\xba\x69\x1e\x51\x50\x07\xb4\x50\x94\x06\xb0\x47\ \x07\x70\x07\xcc\x74\x00\x78\xb0\x42\x7f\x80\x07\x3d\x58\x05\x54\ \xf0\x07\x14\xb8\x8e\x7f\x4c\x3b\x67\x5b\xc0\xf7\xdc\x42\x64\x2b\ \x4d\x5a\x60\x91\x31\x0c\xbe\x7b\x68\x03\xe8\x28\x9f\x4a\x01\x83\ \x52\xe3\x8b\x00\xdb\x03\x49\xa1\x14\x2c\x5a\xfe\xb7\x12\x9c\xb4\ \xc3\x43\x50\x7b\xb9\x0f\xca\xf8\x4d\xb1\xba\x4b\xe2\x04\x04\x6d\ \xa8\x06\x0a\xd0\x06\xa1\xa3\xd0\x0a\x9d\x28\x7d\xab\x06\x80\x53\ \x30\xaa\x90\x13\x58\xf3\x89\x37\x90\xce\x93\xb2\x0d\xe4\x78\x1e\ \x8e\x01\x83\x0c\x80\x82\x06\x60\x0b\xef\x74\x42\x3c\x50\x4a\x18\ \x8d\x4a\x78\xf0\x07\xf3\x44\x05\x13\xa8\x96\xb8\x8b\x4a\xad\x5c\ \x4a\x8e\x63\x3b\x65\xa3\x05\x5b\xb4\x07\x31\x44\x39\x76\x02\xa5\ \x78\xca\x91\x45\x61\x49\xef\x30\x0c\x77\x71\x1f\x21\x9b\xb4\xf9\ \x8a\x06\x4f\xba\x39\x2c\xfd\xaa\x05\x65\x15\x62\x00\x04\x87\x12\ \x23\x6d\x78\xd0\x6f\x70\xc1\x31\x68\x80\x0a\xcd\x8b\xbf\x94\x1d\ \x3d\x20\xa9\xdc\xd8\x07\x05\x1b\x1b\x4d\x8c\x10\xa7\xc3\xa3\xaa\ \xd8\x13\xc1\x22\xac\xb4\x08\xbb\x06\x70\x42\x07\x30\x01\xa8\x04\ \x54\x6e\x90\x51\x7f\xa0\x51\x54\x80\x87\xeb\x78\xc5\x2d\x14\x48\ \x8f\xbb\xb3\x4c\x78\xd4\x6c\xc5\x33\xef\x32\x19\x4a\xad\x40\xc9\ \xf9\x30\xc3\x92\x55\x1c\xd1\x9f\x80\xda\x9f\x02\xd5\x34\x9f\x31\ \xaa\xfb\xe0\xac\x9b\xfb\xcd\x2e\x45\x09\x62\xa8\x06\x17\xdc\x8f\ \x31\xa8\x86\x68\x10\xd3\x09\x95\x55\xbc\xfe\x38\xab\xcb\xd3\x83\ \x1e\x58\x03\x84\x91\x0a\x82\x11\x33\x07\xe9\xb7\xcc\x3b\x33\xe4\ \x09\xac\xab\xb8\xd4\xe7\x78\x96\x5a\x70\x83\x3e\x45\x01\x65\x05\ \x54\x7f\x90\x51\x1a\x5d\x85\x25\x78\xc0\x19\x38\x36\x3d\xe0\x38\ \x1b\x52\x3b\x2f\xcc\x56\x5a\xf8\xd8\x40\x61\x27\x7b\x48\x2a\xf5\ \x02\x03\x44\xdc\x57\x47\x19\x0f\xfd\xa1\x9c\x12\xa4\x4b\xfd\x0a\ \x55\x2c\x4d\x95\x73\x13\x44\xe0\xec\x0f\x62\xb0\x03\x09\xed\x0f\ \x33\xaa\x06\x2c\xd0\x06\x29\x39\x87\x7d\xc5\x0b\xdc\xba\x3c\x77\ \xb8\x44\xdf\x39\x8a\xde\x88\x0a\xa7\x1b\x0a\x3c\x82\xae\x3d\x59\ \x21\x28\x40\x8b\xa1\x4c\x45\x07\x30\x00\x13\x30\x01\x14\xd0\xcc\ \x2d\x6c\x56\x18\xc5\xd8\x3e\xe8\x29\x7f\x5c\x02\x5a\xc8\x87\x67\ \x23\xb1\xc9\xe2\x06\x7b\x50\xb6\x64\x8b\x54\x16\xf9\x29\x18\xab\ \x54\xe5\x30\xda\xf0\xb0\xda\xd0\xd9\x87\xd0\x19\xb2\x02\xd5\x2f\ \x50\xc5\x52\xa9\xd1\x02\x78\x35\x89\xb1\xa2\x57\x31\xfa\x52\x18\ \x18\x53\x92\xe0\x82\x27\xab\xd0\x1a\xbc\x3c\x1f\x28\x93\xa8\x28\ \x93\xdf\x39\xa1\x3b\x72\x3f\x9b\xd4\x9d\xe4\x22\x51\x28\x08\x4a\ \xca\x6c\x51\x27\x84\xd1\xad\xd5\x4c\xfe\x7f\xe8\x83\xb0\x75\xd6\ \x8c\x5b\x02\x38\xc8\x0b\x38\x50\xcf\x8d\x33\x01\x9c\xba\x33\x7b\ \x68\x5b\xb7\x7d\x54\x8e\xeb\x56\x4a\x8d\x27\xc9\x51\xc2\xbb\x7d\ \x07\x28\x30\x1e\xfc\x19\x3c\xd1\xe9\xc8\x2b\xd5\xaf\xaf\xda\x08\ \x53\xa5\x12\x54\x55\xd5\xcd\xf0\x9a\x6d\xa4\x57\x39\x70\xdc\xbe\ \x84\x83\xe4\xac\xd5\xc0\x64\x8a\xca\x55\xa6\xc5\x5c\xa6\x0b\x43\ \x13\x34\xbb\x8d\xe5\x28\x1f\x1f\x28\xc5\x7b\xc4\x03\x58\xb0\xc2\ \x3e\x80\x51\x8b\x95\x51\x41\x15\xd4\x36\xca\x58\x6b\xe9\x8b\x20\ \x60\x56\x92\xd5\x2e\xf0\xf2\xc2\xb6\x23\xd9\xf0\x92\xc0\x17\x8b\ \x27\x1f\x21\xcb\xbe\xb9\x5b\x1c\x01\x83\xc1\x4b\xa2\x88\xd0\x34\ \xff\x61\xd7\x9b\xcd\x0f\x41\x04\x04\xc2\x2d\x09\x79\x3d\x5c\xcd\ \xe8\x9a\x6d\x54\x55\x39\xb8\xdb\x96\x04\xc7\x01\xd9\x92\x65\xaa\ \xdc\x5d\x5d\x10\x0e\x7a\x10\xba\x82\x53\xe6\xd9\xa6\x3b\xf5\x01\ \x1f\x80\xc2\x25\xe8\x03\x64\x85\x85\xd3\x5d\x5f\x8b\x05\xd4\xf5\ \x35\x4f\x13\x38\x14\x75\x32\x02\x80\xcc\x87\x3a\xbb\x33\x05\x2c\ \xb9\xaa\x14\xaf\xf1\xa2\x85\xf1\x2a\xaf\x78\xd2\x4f\x26\x1d\xd7\ \xbe\x3b\xd7\x14\x14\x08\xee\x23\xfe\x88\x19\x13\x95\xfb\x10\x09\ \x5a\xd2\xd9\xfd\xf0\x00\x40\x88\x86\x6a\x68\x5e\x0a\x1e\x03\x40\ \xe8\x62\x5c\x5a\x82\x0c\xc6\x0b\x5a\xd5\x1a\x9c\xc0\x20\xe9\x3c\ \x26\xc6\xbc\xa3\xdf\x19\x61\x31\xe3\x98\xc8\xf4\x81\x6f\x90\x03\ \xd9\x9b\x42\xae\x75\x5f\x41\x95\xe1\x19\x9e\x51\x54\xe0\x06\x3c\ \x00\x39\x13\xc8\x04\x7f\x80\x5d\xa4\x0c\x2f\x05\xe4\x5f\x20\xa6\ \xac\x6b\x0b\x14\xe8\x80\x8e\x6d\x19\xe0\xbe\x2b\x9a\xf2\xc0\xc3\ \x81\x50\x12\x27\xc1\x97\xc1\x1d\xdc\x78\xab\xe2\xfd\x90\xd7\x6f\ \x20\x20\xfe\xf8\x62\x11\x20\x85\x91\x68\x5c\x31\x86\x9d\x0d\xde\ \x1a\x9c\xa0\xdc\x38\x1d\x9b\x35\xd0\x20\xdf\xc1\x32\x34\xe9\x87\ \xe5\xc8\x00\x0a\x90\x03\x1f\xf0\x4e\x29\x5c\x82\x12\x80\x87\x3e\ \x38\x5d\xd3\x65\xdf\xf6\x85\x07\xcd\xb4\x84\x36\x2a\xd4\x6a\x19\ \x45\xa4\xdc\x51\x72\x82\x87\x94\xd1\x4a\x1b\x4a\x19\x69\x89\x8b\ \x19\x90\x01\x1b\xb1\x9e\x00\x1b\xe0\x89\x7c\x17\x78\x91\x0f\x4b\ \x36\x9d\xc1\x55\xde\x7d\x01\x04\xe6\xa5\x92\xb1\x1a\xa3\xd5\x31\ \x80\xe9\xdd\x57\xeb\x2d\x63\x3d\x28\x93\x65\x5a\x9b\x63\xaa\x4e\ \x76\x94\xce\x37\xa8\xad\x1c\xfe\xa9\xe5\x6f\xc0\xe5\x7b\xb4\xb8\ \x3e\xe0\x86\x5f\xd6\x03\x8b\x55\x2b\xf5\x05\x54\x13\x18\x54\xb3\ \xf3\x87\x19\x68\x49\x44\x8d\x45\xf1\x2c\xb1\x87\xe6\x9e\x68\x93\ \x8b\xc4\xd1\x11\x24\x96\xd5\x51\xc0\x19\xc2\x4b\x92\x6e\x1e\x88\ \xca\x30\x95\x24\x73\xa2\x02\x3a\x20\x56\x01\x04\x40\x20\x85\xd5\ \x71\x07\x31\xce\x8b\x3c\x78\xc9\x7c\x80\x67\x7e\x5b\x8d\x35\x70\ \x01\x57\x5e\x03\x57\x6b\x8d\x4e\xa8\x2d\xa0\xf4\x01\x39\xb8\x87\ \x7b\x8c\x42\x40\x05\x68\x81\x0e\xe8\x19\xe6\x5a\x7f\xc8\xb8\x7c\ \x50\xe8\x96\x9c\x81\xcd\xc4\x45\x88\xb6\x33\x9d\x7a\x0b\x46\x76\ \x4d\x6f\x34\xda\x77\x70\x3d\x62\x25\x8f\xbe\x75\x0c\xd3\xe1\xd9\ \x06\x86\x37\xd6\xf9\xe4\x55\x11\x01\xb3\xdb\x82\x58\x55\x69\xbc\ \x38\xbf\xcb\x13\xcc\x0d\xe2\x37\xc5\x34\x07\x9a\x56\xa6\xab\xa3\ \x00\x2a\xc8\xe9\x7d\xbe\x47\x27\xd4\xcc\x8a\x0d\xe8\x60\x86\xd1\ \xbc\xd6\xcc\x67\x75\x03\x6b\x99\xd6\x3e\xd6\x33\xa4\x04\xd9\x2a\ \xd4\x9e\x85\x74\xa7\x15\x91\x6a\x28\xc0\xe6\x7d\xe5\x11\x4a\xc1\ \xea\xc9\x21\x8e\x9d\xc3\x08\xcb\x08\x09\x2a\x6e\x9d\x2d\x9e\x12\ \x52\x40\x20\x49\x60\xdd\xfe\xb3\x1e\x63\x7f\x95\x83\xd5\xc0\x32\ \xe2\xc2\x05\x57\x7e\xeb\x0d\x12\x8b\x9f\xa4\x00\x7d\x5e\x82\x7d\ \x3e\xd6\x64\xb5\xe3\xd3\x55\x5f\x18\xd6\x63\x3b\x36\xcf\xb4\x75\ \xc5\x20\xf8\x5a\x30\x64\xa4\x12\xf3\x33\x20\x4e\x19\x46\x46\x52\ \xb4\x78\x6c\x59\x1d\x8f\x24\x42\x8b\x1e\x30\x9e\xfd\x19\x32\xc6\ \x43\xb2\x05\xdd\xe4\x29\xc9\x46\x7d\x49\xd5\x55\x90\x5e\xd1\xc6\ \x0b\x45\xbc\x3c\x54\xb0\xe9\xd3\x56\x8d\x35\x30\x87\x08\xfb\x04\ \x13\xf1\x5c\x1f\xe0\x82\x7d\x36\x80\xcb\x54\x4a\x3f\xcd\xcc\x82\ \x26\xea\x61\x6e\x45\x78\x68\xa3\x2d\xc8\x07\x1b\x8e\x3b\x66\xcd\ \x84\xf0\x7c\x24\xd1\xc4\xb3\x00\xe7\xdf\x5c\x34\xee\x97\x21\x82\ \xd6\x2b\x3f\x22\xe0\x18\x98\xd9\x54\x89\x50\xbe\x71\xd1\x9f\xbd\ \xfd\x94\xc5\xfb\xc3\xd8\xaa\xee\x86\xe2\xec\x86\x1a\x89\x0c\x50\ \xe7\x0c\x86\x83\x97\x94\x83\x77\xae\xe9\xd3\x56\xed\x35\x48\xa9\ \x59\xe6\x98\xa0\xec\xe9\x5c\xe6\x47\xf8\x9e\xd8\xf8\xa6\x6f\xbf\ \xe6\xda\xd8\x65\x24\xa3\x3e\x3b\x23\x70\xca\x4c\xc8\x87\x65\xe3\ \xd1\xdc\x63\x40\x8f\xe3\x38\xb6\x58\x8b\x19\xb2\x91\x27\x48\x46\ \xbe\xd0\x0e\x02\x3e\xfe\x1f\xf1\xe0\x99\x8a\xf8\x36\xe8\xab\x14\ \x32\xd8\x5b\xe2\xa8\x6c\x3f\xec\x4d\x0b\x67\xd0\x93\x18\x23\x49\ \x30\x6b\xee\xf6\xcb\x97\x5c\x82\x32\x71\x65\xed\x4d\xed\x57\xae\ \x0a\x6f\xf1\x5c\xd0\xf5\xce\x64\x9d\xd8\x7c\x7c\xf1\x19\x87\xef\ \x19\xe7\x5a\x42\x09\x4f\xfb\xae\x51\x8d\xdd\x6f\x3d\x48\xbb\x05\ \xa4\x45\x82\x5c\xbb\x94\xf9\xcc\x69\x61\x8b\x0f\xb0\x16\x28\xb8\ \x19\x51\xec\x9b\x03\xc7\x0b\xa8\x2a\x1a\x9b\x31\x17\x3f\x74\x0f\ \xf7\xd9\x87\xaa\x12\x32\x04\x86\xad\x91\xb8\x70\x2b\xd6\x17\x04\ \x12\x65\x0e\xf7\x72\x53\x23\x63\xdd\xd2\x03\xd3\xce\xa0\xd3\x5e\ \xcc\xb3\x21\xd1\x77\xd8\x83\x27\x48\x61\xef\x14\xc0\xae\xc5\x03\ \x55\x0c\x02\x55\xf4\xd3\x64\x8d\x73\xae\xf5\xd3\xa4\xf4\x6d\x3b\ \x5f\x85\x1d\x27\x40\x03\x7c\xb6\x94\xf9\xd1\x1f\xad\x4a\x1b\xda\ \xa9\x42\x2f\x1f\x53\xd2\x14\xbe\xd1\x94\x25\x05\xd0\xc6\x80\x01\ \xf5\x3a\x3e\x8d\x78\x08\x80\x92\x72\xab\xf2\xd4\x68\x20\x06\xcd\ \xce\x74\xcd\x18\x67\xb1\xba\xc6\x2e\xff\x74\xbc\x68\x69\x2c\x73\ \x65\x2c\x3b\xf5\xc5\xd4\x98\xef\x00\x97\x9d\x5e\x61\x01\xf4\x53\ \x59\x57\x45\x5a\xfe\x87\xef\xcc\x4c\x56\xdf\x6e\x36\xa8\xa4\x51\ \x92\xc8\xb8\x1a\xc5\xb3\x66\xc6\x87\x2d\x74\xd4\xdc\x63\x3b\x13\ \x8b\x11\x22\xf8\x00\x21\xfa\x80\x1b\x29\x17\x44\x34\x74\xc7\x36\ \x74\x8b\x00\x20\x3e\xec\x99\x96\x7b\xa2\x18\x00\x28\x49\x8e\x46\ \x1f\x63\xa2\x05\x85\x60\x2d\xe7\xc6\x0c\xa7\x60\x52\xf8\x80\x71\ \xd7\x8b\x0b\xd5\xb7\x7c\x88\xe9\x36\x55\x26\x57\xfe\x04\xe8\x59\ \x8e\x27\x70\x07\x15\x76\x87\x5a\x90\x42\x58\x88\xf7\x3c\x70\x24\ \x7a\x7f\x71\xf8\x7e\xa4\xf7\xa6\xdf\xfb\x1e\x89\x7e\xdf\x73\x04\ \x9c\x45\x1f\xe7\x38\x3f\xf6\x9e\x6b\x81\x83\xb5\x60\x0b\xed\x80\ \x82\xc0\x83\xf8\x47\xe3\x11\x32\x38\x37\xa6\x21\x95\x2e\xc2\x59\ \x27\x3a\x8f\x6d\xd6\xcd\x68\x78\x60\x5a\xfa\x78\x7e\x99\xe0\xfd\ \x20\x05\x77\xb0\x68\x2f\x27\x02\x94\x07\x4c\x5b\x95\x93\x73\x37\ \x77\x57\x86\xc7\xb1\x48\x6f\xef\xb4\xf9\xf6\x8e\x75\x14\xc8\x83\ \xbd\xd7\xf9\x59\xcf\xc7\x58\xb7\x75\x7c\x97\xf3\xf2\x34\x89\x5e\ \x5f\x40\x80\x24\xc8\x67\x53\x7c\x30\xbc\xe1\xb5\x30\x02\x42\x6f\ \xc9\x27\xa8\x9c\x97\x01\x83\x18\x78\xf0\x69\x68\x39\x79\x79\xa2\ \x46\x93\xa5\xfe\x29\xe6\xc3\xa4\xd9\x4d\x13\x9c\x62\xb1\xd6\xf2\ \x54\x15\x6b\xbe\x34\xf9\xbd\x40\xe5\xad\x41\x05\x84\x19\x71\x65\ \x2a\xef\x0a\x9b\x4d\x99\x87\xc2\x28\x5c\x82\x5a\x68\x73\x59\xdf\ \xfb\x59\x17\x4f\xf1\x7c\x6f\x7b\x9f\xf1\x5e\x16\xfa\x91\x80\x56\ \x2c\xcc\x84\xb1\x13\xf0\x69\xa1\xf1\x43\x41\xb1\xb6\xb8\x96\xc8\ \x0f\xa2\x95\x25\x03\x64\x88\x06\xca\xa1\x02\x46\xdb\xa7\x7d\x22\ \x88\xdf\x24\x06\x65\xf0\x99\xe2\xa0\x08\x9e\x05\xa0\x54\x19\xfb\ \x04\xb2\x83\x93\xf0\xe2\x55\x21\x05\x37\x48\xfd\xbd\x40\x5a\x7d\ \xd3\x03\x13\x3f\xf7\xbb\x92\x69\x86\xf5\xc6\x0f\x70\x07\x39\x58\ \x61\x03\x80\x07\x58\x98\x77\x55\x04\x88\x3c\x28\x50\x04\x19\x38\ \x10\x0f\xc2\x20\x08\x4d\x30\x84\xd7\x70\xd5\x96\x88\xab\x50\x2d\ \xa9\xd8\x06\xde\x45\x78\x46\x32\x69\xc4\x13\x04\x0e\x11\x38\x33\ \x82\xb8\x31\xf2\x01\x64\x9a\x94\x1f\x9e\xb4\x69\xf3\x04\xca\x34\ \x2d\x31\xa6\x91\x81\x61\x87\x05\x9a\x9c\x68\xb6\xec\x44\xe3\xc1\ \x03\xb1\x69\x60\xa8\x6c\x41\x46\x66\x1e\x8c\x18\x31\xec\x00\xb2\ \xf3\x2d\x86\x87\x88\x52\xa7\x52\xad\xba\x45\x84\x08\xaa\x63\x00\ \x59\xed\xfe\x3a\x55\x4e\xca\xb0\x62\xc7\x92\x2d\x5b\x16\xd6\xbf\ \xb4\x6a\xd7\xb2\x6d\xeb\xf6\x9f\x1e\x75\x6b\xe6\xe2\xaa\x8b\xcb\ \xc5\xa8\x66\x9f\xf6\xbc\x53\xe9\x43\xce\x12\x77\x06\x4a\x2c\x31\ \x60\x02\x0f\x0a\xc4\x07\x0d\x26\x46\xe8\xb1\x20\xc3\x86\x26\xe0\ \x95\x40\x05\x71\x55\xbe\x25\xdc\x2a\xe2\x83\x87\x8f\x63\x26\x13\ \x41\x3e\xc2\x11\x39\xda\xc8\x47\x22\x61\x89\x7c\x70\xf3\xe4\x43\ \x6b\x2c\x5a\xb4\x44\x53\x66\x53\x27\xcf\xdc\x11\x7d\x82\x29\x43\ \x86\xa7\x32\x30\xf3\xa2\x45\xfb\x16\x0d\x50\x0c\x40\x5c\xbd\x32\ \xef\x0a\xa8\x5a\xd6\xe6\x54\x45\xe4\x32\x6b\xfd\x3a\x59\x22\xfe\ \xf4\xbc\xed\xee\x3d\xad\x9e\x1e\x2e\x5c\x98\x0b\x83\x4b\xc3\x1a\ \x17\x9f\xfa\xf5\xdb\x23\x43\x46\x86\xbf\x85\x97\x10\x2e\x61\x00\ \x96\x62\xc4\x0b\x11\x26\xee\x5f\x10\x4f\x64\xf0\x08\x08\x8f\x1e\ \xa8\xa0\x92\xcf\x66\x15\x19\x61\x00\x47\x9d\x19\x81\xda\x0c\x11\ \x8e\x16\x84\x11\x33\xa0\xb4\x9a\x1b\x6e\x7c\x60\xe1\x07\x98\xcc\ \x66\x47\x24\xd1\xd8\x91\x93\x6e\x54\x79\x50\x45\x1a\x32\x4c\xe3\ \xd4\x3c\x55\x90\x41\xc6\x8a\x5c\xfd\x24\x1d\x8d\x53\x01\x12\x5d\ \x57\xfe\x58\xe1\x78\x95\x0f\xaa\x61\xf7\x63\x76\x79\x70\xf7\x1d\ \x91\x6e\xe9\x51\xc2\x5c\xcd\x98\x17\x46\x33\x79\x7d\xf2\x49\x0f\ \x50\x40\x11\x9f\x24\x80\x19\xb0\xc4\x01\xf4\x19\xc0\x9f\x63\x0e\ \x98\xe0\x25\x7f\x8d\x39\xd6\x90\x3f\xfe\xc0\xe3\x4f\x3e\xfe\x70\ \x53\x82\x03\x46\x38\xd0\xc6\x82\xf8\x98\x80\x5a\x10\x12\x9e\x36\ \xda\x0c\x44\xf8\x98\x12\x1c\x6e\xd4\xa9\x27\x11\xf8\x28\x47\x0b\ \x16\x58\x8c\x58\x22\x55\x68\x4c\x23\x43\x8a\x55\x28\x83\x05\x4d\ \x55\x54\xf1\x4d\x54\xbb\xd5\x58\xa3\x08\xcb\x31\x37\x46\x74\x22\ \x90\xf2\x0d\x14\x7b\x02\x09\x64\x09\x7a\x0c\x59\x24\xaa\x6a\xe9\ \x21\xc7\x93\x9f\x84\xf1\x09\x5e\x2e\xf4\xd0\x43\x3f\x19\xc4\x27\ \x87\x24\xf9\xc8\x51\xc2\x9a\x85\x19\x60\x40\x2d\x78\xd4\x82\x42\ \x2d\xb5\xdc\xe7\x98\x98\x87\xa1\x30\x59\x1f\xdc\x94\x89\x20\xaf\ \x4b\xc0\xd3\x66\x9b\x46\xcc\x89\xe7\x48\xa7\xd1\x79\x61\x4a\x21\ \x05\xb1\xa1\x6a\x44\x3c\x41\x0b\x88\xf8\xdc\x63\x0f\x20\x3d\x75\ \x75\x22\xa3\x65\x4c\xf3\x0d\xbc\x58\x48\xfa\xcd\xa5\xf5\x46\x74\ \xe3\xa5\xd5\x7c\x33\x46\x35\x3d\x8e\x8a\x5d\x48\xa5\x9e\x9a\x2a\ \xfe\xc1\x7a\xf8\xd0\xea\x27\xcd\xec\x91\xd7\xac\xa2\xf8\xe0\x8e\ \x1c\xf9\xac\x22\x49\x96\xf5\xfd\x1a\x6c\xb1\x0e\xd4\xe2\xc0\x96\ \x5c\x02\xc8\xa5\x80\xfe\x94\xa0\x26\xaf\xd1\x4e\xeb\xe6\xb5\x78\ \x9e\x96\x32\xb7\xdd\x8a\x64\xa1\x9e\x69\xb8\x81\x09\x2d\xf6\xdc\ \xd3\xc6\x3d\xf7\x60\x11\x89\x72\x3b\x55\x05\x48\x6f\x50\x90\xf1\ \x0d\x16\xf0\xe2\xe3\x06\x3e\xdf\x68\x6a\x2f\x55\x4b\x5f\x85\xaf\ \x57\xd1\xf1\x3b\x86\x54\x5c\x88\xfa\xaf\xa8\xb0\x98\x4a\x30\xd7\ \xaa\xea\xd1\xaa\x5e\x0a\xef\xd1\x4c\x0f\xf1\x2d\xc1\x85\x24\x69\ \xcb\x51\x71\x61\xc5\x0e\x9b\xb1\x61\xc1\xe2\x81\x1f\x7e\x63\x52\ \xe6\x2c\xaf\x7d\x68\x66\x9f\x03\x0e\x68\xe4\x00\xb6\x13\x3e\xe8\ \x11\xcc\x63\x85\x64\x21\x1c\xdd\x22\x8d\xc9\x3d\xf8\x98\x6b\x6e\ \x24\x4c\x55\x5a\x15\x16\x2f\x55\x31\x8d\xce\xdf\xf8\xc0\x92\x3d\ \xdf\x58\xe2\x34\xd3\x80\x10\xd3\x34\x73\x22\x8c\x71\x3a\xd5\x54\ \x9d\x13\xf3\xbf\x62\xcd\x20\x70\xd7\xb1\xc3\x55\x42\x0f\xa3\x8c\ \x52\xfb\x28\x7b\x94\x1d\xdf\x39\x4b\xa4\x4d\xf1\x12\xbb\xfa\x3a\ \x50\xc6\xc2\x06\x0b\x8b\x98\x63\x4e\xb6\x84\xde\x84\x09\x68\xfe\ \xc0\xb4\x73\x1a\xd0\xa6\xca\x14\xce\x49\xa7\x85\x86\x97\x56\x9a\ \x8f\x44\x04\xd1\x06\x3e\x2d\xb5\x84\x0f\x26\xca\x29\x67\x95\x08\ \xdf\xbc\xf6\x41\x15\xee\xb4\xb1\x44\xe3\x3e\x70\x73\x8f\x0f\xf4\ \x32\x3d\x95\x08\x93\x47\xb4\x63\x55\x63\x74\x42\x81\x36\x52\x37\ \x95\x31\xc8\x81\x02\x5c\x28\xc3\xd5\xb0\x33\x83\xad\xc9\x4e\x76\ \x7a\xa8\x45\x1a\xde\x31\x0a\x19\x48\x70\x0f\x4f\x70\x87\x0f\x82\ \x87\xab\x89\x1d\xa0\x3e\x25\x70\x47\x2d\x4a\x81\x82\x3c\x0c\xcb\ \x01\xc2\x72\x40\xdd\xe6\x36\x37\x13\x18\xa0\x0f\x25\xa0\xcc\xf3\ \x0c\x63\x42\x3c\x78\xc9\x08\x04\xc9\xd6\x9c\x72\x38\x1a\x90\xec\ \x49\x4f\xdb\xeb\xe1\xf7\x5a\xe2\x27\x23\xb4\xc4\x7c\x4e\x4b\x5f\ \x24\xaa\x71\x8f\x93\xb0\xe4\x82\xee\xa8\x08\xbc\xde\x07\xba\x7a\ \x61\x65\x3a\xcc\xd1\x46\x35\xb4\xa1\x0d\xfe\x5d\x85\x14\x11\x09\ \x86\x0f\x1a\x90\xc0\xec\xf4\x61\x60\x0d\xec\x9a\xa9\x66\x10\xc1\ \xbe\x10\xa1\x0c\xb6\x72\x07\x17\xb8\x70\x80\xb4\xe5\xe3\x00\x59\ \xca\x12\xb0\x0c\xf2\xb6\x13\x0a\x4b\x85\xb0\x60\xe1\xf3\xe0\x01\ \x3d\x19\x7a\x04\x21\x26\x24\xc8\x84\xf0\x60\xad\x45\xd6\xfe\xa9\ \x65\x87\xe3\xa1\xeb\x1e\xe4\xa7\x0c\x91\xc4\x1e\xb4\x88\x84\xd2\ \x00\x01\x2f\xe5\x60\xc1\x07\xc7\xd9\x9c\x6b\x32\xe4\x06\x77\xe0\ \x03\x57\xf0\xca\xa4\x24\xee\xb7\x05\xfd\xe5\x68\x7f\xc4\xd8\x62\ \x15\xb5\x52\x0d\xaa\x51\x8d\x14\x14\xf8\xc0\x18\xbb\x65\x2a\x33\ \x9e\x91\x6b\x47\x22\x42\x5f\xde\xd1\xc6\x27\xd8\x4a\x83\x73\xb4\ \x23\x7d\xe8\x53\x82\x62\xa1\xa0\x01\x7a\xec\xa3\x63\x68\x08\x3d\ \x58\x18\x66\x4c\x33\x24\xc8\x63\x26\xd4\x18\x1d\xd6\x29\x4f\x62\ \xf1\x21\xf7\xbe\x39\x83\x92\x4c\xa8\x4e\xdf\x83\xdf\x12\xbe\x91\ \xb3\x25\xdc\xe8\x1b\x55\xa8\x46\x44\xd4\xe9\x0e\x51\xba\x89\x1b\ \x22\x58\x45\x15\x9f\xa3\x0d\x55\x56\x65\x47\xda\x58\xce\xe9\x06\ \x18\xd0\x88\x90\x42\x0e\x9d\xe8\x04\x3c\xf7\xd7\x2f\x04\x7e\x13\ \x0f\xdb\xe9\x25\x44\x1f\xf8\x0e\x19\x10\x41\x06\x50\x78\x42\x2e\ \xdc\x01\x31\xe0\x55\x6c\x30\x4b\x38\x47\x1e\xdf\x86\x02\x07\x10\ \xcb\x78\xb5\x60\x21\x2c\x04\xf9\x25\xfd\x44\x73\x20\x13\xca\xc3\ \x84\x72\x88\x1a\xc2\x85\xb3\x5b\x21\xe1\xa1\xa8\x4c\x83\xa7\xed\ \xb9\x41\x7c\xf7\x58\x82\x0f\xee\x21\x89\xe7\x60\x41\xfe\x53\xea\ \xcb\x90\x9b\x7c\x07\x11\x7e\x36\x67\x47\xa7\x33\xdd\x16\xab\x42\ \x0a\xd3\x6d\xc1\x7f\x00\xdc\x27\x55\xfa\x15\xaa\x94\x94\x91\x97\ \x10\x8d\x9d\x1e\x0c\x20\xa5\x95\x68\xd4\x89\x67\xeb\x20\x32\xcf\ \x51\x02\xfb\xe4\x31\x17\xc4\x1a\x69\x49\x4d\x38\xc8\x8e\x31\xc6\ \x3f\xd8\x92\x10\x0a\xac\xd5\x26\x44\x46\xc8\x91\x3f\xbc\x9a\x4e\ \x61\x46\x84\x6c\x95\x84\x94\x2d\x49\xe7\x37\xaa\xa1\x29\x49\xe0\ \x83\x94\xe9\x94\x98\x74\xa8\xda\x54\xd0\xe1\x48\x1b\xc4\x38\x5d\ \x27\xec\x20\x1d\x52\x74\x82\x53\x9c\xea\xa7\x1c\xdc\x51\xaa\xaf\ \x92\xd6\x54\xee\x20\xe6\x5f\x34\x7a\x8e\xde\xed\x8a\x62\x76\x44\ \xe6\x07\x43\x5a\x0b\x37\x64\x8c\x58\x28\x3c\x96\x62\x06\x02\xd3\ \x11\xe6\x21\x42\xbd\x0d\x02\x4c\x69\x68\x84\x84\x74\xb3\xa6\x80\ \xe2\x5e\x02\x07\x5b\x5c\x1f\x66\x8b\x42\xee\x78\x93\x63\x13\x2b\ \x95\x55\x7c\x23\x9d\xb9\x9a\x62\x3f\x3f\x1b\x35\xa8\xe1\x0f\x2b\ \x58\xd4\xe2\x2b\xb1\x5a\x3a\x2d\xa2\xce\x2a\x13\xf1\x2a\x69\x1d\ \xe8\x8f\x0b\x7e\x43\x0e\xdf\xe0\x42\x45\x76\xb5\xb6\xd7\xa2\x95\ \x30\x17\x73\x9b\x6d\x35\x46\xcd\xba\x31\xa6\x20\xfe\xbd\xed\x6d\ \x84\x46\x12\x5c\x1b\x92\x14\x7b\x88\x0b\x17\x38\x59\x67\xb8\x91\ \x08\x36\x0d\x2f\x1b\x4d\x5e\x8d\xe0\x0e\x22\xb6\x01\x5e\x36\xfa\ \x1d\x20\x96\x1a\xd9\xc9\x72\x11\xaa\x59\x0c\x20\x17\x73\xa4\x8d\ \xce\x6a\x77\x2a\x13\x49\x2f\x8a\x67\xf7\x04\xf9\xc0\xb1\x04\x07\ \x48\x02\x5a\xed\x58\xc7\x8e\xde\x17\x05\xee\x78\xab\xdc\x06\x22\ \x42\x81\xe4\xa1\xc7\x33\xf8\xed\x8f\x7f\xfc\x9f\xbd\xba\x01\x31\ \xcb\x05\xd4\x4d\x91\x9b\x1d\x06\x43\xf2\xa6\xcd\x25\x49\x86\xda\ \xc0\x8d\x6f\xa4\x92\x2a\x1a\x66\x2a\x8d\xc6\xa0\xc5\x00\xd6\x0b\ \xb3\x5c\xa6\x0a\x2a\xd0\x9b\x62\x07\x3e\x10\xa8\x20\x34\xc0\x7c\ \x29\x36\xdf\xd7\xd6\x07\xa4\x20\xac\x85\x40\x44\x6a\x10\x1e\xf7\ \x18\xc0\x3e\xee\x71\x41\x12\x43\x52\x3c\x14\x99\xaf\x79\x42\xb0\ \x48\x94\x9c\x9d\x97\x35\xd9\xc9\x76\x8a\xf2\x4f\x95\xc6\xd4\x10\ \x67\x59\xcb\x01\x14\xe0\x74\x4a\x2c\xd0\x1d\x9d\x77\xcc\x63\xd6\ \x43\x95\x6a\xa1\x51\x34\xbf\x16\x4b\x76\x74\x71\x09\xb8\x60\x5f\ \x60\x0d\xcb\xad\x28\x28\x05\x1e\x4a\xb1\xe3\x11\xf2\xf6\xbf\x02\ \x31\x48\xdf\x62\xed\x52\x44\x92\xe6\xb8\x01\xfe\x16\xf4\x37\x1f\ \xc9\x3a\xe6\x96\x66\x9c\x0f\x22\xe5\x13\xab\x7c\x3f\x49\x5f\x8a\ \x5f\x20\x6e\xce\x40\x9b\x13\x66\x4b\x5b\xda\x54\x81\xd9\xf4\xda\ \x5c\xbb\xe6\x0e\x2a\xf3\x57\x79\x24\xde\xa9\x59\xbd\xea\x3a\xef\ \x76\x20\xcf\xed\x1b\x0a\xfa\x5c\x90\x09\x09\x96\xb9\x7d\x85\x64\ \xae\x09\x2d\x2a\x24\x9b\xc6\x08\x6e\x78\x53\x3a\x33\x8c\xe5\xa8\ \x8d\xae\x7f\xb3\x84\xb4\x57\x92\xdd\x15\x06\x32\x3b\xc5\xa6\x5a\ \x26\x08\xd5\xea\x5a\x50\xd3\x97\x30\x6a\x5d\x42\xb1\x54\x9d\x87\ \x55\x8b\xb0\xd5\x3c\x1e\x48\xac\x7f\xf5\xed\x83\xdc\xf5\xc0\x86\ \x6e\xb0\xe1\x9c\xec\xc8\x98\x1d\xce\xb9\xa5\xc4\xee\xbc\xf7\xd7\ \x15\x52\xcc\x92\xd1\x5a\xc1\xb7\x89\xf9\xdd\xef\x4b\x7f\x50\x30\ \x9e\x3e\x26\xcc\xd9\xdc\xb6\x62\x71\xbb\xe6\xdc\x86\x35\x1e\x7e\ \xe5\x2b\x70\xbb\xc1\xa5\xe7\x06\xc9\xf6\x08\x8d\xd3\x75\xf7\xba\ \xa6\xdd\xb2\x69\x69\x82\xe0\x80\x60\x2f\x7a\x5d\xe8\xd3\xae\x96\ \x51\xee\x15\x52\x90\x02\xe5\xcb\x5e\x79\xbf\x4d\x55\x8b\x5c\x18\ \x40\xad\xf4\xfd\xba\x8b\x3b\x08\x52\x52\x97\xa2\xce\x0d\xe8\xf1\ \xd9\xcb\xf1\xea\xb7\x72\x4c\xe2\x06\xb8\xfe\xb1\x4b\x01\x2c\x58\ \xa0\xf7\xfa\xdc\x80\x4a\x77\xa0\x39\xbe\x1a\x07\x27\x5d\xca\xc2\ \x9e\x6e\xbd\x00\x21\x75\xf4\x55\xa3\x1a\x55\xaf\x6a\x54\x6b\xc4\ \x59\x2f\x4e\xe5\xea\x58\xcf\xba\x3f\x4a\x61\x2c\xb5\x4e\xfb\xc5\ \x61\x2f\xc1\xae\xec\x93\x70\x6e\x97\xe3\xc7\x6a\x7f\x75\x09\x8d\ \x65\x6d\x92\xce\xf9\xd6\xec\x7e\x99\x85\x10\x87\x6e\x9b\x0e\x16\ \xe3\xab\xb9\x69\x10\x0c\x90\x36\x2c\x8f\xe1\x1b\xe2\xd5\x4a\xbd\ \xf7\x57\x75\xcf\x92\x42\x1b\x8c\xa7\x51\xef\x71\xe4\xf8\xc7\xaf\ \x5c\x0f\x4c\x10\xfd\x5a\xd7\xca\xe6\x24\x60\x7e\xad\xbe\x22\x75\ \xcd\x3f\x1f\xe7\x61\x9d\x70\xf4\x0e\xe0\x71\x80\x0f\x9c\x06\x73\ \x9f\xbb\xdc\xda\xeb\xeb\xdd\x91\x3e\x03\x14\x2c\xc1\x32\xf3\xae\ \x06\x0c\xf8\xe7\x01\xef\x42\xda\x74\xb1\x1c\x03\x29\x82\xf1\xfb\ \x7a\x0d\x9f\xf8\x59\x37\xfe\x60\x94\x5f\x02\xe6\x7f\xfa\xf2\x6c\ \xbd\x58\xd9\xd9\x1c\x8e\x6d\x4c\xce\x4d\x0f\xb8\xdd\x99\xe9\x01\ \x5a\xf6\x05\x9a\xeb\x6d\x5f\xeb\x81\xdf\xeb\xc1\x81\x42\x70\x43\ \x3e\x84\xdc\x16\xc8\x41\x35\x4c\x8e\x07\x58\x56\x44\x68\x99\x54\ \xf4\x1e\xd5\x1d\xde\x16\xc4\x9f\xfc\xfe\xd5\xcb\x2a\xa8\x9c\xfd\ \x15\xdf\x91\x0c\x46\x07\x29\x5f\x07\xf1\xdf\xa7\xa9\xd5\x7d\xa9\ \x5a\xd9\x95\x5d\xb1\xc0\x42\x2d\x50\x53\xdb\xfd\x0a\xe9\xf1\xd6\ \x8f\xfd\x10\xd2\x49\xe0\xad\xfd\xd5\x37\x3d\x98\x92\xe9\xc9\xf8\ \x51\x86\xc4\xac\x82\x86\x31\xe1\xdf\xd1\x88\x08\x54\x43\xee\x79\ \x80\x62\x49\x85\x76\x91\x82\x30\xe8\x80\x3a\xe8\x00\x17\x08\x43\ \x08\x52\x9d\x08\x04\x43\x09\x6a\x85\x95\x89\x59\x0a\x36\x5b\xf2\ \x11\x1c\x9b\xc5\x58\x07\x0d\xc6\x7d\x0d\x8b\xe4\x81\x90\xb0\x58\ \x1b\x1d\x4e\x8f\x6e\x75\x53\xe7\xa1\x04\x82\xb5\x9e\xdc\xe1\x9a\ \xcb\x0c\x61\x92\x29\x44\x1f\xe4\x03\x21\xda\xd1\xda\x30\x61\x68\ \x29\x55\xb1\x41\x87\x54\x88\xce\x54\x1c\x14\xc9\x71\x81\x0f\xe8\ \x40\x06\x10\x00\x01\xe8\x80\x0e\xc8\x81\x30\x04\x43\x56\xc4\x9f\ \x24\xcc\x9f\x95\xd5\xdf\x19\x62\xdd\xbf\x95\x8a\xfe\xb5\xe0\xe5\ \xa1\x95\x0c\xde\xd7\x9b\x89\x5e\x1d\xf2\xa0\x62\xf8\x98\xc5\xed\ \x61\xaf\xf9\x18\x4e\x65\xdc\xf6\x64\xdf\x8f\xe5\x01\x35\xad\x09\ \x37\xe0\x91\xc6\xa0\xd9\xdb\x29\x62\x8d\x00\x82\x78\x79\x00\xa4\ \x8d\x81\x0f\x40\x81\x25\xee\xc1\xfe\x25\x72\x81\x1f\x10\x40\x03\ \x18\x42\x03\x34\xc0\x39\x24\xc1\x54\x65\x63\x57\x88\xe2\x28\x12\ \x5f\x29\x9e\x62\x1a\xd2\x47\xe6\xad\x95\x5a\x8d\x9d\xc4\xd9\xc7\ \xa8\x89\xde\xb0\xf0\x56\x71\x0d\x1d\x38\xc1\xc1\x7f\x45\x88\x82\ \xbd\xde\x03\xd6\x5c\x62\x50\x13\x62\xd4\xc2\x07\x09\x44\x45\x00\ \x8b\x01\x1c\xc0\x95\x35\x07\x07\x5e\x05\xa7\xbc\x52\x56\x88\x00\ \x05\x10\x40\x0f\x10\x80\x21\x10\x00\x34\x0a\x83\x30\xe4\xc2\x39\ \x58\x62\x03\xe8\x80\x1f\x24\xc1\x07\x56\x05\x37\x76\xe3\xe3\xed\ \x52\xf2\xa1\x62\x1a\x26\x5f\x32\xa1\x23\x3a\x1e\xdc\xa8\xe1\x20\ \x0b\xad\x63\x9d\x45\x48\x39\x84\xc4\xe9\xbd\x8c\x2d\xf6\x50\x11\ \xfa\xd6\x9d\xad\x64\x80\xa1\xc0\xaf\x0c\xc4\x95\x6c\x0c\xc7\x50\ \x60\x40\x22\x1b\x05\xcc\xc3\x32\xee\x41\x06\xa4\x4e\x27\x08\x83\ \x0f\x38\xa4\x1f\x60\xa2\x1f\x78\x21\x16\x66\x40\x2e\x34\x40\x2e\ \x60\xe3\x08\x36\xde\x46\x72\x64\x47\x1e\x49\xd8\xf5\x5f\x1b\x7a\ \xd0\x38\x96\x80\x5a\xd5\x07\x2a\x5e\xcc\xaf\xe0\x87\xc3\xf5\x55\ \x2a\x1c\x17\x4c\xfe\x1c\xc7\xdd\x9d\xb9\xc5\x63\x83\x1d\x8e\x40\ \x78\x04\xb1\x64\xcc\x97\x0c\xfe\xc4\x12\xfc\x64\x57\x68\xc3\x13\ \x44\x90\x8f\xbc\x03\x05\x48\x45\x27\x68\xc0\x25\xaa\x83\x25\x12\ \x80\x1f\x30\x5e\x12\x30\xa4\x21\xe4\x02\x17\x88\x61\x09\x9e\x20\ \x56\x4e\xe6\xec\xb8\xd8\x91\xd4\x57\xf2\xe5\x1f\xa8\x7d\xe5\xa7\ \x55\x1b\x1d\xe6\xa0\x6e\xf9\x58\x1e\x82\x93\xda\x05\x59\x39\x00\ \xa1\x0f\xed\xda\x5a\x9e\x66\x5a\xba\x8e\x40\xb0\x10\x1e\xd4\x19\ \x0a\xd0\x4d\x1e\x88\x84\x01\xe8\x65\x44\xa0\x9f\x56\x95\xc5\x1e\ \x74\x96\x36\x08\x83\x25\x62\x22\x63\x9e\x83\x53\x0a\xc3\x6a\x35\ \x80\x0c\x48\x64\x1c\x1d\xc0\x55\x52\x66\x56\x96\x8a\x1d\x69\x65\ \x48\x82\xda\x74\x82\xe3\x5a\xb9\x61\x09\xc0\x82\x76\xce\x59\x6f\ \x6d\xcf\x69\x76\x5e\x9d\xe5\x61\xa1\xed\x5a\x92\xf9\xe1\x60\xa1\ \x80\x0b\xe9\x41\x3e\xc0\x43\x8f\x1d\x84\x76\x9a\x00\xe2\xe4\x41\ \x09\x04\xe4\x18\x64\x40\x19\x4c\x54\x2e\xa5\xc1\x1e\xa8\x43\x67\ \x75\x82\x3a\x40\xa4\x0e\x18\x82\x80\x12\x27\x09\xfa\x41\x2e\x50\ \xa3\x54\xc2\x8e\x73\x4e\xe6\x2e\xe9\x01\x66\x82\xe4\x47\x46\x68\ \xff\x89\x64\x66\x6a\x67\xaa\xf9\x60\xe7\x9d\xa6\x48\x20\x20\x1c\ \x9c\xe6\x3c\x46\xa0\x4b\xfe\x86\x8b\xcb\xe4\x01\x1e\x94\xd1\x44\ \xa0\x42\x09\xcc\x25\x2c\xa0\x5a\x4a\x21\x4f\xe2\x10\x81\x0f\x68\ \x58\x35\x64\x40\x5f\xfc\xc8\x3b\x84\x01\xe3\x61\x61\x16\x0a\x68\ \x63\x0a\x43\x74\x90\xc2\x39\x1c\x68\x2d\xa0\xe0\x82\x76\xe3\x2e\ \xe5\x83\x29\x8e\x0c\x74\xfa\x5f\x7d\x35\x69\x66\x26\x5f\x1f\xf4\ \xc1\x7d\xa0\xda\x8e\x75\x1e\x4b\xee\xa2\x68\xfe\xd5\x87\x3a\xa0\ \x5b\xf2\x10\x1c\x2c\x4b\x1f\xf8\x83\x81\xa0\x82\x3f\xa0\x80\x48\ \xb0\x9a\x76\xc2\x42\x94\x9a\x40\xb8\x40\xcc\x69\x31\xd4\xa8\x8c\ \x42\x27\x7c\xe0\x51\x32\x64\x2a\x18\x02\x46\xee\x4f\x12\x80\x14\ \x91\x16\x29\x47\x96\xa2\x56\x46\x27\xc1\x4d\x67\x07\x89\x0c\x94\ \x42\xe9\x94\x9e\x5a\x8f\x7d\xe7\x0c\x94\xa6\x4d\x82\x5f\x5a\x22\ \x99\xe1\x6c\x9f\x03\xe6\xe2\x6c\x46\xa9\x3f\x44\xa9\x99\x86\x84\ \x40\xa8\x29\xa6\xaa\x27\x1e\x24\x4e\xeb\x90\x05\x01\xd0\x12\x67\ \xed\x68\x2a\xa4\x02\x01\xe4\x68\x12\xe4\x83\x19\xfa\xe9\x19\x7e\ \xa3\x83\xce\xea\x01\xcc\x2a\x75\x4e\xa7\x0b\x69\x27\x13\x44\xa9\ \x01\x30\xc1\x8a\x2a\x6a\x1e\x30\x6a\xa3\xd6\xe4\x77\x76\x4f\x87\ \x8a\xea\x75\xe4\x62\xfe\x1e\x98\x40\x94\xf6\x41\x6c\x22\xce\xa5\ \x6e\xc7\x98\x32\xe1\x01\xe4\x41\x7e\x02\x49\x6f\x9e\x2a\x80\x1a\ \xc2\x3b\xa4\x42\x03\xe4\x69\x30\xf4\x29\xac\x62\xa5\x74\x9a\x62\ \x81\x40\xe7\xac\xba\x6a\xad\x96\x40\x94\xae\x55\x1f\x30\x41\x29\ \xc0\x02\x13\xcc\xeb\xaf\x06\x60\xb0\x0e\x2b\xe7\x05\x5d\x4b\xea\ \x49\x39\xcc\xa6\xb5\x66\x47\xae\x9d\xa7\x09\x64\x2a\x7b\x96\x06\ \x2f\x8e\x4c\x81\x4c\x04\x13\x32\x61\x09\xb8\xc1\xb5\x02\x49\x33\ \xa8\xc3\x16\xfe\x27\x44\x06\xa7\x0e\x24\x41\x98\xbd\xea\xb8\x8e\ \xa2\x1e\xb4\x6b\xf2\x39\xe8\xc7\xaa\xe7\xb9\x86\x64\x94\xfa\xaa\ \xaf\x6a\xa7\xc2\x05\x6b\xb0\x7e\x5e\x39\x64\xa8\x0f\x75\x5e\xd9\ \xfd\x98\xa7\x32\x81\x1a\xe5\x5a\x59\x0c\x16\xb3\xf6\x01\x0a\x58\ \x08\x89\x96\x8a\x81\x2c\xac\x81\x74\x90\xc3\x8e\x6a\x59\xbc\x03\ \x01\x6c\xa1\x0e\x08\x43\x27\x50\x9d\x71\x9e\x43\xad\x6e\xec\xc6\ \x9a\xca\xae\x7a\x6c\xb9\x9a\xab\x56\x96\x89\x56\x36\xeb\xbc\xfa\ \x2a\x0d\xae\x2c\x96\x7a\x1e\x3c\xb2\xe8\xae\xee\xea\x5a\xf9\x03\ \xcd\x02\x6c\x59\xc0\x23\x4d\xfd\x18\x4e\xae\xd5\x81\x88\x4c\x08\ \xe1\xd2\xc3\xfe\xfe\x8b\xd1\xfe\xa7\x3a\xf8\xc1\xd2\x1a\xa7\xb8\ \x42\x2d\x65\xea\x81\xc8\xbc\xeb\xd8\xa6\xe1\x91\x64\x6d\xb3\x36\ \x2b\xbb\x02\xee\xbb\xc6\x6b\x29\xa8\x1d\xe3\xd6\x20\xf2\xcc\x6c\ \xe1\x1e\x2e\x13\xa0\x40\x7e\x2a\xd7\xba\xed\xe1\xe1\xb0\xa4\x88\ \x12\xed\x8f\xf4\xc0\x41\x09\xc3\x16\x9e\x83\xab\xf2\x2d\xe9\xfe\ \x5b\xc9\xce\xeb\xbb\xba\x50\x1a\x9e\x2e\xbc\x6e\xad\xc2\xbd\x6e\ \xcb\xb6\xec\xca\x4a\xdf\xab\xa5\xa9\xaa\xa1\x6c\xe1\x44\x20\x3c\ \x62\x09\x37\x18\x00\xb2\x7e\xd3\xde\x71\xee\xa8\x1a\xad\x96\x09\ \x83\x1c\xec\x2d\xe9\x2e\xe8\xbf\x1d\x09\xeb\xa2\x6e\xea\x02\x2e\ \x0d\x2e\x6e\xaa\xa6\x6a\x1a\xa4\x6a\xb8\xa4\x65\xa4\xde\x54\x48\ \xa4\xc2\xb1\xa6\xe5\xf6\x70\x2f\xa0\xd8\xd8\xef\xfc\xde\x2a\x70\ \x41\xcd\x0a\x2f\xfa\xf2\x26\x05\x54\x83\xab\x6a\x6c\xf2\x32\xe8\ \x91\x6c\x87\xbb\x6e\x2d\xbc\xd2\x20\xfd\x96\xc2\xbc\x96\x5d\x39\ \x58\x6f\x2a\x8c\x45\xff\xa6\x04\xf7\xf6\x2f\x11\xec\xeb\xff\xbe\ \x9e\xda\xd5\xc2\x13\x4a\x84\x1c\xc0\x69\xfa\x36\xb0\x58\x94\x01\ \xf2\xbe\x6f\x91\x9a\x8a\xea\xba\x6b\xc9\xaa\x5a\xcb\x62\xb0\xfd\ \x62\xf0\xec\xfe\xee\xef\xf4\xb6\x64\x2a\x34\x6a\x69\xa4\x42\x6f\ \x81\x30\x11\xb4\xe6\xf6\xf5\x98\x3b\x24\xf0\x16\x48\x42\x06\x38\ \x30\x0c\x8b\xc5\x90\xba\xaf\x04\x3b\x27\xf3\x6a\x2d\xe0\xc2\x6b\ \xec\xc6\x6e\x2a\x78\xf0\xf4\xf6\xb0\x07\x57\x2f\x10\x7b\x1e\x6b\ \x76\xa8\x8f\x70\xef\x69\x36\x80\xa6\xc9\x01\xae\x4c\x05\x29\xf8\ \x40\x2e\xfc\x6e\x0c\x37\x70\x57\xd5\x70\x0d\x9b\x6e\x0e\xe7\x6f\ \xf4\xb6\x6c\xaa\xee\x2f\x00\x7f\xb1\x58\xb4\x66\xaa\xc2\x41\xff\ \x62\xef\x07\xb7\x27\xc4\x30\xb1\x0f\x9c\x83\x0f\x64\x40\x1c\x65\ \xc0\xdc\x4e\xf1\xa8\xe4\x41\x19\x59\xb1\x1d\x7b\x64\x09\xdc\x6f\ \x39\x2c\xee\xe2\xee\x2f\x0f\xff\x6f\x19\x87\x45\x20\x8f\xb1\xf5\ \xb2\x6c\x1e\xb8\xc3\x39\x68\x54\x59\xe1\x12\xa3\x00\x13\x05\xd5\ \xa8\x1c\xa3\x2f\x11\x08\x09\x0d\xdb\xf1\x04\x13\x2e\xf4\xd6\xaf\ \xf4\xee\x30\x17\x73\xf1\x0f\xc7\x6e\xb0\xea\x6f\x8f\x69\xda\xd6\ \x69\x5a\x2e\x7c\x00\x14\x30\x4a\xd1\x42\x72\x24\x13\x2d\x1c\xd4\ \xb1\x25\xc7\xf2\x91\xd4\xaf\xeb\xea\x71\xec\xf6\x31\x27\xef\x70\ \x28\x77\x6d\x39\xe8\xe3\x01\xb8\x43\x39\xc8\x00\x02\xbd\xc7\x75\ \xbc\x03\xfe\x2b\xb7\xf2\xa8\x10\x41\x04\xc7\x32\xd4\xfa\xed\x0e\ \xe3\x72\x2e\xef\xf0\x0f\x7f\x30\x27\x47\x2f\x09\xa5\x4d\x2e\xc4\ \x71\x4a\xd8\xce\x31\x23\xb3\x75\x10\x81\x01\x54\x32\x33\x8f\xeb\ \x91\xf8\xf0\x34\x0b\xb1\x10\x17\x70\x18\x03\xb1\x2e\xf7\x71\x29\ \x1c\xc0\x39\x48\x31\x76\x18\xf3\x28\x74\xb3\x75\xb0\xb2\x3d\xb7\ \x0e\x2c\x8f\xf3\x38\xeb\x81\x0f\xa3\x33\x90\x00\xf2\x0f\x0f\xb0\ \xec\xa6\x82\xec\xb9\xc3\x18\x19\x73\x58\x28\x74\x4a\x30\x34\x90\ \x48\x90\x58\x38\xf4\xa8\xba\xc1\x43\xf1\x33\x3f\x9b\x4a\x39\x54\ \xef\xa8\x52\xef\x40\x23\xf1\xb0\xce\x91\xd5\xac\xd1\x42\xe3\x45\ \x44\xe7\xf3\x3c\x73\xb3\x49\xff\xc8\x0c\x84\xb3\x45\xb7\x34\x5c\ \xe8\x81\x3a\xff\xcb\x34\xef\xaf\x9e\x78\xb4\x01\x70\xc1\x07\x34\ \xf4\x28\x2c\x34\x37\x2f\xb4\x44\xd3\xad\xed\xd4\x33\xe7\xc2\x41\ \x45\xbb\xb4\x45\xeb\x41\x29\x10\x6d\x19\x4f\x73\x20\x57\x6f\x03\ \x9c\x6f\x5e\x08\x75\x04\xed\xb4\x4f\xa7\x74\x31\x07\x35\x24\xff\ \x34\x59\xc0\xa3\x38\x1b\x75\xe9\x66\x74\xeb\x30\xb5\x17\xaf\x86\ \xa6\x95\x41\x58\xe4\x45\x33\xd4\xa8\x04\xe1\xb3\x54\x47\x50\xeb\ \x48\xfe\x50\x5b\x1b\xb3\x49\xcb\xc0\x68\x79\xb5\x51\x63\x74\x58\ \x7f\xf2\x0f\xa7\x44\x39\x54\x09\xb2\xca\xc0\x78\x50\xb5\x5c\xab\ \xf5\x60\xa3\x6f\x4f\xbb\xb5\x3d\x87\x44\x51\xdb\xb5\x4b\x77\xac\ \x4c\xa7\x73\x0f\x4f\x6f\x58\x34\x40\x68\xed\x89\x04\xb9\x40\x56\ \xcb\xf5\x1a\xd5\xb3\x55\x5f\x75\x5c\x07\x93\x58\xb0\x34\x63\x33\ \x36\x52\x3f\x36\x53\x17\xb0\x3b\xac\xc2\x0b\xf3\x74\x5c\xbb\xb5\ \x4e\x77\xf6\x49\xb7\xb5\x6b\xa7\xc1\xeb\x74\xf5\x68\x4b\xb0\x3f\ \x68\x33\x47\xa3\xf3\xff\x36\x40\x2a\x71\x41\x44\x1f\xf6\x42\xf3\ \x34\x61\xaf\xb5\x8d\x8a\xc5\x28\xe0\x05\x3e\xbf\x03\x25\xdf\xf6\ \x6d\xfb\x6d\x1c\x2f\xb5\x46\xcb\x70\x44\xb8\x03\x72\xa7\x87\x6c\ \x33\xf4\x60\x07\x13\x5c\xdb\x4e\x31\x47\x34\x5e\x50\x75\x4a\xc8\ \x80\x68\x3b\xf7\x73\xc3\xc2\xa8\x34\x75\x18\xcb\x41\x44\x80\xb5\ \x4e\x63\x35\x77\x67\xb5\x48\x37\xf4\x65\x8b\xf7\x2a\xeb\x74\x60\ \x0b\x93\x32\xdb\xb6\x79\x5b\xb1\x1e\xe4\xc1\x63\x7f\x53\x2d\x40\ \x44\x30\x5c\x4d\x77\xf7\xb4\x66\x67\x36\x72\x2b\xf7\x58\x64\xb5\ \x77\x37\xf4\x78\xbc\x83\x82\xf6\xb7\x73\xe3\x35\xe7\xe6\x41\x95\ \xfe\x59\x77\x83\xc3\x35\x66\xcb\x35\x4a\x2b\x34\x68\x9f\x35\x66\ \xdf\x73\x72\xab\xb5\xed\x54\x31\x85\xf7\x77\xc7\x6a\x73\x18\x1f\ \x00\x41\xe5\x74\x44\x6f\x36\x4a\x27\x77\x50\x7f\x78\x55\x0b\x37\ \x59\xbc\xc3\x88\xa7\xc4\x0c\xa7\xb8\x8f\xeb\x01\x0a\x8c\x2a\x11\ \xd4\x82\x54\x80\xc5\x70\xfb\x74\x8d\x77\xf7\x65\x9b\x03\x67\xcb\ \x38\x67\xcb\x76\x8c\xa7\x04\x0a\x2c\xb3\x8f\x37\x36\x90\xb7\xce\ \x07\x54\x19\x29\x98\xf5\x6b\x07\x37\x37\xc3\x77\x72\x9b\x03\x93\ \x9b\x38\x82\x37\x79\xda\x52\x79\x95\xdf\xb5\x3f\x24\x73\x2e\x08\ \x1b\x42\xf3\xf4\x8e\xbf\x77\x92\xd3\xf3\x78\xc4\x39\x8d\x83\xb8\ \x70\x1b\xf3\x90\xa3\x79\x9a\xdf\x75\x1f\x5c\x87\x9e\x1c\xb2\x86\ \xad\x0e\x72\x8f\xc2\x98\x23\x79\x8d\xcf\x78\x9d\x13\xf6\x83\x5f\ \x76\x66\x6f\x07\x7f\xf7\xf9\x45\xff\xf9\xcd\xc2\x41\x29\x9c\xc3\ \x52\x91\xc2\xf9\xb2\x36\x83\xbf\xb7\x8e\x07\x76\x3d\xdb\x0e\x79\ \xec\xb8\x92\xa7\x01\x8d\x87\xc5\x07\xd4\xb5\xa4\xf7\xb9\x85\x67\ \x07\x6c\xb8\xb1\x3b\xa8\xf2\x86\xdb\xce\xa1\xaf\x11\x87\xc7\x0a\ \x67\x8f\x3a\x67\x5f\x36\x66\x1b\x3a\x93\x73\x15\x9f\xaf\x3a\xfe\ \x63\x97\xc0\xc3\x5e\x2b\x3d\x9b\x03\x49\xdb\x3a\x9d\xeb\xba\x04\ \x21\xfb\x87\xd7\xb8\x0b\xa4\x07\x79\x07\xbb\xb0\xdb\x75\x69\xa3\ \xef\xb2\xdb\xf7\x54\x07\xb5\xae\x27\x37\xa8\x6f\xf7\x65\x67\x00\ \xb5\x57\x3b\x69\x03\x38\xdd\xc6\xb8\xa3\xb3\x75\xa8\xd3\x78\x9d\ \xd3\x38\x94\xbf\x83\x3b\x44\x3a\xb9\x7b\xb5\xa9\xc4\x34\x89\x6b\ \xbb\xa9\x7b\x37\x9e\x47\x78\x77\x8f\x7a\x9d\x2b\xb7\x42\xc3\xc1\ \x2e\xcd\x3b\xc1\x3b\xf6\x43\x6b\x37\xa2\x63\xf5\xba\x43\xbb\x98\ \x23\xbb\x98\x87\xf7\x3b\x34\x80\xbc\x13\x3c\x69\x53\xfa\x5b\xcf\ \xba\xb7\x2f\xfc\xbf\x37\x3c\xc7\xe3\xc5\x84\x53\xfc\xbc\x9b\x8a\ \xb9\x8f\x0a\x5c\xe7\x78\x98\x03\x7c\x98\x73\xbc\xca\x13\xc0\xb8\ \x83\xbc\x79\xfb\x6d\x31\x3b\xb4\x8e\xbf\x3b\xaf\x43\xbc\xa1\xaf\ \x41\xc3\x93\x87\x98\x8b\xfb\xc4\xbb\xfc\x68\xc3\xbc\x59\xac\x75\ \x8d\x1a\x7a\xa7\x23\xf9\x78\x8c\xf9\xcd\xe3\xbc\xc3\xaf\x41\xcb\ \xfb\x3c\x85\xfb\x73\xd0\x23\xf8\x3b\x98\x43\x7a\x74\xf3\xb2\x87\ \xb7\xce\x2b\xfd\x27\x3c\xad\xd3\x77\xbd\x85\x1b\xf3\xc2\x6c\x33\ \x49\x1b\x33\x79\x54\x7d\x8e\x73\xb8\xb7\x97\xfd\x1a\xd4\xfe\x6a\ \xcf\x77\x7d\x85\xeb\x01\x3d\xa3\x75\x5f\xc0\xf7\xb1\x77\xf8\x2a\ \xd3\xfa\xd1\x6f\x7d\xdb\xbb\xfd\xcb\xbb\x43\xda\x23\x3b\x9d\x6f\ \xb7\xb7\x17\x37\x7d\x2f\xb9\x39\x9c\x43\xd3\xf3\xfd\x8f\xeb\x81\ \x3b\xe8\xbc\xbf\xaf\x41\x18\x00\x7e\xdc\x4b\x3e\x5c\x83\x7b\x72\ \xc7\xbb\xe2\x67\x3e\x78\xe8\x81\xce\x23\xfb\x1a\x7c\xc2\x1b\x14\ \xc3\x5d\x08\x75\xb3\x87\x77\x92\x63\xb5\xc4\xef\xbd\xe6\xab\xf8\ \x39\x3c\x7c\x33\x7c\xfe\x1b\xe0\x42\xe4\x4b\xf5\xa7\x27\x3a\xb4\ \xb3\xbc\xea\xaf\x3e\xeb\x9b\x43\x33\xf4\xfe\xe7\xcf\x85\x98\x8b\ \xf7\x81\xef\xfa\x3b\xec\x01\xd7\xeb\xfe\xea\x9b\x8a\x78\xb8\xc0\ \x1e\x44\x3b\xf0\x3b\xbb\x9c\xc3\x77\x98\xe6\x3e\xf2\x3f\xbd\x3f\ \xf4\x40\xf3\xbf\xbe\xca\x37\x3a\xb4\x8f\x42\x38\x53\x7f\xf5\x3f\ \x3d\x92\x44\xfb\xbf\xb7\xfb\xae\x07\x75\x06\xa8\x7a\xf8\x23\xbf\ \xa9\xe4\x82\xae\x97\xff\x87\x4b\x50\x2e\x24\xfe\xfa\x93\xbb\x1e\ \x34\x7f\x9d\x3b\xfb\xb7\xbf\xc3\x07\x94\x77\xfd\xaf\x3f\x40\xe8\ \x29\x31\x8a\xa0\x0b\x17\xe6\x0c\x1a\x1c\xf5\xae\x8c\x1e\x3d\xff\ \x20\x46\x94\x38\x91\x62\x45\x8b\x17\x31\x66\xd4\xb8\x69\x91\x63\ \x47\x8f\x1f\x41\x86\x14\xc9\x51\x8f\x01\x17\xa3\x0e\x9a\x43\x78\ \xd0\x45\x09\x87\x23\x61\xc6\x94\x39\x93\x66\x4d\x9b\x37\x1d\x1a\ \x5a\xa9\x52\xe5\x1a\x7f\x0f\x6f\x06\x15\x3a\x94\x68\x51\xa3\x11\ \x05\xae\xe1\xa9\x32\xc3\xcb\xa3\x4f\xa1\x46\x95\x1a\x35\x29\xcf\ \x25\x40\xa7\x66\xd5\xba\x95\x6b\x47\x87\x19\xd6\xf4\x73\xd9\x95\ \x6c\x59\xb3\x5c\xf5\xe8\x70\x7a\x96\x6d\x5b\xb7\x38\xdf\xc6\x95\ \x3b\x97\x6e\xdd\xa8\x01\x01\x00\x21\xf9\x04\x09\x00\x00\xff\x00\ \x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xa5\xc7\x85\xff\xff\xff\xd8\x89\x8d\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc9\xf7\xff\xff\ \xff\xff\xff\xff\x61\x89\x3e\xde\x93\xb3\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xcf\x46\x92\xff\xff\xff\xff\xff\xff\xf6\ \xe7\xb7\xff\xff\xff\x9b\xa7\xbb\x6c\x0a\x9e\xff\xff\xff\x13\x28\ \xa6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x09\x68\x9a\ \xd8\xc8\xe7\xff\xff\xff\xff\xff\xff\xf5\x88\xb7\x04\x05\x56\xff\ \xff\xff\x9b\xf2\xfc\xf7\xa8\xb8\x90\x6b\xb1\x12\x29\xdf\xff\xff\ \xff\xff\xff\xff\x22\x45\xe9\xff\xff\xff\xda\xe8\xf9\xff\xff\xff\ \xff\xff\xff\xfa\xc8\xe8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xc8\ \x1e\x08\xff\xff\xff\x98\xc8\xfb\x4e\x68\xf8\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x7b\x88\xad\x09\x48\x72\xf6\xb3\xf1\ \xf9\xe9\xf0\xd9\x91\xf3\x35\x8a\xc7\xff\xff\xff\xff\xff\xff\xb7\ \xc8\xf0\xff\xff\xff\xfb\x8c\x5c\xff\xff\xff\xff\xff\xff\xb7\xb3\ \xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x39\x56\xf6\x6d\x69\xe9\xff\xff\xff\xff\xff\xff\x0a\x18\x1d\xb6\ \x67\x5e\xff\xff\xff\xff\xff\xff\xff\xff\xff\x29\x2b\x1c\x96\x94\ \xf5\x5b\xb7\xeb\x74\x88\xf7\x11\x38\x66\xff\xff\xff\xff\xff\xff\ \x96\x93\x80\x4c\x55\x5e\xff\xff\xff\x97\xb1\xf8\xff\xff\xff\xfb\ \xfd\xfa\x7c\xe9\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd5\xd9\ \xef\x07\x15\xde\xb8\xd8\xfa\xff\xff\xff\xfa\xd8\xee\xba\x8f\xf5\ \xff\xff\xff\x2f\x48\x65\xf5\x99\xb5\xf2\x72\x71\x32\x49\xeb\xda\ \xae\xf7\xfb\xb8\xbd\xff\xff\xff\xff\xff\xff\x96\x98\x53\xff\xff\ \xff\xff\xff\xff\x6f\x78\x27\xff\xff\xff\xd4\x28\x13\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xae\x29\x13\x74\x04\x17\xc4\ \xe6\xa0\x4c\x28\xdc\xff\xff\xff\xff\xff\xff\x34\x1e\x94\x6f\x4a\ \xa0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x8b\x28\xc6\xff\xff\xff\x93\x67\xfa\xb3\x68\xeb\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x79\xcb\xf9\xff\xff\xff\xff\xff\ \xff\x78\xb3\xf8\xff\xff\xff\xff\xff\xff\xfb\xae\x89\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\x34\ \x57\x1e\xd1\x58\x30\x2b\x7b\xcc\xff\xff\xff\xf8\x8e\x8b\xff\xff\ \xff\xf8\xf7\xbe\x8a\x7a\x54\xff\xff\xff\xf3\x79\xb3\xff\xff\xff\ \xff\xff\xff\x9a\xd8\xfc\xb8\xb8\x80\x1c\x82\x9c\xd8\xd7\xaa\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x95\x55\ \x3d\x05\x58\x8d\xff\xff\xff\xff\xff\xff\x14\x37\x1e\xff\xff\xff\ \x1a\x36\xa6\x58\x77\x29\xff\xff\xff\x12\x78\xa7\xff\xff\xff\x19\ \x37\xe0\xff\xff\xff\xff\xff\xff\xb1\x58\x3a\x58\x75\xfa\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7b\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x36\x57\x8f\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x73\x78\x9b\xff\xff\xff\xff\xff\xff\ \x79\x19\xa7\xde\x97\x95\xff\xff\xff\x56\x1a\x30\xff\xff\xff\xff\ \xff\xff\xb9\xb9\xba\xff\xff\xff\xd8\xfb\xfc\x80\x97\xb5\xff\xff\ \xff\x7d\x97\xfa\xff\xff\xff\xff\xff\xff\x7c\x1e\x34\xff\xff\xff\ \xff\xff\xff\x99\x3a\xd4\x93\x5b\xfa\x92\x78\xf5\xb1\x78\xf9\xff\ \xff\xff\x54\x9a\xe3\x42\xb6\xec\xff\xff\xff\xff\xff\xff\x7e\xfa\ \xfb\xfb\xd7\xac\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\ \x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x86\x37\x0a\ \x15\xba\xf1\xb0\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\xb1\xa3\xc7\x8a\ \xa8\xfc\x0c\x2b\xf4\xb1\xa4\xc9\x93\x28\x53\xaa\x4c\x79\x03\x90\ \x9f\x97\x7e\x50\x51\x5c\x49\xb3\xa6\xcd\x9b\x38\x2f\x02\x1a\xe6\ \x67\xcf\x4b\x57\xa8\x72\x0a\x1d\x4a\xb4\xa8\xc7\x96\x0e\x86\x9d\ \x82\xe9\x60\x8f\x4c\xa3\x50\xa3\x4a\x85\xda\x52\xe4\x29\x9e\x30\ \x5f\x4e\x9c\xca\xb5\xab\x57\x93\x80\xf6\x0c\xc3\xba\xc7\xa7\xc8\ \x97\x80\xbe\xaa\x5d\xcb\x56\x61\xc4\xb1\x63\x7b\xd2\x22\xe0\xe0\ \x25\xd6\x42\x69\xdb\xea\xdd\xdb\xb5\xd0\x29\x60\xa7\x02\xfb\xa1\ \x45\x6b\x4f\x53\x98\x3c\x83\xf2\x5d\xcc\x38\x67\x4b\xa5\x5b\x22\ \xf3\x2c\x5b\x77\x0f\x01\xb3\x3d\x95\xcd\x6c\xcc\xb9\x73\xc9\x42\ \x56\x03\x47\xbe\x5a\xb7\x27\x81\xcb\xc3\x9a\x3a\xf5\xcc\xba\x35\ \xc6\x90\x71\xfd\x88\xde\xb2\xb4\x2c\x01\x5b\xb6\xf6\x2c\x35\x5d\ \xc7\xb5\xef\xdf\x07\x23\xfa\x29\xdd\x53\x24\x6d\xda\x3d\xf7\xb4\ \x3a\x44\x2b\x70\x53\x5b\x42\x56\x6d\x06\x4e\x9d\xb5\xa1\xa5\xa5\ \x89\xfb\x29\x87\x7c\x6e\xab\x56\x04\x04\xfe\xef\x39\x74\x46\x48\ \xef\xea\xe8\x1b\xdf\x30\x64\x65\x4b\x71\xf1\x7b\x5c\x9d\xda\xc2\ \xab\xac\xf2\x33\xb6\x94\x5a\xb6\x75\xa6\x7c\x9d\xe9\xe9\x05\xa8\ \x16\x20\xed\x6d\x01\x57\x60\xa7\xb8\x52\x96\x6c\x83\xf9\xc4\x9f\ \x2d\x0c\xee\xc1\x46\x7f\xfd\xad\x22\xe0\x85\x5f\x85\x34\x1a\x82\ \xf3\xd5\x66\x96\x82\x4a\x41\x77\x81\x2b\xfa\xf1\x47\xe1\x19\xe7\ \x61\xa8\x62\x51\x37\xa0\x52\x98\x6c\xa7\x70\xe7\x1e\x59\x30\x95\ \xc5\xcb\x30\xb4\xb4\x72\x81\x58\x09\x9a\x78\xa2\x74\x2b\x06\x99\ \x53\x58\xb4\xe0\x56\xd8\x7c\xc8\x29\x08\x93\x82\xb4\xc8\xb6\x07\ \x6e\x0e\x04\xe6\x0a\x2d\x27\xf6\x67\x9e\x90\x58\xae\xd4\x92\x7d\ \xb6\x5c\x70\x41\x93\xa3\xd5\xb7\x20\x4f\x84\xf9\xc1\xcb\x94\xf1\ \x9d\xf5\x64\x95\x42\xb4\xf2\x5f\x96\x70\x7e\x96\xdc\x93\xdf\xed\ \x88\xa4\x5c\x3c\x0e\x46\x8b\x7c\xc9\x39\x20\x5f\x82\xb4\x5c\x40\ \xe1\x05\x78\x08\x71\x86\x85\x71\x26\x9a\xd1\x0d\x37\xb4\xe7\xc7\ \x94\xfd\xb4\x72\xc6\x97\x7f\xce\x69\xe6\x1e\xb4\x80\x82\x19\x4f\ \xae\xc0\x24\x06\x74\x56\xd2\x82\x8e\xa1\x6f\x2a\x6a\xaa\x43\x75\ \xb8\x62\x85\x15\x63\x4c\x79\xc1\x77\xfe\x42\xf4\xb3\x07\x2f\xee\ \x95\xe5\x0a\x93\x84\xa5\xd9\xe1\x4f\x0a\x76\x69\x65\xac\x14\x22\ \x7a\xea\xb0\x08\xd5\x71\x06\x2d\x5b\x58\x51\x8e\x5c\x84\xf5\x63\ \x4b\x93\x63\xd4\xb7\xe7\x94\x84\x15\x66\x23\x60\x8f\xda\xb7\x07\ \x3a\x82\x56\xd9\x5f\x8a\xc4\x86\x7b\x83\xb1\x67\xb4\x32\xab\x6c\ \xbc\x3c\x0a\xa9\x2d\x57\x9c\xc2\x4b\xa6\x8f\x82\x62\xad\xb6\x3f\ \xd9\x97\x5c\x3f\xde\x52\x58\x47\x5e\xe1\x0e\x4b\x6e\xb9\xcf\x36\ \xb7\xc5\xb2\xeb\x9e\x4b\xd8\xad\xb6\x68\x5a\xd6\x38\x85\xf1\x72\ \x8a\x6a\xda\x7e\x9a\xef\xb7\xfd\x9e\x3a\x6e\xb7\xe5\x7e\x67\x0b\ \x2f\x8e\xee\x01\xca\xb3\xe7\xe2\x21\xeb\x38\xb8\x69\x7b\xa4\x81\ \xc9\x11\xf0\xe2\x93\x18\x9f\x68\x1e\x80\x15\x0b\x59\x08\x9d\x92\ \xf6\xd7\x4a\x7e\xf4\x0d\x43\xad\x01\x24\xee\xf1\xaa\xb3\x17\xf4\ \x33\x0e\xa6\x0c\x83\x69\x9a\x61\x98\xb9\x32\x8e\xa1\xbf\x5a\x29\ \x6c\xcc\x42\xc2\xf3\x30\x2d\x87\x48\xaa\x63\x6e\x31\xce\x47\x6d\ \xa7\xef\x0a\xea\x65\x2b\xfd\xd0\xc2\xb0\x2d\xfd\xc8\x7a\x0a\xa6\ \x94\xf9\xa4\xf3\x4b\x3e\x96\x77\x22\xb8\x50\x5f\xd8\x62\x5c\x96\ \x69\xbc\xe7\x30\xb4\xa5\x4b\x8b\xfe\x10\x17\x88\xb1\x87\x18\x24\ \xbb\x5d\xae\xb5\x45\xe6\x96\x2d\xd2\x86\xc9\x76\x6b\xa0\x13\x1f\ \x0a\x73\xdc\xd5\xa1\x92\xe6\x70\x2c\x3f\x2b\x5b\x92\xfd\x5c\x20\ \xc4\xdf\x06\x14\x69\x73\x79\xb4\xa4\xcb\xa4\x59\xf6\xa9\xac\x9b\ \x7b\x3d\xe1\xd1\xb2\xcb\x70\x43\x0e\x5c\x8b\xb9\x36\xa5\x94\x03\ \x87\xa8\x7c\xb9\xbb\x67\xfb\xcd\xcb\x18\x7b\x88\x60\x4b\xcd\xfd\ \x8d\x33\x70\xb6\x9d\x26\x57\x18\x5d\x1d\x2a\xb8\xe6\xc4\xe6\xf1\ \xeb\xfa\x6f\x75\x80\x8c\x74\x94\xc3\x58\x46\xd7\xed\xad\xde\x3a\ \x8c\xb4\xb4\xe0\x6b\x33\xb2\xa8\xdf\xca\x94\xb6\x4a\x1d\x0e\x2a\ \xf3\xad\x3f\xdf\xd9\xb8\xfd\x5c\x56\x97\x6a\x94\xdb\xb6\xe7\x4f\ \x84\x89\x21\xc6\xa3\x62\x4c\xc9\xb4\x10\xa1\xbb\xa7\x7c\x8d\xd3\ \xab\xd7\xad\xf6\xe0\x3d\x6f\xb5\x42\x08\x70\x28\x95\xfa\xd6\x87\ \x8a\x92\x89\x84\x6e\xa8\x19\xc6\x3a\x08\x80\x8e\x0c\xfc\x8d\x16\ \xf6\xb3\x9f\x2b\xfc\xa6\xa0\x6e\xf1\x6f\x3b\xc6\xeb\xd4\x64\xec\ \xe3\x00\xf8\x99\xc9\x15\x3e\x62\x5a\x7f\x34\x97\xc0\xc7\x2d\x50\ \x2f\x80\x20\x1b\x78\x86\xf3\x40\xeb\x29\xe5\x2a\xeb\xf8\x81\x9f\ \x3a\x95\xbd\x0d\xc6\x67\x0f\xfe\x70\xf8\x9e\x7c\xce\x64\xab\xe2\ \x29\x8f\x32\x25\x7c\xd4\xa3\x30\xd6\xa6\x13\x49\xea\x4a\x2f\x5c\ \x8c\x70\x0a\x67\x2f\x60\x00\xc3\x01\xa7\x01\x86\x15\xac\x08\x8c\ \x39\x0c\xe3\x1b\x3a\xf4\xc3\xfd\x5a\x15\x1f\xfd\x85\xea\x46\x47\ \xb4\x96\x03\xe6\x72\x19\xc3\x24\x71\x89\x56\xd2\x9c\xcb\xfa\x01\ \x87\x97\x45\x71\x2f\x86\x30\x10\xa6\xd4\x38\x0c\x2b\x8e\x67\x1d\ \xab\xda\xe2\xaa\xe6\x30\x06\x07\xfc\xc0\x15\x3f\x38\x85\xa3\x5e\ \xf2\x29\xa6\x8d\x68\x4a\x01\xd3\x96\xb6\x4a\x68\x2f\x14\x3a\xb2\ \x4a\x78\x10\x03\xbe\xa0\x78\x47\xb5\xac\xc7\x0a\x67\xdb\xa3\xe9\ \x44\xe2\x00\x18\xc0\x60\x0f\x5a\xfc\xe2\x37\xc6\x30\x87\x53\x8c\ \xe1\x1b\x49\x09\x64\x0f\x47\x15\x2a\x31\xa0\xc3\x59\xd5\x52\x5b\ \x09\x29\xa9\x9a\x4e\x51\x69\x62\x42\x13\x41\x7f\x5a\xd8\xc9\xaf\ \xe4\x11\x50\xb6\x50\x59\x32\x31\x48\x00\xa6\xc1\x00\x1d\x47\x80\ \xc1\x19\x60\x70\x84\x75\xc0\xf2\x1b\xdf\x98\xc3\xaa\xb6\xe0\x8a\ \x0c\x64\x40\x0c\x81\x32\x94\x10\x60\xd0\x0f\xbe\x05\xcc\x5a\x63\ \x41\x1c\x25\x7d\x22\x06\xe0\xb1\x89\x0d\xe2\x14\x41\x3f\xd2\x57\ \xcc\xa2\x1c\x73\x3f\xcf\xfe\x12\x03\x05\x6d\x41\x9e\x69\x9a\x12\ \x06\x6c\x90\xe6\x34\xd9\x70\x84\x0c\x58\x73\x0c\x5b\x68\x55\xfd\ \x32\x00\x1d\xdc\x40\x47\x08\xe3\x94\x1e\x12\x49\x58\x19\x9f\x3c\ \x89\x69\x07\x74\x99\xa1\x2e\x20\x82\x3a\xd2\xb3\x9e\x38\x99\xdb\ \xd9\x8a\xb4\x1c\x31\xac\xd1\x16\x6e\x40\x07\x3a\x56\x39\x87\x39\ \x6c\x81\x90\xd8\xcc\x40\x0e\xd8\x40\xd0\x0c\xfc\xe0\x1b\xb6\x44\ \x87\x18\xc6\xb0\xb7\x33\x88\x20\x03\xdc\x6a\x05\x0c\x6c\xa1\x52\ \x31\x48\xa9\x74\xbb\x4c\x8d\x59\xc4\x80\x51\x77\xf6\x43\x9e\x22\ \xc0\x03\x7f\xa2\xe3\x42\x90\xd6\xa4\x81\x62\xa9\xde\x21\xd8\x70\ \x99\x0c\x50\x70\xa7\xc9\x0a\xa4\x58\xdb\x33\x87\x1f\x1c\x81\xa6\ \x2a\x35\x25\x1b\x5c\xf1\x0d\x74\xf4\xe7\x59\x6e\x35\x27\x1c\xfa\ \xc6\xa0\xe3\xb9\x71\x97\xf1\x19\x86\x18\x56\x67\x25\x74\x18\x00\ \x1d\xbe\xdb\xdf\x47\xad\xca\x12\x43\x8c\x41\x24\x56\xac\x1e\x05\ \x55\x86\x8e\x1f\x84\x75\xac\x90\xb5\x02\x23\x98\xf0\x4f\x75\x9c\ \x81\x0d\xeb\xe8\xa6\xa1\xd8\x80\x0e\x18\x08\xf5\x02\x44\xb5\xc5\ \x18\x53\x36\xd1\xa6\x94\x50\x62\xde\xea\x87\x4e\x9f\x3a\x83\xfd\ \xa1\xe3\x29\x84\xb5\xfe\x09\x7b\x04\xb9\xaa\x2b\x12\xc0\x82\x05\ \xd5\x62\x64\x23\x6b\x82\x39\x64\x20\xa0\x42\x48\xe9\x3a\xf4\x1a\ \x50\x11\x74\xf6\x02\x9c\x45\xc7\xfc\x1c\xf6\x40\x2c\xde\x35\xa9\ \x7e\x70\xab\xb7\x84\x80\x87\x0c\x8c\x63\x54\x10\x15\x42\x54\xd1\ \x31\xd8\xd8\x7a\x64\xb6\x62\x05\x46\xf5\xca\x32\xc1\x6f\xec\xf6\ \xbc\x56\x98\x43\x1c\x68\x5a\x4d\x6d\x8c\x21\x03\xa6\x54\x29\x51\ \xf7\x89\x0e\xb1\xbc\x24\x32\x57\x34\xed\x58\x4a\x38\x96\x31\x34\ \xd3\x65\xe5\x51\xae\x18\x44\xc0\x42\x36\x88\x80\x16\x22\xe0\xa4\ \x77\x4d\x12\x11\xc8\x86\x72\x1d\x0e\x58\x07\x2d\x8e\x30\x06\xf4\ \x9e\x77\x0b\x5c\x60\x03\x13\xd6\xf1\xca\x23\x08\x41\x1d\x05\x5d\ \xc7\x3a\x3a\x3b\x4d\x0c\xee\xa9\x43\xa9\x49\x0a\x87\x6e\xb8\x07\ \xcb\x52\x08\xa2\x1c\xbd\xae\x2d\xe0\xc0\x06\x3a\x8a\x40\x0c\x19\ \xc0\x17\x90\x16\x5c\x92\x3a\xa0\xe3\xb1\xed\xd1\xab\x61\x86\xf1\ \x03\x95\x6a\xd3\xc2\xbc\x9d\x03\x13\xd8\xc0\x05\x6c\x52\x56\x08\ \x47\xa8\x60\x34\xcb\x03\x03\x51\xf5\xed\x86\x63\xf8\xa2\x52\x00\ \x13\x18\xc0\x38\x40\x85\x42\xb0\x05\x54\x55\x0a\x07\x31\x8b\xe0\ \xcc\x62\x50\x41\xfe\x06\x48\xc5\xe3\xa3\xd4\x01\x0e\xe6\x0d\x6f\ \x6a\xfe\xe2\xdb\x0a\x02\x19\xc9\x62\x35\x01\x23\xce\x5a\x86\x1f\ \x70\xe1\x08\x22\x50\x2b\x0c\x22\x1a\xe5\x86\x8a\x6f\x18\x59\xee\ \x32\x97\xad\x78\x8a\x23\x58\x49\xb4\x24\xf3\x9d\xef\x54\xaa\xd2\ \x71\x7c\xa3\x1c\xae\x98\x10\x8a\xaa\xda\xe6\x86\x18\x8b\x0d\x15\ \x0e\xef\x18\xfe\x02\x4a\x83\xee\x14\xcf\xe7\xe5\xc2\x38\x99\xf0\ \x03\x2f\x2c\x99\xa0\x01\x85\xb5\x2d\xa4\xc9\x59\x0c\xfa\x21\xcb\ \xda\x64\x34\xa9\xad\x20\xa1\xf2\xdc\x38\x03\x65\x3e\x33\x1e\x8c\ \x3b\x0e\xb0\xb6\x27\xc1\x15\xea\x34\x46\xc6\x45\xa1\x0c\x1c\x79\ \x55\xae\xfc\x0b\x30\x0a\xf9\x03\x31\xc4\x19\xd5\x90\x9d\x83\x30\ \xd9\x10\x8d\x31\x70\x81\x09\xe0\x8e\x26\x41\x45\x00\x68\xbe\x15\ \x15\x91\x0e\x18\x83\xae\x95\xb2\x2a\x57\x08\x54\xb4\x1d\x3d\xb3\ \xa8\xd0\x71\x07\x74\xa8\xe0\xc8\xe5\xc8\xc0\xdb\x38\xad\xec\x82\ \x8c\x4b\x85\x67\xf8\xb1\x2c\xb7\x0c\x98\x2c\x8f\x98\x11\xd8\x86\ \xac\x09\x7e\x60\xca\x76\x68\x43\x1b\xed\x28\x43\x06\x98\x20\x02\ \x26\x94\xc1\x9a\xe8\x30\xb0\x4e\xf3\x97\xc1\x2e\x07\x66\x18\x73\ \x10\x6f\x5c\xfe\xd1\x11\x07\xc0\xa2\x63\x1c\x19\x78\x00\x50\x75\ \xca\x08\x46\x8c\xe1\xbd\x55\xda\x71\xbf\x17\x42\x01\xe0\xbe\x38\ \xd4\x5b\xf8\x46\x2d\xfa\xc8\xe5\x2f\xda\x79\xb7\x26\x40\xb2\xb6\ \x85\xc0\x05\x61\x68\x63\x0a\xeb\xf0\x02\x17\x3a\xf1\x83\x1c\xfe\ \xe0\x0e\x10\xb5\xf7\xcb\xc5\x28\x06\x90\x17\x7c\x95\x5d\x6c\x6b\ \x41\xc5\x70\x07\xe3\xaa\x5c\x0c\x3f\x28\x79\x1c\xac\xad\x82\xf7\ \x02\x5c\xc1\x33\x37\xc8\xb8\x8e\xe0\x86\xb6\xbf\x38\xce\xdf\xb0\ \xa9\x03\x72\x0d\xcb\x31\xfc\xc0\xa6\x77\xb6\x82\x09\x82\x6e\x61\ \x13\x70\x41\x1d\x6e\xf0\x82\x36\x74\x10\x8d\xa4\xff\x20\x1a\x7e\ \x9e\xb2\x10\x98\xe0\x8a\x97\xf3\xa2\xda\x55\xcf\xf2\x37\x4e\xd1\ \xd2\x97\x0e\x18\xa8\x70\x30\x2e\x13\xbe\xf9\x03\x15\xd8\xaf\x1e\ \xde\x64\x04\x53\xbd\xb5\xaf\xb4\x1f\xa4\x0e\x6e\x98\x85\x1b\xfe\ \x49\xa1\x32\x60\x93\xe9\xa7\xf8\x82\x16\xaf\x38\x5c\x22\x67\xe0\ \xda\x81\xdc\x3b\xdf\xd1\xab\x0d\x78\x1e\x21\x1a\xda\xf0\x82\x17\ \xda\xb1\x0e\xc4\x73\x21\x03\x81\x16\xc1\x4d\xd3\x8c\x48\xce\x23\ \x7a\x18\xee\x65\xe5\x7b\x69\x5a\x47\xed\x02\xf6\xa7\x7e\xfe\x26\ \x17\x7e\xfe\xc0\x88\x75\x00\x5c\x5f\xa6\x27\xc8\xda\xdb\x9e\x03\ \xd5\x93\x82\x42\x00\xad\xa6\x6e\x41\x79\x0a\x30\x7e\x43\x67\x2a\ \x0d\xf5\xaa\x74\xbf\xfb\xf3\xfa\x1d\xf0\x5e\x90\x42\x2a\x86\xcf\ \x05\x2f\xd4\xa3\xff\x66\xc5\x6a\x25\x97\x01\x2a\xb0\x41\x19\x00\ \x72\x73\xa0\x0d\xa7\xa0\x0d\xd9\xf4\x05\xeb\x00\x07\xa6\x04\x51\ \x06\x06\x51\x77\xc0\x05\x71\x50\x71\x62\xd0\x64\xa3\x97\x2f\x0a\ \x94\x76\x75\x90\x03\xa9\x97\x7a\x39\x00\x82\xe7\x77\x22\x14\x16\ \x48\x84\x94\x65\x92\x97\x01\x47\x20\x06\x73\x10\x74\xf4\xb7\x77\ \x7d\xd7\x7b\x30\x50\x06\x3a\x90\x0a\xcb\xc0\x7f\xed\x50\x0f\xdf\ \x10\x0d\xe0\x36\x71\x3f\xf5\x0d\xa2\x77\x7b\xad\x54\x0b\x63\xa0\ \x0d\x73\xf0\x05\x39\xc7\x04\x47\x10\x6e\x4c\x70\x7c\x4d\x76\x84\ \x4f\x98\x81\x19\xf8\x7d\x3f\x12\x7e\x14\x10\x82\xb3\x40\x0a\xb3\ \x90\x03\x9a\x90\x03\x47\x50\x82\x14\xe2\x06\xb8\xc7\x68\xad\x34\ \x62\x30\x90\x01\x08\x15\x83\xf5\xb7\x5b\x8b\x50\x06\x67\x70\x04\ \x5e\xb0\x0c\xcb\x80\x0f\xc2\x27\x7c\x53\x30\x05\x4a\xf7\x6d\x22\ \x10\x07\xd8\xb4\x0e\x7d\x66\x84\xdf\x40\x04\x2d\xf5\x05\xbd\x65\ \x4d\xfe\x84\xc4\x08\x4a\x68\x02\x5b\xb0\x77\x8b\xb0\x08\x73\xb0\ \x08\x8c\x80\x4d\xd1\x64\x85\x14\xd3\x6f\xe3\xa2\x7a\x6e\x40\x0a\ \x5a\x58\x7e\x9a\x58\x25\xea\xf0\x03\x63\x15\x72\xbe\x45\x1e\x50\ \xb6\x4a\x6c\xd8\x77\xdf\x60\x4a\x9d\x20\x05\x3a\x90\x83\xcb\x10\ \x0d\xd1\x30\x05\x47\xf7\x0d\xed\x20\x02\x6e\x70\x7b\xd8\x74\x53\ \x73\x00\x04\x0c\x08\x04\x40\xa0\x77\x56\x20\x0c\x7a\xa7\x7b\xc5\ \xc8\x77\x30\x58\x8c\x73\x30\x89\x3f\x20\x02\xf0\x14\x73\xfc\x56\ \x4c\x75\x30\x0b\xd4\xb8\x89\xa4\xc0\x85\xd5\xd8\x76\x9b\x58\x25\ \x30\xe0\x58\x7c\xd7\x45\xc3\x90\x03\x02\xc5\x59\x4d\x16\x83\xc2\ \x98\x8c\x79\xa6\x0d\x81\x56\x06\x76\xa0\x03\x5e\x10\x0d\x3a\xf0\ \x8a\x3a\x70\x74\xd1\xf0\x67\x5c\x10\x89\x5f\xc0\x01\x40\x20\x0c\ \x5f\x60\x05\xc0\xb8\x08\x86\x08\x83\x6d\x48\x7f\x40\x17\x74\x09\ \xb8\x0e\xc2\x24\x58\x6d\x76\x03\x14\xb0\x85\x21\x68\x8d\xd4\xb8\ \x85\xd7\xa8\x7a\x30\xe0\x62\xfd\x91\x86\xda\x64\x02\x5d\xe4\x00\ \x53\x76\x06\xea\x40\x50\x3f\x40\x8b\x8b\xc0\x86\x04\x09\x83\x6f\ \x78\x59\xd1\x50\x87\xcb\xf0\x8a\x74\x18\x8f\x39\xf8\x03\xc2\x60\ \xfe\x8c\x02\x29\x90\xc7\x38\x90\xc6\x88\x5e\x7c\xf7\x05\x71\xd7\ \x0e\x9d\x05\x03\x1d\x68\x55\x75\xd0\x09\x12\x89\x8d\x9b\x98\x7a\ \x12\xd9\x76\x9a\x68\x91\xfd\x91\x01\xc2\x58\x56\x65\xb0\x7a\x4c\ \x83\x59\xdf\xc0\x05\x53\x40\x92\x25\xa9\x77\x70\x28\x04\xed\x10\ \x0d\x5e\xf0\x8a\xa9\x10\x8f\xf1\xa8\x0d\x39\x28\x05\x86\xa8\x70\ \x30\x48\x87\xda\x10\x93\xc7\x38\x7f\x6d\xd8\x77\xab\xf2\x05\x3a\ \xb9\x0e\x14\xe0\x5d\x57\xe0\x06\x9e\x08\x91\x9c\x78\x8d\x28\x60\ \x8d\x22\xe8\x06\xea\x00\x70\x6c\xf0\x0d\x5f\xa0\x0d\xeb\x00\x82\ \x67\xe5\x62\x69\xb8\x0e\xe0\xa6\x0d\x56\xc9\x86\x3f\x00\x51\xed\ \x10\x8b\x2b\xa9\x03\x52\xa0\x7f\xf1\x18\x0d\xed\xd0\x95\xc2\x30\ \x92\xbc\xb5\x0c\x65\x70\x04\x36\x68\x02\x53\x70\x7b\x6d\x99\x70\ \xf3\x67\x05\x5f\x40\x12\x20\xc5\x90\x23\x18\x91\x43\x49\x8d\xd7\ \x48\x94\xda\xb8\x7a\xa4\xa0\x94\xd4\x74\x04\x96\xf5\x4f\x2a\x44\ \x53\x42\xc0\x64\x9b\x39\x92\x8d\x69\x02\x52\xf0\x61\x72\xb8\x92\ \xa9\x20\x05\x21\xe0\x02\x96\xa9\x03\xed\x90\x99\x2b\xa9\x0d\x1c\ \xd0\x96\x26\xb0\x0c\x8e\xc6\x06\xed\x30\x21\x42\xe0\x05\x37\xfe\ \x69\x9a\x90\x05\x0f\xd1\x08\x35\x14\xd0\x09\x9d\x30\x82\x9c\xb8\ \x97\xb1\xf9\x9a\xae\xf9\x90\xa6\xe4\x32\x7f\x09\x03\x6e\xc0\x06\ \xab\xf7\x97\x27\x42\x4d\xf5\xb0\x0c\x53\xb0\x0c\xc2\x10\x9d\x24\ \xa9\x8e\x71\xd8\x95\x94\x69\x07\x2e\xa0\x9c\x93\x49\x78\xb2\xf8\ \x8e\xf8\x39\x90\x1c\xb0\x0e\xd3\x54\x06\x9a\xc6\x04\x46\xf7\x03\ \xf2\xc7\x9d\xa7\x09\x0f\x9d\x34\x2e\x65\x20\x9e\xe3\xc9\x97\xb1\ \x99\x97\x7b\x89\x02\xd4\x38\x82\x47\x00\x82\xab\x27\x50\x63\x58\ \x06\xed\xc0\x76\x4d\x78\x56\x02\x05\x03\x22\x50\x06\xfd\xc7\x05\ \x54\x99\x9f\x6c\xc8\x01\x1e\xe6\x06\xf0\x58\x99\x01\xea\x02\x5f\ \x79\x9c\xae\xf8\x8a\x98\x39\x87\x31\x59\x7f\x26\xa0\x0d\xd1\xa4\ \xa2\x6c\xe0\xa2\xf0\x04\x03\xdf\x50\x9a\xd8\xb6\x77\x86\xf0\x9d\ \xc4\x42\x01\x23\x38\x82\x9d\xd0\x0e\x42\xe9\x06\x28\xb0\xa1\x79\ \x79\x8d\xda\xd8\x85\x6c\xa7\x8d\x24\x5a\x1e\x26\xca\x04\x6e\x70\ \x04\xcd\xf9\x99\xe5\xe1\x06\x2e\xca\x05\x99\x19\x71\x5c\x20\x05\ \x32\xaa\x7b\x8b\xe0\x05\xe3\xc4\x05\xcb\x50\x99\x52\x10\xa0\x3d\ \x2a\x05\x76\xd0\xa3\x2b\xd9\x92\xfa\x79\x8c\x1c\xc0\x05\xfe\xd2\ \xf4\x91\x9d\xc0\xa0\x14\x72\x04\xc2\xb0\x8c\x2f\x28\xa1\x4e\xba\ \x40\xac\x59\x06\x53\x9a\x03\xe2\xd9\x9a\x6d\xa7\xa5\x5a\x4a\x7e\ \x22\xfa\x9e\x61\x5a\x83\x47\xd0\x84\x26\xfa\x67\xfd\x71\xa4\x30\ \xba\xa6\x6c\xea\x05\x53\xa0\x03\xf9\xd9\x06\x26\xb0\x02\x5e\x00\ \x4f\x39\x90\xaa\x78\xaa\xa3\x94\xc9\xa7\x2e\x00\x96\x3d\xaa\x03\ \x2e\x20\x83\xf4\xa7\x03\x65\x20\x4d\x47\xc0\x05\x70\x98\xa8\xae\ \x06\x50\xb8\xd7\xa4\x4e\x0a\xa5\x71\xc2\x90\xe3\x29\x9e\x92\x1a\ \xa2\xce\xea\x89\x43\x79\x8d\xea\x90\xa9\x23\x58\xa6\x6d\xa7\x94\ \x04\x35\xa6\x65\xf0\x99\xb4\xc6\x05\x5c\xc9\x84\x2e\x1a\x99\xee\ \x08\xa3\xfd\xa7\x74\x8e\xc6\x04\x78\x7a\x9c\x2e\xd0\xa7\x95\x09\ \xa0\xae\xd8\x92\xf3\x28\x05\xd1\xc9\x96\x26\xd0\x06\xc2\xc0\xa0\ \xa0\xe9\x68\xa3\x8a\xa6\xfd\x71\x04\x78\x66\x93\xc9\x0a\x39\xe1\ \xe9\xac\x95\x0a\x82\x94\x3a\x9e\x77\x49\x0a\x30\x40\xad\xea\xf0\ \xb0\xd5\xca\x89\x76\xb9\xa9\x24\xfa\x91\xa0\xd9\xad\xc2\xca\x67\ \xd1\x60\x07\x76\x10\x0d\x65\x60\x71\x5d\x29\x05\x53\xf0\x67\x2d\ \x3a\x05\xd1\xe0\x68\x47\xb0\x92\xae\x98\xa7\x1c\xcb\xfe\xa7\x2d\ \x2b\x99\xb8\x1a\xa4\xf6\x6a\x02\xbe\x0a\x9f\x15\x39\x4e\x6e\x67\ \x25\x19\xc0\xa4\x40\x57\x93\x26\x40\xa1\x31\xc3\x9a\x18\xda\xac\ \xce\x7a\xa1\x07\x7b\xad\xb5\x59\x9b\x10\xfb\xb0\x0d\x2b\x82\x60\ \xd8\x76\x24\x1a\x5c\xc1\xea\xa2\xef\xb8\x95\x2e\xb0\x02\xc7\x20\ \xb2\xb2\xa8\x03\x76\xb0\x02\x2d\xab\x03\x88\xc0\x01\xc7\xc0\x04\ \x71\xa8\xb2\x00\xda\xae\x1c\xeb\xae\x2c\x59\xab\xaf\x08\xa7\x24\ \xc9\x01\xdf\xe0\x06\x1e\xc9\x06\x60\xa8\x69\xd3\x94\x01\x8b\x60\ \x9a\xc8\x48\x7f\xde\x59\x31\x57\x70\xa1\x39\x00\xb8\x43\x3b\xb8\ \x53\xfa\x85\xd6\xb8\xb4\x11\x0b\x78\x9a\xfa\xa5\x7f\x69\x59\xea\ \x00\x03\x16\x07\xae\x5c\xb9\xb1\x5e\xbb\xa7\x88\x70\x0c\x97\xbb\ \x08\xac\xba\x77\x2b\x00\x87\x22\x50\xab\x76\x70\x0c\x2d\xdb\xa7\ \x2e\xd9\x92\x78\xba\xb2\xc7\xc0\xaa\xa7\x69\x02\x5f\x10\x0d\xb4\ \x96\x99\x9a\xc6\x06\x5e\x90\x77\x48\x76\x93\xf4\x67\x08\xe2\x52\ \x07\x46\xfb\x85\x18\x8a\x0f\xed\x80\x0f\x06\x5b\x06\x5f\x18\xb8\ \xc3\xbb\x85\x10\x9b\xb4\x11\xdb\x85\x81\x0b\x82\x15\x59\x91\xd3\ \xa4\xa6\x99\xe9\x05\x26\xca\xa7\x5a\x3b\x05\x2e\xfe\x1b\xba\x6d\ \x90\xbd\xac\xba\x02\x64\xeb\x06\xd6\x2b\x05\x97\x8b\xa7\x94\xe9\ \xa3\x29\x89\xa3\xc7\x70\x0c\xed\x1a\xa7\x63\xf5\x86\x83\x56\x06\ \x27\x0b\x50\xed\xd0\x88\xdc\x59\x92\xb7\xab\xac\x02\xd2\x90\x09\ \xab\xb0\x54\x3a\xb4\x46\x2b\xa9\xfb\xab\xb0\x0e\x5b\x9b\x0d\xeb\ \x9e\x76\xe9\xbf\x61\x68\xb3\xa6\x64\xa6\xc3\x07\x9a\x94\xc9\x95\ \xef\x88\xab\xa9\xcb\xaa\xd9\x2b\x0c\x4c\xd0\x9b\x77\xca\xb6\x7e\ \x7a\x99\x2b\x99\xa3\xf9\x29\xb6\xea\x9b\x67\x73\xf0\xab\x6a\xda\ \xad\x8c\x29\xa1\x35\x79\x8c\x01\x09\xb4\x8a\x72\x05\x44\x8b\xa1\ \x39\xb0\x97\x5d\xa8\xbf\x2e\xfc\xbf\x00\xac\xb4\x49\xdb\xb4\x5d\ \x78\xa1\x9f\x39\x9b\x76\xd9\x9c\xed\xa0\xa6\x3a\xa0\x87\x11\x27\ \x7c\xb2\x28\x05\x11\xac\xbd\x1c\x00\x87\x36\x8a\xab\xe3\x7b\x9f\ \x93\x69\xbe\xc7\xb0\x02\x6d\xc0\x01\x62\xcb\x01\x9b\x3b\x56\x26\ \x60\x07\x09\x46\x4d\x55\x69\xc2\xf6\x8a\xc2\xfa\xa9\xc2\x59\x22\ \xb4\x83\xfb\x85\x49\xcb\x89\x9a\x18\xc3\x93\xda\xbf\xd7\xba\x89\ \x4b\x2b\xc0\x6d\x67\xa2\x4f\xe9\x9e\x17\x2b\xc7\xd4\x34\x7c\x92\ \xda\xad\x26\x1a\x0d\x7c\xba\x02\x7e\x3c\xc5\xfe\x2b\xc0\x05\x97\ \x75\xc1\x3d\x9a\xaa\x2e\x49\x99\x2e\x10\xc5\xe7\x4b\xc5\x1c\xb0\ \x02\x54\x6c\x02\xf5\x9a\x67\x26\xd0\x0e\x7f\x59\x06\x8d\xea\xc5\ \x6f\x6b\x05\xd1\xa9\x0d\xbc\x60\xbf\xbf\x41\x01\x5d\xe0\x85\xe2\ \x89\x0f\xf8\x40\xa9\x39\xb0\xa1\xd6\xc8\xb0\x5d\xf8\xa1\x53\x8a\ \xa1\xfe\x7b\xa9\x03\x7c\x8d\xee\x19\xb8\x87\x4a\x7e\xdd\x0a\x86\ \x8e\xe6\x06\x11\xd7\x76\x21\x0a\x9a\xf0\xc8\xb1\x7e\x2c\xc5\x2b\ \xd0\x0e\xd3\xc4\xc7\x2a\x7b\x9f\x18\x9c\xa7\x8a\x2c\x0c\x52\x4c\ \xc5\xdb\xab\x96\x58\xac\x0d\xe0\xc6\x08\x3c\x8b\xac\x33\xca\xba\ \xd1\xd0\x5d\xd5\xc1\x90\x44\xd0\x05\x9d\xc0\xbb\xc0\xeb\xc2\xda\ \xc8\x89\x0f\x7b\x8d\xad\xc9\xca\xad\x7c\xa8\x60\xa8\x89\x0c\x1b\ \x9b\x05\x1c\x71\x9f\xfa\x94\xb4\x39\x4d\x20\xf8\xb8\xa6\xa4\xa6\ \xfe\x19\xba\xc2\x7c\x0c\xc4\x5c\x83\x30\xbb\xb2\xef\xaa\xcc\x7e\ \xdc\xc8\x54\xec\xc8\x56\x2c\x0c\x76\x10\xc9\x79\x26\x0c\xd0\x5c\ \xcd\xbc\xb5\x7b\x56\x19\x90\x40\x50\x06\x3f\x29\x20\xbc\x40\xca\ \xc0\xfb\x85\x9a\x30\xb8\x42\xd9\x85\x87\xab\xb8\xe7\x9c\x97\x53\ \x0a\xb8\xfe\xfb\xb4\x23\xca\x89\x66\x8a\xfe\x99\x23\x6a\x91\xeb\ \xd9\x1f\xb9\x79\xa1\x21\xab\xc8\xa2\x2b\xc8\x67\x60\x83\x2b\x79\ \xb6\xb6\x9a\xa3\x51\xdc\x06\x03\x0d\xc8\x54\x6c\x74\xd0\x6c\x7f\ \x0e\xdd\xb3\x8d\xf9\xc8\x26\x20\x0c\x19\x60\x00\x2b\x42\x01\xa4\ \x4c\x04\xa4\x3c\x9e\xb3\xb0\xd1\x1c\x5d\x7e\x9b\x88\xc3\x86\x1b\ \x9b\x11\x1b\xa2\x81\xab\xc7\x7a\xdc\xc6\xe4\x97\x99\x39\xa0\x94\ \x2e\x5d\x25\x9c\xc8\x04\xed\x60\xbd\x69\xdb\xa7\x82\x0c\x03\xed\ \x00\xc5\xe8\xcb\xb2\x01\x1a\xc5\x58\x7b\x0c\x04\xcd\xc8\xe7\x2b\ \xa3\xb9\x27\x83\xb9\x67\xc2\xbc\x1a\xd1\x32\xa8\x0d\x14\x2d\x37\ \xa0\x4c\xca\xa9\x50\xd8\xf8\x10\xca\x1f\xaa\x09\x46\x0b\xbc\x65\ \x60\x7e\x9b\x48\xcb\xaa\x67\x7e\xe5\x2c\x82\xca\x1b\xa2\x72\x2c\ \xa9\xbc\x6c\x97\x1d\xd9\x38\xe5\xa1\x0e\x39\xd0\x7f\xf0\xf8\x9f\ \x88\xb0\x0c\xee\xb9\x0c\xe7\xab\xc8\xed\xba\xa7\x1c\x9b\xa3\x89\ \x8c\xb5\xc2\x70\x0c\x0c\xed\x02\x69\x09\xd1\xdb\x39\x90\x09\x37\ \x93\xd7\x0c\xc9\xa9\xc0\x06\x32\x57\x1d\xe1\xd9\x05\x4d\xad\x0d\ \xbd\x50\x0c\xc0\x8b\xa5\xf9\xfb\xbb\x8c\x2d\xa2\xa4\x90\xbf\x23\ \x78\xd5\x04\x3c\x9b\x9c\x48\xcb\x3e\xfe\x2c\xa9\x6c\xf0\xb8\x62\ \x3d\x31\x80\x07\x9a\x91\xd9\xb5\xd9\x2b\x05\xef\xb9\x0c\x58\xeb\ \xc7\xe8\x7b\xab\xa6\xfb\xae\x67\xfb\xda\x1e\x1c\xa0\xda\x40\xaf\ \xb4\x0d\xd1\x5e\x9c\xd7\x24\x59\x96\x5f\x10\xc2\x68\xe7\x1b\xdc\ \x0c\xbc\xf8\x4d\x04\x21\x10\x02\xcb\x80\xd8\x51\x8d\xa1\x56\x6a\ \xa5\x19\xda\x76\x55\x1a\xce\xea\x7c\xce\x53\x1a\x9f\x09\x1c\xb8\ \x77\x28\x8e\x9c\x3d\x5d\x40\x7c\xc4\x6d\x20\x05\x01\xd5\x0e\x3a\ \xfd\xd6\x2a\x19\x8f\xa7\x0b\xa0\x8b\x2c\xb6\xda\xd0\xae\xb3\x2d\ \xc9\x6c\x89\xc5\xf3\x1b\xd1\xd1\xf9\x05\x40\xb0\x0e\xd2\x54\xd1\ \xac\x71\xd1\x44\xe0\xd4\x95\x8a\x0f\x44\x90\x0a\xc5\x40\x04\x0a\ \xfb\x85\x11\x79\xa1\xbe\x9b\xa1\x31\x3c\xca\x95\x9a\xc7\xdd\x7a\ \xa8\xe3\xf9\xa5\x04\x5c\xc7\x7e\xf9\xe0\x27\xa2\xcb\x5c\x2b\xc5\ \xd9\xbb\x02\x53\x50\xdd\x36\x88\xa3\x3a\x4a\x87\x29\x59\xab\xe6\ \x7d\xd7\xb0\x0d\xdb\xb2\x0d\xdb\x7a\x7d\xc2\xc2\x88\xc9\x24\xa9\ \xc9\xfd\xc8\x01\x9a\x0c\xd8\x97\xe8\x1a\x37\x00\x0f\xdd\x8c\x0f\ \xb5\x00\xe3\xe2\x39\xe3\x86\x8d\xa1\xe6\x17\xc3\xc8\x7d\xa5\x34\ \x2c\xa9\xe2\x29\xe0\x6d\x7a\xa6\xfe\x5d\x8d\xd9\x2d\x8d\xe4\xa6\ \xc4\xe0\xff\x99\xb6\xae\x2b\x04\x65\x30\x99\xca\x29\x05\x74\x28\ \xaf\x38\x7a\xb6\x51\xfc\xd3\xc2\xa0\xde\x2b\xd0\xe5\xe6\xf8\xde\ \x33\x2b\x83\x1c\x90\x8f\xc2\x08\x97\xab\xf8\x2d\x9e\xdc\x15\x69\ \x0e\x04\xbd\x50\xd8\x21\x50\xe3\x87\xdd\x09\x84\x9d\x0a\x4f\x2d\ \x9e\xe8\x2c\xe4\x56\x6a\xa9\x39\x7c\xa8\x17\x6a\xa5\xdd\xea\xc3\ \xcd\x79\x87\x29\xb9\x0c\x27\x1a\xa6\x48\x7e\x06\x3d\xcc\xc7\xa1\ \xdb\xb1\x15\x69\x83\x88\x5c\x99\xa5\x6b\xe5\x71\x7d\xda\xaf\x8d\ \xbe\xda\xd0\xa7\xda\xa0\xba\x97\xde\xe5\x7b\x3d\xd4\xd1\x8e\x9a\ \x9a\xbc\xe9\x83\x29\xb7\x15\xf2\xe9\x53\x41\x01\x44\xd0\x0b\x54\ \x0c\x8c\xa3\x8e\xd1\x4d\x1d\x0d\x4d\x7d\xea\xe8\x3c\x0b\x3e\x7e\ \x97\x93\x4a\xcb\xb7\x7c\xa1\x6c\xea\xc3\xc2\x17\x8b\xbb\x7c\xdd\ \x8d\x03\x78\xee\xab\xab\x73\x3d\x05\xab\xf7\xa6\x52\xae\x9c\xf2\ \xa8\xe1\xc9\x7e\xda\x5a\x8e\xd0\x22\x6b\x07\xc0\x09\xdf\x34\xb9\ \xd7\x5f\xde\x77\x99\x4c\xe6\x32\xe8\x8b\xfc\xea\x1f\xeb\xf3\x81\ \x9a\x80\x0f\xe0\xae\x8f\xc3\x7d\xee\x1c\xff\xe2\xc0\x3b\xa5\x69\ \x9c\xbf\x0a\x8b\x94\x96\xdd\xfe\xe7\x16\x67\xaa\xed\x10\xef\x0e\ \xde\xeb\x2f\x56\x83\x5d\xd9\xb5\x58\xab\x03\x67\xd5\x0e\xb5\x1a\ \xa0\x7d\xca\xe8\x79\x1a\xa0\x7e\xfc\xda\x91\x9e\xb6\x8c\x60\x07\ \xd0\x49\xe9\x61\x6e\xdb\x0e\x2f\x93\xba\xa7\xe9\xac\xeb\x8b\x19\ \xa0\x94\xbd\xbd\x17\x0d\x39\x91\x5d\x90\x0a\xbd\xd0\x0b\x21\x90\ \x0a\xf9\xd0\xd4\x4e\x4d\xee\x59\xff\xf1\xad\x99\xce\x95\xaa\x89\ \x13\xab\xc3\x60\x78\xf2\xa5\x5a\xaa\x27\xaa\xed\x2c\xef\xd2\xba\ \x0c\xec\x98\xbb\x0c\x01\xc5\x05\x56\x5e\x99\x38\xd8\x92\x3c\x1a\ \xd7\x8e\x1c\xc5\x08\x0d\xa0\x76\x20\x0c\x88\x20\xb3\x0a\x7f\x95\ \xd6\x6c\xf4\xc5\xa8\xc9\x41\xf7\x70\x0a\xea\x32\x4f\xd3\x16\x0c\ \x19\x91\x59\x8a\x02\x17\x4f\xe3\xc5\x90\x0f\xf9\x00\xdc\x32\x7e\ \xea\x18\xbd\x0c\x38\x58\xca\x09\xce\x85\x09\x8b\xd9\xda\xb8\xd5\ \x1f\x0b\x6e\x4f\xf8\x84\xc2\x2a\xac\xed\xb0\xf2\x69\x6f\x25\xba\ \x7c\xa7\x1c\x1b\x0d\x50\xae\xe1\x94\x49\xe5\xe5\xad\xf7\x8e\x3c\ \xd7\x68\x9b\xd6\x61\xab\xd7\x61\xde\xf0\x81\xef\xb3\x90\x5c\x8c\ \xc0\xd8\xe9\x55\xc2\xe2\x5e\xa1\x0c\x19\x4d\x8d\x1e\x3a\x0b\x68\ \xd0\x05\xf9\x50\x0c\xa9\xfe\xd0\x05\x9a\xa0\x09\x94\x4f\xca\xde\ \x0c\xbc\x33\xae\x03\x9a\x8f\xb4\xad\xec\xd5\xf0\xf9\xa9\x9f\x2a\ \xfa\xdf\x16\xfe\xdd\xba\xd9\xa9\xef\xeb\x72\x28\xab\xed\x00\xac\ \xe3\x1b\xaf\x2a\x79\xa7\x78\xca\xe1\xe7\x6b\xf3\x7d\xca\xb1\x8c\ \x20\x05\xda\x90\xf0\x27\x8c\x8e\x7a\x4b\x90\x6b\x09\xc9\xf9\x98\ \xe9\x00\x61\x25\x15\x9b\x33\x05\x0d\x9e\x59\xf5\x4f\xe1\x42\x86\ \x0d\x1d\x3e\x84\x18\x51\xa2\x42\x5e\x44\xf0\xe1\xd3\x84\x06\xc5\ \x2c\x4d\x1b\x67\x2d\x20\x52\x8c\x48\xc6\x05\xf8\x88\xd4\xb2\x78\ \xb1\x53\x3b\x22\x44\xbc\x74\xca\x91\x63\xd6\xcc\x59\x31\x6d\xe6\ \x38\xe2\x06\x86\x1b\x36\x22\x8e\x1c\x61\xc2\x24\x8e\xd0\xa0\x4c\ \x80\xba\x51\x77\x50\xa9\x52\x18\x4d\x61\xa8\xdb\x59\xc6\xcb\x32\ \x1d\x53\xb8\xc0\x38\x73\x24\x9a\x0e\x1d\xcb\xbc\x4e\xf5\xaa\x43\ \x8a\x14\x17\x65\x8f\xad\x38\x66\x47\xed\x58\x3b\x52\xd4\x2e\x32\ \x61\xc2\xca\xdc\xb8\x75\xe7\x5a\x91\x7b\x57\xef\x5e\xbd\x72\xeb\ \xfa\xfd\xcb\xc1\xc4\x17\x61\x84\xbf\x68\x23\xb8\xf4\x4c\x9d\x89\ \x8d\x1d\x3f\x66\x78\x83\x02\x91\x54\xa9\x88\x74\x99\xb5\x51\x53\ \xc7\x8d\x5d\x52\x85\xfe\x18\x39\xab\x8b\x49\x8b\x94\x89\xb4\xbb\ \x88\xaf\xdd\x4d\x9b\x6e\xdc\xe4\x28\x53\xc6\xf5\x11\x36\xb5\x7d\ \x12\x2d\x6a\x54\x84\x6b\xc5\x4a\x85\x9c\x51\xf7\x3a\xe6\xcf\x32\ \xed\xb6\x72\x6d\x87\x15\x06\x58\xaf\xf8\xa2\x45\x0b\x3b\xb6\xac\ \x0b\x3b\x65\xd5\x8a\x6d\xeb\x56\x18\x87\x36\x76\xff\xe6\xc5\xcb\ \x57\x7c\xdf\xbb\xdf\xff\x5a\x29\x2c\xcc\x04\x87\x31\x6e\x7a\x23\ \xbc\x01\x59\xfe\x7c\x86\x14\x2e\x86\x4c\x95\xaf\x23\xc7\xcd\xb3\ \x48\xa1\x58\x20\x95\x62\x30\x43\xa3\x0b\x4d\xba\x40\x6d\x19\x8b\ \xbc\x48\x0d\x26\x4d\xca\xe8\xa4\x13\xff\x60\x80\xad\x0c\x9c\x74\ \x63\x42\x84\x3b\x98\xd8\xf0\x8e\x3b\x44\x10\xa1\x36\x18\x7e\x7b\ \xaf\xa0\x9d\x82\x2b\x83\x8b\xd8\x62\xdb\xca\x2d\x29\xa2\x51\xae\ \x9d\x65\x9e\x8b\xa6\x1d\x06\xa9\xe2\x8a\x2c\x17\xc6\xe2\x31\x47\ \xb7\xec\x10\x26\x48\xc1\xe2\xa2\xeb\xbb\xf1\x8e\x2c\xaf\xaf\xef\ \x86\xe4\xe0\x8b\x2f\x38\xd0\x86\x09\x12\x97\x12\x82\x31\xfa\xae\ \x6c\xec\x06\x65\xf0\xe9\xa2\x93\x2e\x6a\x11\xa9\x13\x4d\xf8\x13\ \xd3\x3f\x14\x3a\x49\x05\x1f\x34\x32\x9b\x29\xc2\x08\xf1\x49\x65\ \x99\x06\xc5\x8c\xfe\x30\x07\xd7\xdc\x58\x11\xa8\xa0\x36\x1c\xc2\ \x43\x0f\x45\x80\x83\x0d\x38\xa6\x7c\xaa\x37\x14\x73\x8a\xad\x9d\ \x76\x8a\x8b\xc6\xad\xb4\xa6\x70\x8f\x0d\x19\xbd\xf0\x42\x51\x19\ \xb9\xa2\x4a\xc7\xec\xa4\xe8\x8a\x2a\xb5\x84\x39\x26\x2d\xf5\x88\ \x2c\xd2\x48\x24\xe9\x0a\xcf\xaf\xbd\xcc\x5b\x8f\x83\x39\xe6\xd0\ \x26\x83\x12\x17\x8b\x0f\x4b\x5b\x1d\x82\x47\x24\x03\x0f\xac\x2c\ \x9f\x2e\x7e\xd5\x64\x01\x60\x33\x3b\x70\x4c\x14\x34\xab\xb3\x93\ \x06\xf1\x89\x10\xc2\x98\x6a\xb2\xa9\x8c\x9f\x38\xe4\x30\x0e\x3f\ \x67\x10\x61\x86\x41\x0d\x72\x23\xa7\x83\x9e\x12\x62\x27\x37\x14\ \x4d\xd4\x46\x45\xa3\xb1\xe3\xac\x63\xa4\x38\xe2\x0c\x49\x75\x78\ \x6e\x51\xe3\x74\x48\x25\xc7\xe9\xc6\xc2\x94\x2b\x1d\xaa\x13\x06\ \x48\x3b\x86\x54\xf2\xbc\x53\xf1\x22\x12\xbc\xf2\x02\x5b\x4f\x2e\ \x61\xb4\x11\xe6\x9b\xc4\xde\x4b\xe8\x56\x89\xff\xc9\x35\x04\x94\ \x3a\xd2\xe4\xa4\x96\x88\xc8\x67\x81\xcd\xba\x34\x96\xbf\xcc\x50\ \xd8\x4c\x93\x98\x94\x7d\xd3\x4d\x31\x6d\x9a\xe5\xa7\x1c\x30\xb4\ \xb6\xcf\x3b\x66\x98\x79\x5b\x13\x7d\x3a\xa2\xd0\x9d\x9e\x7a\x8d\ \x09\x2f\x74\xfe\xa8\xf4\xdc\x68\x7e\xb6\x63\x85\x36\x56\xb0\x83\ \x89\x33\xdc\xf0\xc2\x0e\x78\x2d\xfd\xb9\x2b\xb1\xca\xc2\x57\x5f\ \x7d\x7f\x54\x4b\x1b\xb8\x0c\x36\x2f\x49\xf1\x04\x36\xb8\xd4\xf5\ \xac\x10\xac\xb0\x39\x84\x99\xa3\xdd\x59\xad\x9c\x98\xbe\x1b\x78\ \xb1\xac\x16\x8b\x6b\x19\x33\x63\xcb\x2c\xc3\x8c\xa3\x2e\x3c\x9e\ \x05\x8d\x03\x25\x3c\x76\xcd\x99\x72\x70\x73\xce\x3a\x65\x9a\x4d\ \xcf\x3b\xe2\x90\xf9\x5a\x38\x0a\x12\xa2\x27\x9c\xd9\x18\x11\x36\ \x97\x63\xf3\x82\xd3\x4a\x29\x7d\x6e\x99\xa2\xdb\x68\xe3\x98\x76\ \xd4\x61\xc3\x73\xa0\x37\x87\x4e\x6a\xb2\xc6\x8a\x0e\x5f\x4e\xa5\ \x60\xe4\xd3\x15\x48\x25\x58\x60\x24\x6d\x0f\xef\xe0\xb8\x9a\x1c\ \x92\xb0\x57\xb5\xf9\x61\x4a\x88\x6b\x6d\x1b\xb2\x42\x52\x41\xe9\ \xa4\x10\x44\x0a\x36\x1f\x7c\xf2\x69\x49\x3f\x64\xd9\xec\xc4\x79\ \x03\xff\x63\x53\x93\xc2\x4d\x62\xd6\x4d\xc4\x77\x3a\x62\xc3\x38\ \xc6\x1f\xa2\xfc\xf2\xef\x18\x54\x08\x38\x40\xb4\x8d\x72\x36\xb8\ \x58\x14\x28\xf8\xb9\xa0\x6a\x0a\x4a\xef\x6f\xd4\xe8\xa3\xbd\x80\ \xe1\x88\x29\x8e\x01\x9a\x8d\x9e\x63\xb5\xb1\xd4\xcb\x2b\xcb\xe8\ \x91\xeb\xfe\x84\xd4\x1d\x55\xd5\xce\x2e\xb7\xa3\x5d\xaa\x72\xf7\ \x97\xc2\x10\x89\x77\x56\xd0\x06\x56\x66\xb5\x98\xe2\x3d\xe6\x6d\ \x2d\xa9\x45\x2d\xa0\x17\x02\x20\x58\x6c\x34\xce\x83\x1e\x97\x72\ \xe0\xb7\xfe\xf8\xad\x0b\xd1\x33\x16\x29\xda\x64\x32\x65\xa9\xc4\ \x7b\x77\x82\x41\x4f\x84\x32\x3e\x7b\xd8\x63\x08\x3d\x0c\x82\xb6\ \xe0\xb0\xbe\x19\x08\x2a\x50\x42\x38\x02\x17\xb8\x60\x14\x26\x94\ \x81\x09\x5c\xa8\xc7\x14\xa4\x58\x0f\x2f\x50\x31\x73\xc7\x00\x5d\ \x1b\xbc\xc0\x06\xad\x38\x0d\x7e\x5e\x48\x9d\x58\x78\xd4\x1c\x1c\ \x71\x4a\x2c\x5c\x99\x82\x76\x86\xf4\x40\x56\xe5\x2e\x60\x7c\x51\ \xd5\x92\x0e\xc3\x81\x26\x01\x06\x31\x1b\x2c\x48\x1d\x00\xd1\xc1\ \x89\xc0\xc3\x32\x44\x58\x1e\x4a\x6a\x01\x04\x20\xf4\xa2\x18\x21\ \xbc\xcc\x0b\xb9\x24\xa6\xfe\x70\xa4\x13\x1b\x33\xd0\x4c\x3c\x42\ \x13\xc2\xd5\xc9\x64\xb3\x70\x8d\x53\x44\xc0\x43\x7b\x54\xa2\x87\ \xe5\x0b\xe2\x0c\xb0\x35\xca\x6c\xf5\x24\x0e\x4a\x1c\x8a\x50\x94\ \xe8\x85\x34\x4a\xd1\x0b\xab\xd4\x01\x16\x41\xe7\x85\x6e\x35\xcd\ \x7e\xc6\xc9\x14\x8f\x38\x75\xc0\x5c\xe6\xa8\x2a\x5d\x99\xc2\xbf\ \x18\xfe\x08\x1e\x56\x3d\x10\x55\x11\x0c\xd8\x77\x0c\xe3\x24\x0b\ \xce\xc1\x3d\x78\xe4\x20\x1f\x1f\x72\x83\x42\x2c\xcf\x24\x21\x08\ \x64\x31\x48\x48\x48\x6c\xa2\xe4\x57\x5c\x02\x59\xdf\x88\xe5\x3c\ \x8e\x8d\x49\x92\x33\x21\x45\x3a\x73\xa0\xbd\x67\xb9\x81\x14\x4f\ \xd1\x61\x1c\x7a\x28\x4f\xf3\x05\xc1\x9e\x22\x08\x22\x3e\xb3\x95\ \xad\xc5\x51\xa2\x1e\x5c\x38\xe5\x13\xe3\x10\x45\x44\xb4\x85\x12\ \x5c\xe0\x9c\x1d\xb2\xa8\x03\x9c\x64\x0e\x68\x03\xc4\x4e\x5b\x30\ \xe5\x95\x7a\xe9\x12\x5f\xcb\x98\xc2\xbe\xb6\x83\xcc\x62\x16\xcc\ \x54\x5f\xeb\x9a\x36\x60\x25\x52\x22\x01\x41\x6d\xd0\xac\x03\xf1\ \xa4\x49\x11\x40\xa6\x29\x1f\xda\xc4\xa6\x36\x7b\x51\xc8\x98\x82\ \xa6\x4b\x17\x01\x59\x0b\x83\x65\x12\x09\xb1\x69\x23\xe9\x4c\xa7\ \x1b\x36\x03\x13\xa4\x9c\x21\x72\xe2\x63\xdc\x1d\x40\x19\x84\xc6\ \x79\x88\x66\x41\x84\x03\xcd\xea\x41\x09\x4a\x54\xa2\x1e\xe3\x3b\ \x25\x17\x28\x21\x05\x44\xac\x6b\x68\x94\x92\x82\xfe\xa4\xb0\xa8\ \xa9\x3c\x34\x47\xd5\x49\x4b\xbe\xc4\x28\x9d\x1d\x55\x0d\x3b\x64\ \x89\x60\x47\x3b\x7a\xaa\xbf\x1c\x46\x1b\x8c\xf8\x86\x36\x86\xb4\ \xfe\x05\x59\x41\xb3\x20\x11\x5b\xe9\x3f\x2a\x02\x48\x91\x8c\x30\ \xa6\x30\x3d\x64\x08\x2d\x96\x48\x9c\x46\xa8\x3f\x24\x1b\x0d\xe0\ \xd0\x99\x99\x74\xaa\x43\x1d\x32\x8c\x89\x4e\xc2\xc5\x86\xc5\x25\ \x35\x08\x77\x60\x2a\x53\x95\xda\xb8\x51\x8a\xf2\x87\xf4\xa8\x04\ \x25\xec\xf1\xcf\x53\xd6\xa3\x1e\x5c\x45\xda\x2d\xdb\x31\x05\xa3\ \xad\xe0\x45\xc5\x01\x23\x18\xcf\x8a\x88\x1d\x85\x65\xad\x15\xdd\ \x91\xbe\x30\xba\x2f\x6d\x48\x41\x30\xc9\x94\x2b\xee\x40\x1a\x97\ \x2f\x8c\x54\x07\xda\x08\xcf\x17\xfa\xea\xd7\x68\xf2\x51\x32\x16\ \xf9\x0c\x68\x7c\x85\x0f\x30\x15\x23\xb1\x88\x04\x64\x08\x2c\xc3\ \xbd\xc6\xd6\x6d\x16\xca\xca\x9b\x0c\x51\xe0\x06\x4c\x56\xf6\xb2\ \x47\xb0\x10\x6d\x7a\xe2\x27\x7b\xd6\x57\xb4\xe7\xeb\xd3\x67\x83\ \xc0\xcf\x1f\xa6\x96\x12\xa8\xa5\xea\x3f\xed\x31\x05\x44\x84\xee\ \x45\x41\x53\xa8\x6d\x6b\x84\xdb\xd4\xa9\x25\x54\x52\x98\x42\x18\ \xd7\x4a\xaf\x8b\xe6\x0b\x48\x00\x23\x4f\x72\x95\xbb\xdc\x26\xc1\ \x6a\x0c\x3a\x00\x02\x91\xbe\xf1\x4c\xea\xea\x91\x8f\xca\x88\x2c\ \x9c\xbc\xf9\x31\xd2\x80\x17\x84\xa0\x49\xc9\x4d\x55\xd2\x1f\xfe\ \x4d\x98\x04\x33\xeb\x55\x6f\x66\xdc\x69\x59\x52\xe8\x29\x7c\xa0\ \x0d\x62\x90\xed\x39\x84\xd0\x7e\xd6\x4f\x1e\xaa\xaf\x3c\x3b\x59\ \x09\x7a\x34\x79\x0a\xfe\xe4\x42\x30\x57\x10\xdb\x45\x71\x21\xac\ \x2b\x78\x9a\xbc\xa0\x43\x96\x50\x39\x2d\x75\x16\x35\xa3\x58\xe2\ \x84\xa9\x34\x6e\x34\xae\x80\xe9\xe8\x1a\x07\xd6\x4c\xbc\xe6\x95\ \x54\xe8\xa0\xae\x41\xd8\x26\x31\x6a\xa6\x69\x57\x27\xdc\x0c\x0a\ \xfc\xb6\x00\xe8\x21\xb2\xcf\x22\x69\xec\x9b\x66\xac\xb7\x8b\x68\ \xc2\x9d\x40\x25\x05\x7b\xdd\xe9\x94\x9f\xfc\x29\xc8\x33\xb0\x6f\ \x3d\xed\x6b\xe4\x21\xcb\xd3\x93\xa9\x6d\xb2\x93\xa3\x18\xd6\xd0\ \x01\x8d\x45\x68\x81\xd7\x32\x16\x55\x86\x06\xa7\xb5\x2a\x6c\xd9\ \x54\x5b\xad\xc6\x95\x16\x6d\x07\xc3\xba\x93\x2b\x61\x90\x39\x9e\ \xb8\x6c\x01\x6d\xda\x00\xb1\x5d\xa6\x1b\xe7\x94\x4e\x0c\x1e\xcb\ \xbb\x4c\x27\x16\xe0\xa5\x70\x06\x4e\x13\xf9\xe8\xae\x45\xbc\x1b\ \x37\x8b\xa8\xec\x57\x65\xd2\x5e\x97\x50\x80\xe8\xca\x0e\x4e\x27\ \x30\x00\x91\x3d\x21\x0d\x69\xa6\xd2\x81\xa9\x44\xd6\xb6\x90\x8d\ \x1c\x87\x4a\x58\xb5\x87\x9d\xa4\xc7\x14\xd2\x9d\xee\x60\xfe\x9e\ \xe5\xb6\x47\x68\x47\xba\x9e\x23\x05\x2f\xc0\x37\x73\x5c\x86\x30\ \x02\x5d\xb4\x16\xd7\x55\xed\x75\x17\xde\x5a\xd8\x08\xe6\xc0\xc0\ \xc0\x4a\x3d\x03\xa3\x4b\x93\xec\xfa\x85\x82\x7d\x43\x78\xd4\x05\ \x2c\x96\x78\xd1\xcd\xe8\x3d\xfb\x57\xbb\xda\x08\xc9\x5e\x2a\xc2\ \x17\x26\xaf\x18\x86\x6c\x76\xf7\x84\x6d\x32\xed\x99\xd3\x3f\xa4\ \xb0\x2c\x54\x70\x18\x55\x7e\x46\xda\x7c\xf5\x14\xe5\xb6\xb9\xdd\ \x5f\xaa\x7a\xb2\x87\x53\x95\x62\x46\x3d\x15\x5b\x69\x95\x41\x07\ \x2e\x18\xda\x8b\x8e\x90\x83\xcc\x59\x67\x0a\xb9\xb4\xe8\xaa\xd7\ \xfa\xa3\x45\xb4\xe1\xd5\xab\x92\xeb\xc2\x46\x85\x70\xb9\x2c\xc2\ \x77\x73\xe0\x80\x15\xe0\xe2\xf0\x38\x1f\x64\xce\xf2\xa9\xf3\x21\ \x41\xd8\x92\x5f\x09\x0b\x58\x75\xdb\x0c\xf4\x7c\xe5\x25\x2e\xc1\ \x49\x1b\x80\xe6\xd2\x50\x19\x69\x32\x96\xed\x38\xe5\xd7\xd6\x90\ \x7e\xfb\x44\x07\xbe\x0f\xa1\x12\x92\x8e\x79\xcc\xe1\xf0\x59\x7b\ \x34\xb9\xaa\xf3\x5c\x2d\x3d\x18\xc1\xa9\xa3\xef\x0b\x80\xed\x70\ \x4d\xd3\xbc\x50\x06\x29\x2c\xe3\x27\x4d\x5b\xd7\x8c\xb8\xc2\xef\ \xab\x75\x6a\xe9\x6a\x51\x0b\x1d\x9f\x9e\x61\x56\x2d\xfe\x0c\xeb\ \x02\xff\x9a\x15\x9e\xd4\xdc\x45\xcc\x61\x0b\x0c\x1f\xc3\xc3\xe3\ \xbc\x0a\x95\x3e\x26\x57\xde\xe5\xd8\x49\x0a\x6b\x20\x2f\xcd\x7d\ \x01\x1e\x3b\xd0\xf3\x46\xd3\x05\x0b\x3d\x72\xbc\xcf\x2e\xd9\xca\ \x68\x82\x4e\xbb\x5b\x36\x87\x1a\x1a\x6d\x25\x60\x41\x64\x3a\x94\ \x6f\xfa\x7f\x27\xb2\x28\xa1\x1a\xd5\x21\x90\x9b\x1e\x54\x55\x6d\ \x3d\xec\xa1\x55\x29\x72\xea\x39\xc1\x94\x02\x17\x90\x42\xf9\x45\ \xbd\x08\x4f\x45\x7f\xa8\x2e\xb3\x93\x51\x7f\x8b\x11\xf4\x6f\x31\ \x33\x04\xcd\xc3\x81\x20\x31\x9c\xea\x83\x21\x9b\x39\xf8\x02\xab\ \x9b\x8b\x72\x90\x3d\xea\xaa\x12\xb0\x83\x87\x42\xea\x85\x98\x0a\ \xa1\xe4\x39\x3b\x03\x71\xa1\xe7\x69\x9e\xb6\xc3\x88\x99\xb8\x8f\ \xe7\xe9\x3d\x46\x2a\x93\x69\x43\x34\xd7\x48\x8a\x70\x81\x03\x3e\ \xf1\x3b\x0a\xa0\x87\xe9\xfb\xb6\xf2\x29\x37\x70\xd3\xb6\x21\x82\ \xb4\x1f\x5a\x32\xf0\x5b\x2d\xd7\xca\xa8\xaa\xa0\x14\xb1\x80\xbc\ \xc8\x89\x06\xd9\xd0\x81\xd5\xe8\x04\xcf\xa9\xbc\x2d\x4b\xa0\x30\ \xeb\x37\x1e\x51\x0b\x46\x08\x15\xee\x98\x35\xae\x31\x8f\xe6\x12\ \x86\xad\x59\x33\xbb\x98\x83\x45\xd8\x02\x2a\x34\xfe\x81\x72\xd0\ \xa0\xae\xf3\xba\xda\x8b\x08\x78\x70\x12\x20\xf8\x02\x42\x6a\x40\ \xef\x12\xbb\x7c\x10\x93\xb2\x13\x16\xb2\x2b\xbb\xd1\x20\x02\x98\ \xc8\x01\x36\xb4\x88\x8b\xf3\x18\x61\x2b\x13\xa0\xe2\x31\x10\x34\ \x2a\xce\x8a\x83\x07\xb0\x87\x79\x80\x07\x71\x98\x87\xe9\x33\x9f\ \x72\xc3\x3e\x7b\x02\xad\x19\x10\x02\x48\x1b\x2d\x4b\x33\x3c\x7f\ \xaa\x87\x68\x38\xba\x65\xa8\x14\x52\x8b\x86\x76\x51\x87\x76\xa0\ \x8d\xd5\x38\x82\x7b\xeb\x9c\xd7\x31\x23\xfa\x3b\x35\x5d\x2a\x28\ \x44\xc0\x9a\xa6\xa3\x23\xd4\xf3\xa8\x25\x71\x15\x46\x98\x83\x59\ \x5b\x2e\x13\x40\x9b\x57\x29\x07\x2b\xd8\x82\x03\xec\xba\x88\x83\ \x08\x6a\xda\x26\x30\x74\x92\x2f\x18\x43\x32\xbc\x0c\xb3\xfb\xa6\ \x3f\xd2\xc0\x03\x09\xb6\x37\x34\x09\x94\xf0\x95\x70\x2a\x19\x99\ \xb0\x43\xcb\xba\xb6\xf5\xe9\x3e\x03\x50\x81\x42\x28\x87\x72\x80\ \x87\x79\x90\xbe\x4e\xa2\x80\x72\x13\xc4\x1f\xca\xbe\xc1\x4b\x41\ \x79\xa2\xaa\x27\x8b\x06\x4a\xb0\x9f\xfb\x19\xb5\xd5\x28\x88\x4c\ \xca\x81\x9d\xd8\x8a\x4a\x39\x0e\xa9\xf1\x3c\x7d\x49\x23\x46\x48\ \x23\xac\x71\x8b\xae\x12\x3d\x54\x44\xb3\x25\xfe\x99\x03\x46\x60\ \x18\xd4\x03\xa9\xf0\xa0\xc2\x45\xb0\x02\x03\xd4\x42\xc5\xe8\xb5\ \x5c\xac\x98\x99\x9a\xa9\x2f\x2c\x21\xef\x8a\xa9\x65\x84\x1e\xd3\ \x68\x89\xc2\x92\x10\xbe\xd1\x9b\x93\x40\x89\xb8\x63\x93\xe5\x93\ \x21\xf7\x7a\x3e\x0f\xb1\x87\x2b\x38\xc9\x72\xb8\x42\x0d\xe8\x46\ \xe9\x23\xc4\x15\x2c\x9f\x79\xd0\x46\x70\x1b\xad\xee\xb3\x07\x1e\ \x82\xa2\x34\xf2\xb4\x4e\xe0\x82\x77\xec\x96\x10\x4c\x8a\x18\xe9\ \x84\xe2\x38\x20\xce\xc1\x91\xcf\x83\x30\x54\xbb\x3f\x57\x1b\x3d\ \x54\x11\x9b\xdd\x59\x18\x46\xf0\xbf\xff\x93\xc2\x59\xe4\xba\x85\ \x5c\x0a\xda\x83\x88\x05\x5c\x1e\x99\xe2\x45\x6e\x22\xc3\x5e\x30\ \xa4\xe7\x31\x89\x43\xca\x87\x8e\x49\xa1\x8c\xa0\xa4\x03\x79\x21\ \x8d\xf1\x95\x18\xa2\xb6\x59\x78\x0a\xd2\x11\x81\x6a\xb9\x02\x15\ \xb8\x4b\x78\x30\x84\x72\x90\x84\x6e\x84\x05\x6f\xac\x04\x13\xf4\ \x46\x7a\x90\x04\x49\x98\x07\x22\xeb\x13\x18\xf4\x21\x6b\x11\x8a\ \x7c\x14\x35\xd9\x28\xaa\xa4\x58\x8a\x9d\xc9\x81\x49\x09\x9a\xb2\ \x5a\xba\x1f\x81\xb0\x60\x6a\x8b\xd8\x41\x04\x61\x58\x81\xed\xe8\ \x0e\xba\x32\x8f\xd6\x7b\x42\x82\x7c\x45\xfe\x13\x98\x42\x2b\x60\ \x84\x56\xc0\x4a\x2a\xf9\xba\x7f\xb8\x01\x2f\x9c\xc8\x10\xd2\x26\ \x42\x62\x40\x60\x93\xa9\x32\xe4\x18\xfd\xd0\x9b\xe1\xa3\xa4\x33\ \x1c\x8d\x8f\xbc\xb8\xfe\x38\x34\x77\xe2\x89\x78\x32\x80\x38\x40\ \x49\x03\xa8\x84\x2b\x98\x87\x2b\xf8\x4b\xe9\x2b\xc1\x4a\x98\x87\ \x96\xec\xa4\x79\x10\x07\x40\xc4\x3e\xc5\xbc\x49\xc6\x64\x82\x28\ \x0a\x20\xa4\xb0\x45\xe0\x48\x0a\x3c\x59\x09\xa8\x91\x30\xfa\xd3\ \xcc\x7d\x5c\x8b\x8d\xe2\x80\x45\x38\x2e\xd2\xfc\x8e\xd3\x44\xcd\ \x82\x34\x81\xd7\xb3\x82\x1f\x78\xcd\xde\x30\xb1\x85\xf0\x42\x27\ \x31\x24\x41\x02\x93\x10\x10\x4b\x6e\xca\x3d\x12\x02\xb6\xb3\x84\ \xb6\xd1\xe0\x1e\x92\xeb\xbd\xb4\x83\x9e\x6f\xea\x92\x95\x41\x0a\ \xf0\x01\x0a\xac\x32\x00\x7b\x30\x00\x03\x78\x80\x12\x30\x44\x58\ \xa0\x00\x7b\x28\x81\xea\x24\x44\x58\xb0\x07\x58\xd0\x4e\x0d\x90\ \x84\xee\x5c\x32\xf1\x4b\x25\x15\x29\x0e\x69\xc9\xc2\x12\x51\xb9\ \xca\xa4\x14\x7c\xb8\x9f\xb0\xa0\x3f\xd0\x2b\xa8\x2e\xeb\xaa\xba\ \x60\xa0\x28\xac\x4f\x86\xbb\x4f\x38\x22\x9b\x24\x1d\x03\x38\xeb\ \x4f\x86\x54\x08\x6a\x02\xc3\x28\x1d\xfe\xd0\x8d\x29\xd0\x6d\x2a\ \x06\x5f\xa9\x05\x88\xe4\xb8\x35\x61\x31\xd2\x00\x99\xee\xe9\x8f\ \x6f\x5a\x3b\x2f\x69\x07\x43\x0b\xc1\xba\x1c\x9f\x07\x50\xd3\x14\ \x18\x82\xe9\x13\xa2\x20\x78\xce\xf2\x29\x01\x6e\x0c\xcc\x97\xb4\ \x4e\x0d\xd0\x00\x71\xc0\xbe\x4e\x02\xbf\x7f\x52\x22\x69\xb9\x36\ \xc9\xc4\x23\x18\xc0\x9c\xa0\xb1\x91\x32\x92\x8e\x63\x30\x8b\x15\ \x58\x84\xd0\x5c\x23\x63\x5a\x15\xe4\x82\x45\xab\x73\x45\xaf\x41\ \x95\xac\xfb\x02\x2b\x18\x03\x11\x68\x52\xff\xbc\x81\xd9\xfc\x38\ \x88\x14\xcb\x32\x54\x3b\x30\x41\x50\x40\x0a\x43\x9b\xda\x8f\xcd\ \x10\x96\x14\xaa\xd0\xc8\xd2\x04\x19\x62\xcb\xa1\x1a\x0d\x0b\x21\ \x91\x4d\x8a\x83\xe5\xac\xaf\x07\x20\x32\x21\x48\x44\x3a\x28\xb7\ \x12\x2d\x81\xe9\x9c\x4e\x3b\x95\x04\x3c\xa5\x87\xf2\x51\x32\xf0\ \xf3\x27\x30\xc2\xc4\x1a\xc5\xa3\xe0\x80\x8d\x43\x6d\x9d\xea\x30\ \x8b\x2e\x9b\x32\x3a\x02\x9d\x8f\x3a\x12\x56\x79\x92\xa6\x3c\x18\ \xf2\x78\x92\xb9\x98\x03\x4e\xed\x54\xdf\xe8\x35\x6a\x82\x29\xb1\ \x1c\xc3\xde\xfc\x15\xe8\x29\x06\x01\x35\xd0\x30\x1c\xd0\x48\x6a\ \x46\x61\x29\x2f\xf4\xf2\x0f\x17\xfe\xa2\xc3\x66\xd1\xac\xa8\x5a\ \x1c\x35\x7d\x00\xbe\x83\x05\x58\x80\x2a\x7b\xaa\x03\xbf\x6c\x53\ \x97\x94\xbe\xe9\xec\xc6\x79\x28\xcc\xc3\xf4\x10\x18\x0c\xb0\x2a\ \x5a\x30\x12\xf3\x2b\x3c\x51\x14\xa4\x73\x14\x45\xbd\xd6\x7e\xb1\ \x03\x44\x38\xc5\x61\x22\x48\x62\x8a\x8b\x51\x61\xae\x06\xa2\x35\ \x26\x9c\x8b\x2f\x70\x98\x73\x55\x8a\x86\x94\x4d\x78\x78\x31\xb1\ \x5c\xd0\x8b\x1b\x8d\x62\x88\x52\xdc\x6c\x40\x8b\xe1\x92\x61\x03\ \x3e\x61\xb3\xb1\xcd\x50\x09\x33\x09\xbe\x0a\xc5\x09\x10\xd1\x10\ \x35\x1d\x02\x36\xa5\x83\x12\x08\x4c\x0a\x98\x3e\x6f\xab\x4e\xeb\ \x4b\xd1\x15\xfc\x4b\x99\xd4\xda\xee\xb4\x49\xf0\x83\xa2\x49\xc4\ \x58\x3c\x7a\xbf\xd6\x31\xc2\x6b\x75\x81\x50\x51\xd4\x4f\x71\x3a\ \x6e\x55\x92\x83\x79\xd4\x53\x3c\x52\xda\x51\x95\x2d\x10\x83\xf2\ \x5c\xc8\x2a\xa9\xbd\x0f\x82\x57\x9b\xe5\xb8\x65\x7c\xa1\x6d\xb2\ \x59\x07\xe4\x98\x8b\x1b\x39\xa2\x6d\xc3\x75\xc2\xa9\x69\xf3\x1b\ \x37\xc9\x80\xc6\x15\x8a\xf3\x79\x80\x14\x78\xda\x61\xa5\x00\x43\ \x80\x07\x49\xa8\x83\x20\x88\xaa\x12\x50\x01\x0a\x30\x9f\x12\xa5\ \x4e\xbf\xd3\x46\xad\x3d\xcc\xfe\xf3\x21\x47\x28\x83\x9f\x45\x29\ \xaa\x8c\x95\x8a\x19\xc9\x94\xb5\xaa\x0e\xb4\x0a\x15\x17\x10\x06\ \xda\x15\x4d\x25\xac\xd4\x81\x23\x38\xe6\xaa\xa0\xfb\xe4\x1a\xbd\ \x08\x1e\x98\xcd\x23\x2e\x94\xcd\x8a\x38\xcb\x8f\x2b\x21\xf0\xfa\ \x26\x99\x62\xd7\xc5\x6a\x09\x70\x7a\x36\xe0\x2b\xce\x37\x04\x96\ \x49\x22\x9c\x75\xc8\x00\x80\x1a\x87\x3d\x8c\xdc\x61\xfd\x4b\x0a\ \xa0\x00\xbd\xa4\x80\x12\x40\xc4\x19\xf0\x3b\x14\x2d\x51\x15\x84\ \x41\xeb\xd4\x5a\xc3\xfc\x3b\xc6\xe9\xa1\x00\x5b\xa5\xc9\x5b\x5d\ \xbf\xa2\x90\x95\x58\x09\xe8\x38\xca\xd7\x99\x8e\xe9\x00\x95\x21\ \xe9\x0e\x70\xad\x1d\x58\x1b\x8c\x57\x11\x06\x37\x82\x23\x82\xdc\ \x35\x68\x2a\x4f\xbc\x8d\x88\xeb\x72\x9e\x2c\x2d\x24\xef\xf2\x26\ \xee\x0a\xd5\x28\x2d\x86\xe7\xf9\x48\xe1\xeb\x12\x61\x11\x96\x92\ \xd1\x1b\xa0\x45\x9c\x59\x40\x07\x26\xc8\x80\xe5\x1c\x87\x3b\x90\ \xdc\x36\x15\xd1\x84\xd5\x4b\x49\x48\x01\x6d\x81\x34\x15\xed\x46\ \xc4\x7c\xb9\x72\x1b\x5d\x99\x2c\xb7\x1e\x62\x32\xc3\xf3\x53\x15\ \x79\x18\xea\xea\x9f\x9f\x80\x2f\x45\xb9\x11\xb2\x1d\x0b\x6d\xa0\ \x5d\xdc\x0d\x60\xd4\x94\xfe\xdb\xef\x90\xcf\x31\x40\x48\x27\x16\ \xb8\x2d\x30\xd7\x4e\x75\x60\x89\xd0\xdb\x7c\x48\x05\x76\x1d\xd5\ \x5a\x48\xc6\x99\xe2\xc5\x5e\x78\xc0\x8d\xa9\xb8\xe4\xdb\x15\x9a\ \x08\x3e\x7c\xc0\xa4\x6e\xb9\x03\x74\x88\x83\x14\xe6\x3b\xef\x15\ \x51\xf0\x2d\x04\xcb\x85\x05\x51\xe2\x3e\x0a\x88\x4e\x14\xb4\x61\ \x1c\x26\xc4\x26\x2b\xb7\x4c\xfb\xbe\xab\x0a\x8a\x9c\x11\x54\xbf\ \xea\xb1\x15\xe9\x16\x08\x31\x62\xe7\x38\xa0\xab\x29\x8b\x47\x85\ \x54\xa8\xd3\x9d\x83\x79\x15\xb8\xa0\xb5\x22\xd1\x8b\xb4\x81\x59\ \x99\xd5\x62\x9a\x3d\x5e\xaf\x2c\xa1\x04\x65\x40\x88\x0c\xa4\xb3\ \xec\x33\x8c\xa8\x9b\xe1\xe3\x0c\x19\x52\x96\x0c\xf8\x09\x11\x40\ \x87\x3b\x18\x07\x35\x2d\x01\x3a\x96\xda\x5d\x36\x04\x43\xa0\x00\ \x6d\x31\x2a\x38\x18\x02\x3e\x0e\xdd\xf2\xc9\x4e\x3b\x1d\xe4\x1e\ \xbe\x49\xf6\x09\x97\x1c\x82\xd6\x59\x11\x82\xf7\x1b\x9a\x9e\x4c\ \x94\x95\xc8\x51\xe8\xc0\x87\xe8\x48\x97\x6d\xc5\x5d\x2a\xae\x8b\ \x27\x31\xd9\xd5\x44\x45\x27\x39\xa6\xfc\xfc\x06\x11\xb0\x5b\x3c\ \xca\x62\xc7\xa0\xa6\xde\x54\x9e\x5e\xf0\x45\x91\x00\x24\x20\x38\ \x24\x03\xe5\xa6\xbe\xfe\xd5\x18\x8f\xd1\x08\xb3\x03\x1c\xa0\x8a\ \x0d\x74\xa0\xe5\x14\xb8\xe5\x81\xa5\x03\x03\x10\xd1\x3a\xae\xe3\ \x5e\xae\x04\x44\x84\x1c\x38\x25\xe6\xf4\xf5\xbb\x64\xb6\xd3\x4f\ \x1a\x82\x7d\x0a\x14\x2e\x62\x02\x3b\x89\x33\x0a\xc1\x4c\x79\xb1\ \x11\x06\xa1\x14\x5e\x3a\x20\xb7\xd0\x56\xf9\xac\x64\xf2\x48\x38\ \x6d\x30\x52\xba\x10\x06\x29\x46\x45\xb2\x71\x12\x4d\xfe\x82\x31\ \xd0\x86\x6f\xc8\x80\x20\xee\x3a\x50\x66\x67\x5e\x78\x1e\x55\x96\ \x60\x32\x96\x1b\x9b\x02\x24\x88\xd4\x15\x36\xe4\x38\x73\x2a\x39\ \x9a\x78\xa7\x6e\x81\x3e\x74\x10\x58\xc9\x2d\xd8\x5d\x4e\x58\x11\ \xdd\x4b\x0a\x08\x02\xa3\xf2\xd5\x20\x80\x05\x15\xe8\xcb\x41\x7c\ \xc9\x97\xab\x27\x20\x83\xbe\xa2\x88\x8d\x23\x20\x85\x0d\x12\x97\ \xa6\xc0\x93\xad\x68\x0b\xd4\xd1\x51\x19\xc1\x11\x5e\xda\x17\xf9\ \xec\xc7\xdc\xe5\x1a\x4a\xcd\x0b\x13\x68\xbd\x56\x4c\x3d\xe6\xf2\ \xbf\x9a\xde\x02\xb9\xd8\x54\x2d\x5c\x67\xb0\xe3\xe9\x8e\xe1\x33\ \xb9\x99\x48\x13\xf2\x9b\x77\x06\xb9\x2e\x38\x4b\x65\xf4\x4d\x91\ \x41\x81\xe1\x68\xb4\xa5\x7d\x00\x83\x7e\xda\x3a\xde\xe5\x84\xf6\ \xe5\x3b\xf0\xd5\xfe\x21\xd2\x6a\x0a\xe0\x05\xe9\x63\xaa\x12\x45\ \x51\xf3\xf1\xa1\x7a\x4a\xcc\xee\xc3\x8d\x26\x2a\x03\x82\xb0\x5b\ \xf4\x5c\x94\x69\x6d\x14\xeb\xd8\xa5\x1b\x49\x85\x02\xb2\x47\x61\ \xea\x9a\x82\x44\x2e\x82\x69\x3d\x4d\x8e\x54\xda\x61\x3d\xbd\xd8\ \x02\x74\x50\x6e\x11\x18\x11\x3c\xd2\x69\xc3\x26\x02\xb3\x83\x57\ \x6c\xb2\x29\x99\x48\x6c\x12\x02\x39\x8b\x04\x27\x07\xc9\x81\x69\ \x7b\x8d\x32\x28\x61\x0e\x49\x81\x0f\x85\x85\x3a\x28\x58\xce\x8e\ \xea\xa8\x16\x87\x42\xc8\x3e\x6d\xf9\xb6\xbf\xf4\x63\xb0\x6e\x53\ \xf9\x96\xa7\xf1\xd9\x10\xb2\x66\x82\xa7\xf0\x96\x83\x10\x82\x10\ \xac\x4c\x1c\xa9\x11\x1b\x71\xbc\x29\x5b\x01\x17\x90\x44\xa4\x5b\ \xab\xd8\x81\xdb\x93\x2e\x15\x49\x25\x98\x27\x9c\xca\x24\x61\xb8\ \x65\x8a\x70\x72\x1d\x83\x2d\x98\x03\x07\x58\x07\x74\xb0\xdb\xe7\ \x9e\x8f\x2d\x86\x6c\x10\xc2\x3d\xfd\x18\x93\xbf\xed\xd9\xbe\x75\ \x9e\xb9\x33\x99\x74\x3a\x82\xc6\x8d\x83\x13\x56\xd3\x55\x80\x05\ \xe9\x8c\x6a\xf0\x95\xda\xf3\x06\x5f\xcb\x95\xda\x6d\x51\x9f\x3b\ \x08\xcc\x21\xf0\xb6\x14\x7c\xb9\xd4\x7e\x49\x1f\xe2\x90\xfb\x66\ \x6e\x21\x88\xfe\x0d\x0d\x62\x72\x4b\xd4\x0a\xfb\x1b\x8b\xc6\xfb\ \x1c\x13\xb0\x2d\xe6\xc0\x1a\xd0\x8b\x9d\x80\xab\xd4\xc1\x08\x9b\ \xdd\x31\x92\x29\x44\xc8\xb6\xe5\x00\x20\xd0\x86\x32\x0f\x6c\x37\ \x02\x86\x4c\xa5\x45\x5a\x9c\x83\x6f\xf8\x01\x74\xa0\x1c\x12\x29\ \x6c\x5b\x69\xe7\xe8\x86\x43\x30\x59\xb1\x8f\xc9\xc8\x6e\x22\xcb\ \xbd\x91\x89\x75\x6a\x2f\x26\x58\x07\x2e\x10\x83\x5c\x35\x80\x12\ \xd8\x6c\x0a\x30\x6f\x0a\x00\x04\x45\x3f\x6f\xca\xdd\xcb\x72\x98\ \x87\x19\x30\x88\x44\x14\xd1\xbf\xd3\x3e\x21\x27\x72\x42\x5c\xed\ \xc5\xe1\x10\x36\xf8\x8d\x4d\x2c\x03\xe5\xc8\x99\x33\x80\x01\xc8\ \x5b\x9a\xdb\x46\xdb\xb4\x68\x8b\xd0\x73\x3a\xe1\x72\x0e\x29\xa8\ \xdd\x90\x55\x8b\xcf\x64\xdb\x4b\x56\x12\xfb\xac\x8b\xd6\x8b\x2b\ \xbc\x68\xae\x9a\x06\xc3\x82\xc1\x8b\x39\x18\x06\x91\x9a\x83\xbd\ \xd8\x02\x9a\xde\x70\x36\xf0\x70\x2c\x79\x1b\x7c\xf0\x98\x13\xb2\ \xe0\x43\xda\x95\x56\x45\xb6\x40\xba\x8f\xc9\x9e\x89\xd7\xc8\x80\ \x1f\x50\x01\x15\x30\x80\x2b\xb8\x02\x83\x5e\x85\x84\xb5\x71\x46\ \xbf\xf1\x82\x85\x74\x6c\xbc\xea\x60\x66\xaa\x1f\x0f\x32\x15\xdc\ \x74\x15\xfe\xec\xa4\xf3\xf9\x93\xdf\x60\x83\x14\x39\x82\x50\xef\ \x84\x48\xa9\x91\x5a\x92\x82\xb3\x98\x32\xd0\x99\xb2\x63\xf8\x4c\ \x0e\x38\x86\xcc\xa1\xa3\x68\xe8\x84\x46\xb1\x83\x8c\x62\x04\x61\ \xf8\x4c\xb8\x10\x0c\xe2\x5e\x95\xf9\x24\x0f\x3b\x68\x45\x0a\x72\ \x23\x2e\x1f\x0c\x32\x5f\xbd\x4c\x55\x73\xd5\xfb\x86\x62\x3f\x85\ \x91\x47\x76\x78\x20\xde\x5b\xd1\x92\x8c\x60\xcb\xc4\x0e\x21\x5f\ \xf1\x18\xe9\x4e\xb6\x8d\xd1\x0f\x34\x40\xce\x32\x58\x87\x6f\xf8\ \x06\x31\x58\x4e\x03\x90\x5a\x73\xb7\xf1\x46\x07\xdf\xf3\x86\x05\ \x48\x37\x84\x4a\xc0\x03\xf7\xb6\xa7\x12\xe8\xc6\x20\x5f\x58\x3b\ \x9d\xef\x6f\xbc\x77\x53\x17\x8a\x52\x87\x01\x84\xca\x19\x18\xe8\ \x0a\x0b\xf9\x99\x81\xcf\x22\xd0\xe1\x0e\x3a\xd2\x01\x78\x13\x8c\ \xf4\xa3\xc4\x29\x88\x78\xbd\xd6\xeb\x45\x80\x0b\x8b\x4f\x26\x38\ \x5a\x84\xd3\x14\xee\xa9\x54\x18\x86\x73\x95\xac\x93\x0b\x27\x11\ \xc0\x2f\x00\x06\x2b\x98\x83\x5a\x98\x83\x34\x57\x73\x83\x31\x84\ \x95\xa7\x33\x0a\x60\x55\x56\x55\xbb\x72\x62\x55\x03\x81\x6c\x65\ \xb4\xf9\xee\xa6\x90\x9d\x77\xf3\x07\x30\xf4\x2b\x08\x7a\x40\xe0\ \x7c\xfe\xf0\x25\xfa\xa3\x37\x7a\x11\xd5\xcb\x6c\x24\xdf\x21\x1a\ \xe6\x40\xb4\x3e\xf6\x2d\x37\xec\x84\x49\xa6\xd2\x16\x5f\xdd\x24\ \x26\x48\x8c\xac\xdf\x41\xd7\xd8\x97\x57\xfa\x19\x59\xda\xd6\xbf\ \xe8\x8e\x65\x68\x0a\x74\xd1\x06\xdc\xff\x27\x2f\x60\x84\xb9\x4a\ \xe0\x95\xee\x0b\xbc\x56\x15\x80\x29\x60\x84\x64\xa6\x70\xdd\x0b\ \x9a\x4e\xf3\xbf\xa7\x9d\xc3\x0f\xac\x27\x45\x05\xc8\xde\x1b\x6b\ \x3f\xcb\x48\x32\xbb\x03\x51\xe5\x8b\xb4\x08\x3b\x71\x03\xcb\x2f\ \xf4\x5b\x36\xe8\xf2\xae\x63\xa2\xb7\x71\xd0\x3f\x7a\x22\x73\x7a\ \x78\x98\x0b\xab\xce\xea\x79\x28\x84\x6d\xf4\x24\xe8\xb4\xce\xfd\ \xf7\x46\x20\x87\x2a\xd8\x07\x88\x3b\x4c\x44\x08\x39\x73\x86\x0d\ \x97\x7a\x5c\x8e\x1c\x91\xb2\x42\x87\x97\x68\x3a\x8e\xb5\x69\x63\ \xa2\xa2\x89\x8c\x1a\xed\x1c\x39\x23\xc4\x0d\x17\x29\x8c\xa6\x4c\ \xe1\x12\x87\x0b\xa3\x45\x1a\x57\x5a\x69\xe9\xb2\xa5\x09\x0e\x1a\ \x5f\x66\x14\xa6\x12\xa6\x89\x2f\x2a\x33\x2e\x9a\xf3\xe5\x8b\xb6\ \x39\x26\x5e\x12\x6d\x09\x44\x5b\x2f\x20\xc0\x32\xba\x34\x74\xe3\ \x1f\xd4\xa8\x52\xa7\x52\xad\x5a\xf5\x46\xa1\x7c\x5d\xba\x2c\xd8\ \xfe\x9a\xef\x6b\xbe\x05\x9a\x66\x75\xed\xa2\xa9\xcb\x57\xb4\xf9\ \x6a\xd5\xfa\xd6\x09\x5d\x86\x6f\xdf\xc4\xc4\x19\x17\xc7\x00\xac\ \x12\xb0\x60\xd5\xa1\xe0\x77\x2f\x60\xc0\x25\x86\x04\x29\x4c\xc1\ \x50\x39\x78\x84\x67\x3c\x98\x07\xaf\x12\xac\x21\xb0\xec\x55\xaa\ \x44\x41\x05\x05\xcb\x90\x2b\x2d\x86\x23\x44\xc8\x8c\x3b\x71\xee\ \x14\x34\x28\xe2\x64\x1c\x26\x4c\xa6\xb4\x71\xa1\x63\x99\x14\x3b\ \x18\x57\xae\xe4\x10\xad\xe3\x99\xd5\x53\x18\x69\x63\xa4\xda\x1e\ \xa3\xe0\x37\x99\xba\x1c\x6a\x25\xa3\xcc\x99\x38\xad\xdc\x84\x69\ \x45\xa6\x95\x9f\x73\x84\x1d\xd5\x66\xbc\xa8\x4b\x60\x40\x4e\xf9\ \x24\xee\xd4\x2a\xf8\xf0\xe1\xb1\x6e\xe5\x5a\x3e\x1f\x91\xaf\x68\ \x66\xcd\xd2\xa4\x69\x41\xd7\xae\xf8\x88\x68\xd3\x26\x77\xdd\x0f\ \xba\xe3\x1e\xf0\x2f\x41\xa7\x04\x80\x81\x09\x08\xa0\x7f\x84\x05\ \x01\xcb\x61\x86\xc0\x03\x0f\x23\x85\x88\x63\x88\x24\x95\x18\x60\ \x0f\x2c\x95\x51\x30\x4f\x65\xf6\x0c\xb1\x61\x09\x41\x78\x06\x5a\ \x10\x43\xdc\xe1\x99\x41\x42\x88\xc0\xc4\x1d\x47\x88\x70\x07\x25\ \x88\xac\x60\xc7\x14\xb1\x59\x64\x11\x6d\x1a\x2d\xa2\xc3\x11\xfe\ \x6c\x1c\x51\xcf\x37\xd1\xa8\xc0\x88\x3d\x71\xc4\x51\x4f\x3d\x3f\ \x6e\xe1\x5c\x51\x1a\x25\x77\xdd\x71\x39\x11\x97\xd1\x4f\x26\xcc\ \x51\x1f\x10\x5f\xcc\x01\x9d\x73\x4c\xb6\xa4\xdd\x17\x4d\x5a\xf1\ \x9d\x78\x61\x8a\x09\xd5\x0d\x14\xc0\x57\x9e\x57\xb5\x10\x21\x16\ \x1a\x6d\x6a\x82\x46\x5a\x5d\x74\x42\xc4\x37\xf6\x7d\xf3\x43\x1c\ \xfa\xa5\xe0\x1f\x1d\x7d\xfe\xa7\x17\x2c\x7d\x12\x08\x20\x1d\x84\ \xf1\x89\xa0\x21\xc6\x19\xb2\x28\x3c\x99\x55\x58\xc9\x15\x95\x55\ \x38\x59\x64\x41\xcc\xe0\x19\x1c\x41\xdc\x71\xc7\x0c\xa5\x79\x14\ \x9a\x08\x97\xc2\x51\x0f\x22\x88\xcc\x33\x05\x25\x8c\xac\x30\xe3\ \x4e\x35\x2e\x32\x05\x13\x47\x30\xa1\x50\x1c\x2a\xe0\xa9\x02\xae\ \x5c\xfc\xb8\x88\x15\x73\xf0\x4a\x53\x8d\x4f\xc6\xc4\xeb\x75\x39\ \x2d\x02\x54\x50\x5d\x6a\x19\x1d\x76\x38\x0d\x05\xe6\x98\xd1\x8e\ \xa7\x0c\x9a\x5d\x7d\xc5\x56\x3e\x6d\x6a\xbb\x80\x56\x5d\xe4\x50\ \xc6\x3a\xf8\xdc\xa9\x02\x5d\x06\x3c\x90\x82\x9f\x29\xa0\xfb\x27\ \xa1\x82\xb6\x3b\xc4\x7f\x85\xc2\x02\x8f\x21\xc5\x95\x53\x8e\x24\ \x91\x3e\x2a\xe9\x10\x14\xc2\xeb\x21\x1c\x33\x68\x4a\x18\xfe\x89\ \x25\xae\xe8\x61\x41\x4c\xd0\x53\xaa\x3d\x5c\x50\x42\xcf\x14\x88\ \x30\x82\xc8\x92\xb4\x69\xc3\x85\x08\x27\x9a\x24\x64\xad\x3f\x32\ \xf2\xe3\x1c\x88\x7c\x33\x07\x51\x43\x05\xeb\xdc\x74\xc7\xe1\x24\ \x5d\x7d\xda\x7c\xb1\xec\x17\xc0\x74\xd9\x6c\x4b\xd0\x4a\x7b\xf3\ \x55\x14\x68\x15\x96\x5a\xd8\xe6\xa3\x09\x3f\xfc\xa0\x80\x06\x5a\ \x9d\xe4\x40\x8a\x1b\xe8\xac\x23\x06\x17\x62\x64\x60\x2e\x1d\xeb\ \xa6\x10\x04\xba\xeb\xfa\xe9\xa7\x7f\x41\x14\x5a\xa0\x5e\x92\xd4\ \xfb\x92\x21\x9b\x4d\x48\x29\x64\x1a\x5a\x1a\xb0\xc0\x85\x75\x6a\ \x50\x89\x9a\x5e\x5a\x90\x08\xf6\x4c\x41\x0f\x25\x0d\xd7\x23\x37\ \x23\x76\x20\xe2\x6a\x6f\xb0\xb2\x71\xe2\x1d\x2b\xf2\xf7\x63\x39\ \xbf\x5a\x51\x38\x4d\x3f\x35\x19\x6c\x4f\xcd\xa9\x1c\xdd\x94\xa7\ \x00\x41\xb3\x15\x32\xd3\x6c\x33\xce\x99\x4b\x75\x83\x32\xf8\xf0\ \x0c\xd6\x5a\x5f\x2d\x20\x34\x1a\x5d\x19\x4d\x0a\xd2\x4c\x2c\x5d\ \xd7\xd3\x0f\x44\xad\x2e\xd5\xaf\x5f\x7d\x75\xd6\x04\xfe\xb7\xd7\ \x61\x2f\x95\x73\x59\x66\x63\x53\x58\x49\x87\x96\xa6\x6d\x20\x1c\ \x6c\x97\x38\x03\xf2\x9f\x9d\x01\x47\x1c\x0f\x07\x69\xfe\x8f\x3d\ \xf5\x2c\xbc\x08\x22\x3b\xf1\xba\x88\x36\xd1\xd4\xc9\xc8\xc6\x28\ \x6e\x3a\xc4\x15\xe2\x3c\xde\x6c\x95\xc1\xd6\x36\xfe\x71\x5f\x1c\ \xa5\x14\xe5\x95\x03\x03\x0c\x76\x98\x6b\x3e\xff\x3f\x58\xa5\xc5\ \x2d\x58\xe9\x65\x8b\xc6\xd0\x9d\x88\xe5\x86\x3a\x60\xe0\x86\x0c\ \x88\x01\x4f\x06\x50\x01\x5e\xd2\x15\x04\x3c\x50\x2d\x76\x53\x9b\ \x1d\xbb\xf2\x92\x97\x12\xd4\x81\x5e\x87\x33\xc4\x3c\xae\xa0\x02\ \x09\x55\xc2\x1e\x13\xfa\x17\xf2\x0a\xb3\x21\x4b\x29\x8f\x6d\xa0\ \x79\x5b\x89\xee\x00\xbd\x38\x0c\x81\x63\x2d\x12\x47\x70\x84\x11\ \x1c\x46\xc8\xd0\x0b\xf5\xb8\x09\x23\xbe\xf1\xbd\x07\x54\x82\x17\ \xe5\x68\x5f\x4c\xbc\x64\x3e\xe2\xbc\x64\x4a\x73\x58\x4a\xc9\xb0\ \xb3\x1d\xf8\x35\xe5\x29\xf4\x7b\x62\x54\xec\x17\x96\xb0\xc0\x07\ \x3d\x61\x71\x93\x7b\x66\x81\x3a\x75\xb8\xe1\x08\x3f\x20\x97\x01\ \x0c\x70\x05\x03\xf4\x49\x5d\x78\x60\x20\x03\x1f\xa8\x2e\x41\xd1\ \x41\x6b\x7f\x92\x20\xa0\xe8\x05\x8f\x42\x6c\x10\x16\x77\x91\xcc\ \x10\x82\x17\xc2\x42\x19\x68\x6d\xc6\x13\x02\x1c\x02\x59\x1a\x21\ \x04\x21\x0e\x41\xba\x83\xa6\xee\x30\x84\x1f\xd5\xfe\x63\x37\x53\ \x28\x92\xaf\x72\x48\xb2\xe3\xa8\x40\x48\xf6\x50\x01\x2f\x18\xf1\ \x43\xca\x41\x89\x36\x15\x73\x52\xc9\xc6\xa0\x0d\x26\xb6\xaf\x25\ \xa7\xe0\x8e\xa2\x9c\x08\xc5\x55\x96\x89\x8a\xf0\xa9\xa2\xe8\xd0\ \x90\x45\x14\xa0\x00\x75\x3a\x12\x03\xb9\xe2\xc0\x1f\x32\x96\x31\ \x05\x67\x5c\x60\x1a\x63\xe7\xa7\xc2\xb8\x0b\x50\xb8\xa3\x40\xbe\ \x28\xc0\x9f\x0d\x3d\x60\x43\x6d\xb4\x14\x31\x41\x58\xb0\x12\x05\ \x6c\x9a\xa0\x69\x21\x22\x0b\x63\x29\x43\x5e\x32\x57\x97\x14\xc7\ \x18\x78\x63\xb2\x72\xe0\xea\x47\x92\xd8\x24\x27\x95\xb5\x38\xda\ \x7c\x41\x18\xcb\x9a\xd2\xcc\x4a\x69\x05\xc9\xa9\x4c\x7e\xab\xa4\ \x1f\xe7\xd0\xf2\x4a\x38\x81\x65\x01\xa5\x5b\x0f\xea\xdc\xd0\xc5\ \x0c\x70\x21\x8c\x0f\x98\x10\x19\xd5\xa5\xd0\x85\xae\xd1\x6a\xcf\ \xc4\x1a\x82\xfc\x42\x81\x42\x50\xe0\x0a\x57\x80\x85\x01\x86\xd0\ \xcc\x07\xe8\x31\x9a\x23\xbc\x94\xf1\x96\x17\x48\x6b\x66\xca\x40\ \x67\x2b\xa9\x88\x0c\x39\x21\x5c\xaa\x60\x37\x86\x83\x21\x23\xe0\ \x61\xb8\x74\xba\xb3\x38\x31\x41\x8e\x3a\x89\x62\xa5\x78\xca\xb3\ \x89\xf7\xfc\x29\x99\x78\x01\x96\x36\xc1\x12\xfe\x3e\x6d\xa2\xe5\ \x2c\x72\x90\x03\x86\x64\x20\x97\x62\x34\x00\x9f\xa4\xe6\xd0\x74\ \xad\xf1\x6a\xc7\xa4\x80\x32\x2a\x5a\x51\xc8\x98\xab\x99\x6d\x4c\ \x5b\x88\x06\xf3\xd5\x12\x7a\x64\xa4\x64\xf5\x88\x36\x01\x16\xc8\ \xd0\x20\x52\xa3\x42\x6a\x61\xad\x18\x21\x14\xdd\xf5\x34\x7d\x8e\ \x43\x8e\x93\x88\xb3\x85\x64\x41\x6e\x92\x75\xfd\x92\x2a\x81\xfa\ \x53\x78\xa4\xc7\x9f\xa5\xeb\x27\xff\x66\x81\x82\x1c\x74\xc2\x0d\ \x30\x10\x02\x3a\xbe\xe8\x8a\x83\x5a\x14\x16\xab\x90\xdd\xba\xda\ \x35\x3b\x3e\xdd\xae\x2f\x7e\xb9\x68\x65\x33\x8a\xd1\x12\x20\x32\ \x6d\x83\xa9\x14\xc0\xfe\x38\xd2\x69\x96\x55\x6d\x9d\x02\x24\x58\ \xef\xf0\x00\xd9\x7e\x0f\x57\xc1\x59\x96\x3c\x95\xd3\x24\x0e\x70\ \x20\x7d\xc6\x91\xd2\x18\xb4\xf3\xbe\x39\x9c\x62\x0c\x47\xa2\x19\ \x29\xbf\x24\xd8\xe5\xd6\x4f\x67\xaf\xc4\x5f\x61\xf9\xb7\xd8\x59\ \xa8\xc3\x23\x22\x50\x81\x2b\x10\x68\xd1\x2b\xd4\x01\x6a\x51\xa3\ \xc3\x7e\xc6\x61\xae\xcb\x56\x95\xb3\x14\xbc\x42\x45\xb9\x0b\xbc\ \xd1\xd2\xa1\x99\xc1\x2b\xcc\x69\xa5\x59\xc2\xcf\x08\xf2\xac\xcb\ \x13\xd8\xdb\xe8\x8b\xbc\xd8\x6e\x4a\x85\xfe\x1b\x54\x41\x39\x70\ \x0b\xc4\x97\x99\x4c\x23\x5f\x90\x09\x4f\x65\x46\x4a\x60\x0c\xe3\ \x94\x47\x3a\xee\xe5\x02\xcb\xdc\x7b\xde\xe0\x0a\xef\xf1\x27\xb7\ \x88\x90\x1e\xa4\x6a\x22\x07\x30\x38\x03\x0c\xd0\xf1\x0d\x15\x8c\ \x11\x52\xdb\x35\xc0\x2a\xc6\x01\xde\x14\xec\x67\x15\xae\xbb\xda\ \x65\x21\xca\x5d\x0a\x74\xd7\xa0\x6d\x2c\x81\xeb\xd2\xba\xb5\x7f\ \x9d\xcd\x53\x1e\x01\x24\x6b\x0d\x12\xb0\x1e\x97\x08\xb6\xc2\x1b\ \x98\x68\xee\xf2\x23\xf4\x95\x72\x28\xda\x68\x15\x72\x9e\x03\x84\ \xb9\x6e\xe9\x7d\xef\xb3\xc2\x16\x1c\x9c\x65\xe3\x42\x98\x28\xf6\ \x9c\x30\x14\x2b\x6c\xd4\xc3\xaa\x07\x05\xee\x69\xec\x40\xbf\xc1\ \x08\x5e\x90\x78\xbb\x18\x35\xc0\x38\xe2\x1c\xe7\x83\x3e\x20\xc6\ \x9b\x5d\x05\x5f\x2e\x1a\xc6\xbd\x64\xad\x8c\x85\x61\xa0\x9f\x78\ \x8c\xbc\x0f\x15\xb9\xbe\x21\xfd\xd4\xa0\x09\xad\xdf\x4b\x85\x66\ \xa3\x97\x64\x84\x97\xea\x9a\x13\x71\x1a\x98\x03\x5d\x0a\x8a\x4b\ \xe6\xe0\x80\x4d\x3b\xe0\x94\x9e\xde\x02\xa8\x8b\x7b\x8a\x2e\xd7\ \x4c\xc2\x60\xfe\x69\x85\x81\x86\x02\x7e\x70\x0b\x1f\x8a\x65\x8f\ \xd1\xca\x90\x81\xa6\x8e\x01\x1e\xbc\xfe\xe0\xc5\x76\xc7\x48\xc6\ \x71\xb0\xd8\x75\xfb\x01\x2f\x1d\xec\x1c\xec\x12\xe0\x85\xd8\x7a\ \xf1\x2e\xec\xfe\xac\xcd\xc1\xbc\x77\xd0\x83\x04\x72\x90\x8b\x9c\ \x68\x13\xd2\x17\xc8\x85\x49\x32\x80\x69\xd2\x53\x29\x4d\x41\x28\ \x38\x75\x67\x4e\x66\x06\x0c\x07\xac\xa3\xdc\x04\xc8\xc0\x1e\xf6\ \x20\x06\x57\x8c\x1a\xd4\xa0\x2e\xca\x97\x4f\xcd\x4a\x0a\x68\x4b\ \x13\x5a\xd1\x22\x29\x60\xdd\x89\xa5\xb9\x82\x17\xb5\x66\xf3\x89\ \xe1\xcc\x62\x16\x03\xbb\xc5\xc0\xbe\xec\x2a\x88\x8d\x51\x08\x46\ \x8d\x6a\x21\xa4\x9a\x46\x71\xfc\x4c\x51\x7d\x86\xbe\xf5\xf5\x31\ \xdb\xd6\x2a\x48\x6a\x57\x1c\x90\x9a\x3a\x20\x2f\xba\x7c\xaf\xdc\ \x8e\x41\x07\x04\x36\x41\x7d\x88\x65\xa5\x39\x68\x1a\xdd\xeb\x48\ \xf7\x21\x0e\x61\x8b\x43\xd0\x82\x16\x7b\xe8\x74\x4b\xde\x5d\x6a\ \x79\x9f\xfa\x06\xa8\x70\xcf\x7b\xc6\x82\x02\x37\xe4\xfb\x5b\x4b\ \xc3\xee\x9a\xd7\x9c\xeb\x30\x9a\x71\xe0\x0f\x50\xb1\x8a\xfb\xe4\ \x62\xa8\x86\xb1\x97\x0a\xdc\xef\x0c\xd2\x58\xa8\x14\xf4\x91\xe2\ \x65\xad\xe6\xc6\x43\x0a\x64\x14\x52\x9b\x9a\x43\xc6\x55\x80\x69\ \xb2\x05\x01\xd3\x44\x1b\x63\x48\xfe\x8e\x30\xb4\x01\x6e\x2b\x68\ \xa3\xdc\x19\x20\x00\x01\xd6\xc1\xe9\x74\xa7\x1b\xef\xe8\xb0\xc5\ \x1e\xfc\x30\xea\x53\x02\x23\xde\x3c\xa7\x30\x05\x80\xee\x9e\x1c\ \xcc\xc2\x0d\xec\x51\x9a\x18\xc4\x90\xc9\x05\xdd\x1a\xd7\x16\x15\ \x38\x28\xd0\x31\xf0\x82\x83\xb7\xce\x78\xe1\xe5\x42\x17\xb8\xc0\ \xac\xa7\x8d\xeb\xfc\x59\xa3\xda\x3e\xb4\xe8\xfc\x62\x7c\xec\x61\ \x37\xe1\xd7\x19\xe3\xc3\xbf\x96\x8c\xe5\x4d\x12\x06\xb8\x9d\x4c\ \x80\x59\x10\xc0\x0d\x04\xb8\xf9\xcd\x3b\x0d\x8c\x2c\x3b\x80\x16\ \x32\x47\x47\xba\xc5\xe0\x00\x65\x98\xfa\xf0\xcb\x2d\xd3\x58\xd8\ \xd3\x78\xa4\x1d\x61\xd6\xb6\xc2\x64\xad\x95\x8e\xde\x31\xc6\x79\ \xa1\xbc\x7e\x7a\x7b\x55\x4c\x75\xf2\x2a\x14\x98\x58\xcf\x7a\xec\ \xce\x75\x87\x36\x4e\x2d\x79\x16\x47\x9b\xea\xc5\x3e\xd2\xd7\x16\ \xc4\x53\xfa\x6d\xcc\xc8\x69\xef\x9c\xfa\x40\xa9\xb7\x3d\x99\x99\ \x36\x38\x00\x11\xdc\xdd\xa6\xe1\xdd\xcd\xc1\xcf\x16\xf8\xc1\x1e\ \xd0\x82\x2d\xb4\x82\x2d\xe0\x1d\x05\x34\x9f\xf3\x3d\x9f\x32\xc0\ \x80\x3a\xa8\xc3\x16\x09\x10\x5c\x44\x1e\x26\xdd\x9a\xad\xe5\xda\ \x15\xc8\xd9\xc0\xf1\x1a\x09\xfe\x82\x17\xb1\xad\xc2\x2a\x30\xd4\ \x19\x65\x1d\x1e\xb0\x20\xd5\xa4\xc0\xe9\x0d\xc1\xd4\x4c\x8d\xf0\ \x74\x1c\xda\xb0\xde\x1f\x59\x5c\x7e\xe5\x60\xc0\x3c\x00\x3c\xa0\ \x53\x4b\xe4\x5f\x6e\xd1\x9d\x75\x44\x47\x7d\xb4\xc3\x00\x89\xdb\ \x29\xac\x03\x01\x74\x81\x03\x10\x40\xcc\x11\x80\xe0\x0d\x03\x15\ \x0e\x03\x01\xd8\x02\x03\xa2\x82\x04\x4e\xe0\xf3\xd5\x81\x10\x5c\ \x60\x75\x1d\x04\x13\x64\x40\x9e\xb8\xc2\x9a\xe1\x9a\xe5\x89\x91\ \xae\x75\x1f\x2d\xf4\xda\xd3\x3d\xdd\x38\xa4\xd8\xeb\x98\xd1\xe8\ \xb9\x20\x1e\xc0\x20\x7f\x9c\x0b\xfb\xb9\x96\x20\xcd\x5f\xa2\x55\ \x5c\x0e\x9e\x90\xa1\x15\x59\x10\x94\xc0\x15\x58\xd0\x26\xc1\x03\ \x26\x69\x52\x6e\x1d\xcb\x50\xcc\x41\x19\x1c\x81\x1b\x18\x84\x3a\ \xac\x43\x97\x00\x41\x2d\x30\x61\x01\xc6\xdc\x21\x48\x21\x13\x6d\ \x41\xba\xd1\x42\x1d\x6c\x21\x17\x76\xe1\x19\x84\x21\x0c\xfc\x0d\ \x3a\xa0\x43\x1c\xb8\x42\xbf\x75\x60\x7a\x59\x1e\xf7\xc9\x19\x09\ \xc2\x20\xb0\x35\xdd\x19\xe5\x22\x0b\x2a\x54\x1e\x9e\x0b\x0c\x3a\ \x5c\xa2\x61\xca\x5a\x31\x9a\xea\xf9\xd8\x67\xec\x97\x35\x11\xd2\ \x03\x50\x00\x2f\xd8\x9a\xfe\x07\x2a\xa2\x5d\x5c\x01\x10\x36\x4b\ \x81\xe5\x04\x17\x1c\x9a\x3a\xe4\x40\x2d\x68\xc3\x29\xd4\xc2\x30\ \x38\xc0\x37\x42\x61\xcc\xf9\xc1\x4b\x9c\xc2\x1e\x30\x5f\x29\x72\ \xe1\x0d\xd4\x01\x1b\xc0\x40\x2a\x9e\x48\x06\x8c\x03\x3a\xe0\x92\ \x2b\x5c\x41\xe5\xdd\xe3\xe5\x85\x91\x9c\x69\x1e\xaf\x81\x02\x1d\ \x80\x02\x2e\x9a\x51\x2e\xaa\xcb\x2e\x75\x55\x0a\xdc\x01\xec\xfc\ \x21\xb4\x31\x9a\xa8\xbc\x1e\x35\xe1\x57\x31\x66\xca\x2a\x28\x43\ \x21\xf0\xc2\x65\x98\x4b\x2b\x5e\xc1\x41\xa9\x40\x21\x4c\x23\x76\ \x48\xc9\x94\x64\xc0\xa1\xb1\x8d\x36\xba\xc4\x29\x0d\xc3\x1e\x1c\ \x42\x2b\xb4\x02\x01\x9c\x82\x4b\xf8\x41\x21\x90\x62\x3a\x32\x57\ \x99\x88\x00\x43\x30\x01\x2e\x95\x8b\x18\x5c\x41\xbf\x35\x23\x2f\ \x54\x24\x2f\x28\x43\xc0\x75\x5f\x2d\xf6\x63\x0a\x00\xa4\x2f\x0d\ \x24\xba\xec\x92\x18\x18\x94\x2f\xd6\x61\x44\x22\xa3\xc6\x01\xa2\ \x09\x61\x5d\x1f\x66\x1d\x1d\xd4\x01\x08\x3e\x00\x1e\x8c\xc3\x18\ \x3d\x9d\x01\x40\x0a\x05\x78\x64\x71\x68\x43\x24\x4e\xe2\x48\x1a\ \x04\x29\x64\x00\x13\x01\xc3\x29\x3d\xa1\x4a\x5e\xc0\x1e\x3c\xd8\ \x0d\xc8\xe4\x4c\xd2\xfe\x24\x05\xa8\x86\x18\xa8\x99\x2b\xac\x9b\ \x3d\xde\xda\x5f\x36\xa3\x32\xc8\x62\x53\xc2\xd9\x38\xdc\xe1\x51\ \x1e\xe5\x19\x29\xe6\x62\xf2\xe2\x41\x3d\xd5\xe9\x4d\x4d\x0b\xba\ \x5f\xc5\xdd\x20\x31\x92\x5d\xa1\x31\xe4\x7e\xdd\xa1\xb1\x4d\x0d\ \x9d\xc1\xa0\x53\xfa\x87\x2f\xd1\x81\x32\x7c\x0d\x4d\x8c\x01\x5a\ \xa6\xa5\xf1\x90\x02\x11\x98\x92\x37\x3a\x40\x4a\xc6\x1c\x2d\x38\ \x00\x4c\xda\xe5\x5d\xe2\x25\x2b\x8e\x98\x2b\x1c\x50\x4f\xde\x63\ \xe5\x09\xe5\xe5\xcd\xa2\x62\xfa\xd2\x70\xe6\x22\x1e\x20\x25\x0c\ \x8a\x57\x18\x99\x0b\x42\xae\xa0\xb3\xd5\x1f\x6c\x59\xe5\xc5\xa9\ \xd6\x0d\xb6\x20\x62\x3a\xe7\x0c\xd8\xe2\x1d\x9e\x8b\xeb\x5c\x16\ \x1e\xac\xd5\x03\x48\xe3\x4b\xa0\xa6\x6a\x8e\xa4\x2d\xd4\x42\x37\ \x72\xda\x37\xc2\x66\xba\xc5\xe4\x6d\xde\x65\x99\xcc\x23\xb9\x3c\ \xc0\x4e\xaa\x80\xad\x9d\xe1\xad\x0d\xe6\xd2\x85\x60\x9c\x1d\xa7\ \x71\x1a\x67\x3f\x20\x26\x09\x3e\xa6\x41\xae\x60\x0b\x1a\x9a\xc5\ \x31\x10\x32\xda\x97\x0e\xfe\x67\x0b\x76\xdc\x62\x66\x4d\xd6\xad\ \x0b\x0a\xa6\x00\x48\x09\x41\x1c\x8c\x41\x39\xcc\x41\x06\x88\x40\ \x18\x96\x67\x48\xfe\x11\x00\x3e\x38\x80\x13\x0a\x1f\x83\x9d\xa3\ \x6d\xbe\xe7\x84\x95\x89\x06\x89\xc1\x41\xed\xa4\x6f\xde\x1a\x50\ \x02\xe7\x1a\xf6\x27\x80\xe2\x41\x80\x2e\xe6\xf7\xb5\x97\x53\x9a\ \x11\xe9\xcd\x40\x3f\x90\x08\x74\x06\x8c\x73\xda\xd7\x43\xb2\x60\ \xd6\x05\xa9\xa7\xc0\xc1\x9e\xd4\x81\x50\x8e\xe6\x3f\x06\x1b\x9e\ \xd5\x81\x85\x0a\x19\x1b\x18\x29\x88\xb2\xcd\x21\x38\x21\x11\xa8\ \xa7\x03\x00\x42\x8a\xaa\xe8\x8a\x02\x02\xb9\x8c\x43\x3c\xf6\xa6\ \x6f\x3a\x23\x60\xd6\x28\x28\x80\xc2\x8d\x9e\x11\x28\x90\xe0\x9c\ \xf5\xa8\x2e\xf6\x03\xfd\x0d\x29\xda\xac\x60\xc1\xd4\x9f\x47\xdc\ \x17\xf2\xb4\x60\x3f\xf8\x18\x1c\xe0\x41\x1d\x14\x02\xbd\x50\x00\ \x1d\xdc\x21\x40\x22\x5c\x5f\xa0\x82\x01\xf8\x51\x96\x96\x27\x17\ \x39\x80\x37\xe2\xc3\xcd\xb9\xa7\x98\xbe\xe7\x0d\x00\x02\x7f\xd0\ \xc2\x41\x79\xa0\x8c\xfa\x64\x7e\x06\x65\x3e\x0a\x9c\x83\x1e\x27\ \x1c\x7a\xde\x72\x3e\x9d\x40\x2a\xe4\xd7\xad\xd5\x64\x2a\xe9\x8f\ \xed\xa9\xeb\x51\x25\x20\xa5\x40\x5f\x14\x82\x53\x5c\x41\xa7\x2c\ \xe6\x2a\xd4\x01\x2a\x68\xa1\x82\x3c\x6a\xa4\x66\x69\x36\x8e\x52\ \x2d\xf8\x01\xfe\x3a\x66\xaa\x8a\x6e\x2a\x7d\x8e\x03\x8c\xc6\x68\ \x7e\x0e\x26\x70\x3e\x55\x9c\xb9\x29\x9c\xe2\x01\x2d\xf4\x89\x72\ \x2e\x67\x18\x89\x26\x1a\x01\x29\x1c\x5c\x40\xc7\x8d\x1d\xa0\xee\ \x60\xb5\x99\xdd\x74\x16\x44\x76\xf2\x05\x20\x00\x02\x8d\xa5\xc0\ \x31\x66\xa5\x16\xde\xc0\xa2\x24\x06\xaf\x16\xab\xb1\x12\x80\xdb\ \x61\x2a\xb3\x36\x2b\x2a\xc8\x99\x01\xec\xe4\x60\xde\xa3\x32\x08\ \xa5\x7e\x7a\xab\x61\xb6\xe9\x51\xca\xa9\xc2\x3e\x26\xaf\xb5\x6a\ \x43\xbe\x5f\x92\x1e\x28\x20\x41\x67\x9f\xce\xea\xc5\x96\xd5\x31\ \xa6\xc0\xaf\xd6\x41\x1d\xc0\x82\x85\x32\xe9\xaf\x02\xc2\xa2\x9c\ \x2c\x3c\x5c\x01\x69\xe8\xab\xb1\x1e\x01\x2f\x84\xe9\xbf\xca\xdb\ \xa6\x76\x65\x18\x59\xd4\xc1\x16\x6c\x50\xe6\x2c\xa9\xea\x9a\x61\ \xee\x63\xb7\x72\x57\x18\xad\x82\x8d\x25\xe5\x64\x02\x69\xb5\xd9\ \x69\x9d\x0e\xe2\xa1\x75\xdc\xac\xc2\xea\xaf\x52\x00\x2c\x7c\xe7\ \xa0\xc2\x02\x2a\xe8\x2a\xa3\xe0\x1a\x8e\xb2\x6c\xa4\x0a\xc1\x28\ \xc6\xec\xbf\xfa\x9c\x72\x5e\x01\x2a\x28\xc3\xd8\x52\xe4\xc1\x5e\ \xc1\x60\x56\xe4\xd2\x29\xec\x72\x06\xa7\xb9\xc4\x21\x8a\x25\xa6\ \x71\x8a\xfe\xca\x05\x8c\x54\x80\x92\x1e\x1c\x04\x69\xfc\x65\xe9\ \xd8\x05\xc1\xc7\x46\x6d\xc0\x64\xe5\x44\x15\x42\x21\x28\x03\x57\ \x46\x9b\xd6\x8e\x64\xd7\x7a\xed\xd7\x02\x82\x18\x39\x29\xd9\x1e\ \x6c\xce\xa2\x6d\x50\x9e\x6d\xae\xed\xc1\x18\x5d\xc1\x4e\x82\x20\ \xdb\x92\x5f\x52\x02\xe9\xa5\x04\x69\x8e\x9e\x91\xde\x16\x23\x96\ \x8a\xdd\xa7\x64\x65\x1d\x08\x4f\xd6\xed\xc7\x6c\x61\x66\xe2\x96\ \x27\xd7\xc2\x2c\xe3\x1e\xde\xa6\x26\x81\xd8\x06\xeb\xc1\x16\x2e\ \x70\x22\x2c\x08\x06\x27\x77\x81\x20\x2a\x5c\x81\xd0\x1a\x40\x8d\ \x5d\x16\x52\xae\xa0\x9d\xda\x29\x0b\x16\x6d\xa0\x16\xc4\x05\x88\ \xeb\xd2\x62\x1c\x35\x15\xc6\x87\x14\x63\xec\xb2\xec\xe2\xd6\x6e\ \xcc\x6e\x2a\xb0\x16\x82\xee\x5a\xae\x45\x0d\xef\xef\xfe\xee\xcd\ \x02\xa7\x56\x5a\x54\x77\xa1\x20\x40\x62\x2b\xf3\xe2\xa8\x2e\xe2\ \xe8\xc6\x01\x92\x3f\xe2\x41\xeb\xd9\x5f\xc6\xe6\x2f\xf5\x66\x2f\ \xdf\x6e\x2f\xf7\x76\xef\xbb\x06\x6b\xd9\x1e\xec\xf0\x0e\xaf\xf1\ \x82\x20\xd9\xe6\xda\xcd\x0e\xaf\x56\x36\x30\x2a\x24\x01\xf2\x26\ \xa5\xe8\xbe\xaf\x75\xda\xad\x67\x1c\x27\xc8\xd6\x41\xf1\xa4\xa5\ \x32\xfe\x42\x2a\xff\xf2\xaf\xff\xfe\x6f\xf7\xfa\x5c\x01\x2f\xf0\ \xf8\x36\xb0\x93\x8e\xef\xf8\x86\xef\xd8\x32\x70\xee\xae\x6f\x9b\ \xba\x6f\x20\xc1\xef\x19\x91\xab\x10\xd8\x29\xc3\x26\x01\xb0\xa2\ \xc2\x2a\x6c\xb0\xd8\xcd\x80\x01\x2c\x88\x0a\xf8\xf0\x07\xc7\x6e\ \x08\x8b\x30\x00\x87\x6f\xe1\xb6\x30\xf9\x8a\x2d\xd9\x96\xed\xf0\ \x12\x30\xf8\xa2\x02\xc8\x1a\x6f\x06\x27\xc1\x3f\x32\x66\x3f\x8c\ \xee\x16\x63\xca\x1d\x7e\x2c\xb0\x82\xec\x2a\x7c\x67\xa1\x41\x6b\ \xc8\x05\xa1\x18\xec\x6f\x11\xf7\x2f\xed\x22\x71\x29\x6e\x6a\xb0\ \xf2\x6e\xb0\xe6\xee\x1c\xb7\xb0\xd8\xe6\xee\x13\x07\x6f\x1d\x24\ \x01\x28\xec\x71\x12\x8c\x43\x0c\x93\x2e\x8e\xe6\x68\xf3\xf6\xb1\ \x0e\x83\xac\x0e\xa3\xe0\x77\xda\x30\x1c\x18\x80\x86\x8e\x4f\x1a\ \xaf\xb1\x11\xb7\xb1\x1b\xbf\x31\x20\x50\x24\xf8\x3e\xf1\xd8\x2e\ \xf1\x13\x93\xad\x56\x06\x2b\xc8\x52\xf1\x1e\xaf\x02\x28\x40\x30\ \x29\x93\xb2\xfb\x22\x6d\x2e\xfa\x23\x28\xa0\x60\xb0\xb9\xe9\x16\ \x2b\xe9\xd8\x89\xc1\x34\x96\x83\x48\x4a\xb2\xd6\xce\x6e\x25\xbb\ \x71\x5d\x2e\x31\x13\x57\x2d\xf8\xf2\xee\x02\x83\xaf\x03\x53\xb1\ \xfe\x0e\x27\x01\x32\x23\x33\x2a\xc3\x32\xfc\x6e\xf1\x71\x22\x8f\ \xe8\x0a\xc1\x05\x94\x48\x89\x04\xa8\x01\x00\xe1\x16\x88\x01\x6e\ \xe0\x32\xcb\x5e\x01\x25\xef\x72\x3a\xc2\xb1\x00\x07\xb3\xd9\x16\ \x2e\xe1\x9e\xf3\x14\x0b\xb0\x00\x87\xf1\x31\xf3\x31\x2c\xc7\xf2\ \xf3\xca\xb2\x34\x7f\x86\x0d\x57\xf3\x1d\xe0\xd2\x83\x6d\xc1\x1c\ \xac\x83\x1a\x73\x33\x07\x1b\xc0\x37\x83\x73\x38\x03\xc2\x0e\x8f\ \x73\x3a\x0b\x30\x20\x10\x2e\x15\x2f\xb4\x28\xef\x71\x20\xc7\x72\ \x41\xb4\x82\xfe\xda\x70\x80\xc2\x41\x2b\x08\xc1\x45\xd7\x2d\x1e\ \xec\x24\x23\x44\x5e\x06\x30\x04\xd1\xad\xf1\x87\xea\xab\x2e\x0b\ \xf4\x2e\xdf\x6e\x12\xa8\x73\xd5\x82\xb2\x4a\x3f\xb0\x1f\xbb\x73\ \x9b\xf6\xc3\x05\xac\x24\x46\x9f\x81\x44\x7b\xc4\x45\xdf\xf0\xf2\ \xe6\xed\x0c\x4c\xf3\x45\x07\x68\x0a\xd0\xe3\x47\x7f\x18\x25\x9e\ \xe2\x48\x27\xee\x51\x47\xea\x11\x9b\xb4\x08\xfb\xdc\x21\x1f\xf2\ \x42\x17\xf4\x3a\x3f\x30\x4c\xc7\xf4\x16\x5f\x00\x56\xf7\xc3\x4a\ \xb6\xc2\x05\x0c\x72\x92\x62\xf4\x3c\x07\x2a\x1e\x0c\xac\x3c\xa2\ \xc3\x95\x8e\x24\x18\xea\x2b\x06\x8e\x74\x52\xab\x66\x49\x33\xfe\ \x35\x38\xdf\x2e\x55\x27\x73\x32\x5f\x31\x5d\xdf\x35\x1f\x37\xf3\ \x16\xaf\xe4\x19\x60\xb5\x34\xfb\x75\x46\x8f\x2e\x2d\x88\xc1\x38\ \x1c\x01\x3a\x10\x35\x5a\x93\xc2\x05\xea\x2b\xea\x28\xf6\x62\xb3\ \x4d\x5b\x1b\x8f\x16\xc2\x35\x53\x8b\xb3\x31\xe3\x75\x29\xc7\xb0\ \x66\xf7\x03\x28\xc0\x73\x46\xcf\xb4\x41\x48\xb4\x44\xeb\xb4\x4e\ \x77\xe5\x1e\x8c\x83\x2d\x88\x80\x2d\x08\x01\x62\xa7\xe5\x5a\xab\ \x35\x06\x6e\x91\xf1\x3c\xf6\xd2\x2e\x35\x65\xf3\x32\x20\x04\x6b\ \x00\x23\x72\x32\x77\xf6\x16\x77\x36\x56\x5f\x80\x4c\xdf\xb4\x4d\ \x13\xf7\x4a\x66\x75\x80\xc2\x72\x9c\xde\x1a\x3a\x9c\x2e\x64\x3f\ \xb7\xd6\xc6\xb6\x62\x43\x36\x6d\x9b\x90\x6d\xdf\x36\x6e\x4b\x75\ \x06\xfb\xb1\x6f\x03\x77\x56\x63\x35\x5f\x6f\xf5\x71\x3b\x33\x67\ \x07\xf2\x58\x33\xb7\xb1\x56\x77\xec\xc6\x36\x5b\x57\xd7\x87\x5e\ \x37\x76\x67\x37\x22\xbf\x74\x55\xc7\x32\x72\x5f\xb5\x70\xc3\xb3\ \x7e\x27\x77\x4c\x83\x02\x2f\x88\x01\x11\x53\xa2\x6c\x53\xa2\x7a\ \x23\xf5\x16\xb1\x75\x89\xc0\x77\x7c\xe3\xb6\x28\xd3\x75\x7f\xc7\ \xb0\x4c\xc3\xf3\x20\xe3\xf7\x7d\xeb\x37\x1e\x74\x35\x9b\xfe\xb1\ \x41\x51\xb3\x0d\x2d\xb5\x77\x48\x45\xb6\xa4\x36\xf6\x87\xab\x83\ \x82\x2f\x38\x83\xe7\xf6\x1e\x73\x37\x1f\xc3\xb4\x7e\xcf\xf4\x56\ \x17\x77\x7e\x4b\xf3\xf2\x06\xe8\x38\xc0\x83\x2b\x68\xf8\x6b\x0b\ \x78\x7b\x17\x78\x74\xd7\xd2\x74\xb3\x4d\x89\x9b\x38\x83\xf3\xb6\ \x43\x6f\x36\x85\x4f\xb3\xf1\x88\x36\x57\xfb\xb5\x4e\x6f\x31\xb4\ \x36\xb7\x41\xb8\x01\x0a\x7c\xe8\x8f\x13\x78\x95\xc3\xf6\x6a\xd2\ \xd2\x8f\x7b\xb3\x90\x9b\xf8\xa6\x3e\xb8\x6f\xcb\xb4\x8b\x8b\xf6\ \xa1\xbd\xf8\x92\x63\xf5\x8f\x15\x44\x3f\xc8\xab\x80\x6b\xc2\x94\ \xeb\xf8\x62\x5f\xe0\x95\xb3\xec\x87\x62\xa0\x96\x93\x78\x40\x77\ \xb9\xd7\xfa\xdc\x5e\x07\xf7\x8b\x87\xb6\x6a\x2a\x79\x70\x83\xf6\ \x68\xcf\xa3\xa7\xc0\x80\x62\x85\x21\x18\xd6\xf9\x8f\x83\xe1\x81\ \x83\x68\x8e\x9f\x22\xea\x04\xb9\x9e\x9f\x34\x2a\x68\xb5\x78\xdf\ \x34\x71\x97\x79\x71\x6f\x75\x70\xdb\xb4\x90\xd9\xa3\x86\x0b\xf8\ \x9b\xcf\x36\xdb\x38\xb6\xa2\x4b\x37\xea\x48\x6a\x87\x43\x36\x97\ \x57\x7a\x97\xaf\xa3\x8b\x6b\xad\x78\x0b\xf7\x98\x1b\xc4\x05\x64\ \x97\x8f\x3d\x3a\x74\x1b\xf5\xa2\x43\x36\x29\xd4\x12\xfe\x88\x9f\ \x62\xa9\x0b\x01\x40\xc3\x7a\xa5\xfb\x1c\xa0\x17\xab\x92\xb7\xc2\ \x55\xff\x39\x1c\x8c\xc1\x18\x78\x8a\x74\xef\xf8\x86\xab\x77\xb0\ \xcf\xf9\x87\x03\x79\x9e\x23\xfb\xff\xd6\x41\xe2\x66\x3a\x78\x83\ \xf6\x19\x8c\xc3\x16\x94\xc3\xa8\x1b\xc4\xd0\x3c\xba\x7b\xd7\xf9\ \x86\x03\x3b\xaa\x83\x68\x1d\x78\xbb\xb7\xaf\x63\x3f\x73\x7a\xa6\ \x8b\xb7\x41\xb8\x42\x4b\xec\x7a\x63\x1f\xb8\x9c\x2f\x7a\xbb\x9f\ \xa2\xa4\x03\x7c\x5a\x53\xb7\x10\xbc\x3a\xbd\xc3\xfa\x3a\xb2\x2c\ \x99\xff\x39\xdb\xf0\x02\x96\x61\x9c\x9c\x37\xb6\xa3\xfb\xf8\xbf\ \xc7\xb9\x74\x1b\x35\xaf\x1b\x35\xa5\x2f\x3c\x5c\xdb\x3b\xb3\xeb\ \xfb\xa6\xe3\xc1\x0f\x4d\xfb\x6c\x57\xfc\x81\x67\x3c\x29\x04\x0d\ \x3f\x34\xba\xc5\x0b\xf8\xaa\x97\xc8\xb1\x83\x3c\xbd\x2b\xbb\xbe\ \x92\xf9\x1f\x89\x41\x4b\xb8\x82\x6b\x5b\x7c\xc6\xcb\xf9\xaa\x55\ \x79\xb5\xab\x65\x2d\x71\xbb\xcd\x83\xbc\xc8\xe7\x7c\x48\xe1\x01\ \x3c\xb4\x84\x18\x98\x3a\x75\x03\xfd\x5a\xc7\x36\x2d\xbd\xbc\xa2\ \xa3\xce\x94\xab\xc3\xaa\xbd\xf9\xc7\x27\xfd\x6d\x2f\x7d\xec\x5e\ \x41\xce\xa5\xfb\xc1\xcb\xfc\xbf\x03\x7c\xb0\x07\xfe\xcd\x74\x0b\ \xfd\x94\x0f\x0d\x1a\x90\x82\xc2\x83\xfd\xc2\x37\x7c\xec\x0a\x81\ \xc4\x5b\x01\xca\xab\xe5\x80\xa3\x7d\xb0\x6b\xf9\x81\x0f\x3d\xaa\ \xb3\xf7\xdf\xcf\x3d\xdd\xd7\xbd\x17\xe6\x32\xcf\xb7\x44\x1c\x64\ \x79\xab\x4f\xbd\x9d\xd3\x52\x87\xa3\x8e\xd0\xc4\x7c\x9d\x4f\xf6\ \xe1\x83\xbd\xd8\x47\xea\x38\x6c\xd2\xde\x93\x7a\xb6\x53\xb7\xd0\ \xaf\xfd\xcb\x6b\x3d\xe0\x2b\xba\x41\x7c\x7d\xe6\x2f\xf8\xe6\x73\ \x30\x1c\x98\x7b\x4b\x7c\x3e\x81\x47\x3e\x29\x14\xb5\xa3\x2b\xb6\ \x96\x4b\xbe\xee\x0f\xbe\xea\xaf\x3e\xeb\x27\xbe\x5b\xf7\xc3\x38\ \x8c\x41\x4b\xf0\xc2\xfe\xba\x7d\xa9\xa3\xbd\xd5\x5f\xbd\xe4\x0b\ \x8d\x8f\xf7\xbe\xef\xff\xbe\x5b\x0b\x01\x1e\xac\xa2\x18\x30\x41\ \x6b\x8f\xb8\x96\x7f\x78\xb6\xab\xba\xd0\xb8\xbc\xcb\xa3\x40\xcd\ \x47\x7f\xe6\xb7\xfe\x48\xde\x7b\xd6\x6f\xfd\xa2\xa7\xbd\xee\x83\ \xbf\xcb\x1b\x3e\xf9\xd3\xbd\xf9\xa7\xf7\x88\x6f\x51\xda\x57\xfc\ \xaa\xb9\xff\xfb\x77\x7b\xfc\x63\xf7\xfc\xab\x26\x40\xa8\x23\xa5\ \xee\x4c\x41\x83\x67\xd4\x25\x24\x85\x82\x21\x0a\x81\x02\x51\xf0\ \x93\xc8\x8f\xa1\x44\x57\x37\xfe\x65\xd4\xb8\xfe\x91\x63\x47\x8f\ \x1f\x41\x86\x14\x39\x92\x64\x49\x93\x27\x51\xa6\x4c\x79\xa3\x8e\ \x90\x83\x2f\x61\x9e\x21\x55\x30\x21\xc1\x97\x02\x49\x49\x5c\xa8\ \x90\x1f\x1a\x34\x12\x23\x5e\xc1\xa8\x92\x68\x51\xa3\x47\x91\x26\ \x55\x1a\x92\x65\x4c\xa7\x2f\x07\xc6\xc4\x59\xd1\xe1\xc2\x88\x3f\ \xf9\x5d\x5c\xba\x95\x6b\x57\xaf\x5f\x4f\xb2\x74\xf9\xd4\xe9\xc2\ \x99\x30\x15\x36\x24\x65\xb5\x27\x1a\xa1\x60\xe1\xc6\x95\x3b\x97\ \xa8\x58\xb2\x08\x13\xd2\xcc\x89\x22\xea\x4d\x85\x56\x2b\xf2\x7b\ \x4b\x97\x70\x61\xc3\x74\xed\x3e\x5d\x6b\x53\x60\x4f\x87\x4e\x6b\ \xae\x05\x3a\xf8\x70\x65\xcb\x97\x8f\x26\x96\xba\x18\xef\xd5\xc7\ \x06\x6d\xe2\x4d\x4b\x19\x73\x69\xd3\xa7\x3f\x6a\xa6\x69\xd0\x2a\ \xc1\xa9\x0c\xf3\xd6\x74\x1d\xd9\xc0\x50\xd4\xb7\x71\x9b\x4e\x9c\ \x70\xd6\x2c\xd7\x8b\x63\x4b\x76\x98\x76\xe0\x5a\xbe\xa4\x73\x27\ \x57\x4e\x98\xe5\x5f\x14\x68\x86\x5b\x05\x0e\x11\xf6\x5a\xeb\x92\ \x6b\x2f\xd7\xbe\x5d\xee\x0d\x54\xc6\xa9\x3e\xcf\x97\x0f\xfa\x6c\ \xe9\xd6\x65\xa3\xb2\xcd\x9d\x7d\x7b\xa5\xde\x23\x02\xed\x99\x2f\ \x44\xad\x9f\x7d\x71\x5e\xaf\x59\x67\xbd\xb3\x7b\xff\xff\x53\x02\ \xe4\x8a\xf8\xf8\xe9\x6d\x81\xf1\x7e\x1a\x4e\xaf\xeb\xd6\x42\x0e\ \xc0\x07\x21\x64\x0a\x15\xa0\x7a\x9b\x45\x13\x9f\x26\xc2\xcf\x3a\ \x86\x1c\x8c\xd0\xc3\x0f\x33\xba\xe1\x0a\x34\x66\x61\xa8\x44\xac\ \x74\x1a\x28\x32\x81\xc4\xe8\x0f\xc4\x17\x3d\xbc\x81\x82\x59\xdc\ \x40\x61\x16\xe8\x28\x6a\x88\x2f\xd9\xd4\xe9\x10\xc6\x1f\x01\xf4\ \xee\x44\x1d\xd5\xb2\xae\x20\xfe\x80\x4c\xf2\x43\x11\x17\xa2\xa8\ \x49\x1d\x17\xf3\x51\xc9\x29\xd9\xf3\xce\xac\xf0\xa8\x42\x92\xca\ \x2d\x83\xac\xc3\xac\x9c\x26\x92\x48\x4a\x2e\xc9\x54\x8e\xc9\xc0\ \x26\x1a\xb3\xcc\x35\x71\x13\x91\x40\x31\x5d\x64\x53\xce\xe4\xbc\ \x43\x51\xcd\x39\xf1\x2c\x4d\xc6\x9f\xee\xcc\xd3\x4f\xcb\x44\xfc\ \x26\xce\x3f\x09\xd5\x73\xd0\x42\x11\x4d\xd4\xc3\x80\x00\x00\x21\ \xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\ \x87\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x20\x49\x1c\xd8\x88\x8d\x94\x4a\x35\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x5f\xc9\xf8\xff\xff\xff\xff\xff\xff\xde\x94\xb3\x66\x8a\ \x3c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xd2\x4e\x97\xff\xff\xff\xff\xff\xff\x9b\xa7\xb9\x56\ \xa8\xe3\x53\x67\x1e\x44\x1a\x9c\x13\x28\xa8\xff\xff\xff\xff\xff\ \xff\x0f\x27\x68\xd8\xc8\xe3\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf6\x89\xb8\xff\xff\xff\xff\xff\xff\xf7\xa7\xb7\x9a\xf3\xfc\xff\ \xff\xff\x8f\x69\xac\xff\xff\xff\xff\xff\xff\x12\x29\xde\xfa\xc8\ \xe4\x28\x46\xea\xd9\xe8\xf8\xba\x88\xb7\x4e\x68\xf8\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x98\xc8\xfa\x32\x6a\x21\xff\xff\xff\xee\ \x6c\xa8\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7a\x88\xad\xff\xff\ \xff\xf2\x71\x46\xf6\xb2\xf1\xd9\x91\xf2\xff\xff\xff\xf9\xe8\xf0\ \xb7\xc8\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x34\x8b\xc8\xff\xff\xff\xb6\xb3\xf2\xff\xff\ \xff\xff\xff\xff\x39\x56\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5b\xb8\xeb\x09\ \x18\x61\xd7\xd9\xeb\xff\xff\xff\x49\x4b\xe1\xff\xff\xff\xff\xff\ \xff\x10\x38\x67\x73\x89\xf8\xff\xff\xff\x97\xb1\xf8\xff\xff\xff\ \xff\xff\xff\x7c\x8b\x3e\xff\xff\xff\x07\x15\xdd\xfa\xfd\xfa\xfb\ \xd8\xeb\xff\xff\xff\x3c\x63\xf9\xff\xff\xff\xff\xff\xff\x7a\xe9\ \xfb\xb7\xd8\xfa\xff\xff\xff\xda\xae\xf9\x37\x4a\xe9\xfa\xb8\xbd\ \xba\x8e\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\x99\xb5\xfb\ \xc8\xa1\xff\xff\xff\xb2\x68\xed\xff\xff\xff\x6f\x78\x29\xff\xff\ \xff\xff\xff\xff\x04\x62\x7c\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xc0\xe2\x9c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbd\ \xc7\x95\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x75\x49\x55\x6c\x45\xdc\xff\xff\xff\xff\xff\xff\ \x8b\x26\xc0\xff\xff\xff\x94\x68\xfb\xff\xff\xff\xff\xff\xff\xb1\ \x28\x63\xea\x5a\x9d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x79\xcb\xf9\x76\xa9\xf7\xff\xff\xff\xff\xff\xff\xf9\xec\xba\ \xfa\xad\x89\x91\x70\x74\xff\xff\xff\xb8\xf3\xfc\xff\xff\xff\x58\ \x92\xeb\xf4\x73\x6e\xff\xff\xff\x77\x10\x44\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xf7\x92\x8d\xff\xff\xff\xa4\x3e\xd0\xdf\x97\x93\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x41\xb5\xec\xf5\x7b\xb3\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x19\ \x37\xde\x58\x75\xf9\x99\xd8\xfc\xff\xff\xff\x93\x59\x5b\x09\x55\ \x74\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x69\x7a\xf4\xff\xff\xff\xff\xff\xff\x33\x57\x63\xb3\x58\x34\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x37\x56\x94\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\x74\x5a\x67\x38\x76\x6a\xff\xff\xff\ \x7d\x8c\x70\x7f\xfb\xfc\x8f\x18\x1e\x97\x97\x51\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xba\xb8\xb7\xd8\xfb\xfc\xff\xff\xff\x7c\x98\ \xb2\x9a\x99\x78\x7e\x97\xf8\xb1\x78\xf8\xff\xff\xff\x73\x5a\xf6\ \x91\x59\xf7\x8f\x77\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\x79\ \xb8\xf9\xff\xff\xff\xc0\xd6\x96\xfb\xd8\xaa\xff\xff\xff\xff\x00\ \x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\ \xc8\xb0\x61\x42\x4d\x9a\x1c\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\ \x6a\xdc\xc8\x71\xa0\xa6\x6c\x1b\xb2\x45\xec\x48\xb2\xa4\xc9\x93\ \x28\x53\x9e\x84\x68\xc6\x8f\x1f\x91\x23\x55\xca\x9c\x49\xb3\xa6\ \x4d\x8a\x9a\xfc\x98\x69\xe9\x07\x9d\xc8\x9b\x40\x83\x0a\x1d\xca\ \x31\xe7\x86\x0d\x2e\x75\xbe\x24\xca\xb4\xa9\x53\xa7\x1f\x8f\x22\ \xe5\x99\x34\xe6\xd3\xab\x58\xb3\x76\xcc\xe6\xe7\x68\x4f\x74\x66\ \xa4\xba\xb4\xaa\xb5\xac\xd9\xb3\x07\xb9\x1e\x35\x83\x4e\x11\x3a\ \xb0\x49\xa7\x92\x45\x4b\xb7\x6e\x53\x4d\x07\xa4\xb2\x75\xfb\x80\ \x2d\x5c\x9d\xe8\x20\xda\x1d\x4c\xf8\xa6\xa6\x73\x05\x12\x4f\x7d\ \xdb\x57\x91\x5b\x3f\x0f\xbe\x1a\x28\x4c\xb9\xf2\xca\x0d\x89\x15\ \x6f\xd8\xa9\x53\x91\x21\x45\x7e\x70\x6c\x46\x67\x08\xc5\xa6\xb9\ \x96\x53\xab\x5e\x68\x34\x73\x01\x10\x05\x16\xa3\x23\x65\x08\x5d\ \x6c\xb6\xa4\x88\x10\x59\xb5\xba\xb7\xef\x83\x46\xe3\x16\x68\xa5\ \xb8\x27\x3f\x52\x69\x14\x79\x85\x67\x28\x4d\x9a\xdd\xa8\x7f\x4b\ \x27\xfc\xb1\xab\xce\x96\x47\x0b\x68\x89\xb4\x17\x39\x3f\xcc\x66\ \xe0\xfe\xf1\x73\xee\x9c\xc8\xa6\xe9\xe8\x29\xe7\xa4\x4a\x35\x92\ \x96\x02\x6f\xcd\x8c\x27\x15\x76\xb3\x22\x22\xe4\xd3\xa8\x41\x11\ \x3d\xbd\xff\xa7\x87\x29\x25\xd5\x5b\xe8\xf8\x11\xc9\x57\x1b\xcc\ \x96\x5c\x57\x1b\xc0\x93\x1f\x79\x7a\xf4\xf7\xdf\x84\x41\x69\xd2\ \x0a\x08\x9b\x75\x15\x5b\x82\x05\x22\x05\x56\x82\xc8\x29\x52\x1f\ \x3a\xe3\x3d\x48\x84\x1e\xbc\x51\xa8\x22\x51\xad\xbc\x27\x15\x66\ \xb7\xfd\xf5\xd6\x81\xec\xf4\x03\x1a\x66\x7e\xd4\x98\xdf\x89\xf8\ \xc5\x22\xe1\x8a\x40\x96\xa4\x89\x7b\xae\x45\xe2\x15\x67\x3d\xc1\ \xd3\x61\x5b\x05\x76\x75\x20\x3c\xc8\x95\xc7\x0e\x2d\xb9\xe5\x01\ \x44\x90\x58\xa6\xa4\x89\x01\x98\x45\x12\x89\x76\xb1\x01\xe6\x92\ \x7d\xb4\x58\x07\x16\x5b\x5e\xb5\x85\x9f\x73\xa4\x84\xb0\x26\x11\ \x57\x66\x29\x67\x51\x6d\x39\x06\xd6\x97\x05\x1c\x48\xe0\x06\x7a\ \xba\x85\xd4\x98\x49\xb1\x55\x63\x94\x0f\x3e\x47\xc4\x8f\x73\x26\ \xfa\x10\x3a\xb4\x1c\x47\x0a\x68\x20\x10\x97\xa0\x92\x2e\x99\x41\ \x8b\x63\x63\x16\xc7\x16\x5b\xf0\xdc\x57\x28\x79\x2f\x58\xa0\xe8\ \xa8\x0e\x69\x42\xa0\x1e\xc8\x91\x52\x60\x62\x07\xa0\xa3\xa4\x19\ \xfe\xa6\xd4\x49\x0b\x58\xa6\x14\xf7\x56\x39\x3b\xc1\xd3\x0f\xa1\ \x85\xbe\x50\x0a\xa2\xa4\xce\xf9\x11\x81\xc7\xa5\x41\x4a\x3f\xe8\ \x7c\xc9\x61\x81\x6d\x95\x42\xe0\x5b\x06\x7e\x45\xa0\x92\xe8\xb0\ \xc3\xcf\x9a\xe4\xbd\x49\xc7\x79\xc1\x76\x3b\xd0\x39\xad\x78\xd8\ \x8f\xb1\x69\xd8\x68\xe0\x06\xa6\xcc\xda\x53\x29\x6e\xbd\x75\x29\ \x3a\x47\xbe\xd5\x29\x4f\xd5\x8e\x4b\x1e\xaf\x69\xa4\xe8\x2d\xa9\ \xd9\x68\xe1\x6f\x4f\x8a\xd8\x18\xb0\x1e\xec\x44\xab\x48\x99\xe8\ \xe8\xd1\xee\xb3\xca\xfa\x01\x0f\xb5\x61\xb9\xe4\x8c\xa7\x9f\x3a\ \xb7\x0a\xb0\xfb\xfa\xa7\x49\x29\x1b\xf8\x7b\x00\x60\xb1\x06\xec\ \xd6\x81\xec\xc6\xaa\xb0\x01\x04\x5e\xea\x47\x9e\x4c\x3e\x00\xd7\ \x9f\x09\xe3\x6b\x22\xb7\x19\x63\xa9\x89\x1e\xc9\xe5\x65\x60\x01\ \x1f\x33\x4a\x8a\x1e\xc9\xfa\xa1\x87\x8d\xb4\xf4\xd3\xcf\xac\xec\ \xf2\xd3\x0f\x3c\x2e\xb5\xd5\x17\xb4\x5e\x39\xac\x07\xb6\x85\x92\ \x12\x2a\xc6\x35\xf7\x46\x07\x9b\xfc\xf8\xf9\x5e\xab\x8e\xb1\x13\ \xf4\xb8\x46\x93\xf2\x68\x9d\xa8\x82\x26\x6d\x9d\x30\xea\x89\x8e\ \xbd\x15\xff\x4c\x07\xd6\x59\x5b\xb6\x49\x94\x66\xff\xec\xc7\xfe\ \x76\x48\xc1\xe3\xac\x29\x3d\x8d\x6b\xb6\xb1\xc8\x12\x78\x70\x4b\ \x7e\xb5\x6b\x46\x62\xd2\x2a\x22\x73\xb6\xba\xd1\xa1\x6f\xdd\xe8\ \x69\x32\x78\x7e\xfc\x98\xf1\xa5\x91\xef\xc2\x5a\x2d\xaf\xa4\xc0\ \xa3\x73\x7c\x95\xfa\x05\x75\x4f\x2f\x49\x0d\x79\xd5\x44\xf8\x48\ \x39\x7a\xd9\x38\xca\xa6\xaa\x2b\x87\x6b\x46\x3f\x44\x2c\xcd\x28\ \x3b\xb9\x65\x6b\x5b\xb8\xa8\x07\x8a\xce\xd3\x91\x41\xeb\x92\x38\ \xec\x60\x8b\x2f\xc1\xba\x59\xf9\xba\x6f\x01\x92\x98\x2a\x3f\x60\ \x29\x76\x00\x94\x31\x28\x62\x8a\x29\xf0\xe8\xb1\x05\xa1\xa4\x94\ \x02\x5b\xcf\xe8\x38\x03\x33\x58\xc3\xf7\xb5\x53\x4b\x07\x38\xce\ \xa6\x1a\xbc\xd2\x01\xcf\x0b\xcf\xbd\x70\xda\xf3\xaa\x9d\xb3\x98\ \x21\x66\x3f\x36\x5c\x9a\xf0\x30\x05\x9f\xaa\xa5\x88\x12\x39\x87\ \x1f\x07\x88\x8d\xbc\x9a\x04\x18\x26\xa5\x2f\x32\x88\x23\x14\xd5\ \xca\x45\x87\x2d\x38\x47\x0f\x28\xa2\x1b\xfe\x00\xc4\x95\xeb\x90\ \xc8\x10\x9f\x81\x51\x6c\x0a\x60\x0a\x58\xb9\xa4\x1c\x04\x82\x5b\ \x3f\x0c\xe4\x36\xd2\x25\x8e\x31\x0f\x50\x9f\x1f\x4c\xa1\x88\x8a\ \x95\x07\x39\x44\x08\x81\x9b\xfa\xa1\xc1\x0d\x12\x45\x13\xfe\x40\ \x00\x4b\x5f\x36\x80\x03\x3f\xd8\xa9\x43\x46\xe2\x1e\x3b\xe0\xc1\ \x8e\x12\x96\xcf\x0c\x38\x7b\xce\xd2\x30\xe3\x8c\x67\x51\xeb\x59\ \x31\x44\x1f\x5c\x78\x67\x43\x22\xa8\x41\x0d\x39\x9c\xda\x73\xf8\ \xe3\xc3\xba\x00\x41\x71\xc3\x13\xcd\x5e\x32\xe0\x96\x96\x30\x51\ \x49\x01\x0c\x0f\x3c\xcc\xa0\x23\xe7\x2c\xcd\x25\x97\x3a\x58\xbb\ \x62\xc8\x47\x97\x65\xb1\x40\x34\x5c\xd3\xe5\xa4\xc4\x0e\x82\xbd\ \x60\x4d\x6a\x30\x40\x0f\xcb\x58\x93\x8d\x31\x66\x7d\x66\xe8\xa3\ \x22\xd8\x91\x01\x78\xa0\x30\x2c\xdc\x99\x21\xa5\x02\x49\x9e\x2d\ \xa0\x83\x86\x7a\xe8\x9a\x22\x5e\xd5\x15\x97\x3d\x70\x53\xc6\xb9\ \x57\x7e\xfa\x21\x03\x76\xb0\xe3\x05\x16\x7c\x8e\x1a\xa6\x74\x31\ \x46\x6a\xa5\x1f\x99\x8b\x21\x64\x5c\xa5\x88\x07\xe0\x00\x07\xe3\ \x78\x80\x0f\xc6\x51\x8e\x72\x00\xae\x98\x9b\xdb\x80\x38\x1c\x46\ \xb1\x13\xb1\xe3\x7b\x36\xea\x54\x7c\x4c\x99\xbe\x0d\x98\xd2\x25\ \x5c\x34\x11\x11\xa6\xc4\x8e\x10\xe4\xc6\x8b\x21\x70\xe5\x6e\x68\ \x66\xcb\xa6\x00\xa1\x6b\x3c\x21\xe2\x03\x0a\x58\x8e\xcc\xc0\xa6\ \x00\xdd\xf0\x83\x0f\x8a\xe9\x07\x10\xf8\x0b\x5d\x9f\xfe\xe4\x1d\ \x7e\x88\x40\x8a\xef\xe5\x70\x94\x88\x43\x5f\x2f\xfb\xf8\x00\x5c\ \x39\x6c\x82\xe5\x19\x25\x2d\xd8\x01\xc6\x10\xa8\x21\x9c\x32\x08\ \xc1\x73\xc8\x59\xce\x0a\xdd\x8c\x14\xb9\x0c\x4b\x01\x70\x40\xa2\ \x07\xf8\x4b\x0b\xf6\x84\x0d\x36\xc4\xf1\x00\x71\x74\xec\x5f\xf0\ \xa8\xe4\x33\xb7\xc0\x0f\x7f\x12\x21\x7b\x93\xc4\xcc\xa4\xf6\x18\ \xc3\x62\x16\x14\x32\xec\xf8\x14\x11\x5e\xb0\x44\x6f\x3e\x74\x0b\ \xfd\x68\xa2\x29\xdc\x64\x9e\x45\x56\x54\x23\x9a\x68\x14\x46\xd1\ \x87\x83\xf7\x14\x70\x1c\xfe\xc2\x46\x31\x4d\x81\x0d\x6c\x8c\x63\ \x98\xe2\x00\xe9\x06\x32\xb0\x44\x78\xf8\xd3\x95\xd7\xea\x67\x3f\ \xd4\xc0\x0f\x78\xac\xe5\x2d\x8a\xc8\x00\x41\x63\x78\x94\x0c\xf0\ \x4a\x37\x6d\x72\x65\x08\xb6\x10\x02\x45\xe8\x10\x1e\xe2\x20\x21\ \x84\x8c\x7a\x54\x8b\x1c\x26\x3c\x5d\x63\x0c\x66\x1e\xb0\x85\x76\ \x64\x60\x03\xe5\x60\x47\x0c\x62\x00\x07\x4a\x66\xc0\x07\x3e\x58\ \x59\x83\x96\x28\x8e\x72\xc4\x72\x89\x16\x34\x5b\x08\xf8\x21\x36\ \x23\x21\x25\x8b\xf0\x78\x40\x30\x47\xfb\x4b\xcb\xe6\xa7\x4d\x21\ \xe8\x47\x5d\xf5\x50\x57\x39\xb0\x43\x06\xe2\xb0\xfe\x67\x24\x24\ \xea\x9c\x17\x08\xa6\xaf\x33\x41\x8c\xa0\x26\xf9\x30\x57\x35\xc7\ \x39\x8b\xdd\xe7\x62\xb7\x40\xd7\x31\x3c\x36\x03\x5b\x98\xa5\x1f\ \x4c\x4b\x04\x7e\x78\x33\x0d\x5b\x98\x24\x3b\xc2\xb2\xcc\xcc\x58\ \x33\x86\xbf\xdc\x28\x0e\x14\x53\x43\x29\x31\xf1\x05\x3a\xb4\xab\ \x2b\x65\x50\x0e\x0e\xf8\x0b\x04\xc9\xcb\xd6\xaf\x70\xab\x12\x70\ \x25\x48\xba\x05\x74\x4c\x73\x5e\x4a\x49\xc8\xda\xd7\x07\x19\x28\ \x02\x71\xb7\xa0\x5f\x22\xb4\x03\x0e\xc6\xcc\x80\x6e\x8a\xc0\x8f\ \x18\xb0\x94\x1d\x8e\x61\x1a\xac\xc0\x64\xcd\x72\x64\xc7\x35\x8c\ \x8b\x81\x94\x4c\xc1\x50\xd5\xb2\x83\x0e\xdd\x6c\xe2\xe6\x22\x01\ \x0f\xaa\x11\x01\x05\x71\x62\xaf\x90\x88\x63\xc4\xc0\x3a\xa6\xa5\ \xd9\xf3\xc1\x6b\x3e\xca\x62\x2d\x88\x23\x1e\x73\x5d\x2c\x74\x8b\ \x30\x4c\xaf\xb6\xc3\x95\x94\xec\x66\x0c\x48\xb1\x44\x4c\x6d\x08\ \x1b\x7e\x18\x87\x08\x33\x03\xd2\x0e\x3f\x27\x04\xf0\x98\x6b\x38\ \x29\xd9\xca\x10\x64\xc0\x14\x2b\xf0\x41\x37\x56\x10\xcb\x1d\xd5\ \x52\xc4\x1d\x21\x4e\x5b\x76\x3c\x47\xf1\x38\xb9\x1c\xf6\x6c\xb1\ \x98\x5d\x9c\x81\xb9\xf2\x37\x03\xdd\x10\x47\xfe\x06\x62\x40\x04\ \x38\x64\x40\xa5\x12\x6e\x6e\x8d\x90\x3c\x43\x06\x61\xc6\x5f\x1b\ \xd2\x8e\x16\x4c\x9b\x06\x24\x3b\x20\x9c\x0e\x90\x01\x3c\x7c\x20\ \x83\x0c\xc8\x00\xbf\x87\x16\x47\x11\x2a\xb6\x0a\x51\x61\x59\x23\ \x88\x69\xd0\x71\x0c\x31\xdd\x4e\x1d\x76\xcc\x98\x06\xe9\x3b\xe6\ \x5a\x04\x34\x77\x43\xc0\x69\x68\xec\x18\x14\x9b\x06\x03\x23\x78\ \xc7\x48\xb6\xa4\x38\xc6\x91\xd7\x77\x6e\xa0\xaa\x89\x89\xc4\x33\ \x63\xf0\xda\x32\xbb\xf2\xcd\x3e\x30\x05\xa1\x1f\x7b\xe8\x6e\xe4\ \xb4\x62\x6a\xe0\xeb\xa3\x37\xd1\x24\xc0\xf2\x83\x8d\x69\x3d\x69\ \xa6\x31\x2d\x0e\x27\x84\xc0\x09\x3e\x58\x01\x8c\x89\x3b\xdc\xe1\ \xae\x14\x3f\x6a\xe0\x6d\x39\x1e\xe6\x60\xeb\x8a\xa3\xd5\x52\x75\ \xac\x9b\x42\xe0\xda\x67\x3f\xb6\x0e\x4e\xc0\xf5\x0a\x9c\x80\xd0\ \x6c\xdd\xef\xd1\x15\x51\x59\x62\x70\xd0\xa9\x51\xf2\xe3\x1d\x7a\ \x5e\x36\xa6\xbb\xe1\x04\xfe\xbe\xc3\x07\xf1\x70\x36\x71\xf5\x1b\ \x03\xfd\x16\x41\xc7\x5b\xe8\xaa\x29\xb6\x8d\xd7\xcc\xac\x1a\x1b\ \x89\x01\x83\x29\x8a\x30\x57\xdd\xd0\xd5\x4d\x5b\x80\x76\x99\xeb\ \x60\x68\xfc\xc6\xb9\x62\x44\x98\x1b\xbc\xfe\x25\x72\x18\x22\x6b\ \x01\x07\x0f\x78\x18\x57\x3d\xaa\xef\x65\x2b\x9a\x08\x19\xaf\xc6\ \x0a\xc6\xe0\x04\x27\x8c\x41\xbf\x19\x3f\xae\x1a\xb6\x20\x07\xbc\ \x62\x23\x12\xdb\x2e\x87\x1f\x56\xfd\xea\x9f\x57\xf5\xe5\x5b\xd0\ \x0d\xcc\x8b\xd0\xe9\x15\x74\xa3\x0b\x4e\xef\x46\x9a\xbb\x81\xdf\ \x77\x64\xc0\x09\x04\xc7\x96\x17\xaf\x3c\x72\x85\x9c\xa3\xc5\xb1\ \x41\xe1\x03\xf2\x9b\xd5\x96\xbb\xdc\x82\x5b\xa8\x46\x37\x96\xf1\ \x0e\x9b\xd7\x3c\x1e\xff\xf6\x81\x1c\xf0\x13\x02\x1f\x44\xc2\xa4\ \xdc\xab\xa4\x90\xc7\x51\xd5\x71\x74\x03\x04\xd8\xf0\x01\x7f\x6b\ \x3e\x06\x29\x73\x20\xcc\xfa\x06\x01\x18\x22\xd1\x0d\xab\x3f\xf6\ \x1d\xa3\xce\x46\xd7\x17\xd2\xa2\x8f\x82\xc0\x61\xef\x28\x28\x72\ \x59\x6e\xf6\x4c\xc7\xc3\xbf\xef\x00\x43\x37\x66\x10\x0f\x1f\x84\ \x21\xee\x01\x87\xc3\x73\xd8\x91\xeb\xd6\x9b\x42\xef\x60\xc0\xc6\ \x06\xa4\x8e\x0d\x10\x80\x60\x05\x8f\x95\xba\x79\x3b\x9f\x78\xdb\ \x47\xe2\x1c\x93\x37\x88\x85\x5a\x6c\xcd\xd0\xe2\x00\xbf\x45\x30\ \x05\xef\x33\x0d\x06\x76\x17\x61\x19\x52\xaf\x86\xe9\xe3\x21\xf3\ \x78\x64\x60\xda\x63\xc0\xbd\x93\xc5\xfe\x61\x0a\xab\xfb\xa0\xef\ \x7e\xaf\x3d\x48\xff\xbe\xfc\xf2\x6b\x01\xf8\xc1\xf7\x88\x7b\x58\ \x5c\x80\x18\x6a\x67\xec\x19\x00\xb3\xf9\xc5\x2c\x0e\x38\x14\xbc\ \x1a\x33\x98\x41\x18\xe2\xc1\x7f\x1f\xd8\xa3\xf4\x01\x97\x6e\xce\ \x56\x07\xdf\xe6\x7d\xd8\x40\x75\x7e\x07\x06\xf3\xb7\x80\x5a\xd0\ \x0a\xe8\x37\x79\x9a\x40\x07\xd8\x00\x76\xaf\xf6\x2f\xef\xb0\x6d\ \xca\xc7\x80\x1f\xf5\x79\x31\x30\x06\xd0\xb7\x0c\xaa\xc0\x7f\xf1\ \x60\x0f\xf6\xb0\x02\x61\x90\x01\x63\x60\x0f\xce\x56\x78\x90\x55\ \x7a\xdd\x00\x06\xa2\x07\x06\x88\xa7\x81\xe5\x77\x5b\xf0\x66\x01\ \xfd\x90\x01\xf9\x86\x67\x44\x94\x18\xb2\x27\x0e\xef\xc0\x0e\x65\ \xa7\x81\x20\xe0\x04\x06\xa6\x0a\x6c\x30\x03\xd5\xb0\x7f\xfc\x17\ \x06\xcb\x40\x0f\xd2\x17\x0f\xfa\x95\x01\x51\xf7\x82\x61\x36\x83\ \x62\x86\x85\x34\x28\x66\xad\x20\x6c\x35\xb3\x0a\xd0\x35\x84\xf7\ \x04\x6b\xb0\xb1\x01\xc4\xc4\x55\x62\xb8\x80\x5d\x50\x58\x4e\xa0\ \x0a\xcb\xc0\x04\x4b\x58\x0d\x72\x08\x7d\x5d\x20\x7d\x45\xe0\x04\ \x5d\xa0\x85\x2c\x06\x02\xd2\x17\x06\x33\x60\x4f\x2b\xe0\x64\xbb\ \xb7\x85\x63\xd6\x0a\xf0\x06\x86\xfe\xe5\x01\x0f\xf9\x16\x64\x98\ \x21\x52\x41\xe6\x07\x56\x97\x81\x1a\xf8\x0e\xfe\x35\x06\x6c\x10\ \x05\xcb\xe0\x87\x33\xb0\x0c\xcb\xd0\x05\x4a\x58\x0d\xf1\x40\x0f\ \x66\xb7\x0c\x63\x00\x07\x44\xe0\x04\x61\x10\x4b\x4e\xa0\x78\x90\ \xb5\x83\x84\x78\x7e\x58\x46\x35\x31\x90\x81\x20\x50\x0e\xff\xd6\ \x54\x27\x37\x4f\xd8\xf0\x7a\x4f\x46\x83\xdd\x90\x74\x63\x30\x03\ \x6c\x10\x06\x4e\x98\x7f\x9c\x98\x7f\x33\xe0\x03\xd0\x67\x76\xdd\ \x30\x06\xa5\xe6\x04\xaa\x97\x06\x45\x10\x06\xec\x46\x04\x45\xa0\ \x80\x80\xa7\x87\xf3\xe7\x80\x7d\xa5\x09\xab\x20\x63\xe4\x91\x01\ \xfe\xa2\x66\xef\x00\x71\xf7\x44\x4f\xe3\xc0\x44\x05\x43\x83\xf6\ \xd0\x0e\x44\x10\x0f\xcb\x50\x0d\x9c\xc8\x89\x49\x88\x8c\xa0\x88\ \x7f\xdd\xd0\x01\xda\xe8\x2f\x6b\xc8\x58\x70\xb0\x05\x70\x30\x06\ \x63\x20\x61\xcf\x11\x8a\xcf\x14\x02\xeb\x47\x88\x0f\xc8\x48\xde\ \x08\x07\x0e\x49\x90\xd0\x55\x0e\x3e\x50\x78\x61\x56\x00\x56\xb5\ \x6a\x54\x65\x8b\x70\x50\x04\x78\xb5\x8f\xfa\xd6\x0d\x6a\x10\x6a\ \x61\x50\x0d\x48\xb8\x0c\x6c\x70\x89\x27\xa9\x84\x4d\x18\x87\xcb\ \xd0\x01\x99\x16\x06\xa6\x98\xfe\x06\xed\xe0\x04\xf1\x50\x65\x31\ \x20\x85\xe5\x21\x8e\xaf\x78\x7e\x5e\x98\x25\x9a\x50\x04\x0f\x19\ \x03\xed\x40\x1e\x8b\x05\x07\x3e\xc0\x7e\x10\x07\x6b\x52\xb5\x68\ \xb4\xe6\x03\xb1\x65\x7e\x1c\xb0\x68\x5b\x00\x8f\xf2\x78\x92\x30\ \x10\x08\x49\xc8\x04\x98\x18\x8f\x4b\xb8\x7f\x6a\x87\x69\x30\x80\ \x5c\xa5\x36\x06\xf1\x10\x8d\xd2\x68\x84\xe4\x71\x94\x3b\xd9\x80\ \x0c\x89\x02\x70\xc0\x0c\x45\xc0\x0c\xf6\x37\x94\xf9\xb1\x05\xe5\ \x28\x66\x99\xf1\x0e\x04\x59\x70\x94\x24\x09\x20\x30\x88\x66\x57\ \x0d\x6c\x36\x8d\x26\x79\x89\x30\x00\x03\x51\xc0\x06\xcb\x10\x05\ \x89\x69\x8c\xf1\xb8\x0c\x33\x30\x07\x98\xe6\x02\xcb\x00\x8d\x4c\ \x97\x74\xa5\x16\x93\xcf\x31\x06\x0a\x48\x88\x88\xc7\x01\x36\xf8\ \x3a\xab\x20\x97\x70\x70\x03\xa6\xc9\x0c\x85\x55\x28\x31\x50\x0e\ \x2d\x06\x1b\x40\x08\x91\x06\x06\x6d\xfe\xe7\x92\x9d\xd7\x01\x68\ \xe7\x87\x86\x79\x98\x27\x69\x92\x73\x30\x07\xf5\x28\x8c\xf9\xc7\ \x06\xca\x90\x69\x33\x60\x84\x8b\x55\x70\xfa\x45\x1e\x63\x30\x81\ \x6b\x79\x5e\x3e\x20\x79\xcf\x63\x01\xec\x00\x07\x29\xf0\x96\xa6\ \x79\x03\x72\x09\x91\x44\xfe\x99\x01\xcc\x89\x67\xd8\xf0\x0e\x5b\ \x20\x94\xe5\x41\x63\x3e\x50\x04\x75\xd0\x99\x2d\xc7\x01\xce\x38\ \x95\xc2\xc8\x98\x87\x09\x03\x8a\xc9\x06\x73\x80\x98\x9b\x18\x9c\ \x33\xd0\x0d\x92\x49\x9c\x45\x30\x94\x1d\x18\x06\xce\x08\x5d\xdd\ \xd0\x9c\x2d\xb6\x0c\x19\x40\x51\xfb\xa2\x09\x0e\x29\x97\xa8\xc0\ \x0c\x0c\x4a\x9a\x72\x49\x97\x3b\xf2\x0e\x57\x38\x0e\x19\x70\x03\ \xc9\x09\x5c\x07\x67\x60\x75\xd0\x05\x1c\xf0\x74\xb4\x89\x69\x5d\ \x30\x98\xf8\x87\x92\x88\x79\x92\x51\x30\x9f\x88\x39\x8f\xc8\x18\ \x99\xcb\xd6\x8c\xfe\x55\x04\xa0\xb8\x91\xd5\x20\xa0\x62\xf6\x69\ \x8e\x56\x33\xb4\xe0\x90\x70\x80\x0a\x6f\xd9\xa0\x3c\xaa\xa3\xee\ \x68\x22\xef\x10\x55\x19\x60\x7f\xe1\x09\x91\xba\x51\x6a\x45\x10\ \x0f\x61\x60\x0f\x4d\x1a\x06\x5d\xf0\xa1\x2c\xa6\x0c\x45\xf0\x52\ \xf1\x30\x03\x89\x99\x9b\x8c\xd9\x9b\xbe\xa9\x84\x85\x89\x8c\x73\ \xe0\x02\x99\xc6\x6f\x8b\x25\x90\x4e\xb0\x0c\x34\x3a\x66\x60\x90\ \x01\x79\xd0\x93\xbf\xe1\x8d\xd8\xb9\xa3\xa8\xc0\xa3\x0c\x2a\xa7\ \x74\xba\xa3\x10\x2a\x25\xef\x50\x04\x12\x56\x6d\xfe\xf5\x20\xcf\ \x26\x82\xf1\x20\x90\xfe\xf6\x30\x03\x5d\xa0\x0c\x2e\x89\x06\x5d\ \x40\x0f\xf1\x50\xa6\x51\x80\xa5\xb9\x09\x03\xbd\x99\xa5\xc7\x28\ \x9f\x92\x7a\xa2\x61\x9a\x69\x1d\x80\x5c\x2f\xe5\x04\xe8\x99\xa6\ \x2c\x36\x0e\x0e\xe5\xa6\xbd\xb1\x09\xd4\x59\xa7\x72\xca\xa0\x29\ \x30\xa7\x0e\x79\x03\x0f\x19\xa4\xf9\xd1\xa7\xc8\xe9\x90\x77\x08\ \x94\x7d\xba\xa4\xf1\x50\x07\x23\x28\x82\x72\x58\x0d\xff\xa7\xab\ \xc4\x98\x74\xcf\x87\xa5\x28\x8a\x98\x88\xf9\xa8\x8f\x49\xac\x30\ \x80\xa8\xca\x00\x03\x52\x2a\x66\x1d\xe0\x04\xce\x31\x06\xa0\x9a\ \x85\xdd\xa0\x0a\x3b\xc5\x75\x89\xa2\x09\x45\xca\xaa\x0c\xca\xa3\ \xac\x0a\xae\x09\x1a\x94\x79\x0a\x5c\x64\x79\x73\x45\x40\x96\x83\ \x7a\xab\xb9\x4a\x73\xe9\xca\xa4\xf9\x67\x0f\xe8\x1a\x0f\x5d\xd0\ \x05\xeb\xb9\x98\x91\xa9\x0c\x93\xca\x98\x49\x38\x87\x96\x8a\xa8\ \x2e\xd0\x01\x1d\x80\xa8\x68\xa0\x9f\x78\x58\xad\xad\x29\x7a\x19\ \xe0\x1c\x3e\x42\xaa\x85\xb1\x25\xd8\x09\xae\x74\x3a\xa7\x73\xda\ \xa0\x72\xe9\xaa\x3a\x6a\x7f\x13\x04\x07\x83\xca\x74\x36\x17\x70\ \xb4\x15\x02\xf0\x48\x8a\x84\x57\xa8\xca\xe0\x89\xf5\x9a\xa8\x61\ \xf0\x52\x61\x10\xfe\x05\x5d\x30\x07\xfa\xca\x98\x2b\x7a\x8c\x51\ \xa0\x0c\x36\xdb\x01\x68\x30\xb0\x89\xba\x6c\x1d\xf0\xa9\xa0\x6a\ \x7b\xe7\x25\x7a\x37\x50\x1e\x93\x83\x25\x16\x50\x04\xd8\xf9\xad\ \x14\xcb\x0c\x73\x5a\x9d\x0d\xea\xaa\xa6\x99\xb1\xe0\xd8\x49\xe9\ \x2a\x90\x02\x29\x85\xe1\x59\x04\x33\x60\xb3\x75\x48\x8c\x51\x00\ \x03\x2e\x10\xb6\x05\x3b\xb6\xd5\xa0\x1b\x57\xea\xb2\x73\xf0\xa8\ \xc8\x8a\x7f\xc2\x38\x9f\x36\x8b\xa8\x02\x8b\xb3\x5a\x30\xb0\x08\ \xdb\x72\xb6\x77\x85\x30\xb8\x66\x44\x2b\x27\xdc\x1a\xa7\x4c\xcb\ \xb4\xac\x5a\x9d\xa8\xe0\xb4\x6f\x59\x9a\x16\x9a\xb1\xe1\xf9\x20\ \xfc\x65\xb5\x1f\xcb\x7f\xd5\x00\xb6\x27\x9b\x7f\x5d\xb0\xac\xf3\ \xe9\x02\x68\x30\xb6\x5a\x30\x03\x12\x16\x8c\xf9\xf7\xa8\x33\x0b\ \x99\x6e\xeb\x02\x00\x9b\xb3\x01\x9b\xb3\x73\xf0\xac\x75\xdb\x9a\ \x40\x1b\xb4\x4c\x50\x65\xcf\xe1\xb0\x68\xa1\x09\x32\xa0\x0f\x63\ \x70\x03\x14\x6b\xa7\x14\x9b\xbb\xe1\x6a\xb8\x40\xa9\xa3\xda\x59\ \x6a\x19\x47\x96\x75\xe0\x84\xc4\xd8\x05\x2e\x30\x07\xc6\x68\xa8\ \xf5\x1a\xa6\x97\xdb\xbc\x73\x20\xac\x86\xba\xa2\xc8\x98\xa5\x35\ \xab\x0c\x61\xfe\x1b\xb0\x1d\x80\xbd\x02\x0b\x03\x01\x9a\xba\x98\ \x76\xb7\x2c\xf6\x0c\xbe\xf6\x20\x6a\xa0\xad\x1a\x63\x01\x63\xa0\ \x0f\xfa\x10\x0a\x18\x9b\xbb\x3b\x1a\x03\x14\xdb\x0e\xb9\xcb\x58\ \xcc\x70\x9d\xbd\x6b\x7f\xf9\xd1\x0e\xc1\xcb\xa4\xa0\x18\x8c\x30\ \xd0\xb5\xf2\x08\xa6\x96\xdb\xbc\x5a\xe0\x02\xd2\x0a\x07\x58\x8a\ \xa5\x98\xd8\xb9\x8c\xf9\xb5\xd6\x4b\xba\x96\x1b\xb7\x71\xdb\xac\ \xde\x6b\x76\x80\xd7\x78\xe5\x9a\x06\x22\x37\x21\x16\xe0\x04\x37\ \x90\xbe\xa1\x10\x0a\xfa\x70\x9a\x0a\x3a\xa7\xf0\x8b\x0a\xed\x90\ \xc2\x29\x6c\xc2\xd6\x69\x9a\xbd\x2b\x94\xee\x98\xc2\x05\x37\x06\ \xc4\x88\x75\x2d\xab\x7f\x4d\x48\x8c\x9d\xf8\xc0\x38\x8b\x06\x2e\ \x10\x0f\xa5\x76\xa5\x72\xa8\xc0\xee\xf9\x9e\x36\x1b\xb6\x70\x7b\ \xbd\x36\xcb\xbd\x73\xd0\xbd\x15\xbc\x6c\x30\x38\x0e\xae\x4b\x1e\ \x74\x00\x04\xb0\xfb\x14\x16\x50\xa1\xa7\x79\x03\xea\x3b\xc2\x49\ \x8b\xbb\xf0\xab\xc2\x2b\xcc\xaa\x86\x7b\xb8\xc7\xb9\x58\xed\xc0\ \x58\x64\xe9\x9f\x1c\xab\x84\x56\x3b\xa8\xd4\x77\xa2\x47\x6c\xb9\ \x2e\x10\x06\x12\x06\xa3\xf2\x78\xa2\x97\xfa\x9e\xcb\xfa\xb6\x87\ \xf9\xb6\xfe\x02\xfb\x0c\xca\xd0\x0d\x92\x8a\xba\x4f\x9c\xb0\xd2\ \xaa\x53\x45\x0b\x3d\x3a\xa0\xbe\xb5\x6b\xa1\xa6\x29\xc2\xb5\x5b\ \xbf\x0a\x2a\xbf\x62\x6c\xc9\xf0\xab\xa3\x1f\xbc\xc9\x3b\xea\x90\ \x00\x19\x90\xfc\x37\x90\x30\x1a\x0f\x16\xca\x74\xe9\xea\x87\x2e\ \x6b\xbd\x48\x2c\x98\xd2\x58\x98\x90\xab\x9b\x97\xb8\xa5\x7c\xdc\ \xc7\x03\xdb\xac\xdc\xeb\xac\x87\x9c\x85\xb6\x07\x83\x60\xf0\x0e\ \x36\x94\x06\xae\xf3\xa6\x16\xa0\xbe\x5c\x4c\xbb\xd7\x39\x06\x22\ \x7c\x9d\x51\x2b\xa7\x62\x6c\xc2\x28\xcc\xa3\xa6\x99\xbe\x02\x69\ \xab\x1b\x69\xb5\x37\xb7\x58\xeb\xea\x8f\x1d\xc8\xa4\x8b\x19\xa6\ \x5c\xbb\x0c\x16\xa4\xb5\xcd\x8a\xc4\x25\x4a\xb3\xb1\xfc\xb5\xb4\ \x3c\xb0\xdd\xd0\xac\xeb\x9c\xcb\x35\x2a\xb0\x20\xd0\x01\x82\xf7\ \xcb\xe6\xf1\xa6\x19\x20\xc2\x8e\xbc\xbe\x20\x9c\xcc\xa6\x39\xc2\ \xa0\x10\xb5\xcf\xac\xc2\xcf\x9c\xc9\xd6\x89\xcc\xd7\x5c\x9a\x1d\ \xeb\xaa\xa5\xe6\xaa\x2a\x2c\x93\xef\x8a\x7f\xbd\xb9\xbc\xf6\x1a\ \x03\x37\xc0\x06\xa2\x2b\xba\xb6\xec\xa5\xc1\xd9\xc0\x7f\xcc\xac\ \xb5\x8c\x9f\x5d\xe0\xce\x2d\xd6\xb3\x77\xdb\x0d\x8b\x46\xcf\x1b\ \x9c\xfe\x1a\xb2\x9b\xbe\xb4\xab\xbe\x21\x1c\xc2\x2c\xed\xc5\x5c\ \x8c\xcf\x00\x6d\xc9\xcd\x2c\xbf\x8c\xf5\xc1\xa1\x20\x90\x1b\x69\ \xa1\x30\x0c\x5c\x79\x9a\xc6\x01\x39\x92\xc8\x08\xb6\x2e\x30\x03\ \xfc\x55\x0d\x6f\xbb\xc4\x6c\xa0\x0a\x01\x1c\xcb\xc5\x6a\xbd\x03\ \x0b\x06\x83\x3c\x07\x9e\x38\x9c\x22\xcd\x62\x1d\x20\x75\x9f\xd6\ \x6e\xe4\x7b\xc5\x8d\x34\xbb\xa0\xc0\xd2\x21\xac\x01\x2f\xdd\xd2\ \x32\x3d\xd3\x5d\x1c\xa7\xa8\x70\xc2\x42\xd9\xd6\x38\x5d\x9a\xea\ \x2a\x85\x73\x99\xbf\x13\x94\xc6\x1f\xcc\x7f\x5b\xdb\xbc\x5d\xc0\ \xa7\x63\x90\xb6\xe8\xac\x98\x20\x08\x99\xc4\xea\xb6\x4b\x6d\xcb\ \x27\xfb\x74\x51\x9a\xd5\x2c\x06\x06\x5d\x20\x7a\x89\xfc\xcb\x69\ \xf0\x02\xb1\x60\x19\x9a\xc0\xd2\xd7\xe9\xd2\x34\xad\xd6\xca\x0c\ \xc2\xd2\x7c\x9d\x19\xfb\xbe\x6d\xfd\xa3\x64\x59\x0d\xa1\xf0\xbb\ \x36\x54\x94\x1e\xa8\x0c\xcd\x8b\x06\x33\x50\xa5\xc3\xca\x06\xb0\ \xac\xa2\xed\xd9\xd1\x87\x4d\xc8\xff\x1b\xa5\x80\x99\xd5\x1d\x80\ \x0d\xa2\xe7\x03\xa8\x5d\x31\x64\x44\x18\xd2\x79\x03\x21\xec\xc5\ \x72\x59\xbf\x24\x1c\xcd\xd8\xa9\xcc\x23\xdc\xd2\x8f\xec\xc2\x87\ \xfe\xeb\xbb\xad\x3a\xcd\x19\x0c\x72\xd3\x08\xb3\x3e\x2c\xba\xaf\ \x2d\x92\x9b\xf8\xb5\x59\x5a\x9f\x0a\xfc\xc7\x48\x5c\xcb\x5c\x3a\ \x9f\x87\xca\xd8\xe7\xb5\xd5\x2f\xc8\x6f\x92\x9d\x1f\x20\x36\x18\ \x9a\xc0\x0e\x37\x00\x0a\xeb\xab\xbe\x80\x5b\xb1\x0e\x49\xa7\xcd\ \xad\xdc\xca\x5c\xcc\xd6\xfc\xc1\x56\xbb\xcc\x1b\x69\x7f\xe2\xf9\ \xde\xa1\x06\x8f\x58\xfa\xb2\xbd\x49\x0f\xeb\x59\x0d\x91\x0a\x9f\ \xe2\x2d\xdb\x46\x9c\xbd\x88\x7a\x98\x28\x7a\xb2\x92\x60\xc8\x75\ \x2b\xb0\x7b\x08\xb4\x3e\xe0\xd5\x85\x82\x1f\x56\x4c\x17\x9a\x30\ \xcc\xeb\x4b\xd3\x4c\x1b\xd7\x28\xbc\xc2\xca\xed\xa3\xde\xca\xdc\ \x9b\xfc\xc1\xfa\x10\x0f\xa1\x20\xa8\xa5\x88\xe0\xe5\xf1\x5f\x1b\ \x09\xaf\x30\xdb\xac\x8d\x0a\x07\x61\x00\xd8\xb6\x2c\xd8\x85\x59\ \xc4\x52\x6d\xcb\x69\x1b\xd1\x5d\x90\x8f\x22\x0d\x06\x86\xfc\x8b\ \x3a\x5e\x1e\x69\x00\xd6\x1d\x61\x01\xc5\x1c\x0a\x66\xbd\xd6\x13\ \x8b\xa7\xf2\x6b\xb8\xf9\x0d\xc3\x3c\x5e\xbf\xa5\x69\x7f\xd5\xad\ \xae\x4b\x18\x0a\x70\x70\xdd\xa9\xcd\xb1\xd5\x50\xb3\xab\x0c\x90\ \x2d\x9b\x98\xfc\x3a\x03\x6e\x08\x99\xb1\x4c\xde\xb6\x7c\xa9\xfe\ \x51\xd0\x0d\x5f\xeb\xe1\xee\x9c\x8f\xe0\xfb\x51\xd8\x70\xd2\x53\ \xae\x1f\x37\x9a\x15\xb2\xfb\xcf\xea\xab\x0a\xf8\x4c\xcc\x64\xee\ \xcc\x31\x50\xbf\x23\xac\xa3\xd5\x29\xbf\x3f\x9a\xb1\x69\xbc\x58\ \x99\x1e\xb5\xa9\x39\xe5\x8c\x45\x7d\xf2\xb9\xc4\xd5\x60\x7f\x9c\ \x7b\x92\x49\x38\xd8\x47\x8e\xce\x4b\xdd\x9b\x6c\xf0\xb2\x72\x1c\ \xb7\xee\x0c\x02\xed\x2d\x83\x96\xb7\xb0\x87\x5e\x1e\x29\x0d\x20\ \xce\xa0\x0a\xfa\xf0\xcf\xf6\x7d\xdc\x34\x3d\xc9\x72\xda\xaa\xc4\ \x5c\xdf\xc4\x1e\x97\x48\x3b\xe3\x40\x69\xca\x55\x6b\xab\x22\x5e\ \x31\x14\xed\x81\x98\xaa\x0c\xf4\x60\x8a\xcf\x97\xa5\x82\x2d\x8f\ \x78\xce\xea\xef\x29\xb3\xca\xda\xc7\x88\xfa\xe4\x52\xe7\x74\xa1\ \x1a\xed\xbf\xbc\xeb\x4d\xd1\xeb\x5b\x8e\x9d\xf6\xdd\xc5\x29\x6e\ \xd6\xcb\x4c\xa7\x37\x2e\xc2\xf8\xfc\xc8\xb5\x1b\xc2\x82\x7a\xe3\ \x2b\xa9\x92\x45\x80\x0a\xb9\xae\xa4\x71\xdc\x05\x51\x50\x0d\xb7\ \xe9\xb9\x9b\xe8\xd4\x6e\xd8\x9e\xe8\xbc\xa5\x08\x1f\x99\xcb\xfa\ \xbf\x85\x1c\xe8\x4d\x3e\x0e\x7f\x48\xe8\x98\x19\xf0\x93\x6d\xbe\ \x42\xa1\x09\xef\xa0\x0a\x4c\xa0\x0a\x1a\xf0\xeb\x49\xcb\xfe\xe8\ \xa1\xa0\x0a\x21\xa8\x01\x8f\xbc\xa3\x45\xb0\xbe\x8e\x7e\xdc\x3a\ \xfd\xd2\x36\xce\x84\x22\x48\x8c\x72\xb8\xae\x6c\x2e\xd9\x05\x07\ \xaf\x4a\xb8\x68\xed\xe0\x81\xf3\xb8\x84\x77\xbe\xd1\xdf\xde\x98\ \x95\x2a\xc7\x93\xbb\xd8\xb9\x2c\x7a\x53\xe7\xc4\x2e\x16\xdc\x53\ \x1e\x0b\x89\x5e\x21\x3e\x80\xf2\x4c\x10\x08\x4c\xc0\x04\xec\xcb\ \xb4\x6a\xfd\xd2\x27\xbf\xd3\xae\x5a\xbf\x63\x10\xec\x8e\x6c\xdc\ \x37\x6e\xb5\xfc\x2e\xa8\x82\x7a\x03\x50\xff\xde\x14\x4d\x7d\xf9\ \x57\x0d\x55\x2a\x8d\x4e\x28\x87\xfb\x57\x8c\x9b\x68\x98\xca\xc0\ \xaf\x0f\x2f\xb9\x4d\x7e\x98\x1c\x8e\xb0\x8a\x27\x75\x52\x86\x9e\ \xe8\xa5\xf1\x3b\x62\xa0\x8d\x64\x01\xef\xa0\x01\x59\xdf\x0d\x58\ \xc9\x04\xfa\xd0\xa0\xc7\x1e\xc9\x27\x2f\xef\xd6\xa9\xdc\x9f\x6d\ \xd0\xf8\x6e\xb5\x75\x30\x06\xba\x7a\xae\x6c\xaf\xe3\x9b\xae\xa3\ \xa7\xfc\xe6\x9e\xd8\xa8\xd0\x45\xbc\x34\xaf\x0a\xc2\x88\xe7\xef\ \xf9\x9b\x49\x98\x84\x8f\xfa\xb2\x70\x2b\xd2\xb4\x9e\x66\x33\xf0\ \xa9\x21\x8e\xf8\xd9\x52\xe2\x40\xe1\xf1\x5a\x7e\xf2\x57\xcf\x06\ \x59\xef\xc5\xff\xcc\xb4\x86\x2b\xf3\xc9\x9c\xdc\x94\xfe\x7c\xcc\ \x60\x7f\x73\x84\x27\x82\x9f\x1f\xca\x07\xae\xf3\x01\x59\xbb\x0f\ \x1d\x99\xbd\x99\x8a\xd0\x25\xc4\xc4\xb8\xc6\xc6\x68\x95\x25\x5a\ \x9f\x0d\xec\xb2\xb4\x3f\xb9\x72\x9b\xcb\xb6\xc7\xd5\x9f\x1a\x09\ \x6d\x3f\xe5\x5e\x64\xe5\x08\xe1\xf1\x1a\xb0\xe5\xfa\xe0\xf8\x58\ \x1f\xf2\x59\xa0\xbe\xa0\xf0\xb4\x00\x71\x43\x9f\xc0\x50\xaa\x42\ \x0d\xbc\x71\x03\xce\x42\x38\x45\x6e\x8c\x81\x38\xe6\x86\x13\x27\ \x63\x9c\xd4\xa9\x03\x31\xe3\x98\x22\x31\xd2\x7c\x04\x19\x32\x0d\ \x91\x76\x24\x8b\x8c\x09\x15\x0f\x62\xbc\x65\x51\x60\xb8\x80\x11\ \x65\x4c\x9a\x18\xf1\xa2\xcc\xa8\x16\x26\x5e\xbc\x30\xcb\x66\x2c\ \x5b\xc6\x06\x06\x1b\x36\x40\x7d\x46\x61\x33\x43\xa9\x52\x9f\x5d\ \xba\x74\x40\xa3\x45\xea\x54\xaa\x55\xad\x5e\xc5\x7a\x95\x03\x18\ \x30\xdd\xba\x51\xe5\x10\x42\xe4\x58\xb2\x65\x5f\xc4\xfa\x97\x56\ \xed\x5a\xb6\x6d\xdd\xbe\xfd\xa7\xc9\x99\x2a\x26\x4c\x34\x1c\xd4\ \xa7\x81\x09\x9b\xba\x06\xef\x0e\x64\xc6\x2c\x21\x1c\xc1\x37\x42\ \x1d\x46\xc8\x8c\x21\x9c\x84\x10\x9d\x14\xa1\xe8\x24\xde\x45\x8b\ \x8f\x3b\x96\x0d\xc9\x78\xe1\xca\x9d\x63\x96\xcd\xfe\x71\x11\x7a\ \x4e\x3c\x92\x63\xe6\x44\xc9\xc9\xb3\x67\xd2\x19\x51\x90\x02\x55\ \x15\x94\xcd\x4d\xd7\x4a\xab\x55\x6b\xd9\x41\x59\x87\xac\xbd\x7d\ \xff\x06\xc1\x75\x2b\x98\xad\x52\x65\x60\x46\x8e\x19\x85\x26\xb8\ \xcd\x9d\xb3\x3d\xa0\x41\x6f\xdf\xc3\x05\xeb\x32\x51\x95\xfd\x2e\ \xa8\x1b\x0e\x99\x15\x61\x7c\x03\x14\x28\x7d\xfa\x0e\x2a\x24\xcc\ \xb0\xc8\x7a\xc8\x17\x23\x53\x2c\xb2\xe5\x32\xf2\x76\x45\x54\x72\ \x0e\x13\x06\x77\x17\x17\x68\xd0\xb8\x58\x66\x8b\x18\xc6\x80\xa1\ \x8b\x6a\x54\xab\x66\xa9\xd9\x5e\x33\x8a\x28\xd7\xd8\xe8\xe2\xa6\ \xa5\x66\x98\xa3\x9b\x39\x78\xfb\x0d\xab\x0e\x40\xc8\xb0\x2a\x10\ \x82\xeb\x06\x8c\xe0\x38\x90\xca\x14\x22\x92\x43\x51\xa4\x52\x56\ \x79\xae\xc5\xb7\x5a\x09\xa4\xae\x40\x62\xb4\x4b\x03\x55\xf4\xa2\ \x8b\xae\xba\xee\x3a\x2f\xa1\xc1\x50\x61\x4c\x9f\x31\x10\x02\x0f\ \x0e\x01\xb7\xd8\x22\x84\x22\x42\xa0\xa8\x0e\x39\x9c\x90\x23\x04\ \x24\xdb\xf9\xa8\x24\x91\xa8\x8c\x61\xa1\x78\x52\xdb\x49\xbf\xdb\ \xd8\x50\xc6\x3f\x34\xe6\xb8\x61\xc0\x39\x60\x58\x66\x27\xdc\x5a\ \x72\x0d\xa9\x9f\x80\x22\x6a\x36\x18\xe6\xac\xfe\xed\xa7\x19\xba\ \x38\x93\xc3\x0e\xad\xea\x20\xc4\x3d\x3d\xe4\x00\x1b\x0e\x0a\x20\ \x31\x92\x13\x53\x44\x74\xa4\x55\x98\x73\xb1\x51\x4d\x22\xe9\xa0\ \x03\x30\x94\x79\x86\x46\x1d\x6f\xbc\xd1\x46\xec\xf6\xc2\x4e\x22\ \x1f\x99\x41\xa5\xb0\xc6\x38\x62\x48\xca\x10\x98\x74\x12\x4a\x29\ \xb7\x50\xe3\xd0\x2c\x63\xa0\x72\x24\x38\x62\xc8\xf2\xa1\x78\x6c\ \x53\x2d\x3f\xfd\x60\x10\x53\x99\x31\xb6\x70\xe2\xce\x03\xb7\x6c\ \x6a\x0e\x63\xa3\x00\x6a\x86\x38\x1d\x8c\xa9\xa8\xa5\xaa\x71\x09\ \xc3\x3f\xa9\x02\xa3\x8b\xaf\xa6\x9d\x4a\x50\x42\x39\x2c\x40\x8d\ \x44\xbf\x5d\xc5\x82\x46\x5b\xd4\xc4\x14\x26\x02\xd9\x10\x8c\x0e\ \x62\xec\x05\xc7\xbe\xb2\x08\xc5\xc6\xec\x38\x55\x25\xb1\xef\x14\ \x43\xcf\xb0\xee\xd8\x63\xf2\x49\x39\xfe\x0d\xe1\x85\x17\xb6\x38\ \x34\x0d\x60\x3b\xc2\x72\xbd\xcd\x54\xaa\xa6\x8b\x65\xec\xc9\x0f\ \xe2\xdb\xf8\xf3\xcf\x85\x30\x1a\x0a\xa3\x8b\x19\xec\xc1\x4d\xa9\ \x33\x95\x99\x83\x29\xa5\x1e\x8c\x93\x41\x87\x13\xec\x66\x37\x6c\ \xa9\xf2\x4a\xcf\x95\xb5\x00\x81\x50\x2d\x22\xf1\xf6\x5b\x44\x89\ \xd0\x84\xd1\x71\xe1\xd2\x84\x30\x50\x34\xfe\x98\x71\xc6\xba\xb2\ \xc8\x42\x3a\xbd\xa4\x3b\xa8\x3a\xba\x96\x51\xc5\xc7\x84\x00\xab\ \x15\xa2\x89\x22\x7b\x52\x08\x80\x83\x08\xa1\x55\x90\x92\x64\x2f\ \x06\x22\xe0\x50\x09\x32\x8d\xe2\xb1\xc7\x61\x7a\xaa\xb1\x87\xec\ \x30\x66\x08\xd3\xbf\x19\x26\xba\x15\xa7\xb5\xef\x3c\xb3\x40\xa3\ \x46\x7e\x50\x59\xa2\xec\xc4\x69\x06\x18\x22\x7d\x59\xaa\x48\x49\ \x0c\x5c\x8b\x41\x67\x2e\xc2\x66\x44\x4b\xd1\x79\x67\xb7\x2c\x08\ \x01\x15\xc9\x99\xf9\xf9\x3a\x26\x7a\x19\x6f\x01\x4d\x77\xc4\xee\ \xae\xec\xea\x4d\x08\x94\x21\x07\x02\xf2\x24\x89\xd6\x83\xd2\x09\ \xab\xff\xc5\x3a\x08\xad\x89\x20\xe2\x54\x53\x05\xb4\xcf\xa2\xf6\ \xc6\xa8\xa3\x1a\x7a\xba\xa0\xe7\xe1\x31\x78\x6a\x58\xcc\x39\xc2\ \xf8\xbd\xa7\xfc\x46\x9e\x43\x99\x98\x3a\x8e\x50\xce\x65\x95\x5d\ \x2a\x8a\x0b\x79\x8b\xea\xe5\x3e\xbb\x71\xf9\x65\x12\x0b\x10\x4b\ \xf1\xe4\x96\x73\x9c\x67\x76\x02\x4b\xa1\xfc\xc0\x16\xe8\xe5\x5c\ \x26\x16\xa0\x3c\x0b\xcb\xe9\xe2\xeb\xf3\xec\xf0\x2a\x0f\x30\xc1\ \x1c\xe2\x68\xc9\x8b\xe4\x70\xf2\xdf\x7f\x5f\x80\x1d\x11\xd4\xb0\ \x2a\x35\x10\x0c\x58\xf6\xc8\xc8\x45\xfe\xea\x10\x8f\x3a\x84\x61\ \x77\xc6\x3a\x5b\x7e\x6e\xc5\x2b\x34\xc0\x60\x06\x2a\x01\xde\x51\ \x60\xa0\x0c\x65\x68\x2c\x41\x11\x3a\x8d\x6b\x9a\xb5\x37\xd7\xe0\ \x69\x7a\xd2\x5a\x19\x08\xba\x61\xad\xc2\x69\x01\x0c\x33\xdb\x82\ \xf7\x90\x43\x87\x9c\x85\xef\x2d\xd9\xd0\xc7\x78\x02\xc3\x8c\x37\ \xa4\x20\x30\xee\x63\xd7\x0f\xef\xe2\x39\x4c\x31\x61\x19\x36\xfa\ \x8b\x40\x3c\x75\x03\xc5\xa0\x8e\x22\xfc\xab\x83\x10\xa4\x38\x45\ \xd7\x09\x30\x60\x2f\xc8\x5a\xc0\x42\x50\x07\x7b\x20\x30\x23\x75\ \x70\x02\x02\xab\x21\x09\xd1\xd0\x43\x82\x19\xf3\x8f\x05\x75\x52\ \x3c\xdc\x44\x81\x83\xa7\xf9\xa0\xb1\x8e\xb5\xb7\xd6\xd4\x06\x84\ \x4e\x51\x06\x07\x5c\x10\xb8\x0e\x70\x40\x1c\xdd\x20\xdc\xcb\x3e\ \x64\x22\x19\x62\x66\x51\x36\x74\x8b\x26\x6e\x94\x05\x66\xf8\x50\ \x87\xe6\x5b\x80\xfa\xb2\xe0\xc3\xc0\x8c\x07\x2f\xf1\xa0\xcb\x10\ \xe9\x87\x90\xc1\x2c\xc4\x89\x18\x11\x42\x14\xeb\xc0\x07\x21\xb8\ \xee\x05\x6a\xc0\x22\x16\xb5\xc8\xbf\x4b\x5c\xc2\x1e\xf2\xc0\xc8\ \x02\xe5\x61\x8f\xdd\xa1\xa1\x83\xcb\xd0\xc9\x96\xc2\xa4\xc6\xce\ \x84\xa2\x63\x1b\x74\x18\x9b\xda\xfe\x94\x37\xbe\x81\xd0\x58\x78\ \xda\x0d\x0a\xb1\x55\x2d\xec\x09\x12\x66\x5a\xc0\x46\x0c\x0b\x39\ \x16\x03\x34\x0e\x91\x69\xd1\xc4\x75\x54\x01\x8a\x46\x52\xee\x91\ \xa1\x3a\x1a\x28\xca\xe7\x48\x4e\x9a\x27\x69\xf3\xab\x5f\x0e\x15\ \x02\xa4\x24\x3d\x09\x23\xf2\x80\xa7\x3c\xa4\x28\x30\xac\x61\x51\ \x0e\x41\x10\xd8\x0b\xe4\x20\x8f\x56\xba\xb2\x8b\xb0\x64\xe0\x18\ \x43\xa3\x0c\xd4\x60\x30\x0a\x30\xc1\x49\x9a\x4e\x52\x0d\x36\x9c\ \x29\x64\x47\x89\x90\x84\x5a\xa3\xb1\x65\xd0\xe3\x26\x11\x32\x61\ \x17\x76\x83\x06\x65\x4e\x0b\x04\x1c\xc8\xde\x9f\x5c\xd6\xad\x69\ \x8a\x44\x0d\xe2\xba\xe6\x5a\xe4\x42\x97\x20\x3a\x92\x3c\xec\x83\ \x64\x0e\xc9\xe7\xd2\xc0\x10\xa4\x68\x9f\xfb\x4b\x79\xd0\x43\xab\ \x18\x6c\x31\x9e\xf0\x94\x62\x10\xfc\x77\x4f\x39\xe8\xf3\x94\xfa\ \xac\xc3\x25\xf8\xa0\xd4\x7e\xfa\x93\x96\x73\xf8\xcf\x1c\xd2\x64\ \x91\x6a\x6c\x70\x19\xd0\x5a\xc6\x7a\xc2\x20\x14\x82\x26\x0b\x84\ \x6d\x5a\x4a\x84\xee\x14\x05\x8c\xce\x01\x4f\x4f\x89\x54\xf5\x9c\ \xd9\xc2\x02\x98\xc2\x23\x25\xfd\x08\x11\x80\x60\xcd\x6b\x9a\x22\ \x5e\x32\xd2\x40\x16\xf4\xb1\xfe\x80\x05\x80\x62\x01\x44\x93\xa9\ \x4b\x61\x6a\xbe\x1d\xa6\x13\x47\x1a\xc8\x21\x60\x16\x42\x2b\x60\ \xd5\x01\x96\x42\x90\x67\x10\x84\x2a\x87\xd5\xdd\x33\x04\xf5\x44\ \x2a\x1f\xf8\x50\x8f\xcd\xd6\xa3\x1e\xf4\xf0\x67\xc3\x94\x11\x9a\ \x2e\x10\xef\x24\x2e\x49\xd3\x4d\x14\x62\x13\x18\x48\xb5\x8d\x21\ \xac\xd3\x58\x9d\x72\xa7\x2e\xcc\xc9\x84\x1c\xe4\x00\xe0\xf8\x18\ \xd2\x95\x89\x43\x9a\x70\xb5\x00\x5d\x11\xa9\x89\x77\xec\x35\x92\ \xd7\x31\x5a\x16\xc6\xa3\x0f\xbd\x72\x33\x05\xa0\x28\x9a\x72\xbb\ \x69\x3e\xf2\xf8\x28\x2f\xa1\xe0\xce\x60\x60\x15\x83\x24\xc5\xd2\ \x6a\x41\x28\x65\x78\xa7\xe8\x3f\xa1\xe2\x33\x94\x7c\x90\x87\x66\ \x39\x4b\x0f\xf6\x82\xb6\x29\x2f\x51\x86\x42\xed\x23\xd5\x31\xb4\ \x66\x0c\x70\xa8\x2f\x41\x73\xd2\x9a\x39\xb0\x46\x42\xf4\x50\x8a\ \x45\x2d\x5a\xdb\x63\x26\x6f\x37\x2a\x0b\x1c\x71\x5a\x08\xb3\xee\ \x95\x94\x86\x29\x55\xa9\x38\xec\xc2\x4d\x50\x58\xae\x2e\x98\x3b\ \x9f\x4c\xdb\x77\x34\xe9\xfa\x90\x92\x81\x09\x15\x33\xca\x93\x5d\ \x38\xb4\xa3\x24\x31\x70\xe7\x77\x25\x0b\x5e\xf0\xfa\xaf\x94\xe4\ \x05\xef\x4f\xe1\xb9\xd4\xfe\xcf\xb2\x37\xa1\xb5\xed\x60\x3c\x3a\ \x52\x84\xa4\x38\x61\xab\x1c\x59\x5b\xc8\xda\x48\x1b\x91\x49\x54\ \xac\x03\xce\xe8\x1c\x72\x3b\xb8\xc2\x7d\xa8\x85\xd8\x28\x58\x21\ \x4f\x2a\x5c\x1b\x62\x43\x68\x98\x7b\xae\x85\xd7\xd7\xcd\xbe\x8a\ \x93\x72\xd3\x61\x02\x23\x77\x48\x49\xc9\xb5\x43\x72\xe2\xf1\x14\ \xad\x88\xd0\x4e\xd6\xad\x58\xb2\x41\x75\x33\x51\x85\xea\xd8\xa5\ \xa2\x37\x9e\xf6\xb8\x04\x7b\x3d\x18\xc7\x19\x8c\xa1\x1d\x35\xa9\ \x06\x7e\xdf\x36\x86\x30\xdc\xa4\x27\x4b\xf1\xc9\xdd\xc8\x2a\x3d\ \xb3\x6a\x8c\x6e\x8d\xbe\x90\x16\xa2\xa2\xd6\xb5\x06\x2e\x12\xbf\ \xf5\xde\x89\x62\x41\xe5\xf0\x65\x33\x68\xe3\xe8\x85\x72\xb3\xd0\ \xae\xe9\x20\x96\xc2\x3a\xe4\xe1\xa8\x77\xa4\x0f\xf2\x75\x53\x72\ \xa8\x30\xb3\x99\x1b\x63\xa4\x53\xb1\xee\x05\xf8\x5c\x31\x9c\xf1\ \x79\xeb\x5b\xbf\x39\xbd\x9c\xbd\x04\x3c\x1d\xdb\x45\x00\xd3\x23\ \x29\x39\x61\xe8\x05\x3d\xb2\x85\x8b\xd9\x27\x06\x45\x28\xb4\x4e\ \x12\x9d\x9f\x8e\xe1\xad\x8e\xa7\xc1\xe8\x06\xe7\x84\xe0\x05\x6b\ \x61\x43\x85\x03\x43\x06\x30\xad\xb8\x4d\x43\x58\x2d\x9a\x18\xc7\ \xe5\xce\x25\xb4\xbc\xfe\xea\x25\xd4\x1c\xde\x2b\x37\xdf\x50\xd8\ \x76\xd9\x65\x87\xa0\x02\x71\x99\x4d\x8c\x0a\xfc\x39\x21\x04\xff\ \xe3\x75\xae\xc1\x5b\x4a\x5c\xf3\x5a\x60\xfc\xeb\xac\x52\x5f\x09\ \xcb\x2e\xda\xe3\x59\xb9\xc4\x25\x1c\x46\x72\x03\xda\xb5\x63\x0b\ \xa1\x08\xc3\x0d\x58\x82\x4b\x9d\xe8\xe7\x28\x13\x62\x74\x6b\x5f\ \xe2\x02\x3d\x72\x80\xd2\x2d\x04\xa4\x88\x04\x29\x0e\x1f\xb0\x83\ \x60\x8a\x7b\x01\xa7\x1d\xa7\x89\x03\x5c\x27\x7d\x81\x78\x46\xa5\ \xc6\x41\xa3\x30\x17\x4d\x3a\x39\x1c\x8f\xbc\x29\xa7\x8f\x1b\x75\ \x13\x54\x29\x20\xcc\xd1\x61\xfd\xe7\x86\x44\x29\x4a\xb8\x7e\xf3\ \x14\x09\x9e\x4f\x81\xa9\x01\x95\xe0\xad\x73\x53\x9d\xca\xb1\xdb\ \xa4\xc6\x56\x45\x88\x15\x95\xb0\x84\x1e\xd5\xec\xa4\x4b\x57\xed\ \x98\x4f\xfc\xa6\x6d\x0e\x8e\x36\xad\x92\xee\xb6\x0b\xbd\x12\x48\ \xdf\x38\x19\x66\x7f\xfc\x50\x01\x64\x10\x43\xee\x06\x10\x39\x72\ \x35\xb7\x5a\x6a\xbe\x6e\x19\x05\x82\x2b\x41\xa3\x91\x5e\xa5\x63\ \x90\xf2\x74\xd9\x91\x36\x62\xe4\xe4\x42\x15\xaa\xc5\xcc\x8a\xbb\ \xa7\x72\xb3\x64\x4b\x20\x04\x5f\xc8\x13\xce\x54\x3f\x2a\x78\x1d\ \x3b\xe3\x4b\x78\xfe\xb6\x95\x1c\x33\xa3\xd9\x55\x92\x25\x38\x44\ \x19\x24\x1e\x89\x41\x63\x52\x12\x06\x55\x74\xfc\xd0\xae\xa9\x5b\ \xdb\x5b\x9b\x47\x17\x40\x25\xee\x53\xd9\x0a\x6f\x3d\xe4\xc2\x17\ \xba\x50\x1c\xc5\x97\xca\x06\x32\xe0\x07\x71\x8c\xa3\x1c\x3e\xc8\ \x00\x3b\x96\xd4\x11\x01\x9d\x68\x13\x32\xdf\xd9\xe0\xd7\x4d\x23\ \x9c\xe7\x3c\x46\x42\xab\x11\xa6\xee\xd2\x5c\x6e\x32\x23\x0b\x74\ \x19\x48\x0a\x5e\xbd\xfe\xa4\xcf\x6a\x80\x58\x2c\x2f\x8b\xa7\xd8\ \x79\x5f\x04\xb5\xd7\xa7\x24\xc2\xad\x29\x1b\xca\x51\x9e\x9e\xd8\ \xb6\x09\x85\xd3\x79\x2b\xfa\x60\xba\xe2\xe9\x38\x55\x48\x90\x86\ \x4a\x9e\x6d\x6b\xbb\x0e\x4a\x1e\xea\xf9\x3d\xa9\x00\x24\xe1\xcb\ \x8a\xe0\xb0\x8a\x02\x98\x8a\x90\x02\x01\x6c\x00\x03\x6c\x10\x07\ \x67\xc0\xbe\x71\x79\x94\x40\xd0\x0b\xc4\xdb\x3e\x9e\x03\xbf\x4d\ \x59\xbc\x1b\xc1\x2e\x0a\x3b\x3f\x0d\x00\x05\x38\x58\x3f\x13\x33\ \x33\x86\x88\x81\x01\x72\xb1\xfa\x1b\xb8\x29\x4a\x2f\x52\x5a\xb1\ \x7b\x3a\x25\x35\x78\x33\xca\x72\xac\x77\x5a\xa0\x4b\x10\xab\x6a\ \xe0\x08\x58\x49\x94\xd8\x5b\x89\x43\x73\x10\x03\x53\x9e\x0d\xe2\ \xa0\x39\x49\xfe\x19\xdf\x9b\xb4\xdf\xeb\x86\x48\xe8\x10\xae\x50\ \xb9\xaa\x28\x00\x6c\x28\x80\x31\xec\x8d\x73\x08\xbc\xb8\x10\x87\ \x19\xd1\x80\xf4\xd9\x3e\x19\xb1\x30\xf0\xfb\xb9\xeb\x62\x41\x1d\ \x22\x0f\xe9\x4a\x0f\x7d\x33\x31\x9e\xfa\xb7\xfd\xe3\x83\x59\xd0\ \x81\xf0\xca\x03\x29\xd2\x2c\x52\x0a\x2f\xcf\xa3\xa7\xfd\x93\x27\ \x79\x02\x23\x77\xb2\x07\xa3\x20\x1e\x89\xfb\x96\xd8\xc3\xb8\xa0\ \x68\x13\x63\x99\x13\x2a\x64\x3b\x2a\xd4\xad\x93\xdb\x13\x3f\xa9\ \x0a\x0e\xb8\x16\xdf\xe8\x0a\x6c\x68\x26\x30\x6c\xbe\x6e\x10\x43\ \xac\x38\x87\x10\x6c\x14\x67\x70\xc3\x35\xb4\x1c\x9e\xd3\xb2\x1d\ \xc9\xa9\xc3\x40\x2c\xf2\xab\x2e\x26\x62\x22\x50\x41\x05\x26\xfc\ \xb3\x9e\xda\x3f\x21\xd0\x84\x4a\xa8\x04\x0b\xf0\x3c\x5f\xe0\x83\ \x4d\xd0\x2c\x5f\x88\x22\x21\x98\x85\x67\xf4\x41\x44\x8c\xa7\x58\ \x92\x03\xb1\x71\x0c\xf0\x88\x95\x14\xa9\x0f\x62\xa1\xc4\x36\x59\ \x10\x11\xba\x44\x18\xe8\x06\x18\x78\x86\xde\x53\x2b\x4e\xcc\x90\ \x8e\x82\x19\x90\xf2\x0d\x52\x1c\x87\x52\xac\x0a\x6c\xf0\x01\x0e\ \x0c\x8e\x90\x6a\x05\x56\x74\x11\x74\x23\xbc\xf5\xe1\xab\xf4\x61\ \x43\x59\xfe\x4c\xc1\x18\x31\x9a\x50\xd0\xab\xc4\x0a\xba\xf2\x0b\ \x0c\x19\x94\xc1\x5e\x8c\xab\x7f\xab\x03\x07\xe0\x83\x4a\x68\x85\ \x56\xa8\x84\x59\x50\xc6\x41\xd4\x81\x41\x14\x02\xcd\x22\xc6\x8a\ \xf4\x3c\x29\xea\x41\x3e\x78\x25\x06\xc2\x9d\x25\xcc\x46\x44\x19\ \x90\x8d\xab\xb6\x09\x49\x8a\x38\x19\x0a\x66\x41\x30\x74\x6c\x21\ \x15\xa2\x3b\xab\x20\xc5\xaf\xa8\xc7\x02\x08\x8e\x17\xea\x40\x31\ \x04\x03\x9d\xac\x0a\x33\x0c\x3c\xe2\xba\x0b\x9b\x63\xb5\x79\xf3\ \xab\x5e\xe8\x85\x2b\x03\xb3\xba\xe8\x86\x40\x88\x1f\xe9\x58\x80\ \xc4\x52\x27\x26\x5a\x3f\xc9\x59\xac\x92\x88\x9d\x3a\x90\x01\x19\ \x30\x85\x56\x90\x0a\x8a\xe4\x83\x8c\xcc\xc8\x3e\xb4\x80\x59\xe0\ \x83\xce\x8b\xc8\x8e\x9c\x85\x8f\xe4\xa7\x7e\x6a\x38\xfd\x88\x07\ \x85\xb0\x99\x76\x60\x8c\xce\xf8\x9d\xb2\x8b\x8d\x6a\x88\x8d\x06\ \xa1\x44\x8d\xf2\x0f\x6f\x53\xc7\xc2\x29\x8e\xac\xe8\x0a\xab\xb0\ \x3b\xa9\xc0\x06\x6c\x78\x86\x2f\x94\x8a\x1a\x1a\x4a\x78\x81\x2e\ \xe9\xe8\x85\xbe\x6a\x24\xf3\x51\xb5\x40\x78\xb7\x1a\x99\x0e\x1a\ \xc9\xab\xc6\x5b\x2e\x0d\x7b\x35\x1a\x64\x2c\x60\xec\x4a\x3e\x30\ \x05\xfe\x4d\x98\xc8\x56\xb0\x80\xb1\xac\x83\x8c\xb4\x80\x7a\x68\ \x4d\xcd\xfa\xc3\x3e\x6c\x05\x0e\x10\x4b\x29\xa2\x33\xb8\xe4\x98\ \xfc\xe0\x88\x93\xbc\x19\x4f\x02\x8f\x93\x38\x8c\x9d\x40\xc0\xe3\ \x64\x1a\xa3\xc0\x13\xc0\xe1\xa8\x08\x94\x8a\x9a\x94\x0a\x3d\x71\ \xcc\xac\x28\x80\x40\x48\xc5\xa9\x58\xc5\xa1\x44\xb7\xbc\x1a\x0f\ \xc0\x52\xae\xf2\x9b\xb7\x37\x18\xb5\xf4\xc9\x82\xbf\xba\x8b\x84\ \xd8\x1c\xe9\x28\xc8\xc4\x2a\x4f\xee\xe0\xc5\xa5\x63\xba\x3d\x94\ \x01\x67\x40\xcd\x03\x68\x85\x48\x18\x4b\xcd\x2a\x01\x79\x40\xc6\ \xd9\x9c\xcd\x41\x9c\x85\x4a\xe0\x80\x8a\x9c\x22\x8c\x58\x2a\x7f\ \x22\x1b\x95\x28\x31\xc5\xa9\x8f\x88\x58\x0f\xce\xc0\xa4\xfc\x30\ \x8a\x09\x5d\x86\xa7\x68\xce\x05\xcb\x2d\x0f\x09\x29\xae\x80\x19\ \x78\x34\xcc\x9f\x44\xbe\x7b\x3c\xc3\x73\x78\x06\x5a\xd4\x2b\xa2\ \x89\xae\x83\x0c\x3a\xcd\x31\x9a\xa2\x13\x8c\xf4\xcc\xab\xe6\xa2\ \x9c\x19\xc5\x37\x7d\xeb\xa9\x8b\x38\x4d\x03\xc8\x48\x03\x28\x25\ \x07\x68\xcd\xcd\xdb\xc8\xff\x1c\xc4\xd6\x7c\x46\x62\x9c\x85\xd5\ \x09\xa5\xb7\x74\xa5\x2e\x99\xcb\x01\x44\x14\xbb\xfc\x9d\xdb\x20\ \xfe\x9e\xbc\xa4\x3d\x9d\x88\x0d\xe8\x41\x34\x7a\x98\x9e\x6e\x03\ \x81\x2e\xf8\x8d\x10\x51\x21\x4f\x9c\x16\xc8\x34\xb7\x48\x90\xc5\ \xcb\x39\x51\xa2\xe9\x32\x50\x08\xb5\xbe\x1a\x35\xa3\x61\x82\x81\ \xf8\x19\x30\x6b\x97\xf2\xbc\xcc\xf7\xc4\xca\xc5\xda\x02\xfe\xe9\ \x4a\x03\xb0\x00\x19\x70\x00\x07\x30\x25\x21\xd0\x01\x19\x90\xa2\ \x12\xc8\x48\x65\xcc\x48\x64\xec\xc3\x3e\x7c\xc6\x23\x95\x22\xca\ \x7a\xcb\x2e\x5a\xa0\xb4\x19\x03\x27\x45\xc9\xdf\xf9\xb8\x2e\xc9\ \x0f\x55\xe0\x09\xd9\xf0\x2f\xb2\x72\x0a\xe8\xd4\x1e\xde\xca\x1e\ \x15\xe2\x0a\x31\xdd\x93\xec\x34\x37\x4d\x90\xb0\x33\x9d\xb0\xe5\ \x92\x2e\xcd\xb1\x0b\x14\x35\xcf\x09\xbb\x81\xa2\x71\xc3\x5a\x45\ \x48\x20\x79\x35\xd6\x03\x16\x27\x90\x01\x27\x70\x00\x21\x08\xd4\ \x52\x6a\x95\x17\x10\x82\xd6\xac\x3f\xce\xcb\xcf\x8c\x74\x56\x47\ \x7d\x54\x42\x8c\x22\x25\x45\xa0\xce\x00\xbb\x6f\x39\x11\x8b\xbb\ \x81\xb5\x91\x9e\x97\x24\x8a\xab\x82\x93\x6f\x94\x23\xa7\x88\xb4\ \x05\xfb\xa8\xab\xd0\x13\x15\xe2\x40\x0e\xad\x0a\xae\xa0\x40\x2d\ \x10\xd1\xa1\x4c\xb7\x58\xbc\x30\xee\xfc\x2b\xe5\xa2\x55\xe4\xfe\ \xfa\x4e\xe9\xda\x30\x0b\xb3\xd5\xaa\x9c\x15\x13\x0b\xd6\xae\x14\ \x02\x14\xd0\x3c\x5f\x08\x02\x01\xba\x35\x1d\x70\x86\xd6\x94\xa2\ \xfa\xeb\x3c\x1d\x88\x22\xcd\x2a\x52\x62\xe4\xac\x77\x2a\xbd\x7a\ \x70\x25\x30\x72\x82\xea\x6b\xc2\xef\x18\x4e\x42\xfb\x8c\x91\xfb\ \x0f\x34\xe9\xcb\xa0\xd8\x20\x87\x1a\xd5\x39\x00\x0b\xe7\xe4\x90\ \x0d\xf4\x0a\xe4\xf3\x10\x77\xbd\x0a\xa1\x6c\x55\x2b\xab\x94\xef\ \xdb\xd5\x5e\x28\x0f\xa2\xa9\x37\x2d\x43\xc8\x9a\x82\x2e\x55\xbb\ \x30\x9f\x3b\x08\x78\x51\x08\x2a\xd9\xca\xae\x94\x03\x07\x40\x58\ \x5f\x90\x81\x3c\x70\x33\x67\xb5\x00\xa9\x83\x2c\x42\xb4\xd8\x59\ \xa8\x87\x69\x1d\x44\xcf\xaa\x07\x58\x8a\x0f\x22\xe0\x2e\x6c\x44\ \x11\x27\xd4\x15\x4e\xbd\x93\xd1\x8a\x0a\x17\x60\x83\x35\x41\x40\ \xa1\x28\x10\xa7\xe8\xa3\x3e\x32\x1c\xe7\x8c\xce\x54\x15\x07\x0e\ \xec\x8d\x31\x4c\xcc\xc7\xc4\xc7\x16\x19\x8e\x9c\xf3\x3e\x9e\x65\ \x97\xbf\x62\xc3\x0b\xab\x37\xee\x2c\x3f\x81\x20\x3f\xc4\x55\xcf\ \xbd\x8a\x97\x7a\x69\xbd\x91\x40\xaa\x40\x0d\xc4\x12\xb0\x80\xb3\ \xdc\xdc\x3c\x38\x25\x39\x28\x4b\x20\x05\x52\x41\xec\x43\xfe\xce\ \xea\x2c\xf5\xf2\x2c\x3e\x70\x92\x80\x29\x20\xd3\x41\x98\xe4\x18\ \x10\x38\x01\xab\x91\xa9\x2d\xa8\xe8\x80\xd6\xd0\x8d\x65\x88\xd2\ \x65\x58\x81\x6a\x60\xc7\x08\x24\xd5\x0d\x24\xc5\xc6\xac\xbb\x31\ \xc4\x40\xa9\x60\x55\x73\x3b\x07\xae\x78\x86\x9d\x04\x83\x4a\x69\ \xc3\x5a\x4d\xdc\x2d\xf3\xab\x9b\xca\xab\xa1\x43\x8c\xf2\x9b\xcc\ \xef\x64\xae\x00\x34\x12\x01\xfa\x97\x62\x45\x81\x12\x28\x01\x5f\ \x08\xae\x56\x38\x07\x0b\x70\x1d\x21\x5c\x56\x66\x15\xaf\x29\xb2\ \xd8\x41\x94\x5f\xf4\xb2\x1a\x81\x61\x92\xc8\x90\x9a\x13\x21\x09\ \x91\xa0\x95\x34\x68\x87\x31\x60\xa8\xdc\x7b\xa3\xba\x89\x14\x65\ \xe0\x09\xde\xe8\x00\xe2\x49\x50\x7b\x58\x01\x52\x0d\x1c\x15\xc2\ \x8a\x0e\x7c\x86\x0e\xc1\x81\x71\x28\x3e\xf4\x3d\x43\x4d\xc0\xb9\ \xe7\xf5\xc2\xe7\x05\x3f\x9c\x3b\x53\xa5\xd4\x87\x37\x10\x08\xe9\ \xb8\x0e\xbc\x40\x5a\x71\xf2\xa1\xa9\x04\x2c\x9d\x5a\x0f\xff\x11\ \xdf\xcd\x43\xd4\xf3\x6d\x85\x4d\x08\x42\x7d\xea\x43\x4d\x18\xcb\ \xf0\x8a\xb1\x46\x9d\x5f\xcf\x93\xac\x3d\x74\x0f\x8a\xb0\x9d\x3f\ \xbb\x81\x43\x71\x95\x4b\x4d\x03\x68\x73\x89\xd0\xe8\xfe\x0f\x31\ \xe9\x80\xde\xeb\x80\x39\x70\x02\xb0\x69\x34\xb4\xb9\x8d\x2f\xa2\ \x07\x0e\xe0\x62\x07\xde\x13\x50\xbc\x8a\xc5\x6c\xde\x0e\x21\x43\ \x79\xc5\x59\x73\x43\xbc\x9c\x63\x5e\xef\xbb\x8e\x19\xd9\xd9\xcb\ \x09\xb5\x83\xf4\x39\x5a\xac\x9f\x78\x09\x85\x1b\x40\x85\xc7\xcb\ \xab\xc3\xc8\x80\x0c\xb8\x08\x76\x30\x54\x14\xc8\x03\x44\xd5\x81\ \xcd\xb5\x80\x89\xd4\x04\xc9\xb2\xba\x86\x85\x46\xac\x9d\xdf\x66\ \x1c\x2f\xa1\xd2\xcd\x54\x79\x0f\x5a\x81\x08\xd8\x5b\xd0\x18\x20\ \x9e\x2c\xb1\x09\xb6\x15\x93\x2c\x8c\x8a\x0e\x98\x89\x35\x1b\x03\ \x1f\xe8\x02\x71\x38\x65\x7a\xa0\x08\x79\x58\x01\x56\x16\x07\x74\ \x0d\x63\xbe\xc5\x96\xe4\x4d\x29\x4d\x38\x07\xc3\xdd\xe0\xe7\x65\ \x63\x75\xeb\x3e\x81\x04\x85\x37\x40\x05\x15\xf5\x39\xf5\x1c\x8f\ \xc5\x13\xa7\x3c\x0e\xcd\x77\x78\x87\x0c\xe8\x4a\x19\x78\xda\xf1\ \x95\x01\x5f\x28\xe4\x4d\x38\x64\xf4\xd5\x81\x85\x3d\x11\x35\x90\ \x03\x3e\xe0\xdc\xf9\x1b\xc4\x8f\xc4\x5a\x90\x04\x2a\xd5\xa1\x08\ \x29\x59\xe2\x4d\xa6\x89\xfb\x3a\x11\xdc\xe0\x08\x96\x78\x89\x4f\ \x86\xbb\xa9\x40\x83\x2e\x48\x9c\x91\x70\x82\x8a\xfe\x5a\x01\x7a\ \x10\x07\x7b\x10\x02\x19\x58\x01\x1f\xe0\x22\x71\x00\x29\x71\x78\ \xe5\xe1\x5b\x19\x52\xa4\xd9\x0e\x99\x57\x08\xb3\x65\x30\x00\xc8\ \x34\x6e\xcc\x12\xad\xb7\xe6\x85\xde\xeb\xf5\xa6\x15\x9d\xe3\x2c\ \x10\x0f\x24\x1a\x61\xc2\x7a\x08\x76\x70\x02\x66\x7e\xda\x3c\x18\ \x64\x69\x9e\x66\x6a\x3e\x87\x56\x98\x05\x00\x8a\xab\x17\x28\x81\ \x15\xd0\x04\xb4\x1c\xdd\x3f\xe4\xc1\x66\x05\x49\xcd\x7a\x2c\x7f\ \x91\x83\x18\x22\x02\xdc\x29\x82\x13\x81\xb6\x4b\xad\x09\x18\xa8\ \x86\x94\xa8\x06\xd0\x08\x4c\x99\xec\x82\x78\x40\x92\x22\xb0\x07\ \x1f\xf0\x01\x06\x96\x01\x1f\x58\x81\x15\x90\x04\x71\x58\x01\x81\ \xfe\x28\x6c\xa8\xd9\x78\xed\x8d\x0d\x04\xca\x3d\x59\x68\x86\x0e\ \x8e\x37\xd6\xb2\xa0\x39\xbc\xba\x68\x4c\x87\xbe\x32\x51\x63\xae\ \x83\x34\x1a\x39\x2d\x9a\x2e\x1b\x08\x85\x64\x07\x39\x60\x87\x40\ \x75\x80\x41\x8e\x66\x1d\xa0\xe6\x4d\xa0\xe6\x89\x3c\x87\x85\x1d\ \x89\xfc\x13\x82\x4d\x98\x05\x67\xf8\xc3\x20\x08\xc4\x70\xe6\xbc\ \xf4\x0a\x49\x42\xa4\x2c\x7f\x3b\x91\x10\x80\x08\x69\x02\xe0\x26\ \x8d\x87\xd6\x42\xb6\x83\x4a\xea\xac\xe0\x80\xfe\x30\x78\x0c\x05\ \xaa\x83\x0c\xc0\x08\x19\xe0\x03\x81\xfe\xdd\x08\x06\x0e\x75\x2d\ \x80\x84\x56\x57\x97\xa1\xe5\x6b\x52\x4d\x2f\x34\x6b\x38\x56\xca\ \x9b\x8b\x68\x35\xde\x59\xcf\x8c\xd1\x13\xcd\x1c\xc6\x3d\xb5\x9f\ \xb9\x11\x85\x50\x12\xbc\x76\x80\xa9\x2d\x5f\x1d\xf0\x6b\xc0\xb6\ \x00\x94\x9e\x48\x03\x08\x20\x81\x89\xd8\x1d\x26\xb8\x1d\x94\xba\ \xfa\x23\xa5\xb4\x24\xc4\xd5\xd1\xdf\x8b\x08\x81\xef\xe6\x98\xc7\ \x20\x10\x17\x70\x18\xa5\x68\x9b\xdf\xe8\x00\x1f\x90\x92\xf6\x80\ \x61\x7f\x06\xcb\x99\x74\x99\x98\x51\xb9\x30\x2c\xe3\xdf\x98\xed\ \x6b\x22\x51\xc2\x65\x6b\x1a\x69\x97\x50\x33\xda\xb5\xee\x6f\x59\ \xac\x53\xa2\x81\xae\x97\xfa\x4e\xe7\xaa\xa4\x2c\x50\xe6\x22\x60\ \x87\xbb\xd6\x6b\xaa\x45\x54\x6a\x6e\x6e\xc0\x56\xcd\x1a\x96\xac\ \x20\x44\xa5\x5b\xe3\x66\x3e\xa0\xda\x5e\x7b\xec\x8d\xa4\xdf\xce\ \xdb\xc8\x48\xad\xa2\xd8\xa1\x88\x17\x00\x89\x2d\x62\xa0\x2d\xa2\ \x87\xff\x00\x30\x49\xe8\x82\xcf\x56\x6a\x49\x88\x87\x5a\xeb\x1f\ \xca\x32\x80\x59\xe0\x52\xaa\x58\x4c\x9d\x7c\x6d\x0f\xdc\x00\x0c\ \xc4\x40\x0a\xcc\xef\xe1\x3a\x87\x71\xe8\xfe\xed\xc2\x3d\xda\xe8\ \x02\xa2\x5e\xbe\x6d\x75\x33\x9a\xbc\x5a\x53\x62\x7e\x4f\xc6\xe0\ \x88\x7f\x63\x07\x14\xd8\x6b\x92\x2e\x01\x6a\x7e\xee\x4d\x60\x6e\ \xbf\x3e\xdf\x59\xb0\x80\x3c\xa8\x19\xcb\x2d\x01\x33\x17\x02\x7a\ \xc2\xba\xf9\xdd\x6e\x9a\xce\x70\x6f\xd1\x66\x21\xc8\x1a\x90\x78\ \x12\x55\x09\x81\x4b\x90\x04\x34\x90\x04\x57\xda\x1d\x0e\xe8\x02\ \x0e\x90\x04\x52\x95\x84\x15\xf0\x0a\x49\x88\xea\x0c\x08\x5f\x7f\ \x8e\x84\xf8\xfe\x6a\xd8\xc6\x0a\xb0\xb6\xbb\x31\x8c\x04\x4b\xdf\ \x80\x4b\xbf\xd9\x33\x3c\xb7\x6e\xe0\x8b\xed\x83\x5e\x52\x6b\x17\ \xe6\x02\xf5\xb4\x9e\xc5\x0b\x03\x4f\x9f\xcb\x21\xf5\xc3\xca\x25\ \x89\x92\x40\xd5\x51\x03\xf0\x05\x69\x0e\x2e\x31\x67\xee\x59\xa7\ \x61\x95\x56\xf1\x8f\x10\xc2\x20\x28\x64\x3e\x28\x81\x37\xcb\x48\ \x33\xd7\x2c\x21\xd5\x41\xfc\x13\x42\x28\x61\xe9\x91\xd8\x43\x56\ \x21\x02\x27\x90\x84\x4a\xe8\x82\x7a\x78\xa5\x2e\xca\xb3\x51\x05\ \x0b\x30\xa0\x87\x77\xb0\x07\x3d\xe1\x80\x15\x50\x1d\x79\x70\x86\ \x59\x80\x74\x51\xbc\x0a\x75\x24\x72\x27\x33\x5e\x22\x37\xde\x90\ \x3a\xe3\x0c\xb6\x65\x75\x5b\xb7\x5d\xfe\xa6\xc5\xc2\x13\x70\xe8\ \x65\x17\x58\x1c\x9a\x5f\xae\x24\x0d\xbb\x1f\x38\xe8\x17\x39\xe0\ \x72\x5f\x30\x00\x31\xf7\x05\x30\x7f\x6e\x69\xf6\x85\xf2\xbd\x3e\ \xb0\x6c\x05\x07\xd0\x5f\x10\x3f\x4b\x8a\xd5\xee\xb3\x5c\x81\x47\ \xfd\xcf\xa0\x6a\x15\x01\x6a\xb1\x34\x4f\x83\x7f\x0b\x18\xd8\x51\ \x03\x7b\x90\x04\x49\x08\x5b\x2e\xe2\xa2\x42\xef\x62\xc3\x41\xf4\ \x40\xa9\x86\x06\x9e\x8a\x48\x58\x01\x47\x8f\x04\x2f\xde\x13\x0b\ \x9c\x8a\x31\xc4\x81\x9d\x2f\x80\x0d\x10\x87\x21\x27\xf2\xe8\x3c\ \x5e\x79\x0d\xdc\x9d\xc9\x99\x6c\xca\x6d\x37\xee\x6d\xcf\x54\x6b\ \x5d\x26\x5c\xe8\xed\xb9\xc4\x8d\x63\x9a\xf2\xa1\x84\x70\x02\x76\ \x30\x6d\x76\xf0\xf2\x83\xb7\xf5\xeb\xd3\x84\x4d\x98\xf5\xb0\xff\ \xf2\x0b\xd7\x84\x42\xfd\xf0\xfc\xe3\x83\x98\x36\x54\x3e\x90\x81\ \xf4\x42\xcb\xd8\x1c\x4b\xfe\x14\x82\x60\x6f\x15\x21\xfc\x9f\x82\ \xc9\xbf\x7b\x7a\x1d\x39\xb0\x07\x6a\x87\xa5\x78\xda\xe2\x43\x3f\ \xe5\x15\x60\xe0\x9a\xef\x86\x3f\x02\xbe\x48\x90\x84\x9a\xb7\xf9\ \x0e\x41\xd5\x9c\x2f\x87\x77\x28\x07\x78\xc8\x00\x78\x50\x04\x45\ \x80\x07\x78\x30\x03\x33\x10\x07\xfe\x76\x1f\xc3\x23\xe7\xf4\x9c\ \x71\x86\xff\x9e\x77\xa5\x17\xc8\x73\xc1\xf7\xee\xab\x14\xa5\xd4\ \xf7\xa3\x45\x08\xee\x68\xf5\x3e\xe6\x4a\x03\x30\x80\x12\x88\x85\ \x12\x08\x17\xc0\xa6\x66\x4d\x48\xf8\xb0\x5f\x78\xf3\xbd\x70\x79\ \x2d\x81\x8d\x17\x46\x36\xd7\x6e\x03\x68\x54\x63\x2c\xf1\x52\x02\ \xa0\xab\x43\xd6\x28\xa3\xba\x43\x79\x81\xd1\xeb\x1f\xab\xa9\x03\ \xab\xae\x6a\x7a\x68\x65\x47\x3f\xf4\x42\xff\xc4\x69\x99\xce\xe8\ \x0c\x0e\xae\x96\x8a\x07\x98\xfc\xca\xe7\x07\x43\xe0\x07\x45\x58\ \xff\xcb\xc7\x7c\xce\xf7\x83\x72\x48\x4d\x4e\xe7\x99\x78\xd7\x77\ \x37\x36\xf5\x7d\x5c\xca\x5e\x4e\x3c\xf4\x61\x7d\x53\x03\x08\x50\ \x02\x99\xa1\x42\x55\xe4\x9d\x0c\x84\x32\x74\x18\x30\x50\x42\x87\ \x05\x0b\x9b\x2c\x68\xaa\xb8\x49\x47\x09\x5f\x1a\x4b\x94\x10\xe2\ \x4b\x53\x2b\x2d\xad\x66\x05\x79\x11\x44\x47\xab\x91\x3a\xe4\xf9\ \xe2\xc3\xc7\xc2\x0a\x3e\x2b\x7d\xb1\x14\x52\x52\x8d\xc9\x20\x3a\ \x89\xa4\xe9\xd9\x13\xe7\x0b\x35\x3c\xd3\xa8\x91\x53\x47\x9e\x10\ \x39\x4a\x75\x1e\x95\x51\x47\x86\x3d\x19\xf2\xa4\xca\x58\x21\xae\ \x9b\x96\xac\x5a\xb7\x72\xed\xfe\xaa\x05\x84\xb8\x2e\x5b\x41\x28\ \x03\xf1\x15\x4c\xd6\x0d\xef\xe0\x3d\x68\x6b\x46\x91\x99\x0d\x7e\ \xcc\xc0\xe3\xd7\x8f\x14\x3f\x45\xf0\x14\x55\xfc\xe7\xf7\x2f\xe0\ \xc0\x82\x07\x13\xfe\x5b\xb1\x5b\xaf\x5e\x4c\x14\x33\x09\xf4\x0c\ \xcc\xb3\x40\x8d\x25\x83\x62\x96\x85\xc9\x64\x30\x81\x24\xf7\xca\ \x92\x45\x43\x67\x7d\x95\x6f\x54\x86\x03\x67\x8c\x0f\x1f\x2b\x64\ \x18\x30\xa5\xe3\xe2\x2a\x8a\x16\x2b\x4a\xd4\xb8\x31\x8f\xce\x3c\ \x16\x52\xb6\x3a\xd7\x2a\x12\xef\x91\x32\x64\xba\xd4\x21\xb3\x8e\ \x71\x9b\x41\x73\x2a\x1f\xea\x53\x0d\x74\xa1\x3d\x89\x04\x11\x52\ \x47\x8e\xce\x9b\x2f\x84\x24\xe5\x5e\xc7\x41\x9d\xeb\xf2\x56\xac\ \x70\xc6\xc1\x2b\x7a\xae\x20\x66\x60\xd5\xda\x0d\x6d\x56\x6c\xe5\ \xca\xb1\x33\xa4\xe8\x5d\xdb\x07\x1b\x0a\x64\x2d\x40\x17\x9e\x21\ \x86\xe4\x95\x8d\x26\x85\x19\x78\x20\x82\x9a\x44\x02\x5a\x62\x89\ \x35\xf6\x4c\x64\x8d\xf5\x52\xd9\x1b\xa0\x30\x16\xd9\x66\x9c\xf5\ \xa2\x81\x06\x59\x54\xc6\x0c\x88\x70\xdc\x90\x81\x6a\xa6\xc8\xe0\ \x80\x01\x16\xa4\x38\x51\x45\x9a\x6c\x32\xd1\x8b\xbe\x64\xc4\x91\ \x4d\x3a\x95\x60\x81\x6f\xfe\x5b\x05\x67\xc1\x70\x3a\x50\xc5\x12\ \x1f\xbe\x28\xc7\x9c\x4e\xd2\xf9\x44\x14\x74\x44\x0c\x45\x44\x51\ \x49\x15\x09\x5d\x4e\x41\xc8\x81\xc2\x75\x0e\x28\x75\xd4\x0a\xf2\ \x88\x73\x5e\x7a\xe9\x81\x71\x95\x56\x1d\x74\x61\x56\x56\xef\xdc\ \xc0\x8c\x22\xcc\x64\xf0\x40\x39\x7a\xa1\xf3\x40\x01\x71\xfa\xb1\ \xc1\x03\x8a\xd8\x19\x4b\x81\x08\xea\xb9\xa7\x61\x15\xa9\xd2\xcb\ \x02\x0b\x64\xc1\x58\x86\x98\x31\xe1\x61\x65\x0b\x18\x3a\x99\xa1\ \x1a\x30\x01\x5a\x65\x29\xa0\x72\x5a\x6a\x2b\x64\x70\xa2\x01\x32\ \x6c\xe2\xcb\x2a\xaf\x45\x14\xa3\x0e\xb6\xc9\x58\x42\x1e\xa5\x96\ \x5a\xc2\x26\x39\x72\xf5\x9b\x71\x7c\x2c\x24\xcf\x4c\xdc\x95\xa4\ \x93\xac\x41\x18\x39\x5d\x74\xce\xa5\x41\x44\x94\x41\x29\x89\xd3\ \xac\xd9\x29\x25\x87\x03\x54\xad\x10\x49\x97\x5e\x82\x99\xd5\x7b\ \x5b\x61\x93\x01\x7e\x19\x80\xd2\x16\x3f\x01\xc2\x35\x27\x7f\x05\ \x6c\x80\x0e\x3a\x7d\xf1\xf9\xad\x9e\x15\x89\xd3\x59\x83\x8e\x62\ \xb6\x19\x66\x59\x2c\x20\x90\x85\x83\x9e\xbb\x28\x66\xbd\xe8\xc3\ \x4c\x0c\x70\x90\xd8\x8d\x0f\x32\xb0\xe3\x00\x8a\x1c\x65\xe4\xcb\ \x26\x9d\xca\x98\x87\xfe\xbf\x1c\x99\x2a\x44\x47\x41\xa0\x0a\x52\ \x57\xad\xbc\xb4\xc2\x4a\xc3\x09\x39\x24\xad\x35\xde\xba\x6b\x50\ \x42\xe9\xaa\x46\x76\xbe\xfe\xfa\x02\xc8\x3a\x99\x24\x47\x52\x4f\ \xc9\x80\x6c\xb2\xe9\x75\x43\xa6\x16\x5c\x82\x00\x1f\x08\x05\x8c\ \xf3\x8e\x22\x59\xd4\x19\xa0\x80\x66\xf0\xd7\x9f\x1f\x04\x82\xfb\ \x73\x82\x15\x29\xd6\xd9\x67\x8b\x4a\xb6\x98\x40\x81\xaa\xeb\xae\ \xa1\x8c\x3d\xaa\x41\x11\x22\xfa\x60\x4a\xbe\x27\xca\x60\x30\xa9\ \x04\xdb\x66\x6a\xc1\xa5\x2a\x4c\x70\x47\x0f\x6d\xc2\x70\x56\x29\ \x39\xe3\x12\x6b\x42\x38\x80\xb0\xc8\x26\x75\xa4\xdc\xad\xbf\x26\ \x79\x24\xc6\x25\xf9\xba\xeb\xc7\x20\x03\x9b\x14\x78\xc7\xae\x9a\ \xb2\x56\xd8\xb4\xa7\x45\x07\x20\x54\x93\x41\x06\x3b\x6b\x31\x8e\ \x06\x8a\xe4\xa7\x48\x80\xa4\xa0\xb3\x81\x56\x05\x1c\x90\x27\xd0\ \x99\x17\xa6\xc9\x39\x8c\x2b\xbd\xa1\x83\x47\x03\xca\xae\x67\xa0\ \x2c\x30\xb4\x83\x4c\x8c\x33\x8e\x2a\xef\x20\x9e\x9a\xbe\xfc\x12\ \x6c\x2a\xd7\x06\xe3\x06\x76\x09\x0a\x2b\x5c\xf0\xa8\x3a\x80\x94\ \x92\x26\x7c\x34\xc4\x1d\xc2\xb2\xe6\x94\x47\xf1\x37\xe9\xca\x64\ \x92\xba\x12\x65\xfe\x92\xc7\x78\xcb\xcd\xe4\xc8\xc5\xae\xc0\x25\ \xe0\x5d\x75\xd3\xde\x33\xcb\xbc\x13\x43\x4f\xcc\x8c\x53\xc0\x33\ \x38\x98\x3f\x8e\xf9\x0f\x54\x4b\x0a\x29\x8a\xec\x7c\x0e\xe6\x9a\ \xcb\x2f\x58\x45\xa6\x54\x06\x4a\xe9\x83\xa2\xee\x21\x33\x82\x7a\ \xb6\xae\xfe\x3c\xa3\x98\x40\x6c\x2f\x35\xa6\xb8\xd4\x89\x50\x60\ \x2a\x14\x04\x81\x76\x5c\x2b\x95\x02\x49\xb5\x3b\x8e\xc8\x68\x54\ \xbe\xf0\x9d\x26\x0e\x60\x81\x6c\x5c\x4d\x6d\x6a\xcb\x5d\xb0\x88\ \x07\x37\xe7\x4c\xcf\x79\x18\xd3\x5b\xdc\x94\xa4\x42\xe8\x54\xc7\ \x6f\xd9\xf3\x0a\x36\xb4\x92\x81\x18\xb4\xe3\x48\x31\x00\xc5\x38\ \x9e\xd1\x9f\x02\x98\x0f\x1d\x86\x20\x45\x3b\x24\x37\x27\xf8\xcd\ \xaf\x88\x83\xd1\x44\x36\x92\xb6\x2e\x41\x35\x28\x31\x1e\xaa\x90\ \x40\x3c\xa4\x34\x41\x69\x40\x15\x3e\x18\x07\xbe\x56\x90\x2f\x78\ \x24\x50\x81\x79\x40\x01\x03\x15\x08\xc6\x05\x7e\x71\x76\xb5\xf3\ \xd7\x05\x75\x00\x11\x4d\x38\x23\x22\x0b\x31\x80\x10\xe0\x48\x31\ \xad\x09\x01\x37\x77\x9b\x0e\xf3\x94\x44\x37\xbc\xa1\x90\x84\x7a\ \x44\x12\x4e\x64\x70\x80\x90\xbc\x30\x3d\x3e\x30\x61\x1a\xda\x71\ \x83\x71\x54\xfe\x2e\x7d\x90\xb3\x0f\xb7\x88\x68\xc4\x49\x02\xa6\ \x22\x19\xe8\x90\xba\x98\x38\x28\x47\x01\x8a\x19\x6f\xf0\x24\x28\ \xde\x10\x28\x27\xea\xe3\x06\x63\x78\xc7\x3b\x60\x77\x29\x03\x38\ \xe0\x8b\x0a\x0c\x02\x1d\xc2\xa8\x13\x06\xde\xee\x54\xb8\xc9\x0d\ \x1a\x27\xb2\xc1\x88\x98\xc2\x8d\xbe\x70\xc0\x2f\x73\xc7\x9c\xe4\ \x29\xcf\x27\xbf\x52\xe1\x1e\x77\x85\x93\xb9\xd1\x8d\x27\xcc\x73\ \x80\x05\xb0\x57\x48\xed\x85\x20\x99\x3d\x89\xc1\x0d\x70\x90\x15\ \x1c\x8c\xe3\x01\xe6\xc3\xc1\x06\x70\x80\x0e\x9f\x51\xb2\x9c\x7e\ \x11\x17\x68\x96\xe6\x19\xfd\x61\x66\x5d\x6f\x48\xc1\x1b\xe2\x39\ \xca\x2c\xdc\xc0\x34\xf6\x22\x91\xbe\x64\xc0\x1a\x5f\x40\x30\x0f\ \x74\xf8\x27\x2c\xe9\x10\x04\x59\x7a\xf1\x95\x5e\xd4\x9a\x2e\x35\ \xb1\x41\x1d\x98\x62\x13\xac\x8c\x63\x1d\xb3\x43\x30\xb6\x3d\x49\ \x8f\xce\x6c\x5e\x32\xa9\x77\xc7\xe9\xe0\x91\x63\x2b\x20\xa4\x56\ \xce\x71\x80\x41\x66\x0f\x2c\xa1\x28\x82\x35\x8f\x94\x01\xf4\x75\ \xb3\x2d\xe6\xd3\x56\xb7\xe2\x67\x4e\x4a\x56\xc4\x07\xea\x5c\xa7\ \xd3\x3a\x13\x4f\x73\x98\x43\x94\x9f\x01\x05\x1c\x50\x51\x2f\x27\ \xe0\x53\xfe\x9f\x32\x30\x85\x2f\x62\xe1\xca\x80\xc2\x12\x8c\x63\ \x2c\x68\x19\x69\xc7\xa9\x88\x64\x43\x45\x0c\x31\xc0\x03\xb3\xf3\ \xb5\x88\xda\xcd\x48\xcc\x6b\x9e\xf3\xe4\x86\xd1\xe5\x81\x4c\x07\ \x24\x2d\x5b\x2b\xb8\xe8\xc2\x94\x65\xa0\x86\x29\xa5\x9b\x65\x1e\ \xd0\x8b\x07\x68\xa0\x2d\xe3\x30\xc5\x39\x66\xaa\xd7\x73\x6a\xc2\ \x14\x4a\x5b\xda\xe9\x9a\x06\xa8\x77\xc2\x73\x01\xfa\x28\x25\x2a\ \xda\x11\x83\x22\x90\xc8\x14\x5c\x6c\x08\x56\x21\xe8\xd4\x58\x3a\ \x35\xaa\x96\x25\x95\x02\x7d\x91\xa2\x6c\x6c\xc2\x35\xac\x2c\x41\ \x41\x45\xd6\xc0\xe2\xdd\x32\x63\x1a\x63\x5e\xc6\xfe\x78\x24\xd4\ \x62\xd4\x98\xbc\xd2\x0d\x70\x5a\x31\xd2\x48\x38\x83\x5f\xa6\xc8\ \x06\x6f\xba\xe4\x03\xf0\xbd\x75\x8f\x31\x60\xc6\x03\x56\xf7\x80\ \x77\x98\xe1\x72\x7b\xdd\x6b\x45\xb2\xd1\x21\x40\x35\x91\x31\x89\ \x59\x00\x4f\x99\x91\x34\x82\x14\x64\xb1\xaa\xd1\x27\x2d\x8a\x85\ \x55\x31\x72\xb7\x76\x64\x74\x60\x1e\x2e\x98\x0d\x35\xae\xc2\x00\ \xbf\xc4\x0d\x18\x75\x22\xd0\x81\x22\xcf\x6b\x5d\xd5\x23\x94\xf4\ \xa6\x5a\xd7\x42\xe9\xb4\xc6\x54\x43\x1e\xcc\x7a\x0e\x67\x98\x22\ \x53\xfe\x32\x70\x06\xa6\x18\x62\x01\x53\x9c\x95\x2b\xd8\x60\x47\ \x6f\xad\xd9\x0e\xf1\x3d\x03\x1b\x0f\x70\x86\xb7\x8e\xab\xd7\x9a\ \x12\x4d\x5d\xcd\x5d\xcc\x02\xe2\x39\x10\x66\x48\xaa\x5e\x8c\x45\ \xa0\x0c\x68\x21\x83\xf2\x62\xb6\x8c\x5e\xe4\x97\x43\x94\xea\x45\ \xa5\x82\xcd\x00\x57\x85\x6c\xd6\xd0\x6b\xb7\x81\xaa\xcd\x6b\x76\ \xbc\x1b\x6a\x53\x3b\x5f\xe9\x81\x2c\xb5\xb8\x0a\xc2\x2a\x2e\xe7\ \x8c\x6c\x38\x00\x8c\xad\x61\xa5\x03\x4a\xe0\x80\xe5\xa0\xc0\x00\ \xb8\xd5\x8a\x29\x9c\xe0\xd6\x04\xef\xb1\x1d\x86\x18\x07\x18\x22\ \x91\x57\x09\x4b\x58\x5c\x4e\x0c\x14\x98\x9b\x98\x61\x81\xbc\xb3\ \x20\xa8\xb8\x41\x11\x18\x7b\x54\x7d\x1a\xc0\x19\x57\x55\xb1\x18\ \x69\x91\x07\x5a\x94\x40\xce\xe0\x3d\x55\x2c\x18\x72\x9b\xac\x31\ \xd0\x6e\x02\x05\xa3\x10\x50\x10\xe8\x8e\x9d\x56\xa3\x1e\x9b\xaf\ \x33\x7b\xfc\x02\x8b\x72\x2c\x16\x1b\xcc\x54\x6b\x1c\x40\x07\x14\ \x25\x59\xa9\xb1\xa0\x83\x8e\x43\x60\x0a\x67\x64\x00\x91\x54\x3e\ \x92\xbd\x22\xcc\xe5\xe3\x56\x84\x41\x80\x0a\xf3\x73\x33\x9c\x61\ \x0e\xa7\xc0\x94\x70\x88\x41\x08\x32\x60\x0a\x13\x35\xa4\x8d\x2e\ \xfe\x36\x00\x2d\x62\x41\x0b\x14\x64\x97\x16\x0d\xa1\x1d\x8b\x63\ \x11\x8b\x12\x98\x37\xb2\x07\x65\x20\xa6\x43\x36\x50\x7e\xc9\xa1\ \x8c\x22\x6b\x5e\x7c\x75\x8c\x68\x5e\xf5\x58\x28\x38\x89\x65\x43\ \x8a\x4c\x87\xd9\x4d\x56\x81\xc2\x2e\x81\x52\xe9\xe0\xd5\x4f\x53\ \xd9\x00\x32\x1d\x35\x72\x35\xe1\x03\x30\x07\x4a\x94\xa7\x7b\x6e\ \x3c\x53\x00\xa2\x79\x81\x8f\x08\x19\xb0\x8a\x3e\x07\x9c\x8d\x6c\ \x40\x76\xce\xb4\xe8\x75\x2b\x73\x6d\xe7\x3c\x28\x95\xd8\x9a\xe5\ \x73\x7a\x51\x90\xec\x17\x60\x5a\x81\x75\x94\x31\x2c\x41\x26\x56\ \xa0\x44\x47\x63\x74\x03\x8a\xde\x7a\x3c\xc6\x85\xc7\xb2\x95\x01\ \x45\x41\x29\x08\xce\xa9\x55\x38\x34\x08\x3b\x26\x77\x32\xd5\x70\ \x6e\x74\xa7\x3b\x1b\x0d\xca\xb0\x28\xc5\x4c\xd8\x10\x5d\xf3\xde\ \xe2\x98\xb5\x93\x79\xc4\x6f\x5c\xef\x3a\xbb\xfe\x96\x9d\x52\xe5\ \x0c\xee\x86\xc4\xa2\x95\x60\xfc\xe7\x3f\x7b\xbc\xde\x3c\x14\xb9\ \xc8\x7d\x4e\x76\x92\xa2\xb3\x9c\x65\x5a\x9c\xbe\xcb\x01\x19\xd2\ \x31\xad\xc2\x7f\x3e\xc4\x02\x0a\x47\x81\x52\x4b\x21\xec\x58\xa4\ \xea\x1c\x44\xf6\x34\xca\xa7\x33\x36\x96\xb3\xbd\x22\x8b\xe9\xfe\ \x85\x28\x63\x3e\xb4\x05\xa4\x40\xde\xa0\xa8\x27\xac\x49\x24\x0e\ \xda\x3a\x83\xbf\xab\xf0\x6c\xcf\xc1\xb8\xeb\x52\xf5\xba\x54\x45\ \x2f\x36\x9c\x91\x5d\x12\x4c\xff\x19\x05\xfc\x2a\xf2\xa0\xa1\x7e\ \x4c\x8c\xd7\x97\x99\x1d\x05\x4a\xd6\xc5\x3d\x14\x35\xd0\xc1\x17\ \xd9\x38\xc7\x39\x0c\xf0\x4f\x85\x13\x1c\x08\x9c\xf3\xcd\x39\x64\ \xa0\x86\xb4\x5b\x93\x08\xa6\x67\x3b\xec\x39\xb7\x02\x76\xbf\x21\ \x75\xbd\xa8\x3b\x28\x44\x83\xe6\x31\xc8\x1a\x38\x7c\xd7\x37\x64\ \x69\x11\xcb\x52\x38\xde\xf1\x73\x66\xba\x9c\x7d\x6d\x80\xc4\xc7\ \x32\xd9\x00\x05\xe3\xe3\x9d\x8a\x6c\x69\x47\x3b\x63\x87\x5e\x2d\ \xb5\x05\x8a\x69\x3d\xe8\xea\x05\x78\x02\xbd\x26\x62\xc1\xa4\x58\ \x3a\x1a\xf4\xbe\x69\x85\x33\xe8\xc0\x7a\x6b\xd2\x61\xe5\xb0\xe7\ \x72\x45\x4c\x07\xf3\x77\x4f\x08\x15\x20\x02\xc5\x18\xf4\x81\xca\ \xa3\x46\xa2\xff\x7d\xcf\xc6\x6d\xa9\xc8\xbf\xc5\x12\x3b\x08\x5e\ \xf1\xc9\x99\x03\xc4\x82\x43\xb8\x52\xf3\x25\xdd\xe8\x39\x1e\x6b\ \x9c\x88\xd3\xc1\x92\xf2\xa8\x90\xa1\xf5\xd1\xb4\x51\x0f\xe3\x41\ \x87\x31\xbd\x40\x1e\x8c\x0d\xfc\x6c\x02\x1d\x30\x09\x0a\xfe\xac\ \xc2\xe9\xa5\xc4\x39\x98\x02\xf7\xad\xdf\x1e\xa9\x9c\xfb\xbd\x5f\ \x97\x69\x42\x06\x40\x57\x0a\xf4\xd4\x86\x80\x02\x2a\xa4\x00\x1c\ \x30\xc3\x0d\xe8\x03\x89\xc0\x83\x29\xec\x9d\x96\xf5\x9d\xbe\xf5\ \xd7\xbf\x81\x5c\xe0\xf9\x5c\xaf\xe9\xda\xd1\x7d\x9d\x03\x42\x9f\ \xaf\xb1\x46\x76\xa5\x17\xd4\x79\x15\x50\xd8\x4d\xf4\xb4\x20\xe5\ \x59\x61\x1e\xac\x02\x10\x48\xc4\x2a\xa0\x40\x50\x94\x20\x8e\xa0\ \x5e\x36\xa0\x00\xda\xa5\x1d\x11\xbc\x20\x0c\xc2\x1f\x12\xc1\x93\ \x74\x95\x8e\xa4\xd8\x1f\x0f\x22\x0e\xd5\x38\x43\xff\xf5\x1f\x00\ \xf2\xdb\xce\x1d\x21\x0a\xb0\xc3\x11\x16\x9e\x9c\x81\x1c\x65\x8d\ \xde\x03\xa2\x58\x04\xee\xda\x94\x2c\x9c\x74\x5c\xd4\xb5\x49\x9e\ \x6b\x2d\x49\xc5\xad\x9e\x05\xc6\x12\xa7\x04\x4c\x1e\x04\x45\xe7\ \x7d\x1e\xf8\xd1\xc2\xa2\xb1\x60\x32\xe1\x49\x1b\x8e\xe2\x3f\x20\ \x91\x68\x98\x8e\x40\x9c\x09\x33\x98\xc6\x88\xc8\xc0\xd4\x98\x42\ \xff\x89\x94\xad\xdd\xd6\x91\xf1\x5c\xcf\x25\x21\xd8\x75\x9b\xc2\ \x35\x1f\xf4\xa1\x08\x64\x39\x80\xf0\x25\x9d\x8e\x49\x0f\xe6\x61\ \x9a\xc5\x59\x20\x31\xce\x0d\x93\x28\x09\xc3\xc5\x02\xfe\xc9\xad\ \x82\xad\xbc\x40\x93\x59\x40\xa7\x18\xc0\xc5\x80\xa2\x4f\x88\x22\ \x29\x8e\x62\xfd\xb0\x8b\x74\xdd\x40\x41\xc0\xc1\x87\xb9\xe2\xa6\ \xf1\x5d\x36\x38\x83\x93\xed\x5b\x7f\x05\xdf\xbf\x15\x20\xaf\x81\ \x1c\x21\x12\x5f\x29\x64\x1d\xf4\xcd\xd9\x2f\x4a\x9a\x03\xfa\x98\ \x05\x42\x89\xe4\x5d\xd4\x1f\x1d\x13\xa3\x41\x49\x03\x3d\xa3\xf3\ \x35\xdf\x35\x62\xa3\x4f\xb0\xe1\x36\x8e\x5a\xfd\x8c\x01\x75\xc1\ \x81\x62\xb5\xc3\x16\xb0\x03\xe2\xc8\x40\x39\x88\x43\xdf\xf5\xdd\ \x01\x9c\x23\x47\x02\x20\x3b\x0e\x60\x01\xee\x1a\x1d\xcc\xe3\x2e\ \xea\x01\x65\x09\x9e\x2f\xb2\xd2\xd1\x25\x1d\x58\xe1\x4d\xf5\x8d\ \x55\x58\x4d\x9b\x50\x48\x23\xa7\xd8\x4a\x6b\x21\x64\x46\x99\xe0\ \x42\x2e\x64\x45\x94\x42\x0d\xb5\x83\x5b\x6d\x41\x08\x38\x01\x45\ \x1e\xd5\xac\x0d\x59\x06\x8d\xd4\x46\xf2\x21\x6b\x34\xc4\x00\xc6\ \xe3\x2e\xfe\x93\x49\xfe\xd3\xbf\x11\x5e\xb6\xf1\x8b\xc2\xd9\x4d\ \x3f\x80\x55\x8e\x99\x64\xae\xa4\x61\x4a\x31\xa3\xb8\xe1\x0d\x4e\ \xbe\xd5\xeb\xed\x24\x4f\x6a\x82\xfa\x01\xe5\xae\xc4\x00\x51\xe6\ \x13\x10\xde\x96\x33\x28\xa5\x52\x9e\x23\x2d\x1a\xfe\xe1\x00\x66\ \x9e\x49\xea\xc1\x0b\x98\xe4\x3b\xfe\x5b\x4a\x32\x60\x15\x5a\x20\ \xf3\x4c\xe5\x0b\x6c\xe5\x58\xb1\x1e\x58\x96\xe5\x74\x88\x1a\x5a\ \x92\xa2\x42\x85\x80\x62\x09\xa5\x13\x70\x11\x02\x01\x20\x7f\xcd\ \xe5\x48\xb1\xd1\xbe\x39\x59\x43\x98\xc2\xbf\xd1\x82\x3c\x22\x9d\ \x49\xf6\x65\x2c\x25\x5f\x4a\x66\xdb\x17\x21\x1d\x06\x32\x4f\x3f\ \x30\x1c\xc3\x55\x1c\x29\x10\x66\x0b\x92\xd0\x41\x32\xa6\x35\x6d\ \x81\x05\x3c\x26\x6f\x56\x44\x08\xa4\x19\x51\x59\xc5\xac\xcd\x9a\ \x52\x6a\xe4\x48\x71\xe4\x6d\x99\x02\x10\xb0\x23\xf1\x65\xdd\x54\ \xd2\x41\xf2\x29\x1f\x64\x61\x95\x48\x0a\x54\x6c\x42\x07\x29\x48\ \x1d\x6b\xe2\x44\x3f\xac\xd0\x61\x86\xd5\xae\xfc\x04\x0a\x9c\xc8\ \xea\xe1\xe6\x5b\x11\x01\x45\xf0\x66\x6f\x2a\x54\x06\x38\x81\x6a\ \x88\x43\xbe\xa0\xc3\xa6\x1d\x40\x24\x1c\x40\x46\xd2\xe5\xbe\xd9\ \x65\x1f\xe6\xe5\x73\x42\x27\xaf\x35\x44\x79\x25\xe0\xaf\xad\xa4\ \x30\x1e\x26\x74\x6c\xe5\x73\x82\xcc\x56\x4e\x87\x1e\x80\xdd\x08\ \x5a\x93\x1a\xc8\x40\x4a\x98\x42\x35\x99\x67\x4a\xb5\x9f\x7a\x66\ \xa8\x42\xed\xcb\xd4\xe8\xcb\x67\xd2\xa7\x7d\xfe\x9e\xa3\x66\x16\ \x67\x67\x4e\xa7\x68\x8e\xa6\x68\xfe\xdb\x74\x3a\x25\xae\xe1\xda\ \x64\x49\x65\x8f\x6d\x65\x5f\x8a\x21\x1d\xe8\x41\xae\x10\x45\x29\ \x78\x61\x2c\x94\xe7\x7d\xd1\x82\x38\x68\x85\x0c\x2c\x66\x59\xbe\ \x80\x42\x66\x68\x1b\x56\x44\xa6\xf8\xc0\x63\x01\x61\x36\x14\x27\ \x5d\x6e\xe4\x90\x2d\x65\x2d\x86\x26\xf1\xed\x1a\x20\x36\xe5\xce\ \x2d\x1f\xd1\xe5\x9a\xf4\x21\xdd\x6b\xf6\x25\xc3\x31\x5e\xc6\xc8\ \x68\x8e\x6e\x02\x10\xac\x02\x8f\x12\x05\x2d\x44\x02\xcb\x88\x83\ \x85\x9a\x65\x91\x1a\xe9\x91\x12\x08\x68\x02\x62\x6b\x3c\x29\x7e\ \x76\xa4\x72\xae\xa8\xaf\x85\x26\x64\xcd\xda\x2a\x64\xe9\x74\x0a\ \x5b\x1e\x8c\x66\x50\x7c\xa9\x61\x5a\x5b\x83\x0a\x1b\x10\x34\xea\ \x2a\x8c\xa5\x9a\xfe\xe8\x56\x98\x82\x90\x2a\xd8\x94\x25\x98\xb9\ \xc9\xa9\xa6\x56\x04\x10\xb0\x43\xa6\xc0\xc3\x9d\x8e\xa8\x52\xf6\ \xcc\x39\x42\x29\x1f\xae\xa3\x01\xa0\xc3\x91\xf5\x57\x7e\x96\xa8\ \x01\xac\x02\xac\x2e\x5f\x2c\x34\x27\x1d\x6c\xe5\x6b\xf2\x65\x8d\ \xfe\xca\x48\x7a\xa1\xa3\x3e\xaa\xb5\x11\x01\x1d\xa0\x4c\x56\x80\ \x80\x29\x6c\x01\x42\x5e\xea\x5b\xd1\x42\xfe\x9c\x6a\x2a\x37\x22\ \xe9\xbf\x81\xea\x6d\xb5\x6a\x93\x4a\xeb\x71\x02\x20\x10\xf4\x97\ \x72\x66\x2b\x10\xb4\xaa\x93\x6d\x42\x36\x04\x2a\xbf\xad\xc2\xac\ \x12\x62\x8d\xaa\x41\x3f\xc0\x28\x99\xc2\x2a\xac\xc2\x63\x77\x32\ \xc9\x6b\x9a\x02\xcb\x68\x01\x3c\xac\x5f\x3b\xa0\x42\x4f\x20\x2b\ \x5b\x66\xd4\x6e\x32\x2b\xbf\xf6\xa4\x8a\x36\x04\xb5\xaa\x63\x47\ \x72\x6b\x67\x9e\xaa\xb4\x7e\xab\x93\x05\x6a\x79\x09\x5b\x73\xea\ \x01\x5f\xee\xa5\x69\xd2\x81\x33\x32\x6c\xad\xaa\x16\xe7\x39\x80\ \x33\xf0\x47\x24\xa8\x05\x0d\xb1\x9e\x99\x25\x56\xbe\xde\x6b\xc8\ \xfa\x84\x4e\xf2\x6b\xbf\x6a\x02\x10\xa8\xe8\xc1\x56\xab\xb4\xb6\ \x86\xc0\x16\xec\xb6\xe6\xa7\x05\x6c\xab\x01\x6c\xab\x17\xae\x42\ \x29\xe4\xac\x54\xda\xe8\xb9\xd6\x68\x2e\x36\xa7\xb9\x12\x01\x29\ \x70\x14\xb0\x02\xe1\xcd\x65\x40\x11\x6c\x01\xc8\xd2\xab\x99\xa5\ \xc0\xa5\xfe\x64\x22\x91\xec\xb2\x9a\xec\x36\xd2\x46\x43\xc4\x6c\ \xcc\x12\x2c\x1f\x06\xaa\x93\x65\x6d\x36\x78\xed\xbe\x9d\xe9\x72\ \x7a\xa1\xac\xe6\xec\x5e\xf2\x65\x3f\xec\xa5\x54\x0a\x45\x76\x0a\ \xad\xdb\x66\x27\x1d\xc0\x03\x7f\x25\xfe\xed\xd3\x8e\x2c\xb9\x01\ \xa5\x99\x21\x6b\x22\xd5\x50\x08\x4c\x2d\xd5\xa6\xe5\xd7\x1e\x2c\ \xc1\x96\x17\x1f\x5a\x6b\xd8\xb6\xea\x06\xd9\x6c\xae\x8d\xdd\xac\ \xce\xaa\xce\x3a\xac\xc3\xbe\xc0\x6c\x36\xa2\x1a\x70\x9f\x1e\xbd\ \x66\xdc\x9a\xc2\x3b\x14\x01\x6f\xd1\x8d\x99\xb1\x20\xde\x2e\x2d\ \xdd\xb4\xc3\x59\xfe\x2d\xd5\x72\x6a\x7e\x82\x6d\xab\x2e\x27\xd6\ \x0a\x6e\xd8\x3a\x6a\xe3\x8e\x1d\x10\x34\x6e\x29\xe8\x81\xad\x1a\ \x49\x76\x66\xe7\x6b\xf6\x43\x1a\xb0\x0f\x74\xee\x0b\x3b\x18\x6b\ \x4a\xd5\x2b\x36\xd6\x6b\x41\x8c\xac\xb2\x9a\xae\xf2\x96\x62\x72\ \xa9\x2e\xd8\x82\xeb\xe1\x6e\x6b\xa3\x4e\xef\xd7\x4e\x6f\xa3\xc6\ \xc2\xec\xce\xaa\xe5\xae\x16\x29\xf4\x65\xd0\x76\x27\xfb\xe8\x01\ \x10\xb2\x43\xf0\x26\x98\xde\x7a\x6c\xdd\x25\x56\x4f\xa0\x80\xdf\ \x2e\xef\x4e\xb6\x48\xd6\x2e\xe5\xe1\x6e\xd0\xc1\x66\x6d\xa3\x06\ \x2e\xca\x4e\x2f\xce\xe6\xec\x5d\x0c\x6d\x4f\xb0\x0f\x82\xda\x2e\ \x4f\xcc\xe6\xb9\x96\x02\x20\xb2\x43\x08\x10\xc1\xf9\xda\xed\xb1\ \xe6\x60\xfa\xb2\xaf\xfb\x46\x30\xea\x22\x11\x12\x05\xee\xbe\x55\ \x70\x7e\x66\x50\x8b\x44\xaf\xf5\xfe\xc6\x82\xed\x0e\x2d\x08\x87\ \xf0\x07\x63\xe7\x6c\x92\x42\x83\x82\x2a\x3b\x9c\xdc\xe8\x32\xf0\ \xdd\xd6\x6d\x0e\xa2\x42\xe9\x46\xb0\xf2\x26\x57\x72\x1d\xac\xd9\ \x6d\x30\x0d\x23\x91\xf5\xce\xae\xd9\xf6\x43\xff\xde\x45\xff\xf6\ \xee\xae\x80\xb0\xb9\xa6\x2d\x1d\x18\x80\x7d\x56\xe8\x0a\x1f\x09\ \x50\x8e\xec\xf9\xbe\x55\x13\x33\x71\xa6\xca\xb0\x04\x6f\x70\x06\ \x13\x48\x0d\x0b\x6e\x07\x3b\xae\xd8\xe9\x41\xed\xda\xee\x07\xfb\ \x84\x08\x7b\xf1\x54\x1a\x40\x7d\x0a\xaf\xe7\x4a\x0a\x13\x47\x31\ \xe8\xe6\xe0\x94\x6d\x41\xfb\x52\xb1\x7a\x36\xaf\x05\x5f\x70\xfe\ \xde\x2f\x81\x54\xef\xf5\x32\x2c\xc3\x7e\xb0\xd0\xd2\x0d\x29\xf8\ \xb0\x49\xe6\xac\xd9\x96\xc2\xac\xa5\xa9\x4f\x7c\xee\x1a\xb3\xf0\ \xa7\xbd\xf0\x74\xa4\xa7\x1c\x53\x31\xa7\x52\xaf\xd7\x4a\xef\x0e\ \xef\x31\x21\x3b\xec\x5d\x1c\x49\x08\x07\x32\xe4\x3a\xac\xce\xbe\ \x66\x36\x44\x42\x85\xaa\xaf\x4f\xd4\xeb\x94\x35\xb1\x29\xef\xed\ \xf1\xae\xf2\xf0\xba\x15\x24\x47\xb2\x1c\xdf\xb1\xa3\xee\x30\xaf\ \xf2\x30\xe4\xd6\x2e\x10\xb3\x4f\x27\x07\x72\x20\xa7\xad\x0f\x07\ \x33\xe4\xa6\x2d\x1e\xa6\x70\xfe\x22\x11\x44\x2a\xb3\x31\xde\x26\ \x73\xd3\x3a\xed\xa7\x61\xa8\x2c\xcb\xf2\x24\x9f\x29\xe3\xf2\xb1\ \xe3\xda\x2e\x30\xf3\x32\x10\xff\xf0\x07\x03\xb0\x0f\x13\xb0\xb9\ \x9a\xe6\xac\x0d\xc5\x82\x71\x98\x5b\x35\x71\x2a\x83\xac\x13\xbf\ \xf0\x13\x1f\x49\xdf\x46\x33\x3c\x4f\xb3\x1e\xef\xf0\x35\x0f\xf3\ \x2f\x0b\x72\x30\xf3\x72\xef\x02\x30\xfb\x28\xc9\x56\xce\xa6\x49\ \x3a\x87\xfd\x39\xf3\xbd\x46\xad\xc8\xfe\x24\xbe\xb6\x83\xa4\xa0\ \x73\x95\xc1\x71\x1c\xc3\xf3\xa6\x56\xf0\x34\x4f\x2f\x21\x9b\xad\ \xc3\xde\x33\x30\x0b\xf1\xff\xee\x33\x2f\xff\xf1\x50\x00\x62\x3a\ \x13\xf4\x1a\x9f\xb2\xc8\xae\xb1\x3a\x27\x96\xe8\x26\xd2\x14\x43\ \x74\x3c\xd3\xf2\x1e\xf7\xb1\x17\x67\xb2\x26\x7f\x33\x27\x0b\xb1\ \x37\x83\xf0\xff\x3a\x83\x38\x28\x71\xe8\xd6\xad\x82\x45\x6d\xe8\ \xda\xeb\x4f\x2a\x72\x1a\xbc\x33\x4b\xb3\xb4\x45\xd0\x73\xa3\x8a\ \x9d\xd8\xf5\x71\xff\xfa\x2f\x20\x73\xb4\x3e\xfb\x2f\x11\x18\x80\ \x38\xe8\x8a\x42\x2f\xed\x39\xa3\x33\x2a\xa3\x72\x22\xb3\xf3\xbd\ \x3a\xf2\xae\xec\xeb\x51\x1f\x35\x1d\xef\x70\x45\xd3\xf4\x5b\xf1\ \xb2\x36\xe3\x74\x4f\xc0\xfe\x43\x24\x20\x58\x22\xa7\xef\xf1\xaa\ \xf2\xc7\x3a\xf0\x42\x9f\xf2\xc7\xf6\x84\x03\x27\xd6\xda\x95\x75\ \x59\xc3\x2f\x0f\x67\xb2\x3e\x53\x19\x5b\x3f\xb5\xff\x92\x82\x33\ \x68\x01\xa5\xea\xf5\x5d\xdb\x75\x2b\xd7\xa0\x39\x14\x84\x49\xcf\ \x21\x2a\xc4\x9b\x0c\x3c\x34\x60\x9f\x6e\x4f\x62\x33\x62\x8b\xf1\ \x5a\x4b\xf5\x53\xff\x2f\xb2\x88\x43\x42\x17\xc4\x42\x1b\xef\x49\ \xe3\xb5\x1a\xef\xad\x42\x3b\x2d\x6a\xdf\x80\x66\x6f\x36\x67\x03\ \x81\x1e\xb0\xb5\x5b\x1b\x36\x6e\x17\x36\x11\x20\x4b\x24\x74\xee\ \x41\xe7\x2d\x4a\x77\xb5\xf1\xd6\x9d\x39\xa4\xb6\x2a\x37\xb1\x43\ \xd3\x36\x73\x73\xaa\x46\xa7\x1d\x4e\xb3\x0f\x20\x87\x44\x01\x8c\ \x6e\x70\xdf\x75\xde\x86\xee\x71\xcf\xa1\xdd\xc6\x30\x73\x03\x76\ \x45\xc4\x02\x54\x43\xb7\x74\x8f\x77\x1a\xd0\x41\x56\x5c\xf5\x2b\ \xdf\x35\x5d\xd7\x75\xdd\x59\x36\x42\x9f\xf7\x6c\x7f\xf7\x0c\x6b\ \x02\xef\xb2\x5e\x08\xef\x91\x01\xa4\xf7\x48\x9b\xf4\xf1\xbe\x77\ \x0d\x5a\xf6\x7b\x67\x77\x3b\xb0\x83\x63\xd2\xf7\x66\x87\xb7\x79\ \x1b\xf6\x73\xf7\x44\x3f\x1c\x40\x56\x98\x82\x63\xbb\x32\x2b\xd7\ \xeb\x1c\x6e\x37\x6b\xfe\x07\xf8\x1c\x7a\x37\x82\xd3\x36\x6d\x54\ \x6a\x6f\xbd\x00\x21\xcd\x6b\x58\xa7\x6f\xdd\x42\x76\x5f\x6f\xf7\ \x71\xf3\x14\x4f\x65\x76\x87\xbf\x78\x29\x5a\x80\x1e\xe0\x24\x3b\ \x68\x85\x5c\x97\x38\x58\x03\x75\x1a\x08\x77\xd3\xb2\xb8\x8f\xbb\ \x38\x8c\xbf\x78\x45\xac\x02\x36\x12\xc1\x62\x6b\x41\x01\xa4\x69\ \xe8\xd6\x20\x85\xb3\x73\x71\x4b\xb6\x8f\x33\xc3\x81\x07\x79\x73\ \x6b\xc2\x2a\x80\x38\xdd\xd0\xc2\xce\xd0\x42\x95\x3d\xb9\xbd\x9e\ \xb2\x6a\xe3\xb5\x8f\xb3\x78\x36\x50\xb9\x99\xf7\xa4\x1a\xea\x01\ \xca\x90\x78\x97\x3b\x30\x57\xa3\xf2\xc7\x42\xb9\x8a\x83\xc2\x7c\ \x9b\xf9\x2c\xc7\x02\xb9\x01\xab\x29\x64\x45\x24\x78\xda\x39\xd7\ \xf5\x0b\x23\xb7\x42\xc7\xd3\x1b\xb0\xb8\x81\xdb\xb9\x9d\xb7\xc8\ \x7d\x9f\xe7\x0b\xd0\x82\xac\x75\x9a\xf9\xc2\x39\x6a\x63\x38\xc8\ \x4a\x36\xa1\x4f\x39\xa2\xbf\xb8\x05\x94\x42\x6f\xb9\x6d\x4a\x7d\ \xf9\xf0\xa2\xb6\x71\x0b\x78\x0d\xbe\x41\x39\xd4\x79\xa6\x47\x32\ \xa7\x62\x39\x13\x9b\xf2\x13\xab\x32\x80\x8b\x39\x90\xa7\x7a\xa6\ \xa3\x39\xbd\xba\xd5\xf1\x5a\xaa\x6a\x1b\xb7\x39\x48\x39\xaa\xd3\ \xba\x34\x87\xdf\xfe\xb1\xb6\x76\x32\xbd\x79\x0e\x9a\x03\x39\x01\ \x3b\xad\x57\xc4\xa2\xb3\x9e\x42\x1f\x37\xa8\x17\xbb\x2a\x73\xb8\ \xb2\x23\xba\x42\xa9\xdf\xa7\x85\xec\xa0\x97\x99\x75\x07\x37\x1c\ \x57\x3b\xb8\x5b\xc4\x62\x12\x77\x22\x1d\x3b\xb4\xff\x79\x2b\xbf\ \x30\xa6\x83\xbb\xb5\x03\x01\xb6\x43\xb1\x1b\x87\x75\x5f\x3b\x2d\ \xde\x72\x77\x0e\xae\x3b\xbb\x5b\xbb\x95\x27\x98\x9b\x47\xb1\xa8\ \x5b\x76\x5d\x17\xf8\xaf\xe7\x3b\x78\x5f\xb9\x6f\x75\xac\x6a\x13\ \xf7\x6b\xdb\x7b\x13\x2b\xeb\xc0\x13\x7c\x60\x6b\x02\xa7\x7f\x35\ \x28\xd0\xfb\xb6\x53\xb6\xbc\x63\x37\x2a\xe0\x3b\xc4\xa7\x7a\x45\ \x8c\x60\xbd\x0f\x78\x0a\x0c\xcd\x64\x47\x3b\x7b\xa7\x00\x3c\x3c\ \x7c\xc7\x27\xb8\x05\xf0\x83\x03\xfb\xf8\x1b\xc4\x4b\xa1\xd3\xfb\ \x84\xa3\xc2\xa1\xaf\x3c\xce\x23\x29\x94\xcb\x5b\xcc\x65\x18\x8b\ \xab\x33\x3a\x6f\xbc\xca\xe3\x7c\x82\xbf\x21\x4f\xc9\xdb\xfd\x15\ \x3a\x8b\x73\x77\x13\xc7\x40\xb2\x13\x7d\xce\x67\x43\x06\xf4\x3a\ \x87\xc1\xc1\x3b\x2d\x7d\x7b\xd7\xd0\x4a\x43\x3d\xd1\x57\x04\x3c\ \x70\x98\xfd\x11\x96\xc8\x73\x77\xdf\x0e\x3d\xd7\x7f\xf7\x86\x72\ \x18\x86\x6f\x55\x37\x80\x33\x43\x99\x9f\x3d\xdc\x33\x2f\x3b\x00\ \xf8\xa8\xf3\xfa\xd3\xc7\x3d\xd4\x27\xd7\x0b\xbf\x3c\x8b\xa7\x3c\ \xde\xff\xbd\x42\x19\xc2\xa4\xb3\xf8\x1b\x70\xfc\xdf\x43\xbc\xd7\ \xf3\x3a\x4f\xdd\xfd\xe1\xc3\x3d\xca\xee\x94\x39\x98\x82\xd9\x37\ \x3e\x8c\x23\x51\x28\x54\x88\xe1\x53\xfe\xca\x7b\xfd\xe4\x6b\x3e\ \x95\x77\xbe\xe7\x87\x7e\x24\x07\x04\x00\x21\xf9\x04\x09\x00\x00\ \xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x18\ \x82\xa4\xff\xff\xff\x90\x89\x47\xff\xff\xff\xff\xff\xff\xd8\x88\ \x8c\x92\x49\x30\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc9\xf7\ \xff\xff\xff\xff\xff\xff\xde\x93\xb3\x60\x8c\x42\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x5c\x06\x94\xff\xff\xff\x13\x28\xab\x10\x27\x69\xff\xff\xff\xd8\ \xc9\xe5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf5\x95\xb6\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf9\xaf\xba\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\xf2\xfc\xff\xff\xff\xfa\ \xc8\xe5\xd9\xe8\xf8\x4e\x68\xf9\xff\xff\xff\xff\xff\xff\x22\x46\ \xeb\xff\xff\xff\xff\xff\xff\xff\xff\xff\x98\xc8\xfb\xff\xff\xff\ \x7c\x88\xb1\x7d\xa0\x55\x93\x68\xfa\xff\xff\xff\xf7\xb2\xf0\xf9\ \xe8\xef\xff\xff\xff\xb8\xa9\xef\xff\xff\xff\xff\xff\xff\xda\x90\ \xf2\xff\xff\xff\xff\xff\xff\x78\x88\x39\xff\xff\xff\xfb\x8e\x5d\ \xb8\xc8\xf0\x99\x89\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x96\x2e\x8b\x38\x57\xf6\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x11\x38\x65\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x6d\x68\xeb\xff\xff\xff\xf4\x49\x43\x58\xa9\xe6\x5b\xb8\xea\xd6\ \xd8\xeb\x29\x2b\x97\xff\xff\xff\xbb\x88\xf0\xff\xff\xff\x95\xa8\ \xf4\x73\x88\xf8\x39\x64\xf5\xff\xff\xff\xfb\xfd\xfa\x70\x69\x65\ \xff\xff\xff\xfb\xd0\xa6\xff\xff\xff\xdb\xad\xf8\xfa\xd8\xec\xff\ \xff\xff\x04\x0d\xd7\x7e\xf5\xfc\xb6\xb9\xec\xb4\x68\xec\xb8\xd8\ \xfa\xff\xff\xff\xff\xff\xff\xfa\x7a\xcb\x32\x49\xec\xcb\x78\x6c\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x6c\x68\x98\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xc4\xe6\x8c\xff\xff\xff\xff\xff\ \xff\x71\x05\x12\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb5\x69\xa3\xff\xff\xff\xff\xff\xff\x74\ \x22\x3c\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8c\x29\xc2\x7a\xcc\ \xfa\xff\xff\xff\xb9\xf3\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf9\xa6\x87\xff\xff\xff\xff\xff\xff\x79\xb4\xf8\xac\x1e\x6c\x66\ \x58\x16\xfa\xec\xba\x59\x92\xeb\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x34\x4b\x16\xf7\x90\x8d\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x2f\x7c\xcc\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xf5\x78\x5d\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xd4\x38\x2c\xff\xff\xff\xff\xff\xff\xde\x97\x95\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x18\x35\xa2\x11\x77\xa7\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x19\x37\xe0\xff\xff\xff\x58\x76\xfb\x2d\x38\x65\x9a\xd8\xfb\ \x96\x57\x54\x90\x78\xec\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x69\x7a\ \xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\x78\xf6\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x36\x58\x93\xb5\ \x57\xa6\xb3\x79\x9d\x6d\x59\xe9\xff\xff\xff\xff\xff\xff\x70\x38\ \x54\x34\x76\x24\xff\xff\xff\xfc\xb7\x89\xff\xff\xff\x96\x97\x4f\ \x97\x97\xae\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xd9\xfb\xfc\xff\xff\xff\x6f\x78\x29\x94\x99\xf2\xff\xff\ \xff\xba\x98\xef\xff\xff\xff\x99\xb9\xf9\x7e\x97\xfa\x93\x5a\xf8\ \xb4\x57\x32\xff\xff\xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\ \x09\x1c\x48\xb0\xa0\xc1\x83\x08\x13\x2a\x5c\xc8\x70\x20\x2e\x5c\ \x0d\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\x28\x11\xd7\ \x81\x50\x0f\x39\x8a\x1c\x49\xb2\xa4\xc9\x93\x28\x0d\x3e\xa4\xc7\ \x92\x19\x3f\x88\x29\x63\xca\x9c\x49\xb3\x66\x45\x5c\xf4\x92\x24\ \xc9\xb9\x6e\x40\x48\x9b\x40\x83\x0a\x1d\xba\xf1\x63\x4e\x96\x48\ \xe9\xfd\x24\xca\xb4\xa9\xd3\xa1\xb8\x42\x9d\x0b\x85\x94\x2a\x3d\ \xaa\xa1\x5e\xc2\x7c\xca\xb5\xab\xd7\xa2\x57\xcf\xd1\xeb\xb1\x6e\ \x67\x52\x7a\x3e\xbf\xaa\x5d\xcb\x36\x61\x54\xa4\xeb\xd6\xf5\xd0\ \xa9\x13\x69\x92\x75\x2f\xdb\xea\xdd\xcb\x75\xe5\x54\xb2\x84\xca\ \x26\xe9\x41\x96\xde\x03\x9d\xeb\x76\xa5\x5b\xca\xb7\xb1\xe3\x98\ \x6f\xa5\xde\x8d\xab\xb3\x07\x21\x42\xf4\xa6\x0e\xee\x21\x2a\x08\ \x2a\x2f\x8f\x43\x8b\x1e\x19\xe9\x94\x69\xaa\x77\x7b\xe4\xbc\xdc\ \xa6\x47\xa8\x53\x63\xd7\xa9\x99\xed\x19\xf4\xe8\xdb\xb8\x23\xe2\ \x32\xfd\xc1\xf4\x29\xab\x83\xd7\x11\x12\x25\xea\xc1\xa9\x73\x49\ \xe8\x10\x9a\x3d\x1b\xce\x0a\xc6\xb9\xa3\x47\x3f\xe0\xfb\x14\x96\ \xde\xa6\xe9\xc5\x25\x14\x44\x0d\xa1\xdf\x83\x43\xfe\x88\x62\x4e\ \xfb\xb3\xf4\xf3\xb8\x23\xd3\xf3\xdd\x5b\x59\xa8\xed\x9d\x43\x24\ \x91\xfa\x9e\x3c\x79\x38\xe6\xd1\xeb\xe7\xfb\x90\xea\xe1\x9d\xa1\ \x84\xa2\xcc\x07\xef\xf5\x44\xc7\x78\x98\x49\x35\x40\x18\xe3\x91\ \x17\x44\x67\x41\x3c\xb7\xd5\x7e\x14\x76\x85\x93\x5d\x3b\x0d\xb0\ \xde\x6f\x71\x85\x92\x04\x82\x03\x9c\x03\xdb\x3a\x61\xd8\x27\xca\ \x2e\x07\xaa\x51\x5b\x85\x2c\x3e\x75\x80\x59\x99\x25\x31\x40\x87\ \x54\x75\x48\x0f\x77\x61\xac\x73\x55\x8d\xe2\x31\x17\x44\x1b\xe9\ \xc8\xe0\x23\x2a\x13\xb6\x68\x24\x4d\x6f\xed\x24\x62\x8d\x3d\xb1\ \x14\xd7\x55\x49\xa4\x43\x88\x86\xeb\xf1\xd8\xa0\x7d\x0e\x4a\x78\ \xe4\x96\x31\x1d\x02\xdb\x4e\xbe\x79\x58\x96\x93\xbb\xcc\x17\x0a\ \x59\x03\xc8\xc8\x92\x8c\x74\xb4\x71\x25\x96\xb4\xad\xc8\xe5\x9c\ \x23\x81\xf2\x01\x81\x57\xf9\x26\xd6\x98\xda\x05\x06\xa5\x8e\x75\ \xad\x21\x63\x5c\x4c\xb4\x01\x27\x96\x41\x94\x50\x24\x9d\x8c\x4e\ \x84\xcb\x21\xd8\x85\xe9\x24\x80\x3c\xa5\x03\xe3\x69\x39\xf5\x30\ \x40\x9a\x71\x31\x08\x67\x77\xdd\xd1\xa6\x65\xa3\xa4\x36\xb4\x5b\ \xa4\xd8\xa1\x15\xd7\x00\x01\xde\x15\x18\x95\xfe\xbe\xc5\x46\x16\ \x59\x3d\xad\xd3\xe6\x9b\xa1\xda\x17\x84\x2c\xb6\x95\xea\xeb\x41\ \x4f\xb2\x24\x60\x6f\x4c\x8e\xb9\x4e\x3a\xe9\xd0\xd1\x13\xab\xe0\ \xc9\x15\x97\xad\x54\xb2\xd4\xe3\xa1\xe4\xc5\x40\xe4\xaf\xd8\x0a\ \xc4\x0f\x21\xbb\x10\xd2\x46\x1b\xeb\x84\x72\x27\x87\xe9\x94\x35\ \x63\x60\xcf\x3e\x69\x15\x61\xb4\x86\x8b\x56\x28\x03\x84\x60\x28\ \xb5\xb3\x89\x02\x07\x7e\xd0\x65\xcb\x25\x2e\xfc\x08\xe7\xa6\x3c\ \x53\xbe\xf6\xdb\x8c\x3a\x0e\x90\xce\x2e\x71\x21\xcc\x49\x87\xa6\ \xc5\xc5\xae\x8e\x56\xcd\xd8\x6d\xae\x70\x76\x06\x21\xaf\xfa\x32\ \x8a\xcb\xb3\xc3\xa9\x21\x4a\xb9\xa1\x98\x53\x63\x99\xf4\x74\x9b\ \xee\xb1\xeb\x9c\x26\x5c\x4f\x64\xcd\xf7\x1b\x99\x6f\x52\x6b\xaf\ \x1a\x70\x28\x9a\xf1\x96\xb8\x10\xbc\xce\xbc\x1e\x83\x0c\x5b\xb7\ \x03\x30\xb3\x73\xb9\x1c\x83\xac\x1d\x65\xce\x9e\x43\xec\xb3\x6d\ \x3a\x48\xb1\x8a\x07\x83\x6a\x6d\xbe\x37\x9f\x07\x0a\x55\x33\x12\ \x27\x8a\xb7\x84\x84\xc0\xea\x7b\x07\x6b\x27\x0a\xb8\x8a\xed\xbc\ \xb5\x86\xa9\xad\x5c\x96\x69\x9b\x6e\x9a\xd3\x2e\xe4\x75\xe6\x20\ \x1d\xbb\x94\xf8\x63\x08\x70\x60\x5c\xf5\xfe\x7e\x90\x46\xa2\x9d\ \x94\x08\xcb\x2b\xca\x3a\xcc\xc0\xdb\x06\x21\xc8\x8e\x4d\xf4\xe1\ \x21\x4c\xe9\x64\xba\x85\xf1\x54\xd5\x3a\x57\x12\x67\x5f\x1b\xd3\ \xca\xdb\x1d\x1c\xbd\xee\x1d\x1d\x3f\xa7\x8c\x8b\xb5\x93\x87\x5b\ \x0a\x2f\x1c\xc4\x31\x08\x30\xc2\xb5\x52\x86\x56\x70\xec\xee\x44\ \x58\x86\xf0\x86\xe0\xe3\xa7\x41\xe4\x1e\x06\xde\xa2\x52\xed\x79\ \x63\xb8\x94\x1b\x7a\x80\xbf\xc1\x7b\x6c\x08\x1d\x0e\x60\xa8\xe5\ \x1e\xb7\xb1\xe3\xa6\x3d\x01\xf7\xec\x5c\x0f\xcc\x55\x17\xab\x94\ \xd3\xab\x06\xe6\x98\xf3\x3e\x5b\x08\xbb\x18\xd0\xf9\xef\x8e\xc9\ \xe2\x71\xc1\xeb\x7d\xe0\xf7\x8c\xe0\x0e\xb0\x46\xbc\x0d\x36\xd8\ \xc6\x6b\x91\x78\xe8\xb6\x55\x0e\xcb\x45\xd8\x03\xff\x69\x18\xaf\ \x89\x0e\x0a\x01\x3b\xd2\x11\x02\xf1\xe4\x2e\x08\x21\xa0\x03\xde\ \x56\x30\x3e\xf2\xb5\x05\x17\xa0\x1a\xdb\xc7\xc4\xf5\xb2\x75\x20\ \xaf\x6d\x75\x7b\x93\x0c\x06\xe0\x25\xe3\x05\x6b\x4d\x2b\x63\xd7\ \xec\x9a\x34\x00\xb9\x79\x2c\x66\xe9\x60\x07\x1d\x08\x78\x40\x38\ \x80\x4f\x85\xe3\x89\x81\x17\x16\xe5\x40\xaf\x98\x2f\x6e\x98\x29\ \x8d\xc8\x76\x21\x8a\x30\x20\x0c\x45\xfe\xd3\xaa\xd7\x2e\x4e\xa3\ \xb3\x4d\x0d\xca\x59\xb3\xb3\x9e\xeb\x2c\x18\x33\xda\xf8\x90\x1d\ \xec\xc0\x1b\x02\xe1\xb0\xbb\x75\xac\x81\x1d\xa0\xe2\x84\x2c\x6a\ \xc8\x96\xa7\x8d\x6d\x43\x1e\xe2\x8e\x28\xd8\xa1\xaa\xc3\xc1\x81\ \x3c\x81\x79\x4d\x81\x4e\x26\x97\xc1\xe8\xa4\x7a\x3b\x99\xcc\x1a\ \xb4\xf3\x34\xf2\x80\xcf\x82\x0c\x2a\x20\x1c\xe8\x20\x8e\x90\x0d\ \xc1\x47\x0c\xe4\xa2\x57\x96\xc0\x3c\x8f\xa5\x91\x88\xbb\x60\x42\ \x59\x02\xc4\x0e\xd6\x5d\x09\x5c\x6b\x10\xd9\x00\x10\xb6\x42\x5a\ \x21\xa5\x7a\xfb\xcb\x8c\x5c\xd0\xc6\x84\x43\xf5\x50\x80\x6d\x08\ \x43\x1b\x14\x28\xc0\x35\xdc\x29\x14\xb6\xab\xd6\x0c\x05\xd9\x14\ \x5c\x30\xe3\x32\x5a\x7b\xd5\xf0\x02\x64\xbf\x35\xd8\x72\x46\x68\ \x99\x56\xee\xd2\x71\x15\x0b\x22\x2e\x30\xca\x52\x4d\xa6\xe4\xc2\ \x3f\xc3\xb8\x51\x3b\x25\xd2\xd5\xdd\x48\x99\xc0\x5d\xb0\x63\x0d\ \x03\xfa\x80\x32\xd8\x81\x28\x4e\x34\x90\x95\x35\xb9\x9a\xab\x9a\ \x17\xb0\xea\xc0\xab\x91\xcb\x0a\x67\x32\x67\x23\x0f\x3a\xcc\x48\ \x5e\x5d\x83\x1c\x61\xf4\xc7\x3f\x4c\x26\xe1\x01\x6b\x38\x47\x8a\ \x98\x23\x8a\x02\x8a\xb2\x80\xf8\xfe\xa4\xc3\x33\x23\xf1\x01\x73\ \x4c\xb3\x8e\x2a\x0a\x24\x36\x6d\xb2\x1b\xc3\x00\xe6\x32\x74\x50\ \x8d\x1a\xdf\xa3\x2c\x28\x6e\x8a\x1d\x4d\xda\x59\xae\xea\x79\x20\ \x19\x8c\x92\x10\x00\x4a\x4d\x60\xf6\xd7\x4e\x78\x8a\x28\x09\xe3\ \x54\x83\x0f\xf1\x98\x4f\x05\xbe\xe1\x99\x6b\xe0\xc1\x1a\xfe\x40\ \x4d\x6a\xc9\x90\x86\x03\x2d\xc9\x85\x0e\xf3\x17\xe1\x3c\x4c\x27\ \x10\x05\x94\xfb\x36\x75\x4b\x76\x70\x87\x36\xc4\xc9\x5d\x33\x93\ \x60\x9a\xc9\xf4\x20\xa1\xaa\x79\x40\x66\xce\x21\xa2\xe3\xb4\xf4\ \x7b\xeb\x60\x47\x1b\x5c\x08\xbe\x21\xa8\x90\x0e\xf7\x60\x87\x38\ \x86\xa0\x52\x1e\x00\xd4\x47\xd6\x8c\x69\x4c\xe4\x92\x13\x97\x8d\ \xa5\x07\x3e\xa5\x43\x42\x79\xc0\xd3\x50\xa8\x34\x74\x03\xdb\xd4\ \x10\x3a\xc3\xa0\x30\xe4\xae\x9e\x84\x08\x03\x1d\xae\x82\x96\xb9\ \xb0\xcb\x38\x22\x0a\x6c\x76\xe6\x29\x0a\xab\x86\x60\x77\x56\x8d\ \xaa\x38\xa0\xc8\x58\x1e\xfc\xe1\x0f\x21\x3d\x54\x84\x56\x29\x56\ \x92\xec\x61\xa3\xb3\xe3\xdf\x3b\x31\xc9\x8e\x07\xfc\xe1\x01\x3c\ \x48\x02\x0f\xc2\x75\xa7\x0f\xd0\x03\x8a\xeb\x98\xeb\xee\xa4\x2a\ \x03\x51\xb4\xb6\x71\x65\x22\xfe\xde\x69\x0e\x93\x99\xea\x58\x67\ \x5c\x4c\x00\x95\x00\x57\xc0\x84\x21\xec\xc2\xaa\xec\x50\x29\x3b\ \xb2\x0a\xc5\x66\xf0\x80\x0e\x5f\xa5\x8d\x3c\x64\x10\x86\x37\xf8\ \xae\xb2\x14\xc1\x05\xeb\xe8\x32\xab\x1e\x88\x68\x0d\xa6\x51\x06\ \x38\xd6\xe0\x59\x78\x86\xee\x4e\x93\x84\x68\x6e\xd5\x80\x3c\x42\ \x08\x09\xaf\xec\x60\x15\x4b\xe0\x7a\x8a\xc3\xcc\xd1\x34\x58\xf0\ \xcd\x75\x3e\xb0\x0e\x21\xa9\x41\x9f\xec\x88\x41\x02\x87\x40\x07\ \xe0\xb2\x63\x08\x21\x20\x2e\x0f\xa2\xa8\x57\x15\x9a\x81\x1d\x66\ \xa0\x03\x13\xe8\xe0\xd8\x3f\x80\x03\x1c\xca\x88\x04\x28\xa0\xab\ \x11\x2f\x04\x06\x46\x49\x20\x84\xb2\xe8\x71\xa7\xf9\x62\x21\xbe\ \x9f\xfd\xc3\x77\x43\xa1\xc2\x24\xac\x21\x95\x32\x50\xa0\x6b\x35\ \xdc\x2d\x13\xcf\x88\x82\xa7\x88\x67\x3c\xaf\x13\xdf\xa6\x9e\x92\ \x1d\x88\x55\x61\x10\x10\x1b\x82\x1d\xdf\x83\x07\xf5\xe0\xea\x63\ \x21\xac\x8c\x3f\x44\x33\x9a\xd2\x2c\xad\x92\xef\x24\x61\x98\x52\ \x58\x21\xb8\x38\x1c\x4b\x1e\x10\xd8\x01\x10\x42\x07\xdf\x8d\x6f\ \x8c\xb7\x0b\xda\xb7\x92\x38\x04\x4c\xa0\xc7\x15\xe5\xa1\x22\x26\ \x98\x77\x77\x66\xae\x22\xfe\x13\xbc\x66\x95\x78\x0a\x6c\x5c\xc7\ \xc1\xee\x29\x94\x11\xe3\x7c\x28\xd0\xae\x3b\x0e\x01\x73\xe9\xf0\ \x07\x31\x88\x41\x19\x62\x58\xb2\xa0\x07\x3d\xe8\x43\x1c\xc2\xc9\ \x4f\x36\x88\x2c\x2e\x43\x97\x0d\xc9\x93\x0e\xdf\x3d\xae\x1d\x16\ \x9c\x0f\x33\x1c\x98\x07\x98\xb6\x83\x6b\x3b\x1b\x45\x19\xc8\x20\ \x81\x02\x54\x60\x77\xf4\x9a\x57\x42\xb0\xa3\x07\xa1\xe5\xae\x9c\ \xab\xe3\x60\xeb\x68\x77\x08\x61\x90\xc1\x01\x53\xcc\x0e\x23\x13\ \xfa\xd6\xb8\x5e\xb2\xa1\x13\xcd\x10\xe9\x12\xa7\x2c\x73\x09\xdd\ \x8d\x08\x61\x1c\x1c\xd3\x86\xb9\x61\x48\x36\x13\x96\x2d\xa4\x14\ \xf3\x80\xc4\x9e\x66\x02\x14\x8f\xda\x6c\x42\x0c\x81\x3b\x2e\x6c\ \xa8\x68\x4f\xbd\x6a\x70\x3c\x00\x1c\xa7\x00\xb7\x32\x78\x90\xec\ \x30\x2c\x78\x08\x7f\xc8\xb5\xba\xd7\xfd\x81\x43\x80\x02\xd1\x4f\ \xe6\x87\x94\x72\x44\x56\xa7\x2a\xd7\xd3\xe6\xbe\xb4\x82\xf5\xec\ \xe9\x20\xc8\xc3\x0e\xb5\x06\x47\x3e\x4a\x64\x6e\x3b\xc7\xfa\xd3\ \x6b\xb6\x2b\x79\xe9\xd6\x83\xf7\x0d\x80\x1d\x26\x3e\x47\x3c\xb7\ \x4b\x71\x2c\x4c\x53\xda\xb6\x66\xb7\xc6\x73\xcd\x81\x43\xf3\xba\ \x20\x1e\x39\x2a\xb7\xfe\x66\x35\x00\xce\xcc\xc6\xd9\xe2\x3e\xf2\ \xb8\x01\x1c\x6b\x73\xb3\x63\xbb\x38\x0e\x02\xb2\x63\x2d\x73\x26\ \x98\xfb\xb0\xc9\x56\x96\x2d\x43\x71\x45\x28\x26\x61\xbb\xe7\x78\ \x30\xb8\xa5\x09\x0e\x1e\x80\x63\xe3\x48\x57\xf7\xae\x3f\xfe\x0f\ \x5c\x80\xe2\x14\x04\xeb\x9a\xa9\xcd\x2b\xd2\x97\x23\x99\xd0\x7f\ \xa8\x87\xcd\x43\x60\x06\x07\xb3\x63\xeb\xb1\x5e\x76\xd8\x13\x38\ \x60\x38\x20\xf0\x99\xe6\xb0\xe5\x80\xe9\xf0\xf3\x1a\x0b\xbd\xb4\ \x57\x4f\xba\xdc\x07\xcd\x81\x09\xf3\xfa\x51\xe7\x10\x8e\xb2\x7e\ \x79\x58\x48\x6f\x3c\xeb\x21\xb0\x03\x83\xcf\xc0\x8e\x7a\x98\xa1\ \x80\x6a\x65\x82\x0c\x98\x60\x06\x4c\x0f\x61\xd4\xcf\xc4\xb4\xc3\ \x83\x1b\xf4\xa2\x3b\x78\xbe\x73\xcf\x7c\xae\x3d\xfe\xe4\x43\x60\ \x81\x1e\xca\x41\x5e\x0f\x6c\xae\xc8\xef\x6e\x5c\x0c\x3c\xd0\xb3\ \x5e\xf5\xf1\x07\x20\x9b\xa1\xd2\x6a\x0d\xee\x80\x15\x5f\x75\x1e\ \x0c\xe1\xa4\x2b\x45\xb0\xd1\x83\xee\x0a\x70\x60\x5e\xd0\x71\xd7\ \x7c\xd2\x39\xc0\x0c\x0a\xe3\x5d\x38\xa2\x50\x96\xad\x98\x90\x84\ \xe0\x6b\xbc\x19\xb6\x0b\x02\x13\x92\xf1\xe0\x33\xd4\xa3\x1e\x3c\ \xd0\x07\x0f\xac\xfe\xc1\x83\x04\xd3\x61\x77\x4d\x50\x61\x29\x59\ \xda\x78\xdf\x63\xe1\xe8\x4b\x0e\xf4\x9d\x9a\xb1\xbb\x74\x7f\xa0\ \xe8\xa6\x14\xbe\xc6\x8b\xfe\x5c\xf2\x79\x49\x38\x61\x60\xb4\x65\ \x52\x26\x7c\x70\xd0\x41\x45\x66\x20\x0c\xca\x30\x03\x3c\x70\x06\ \x67\x90\x7d\xdc\xd7\x04\x07\x58\x0f\x74\x70\x60\x00\x26\x64\x7f\ \xe0\x0a\x0e\x26\x68\xc2\x70\x06\xfa\x50\x69\xd6\xc0\x05\x76\xf0\ \x3d\x5c\xc0\x05\x04\xc7\x0e\x62\xe0\x7f\x21\x30\x04\xce\x27\x7f\ \xa5\x35\x03\xec\x50\x7f\x55\xb3\x1b\x67\x12\x7a\x8a\xb4\x66\x3c\ \x60\x82\x7f\xb0\x81\x4c\x60\x0d\xe0\x80\x06\xe0\x60\x81\xfa\xd0\ \x78\x67\xd0\x04\x3c\xc0\x05\xdd\x67\x06\x4d\xf0\x7d\xe8\x06\x61\ \xb7\x26\x06\xd6\x60\x06\x25\x22\x03\x66\x30\x5e\x76\xa0\x0f\xe3\ \xa5\x06\x32\x60\x0d\xc8\x35\x1b\xec\x60\x82\xb9\x36\x60\x5b\xc4\ \x45\x2b\x91\x19\xab\xa1\x2c\x0b\xc6\x61\x32\x68\x07\xcc\x65\x06\ \xd6\x80\x06\xc9\x30\x0a\x16\x58\x0f\x3d\x78\x06\x1d\x08\x84\x67\ \xa0\x60\x3c\xa0\x7e\xb9\x26\x0c\xfa\x20\x6b\x93\x26\x03\x82\x67\ \x06\xf6\xa5\x06\x8c\x37\x4e\x31\x88\x85\x4b\x26\x07\x4a\x66\x0d\ \x85\x42\x59\xfe\xbf\x23\x5d\x3d\x60\x1d\xa6\xf1\x30\x4c\x10\x7f\ \x32\x18\x06\xcb\x65\x06\x0f\x96\x0c\xc9\x60\x81\x06\xe8\x86\x0f\ \xc6\x05\x67\x60\x06\xf5\x80\x7e\xeb\x26\x06\xfa\x40\x73\x6a\x60\ \x07\x86\x67\x5f\xd2\xc7\x04\x64\xe6\x87\x25\x28\x88\x1d\xc6\x03\ \x98\x40\x33\x88\x58\x35\x87\x90\x04\x4a\x73\x27\xc8\x41\x18\x38\ \x16\x88\x58\x68\x0d\xb1\x66\x07\x67\x80\x86\xa3\x70\x89\xd6\x90\ \x0c\xc5\x38\x03\x33\xc0\x05\xc4\x08\x8a\xa1\x68\x06\x76\x40\x66\ \x61\x50\x69\xf6\xa5\x87\xcc\x21\x03\xbc\xe8\x8a\x83\x76\x7e\x3c\ \xb0\x81\x6a\xb0\x02\x5b\x78\x33\x8f\xa2\x64\xa7\xb0\x19\x03\x16\ \x06\x57\xe8\x8a\xec\xe7\x87\x9f\x30\x03\x68\x78\x06\xc9\x80\x06\ \x33\x90\x0c\x5c\xc0\x8e\xe0\xc0\x89\x6e\x38\x05\x7a\xf0\x60\x74\ \x38\x68\x72\x50\x81\x4a\x28\x78\x3a\xe0\x69\x8b\xc7\x8d\xf7\x85\ \x8d\xea\x86\x05\x3c\xd0\x87\x9c\x03\x6f\x73\x02\x29\x4a\x76\x5a\ \x0d\x77\x5a\xfa\x24\x2e\xae\x58\x0f\xb2\xa6\x03\x33\x30\x05\x69\ \x68\x89\xc8\xe8\x0a\xf0\x98\x0c\x33\xa0\x83\x67\x60\x0d\xd6\x60\ \x81\xd6\xa0\x07\x1e\x40\x68\x84\x78\x0c\x54\x28\x03\x64\x26\x03\ \xf9\x60\xfe\x7d\xb2\x16\x06\xee\x67\x90\xb7\x76\x7e\x9f\x40\x31\ \x0b\x89\x2d\xa0\xe0\x90\xe3\x52\x3d\xf4\x10\x5f\xec\x90\x0f\xcf\ \x84\x8d\xca\xa0\x78\x61\xa0\x0f\xf1\xe8\x8e\xf1\x88\x06\x4e\xc9\ \x8e\x68\x58\x92\x24\x99\x89\xee\x38\x05\x1e\x40\x88\x84\xe6\x01\ \x33\x30\x70\xb3\xf1\x84\xc9\x40\x07\xc0\x68\x93\xb9\xf6\x61\xdb\ \x88\x25\xde\xe8\x2b\x4e\xb7\x64\xbf\xf1\x00\xd7\xd1\x5e\xa8\x06\ \x45\xad\x28\x77\xe0\x60\x3b\x32\xa0\x0f\xd6\x30\x8c\xc9\xe0\x0a\ \x19\x69\x03\x68\xe0\x0a\xef\xf8\x94\xf1\x88\x8c\x82\x09\x0e\x29\ \x89\x6b\x48\x48\x86\xd2\x67\x69\x66\xa0\x07\x62\x39\x96\xe0\x90\ \x93\x70\xb2\x93\x8c\xe2\x05\x14\x29\x8e\x22\xf2\x01\x58\xc0\x73\ \xe7\xa0\x42\x45\x29\x88\x4d\xd0\x1d\x35\x48\x92\xf0\x38\x05\x36\ \x60\x03\x53\x80\x86\x68\xa0\x07\x53\x30\x05\x82\x09\x98\xa9\x59\ \x98\xb8\x06\x0e\x4a\x28\x90\x66\x10\x97\x8d\xf9\x60\x0f\x40\x90\ \x58\x92\x37\x0c\x89\x1e\x31\x00\x89\xa5\x15\x63\xf0\x15\x67\x6b\ \xd0\x03\x56\x05\x4d\x58\x28\x06\xcd\x66\x86\xd6\xc0\x8e\xa4\x59\ \x9a\x7a\x99\x91\x7a\xa0\x07\x1f\x09\x92\xc8\x88\x06\x5c\x80\x92\ \x72\xfe\x80\x95\x84\x26\x06\x1e\x38\x1b\xf5\xd0\x98\x07\x59\x74\ \xab\xf8\x29\x67\xb9\x25\xb2\x20\x03\xc0\x39\x2e\x22\xf2\x61\xa6\ \xc1\x5d\xe0\x70\x5a\x56\x65\x0e\x58\xc8\x05\xa0\xa9\x94\x4e\x59\ \x9a\xa5\x09\x8f\xd2\x39\x9d\xf0\x58\x8c\xf0\xc8\x9f\x33\xa0\x07\ \xc2\xc0\x9d\x84\x66\x0d\x93\x56\x93\xe2\x19\x9b\xba\x79\x28\x92\ \x59\x21\xb8\xb0\x02\x41\xc0\x0e\x95\x79\x27\x6b\xe0\x0a\x99\xf1\ \x93\x3c\x40\x0f\xe0\x90\x04\x5f\xf7\x4c\xb6\x19\x8a\x9d\xc4\x84\ \xce\x89\x06\xcf\x79\x9a\xab\x39\x9d\xaa\xc9\x91\xfd\xa9\xa2\xc2\ \x70\x95\xb9\x36\x0e\xcc\xb8\xa0\x84\x66\x71\xf9\x90\x5c\xf7\x21\ \x0b\xbd\x19\x1a\x5e\xc0\x1c\xe6\x88\x64\xc5\xc9\x03\xb7\x68\x5a\ \x3c\xd0\x70\xa0\xc5\x04\x76\x20\x78\x2a\x05\x68\x73\x27\x07\xe4\ \xe6\x87\xf5\x00\x92\xa7\x69\xa2\xa6\x89\x8f\x56\x1a\x95\xce\xa9\ \x07\xc7\xf0\xa2\x5b\x2a\x06\xdb\x49\xa3\x73\x27\x06\xc2\x30\x5f\ \x65\xa9\x3d\xa2\xf2\x8d\xe7\x81\x0b\x67\x44\x1e\xe7\x38\x4d\x5f\ \x90\x65\xed\xb5\x06\xdb\xd5\x88\x4c\x40\x57\xf8\xd5\x67\x4c\xba\ \x71\x1e\x50\x0f\xdd\x41\x07\xd6\xb0\x9a\x4e\xf9\x9c\x2a\xca\x9a\ \xfe\x33\x50\x8c\xc9\x80\x8f\x36\x70\x0c\x1e\xb0\xa8\x5b\x0a\xa3\ \x60\x9a\x74\xc2\x40\x87\xb2\x89\xa3\x88\x32\x8b\xb8\xe1\x05\x4f\ \xc3\x04\x02\xf2\x07\xf9\x00\x8a\xe7\x37\x67\xc3\x59\xa6\x52\xe8\ \x72\x3c\xd0\x04\xf7\x30\xa3\x06\x3a\x88\x1f\xc0\x05\x48\xa9\x0f\ \xac\xc9\x9a\xa5\x39\xa8\xac\x49\x92\xcd\x49\x9a\xc7\xa0\xa8\x72\ \xb0\xa8\x30\xaa\xa8\x8f\x2a\x77\xc2\x00\x61\x3c\x90\x0f\x66\x8a\ \x25\x31\xa0\xa3\xd1\xf1\x06\x64\xd8\x87\x89\xc9\x04\x9d\x4a\x68\ \x8c\xd8\x03\xba\xb9\x5c\xe8\x16\x45\x43\x30\x0e\x7e\xa6\x07\x32\ \xaa\x07\x62\x00\xa3\x84\xd8\xad\x7a\xc0\x05\x66\xd0\xa7\x52\x3a\ \x9d\xc7\xa0\x9a\xab\x29\x98\x96\x98\x9a\xb7\xaa\xab\xba\x9a\xab\ \xc2\xc0\x98\xbd\x8a\x74\x21\xa8\x0c\xc2\x30\x83\xc3\x6a\x96\x68\ \x1a\x1a\x7b\x80\xa4\x49\x5a\x9e\xd5\xc8\x60\x33\x3a\x2e\x45\xa7\ \x03\xb1\x26\x0f\xa1\x62\x6e\x8a\x97\x62\x4d\x60\x0d\xcd\x60\x7d\ \x41\xa6\x0f\xf3\x38\x05\x32\xca\x05\x4d\x50\x0f\x24\xd9\x49\x61\ \x70\x86\x03\x5a\xae\xd8\x4a\xa8\xd6\xa9\xae\xb7\xaa\xa8\x57\xc9\ \xae\xef\xba\x8f\xf1\x8a\x6b\x58\x29\xa6\xda\x95\x90\xf7\x5a\xfe\ \xa9\x3b\xda\x17\x0e\x90\xa4\xc9\xea\xaf\x0e\x42\x89\x82\x86\x05\ \x0f\xd0\x84\x64\xe8\x20\x3e\xda\x80\xf5\xa0\x0f\x4d\xa0\x0f\x86\ \x37\x92\x25\x39\x04\xcb\x56\x0f\xc7\x20\x8a\xfe\x56\x0f\x29\x3a\ \x9d\xe7\x5a\xa8\xcd\xb9\x97\x8a\x2a\xb2\xec\xaa\xab\xc2\x60\x03\ \x2f\x7a\xb2\xec\x76\x7e\xbe\xa7\x0c\xe1\xda\xb2\xc4\xfa\xb2\x4e\ \xe1\x05\x76\xb0\x0c\x3a\x60\x07\x67\x4b\x86\x34\xfb\xaf\xd7\x88\ \x90\x49\x4a\x8a\x58\x62\x07\x43\x70\x7d\xd7\x27\xb4\x76\x89\x8c\ \x5c\xc0\x86\x27\xb9\x9d\xe3\x20\x24\x74\xc0\x05\x12\xab\x9a\xc8\ \x48\xa8\x82\x69\xab\x57\x89\xab\xec\xba\xa5\xc7\x00\x0e\x53\x40\ \x98\x5a\x8b\x74\xe0\xd0\x87\x60\xcb\x1c\xd6\x02\x3c\xfc\x6a\xb6\ \x96\xa0\x03\x3a\xb0\x0c\x76\x80\x09\x6b\x4b\x1b\x4c\x70\x74\xe3\ \xb6\x81\xcb\xf5\x8b\x61\x90\xa4\x42\x22\x0f\x61\x60\x06\x42\x9b\ \x60\x0b\x66\x06\x67\x30\x03\xe5\x8a\xab\xdb\xd9\x8f\xff\x17\x06\ \xb1\x2b\x98\xe3\x90\x8c\x50\x99\xa2\xb7\x2a\x07\x21\x3b\xb5\x53\ \x7b\xb5\xf9\x48\xa0\xa9\xaa\xb5\x58\x79\xbc\xd2\x64\x06\x93\xfb\ \x29\x7a\xc3\x16\x64\x5b\xb6\x65\xbb\xb9\x9b\x2b\xb3\x2e\xfe\x79\ \x28\xe6\xe8\x8c\x6a\xa0\xba\xfc\xda\x80\x3b\x38\x5e\x29\x66\x97\ \xd6\x60\x78\x9e\x38\xa0\x1e\x40\xbb\xb5\xeb\x01\x77\x18\x04\xf9\ \x90\x91\x19\xf9\x91\x59\x6a\x03\x5a\xba\xae\xc1\x3b\xb5\xe7\x0b\ \x0e\xe5\x0a\x0e\xc2\xf0\xb8\x83\xb6\xbf\x84\xb6\x06\x9f\xdb\xbc\ \xbb\x22\xb6\x36\x31\x04\x9c\xbb\x0c\x98\x50\xb6\xcb\xc0\xb9\x09\ \xcc\xb9\x9d\x2b\xb9\x0e\x62\xb0\x4c\xf0\xbd\x7b\x28\xb4\x74\x60\ \x5f\x4c\xc0\x05\x89\xba\xbb\xcd\x39\xbf\x5a\x5a\xbb\xdb\xe9\x01\ \x53\x50\x22\xd3\x47\xb8\xce\x89\xa8\xfa\x79\xab\xfa\x99\xa8\xeb\ \x2a\x0c\x5b\x8a\xb5\xd3\xe9\xa5\xfc\xab\x64\x7f\xd6\x61\x82\xd6\ \x49\xcd\x7b\x28\x95\xfb\x15\xfb\x9a\xa4\x09\xfc\x02\x0b\x8c\xc0\ \x98\xd0\xc0\x67\x2b\x03\x9e\x4b\x2d\x76\xc0\xba\xf9\x40\x69\x95\ \x96\x60\x93\xb6\x98\xb7\x2a\xb8\x03\xaa\x9a\xd3\x09\xc2\x87\x1b\ \xae\x32\x50\x0f\x50\xbb\x97\xd3\x59\xa5\xab\xd9\xb4\x5d\x7c\xab\ \x5c\x2a\x0c\xef\x0a\x0e\x31\xac\xbc\x27\xfb\xab\x42\x77\x75\x4f\ \x9a\xc3\xd4\x62\xac\x4f\x81\x0b\x0e\x70\xb6\x43\xdc\xc0\x0b\x3c\ \xc4\x9d\x3b\x69\x0e\xac\x87\x06\x8b\x28\x29\x46\x07\xfe\x4d\xac\ \x98\x3f\xab\x0f\x67\x30\xbf\x1c\x2c\x8f\x33\xb0\xbb\x5a\xda\xae\ \x8b\x6a\x0d\x42\xe2\x95\x87\xca\xc2\xa6\xc9\x9f\x5f\xfc\xc5\x7a\ \x50\x9a\x22\xeb\xc2\xf2\x8b\xad\x33\xe0\x67\x33\xac\x64\xda\x35\ \x64\x4b\xc6\xb2\x6e\x2c\x59\x70\xcc\x14\xb8\xa0\xc0\x3e\x3c\xc4\ \x77\x9c\xc7\xd2\x2b\xb3\xa8\xeb\x69\x58\xa2\x87\xcc\x2a\xc8\xe2\ \xab\xc5\xd3\x59\xa8\x06\x68\x8c\x1d\xfc\xbb\xbf\x2b\x07\x68\xb0\ \x81\x41\xa0\x0f\x4e\x39\xbf\xc7\x60\x9a\xf1\x68\x9d\x19\x89\x8f\ \x97\x5c\xbf\x64\x6c\xc6\x66\xac\xad\x68\xdc\xab\x21\xf8\x60\x0e\ \x16\x77\xff\x57\xca\x2e\x85\x0a\xa8\xcc\x04\x98\x70\xc0\x0c\xdc\ \xb9\xac\x1c\xc4\xd3\x9b\xb6\xb0\x0c\xc1\x27\xb7\x78\x3e\x6b\x97\ \x71\xc8\xb4\x7a\x70\x89\xac\xab\x0f\x3b\xd8\xc1\xe4\x0a\xbc\xe5\ \x3a\x04\x64\x66\x06\x98\x7c\x0c\x72\xa0\x9f\xbc\xfc\x8e\x4d\xcb\ \xc2\xf4\xdb\xc5\x2a\xea\x67\x26\xfb\xb8\xca\xa0\x5d\xe0\xf0\x07\ \x68\xf0\x7b\xe6\x80\xce\xda\x6c\x1f\xcf\x4b\x50\x42\x8c\xc7\x40\ \x5c\xc7\x98\x00\xc4\x41\xcc\x04\x3a\xc0\xd1\xfc\x7a\xce\x6b\xab\ \x87\x80\xcc\x86\xfa\xa0\x03\x7e\x1a\x92\xaf\xf7\xfe\x7a\xf9\x10\ \x93\x89\x8c\x8f\x21\x3b\x9d\x67\x20\x89\xf9\x60\xcc\x2a\x2c\x8c\ \xd6\x69\xc9\xf5\xab\xb8\x2a\xaa\xad\x12\x2b\xc3\x9f\x4c\x74\x0b\ \xfd\x07\xfe\x5b\x5a\x7f\x14\xd1\xf4\xf2\xa0\x33\x81\x0b\xe2\x70\ \xb6\x2f\x20\xce\x0d\x5c\xc7\x07\x5c\xb6\x44\xac\xb9\x1d\x0d\xcb\ \x05\xbb\xbd\xdb\xbb\x5c\x8b\xc7\x86\x67\x90\x0f\x49\x3c\x03\x17\ \x38\x69\x48\x3a\xc1\x4c\xe9\xc1\x2a\x6a\x91\x74\x20\xbb\xc7\x7c\ \xab\xa7\x69\xa8\x37\x1d\xc6\xc3\x1b\xc5\x3b\x8d\xad\x43\xfd\xd3\ \x0a\x3d\x03\x71\xb7\x06\x94\x1a\xd1\xbb\x40\xc0\x19\xe1\x05\x41\ \x7c\xc7\x18\x8d\xc0\x4e\x8d\xc7\x78\x9c\xa4\x66\xab\xb9\x1c\x1d\ \xcb\x5a\x2d\x90\x4c\xf0\x09\xf2\x9c\x0f\xff\x16\xd6\x46\xec\x92\ \x76\x50\x69\xfa\x00\x92\xe3\xc0\x9a\x7a\xb0\x9d\xc9\xa0\x78\xed\ \x4b\x9d\xa4\xf9\x94\x96\xf8\xd6\xcd\x2c\xb2\x62\x4c\xc5\xf9\x88\ \x8f\x5e\x3a\xcd\xf1\xfa\x67\x10\xf6\x7b\x87\x50\xd4\x46\x0d\x27\ \x31\xe0\xd7\x18\x81\x0b\xf7\x60\xb6\x07\x8c\xd1\x09\xec\xdb\x75\ \x2c\x0f\x9e\x7b\xd8\x54\xad\xd8\x9c\x6b\xc4\xa8\x7b\xd9\x8a\xa9\ \x03\x32\x97\x0f\x3a\x40\x66\xab\x48\xcb\x84\xfe\x5c\x92\x03\x5a\ \xbb\x53\x70\xc1\xb8\xdb\x94\xa5\x39\xa5\x81\x19\xbf\x89\x7a\xbe\ \x72\x5d\xc9\xda\xea\x01\x59\xfb\xd3\xd2\xf4\x61\x09\x9d\xd0\xa5\ \xa5\xd7\xb5\x0d\x27\xa7\x9c\xd4\xce\x5d\xd1\x85\xed\xdb\xf2\x50\ \xdf\xf6\xed\xb9\xc8\x3d\xbd\x2b\xed\xdc\x55\xad\x87\x97\xbd\xdf\ \x48\x0a\x8d\x0d\xba\x5c\xff\x0d\xbb\x53\x00\xc2\x7a\x80\xc5\xed\ \x8b\x8c\xfa\x79\x9a\xdd\x6d\xa2\x54\xfc\xdd\x1c\xab\xda\xf8\xe8\ \xc2\xdb\xea\xda\xf1\x2a\x80\x47\x76\x27\xe6\x10\x59\xed\xad\x06\ \xb8\x8d\x11\x9f\x30\xe2\x2b\xcd\xc0\x9c\xdb\xd4\x43\x6c\xc4\x43\ \x6c\xdf\xf7\x5d\xc7\x32\xab\xb9\x2b\xad\x0f\x9f\xb0\xc4\x9e\x56\ \x69\x5e\x5d\xdf\xcc\xf1\xb9\x5a\x6d\x06\x6a\x0d\xbc\xf2\x7b\x06\ \x12\xbc\xcc\x97\xbc\x9f\xa5\x7d\xc2\x43\x1e\xbc\x7a\x30\xb8\xd3\ \xf9\xae\x4c\xee\xd3\xe6\x9d\xde\x09\xcd\x4f\x1f\x00\x37\x1f\xce\ \x1c\xd7\x94\x12\x5e\x30\xe2\x9f\xf0\x05\x23\x4e\xd5\x51\xbd\xe2\ \xc3\xcd\xe2\xc3\xed\x92\x98\x80\xdc\x67\xab\x03\xf9\xb0\x83\x66\ \xd0\xd1\x8b\x0d\xd1\x87\x02\x8c\x82\xaa\xa2\xac\x2a\x0f\x25\x8c\ \xa8\xd4\x19\x8f\xc7\x68\xa2\xab\x99\xa8\xfe\x89\x6a\xae\x78\xdb\ \xc5\xef\x3a\x9d\xe0\xe0\xe4\x3f\xfd\x67\xe9\x7d\x27\xe2\x50\xe5\ \xcd\x11\xe2\x16\xa1\xd4\x68\x8e\xe6\x5a\x3e\xe3\x9b\xcb\xdb\x4e\ \xcd\xe2\xf5\x3d\xe6\x98\x8e\xd8\x31\x1e\xd9\xcf\xd8\xb2\x4c\x38\ \x0a\x24\x29\x9d\x51\x5c\x0f\xa7\xeb\xaa\xaf\xfa\x91\x78\xf9\x97\ \xb6\xea\xb4\x52\x0c\x92\x10\x3e\xd7\xb0\x69\xde\xa0\x0c\x29\xec\ \x5d\xe5\x7d\x6d\x13\x5e\xc0\xdf\x1d\x0d\xe3\x5d\x5e\xdc\xd4\xcb\ \xc0\x61\x6e\xe9\xc2\x5d\xe6\xc2\x2d\xb3\x69\xae\x86\xf9\xe0\xe6\ \x58\xa2\xba\x49\x4a\x07\x76\x49\xd3\x86\xc8\x84\x7f\x0a\x95\x78\ \x8e\x97\xcb\x4c\x9a\xe6\x7a\xae\x2c\x9a\x91\xe3\x10\xc3\x8e\x6a\ \x82\x07\x9d\x79\xd1\xf4\xd0\x55\x7e\xdb\x04\xd5\x04\xf9\x20\xe9\ \xbb\xae\x03\x91\xae\xb9\x96\xb0\xd2\x9f\xa0\x03\x99\x5b\xd1\x2a\ \x2e\xdc\x9e\x86\xe9\xfe\x5d\xcb\x37\x7e\xaf\x2f\xa9\x03\x4a\xe9\ \xd2\xb7\x3a\xe7\xb8\xfb\xb4\x85\x0a\xea\xdb\x3e\xe4\x5e\x2c\x98\ \x83\xbb\xd9\xcc\x7c\xe1\x18\xbe\x6e\x1e\x60\x84\x58\x38\x20\xa7\ \xb0\xd7\x60\xfb\xde\x32\x81\x0b\xf9\xf0\xee\x5a\x8e\xe6\xe9\x4e\ \xe2\x54\x6d\x09\x91\xae\xeb\xaf\x0c\xfe\xcb\x26\xef\xdf\x79\x78\ \xbd\x60\x2b\x03\x3a\x00\xbb\x2d\x3a\x05\xe1\x5a\x4e\xe8\x6a\x8c\ \x67\x60\xed\x7f\xd9\xe0\x0a\x0f\xa8\xe7\x1a\xb1\xe6\xfb\xed\x99\ \x17\x82\xe1\x9e\x79\x6b\xb0\xa6\xb5\x1d\x04\x8c\x6e\x11\x32\xae\ \xe5\x1f\x9f\xf4\x66\x30\xe2\x99\xcb\xeb\x1f\x4f\xe2\xf1\xee\xeb\ \x8f\xbe\xd2\x55\xbf\xd2\x0d\xda\xb2\xff\x96\x0f\x16\xdb\xed\xd8\ \xca\x87\x22\xa5\x94\x86\x8a\x89\xcd\x89\x86\xec\x38\xe4\xab\x19\ \xb5\x5f\xac\xf0\xc5\x38\x8f\x64\x5c\xde\x99\x17\xf1\x41\x3f\x77\ \x47\xf9\xe1\x57\x8e\x12\xfc\xf0\xf1\x51\xff\x05\x5c\x1e\xe9\x53\ \x4f\xd5\x52\x9f\xee\x82\xbf\xdf\xfb\x6d\x69\x32\x2e\xcf\x99\xf8\ \x09\xb4\x27\xc0\x2c\x6f\xb1\x20\x99\x0c\xa3\x38\x1b\x35\x78\x89\ \x06\xc8\xba\xc3\x88\x86\x00\x3d\xc9\x45\x4e\xb8\x9b\x8d\x8c\x51\ \x9b\xcb\xf0\xaa\x79\x2a\xeb\x8a\x89\x5e\xdb\x70\x70\xf4\xd1\x25\ \x0e\x51\x3f\xe2\xa3\x00\xd9\x92\xae\xf7\x9a\x9b\xd8\xbe\x3e\xf8\ \xfb\xbd\xee\x81\x0c\xd9\xaf\xd7\xe9\x39\xbc\xf5\x99\xed\xf9\xd9\ \xec\x95\x25\x69\x81\xb0\xfb\xf8\x52\xca\x97\x78\xae\xea\x28\x4a\ \xf0\x20\x79\xc6\xf2\xf7\xab\x73\xfe\x9f\x74\x4f\xc5\xd7\xa8\xef\ \x28\x9f\xf0\xee\xf2\xee\xf7\xf1\xbe\xc0\x1c\x3d\xef\xbf\x1e\xd5\ \xb2\x5f\xbd\x6a\x7b\xef\x64\x98\xa4\x48\x2a\xcb\x39\xac\x87\x2e\ \x7f\xae\x67\xb0\x81\x59\x8c\x8c\x06\x28\xcf\x84\x8c\x8c\x52\xca\ \x9a\x1b\x89\xfc\xf2\xbb\x9a\xbb\x3b\x8f\x80\x4b\xc6\x0f\x9f\x6b\ \x1e\x50\x64\x00\x31\x4e\xd9\x07\x82\x05\x0d\x1e\x44\x68\x50\x19\ \x3b\x19\x6a\x1c\x3e\x84\x18\x51\xe2\x43\x38\xb8\xfe\x5d\xc4\x98\ \x51\xe3\x46\x8e\x1d\x31\xe2\x22\xf3\x49\xa4\x0e\x1d\xcb\xec\xd8\ \x59\x66\xd2\x24\x26\x4c\x76\x48\xa6\x5c\x89\x49\x9e\x3c\x99\x2d\ \x4f\xde\xc4\x24\xe3\x26\x13\x1d\x66\xf4\x9d\xd1\x97\x4f\x87\xbc\ \x89\x45\xe5\xc9\xd0\x69\x87\xce\xcf\x19\x7a\x9c\xce\xa0\xe3\x30\ \xdf\x8c\x29\xc9\xce\x00\x3d\x63\x2d\x19\x9a\x19\x68\xa6\x4c\x99\ \x91\x4c\x6c\x57\xaf\x53\x6c\xd8\x00\x9b\xac\x6b\x32\x6b\x54\xc5\ \x78\x90\x93\x50\xae\x5c\x31\xe0\xc0\x99\x9b\x9b\x37\xa1\xb2\x10\ \x45\xfd\x4e\xf4\x62\xd1\xe3\x60\xc2\x1d\x71\xe9\x10\x39\x72\x19\ \x4b\x96\x76\x58\x1e\x65\x49\x52\x87\x63\xc6\x33\x6d\xa2\xd4\x91\ \x4f\xf3\x66\x9f\x59\xc3\x9e\xfe\xc9\xd7\xf0\x2f\x44\x9d\x99\xf3\ \x31\xc9\xa7\xcf\xda\x14\x3d\xc7\x8e\xe9\xb1\xd6\x90\x49\x32\x3d\ \x33\xac\xfd\x3c\x33\xf6\xeb\xd7\xb0\x6a\xd1\xfc\x06\xfe\x15\x8d\ \xda\x19\xb6\x9b\xbe\xfd\x10\x57\xef\xdc\xb8\x62\x9c\x2f\x87\xfe\ \x81\xef\x68\xea\x41\x04\x17\xc6\x8e\x9d\xa4\xa5\xc4\x96\x74\xd4\ \x6c\x99\xd3\x32\xe6\x92\x26\x5f\x32\x21\x9f\xef\x93\x3e\xf6\xed\ \xaf\xbe\x3f\x63\x46\x87\x68\xea\x6a\x30\xa1\xae\xa7\xcf\xcc\xfe\ \xd5\xc7\xe4\xc8\x39\x66\x8a\xd0\xc2\x38\x23\x40\x6b\xea\xc9\xaa\ \xad\xaf\x9c\x02\xab\xb8\xae\x84\x2b\x0e\x38\x07\x8b\x9b\x42\x18\ \xb8\x92\x8b\x2e\x2f\x31\x32\x5c\x6e\xba\xfa\xfc\x0a\x2c\x3b\x11\ \x07\x0b\x47\xb3\x4f\xbe\x18\xa9\xa4\xcb\x28\xa3\x09\x25\xf5\x3e\ \x21\x49\xa4\x7c\x2c\x11\xca\x44\x7d\x3e\x19\xe5\xa7\xf6\xea\xc9\ \x2f\x3f\x33\xf2\xb1\x83\xa8\xd1\x64\x38\x0a\x35\x9f\xdc\x63\xcd\ \x3f\x00\xcf\x08\x43\x86\x7a\x9c\x3a\x50\x35\xb5\xc6\xb1\x81\x41\ \x2e\x88\xa3\x4a\x8f\x29\xb8\xea\x6a\xc2\x05\xf5\x78\xcb\x03\x0e\ \x35\x1c\x33\x2f\x76\xc2\xf8\x70\xa2\x30\xae\x1b\xb1\xcd\x8f\xc4\ \x49\x6c\x94\xc4\x14\x83\xfe\x89\x32\x19\x5a\x42\x6c\xbd\x39\x4d\ \xf4\xe9\x93\xfd\xf6\xfb\xa4\x1e\x33\x78\xe4\x71\x50\x3f\xed\xa8\ \xcf\x0e\xf4\x32\xeb\x2c\xc1\xa6\xfe\x03\x50\x0f\x33\x64\xc8\xc7\ \x1a\x3d\xb8\xb8\xaa\xad\x2c\x5f\x9b\xe2\xca\x64\xc0\xda\x4d\xcb\ \x2d\xb7\xa4\x8a\x35\xd6\xc0\xf4\xe0\xc2\x32\x0f\xda\x70\xd5\xbd\ \x78\x18\x82\x8e\x30\x82\x78\x28\x08\xa4\xc2\x68\x32\x08\x26\xe8\ \xa0\x83\x1d\x1e\x78\xf8\x83\x1f\x36\xdd\x6c\xd3\x0b\x4b\xb8\x3b\ \x51\xce\x39\x11\x13\x6a\x32\x93\x1c\x43\x4c\x9f\x2f\x50\xbc\x11\ \x46\xf5\x6e\xd4\x8c\xd1\x7c\x06\x2d\x54\xd0\xfd\x82\x1c\x4d\x9e\ \x30\xd8\x13\xb4\x3d\x6b\x1c\xb5\x01\xd2\x63\x98\x64\xa2\x1e\xaa\ \x30\x25\x2e\x49\x3d\xc6\xd1\x4d\xd4\xdd\xbc\x2a\xf5\x4b\xa7\x9c\ \x8b\x4b\x39\x57\xff\x95\x4b\x19\x70\x06\x52\x66\x8d\x33\xd9\x59\ \x23\xe1\x53\x94\x59\x38\x21\x50\x88\x85\x18\x97\x66\xb8\xd3\x01\ \x59\x14\xe7\x1c\x45\x59\xa1\x9e\x75\x69\x4e\x19\x5f\x34\xe3\x93\ \x6c\x79\x1d\x62\xbf\x7a\xee\x19\xd4\x0c\x3a\x80\x14\xd2\xaf\x93\ \xf2\x11\x0b\x28\xdc\xde\xb3\x54\x49\x39\x66\xd0\x81\x09\x33\xd4\ \xb2\x4a\xc1\xd6\x5e\xfe\x33\xee\x54\x51\xb9\xe4\x82\xaa\x71\x84\ \x76\x4a\x0f\xb8\x52\x05\xd8\x20\x7f\x5d\x55\xe6\x8f\x81\x0c\x5a\ \x03\x0b\xe8\x0e\x19\x16\xe2\xec\x70\x19\xe5\x0b\xef\x96\xe1\x8e\ \x46\x1a\x45\xca\x58\x4e\x6c\x4b\x22\x6f\x19\xc9\x32\x23\x69\xdb\ \xcd\x56\xa6\x63\x08\x94\x87\xa0\x9b\x0e\x26\xd0\xa3\x75\xa2\x99\ \x4a\x33\xe3\x0c\xaf\xce\x85\xaf\x99\x33\x66\xb0\x79\x5d\x3f\x55\ \x3b\xd7\xe7\xd7\x60\xcb\x52\x4b\x2d\xa9\xea\xad\xd4\xa3\xe7\x4d\ \x3a\x4c\x55\x9b\xc6\x5c\xe0\x84\x4e\xf9\x00\x8b\x86\xe5\x7a\x58\ \x6b\x37\x33\xbe\xf8\xeb\x92\x90\x4d\x2c\xe4\xb2\x53\x44\xa9\x75\ \xb4\x79\xda\xd6\xcf\x7c\x78\x8d\x5b\xee\xba\x65\x6d\xd2\x21\x22\ \x49\xb3\x43\x27\x9d\x7d\xb2\x66\x9c\x19\xb8\xb0\x46\xf0\x26\x7e\ \x6a\x4b\xc9\x00\xe3\x6b\x54\x2d\x79\x87\xcf\xf2\x68\xa3\xc1\x12\ \xfe\xe8\x71\x92\xc6\x1e\x4c\xe7\xc4\xc4\x5c\x0c\x65\x5a\x85\x3a\ \x21\x70\x1e\x00\xe7\x9c\xa9\x11\xc2\x5a\xf4\x36\xf9\xc9\xd8\x95\ \xae\x51\x5c\x2c\xa5\xc4\x24\x53\xef\x0b\x7d\x72\x4c\x51\x6d\x8e\ \x4f\x22\x09\xb5\xbb\x49\xa6\x1b\xdd\x42\x10\x82\x5c\x39\xc4\x0e\ \x4d\x12\x92\x1d\xfe\x4e\xa3\x94\x94\xd5\x83\x0b\xe3\x18\xc7\x03\ \xad\xd1\x04\x04\x65\xa5\x35\xff\xa9\x0a\x7b\x8e\xa4\x95\x19\xd8\ \x00\x68\x6a\xb1\x97\x97\x76\x33\xb9\xec\x89\xe1\x18\x96\x7b\x9a\ \xab\xc4\x20\x0c\x81\x81\x8f\x43\x56\xdb\xcb\x1a\xfe\x00\x0e\x2c\ \xd4\x10\x21\xa1\x53\xdf\xd6\xda\xe7\x8a\x61\x80\xc3\x15\xf0\xc3\ \xcc\x27\x16\x13\xc4\x19\x89\x44\x5a\xf3\x43\x5b\xeb\x6e\x12\x02\ \x26\x84\x01\x80\x43\x78\xc3\x00\xc3\x00\x87\x87\xc8\xc0\x6e\xbd\ \x93\x87\xae\xea\x31\x3b\xd4\x94\xec\x1e\xd6\xe0\x42\xd2\xe8\x75\ \x15\x7d\xd4\x83\x36\x91\x9a\x81\xcc\x34\x33\xb8\x53\x4d\x41\x41\ \xa6\x12\x55\x71\xae\x77\xb4\x29\x5c\x0f\x7b\xd7\x3b\xa1\x1c\x98\ \x96\xc2\x7f\x79\xef\x7c\xd0\xc1\x82\x5d\xfe\x68\x10\x2c\x9c\x83\ \x86\x36\x34\x48\xfa\x72\x88\x1d\x5c\x38\xe2\x0b\x19\x0b\x00\x38\ \x86\x31\x0c\xf7\x7d\xc2\x3b\xc7\x2a\x8f\xda\x84\x12\x44\x8f\x89\ \xcc\x24\xe8\x91\x01\xae\x70\x35\xc0\x37\x40\x31\x8a\x21\x88\x01\ \x1c\xf2\x16\x84\x30\x30\x21\x04\x74\x08\x01\x52\xf2\xd1\x04\x33\ \xc4\x8a\x0e\xf7\xa8\x47\x13\x9a\xe0\x03\x3c\x06\x88\x78\x67\xc8\ \x0f\xe1\xe4\xfe\x60\x03\x4f\x05\x85\x09\xfa\x68\x0a\xd0\xc0\xb8\ \x9b\xdd\x4c\x68\x7a\x10\x44\xda\x38\x8e\x71\x21\x3e\x76\x6f\x90\ \x79\x01\xc7\x0c\x61\x48\xc8\x82\x9c\xc2\x90\x88\x24\x08\x0e\x17\ \x49\x18\x5c\x48\x6b\x5a\xa3\xe0\xe1\x14\x28\xd9\xb5\x39\xc1\x44\ \x7f\xfc\x4b\x49\xc5\x3e\xd6\xac\x9b\xd8\x61\x80\xaf\x2c\xe5\x1b\ \xf4\x19\x83\x29\xae\xf2\x9e\xa2\x84\xc3\x10\xce\xd0\x04\xba\xa1\ \xec\x1e\xf7\xd0\x65\x18\x01\xe4\x4b\x0d\x22\xd3\x35\x69\x04\x8b\ \x19\x14\x48\x1b\xb4\x9c\x2b\x4b\x0d\x2a\x5a\x1d\x67\x30\xb9\x06\ \x91\xb0\x72\xd5\xc4\xdc\x07\xc4\x60\x8e\x6b\xca\xc5\x2e\x30\xb4\ \x9a\x32\xb6\x49\x90\x40\x1a\x32\x91\x59\x1b\x27\x47\x78\x80\xa2\ \x8b\x7d\xc2\x15\x37\x5d\xe7\xb4\xa6\x25\x32\x92\xb8\x44\x32\x43\ \x24\x4f\xdb\x84\xf2\xbf\x5d\xe5\x53\x9f\xa8\x44\x25\x15\xd5\x10\ \x04\x29\x4e\x51\x06\x70\x08\xc3\x3d\x9a\xd1\x0c\x5d\x92\x01\x97\ \x08\x6d\x42\x33\xf6\xa1\x87\x85\xba\x51\x3f\xf9\x38\x43\x6b\xa6\ \xa0\x8f\x4f\x9d\x41\x51\xfa\x98\xc2\xf2\xac\x51\x16\x07\xc5\x4b\ \x5f\xa1\x3a\xa1\x07\xf8\x05\xd2\x90\x3a\xc7\x85\x73\xa1\x61\x74\ \xc0\xf9\xfe\x01\x71\xc6\xd4\x30\x65\x2b\x1d\x8e\x6e\x8a\xce\x47\ \xba\x8f\xa6\x29\x92\x8c\x1d\x5e\x80\x99\x93\x2c\xc3\x6d\x3a\xa0\ \xdd\x1b\xe8\xf0\x86\x7b\x18\xe1\x0d\x40\xb8\xec\x1b\xa8\x18\x04\ \x38\xc4\x20\x04\x70\xf8\x2c\x52\xef\xe1\x03\x1f\x34\x43\x1b\x4d\ \x38\x2d\x6a\x75\xd9\x8c\xeb\xfd\x47\x4b\xc0\xdc\x55\x58\xf5\xf0\ \x13\xb0\xf0\x44\x1f\x68\xa8\x0d\x07\x27\x74\x25\x0a\x31\x13\x7b\ \xae\x49\x95\x1e\xe1\x42\xd7\xe8\x78\xef\xae\x05\x31\xae\x5e\xf6\ \x9a\x21\x45\xfa\xd5\x23\x7f\x18\x45\x00\x0c\x4b\xd3\x73\xba\xaf\ \x7d\x65\x73\x45\x32\xba\xd6\xac\x97\xfc\x14\x4f\x6f\xdb\xd5\x64\ \xef\xa1\x4f\x7d\x5a\xf6\x0d\xa9\x84\x43\x7a\x91\x0a\x04\x54\x52\ \x96\xb4\xa4\xad\x43\x33\x48\x3b\xd5\xac\xda\x11\x8d\x41\x51\x14\ \x55\x40\x53\x1c\xcd\xa0\x75\x0a\xb9\x29\x0e\x5b\xac\xc1\xc1\x66\ \x16\xad\x29\x7a\xf0\xe0\xcf\x5c\x83\x9c\xff\x84\x74\x2e\xc9\x9d\ \xcb\x4a\x99\xdb\x57\xe7\x6a\x84\x6b\x5f\x70\x45\x00\x72\x0a\x58\ \x0c\xeb\xd4\xba\xe8\x1c\x2c\x8c\xd4\x16\x23\x92\xf8\x6e\x33\x77\ \x7b\xe5\x10\xc8\x60\x04\x16\xb3\x58\x1b\x46\x00\x42\x2a\x63\x30\ \xe3\xfe\x10\xb0\x57\xc6\xf7\xd0\x46\x1d\xea\xe0\x83\x7d\xec\x83\ \xc7\xfb\x18\x47\x69\x97\xf9\x33\x3d\x24\x43\xa2\x94\xb2\x8d\xce\ \x66\xc0\x93\x33\x74\x8a\x29\x69\xc4\xca\x58\x78\xe6\x3c\xb3\xb8\ \xc6\x35\x49\xcb\x63\x72\x20\xe5\x60\x84\x1c\x97\x20\x53\xcb\xeb\ \x98\x9a\x5b\x61\x0b\x2b\x43\xba\x1a\x9e\xe4\x0f\xaf\xfb\x43\xea\ \xee\x14\x9d\xda\xbd\x91\x64\xe6\x07\x13\x9e\xa0\x86\x57\xa5\xb4\ \x2a\x19\xf4\x4c\x86\x17\xc7\x38\x06\x51\xc4\x6c\x8d\x65\x6c\x04\ \x32\xec\x58\xc7\x3d\x06\x32\x04\x23\xc8\x5b\xa7\x2c\x8f\x09\x59\ \xdc\xd9\x49\xf4\x71\x40\x33\xcc\x20\x28\x62\xb9\x0d\x7b\xae\xd2\ \x33\x4d\x9d\xea\x2c\xae\x11\xc6\x09\xf7\x45\x4d\x2d\x13\x77\x39\ \xa6\x56\xc8\x40\x02\x09\x8e\x32\x51\x98\xcc\x17\xc1\xc5\x07\x84\ \x31\x6b\x2c\x08\x63\x18\x01\xf0\xf0\x23\x75\x4a\x53\x76\xde\x8f\ \x74\x22\x19\x1b\x8c\x7e\x7a\x92\xff\xd1\x6d\xcf\xda\xd0\xc6\x8a\ \x61\x8c\xd9\xa3\x02\xc1\xc6\x33\x7e\x43\xa1\x75\xac\xe3\x1f\xf3\ \x32\x82\x61\x01\xe3\x81\xb9\x30\x29\x35\xc8\xc0\x0c\x4c\xa0\x14\ \x91\x52\xa3\x36\x32\xb2\x67\x14\xe5\x1e\x05\x08\x7f\xe6\x41\x0f\ \xfe\x1e\xe3\x2c\xc2\xd0\x83\x85\x2e\x57\x57\x2f\xef\x45\x18\x81\ \x2c\xe9\x72\x0b\x32\xe6\x57\x63\x44\x92\xf7\xf6\x40\xad\x27\x39\ \x2d\x30\x80\x61\x5a\x37\x1d\x2c\x88\xcb\x06\x58\x8f\xad\xed\x24\ \x2d\x09\x03\x3e\xf9\x8c\xec\x3a\x2c\xbb\xbc\xe4\xc5\x6c\xc6\x81\ \x40\x68\x64\x77\x1c\xd9\xf2\xb5\x36\x58\x30\x95\xa9\x34\xea\x40\ \x77\x88\x12\x8d\x4e\xe4\xe1\x12\xa1\x34\x4a\xd3\x54\xfe\xb4\xbb\ \xad\x7c\x16\x04\x87\x9a\x9a\x0d\xee\x5e\xbd\x15\x72\xd2\xbc\xd8\ \x10\x9c\xfc\xee\xf7\x3f\xbc\x70\x22\x0c\x4f\xd2\xe8\x01\x00\xc3\ \x02\x8e\xb5\x80\x47\x06\x80\xb0\x1f\xbe\xe9\x39\x6b\x0a\x6c\x11\ \x9f\xa4\x49\x11\xc7\xb1\x9e\x09\xbd\x6c\xcb\xb6\x98\xbc\xfa\xc4\ \xac\x11\x72\xec\x83\x8e\x4f\x5c\xbe\x0f\x6c\x2b\xf3\x7e\x12\x1a\ \x87\xb4\x4c\x0d\x42\x3a\x8a\x4e\x52\xb3\x9e\x74\xe7\xcb\x29\x34\ \x3f\x4b\xde\xbf\x02\x8e\x77\x6f\x59\x4c\xa8\x5e\x8e\xce\x0b\x62\ \x97\x30\xf7\xfc\x14\x9c\x0b\x27\x4c\x5f\x2d\x0e\xc7\xbc\x80\x3b\ \x85\x0d\x40\xe4\xbd\x36\x07\x4b\x18\xfc\x0b\x05\xc7\x11\xaf\x33\ \x46\x36\x65\x79\xec\x59\x48\xb1\x62\xd6\xbb\xbe\xf1\x8d\x7f\xfe\ \x3d\xb3\x60\x07\x02\x8e\x7d\xb0\x63\x8f\x93\x21\xab\x4d\xe0\x42\ \xd1\xb4\x02\x94\x4d\xb2\x9d\x3a\x2b\x67\x14\x1b\x99\x69\xaa\x51\ \x99\x2a\x38\x4e\xf9\xfb\x07\xe4\xea\x60\xc1\x0b\xcc\x2e\x80\x74\ \xe9\x07\x80\xde\x6f\x2f\xbc\x60\x31\x2c\x71\xfe\xd2\x79\x48\x49\ \x30\xa4\xe4\x58\x2f\xa8\x98\x7a\x62\x34\xa7\x47\xfe\xda\x92\x68\ \x03\x7d\x08\x28\x6b\x55\x67\x97\x7f\xf4\xe5\x47\x7f\xd8\xeb\x80\ \x68\xd2\x6a\x83\xec\x53\x9d\x2a\xe0\xda\x23\x51\xb7\x53\x47\x06\ \xc7\xe4\x20\x5b\x27\x24\x16\x9e\x45\xae\x38\xa8\x22\x35\x2e\x9b\ \x0b\x81\x39\x07\x7d\xdb\x9c\x7d\x53\xbc\x0a\xc3\x05\x71\x80\x09\ \xe7\x5b\x86\x17\x80\x40\xb0\x29\xba\x61\x00\x03\x08\x8c\x40\x4b\ \x50\x3a\x67\x79\x3c\xb2\x31\xac\x4b\x9a\x0c\x22\xc9\xa2\x10\x90\ \x1b\xcb\x4a\x3f\xd2\xbb\xac\x19\x43\xc1\x19\xdb\x38\x32\x58\xbd\ \x16\xf4\x31\x1f\x2b\xad\x66\x28\x1a\xa0\xf8\x11\xf4\xa8\xbf\x21\ \xc9\x87\x51\xc0\x36\xfe\x63\x8b\x51\xd0\x0a\x6b\x48\x37\x20\xd4\ \x0a\x4c\x6b\x8b\xd6\x08\x3e\x01\x8c\x30\x9e\xe3\x90\x43\x70\xb5\ \x57\xc3\x05\x33\x58\x80\x94\x70\xbc\x63\x79\x40\x0b\x5c\xfe\x00\ \xc2\xb2\x04\x29\xbc\x40\x98\xc8\x13\x4b\x12\x09\x30\x18\x89\xaf\ \x01\x17\x19\x10\x3f\xd4\x8b\x01\xf3\x63\xb1\xf2\x3b\xc3\x18\x4b\ \xaf\x3f\xe3\xb3\x3a\xa0\x38\x1e\xf3\x01\x2e\x98\xc3\x07\x4a\x0b\ \xfc\xba\xc1\xd1\xb0\x83\x4f\xc8\x0a\x99\x39\x12\xf6\xa0\xbb\xab\ \x08\x42\x1e\x4c\x86\x07\x42\x15\xc0\xe3\x90\x7a\x0b\x24\x09\xbb\ \x9a\x04\xac\xb0\x3f\x98\x96\x28\x8c\x40\xa5\xbb\x3e\xe8\x3b\x96\ \x4b\xb4\x04\x08\xc4\x04\x0b\xb4\x3e\x98\xc0\x84\x78\xe2\x8e\x6c\ \xe9\x9d\xa7\x2a\xc3\x33\x5c\x43\x67\x6b\x31\x67\x93\x31\x14\xec\ \xac\x3f\x63\xb1\x63\xeb\xb8\x26\x40\x28\x5e\x02\x8b\x73\x91\xa8\ \xbc\xf9\x10\x71\x71\x89\xbb\x21\xb6\xd8\xd1\xb4\x73\xcb\x8d\xdf\ \xd8\x8a\xde\xba\x1e\x7e\x19\x13\xba\x7a\x0e\x84\x08\xa4\x53\x60\ \x44\xbd\x58\x3e\x27\x44\x38\x30\xc8\xc2\xe8\xe3\x0e\x69\xa4\x42\ \x07\x5c\x00\x30\xb4\xa4\x06\x74\x3e\xec\x8b\x89\x16\xb1\xbe\xa1\ \x7a\x25\xf1\x43\x41\x34\x4c\x43\x18\x4b\xc1\x19\xe3\xac\x35\xec\ \x3a\x42\xd3\xb3\xf1\x0a\x20\x3f\x3c\x8d\xdd\x49\x93\x87\x50\x14\ \xcd\xb0\x1b\x9d\xf9\x45\x73\xdb\x0a\x09\xb9\x23\xed\xfe\xc1\x90\ \x0c\x01\x29\xef\xd9\x8b\xc2\xcb\x10\x50\x70\x44\xbf\xc2\x05\x66\ \xb8\x29\xe9\x92\x46\xb0\x59\x3a\xa6\x03\xc3\x69\x3c\x96\x83\x2b\ \xb8\x2c\x7c\x40\x6e\xac\x0c\x9a\xc0\xbd\x95\x31\xa5\xf3\x42\x3f\ \x16\xab\xb8\x16\x43\xc7\x35\x44\xaf\xce\x7a\x83\x16\xd3\xb3\x17\ \xbb\x07\x53\xaa\x9d\x79\xcc\xc3\xfa\x90\x07\x7d\x24\xa3\x1f\xf9\ \x09\x60\xf4\x8c\xb2\x10\x1a\x31\x70\x0a\x73\x00\x93\x0f\xe0\x00\ \xe2\x33\x29\x66\x5c\xc2\x84\x54\x48\x48\xd2\xb0\x51\x28\x38\x82\ \xc3\xc4\x89\x7c\x40\x0c\xfc\x02\xe9\x9a\x16\x8c\xe4\x44\xc5\x62\ \x0c\x99\xd8\x1b\x45\xb9\xa7\x18\x2b\xbf\x12\x60\xb1\x3c\x10\xc9\ \x91\x44\xc5\x16\x53\xc1\xb0\x7b\x43\x8f\xd3\x25\x5c\xfa\x89\x1a\ \x8c\xc9\x21\xe9\x89\xc1\xc1\x17\xab\xc0\x92\x8c\x19\x0b\xaa\x08\ \xb5\x79\x19\x87\xb7\xe0\x00\x44\x6c\x1a\x81\x69\xc6\xb9\x78\x46\ \x05\x74\xa4\x82\x1b\x85\x34\xc3\xb0\x1f\x92\x44\xb0\xa1\x44\xeb\ \x33\xb8\xa8\xf3\x9a\x3a\x71\x3e\x94\xb8\x4a\x9a\xb8\x95\x30\xf0\ \x2c\x67\xbb\xac\xb1\x6c\xb1\x69\x3b\xc7\x42\x0b\x87\x8a\x2b\xbd\ \x16\xcb\xb1\x1d\x9b\x2f\xaa\x1a\x30\xda\xa3\x8f\xfe\x7a\x5c\xb9\ \xd4\x50\x90\xbc\x03\xae\x63\xb0\x8d\xdc\x38\x37\xb5\x00\x87\xea\ \x11\x3c\x24\xfc\x32\xc4\xbb\x9a\x26\x24\x33\xae\x79\x48\x4b\x88\ \x4a\xe9\xca\x30\x57\x48\x3a\x98\xb8\x44\x07\xc4\xc0\xc6\x7c\x4c\ \x07\xdc\xc4\x8c\x54\x09\x97\xe8\x1d\xa6\xfa\xb3\xb0\x03\xcb\x12\ \xd0\xcc\x69\xcb\x03\x65\xab\x83\x4a\xe0\xce\x4a\xd0\x31\x92\x7c\ \xc3\xf7\x2a\xcd\xab\xd8\x22\x70\xa9\x47\x87\x08\x02\x4c\x58\x0a\ \x36\xba\x20\x48\xa9\x0a\x34\xb0\x01\x34\x88\x0f\xc4\x39\x03\x19\ \x14\x83\xa0\x24\x08\xfc\xc4\xcd\x6e\x02\x87\x53\x08\x05\xc4\x5b\ \x18\xdd\x4c\xa4\xa0\xdb\x08\x70\xc0\x35\xaf\x71\x3c\x83\x3b\x50\ \x36\xb3\x46\x2a\xcc\xc2\x39\xb0\xbe\xca\xeb\x9a\x94\xd8\x44\xca\ \x60\x8c\x3b\x41\x89\x26\x92\x81\x3f\x2b\xaf\x70\xf8\x4c\xb0\xfc\ \x4a\x1d\x73\x84\x69\xab\xb8\x3c\xd8\xce\x4a\xe0\x00\x0e\xe0\xce\ \x7d\x78\xb1\x57\x44\xb6\xf7\xa2\xaa\x26\xa0\x41\x70\xab\xc7\xd2\ \x40\x8d\x6d\xf9\x09\x2e\x60\x0d\x1b\x08\x2e\x1b\x48\x06\x1b\x48\ \x0e\x70\xd0\x0f\x04\xa1\xa0\x83\x62\x2d\x29\xf8\x03\x81\x28\x08\ \x92\x52\xc6\x31\x61\x18\x9f\x3b\xbc\xff\x3c\xfe\x3c\xff\x3c\xbc\ \x83\x08\xcc\x0a\x03\x85\xa3\xfb\x82\x28\xac\x3c\x82\x3b\x38\x82\ \xb3\x24\x4c\x5c\x06\x08\x5d\x06\xa6\xeb\x9a\x2c\xb4\xd0\x9c\xc0\ \xca\x9c\x18\xc5\x32\x24\x34\x29\x80\x53\xef\xac\x83\x3c\xc8\xb1\ \x11\xad\x03\x0f\xe5\xcc\x3b\xe5\xce\x14\xad\x84\x70\x58\xb1\x94\ \x0c\xcf\x7d\xa0\xaa\x5c\xa2\x3d\x4c\x48\x13\x79\xe8\x09\x29\x19\ \x42\x07\x49\x92\xb7\x10\x10\x7d\x78\x0b\x31\x88\xbd\xd8\xfb\x03\ \x1f\xb8\x87\x5b\x2a\x2d\x71\x10\x87\x3f\x30\x07\xef\x99\xa1\x26\ \xe5\x90\x53\xe8\x4f\x83\x98\xd2\xdc\x44\x9f\x2b\x55\x48\x73\x40\ \xb3\x49\xc2\x35\xcb\x43\x3a\x2f\xdd\x35\x2f\xb4\x46\xc6\xc4\xc2\ \x17\xb8\x4a\xac\x9c\x89\xbd\x89\xb8\x11\x24\x03\x29\xe0\x80\x43\ \x88\x04\x29\xf8\x4c\x47\x30\x51\x47\xf0\x50\x3c\xd5\x31\x3a\x3d\ \x51\x3e\xad\x83\xb0\x3b\x28\xf7\x2b\x2d\x0a\x3a\x9e\xa0\x48\x4d\ \x1c\x04\x30\xdc\x42\x30\x2c\x5b\x30\x0f\x98\x02\x70\xd3\x99\x7a\ \x68\x8b\x24\xbd\x0b\x2e\x38\x28\x47\xf8\x03\x2e\x98\xaa\x3f\x88\ \x04\x2e\xd3\x37\x29\xfd\x80\xcf\x79\xd7\xc3\x33\x07\xa3\x8c\x29\ \x50\x38\x33\x0d\xc3\x82\x61\xc0\x82\xc8\xfe\xbb\xb5\x5b\x83\xd5\ \xf7\x39\xac\x4b\x4c\x09\xa6\x03\xa2\x94\xb0\xd0\x99\x78\xbb\x20\ \x60\xaa\x94\x34\x00\x71\x90\x82\x43\x50\xbe\x3e\x9d\xd3\x89\x45\ \x56\x12\x9d\xb6\x70\xe8\xce\x91\x4c\x49\xb1\x13\x4f\x0a\xaa\x07\ \x3a\x68\x88\xb6\x94\x08\xb0\xa2\x8a\x76\xb3\x19\x3d\x42\x59\x0f\ \xe0\xb6\xa5\x62\x02\xd6\xfa\x83\x74\x15\x87\x66\x30\x57\x66\xe8\ \x54\x57\xa1\x2b\xcf\xf1\x26\xff\x7c\x80\x75\xe8\x81\x01\xa0\x87\ \x01\x48\x82\x50\x10\xda\x50\x78\x80\x1e\xa0\xd7\x71\xc2\x05\x55\ \xd5\x35\x7c\xad\x21\x7d\x35\x3a\x4a\xd2\x29\xc0\xea\x1a\x76\x72\ \x50\xc4\xf8\x9a\xaf\x01\xaa\x9c\x40\x4f\xf1\x13\x07\x32\x10\x07\ \x73\x80\xd8\x43\x10\x56\x13\x35\x02\x13\xbd\xd3\xb3\xfd\x4c\x1d\ \xf3\xd0\x7d\xc0\xd8\x7d\xf8\x4e\x23\xb8\x07\x3e\x43\xb4\x66\x20\ \x03\x59\xb1\x95\xbb\xa1\xc7\x89\xb0\x15\x03\x42\xa6\x76\x83\x94\ \xbf\xc5\x10\x39\x10\x06\x33\x08\x81\x2c\x72\x12\x1e\xa0\x2a\xaf\ \x8d\x5b\x71\xd0\x06\x66\xd0\x4f\x76\x3d\x87\x07\x28\x5a\x76\x20\ \x04\x3a\x20\x84\x57\xaa\xdc\xcb\xa5\x83\x1e\x60\x07\x3a\x10\x16\ \x02\xcd\x08\x5c\xc8\xb0\x5b\x8b\x3c\xfe\xa6\xcd\xd7\xa7\xa5\x24\ \xeb\xda\x29\x5d\xdb\x29\x4a\xbc\xc4\x4c\xb2\xd0\x93\x00\x3d\xd0\ \xba\x07\x71\x70\x04\x63\x8d\x84\x60\x2d\xdb\xcf\xf4\xca\xdd\x25\ \xd1\x3c\x30\x5b\x8c\xed\x4e\xef\xd4\x3a\x6d\x40\xb4\x64\xb3\xdb\ \xfb\xab\x41\x44\x41\xcf\x88\x90\x87\xd3\xe8\x36\x98\xb9\xa0\x93\ \xed\x97\x82\x90\x03\x49\xfd\xd8\x5d\x19\x82\x93\xa1\x1b\xf2\x12\ \x87\x70\x58\x57\x80\x89\x8b\x95\x0a\x05\x1e\xe0\xdc\x1e\x20\x84\ \xf4\xe5\xd9\x75\x58\x87\xcb\x4d\x5f\x51\x48\xdf\xa3\x1d\x27\xe8\ \x5a\x55\xd4\x65\x55\x7e\xdd\x57\x36\x43\x11\xd4\xd1\x87\x89\x04\ \x36\x4c\x7a\xbe\xc7\xb0\x0c\x9d\x88\xb8\x68\xbb\x5d\x47\xf8\x5e\ \x47\x40\xc5\x70\x00\xd1\xb2\xbd\x53\x13\x25\x5b\x13\x0d\x87\x7d\ \xa8\x04\x0a\xae\x60\x12\xed\x31\x1f\x20\x83\xf3\x02\xad\xb8\x51\ \x19\x98\xa4\xd1\x6e\x13\x12\xb0\x02\x12\x1d\x70\xa8\xbf\xc5\x39\ \xb9\x18\x07\x33\x98\x22\x11\x84\x22\xf1\x2b\x01\x32\x70\xdc\x7f\ \xf1\x17\x56\x2b\x88\xa2\xed\x81\x1c\x4e\x82\x75\x48\x82\x29\x0d\ \x85\x1e\x60\x5f\x51\x80\xa5\xcf\x05\xdd\x8b\xc8\xd2\xa8\x74\x5a\ \xfb\xf5\xd7\x0c\x8b\xbc\xe8\xea\xfe\xbe\xd5\xdd\x5f\x2f\x0c\x1b\ \x15\x99\xcc\x5c\x2d\xe0\x7b\x68\x58\x4d\x75\x00\x18\xeb\x2c\x20\ \x08\x07\x62\x2d\xdb\xb2\x85\xe0\xb7\x5d\x3f\x61\x75\xdb\x0a\xfe\ \x4c\x44\xab\x38\xcd\x12\xbf\xda\xa1\x83\xfd\x60\x82\x20\xb0\x03\ \x89\x32\xa0\x47\x53\x83\xd9\x48\x86\x6d\x31\xa3\xb4\x42\x61\x0d\ \xe1\x82\x21\x18\xa0\xee\x05\x54\x47\x98\xe1\xcc\x81\xa1\x53\x60\ \x87\x7c\xe8\x01\xc9\xa5\x07\x7a\x38\x87\x82\x38\x87\x46\xde\xe1\ \x75\xd8\x05\x5c\x90\x5f\xf5\xc1\x85\x48\x80\x5a\x7e\xed\xa1\xa7\ \x3d\xb3\xa8\xe4\x21\xa7\x43\x33\x1f\x22\x1d\x30\x5c\x80\x30\x15\ \x89\x0c\x7c\xc0\x8d\x64\xa5\x5b\x5a\x5c\x47\x70\x80\x3c\x58\x81\ \x18\xe0\x2c\x20\x30\xd6\x2f\x5e\x31\x10\xa5\x53\x3a\x35\x02\xb5\ \x65\xdb\x69\x73\x5b\x1d\xfb\x53\x0e\xb5\x1d\x5b\x02\x59\x6f\x9b\ \x34\x87\xd0\x99\x38\x96\x01\x4b\x49\x06\xf6\x48\x06\x69\x02\xdc\ \x07\xab\xcd\x6c\xe2\x82\x97\x1d\xaf\x7b\x20\x64\xb0\x75\x30\xcf\ \x01\x07\xf4\x65\x82\x45\xce\x61\x20\xa6\x87\x28\xe5\x1c\x2c\xf8\ \xe1\x3d\xb8\x64\xf5\xc9\x52\x03\x55\xd0\xe9\xbb\x35\x26\x96\xca\ \x2f\x60\x55\x84\x33\x3a\x06\xfe\x35\xe5\x30\x75\xdd\x95\x48\x89\ \x3b\x21\x43\xb9\x31\x80\x7b\x70\x00\xaf\x74\x00\xcd\x0a\x82\x33\ \x04\x5e\x0f\x75\x04\x92\x74\xb1\xcd\x64\xdb\x60\x9e\x36\x65\xc3\ \xcc\xb8\x6d\x49\xc9\x8a\x15\x34\x71\x12\x7d\x60\x82\xa5\x32\x03\ \x6b\xf8\x84\xde\xd1\x87\xd6\xb0\x8d\x4f\x69\x4f\x2d\x0b\x48\x83\ \x00\x87\xa9\x9a\x1a\x0e\x00\x07\x71\xa8\xdd\x3f\xa8\x04\xbc\x88\ \x0e\xcd\x31\x08\x16\x1a\xbc\x6f\x63\x02\x42\xd0\x01\x71\x4e\x5f\ \x42\x00\xe2\x1e\x36\x08\x7a\x58\x67\xd1\x59\x48\x34\x23\xce\x6c\ \xb4\xbc\x69\xe1\xe4\x57\xd5\xdf\x83\x6b\x48\x82\x03\xc3\xea\x73\ \xa7\xf0\x68\x8c\x93\x78\xa5\x83\xba\x07\xeb\x04\x82\x12\x00\xcb\ \x2e\xe6\x4a\x23\xf0\xd0\x06\xee\xdd\x8d\xeb\xe5\x09\x26\x51\x92\ \x34\x4b\xad\xcb\x27\x40\xa6\x95\x30\xf8\x58\x34\x51\x83\x8e\x8e\ \x8f\x30\xc8\x87\x29\x90\x03\x2d\x31\x44\x25\x71\x0e\x3d\x78\x5c\ \x82\x10\x83\x71\xe0\x81\x26\xf8\x23\x73\xf8\x83\x7d\x30\x87\x9a\ \x9d\x69\x25\x1d\x3c\xf0\x59\x83\x92\xc8\x61\x76\x18\xe7\x9c\xee\ \xe9\x75\x10\xd0\x03\x18\x6a\xad\x11\xdd\xe9\xc3\x35\xa5\x83\x48\ \x0c\x64\xba\x26\xc6\xbc\xfe\xa9\x64\x82\x65\x20\xba\x0c\xd3\xa9\ \x8b\xac\x42\xaa\x16\x8f\x50\x8a\x9b\xae\x2d\xe8\x15\xd8\x38\x62\ \xcd\x03\x06\x36\x82\x2e\x9e\xed\xb0\x4e\x43\xb2\x96\xb6\xb4\xfd\ \x4a\x86\x3e\x4b\x23\x80\x22\x28\x42\x13\x5d\xb9\x87\x38\x76\x08\ \x3a\x98\xaa\x8f\x45\x6e\xff\x98\x17\x3a\x54\x34\x08\xaa\x84\x64\ \x14\xa9\x4e\xad\x8b\x24\xfd\x23\x0e\x50\x86\xbe\xee\x90\x4f\x4d\ \x8e\xba\x38\x88\x53\x70\x85\xf2\xb1\x84\x1c\x2e\xda\xf7\x85\x5f\ \xa0\xfe\x80\x48\x38\x84\x22\xc6\x08\xe8\x8a\xae\x61\xe8\x1a\x49\ \xb4\x40\xc7\xcb\xc6\xa8\xbc\x3c\x83\x53\xca\x92\xd0\x81\x73\x92\ \x3c\xa6\x7c\xdd\x78\x72\x0c\xa2\x60\x2a\xb9\x61\x87\x81\x2e\x01\ \xae\x0e\x07\x50\x60\x42\x05\xae\xe5\xb2\x16\xd6\x70\xf0\xed\xb3\ \x7e\x45\x92\x1c\x4d\x38\x64\x31\xf2\xa2\x95\x80\x62\x6b\x87\x88\ \xaa\x7a\x80\xa2\x18\xb8\x87\x7d\x48\xd1\x20\x23\x03\xd3\x92\xaf\ \xbc\xe4\x00\x3d\xe8\x54\x73\x28\x2d\xc7\x35\x87\x71\xb8\x8b\x90\ \xe2\x6e\x91\xf2\xb2\x42\xfa\x84\x1c\x3e\x87\x73\xc8\x61\x42\x10\ \x05\x35\x20\x84\x75\x10\xda\x48\xb8\xec\x88\x01\x53\x82\x5b\x00\ \xce\xee\xc6\xa5\x83\xfe\xca\xa8\xcd\xef\xc7\x2b\xdd\xc8\xfb\xa1\ \x82\x8b\xea\x2f\x9c\x0c\x21\x81\x83\x37\xd8\x62\xaf\xe4\xea\x3c\ \xc0\x05\x05\x07\x85\x3c\x00\x82\xf4\xb2\x6d\x38\xc5\xed\x10\xad\ \x03\x65\xeb\x6d\x65\xad\x70\xaf\x3b\x2f\x85\x75\x61\xa5\x52\x83\ \x80\x3a\x25\xa6\x6a\x82\xeb\xa9\x04\x1f\x40\x2d\x13\x1f\x07\x0e\ \xf8\x6b\x08\x7a\xd9\x12\xff\x83\x70\x28\x6c\xa9\xc1\x9c\x81\x41\ \x08\x70\xa0\x03\x1e\x28\x88\x42\xca\xf1\x46\xd7\xf1\xf4\x55\x03\ \xf8\xed\x59\x84\x64\xef\x85\xdc\xdf\xe4\x94\xf2\xa4\xc3\xc4\x6c\ \xc4\xf4\xa5\xc4\x35\x18\xa9\x3c\xfc\x2e\x5d\x2f\x0d\x6d\x39\x99\ \x0f\x85\x75\xc5\x82\x3e\xf0\x3c\x30\x56\x05\x17\xdb\x12\x50\xc7\ \x06\xf7\x50\x61\x65\xe8\x30\x66\x68\x6d\xc8\x4e\xb0\x84\xe0\x0b\ \x0f\xf3\xa5\xca\x27\x5c\x94\xf3\xcf\xa2\x95\x18\xd0\x06\x08\x22\ \xbb\x3d\xd3\xb3\x1e\x0b\x07\x1f\x28\xec\x98\xd5\xb3\xae\x15\x87\ \x71\x60\x06\x29\x28\xa9\x0c\xa1\x69\x82\x10\x86\x3f\x00\x41\x3b\ \x78\x00\x57\x28\xc0\x45\xf7\xa6\x47\xf7\xe9\x1d\x26\xe2\x22\xce\ \xd2\xae\xc1\xbc\x53\x5e\xca\x4f\xa0\x44\x33\xcd\xf4\x23\xaf\x3c\ \x8c\x04\x9b\x4f\xfe\x90\xf2\x5d\xbb\x3c\x59\xf5\x13\x1d\x88\xb8\ \x32\x54\x75\xb0\x34\x56\x2f\x48\x70\x26\x0c\x87\x18\x5b\x25\x20\ \x98\x6d\x61\xad\x03\xad\xae\xf5\x16\x53\x56\xb1\xeb\xe5\xdc\xa6\ \xe5\x83\x3e\x2a\x38\x5f\xd8\x54\xa2\x95\x20\x88\x36\x16\xb5\xaa\ \x94\x2c\x2f\x99\x45\x76\x07\xb0\xaa\xf1\x22\x03\x47\x28\x2d\x47\ \x90\xe9\x55\xb9\x76\x70\xf8\x68\x88\x38\x0a\x30\x78\x64\x48\xce\ \xf1\x07\x38\x87\xc3\xa3\x87\x75\x18\x72\x62\x49\x5a\x7f\xdd\x35\ \x69\x64\xf7\x06\x05\x4e\xa9\x64\xd0\x4c\x52\x1b\x4b\xb2\xc6\x23\ \xb7\x3c\x4d\x7f\x3c\xcd\x60\x02\x28\x12\xe8\xac\x2e\x81\x58\xce\ \x03\x80\xf7\x02\x50\x50\xf0\x48\xc8\x03\xa5\x52\xd8\x8d\x3b\xd6\ \x39\x5d\x36\x34\xc4\xf5\x35\x9f\xd8\x34\xb4\xf8\x20\x60\x36\x20\ \x80\x08\x89\x0f\x73\xa5\xba\x72\x64\xdb\xe0\x8c\x83\x36\xf3\xc2\ \x72\x81\x2e\x68\x7d\xf2\x5a\xaf\x35\x07\xed\xce\x10\x1b\xfe\x80\ \x8d\x9e\x08\x4c\xd0\x81\x97\x2f\x24\xc9\xcd\xf1\xc3\x7b\x00\xcb\ \x66\xef\x7f\x00\x05\x49\x2a\x5d\xa8\x45\x7a\x7a\x37\x7a\x50\x2e\ \x5d\xe2\xa4\x42\xeb\x3b\x11\x60\xcb\x48\xcf\x3e\x6d\x91\x31\x03\ \x76\x18\x82\xfe\x02\x77\x80\xad\xe6\x6a\x62\x0d\x07\x2f\x00\x5e\ \x57\x77\x84\x18\x40\x4f\x38\xd8\x38\xaf\x04\x5e\x63\x2d\x49\xb2\ \x3e\x5b\xb5\xb5\x58\x74\x54\x58\xd5\xb7\x2c\x55\x82\x08\xcf\x1a\ \xfb\xa5\x4a\xbd\x3f\x55\x45\x19\xd3\xb8\x12\x38\xbd\x94\x5c\xdc\ \x66\x38\x79\x82\x08\xdf\x31\xd1\xf6\xbf\xe0\xf6\x98\xff\x82\x45\ \x96\xdc\x07\x58\x03\xde\x24\x33\xc5\x0f\xce\x51\xbf\xbc\x23\x3f\ \x91\xc6\x6c\xd5\xa4\x3e\x6d\x79\x22\x3a\xf8\x81\xbe\x32\xbd\xf7\ \x4f\xe0\x81\xcd\x67\x07\x32\x28\xe8\x81\x86\x7a\xd2\x1f\xfd\x3c\ \x70\x75\x29\x28\x01\x55\x3a\xc9\x41\xc3\x6d\x15\xdc\x5d\xef\x3c\ \x56\x3c\xd5\x75\x82\xef\xe2\xcb\x02\x08\x38\x6a\x06\x0e\x84\x13\ \x23\x06\x9c\x20\x04\xe1\x00\x31\x62\xe4\x0d\x10\x20\x70\x12\x1e\ \x8c\x68\x11\x48\x8c\x86\x6f\x1c\xdc\x23\xf3\x27\xd2\x87\x90\x22\ \x47\x92\x2c\x39\x92\x0e\xc1\x94\x2a\x65\xe8\x00\xd3\xe3\xc1\x83\ \x00\x0f\x78\xf4\x38\x80\xeb\x1f\xce\x9c\x3a\x77\xf2\xec\xe9\x33\ \x27\xae\x00\x42\x03\x7c\x19\x2a\xf4\x0b\xd2\x4f\x0b\x90\x0e\xfd\ \xb2\xc0\x92\x25\x30\x4c\x5d\x25\xb5\xf4\xe9\x6a\xd5\x17\x98\x5e\ \xbc\x58\xfe\xa6\xc3\x52\xbe\x4f\x43\xe8\x0c\xe1\xe8\xa0\x44\x89\ \x3c\x06\xf2\x84\xf3\xe2\x25\x5c\x1e\x5c\x87\x0e\x45\xca\x03\x11\ \x63\x4a\x86\x6c\xe1\x3a\x6c\x58\xa7\x4e\xb8\x70\xfb\xc2\x55\xfa\ \x5b\x27\x0f\x19\x23\x18\x83\x30\x7c\xf3\x06\xa1\x4a\xc6\x08\x15\ \x0e\x0c\x12\xc3\x31\xc4\xc9\x41\x2c\x23\xcc\x78\x30\x23\x66\x07\ \x64\x1c\x29\x33\x69\xda\xb4\x32\x33\x32\x54\xb2\x26\x28\x63\x19\ \x98\x07\xe0\x4e\x05\x60\x86\xeb\xe6\xcf\xdc\xba\x7b\xe2\x32\x37\ \xec\x37\xf0\x61\x01\x82\x7f\x01\xb3\xb4\x28\xd1\x2f\x96\xe6\xe8\ \x38\x3e\x8a\xe8\x28\xa4\x60\x3e\x59\xfd\x32\x6a\x14\x18\x4b\x5b\ \x97\x71\xb7\xc3\x84\x09\x9d\x15\xf7\x76\x9d\x75\x90\xc7\x91\x97\ \x3c\x79\xdc\xaa\x0f\x07\x0a\x14\x07\x50\x52\xc2\x01\x21\x68\x39\ \x62\x9e\xf9\x7c\x0f\xd7\x71\x44\x38\xf0\x61\x64\xe4\xe1\xd0\x41\ \x06\x01\x51\xc2\x62\x91\x4d\x94\x50\x4a\xf7\x45\xa4\x99\x1a\x9b\ \x4d\x84\x50\x42\x06\x6e\x24\x8e\x39\xa7\x69\x38\x12\x0f\x76\xac\ \xd6\x1a\x88\x6a\xc8\x60\xc9\x39\x58\x28\x63\xd3\x6e\x29\xa6\x88\ \x4b\x24\x58\xb8\xf8\x62\x70\xbf\x81\x23\x1c\x55\xc9\x15\xf7\x94\ \x55\xfe\x9f\x18\x27\x15\x52\xd1\x29\xa7\x83\x8e\xd1\xe1\x98\xdd\ \x32\x98\x84\xc1\x44\x08\x43\x90\x77\x56\x5a\x6c\xb1\x07\x57\x7b\ \xef\xcd\x75\x88\x23\x0a\x49\x86\x11\x10\x75\x80\x12\x4e\x80\x64\ \x88\xf3\x97\x7f\xfc\x19\x51\x87\x62\x12\x65\xd4\x10\x46\x02\x35\ \xb8\x20\x65\xf6\x9d\x39\x59\x84\x11\x6e\xc6\xd8\x9c\x06\xc5\x60\ \x04\x33\xe6\x1c\xb2\xa1\x86\x7f\x7c\x18\x62\x88\xf2\xd8\x91\x0f\ \x3b\xb8\xa9\x78\xa8\x4f\xb8\x7c\xf0\x22\xa3\x31\x62\x31\xe3\x6f\ \x47\x19\xd7\xd5\x32\x50\x59\xba\x00\x18\x52\x25\x67\xe9\x8e\x51\ \x5d\xf7\x09\x1d\x48\xee\x12\xde\x59\x07\xe6\x21\x0b\x2e\x6f\xa9\ \x97\x5e\x94\x53\x46\x52\x26\x82\x15\x1a\x21\xc5\x7c\x46\x20\x96\ \x47\x7f\x80\x05\x78\x98\x62\x9f\xa1\x99\x60\x5e\x14\xb6\x59\x99\ \x81\xc2\x52\x36\xa7\x95\x8c\x19\x84\x67\x69\x22\xd1\x15\xc9\x9e\ \x7c\x62\xc1\x04\xa0\xd5\x12\xb4\x87\xa1\x88\x6a\x9b\x53\x8b\x58\ \x0c\xc3\xa8\x8b\xc0\x09\xf5\x5b\xb8\xc2\x15\x67\x49\x57\x97\x5a\ \x6a\x09\x6c\xe7\x5a\xa2\x03\x77\xdc\x55\xc7\x4e\x3e\x74\x84\xf0\ \xc6\x92\x6b\x35\x09\x8a\x5b\xac\xaa\x97\x47\x5a\xee\xcd\x05\x0a\ \xfe\xb4\xe6\xe4\x01\x04\x63\x25\x48\x71\xc8\x96\x8e\xe4\xea\x70\ \x1d\xe2\xe0\x8a\x6b\xaf\x19\x39\x84\x20\x9c\x0b\x4d\x34\x27\x6b\ \x15\x65\x6c\xdf\xb1\x13\x01\xe1\x48\xb4\x21\x1d\xb2\xc6\x1f\x6b\ \x80\xc4\xa7\x9f\xd6\x56\x1b\x44\xb6\xdb\x6a\x0b\x0a\x38\xe0\x86\ \xeb\xad\xb7\x01\x48\xe5\x4a\x00\x30\x0a\x15\x9d\x71\x51\xe9\x98\ \xdd\x53\x98\x12\xcd\x2e\x57\x98\x28\xed\x15\x78\xf7\x2a\xb9\xd6\ \x1e\xa7\xae\x87\x0b\xbf\xff\x5a\xdd\x9e\x17\xa0\x44\x0b\x8a\x11\ \x06\xf8\xa7\x35\x07\x91\xc0\x75\x58\x1e\xe2\x8c\x29\xa0\x36\x00\ \x63\xd9\x50\x99\x31\x0c\x1b\x21\x9b\xad\x71\x66\x10\x83\x91\xc1\ \x0d\x87\x03\x7a\x3a\x6b\xce\x78\xe2\x1c\x30\x65\xc9\x24\x29\x83\ \x92\xcb\x80\x1a\x10\xb3\xcc\x87\x1e\xe0\x28\x8c\x8f\xce\x48\x94\ \x54\xdf\x96\x6b\x2e\x52\xe7\x4e\x87\xa9\x52\x43\x17\x07\xaf\x56\ \x98\xc8\x60\x47\x08\x74\xbc\x11\x02\x5a\x6b\xb5\xb5\xaa\x17\xa9\ \x42\x79\x35\x82\x46\x38\xa2\xf5\x5c\x91\x80\x34\x17\x07\xb1\x87\ \xe3\xc8\x97\x75\xac\xe5\xb0\x03\x15\x47\xe4\x50\xaf\x75\xcb\xc9\ \xe6\xdb\xc3\x0b\x6b\x1f\xc8\x0c\x85\x03\xed\x07\x74\x99\xc3\xfe\ \x8c\x01\x0e\x88\x23\x8e\x23\x7b\x48\xcf\x4f\x6f\xcc\x7f\x60\x4e\ \x18\x85\x03\x0a\xc7\x6d\x89\x6f\x0b\x8a\xb7\x31\x02\x57\x3e\x8c\ \xe4\xde\x1c\xa9\x8d\x95\x67\x0a\x55\xa5\xc7\x29\xb5\x4c\x57\x3a\ \x78\x47\x07\x59\x0e\xac\x50\x02\x2a\xa8\x9c\x7a\x7a\xd6\x40\x91\ \x2a\xd6\x95\xe9\x40\xee\xd1\x9a\x49\xe8\xd2\x9f\xdb\x69\x43\x40\ \x64\x28\x81\xef\x20\x78\xb0\x88\x08\x0f\x6e\x1c\x93\xdb\x84\x12\ \x52\x3c\xc9\xa0\x62\x79\x91\x60\x86\x38\xd8\xb1\x07\xdc\x91\x07\ \x2d\x2b\xa0\x90\x06\xe9\x20\x8e\x21\x14\xcf\x7b\x29\x41\x05\xe2\ \xc4\xa7\x1b\x16\xe5\xcc\x28\x36\x1c\x8e\xe4\x1a\x17\x9c\xe7\x14\ \xa5\x87\xc9\xc9\x0e\x57\x2a\xa5\x23\x76\x71\x47\x07\xf5\xa2\xc3\ \x3d\xee\x61\x80\xe8\x01\x6c\x3d\x6e\x49\xd5\x6d\xaa\xc6\xba\x03\ \xe1\x27\x3f\x73\x49\x60\x60\x1c\x41\x06\x03\x18\xa1\x77\x08\x5a\ \x1b\xf0\x82\x37\x2c\x09\x69\x10\x83\x74\xd3\xe0\x18\x19\xb2\x07\ \x29\x1c\x80\x1f\xe2\xd8\xc5\x0a\x76\x41\xc2\xb3\xa0\xa2\x04\x9f\ \x11\x5e\x0b\x5d\x48\x90\x18\xca\x30\x37\x8a\x2a\x9f\x70\x8e\xd2\ \x3e\xe4\xe4\x70\x18\x33\xca\x19\x53\x8e\x82\x1c\x9d\x2d\xfe\xe0\ \x29\x94\x7a\x57\x91\x30\x61\x07\x1d\x98\x81\x1d\xec\xb8\x87\x38\ \x96\xb8\x16\x59\xe4\x41\x80\xfc\x4a\x15\x7b\xfe\x85\x16\x23\x8c\ \x12\x2d\x69\x79\x1d\xb4\x4a\x46\x97\xdb\x71\xb1\x8b\xa4\x6c\x1b\ \x7e\x6c\xf5\xa0\x89\x80\x4c\x59\x79\x54\x16\xdd\x2e\x58\x99\x18\ \xc0\xf0\x00\x52\xd8\xc3\x1b\x57\xe0\x00\x03\x90\xa7\x8e\xfd\xcb\ \x83\x31\x4f\x98\x47\x3d\x0e\x64\x17\x7c\xec\xa3\x4f\xba\x55\x2e\ \x45\xde\x68\x47\x45\x21\x57\x0e\xb1\x60\x43\xe9\x2c\x52\x3a\x0b\ \x80\x97\xa5\x22\xc9\x84\x4a\x86\x50\x1c\x23\xdc\x43\xd4\xde\x42\ \x35\xd5\x5d\x4d\x3d\x68\x69\xc8\x28\x4d\xa5\x1e\x47\xb0\x68\x4a\ \xf3\x71\x44\x1e\x7a\xd7\x3b\x52\xae\x4d\x82\xfc\x3c\xc8\x66\x2a\ \x83\x4b\x5d\x26\xef\x8c\x65\x8c\x50\x0c\x56\xe0\x1f\x7e\x18\x00\ \x9d\x06\x58\x01\x44\x23\xca\x09\xfe\xa1\x42\x16\xa8\x92\x02\x3f\ \xec\xb8\x4c\xef\xc1\x0c\x9a\x87\x02\xc5\xa2\x5c\x54\x33\x71\xe9\ \x2c\x53\x52\xc9\xd4\x35\xbf\x95\xcd\xe0\x94\x14\xa5\xd4\xcc\xce\ \x57\xd8\x65\x07\x4c\x30\x81\x1d\x3c\xf8\x43\x26\x1d\xb0\x87\xb6\ \xe0\xb3\x5f\xa7\xb3\x5a\x5a\x4c\x89\xa0\xa0\x36\x11\xfe\x60\x4d\ \x72\x8f\x14\x98\x11\x8e\x11\xaa\xa5\x6b\xfc\xc4\x12\x04\x21\x38\ \xcb\x32\x92\x71\x63\x2d\x24\x63\x81\x02\xca\x18\x20\xa0\x62\x0f\ \xb2\xb0\xa3\x30\x4b\xe0\x00\x20\x9c\x70\x05\x13\x5d\x41\xff\x50\ \x91\x35\xba\xf0\xe3\x0d\xcc\x64\x4d\x10\x52\xe7\x51\x15\xb5\x48\ \xa5\x35\x1b\x69\x20\x79\x54\x52\xeb\xe0\x50\xa4\x35\xf3\x99\x74\ \x4e\x5a\x14\xa9\x50\xe7\x5d\x44\x1c\x94\x4d\xff\xc0\x0e\x32\x0c\ \x73\x2d\x57\x63\x55\x1d\x85\x6a\x54\x7e\x16\xb5\x49\xff\xa2\xa7\ \x7e\x96\xea\x08\xf3\x0c\xb3\x80\x07\x22\xe5\x17\x8d\xa5\x86\x09\ \x15\xe8\xa0\x0d\xda\xcc\x67\x34\x63\x90\xfd\x01\xec\x33\x10\x55\ \x4b\x44\x4b\xc0\x09\xb4\xca\x62\xad\x74\xd9\x43\x0c\xde\xaa\x92\ \x18\x08\x70\xae\xbb\xe9\x0d\xa4\x1c\x25\x0c\xf6\x19\xc5\x3a\xd7\ \x04\xe4\x70\x70\x26\x2e\x6f\xa2\x94\x48\xdc\x79\x81\x1d\xec\x60\ \x86\x9b\xf2\xc0\x00\xec\x70\xc0\x30\x91\x59\x59\x51\x96\x60\x7f\ \x42\x1d\x2a\x51\xd3\xe2\xbf\x3d\xbc\xa5\xbc\xfe\x09\x87\x01\xc4\ \x6a\x9e\x15\x58\x04\x2d\x03\x7a\x50\x56\xeb\x74\x47\x64\xc9\xad\ \x22\x0b\x3a\x08\x44\x39\x31\x99\xd5\xca\xe2\x00\xfe\xa0\x90\x05\ \x46\x22\x8a\x2a\xc0\x31\x63\x05\xba\x55\x49\xf8\x7c\xfb\x5b\xe0\ \x12\x25\x00\x3c\x53\x9f\xf9\xcc\xe5\x0a\x95\x36\x18\x87\x92\x83\ \xd4\x0f\x2b\xe7\x14\x76\x29\x4d\xba\x37\x55\xec\x2e\xca\x62\x9e\ \xef\xa2\x25\xb2\xa6\x3c\xd0\x77\x51\x6c\x4a\xac\x85\x03\x17\xb7\ \xf3\x6a\xd4\x4c\x39\xd6\xf6\x76\xf1\x9d\x18\x81\xd0\x7d\x8d\x45\ \x50\xd4\xa6\xd6\xb5\x27\x54\x13\x1c\x56\x20\x0b\x29\xed\x81\x22\ \x42\x96\x4b\xec\xf8\xe1\xb6\x03\x2f\xe4\x99\x0a\xe6\x49\x14\xf7\ \x7a\x4d\x1b\x88\xb4\x51\x0d\xfe\x8d\x2b\x2a\xa5\xa9\xe4\x62\x33\ \x90\x5f\xe0\x99\x2b\xde\xb7\x0c\x0f\xe5\x83\xba\x97\x5c\x92\x29\ \x21\x4a\x62\x13\x82\xd7\xc6\x11\x59\xb1\x2c\xda\x12\x18\x2f\xe0\ \xd3\x11\xef\x74\x33\x59\xdf\x10\xd5\x8b\x40\x48\x59\xa5\x45\x23\ \x5c\xe9\xe6\xe3\x36\x40\xa6\x20\x1d\x9c\x0b\x2e\x64\x41\x11\xb5\ \xc2\x0e\x14\xb8\xdd\xa8\xf7\x0e\xf7\x64\x44\x51\x8d\x19\x61\xae\ \xdc\xb8\xd4\x37\xb9\xdf\x28\xa7\x52\x50\xd9\xf2\x83\xd9\xd7\x4d\ \xaa\xe4\xa3\xd4\x96\xe4\xc1\x75\xb1\xeb\xdd\xee\x92\x35\xa2\x64\ \xa5\x62\x9b\x4f\xbc\xea\xa3\xbe\x65\xa9\xfa\xfe\xda\xdf\xab\x2b\ \xb2\x3f\x2f\xda\xd8\x58\x39\x46\x21\xa0\xed\x73\x5f\xb2\xc6\x80\ \xd0\x6a\x8a\xd0\x91\x6f\x13\x8e\x15\x18\x84\xd1\x73\x39\xc0\x2e\ \x8e\xcd\x64\x35\xac\xc0\xc9\x93\x4e\x14\x28\xcc\x21\x94\x4c\x55\ \x78\x5c\x7f\x5d\x2e\x91\x38\x65\x9c\x44\x3a\x58\xc3\x42\x71\xc5\ \x1f\x5c\x81\x6a\x54\xb3\x43\x1c\xd8\x55\x31\x44\xc9\x8a\x20\x57\ \xd3\xdb\x84\xb3\x3e\x50\x45\xd1\xe3\x08\x59\x44\x8d\x49\x54\x5c\ \xdb\x0a\x48\xf9\x86\x15\x0c\xdc\x22\x9a\xc1\xe5\x1d\xe3\x76\x5a\ \xd2\x96\xb5\x0d\xc7\x8a\x41\x09\x6a\x8b\x8b\xd6\x06\xf9\x70\xa0\ \xb0\x09\xb3\xa7\xed\x9a\x04\x5f\x5b\x5b\x51\x36\xa9\x71\x30\x95\ \x69\x96\x4a\xe7\x52\x3b\x6a\xa4\xa6\x4c\xca\x94\x19\x81\xe3\x0f\ \x7f\xe0\x01\x0f\x42\x38\xcc\xee\xaa\x99\xd5\xec\xbd\xf9\xcd\xd9\ \xdc\xdd\x35\x9b\x67\xdf\x51\x5b\x62\x9a\x6f\x8c\xdf\x03\x95\x87\ \x8a\x27\x04\x36\x69\x33\x08\xa1\xca\xdc\x2d\xa1\xc5\x16\x5e\x90\ \x2b\xea\x05\x4e\x32\x3b\xa1\x06\x58\x6a\x09\x2a\x38\xed\x18\x58\ \xbb\xe3\x7e\xc4\x85\x14\xb0\x13\x72\xa3\x15\x25\xd4\xec\x0b\x39\ \x54\x8c\xd6\x48\x94\x67\x0a\x53\xd6\xa1\xfe\x2e\xcc\x43\x38\x84\ \xeb\x02\xdd\xde\x37\x4f\xa8\xbc\x67\xbd\x73\xbd\xe7\x5b\x2d\xe9\ \x15\x2a\x7b\xf1\x9b\x91\x12\x6c\x04\xd7\xec\xbd\xb1\x06\x49\x8b\ \xc2\x83\x47\xc6\x32\x76\x72\x5b\xb2\x82\x8c\x96\xda\xe6\xa1\xea\ \x11\xd5\xba\xc6\x7b\xeb\x75\xf1\x51\x2d\x14\x54\x69\xae\x54\x78\ \xc8\xb3\xa6\x88\x39\x2a\x99\x52\xca\xda\x41\xfe\x09\x20\x55\x92\ \xdd\xbb\xb8\x2e\xf5\xfe\x4e\xf3\x88\xd6\x9c\xc4\xde\x35\xb1\xff\ \x4e\xe5\x3f\xc0\x43\x34\xb5\xf2\xc6\x2e\xe1\x0f\xaf\x63\xc5\xff\ \x39\xa0\x81\x5e\x90\x40\x24\x74\x25\xa9\x8f\x35\x97\x1a\x6f\x0d\ \xf8\x36\x0f\x4d\xaa\x81\xa2\xc1\x28\x67\x2e\xe9\x83\x36\x07\x76\ \xad\x2b\xf5\xc5\x19\xb3\x24\x75\x60\x49\x4b\x96\x73\x0f\xb2\x97\ \xed\xfe\xd2\xef\xdd\x25\x46\x76\xa2\xa6\x74\x3f\x2a\x34\x39\xfb\ \x78\x1f\x1d\xef\xc2\xbc\x3f\xab\xe7\x5b\xa7\xc7\x7f\xc6\xf8\x02\ \x15\x28\xf1\xdc\x8d\x9d\xa4\xc5\x57\x05\xdb\xf3\xa9\x84\x5c\x49\ \xdf\xf4\xb1\x08\x76\xa4\x5d\xd0\xa4\x1e\x8f\x98\xd4\x72\xd0\xcf\ \x1c\x54\xe0\x1c\x18\x4d\x76\xcc\x94\x0c\x7c\x0e\x1d\xdc\x54\x08\ \x91\x87\x26\x9d\xd5\xde\xa1\xc5\x2e\xfe\x94\xc0\x92\x98\x98\x6c\ \x99\x52\xfc\xa9\x45\x9a\xdd\xdc\x8d\x95\x95\x30\x61\x97\xfe\xe8\ \x59\xe0\x6d\x0c\xb1\x18\x88\xd0\xd5\x8d\xf2\x01\xe0\x05\x21\x0b\ \x6a\x11\xdb\x01\x86\x48\xb5\x29\xa0\x6f\x55\x1a\xf7\xad\x9d\x25\ \x60\x20\xb7\x0d\x56\x23\x2d\xc7\x0b\x58\xa0\xd1\xac\x9e\xd2\xc8\ \x83\x0c\xd4\x54\xcc\x19\xc0\x78\x18\x80\x39\xe9\x0b\x5a\x4c\xd4\ \x44\xed\x42\x09\x46\x8f\x03\x94\xa0\xfb\xf1\x0f\xff\xb0\x9f\xbd\ \x75\x97\xe0\x45\x94\x0c\xaa\x5a\xfe\x01\x94\x56\xf9\x59\x59\xc1\ \xe1\xf0\xb4\x09\x7d\x85\x88\xff\x05\xe1\x4a\x24\x20\x11\x7a\xd4\ \x6d\xdc\x86\xdb\xed\x08\xc8\x89\xdc\x50\x84\x5c\x05\x3e\xe1\xf6\ \x2d\x00\x75\x68\x85\xa0\xd8\x01\x1d\x8c\x9f\xbb\x91\xc1\x39\x39\ \x02\xfb\x9d\x05\x1c\x91\x07\x26\xa2\x42\x79\x90\xa1\x58\xad\xe0\ \x59\xd0\x1e\xb1\x25\x14\x44\x8d\x61\x4e\xe9\x4f\xbc\x95\xd6\xb1\ \x60\xd5\xd1\xd9\xa0\x56\xe9\xe1\x01\x86\x40\xd7\xf5\xa1\xcc\xe0\ \xc2\x01\x00\x0d\xdb\x61\x0a\xca\x19\x85\x54\x2c\xc0\x1c\x3c\x61\ \x38\x29\x8d\xd2\x7c\x47\x4d\xb1\x83\x23\x0c\x80\xbb\xed\x14\x32\ \xee\x01\x2a\x80\xe1\x25\x96\xa0\xfe\x33\x96\xa0\x09\x9a\xa0\x26\ \x1a\x40\xff\xcc\xdf\xd1\xb1\xe1\x30\x65\x12\x79\x10\x5c\xfd\x59\ \x15\x00\xda\x89\xb1\xb5\x22\xa0\x0c\x8b\x0d\xba\x22\x88\xc4\xa2\ \x2c\xce\x22\x28\x30\x83\x53\x28\x21\xc8\x15\x87\xf5\x3d\xc5\xf6\ \x55\x0a\xfd\x2c\x4d\x3e\xd8\x41\x18\x84\x40\x62\x1d\xa3\x23\xf0\ \x03\x32\x46\x0f\x33\xc6\x51\x58\x99\xa0\x33\xaa\x57\xfc\xd5\x11\ \xed\x45\x94\x28\x0a\xd3\x12\x69\xa3\x29\x76\x23\x83\xec\x1f\x1c\ \x10\xda\xd3\x99\x16\x88\xf8\x1f\xde\x44\x8f\xb4\xb9\x90\x3c\x78\ \x4f\xf4\xa5\xe3\xb5\xfd\xe1\x01\x0c\x8d\x20\x9a\xd4\xda\x15\xc5\ \xda\x5d\xe0\x04\xa6\x4b\x3e\xac\x46\x10\xa8\xd0\x1f\x80\x10\xf5\ \x84\x83\x3f\x9a\x5f\x7a\x09\x24\x4e\xc2\x91\xfe\x94\x50\x31\x59\ \x63\x42\xc6\x60\x63\x01\xe4\xc0\x25\x54\x38\x6a\x55\x8e\xfd\x98\ \x55\xf9\x20\x5c\xd9\x47\xde\x44\xc2\x1f\x6c\xa4\xf7\xc8\x43\x47\ \xba\x0c\x1f\x82\x64\x48\xd2\x22\x73\xad\x9d\x56\x7a\x53\x23\x6d\ \x5f\x10\xc1\x4b\x47\x06\x01\x13\xf0\xc0\x1a\x30\x03\x33\x38\x02\ \x33\xb8\x51\xf5\x54\x0f\x18\xd2\xde\x25\x0a\x93\x33\xc6\x91\x26\ \xce\xd6\x4f\xd2\x9e\x09\x36\xfe\xa4\xaa\x41\x54\x1b\x60\x44\x1b\ \x24\xa5\x84\x08\x5e\x5f\x12\x8f\x2d\x85\x08\x1c\xb0\xc3\xca\x18\ \xc0\x01\x4a\xa5\x54\xb2\xc6\x10\x5a\xa5\xf4\x51\xcd\x1a\x94\x14\ \x2e\x6a\xa5\x12\x76\x65\x10\x71\x87\x0c\x50\xe1\x23\xfe\x81\x39\ \x98\xc3\x01\x98\x65\x3f\xf6\x23\x3a\xb5\x25\x1c\x09\x24\x69\x8e\ \xe1\x59\x9c\x95\x59\x29\x64\x3a\x40\x94\x4e\x0e\x13\x76\x6d\x63\ \xef\xa1\x90\x0f\x4e\x64\x0c\xa4\xc3\x41\x04\xa6\x28\xcc\x49\x1b\ \xac\x40\x3a\x40\xa5\x65\x88\x43\xb3\x98\xc3\x9f\xb8\x8c\x62\x0e\ \xc4\x54\x12\x84\x62\x76\xe4\x54\xc6\x15\x3a\x3a\xa6\x0c\x45\xd1\ \x01\xdc\x88\x56\x5e\x60\x23\x71\x25\x57\xbc\x80\x55\xd8\xcf\x38\ \xb1\xc3\x1a\x1c\x40\x67\x3e\xcf\x59\xf2\x83\x68\xee\x01\x33\x96\ \xe6\x2e\xe0\x4b\x5b\x3a\x80\x17\xae\xa6\x7b\xf6\x66\xcd\x71\x42\ \x63\x61\x17\x5d\x3a\x9d\x8e\xc9\xa1\x28\x2a\x1c\x1c\x70\x82\x45\ \xad\xc0\x18\xed\xc2\x29\x9c\x84\x1e\xc9\x03\x30\x02\x23\x88\x30\ \xa7\x3c\xc0\x22\x74\xca\xe2\x6d\xac\x01\x0f\xb4\x1d\x2f\x46\xe8\ \x96\x81\x41\x2f\x0a\x11\x58\x7c\x02\xf9\x95\x65\x67\x7e\xa6\x59\ \xee\xc1\x59\x8e\xe6\x79\xfe\x06\xe4\x5b\xc2\x11\x5d\x42\x14\x6e\ \x46\xd4\x25\x8e\xa1\x26\x7d\xe2\x6c\xe6\x66\x85\x4c\x44\x1b\x10\ \x1a\x44\x19\x44\x5f\x5a\x49\x3a\xd4\x96\x17\x94\x40\x9b\xc0\x81\ \x38\x90\x84\x38\x88\xc2\x80\x4a\x65\x81\x62\xc2\x62\xb6\x86\x3c\ \x3c\xe7\x82\xfa\x21\xd5\xfc\x01\x51\x50\xa6\xdb\x35\x29\xfd\x14\ \xd1\x55\x54\x12\x3b\x0c\xc0\x1a\x98\x43\x28\x44\xc2\xf3\xd0\x24\ \x3a\x55\xcf\x16\x86\x68\x7a\x9a\x66\x44\xb5\x26\x6e\xc6\xa8\x6b\ \x3a\x63\x50\x2e\x63\x42\x16\x08\x42\x88\x02\x1c\x88\x02\x7e\x9d\ \x28\x8c\x4e\x44\x3a\xa8\x55\x7f\x32\x08\x8f\x36\x4b\x48\xb0\x03\ \xa4\x05\x8a\x1a\x08\x29\x30\x1e\xe7\x0b\x21\x69\x92\x2a\x69\xb6\ \x55\xa7\x75\x1e\xc7\x1c\x2c\x4d\x11\x91\x13\x0f\x30\xc3\x95\x7a\ \xe6\x67\x76\x29\x3f\xa4\xa5\x39\xd9\xe4\x79\x92\xa9\x89\xea\x65\ \xb1\x95\x95\x7c\x82\xa1\x26\x2d\x11\x8b\xce\xe1\x0a\x10\x9a\xb1\ \x99\xea\x1c\x3a\xdc\x6d\xf2\x67\x6d\xc9\x02\xb3\x55\xc8\x0a\x30\ \xc3\x48\x84\x42\xf7\x3c\x1f\xa0\x4e\x61\x72\x7a\x41\xa1\x42\xe7\ \x6d\x28\x47\x57\x56\xe0\x52\x00\x91\x24\x61\x82\x0e\x50\x92\x4d\ \x79\xa7\x59\x26\x2b\xfe\x3f\xd0\xa4\x59\x56\x2a\x3a\x99\x53\x26\ \x11\x53\x5b\xfa\x66\x08\x94\x2a\x51\xde\x66\x6b\x3a\xa3\x26\xc5\ \xdf\x30\x95\xe0\x4f\x16\x08\x45\xca\xe8\xd3\x59\x46\x9d\x5a\x94\ \x2c\xa0\x42\xa9\x4a\x48\x1b\x00\x68\x48\x28\xc3\x1a\xe8\x00\x26\ \xe8\x21\x81\x6e\x45\xa0\x36\xe6\xae\x5a\xe5\x6d\xf0\x83\x3e\xf4\ \xa2\x2f\x36\x61\xbc\x44\x97\x23\x42\xe2\x1a\x94\x65\xb2\x7e\x26\ \x3f\x18\xac\xa5\xa2\x13\x30\x31\x63\x3a\xc0\x51\x6b\xfa\x26\x51\ \xa2\x68\xfc\x35\x54\x6c\x52\x23\x18\x96\xa8\x89\x96\x69\xb1\xdd\ \xe6\x8f\x31\x06\x27\x48\x5d\x09\xb4\x26\x1a\xb5\xc1\x1b\x60\x88\ \x39\x3c\x00\x1d\x6c\xe0\x72\x26\xa6\xd2\x3c\xa1\x56\x70\xdc\xbd\ \xe2\xeb\x6d\xe4\x83\xba\x7c\x85\xfd\x74\x18\x13\xcc\x5d\x86\x9e\ \xa5\x59\xb2\xd1\x01\xfc\xac\xc1\x7a\x28\x30\x81\xe8\xb4\xe2\xa6\ \xa6\x9e\xe9\x12\x39\xd4\x32\x6e\xab\x19\x72\x42\x7d\x26\x84\xa9\ \x6e\xac\x9b\x56\x94\x45\x71\x82\xc3\xc5\x09\xb2\x59\x29\x0f\xa4\ \x6c\x4a\x00\x6a\x72\x4e\x9b\x62\x62\x82\x82\xc6\x6c\xa1\xde\x06\ \x0f\xfc\x62\x91\x48\x65\x10\x84\x01\xfe\x28\x49\xbb\x0d\x80\xb2\ \x02\xed\xcf\x3a\xfe\x2b\x33\x28\xec\x97\x06\xe4\xc3\xa2\x28\x18\ \x5e\xaa\x4d\x4e\x2c\xfb\xf5\xcf\x6c\xcd\x56\x8c\x4e\x24\xa7\x12\ \x1a\x7f\xa2\x2b\xb3\x29\x04\x90\x22\x9b\x38\x38\x68\x08\x14\x27\ \x72\x12\xe8\xd7\x46\xe5\x62\x4e\xee\x91\x92\xed\xbd\xfe\xa1\x3e\ \x30\xa2\xa0\x1e\xc9\x58\xb0\xc3\xeb\x89\x03\xdc\xc2\x2d\x33\xc8\ \x6d\xa5\xf2\x43\xa5\xd6\x6d\xdd\x3a\x94\xb4\xfa\xa6\x6f\x9e\x67\ \x26\x9d\x13\xeb\xa2\x93\x45\x51\x23\x5d\x96\x29\xe1\x12\x5a\x3a\ \xa0\x9f\x1d\xbd\x69\x10\x88\xc2\x6e\x32\xc6\xba\xa2\x5a\x08\x2c\ \xd3\xe4\x32\x53\xa0\x12\x84\xa4\x61\x6e\xe6\xde\x86\xdb\x14\xa9\ \x0c\xe4\xa3\x25\x85\xae\x59\x02\x6d\xc1\x96\xee\xcf\xa6\x65\xe9\ \xd6\xe4\x1e\xac\xc3\x12\x81\xe9\xde\xa2\x53\x5a\x2e\x2b\x8c\xed\ \x01\x3f\xf0\x1b\xe0\xce\x56\x6b\x46\xed\x89\xf6\x9e\xef\xfa\xae\ \x1a\x88\x42\x6f\xea\x6c\x08\x98\xa3\x4a\x10\xa8\x56\x10\x44\x55\ \x32\xef\xae\xa6\x0a\x27\x48\x65\x18\xe4\xe3\x10\x90\xe5\x1a\x88\ \xae\x38\x98\xa5\x67\x26\x6b\xf5\x5a\xef\xe9\x2a\x6c\x43\x3d\xb0\ \x26\x75\xaf\xc2\xa6\xa5\xf9\x56\x30\x79\x99\xef\xb9\xa2\x82\xfa\ \x16\xdb\xe0\xfe\xb6\x41\x3a\xa4\x43\x8c\xc6\x00\x90\x06\xc1\xe0\ \xc6\x6f\x10\x34\xec\xa8\x14\xaf\x91\x16\xa9\xc6\x49\xee\x40\xd8\ \x2b\xff\xc6\xec\x6d\x78\x41\xa8\x80\x07\x3b\xa4\x0c\x4e\x89\x10\ \xdc\x5a\x6f\x5a\xca\x6d\x1b\x9d\xee\xea\x2a\x2c\x3a\xad\x83\x10\ \x57\x30\xea\x1e\xb1\x2c\x9c\xef\x05\x57\xad\xfa\xae\x6f\xb1\xe1\ \x26\x1a\xa9\xab\x08\xff\x6e\x1b\x54\xe9\x10\x3c\xee\x81\x0a\xaa\ \x72\x4e\x9b\x0c\xc0\x6c\x0c\xcb\xf0\x6d\x90\xc1\x10\xcc\x1d\xee\ \x80\x2e\x3b\x18\x00\xdc\x3e\x8f\x0f\xcf\x2d\x3f\x0c\xc0\xc1\xce\ \xad\xf9\x0e\x40\x11\x2b\xac\x3f\x1e\x71\x1d\xf3\x1b\x1e\x9f\xab\ \xd3\xfa\xe6\xfa\xc6\xe8\xd5\xc6\xef\x44\xbe\xa9\xef\x9a\x69\x3a\ \xd8\x8b\xb5\x48\xee\xf1\x76\xad\x0b\x8d\xed\x17\xf3\xef\x1f\xee\ \xc1\x00\x1b\xe3\xeb\xed\xc2\x01\x63\xef\x1a\xff\xf0\xe9\xb2\x31\ \xea\x1a\x71\x1d\x9b\xef\x11\xe3\x82\x12\x9f\xeb\x12\x64\x70\xfa\ \x72\x02\x08\xf7\xa0\xfc\xf6\x25\x90\x4e\x24\x27\x80\x61\x18\x2c\ \x6e\x4a\x4c\x61\xd7\x2e\xe7\xd7\xce\x6b\xf2\x56\x8b\x54\x12\x6a\ \x23\x83\xe4\x1f\x8a\x03\x4e\x9d\x27\x11\x2b\xab\x1d\xb7\x91\x1b\ \x03\xb1\xfe\x3f\xd6\xad\x1b\x8d\x2f\x27\x23\xf1\xf9\x6a\x70\xff\ \x2c\x01\x2a\x8c\xf2\x12\x38\xed\x1f\x03\x6f\x5f\x9a\xaa\xe2\x7a\ \xb0\x38\xd0\xc3\x8f\xb2\x06\xfe\xc6\xeb\xfd\x12\x69\x72\xda\xf2\ \x56\x30\x22\xa0\x48\xe5\xf2\xee\x72\x23\x47\x11\x33\xb8\xed\x2e\ \xa0\x31\x3a\x9d\xee\x11\x63\xf2\xf8\x76\xb2\x3d\xd7\xf1\x27\xf3\ \x83\x17\x78\x95\x45\x45\xb3\x45\x2d\x01\x40\x5b\xed\xef\x12\x44\ \x2a\xef\xa6\x41\xfb\xf1\x0a\xf0\x83\x39\x0c\x40\xad\x86\x33\x91\ \xce\xb2\x38\x47\x6e\xe4\x7e\x33\x2d\xb3\x70\x84\xec\xaf\x3a\xc7\ \xf0\x1f\xf2\xc3\x79\x9a\x5f\x3c\xcf\x73\x1b\x19\x71\x11\x6f\xb2\ \x1d\x1f\xf1\x3e\x5b\x94\x3e\x5b\xd4\xd4\xc9\xc2\x12\x80\x70\x1b\ \xc4\x6f\xfc\x02\xaf\x09\xff\x2e\x09\x7b\x70\x6f\xa6\x83\x01\x1c\ \x80\x38\x50\x86\x45\xab\x81\x38\x17\xa9\x90\x22\xa8\x37\xe3\x2a\ \x91\x16\x28\x41\xc0\x70\x46\xef\x72\xbe\xa2\xb0\xf7\x7a\x32\x3e\ \x1f\xb1\x48\xc3\x18\x97\x42\x75\x12\x9f\x34\x79\xe9\x73\xaa\xfc\ \xb3\x2a\xc7\x74\x1b\xc8\x34\x4c\xc7\x74\x3a\x38\xed\xfa\xc6\xea\ \x1a\xa8\x30\x22\x2b\xe7\x59\x23\xe7\x4f\x1f\xef\xbc\x22\xe8\x37\ \x57\xfe\x86\x2e\x27\x75\x92\xfe\xe1\x3b\x7f\xb4\x3e\x97\x34\x3e\ \xef\xb3\x3f\x7a\x01\x33\x9f\x2f\xea\x82\x72\x6d\xa5\x74\x40\xbb\ \xb4\x1f\xc7\xa8\x57\xc7\x6f\x8c\x82\xf0\x07\xfb\x66\x5f\xee\x81\ \x39\x88\xc3\x54\x76\xc5\x0b\x8c\x33\x73\xce\xf2\x44\x47\x6e\x81\ \x8e\x73\xd2\xc8\x03\x52\xcb\x75\x46\xff\xe1\x49\x83\x32\x5e\x43\ \x35\xea\xf2\x75\x49\x83\x32\x2d\x0a\xd0\xf9\xae\x74\x4b\x7f\xb0\ \x29\xdb\xb4\x41\x2f\xae\x35\x17\xb6\x4d\xfb\xb1\x38\x84\x02\x3b\ \x10\x04\x26\x3c\x17\x5b\x27\x72\x65\xab\x75\xe7\x2c\x27\x22\x62\ \x42\x5c\x7b\x76\xff\x6e\x74\xa2\x25\x31\xea\x62\x32\x5f\x9b\xaf\ \x68\xe7\x6b\x6a\xaf\x93\xb9\xca\x82\xd3\x3a\x6d\x40\xc7\xe8\x40\ \x13\x74\x2a\x77\xb0\x6d\xf6\xe6\xba\x1a\xc0\xb1\x05\x41\x39\xf7\ \x36\x5a\x87\x2d\x0b\x03\x6a\xe7\x6c\xc5\xf6\x89\x43\x71\x1b\xf7\ \x71\x6f\x74\x3e\x03\xf6\x5d\xd3\x22\x28\xdb\x84\x4d\xa0\x76\x4a\ \x4f\x1d\x40\x4f\xf3\x6b\x1f\x36\xf0\x5a\x73\x41\xff\x77\x20\x07\ \x6f\x3a\x84\x41\x9b\xb4\x75\x2d\x9b\xf7\xbc\xba\x6c\x44\xa3\x35\ \xbd\x0a\xa9\x0c\x60\xb4\x7b\x7b\xf6\x1f\x3e\xb7\x4d\xe4\x33\xf6\ \xfe\x44\x02\x7e\x57\xf5\x5d\xeb\xf7\x60\xa7\x83\xfc\xca\x34\x90\ \x6e\xf7\x7f\x03\xb8\x41\x67\x77\x10\xb4\x5b\x43\xff\x69\xa0\x56\ \x2e\x8b\x0f\xa9\x05\x6e\xb6\x5b\xe3\x6a\x33\xb5\xf7\x84\x83\x31\ \x74\x5f\x38\x5f\xa3\xf6\x7d\xaf\x76\x60\x7b\xb8\x6b\x83\xf0\x7f\ \x77\x35\x91\x07\xf8\x40\x94\x38\xf0\x0e\x4b\x1b\x40\x6a\xfd\x2a\ \x67\xd2\x14\xf5\x72\xd2\xab\x38\xb7\x2c\x57\x54\xe0\x5a\xff\x76\ \x47\xdd\xb8\x96\xeb\x44\x14\xa9\xb6\x69\x63\x0f\xf6\x80\x32\x5f\ \x4f\x37\x7f\x13\xb6\x61\x6f\xb7\x1f\xff\xf7\x91\x1f\xb9\x89\x7f\ \xb5\x1a\xec\x82\x39\x34\x39\x70\x03\x23\xe7\x66\x76\x94\x2b\xcd\ \x21\xa6\x37\x5a\x7b\xf1\x96\x6b\xf9\x1f\xe6\xf1\x49\x9b\x2b\x40\ \xb3\x34\x27\x04\xf4\x6b\xd7\x76\x89\x17\x36\x2c\xc7\xf4\x88\x03\ \xb8\x9b\x03\xe8\x1a\xac\x78\xd8\xb6\xec\x5a\x4f\xe1\x95\x97\x73\ \x7a\x2f\x27\x1d\xd8\x78\x9f\x63\x2e\x68\x8f\xb2\xa0\xef\xb7\xa8\ \x4b\xf3\x34\x7f\xb0\x62\xd3\xb6\x61\xb3\x46\xa3\x23\x39\x2c\xef\ \x42\x48\xc8\xb9\x83\x0f\x69\x81\xa6\xb7\xa5\x67\xa7\xad\xd3\x2b\ \xb6\x74\xba\xae\x73\x79\xa2\x79\xd5\xf9\x06\x76\xab\x92\xb9\xfe\ \xa9\xbb\xf6\xa1\x1f\xb6\xaa\x0f\x39\x92\x37\x53\x48\x88\xc3\xfd\ \x4e\xb4\xac\x63\xba\xcb\x4e\x36\xb4\x23\x22\x57\xf0\xf9\xae\xf7\ \x39\x68\x63\x35\x28\x85\x7a\x6b\x87\xf5\x60\x1b\xbb\xaa\x33\x7a\ \x88\xab\xb9\x1a\xb4\x41\x48\xac\x01\x2e\x93\x73\x39\xab\x77\xd2\ \xf0\x2b\x22\x5a\x60\xae\x5f\xbb\xbc\xff\x43\x85\x4f\x5d\x4a\xb3\ \xf4\xa8\xf3\x77\x7f\xbb\x0c\xab\x1b\x7b\x08\xec\x49\x28\x14\xa7\ \x6f\xff\xf4\x90\x26\xcd\xbb\x5b\x60\x05\x72\xfa\xbc\x7f\xf1\x0c\ \x4f\xb7\xc3\xb3\xf4\x07\x83\x3b\xa0\x34\x7a\x4c\xab\x44\x3a\xb4\ \xeb\x81\x6b\xb1\x83\x7b\xed\xac\x1f\x7c\x05\xa2\xc8\xc2\x87\x7c\ \xbd\xeb\xb3\x87\xb7\x74\x57\x4b\xfc\xc4\x57\xfc\xa2\xbf\xf9\x9e\ \x28\xc3\x81\x67\xba\x65\xb3\x38\x23\xd2\xb9\xc7\x7f\x82\xc2\x87\ \xfc\x3a\x83\x36\x75\xbb\x74\xb2\x7b\x0f\xc5\xaf\xfc\x1e\xb4\x6b\ \x43\xe3\xef\xa2\xd2\x78\x2c\x3f\xb8\x7a\x23\x7c\x95\x63\x0f\xce\ \x37\x3d\x50\x24\xda\x99\xa3\x3c\xbf\x57\xbc\x4a\xc8\x6a\x48\x1c\ \xdb\xad\xf2\xab\x45\xab\x7b\xd2\xc7\xf8\xa6\x3b\x3d\xd8\xd3\x7b\ \x56\x8b\xb8\x39\xf2\x83\xd0\xcf\xf2\x82\xe7\xef\x9f\x2a\xfe\x38\ \xa0\x22\x7c\x05\xda\x46\xd8\x87\xfd\x1f\x72\xc2\xca\x3f\x5f\x10\ \x1c\x40\x48\x84\x82\x91\x52\x39\x51\xaf\x3b\xae\xca\x43\x95\x03\ \xeb\xcd\xc7\x7d\x52\xdf\x06\x27\xf4\xe9\x22\x37\x0b\xe1\xdc\x2f\ \x73\x06\x2a\x95\xbb\x7b\x7a\x67\xe7\x1c\x30\x03\xe1\x57\xbe\xd8\ \x7b\xc1\x2e\x1c\xa0\x28\xf4\xe8\x07\x84\x02\xa4\x55\x34\xcd\xf3\ \x2b\xa6\xcf\xc1\xd7\x5b\x7e\xe5\xff\xa1\x7f\x32\x59\x10\xac\x40\ \x80\x7e\xc0\x10\x30\xd3\xad\xd2\xab\x56\x58\x20\xd3\x9b\xbe\xe9\ \xdf\x86\x81\xbd\x15\x09\x8b\x43\x24\x28\x03\x3b\xac\xfc\x38\xfb\ \x69\x94\xdb\x72\xe9\xdb\xfe\xed\xa7\x4a\xee\xbb\x10\x1c\x8c\x8a\ \xbd\xbc\x8d\x0b\xaf\xfd\x21\x43\x3f\x81\xc6\xbb\xf1\xdb\x3e\xea\ \x23\xbe\x9c\x64\xf7\x50\x4f\x65\x5b\x1f\x32\x84\x0f\x7e\xf5\xfb\ \x39\x2e\x2c\x99\xbc\x62\x42\xd1\x93\x37\x7a\xf3\x43\xf8\xaf\x3f\ \x4e\xcc\x30\xac\x3f\x9f\xf9\x5b\xf9\x79\xdb\x32\xfe\xe6\x03\xf8\ \xb3\xbf\xf8\xe3\x42\xea\x1f\x98\x66\xc7\x78\x44\x7f\x33\x40\x60\ \xc2\x24\x0f\xd3\x1e\x5c\xff\x10\x26\x54\xb8\x90\x61\x43\x87\x0f\ \x21\x46\x94\x38\x91\x62\x45\x8b\x17\x31\x66\xfc\x87\xfe\x8b\x63\ \x0c\x35\x1f\x41\x86\x14\x19\x92\xa0\x3c\x79\x1f\x09\x62\x7a\x31\ \xe7\x45\x4b\x81\x29\x07\x9a\x5c\x71\x50\x63\x4d\x9b\x37\x71\xe6\ \xd4\xb9\x73\x21\x47\x59\x21\x46\x06\x25\x39\x70\xa0\x1a\x93\x26\ \x05\x62\x62\x99\xf4\xa5\x49\x83\x3c\xa1\x46\x95\x3a\x95\xea\x44\ \x9f\x70\x84\x0a\x25\xf8\x22\xa6\x49\xa3\x5b\x5d\x32\xc5\xb4\x8c\ \x66\x55\xb3\x67\xd1\xa6\xc5\x88\x0b\x15\xd6\xac\x22\x05\x72\x6d\ \xea\x15\x26\xd3\x17\xfc\xd4\xe6\xd5\xbb\x37\xaf\xcf\xb7\x6a\x8a\ \x1a\x55\xc9\xf2\x85\x57\x90\x75\x31\xe5\x2b\xcb\x97\x71\x63\xc7\ \x36\x39\xe2\x92\xe5\x76\xe8\x27\xae\x5b\xc1\x04\x58\xc0\xd2\xb0\ \x51\xc0\x25\xf9\x2d\x7e\x3c\x9a\x74\x69\x87\x1c\x51\x05\x09\x99\ \x74\x25\xcb\x39\xc3\x86\x81\x99\x33\xfb\xf2\xd1\xa3\x21\x44\x9b\ \xd6\xbd\xfb\x31\x47\x2f\x06\xbe\x0e\x76\x3d\xc7\xd2\x97\x2f\x9b\ \x67\x13\xee\x7a\xf2\x29\x6f\xe7\xcf\x19\x47\x36\x60\xa7\x65\xf2\ \x17\xcb\x96\x11\x4f\x4e\x5b\x65\x52\x79\x70\x72\x43\x17\x3f\xbe\ \x2a\xc7\x3d\xd9\x69\x63\xbf\x6e\xbd\x65\xfb\xa4\x78\xc9\xc7\x97\ \x3f\x35\x32\x3b\xda\xd7\xc7\x12\x76\xdf\xfe\x05\x6a\x9d\xf0\xf3\ \x01\x0c\x30\xa3\xc8\xc4\xc9\xe7\xba\xf5\xb8\xaa\xae\xbd\xd9\x42\ \x13\xd0\xc1\x07\x35\x32\x8f\x8e\x95\xf8\x6b\x2d\x39\x26\xfe\x83\ \x50\xc3\x0d\x19\xe2\x88\x1d\x95\xe4\xaa\x2e\x39\x8e\x38\x2c\xd1\ \xc4\x0e\x39\xda\x85\x3a\x10\x93\x23\xeb\xc4\x17\x61\xdc\x08\x97\ \x3d\x44\x64\x30\xc6\x1b\x4f\xe4\xc8\x92\xe4\x3e\xc9\x10\xc7\x1f\ \xe7\xe3\x08\x14\x76\x3e\x69\x10\xc8\x23\x35\xc4\x05\x14\x1f\x91\ \x6c\x72\x3c\x12\x6f\x0c\x08\x00\x21\xf9\x04\x09\x00\x00\xff\x00\ \x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\xff\x40\x86\x50\ \xff\xff\xff\xff\xff\xff\x1d\x47\x1e\xff\xff\xff\xd8\x88\x8d\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc8\xf7\xff\xff\ \xff\xff\xff\xff\xde\x93\xb1\x60\x89\x3d\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd4\x48\x8e\xff\ \xff\xff\xff\xff\xff\x9c\xa7\xb9\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x57\xa9\xe5\x13\x28\xa8\x08\x68\x9b\xd7\xc9\xe7\x10\x27\x68\ \xff\xff\xff\xd2\x10\x11\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf7\ \x8a\xb9\xff\xff\xff\xff\xff\xff\xf7\xa8\xb8\xb6\xa9\xb6\x9a\xf2\ \xfc\xff\xff\xff\x4d\x68\xf8\x13\x2a\xe0\xb8\x89\xb6\xd9\xe8\xf8\ \x22\x45\xe8\xff\xff\xff\xff\xff\xff\xfa\xc8\xe8\x98\xc8\xfa\xff\ \xff\xff\x33\x6a\x1c\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x7c\x88\xac\x91\x4b\x54\x93\x68\xf7\xef\x69\x4f\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xf7\xb2\xf0\xf9\xe8\xf0\xd9\x91\xf3\xff\ \xff\xff\xff\xff\xff\xfb\x8e\x5f\xff\xff\xff\xb6\xc8\xf2\xff\xff\ \xff\xb6\xb3\xf2\x6b\x6a\x24\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x6b\x68\xeb\xff\xff\xff\x39\x56\xf5\xff\xff\xff\x7a\x8a\x74\xff\ \xff\xff\x0a\x18\x62\x95\x93\xf4\xff\xff\xff\x11\x38\x67\xff\xff\ \xff\xf3\x48\x44\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x97\xb2\xf9\x16\x78\xc5\x74\x89\xf8\x91\ \x2a\x2d\xd7\xd8\xee\xda\xae\xf7\x5c\xb8\xeb\x7b\xe9\xfb\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xfb\xfd\xfa\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb3\x68\xeb\xb7\xd8\xfa\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xfa\xd8\xec\xff\xff\xff\xff\xff\xff\xfa\xb8\xbd\x32\x49\ \xeb\xf4\x99\xb5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xaf\x0f\x15\xc4\xe4\x8c\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x32\x47\x95\xff\xff\ \xff\xff\xff\xff\x78\xc8\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x6e\x58\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xa4\x1a\x67\xb8\xf3\xfc\xaf\x34\ \x5c\xff\xff\xff\xff\xff\xff\x3c\x1a\xdc\x75\x13\xa8\xff\xff\xff\ \x58\x93\xea\x90\x6f\x65\x78\xb3\xf8\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xfa\xec\xba\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x71\x0e\x45\xf7\x91\x8d\xff\xff\xff\xff\xff\xff\xf5\x78\x5d\ \x41\xb6\xed\x5d\x8b\x74\x7e\x9d\x5b\x1c\x82\x9c\x9a\xd8\xfb\xce\ \x38\x31\xd8\xd7\xab\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x4f\x5a\x9d\xff\xff\xff\xff\xff\xff\xff\xff\xff\x57\x75\x26\ \xff\xff\xff\xff\xff\xff\x11\x78\xa8\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x58\x75\xfa\x19\x37\xdd\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x91\x79\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x69\x7a\xf4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xee\ \x78\xa7\xff\xff\xff\xff\xff\xff\x73\x78\x9e\x92\x5b\xf8\xb0\x78\ \xf5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xb5\x58\x32\xff\xff\xff\xb5\x58\xa7\x7e\xd6\xfa\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8c\x29\ \xc0\xfc\xb8\x8b\x7e\xfa\xfc\x96\x97\x50\xde\x97\x93\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd8\ \xfb\xfc\xff\xff\xff\x6e\x78\x28\xe9\x59\x34\xff\xff\xff\x7e\x97\ \xf9\xff\xff\xff\xff\xff\xff\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\ \x48\xb0\xa0\xc1\x83\x08\x13\x2a\x1c\x38\xa2\xe1\x88\x85\x10\x23\ \x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\x38\x71\x44\x3e\x27\ \x67\x6e\x3d\xe4\x48\xb2\xa4\xc9\x93\x28\x53\xaa\x8c\x38\xe2\x5d\ \xbe\x97\xa3\xc6\x8d\xbb\xb5\xb2\xa6\xcd\x9b\x38\x73\x72\x1c\xf5\ \xc0\xe5\xcb\x77\x0f\x3e\x8e\x72\xa8\xb3\xa8\xd1\xa3\x48\x4b\xbe\ \xcc\x17\xd4\xc9\x4b\x27\x4e\x9d\x8e\x6b\x98\xb4\xaa\xd5\xab\x56\ \x6f\x39\xc1\x01\x75\x29\x54\xa8\xc1\x7e\xbe\x1b\xd7\x65\x24\xd6\ \xb3\x68\xd3\x72\x84\x8a\x03\x47\xbe\x77\xef\x68\xbd\x0c\x3a\x97\ \x16\xdc\x15\xed\xe0\xc5\x52\xcb\xb7\xaf\xdf\x83\x23\xc6\x05\x83\ \x0a\x97\x50\x50\xb8\x71\x97\xf6\xa4\x95\xea\x4d\x11\x3c\x35\x88\ \xfe\x9d\x4c\x39\xe9\xb8\x7c\xc1\xc2\xbe\x23\x04\xf7\x01\x2d\x42\ \x9c\x69\xb5\x75\x62\x97\x50\x91\x37\xa8\x51\xbb\xea\xd2\xa5\xb2\ \xeb\xd7\x35\x2f\x73\x7d\x8b\xf8\x27\x21\x5c\x2b\xf2\x11\x70\xfb\ \x6e\x49\xe3\xd4\xa9\x8b\xc4\x8a\x65\x16\xb6\xf1\xe3\x15\x47\x7c\ \xe5\xba\x58\x6e\xe9\x54\xa9\xde\x39\x21\x90\xcf\x2e\x2e\xe0\xc0\ \x8b\x14\xd9\xa3\x02\x08\xf2\xef\xe0\x13\xfe\x8e\xc0\x41\xa0\xfc\ \xd7\x97\x76\x37\x37\xe6\x3c\xfb\x41\x86\xdf\xd8\x53\xe1\x3a\xad\ \x1d\x8f\xe4\xf0\xf8\x61\x8f\x38\x53\xbe\x7f\x7f\xa8\x3d\xdd\x86\ \x1a\x2e\xf9\x70\x85\xc3\x3b\xb8\xc4\x80\xdd\x63\x06\xac\x00\x9f\ \x6a\xac\xe5\x27\x21\x65\xca\xf9\x47\x00\x16\x04\xb4\x52\x1e\x62\ \x0e\xbe\x91\x4a\x6e\xd3\x39\x81\xe0\x75\xc0\xc9\x87\xc7\x83\xa8\ \x3d\x36\xdc\x5e\x13\xb6\x88\x96\x72\x5f\x4d\x47\x00\x7f\x18\xe6\ \xb3\x82\x74\xef\x0c\xe8\x12\x57\x4e\x58\xb1\xc2\x7c\xd8\x05\x99\ \x1d\x6a\x2a\xec\xd1\x9a\x8b\x48\x22\xe5\xd1\x60\x5e\x41\x85\xe1\ \x28\x37\xba\x75\x5d\x2a\x19\x7c\x44\x9e\x53\x08\xa6\x72\x9a\x90\ \xc1\x05\xa9\x9d\x0a\xf7\x25\x29\xa6\x4a\x98\x69\xe6\x93\x4b\x5f\ \xc1\x45\xd8\x0a\x9c\xf9\xd4\x15\x5c\xb8\xc4\xb9\xa5\x90\x73\x06\ \xa9\x25\x6b\xc5\x8d\xa9\x27\x47\x2f\x85\x45\x17\x62\x69\xa2\x29\ \xe2\x8d\x70\x59\x01\x95\x15\x88\xbd\xf3\xa3\x96\xf4\x71\x49\x27\ \x1e\x45\xa8\x10\x8b\x77\x7b\x56\x8a\xd1\x38\x74\x15\xe8\x16\x6d\ \xd2\xbd\x75\x63\x88\x6a\x46\x45\xdb\x28\x56\x70\xfa\x63\x87\x8e\ \xc6\xd7\x98\x76\xdb\xa9\x70\xa4\xa5\xfe\xb0\x42\xe4\x43\x75\x41\ \xfd\xd7\xd3\x99\xef\xb4\x23\x9d\x53\x05\x12\x00\x60\xa2\x8a\xba\ \x39\x0a\x82\x75\xa6\x8a\x5a\x2a\x78\xe0\x91\x62\x0d\x49\x8c\xf0\ \x6a\xac\xd0\x0a\x34\x82\xaf\x4f\xc9\x88\xe5\x53\x6f\xb5\x19\x55\ \x7f\xb4\xd1\x62\x57\x06\x6a\x2e\x35\x6c\x9c\xca\x7a\x69\x27\x3c\ \x0e\x9e\x06\x02\x08\xca\xb2\x46\x53\xb4\xb1\xb6\x82\x21\x5b\xbe\ \xbe\xf9\x51\x57\x3f\xc2\xe3\x92\x74\x67\x70\x15\x57\x7a\xe9\x9d\ \xb7\x6f\xae\x28\x9e\x56\xf0\x0a\xf0\x90\x88\x07\x2e\x35\x6c\x29\ \xe9\xb3\xf0\x8e\x29\xaf\xaf\xff\x61\x09\xd7\xbd\x8a\xb6\x43\xe8\ \xc5\x6c\x89\xe8\xad\xb7\x6e\xd6\x8b\x98\x9c\xf1\xd5\x59\x44\x2a\ \xec\x9e\x86\xc7\x1e\x40\xa2\x06\x02\xc2\x60\x46\x2c\xe6\xb4\x18\ \x66\x68\xb3\xaf\xc1\x9e\x89\x0b\xb0\xfa\xea\x86\xf3\x8d\x76\xd9\ \xa5\x1b\x16\x84\xbd\x33\x2c\x94\x24\x3a\xa6\xa5\x97\x8c\xe2\xb2\ \x6e\xb9\x8f\xad\x00\xc2\x7c\x45\xac\x46\x95\xcc\xf9\x69\x35\xe3\ \x60\x04\x84\x90\xe1\x81\x39\x23\x4d\xa8\xbe\x2b\x7c\xfa\x73\x5c\ \x85\x49\xe7\xf5\xb0\xd5\x8e\x82\x0b\x7c\x28\x06\xf7\xf2\x1e\x53\ \x2b\xfb\x18\x6e\x65\xaf\x30\x67\xfe\x0d\x40\x94\x85\xf5\x77\x23\ \x00\xc1\xa1\x74\x37\x8b\x08\xd7\x28\xf9\x24\xbc\x31\x5c\x1a\xef\ \x8a\x76\xda\x72\xfd\xea\xd2\x28\x84\x95\x9b\x6a\x11\xe8\xfe\xd8\ \xf0\x63\x68\xe0\xf1\xf2\x28\x50\xa2\x81\x5d\x1f\xab\xfd\x6d\xdc\ \x08\x6c\xbe\x2d\x5f\x3b\x5b\xcd\x88\xc3\xb0\x9f\xe6\x8a\x8b\xbe\ \x77\x11\x22\x5f\xa7\x8f\xa3\x4d\x4b\x50\x20\xff\xe4\xc4\xb0\x28\ \x42\x97\x5d\xde\x65\xcf\xb7\xf0\xc2\x2b\x8c\xb2\x88\x0f\x3d\x58\ \x9e\xda\xca\x2a\x98\xee\xda\x2d\x70\x36\x06\xdd\x8d\xba\x9d\x21\ \xa2\xc6\xbf\xff\x38\x7b\xae\xde\xef\x8c\x3b\xc0\x20\x3f\xe0\x99\ \xf9\xbe\xbb\x5d\x67\xc1\x1f\x22\xbc\x02\xa4\x4e\xaf\x9b\x3c\x16\ \x18\xea\xed\x68\x11\x7d\xe7\x29\xfd\x59\x1c\x0a\x0f\xdd\xce\x94\ \x83\x4a\x3b\x00\xd8\x8e\xd5\x31\x0e\x41\x08\xf3\xc9\x5c\x10\xf3\ \x31\x6f\x79\x26\x3d\xd2\xf1\xd1\xd2\xb8\x74\xb2\x1b\xfd\xc8\x73\ \x52\x4b\xde\x85\xb0\xd0\x0a\x6d\x88\xee\x72\x7c\x03\x82\xfe\xf6\ \x97\x94\x44\xfd\xe6\x7f\xdc\xab\x1c\x2e\x06\xf8\x3f\xda\xe1\x88\ \x63\x6f\x42\xdb\x0a\x82\xe6\xc0\x42\x89\xa5\x65\x5e\xc2\x60\x3b\ \xa6\xf6\xb2\xb2\x8d\x62\x62\xfe\x8b\xe8\xc5\x3b\x8a\xe5\x28\x57\ \xf4\x01\x62\x24\x34\x0a\xf5\x8c\xf6\x8e\xff\xe1\xe6\x6d\x3b\xf3\ \xc1\xef\xa0\x23\x1f\x2d\xdd\x0e\x24\x6f\x42\xdc\xbd\x98\x52\x98\ \xa0\x9d\x4f\x2c\xbb\x7a\x8f\xb9\x4e\xe6\xb4\x1f\xad\x6b\x0f\x65\ \xeb\x81\x13\x7a\x01\xba\x5e\xf4\xa2\x09\x44\x74\x14\x1e\x56\x60\ \x80\xab\x25\x51\x27\x1a\xc2\xd2\x8f\x10\x33\x40\xdc\xe4\xc3\x07\ \x08\xf2\x90\x20\x51\x03\x0f\x27\xcc\x6b\x58\xb5\x79\xcb\x5b\x68\ \xf8\x40\xb9\xdc\xaa\x54\xf9\xf0\x51\xd2\x52\x23\x1f\x76\x39\xed\ \x89\x52\x7b\x19\x0c\x7a\x00\x83\x0c\xc0\xa0\x17\xcd\x33\x56\x11\ \xd0\x40\x86\x1e\x68\x63\x11\x21\xc0\xc2\x16\x06\x61\xc7\x3b\xae\ \x64\x04\xf2\xc2\xc2\x19\xc4\xf5\x3b\x04\x35\x4e\x80\x0a\xc2\x0e\ \x2e\x9c\x90\x47\x60\x01\xcb\x91\x8d\x7c\x40\x66\x82\x41\x0b\x2b\ \x14\x93\x29\xa8\x4a\x0d\xde\x18\x56\x46\xe2\x35\x01\x06\x9b\xcc\ \x82\x29\xb5\x01\xc7\xe0\x14\x21\x06\x20\x58\xc2\x12\x9a\x90\x81\ \x5e\xa4\x92\x7e\xe0\xa4\x5f\x2b\x5a\x31\x08\x57\xae\x64\x1c\x1b\ \xac\xd7\x8c\x0c\xb7\x47\xca\x21\x4d\x78\x94\x5c\x01\x2f\x71\x96\ \xa8\x8d\x61\xe6\x27\x0e\xfe\x34\x9f\xf9\x76\x27\xcc\x60\x58\x01\ \x17\xf7\x08\x0e\x2e\x60\xf0\x0e\x76\xc9\x6f\x05\x9b\xdc\xa4\x27\ \x33\xc0\xc9\x1e\xf4\x20\x03\x68\xb8\x26\x37\x4d\xd9\x8b\x45\x74\ \xed\x9b\xe1\xcc\xa8\x38\xc9\x69\x4e\x93\x04\x4e\x9e\x04\x98\xd5\ \x19\x52\x49\x4f\x5d\x71\xe8\x47\xc5\xda\xd9\x74\x66\x19\x2c\xe2\ \xc5\x25\x28\x8b\xf9\x57\x23\x99\x12\x0c\x02\x10\x33\x69\x45\xc0\ \x0d\x0c\xde\xd7\x43\x18\x58\xc1\x94\xa3\xc8\x42\x06\x56\xc0\xcd\ \x0c\x38\x43\x1b\x3d\xc8\x82\x36\xb6\xa0\xd1\xa6\x3a\x35\x9c\xe3\ \x6c\x65\x47\x2b\xd2\x05\x0f\xed\x0c\x1e\x9c\xb9\x10\x16\x11\x84\ \x07\x5d\x11\xb4\x8f\x13\xb4\x2a\xe5\x70\xd6\x47\xbc\xfd\x92\x10\ \xf9\x34\x5f\x00\x82\xb1\xd6\xf2\x1c\xe8\x83\x8e\xe9\xe1\x41\xf3\ \x96\x01\x69\x36\x01\x04\x19\x90\x82\x1b\x31\xfa\xd4\xbe\xfa\x75\ \x04\xac\x9c\x2a\x55\x29\xf9\x3f\x90\x98\x67\x88\x6f\xc0\x85\xa1\ \xa0\x64\xc1\xb7\xa5\x28\x4e\xfa\x1a\x57\x9c\x70\x23\xb4\xea\xbc\ \x23\x03\x8c\x0c\x06\x0e\x34\xdb\x16\xff\x8c\xc2\x37\xa8\x41\x83\ \x05\x0f\x0a\x02\x34\xbc\xec\xa8\x52\xd0\x06\x5f\xfd\xca\x5a\xbf\ \x8e\xb3\x9c\x82\x85\xfe\xc8\x08\xf6\x10\x1f\x02\x91\x67\x96\xde\ \x23\x9c\xe1\x5c\x92\xcc\x63\x35\x76\x61\xb8\x79\x47\x4d\x9d\x70\ \x2b\x5a\x60\xb6\x98\x9a\xb5\x50\x3a\x47\xf1\x41\x34\x78\x92\x5d\ \x9e\x6b\x42\x44\xd1\xd0\x83\x45\x60\x61\xb5\xad\xcd\xae\x5f\xcf\ \x30\x94\xd8\x8a\xc7\x4e\x84\xb0\xd6\x6e\x41\x47\x5e\xa3\x79\x2a\ \xac\x8e\x71\x1a\xab\x4e\x65\x28\xea\x00\x85\x29\x0e\x6c\x9d\x5b\ \xfb\x43\x3f\x1c\x0c\x55\xb4\x2b\xc8\x00\x08\xae\x89\x06\xd3\x2e\ \xe1\x94\xda\x0d\x70\x5f\x43\xe0\x01\x70\x7a\x80\x0a\x3d\x58\x81\ \x3e\xa4\x1a\xdb\xaa\x96\x88\x33\xd3\x69\x05\xd7\x6a\x09\x2e\x26\ \xde\x08\x71\x8b\x0a\x8e\x15\x73\x3a\xd9\x5d\x7e\x85\x5b\x91\xe4\ \xda\x7f\xc8\x53\x1e\xaf\x39\x21\xc1\x4b\x40\x43\x0c\x58\xb5\x84\ \xea\x0a\xf8\xc5\xda\x0d\xc1\x22\x90\x91\x81\x26\xe0\xc9\xbb\xff\ \x88\x93\xff\x08\xa1\x2f\x19\x95\x47\x7b\x8a\x2a\x9b\x15\x10\xc5\ \x31\x44\xad\x20\xa2\xa9\x88\xc1\x7c\x62\xa0\x25\x5c\xa0\x01\x80\ \x50\xb9\x90\x89\x87\x89\x83\x54\x9a\xd8\x57\xda\xe8\x45\xd7\x08\ \xd0\x8b\x15\xac\xb8\xbf\x20\x20\x83\x6a\x61\x4c\x66\xed\x6e\x61\ \x16\x64\x40\x83\xfe\x2b\x62\x81\xc4\x3b\x16\xc6\x76\x1e\xe2\xcc\ \x47\x5c\xd7\xa3\xb2\xc1\xe4\x5e\x50\x21\x15\xd2\x72\xea\x3d\x83\ \x95\xf1\x5e\xed\xf5\x15\x57\x7a\x21\xa3\x9a\x95\x87\xd0\x16\x4d\ \x34\x35\xb1\x59\x4a\xeb\x96\xf9\xd1\xad\x0d\x41\x2f\x48\xa1\x20\ \x3c\xa8\x20\x7a\xe6\xec\xd7\xad\x6e\xc3\x69\x97\xa0\x8f\xc8\x86\ \xea\x91\x21\xaf\x5b\x67\x45\x69\x29\x06\x37\x42\x43\x2a\xee\x81\ \x8b\x25\x94\xad\x4a\x41\xfe\x8a\x36\xb6\xe2\x84\x59\x5b\x28\x1f\ \x5a\x76\xa3\x37\x17\xa1\x8d\x15\x64\xa1\x17\x90\x0e\x36\x6b\x43\ \xb0\x85\x5e\x74\x20\xa2\xa8\x81\xd4\x82\x47\x18\xb1\x7e\xd1\xaa\ \x3a\x6c\x32\xee\x8f\x32\x00\xae\x21\x7f\x44\x1b\xd2\x01\xa7\x13\ \xca\x76\x59\x05\xe5\x34\x03\xd7\x51\xf2\xa2\x96\xf9\x21\xc4\x0c\ \x19\x51\x19\x68\xef\x1a\x83\xd1\x0b\x76\x07\xc3\xa2\x32\xce\x32\ \x76\x85\x4d\x6f\x70\x6e\x61\x0b\x41\xb4\x41\x2e\x53\x53\x83\x1b\ \x63\xcd\x23\x4e\x09\x8a\x66\xab\xe3\xad\x0c\x10\x02\xb3\xda\x98\ \x85\x36\xce\xad\x8d\xe5\xe6\xb7\x47\x24\x52\xb2\x8a\x5b\xed\xe4\ \x80\xe2\xc6\x34\xcd\x4c\x37\xa9\xd2\x6d\x05\xca\xb1\x1b\x07\xbd\ \xc0\xc1\x22\xfe\x16\xc1\x54\xfa\x95\x3c\xc0\x21\x98\x77\xbd\x9d\ \x4a\xec\x33\x2f\x81\x4b\x6b\xbe\x06\xb3\xf7\xa4\x8f\xdd\xbd\x45\ \x98\x5c\xe1\x27\x2d\x66\x31\x8b\x90\xb7\xbb\x17\x56\xd0\xc6\x60\ \x52\x29\x22\x10\x48\xa7\xd7\xda\x89\x81\xab\x71\x41\xed\x25\x28\ \x48\xe9\x71\x72\x8c\x69\x2f\x0c\x15\x6d\x74\xf2\x1d\xda\x10\xb9\ \xd6\x2b\x7a\x72\x8d\x4a\x1a\xa3\xa0\xb4\x82\xa3\xb5\xb1\x2e\x18\ \xa8\x7c\xe5\x29\xa7\x5f\xcb\x17\x31\x0b\x3a\xa4\xaa\x06\xed\x60\ \x51\xac\xf4\x01\x34\xb4\x11\x3c\xb9\xe5\x51\x3b\x01\x16\x11\x0c\ \x6d\x08\x5d\xcb\xbd\x56\xfa\xb9\xbd\x3c\x4a\x6a\x1b\x97\x6a\xd9\ \x4c\xf1\x97\xf1\x3a\x8a\x8a\xd6\x32\xbf\x56\xd0\x32\x01\x14\x5e\ \x0b\x92\xcf\x7b\x11\xfb\x05\x41\x0f\x3c\xd0\x0b\xd1\x15\x61\x09\ \xbd\x98\xc6\x07\x63\xa0\x8d\x95\x3b\x75\x0b\x7c\x25\x76\x2f\xf8\ \xb1\x6f\x0a\x6a\x47\x24\x33\x97\xd0\x08\x62\x81\x56\x7d\x16\x26\ \x03\x0f\x90\x32\xfd\xb8\xdc\x6e\xa4\x3a\x34\xe8\x5e\x7e\x03\xaa\ \x7b\x10\x8c\x1e\xa0\xe1\x1e\x4a\x6f\xfa\x8a\x95\x5e\xda\xb2\x75\ \x4e\xb4\x86\xf2\x81\x36\x46\x31\x7d\x6a\xf7\xfc\x03\xbd\x08\x40\ \x2f\x50\xfe\x0f\x4e\x19\xf7\xc2\x03\x8b\x98\xc6\x96\xd0\x60\x86\ \x26\xe4\xb2\x08\x64\x20\xc3\x9c\x1c\x6d\xfa\x70\xa6\x3c\xf5\x1f\ \x58\x44\x00\xd4\x6f\x2c\xe0\x1c\xb1\xcd\x12\xea\xc2\x0c\x15\xe8\ \x99\x68\x6f\x10\x07\x56\x40\x6d\x35\xa6\x4d\xdb\xd4\x04\x8a\x27\ \x7c\x4d\x90\x65\x56\x80\x6c\x29\xd6\x5f\x2a\xa6\x74\x74\xd0\x04\ \x0e\xb5\x5f\x6f\x80\x06\x30\x80\x54\x2b\x30\x7d\x27\x96\x01\xa4\ \xd0\x03\xdb\x37\x72\xdf\x14\x02\xc8\xc0\x0f\x64\xa0\x4d\x64\x90\ \x05\x2b\xf6\x06\x74\x90\x05\x2f\x87\x1a\x31\x50\x82\x01\xf5\x06\ \x4b\xd0\x75\xed\xa7\x4a\x69\x17\x4e\xf8\xe6\x72\x71\x74\x3f\xb1\ \xe0\x0a\xb1\x87\x1c\x5d\x80\x56\x65\xa2\x59\xa4\x81\x56\xe0\x04\ \x51\xa7\x11\x03\x74\xa0\x62\xfd\x15\x03\x4e\x78\x4d\x74\x90\x01\ \xa7\xa4\x0d\x8a\xf7\x80\x68\xb0\x04\x74\x10\x03\x68\xc0\x4d\x48\ \x85\x6c\x9a\xd7\x6b\x20\x70\x81\xa0\x24\x54\xb3\xc0\x7d\xee\x37\ \x0d\x19\xa0\x6f\x15\xb8\x04\xfa\x46\x07\xe9\x07\x57\x2f\x78\x7e\ \x3d\x50\x83\x19\x65\x65\x37\xa8\x76\xc4\x36\x0b\x70\x55\x7f\xc0\ \x51\x03\x7b\x20\x77\xf8\x31\x02\x71\x42\x17\x0f\x20\x23\x0f\xd0\ \x6a\xfe\x9a\x65\x05\xf4\x91\x7c\x75\xd5\x04\x77\xe5\x80\xa6\x25\ \x66\x6e\x34\x80\xeb\xb2\x85\x64\x20\x5d\x2d\xd6\x03\xfc\xb0\x02\ \x59\x38\x4a\x59\x00\x03\x06\x28\x81\xd4\xe7\x46\xa8\xd4\x54\x32\ \x46\x05\x19\xc0\x5f\xcb\x47\x06\xfc\xd0\x82\xc2\x07\x57\x74\x00\ \x6c\x74\xd8\x5a\xf7\xb6\x08\xf4\xc7\x87\x74\x52\x04\xce\xf2\x83\ \x7f\x31\x02\xf2\x31\x43\x76\x41\x1e\x58\x40\x0b\x4e\xd8\x84\x57\ \xd8\x4d\x24\x77\x5d\xde\xa7\x0d\x35\xd6\x5f\x4b\x50\x4a\x0e\x25\ \x4d\x59\x70\x89\xd4\x28\x54\x66\xa0\x0d\xfc\x50\x57\x97\xb8\x4d\ \x42\xb5\x2e\x4a\xb5\x7d\x67\x67\x60\xad\x98\x4b\x4a\xc7\x82\x31\ \x70\x0f\x57\x48\x07\xf4\x41\x06\xe1\x38\x8b\x29\xb7\x05\x1e\xa0\ \x7a\xae\x88\x8b\x74\xe2\x0a\x7d\x83\x1c\xfa\x00\x1d\x9c\xd1\x13\ \xba\xe1\x04\x62\x84\x80\x5a\x36\x60\xbd\x40\x4d\x0d\xc8\x8d\x59\ \x26\x05\x9a\x28\x4d\xfc\xd0\x03\xd7\x68\x06\x59\xa0\x54\x66\x90\ \x01\x27\xc8\x82\x20\x90\x05\xa5\x98\x5d\x1e\x30\x0d\x25\xe8\x84\ \xda\x94\x85\x4a\xc7\x0f\xfc\x70\x7c\x68\x20\x05\xb3\x38\x60\xf8\ \x56\x8a\x32\x66\x7c\xf4\x68\x2c\x78\xe0\x0a\x3e\x08\x1b\x8b\xd2\ \xfe\x26\xc7\x44\x0b\xd7\xf1\x79\x0d\x17\x63\x3f\xb0\x04\xda\x81\ \x8e\x66\x30\x72\xa1\xa7\x89\x66\x60\x06\x0b\x39\x0d\xce\x80\x5a\ \xce\x60\x06\x49\xb5\x4d\xb2\x18\x60\x07\xe6\x02\x66\x40\x06\x59\ \x88\x1a\xf7\xb0\x04\x66\xa0\x91\x4b\x90\x05\x34\x58\x92\x19\xe5\ \x01\xf1\xe8\x01\x27\x09\x4a\xea\xb8\x92\xc6\xe2\x87\x94\x32\x19\ \x2d\x51\x3c\x41\xa6\x28\x84\x20\x7c\x56\xb0\x41\x02\x06\x4a\x20\ \xe0\x18\x74\x80\x0c\x24\x47\x05\xc8\x20\x0a\x20\xf9\x90\x59\xc0\ \x0f\x55\xa9\x57\xa1\xf7\x94\x16\xf9\x68\x7c\xf0\x94\xc8\x56\x04\ \x74\xc0\x0f\xd3\x68\x06\x5a\x39\x6c\x04\x16\x44\xf7\x46\x85\x62\ \xc9\x87\xaf\xb7\x8b\x7c\x01\x64\x6a\x89\x0b\x84\xc0\x26\xfd\x65\ \x05\xed\xe8\x57\xbd\xa0\x93\x53\x59\x95\x2e\xd0\x0b\xc8\x30\x0d\ \x78\x09\x92\x66\x70\x94\xbd\x40\x05\xa4\x29\x05\x7d\x39\x72\xc9\ \xe0\x93\x20\xa8\x5d\xe1\x07\x95\xcb\xa7\x85\xfc\xb0\x98\x91\x46\ \x72\xbc\x09\x99\x91\x89\x8b\xc2\x71\x8f\x68\x21\x61\xb4\xc0\x26\ \x97\xd9\x6a\x6d\x19\x6c\xbd\x40\x06\xc5\x68\x03\xfc\x40\x05\x1f\ \xe0\x02\xd3\x10\x94\x55\x59\x9a\xc8\xd0\x0b\x2e\x90\x9d\xbd\xfe\ \x20\x94\xfc\x30\x0d\xd3\x50\x9a\x42\x69\x06\x2e\xc0\x07\x05\x96\ \x5d\x5b\x20\x05\xe3\xe8\x18\x73\xa8\x9b\xac\x05\x7e\x23\x87\x7a\ \xda\xe0\x76\xbf\x09\x9c\x35\xb0\x66\x58\x31\x08\x58\x10\x0c\x9b\ \x91\x5f\xc5\x89\x9c\x6e\x09\x69\x8b\x70\x64\xc2\x67\x03\xd7\x79\ \x97\x2e\x20\x0a\xdf\x99\x9d\xdf\x89\x0c\xd9\x29\x9d\x20\xc9\x97\ \xd3\x19\x94\x0b\x4a\x05\xc9\x20\x60\x52\xb0\x04\xe8\x48\x92\xec\ \xe9\x57\xef\x58\x72\x5b\x90\x8a\xf3\x29\x96\x7b\xd0\x6f\x55\xa1\ \x21\x36\x92\x0a\xa1\xd1\x1b\x19\x80\x03\xa6\x37\x0d\x4e\xf7\x79\ \xa4\xc0\xa0\x76\x69\x06\x0c\xea\x02\x32\x9a\x9d\x65\x60\xa3\xc8\ \xb0\xa3\x3c\xda\xa0\xda\x59\xa1\x01\xb6\x08\xce\x80\x0c\x9d\xb9\ \xa1\xd7\x15\x4e\xbd\x60\x03\x21\x3a\x9f\x60\xc2\x8b\x1e\xd5\x0a\ \x07\x42\x08\xe2\x66\x5c\x84\x90\x9c\xa6\xf7\x46\x01\x75\x98\x2e\ \x40\x05\xa2\x40\xa3\x3b\xea\x02\x65\x40\x05\x39\x7a\xa3\x54\xe0\ \xa3\x5b\xaa\x9d\x65\x4a\x05\x2f\xc0\x95\x46\x0a\x69\x6c\x7a\x7a\ \x7a\xb8\xa4\xbf\x49\x1c\x45\x31\x02\x21\x60\x23\x9c\x86\x56\x3f\ \x62\x05\x74\xf8\x46\xd7\xb4\x04\xa2\x30\xa3\x0c\x2a\xa3\xfe\x32\ \xc0\x07\x63\x4a\x05\x54\xc0\x07\x88\x3a\xa8\x35\x9a\x9d\x32\x4a\ \x05\x32\x50\x9e\x6d\x0a\x63\x5e\x59\x9e\x77\x68\x72\x20\x2a\xa7\ \x2b\x49\xa7\x3a\x31\x08\xd4\x51\x9c\xb7\xb1\x04\x06\x07\x2e\xb3\ \xf8\x46\x5f\xd6\x9d\xa2\x20\x0a\x0d\x0a\x9d\x32\xb0\xa8\x5b\xca\ \x07\x8a\x5a\xa6\x3c\x9a\xa6\x88\x0a\xab\xe4\x29\xa9\x93\x2a\x60\ \x23\xe7\x95\xef\x99\x51\xbd\x90\x01\xad\xa7\xa9\xa9\xb2\x07\x0c\ \xf6\x4a\x65\x22\x4c\xee\x01\x8c\xdc\xf4\x9f\xa6\xb7\x08\x4d\x80\ \x1a\x74\x40\xa3\x09\x8a\xa8\x32\x50\xad\x87\x0a\xa9\x85\xaa\xa3\ \xc8\x50\xab\x32\x90\x0c\x5c\xe9\xad\x6b\x9a\xab\x30\x36\x72\x41\ \x34\x90\xec\x07\x4e\x8a\x28\xac\xf5\xd7\x07\x4e\x5a\x12\xa8\x23\ \x1a\x6e\xf5\x40\xbd\x21\x4f\x25\x29\x05\x6e\xf7\x79\xd5\xb9\xa5\ \xd5\x5a\xad\x65\xba\xa5\x89\x0a\xab\xda\xaa\xaf\x91\xba\xa6\x1e\ \xe0\xad\x58\x50\xb0\xb8\x2a\xae\xac\x45\xae\xda\x57\x51\x19\xb5\ \x05\xf6\xa3\xae\x14\x24\x42\x45\xa1\x0f\x55\xf2\x7f\xc6\x44\x0b\ \x09\x86\x06\x7c\x5a\x92\xa2\x87\x80\xe2\x89\xa8\xd4\xca\xaf\xb5\ \x2a\xb2\xda\x4a\xad\xc9\xe0\xad\x1e\x40\xb0\x07\x1b\xfe\x9b\x09\ \xab\xb0\x4f\x55\x6c\xe5\x4a\x8a\xbe\x1a\x97\x12\x2b\x24\x91\x61\ \x14\x36\x95\x4e\xa4\x51\x4c\x01\xe8\x6a\xcc\x6a\x7a\x21\x90\x05\ \x2e\xc8\x0f\x8f\x2a\xa6\x90\xca\x07\xad\x0a\xab\xfd\xea\x9d\xdb\ \x5a\xad\xe0\xca\x95\x04\xbb\xb2\x7c\xb0\x08\x2f\x0b\xb3\x1a\x75\ \x92\x41\x34\x0b\xd7\xb9\x5a\xa3\xb0\x83\xea\x9a\xb3\x3a\x31\x02\ \x19\x45\x00\xc5\xf9\x00\x20\x27\x80\x8d\x57\x92\x1e\x50\x4d\x68\ \x90\x05\xd3\xea\xaf\x85\x5a\xa8\x22\x5b\x9a\xaa\x0a\xa9\x29\xbb\ \xa6\x04\x3b\xb5\x1e\x20\x03\x8b\x40\x9e\x58\x6b\x92\x33\x5b\x0b\ \x59\x19\xb1\x37\x9b\x1a\xed\x5a\x12\xb1\x04\x4e\xc4\x24\x1a\x18\ \x82\x28\x0f\x95\x3c\xe7\x6a\x7a\x93\xc0\x9c\x2a\x98\x05\xfe\x2a\ \xb0\xb1\x8a\xa8\x8e\x9a\x9d\x7c\x90\x0c\x2f\x90\xb2\x52\xcb\x95\ \xa3\xeb\xb7\xac\x79\xb5\x81\xab\x76\x5a\x5b\x51\x76\x48\x3f\x3e\ \x60\xb3\x43\x22\xac\x89\x4b\x12\x8b\x5b\x5f\x4e\x71\x21\x58\xd6\ \x77\x43\x95\x3c\x4b\x69\x7a\x17\xfa\xa7\xdb\x2a\xb7\x4c\xdb\xaf\ \x5f\x8a\xb2\x2f\xa0\xb7\xa4\x7b\xbc\x05\xbb\x08\xb1\xa9\xa8\x56\ \x9b\xba\x2c\x77\x6f\x39\x88\x4a\x17\x89\x05\x30\xfe\x00\xb6\x4b\ \x6a\x1f\x45\x81\x9f\x65\xcb\x6e\xb8\x6b\x53\x5c\x31\x0b\xc6\x45\ \x6d\xca\xd3\x7e\x83\xf9\x72\x2f\x28\xa3\x9f\x9b\x0c\xb1\xea\x02\ \x52\xd0\xa3\x4a\x0b\xba\x2b\x7b\xbc\xc8\xeb\xad\xc9\xe0\xb7\xf8\ \x8b\xba\xd0\xdb\x72\x27\x99\x4a\x1a\xe2\xba\xb0\x7b\xb3\x75\xb4\ \xbd\x5e\x07\xbe\xfe\xd1\x0b\xb8\x36\x18\x0f\xe5\x6a\x86\x82\x6f\ \x97\x0a\x63\x7c\xe0\x9d\xea\x37\x4a\xd3\x90\xa6\xb6\x9a\x9d\x76\ \x59\xa3\xb5\x4a\xbf\xf3\x7b\xbc\xf6\xbb\xbc\xf8\xfb\xb7\xfa\x9b\ \xba\xef\xe7\xc0\xf8\xd6\x0a\xdf\x64\xb8\xea\x5a\x04\xf8\xa7\x12\ \x23\x00\x0f\x2c\xea\x7e\x20\x47\x5f\xbb\xd1\x03\x41\x87\x03\xd8\ \xb6\x02\x4b\x90\x4d\x69\xb4\x49\xba\x36\x09\x09\x4b\xba\x42\xcc\ \x95\x9f\xc0\x07\x52\xd0\x04\x59\x30\x09\x54\xf0\xac\xf7\x40\x06\ \xfe\xaa\xa8\x93\xe0\xa3\x22\x6b\xbc\xc7\xbb\xaf\x29\xab\xb2\x57\ \xbc\x08\xad\xda\x0b\x93\x00\xa4\xd0\x5b\x87\x78\x08\x82\x19\x42\ \x3f\xa3\x10\xac\x9a\xca\xae\x45\xd1\x05\x68\x30\x6a\xe1\xe4\x2b\ \xde\xbb\x7b\xc6\x14\x74\x4e\x30\x0b\x56\x90\x62\xa1\xa5\x4d\xbe\ \xe6\x77\x48\x3c\x09\x8d\x39\x09\x52\xe0\x0c\xfe\x0f\xe9\x0c\xd3\ \xf0\xbe\xd3\x90\x05\x77\xb5\x04\x2e\xc0\x95\x2e\x30\x5d\x66\x10\ \xc5\x4a\x7c\xa6\x1a\x8c\xad\x57\x7c\xbf\x85\x1a\xbf\xa2\xeb\x95\ \xf7\xbb\x08\x65\xda\x0b\x80\xfb\xc5\x4f\x95\x76\x32\x16\x02\xad\ \x10\xa0\x92\x49\x8f\x03\xac\x13\x6a\x5c\x7a\x65\x8b\x54\xf0\x8a\ \x21\xbd\xf0\x00\xed\x66\x51\xbf\x7a\x8e\x2e\xa8\x85\x2b\x30\x81\ \x5b\x98\x05\x52\xf0\x03\x0e\x89\x98\xac\xd8\x9d\xa5\xf9\x90\x64\ \x20\x05\x2f\x40\x3f\x2f\x40\x7f\x64\xb0\xad\x37\xea\xbe\x72\x5b\ \xad\xb6\xaa\xb4\xff\xda\xad\xa2\x9b\xc5\x7e\x0b\xab\x8b\xf0\x09\ \x23\xec\xc9\xf4\x63\x51\xf4\xb3\x02\x37\x5b\x03\x22\x31\xb6\x52\ \xb7\x02\x62\x07\x4e\x04\xc0\x50\x01\x40\x52\x38\xcc\x65\xfe\x91\ \x01\xf2\x09\x1c\x31\xe0\x88\x9e\x97\xcb\x7b\x19\x94\x88\x69\xb4\ \xe3\xa9\xc4\x06\x4b\x3f\x1e\x60\xaf\x15\x88\xb9\xfd\x8a\xc1\x23\ \x3b\xc5\x04\x9d\xa8\xd2\x6c\xbf\xd5\xfa\xb7\x55\x5b\xb5\xd8\xac\ \xcd\x1c\x9a\x72\x39\x22\xb1\x31\x23\xce\xc1\xb1\x02\x8e\xf6\xab\ \xde\xa4\x77\x5d\x53\x33\x21\x50\x7c\x4e\xe7\x84\xd9\x11\x83\x2a\ \xd8\x04\x88\x39\x8d\x48\xcc\x8a\x15\x9c\xfe\xb7\x92\xfa\xad\x28\ \x28\x83\xca\xbc\xa3\xd8\xda\xaa\xae\xba\xaa\xd1\x7c\xd0\x29\xab\ \xc5\xb6\x7a\xcd\x93\xf0\x7d\x0e\xfd\xd0\xcc\xf5\x9b\x44\x84\x3f\ \xb3\xbb\x11\xae\x10\x24\x19\xd0\x35\x0f\x15\xc3\xa6\xb8\x77\xb3\ \xe0\xce\x4b\x28\xd2\xd9\x41\x4a\x7b\xb9\x8d\xdc\x28\x05\x7c\xf0\ \x09\x79\xab\xbc\xc5\xfc\x02\x54\x80\xbe\xc9\xec\x9d\xe3\x79\xc5\ \xad\xaa\xa3\x02\x6d\xd0\x36\x7d\xc5\x4a\xfb\xcc\x88\xfa\x09\x3d\ \x3d\x60\xf5\xa3\xae\xf6\x31\xd4\x1a\x51\x03\x5e\xd2\x04\x9c\xd8\ \x62\x5a\xa6\x72\x04\x10\x00\x19\x80\x85\x2a\x96\x84\x4e\xb8\x62\ \xc8\x77\x95\xdd\xe9\x90\x0e\x89\x0c\x9f\x5b\xc9\x5b\x3d\xbf\x58\ \xf0\x02\x66\xf0\x74\xc9\xac\xaf\xa1\xcb\xaf\x07\x5a\xbc\xb5\xba\ \xbe\x6b\x6a\xbf\xcd\x9b\xa8\x7f\x4b\x05\x56\xfb\xa6\x42\x5b\xa4\ \x31\x76\xa4\x58\xf0\xb5\xc2\xaa\xbd\x45\x51\x5a\x20\xcd\x25\x2a\ \xb6\x04\x62\xb7\xd1\xf6\x16\x9f\x81\xcd\x91\xcf\xb8\x91\xa1\xe5\ \xc4\x9f\xcb\x07\x02\xcd\xb4\x57\x4d\xbf\xbe\xcd\x07\x3a\x29\x83\ \xe3\xd9\xad\x1e\x5c\xad\xa5\xb9\xa0\x18\xac\xb4\xd2\x9c\xd9\x29\ \x4b\xb7\x22\xfb\xb9\x08\x9b\xcd\xe3\xfe\x3a\x72\xf5\x76\x83\x04\ \xa0\x92\x9a\xfa\x92\xa8\x8c\x85\x59\x08\xd5\x74\x62\xcb\x56\x50\ \x72\x49\x9a\x84\x74\xb0\x84\x27\xe8\xcb\xc8\x16\x03\x59\xd0\xdb\ \xba\xfd\xbe\x2e\x10\xc5\x52\x00\xa9\xbe\xad\xd5\x2d\x1d\x03\xa2\ \x20\x03\xa1\x0b\xba\xf7\x5b\x06\x77\xf9\xa5\xfe\x1a\xd3\xf2\x8b\ \xd6\x9b\xcb\xd9\x2f\xc0\xbc\xa0\x4d\x6f\xe0\xe7\xb0\x42\xfb\xab\ \xd8\x2b\x4a\xd7\x24\xd7\x1a\x01\x03\x58\xa8\x84\xb4\x2c\x99\x12\ \xc8\x8c\x0a\xe2\x86\x25\x48\x07\xcf\x38\x8d\xd3\x68\xde\x66\xc0\ \x07\x2f\x30\xd6\x4e\x2b\x9d\xd3\x10\xd6\xa0\xeb\xdb\xc9\x80\x0c\ \x1f\xcd\x0f\xf8\x7d\xbf\x94\xec\xa8\x5f\xfa\xa8\x73\x8b\xdf\xf9\ \x3d\xbc\x9c\x7d\xd0\x7c\xd0\x0b\xfb\x5c\x6f\xe4\x2a\xdd\x30\x56\ \xc6\x62\x99\x84\xa2\xea\x81\x10\x8e\x11\x23\x60\x00\xe5\x6d\x0b\ \x74\xc0\xe4\xe5\x8d\x7c\xf5\x47\xcb\x83\xcd\x97\x06\xf8\x8c\x4d\ \x90\x7e\x0f\xc9\x97\xe2\xc9\xbe\x54\x30\x9d\x5a\x0e\x92\x15\xbc\ \xc1\xc7\x7b\xc1\xe6\x47\x95\x24\x4b\xd9\xb2\x1a\xc9\x49\x8b\xd9\ \xec\xab\xdb\x9e\xfb\xb9\xcc\xab\xd0\xcf\x6b\x7a\xe0\x67\x86\x2b\ \xd7\x79\xa2\xe4\x18\x7f\x1a\x74\xfe\x19\x8d\x05\x81\xa5\x13\x40\ \xb0\xe4\x36\x40\x06\x36\x50\xe8\x4e\xbe\x09\xe7\xe8\xdd\x5c\x12\ \xcf\xe9\xd7\xe1\xe9\x77\xde\xa5\x09\x92\x89\xea\xa0\xac\xf8\xe8\ \xa2\x19\xdf\xb9\xad\xa8\xa1\xeb\xa2\x4a\x67\x06\xfd\x0a\xa9\x26\ \x4b\xd6\xff\xad\xdc\xcd\xad\xa8\xcc\xfc\xc4\xd6\x7c\xab\xed\xc7\ \x95\xe4\x6a\x7a\x04\xa0\xc2\xc1\xa1\x85\x78\xc5\xe7\x41\xfb\xe7\ \x39\x61\x01\x9b\xd0\xe4\xb6\x50\xe8\x36\xc0\xe4\x4e\x5e\xde\x74\ \x80\xe8\x8a\x8e\x1d\x4e\x18\x81\xd5\x78\xde\xd3\x59\x82\x9e\xee\ \x94\x8f\x4e\x80\x5a\xbe\xad\x50\x4c\xa1\x9f\x10\xba\xea\xf7\x82\ \x13\xba\xaf\xad\xda\xa3\xff\x8d\xed\x4c\x2b\xe3\x18\xbc\x9a\x93\ \x40\x9e\x2a\xdb\x7e\x3e\xa9\xe0\xf5\xf6\xab\xda\xd4\x04\x4e\xa6\ \x1d\x4b\x80\x6b\x55\xf6\x54\xad\x70\xe4\x17\x71\x0b\x20\xf0\xeb\ \xb6\x60\x0b\xe6\x60\x0b\xb9\x9e\xeb\xbb\x5e\xde\xb3\x7d\x0f\x60\ \x7b\x4d\x4a\xb8\x4d\x58\x1e\x94\x25\x98\xcc\xc8\x90\x05\x36\xc0\ \xe1\x74\x70\x0f\x74\x30\xe8\x59\xd0\x97\x0c\x2a\xe2\xf4\xfb\xd8\ \x2a\x28\x9e\x02\x2b\xd3\xfd\x7d\xb4\xfb\x3a\xc5\xa2\x8e\xc1\x4a\ \xfc\xaf\xe4\x19\xae\xf5\x96\xfe\xe0\xe6\x4e\x6f\x92\xa6\x65\xa8\ \x74\x62\xb4\xb0\x94\x41\x0b\x4e\xf1\x5e\x14\xb7\x80\x85\xfa\x5e\ \xf3\xf7\xbe\x09\x38\x0f\xec\x0b\x0f\xec\x59\xe8\xef\x60\x7b\x0f\ \xe8\xc8\xe1\x64\x60\xcf\x4e\x47\x06\x1a\xe9\x91\x4f\xc7\xe1\xce\ \x89\x9a\x6a\xea\xdb\x2e\xe0\xd5\xe3\x49\xad\x8b\xba\xf1\x65\x5d\ \xc9\x1e\x7f\xa6\xa1\x2e\x05\xcc\x2c\xee\x9f\x5b\xf2\xad\xbe\x72\ \x41\xb4\x5a\x79\x57\x1e\xdc\x4c\xda\xe0\x64\xeb\x38\x01\x04\x3b\ \x9f\xeb\x2c\xb0\xeb\xfa\xbe\xef\xc0\xfe\xeb\x3c\xef\xef\xe7\x48\ \x44\x40\xaf\x84\xbf\xcc\x0f\x36\x60\x98\xe9\x57\xe1\x6f\x70\xf7\ \x4a\xbf\x04\xc8\x60\xe3\x63\x4e\x05\x59\x90\x85\x4b\x10\xe6\xa1\ \x2e\x0a\xd6\x19\xc9\xfb\x6a\xea\x65\x8d\xf5\xef\xbb\xa3\x98\xce\ \x9a\x7c\x10\xda\x68\x37\x90\x4d\xc5\x65\xec\x06\x6f\xb0\x7d\xf6\ \x75\xca\xdd\x38\x9f\xeb\xba\xfe\xf6\xba\xfe\xf0\x85\xce\xdd\x73\ \x4f\xf7\x40\x7f\xf7\x81\x2d\xf4\x24\x88\xa1\x32\x68\x03\xc3\x5e\ \x8c\x4e\x9c\xe2\xcf\xec\x02\x69\x86\x06\x46\xfb\xe9\x8e\xca\xf8\ \x8c\xef\xa8\x31\x3d\xd6\x36\x9a\xb9\xef\xed\xa3\x94\xcf\x9a\xdd\ \xda\x7e\x9f\x20\xda\x9f\xfe\x8c\x51\xd4\xad\x51\x04\x90\x70\x22\ \xd7\x35\x76\xce\x41\xf2\x6e\x11\x23\xb0\x04\xf7\x5e\xde\xa3\x3f\ \xfa\xbe\x7e\xef\x4c\xce\xeb\xa9\x6f\x0b\x58\xa8\xfa\x48\x4f\xe1\ \xe5\x5d\xdb\x84\x1e\x95\xe8\x98\x2a\x87\x19\xd0\xb0\xea\xc1\x9c\ \x4e\x95\x67\xfa\xfb\xd3\x59\xa3\xc5\xeb\xcc\x69\x6e\xfc\x57\x6f\ \xa3\x00\x21\x85\x8a\x0c\x0f\x1e\xb0\x1c\x44\x98\x50\xe1\x42\x86\ \x58\x42\x2c\x0a\xd1\x50\xe2\xc1\x10\x15\x43\x6c\x89\xe8\x30\xe3\ \x42\x02\xbd\x7a\xe1\xd8\x42\x80\xc0\x96\x84\xad\xfe\x9d\x44\x99\ \x52\xe5\x4a\x96\x2d\x53\xae\xa0\x63\x2b\xe6\xcc\x4d\x35\x6b\xda\ \xc2\x39\x93\xce\x4e\x3a\x36\x6c\x2d\xb1\x11\x34\x28\x50\x9e\x31\ \x76\xc6\x00\x4a\x86\xcc\x12\x3a\xf7\xde\x3c\x75\xfa\x54\xaa\xd4\ \x7b\x4b\xf8\x91\xe1\xc7\x4f\x0a\x9f\x17\x5d\x93\x4d\x22\x13\x03\ \xe9\x34\x2a\x54\x90\x9d\x45\xc6\x4f\xd4\x34\x64\x2e\x5c\xb4\x1d\ \x28\x83\xca\x5b\x51\x6d\x5d\x94\x2d\xcb\xa7\xac\x14\xb7\x52\xce\ \x52\x59\x94\xcc\xe0\x44\xc2\x0c\x43\x78\xd8\x58\x38\x61\xe2\x8a\ \x5b\x48\x2e\x8c\x18\x82\xc0\xa2\x0f\x38\x16\x3d\x3e\x38\xc2\xe5\ \x66\xce\x9b\x97\x6c\xfe\xa2\x73\x73\x93\x4c\x5b\x36\x59\xd0\x39\ \x3d\xda\x66\xe8\x9d\xb6\x84\x92\xb1\x01\x1b\xb6\x8d\xa3\x74\x96\ \x28\x8d\x11\x75\xea\x6e\xa9\x46\x77\x92\x31\x83\x8c\x0f\x9f\x64\ \xc4\xf9\x98\x89\xf1\x26\x06\x99\xb6\x68\xcd\x64\xad\xeb\xf6\xec\ \xdd\xb2\x68\xed\x96\x95\x91\x7d\xee\xdb\xb9\xc8\xa6\xb9\x58\x54\ \x50\xf1\xf8\xc5\xe4\x1b\x5e\x5c\xd4\x6b\x11\xc2\xc6\x04\x12\x4e\ \xfe\x30\x12\x61\x2b\xcd\x9d\xed\xdb\xbf\x65\xc3\xe6\xea\xd4\xa0\ \x37\xb1\xd8\x6f\x93\x18\x36\xb9\x67\x40\xd6\x7a\x0a\x4a\x29\x52\ \x48\xb9\x8a\x29\xdb\x98\xca\x8d\x37\x09\x95\x7b\x6a\x39\x7e\xbe\ \xa3\x62\xb8\xe1\xa6\x59\xe2\x29\x34\xf8\x39\xcb\x8c\x69\x9e\xc3\ \x8a\x2d\xe9\xa8\xa3\x6b\x3a\xea\xa8\x28\x43\x2e\xb3\xec\xc2\xb0\ \x20\xf1\xcc\x1b\x6f\x30\x1a\x11\xda\x62\x91\x00\xd4\xc3\xc8\x31\ \x02\x2a\x7a\x4f\x32\xc7\x10\x1a\xe4\x3e\x23\x39\x83\x81\x0c\x9c\ \x64\xda\xaf\xb4\xd0\x6c\xba\x87\xc0\x7b\xa6\xac\x29\xca\x03\x81\ \x4a\x50\x29\x7e\x18\xbc\xca\x86\xe4\x26\x04\xb3\xc0\x9e\xb2\xfa\ \x6e\x92\xb9\xa4\x08\xeb\x29\x3a\x40\x9c\x86\x9f\xe7\xb2\x02\xb1\ \xb9\x15\xdf\x9a\xfe\x8e\x45\xb7\xf0\x72\x2b\xcf\xbb\xf8\xf0\xe0\ \x13\x19\x6f\x2c\xcc\x83\x45\x06\x85\x88\xc6\x87\x7a\xf9\x80\x24\ \x20\xc9\xab\xef\x48\x47\x53\x1a\x01\x06\x9f\x96\x0c\xb0\xd2\x29\ \x2f\xbd\x54\xc0\x02\x6b\x62\xcd\x28\xd7\xb4\x0c\x8e\x9f\x25\x74\ \x03\x53\xc2\x02\x63\x88\x4d\xc4\x3c\xcd\x58\x22\xb9\xe5\xd0\x1a\ \x31\x2b\x33\x82\xbb\x0b\x45\x3a\x57\xdc\xce\x2e\x3d\x33\xcc\x90\ \xcf\x64\xfc\x04\x74\xa2\x87\x72\x1c\x74\xd1\xf1\x06\xc5\xcc\x3c\ \xfa\x1e\x65\xf6\x24\x7d\x7a\x62\x12\xb5\x00\x07\x14\xb0\x4a\x4c\ \x6b\xa2\x76\x40\x6d\x6d\x42\x63\xa7\xa4\xba\xa4\xa3\x54\x71\x8b\ \x40\x0a\x38\x64\x26\x71\x8b\x1f\x10\xde\x28\x62\x09\x33\xe6\x8a\ \xf5\xc2\x3a\xf1\x32\xeb\xad\x3b\xe9\xad\x75\x2e\xbc\x86\x9b\x64\ \x38\xf1\x5e\x08\x56\xb1\x87\x0a\x1d\x2f\xc7\x64\xc9\x1b\xa4\xd1\ \x66\x8f\xb4\x60\xd2\xd5\x58\xf3\xaf\x5a\x29\x31\xa5\x92\x62\x29\ \xb7\xe5\xc9\x41\x52\xc5\x9d\xb0\x5c\xb6\x78\x75\x81\x1f\x57\xf9\ \x71\x81\x0f\x17\xda\x9c\xd5\xc4\x5e\x4d\xb6\x37\x5f\x7a\xcb\xca\ \x57\x43\x0d\x81\x7d\xc1\xc6\x80\x25\x3a\x34\x31\xc2\x30\x02\x54\ \xe1\x85\xef\xfe\x1b\x21\x03\x52\x66\x5b\x82\xb4\x25\x99\xac\xd2\ \x5a\x8b\x2f\xdd\xd6\x40\xa3\xba\x85\xb0\x08\x8e\x4b\x2d\xd0\x06\ \x37\xef\x92\x61\x38\x17\xc8\x78\x6a\x09\xe1\xa8\x68\xf3\xc2\xef\ \xf6\xd4\x0e\x2d\x5c\xf1\xd4\x77\xdf\x95\x17\x79\xc1\xcf\x19\x6f\ \x9e\xa8\x58\x9d\xcb\x73\xe8\x32\xc3\xe6\x9e\xcf\xe7\x9f\x3b\xbb\ \x65\xc1\x05\x3b\x20\x45\xa8\xa0\x70\x1a\x3c\x26\xd2\xa6\x15\xf0\ \xc0\x9d\x6c\xc0\x32\x36\xac\xae\x92\x69\xea\xa9\xa4\xf6\xed\xb6\ \x0b\x4b\xee\xea\x05\x19\x5c\x18\xf5\xc3\xe2\x5c\xc8\x22\x0b\x5a\ \x4b\xe6\x4a\xaf\x69\x30\xe4\x15\xe6\x5b\xf5\xed\x97\x8f\xd6\x3f\ \x21\xce\x83\x9a\x6d\x86\xbb\xa1\x45\x3e\x21\x58\xa1\x21\x89\xd5\ \xf9\xa2\x1f\xf1\x4e\x78\xef\x23\xcb\x89\xcd\x6f\xe3\x67\x13\x3c\ \xa8\xc0\x85\x92\x69\x26\x99\x18\xcf\x92\xc1\xc7\x67\x15\x45\xd4\ \x08\x25\x57\xee\x37\xa5\x9a\x00\xce\x05\x19\x32\x7f\x21\x19\x33\ \xd0\x88\xa1\x89\x92\x27\x19\x91\x56\x33\x8d\x73\xc1\xaf\x95\xf1\ \xbc\xd5\xcc\x95\x65\x16\x4c\x46\xda\x6f\xbc\x08\x6f\xf6\x72\x4f\ \xa8\xd8\x2d\x10\x3d\x98\x45\x44\x32\xc0\x8c\x2c\x4b\x78\x46\x6a\ \x1c\x96\xfe\xc8\x60\x3c\xa1\x38\x82\x0c\x8e\x30\x9e\x03\x6d\xb0\ \xbc\xd7\x38\x4e\x29\x58\x91\xde\x05\xe9\x20\x96\x22\x6c\x2c\x4c\ \x9b\xb8\x0d\x29\xb2\xa0\x25\x10\x11\x07\x7c\x7c\x20\x43\xb7\xb2\ \x40\x9d\xd3\x8d\x8d\x0f\x32\xf8\x1c\x86\xf4\x82\xb6\xb4\x51\x61\ \x7d\xb0\x93\xd9\xed\xee\x17\xb0\x62\x11\xe6\x13\x73\x1b\x96\xc1\ \x70\x26\x19\x02\xe0\xc0\x3d\x99\x39\x20\xd0\x90\xc7\x38\x04\xf9\ \xcd\x06\x8e\x78\xcd\xf1\x16\xb4\xc0\xa1\x5d\x90\x68\x4c\xe4\x89\ \xb7\x94\x42\x1b\x0f\x82\xc9\x28\x24\x9c\x95\x88\x32\x04\xbe\x17\ \x70\xa8\x27\x63\x6b\x93\x0c\x93\x51\x9c\x49\xb4\x65\x86\xdb\xb9\ \x97\x99\xee\xd2\xba\xe1\xd8\xd0\x5f\xb5\x03\x14\x10\xd3\x33\xa4\ \xc2\x14\xf1\x31\x06\x4c\x22\x92\x26\xb8\xc5\xe5\x51\x71\x8a\xc9\ \x53\x50\xe0\x24\x38\x34\x0a\xd2\x26\x37\x8f\xfc\x4d\x9c\xcc\x90\ \x26\x8e\x91\x4b\x2c\x3d\xc1\x4a\xca\x5a\x48\x85\x64\x80\x2f\x19\ \xa2\x22\x83\xe8\x5a\xf8\x31\x18\x0e\xe7\x2f\xa9\xab\x95\x0b\xe4\ \x67\x26\x56\xe6\x85\x7e\x3b\xc4\x63\x61\x8c\xf5\xbf\x45\xfc\x48\ \x31\xf2\x41\x62\x20\x3b\x93\x81\x07\x1a\x8f\x41\x53\x74\xa2\xe0\ \xa0\xfe\x98\xbc\xe4\x15\x6d\x83\x89\xc3\xa4\xe8\x90\xe1\x17\x7e\ \x78\xa9\x8b\xbc\x41\x10\xf7\xa6\x27\xa2\x94\x51\x81\x8c\xc7\x01\ \x63\x70\xdc\xb8\x46\x2a\xf8\x85\x74\xbc\x92\x63\x9e\xf0\x82\xae\ \xf5\xf1\x01\x76\x9f\x48\x46\x2c\x1b\xe2\xa7\xf5\x9c\x07\x21\xe9\ \xb1\x8c\xfe\x26\xa2\x37\x5d\xaa\x84\x13\x5b\x7a\xe0\x02\xa9\xb8\ \x25\x46\x2e\x08\x8a\xae\xf1\x89\x4f\x76\xe2\x9f\x2c\x22\x28\x4b\ \x6e\x0a\xe3\x9b\x68\x23\xb9\x7b\x34\xc1\x4d\x70\x42\xe8\xac\x9c\ \x71\x3a\xae\x80\x8f\x0a\x66\x10\x21\x97\x68\xd5\x2b\xb0\x21\xe3\ \x65\xaa\x53\xe5\x9e\x6c\xa8\x2f\x73\xd6\x4f\x76\xea\x34\xcc\xed\ \x86\x78\xa8\xca\xc8\xb3\x21\x26\xa9\xe7\x66\xca\xe1\xb7\x5e\x92\ \x42\x14\xc1\x54\xde\xe0\x26\xf5\xa4\x6b\xb5\x26\x36\x70\x7a\x13\ \x9c\xb2\x00\xa7\xa5\x7c\xa9\x54\x03\xb2\x4a\x9e\xd2\x67\x06\x67\ \x98\x41\x74\x66\xd8\xca\x09\x91\xf1\x26\x2d\xc1\x25\x6b\x27\xf3\ \xa8\x5e\xd0\xb5\xab\x7d\xd5\x71\x38\x6b\x94\x9d\xdb\xfe\x84\xd2\ \xfe\xe9\xaf\x22\xb5\xfc\xc8\xc1\x14\x53\xa4\x98\xb6\x24\x52\x13\ \xf4\x1b\x3f\x3a\x20\xd7\xa1\x09\xf4\x27\xcc\x43\x9a\xc4\x7c\xba\ \xfe\x40\xe8\x08\x35\x74\x43\x1d\xe1\x08\x9d\x29\x2e\x54\xc5\x06\ \x43\x52\x98\xc6\x44\x9d\xfa\x54\x11\x55\xb4\x2b\x27\x23\xd1\x52\ \xf8\x91\xa1\xe2\x78\xc7\xa3\x78\x52\xd1\x47\x35\x54\x9c\x35\x12\ \xa7\x7e\x07\x81\x25\x1e\x3f\x31\x11\xc7\x50\x66\x3c\x1b\x01\x64\ \x5b\x55\xd2\x05\x08\x3e\xb1\x97\x4f\x1c\x5c\x5e\x63\x32\x38\xff\ \xb8\xa6\x27\x08\xda\x27\x97\xae\xc2\x8f\xc0\x06\x56\x83\x13\xea\ \x60\x6e\x6c\x33\xc2\x0b\x49\x61\x12\xe4\x44\xec\x53\xc9\xe4\xd8\ \x8e\xba\x80\x55\xb7\x11\x4e\xd6\x46\x74\xd9\x3c\xe9\x6a\x2e\xe4\ \xcc\x10\x0c\xd7\x58\x1c\x99\xbd\x8d\xac\xa7\xdd\x02\x48\xc6\x73\ \x44\x2c\xa4\x56\xb5\x28\xb1\xc0\x82\x04\xd7\xbc\xd1\xf0\x94\x4a\ \x00\xd5\x29\x15\x1d\xb7\xa0\xab\x58\x71\x7b\x7f\x0d\x25\xf7\x9a\ \x00\xa1\x09\x75\xcb\x28\x36\x18\x6a\x13\xb2\xe0\x0c\x55\xf6\x6a\ \x12\x88\x9d\xd5\x50\xcd\x50\x51\x3e\x9c\x6e\x2e\xfc\xb0\x0d\xc9\ \x4c\x39\xb6\x13\x79\x13\x66\x75\x7a\xe1\x76\x05\xb3\x08\x19\x04\ \x46\x76\xa1\x55\xa7\xfe\x88\x45\x5e\x46\xd1\xb3\xad\x23\x30\x24\ \x29\xa0\xf8\x24\x4e\x69\x6a\x53\x3d\xa1\x29\x04\xa7\xe8\xc0\xfe\ \x5f\xd6\xd5\x06\x4d\xd0\x6f\x60\x05\x8c\xe3\x25\x2c\x01\x0d\x4f\ \x09\xae\x54\x8a\x60\x8b\xa5\xf4\x98\x7b\x59\x10\xb0\x71\x27\xf1\ \x89\xf0\x75\x87\x44\xa2\xe3\x8a\x0c\xd2\x22\x9c\x69\xd0\xa6\x84\ \xcd\x7d\x4b\xfa\xa6\xb3\xcc\xeb\xbc\x30\x3b\xda\x4d\x06\x0c\x3b\ \xfc\x59\x84\x78\x37\x96\xc6\x4a\xc8\xff\xc4\xab\x2c\x13\xb7\xf5\ \x16\x4b\x90\xb1\x7a\x6d\x11\xa5\x7b\xf0\x64\x3f\xa1\x71\x0d\x83\ \x00\x57\xe3\xf9\xd6\x17\x36\x4b\xc0\x31\x19\x76\x8c\xe3\xfd\x82\ \x40\x2c\x15\x62\x4a\x81\x94\x63\x15\x41\xef\x57\xc0\xa1\x73\x86\ \x33\xfa\xc5\x64\xd8\x81\x2d\xb2\x93\xcd\x5a\x56\xee\xb2\x14\xe6\ \x98\x05\x44\x59\x86\x13\x5b\x5a\x08\x97\x0c\x8b\x79\x8d\x5f\xf6\ \x72\x27\x6d\x64\x66\x3c\x0e\xca\x76\xbd\xc0\xe5\x78\xcc\x7b\xde\ \x7f\x8c\x00\xc6\xc1\x74\x52\x4e\x3a\x05\x1a\x4c\xda\x94\x14\x7b\ \xb6\xb1\x82\x2e\x78\x1b\x42\x1b\x21\x0b\x69\x68\x42\x1a\x40\x40\ \x3e\xa9\xbd\xe1\x41\x68\x40\x43\x81\x1e\x4d\x68\x01\x1b\x7b\xc0\ \x92\x36\x67\x57\xe4\xd2\xa6\x22\x67\x21\x43\x55\x7e\x57\x33\x41\ \xe4\x69\x6d\x06\x75\x56\xd0\xc9\x2a\x98\x4d\xad\x1d\x57\xfe\xfe\ \x6a\x76\x20\xe6\x61\x3b\x21\x33\x28\x12\x17\x26\x78\xb4\x4e\x89\ \xa4\xfe\xa6\x62\x15\xc3\x86\x70\x76\x1d\xe8\xe2\xd4\x1b\x9b\x04\ \xbd\xc6\x8a\xfb\x05\x34\x92\x93\xdd\x84\x65\xe3\xa1\xd9\x45\x00\ \x01\xa0\x7d\x4c\xbe\x47\x87\xce\xda\x4d\xe0\x46\x16\x32\xfe\x83\ \x49\x74\xd2\x2b\x60\x13\xd5\x4e\x48\xb6\xb5\x25\xb4\xc9\x36\x66\ \x70\xc1\xd0\xd8\xf2\x26\x33\xac\x05\x3a\x7c\xc9\xcb\x97\xe5\x92\ \x9d\x19\xde\x89\x74\xe2\x81\xf7\x77\xb1\x10\x92\x5a\x92\x57\x24\ \x67\x10\xc9\x42\xda\xdc\x56\xe3\x55\xcf\x6f\x80\x8b\xb3\x8d\x69\ \xe3\xd3\xd8\x16\x8e\x29\x04\x67\x5c\x8f\x91\xdd\x04\x23\x24\x1b\ \x04\x35\x40\x83\xc3\x2b\x04\x82\x65\x43\x1b\x0f\x68\x10\xb0\x33\ \x32\x3e\xf6\xb1\x43\xda\xb8\x1e\x7f\x81\xe9\x8a\xfa\x2a\x91\xc5\ \x46\x2c\x58\x61\x4a\x06\x23\xaa\x16\x5c\xd5\x51\x5f\x77\xb2\xce\ \x59\x04\xc2\x95\x9c\xeb\x1c\x0b\x93\xc1\x81\x13\x9c\x30\x40\x27\ \x04\xfe\x88\x19\x39\xc3\xd0\xeb\x79\x8b\x9a\x8a\x02\xd8\x71\x15\ \x45\xe4\x6b\xbc\x3c\xe7\x19\x8e\x27\x32\x71\xd0\x12\xb8\xae\xf9\ \x85\xa7\x41\xd9\x35\x00\xc1\xc3\xf1\xc0\xf5\xac\x67\xfe\x1d\x0f\ \x69\x70\xc6\x0f\x7e\x20\x76\x6e\x70\x43\xec\xaa\x8f\x34\x81\xf7\ \xd4\xc9\x64\x5c\x34\x4d\x16\x12\x4b\xab\x9c\x6d\x8b\xdc\x2f\x0e\ \x83\x57\xfb\x68\xad\xac\x53\x97\xba\x9c\x85\x2d\x7b\x67\x72\xdf\ \xf1\x38\x92\x1f\x0d\x10\xd6\x04\x68\xc5\x00\x11\x22\x92\xc0\x2b\ \xbe\x9e\x30\x30\x87\x23\xb4\xbf\xef\xc0\xf9\xad\x7a\x37\xfd\x3e\ \x3f\x1b\x19\x94\x82\x1e\x05\xda\x68\xe0\x7a\xb2\x3d\x9f\x06\xd0\ \xd7\xe0\xe1\x5c\xff\x3a\xd6\xb9\x9e\x86\x2c\xa8\xde\xfe\xaa\xdf\ \xc6\x71\xb7\x21\x85\x1f\x2c\x93\x2f\xe5\x74\x2e\x1b\x00\xb2\x9d\ \x78\x83\xa8\x98\x92\x02\x9c\x92\x22\xc0\x2d\x37\xb9\xac\x5c\x19\ \xbe\xba\xd0\x26\xb3\x71\x8b\x49\xe8\x05\x3e\xd0\x21\x9d\x4b\x8c\ \x8e\x18\x89\x8c\x10\x89\xc1\x3b\x88\xa0\xfb\x3b\x02\x70\x02\x2b\ \xb0\x02\xeb\xd3\xa5\x1e\x90\x20\x1b\xc8\x3e\x45\xe2\xb7\x5f\x82\ \xab\xb9\xea\x80\xea\x99\x2b\x35\xe8\x37\xa1\xc8\xa2\xa7\xd1\xbc\ \x25\x40\x36\x23\xf0\x3c\x10\x20\x02\x22\xc0\x03\xad\xc3\x83\xf6\ \xe3\xba\x1a\x30\xc2\x34\x30\x82\x39\xf8\x81\x39\x98\x83\x6d\x68\ \xc2\x6d\xc8\xbf\xe3\x32\x2e\xe3\xf3\x0e\x9b\x83\xfe\xb0\xde\x00\ \x2e\xa8\xf8\x22\xb6\x50\x91\xb7\x68\x39\xb5\x08\xa3\xe2\xd3\x13\ \xea\xe0\x17\x3e\xe8\x85\xd1\xc2\x02\x34\x8c\x25\x9e\x39\x08\x7a\ \xcb\x40\xc1\x13\x41\x27\x18\x85\x7c\x10\xbc\x51\xb0\x82\x77\xb8\ \x05\x13\x4c\x22\x1f\xb8\x29\x35\xf8\xa7\x49\xc9\xb3\x05\x71\x8d\ \xbb\x52\x2f\x5f\xf2\x25\xc1\xf1\x16\xa9\x53\x3f\x1e\x4c\x03\x22\ \x58\xbf\x20\x2c\x82\x21\x04\x3d\x22\xf0\xc1\x1a\x18\x42\x23\xe0\ \x06\x25\x64\x42\x28\x84\xc2\x1f\x88\x42\x39\xf2\x8e\xe7\x50\xb0\ \xab\x30\xaa\xa9\xb1\x01\x6d\x3a\x1d\x88\xda\x92\x55\x14\x05\xea\ \xb1\x39\x92\x4a\x86\x45\xb0\x40\x3f\x51\x43\x81\xb1\xc5\xe9\x6b\ \x3e\xc2\x73\x82\x77\xc8\x80\x15\x78\x07\x5c\x20\x04\x5c\x10\xc6\ \x15\x08\x46\x3d\x4c\xa2\x72\x88\x3c\xc0\x01\x1c\x81\x1a\x8d\xd6\ \x02\x0d\x9c\x78\x20\xda\x00\x28\x28\xa2\xb1\xba\xba\xa0\xa8\xe3\ \xb1\x1d\xa4\x3a\xcf\x33\x02\x1e\x24\x02\x4b\x34\xc2\xab\x6b\xc4\ \xab\x1b\x42\x24\x64\xc2\x73\xcc\xc4\xd5\x53\xbd\xe3\x12\xbe\x36\ \x21\x85\x26\x88\xba\xeb\xe1\x18\x0b\x39\xb7\x22\xfb\x16\x59\x79\ \x8e\xb5\xc0\x95\xec\x90\xc5\x49\x50\xa9\x1b\xfe\xe1\x23\xf3\x18\ \x20\x1c\x98\x85\x3b\x14\x46\x42\x20\xc6\x0c\x10\x46\x60\x5c\x48\ \x63\x14\x9e\x11\xd0\x86\xc8\xab\x85\xc8\x73\x3c\x47\x58\x12\xd8\ \x2a\x8d\x7f\x5b\x3a\xdb\x32\x9c\x80\xfa\x14\x2b\x02\x34\x6d\xe4\ \xc1\x6e\xc4\x44\x6e\xf8\xc6\x70\xa4\xc4\x94\x34\x42\x47\x2c\xc9\ \xd6\x73\xc9\xd6\x8b\x34\x29\x90\xc9\xf6\xf1\x0e\x6e\x1b\x95\x7b\ \x68\xb6\xa9\xa9\x33\xa1\xe8\x31\xa6\xe8\x31\x50\x69\xc5\xa0\xdc\ \x95\x52\xea\x05\x0a\xac\xc5\xf2\x52\x08\xbc\x09\x48\xf2\x28\x22\ \x6d\xa0\x05\x5a\x20\x46\x42\xc8\x00\x5a\x78\x80\x7c\xa0\x05\x5e\ \x24\x46\x5c\x58\x01\x03\x70\xc8\xbd\xb9\x85\x18\xac\x85\x32\xf8\ \x80\x0f\x28\x03\xc9\x63\xc1\x61\x0a\x28\xda\x40\x44\x4e\xf9\x09\ \x9e\x70\x9c\x1b\xeb\x31\x10\xc0\x31\x92\xec\x46\x6e\xe8\xc6\x46\ \x74\x44\xcf\x73\x44\x4a\x64\x3f\x96\x74\x06\x25\x7c\x49\x8d\xd3\ \x38\x67\xc8\x02\xc4\x8a\x97\x06\x29\x45\xec\xe9\x20\x34\xf8\x29\ \x2b\x92\x15\xe7\x60\x0b\xe2\x3b\x8b\x5e\xe8\xa6\x69\x30\x2e\x50\ \x58\x04\x50\xf8\x04\x50\xe8\x85\x56\x78\xa7\x51\xe8\x85\x58\xc2\ \x01\x2b\x98\xca\x0c\xc8\x00\x42\x78\x87\xfe\x7c\x20\x3c\xaa\x7c\ \x00\x5f\x7c\x07\x7d\xe8\xca\x85\x19\x01\x0b\x00\x4b\x17\x18\x4b\ \xb2\x2c\x4b\xc7\xe3\x3e\xb4\x4c\x9e\x41\x64\x9e\xc4\x79\x4b\x23\ \x43\xb6\x8c\x6b\xc9\x6e\xcc\x4b\x46\x5c\xbf\xbc\x74\xc4\xd6\x5b\ \xc2\x25\x7c\x49\xd7\x8b\xbd\xd3\x21\x11\x47\x7a\x26\x8e\xa9\x0a\ \xe0\xa0\xb0\xa9\xba\xac\x30\x73\x81\xb5\x68\x0b\x12\x41\xa8\xbf\ \xd2\x38\x6d\xd0\x06\x67\x80\x01\x67\xd0\x06\x1f\x58\x84\x56\xe0\ \x1f\xc5\x18\x8c\x80\x14\xc1\xa7\x7c\xca\x60\xc8\x87\x07\x38\x22\ \x11\x34\xa2\x22\xca\x87\x51\x88\x4d\xd9\xb4\xa9\x18\x8c\xc1\x32\ \xe8\x85\x32\x20\x50\xc7\xa3\x48\xdd\x54\x8b\x43\x22\xa6\xd6\x6a\ \x0d\xa0\x00\x0a\x1e\xa3\xba\x2c\x68\x49\xbb\x24\x02\x23\xa8\x50\ \x24\x64\xc4\xbc\x6c\xc4\x6e\x7c\xc2\xfb\xf3\x50\xfe\x33\x93\x10\ \xc9\x02\x2e\xc2\x9e\xdd\x40\x15\x73\x21\x1b\x18\xea\x8a\x82\x48\ \x86\xb6\x10\x8c\x06\x0b\x25\xad\x20\xcc\xaa\x4b\x03\x6e\xf8\x81\ \x51\x70\x86\x1e\xf8\x81\xd0\x24\x8c\x8b\x60\x88\xc1\xa0\xb7\x0f\ \x24\x4d\x5a\x98\x05\xd6\xac\xca\xc1\xf3\x40\x84\x70\x82\x71\xe8\ \xcf\x66\x19\x81\x5f\xdb\xb3\x0e\x08\xfe\xd0\x5e\xa8\x05\x64\x30\ \xd0\x89\xa4\xc8\x32\xa0\x0b\x7e\xf8\x43\xb8\x0a\x9c\x7f\xcb\x18\ \xce\xa3\xba\x97\x34\xce\x0b\x65\x44\x0b\x6d\x44\xbc\x44\x42\x6e\ \xe0\x44\x25\xf4\x44\x28\xe4\xbf\x89\x92\x1f\x50\xb3\x81\x1f\x2b\ \x51\xaa\x60\x4c\xec\x9c\x3d\x55\x3b\x88\x17\x70\x8b\x74\xc2\x82\ \x64\x40\x2c\x99\xf4\x88\x6d\x80\x81\x26\x40\xcf\x6d\xf0\x81\x5e\ \x00\x05\x97\x3a\x08\x36\x84\x0c\xf4\x78\x0c\x1c\x38\xcd\x0c\x78\ \x80\xa7\x44\x48\xd4\x4c\x4d\x1c\x78\x8f\x11\x68\x52\x66\xe9\x81\ \x5f\x73\xa2\x5f\xa3\x48\x2c\x15\x85\x89\xcc\x4d\x64\x08\x4b\x2b\ \xed\x80\x06\xf2\x52\xbc\xda\x20\x3a\x80\x36\xb9\x74\x49\x92\xac\ \xd0\x0b\xd5\xcb\x6f\xfc\x41\x5d\xad\xd0\xd6\x63\x42\x5f\xb5\xbf\ \x48\x33\x3b\xc4\x42\xcc\xea\xac\xa4\x2f\xd2\xd3\x7e\xf1\x38\xd9\ \x41\x06\xac\x88\x45\x74\xf1\x08\xe3\x5a\xd4\x1f\x38\xcf\x72\xd0\ \x06\x76\x08\x01\xcf\xbc\x99\x8c\xf0\x91\x60\xe8\x81\x25\x90\x4a\ \x22\xa5\x05\x42\x20\x57\x72\x4d\xcd\x84\x48\x3c\x7c\x53\x89\x03\ \x95\x52\x51\x35\x50\x00\x95\x52\xc7\x6b\xd7\x03\x35\xcb\x42\x74\ \xd5\xe6\xd9\xa0\x18\x00\x01\xfa\xfe\xb3\xcb\x5c\xad\xd0\x32\xd5\ \x55\x23\x34\xc2\x21\x5c\xce\x92\x2c\xce\x63\xf3\x3c\x42\x13\xb4\ \x7c\xbd\xd3\x87\xbb\xa4\xdb\x18\x2a\x95\x19\x8e\xd9\x99\x06\xb1\ \x10\x0b\x34\x28\x39\x99\xd4\x06\xd7\x83\x81\x8e\xed\xd8\x72\xd0\ \xd6\x80\xf1\x00\xcc\x20\x80\x1e\x50\xcb\x0c\x70\x04\xf9\x3c\x4d\ \x72\x4d\x05\x73\x1d\xa0\x74\x55\xd7\x93\xb8\x85\x53\xad\x05\x53\ \x8d\xc1\x53\x05\x4b\xc0\xa1\x41\x3d\x03\x1c\x7a\xd5\x4d\x5f\x82\ \x20\xd8\x38\x0a\xb1\x90\x4b\x4c\xf4\xd7\x1f\x04\xd8\x95\x14\xd8\ \x20\xac\x01\x96\x1c\xc9\xba\xec\xc6\xce\x7b\x34\xac\x60\x9c\xc4\ \xd4\xc9\x31\x61\x40\xb8\xe8\x95\x5f\x91\x11\x14\x32\xaa\x22\x40\ \xd4\xf2\x5c\x01\x18\x40\x58\x23\x70\x80\x72\xf0\x01\xf3\x40\x33\ \x2c\x70\xb5\x47\xcd\x00\x5b\xc8\x80\x22\xa5\x85\x94\x7d\x80\x4b\ \x65\xd9\x54\x78\x03\xad\x7c\x07\x27\xf8\x54\x66\xd1\x06\x29\x2d\ \x03\x62\xf8\x80\x89\xbc\xd9\x53\x4d\x46\x00\x8d\xbc\x32\xb0\x52\ \x76\x85\x41\x43\x14\xc4\x81\x8a\x01\xf4\xa3\x3f\x80\xdd\x55\x5b\ \x3d\xc9\x95\x0c\x42\x49\x74\xda\xba\x6c\x3d\x8d\xcb\xb8\xbf\x52\ \xac\xab\x68\x8a\x3b\x45\x15\xfe\xe0\xcb\x2e\xb4\x1b\x2b\x2c\xe0\ \x83\x2c\x98\x38\x8c\x7d\x34\x1a\xd5\x4b\x23\x18\x05\x50\x30\x8f\ \xf4\x50\x88\xb6\x3d\x08\x1c\xf8\x88\x0f\x08\x80\xd3\xa4\x85\x00\ \x08\x00\xbb\x25\x84\x7b\x48\x85\x54\xb8\xca\x77\xe8\x5b\x47\x19\ \x81\x5e\x38\x55\xb1\xfc\x00\x62\xa8\x05\xc4\x8d\xd7\x89\xac\x59\ \x89\xc4\x52\xc5\xd5\xcd\xc2\x05\x36\xed\x93\x89\xdc\x28\x02\x88\ \xdb\xc6\xbe\x6c\xda\x5b\xb5\xd0\x1f\x04\xc7\xa6\xb5\xc4\x48\x3c\ \x42\x92\x7c\x4e\x1b\xfd\x01\xe8\xa4\x26\xc4\xbc\x53\x3a\xe8\x1e\ \xac\x41\xbb\xa3\x44\x88\x64\xe8\x05\x29\xe0\x2d\x1f\x1b\x3d\x1c\ \x53\xb6\x34\x80\x81\x39\x28\x87\x33\xa8\x5d\xf5\x28\xb3\x5e\xd8\ \xa1\x10\x08\x80\x59\x00\xde\x00\xc0\x01\x1c\x08\xde\x71\x25\x84\ \xa7\xc4\xc3\xe4\x3d\x92\x33\xd8\x82\x0f\x48\x06\xc7\xd8\xe0\x32\ \x90\x85\x0e\x90\x05\x59\x50\x03\x35\x90\xd2\xb0\x4c\x46\xa3\x5b\ \x10\x79\xfd\x9b\x03\x55\x31\x1b\x8c\x10\x7d\xd5\x4b\xf4\x45\x5a\ \xba\x2c\x5f\x5e\x35\xdf\x95\xac\x61\xbb\xdc\x44\x0f\x8d\x3d\xaa\ \xda\xa0\x3b\x3d\xc5\x92\xf9\x1e\xf0\xc1\x02\x10\xf3\x00\x29\x38\ \x36\x68\x6b\x82\x43\x45\xfe\x42\x18\x40\x5b\xda\x25\x8f\xf4\xe0\ \xd1\x36\xcc\x08\x04\xfe\xc0\xf8\x70\x0f\xc9\x88\xe0\x00\x60\x4d\ \x1c\x08\x06\x5a\xc0\xe0\x0c\xde\x02\xc4\x28\x88\xdb\x04\x61\x35\ \x30\x87\xec\x73\x04\x78\xdd\xd9\x42\x4a\x3a\x9b\x4a\x46\x45\x22\ \xbf\xa6\x28\x02\xf4\xf3\xc1\x93\x24\x82\x3e\xb0\x61\xba\xac\x5c\ \x4c\xb4\xd5\xbb\x64\xdf\x74\x74\xd3\xd5\xfb\x2b\x85\xb2\x5a\x09\ \xe9\x20\xca\x21\x05\x8f\x2a\xe2\x15\xcd\xb9\xf4\x90\x82\x1e\x70\ \x86\x38\x5d\x01\x23\x70\x86\x45\x0d\x59\x81\xd1\x86\x2a\x16\x8f\ \x10\xe8\x01\xdb\x70\x60\x2a\x8d\x8f\xe9\xeb\xe2\x60\xc8\x4f\x1c\ \x60\xd2\x98\x3d\x89\x11\x10\x05\xe7\x45\x63\x02\x2d\x83\x0e\xf0\ \x43\x5b\x58\xe3\x05\xb0\x48\x5b\x86\xa0\x7f\xb2\x85\xa4\xdb\x3e\ \x15\xdb\xe5\x3f\xa3\x83\xf9\xfb\xbc\x5d\xfd\xd7\x39\xe0\x50\x26\ \x0c\x64\x02\x66\x07\x76\xd8\x86\x72\xf8\x55\x1b\x7e\x49\x4f\x94\ \x02\xc2\x0c\x1d\xa7\x1a\x95\xa9\x51\x40\x57\x49\x2a\xc7\x02\x18\ \x59\xa2\x40\x82\x69\x85\x5e\xe0\x06\x18\x18\x05\x76\x58\x4f\x1a\ \xf1\x88\x8d\xa8\x08\x6d\x08\x97\x02\x0c\x0d\x1b\x98\x05\x9f\x9b\ \x60\xe0\x0d\x86\x60\xfe\xb0\x82\x3c\x64\xe5\x7f\xe8\x02\x60\x26\ \x55\x29\xed\x00\x02\x7d\xde\x32\x50\x63\x5b\x60\x81\x83\x66\x01\ \x5d\xce\x65\xd7\x68\xad\xc3\xb9\xc8\x82\x13\x34\x1d\x6c\xc4\xf1\ \xad\x50\x3e\x26\xc9\x6b\x38\x47\xba\x9c\x83\x66\x66\x07\x50\xf0\ \xe8\x66\x76\xc2\xa8\xed\x46\x8d\x0b\xd6\xcf\x1d\xa1\x18\x08\x2e\ \x63\x7d\x03\xab\x69\x15\xfa\x7d\x97\x65\x55\x8c\x5e\x20\xcc\x2a\ \x76\x08\xf5\x44\xe7\x4d\x3e\x2d\xbb\x69\x43\x64\x10\x40\x13\xdd\ \x04\x73\x98\x67\x91\xf0\xe2\x22\x95\xdb\x7c\x1e\x63\xfb\x18\x01\ \x20\x00\x90\x9a\x48\xe8\x35\xce\x3e\x59\x10\xe8\xb2\xcc\xe5\x84\ \x46\x68\x5b\x58\x83\x84\xc6\x09\x73\xc0\x89\xa4\xa9\x98\xd1\x30\ \x32\xae\xcb\x63\x63\x36\x02\x3e\x3e\x81\x24\x64\x42\x8c\xb6\x4b\ \x0e\x2d\x87\x66\xf6\xe8\xb6\x66\x07\x6e\x58\x3f\xce\x0d\x56\x67\ \xc0\xb1\x4b\xaa\xda\xa8\x20\x17\x20\xc3\xc9\x37\x40\x83\x50\xf9\ \xa9\x69\x70\x2c\x59\xda\xdf\x2c\xd0\x06\x29\x8e\xa5\xf4\xc8\x88\ \x59\x78\xe7\x8e\x91\xe7\x0e\x98\x05\x59\x78\xe0\x06\xe6\xdb\x7d\ \xb6\xb5\xd2\xf8\x0f\x83\xc6\x6c\xac\x76\x04\x9c\x5d\x00\xa7\x36\ \xe8\xff\x48\x68\xfe\xd0\x3e\x1a\x28\x99\x18\x31\xc1\xe3\x3c\xc6\ \xd0\xb1\xae\x61\x23\xc0\xe8\x73\x84\x66\x65\x46\x66\x66\x76\x6b\ \x64\x16\x64\x4c\xee\xc4\x8c\x03\x01\x3c\xe0\xeb\x61\xa3\x83\x0e\ \xd2\xbd\x45\xfb\x12\x32\x98\x8b\xe7\x50\x95\x8a\x42\x88\x4f\x40\ \x6e\x85\xc0\x4c\xb6\xf5\x08\x2c\x6e\xb5\x5e\x88\x8c\x0e\xb1\xce\ \x4d\x20\x04\x47\x98\x85\x5a\x28\x2d\x1f\x38\x6a\xa4\x36\x9c\x25\ \xd1\x6a\x83\x5e\xea\x83\xce\x3e\x36\xde\x65\x47\x58\xe3\x25\xa1\ \x6a\xcc\x0e\x90\x4c\xe1\xa0\xab\xf3\x41\x73\xbc\x06\x1b\x66\xc2\ \xd7\x2e\x87\xfa\x3e\xc7\xd6\x66\x42\x8e\x66\x07\x65\x66\xdf\x37\ \x7d\xdf\x34\x40\x83\x3b\xc6\x31\x24\x5b\x8a\x02\xb9\x42\xe5\x10\ \x5a\x67\x9b\x86\xab\x3a\x9d\x92\x49\x3e\x4a\x3b\xc3\xfe\xd9\x06\ \x46\x65\xcf\x45\xed\xcc\x33\x7b\x8c\x5e\x58\x6c\xeb\x1c\x90\x0c\ \x08\x80\xf4\x38\x83\x7d\xfe\x87\x2c\x18\x6f\x16\x58\x03\x85\xd6\ \x3e\xad\xc6\xea\xa6\x6e\x63\x51\x90\x05\xc7\xab\x65\x4a\xc9\x48\ \x9c\x38\x8d\xd3\xc0\xbc\x0d\xca\x3a\x6e\x4c\x42\x0b\x60\x87\xfa\ \x7e\x6d\x8c\xc6\x68\x1f\x9f\x03\x0b\x38\x47\xd7\x6e\xc2\xb5\xde\ \x6f\xbb\x74\xfe\x49\x4e\x84\xeb\xdc\x96\x4b\x85\x25\x03\x43\x73\ \x17\xdd\x8b\x81\xac\x20\x83\x0d\x22\x03\xae\xa8\x3d\xec\x82\x9d\ \xe3\xf2\x47\xdc\x01\x05\x0f\x60\x87\xf2\x84\x81\xf4\xdc\x86\x1f\ \x28\x07\x8f\x50\x4f\x9c\xbe\x19\x6d\xc8\x49\xec\x11\x93\x15\xb8\ \x05\x11\xef\x43\x15\xff\x69\xed\x73\x84\x12\xce\x73\xf3\xc6\xec\ \x3c\x87\x6a\x02\x95\xd2\x85\x56\x6f\x99\x48\xe8\xcb\xa3\x0d\xf2\ \xd9\x57\x0c\x5d\xeb\x56\x68\x05\x50\xe0\x84\x1f\x9f\x6f\xfb\x66\ \x42\x22\x9f\xf4\x6d\xd0\x6f\x67\x86\xe6\xd6\x63\x72\xf6\xab\x81\ \x1d\x54\xb8\xfd\x42\x69\xe0\x68\x82\xe4\xf8\x90\xb4\x28\x32\x29\ \x40\x6e\xd8\xd9\x86\xd8\x5b\x3d\x49\xd3\xcc\x5e\x98\x70\x58\x87\ \x81\xd6\xf3\xd8\x01\x86\x42\xd0\x64\x73\x40\xe9\x05\xe9\xbe\x53\ \xa9\x80\x87\xed\xee\x0c\x4e\xa0\xc8\x5a\x66\x71\xed\x2b\x61\x13\ \xe6\x5e\x5d\x06\xdc\x80\x76\x3c\x15\x27\x74\xa6\xde\x0f\x2b\xc9\ \x57\x34\xd0\xf1\x72\xd0\x04\xcf\x6c\xf4\xfa\x8e\xef\x6b\x68\x6d\ \x22\xa7\xf4\x6d\x27\x60\x4b\x17\xf7\x66\x3e\x47\x27\x44\x66\xbe\ \xa4\xbf\x85\xc3\xb1\x00\x7f\x03\x01\x5b\x02\xa9\x29\x02\x32\x30\ \x64\x86\xfe\xcb\x82\x25\x43\xee\xd5\x23\x3b\x67\xd8\x86\xcc\x1c\ \x73\x34\x27\xf3\x8e\xad\x3a\x23\x28\xf3\x39\x80\x81\x1f\x48\xdb\ \x92\x30\x14\x93\x7d\xf3\x5e\xd7\x67\x56\x1e\x85\xb0\x2c\x83\x5a\ \xf0\xc3\xec\x53\x03\x5c\x36\x6f\x3c\x4f\x71\x83\x5e\x63\x3f\xbf\ \x59\x8b\xfc\x8f\x88\xc1\x16\x8a\x39\x15\x6a\x6f\x62\x07\x80\x01\ \x03\x66\x74\x4d\x80\xe6\x6b\x48\x6b\x8c\xfe\xf6\x39\x60\x79\xb3\ \x5e\xeb\x72\x78\x66\x28\x2c\x72\x0a\xf5\x41\x40\x96\x5a\xca\x11\ \x30\x76\x7f\x83\x25\xf8\xab\xcf\xab\xf7\x4f\xd0\xbf\xe7\x1c\x60\ \x8e\x23\x78\x80\x87\x01\x81\x47\xc2\x27\x2e\xe7\x51\x98\x9b\x5c\ \x97\x88\x5e\x48\xe4\x3b\x05\x76\xce\x80\x48\x55\x95\x65\x65\x74\ \xf1\x0e\x70\x84\x13\x67\x81\x27\x4a\x76\x9c\x58\x83\x8d\x57\x83\ \xc8\xf3\x43\x9f\xb0\x94\x4b\x29\x40\x76\x19\x3d\x81\x2f\x67\x1f\ \xc0\xf6\x72\x30\x02\x6d\x37\x82\xb2\x06\xf2\x8c\x8e\xef\xf9\xae\ \xf9\x22\x8f\xe6\x1d\x96\xd0\x80\x4f\x36\xa9\x01\x3b\x86\x6b\x36\ \x3c\x00\xe0\xab\x83\x38\x23\xe0\x38\x76\x78\xdf\xc0\x8f\xeb\xa5\ \x1f\x49\x0c\x5d\xbf\x27\xee\xd8\x1f\x90\xfa\xd3\x6a\x02\x95\xe6\ \x18\xfe\x20\xb8\xfa\xcd\xb0\x00\x79\x85\xf8\x89\xfc\x73\x82\x5e\ \xe8\x14\x3f\xef\xef\xc6\x89\x3c\x1f\x76\x83\x6e\x8d\x88\x79\x24\ \xa7\x20\x17\x10\x10\xf8\x72\x18\x85\x72\xe0\x84\x33\x28\x87\x3e\ \x20\x82\x6b\x28\x87\xf8\xbe\x7b\xd6\x86\x79\xe1\xa7\x6d\xbe\x7f\ \xed\x8c\x36\x4e\xce\xed\xd7\x84\x75\xbf\x37\x28\x5a\x9f\x2f\x02\ \x64\x63\xbf\xef\x7d\x03\xc4\xb7\xbf\xe5\x9f\xe8\x4e\x47\xc2\xbd\ \x74\x80\x5d\x6d\xfa\x27\x1e\x05\x79\xd3\xf5\x0d\xef\xf5\xa7\x98\ \xf3\x7d\xf6\x01\x5a\x2e\xe1\x0e\xa8\xd9\x02\x2d\x4b\x89\x07\x66\ \xd4\x17\xfb\xf3\x56\xf6\xae\x5f\x68\x66\x44\x8d\xa3\xc0\xc9\xd3\ \x1b\xe0\xdb\x2f\x87\x01\x06\x08\x15\x35\x88\x18\x29\x37\xe7\x9a\ \x11\x84\x27\x8c\x2c\xbc\x36\xc7\x08\x44\x23\x73\xe6\x6c\xdb\x36\ \xf1\x61\x44\x82\x46\xb8\x4d\xe4\x16\x31\x4d\x9a\x1a\x6f\x8a\x80\ \x68\x92\x06\xcd\x9b\x94\x24\x41\xd6\xc0\x53\x64\x24\x9e\x34\xdc\ \xb8\x65\x31\x92\x86\x08\x91\x1a\x2d\x07\xe2\xec\xa9\x73\x60\x1a\ \x9b\x0e\x60\x94\x6b\x85\xe5\x28\xd2\xa4\x4a\x97\x62\xe9\x15\x23\ \x25\xd4\xa8\x52\xa7\x46\xbd\xf5\xef\x2a\xd6\xac\x5a\xb7\x72\xed\ \xfe\x9a\xb5\x9c\x1a\x47\xe6\x6c\x99\x23\xd5\xa1\x96\x28\x59\x1d\ \x64\x89\x4a\x2b\xaa\x03\x5c\x52\x8e\x1c\x91\x0a\x6b\xee\xae\x2d\ \xb2\x8e\x3a\x90\x22\x65\xc3\x96\x8d\xb1\x9b\x06\xd3\xd9\x44\x27\ \x06\x1a\x34\x20\xd2\xc0\x20\x0a\xc3\x80\x81\x3e\x35\x8a\xd4\xe8\ \x73\xad\x1c\xe6\x72\x11\x19\x6e\x86\x38\x07\xb3\xc5\xce\x10\x67\ \x72\x9c\xf8\x31\x8d\xcb\x22\x41\x51\xbf\x4c\x19\x13\x04\x11\x3c\ \x78\x54\x82\x18\x6d\x13\x67\xcb\x22\x78\x7e\xea\xcc\xb9\x13\x67\ \x50\x18\x3e\x42\x2c\x35\xca\x74\x69\x88\x15\xf7\xa8\x32\x67\xee\ \x6a\x84\xd7\xe8\xd2\xbd\xde\x42\xdb\x41\xcd\x58\x73\x8e\xd4\xa8\ \x85\xdb\x1d\x6e\x87\xb7\xe0\xcd\xf6\x9d\x2b\xd6\x96\xf9\xbf\xb6\ \x0a\x0f\xbe\xe7\xfe\x5e\x8c\x18\x25\x8d\x34\x26\xea\xc0\x48\x6c\ \xdd\x04\x2f\x63\x46\x98\x11\x3f\x80\x13\x59\x84\x11\x46\x09\x95\ \x76\x50\x81\x21\xcd\x16\x93\x49\xb3\x41\x45\x59\x48\x93\xb5\x86\ \x07\x11\x32\xdd\x94\x53\x6a\xba\xc9\xb6\x5b\x4b\x2e\x6d\x58\x03\ \x63\x3e\x18\x77\x54\x2b\x3e\xf8\x70\xc6\x71\x4a\xad\xd0\x5a\x73\ \x2d\x42\x05\x04\x74\xd3\xc9\x28\xe3\x20\xc4\x7c\x50\x4b\x2d\xfe\ \xd7\xcd\xa5\xc6\x59\x3d\xc2\xc5\x63\x78\x6d\x09\xd9\x56\x5c\xe6\ \xcd\x15\x98\x2d\x83\xb5\xb7\xc9\x7b\xf7\xa0\xb1\x84\x11\x2b\x34\ \x76\x8d\x03\x0b\xe5\xd7\xd3\x7e\x9f\x19\xe4\x9f\x46\x1b\x5d\x54\ \x20\x44\x0e\x49\x14\x51\x81\xb8\xb9\x04\xa2\x11\x20\xb8\x14\x15\ \x87\x2d\xb1\x59\xe1\x85\x1d\xbe\x54\x04\x9d\xba\xd9\x49\xe7\x86\ \x2a\x94\x83\x22\x52\xad\x8c\x02\xc3\x28\x27\xb6\xd2\xca\x19\x67\ \x0c\x5a\x28\x01\xad\x10\x00\x03\x8b\x2e\xb6\x88\x47\x17\x31\xce\ \x38\x29\x57\x23\xf4\xf2\x01\xa6\x1f\x10\x83\x23\xa7\xb5\x10\xb3\ \x69\x8e\xe0\x89\xa7\x06\x79\x7c\x75\x40\x17\xaa\x47\xe6\x45\x07\ \x0b\x4a\x32\x79\x4f\x11\x31\xa4\x21\x25\x0c\x46\xf4\xb1\x9f\x64\ \x44\x2c\xd4\xd2\x7e\xe5\x58\xc0\x0e\x66\x9c\x45\xe4\x90\x7f\xa2\ \x5d\xe3\xd1\x43\xa6\xe1\x97\x1b\x65\x04\xb9\xc9\xa6\x4e\xb2\xb1\ \x48\x27\x4f\x38\x49\x3b\xd2\x48\x75\xd2\x99\xad\x6c\x46\x88\x98\ \x54\x2b\x30\x48\x89\xd9\x38\x06\x38\xe0\x80\x0a\x2b\xd4\x00\xc2\ \x1e\x2b\xa4\xd1\xa8\xa3\xcd\x3d\x47\x29\xbd\x5b\x8d\xd0\x29\xa6\ \x5b\x64\xba\x2f\x31\x65\xf4\x2b\x8a\x75\x7c\xd9\xd0\x97\xfe\x28\ \xa4\xce\x25\x17\xc2\xe6\x8d\xc5\xea\x7a\x9b\xc4\x47\x47\x13\xf4\ \xa5\xa1\x02\x4e\x96\x1d\x54\xce\x35\x27\x4c\x46\x61\x42\xe5\x70\ \x02\x6c\x7f\xa2\x89\xec\x90\x69\xc9\x62\x94\xdb\x6e\x20\xe5\x27\ \xd5\x86\xdb\x3e\xd8\xac\x6f\xa9\x61\x9b\x6d\x6b\x78\xd6\xe0\x00\ \x9f\x58\x0c\xea\xc3\x28\xe7\xc2\x63\x6e\x7e\x75\xc6\x3b\x34\x54\ \xf3\xd6\x7b\xf4\x3f\xf7\x86\xc7\xe9\x07\x5b\x38\xad\x2f\x8e\x36\ \x62\x1a\xb0\xa9\xa4\x88\x57\x9e\x5c\x07\x87\xe5\xc8\x5f\x4a\xd2\ \xf1\xf5\x12\x4d\x64\xd0\x98\x4d\x7d\xf4\x61\x84\x05\x9c\x68\xd2\ \x0a\x27\x46\x74\xb8\x9b\x46\xbe\x82\x6c\xab\x46\x67\x77\xf9\xe5\ \x67\x5f\x5e\x73\xcd\xad\x1e\x12\x94\x13\xbc\x6f\x6c\xb8\x66\x54\ \xd4\x9a\x29\x73\xe1\xd8\xea\xb7\xe7\xa1\xa3\xfc\x39\x8a\xb9\x0e\ \xf4\x71\x42\x1f\x7b\xd4\xb0\x87\xe5\x12\x06\x4e\x74\x54\x35\x48\ \x8a\x34\xbd\x9d\xc2\x55\x4b\xbe\x99\xe2\x28\x8a\x8d\x65\xa0\x05\ \x70\x2d\xc8\xac\xfe\x63\x58\x06\xcf\x35\x56\x92\xae\x3a\x8c\x58\ \x13\xf5\xd9\xca\xd0\x09\x1e\x0f\xaa\xc9\x35\x18\xa6\xc6\xb1\xdc\ \x18\x43\x84\xa5\x46\x13\x19\xa4\x25\x66\xca\xba\x7d\xfe\x26\x70\ \xb1\x4d\x35\x78\xe0\xd4\xfe\x74\x2d\x55\xba\x55\xb6\xe7\x19\x3e\ \xc0\x00\xcf\x50\xe5\x56\xe9\x8a\x2b\x27\xb8\x92\x31\x10\x16\x18\ \x70\x8d\x0a\x0e\x72\x4e\xd5\x1e\x9f\x83\x3e\xa9\x36\xb5\xf8\xbb\ \xe9\xa7\xfc\xe2\x78\x96\xfd\x68\xd9\xbf\x6f\x19\x46\xa5\x86\x01\ \x9e\x87\x05\x49\x2a\xcc\xd7\x1c\xf6\x06\x58\x2d\xa6\x56\x92\x9b\ \xdc\x09\x2c\x60\x81\xb5\x0d\x82\x13\xc1\x9b\x0c\x54\x06\xc2\x9f\ \x2d\x21\xc4\x37\x03\xe9\x58\x66\xb6\x61\x81\x6d\x18\x24\x21\xf8\ \x89\x0d\xdc\x96\x45\x38\x95\x50\x46\x5a\x9b\x6b\x13\xf6\x54\xf2\ \xb2\x1a\x9c\x60\x1c\x26\x82\x5c\x1a\xf6\x00\x8f\xc7\xa8\xc0\x6c\ \x7d\x20\x5f\x2c\xae\xa1\x0f\x4e\x10\xaa\x1c\x7b\xd8\xdc\xfb\x8c\ \x36\xbf\x49\xf9\x00\x60\xfc\xca\xdf\xa7\xfc\xc7\x3a\x4d\x49\xb1\ \x0c\xbd\x50\x1d\xc0\xae\xa3\x45\xae\xd9\xc2\x80\x79\x21\xcb\x7a\ \x62\xb0\x1c\xdd\x80\xc4\x08\xe8\x62\xc8\x35\x24\x68\x81\x41\xb1\ \xcd\x6d\x35\xe3\xd8\x1c\x1a\x92\x99\x5b\xf1\x44\x22\xe5\x60\x07\ \x09\xef\x38\x11\x31\xd9\xea\x37\x7f\x5b\x59\xe1\x5a\xb6\x39\x3c\ \xed\xe6\x5a\xf0\xd2\xcf\x35\x4e\xe4\x83\x72\x40\xfe\x66\x0f\x66\ \x53\xc1\x1e\x54\x20\x49\xf2\xb9\x22\x16\x16\x18\xc4\xa0\xc6\x01\ \x82\xf7\x31\xc7\x2a\x4b\xa4\x54\x2f\x72\x44\xba\x7d\xdd\xa8\x7f\ \xfb\x5b\xda\xeb\xfa\x62\xb5\xb7\x9c\x0e\x3c\x5b\xdb\x11\x5d\x54\ \x79\x18\x98\x04\xc5\x01\x69\x38\xc1\xde\xe6\x60\x81\x34\x72\x02\ \x93\xad\xb0\x00\x11\xe6\x44\x99\x81\xfc\xa4\x63\x16\x88\xe3\xb0\ \x2e\x92\x99\x2d\x49\xa4\x83\xb1\xf9\xe0\x09\x11\xe7\x1a\x41\x0e\ \x52\x36\xd1\xd2\x56\x20\xfb\x30\x0e\x4e\x8c\xe3\x1a\x90\x31\x80\ \x24\xf7\x40\x04\x47\xba\x62\x92\xb1\xe8\x02\x26\xb1\x70\x06\x78\ \x20\x91\x73\x78\x90\xdf\x27\xa3\x33\x82\x45\x84\xca\x7e\x52\xfb\ \x57\xff\xa2\x48\xaa\xf1\xe4\xc5\x06\x3c\x62\xdd\xe9\x72\x34\xc0\ \xb5\x98\xea\x2d\x7e\x49\x0c\x88\xd2\x60\x4b\xb3\xed\x2d\x8d\x12\ \xbc\x06\x11\x07\x75\x0d\x09\xc9\x69\x4e\xbd\xb2\x00\x33\x1f\x72\ \x2c\xe5\x6d\x09\x41\x27\xf0\x0d\x11\xcc\x76\x42\x09\x05\xd2\x85\ \xcc\x21\x64\x45\x5d\x46\xad\xcb\x00\x01\x06\x8e\x3c\xd7\x23\x31\ \xa7\x02\x57\xb4\xa3\x0f\xb1\xb8\x85\x2f\x5b\x31\x8e\x15\x72\x32\ \x25\xf7\x00\x42\x3c\x27\x75\x06\x4c\xa5\x65\xfe\x74\x67\x51\x8b\ \x2c\x64\x61\x4f\x62\xa8\x65\x3b\xe0\x51\xcf\x5e\x46\xd7\xa9\xee\ \xa8\x05\x61\x7c\x21\x45\x13\x96\x00\x82\x25\x30\xc6\x56\x2a\x48\ \xc8\xde\x76\x29\xd6\xb5\xb5\x91\x42\x80\x7b\x50\x4f\x8c\xf0\xb1\ \x63\x2e\x24\x59\x97\xd9\x23\xb2\x9c\x59\xc7\x91\xba\x8c\x85\x26\ \x65\xce\x87\x52\xaa\x12\x3c\xcc\x14\x08\xe0\xd4\x49\x24\x2f\xc3\ \x37\xcc\x61\xce\x15\xfa\xc8\xe9\x38\xf6\xd0\x53\xaa\x78\x32\xa8\ \xd2\x19\x01\x27\x6c\x84\x16\x59\xa8\x61\x01\x46\xd2\xce\x02\x92\ \xea\x3f\x20\x65\xd1\x2f\xfe\xe4\xac\xff\x42\xa5\xa3\x83\xf5\xc5\ \x06\x4d\xc8\x1d\x0c\x14\x9a\x86\xc9\x35\x54\x8d\x12\x8c\xe8\x2f\ \x7d\x85\x90\x37\x82\x14\xa2\xc0\x3a\x48\x42\xf2\xb6\x47\x04\x31\ \x04\xa4\x67\xeb\x6d\x6e\x0a\x87\x27\xa1\x65\xcf\x43\xd7\xcb\xd0\ \x6e\x54\x70\x02\x07\xec\x41\x36\x98\xd3\xa6\x26\x38\x01\x0f\x6b\ \xaa\xe0\xa6\x6c\x4c\x6c\x3b\x39\x07\x0f\x78\x3a\xd6\x5e\x00\xb3\ \x11\x31\xae\x33\x16\x16\x90\x97\x05\x6b\x40\xcf\x02\xd2\xfb\x1d\ \xb8\xbc\x85\x6b\xda\x19\x60\x65\xe1\x0b\xa4\x01\xd6\x45\x95\x19\ \xc8\x40\x16\x1a\x03\x53\xd6\x86\x35\x8d\xfe\x61\x4d\x1b\x59\x77\ \x16\x4c\xfd\x48\x4f\x35\x45\x89\x6e\x47\x8f\x75\x0d\x18\x70\xc3\ \x21\x0b\x59\xd6\x40\xce\x66\x25\x14\x36\x4a\x43\x19\xca\x5e\x9d\ \x60\x68\xb3\x48\x42\x32\x35\x95\x01\x82\x26\x06\x71\x06\x57\x9c\ \xc9\x15\x38\xcd\x64\x30\x17\x3b\x95\x6b\x70\xb7\xbb\x59\xa9\x8e\ \x28\xa6\xa6\x23\xda\x79\xf1\x2e\x46\xa2\xec\x02\x06\x8a\x9d\xbc\ \xa0\x6a\x6b\xd9\x71\x84\x65\xe7\x6b\x96\x1e\xdc\x57\x4a\x0a\x95\ \xdc\xde\x30\xf6\xd0\x5d\xfe\x77\x6d\x24\xe2\x84\x03\xb4\xa4\x31\ \xdd\xa8\x95\x8d\x20\x23\x19\x0c\x14\xdc\xe0\x91\xe2\x44\x58\xd6\ \x5a\x61\x86\x5d\x38\x48\xeb\xc5\x8c\x43\x91\x3c\xa2\x4a\x6a\x00\ \xd1\x41\x54\xb0\x0f\xb2\x51\x01\x10\x7a\xc9\x36\x34\xab\x98\x4d\ \x91\x72\xb1\x57\x46\xa0\x0d\x22\x85\xaa\xb2\xb3\xbb\x8b\x76\xd4\ \x52\xd9\xba\xbc\x92\x76\x74\xb0\x41\x2c\xb3\xd6\xc5\x4d\x78\x11\ \xc8\x07\xcb\x00\x19\x56\x60\x92\x15\x9c\xab\x4a\x0e\x70\xa8\x7f\ \x99\x9c\xb1\x34\x86\x98\x8d\xe9\x2c\xd1\x42\xca\x21\x22\x36\x0e\ \xaa\x1c\x0d\xc6\x0c\x37\x1c\x08\x11\x3a\x76\x79\x21\x1f\xc5\xd0\ \xb6\xc2\x2c\xe6\x93\x6a\x2f\x5a\x3f\xfe\x21\x2c\x06\x47\xb2\x87\ \x38\x57\x30\x16\xed\xdb\x83\x2b\xd2\xc6\x4d\x15\x64\xf7\x7d\xdb\ \xc5\x73\x9e\xf9\xa1\x23\x1d\xcb\xd7\x3c\x39\x6e\x0b\x5b\x94\x7a\ \x9d\xbf\xd4\xb8\x2f\xe3\x91\x4b\x92\x5a\x65\xde\x2f\x82\x0d\x04\ \x94\x86\xc1\x03\x71\xe9\x50\x4d\x37\xf4\x04\xe6\x96\xe0\x2d\x34\ \xe1\x64\x9d\xad\x5b\x67\xe0\xca\x4c\x96\xb9\x71\x1f\x2b\xf5\x46\ \x57\x26\xb4\x96\xe6\xb8\x15\xad\x0c\xcd\x69\x7a\xbc\x01\x2c\xe6\ \x72\x2d\xb8\x3e\x00\xe1\x16\xb7\xe0\xdb\x4e\x5c\x01\x84\x71\x48\ \xa6\xce\x54\x51\x22\xb2\xb5\x72\x0b\xb8\x18\x89\x54\x3a\x16\xcb\ \x5d\xd8\x52\x86\x8d\x6f\xfc\x2d\xf0\x95\x0b\xa2\xad\x6d\x96\xab\ \x99\x43\xdb\x7f\x41\xa0\xb7\x41\x02\xbe\x5b\x59\xc6\xb5\xe4\x2e\ \xb7\xab\x2d\x23\x67\x5f\x1e\x87\x6d\xe5\x80\xc1\x1c\xee\x33\x6f\ \x08\x13\xe4\xc1\xb7\x12\x5e\xac\xad\xb9\x6f\x6c\x4e\xef\x43\xb8\ \xde\x43\x2a\x1e\xb4\x87\xbd\x01\x01\x08\x08\xc7\x43\x24\x1d\xf0\ \x2c\x87\x47\x05\x04\x2d\x8e\x78\xfd\xae\x43\x68\x02\x92\x62\x01\ \x75\xb1\xec\x76\x64\x51\x86\x68\x17\x75\x69\x57\x93\x9d\x59\xc2\ \x33\xe3\xbd\xa8\xc1\x06\x36\xd8\xfe\xea\xac\xf6\x70\x2e\x73\x8b\ \xdb\x02\x5d\x50\x63\x43\xf3\x3e\x61\x9c\xf0\x72\x50\x35\x5f\x24\ \x95\xcc\x28\xf8\x9f\xf7\xc4\xdc\x74\x3b\x6e\x98\x11\xaf\xad\x43\ \xe6\x95\xb0\x88\xe3\xeb\xf9\xce\xf9\x74\xcb\xd5\x95\xea\x50\x79\ \x67\xc4\xbb\x72\x23\x56\x86\x87\xb2\x15\xe7\x0e\x8f\x3a\x2e\x0b\ \xad\xa1\x52\x3c\x71\x41\xf4\xc0\x60\x17\xd5\x59\x88\x22\x03\x5a\ \x9d\x95\x0a\x2e\x9d\x77\x87\xde\x02\xef\xe6\x86\x39\x96\x6e\x0f\ \x60\x11\xfb\x9d\x8d\x9c\xb8\x39\x95\xce\x95\x10\x07\x60\x49\xc2\ \x84\x7f\x9b\x30\xdb\xf4\xb6\x0b\xbf\x4c\x43\x97\xbb\x1c\xf6\x74\ \x13\x49\xcb\x74\x21\x63\x72\xb2\x3c\x55\xee\x9c\x79\xad\x0c\x15\ \x54\xf6\x0b\xe0\x8f\x82\x4c\x8a\xa4\x6e\xbc\x16\xa3\x3f\xaf\x53\ \x91\xaa\x76\x56\x92\x4a\x3b\x0a\x73\x7f\x5f\xc8\xd0\x04\x10\x2c\ \xe6\x5c\x49\xd6\xb4\x04\x47\xa0\x89\x87\x8a\x9b\xee\x0b\xf9\x6d\ \x48\xf1\x97\x43\x71\xc2\x19\x68\xc2\x19\x64\xc6\x65\xac\xcf\xdc\ \x15\x5f\xcc\xe1\x46\x4a\x39\xdf\xbe\x09\xd2\x54\xd8\x0c\x60\xad\ \x89\x9d\x70\x48\x75\x39\x5d\xfb\x10\x17\xf6\x45\xc5\xd5\x21\xdb\ \xa5\x84\xd6\x54\x15\x15\x90\xfe\xad\x05\x8e\xb0\x85\x65\xb9\xdf\ \xd6\x6c\xdd\x3f\x8d\x56\x5e\x18\x90\xd7\xd0\xc1\x12\x70\x55\x1a\ \x80\x40\x1f\x38\x80\x2b\xac\x4f\xfa\xdc\x9d\xdd\x59\xc0\x08\xd8\ \x5e\xc6\x98\xdb\xad\xf8\x1f\xef\x04\xa1\xee\x71\xc2\xef\x01\x01\ \x66\x98\x0b\x43\xdc\x07\xc5\x54\xcc\xe0\x61\x09\xb3\x10\x12\x0c\ \x21\x5f\x85\xc1\x44\x21\xc9\xcc\xe0\xc0\x8d\x72\x4d\x59\x07\xc2\ \xcf\x07\xba\x98\xa5\x80\x8a\x52\xf5\xcf\xfd\x98\xdf\x75\xb0\x85\ \xf9\xa5\x05\xc6\xb9\x9f\x91\x88\xc5\x5c\xa8\x05\xd8\x15\x50\xab\ \x0c\x46\x0c\xd0\x41\xca\xad\xc0\x0d\x9a\x0f\x2e\x49\x10\x0f\xba\ \xd6\xec\x09\x21\x7e\xf8\x1f\xdd\x05\xe1\xfd\x61\x54\x39\x8c\x03\ \xc6\x48\xce\x72\xdd\x8a\x38\x85\xd4\x03\x99\x0d\x11\x50\x4c\x45\ \x7d\x48\x16\x66\x61\xe5\xd9\x95\x04\x5a\x58\x86\x05\xd7\x17\x4e\ \x45\x17\x6c\xdf\x56\xf8\x40\xa7\xdc\x0f\xfe\xdc\x13\x16\x9d\x20\ \x65\x99\xc3\x1a\x6c\x82\x5e\x38\x9b\x91\xe4\x18\xa1\xf1\x05\x17\ \xad\x87\x0d\xcc\x60\x13\x48\x89\x03\x18\x00\x1f\xe2\xd2\xdd\x69\ \xc2\x0f\xf6\x20\xcc\xd1\x9d\x24\x42\x50\x21\xd6\xdd\x6b\x8d\x43\ \x4b\x79\x13\xdf\xf4\xd0\xfe\xcf\xf1\xc4\x57\x2d\xd4\x6a\x39\xa0\ \xb4\xe4\xd5\x4e\x48\xe0\x83\xbc\x0c\x36\xf6\x1b\xd5\xbd\x47\x54\ \xb8\x07\x54\x2c\x07\x54\x84\xa2\x28\x62\x05\x64\xdd\x53\xa6\x7c\ \x8a\xd4\x34\x4d\x3a\x52\xd1\x68\xa9\x20\x01\x0d\x50\x8e\x19\x89\ \x2b\x95\x5c\x3f\xd9\x40\x06\x88\x0d\xad\xac\xcf\x35\x38\x9d\x1a\ \xd5\x1e\x93\x11\xa2\xff\x49\xa2\x40\x22\xa3\x04\xf5\x87\x37\xa1\ \x4b\x48\x8d\xd3\x40\x88\x93\x48\xf5\x41\x0f\xf9\xc4\x35\x59\xe3\ \x35\x22\x0e\xd1\x2d\x5e\xb1\xd5\x99\x38\xfa\x54\x93\x2c\xd0\x02\ \x59\x5d\x39\x9a\x63\xbe\x3c\x8d\xd3\x68\xca\x29\x4a\xcd\xd3\x50\ \x51\x2b\xb9\x52\xb3\x61\xc7\x8f\x19\x0c\xb5\xd1\x81\x2d\x2c\x01\ \x19\x64\x80\x33\x34\x06\x23\x21\x60\xfa\x00\x62\xc6\xf8\x10\xe5\ \x08\xe1\x47\x51\x8e\xd9\x10\xe2\x7f\x8d\x83\x05\xf8\x15\x2f\x3e\ \xd2\x13\xd6\x5b\xec\x7d\x15\xc5\x50\x4c\xe6\x20\x97\xf2\x5d\x8f\ \x4a\x5d\x64\x26\x36\x5f\x46\xbe\x0f\x38\x7a\xe4\x72\x1c\x5b\x48\ \x26\x0d\x49\xa6\xa4\xbe\x44\x91\xb4\xe1\x48\x4a\xa6\xa3\x68\x81\ \x87\xda\x2d\xc0\x58\xac\xc1\x1a\x18\x10\xa2\x09\x06\x61\xe0\x97\ \x36\xf4\xc0\x63\x18\xfe\x00\x0c\x38\x9d\xd3\xcd\x9e\x11\xfa\x10\ \x44\x0e\xe5\x47\x11\x9e\x4f\x32\x5d\x39\x28\xa1\x01\x2c\x22\xe5\ \x3c\xe5\xad\x41\xe2\x19\x41\x25\xd0\x75\x22\x60\xf1\x06\xe1\x0c\ \xd7\xd0\xd4\x40\xec\xf1\x94\xa3\x2c\x87\x66\x6e\x65\x8b\xa0\x81\ \x3e\x84\xa1\x63\x8d\x40\x08\x94\x64\x58\xea\x0f\x65\x85\x47\xd3\ \x94\xe4\xd4\xec\x4f\x59\x72\xca\x68\x39\xc2\x17\xb9\x9f\x0d\x10\ \x46\x13\xf4\x80\x36\xfc\xc9\x5d\x62\x8c\x11\xfa\x5f\x10\xfa\x90\ \x33\x42\xd0\xad\x3c\xa5\x5f\xe2\x52\x61\x16\xa6\x02\x0a\x25\x1d\ \x3d\xdf\x24\x7e\xd5\x0d\x4a\x12\x35\x2e\x9e\xd0\x89\x53\xc0\xc9\ \x0c\x07\x4e\xe0\xb4\x18\x80\x89\x30\x0a\xe7\xdc\x03\x93\xd8\x0e\ \x38\x6e\x64\xd5\x81\x66\x68\x92\x64\x6a\xea\x8b\x79\xaa\x26\xd3\ \xe8\x0b\x5a\xf2\x0f\xc0\x20\x15\xa7\x28\x15\x65\xc1\xa4\x79\xac\ \xc7\x12\x64\x80\x6d\x6a\x83\xb8\x54\x1a\x21\x02\x27\x72\x4a\xa2\ \x24\xfd\xe5\x23\x0d\x25\x80\x12\x27\x33\x26\xe5\x23\xe5\x84\xe5\ \x8c\x13\x11\x54\xda\x6a\x39\xe7\xd0\xb1\x50\xad\xe1\x1a\x75\xba\ \x88\x4a\x39\x80\x51\xb4\xc2\x12\x68\xa5\xed\x30\x5a\x7b\x78\xe3\ \x46\x42\x9c\x28\xfe\x8e\xc0\x3a\x9a\x27\x3b\x66\x4a\x58\x92\x66\ \x3a\xba\x85\x6b\x7a\x07\xa7\x94\x5d\xd6\x20\x89\x2d\xda\x67\x5d\ \xe6\x27\xb8\x55\x49\x80\xf6\x90\x24\xe5\xe8\x7f\x2e\xa4\x6f\x42\ \xa4\x10\x0e\xe5\xf9\xac\x8f\x81\xc6\x54\xe6\x5c\xce\x24\x9e\x8b\ \x8e\x8e\x53\xe6\x10\x17\x15\x1e\x97\x45\xce\x8c\x54\xb0\x08\x08\ \xf8\xc0\x51\x38\x01\x4a\x68\x25\x57\xbe\x87\x92\xd4\x21\x77\x3a\ \xc9\x2d\x88\x67\x50\xf5\xc2\x3a\xae\x63\x3a\xe2\x4f\x79\xaa\xe7\ \x59\x46\xcd\xa6\xe0\x98\x16\xc1\x67\x91\xd0\x4e\xed\xd4\xa7\x36\ \xf4\x02\x7e\xe6\x27\x23\x4a\xe2\x24\x1e\xe8\x13\x3e\x65\x8e\x06\ \xa8\x5f\x4e\x8e\x65\xf0\xa3\x2b\x40\x64\x8e\x2a\x28\x60\x1d\x69\ \xa5\x35\x25\x25\x56\x14\xcd\x44\xa8\x9c\x50\xe7\x55\x3e\x08\x08\ \x8c\x02\x52\xc0\x00\xf6\x69\xe6\x60\x94\x57\xab\xa0\x01\x98\x06\ \xd5\x22\xa8\x63\xa7\x9c\x60\x8e\xb8\xa7\xa7\x94\xce\x99\xee\x8b\ \x68\xc5\x27\x7c\x21\x95\x5c\xd0\x0e\x61\x90\xc1\x7d\xda\x25\x92\ \x02\xea\x81\x8a\x13\x54\xf2\x69\x9e\xfa\xa6\x33\x0e\x2a\x90\x7a\ \x53\x52\xe6\xe8\xd1\x5d\x4e\xec\x81\x4f\xe4\x38\x67\x91\x5a\xa4\ \x85\x45\x25\xfe\x35\x69\x48\xa4\xaa\x00\x95\x1e\x05\x01\x6c\xd2\ \x17\xba\x47\xa6\x92\x17\xa7\x7e\xe5\x3f\xb4\x02\xa6\x78\x9f\xf9\ \xa1\xa1\x7c\x0d\x54\xa9\x8e\x24\x89\xaa\xe6\x6a\x16\xd5\x69\x76\ \x5e\x2d\x10\x90\x0d\x80\x8d\x7d\xda\xa5\x2e\x06\x27\x8e\x86\x93\ \x74\x2a\xe9\x7f\xfe\xe4\x9f\xfa\x25\xf9\xe0\x12\x2f\xc2\x43\x92\ \x5a\x0e\x61\x49\xd2\x50\xe0\x25\xbf\x4e\x4c\xc0\x3d\x20\x05\x4e\ \xe7\x86\xa4\x42\x9d\xec\x41\x3b\x40\x52\x85\xa5\x01\x01\x20\x45\ \x08\xb0\xd3\x27\x86\xe3\x02\xdd\x43\x63\x85\x64\x2b\xa8\xa7\x4a\ \x8a\x92\xaa\xc6\xa7\x54\x99\xaa\x89\xb2\x23\xb9\xba\xa3\xf9\xa9\ \xce\x1a\xaa\x5d\x06\xf0\x83\x7d\xc2\x80\x5d\xea\x97\x52\xe2\xa8\ \x92\x62\x4e\xae\x4e\x0e\x0e\x0a\x65\x0f\xf1\xea\xa0\x9e\x80\x01\ \xe4\xe0\xa0\x16\x6a\xc1\xca\x94\x03\xec\x90\xc0\xa2\x4b\xc0\x59\ \x8e\x49\x85\x99\xbf\x36\xd7\xe0\x64\x4b\x06\x26\x81\xfb\x14\xc1\ \x1e\x3c\xeb\x51\x8c\x02\x78\x56\xac\x4f\x75\x6a\x3c\x6d\x2c\xb9\ \xfa\xcb\x1a\x9e\xab\x5a\xf2\x4f\xe9\xf8\x0f\x78\x91\x52\x99\xfa\ \x8f\xd8\x75\x4a\x2f\xf4\x42\x00\x68\x83\xdb\x12\x99\x94\xfc\xcc\ \x8f\x12\xfe\xaa\x8e\xe2\xa8\xd9\xec\x62\xcf\xc2\x83\xd9\xf0\xea\ \xde\xe2\xa0\x37\x25\x26\xb0\x2e\x6d\x0f\x05\x2c\x5e\x1a\x00\xbf\ \xe2\x9a\xc1\x6a\xc8\xd1\x5e\x63\x6b\xd4\x40\x12\x00\x41\x17\xc4\ \x02\x9d\xe1\x01\xa5\x22\x05\x01\xac\xc0\xa5\x36\x89\x37\xa6\x04\ \x88\x6e\xdf\x20\x94\x26\xc7\xae\x29\xff\xb4\x28\x7b\x91\xce\x16\ \x84\x57\x8e\xad\x05\xeb\x44\x91\xa7\x7c\x4a\xf9\xa9\xdf\x59\x5c\ \xca\xda\xf6\x82\x6d\x36\x86\x94\x8c\xcb\xfa\xf0\xad\xdd\xfe\xa5\ \x0a\xc0\xc3\x09\xfc\x0c\x0e\xfa\x90\xce\xfe\xd0\x37\xc5\x2c\xcd\ \x5a\xce\x7f\xe2\x2d\x64\x9c\x0b\x61\x29\x2b\xbf\x7d\x48\x3b\x20\ \x2c\x1e\x24\x5d\x11\xb4\x43\x2c\xe8\x03\x10\x4c\x19\x9d\x4c\x6d\ \x52\x04\x03\x1d\x70\xa6\xe5\x31\x5a\xab\x8c\xa3\xd6\x2e\xd1\x19\ \x90\xe8\xc8\x72\xac\x49\x92\x52\x8e\xcc\x82\x64\xa9\x81\x2d\xac\ \x81\x76\xdc\xc5\x7c\x0d\x90\x7b\x46\x1b\xc8\x76\x00\xeb\xf5\x00\ \x91\xf1\xef\xd8\xec\xe3\x63\x48\x8e\x8e\xd2\x6d\x1f\xe8\x2d\xf8\ \x54\x9a\x2b\x0c\x6d\x01\x17\x70\x95\xe4\x2e\xa1\x9e\x59\xf3\x02\ \x2c\xde\x66\x99\xde\x86\x13\x43\x2e\xab\x35\x35\x6f\x04\xe2\x41\ \x3b\xfe\x18\x16\x10\x48\xae\x85\xc1\xc3\xb3\xf6\x42\x06\x7c\xaf\ \xe6\x5e\x6d\x4f\x71\x67\x7b\x8c\x04\x39\x86\xe4\x08\xf8\x00\xbf\ \x6c\xeb\x48\x96\x68\x79\x6e\x6b\xa9\x0a\x54\x1b\x62\x56\x7c\xc5\ \x57\xd8\x25\xd5\x0e\x97\x96\xdb\xdd\x57\xcb\x5a\x41\x63\x7c\x13\ \x64\x94\x0f\xdf\xfe\xa5\x01\xe3\xe0\x01\xaf\xdc\x03\x81\x4f\x0e\ \xa2\x0b\x24\x4d\xf1\x99\xe5\xe8\xd0\x2a\xef\xd0\xca\x6b\x05\x26\ \xec\xf4\x3a\xd7\xe2\xa6\x02\x07\xf7\xc1\xe3\x7e\xb0\xc3\x82\x71\ \xbb\xf8\x00\x01\x8c\x02\x2e\x3c\x05\x47\xae\x70\xbc\x14\xdb\x46\ \xc6\x42\xf9\xce\xcf\x08\x14\xca\xa7\x8a\xea\x59\x6c\xdc\xbe\x8c\ \x2b\x89\x82\x57\xc0\xbc\x92\xb3\xc9\xa3\xb3\x65\x16\xe8\x91\x42\ \xc3\xdc\xe1\x12\xac\x40\x06\xdc\xe6\x9f\x9c\x4b\x63\x2c\xe3\x11\ \xff\x8c\x2b\xf0\x2b\x3c\x54\x72\x24\x2e\xb0\x01\x17\x70\xcf\x12\ \x6a\xc3\x42\x92\x4c\x71\xd8\xe0\x2e\x2f\x4c\x79\x72\x91\x2e\xdf\ \x86\x44\xef\xf3\x59\x53\x25\xc5\x42\x2c\x94\x13\x9a\xe9\x06\x3c\ \x8c\x02\x7e\x2e\x01\x0a\x77\x24\x27\xa1\x30\x54\xc8\x31\xb6\x26\ \xcd\x08\xf4\xf2\x19\x8c\xaa\x0f\xab\xa1\x29\xe6\x0f\x0d\xdb\xf0\ \xfe\x7b\x86\x45\x0a\x6e\x47\xb3\x2d\xc0\x1a\x64\x96\xa0\xad\x2b\ \x93\xdc\x21\x1d\xac\x00\xff\xda\xee\x63\x10\x85\x12\x76\x13\x23\ \x4d\x72\x25\x53\x32\x8e\x7a\x33\xbf\x5e\xf1\x0f\xd5\x2d\x29\x73\ \x18\x25\xf7\x81\x11\x4b\x31\x24\x29\xe9\xf5\xec\x44\x4b\x1c\xad\ \xc2\xd6\x40\x07\x7f\xb0\x64\x28\xac\x4a\xec\x01\x0c\x38\x41\x0f\ \x80\x00\x2e\x7b\xe4\xb4\xa2\x41\x0b\xef\xb2\x39\x8e\xc0\x20\xf4\ \x00\xb4\x25\xd5\x51\x25\x95\x66\xc9\x02\xb7\x9e\xe1\x09\x8a\x17\ \xa0\xe1\x05\x2b\xba\x65\x33\x2f\xc0\x75\xb4\x5d\x92\xb8\xc7\xd7\ \xe4\xce\xd8\xe0\x26\x64\x24\x62\x39\x8c\x42\x2c\x7c\x13\xbf\xf6\ \x6e\x24\x79\x33\xba\x28\xb0\xe4\x54\xb0\x0a\x74\x72\xc3\xfe\x6b\ \xef\xde\x20\xb1\x42\x46\x25\xcb\xab\x06\xbf\x33\x6f\x44\xaf\x87\ \xa8\x40\x12\xb0\xb2\x9b\x25\xdd\x5e\xad\x80\x2c\x2f\x41\x56\xfa\ \x94\x46\xde\x83\x0a\xcc\x31\xb2\xf5\x32\x0c\x9b\x9f\x42\x57\x56\ \x8e\x71\x47\x90\xd4\xd3\x54\xf9\x70\x0a\x9e\xd7\x5b\xba\xa5\x3b\ \xb8\x83\xfc\x5a\x16\xb6\x29\x49\x0c\xcc\x60\xa4\xc1\x00\x23\x5f\ \xb3\x22\x1a\x40\xb9\x2c\xef\xe1\xe6\xe8\x0a\x48\x52\x25\x17\xfe\ \xf0\x5b\xf3\x2b\x4d\xb5\x74\x39\x33\xec\x39\x9b\xcb\x37\xfd\x6e\ \x38\x95\xb3\x4e\x43\xdd\x6e\xa0\xb2\xc2\x76\x70\x2b\x0b\x84\xc2\ \x2a\x6c\x11\xa4\x02\x3e\x8f\x42\x13\x6c\x0e\xf8\xba\x48\x63\x37\ \xc7\x3d\x18\x80\x52\x47\x5c\x2f\x73\x82\x0f\xf4\xc2\x53\x3b\xb3\ \xfd\x76\x5e\x65\x29\x34\x42\x7b\x36\x8e\x89\x45\x56\x93\x97\x3b\ \xb8\xe1\xa2\x19\xc6\x2d\xa2\xc1\x34\x93\xf5\x28\xe4\xe4\x28\x9c\ \xf5\x59\x1b\x6e\x49\xaf\x40\x27\xf3\xeb\x0a\x94\xb4\x14\xc3\x43\ \x27\x63\x0e\x2a\xe3\x02\xe6\x18\xf0\xcf\x18\xb1\xe1\xd2\xad\x8e\ \xea\x34\x18\xb7\x03\xd4\x21\xf6\xe5\xd8\x54\x3d\x17\xf6\x61\x43\ \x9d\x94\x64\x00\x1b\x4b\xc5\x09\x33\x87\x96\x76\x28\x75\xfb\xb3\ \x4a\x64\xac\x40\xe7\x59\x2f\xdf\xc2\x2f\x13\x94\xf9\x01\x99\x54\ \xcf\x85\x7a\xad\x85\x54\x57\xb5\x2c\xa4\xd7\x1a\xb8\x83\x79\xc9\ \xef\x5d\xd4\xe1\x26\x0c\x0c\x1d\xa4\x04\x1a\xf4\x80\xe3\xf0\x4c\ \x6b\xbf\x76\x6b\x97\x0b\xe4\xc8\x76\xef\x4a\xd2\x6d\xf7\x6e\x49\ \xeb\x76\x49\x47\x2f\xae\x45\x6f\x0f\xc1\x43\x0e\x1e\xf1\x2e\x4a\ \x32\x4b\x07\x6e\x17\x33\x6c\x73\x35\x6c\x4d\x61\x0e\x18\xfe\xd3\ \x49\xd2\x21\x36\x3c\xac\xc0\x0a\x80\x40\x3b\x55\xf7\x37\x6e\x69\ \x79\xbd\x4a\x97\x9e\xf8\xe5\x4d\x36\xb6\xfa\x72\x2f\xcc\x42\x07\ \xb0\x25\x7a\x00\x99\x65\x45\x35\xe8\x29\x74\xa8\x2a\x34\x5b\xc2\ \x37\xc6\x91\x17\x7a\xd8\x80\x38\xa2\x01\x35\xf7\x82\x22\x99\x48\ \x48\x8f\xc3\x6b\x27\x22\x4d\x77\xb3\x92\xdb\x76\x27\xd7\xf5\x1e\ \xf8\xb6\x4c\x31\xb8\x70\x27\x30\x4d\x53\x12\xf9\x58\xb8\x3c\xff\ \xb5\x3c\xcb\x33\x44\x22\x9d\xe0\xb4\xc4\x86\x17\x01\x3c\xbc\x03\ \x3c\x80\x00\x1a\xf4\x33\x47\x52\xeb\x56\x9e\xb0\x0a\x77\x68\x97\ \x72\xa8\x38\x72\x77\x77\x4f\x4a\x2f\xbf\xf0\x28\x90\xc1\x1a\x84\ \x9d\x3c\xd2\x78\x7c\x81\x36\x7c\x3a\x75\x33\x37\x33\x2b\x76\x51\ \x3f\x7d\x6f\xac\xc0\xea\x28\x2c\xc2\x19\x2c\xc2\x0d\x29\xa2\xa3\ \xff\xb7\x11\xff\xcc\x92\x4b\x52\xf4\x22\xf8\xd1\x72\xb0\x0e\x55\ \x32\x64\x20\xa5\x24\x43\xc6\x48\x93\xcf\x4c\x55\x3a\xd3\xca\x33\ \x85\x5b\x8e\x3d\x73\xf0\xf4\x1e\x76\xbb\xbc\xc3\x0a\x4c\xb7\x4f\ \x6d\xc2\x54\x68\xe9\x46\xe2\xb2\x92\x68\xe6\x02\x65\xea\xab\xc8\ \xf9\x9c\x53\xca\x77\x2b\x22\x41\xc9\xe3\x0e\x47\xb5\xfe\x9f\x83\ \x76\x7a\x31\xf3\x68\x03\x46\x18\xd5\x67\x16\xe4\xf7\x19\x38\x41\ \xf7\xdc\x10\x64\x8c\x83\x91\x1b\xb9\x70\x3f\x46\x4d\xc3\x03\x04\ \x13\x96\xa8\x53\xf2\x47\xa3\x35\x5e\x1b\x80\x5f\xf9\x55\x12\x94\ \x93\x85\x33\xec\x6e\xa4\x02\x82\xa7\x42\x86\x53\xe1\x71\xe3\x82\ \x0a\xe0\x02\xbc\x70\xe7\xf8\x52\x37\x8a\xdb\xfa\x37\xaa\x30\x67\ \x72\x27\x57\x6f\xc2\x0a\xa8\xf8\xae\x5f\x45\x9d\xd7\x71\xc1\x20\ \x33\xe8\xe5\x18\xb1\xab\xd7\xc1\xbb\x65\xab\x98\x43\x58\xd8\x00\ \x19\xd4\xa4\x5d\x8e\x82\x13\x98\x08\xa1\x98\x48\x6c\x4b\x3b\x7f\ \x8f\x03\xa0\x44\x7a\x25\xb7\x83\x6e\xb7\x74\xf3\x46\xd2\x6d\x17\ \xee\x28\x00\xc1\x7f\x8f\x74\x22\x36\x9d\x01\x8c\x7b\xb9\xcb\x33\ \xba\xbb\xfc\x9c\x24\xac\xba\x73\x70\x25\x83\x38\x55\x64\x6a\xbe\ \x5f\xac\x89\x83\x2f\xb5\xba\xca\x77\x9a\x17\x2b\x8e\x83\xbf\xff\ \xbb\x56\x30\x35\xff\xa6\x61\x67\x17\xbb\xd2\x23\x3c\xb1\xf3\xb8\ \x76\x20\x8c\x7d\xbe\x03\x59\x5f\xb6\x89\x54\xfd\xb4\xfb\x80\xb4\ \xc3\x36\x5a\x6f\xbc\x6c\x77\x33\xc8\x57\xba\x81\x07\x77\xc9\xbf\ \xb6\x3e\x30\x52\xb9\x28\x63\x39\x8c\x3b\xb9\x33\xfe\x2c\x72\x23\ \x37\x2e\xd8\xb3\xe0\xb4\x03\x2e\xa4\x3a\xba\xc7\xf2\x28\x60\xae\ \x75\x8b\xf8\xc5\x7e\xe7\x77\xb6\x31\x87\xe2\x7c\xa6\xd2\xc1\x97\ \x12\x7d\x77\xd5\x39\x27\x8c\x42\x2f\xa4\x05\x77\x64\x16\x33\x1b\ \xbb\x5b\x3a\xf3\xeb\x96\x9c\x17\xb9\xdd\xc0\xb4\x6b\x7e\x57\x3d\ \xd6\x27\x22\xe6\x63\xfd\xb4\x1b\x00\xe4\x40\xfa\x92\x37\x2c\x25\ \x6b\x3a\x0c\x64\xbd\x22\x2e\x9c\xca\x2b\xa3\xb8\x53\x7a\x3b\xb4\ \x7e\x3b\x80\x31\xdc\xa7\x82\xcb\x6f\xb8\x3c\x8b\xb0\x0f\xbc\xc3\ \x37\xd2\xbb\x89\xdf\x3b\xef\xcf\x7a\xcf\x93\x97\x89\x4b\x36\xe1\ \x2f\xf5\x77\x9f\x81\x36\x14\x3b\x8e\x37\x3e\xd3\xfb\x70\xed\x7c\ \x0d\x60\xe0\xa3\xcb\x92\xb5\x36\x4c\xfc\xe5\x77\x8f\x65\x63\x3d\ \xd6\xf7\xf7\xd9\x7b\x3e\xc7\x2f\x39\x64\x7c\xbe\xe9\x6f\x7f\xd3\ \x35\x9d\xda\x77\xb0\xf9\xd7\x80\xba\xbf\xc1\xcc\xe3\xc1\xdc\xc3\ \x3e\xa9\xdb\xbe\x76\xde\x3a\xcf\xf7\x7d\x76\xcb\x7a\x2d\xe3\xbb\ \x38\xea\xf2\xf0\x53\x76\xc0\x13\x7b\x45\x3f\x3e\x40\x2c\x90\x25\ \x4b\x94\x39\x16\x9b\x58\xd0\xb1\x45\xc7\xc6\x8a\x0c\x3d\x32\x8c\ \x1a\xe5\x43\xa2\x8f\x71\x3e\x30\x62\x3c\x73\xfe\x71\xdc\xb8\x51\ \x1e\x3b\x8e\x33\x20\xd2\x40\xc9\x92\xf0\x0c\xbc\x33\x30\x6a\xe4\ \x38\x20\x1f\x43\x02\x71\x69\x20\x96\x81\x24\xae\x92\xe4\xbc\xd9\ \xae\x1d\x9e\x37\x3f\x53\xed\x69\x97\x8a\x28\x1e\x5c\x3c\x8f\xb6\ \x83\x27\x71\xc5\xcf\x37\x9b\x6c\x1d\xbc\xe7\x94\xea\x3d\xab\x4e\ \xad\x6e\x42\x78\x70\xd3\xd4\xa9\x6f\xac\x86\x75\xba\x67\xc4\x3f\ \xb3\x67\xd1\xa6\x55\xbb\x96\x6d\x5b\xb7\x6f\xe1\xb2\x1d\x31\xe2\ \x4c\xaf\x32\x1d\x16\xac\x59\x90\x77\x8d\x3b\x16\xe6\x3a\xc8\x32\ \x67\xce\x96\xad\x4d\x74\x36\x2d\x59\xe1\x70\x05\x8c\x88\x12\x25\ \x7a\xcc\x88\x91\x63\xc7\x8c\x1e\x4d\xb2\x5c\x59\x12\x88\x81\x97\ \x2d\x43\x76\x04\xd2\x39\x89\x8a\x9b\xa7\x63\x25\x69\xb7\x87\xe8\ \x9b\x54\xae\x5b\xbb\xc6\xc3\xb3\x9d\x8a\x9e\x7b\x46\x9d\x19\x15\ \xe3\xe7\x3d\x5b\x84\x59\x7c\xad\x1a\x36\xeb\x56\x77\xc7\x59\x24\ \xd7\x4a\xfc\xab\x55\xb2\x71\xa1\x47\x97\x3e\x1d\xfa\x5c\x4e\xa3\ \x7a\xec\x5d\x93\x7c\x8d\xb9\x05\x8e\x1c\xd9\x10\x8f\x38\x46\x0c\ \x34\x4d\x16\x2f\x86\x01\xa3\xe2\x44\x8e\x93\xcf\x50\xae\x2c\x72\ \x54\xac\x51\x9d\x59\x7e\xac\x7f\xff\xfe\xfe\xb8\x5b\xa2\xc7\x89\ \xc5\x95\x01\x93\x88\x25\xb5\xd2\xf0\x78\xad\xb5\xd7\x5c\x93\x8d\ \x36\xda\x52\xc1\xc3\x80\x33\xac\x28\xe2\xa7\x22\xb4\x92\x8a\xaa\ \xde\x8a\xd3\xca\xc3\xe4\x40\x44\xce\xc3\xae\xc0\xb2\x4a\x9f\xb2\ \xa8\x4b\x51\xc5\x15\xe1\x9a\x6b\x84\x5b\x7c\xc8\xc0\x9d\xc1\xcc\ \x01\xcf\x11\xc2\x0c\xfb\x0a\x0d\xc5\xd0\x6b\xec\x9d\x8f\x26\x9b\ \x08\xc8\xcb\x60\x9a\x0f\xa6\xfe\xfa\x13\x29\x34\xff\x46\x03\xc2\ \xc0\x9c\x46\x8b\x85\xa7\x05\x89\x8a\x8d\xa8\x76\x92\xa2\x4d\xa8\ \x3d\x96\x5a\xc1\x42\xa7\x46\xbc\x0a\xac\x31\xef\x41\x68\xb9\xb0\ \x3e\x64\xc1\x2f\xe5\x3c\x2c\x73\x13\x14\x59\x8c\x53\x4e\x39\x5d\ \x1c\x81\x13\x52\x48\x01\x2f\x47\xb1\xde\x88\x01\x04\xf4\x60\x78\ \x87\xbd\x8a\xe2\xc3\x68\xc8\x8c\x9c\x00\x69\x22\xf9\x94\x3c\x32\ \xa6\x90\x6e\x91\x29\x16\x99\x46\xd3\x47\x1f\x29\x6b\xa8\x72\x36\ \x5c\x62\x83\xad\xa7\x08\x83\x4a\x70\x28\x5c\xf6\xc0\xc5\xa7\xaa\ \xc2\xec\xaa\xab\x0e\x99\x23\x6e\x2b\x10\x43\x64\xc1\x16\x38\xe7\ \xac\xd5\xd6\x14\xe7\x2a\x27\x83\x15\xbc\xba\xca\x3c\x10\x32\xd0\ \x66\x14\x61\x07\x5d\x74\x32\x1f\x0a\xfe\xb5\x68\x49\x65\x41\x6a\ \x54\xa6\x25\xf5\x09\x70\xd2\x71\xf4\xb9\xe5\xd2\x9c\x46\xad\x01\ \x17\x4e\xad\x4c\xe5\xa8\x54\x86\x4a\x10\x8f\x71\x13\x7c\xa3\x08\ \x03\x56\xe0\x0d\xab\xad\x46\x5c\x55\xd5\xe5\xe0\x8d\xf7\xa0\x10\ \x8f\x73\xe7\x9d\x5b\xf1\xcd\x57\xba\xb9\xba\x30\x00\x9e\x12\xcd\ \x5b\xa2\x89\x60\x7b\xf1\x01\x06\x78\x60\x58\xc9\xd8\xc9\xde\x53\ \xd4\x32\x97\x94\x8c\x18\x40\x99\xa2\x9d\xd6\x52\x7d\x80\x50\xed\ \x41\x2c\xab\x6c\xf0\x4a\x70\x35\xad\xf2\x4b\x5c\x7c\x70\x02\x84\ \x0d\xd9\xcd\x10\xde\x32\xcb\x9c\xf7\xd5\x34\x93\xab\xf7\xb8\x71\ \xf4\xad\xd9\xe6\xb6\x5c\xec\x62\x1c\x10\x40\x10\xb8\x09\x18\x84\ \xd5\x46\xbd\x83\x0f\x65\x74\xbe\x8e\x3e\x7a\x29\x96\x72\x62\x09\ \xa9\xe9\x8e\x46\x7a\x16\x63\x6a\x47\xd3\xb8\x9d\x9d\x88\xfa\xb2\ \xca\xad\xc5\x15\xb9\x08\x06\x8b\x98\xc8\xcb\xe1\xd0\x6c\x77\x44\ \x58\xd5\xf4\x0b\x21\x99\x65\xce\x80\xd6\x9b\xe1\x86\xbb\xce\x5b\ \x1a\x53\x8f\x58\x78\x56\x40\xe9\xc7\x66\x9b\x25\xf2\x59\xcf\x00\ \x87\x18\xc0\x90\x06\xf9\x0f\xe3\x8c\x79\x52\x0d\xdb\xac\x81\x02\ \x79\x6b\xae\xad\xfc\x69\x0f\x1f\xfe\x7a\x39\x79\xc3\x12\x3b\x34\ \x9b\x4d\x76\xe9\x95\xd9\x8a\xb7\xe3\x0e\x5d\xee\xb9\x0c\x28\x47\ \x22\x18\xf2\xce\x3b\xa5\xcd\x96\x5c\x32\x49\xa8\x05\x0f\xed\x96\ \x5b\xce\xa0\xfd\x16\x03\x9d\xd4\x49\xe3\xc7\x3f\xee\x18\x36\xde\ \xa9\x22\x19\x0b\x27\xbe\xc4\x8a\x4c\xcc\xdb\x74\xd3\x6c\xe3\x64\ \x5e\x83\x13\xd0\x45\x8f\xbe\xe6\xb9\x2d\xc0\x1b\x5d\x94\x4c\x6a\ \xbd\xb2\x67\x63\x97\xdd\xbf\xda\x67\xa7\xf6\xf0\x03\xa7\x2c\xca\ \xfc\xad\x81\xf2\x98\x28\x4e\x1b\xfc\x49\x78\x2c\x2c\xbf\x7c\x43\ \x57\x59\x75\x33\x66\xe4\xd4\x74\x5b\xfa\xfd\x45\x77\xf1\x96\x51\ \xe0\x01\x0f\xa5\xa0\x24\x62\xd1\x8a\x96\xf6\x04\x67\x38\xdb\xf9\ \xa7\x23\xd5\xa2\xd6\x81\x76\x57\x94\x6d\x25\x25\x72\x54\xe2\x1d\ \xd8\x46\x81\x05\x2c\x8c\xe2\x72\xc2\x99\x9f\x58\x92\xc7\xbc\x7a\ \xa9\xe9\x1d\xd0\xe3\xdf\x09\xf3\xe5\x3f\x93\x94\x84\x5a\xfe\x39\ \x60\xeb\x28\xe6\x9f\x05\x36\xd0\x52\xd6\xb2\x54\x6a\xb0\x54\xbe\ \xf5\x7d\x6b\x28\x0c\xa2\xca\xe3\xb8\x85\xbe\x37\xac\xa0\x15\xc3\ \x53\x17\x87\x3c\x58\x15\x0e\x6d\x2e\x66\x6b\x70\xe2\x71\x1c\x31\ \x17\x14\x4e\x31\x74\x2e\x7a\xfe\x60\x0b\xa7\xd6\x91\xda\x85\xc4\ \x80\x5a\xdc\xa2\xa5\x2a\x75\x2d\x08\x81\x0b\x4b\x41\x1c\x95\x0f\ \x37\xf4\xb8\x1e\xa2\xb1\x1d\x04\xc0\x42\x08\xe2\x97\x39\x3e\x79\ \x50\x79\xef\x62\x41\x5f\xdc\xe1\xc4\x0e\x98\x90\x8a\x7d\xbc\x95\ \xff\x66\xf7\x9f\x04\x32\x50\x90\xff\x99\x1d\xf8\xa2\x95\x3b\xdd\ \x6d\xec\x28\x49\xe1\x14\xb7\xe4\xa7\x20\xe0\xf9\x70\x0f\x45\xc4\ \x42\x53\xc0\xb4\x89\x35\xb1\x89\x8e\x2c\x63\xce\xda\xd2\xa6\x3f\ \x3f\x8e\xf2\x66\x75\x1a\xc1\x0b\xc7\xb1\xc5\x16\x86\xcf\x70\x2e\ \x81\xe0\x22\x37\xf6\x20\xdf\xc9\xef\x77\x1d\x43\xe3\x1b\x70\x71\ \x06\x0d\x8e\xa2\x78\xf6\xcb\xd0\x1a\x48\x84\x3c\xb3\xd9\x0f\x44\ \xb7\xe0\x23\x29\x91\x69\x2b\x7e\x1d\xd2\x90\x96\x6a\xa0\x93\x5e\ \xa9\x93\x27\x59\x2d\x71\xaa\x99\x25\x2d\x3d\x96\x4d\xaa\x54\x52\ \x83\x4e\x38\xe2\x27\x41\xb4\xaa\x96\xa5\x2d\x66\xca\xb9\xdf\x1a\ \x8e\x99\x4c\x75\xce\x09\x90\x2e\x81\x26\x34\xa5\x89\x3b\x68\x92\ \xaf\x9a\xd6\xbc\x25\x36\x25\xd9\x29\xa7\xe4\x52\x83\x8b\x38\x15\ \xaa\x7c\xf9\xae\x57\xa1\xcd\x38\x2c\x58\x41\x3a\xd7\x99\x50\x16\ \x01\x12\x08\xf0\x28\xd0\xfe\xa4\x26\x75\x31\x30\x46\xf3\x6a\x10\ \xc2\x26\x2d\x15\xd4\x3e\xaa\xe0\xc1\x07\xfd\xc4\x45\x07\xaf\x52\ \x1c\x57\x9d\x4d\x73\x08\x55\xe8\x49\x57\x34\x37\x88\x01\xa1\x5a\ \xb3\xc3\xd8\x2b\xa7\xb9\xc6\x8b\xe2\x93\x96\xef\x23\xde\x4c\xbd\ \x82\x95\x56\x79\x32\x2b\xb7\x40\xe9\x4f\x4b\x39\x17\x97\xb2\x34\ \x77\xf0\xcc\x98\x3d\xf5\x39\x53\xa5\xbe\x01\x04\x6e\xbc\x24\x36\ \x93\x48\xcb\xe6\x60\x0e\x1e\x26\x05\xea\x55\x55\xe4\x22\xa2\xb2\ \x14\x8c\x56\xb3\xe5\x52\xc1\xfa\x06\x78\x14\x31\x04\x1f\x0d\xeb\ \x45\xd1\xc4\x02\x20\x60\x95\xad\xd3\x13\xaa\x4b\xf5\x81\xd4\x05\ \x9d\x55\xa9\x61\xd3\xa0\x0f\x40\xca\x21\xa5\xe6\x34\x43\xe6\xf0\ \x69\x5b\x01\x8b\x2f\x53\xea\x43\x87\x19\xa5\xeb\x4c\xdb\xd1\xd1\ \x10\x60\x72\x5d\xc2\x39\xd3\x98\x3e\x28\xd0\x4d\x1c\x34\xb0\x95\ \xd5\x97\x8b\x5c\xd1\xc3\xc3\x2a\x55\x42\x12\x41\x43\x07\x83\x09\ \x16\x4e\x26\xb1\x65\x67\xba\x07\x10\xac\x6a\x59\xd5\xee\x6b\x04\ \x5d\x28\xcd\x66\xb1\x59\x84\x3d\xac\x00\x0d\xc5\xeb\xe0\xba\x46\ \x18\x9c\x90\x2a\x2f\x2c\x20\x48\xed\x6a\x81\x5b\x9d\xb9\x58\xea\ \x9f\xb0\xbd\xd0\xd7\xfe\xce\x8a\x10\x27\xf6\xc5\x65\x75\x5c\xd5\ \x12\x7e\x1b\x5c\xe9\xbe\xa5\x4e\xfa\x50\x41\x11\x6c\x6b\xdc\xbd\ \xf6\x66\xa0\x5b\x01\x66\xbc\xb4\x62\xcc\xe9\x8e\xf7\x8f\x2f\xda\ \xc3\x1e\xb2\xab\x5d\xb2\x09\x67\xa4\x9a\xdc\x5c\x86\x58\x10\x5d\ \xf2\xce\x97\xba\x23\x00\xc2\x35\xe0\x51\x03\xf5\xce\x6f\x65\x25\ \xc2\x9c\x73\x47\x24\x4a\xfa\x0e\x98\x4e\xfc\xea\x02\x10\xf6\xbb\ \x2e\xe5\x30\x07\xb2\x99\x0b\x2f\x81\x21\x5c\x2b\x53\xa2\x37\xbd\ \x74\x2d\xad\xca\xc4\x64\x3c\x71\xfe\x35\xc2\x1d\x66\xe7\x2d\xba\ \xb0\x87\xe2\x1e\x36\x2b\xee\xc8\x8b\xda\xe6\x48\x9c\x13\x79\x98\ \xc5\xec\x6c\x6d\x2c\x1c\x30\xe2\x8b\xc6\x80\x0e\xc4\x61\x81\x2c\ \x6a\x21\x0b\xe6\x72\x45\x9c\x57\x41\x6d\x8b\x81\x5c\xe0\x2e\xf4\ \x6b\xaf\x9b\x70\xc4\x76\x94\x5b\x0b\x62\xc8\x62\x01\x32\x7b\xef\ \x3d\xc8\x22\xdf\x20\x4f\x19\x2d\x13\xc6\x43\x85\xe1\x8b\x1c\xbd\ \x0c\x04\x8f\xf8\xe3\xf1\x26\xaa\x4a\x65\x31\x0b\x59\x05\x2a\xa0\ \x4a\x96\xd5\xd4\x1d\x73\xd8\xc0\x1c\x5d\x9e\x17\xac\xdc\x61\x00\ \x29\x8f\x99\xce\x67\x71\x11\x8c\x8b\x60\xbf\x11\x16\x26\x21\xdb\ \xd9\x24\xda\xee\x76\xc8\xe1\x3a\x0f\x1a\x57\xad\x1d\xc7\x0a\x3a\ \x27\x2b\xa8\x44\x45\x39\x7f\x3e\x8e\x39\xe6\x4c\x68\x49\xff\xc3\ \x7f\x6c\x76\xa2\xac\x64\xe5\x67\x11\xd6\x6b\x1c\x91\x9e\xf4\xa7\ \x5d\x34\x0a\xd4\x61\x7a\x4d\xaf\x92\x99\xa0\x3f\x9d\xea\x42\xdf\ \xc2\x02\x06\x78\xb3\x87\xda\xe6\x69\x55\xab\xda\x7f\x5d\x58\x41\ \x96\xeb\x35\x0a\x59\xcf\x7a\xd6\x65\x79\x11\x0c\x6c\xf1\xc4\x3c\ \xa2\x9a\xd7\xc5\xce\xea\x8b\x46\x91\x01\x35\xe8\xda\xd8\xcd\x2e\ \xf0\xec\x76\xed\xec\x66\xbb\x08\xa5\x01\x01\x00\x21\xf9\x04\x09\ \x00\x00\xff\x00\x2c\x00\x00\x00\x00\xf0\x00\xf0\x00\x87\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb5\xc6\x8f\xff\xff\xff\ \xd3\x88\x8a\x93\x4a\x33\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x56\x86\x3b\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x54\x67\x1e\x5c\ \x02\x94\xff\xff\xff\x50\xa8\xe0\xcf\xc9\xe4\x13\x28\xa8\xff\xff\ \xff\x0f\x26\x68\xcf\x67\x46\x09\x68\x9c\xff\xff\xff\xf3\x89\xb9\ \xff\xff\xff\xff\xff\xff\xf6\xa7\xb7\xb0\xa8\xb0\xff\xff\xff\x8d\ \x68\xaf\xff\xff\xff\xb0\x88\xab\x13\x29\xe1\xf9\xc8\xe4\xff\xff\ \xff\x4d\x68\xf8\xff\xff\xff\xf7\xe7\xbc\xff\xff\xff\xff\xff\xff\ \x93\xf2\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf1\x70\x45\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf4\xb1\xf2\xaf\xa9\ \xf0\xfb\x8e\x5e\xff\xff\xff\xf6\xe8\xf2\xff\xff\xff\x92\xc8\xfb\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x49\x4b\xe3\x8c\x95\xf4\xff\xff\xff\xd4\x8f\xf3\xff\xff\ \xff\x90\x93\x6d\xff\xff\xff\xff\xff\xff\xff\xff\xff\x38\x56\xf6\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xaf\xc8\xf5\x2d\x8e\xbc\x11\ \x38\x66\xf9\xd8\xec\x2a\x2c\x97\xff\xff\xff\xff\xff\xff\xcf\xd8\ \xf1\xf1\x99\xb4\xff\xff\xff\x0a\x17\x1a\x99\x29\x38\xb2\x8f\xef\ \xfa\xc9\xa2\xff\xff\xff\xb4\x52\x2f\x04\x0a\xd5\xff\xff\xff\xff\ \xff\xff\x71\x68\x6a\xd0\xaf\xf6\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xfa\xfd\xfa\x90\xb1\xf9\xff\xff\xff\xae\xb9\xf1\xf0\x90\x90\ \xff\xff\xff\x72\x8c\xf9\xff\xff\xff\x32\x49\xeb\xfa\xb8\xbc\xff\ \xff\xff\xb1\x70\xf2\x6f\x79\x28\xff\xff\xff\xf3\x70\x6e\xff\xff\ \xff\x76\xf4\xfc\xff\xff\xff\xff\xff\xff\x51\x12\x47\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xbc\xe2\x94\xff\xff\xff\xf3\x28\x27\xb8\ \x28\x84\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x27\x1b\ \x92\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf6\xa6\x88\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\x77\x0a\x51\xff\xff\xff\xff\ \xff\xff\x94\x57\xf5\xd0\xf5\xfb\xff\xff\xff\x93\x6e\xf7\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8c\x11\x4a\ \xb1\xf2\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\x6f\xb4\xf5\xff\ \xff\xff\xa7\x1c\x5c\x75\xca\xf9\x4f\x97\xe2\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb0\xd8\xfb\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x8b\x25\xbf\xff\xff\xff\x44\x1a\xb4\xff\ \xff\xff\x39\xb1\xee\xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\x55\ \x30\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x57\x76\x27\xff\xff\xff\xff\xff\xff\xff\xff\xff\x12\x78\xa8\xd1\ \x78\xa1\xff\xff\xff\xff\xff\xff\x19\x37\xe0\x58\x76\xfa\xff\xff\ \xff\x2d\x39\x67\xff\xff\xff\xb2\x79\xaa\xff\xff\xff\x48\x5a\xf5\ \xff\xff\xff\xaf\xb8\x79\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x8f\x3b\x29\xf8\xd8\xa9\x33\x58\x64\xff\xff\ \xff\xff\xff\xff\xaf\x59\x5e\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xb8\x8b\x72\ \x5a\xf1\xff\xff\xff\x70\x59\x68\xff\xff\xff\x72\x15\x51\xff\xff\ \xff\xff\xff\xff\x97\x1a\x2c\x8e\x97\x4b\xd4\x97\x92\x91\x98\xb2\ \xff\xff\xff\xb3\xb7\xad\xff\xff\xff\xff\xff\xff\xee\x78\xa9\xfb\ \xf8\xc5\x74\x97\xb5\x91\xd8\xfb\xff\xff\xff\xff\x00\x00\x08\xfe\ \x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\x05\xbb\x29\x5a\xc8\x50\x11\ \xc2\x87\x10\x23\x4a\x9c\x48\xb1\xa2\xc5\x8b\x18\x33\x6a\xdc\xc8\ \xf1\xa0\x86\x8f\x7d\xfa\xcc\x9b\xd7\x70\x61\xc7\x93\x28\x53\xaa\ \x5c\xc9\xb2\x25\x45\x45\x21\x63\xce\x0b\x69\x4c\x43\x4d\x34\x64\ \x14\xa1\x31\xe9\xb2\xa7\xcf\x9f\x40\x83\x66\x04\x36\x32\xa4\x86\ \x98\x47\x8d\x29\x15\x39\x72\x9e\x88\x3f\x7f\xea\xfc\x11\x4a\xb5\ \xaa\xd5\xab\x1b\x81\xc5\x44\xda\x07\xe4\xd1\x3e\x11\x9a\x5e\x23\ \x10\x67\xc8\x10\x4a\x61\xd0\xa2\xc5\xca\xb6\xad\xdb\xa0\xc0\x6a\ \x1e\x2d\x2a\x73\xab\x31\xa6\x04\xf6\xc5\xd9\xcb\x77\xaf\x1e\x3d\ \x66\x00\x3b\x7c\x4b\xb8\xb0\xe1\x89\xc0\x3e\xce\xbd\x36\x73\xe4\ \x35\xc6\x7d\xe4\x8a\xbc\x06\x46\x6f\xdf\xbe\x43\xf4\x9a\xdd\xfc\ \xa7\xe4\xe0\xc3\xa0\x43\x0b\x55\x74\xe0\xa3\xb1\x79\x8f\xe7\x45\ \x10\x49\x00\x11\x63\x63\xdf\xbe\x19\x0b\x4b\x00\xcc\xe5\xbe\x33\ \x5e\x78\x1b\x82\x79\xf3\x10\x2e\x75\x4a\x8a\x1e\x4e\x1c\x65\xb7\ \xae\x77\x51\x3f\x0e\x89\x1a\xd1\x0c\xd7\x1a\xa2\xcd\x9d\x97\xf7\ \xf6\x5e\x6f\xf4\xa2\xe8\xb1\x7c\x9b\x77\x5f\x2e\x8a\x74\xfe\x34\ \x2c\x4e\xbe\x3c\x44\x34\x91\xa7\x43\x0e\x3b\xcf\xf9\xbe\x19\xd7\ \x34\x7c\xb3\x69\x2c\x8a\x87\x19\xd6\x87\xcc\xe0\xe2\xdd\xba\x7f\ \xbe\x43\xfc\xa1\x03\x54\x03\x7e\x66\xde\x81\xa2\xa1\x57\x53\x72\ \x4d\x31\x75\xcd\x0c\x7a\x21\x32\x8f\x62\x1f\x45\x81\x08\x7f\xff\ \xe5\x97\x61\x59\xfb\x71\xe1\x21\x7f\x75\x48\xa5\x4f\x67\x08\x96\ \x48\x18\x1a\x72\x29\x76\x17\x73\xa8\x55\x17\x87\x37\xd7\x74\x05\ \x52\x14\x63\x79\x33\x43\x7f\x1b\xe2\x97\xe1\x3e\x99\xc5\xb1\x9f\ \x77\xfa\xbd\x80\x02\x25\x28\x0c\x39\x95\x89\x48\x0a\xd5\x8d\x06\ \x5b\x44\x23\x9d\x74\x8a\x39\xf8\x60\x1c\x9d\xc0\xd8\xd5\x7c\x1a\ \xb0\x31\x4f\x14\x04\x40\x88\xe3\x86\x3b\x96\xe5\xcd\x3d\x66\xf0\ \xf6\x9b\x07\xbb\x79\xc7\x05\x0a\x06\xd0\x53\x64\x92\x70\xae\x24\ \x4f\x34\x5b\x8c\x41\x67\x34\x63\xe4\x89\xa7\x06\xa8\x85\x34\xe5\ \x3e\x1e\x4c\xf8\x91\x74\x7d\x44\xc1\xa5\x19\x04\xd8\x08\xe0\x97\ \x60\xf6\x65\x86\x01\x29\x70\xb1\xd7\x0c\x1e\xa0\x09\x60\xa5\xf7\ \xa4\xe9\x1b\x78\xc2\xc5\xe9\x69\x44\x64\x44\xf7\x4d\x34\xa3\x3a\ \xa9\x41\x9e\x7c\x32\xf6\xd1\x83\xfb\x48\x88\xd4\x5c\xfe\x51\x6c\ \x49\xe3\x3d\xd7\xa8\x43\x00\x01\xea\xdc\xd8\xe8\x6d\x5c\x10\x40\ \xcf\x6e\x62\x7a\xf0\x02\x90\x5c\xdc\x93\x42\x0a\xf7\x60\xb8\xe8\ \x66\xe2\x8d\xf7\xe9\xb3\x02\x85\x4a\x21\x85\xdd\xd8\xd9\x87\xaa\ \xc7\x5d\x73\x0f\x01\xb1\xc6\xda\x87\x56\x45\x6d\x49\x57\x14\x85\ \x46\x61\x86\x8d\x3a\x5e\x96\x19\xa3\x65\xf9\x36\xc4\x0b\xf7\x0c\ \x6b\x26\x17\x1e\xdc\xd3\xc2\x0a\x6c\xa4\xe0\x01\xbb\x97\xd5\x21\ \x5e\x67\xe2\x41\x9b\x24\x1a\xa6\x6d\xa5\x55\x94\x45\xcd\x08\xd9\ \x56\x85\x8a\x2b\x6b\x4c\x5a\x15\xfa\xd8\x3d\xe9\x5e\x36\x43\xc5\ \x98\xcd\xa0\x07\x01\x7a\x78\x50\xa6\x59\x1e\x7a\xe3\x41\x0a\x51\ \xb4\x13\x0d\x1b\xfb\xee\xca\x97\x1e\x50\x41\x65\xa0\xc0\xc4\x91\ \xd1\x15\x53\x2c\x0a\xaa\x55\x14\xf4\xc8\x48\xd4\x4c\x08\x37\x45\ \x23\x64\x89\x6d\x65\x28\x3d\xd7\x78\xc3\x85\xae\x00\x22\xcd\xeb\ \xb1\x64\x7a\xc0\x1f\xa5\x4e\xd7\xcb\x06\x21\x76\xa2\xac\x32\x66\ \x60\xc8\xc1\x46\x26\xef\x74\xfd\x0e\xcc\xa2\xc9\xbc\x22\x7b\x4d\ \xcd\xe4\x20\xcf\x5f\x45\x47\x68\xd9\x23\xc5\x3a\xa1\x8c\x1a\x80\ \xeb\x73\x0a\x66\x64\xfc\x9f\x37\x29\xd0\x83\xec\xfe\x3d\xf7\x9d\ \x69\x86\x07\xf4\xb0\x91\xa7\x9d\x2d\xd8\xa6\xf2\x10\x59\xf0\x13\ \x43\x9d\x83\xe7\x49\xc8\xe3\x90\xbf\x0c\x76\x55\x30\xc5\xa4\x14\ \x48\x0d\x32\xf7\xd8\x35\x07\x77\x45\x08\x94\x65\x33\x96\xb9\x93\ \xd1\x30\x35\x8f\x56\x5a\x4d\x69\x1d\x77\x7b\x0d\xa1\xc7\xb1\xf4\ \xb4\x40\x00\x7f\xf5\xd6\xdb\xc2\x37\x8e\xb7\xd3\x4e\x3d\x86\x6f\ \x38\x84\x07\x77\xd0\xd9\xf8\xf0\xc3\x43\x42\x35\x21\x90\xc8\x33\ \x39\x55\x8a\x84\x45\x53\x74\x98\x9b\x0d\xae\xad\x90\x35\x36\xed\ \xb5\x4d\x85\xa5\x2a\xaa\x22\x19\xdc\x07\xc5\xb7\xbd\xc7\xba\x8f\ \xf5\xa6\x20\xbb\x87\x80\x1b\xdb\x42\x3b\x9f\xb3\xc1\xc6\x37\xbb\ \x4b\xea\xdf\x10\x60\x64\x91\xc2\x37\x21\x10\xaf\xff\xf0\x69\x34\ \x0e\xc9\x18\x90\xc8\x44\xa7\x96\x87\x12\x99\x89\x24\x02\x1f\xb1\ \x13\xe6\xe0\xa6\x1c\x75\x5c\x43\x04\x23\x31\xc0\xe9\xd4\x76\x2d\ \xc6\x68\x0f\x32\x8a\xc9\x5c\x48\xb4\x02\xbe\xcb\xe8\x65\x7c\x43\ \x30\xc3\x3d\xe8\xd1\x34\x4c\xb5\xa1\x1e\xf8\x5a\x41\x14\xca\x50\ \x0f\xdd\xc9\x01\x47\x66\xf1\x40\x3d\xde\x17\x8d\xfc\xed\xef\x86\ \xfc\x1b\x43\xff\xf2\x94\x86\x2d\xc4\x80\x1f\xfe\xf7\xf0\x0c\x01\ \x35\x22\x0f\x9b\x88\x44\x31\xf3\xa1\x99\x8c\xfa\x40\x0f\x02\xa4\ \xc6\x31\x31\xd2\xc0\xe7\x2a\x28\x16\xd1\xcd\x83\x41\x66\xeb\x1e\ \x1b\xbe\x07\xac\x0c\x81\xac\x52\x04\xf0\x18\xc7\xf8\x36\xb2\x16\ \x44\xa1\x1e\x40\x98\x61\x0c\x56\x00\x06\x33\xc9\x90\x1f\xdf\xe8\ \x82\x0d\x71\x48\x47\x1e\x8e\x21\x04\x21\xf8\xc0\x0e\xf1\xe8\x8c\ \x6f\xc4\x40\x0b\xfc\x28\x42\x1b\xff\xa5\x08\x12\x0d\x51\x22\xf2\ \x18\x03\x85\xa0\xc4\xa7\xb2\x81\xeb\x31\xf4\x98\x47\x24\x89\x16\ \x49\x41\x35\x12\x8a\x65\x5b\x4d\x58\x22\xe0\xbc\xa6\xa4\xae\x68\ \xfc\xe2\xcd\xc5\x44\xf6\xb7\xda\xb5\xe1\x1e\x6d\x38\x56\x0b\xea\ \x81\x42\x14\xf2\x23\x05\x59\x00\x03\x1d\xd8\x30\xc7\x3a\xda\x92\ \x87\x78\xc4\x63\xff\xfa\x67\x43\x48\x6c\xe1\x1b\xfc\x88\x25\x80\ \xa4\xd2\x32\xc9\x1d\x52\x11\x54\x83\x92\x9d\xa0\x34\x99\x4a\x8a\ \x84\x12\x4e\x1c\x49\x25\x1f\xe3\x40\x99\xb0\x8d\x6d\xec\xd9\xa4\ \x06\x0d\xe5\xa2\xdb\x40\x0d\x4d\x95\x12\xa1\x2a\xcd\x57\x8f\x55\ \x96\x21\x05\xac\x44\x21\x1b\x98\x50\xc3\x5b\xba\x73\x70\xbb\xbc\ \xa3\x2e\x75\x98\x27\x3c\x8e\x20\x06\xf5\xfe\xa0\x05\xbb\xf4\x10\ \xa2\x7e\x1a\x53\x60\x89\x54\xa0\x93\xec\xd4\x8d\xb5\x89\x8e\x28\ \xd7\x30\xc3\x35\x24\xd8\x94\x5f\xcd\xc0\x1b\x59\x0c\xd7\x35\x2d\ \xd8\x20\x59\x91\x2b\x24\xf6\x19\xdf\x5e\xb8\x70\x2c\x33\xa0\x6f\ \x84\xe6\xe3\x07\x1b\x56\x50\x8f\x26\xd0\xe1\x1e\x69\x5c\x41\x0c\ \xf0\xf4\xce\x96\xe6\x90\x97\xf9\xdb\x63\x08\x7e\xc9\x8f\x60\xf2\ \x8b\x2f\x5c\xd0\x03\x0a\xfe\x12\x04\xb0\x29\x62\x70\x4f\xc2\xd3\ \x9e\x88\xe2\x4c\xa2\x98\x41\xa1\xd2\xac\xd1\x73\x16\x66\xcd\x2a\ \x8a\x4e\x9b\x4c\x89\xd5\x16\x63\x75\x8f\x2f\xfd\xce\x50\x91\x02\ \xc3\xeb\xc8\x49\x52\x7e\x4c\xa3\x1e\x95\x6a\x02\x3b\x6b\xe9\x52\ \xfd\xed\xf0\x86\xbb\xcc\x25\x3d\x73\xb9\x85\x10\x7c\xc3\x15\x59\ \xb8\xda\x6f\x8c\xa6\x9b\x4f\xc1\x64\x81\x6a\x33\x95\x48\x88\x76\ \xba\x6b\x79\xc3\x0c\x94\x90\x64\xad\x36\x47\x34\xa3\xcc\x2c\x74\ \x4f\xcd\xa6\x52\x32\xd9\x15\x1a\xe1\x68\x1f\x78\x6b\x81\xbe\x2a\ \x75\xac\xca\xa6\x20\x8d\x77\x58\xc1\x1d\xda\x51\xd6\xce\x12\x6f\ \x87\x30\xcd\x25\x1e\xb7\x40\x5a\x7e\xbc\xf0\x6a\x98\x29\x8b\x6a\ \x85\x58\x1c\x45\x38\x46\x1d\xde\xf0\xfe\x95\x8c\x0a\x1a\xb7\x79\ \x38\xf0\x74\xf3\xb0\x91\x42\x2b\x29\x51\x72\x05\xed\x2b\xd8\x1b\ \x89\x36\x39\x19\x19\x4e\x46\x41\x93\xf2\x41\x4d\x27\x30\x83\xb7\ \x63\x75\x2c\x95\x40\xf0\x40\x1b\x3d\xd0\x84\x76\x84\xe0\x7f\x9e\ \xcd\xee\x59\xed\xa8\xd6\x3b\x92\xf6\x97\x6c\x28\xc2\x4d\x51\xeb\ \x9b\xce\x38\xcb\x30\x0b\xa9\xd1\x3e\xde\xe3\x9a\x9c\x7d\x64\x49\ \xa8\x51\xc7\x24\xd1\x85\x54\x60\x24\x06\x75\x1a\x34\x9d\x6a\x38\ \x99\x49\xfe\x46\xe0\xb8\xab\x91\x8f\x06\x22\x90\xac\xfe\xfc\x6e\ \x95\x95\x7a\x41\xed\xcc\x42\x07\xeb\x66\x57\xbb\x76\x3c\x6b\x1a\ \x72\x79\xd6\x99\x8e\xe0\xad\x55\x45\x2d\x6a\xf5\x50\x20\x43\xb6\ \xc5\xb5\x8f\xb1\xd1\x7a\xdf\xa3\xd0\x28\x24\x26\x1a\x44\xb1\x51\ \x6c\xbd\x31\x62\xec\xf4\x21\x1a\x84\x80\x15\x6f\xd9\x76\x97\xe4\ \x3c\x75\xbf\xaa\x51\x0d\x6c\xbe\xf1\x4b\x0d\xd0\xa8\x77\x23\x8b\ \x42\x1b\x62\x58\x29\x30\x00\xc1\xc1\x0f\x86\x30\xf1\x44\xdb\x38\ \x3c\xc6\x26\x1a\xcf\xb8\xc7\x72\x35\x7c\x38\x00\xb5\xac\x65\x56\ \x71\xad\x63\x58\xbc\x17\xc8\x12\x40\xa1\x7d\x28\x4d\x1f\xcc\x00\ \xa1\x8b\x71\xc7\x1b\x7d\xa0\x5a\xfe\xdc\xa2\x0a\x45\xb7\x99\x8d\ \x3d\x14\xe5\x24\x27\x95\x32\x1f\xd2\x0e\x8e\x0d\x19\xfe\x1d\x2b\ \xf7\xb5\x19\xea\xb2\x34\xc9\x80\x6e\xdc\x84\x99\xbc\xd6\x99\x92\ \x56\x0b\xf7\xa0\xb2\xa2\xd5\x45\x89\x3a\x84\x21\x44\xff\x4c\x89\ \x6b\x21\x38\x96\x16\x7b\x43\xc5\x31\x3a\x4e\x0a\xb8\xc3\x3a\xce\ \xc1\x18\x56\x82\x15\xec\x13\xab\x38\x0f\x7e\xec\xb7\x26\xb1\x49\ \xb5\x9d\xc7\xb0\x85\x3e\x20\x2b\x0b\xf7\xe0\x5b\x1b\xcb\x02\x86\ \x26\xfc\x99\x9e\x81\x06\xb4\x68\x09\x2d\xcf\x10\x44\xc3\xa6\x8b\ \x0e\xf6\x65\xfe\x42\xec\x48\x6b\x44\xcb\x23\x31\xc3\x7a\x9d\x18\ \xe2\xd8\x1a\xe0\x5b\xf3\x50\x76\x1c\xc6\x07\x1f\xcf\xa1\x18\x8a\ \x63\x79\x8c\x9b\xb1\xcd\x18\x7e\x20\x30\x36\xbf\x4c\x35\xee\x96\ \x19\x1b\x3c\x4b\x97\x7e\x60\xa0\x2e\x67\x05\x9d\x6b\x5d\xef\x3a\ \x04\x13\xee\xdf\x07\x9a\xe4\xeb\x3b\x64\x61\xbc\xc2\xa6\xf2\x10\ \x8c\x8d\x11\x45\x10\x05\xa1\xb8\xf2\x6d\x8d\x08\x90\x82\x90\xe4\ \xcb\xa3\x1a\x75\x31\xf4\x24\x79\xd4\xbf\xa6\x26\x83\x56\xcc\xde\ \x47\xbe\x1b\x1b\x01\x3f\xd9\x4e\xdf\xa8\x07\x1d\x62\xd8\x04\x36\ \x74\xa1\xdd\x20\x67\x37\x77\xfe\xf3\xd8\x85\x2e\x7c\x00\x8f\xbf\ \xbe\x77\xbe\x57\xbe\x17\x0f\x1b\x47\x91\xd3\xf9\x96\x48\x68\xe4\ \x40\x13\x97\x8b\x4c\x4a\x9b\x94\x13\x4d\x1c\xb7\xb1\x80\x81\x52\ \xd7\x20\x17\xf4\x0e\x18\x81\xd9\x6c\xb2\x26\x76\xae\xb8\x6c\x68\ \x38\xaa\x51\xf1\x03\x08\x59\x00\x02\x2d\x5b\xda\x85\x26\x78\x00\ \x08\x4c\x08\x39\x1d\x25\x3c\x53\x27\xb5\x35\x8f\xdf\x60\x02\x1b\ \xf8\xd1\x3b\x96\x2f\xda\xe5\x27\x69\x5c\x69\x96\xa4\x81\x03\x88\ \xc4\x00\xd7\x88\xa4\xa1\xda\x74\x0d\x0f\x20\x02\x5d\xb8\x39\x5a\ \xa0\xa2\x90\x82\xdd\x80\x61\x4c\x04\x87\xdb\xa0\xb6\x60\x93\x08\ \xb0\x01\x81\x2c\x25\x3c\xe1\xbf\x11\x81\xa6\x97\xea\x64\xf5\xe0\ \xc7\xad\xf5\xe7\xeb\x76\xc4\x71\x0c\x5d\x90\x83\x6a\xef\x31\x79\ \xad\xbf\xf4\x8e\x1f\xe8\xc2\x16\x4e\xde\x85\xb0\x93\xf6\x1b\x77\ \xd8\xb8\xd9\x17\x1d\x30\x95\x9c\x4a\x4f\x09\xb4\x93\x98\x13\xea\ \xb1\x6e\xc9\x8e\x68\x51\x50\x94\x07\x8b\x35\x3b\x1e\x79\x20\x51\ \x1e\x88\x51\x3b\x34\xd0\x8d\x3a\x2d\x1e\x89\x3c\x3e\x7d\x8f\xdf\ \xf7\x0d\xf7\xe1\xcf\x49\xf0\x23\x2b\x00\xb1\x3b\x06\x26\xdc\x5b\ \x96\xcf\x78\x46\xef\xe8\xfe\xd0\x79\xcf\xdb\xf1\xfb\xb9\x9c\x37\ \xa9\xa2\x51\xfa\xd8\x00\xa1\xec\xab\x57\x19\xda\x3b\x92\xb3\x82\ \x12\xa5\x0f\xd5\x52\x64\x69\xa2\x50\xe6\x92\xf9\xb8\xb0\xae\xbe\ \x4f\x77\x6e\x64\x96\x19\xfc\x9d\x0b\x78\xf3\x2d\x97\xa3\x40\x14\ \x22\x17\x4f\x26\x1d\x8c\x27\x6e\xa3\x32\x38\x64\x95\x06\x2b\x70\ \x52\x77\x60\x72\x4d\xd0\x17\x72\xd0\x04\xfd\x01\x04\xdd\xe7\x7d\ \x11\x46\x4f\x83\x46\x72\xbf\x54\x43\x6e\x05\x04\xf8\x96\x7e\xb7\ \xd1\x7a\x29\x71\x31\x8c\x91\x50\x51\x14\x63\x28\xf6\x20\xbf\x33\ \x21\x4b\x62\x28\x36\x47\x1d\x65\x62\x31\xfa\xa1\x1f\xfe\x87\x08\ \xf7\x10\x05\x15\x22\x74\x1f\x71\x78\x6c\x50\x1f\xf5\xe0\x83\x1f\ \xd1\x78\xf3\xa1\x6a\xd2\x97\x27\x5d\x10\x57\x0c\xf6\x0c\x71\xc5\ \x17\x74\xd0\x04\x53\x16\x07\xf5\xa0\x81\x38\x14\x4f\x11\xd6\x75\ \xdf\xf0\x01\xf5\xf4\x0d\x4f\x48\x82\x8d\x12\x20\x2c\xc1\x1b\xeb\ \x55\x66\x31\xf2\x69\x3e\x56\x62\x7d\xd0\x0e\x7d\x30\x55\x34\x42\ \x2e\x86\x82\x73\x66\x21\x32\xde\xd0\x09\xf8\x41\x29\x3b\xd7\x86\ \x4d\x74\x0f\x6d\x68\x28\x43\xc8\x06\x67\x34\x84\x51\x00\x84\xe2\ \xc6\x06\x23\xe0\x24\xfe\xb5\x94\x06\x7a\x04\x09\xd5\xd0\x3b\x59\ \xd0\x04\xbd\x83\x38\x74\xc0\x17\x60\xf0\x0c\x56\x78\x85\x1c\xa8\ \x43\xe1\xb7\x6b\x5b\xc0\x06\xb4\x00\x86\x8d\x12\x1c\x2b\x21\x3f\ \x23\xb6\x6c\x2f\x46\x28\x6d\xd8\x87\x7a\x33\x88\x38\xb3\x25\xed\ \x00\x88\x7c\x47\x00\xf4\x43\x70\xb5\xb1\x0f\x76\x48\x00\x7c\x83\ \x28\x4a\x55\x2f\xb4\x42\x32\x83\x58\x28\xac\x84\x4e\xef\xf3\x4b\ \x11\xe0\x0a\xc3\xc8\x85\x13\xd6\x05\xcf\xd0\x04\x15\xd8\x04\x59\ \xd0\x09\xf4\x43\x07\x72\x50\x76\x60\x00\x64\xeb\x76\x89\x68\x25\ \x4f\x23\xc7\x80\x77\xf4\x0d\xe8\x07\x8a\xb7\xb1\x7e\x1c\x51\x37\ \x7d\xb1\x5e\xf1\x61\x2a\x83\x22\x31\x29\x10\x74\x17\x65\x62\x77\ \x21\x83\x7d\x13\x7c\xfa\xc2\x23\x60\x10\x46\x75\xd8\x2b\x7c\x03\ \x21\xf4\x62\x2c\x83\xa8\x01\xaf\xc8\x77\x24\x03\x47\xa9\xf6\x0c\ \x5a\x80\x3f\x3a\xb4\x05\x77\xe0\x8c\x86\x93\x05\x74\x40\x0b\xd5\ \x28\x07\xf6\x36\x65\x9d\x50\x8d\xad\x93\x05\x19\x88\x8d\xa0\x95\ \x47\xf0\x56\x4f\xd2\x17\x02\xaf\xf4\x8d\xe0\xb8\x17\xfa\xc0\x6f\ \x17\x21\x3f\x7c\x01\x59\x13\xf2\x69\xd1\xb0\x24\x6c\x10\x77\xe4\ \x02\x88\x26\xe3\xfe\x24\x85\x62\x46\xf3\x58\x16\xb8\x88\x08\x43\ \xd0\x09\xb8\xe8\x01\xd0\x38\x04\xb8\x08\x06\xcb\xf5\x3b\x23\xe4\ \x3e\xd1\xf0\x8a\xb0\xc8\x4a\xde\x76\x80\x8c\x33\x06\x1f\x70\x07\ \xa6\xf5\x8c\x54\x22\x5d\x54\xf2\x88\xd3\x68\x16\x59\x20\x07\x74\ \x60\x1b\xb5\x96\x84\xd8\x98\x85\x27\xa7\x4b\x78\x24\x47\xdb\xe5\ \x6b\xfc\x90\x32\x21\xd9\x17\xe2\xb8\x11\xca\xb6\x5e\xd3\x06\x23\ \x3c\x43\x3a\x15\xb2\x8e\x6c\x90\x25\x3c\x38\x38\xed\x10\x05\xfc\ \x98\x61\x65\x21\x6b\x60\x80\x2c\x1e\xa0\x17\xe9\x56\x1b\x9b\x41\ \x2f\x24\xa3\x3b\x80\xe8\x3e\x24\x75\x0f\x72\x00\x47\x5f\x57\x4b\ \x1f\x90\x07\x7e\x74\x7e\x14\x59\x16\xb4\x40\x07\x59\x39\x91\x59\ \x70\x07\x77\x30\x8d\x59\x60\x89\x5d\x99\x8d\x79\xe4\x24\xa2\x47\ \x2a\x31\x80\x3f\x64\x15\x02\x6c\x00\x92\xa0\x98\x96\x1a\x41\x66\ \x10\xb2\x5e\x88\x60\x2b\x68\xf3\x15\x86\xd2\x86\x3e\x16\x05\x7f\ \xd6\x0e\xd7\x50\x98\x51\x30\x6b\xf4\xb3\x2d\x3b\x98\x02\xb6\x31\ \x04\xb4\x20\x5d\x60\x10\x6b\x4e\x73\x60\x80\x78\x4e\xd3\xe0\x3e\ \x6c\xd0\x04\xfc\x70\x07\x06\xb9\x3f\xfd\xa3\x8c\x72\x10\x4b\x13\ \x09\x06\x0e\xfe\xb9\x5c\x9d\xe0\x01\x10\x99\x90\x72\x50\x0d\x9f\ \x89\x89\x1f\xf0\x01\xdf\xd0\x47\xdf\x50\x0d\x6c\xf0\x0c\x71\x44\ \x56\x90\x90\x9a\x67\xd9\x3a\x47\x92\x12\x68\xf0\x18\x88\x80\x08\ \x23\x76\x9f\x31\xd2\x36\x32\x58\x28\x85\x02\x88\xaf\x37\x06\xae\ \xb6\x83\x59\xa2\x2f\xd0\x58\x3f\xf7\xc0\x4a\xf7\x00\x94\xbf\x13\ \x4b\x09\xda\x02\x29\x33\x04\xad\x54\x29\xea\xc4\x0f\xcf\x60\x88\ \xd4\x77\x85\x4c\xf0\x0c\x9a\x89\x95\x3c\x09\x20\xb2\x24\x07\x1e\ \x90\x05\x2b\xc0\x95\xe3\xb9\x56\x1f\xe0\x24\x90\x19\x03\x6c\x50\ \x9a\xce\xa0\x47\xfe\xb3\x02\x23\x98\x6f\xe0\xb1\x12\x07\x70\x1a\ \x2d\x72\x9f\x88\x10\x4d\xb7\x62\x3f\x22\xf5\xa3\x83\x68\x0c\xeb\ \xe6\x63\xc2\x49\x32\x87\x07\x56\x07\xaa\x98\xf7\x70\x6f\x39\x99\ \x6e\xde\xc9\x06\xf5\xa0\x72\x43\x40\x07\xfc\x80\x46\x1e\x40\x07\ \xae\xb4\x85\xee\x34\x61\x1f\x00\x09\x69\xd0\x05\x31\xb0\x8c\xd8\ \x59\x16\xd0\x18\x07\x5b\x79\xa2\x75\x64\x9e\xe2\xc6\xa2\x8b\x13\ \x53\x00\x94\x27\x32\x7a\x96\x7a\x40\x92\x16\xb1\x24\x9b\xc4\x22\ \x9b\x23\x07\x8f\xc1\x0f\xb0\xf1\x3e\x40\xc8\x0f\x59\x42\x2a\xbc\ \x63\xa6\xfe\xf7\x20\x52\x78\x66\x1b\xdd\x59\x8d\xd5\x18\x4b\x0f\ \x59\x0f\x77\x00\x56\x6d\x24\x4b\x2c\x14\x5d\x57\x17\x3c\x26\x9a\ \x43\xb8\x56\x68\x60\x0a\x9e\x1f\x3a\x04\x77\x70\xa9\x68\x0a\x40\ \x5d\x10\x0d\xec\xa4\x9e\x17\xaa\xa5\x6f\x3a\x38\x2d\x30\xa3\x8b\ \x86\x02\x74\x5a\x11\x4b\x92\x1c\x2a\x82\x63\x9c\xc4\x63\x74\x92\ \x6a\x63\x67\xa8\x40\xb4\x17\xdd\x59\x0f\xb1\x91\x95\x66\xd1\x46\ \xd1\x98\x95\xb2\xe4\xa8\x25\x45\x07\x40\x80\x95\x51\xd7\x04\x56\ \x67\x64\x48\x96\x6b\x90\xa0\x8c\xb1\x94\x05\xeb\x10\xaa\x74\x34\ \x5a\xa4\x92\x6a\xa5\x49\x27\x90\x10\x02\x1f\xa7\x27\xf4\x10\x92\ \x94\xf0\xaa\x14\x11\x17\x60\x71\x45\xa6\xc1\x49\xf2\xc1\x63\x83\ \x33\x2a\x1a\x50\x53\xac\x24\x07\xf7\x70\x99\xf4\x93\x05\xbe\x0a\ \x4c\x92\x69\x9c\x57\x0a\x04\x96\x09\x9d\x9a\xc5\xac\x99\xd5\x04\ \xc9\xda\x04\x1a\x47\x5d\x49\x88\x5d\xdb\xd5\x52\x90\xb0\xa1\xed\ \xc0\x85\xd6\x8a\x43\xa2\x35\xaa\x4d\x97\x07\xa4\x13\x0d\xc6\x93\ \x27\xed\x60\x96\x24\xa8\x0f\x2b\xa1\x65\xd9\x64\x3a\x08\x94\x27\ \x75\x12\x0d\xc6\x50\xa5\xf5\xb0\xa4\xe9\xa6\xa8\xf4\x13\x8d\xf5\ \xf0\xfe\x0c\xaf\x28\xb0\x40\x20\xb0\x96\x29\x07\x31\x1b\x9d\x99\ \xf5\x0c\x25\xf5\x09\xcf\xa0\x59\x3b\x9b\x90\x74\x10\x81\x5c\xfa\ \x01\xce\x90\x07\xd5\x10\x03\x4c\xe0\x0c\x26\x97\x06\x09\xeb\x4e\ \xa0\xfa\xb0\x76\x24\x7a\xa2\x47\x5a\xa4\x83\x72\x2c\x45\x08\x51\ \xc0\xaa\xa8\xc5\x05\x22\xb0\x12\x22\x40\x00\xd7\xd4\x1c\xd7\x30\ \x6e\x8a\x04\x44\x8a\x5a\xb6\x91\x8a\x6e\xe9\x86\xa5\x77\xb0\xb3\ \xfc\xb0\x02\xcf\x60\xb3\xcc\x6a\xb3\x8e\x7a\x07\x9f\xd0\x04\x99\ \xc5\xa2\x45\xbb\x8c\x4d\xf0\x0c\x46\x5b\x05\x4c\x10\xa6\x9a\xa9\ \x99\xd9\x57\x05\x2f\x2a\x61\x4e\x1b\x72\x28\x07\xb5\xa4\x33\xaa\ \x4e\x42\x35\x63\xd0\x0e\x6d\x00\x86\x35\xaa\x12\x5d\x6b\x41\xb3\ \x31\x12\xb7\x42\x00\x11\x30\x38\x64\xc7\xab\xf5\x93\x02\x02\x8b\ \x46\xfc\x4a\xac\xd5\x58\x29\x0c\x49\xa5\x6c\x00\x99\xeb\xf0\xb6\ \xcb\xc8\x0f\xcc\x6a\xb7\x76\x7b\x07\x46\xeb\x47\x6e\xcb\xa1\xb1\ \xbb\xb6\x81\xbb\xb6\x7c\xfb\x0c\xd5\x50\xb8\x4a\xab\xb4\x87\x8b\ \xb8\xde\x4a\x5a\x8c\xdb\xb8\xed\x44\x08\x6c\x80\xb5\x2a\x33\xb9\ \x29\x51\xb9\x57\x94\x1e\xa7\x71\x2b\xfc\x50\x27\x1a\xf0\x89\x66\ \xfe\x8a\xa5\xa3\x82\x47\x77\xe4\x24\xed\x80\x4f\x65\x40\x07\x7c\ \x56\x16\x99\x19\x0d\xf3\xe6\x47\x81\xfb\xba\xb1\xab\xb3\x31\x50\ \xb4\x31\xb0\xbe\x7a\x1b\xbb\xd9\xc7\xb7\xeb\xdb\xbe\x31\x50\x05\ \x46\x9b\x07\xce\xe0\xbb\xb7\xb4\xb4\xc1\x4b\x79\xf9\x93\x4b\x88\ \xe8\x6b\x30\x66\x27\x64\x91\x7e\x66\x40\xae\x13\xa1\x03\x5e\xbb\ \x14\xf2\x41\x78\xf3\x60\x0a\xdc\xc2\x0f\xb2\x78\x9c\x2b\x70\x91\ \x83\x13\xad\x09\xd9\x3b\xb5\xc6\xbe\xec\xfb\x0c\xae\x10\xb8\xbb\ \x1b\xbf\xf4\x1b\xa6\x1c\x9a\x7d\xed\x2b\xbf\xf3\x5b\xbf\x26\x5c\ \x0d\xd5\x80\xbf\x7a\x04\xbc\x98\xc8\xbf\xfd\x2b\x72\x79\x92\xa1\ \x90\x80\x88\xd1\x50\x0f\xca\xdb\x28\xae\xba\x12\x41\xb0\xc0\x60\ \xd1\x15\xac\x36\x0f\x9d\x60\x8b\x39\x99\x05\x6c\x60\xc1\xfa\x13\ \x0d\xeb\x20\xa2\x4d\x7a\x95\x16\xfa\x0d\xf6\x9b\x7d\xba\x7b\xc2\ \x28\xac\x05\x45\x6b\xbf\x45\xcb\xbe\x27\x4c\xbf\x5a\x5c\x05\x55\ \x90\x07\x79\xd0\x05\x2f\x0a\x6f\x30\x5a\x47\x32\x3c\xc3\x99\xba\ \x64\x02\x0c\x9f\x2c\x47\x3f\x5b\xab\x12\x8a\x40\x09\xae\xc1\x22\ \xa7\xf2\x0d\xf3\x00\x20\xf7\xe3\x59\x21\xf0\x0c\xc0\x0a\x8d\xfe\ \xb4\xb0\xb7\xca\x60\xc2\x1c\xba\xb6\x23\x0c\xc6\x55\x60\xc2\x60\ \x9c\x07\x55\xd0\xc1\x26\xdc\xbe\x62\x9c\xbf\xe5\x29\xc9\x5c\xfa\ \xa2\xb6\x84\x85\x6a\x6c\x4b\xff\x93\x3f\xd1\x10\x05\x26\xb9\x68\ \xd5\x98\x02\x6c\x40\x06\x5c\xeb\x0d\xfa\x79\xa7\x36\x51\xc0\x60\ \x20\x79\x49\x16\x0d\x26\x05\x8d\x13\x59\x81\xb2\x3b\x02\x25\xbc\ \xbb\x31\xa0\x0c\x55\x30\x02\x55\x30\xc8\xed\x1b\xc6\x62\xdc\xc8\ \xf1\xfb\x0c\x8b\x2c\xc9\xe5\x59\xcc\x13\x36\xb4\x79\x70\xc6\xd9\ \x98\xc6\x99\x0c\x4f\xda\xc8\xc9\x1e\xb0\x68\x56\x09\x47\x78\xa2\ \x3c\x94\xcb\x62\xf0\x91\x49\x44\x6c\xa6\x51\x90\x6b\x21\xc0\x04\ \xa9\x37\x9c\xb4\x20\x07\xc2\x5c\x0d\xb5\xcc\xb7\x60\xec\x0c\x60\ \x1c\xa6\xf5\x1b\xc6\x43\x3b\xc5\xf2\xeb\xcb\x85\xfb\x01\x2e\x50\ \x9e\x95\x2c\xc6\x64\xac\xcc\x66\xd5\xcc\x98\x48\x68\xd1\x90\x02\ \x8a\xd6\x97\x70\xd4\x38\xd6\x4c\x9f\x66\xe0\x1c\xd1\x14\x74\xda\ \xc2\xcd\x4d\xab\xb0\x4c\x30\x8d\x94\x49\xce\x85\xfc\xc8\xf2\x0c\ \xc6\xf1\x2c\xc6\x8c\x4c\xc2\xe8\x8c\xbf\xc4\x4c\xcf\xc5\x5c\x9e\ \x5b\xf0\xce\x63\xcc\xcc\x21\x47\xd2\x0f\xc6\x64\x6e\x85\xfe\x67\ \xe4\x75\x0f\x82\x43\x3c\x08\x2c\x11\x8a\x90\x6d\x8f\x91\xb9\xb5\ \x31\x03\xf5\xa0\xc4\x9e\xd5\x05\x77\xc0\x93\x66\x11\xc8\x54\x8c\ \xce\xca\x80\xbf\x23\xa0\xce\xbd\x1c\xc6\x88\xac\xd1\xf5\x9b\xbf\ \x2f\x5a\xcf\xf5\xfc\xd1\x2e\xe0\x0c\x5b\x00\x99\x60\xdc\x05\x26\ \xdd\x6e\x55\xdd\x59\x83\x36\x3c\x6e\xec\x45\xc7\x99\xc4\x49\x48\ \x08\x2f\x0d\x11\x8a\x70\x1c\x3f\xb3\x2d\xbf\xe7\x0d\xc7\x29\xb6\ \x5a\xf7\xcd\xe7\xb7\x17\xb5\x46\xc5\x45\x8d\xbf\x46\xbd\xc8\x46\ \x4d\xc2\x86\x4c\xb8\x4a\xdd\xd4\x4c\x4d\xcf\xf9\x8b\xd1\xdf\x80\ \xbf\x54\x9d\xc6\x57\x8d\xc6\x1b\x88\x8d\xd1\xa0\x9a\xad\xb3\x83\ \x6c\xb0\x94\xfa\x93\x09\x72\x52\x3a\xf3\xb0\x8e\x9b\x53\x1b\xdc\ \x82\x8d\x5d\xd0\xd6\x66\x0a\x91\xe8\x8c\xc8\x88\x8c\xd1\x18\xdd\ \xc8\x1a\x5d\x0d\x78\xbd\xd4\x7a\x54\xda\xf5\x1c\xd2\x7d\x84\xbf\ \x90\x39\xc6\x1b\xb9\xcf\x83\x1d\xc3\x6b\x6c\x85\x3a\x6c\x60\xaa\ \x05\x06\x2f\xc6\xd8\xfb\xe3\xd8\x2a\x91\x48\x7c\x72\x2b\x3b\x88\ \x1a\xc1\xa7\xd6\x1a\xe8\x0c\x16\x48\x6b\x3f\x9b\xc5\x9c\x4d\xb8\ \x9f\x0d\xc6\x79\xbb\xd1\xce\xe0\x02\x4f\xed\xd1\x1e\xfe\xad\xd4\ \x8f\x39\xb4\xc8\xcc\x04\x63\xac\xcf\xb0\x5d\x56\x83\xd6\xa5\xd8\ \x98\x71\x4b\x2a\x43\xc1\x98\x02\xac\xcc\x6a\x0b\xa8\x8d\x04\x2d\ \x27\x8a\x34\x16\x33\xe0\xb5\xb3\xe2\xab\x9f\x59\x75\x86\x93\x35\ \x86\x5c\xbf\xbd\xfc\xd9\x8c\x9c\xb7\x45\x9d\xbf\x4c\x0d\xdd\xd0\ \x2d\xb4\x2f\x3a\xc9\x21\xfd\xd7\xa0\xcd\x04\x49\x4b\xd8\xb1\xbd\ \xa5\xbe\x46\xb1\xda\xad\x75\x27\xe3\xd5\x7a\x42\x2a\x75\x22\x6e\ \xdf\x45\x3c\x05\x8d\x12\x89\x74\x2d\x95\xc1\x2d\x2d\x72\x0d\x38\ \x9d\x6b\x5f\x0a\x89\xc6\xdd\x04\xed\x6c\xbf\xca\xcd\xc8\xf6\x8b\ \xd4\xf5\x8b\xbf\xff\xfd\xd4\x4a\xfd\xe2\xa8\xdd\xd7\x4c\x50\x0d\ \x4c\x80\xdd\x5d\xe0\xa5\x08\x5e\xd5\x09\x3b\x61\xa4\x9a\xbd\x0d\ \x9d\x5d\xe3\xa7\x3f\xf3\xc1\x7c\xc6\xb7\x6a\x83\x13\xd6\x10\x51\ \x44\x7d\xd0\x1a\xcf\xe1\x44\x4b\xca\x79\x27\x4a\xdc\x40\x59\x16\ \x74\x80\xc2\xee\xfc\xce\xa0\x2d\xc2\xed\xfc\xdc\xfe\xad\xce\x91\ \x2c\xc9\x2f\x0a\xd5\x9e\x6d\xe3\x79\xc0\x04\x38\xbe\xbf\x97\xcc\ \x3f\x4d\xe2\xb7\xe4\xfb\xda\x9f\x05\xb1\xf0\x23\xdc\x7a\x02\x4c\ \x46\xf8\x5d\x6d\x35\x38\x60\x2d\xc7\x8a\xc4\x25\xfe\x76\x57\x8f\ \x13\x73\x0f\xc6\xf0\x99\xbb\x04\x09\x31\x90\x95\xd7\x2b\xbb\x2c\ \x8c\xd7\x44\x2b\xda\xf4\x2b\xda\xc3\xfc\xe2\x18\x6d\xdd\xc4\x2c\ \xe9\xd1\x20\xc6\xd8\x5d\xe3\x4c\x80\xc9\x2d\xb5\xe3\x39\x94\x47\ \x4d\x22\x7a\xd7\xe5\x7d\x27\xf3\xad\xc4\x13\x6e\xca\x40\xe1\x73\ \x94\xe7\x29\x91\x48\xd1\x00\x45\xb7\x72\x0d\xfc\x10\x05\xf6\xd3\ \x95\xf1\xf4\xa5\x77\x20\x82\x65\x41\xce\x5a\x8c\xdd\xa0\xdd\xe8\ \x9d\x6d\xdd\xf8\x2d\xcf\xd4\xdd\xd7\x8c\x8c\xd1\x5d\x30\xe3\x07\ \xee\xe6\xcb\xec\xcc\xc9\xd8\xe3\x06\x9e\xa1\xef\x74\x9a\x73\x34\ \xaa\x49\xf8\xbf\x4d\x12\x1b\x17\x36\x9d\x63\x20\x40\x72\x2c\x1d\ \xb3\xf1\x11\xf3\x50\x0f\x5b\x52\x0f\x61\xd4\xd2\x20\x57\xeb\x11\ \xb6\xb0\xcb\x48\x07\xcb\x95\x35\xeb\x4b\xe3\xbd\xce\xce\x5b\xee\ \xd9\xc9\x2d\xcf\x1c\xdd\xd7\xc8\xec\xcb\x8c\xcc\x04\x1f\x0d\xc3\ \x5b\xb7\xdd\xfc\xe3\x6b\x4c\xd0\x0e\x4c\xf0\x0d\xd0\x1e\xed\xbb\ \x46\x7e\xd6\xde\x91\x8c\xfd\x4b\x0e\x3f\x47\xf2\x80\xe4\x08\xe1\ \x5a\x08\x34\xe1\xa7\x61\x6a\x64\x7b\xd3\xef\x44\xd2\xa0\xc5\xec\ \x3a\x04\xce\x77\x60\xce\x91\x1b\x07\xd4\x95\xfe\xc2\x2c\xdc\xc5\ \xa2\xbd\xdc\x88\xec\xe8\x57\xfe\xe2\x61\xfe\xcb\x18\xdd\xc2\x42\ \x9b\xcf\xff\x63\xd2\xcc\xbc\x5d\x58\x38\x6f\x90\x59\xf0\x37\xce\ \xc7\xef\x06\xc0\x4b\xe9\xad\x86\x36\x3c\xb8\x9d\x27\x17\x7e\x12\ \x8a\xe0\xb5\x2c\xc5\x78\xc2\xf5\x4a\xb1\x56\xc1\x1b\x9f\xe0\x99\ \x58\xeb\x90\x00\x09\xce\xb0\x02\x34\xfb\x0c\x26\x17\x03\xd1\x8c\ \x38\x21\xcf\xbe\xa0\xcd\xf2\x28\x3e\xc2\x25\xae\xda\x60\x0e\xe9\ \x28\xce\xdc\x1c\xdd\x05\x63\x5c\xb8\x49\xa6\xe9\x69\x25\xf0\x0a\ \x9f\x5d\xda\xcb\x91\xe1\x46\x27\x00\x2c\x3c\xb6\x24\xf1\x13\x3f\ \x21\x83\x33\x60\xd7\xc0\x49\x50\x9a\xa0\xf5\x90\x02\x2b\x60\x32\ \x84\x0d\xf7\xe9\x1e\x7a\xce\x30\xe3\x31\xd0\xac\x58\xa7\xb4\x90\ \x70\x07\x5a\x59\xe5\x27\xcf\xce\xee\x3c\xf6\x22\x2c\xf6\xf7\x1e\ \xe6\x00\x8e\xe5\x28\x0e\xd8\x96\x5e\x05\x07\xfe\x7d\x58\x3d\xf5\ \x4c\x39\xaa\x72\x84\xe3\xca\x5e\x4f\x32\x25\xc5\xe0\x36\x53\x3f\ \xee\x38\x7c\x6f\x10\x3f\xa5\xd6\xc6\x50\x0f\x81\xff\x4b\x67\x14\ \xeb\x51\x9a\xa0\x87\x6f\xc1\xe8\x0e\x5a\xc7\xbe\xa1\x13\x9d\x7d\ \x32\x4b\xe2\x5e\xaa\xb4\x79\x70\x5a\x43\xfe\x20\x07\x31\x90\x07\ \x22\x7c\xef\x28\x5e\xc2\x5e\xbc\xc8\xf7\xce\xd7\xc4\xfe\xeb\xf8\ \x6e\xec\xc8\x28\xf5\xdc\x9d\x89\x00\x74\x5d\x78\x54\xf3\x3e\xef\ \x64\xdb\xfa\xbf\x2d\xc5\xed\x92\x46\x3c\x61\x01\xa8\x79\xf2\x0d\ \xc7\xf5\x0d\x7d\x70\xb2\xc8\x82\x4e\x2d\x54\x43\x9f\x33\xaa\xec\ \x34\xaa\xeb\x40\xf0\x00\x01\x69\x4c\x1a\x48\x4c\x9e\x35\x69\x02\ \x44\x61\x93\x3b\xcf\xd6\x3d\x7b\x56\xad\x4b\x1a\x8a\x14\x3f\x30\ \x91\x33\x24\x0e\x18\x39\x31\x9e\x35\xac\xe2\xcc\x85\x33\x67\x79\ \xf2\x54\x71\x05\xf1\x59\x0c\x96\x55\x42\xe6\x29\x29\xf2\x03\x49\ \x93\x55\xaa\xc5\xa8\x62\xd2\x64\x49\x93\x5d\x9c\x7d\xa8\x38\x46\ \xe8\x50\xa2\x45\x8d\x0e\x4d\x33\x50\x69\xd2\xa4\x03\x43\x44\xeb\ \x12\x22\x84\xd2\xa3\x55\x89\x4a\x1d\x13\x62\xcb\xb7\x6f\x53\xad\ \x7e\xcd\xa4\xe8\xdf\x58\xb2\x65\xcd\x9e\x3d\xab\xc8\xa8\x31\xb6\ \xdf\x84\x6e\xd1\xa0\xe1\x1b\x5b\x36\x11\xf8\xd5\xbb\x97\xe5\x5e\ \x0a\xbe\xf5\xfc\x02\x49\xb1\x62\x05\x3f\x20\x74\x9a\xac\xa8\xc6\ \xe6\xce\x27\x86\x77\x10\xde\xb9\x83\x33\x0f\x13\x67\x15\x2b\x7e\ \xf8\x10\x83\x4e\xa7\x8d\x59\x22\xe3\xfe\x24\x39\xb2\xa4\xc7\x86\ \x10\x5b\xe6\xd4\x19\x9a\x64\xc9\x2a\x2c\x4f\x4f\x66\x92\xf3\x27\ \x66\xcc\x14\xa9\x7e\xc5\xdd\xd4\x28\xa4\x10\x1f\x7a\x7b\xc5\x5d\ \xb5\x69\x9a\xad\x79\x82\x5b\x2d\x25\x16\xed\x72\xe6\x63\xd5\x16\ \xe5\x2a\x77\xcb\xf4\xe8\x75\xbf\xb1\xd1\x10\x05\x2f\x2d\x30\x9d\ \x3a\x81\x01\x93\x45\x7c\x3d\x7e\x2b\xb2\x80\xa7\x03\x04\xe1\xfa\ \xf5\x72\x1a\x32\xf9\x30\x12\xa8\x65\xa0\xce\xee\x78\x88\xb3\xb1\ \x23\x4c\xd5\xce\x5a\xab\x34\x0d\x27\x97\x72\x92\x6d\xb5\x93\xfe\ \x5b\x29\x86\x6a\x16\xac\x06\x35\x97\xf2\xc0\xac\x24\xdf\x8e\xcb\ \x6d\x20\xdd\x84\x4a\x43\x2a\xa9\x32\xe4\x4d\x20\x0a\x31\x14\x4a\ \xab\x2d\x80\xbb\x8a\xc4\xa3\xe4\x51\xae\x39\x15\xcb\x7a\x0e\xba\ \xb8\xbe\x99\x6e\x3a\x0d\x22\xa8\x27\x0a\x36\xd8\x30\x86\x0d\x7e\ \xee\xc1\x2f\xbf\x21\xc0\x18\xa2\x13\x0f\xfc\xca\x42\xa3\x21\xb2\ \x30\x0c\x21\x20\xe4\xa0\x23\xbd\x26\x62\x10\xa9\x24\x17\xe6\xab\ \x0d\xa8\x3c\xee\x00\x23\xbf\x2c\x9e\x59\xad\xcb\xff\x3c\x5a\x29\ \x41\x01\x51\xe3\xaf\x26\x96\x02\x54\xb0\xb5\x9b\x5c\x8b\x01\x26\ \x26\xaa\xc9\xc3\xc3\x0f\x85\x03\xfe\xb1\xa8\x0c\x9f\xea\x22\x1a\ \xa8\x42\x90\x33\x38\xac\x32\xec\xca\x28\xa9\x62\xdc\xe2\xad\x42\ \x85\x22\x24\xc5\x15\x17\x25\xe4\xa8\xe8\xb8\x3a\x74\x0b\x63\xf8\ \x89\x22\x02\x36\xa2\xe3\x27\x0b\xce\xf2\xe3\xf4\xc7\xee\x38\x05\ \x43\x3d\x25\x9b\xa4\xc3\x3d\xca\x26\x83\xc9\x85\x34\x80\x72\x41\ \xd5\x56\xab\x29\x42\x23\x30\x54\xc9\x43\x34\x98\x06\x6c\xcd\x35\ \x31\x71\xa5\xe9\x40\x9b\xc4\x6c\x69\x41\x8f\xc0\x8c\x21\xb6\x93\ \x9c\x09\xc1\xb6\x39\xbf\x62\x8a\xa8\x34\xf2\xfc\x26\x8f\x68\x98\ \x80\xaa\x0b\x48\xfa\xac\x0a\xab\x31\x3e\xf8\x66\xc2\xa2\xb4\x1a\ \x23\x46\xae\xb8\x42\x54\xd1\x45\x55\x8c\x22\x1a\x47\xe7\x32\x06\ \x46\xa1\xe6\xb2\x0e\xc6\x68\x22\xc8\x62\x1f\x4e\x37\xe5\xb4\x53\ \x30\x92\x64\xa8\xb1\x75\xda\x44\xb5\x1a\x26\x5a\x25\xb8\xe0\x3c\ \x9e\x39\xaf\x13\x3a\xee\x08\x89\x57\x5c\xc1\x34\x8d\xd7\x9a\x1e\ \x3e\x6d\xc1\x5c\x01\x4c\x90\x09\x08\x7d\x53\x76\xd9\xa3\x32\x14\ \xd4\x37\x0d\xf5\xa4\x36\x1a\x6c\x77\x8b\x4a\x2a\xae\xa2\x31\x71\ \x28\x42\xe7\x3a\x34\xd1\x73\xcf\xf5\x80\x8d\xa3\x66\xe4\x27\x82\ \x08\x0a\xdd\x2a\x82\x71\xa3\xfe\xd9\xca\x98\x7a\x68\xf9\x2e\xcb\ \x7c\xe3\xd0\x28\x8e\x4e\x86\xa0\x65\xe1\x62\x27\x5b\x53\xe0\xa8\ \xf9\x0b\xad\x55\xff\x98\x88\x41\x0e\xf0\xb2\x78\xb2\x0a\x88\x08\ \x9c\x18\xc0\xd3\xc8\xf4\xd5\xb5\x01\x15\x74\x6d\xc1\x7f\x1f\x5a\ \x29\xa4\x2e\xba\xe0\xd8\x63\xa3\x92\x9a\xef\xb6\xa2\xae\x9d\xb6\ \xda\x6b\x5b\xde\x56\x4f\xad\xf2\xe0\x8a\x6f\xe8\xdc\x12\x2a\xac\ \x99\x17\xe5\xc2\x66\xa3\xa2\xe1\xa7\x71\x75\x83\xfe\x46\xdd\x31\ \x22\xe7\x6a\x47\xf1\xba\x4b\x1a\x3c\xee\x92\x3e\xf2\x8e\x5a\x5d\ \xc8\xe3\x26\xd3\x3e\x5a\x49\x63\x8d\x45\x02\x7d\x32\x92\xaa\x01\ \x62\x69\x5a\xe4\x08\xb3\xc0\x93\x3c\x4a\x29\x41\x5c\x61\x32\x33\ \x6d\x9b\x58\x6a\xf0\xcd\x35\x21\x56\x10\x42\x48\x9a\x95\xdb\xd9\ \x3a\xbf\xe2\x2d\x4f\xa8\xa0\x3a\x39\x84\x2e\x60\xa4\x4e\x70\xa3\ \x0e\x1d\xc3\xf0\xc3\x55\x1c\x22\x85\x4b\x25\x17\x8a\xf1\x7a\x08\ \xb7\x2a\xe8\x26\xce\x03\xcf\xf5\x52\x97\xa4\x25\xf3\x3b\xa2\xc4\ \x1a\x32\xf7\x1d\x8b\xec\x26\x38\x79\x82\xd3\x55\x84\x83\xf4\x20\ \xfe\x06\x6f\xf5\x9a\xf4\x94\xd8\x94\x9d\x4b\x88\x25\xa0\x34\x9d\ \xe4\x77\xd5\x50\x49\x15\xfe\xe0\x96\xac\x64\x15\x8f\x4e\xc1\xe9\ \x50\x9e\xa2\x82\x2d\xa9\x44\x03\x7a\xd2\xfb\x0a\x8a\xae\xd7\x1c\ \x1d\x70\xe1\x3b\x1e\xb8\x47\x3d\x24\x17\x0d\xf2\x50\x2f\x7c\x11\ \x90\x83\x77\xc0\x83\x1e\xf6\xd0\x61\x85\xb0\x1b\x98\x7f\x62\x00\ \x99\x7e\xc9\xc1\x3d\x2a\x09\x1e\x83\x54\x45\x11\x26\x34\x21\x4b\ \x9d\x80\x1d\xae\x04\xa8\x92\xd2\x24\xe8\x19\x0f\xf2\x8f\x4b\x70\ \x38\x26\x07\x11\x4b\x74\xc5\xa2\x0d\x66\x86\xe7\x40\x2a\x8e\x21\ \x82\x7c\x2a\xca\x07\x2c\x08\x23\x0c\x56\x85\x10\xf2\xd8\x60\x73\ \x5e\x70\xb4\xec\xa9\x8b\x0d\x72\xf8\x1e\xd0\xb8\x37\x3d\x7e\x64\ \xe9\x47\xdc\xa1\x45\x16\x6c\xd8\x04\x39\xd0\xd1\x30\x90\x79\x86\ \xc6\x0e\xe6\x98\x3a\xca\x41\x3c\x40\x80\xdf\x1d\x44\xf7\x8c\x5a\ \x51\x64\x24\xf7\x13\x92\x20\x0f\x84\x93\x33\xd5\x6e\x74\xb6\x33\ \x93\x23\x99\xe8\x8c\x11\xcc\x2e\x40\x0b\x82\x89\x4f\xba\x30\xa5\ \xe1\x5d\xa8\x8a\x04\x91\xa2\x27\x77\xc3\x27\x52\x36\x25\x04\xe3\ \x1a\x91\xc7\x64\x16\xc6\xe5\x8c\xf1\x68\x60\x08\xa1\x0b\x61\x99\ \x82\x7b\xdc\xa3\x71\x37\x8a\x01\xcb\xde\x45\x07\x8d\xbc\xce\x8f\ \xe1\x69\x92\x1c\x96\xfe\xd4\x98\x83\x30\xa4\x0a\x06\xb1\x23\x1d\ \x12\x26\xc7\x3a\xba\xef\x49\x95\x49\x43\xab\x42\x77\x87\xcd\xec\ \x2b\x32\xb9\x3a\xd3\x47\xf0\x68\xc4\xb1\xf5\xef\x19\xae\x30\x9b\ \x10\xb1\xc9\x3b\x26\x94\xb3\x27\xb5\x81\x9b\x28\x1d\xc8\xad\x3c\ \xfc\xc9\x6e\x76\xda\xd6\x9f\x4e\x19\x03\x48\xa9\xd2\x5c\xac\x24\ \x8b\x19\x8e\xe6\xa3\xa5\xdd\x4b\x69\x48\xfb\xce\x8f\xee\xf1\x0c\ \x7e\xf8\x50\x69\x0b\x4b\xa6\x30\x15\x0a\xc8\x8f\x00\x41\x8e\x11\ \x39\x48\x11\xb2\x40\x0b\xa2\x31\x4d\x3c\x72\xa4\xe3\x93\x5c\xc5\ \x93\x93\x50\x13\x3c\xee\x69\xd0\xc5\xb4\x79\x87\xff\x65\xf3\x6c\ \x31\xa8\x5d\x4b\xce\xc4\x26\x36\xed\x2f\x74\xa7\x73\x01\x24\x68\ \xd3\xc0\x39\xa9\x93\x43\x1b\x52\x8a\x40\x88\x67\x27\x52\xaa\x0c\ \x95\x14\xa2\xde\x2a\xf1\x69\x96\x17\xf4\x73\x9f\x47\x3d\xea\x8f\ \xee\x25\xc7\x25\x05\x33\xa3\xeb\xa1\xa1\x32\xe9\x00\x91\xf1\x7d\ \x67\x53\xde\xe9\x44\x1c\xc5\xc3\x30\x9a\xc8\x66\x24\x3d\xec\xce\ \xbe\xda\x06\x31\xc8\xa8\xa2\x34\xd9\x1c\x13\xf0\x08\xb8\x52\x46\ \xda\xc4\x25\x7a\x84\xcd\x26\xa3\x08\x94\x2a\x7e\x6c\x20\xd7\xb2\ \x16\x4d\x05\xd5\xfe\x85\x2d\x6c\xd1\x5d\x40\x1d\x8a\xf5\x86\x4a\ \x16\x45\xb4\x01\x0c\xdc\xc1\x17\x52\x15\x4b\x46\x4f\x5d\x14\x49\ \xa5\x2a\x15\x1e\xe5\xc0\x1d\xcf\xa8\x82\x68\x47\xf5\x0e\xd3\x04\ \x19\xb5\xaa\x39\x43\x33\xb2\xf2\x0c\xc4\x3e\xf2\xd4\x00\xb5\x4d\ \xa4\xdd\x14\x62\x5b\xf7\x67\x3a\x9d\xe4\x61\x93\x9a\xac\x5b\x5d\ \x8d\xf7\x81\x3c\x31\x01\x8b\xd9\x12\x51\x3d\x3d\x06\xc6\xc1\x96\ \xc5\x00\xdc\x39\x6c\x77\xbc\xf3\xcf\xc5\x16\x37\x3f\x4b\x5b\xda\ \xd6\x90\xd4\x98\xaa\x2a\x4c\x6b\xc5\xbd\x21\x43\x8e\xd8\x25\x93\ \xdc\x81\x16\xf9\x01\x43\x11\x4a\xf3\x3e\xa8\x5e\xf2\xa4\xb6\x13\ \x67\x6b\xc4\x8b\x93\x37\xa1\x4a\x8f\xb0\x95\x62\x17\xa9\x98\x21\ \xe6\xa9\x33\x44\x5a\xf9\xc6\x08\xe4\xf6\xc5\xde\x96\xa5\x05\x13\ \x25\x1a\x45\x29\x5a\x3e\xac\x0e\xd7\xb8\x48\xe5\x8c\x0a\x69\x21\ \xaa\x5f\x22\x6d\xa2\x8b\x75\x2e\x46\x23\xb2\x13\x9d\xc4\xa0\x75\ \xd8\xf5\x0c\x44\x9c\x69\x56\xc8\xf0\x8e\x62\xc0\x4a\x6d\xda\x18\ \x04\x27\xf3\xf2\x67\x22\x53\xec\x98\x6c\x47\xc9\x32\xf7\x0e\x2a\ \x72\x26\xa4\x10\x7d\xeb\x3b\x16\x7a\xe8\xb7\x08\x2f\x2e\x02\x2d\ \xfa\x41\x51\xfe\xfc\x1e\xd6\xaa\x99\x45\x2e\xd2\x10\xac\xb4\x20\ \xf9\xd2\x86\x9a\x3a\x6e\x62\xf7\x19\xdc\x4e\x70\xad\x21\x0a\x2a\ \xe7\x9b\x66\xe8\x81\xcc\xc1\x8e\xac\xc4\x4c\x50\x6b\x07\x99\xa6\ \xd4\x9a\x86\x41\xa7\x33\x89\xe9\x34\x46\xd7\x66\xb9\x57\xc4\x7b\ \xe3\x4d\xb6\x7e\xba\x2c\xa1\xd6\xb7\xc5\xb4\x80\xf1\x8b\x67\x4c\ \x0b\x53\xe8\x57\xbf\xa6\xd0\x1c\x78\xe0\x5c\xbe\x20\x05\xc9\x9f\ \x56\xdd\x9a\x0d\xfd\x78\xd9\xff\x6e\xea\xb0\x36\xdc\xa6\x6b\x1e\ \x52\xd5\xfc\x78\xe0\x49\x58\x1b\x6d\xa0\x39\xcc\x1a\x95\xec\xef\ \xa4\xba\xba\x32\xaa\x60\x63\xce\x89\x50\xc5\xcb\x15\xfa\x50\x52\ \xae\x55\x95\xe7\x9d\xd8\x2a\x6b\x1c\x4a\x99\x7b\x7b\x66\x8a\xf6\ \x23\xc6\x31\x6e\x73\x9b\x29\x2a\x51\x37\xc3\x59\xbf\x87\x05\x2e\ \x7f\x55\x18\xdc\x38\xfe\xf8\x53\xff\xcd\x97\x80\x91\xd4\x4c\x60\ \x8d\x4f\x23\x0a\x5b\xf0\x0c\xe1\xe7\x90\xe0\xd1\x04\x81\xf1\xd3\ \x89\x10\xe5\x77\x65\xd6\x9e\x04\x55\xe9\x5c\xca\x3b\x29\x74\x69\ \x94\x09\xee\x29\xe3\x6a\x59\x5c\xda\xa1\x01\xa3\x68\x70\xc5\x8a\ \x68\x01\x9b\xc5\x2d\xe3\x19\x9b\xc2\x14\x9d\x50\xb5\x9b\x5f\x0d\ \x47\x75\xfe\xbf\x1a\xcf\xdf\x69\xda\x8f\x85\x8c\xeb\x7b\xc1\xdb\ \x30\x10\x79\x53\x6b\xee\x90\x05\xec\xca\x01\x4e\xc8\x44\x48\xa3\ \xe7\x37\x19\x88\x08\xcc\xd9\xd8\xb4\xd8\x9b\x7c\x17\x69\x06\xa7\ \xd3\x36\x5d\x5e\x96\x5e\x21\x08\x95\x0f\x64\x4b\x4f\xf2\xd2\xd3\ \x18\xa2\x21\x17\x0d\x64\x5c\x4f\x72\x69\xc7\x3d\x87\xba\x0c\x75\ \x9b\xa2\x1f\x27\xef\x87\xb9\xc1\x90\x6e\x34\x3b\x56\xa2\x59\x78\ \xf9\x45\xe3\xa8\x55\xf1\x50\x14\xde\x97\x9b\x37\xbd\xf3\xd5\xb4\ \x26\xb4\x8d\x27\x55\xd8\xb7\x81\x3d\xe7\x82\x6a\xd0\xf0\x92\xfc\ \x41\x60\x44\x72\x22\xac\x03\x6e\xb8\x1a\x6b\x7b\x9a\x0b\x36\x09\ \x89\x29\x71\x2c\x43\x14\x19\xde\x14\x33\x2d\x71\xab\x40\xe2\x79\ \x15\x0f\x5f\x74\xe2\xc2\x6d\x3d\xad\x71\xe3\x11\x88\x82\xc8\xf1\ \x49\x72\x8a\x9a\x9b\xcd\xa6\x66\xb3\xdb\x4b\x8d\x66\x34\x4b\xf4\ \xc5\xab\x4e\x73\x11\x6c\xa8\x77\x55\xd8\x50\x99\x30\xa7\xc3\x75\ \x75\xae\xd8\xef\x34\x73\x7e\x56\x3b\x58\x58\x81\x90\xc7\x37\x7d\ \xa2\x21\xff\x9a\x5f\x49\x0c\x12\x11\x8d\x0d\xa8\xe9\x0b\x2a\x27\ \xd3\xf9\xa3\x8b\x56\xd1\xe6\xea\x0c\xbc\xba\xb4\x2b\xb4\xd3\xb9\ \xed\xfe\x29\x5b\xe1\xea\xeb\x37\xe4\xc2\xbd\xb2\x6f\x5c\x03\x7d\ \x48\x41\xda\x57\x3c\x96\x65\xe0\xd7\xdc\xa9\x96\x31\xee\x4f\x2e\ \xe3\x76\xbb\x59\x3c\x12\x95\x83\xde\xf5\xdc\x04\x55\x3c\xc6\x31\ \x31\xce\xb9\xce\x8b\x56\xc7\x95\xa4\xca\x55\x07\x23\x1f\xec\x84\ \x75\x10\x64\xe3\xee\x3f\x21\xc5\x95\xb0\x3c\xb2\x0e\xcc\x2b\x5c\ \x27\x23\x91\x3a\x49\xe0\x06\x94\x06\x42\xbc\xa6\xee\x74\x2f\xe9\ \x43\x14\xa3\x70\x69\xbc\xe3\xef\x8f\x46\x1f\xfa\x30\x8f\x3e\x44\ \x21\x0a\xd7\x20\x00\x3d\xd4\xce\x4a\xb6\xdb\x7c\xe5\xb7\x77\x3b\ \x1b\xe0\x3d\x71\x3b\xb7\x02\x1c\xb7\x52\x7b\x31\x98\xd3\x3b\xe1\ \x6b\x26\xc8\xd0\x9a\xe4\x33\xae\xa2\x11\x0f\x40\xcb\x23\x91\x30\ \x24\xd0\xb1\xae\xf0\xe8\x39\x96\x08\x34\xaa\x49\x3a\x4c\x0a\x1d\ \xb7\x52\x10\xf9\x21\x9b\x9d\x88\x89\x2c\xdb\xb2\xda\x58\x8a\xac\ \xa3\xb6\x8f\x21\x25\xd1\x43\x8a\xc1\x01\x1a\xa2\x70\xbd\xd7\xeb\ \x03\xfc\xf3\x00\x44\xc8\xc1\x1c\xa4\x84\xfd\x0b\xa3\x65\x88\xb1\ \x37\x13\x37\xef\x30\xb7\x72\x03\x40\xac\x3a\xb7\xef\xb8\x3d\x75\ \x5b\x39\x9a\x63\xc0\x89\x82\xc0\xe2\xfa\x0e\x66\x1a\x3e\x45\x6a\ \xfe\x95\x8a\x20\xba\x26\xe0\x8e\x3b\x92\x30\x2b\xc3\x9d\x0f\xb4\ \xbc\xdf\xa1\xb2\x06\x71\xa9\x2e\xe9\x02\xdc\x91\x90\xda\x60\x8a\ \x0c\x89\x0a\xf5\xcb\x0d\x3e\x19\x0e\x69\xbb\x93\xa1\x38\x25\x77\ \x89\x94\xd7\x8b\x02\x02\xb8\x07\x02\x40\x04\x6f\xe8\x43\x44\x98\ \x01\xfc\x43\x03\x1f\xbc\x1e\x11\x08\xbc\x19\x13\xc0\x35\x03\xc0\ \x45\xec\xaf\x46\xc4\x2a\xe1\x42\x37\x15\x82\x33\x57\x9b\x39\xa3\ \x19\xbc\xe3\xaa\xb5\x3a\x62\x8f\xf8\xb1\x40\x2c\x9c\xa1\xe1\x6b\ \x8c\xb3\x92\x8d\xa4\x03\x98\xe9\xb3\xb2\xdd\x69\x09\x34\xec\x92\ \x98\x58\x0d\x35\xbc\xba\x0f\xd0\x29\x8f\x89\xc3\x38\x74\x16\xa8\ \x18\x0a\x0b\x9a\xc1\xad\xd0\x00\x63\x98\x07\x3e\x24\x00\x02\xb8\ \x86\x3c\xbc\x06\xfc\x9b\x01\x60\x24\xc4\x42\x8c\xbb\xb8\x4b\xb5\ \x72\x53\xc6\x24\x4c\xc2\xfe\x7a\xc6\xfe\x82\x44\x74\x93\xb3\xc3\ \x4a\x18\xa3\x52\xbe\xf0\x98\x23\xf7\x11\x1b\x98\xb0\x0c\xff\x38\ \x88\x39\xd2\xc4\x23\x43\x8d\x19\x5a\x89\x90\x9a\x32\x9c\x58\x93\ \x73\x94\x0d\xaa\x89\x09\xd4\x18\x01\x67\x18\x3f\x06\xa2\x2b\xd9\ \x32\xbf\x81\x48\x25\x97\xa1\x0e\x9c\xb9\x06\x44\x00\x03\x02\xfe\ \x88\x82\x3e\x30\x86\xfa\xab\x94\x28\x98\x87\x83\x3c\xc6\xc3\x11\ \x81\x66\x5c\xc4\xb8\x5b\x39\x22\xec\x2f\xa5\x41\xc2\x46\x74\xc6\ \xac\x6a\xc2\x5d\x23\xbe\x3d\xbb\x44\xa5\xa9\x35\xe2\xc3\x23\xf7\ \xf9\x84\x36\x81\xa6\x68\x72\x01\xaf\x71\x8c\xe2\x0b\x3e\x63\xfa\ \xc2\x23\x63\x10\x48\xfb\x1d\x76\xa4\x1a\xaa\xa9\xa4\x2a\xa8\x24\ \x54\x91\xc7\x99\xba\x0d\x37\x9c\xb6\x9c\xcc\x0a\x13\x09\x1a\xbb\ \xc0\x3f\x44\x20\x80\x3e\x20\x9c\xd7\x5b\x3d\x1b\x4c\xc8\x99\x11\ \x87\x89\x52\xb5\x02\x44\x37\x73\x8b\x44\xa8\xc4\x2a\x89\x74\xc4\ \xfe\x62\x33\x6b\x84\xb9\x71\xfc\x88\xc9\x4a\x1a\x7a\xb3\xaa\x09\ \x34\x3e\xc8\x70\x3c\x72\xec\x44\xd0\x29\x3a\x1a\xf2\x23\xae\x99\ \xae\x8e\xda\xac\x6c\x2a\xad\x53\x34\x10\xea\x32\x93\x0d\xa3\x8c\ \x29\x21\x08\x88\xdb\xb4\xe3\x68\x19\x88\x03\x19\xe8\x98\x14\x7e\ \xb8\x86\x79\x18\xc6\x79\xe0\x36\xa1\x88\x0b\xea\xd1\x00\x60\x48\ \xca\x73\x11\x07\x35\x53\x44\xa8\x54\xb9\x8a\x8c\xc6\xaa\x3c\x37\ \xfd\xfa\xbd\x39\xf2\x48\xe2\x0b\x3c\x39\x8b\xc2\x7c\xf9\x11\x06\ \xa4\xa3\xf7\x19\x4b\x6e\xac\x86\x4e\x94\x21\x95\xa0\xa3\xfe\xf0\ \x00\x09\x67\x20\x45\x30\xe1\xc6\x2e\x6c\x1b\x13\xf4\x0f\x67\x5b\ \x24\x8c\x41\xb2\xb7\x81\xc5\x66\xd9\xb4\x93\xf9\x16\x6d\x81\x27\ \x4d\x9b\x0a\x13\xf9\x06\xa0\xcc\x99\x08\xd8\xc5\xb8\x70\x3d\x50\ \x1b\xc4\xd9\x53\x84\x27\x80\xbb\xb7\x4b\x35\xb7\x83\xcc\xaa\x84\ \xc6\xca\xa4\xb1\xac\xac\xa3\xe2\xeb\x3b\xfc\xda\x35\x3f\xea\xcc\ \x5c\x33\x32\xd2\x79\x1f\xc7\x28\x03\xe6\xb2\x42\xab\x21\x9d\xd6\ \x18\x1f\x34\x53\x24\x73\x3c\x13\xc7\x08\x45\x6e\x94\x0c\xdc\xf1\ \x95\x21\xc2\x18\x62\x13\x18\x8d\x79\x9b\xac\xcb\xcb\x4b\x13\x11\ \xbe\x61\x8a\x0d\xf1\xcd\xc9\x99\x07\x7e\x98\x87\x08\x38\xd0\x83\ \x54\xd0\x79\x30\x06\xb3\xe3\xad\x6f\x33\x39\x54\x93\x4e\x21\x6c\ \x3b\xb7\x4b\xb9\x64\x64\xb9\xcb\xf4\xbb\xbd\x9b\x28\xcd\x59\x98\ \xad\x04\x32\x5c\xcb\x2a\xf7\x18\xc1\x67\xf8\x84\x4f\x30\x51\xf8\ \x1c\x4b\xe9\xaa\x06\x82\x31\xc9\x36\xc9\x1a\x9e\x3b\x22\x61\xe3\ \xc0\xb2\x72\xa6\x0a\x9b\x4f\x02\x41\x10\x88\x70\xa4\x25\x52\xb8\ \x72\xda\xcf\x58\x14\x0a\xde\x5c\xbf\x11\x11\x25\xe0\x0c\xce\x40\ \x79\x17\xc1\x34\xd0\x08\x18\x46\x5f\x04\xc6\x6b\x68\xfe\xd0\x50\ \x7b\xd0\xfa\x42\x03\x3a\x08\xc2\xab\x54\xb5\x19\xdb\xbd\x7e\x98\ \x28\x05\xcc\xbb\xbc\x0b\x3e\x0e\xdd\x2f\xac\xaa\x35\xd3\xb8\x83\ \xc9\xfa\x4e\x4c\x5c\xae\x88\x78\xba\xed\xfb\x97\xd1\x84\x4f\x86\ \x28\xcd\x91\x88\x01\x86\xc0\x89\x67\x50\x26\x90\xa0\x3e\x09\x0b\ \xa4\xf7\x61\xa2\xb3\x51\x89\x94\x28\x22\x31\xe1\xb0\x24\x63\x02\ \x6b\x11\xd2\xbb\x39\x0a\x0d\x91\xc3\xdf\x80\x2f\xee\x89\x80\x7b\ \x40\x84\x6b\xc8\x99\x79\x40\x84\x4c\xd5\xd4\x4c\xa5\xbf\xb1\x5b\ \xcc\x45\x51\x84\x56\x90\x03\x55\x58\xc0\x52\xb5\xbb\x34\x93\x03\ \x51\x55\x85\xbe\x13\x55\x06\xd4\xb3\x05\xec\xd0\x47\xc4\xa8\xed\ \x4a\x53\x17\x5a\x53\x21\x01\xc5\x75\xe0\xbe\x75\x30\xa7\xd0\x11\ \xb6\x34\xdd\xc6\x97\x48\xd3\x27\xc9\x9a\x87\x2a\x3a\xf7\x70\x9f\ \x06\x74\x1f\x26\x6a\x10\x88\x21\xd4\x6f\x42\x93\x02\x3a\xc3\x44\ \xdd\xb4\xa6\xc8\x4b\xa1\xe8\x82\x76\x00\xb5\x12\x31\x91\xa4\xd0\ \x90\x6b\x1b\x91\x6f\xe0\x07\x44\xa0\x05\x02\x28\xce\xa0\x44\x84\ \x7d\x50\x57\x75\xad\x54\x84\x9c\xbd\x7f\x58\x84\x51\x5d\xd5\x0e\ \xb8\x83\x55\x1d\xd5\x30\xe5\xbb\xbe\xd3\xd7\x51\xfe\x0d\xbe\xbe\ \x0b\xbe\x97\xb3\xb9\x29\x04\x34\x67\x6a\x8f\x10\x05\x30\x33\x4d\ \x92\x85\x70\x88\x72\xb2\x1a\x8d\x39\x36\x84\x50\xa6\x3a\x6a\x93\ \x6a\x18\x1f\x55\x98\xa1\x3f\x7b\x06\xcb\x2a\x02\x3a\x1a\xd3\x7a\ \x6d\x8c\xb4\x02\x13\x57\x78\x1f\x91\x05\x09\x21\xd2\x89\x24\xab\ \x56\x2b\x82\x04\x42\x10\x88\x6b\x69\x07\x26\x68\x07\x00\x75\x54\ \xe3\xb9\x13\x0d\xe1\x8a\x7a\x20\x80\x22\x00\xc6\x56\x38\x50\x04\ \xed\xc7\x4c\x55\xd7\x38\x40\x84\xfb\x9b\x87\x4f\x5d\x91\x50\xd5\ \xb3\x7b\x4d\x55\x7e\x0d\xd3\x7e\xe5\xd7\x7f\x35\xd5\x2c\x45\xb3\ \x52\x69\xa6\xc7\x60\x0f\x3d\x13\x3c\xa4\xf2\x94\xc3\xa2\x5a\xf5\ \x28\xcf\x4f\xd0\x55\xce\x23\x98\xc9\x10\xb6\x3d\x33\x56\x84\x01\ \x03\xe2\x73\x1d\xef\xcc\x2e\x38\x82\xac\x1b\x3a\xc7\xf7\xf4\x58\ \x0a\x93\xcf\xdb\x99\x09\x26\x78\x88\x44\xd5\x05\x48\xd0\x05\x5d\ \xc0\x05\xc1\x58\x01\x98\xcd\x2b\xab\xa8\xa0\xbd\x8c\xa7\x10\x11\ \x57\x8a\xca\x19\x7e\x20\x00\x9e\xd5\x19\x9d\x19\xc6\x74\xad\xd4\ \xf9\x53\x04\xa3\x6d\x0e\x45\x98\x06\xa8\x85\xb9\xac\x5c\xd5\xbe\ \xc3\x57\xa8\x85\xb1\x01\x74\x33\xe1\xa3\x5b\xfe\xf6\x40\x08\x61\ \xe2\x58\xee\x20\x3c\xc7\x42\x92\x85\xf8\xda\x3b\xd0\x55\x26\xe0\ \xbc\x68\x2a\x09\x04\xa2\x23\x0f\xe8\x8e\x0f\xf5\xa1\x7d\xf9\x21\ \xd5\x1d\x2e\x5d\x93\x2e\x22\x3a\xc9\x8c\x82\x0c\x92\x3d\x32\x00\ \x22\x5b\x13\xfd\x04\xc0\x05\xdc\x26\x68\x81\xe5\x6d\x07\x22\x2d\ \x11\x75\xd2\xa2\x2e\x70\x19\x7e\x50\x85\x9c\x51\x86\x08\x68\x85\ \x6b\x78\x5c\xb6\x80\x5c\xef\x35\x86\x19\xf1\xb6\xfa\x52\x04\xbb\ \x83\x39\x17\xb3\x21\xed\x04\xdd\x30\x2d\x37\xe1\x4a\x37\xbd\x0b\ \x45\x84\x28\x3e\x25\x49\x08\x3a\x2a\x8c\xf3\xf0\xa7\x7c\xe1\x08\ \x1b\x02\x02\x0f\x48\x0f\x20\x28\x03\x01\x6e\x02\x3e\x68\x82\x4f\ \x28\x27\xb1\x95\x26\xdb\x7d\xc0\x8d\xd0\x3b\xa2\xf1\xaf\x9c\xf3\ \x8e\x08\x93\xb0\x1f\xa3\x5a\x8f\x1c\xd9\x41\xfd\xa6\x6d\x72\x0c\ \x85\x50\x88\x32\x58\x5e\xc0\x6d\x07\xeb\xcd\x34\x9e\xaa\x86\x68\ \xd0\x8d\xad\x28\x94\xe1\x8c\x00\x2d\x68\x97\x71\x31\x86\xc7\x85\ \x91\xd7\xab\x5c\xe6\x1c\xd3\x05\x1c\xd3\x7d\xed\xdc\x7f\xcd\x02\ \x53\x2b\x82\x35\x73\xc4\x55\x5b\xdf\xb9\xbd\x5f\x4d\x54\x0f\x85\ \xb8\x9c\x4f\xf1\x94\x08\x5e\x98\x01\xf6\xfe\x60\x01\x2e\x83\xf2\ \x94\x62\xb0\x35\x89\x82\x91\xa1\x26\x28\x02\xa3\x59\xe2\xff\x1a\ \x02\xb8\xa5\xa3\x89\xf2\x80\x4c\x84\x32\x6d\xaa\x1d\x07\x1c\x47\ \xc7\x1b\xe0\x36\x28\x03\x11\xce\x93\x46\xa1\x90\xe4\xf1\x90\xa4\ \x78\x9e\x6d\x7d\x8b\x11\xf8\xab\xad\x18\x01\x9d\x19\x5f\xae\xc8\ \x91\xf2\xed\x2d\x45\xe0\x57\x1d\x66\xdf\x22\xe8\x5c\x52\xfd\xe1\ \x1e\x6e\x3b\x8a\xac\x3b\x40\x4b\xda\x25\x41\x5d\x01\x7e\xe2\x2c\ \xc0\xdd\xab\xea\xd0\xf2\xd9\x17\x25\x89\xe2\x4c\x6e\x02\x10\xfe\ \x84\xaf\x3d\x47\x83\xa3\xcf\x19\x32\xd8\x35\x55\x1a\x06\x8c\xb9\ \x26\x11\x3e\xe9\x6a\x13\x04\x81\x92\x3c\x98\x21\xf5\xb8\x83\xc0\ \x9d\x96\x15\x88\x62\x11\x7e\x07\xe9\x6d\xd4\x68\x38\xe1\xe1\x08\ \x01\x6a\x09\x91\xa8\x70\x19\x65\x30\x21\x16\x7e\x5c\x9d\x99\x07\ \xd9\x63\x4e\x18\xf3\xdc\x55\xad\xd7\x55\x7d\x31\x2c\x4d\x33\x2e\ \x55\xc6\x19\x4b\x40\x3d\xf3\xd7\x31\x25\x95\x85\x78\x62\x3a\xc0\ \xdd\xae\x04\x03\x00\x96\x64\xf0\x18\x02\x0f\x00\xe1\x4d\xde\xe4\ \x32\xe0\x03\x4e\x3e\xd1\x75\xb6\xcd\x7f\xd9\x1d\x6a\x22\xe5\x7b\ \x09\xab\xc2\x0b\x45\x09\x03\x0d\x55\xfe\x99\x09\x96\x40\x16\x50\ \x8a\x01\x5e\x6d\x87\x75\x58\x81\x76\x10\x8c\x16\x28\x83\x69\x98\ \x06\x3e\xe8\x06\x37\xfe\x90\x2e\x60\x83\x6a\xd8\x82\x00\xb5\xad\ \x0c\x49\xd3\xc6\x51\x06\x7e\xe8\x80\x08\x90\xaf\xa1\x18\xce\x0e\ \x98\x87\x8b\x6e\x1c\x7e\x20\x03\xcb\x65\x0e\x45\x58\x04\x7b\x25\ \x64\x7d\xdd\x61\x56\xa3\x31\x2f\xbd\x3b\x55\xe3\xbb\x1b\x76\x0f\ \x94\x2c\x02\xa9\x6a\x12\x0f\x76\xe2\x36\xf0\x80\x6e\xe6\x14\x2e\ \x90\xe4\x9c\x06\x03\x2e\xe0\x02\x72\x5e\xe7\xa1\x3e\x51\x4e\xd0\ \xd5\xa3\x66\x1b\x3f\xa5\x21\x07\x34\xd8\xc1\x2b\x32\xe6\x9b\x4f\ \xfe\xc0\xe7\x55\xe9\x1f\xb8\xe9\x02\x52\x04\xe8\x13\x9d\x86\x28\ \x7e\x82\xae\x5e\x86\x76\x50\xe8\x37\x8e\x01\x36\xd0\x25\xf6\x92\ \x0a\x36\x10\xbc\x00\x33\x05\x42\xe6\x07\x18\xf9\x86\xed\xbd\xe8\ \x16\x66\x61\x3f\x1e\x2c\x45\xc0\x5e\x7d\x25\x64\x92\xaa\xd7\xe0\ \x63\xca\x25\xf4\x61\x89\xf2\x61\x7b\xcd\xe1\x98\xde\x3b\x52\xa9\ \x69\x85\x68\x83\xff\xf5\x00\x2e\x00\x12\x50\xf1\x69\xc6\x66\x6c\ \x0f\x00\x82\x4f\xe0\x84\x13\xe5\x03\x4e\xc0\x6c\xcc\x5e\x07\xa3\ \x3e\xea\x05\x71\x08\xb4\xe4\x6b\xfe\xd5\xdd\xc8\xce\x40\xd6\x11\ \xdc\x89\xce\x5b\x95\x34\xc8\x03\x3f\x32\x0c\x26\xa1\x83\x7a\x58\ \x81\x67\x58\x81\x7a\x38\xe7\x36\x68\x83\x1f\x68\x83\x65\xe0\x84\ \x77\xf0\x98\x6f\x78\x06\x25\xbd\x93\x2d\xc8\x88\x7d\xea\x84\x7d\ \x68\xb3\xec\xed\x00\x8b\xce\x99\x11\xa0\x0e\xba\x1e\x2a\x45\xa0\ \x23\x41\xf6\xdc\x1f\x66\x33\x69\x44\x33\xa6\x2d\x64\xcf\x4d\xda\ \xed\xa6\x69\xc4\x06\x02\xdb\x7e\x81\x9f\xe6\x9c\xa0\x5e\xec\x9f\ \x06\x83\x17\x78\x01\x35\xae\x6c\x4e\xb8\xec\xcb\xd6\x6c\xb0\xed\ \xec\x97\x64\x6a\x4b\x1c\xed\x11\x45\x56\x2b\x5b\xb4\xd9\x70\x86\ \x26\xf0\xaf\x42\x7b\x8c\x4f\x40\x6c\x0f\xc0\xed\x27\x98\x06\x71\ \x78\x87\xb0\xd6\x4b\x36\xa8\x02\xee\xe1\x16\x57\xc8\xda\xa3\xb2\ \x17\xac\x42\x84\x7e\x68\x85\x9c\xb9\x0e\x56\x10\xe9\xe5\x00\x64\ \xbd\x6b\xd5\xe0\xe3\x3d\x55\x53\x64\x53\x63\x66\xb3\x32\x2b\xa6\ \x85\xb1\xa4\x95\x2a\x00\x4e\xec\xef\x6e\x83\x17\x58\x6c\x2e\xe0\ \x1c\x0f\x08\xef\x17\xe0\x02\xf4\x46\xef\x36\x78\x02\x3e\x68\x6f\ \xf6\xd6\x71\xa2\x3e\xea\x6c\x4a\xd6\xc9\x1a\xed\x5c\xb3\x46\xad\ \x0c\x1e\xd7\x9a\x8d\x6a\xd0\xfe\x9a\x18\x6f\x92\x15\xb7\xed\xdb\ \x26\xf0\x15\xc0\x85\x76\x90\x9b\x39\xf6\x8a\x10\x70\x85\xc6\xce\ \x46\xfd\xaa\xe1\x6f\xbb\x57\x18\x2b\xb7\xa8\xac\x6e\x24\xa4\xb1\ \x51\xbd\x83\x0e\xb0\xd7\x0e\xbf\xa8\x1f\x9b\xe9\x9e\x6e\x03\x3a\ \xc0\xf1\xdb\x96\x71\x1a\x4f\x9a\x1a\x97\x71\x19\xc7\x69\x1a\xc7\ \x6d\x1d\xe7\xf3\x3e\xef\xf1\x13\x5d\x8c\xcf\x06\x6d\x3e\x1b\xf2\ \xe3\x02\x26\x55\x36\x38\x99\x18\x9e\x5e\x4e\xd3\xc2\x68\x12\xdc\ \x65\xec\x17\x10\x60\xdb\x8e\xf2\x6e\x38\x70\x8f\xb9\x36\xe3\x18\ \x83\x2e\x90\x83\x42\xcf\x0f\x1d\xc8\x70\xb4\x80\x6e\x67\xd6\xbb\ \x19\x23\x42\xdc\x73\xca\xfc\xba\xee\xe9\x86\x31\x44\xbe\x4e\x30\ \x06\x8f\x9c\x7e\xf2\xdb\x4e\x6f\x3a\x1f\x82\x21\x00\x6a\x1b\x6f\ \x71\xf4\xae\xf1\x1f\x78\x02\x74\xf6\x73\x74\xce\x64\xc6\x70\x3c\ \x09\xe3\xd8\xcb\xf1\x74\x81\xc5\xd3\xa7\x09\x8d\x4e\x5a\x8a\xb7\ \x91\x96\x75\xb8\x83\xff\xfd\x66\x35\x6e\x01\x16\x9f\x86\x76\xc0\ \x85\x68\x40\x70\x0a\xe9\xb4\xa9\xe8\x82\x07\xdf\xc8\x3f\x08\x75\ \xb4\x58\xdf\x42\x96\xd0\xac\xea\x3d\x02\xc4\xbb\x35\x5b\xf7\x58\ \xfb\x66\x0f\xb0\xed\xef\xfe\xfe\x01\x01\xc7\xed\x1f\x00\x6a\x5c\ \x47\x6f\x19\xc7\x6d\x1b\x7f\x81\x3d\xef\x73\x60\x17\x76\x62\x3f\ \x51\x5d\x75\xcd\x2f\x26\x74\xa7\x0e\x4f\xc9\x08\x0d\xcb\xe0\x4b\ \x0c\x71\x1e\x80\x8e\x65\x6a\xf9\xe7\x69\x10\x8c\x76\xd0\x85\x6e\ \xa7\x10\xe7\x21\xe1\x68\xa0\xef\x71\x2f\xf7\xb3\xc0\xd2\x42\x0e\ \xbe\x56\x98\xbb\xd0\x3d\xb5\xde\x43\x64\x2f\x65\xc6\xfd\x5a\xb9\ \x58\x97\xf5\x38\xbf\xed\x99\xa7\xf5\x1a\x47\xef\x7a\xff\x81\x5a\ \xbf\xf9\xae\xee\xf1\x9e\x27\xea\x13\x75\x08\xa9\xe1\xc0\xf1\xf9\ \x78\xaf\x7c\x9d\x0a\xf3\x2a\x57\x09\x0a\x37\x84\x84\x68\x58\x87\ \x6f\x90\x93\xa6\x6f\x07\x6d\xe7\x76\x2a\xd2\x96\x18\xf0\xf4\x38\ \x20\xf7\x77\x55\xc0\xce\x7d\x31\x52\xff\xfa\xa7\xbd\xe1\xbc\xfb\ \x6b\x95\xae\x31\xca\x92\xf7\xc4\x8e\xf3\x27\x18\xf0\xae\x7e\x02\ \x5d\x4f\x6f\x9c\xbf\xf7\x99\xcf\xf1\xf5\xfe\x04\x3e\x58\xe7\xf5\ \x5e\x87\x75\xe6\x3e\x8f\xf8\xe2\x78\xde\x27\xa6\x21\xd1\x02\xb9\ \x42\xcb\xb0\x34\x67\xe9\x02\x69\x5f\x01\x12\x46\x94\x95\x95\x2d\ \x9d\xda\x82\x26\xc8\xfa\xad\x9f\xbd\x7f\x25\x71\x94\x2e\x64\x92\ \x72\x85\x11\xdf\xfc\xfe\xbd\x66\xda\xb1\x77\x2c\x8a\x22\x15\x15\ \x07\x82\x27\x58\xfb\x1c\xe7\x83\x1f\xc8\x79\xdc\x9e\x79\xd6\xbf\ \x77\x5f\xaf\xfb\xcc\xa6\x6c\xf7\x5e\x67\x73\x5e\x8f\x25\x21\x1f\ \xc0\x7f\xa5\xc1\x4f\x15\x87\x7f\x78\xa2\xe8\x82\x15\x60\x08\x36\ \x60\x7c\x11\x03\x11\xc6\x11\x77\x90\x7f\xd7\x73\x77\x85\xcd\xb7\ \x57\x94\xd6\x6b\x12\x8f\xfe\x33\xcf\x6e\xc1\x16\xbe\x97\x23\x95\ \x27\x2f\x03\xb7\x77\x7b\x3e\xe8\x6a\xd5\x5f\xfb\xd6\x6f\xfd\x1f\ \x00\x76\x1e\xf7\xf9\xbb\x4f\xe3\x79\x57\x88\xa4\xd5\x14\xdd\xe7\ \x94\xa3\xcf\x09\x82\x71\xf8\xc3\x1f\x8e\xa6\x47\xa0\xd8\x1e\x61\ \x5c\x2e\x9e\x0f\x68\xa3\xac\x47\x81\x90\x07\x88\x7f\x02\x07\xca\ \x51\x65\x50\xd5\x9d\x0e\xaa\x0a\xca\x69\x55\x10\xe1\xc2\x83\x06\ \x19\xde\x99\xb8\xb0\x61\x91\x8c\x72\x36\x16\xa1\x93\xc5\x43\x96\ \x36\x40\xda\x94\x79\x62\x92\x0f\x1f\x93\x3f\x7e\x3c\x69\x63\xd2\ \xe5\x8f\x36\x2b\x65\xae\x3c\x89\x12\x65\x99\x9b\x25\x47\xb6\x69\ \x43\x07\x08\x90\x26\x77\x86\x6e\x04\xd3\x29\x0e\xd2\xa4\x4a\x97\ \x22\x3d\x8a\x94\x96\x9c\x67\xd5\xf2\xb8\x48\x63\xd5\xea\x98\x34\ \x59\xb7\x8e\xe9\xfe\x0a\x09\x52\x34\xb0\xed\x98\x8c\x8d\x46\xa8\ \x2b\xda\xb4\x6a\xd7\xb2\xed\x1a\x2d\x0b\xd3\xb8\x72\x95\xd6\x51\ \x34\xf0\x2e\xde\xbc\x7a\x07\xb6\x68\x55\xc4\xa1\x44\x55\x7f\x1f\ \x72\xa4\x95\xa5\x08\xc7\x22\x87\x33\xf6\xeb\x97\x31\x63\x16\xc3\ \x1b\x37\xd2\xf1\xe8\xc1\x83\xc8\x92\x39\x51\xaa\xac\x09\x73\x25\ \xe8\x1f\x2f\x46\xc7\x7c\x92\xb3\xa4\x49\xd3\xaa\xcb\xb0\x66\xdd\ \xe4\xd3\xb3\x4f\x77\x9a\xc8\x89\xec\x74\xae\xd2\x21\xb4\xc0\x0c\ \xe9\x04\x26\x4b\x13\xa9\xce\xaa\x5e\xcd\x9a\x06\x92\x56\xb4\x90\ \xba\xb4\x6b\xa7\x8b\x10\xd9\x75\xed\xa4\x33\xc1\x65\x16\x92\xda\ \xb3\x6d\xb7\xc7\x00\x83\xfb\x3b\x5d\xbb\x7b\xc7\x93\xaf\x97\xd1\ \x6f\xe3\xc7\x19\x0f\x16\xa1\x65\x8a\x56\xbf\x82\xed\x69\xc1\xef\ \xe7\xfe\x3d\x7d\xdb\xf9\xe5\xd0\xe9\x58\xd9\xa7\x69\xa7\x71\x56\ \x13\x4b\xa1\x89\x26\xda\x0b\x5c\x24\xf8\xc2\x4c\x4f\xb0\x94\x1a\ \x4e\x39\x7d\x32\xe1\x84\x77\xc8\x36\x14\x6d\x74\xd0\x02\x9e\x52\ \x59\xdc\x51\x9b\x64\xc1\xc5\x40\xd5\x55\xc7\x41\xc2\x84\x2e\xc8\ \x65\x15\xcd\x0a\x13\xae\xb0\x82\x38\x2b\xf0\xf1\x22\x27\x2b\x4c\ \xb3\x42\x3b\xfe\xda\x75\x45\x88\x59\xdb\xb5\xc5\xc6\x6d\x1c\xce\ \xa5\x8f\x78\xe4\x19\x89\x17\x3f\x13\xb5\xe2\x58\x11\xf6\xd9\x07\ \x58\x3f\xef\xd9\x07\x19\x7d\xb4\x28\x56\x25\x7d\x4d\xba\x07\x86\ \x61\x87\x65\xf1\x25\x1d\x1e\x8c\xc4\x1a\x67\x9d\xa9\xe4\xe0\x81\ \xa4\x8d\xc6\x85\x82\xa4\xb1\xe4\xd2\x13\x29\xdd\x34\x21\x27\x14\ \x36\xd1\x44\x19\x43\xcd\x26\x07\x2d\x43\x08\x19\xc7\x10\x72\xc4\ \xf0\x0c\x6d\x77\x3e\x13\xc3\x54\xc4\x41\xa2\x0b\x13\xeb\xa0\xd8\ \x85\x2e\xd1\xac\xb3\x42\x0b\x65\x4c\x33\x0d\x1f\x9a\xdd\x88\x29\ \x8e\x3e\x7a\x8a\x56\x08\xcf\x78\xf7\xe7\x5c\x41\x14\x79\x24\xaa\ \x2b\x28\x64\xd0\x5f\x5a\x4a\xf9\x98\x93\xf0\x65\xc1\x24\xac\xf0\ \x59\xd9\x6a\x95\x57\xe6\x77\x19\x66\x40\x64\xfa\x52\x68\x67\x22\ \x38\x1a\xb1\x6c\x0e\xd1\xe6\x83\x36\xa1\xc4\x49\x9d\x14\xae\x33\ \x21\x9e\x42\xdd\x01\x84\x77\x9d\x04\x09\xa8\x52\x9d\xf8\x19\x07\ \x18\x77\x54\x51\x45\x0c\x43\x3d\x23\x55\x1e\x79\x74\xd1\x45\xa3\ \xeb\xa4\xa8\x8b\x74\xed\x52\xda\x5a\x4f\xa6\xf1\x31\x8d\xa5\xed\ \x7c\xfa\x69\x08\xf5\x5c\x4b\x6a\x52\x5c\x28\x72\x2a\xaa\x46\xb2\ \xe1\x8a\xfe\x2b\xaa\x10\x5c\xb0\x60\x8d\x39\x26\x98\x5f\x8c\x79\ \xa9\x18\x64\x8f\x45\x94\x11\x7c\x5a\xee\x06\x86\x51\x60\x78\x40\ \x66\x4b\x06\x3e\x08\x1a\xb1\x0c\x16\xcb\x26\x83\x35\x41\x78\x13\ \x4a\x74\x42\x1b\x6d\x13\x74\x58\xcb\xa5\xb5\xdb\x1a\x85\xd4\x6f\ \xbb\x1d\x95\xc5\x88\xce\xe4\x11\x03\xcf\xeb\xf8\xcc\x44\xb3\x8e\ \x12\xa2\xcb\x0a\x93\xbe\x98\x69\x0b\xa9\xc9\xd4\x46\xa5\x2d\x4c\ \x93\xe3\xbd\x3e\xb2\xc1\x1b\xbf\x71\xe9\x01\x70\xc0\xe3\x89\x73\ \xb0\x16\x5a\xc4\xa0\xcc\x33\xae\xac\xfa\x90\x44\x45\x48\x94\x58\ \x7b\x12\x2f\xa4\x5e\x7b\xef\x65\x3c\x84\x98\xac\xa1\x19\xec\xc7\ \xc3\x96\x3c\xec\x81\x0e\xb6\x94\x5a\x80\x99\xf2\xd1\x2c\xb4\x65\ \x34\xd1\x06\x6f\x59\x54\xf6\xe5\x51\x9d\xc8\x31\x6a\x1c\x59\xc8\ \x51\x44\xc6\x72\x54\xe3\x02\xe5\xe9\x4e\x58\xc6\x27\xaf\x7d\xc2\ \x09\x2e\x40\xcb\xd8\x9a\x49\xf4\x2c\x0d\xa7\x69\x2d\xac\xa0\x63\ \xd4\xd9\x79\xb0\x6d\xd5\x4b\xa1\x80\x75\xd6\x7a\xad\x40\xb0\x16\ \x55\x8c\x70\xbb\x32\x5a\x3c\xa3\x05\xc2\x1d\x10\xbc\xea\x1d\xbb\ \x87\x5d\xf0\xe3\x12\xcb\xc7\xb6\x61\xf4\x69\x0b\x46\x4f\x25\xd1\ \x74\xfe\xf7\xc7\x73\xbb\x79\x12\xdf\x65\xf2\x9d\x9a\x84\x14\x5e\ \x4e\x87\x77\x60\xd0\x41\x99\x86\x43\x80\xd1\x44\x16\x4e\xc9\x41\ \x54\x16\xbf\xdd\xc1\x84\x0b\xba\x30\xca\x09\x9e\x9f\x08\x88\xf9\ \x0a\x9c\xd0\xeb\x60\x18\x9f\xfd\x80\x42\x4b\x6d\x84\xf1\x84\xe9\ \x50\xb7\x23\x42\x08\x10\x2d\x04\x3c\x0b\x21\xee\xc1\xba\xd6\x29\ \x85\x12\xb0\x8b\x1d\x5e\x56\xc0\x0f\x57\x68\x41\x19\xca\x18\x81\ \xed\x2c\x18\x03\xde\xd1\xce\x15\xc3\xf3\x9a\x32\xaa\xa0\x3b\x84\ \x2d\xc4\x21\x66\x2b\xe1\xf1\xe8\x93\x31\x8d\xb9\x04\x26\xd0\xbb\ \x9e\xde\x40\x63\x12\x4e\x2c\x02\x17\x36\xbc\xa1\x0d\x39\xb3\x34\ \x93\x6c\x86\x59\x9f\xe0\x03\x10\x56\x37\x04\xc3\x01\x45\x0e\xd4\ \xea\x84\x87\x16\x07\xa8\x6e\x11\xaa\x65\x98\xf9\x04\x8a\xdc\xb7\ \x0e\x4e\x64\x4a\x7e\xce\x4b\x96\x83\x64\x12\x06\x03\xf9\x8f\x25\ \xf4\xb8\x91\x00\xdf\xd1\x8e\x03\x40\x8d\x80\xef\x20\x03\x19\xd0\ \xb0\x0c\x7a\xdc\xa3\x0d\x2f\x58\x20\x03\x93\xf2\x3a\x08\x1a\x69\ \x76\xae\x98\xe0\x1d\xba\xf6\xb5\xdc\x0d\x8f\x76\x23\x3c\x98\x07\ \x03\x99\x10\x84\x35\x24\x30\x82\xd9\xd2\x51\xe0\xd6\x13\x99\xb8\ \xfe\x09\x8b\x36\x31\xd3\x13\x38\x67\xc3\x0d\xe0\x62\x03\x96\xa4\ \x24\x27\xce\x14\x2f\x3e\x6c\xae\x4e\x65\x68\x03\x17\x34\x06\x94\ \xca\x00\x81\x7b\x43\xbc\x13\xd5\xc0\x00\x04\x68\x8d\x04\x33\x7c\ \x70\x54\xe7\x3c\x09\x2c\xd1\x28\xc8\x63\x08\x42\xd6\x4c\xa6\x71\ \x00\xd4\x11\xa2\x1d\x97\x12\x07\x1a\x17\xb1\x8c\x3a\xa0\x60\x34\ \x70\x8c\x23\x53\xc2\xf0\x40\x3a\x0a\x64\x1a\xbe\x93\xc8\xc1\x76\ \xc7\x3b\x0e\x02\xd2\x20\x09\xb9\x03\x20\x0b\x56\x11\x43\x62\xc4\ \x66\x48\x81\x9b\x07\x56\xd2\xc8\x12\xc4\x49\x1f\x36\xd1\x47\x4a\ \xaa\x47\x43\x49\x4e\x92\x92\xb8\x48\x27\xf6\xfe\xc6\xac\x4f\x26\ \xa8\x57\x23\xa9\xcc\xea\xe2\xe0\x81\x26\x50\x2b\x29\xfb\xc4\x53\ \x1b\x3c\xf0\x46\x0f\xc4\x69\x8a\xb2\x9c\x09\x2d\x6b\x89\xb7\x04\ \xb1\xa9\xa1\x0c\x5a\xc6\xe9\xd2\xf2\x8e\x16\xa0\xc0\x69\xd3\x58\ \x86\x01\xf4\xc0\xd0\x21\x70\x94\xa3\xc8\x8c\x4b\x5d\x98\xb9\x17\ \x45\xf0\x23\x49\x13\x79\x48\x36\x09\x66\x10\xe0\x89\xed\x9a\x07\ \x43\x88\xef\x5c\x81\xcd\x89\xd4\x2a\x66\x70\x8b\x49\x9a\x7e\xf0\ \x3f\x72\xa6\x06\x9d\x54\x2c\x13\x3a\xe3\xb4\xac\x1a\xde\x90\xfe\ \x59\xf0\xec\x61\x9d\x5a\xf2\x02\xcc\x3c\x61\x24\xf7\xcc\xe7\xf8\ \xa8\xb5\xad\x21\x88\xa4\x27\x1e\xe0\xc2\x37\x49\xc2\xc9\x4c\xd1\ \xe4\x96\x43\x08\x59\x9b\x12\xd4\xd1\x86\xfe\x60\x19\x64\x48\x0b\ \x21\xba\x31\x0d\x7a\xd0\x03\xa3\x25\x08\x83\x46\x6b\x89\x82\xb9\ \xd2\xf2\xa3\x49\x19\x82\x08\x44\xba\x17\x71\x18\xac\x03\x26\x3d\ \x48\x4a\x57\x05\x53\x57\x6c\x90\x60\xc2\x23\x61\x36\x19\xf6\x98\ \xf4\x61\x8c\x85\xe1\x84\xde\x83\x78\x8a\x92\x65\xf0\xc1\xa7\x28\ \x41\xa7\x39\xd1\xb9\x2c\x1a\xda\xd0\xa8\x37\x61\x16\x15\xdd\x58\ \x1a\x20\x34\xb5\xaa\xa9\x04\x8a\x07\x94\x82\x99\x80\x8a\xf5\x9b\ \x2f\x20\x49\x4e\x3a\x46\xcb\xb1\x72\xe1\x58\xc6\xc2\x2a\x47\xc9\ \x3a\x8d\x77\x18\x90\x10\xc0\xb0\x11\x3d\xc2\x20\xdc\xb7\x0a\xb7\ \x0e\x7f\xf8\x83\x38\x92\xbb\x0c\x3d\x1c\xb3\x75\x60\x40\x83\x5e\ \xf5\xb2\xb5\x6c\xfa\x35\xa6\x1d\x04\xe4\x34\x47\x88\xcd\xdf\x91\ \xad\x9a\x0c\x2b\x9e\x62\x42\x82\x19\x71\x82\x46\xb8\x2c\x09\x03\ \x39\xf5\xf1\xd3\x75\x2e\x02\x65\xcb\xe2\xc3\x22\x40\x5b\xd4\x9f\ \xfe\x0d\x25\x34\x71\x09\x6b\x16\xd9\x13\xef\xc0\x0d\x28\xfe\x6f\ \xec\xd7\x22\x37\x8a\x14\x2e\x94\xa6\x24\xe2\x14\xeb\x54\x3b\xda\ \x51\x6c\xd9\xf6\x07\xe2\x20\xe0\x18\xe4\xe1\xcb\xe4\xae\x95\x1e\ \x25\xa8\x03\x86\x8d\xab\x8f\x3f\x28\x42\x1e\x99\xc8\x84\x38\xe8\ \x61\xd7\x01\x2f\x93\x99\x07\xa0\x60\x05\xbb\x86\xdd\xeb\x76\xcd\ \x6b\x5a\xd8\xae\x60\x2c\x62\xc8\x89\x39\xc4\x84\xfc\xf9\xcf\x63\ \x65\x58\xde\x07\xf1\x81\xb2\x94\x6d\xaf\x7b\x51\xd2\x5e\xce\xe2\ \x82\x73\x46\xa6\xe2\x4f\xd1\x84\x5f\xe7\xf5\x64\x24\xb5\xd5\xa7\ \x55\x17\xf8\x5a\xaf\xf6\xcb\x64\x20\x63\x13\xb6\x18\x0c\x28\x8f\ \x76\xf4\x05\x61\x10\xc7\x3b\x32\xf1\x8e\x10\xb3\xf5\x52\x06\x08\ \x43\x1d\x8a\x5b\x87\x0b\xff\x01\x0d\xa5\x20\x04\x88\x5f\x30\xe2\ \x38\x5c\x2d\xba\x79\x99\xae\x05\x47\x90\xbb\xdf\x1d\xac\x03\xbe\ \x6b\xb1\x16\x0e\x22\x9f\xc5\x08\x9a\x62\xee\xa9\x92\x29\xf0\x63\ \x98\x30\x09\x34\x9c\x70\x42\x27\x4f\x9f\x80\x59\x4e\xfc\x98\x0f\ \xe2\x10\x72\x65\xf5\xa1\x59\xd0\xc6\x17\xb4\x9e\x4d\xa7\xc9\xca\ \x44\x5a\x99\xe0\xf6\x05\xa4\xfd\xef\x5d\xa7\xdc\xda\x54\x1b\x68\ \x4d\x0b\xce\x4d\x6e\x14\xf4\x65\x32\x74\x43\x1c\x2d\xfe\xa0\x87\ \x1e\xda\x60\x80\x33\xcf\x15\x05\x94\x40\x01\x86\xff\x20\x02\x56\ \x64\x82\x10\xef\x30\x00\x56\x47\xfc\x82\x12\x43\x50\x11\xed\xe0\ \x05\x05\x47\xe0\x8c\xdb\x69\x81\x17\x0a\x69\x85\x2a\x5a\x81\x6d\ \xee\xae\xa7\x61\xf6\x81\x8f\x7c\xec\x93\x68\x6b\x99\xc2\x5a\x89\ \xf3\x0d\xc6\x14\x44\x93\x38\xd1\x10\xbe\x28\x5b\x06\x3a\x29\x4b\ \x45\xcc\xde\x44\xd2\xe8\xec\xb4\x51\xe9\x0b\x6a\x96\xb8\x57\x25\ \xa4\x06\x54\x4c\x02\x9a\xec\x7e\x8d\x6c\x29\xc7\x72\x93\xab\x3d\ \x6a\xf0\x6f\x1e\xbc\x04\xe2\xe8\xc6\x01\x6c\x4d\x0f\x14\xe8\x61\ \xae\x7a\xa8\x38\x25\xc2\xe0\x6b\xe3\xca\xc3\xc3\x99\x00\x06\x73\ \xe7\xfc\x07\x3b\xe3\x85\x0c\x23\xa8\xa0\x33\xb6\xb0\x05\xdc\x69\ \xe1\xda\x81\x68\x8c\xb6\xb3\x6d\x03\x98\x63\xbb\x31\x33\x57\x98\ \xab\x3a\x51\x6e\x73\xf3\x5c\x5b\xe2\x9b\xb2\x49\x96\x51\xc3\x52\ \xe0\x62\x11\x8b\xb8\x34\xbd\xf5\x21\xf4\x9b\x60\x56\x59\xeb\xd4\ \x37\x3c\x79\x5c\xef\xd4\xac\xa4\xb6\x5f\x3d\xf5\xc0\x5d\xbb\xa6\ \x27\x1b\x1c\xe1\x1b\x6d\xee\x37\x09\xac\x0f\x60\x46\x7c\x19\x6b\ \xa4\x78\x31\x2b\x4e\x4c\x5f\x73\xd8\xe3\x64\xa0\xfe\x07\xd8\x5b\ \x97\x57\x92\x0f\x44\x1e\x5b\xf8\xc0\x07\xee\xbe\x85\x69\x5b\xb0\ \xda\x7e\x5e\x52\x3f\x66\x6e\x03\x53\xd8\xa0\xf0\x0a\x9b\xb9\x29\ \x02\x7f\xf8\xfb\x24\x7a\xe7\xa6\xe0\xd2\x6e\xc4\x17\xf0\x19\xb2\ \xe2\x80\xef\x78\x27\x65\xd3\x5b\xce\x45\x68\x56\xb3\x4e\xff\xb4\ \x39\x4d\x22\xd9\x7e\xa3\x49\xac\x04\x66\x49\x82\x98\x62\x5b\x2c\ \xab\xfe\xe0\x22\x53\x10\xd7\xbf\x19\x6b\x3d\x2c\x03\x0d\x64\x30\ \xfb\xae\x85\xab\xf1\x1f\x54\xdc\xe2\x61\xd0\x81\xc7\xe5\x21\x02\ \x39\xcf\x79\x08\xcc\x86\xa0\xc9\xf5\xfe\x01\x96\x5b\xb0\xf9\xbc\ \x93\x39\x2d\x10\x4f\x78\xc2\x0f\x3e\x4a\xd1\xbf\x7e\xe3\x1b\x5f\ \xa5\x7e\x44\x06\x63\x8a\xdc\xdb\x32\x70\x81\xc0\x4c\x08\xb3\xb2\ \x7c\x20\x67\x09\x34\x9d\xe9\xce\xa7\x73\x59\xe2\x48\x72\x6a\x24\ \x2b\xd4\xa6\x97\x3e\xb7\xaf\x25\x35\x1c\x73\x6b\xac\xe6\xba\x7e\ \x41\x56\x67\x9d\x94\xa1\xc0\x32\x88\x83\x08\x94\x40\xc5\xe9\x1e\ \xbc\xe9\x83\x46\xbd\x80\x19\xa0\x00\x91\x7c\xd8\xc7\xfd\x40\xdc\ \x55\x4d\x27\x1c\x5f\xec\x2c\x42\x8a\xb5\x98\x9f\x59\x5b\xd7\x5c\ \x10\xb5\xa9\x82\xc2\x1c\x5e\x08\x26\x5e\xe0\xfe\xb9\x87\x0d\xd4\ \x47\xac\x28\x9a\xcd\xb0\x90\x4b\x2c\x83\x2e\x15\x9b\xb1\x5d\x9a\ \xd0\x99\x13\xfa\xa9\x5f\x66\x55\x56\xf5\xc8\x13\x50\x41\x48\x50\ \xd1\xdb\x13\x94\x40\xd5\xe5\x56\x4d\xac\x9a\x52\x90\x8c\xd5\xcd\ \x85\x6d\xf9\x9f\x82\x2d\xd0\x57\x85\x01\x72\x29\xe0\x68\x54\x9c\ \x3e\xa0\x01\x2b\x88\x03\x0a\x70\x94\x97\xfd\x01\x19\x94\x42\x26\ \x90\x81\x01\x4c\x60\xd5\x18\x1f\xdd\x0d\x04\x1a\x80\x60\x93\xf4\ \x83\xb6\x01\x1e\xb6\x71\x60\xcb\x65\x5b\xcc\x61\x5b\x1a\x02\xde\ \xe2\x25\xde\x7b\xd4\xe1\xce\xf1\x1c\x6f\x30\x0f\x00\x39\xcd\x0a\ \x90\x01\x9c\x1d\xc0\x0f\xc6\x5b\xe8\xf1\x14\xfa\xf1\x4d\x4d\xbc\ \x17\x0e\xf6\x94\xa4\xc1\xd3\xfc\xa9\xc4\x1b\x1d\x4b\x68\x64\x5d\ \xbf\x34\x94\xc2\xc5\xc5\x58\x6d\x9d\x82\xdd\x55\x13\xc2\x5b\x18\ \x2c\x88\x1e\x84\xc1\x32\x74\x1c\x19\x5c\xe1\x10\xe8\x41\x1d\x88\ \x40\xc7\xc9\x83\x38\x10\xdf\x9c\xc5\x01\x3d\x58\x60\xc0\x28\x82\ \x08\x30\x5e\xa2\x55\xdf\xf4\x35\x5e\x08\xae\x21\x8a\xfd\x4e\xc2\ \x38\x89\xb8\x31\x9e\xb9\xc5\x41\x30\x6a\x0b\x17\x60\x46\x0b\xb8\ \xe0\x34\x88\x03\x2e\x88\x83\x83\x3c\x94\xfe\x0c\xa2\x04\x39\x7d\ \xcc\x16\xe9\xcd\x13\xf8\x58\x22\xfe\x20\x84\xcc\x1f\xca\x98\xd3\ \x6c\x95\x8c\x83\xb0\x5e\xac\x7d\x1d\xd8\xad\xde\xd6\xfd\x9f\x9f\ \x1c\xcb\x27\x96\x00\x25\x3c\xe2\x0b\xe8\x81\x3e\x90\x41\xc7\x29\ \x02\x0a\xb0\x09\x0a\x70\x18\x2b\x90\xc1\xf0\xb5\x62\x52\x2c\xc3\ \x18\x0a\x84\x22\xd0\x07\x2e\x8a\xe0\xe0\xe1\xa2\xe1\xa1\xa1\x2a\ \xf0\x42\x06\xaa\x54\x2b\x4c\x5f\xf4\x35\x9e\xce\xf1\x9c\x30\xe6\ \xc6\x6b\xfd\xd2\x0a\xb8\xe0\x32\xfc\x00\x9b\xfc\x00\x3a\x89\xc3\ \xd1\x89\x43\x66\x51\xdd\x34\x0a\x15\x65\x31\x62\x4f\x05\x99\xf9\ \xfd\x60\x10\x42\xcf\x23\x1a\x5c\x43\x1d\x21\x12\xb6\x24\x43\xed\ \xdf\xc1\xf5\x5e\xc8\x1d\x4b\x3d\xa6\xa2\x08\x74\x22\x17\x38\x20\ \x1a\x88\x43\x09\xa0\x9a\x3e\x42\x57\x3f\x2a\x82\xe2\x29\xde\x92\ \x1c\xe5\x5f\xc4\x61\x93\xcc\x5c\xcc\x41\x5b\x8b\x89\x4d\xc2\xd8\ \x61\xb9\x39\x24\xb9\xf1\xdc\xb1\x10\x94\x45\x99\xdd\x32\x74\x62\ \xc3\xa5\x9f\xbc\xf5\x58\x8f\x69\xda\xf5\x68\x1e\x36\xfe\x0f\xf5\ \x0c\x95\xbb\x25\xa2\x4e\x2a\x54\x33\xc6\x1e\xc3\x51\x62\x25\xaa\ \x5e\x6d\x91\xcc\xc8\xe4\xd6\xc5\x51\xfe\xdc\xc0\xed\xe4\xb0\x29\ \x02\xe7\xe9\x81\x82\x00\x1b\x46\xe9\x81\x3e\x2a\x05\x2c\xc6\x62\ \x08\xde\x5c\x1a\x66\x5b\x60\x00\x1e\x62\x62\xdb\x41\xaa\x42\x4c\ \x75\x80\xb6\x35\x49\xa2\x01\x24\xe3\x55\x49\x1e\x82\x41\x4c\x1c\ \x63\x45\x2e\x43\x33\x62\x61\x68\x68\x1a\x47\xd6\x10\x27\x20\x1d\ \x0d\x46\x16\x4a\x9e\x0c\x15\xbd\x5f\xbb\x99\x1f\x37\x62\x24\x69\ \xcc\x0d\x38\x6a\xa2\x4c\x22\x21\x6d\x81\x55\x58\x55\x1c\x50\xbe\ \x80\x71\x29\x02\x1a\xfc\x81\x01\xb2\xc9\x27\x16\xd3\x60\x12\x66\ \x3f\xfe\xc3\x22\xc0\x61\x94\x24\x1a\x1a\x26\x66\x2b\xf0\x02\x1c\ \xca\x21\x62\xbe\x9c\xb6\x59\x57\xc1\x88\x9b\x63\x7c\x5b\x65\xee\ \x1c\xc6\x30\x95\xd3\x98\xdd\x0f\xea\xe4\xdd\xd4\xd2\x22\x8e\xe6\ \x3a\x79\x24\xfe\x78\xcc\x0f\xc2\x17\x6b\xb2\x26\x65\x05\x15\x10\ \x22\x88\x95\xcd\x16\x13\xae\x5e\x5c\xb6\x9e\xfd\xdd\x12\xb1\x5c\ \x9c\x5f\x4e\xd5\x0b\x94\xc0\x71\x1d\x57\x70\x12\xcb\x7d\xea\x63\ \x61\xa2\x8a\x22\xac\x8a\xb6\x15\x65\x1c\x1e\x65\x1c\x1e\x66\x08\ \xa2\xa1\x75\x75\x00\x63\x30\x46\x94\xf4\x9c\x6f\xf4\x57\x49\x78\ \x66\x21\x8a\x46\x18\xe8\xc3\x4f\xfe\x92\xcc\x4a\x90\x13\x65\x99\ \x27\x0e\x9a\x97\x7c\xf2\xdb\x79\xb6\xa6\x39\x9d\x28\x6c\x8e\x68\ \xe9\xb9\xe5\x5b\x9a\x23\x6e\xd8\x5f\xc8\x44\xa1\x1e\x98\xc1\x0b\ \xcc\xc0\x5d\x39\x60\x80\xfe\x81\x3e\x14\x93\x31\x81\x21\x32\xbd\ \xe2\x50\x66\x97\x64\xd2\x1c\x2f\xb8\x61\x41\x3e\x28\xcc\xd9\x5c\ \x7a\xfc\x45\xd9\x34\x06\x40\xde\x61\xe2\x70\x0b\x49\xd0\x43\xd2\ \x6c\x11\x0a\x94\x40\x02\x72\xa4\x3e\x30\xd4\x9a\x94\xcc\x46\x1a\ \x9d\x47\x42\xda\x81\xad\x84\x66\xb1\x66\x7b\x21\x9d\xf9\xbd\x95\ \x7c\x9a\xe5\x16\xcd\x16\xac\xcd\x25\x8d\xd6\x68\x58\xe1\x68\x3b\ \xc6\x1e\x17\x7c\xe2\x87\x72\x98\x3e\x84\xc1\x5c\x12\x29\x78\x40\ \xe4\x95\x76\xc2\x32\x1c\xa8\x91\x28\x42\x07\xe6\x4e\x1b\xfa\x59\ \xd7\x2c\xe9\x92\x90\xe0\x82\x36\xa7\x52\xca\xa1\xa5\x52\x8c\x43\ \x5a\xa9\x30\x32\x0f\x10\x38\x0f\x0a\x8c\xa8\xd0\xb1\x42\x29\x94\ \x82\x3e\x24\xd4\x39\xc6\x01\x81\x79\x29\x58\x62\xda\xa9\x9a\x4c\ \x35\x9a\x5f\x89\x5e\x96\x6b\x36\x63\xc9\xf0\x94\x38\x19\x4b\x6e\ \xac\x5e\x6d\xbe\xa4\x98\xb6\xe3\xc5\xbd\x80\x37\x4c\x95\x82\x5c\ \x9c\x71\x1d\xd7\x3c\x32\x90\xfe\xb5\x2c\xc5\xa1\x36\x85\x30\xa2\ \x81\xa2\x92\x07\xa3\x3e\x43\x9e\xed\xd9\x9f\x59\xab\x63\x1a\xc4\ \x1b\x42\xa6\xb6\x4e\x26\x52\x4e\x66\x63\x6c\x67\xf6\x95\x1b\xc6\ \x7c\xea\xad\xe9\xd4\x16\x39\xdc\x22\x70\x21\xf9\xc5\x67\xec\x7d\ \x95\x46\x72\x63\xfa\x71\x64\x58\x4a\xda\x22\xc6\xc9\x48\x3e\x63\ \xd3\x6d\xd1\xf4\xa0\x1f\x82\xbc\xda\x96\x19\xa1\x39\x16\x68\xc0\ \xd2\x65\xb0\x1e\x61\x97\xb5\xa3\x03\x82\x28\x50\xce\xd9\xbe\xc4\ \x01\xb4\x1e\xa9\x1f\xf5\x5d\x06\xaa\x98\xd8\xf8\x99\x9f\xad\xd4\ \x4a\x15\x0c\xc2\xc0\x61\xb6\xb5\x4a\x76\x2e\xa7\xad\x5c\xcc\x4f\ \x34\xcd\xff\xa0\x97\x97\x2e\x02\xa9\x66\x42\x29\x08\x93\x4e\x86\ \xdd\x78\x9e\x9e\xa6\x19\x1d\x2e\xbc\xe7\x22\xc6\xdb\x64\xd5\x6a\ \xe9\xdd\x2a\x4a\xe6\x2a\xd7\xe9\xdf\x98\x0e\x6c\xaa\xee\x2a\x5d\ \x46\xe1\x93\xd9\x56\xff\xf1\x5e\xc3\x16\x27\x61\x46\xeb\x78\x28\ \x02\x54\x42\x26\x8a\x59\x6b\x07\x40\x1b\xb4\x29\x84\x75\x1e\x4c\ \x42\x1c\xc4\x1b\x7a\x2c\xb8\xd2\x22\x97\x88\x52\xa5\x3c\x81\x70\ \x05\xe2\xd8\xa9\x2c\xbb\xca\xc3\x45\x26\xdb\xc1\xe9\x6a\x1c\x78\ \xe3\x13\x98\xa7\x67\x2e\xfe\xa2\x8f\xe1\xac\xcd\xf2\xeb\x4a\xa0\ \x97\xbd\xfa\x2c\x97\x91\x63\x4c\x2e\xe1\x31\xdd\x26\x81\x9e\x63\ \x4b\x2e\xe1\x47\x41\xe4\x77\x78\x80\xd3\x8e\xd4\x0a\x68\xab\xc2\ \xb4\x02\xc6\x46\xae\x60\x29\x44\x9f\x41\x84\xc1\x70\x2d\xb6\x49\ \xa9\x62\x02\x1e\x55\x6a\x4b\x27\xdc\x1f\x3d\x90\x6d\xba\xce\xac\ \x3e\xa0\x6d\xb1\xa9\xad\x04\xda\xe7\x5d\x9d\x9e\x9a\x72\x02\x2b\ \x18\x1d\x58\xc2\x5b\xec\x7a\x26\x78\xc6\x27\x69\xec\x54\xcf\x62\ \x22\xe1\xe6\x69\x4b\xde\xa9\xc1\xb5\x6d\x6d\x1e\x0b\xc1\xf2\x0b\ \xcf\x8d\x2b\x86\x2e\xeb\x51\x18\xc0\xe2\xea\x05\xd4\x42\x26\x63\ \x1a\x24\xa4\x76\x40\xcb\x61\xac\xc1\xf0\x62\x21\x19\x44\xc7\x6e\ \x6e\x52\x86\xeb\x7d\x80\x41\xb9\xa5\x9a\x4b\x9c\xac\x57\x96\xee\ \x86\x1d\xdd\x9b\x11\x42\x29\x2c\x43\x82\x80\x06\x00\x32\x88\xd5\ \x95\x15\x2b\xbc\xc3\x3b\xbc\x6e\xec\xd6\x6f\x21\xe2\xed\x88\x9a\ \xd3\x9c\xea\xae\x9f\x38\xd4\xc8\x14\xee\x38\xf6\xae\x8c\xda\x95\ \xb9\x4d\xe5\xb8\x1e\xf0\x2d\x26\xea\x50\x3a\xea\xf4\x2a\x66\xd5\ \x56\x90\xf3\x3d\xe5\xf3\xb1\x0a\x4c\x09\x96\x63\x56\xea\x09\x6e\ \xa7\x0a\x39\x05\x24\xfe\xba\x04\x0a\xfc\x4f\x02\xfe\x01\xe7\x69\ \x1a\xb1\xc1\xd9\x22\x94\x80\x97\xc2\x1b\x2b\x9e\x5e\xb2\x95\x15\ \x2e\x7c\x18\x9c\xbd\x6e\x89\x52\x1a\x3c\x45\x63\x9c\x96\xe5\x81\ \x51\x62\xc1\xf2\x6e\x4c\xba\xa4\xec\xcd\x28\xc0\x5a\x62\xeb\x3c\ \xe4\xf1\x92\x1b\xf5\x15\xde\xe0\x89\xc0\xf2\xe6\x85\x22\xe0\x4e\ \xf3\x39\x6a\x9e\xe1\xce\xed\x50\x1b\xef\xf8\x59\x4a\x45\xad\x44\ \x84\x6b\xe0\x35\xc9\x09\xc9\x41\x3f\x18\x45\x07\x93\xed\x07\xa7\ \x9f\xd2\x71\xde\x08\xab\xec\x87\x95\x02\xb1\x15\x1b\x88\x1d\x88\ \xd9\x9d\xea\x68\x94\xc0\x22\x84\x19\x84\x11\x50\x9b\xf6\xd8\x32\ \x90\xd3\xc9\xe2\xef\x0f\xa0\x30\x8a\xde\x12\xc2\xc2\xa4\xff\xe9\ \xee\xc2\x6d\x59\x26\xaa\xde\x0b\xcc\x55\x6a\x29\xeb\x5c\x14\xb0\ \xe3\x29\xf1\x50\x4e\xb1\x24\xaf\xdc\x08\x50\xb2\x9e\x79\xa0\x9e\ \x51\x10\x05\x61\x32\xd5\x42\xa6\x82\x3a\x68\xb6\x2a\x44\x6d\x74\ \xa7\x4b\xa4\xc0\x13\x8c\x71\x02\x6e\x98\x22\x6c\x98\x08\x1b\xdd\ \xba\x66\xc2\x18\x9c\x05\xf9\x01\x93\x19\xc1\x1b\x27\x68\x07\x2f\ \x8d\x19\x1e\x9b\xc4\xc9\x92\x2d\x79\xf5\x71\x78\xee\x2f\xff\xfa\ \xad\x00\x57\xe2\xfe\x21\x1b\xf2\x5c\xbc\x80\x01\x88\x43\x3b\x3c\ \x01\xa1\x32\x72\x53\xfc\xcb\x02\xa7\x98\x07\xaa\x9c\xca\xb1\x5c\ \x07\xea\xd9\x34\x5d\x90\xed\x8c\xc0\x06\x55\x31\xc6\x5a\x9b\x1b\ \x72\xeb\x4a\x55\x44\x6d\x7c\x44\x1b\x98\x72\x70\x0d\x97\xa6\x91\ \xef\x22\x00\x69\x3b\x97\x2e\x1a\x43\xa0\x3c\xbc\xd9\x8e\x90\x6a\ \x01\xa1\xc5\x2c\x73\x68\xe8\x1a\x40\x35\xc6\x67\xde\xea\x2d\x97\ \x82\x0c\x82\xf1\xea\x82\x88\xa9\x0f\xe7\xd6\xf0\x66\x19\x52\xfc\ \x40\x37\x10\x50\x3e\x31\xed\x52\x18\x69\x3f\x92\x81\x06\x76\xcd\ \xed\xac\x1c\x25\x4b\xf0\x05\x39\xea\xee\xf8\x11\x8a\x69\xe0\x06\ \x8e\x34\x37\x75\x84\xb9\x8a\x4e\xba\x7a\xa9\xa6\x01\xa9\x08\xc7\ \x33\x19\x8f\xa6\x2b\xe3\x33\x9c\x7d\xd8\x76\xa0\x6f\xd9\x99\x9d\ \x97\xa2\xb0\x2f\x87\x86\x1e\xc3\xe9\x9c\x02\xb2\xdf\x82\x95\x80\ \x85\xdd\x42\x1f\x4b\xbf\x4c\xc3\x8e\x30\xce\x60\x5e\x0b\x45\x8f\ \xe1\xc9\x01\x1a\x04\x4b\x32\xc5\xa2\xd8\x25\xab\xd4\x45\xf0\xc3\ \x9f\x51\xb3\x06\x7a\x72\x1c\x9e\x54\x0a\xd4\x43\x0a\x24\xcd\x13\ \x04\x97\x4a\x97\x6f\x3c\xb7\x33\x0a\xa7\xb5\x5a\xcf\xab\xd1\xad\ \xec\x01\xbd\xfe\x35\x9c\x91\x81\x72\x69\x25\xd9\x96\x00\xaf\xf1\ \xde\xfe\xec\xf1\x29\x87\x6a\xa8\xea\xae\xff\xde\xa8\x0e\x23\x33\ \x12\x66\x59\x1b\x74\x43\x57\xb4\x83\x52\x1f\xae\x30\x1a\xf1\x6d\ \x28\xef\x71\x36\x6a\xee\x44\xb6\x13\x43\xb5\xf4\x5a\x2c\x85\x3a\ \x89\x27\xb7\x58\x64\x77\xcd\x06\x8e\xb3\x44\xf0\x43\x3d\x00\x41\ \x3d\x94\x01\x3d\xa4\xc0\x4e\x79\xe5\x3b\xaf\xf2\x59\xa3\x35\x88\ \x02\xb4\x4e\xa1\xf6\x22\x90\xc1\x22\x74\xc3\x22\xd8\x1e\x1a\xdd\ \x63\x72\x1d\x1d\x4e\xef\xb1\x81\x7c\xf0\x29\xeb\x14\x70\x03\xb2\ \x9d\x22\xcb\x8d\x22\xd8\x96\xfd\xc9\x0b\xb0\x01\x5a\xb0\xc1\x33\ \x93\x8a\xb5\x14\xde\xf7\xc6\x01\x87\x1d\x27\x1b\x54\x90\x24\x5f\ \xf2\x13\x77\xe0\x04\x27\xc9\xaa\x9c\xe1\x09\x59\xb1\xf4\x86\xb7\ \xb5\x65\x2c\xf5\xaa\x42\x49\xc9\x41\x0a\xa4\xf3\x58\x3f\xc1\xda\ \xa5\x5f\x2b\x2b\x02\x3c\xaf\x76\x6b\x07\x77\x1f\x13\x17\x0a\xb7\ \xf6\x7d\x0b\x9d\x6e\x27\x97\x47\x12\x97\x79\xb5\xe3\x4a\xf0\xcf\ \xff\x7c\xf0\xfe\x0c\xcb\xc0\xe6\xa6\x1e\xf0\x5e\x5c\x71\x59\x96\ \x4d\x20\x17\x4c\x83\x8e\xa4\x40\x73\x3b\xf7\x43\x26\x05\x24\xf7\ \xe3\x34\xfe\x5d\x37\x36\x47\x75\xee\x48\x26\xb6\x45\xa6\x60\x24\ \xa5\xc6\xa6\x21\xcd\xa5\xa1\x64\x7e\x6c\x11\xdc\x43\x98\xf4\x04\ \x3d\xdc\xb5\x7b\x2f\x02\x5f\xbe\xb3\x4b\xa3\x35\x0a\x03\x37\x9c\ \x02\x61\xfa\xa9\xf5\x4a\x73\xa4\x08\x78\x24\xbc\x6d\xa5\x4e\x85\ \xea\x02\xe2\xb5\xee\x75\x11\x5e\x7f\xdd\x0e\xe3\xe8\x02\x0e\xaa\ \x26\xc6\xdd\x10\x18\x40\x5a\xb4\xc3\x22\x4b\xb4\x52\xb4\x81\x34\ \x8f\x21\x2b\x54\xb7\xf4\x72\x72\xee\xf0\x02\x42\x42\x70\x8b\x8d\ \xf7\x9f\xdd\x11\x08\x3a\x46\x83\x2e\x09\x74\x53\xdf\x93\x62\xe6\ \x65\xb4\x81\xe8\xbc\x55\x5a\xaf\xf4\x3b\xc3\xf8\x08\x83\x28\x8d\ \xc3\xf9\x5a\xc7\x39\x19\x97\x2f\x8f\x6b\x65\xa0\x72\x69\xa8\xa6\ \xa8\x6f\x0b\x17\x5d\x19\x38\x83\x5f\xe2\x7e\xb2\xc9\x0c\x64\xa2\ \xfe\x15\x28\x0a\x44\x83\x01\x29\x10\x95\x2f\xc5\x3d\x2c\x71\x5e\ \x44\x43\x87\x57\x76\xa4\x42\x65\x1a\x7a\xb9\xb5\x89\x39\xd6\x8a\ \x0d\xe0\xad\xc7\x94\x2e\x67\xe3\x15\xa4\xdb\x78\x40\x1b\xa1\x00\ \x59\xaf\x36\x87\x19\x1d\x5f\xd2\x38\x7e\xe7\x6d\x7d\xaf\xb5\x9d\ \x8b\xb0\x08\x2c\x42\xae\x2f\xc3\x1f\xe4\x31\xa1\xd3\xd5\x7e\xe6\ \x75\xfe\x18\x04\x57\xaf\x29\xad\x71\x1b\xb2\xdf\xea\x28\x5c\x0a\ \x2f\x03\x5e\xdc\xbb\x26\x77\x5a\x44\x03\x01\x4c\x7a\x52\x58\x4b\ \x53\xd3\xdd\x37\x50\xdb\x06\x46\x67\x2b\x34\x66\x1c\x66\x6c\xd7\ \x52\x69\x3f\x68\x2c\xd6\xb2\x47\xb7\xdf\x5c\x88\x7f\x44\x48\xb4\ \xc1\x3d\x0c\xbb\x56\x1e\x97\x9c\xc7\x38\x8c\x9f\xb5\x5a\xeb\x1e\ \xca\xde\xf7\x7d\x6f\x98\x38\xe0\xba\x08\xbc\xb1\x01\x10\x97\x90\ \xab\x49\x5e\x93\xad\xff\xec\x5e\x5d\x26\x58\x12\x32\xe0\x68\xcc\ \x40\x4b\x2e\xfa\x10\x98\x01\x25\x1c\x17\x25\x0c\xdc\x10\xd0\x83\ \x61\xa3\x85\x31\xd0\xc2\x95\x4e\x7a\x27\x5c\x3b\xc9\xb5\x03\xcb\ \xfd\xdd\xb9\x23\x71\xe1\x9d\xb9\x62\x66\x9b\xe2\x25\x1e\xa9\x9b\ \x77\xf5\xbe\x54\x62\xfa\x0e\x3f\xc8\xc1\x3d\xb4\x39\xab\x93\x31\ \xaf\xa7\xf6\x71\xc1\x37\x5f\xaa\xb6\xa6\xd5\x7b\x1f\xbf\x76\x9e\ \x93\xb1\x08\x0f\xbd\x8f\xfb\x77\x5f\x07\xfb\x07\x4f\x9c\xc6\xd1\ \xd5\x02\x1a\xf7\x39\x26\xa1\x8e\xc6\x55\x43\xf1\x28\x47\xe9\x41\ \x10\xfc\x81\x0e\xfc\xc1\x4a\x72\x01\x3d\xe8\x08\x1b\xa8\x82\x51\ \x14\xf0\xb2\x32\xad\x63\xf7\x63\x75\x77\x74\xcb\x2d\xe8\xcd\x29\ \xfe\xa9\x42\x2c\x29\x42\x5a\xdb\x82\x7a\xab\xe6\x9e\x3c\x78\x7b\ \x78\x4c\xc5\xfc\x8a\xbf\x56\x71\xb5\xf3\xd0\xbb\xf2\x3b\xc7\x37\ \x7e\xab\x35\xba\xda\x3b\xa1\xe7\xfb\x32\xf4\xbb\x8f\x83\x28\x7a\ \xed\x9e\x46\x69\x14\xef\x0d\xfb\x80\x03\xfa\xff\x3e\x3d\xd0\xf2\ \xa7\xb0\xc2\xde\x54\xd5\x23\x7c\xd7\x01\x73\x61\x61\x0b\x40\xfa\ \x18\xb0\x41\xfa\x54\x7b\x55\x3e\xac\x5d\x85\xd4\x18\x2a\x42\x75\ \x87\x3c\x89\xab\xa1\xb6\x39\xa5\x53\x56\x10\x54\x82\xf7\x5f\x7d\ \x2c\x93\x74\x6b\xa5\x36\xc6\x97\x04\x54\x4f\x74\x29\x3b\x13\x09\ \x9d\xc3\xf7\x08\x07\x3d\x9e\xd3\xf7\xe0\xb3\x33\x72\xf5\x3a\x70\ \xa6\xd9\xaf\x37\x7d\x22\x27\x3d\x5b\xfd\xba\xb1\x17\xb4\x21\xb3\ \x49\xd4\x2f\xb9\x37\x70\x1d\x17\x50\x82\x0e\x64\x7d\x1d\x70\x01\ \xc3\xf7\xa9\x01\x1c\x40\x34\xb0\x41\x9f\x30\xc5\xd8\x13\x70\x44\ \x22\x85\xe2\x1e\x67\x3b\x6c\x33\xc1\x2c\xa9\x41\x48\xaa\x83\x1e\ \xa4\x66\x73\x36\xa4\x3e\xa5\xef\x94\x77\xee\x07\xde\xb8\xbd\x0c\ \x40\x78\xa0\xd3\x26\xc5\x13\x7a\x75\xea\x94\x28\xa1\x4f\xdf\x9f\ \x45\x0f\x17\xfd\xf9\xa3\x4f\x61\x98\x1f\x16\xc3\x84\x41\x51\xfe\ \x22\x4c\x45\x8b\x3f\x2e\x66\x44\x91\xb1\xc4\x32\x7d\x26\xf5\x65\ \x14\x89\xe2\x87\x9e\x17\x2f\xf5\xfc\x40\x41\xcf\xc0\x32\x7a\xf4\ \xc2\xb4\x41\xa1\xc7\xe5\x4b\x2e\x5c\x86\xc4\x19\x32\x74\xc8\xcf\ \x17\x66\x5c\xf2\xe4\xf2\xc2\x1b\xd0\x19\x7a\xfe\xe8\xd0\xf1\x47\ \x0f\x50\x2e\xde\xf4\xb4\x68\xc7\xe6\x5e\x1c\xaf\x5f\xc1\x86\x15\ \xfb\xb5\x93\xa9\x4e\x9d\xc0\x9e\x55\x6b\xf6\xab\x1e\x45\xff\xe0\ \xc6\x95\x3b\x97\x6e\xdd\x76\xae\x5c\xa9\x52\xd5\x61\xaf\x5e\x5e\ \x7a\x55\xb5\x6a\x15\x48\xb0\x2b\x65\xca\xb4\x74\xe0\xab\x57\xb1\ \x16\x2d\x78\x15\x77\x70\x95\xb8\x43\xab\x22\x82\xfb\xd9\xa0\x65\ \x8a\xb3\x29\x5a\xb4\xb2\xd0\x49\x01\xa4\x45\xcd\x65\x06\x1a\x4a\ \x8c\xa8\xc8\x21\x43\x8a\x1e\x35\x8e\x24\x39\x52\x76\x47\x95\x0a\ \x1b\x9a\xac\xb3\x92\x65\xd2\x17\x7a\x50\xcc\xa4\x57\xfa\x66\x70\ \x9e\xbf\x7d\x02\x1d\x2a\xb4\xa8\xb7\xdf\x3c\x5d\x9a\xf9\x89\x55\ \x4f\x90\xa8\x7f\x50\x98\x09\x3a\xe4\x05\x3d\x36\x2b\xee\x81\x19\ \x3b\x7e\x6c\x59\xce\x36\x38\xab\x5d\xdb\x99\xed\xbd\xb7\x75\xe1\ \xc7\x8f\xbb\x62\xb1\xe0\x56\x81\x01\xf3\xba\xbf\x9f\x17\xfe\x2f\ \xc7\xfa\x6d\xe8\xe7\xbe\xc8\xf6\x52\xac\xaf\xc8\xec\xb3\xac\x95\ \xcc\x4c\xe9\x27\x8b\x22\x42\x1b\xad\x0c\x7a\xa6\x59\x66\x19\x11\ \x96\xf9\x23\x43\xd7\x38\x54\x88\x23\x95\x2e\x92\x4d\x44\xd9\x3e\ \x24\xe9\x24\x7d\x76\x8b\xad\xa5\xe3\x78\x92\x69\xa6\x9a\x5a\xb0\ \x89\x1e\xe3\x90\x63\x4a\xb9\xa1\xac\xba\xea\xb9\x9e\x8c\x52\xa7\ \x0e\x89\xfe\xa0\x44\x8f\xa0\xe2\x78\xaa\x05\x36\xa2\xf0\x80\x3c\ \xb4\xc8\x8b\xc3\x3c\xf6\xd0\x63\x4b\x2d\x27\x4d\xb1\x01\xbd\x4e\ \xdc\x93\x4f\xcb\xba\x56\xd8\xeb\xb2\xfb\x54\xd1\x2f\xc1\x30\x79\ \xe9\xc0\x3f\xc4\x5c\x59\x50\x40\x30\x13\xc4\x6c\xc0\xfd\xfa\x0a\ \xac\x9f\x39\x8b\x28\x82\x0e\xd1\xea\x69\x41\x4f\xd3\xc4\xd9\xb0\ \x43\x0f\x4b\xd4\x48\x23\x17\x55\xaa\xed\xb6\x30\x12\xaa\x43\x1f\ \x03\x38\x0a\x8e\x46\x98\x80\x0b\x83\xa6\xd3\x0c\xc0\xa9\x0d\xe8\ \x78\xfc\x89\x8b\x19\x9c\x32\x0a\x29\xdf\x36\xd5\xe3\x47\x1d\x82\ \xa8\x6a\x86\xaf\xb8\xa0\x67\x05\xae\x98\x0c\x4b\xbd\x56\xc5\x7a\ \xd5\x49\xf3\xce\x4a\xab\x13\x1b\x02\xe9\x27\x90\x14\xde\xdb\xd2\ \xd7\x7f\xee\x32\xd0\xcc\xbf\x02\x1b\x33\x4c\xc7\x10\xfe\xfb\xab\ \xcd\x65\xdb\x0c\x4c\xb1\x32\xe5\xdc\xec\x33\x5a\xe4\xa8\xa7\x9e\ \x15\xea\x99\xc6\x80\x18\x51\x7a\x8d\xa3\x6f\x0b\x1d\xc9\xc5\xe0\ \x04\x8d\x8d\x24\x95\x12\x42\x11\xc5\xd8\x58\xea\x0d\x26\x72\xe9\ \x39\x6d\x99\x16\x24\x35\xce\xb7\xa6\x38\x55\x6e\x53\x2e\xcc\xd8\ \xd1\xd4\xdf\xac\x0b\xf2\x54\xaf\x86\xf2\x26\x85\x69\xea\x11\x6f\ \xbc\x57\xa7\x24\x0b\x56\xaf\xce\x4a\x0f\xd6\x5b\x03\xc9\x15\x8d\ \x5e\x7f\xd5\xb2\x1d\xc4\x3a\x70\xec\x31\x2d\xfe\x22\x36\xb0\x32\ \xfd\x73\xac\xb2\x56\x02\x5c\xd3\x3e\xfc\xf6\x6b\x56\x2f\x35\xd3\ \x33\x85\x8e\x6b\x57\x58\xa1\x85\x9b\x4a\xf2\x56\x24\xde\x82\x73\ \x71\x5c\x95\x76\x46\x34\xa3\xdd\x10\x5a\x34\x45\x47\xa1\x7b\x8e\ \x5c\x03\x98\xb6\xe9\xc3\x9e\x7b\x7a\xe9\x05\x4d\x9b\xba\x8a\xdf\ \xe3\x5e\x18\xaa\x3a\x89\xea\x78\xe1\xd4\x19\x86\xe0\x34\xab\x28\ \xee\x21\x72\x49\x86\xc9\x2a\xef\xc9\xb5\x22\xe6\x2c\x0b\x8c\x33\ \x8e\x8f\x8c\x11\x0e\x9b\xec\x30\xc7\x5c\xe1\x25\x6f\x65\x8f\x05\ \xb9\x4c\x94\xfb\x69\x50\x40\xc0\xe0\xb4\x2f\xb3\x94\xe9\x84\xd9\ \x14\x30\xa8\xe5\x87\x8d\x3c\x0b\xa2\xe7\x09\x8f\xfe\x1c\x25\xb7\ \x67\x99\x40\x6a\xf7\xdc\xa0\x33\xa2\x84\xa4\x3a\x50\xdb\x0d\xe9\ \x9d\x58\x94\x8d\x9e\x12\x98\xae\xb4\x5e\x4c\xa3\x7e\xc9\x39\x7e\ \xa5\x86\x0e\x6c\x2e\x7e\xac\x83\x12\x33\xc0\x06\x7b\x1f\x2e\xf4\ \xa0\x24\x85\x36\x94\x6c\xd2\xe1\xb2\x98\x7c\x98\x2c\xf6\xce\xab\ \x52\x3d\x6f\x58\x89\x7b\xcb\x6e\x46\x18\xc1\xe3\xc3\x10\xa3\x1e\ \x31\xbf\x3d\x4e\x4c\xd9\x95\x0b\x0c\x33\x4c\x33\x0d\x47\x59\x33\ \x01\xbf\xec\xe7\xb3\x2c\xea\xe1\xa7\xe6\x7a\x52\x90\x1c\xe7\xa7\ \x41\xba\x48\xa6\x98\x78\x22\xb7\xa3\x12\x52\x44\xf7\x36\x84\x50\ \x07\x9d\xdd\x16\xeb\x07\x9c\x91\xe0\x24\x5e\xa7\xc3\x09\xd2\x56\ \x14\x9d\xa9\x1d\x85\x81\xfd\xd2\x83\x74\x86\x50\x9d\x3a\xa0\xe0\ \x27\x43\xf9\x9a\x19\xe8\x91\x82\x14\x78\x40\x61\x69\x59\x98\xac\ \x1a\xe6\xa4\x59\x45\xec\x49\xe8\x41\x15\xdc\x9c\x47\x17\xe8\x5d\ \x6f\x7a\xd4\x8b\x1e\xdd\xa2\x77\x98\x18\x66\x8f\x32\x21\xfb\x9e\ \xc9\xc4\xb4\x32\xcb\x5c\xe6\x32\xe6\xa3\x45\x11\xd2\xc7\x06\xf5\ \xb5\x2f\x05\x87\x5a\x09\x74\x5a\xf2\x1b\x42\x75\x04\x21\x08\x09\ \x83\xe7\x84\x26\xb4\xa2\x19\x40\x74\x3b\xb1\xfe\x22\x70\x04\x58\ \x1b\x9a\x30\xad\x04\x07\xc4\x62\x52\x92\x26\x9d\x97\xf4\xab\x5f\ \x47\xe9\x5d\x09\x28\xe1\xb5\xdc\x79\x65\x06\x18\x8c\x02\x3d\x86\ \xd2\x2a\x5a\xc5\x6a\x56\x52\x12\x61\xad\xca\x13\x07\xb3\xe0\x31\ \x0e\x2f\x40\x61\x0a\xe5\xb2\x31\x16\x5a\x4f\x86\xd1\xdb\x82\x21\ \xb7\x70\x48\xba\x59\xcf\x64\x8d\xe9\xd8\x99\x3c\xd6\x9f\xfa\x58\ \x66\x4e\xd2\x42\xdf\x33\xd8\xf0\x9d\x7a\xb8\xcf\x51\x82\x72\x54\ \x02\x7f\x36\x34\x2e\x0e\x8d\x94\xa4\x04\x5d\x42\x8c\x73\x45\xe8\ \x74\x72\x26\x61\x40\x0d\xd3\xea\x45\xba\x2f\x26\xad\x29\xce\x79\ \x60\xbf\x28\x81\x02\x21\x29\x47\x3a\xba\x6b\x63\x0b\x52\x50\x36\ \x57\x75\x46\x8e\xb6\x9a\xd8\xac\x3e\x58\x3c\x27\x19\xe0\x8f\x80\ \x84\x4b\x37\xee\xa6\x8c\x17\x2e\xb2\x90\xd2\x7c\xe1\x16\x42\xa0\ \xc8\x19\xfe\xc7\x63\x1d\xeb\x40\xf5\x70\xb8\x98\x39\x8d\xd3\x2c\ \xa0\x09\xa2\xb5\x6e\xf6\x04\x76\xd1\xe6\x7f\x95\x2b\x17\x01\x19\ \x85\x13\xa2\x91\xf2\x74\x54\x9c\x60\x16\x67\x99\xcb\x99\x0c\x30\ \x75\x54\xe4\x4d\x16\x83\xa3\x0e\xaf\x0d\x81\x3a\xd1\xd1\x25\x05\ \x83\xc2\x3b\xed\xec\x63\x06\x2f\x50\xc7\xfe\x3d\xb4\x53\x1e\x89\ \xd5\xca\x78\xca\x8c\x99\x32\xd5\x33\xbc\x66\x3a\x93\x15\xdf\xb0\ \xe6\x08\x12\xa9\x48\xea\xfd\xa7\x31\xca\x08\xa9\x36\x59\xd8\xcd\ \x32\x99\x29\x92\x89\x79\x19\x66\xe6\xe4\x19\xc6\xcd\x8c\x1f\x79\ \x2a\x43\x69\xe8\x15\xa8\x75\x8e\x48\x23\xbb\x31\x60\x1d\x08\xd8\ \xc5\x8c\xe0\x44\x52\x08\x19\x9d\x90\x30\xd5\x49\x03\xa2\x2e\x75\ \x38\xd1\x67\xe5\x90\xda\xaf\xa6\x20\x85\xaa\xc7\xd1\x1d\xbf\xf6\ \x65\x06\x75\xd0\xc3\x03\x66\x53\x5b\x46\xbf\x5a\x25\x2b\x75\xe6\ \x4a\x24\xa4\x68\x59\x36\x0a\x48\x32\x48\xf3\xa4\x89\x9c\xe6\xf5\ \xa0\xd5\x31\x43\xbe\x90\x63\x1d\xbb\x1e\x5f\x5a\x81\x20\x68\x91\ \xcc\x4c\x78\xdd\x61\x68\xaa\x75\x2d\xc8\xdd\xac\x26\x0c\xc9\x9f\ \x27\xdd\x49\x89\x9b\x48\x4a\xa8\x43\x05\x1a\x01\x85\x26\x24\x14\ \xa8\xc3\x38\x55\x6d\x25\x50\x99\x76\x4a\x2a\x1a\x40\x8a\xb9\xcc\ \xa5\x3a\x1e\xd8\x40\xa4\x80\xd6\x46\xb3\xe3\x14\xa7\xbc\xa1\x8e\ \x16\x44\x81\x12\x5e\xfd\xea\x1d\x45\x08\x31\x3d\x56\xa9\x62\x56\ \xc2\x55\x20\xc6\x4a\x4c\xb3\x74\x26\xad\x29\x24\x43\x5b\xdd\xea\ \x56\x90\xd2\x55\x86\xc2\xa5\xab\xc7\xfe\x62\x48\x32\xef\xdd\x47\ \x3f\x65\x9a\x4c\xf6\xf0\xc2\x0f\x2d\x64\x12\x93\x2b\x88\x02\xe4\ \x86\xd3\x82\x0a\xf9\xd3\x9d\x23\x81\xa2\x46\x20\x0b\xb4\xa1\xb6\ \x52\x52\x9d\x4b\x25\x68\x59\xd4\xbb\xa1\x82\x8e\x8a\xf5\x3c\x65\ \x13\x6d\xa7\x4f\xe8\x48\xc7\x39\x54\xdd\x8e\xd5\x7c\xa9\x07\x7a\ \x88\xe3\x00\x51\xe0\x42\xda\x8c\xe7\xaa\x3b\xae\x07\x3d\x05\x16\ \x2b\x6e\xa3\x54\x25\xb1\x5a\xa9\xb7\xce\x93\x47\x70\x4f\x3a\xdc\ \x43\x02\x37\xb8\x20\x35\xee\x5b\x69\x08\x32\x90\x49\x26\xc3\x5a\ \x50\xc6\x37\xbe\x31\x82\x6f\x08\x51\x7d\xec\x2b\x43\x0a\x4a\xa3\ \x2d\x2e\xf2\x8f\x68\x89\xba\x09\x01\x69\x13\x9c\x19\x81\xb7\xbc\ \x92\xf2\xdc\x67\xbf\x68\x86\x4f\xcd\x04\xb3\x8b\xe2\xec\x41\xfa\ \x59\x87\x20\x20\x84\x12\x42\x02\xad\x8e\xeb\xab\x63\x22\xb5\xd1\ \x0c\xde\x08\xca\x0c\xb0\x42\x0f\x60\x74\x83\x0d\xc1\xab\xa3\xc4\ \x92\xc9\x1e\xb6\xe9\x76\xac\xb6\xbd\x6d\x6d\x1b\x1c\xb7\x07\x43\ \x38\xa4\xd7\xbc\x26\x84\x11\x89\xcd\xb6\x4e\x93\xcd\x77\xe3\xa6\ \x7f\x4a\xa6\x8c\x18\x7c\xe3\x19\x35\xc5\x56\x9e\xf2\x44\x9c\xa6\ \x55\xc8\x42\x7d\xde\xec\x13\x67\xfe\x94\xcb\x7b\xec\x73\x9f\x33\ \x82\xf1\x41\x25\x8b\x5e\xa4\x98\xd1\x73\x08\xa9\x49\x66\x35\x9b\ \xa1\x3f\x18\x60\xc8\x07\x3d\xf2\x51\x74\x2c\x9d\x7d\x78\x05\x76\ \x33\xd8\x47\xd8\x90\x42\x89\x69\x00\x03\x18\x29\x30\x9b\xe0\xa2\ \xb4\x30\x2a\x11\x13\x2d\x0c\x33\x4f\x94\x6c\x8b\xdb\x40\xd4\x23\ \xcc\xbf\x52\x44\x34\x26\x3c\xd7\x36\x7b\xd8\xc3\x1f\x9d\x6b\x99\ \x7f\x6d\x61\x6d\xc6\xf0\x6e\x79\xeb\xab\x64\xf8\xe1\x8a\x9a\x56\ \x2b\xb0\x34\xd3\x93\xfb\x62\x84\x21\x71\x88\x00\x43\xa7\x01\xea\ \x4e\x65\xac\xdf\x42\x3b\x2a\xd0\xf6\x5a\xf4\xa7\xd4\x51\xd4\x9a\ \x54\x3b\xb3\xe3\xa6\xf6\x1f\x88\x6c\x64\x3d\x1c\x19\x5f\xdb\x81\ \x32\x53\xc2\xe6\x8d\x4c\xab\x83\x12\x06\x00\x46\x3b\x5a\x70\xea\ \x39\x5d\x89\x8e\x6d\xdb\xa3\xab\xdb\xe6\xe5\x8a\xd5\x96\x0c\xce\ \x84\x0f\x2b\x7c\xbd\xeb\x0d\xf3\xa5\x4c\x1e\x9e\xa6\x70\x7d\x1d\ \xf1\xea\x81\xd3\x6f\x95\x61\x8c\x2a\xe4\xe0\x43\xd0\xdc\x63\x66\ \x51\x60\x83\x9e\xda\x47\xd8\x65\x88\xa3\x4f\xd3\xb6\x10\xd3\x9c\ \x1a\x50\x2b\x16\xda\xd0\xfb\x94\xef\x7c\xa3\x03\x1c\x78\x9a\x3b\ \x75\x17\xa2\xb6\x08\x26\x3d\xfe\xe4\x22\xaf\x5b\x1d\xea\xc0\x9d\ \x2f\x6b\x39\x03\xa1\x1f\x05\xbd\x0f\xd4\x83\x38\x08\x51\xe5\xb4\ \xb0\xba\xd5\x19\x35\x2b\xf1\xc8\x9a\xdb\x58\xcb\x7a\xe0\x05\x37\ \x38\x5d\x14\xf1\x56\x37\x6b\x0f\xaf\xfa\x29\x10\xb2\x74\xad\x8c\ \x8e\x75\x78\xc3\x24\x0b\x99\x72\x9b\x7b\x9f\x22\xd0\xe2\x2c\x60\ \xe8\x04\x18\xc0\x30\x33\x74\x4e\x83\xee\xa5\xb1\x10\xc9\xfb\x24\ \x82\x69\x88\x00\xe5\xf4\x50\x6c\xa1\xf5\x6b\xe8\x19\xdd\x63\x96\ \xac\xfb\x94\xcc\xb7\xa8\xf7\x69\x4f\x9b\xef\x37\x3f\xb7\xed\x26\ \x5b\xe4\x22\x03\xe5\x2b\xf2\x76\xb2\x50\xe4\x2d\xf9\xdb\x5d\xa5\ \x05\xfd\xb5\x32\xc4\xb4\xbc\xdb\x7f\x13\xaf\x84\x9d\x41\xf0\x79\ \xac\x44\xf5\x81\x37\xef\xea\x73\x91\x07\x35\x33\xac\xd7\x56\x78\ \x7d\x2f\xd3\x1b\xae\x16\x16\xd4\x2c\x04\x31\x6b\xf6\xb3\x97\x64\ \xb4\xd4\x33\xd3\x14\xe0\xf9\x3b\xd3\xb8\xd9\x32\xa6\x21\x8e\xe4\ \xeb\x9d\xf9\x7d\x7f\xf1\xdf\x5f\xec\xf2\xc9\x4e\x96\x75\xd0\x51\ \xec\x3d\x68\xb2\x77\x11\x90\xdc\xf1\x36\xc7\x79\x10\x82\x50\xe4\ \xf8\x86\x7f\x60\x0c\x3d\x6d\x1c\x18\xaa\xe3\x9e\xf7\xbc\xc9\x66\ \x10\x35\x3d\xbc\x11\xab\xfe\xb2\x24\x58\xcb\x24\x8c\x7a\x81\x6d\ \x8b\xfa\xdb\x7e\xb9\xd6\xbf\x62\x05\xb1\x79\x2d\x92\xc0\xa7\xe1\ \x38\x4c\x31\xf8\x41\xae\xa2\x47\x0b\x54\x61\x4e\xd4\x24\xf7\x04\ \xc3\x2f\x2c\x2e\x41\x08\xc3\xf7\xc4\x69\x33\x88\x27\x0b\x30\xd0\ \x03\x80\xe0\xa6\x32\x49\xf9\x92\x8f\xe4\x3e\x90\xfb\x48\xae\x52\ \x6e\xa2\x52\x9c\x8f\x04\xbb\x6d\xdd\x54\x50\x05\x3d\x6b\x8b\x3e\ \x70\xfb\xba\x6f\x2a\xa2\xa2\x89\xc0\x2f\xfc\xf4\xe0\x54\xf6\x21\ \x07\x37\x2d\x07\x8b\x04\x2b\xd8\xcf\xe7\x74\x8c\x29\x90\xe2\x1e\ \x28\x2f\x2d\x02\x64\x8f\x90\x27\xf4\x92\x47\xf4\xa0\x44\xd6\xf0\ \xaf\xff\xb6\x44\x11\xc6\x8c\xd8\xa2\x69\xe1\xe2\x6c\xa4\x12\x63\ \x32\x12\xf0\x64\x78\xcf\x3e\xf4\x83\x0b\x07\x8e\x7b\xee\x23\x4a\ \xca\x02\x03\x69\x01\x0c\x86\xe0\x1e\xae\x85\x0d\xda\x01\x18\xc4\ \xa1\x1d\xde\x50\xf9\x40\x10\x04\xf5\xee\xd1\x54\xac\x9f\x6e\x42\ \xb1\xfc\x6e\x0f\x55\xf0\xa0\x5e\xcc\x00\xa8\x8d\xe4\xdc\x10\x06\ \xa9\x8d\xd2\x10\xa2\x06\xad\x83\xfc\x72\xd0\xd3\x78\x70\xd3\x98\ \xac\xfd\xe4\x8d\x29\x98\x42\x28\xcc\xa0\x05\xea\x61\x60\x1c\x66\ \xb7\xda\x06\xea\x26\xfe\xaa\xfe\x9e\x84\xb6\x6a\x0b\x57\x2e\xa6\ \xf5\xe4\x42\x11\xb2\xe9\xc2\xa8\x10\x59\x0a\x49\xeb\x64\xe8\xae\ \x76\x8f\xf7\x6c\x60\x30\x08\x63\xe0\x26\xd0\x70\x3a\xe3\x87\xe4\ \x80\x49\x86\x00\x08\xae\xa5\x1d\xba\x21\x1a\x0e\xe0\x00\xe0\xd0\ \x0d\xe9\x70\xf9\xb8\x8f\xf9\x5a\x40\x04\x4a\xc3\xf9\xf6\xd0\xb3\ \x14\x4b\x0f\x99\x66\xef\x92\x0f\x18\x44\x00\x0d\x18\x0f\xe7\xc6\ \x0f\xfc\xfe\x00\xfc\xf4\x20\xfe\x7a\x90\x11\xbd\x62\x1f\xbc\xc1\ \xf2\xae\xe2\xb4\xae\x82\x48\x3c\x40\x18\xbb\x2a\x99\x18\x46\x13\ \xd5\xa3\x13\x53\x8f\x16\x2b\x86\x0c\xa0\x50\x4b\x4c\x11\xb8\x86\ \x8b\xcd\x60\x48\xd8\x50\x71\x91\x02\x70\xc3\x04\x23\x57\x04\x72\ \xdf\x52\x2f\x1e\xd7\x24\xa6\xce\xa3\x08\x72\x11\x62\x3a\xae\x1d\ \xde\xe1\x17\x83\xb1\x1b\xda\x10\x04\x01\x11\xef\x8a\x91\xf9\xf6\ \x6e\x19\xf1\xf0\xc5\x4a\x90\x69\xa8\xcd\x18\xd1\x20\x24\x6f\x6e\ \x1b\x29\x41\xc8\x24\x22\xfc\x70\xc7\xfc\x9a\xcc\xd3\xc2\x11\xca\ \x9a\x6c\x1c\x73\x27\x6c\xcc\xc6\x0c\xa6\xa1\xbf\x3a\x48\xc0\x04\ \x0c\x84\x94\x30\x1e\xe5\x91\x1e\x49\x31\x2e\xee\x71\xd8\x7e\xad\ \xcc\x72\x8d\xcc\xfe\x16\x89\x9a\x46\xaa\x3f\xfa\xa3\xf7\xda\x64\ \x16\x11\x0c\x57\x0c\x27\x10\xaa\xa4\x1f\xea\xc4\x14\x82\x02\x0c\ \xd0\xa7\x1e\x32\xc9\x17\x1d\xb2\x1b\xde\xe1\x00\xb8\x8f\xee\x48\ \xcd\x0d\x89\x11\x23\x95\xb1\xf1\xfa\x09\xe5\xfa\x89\xf9\xa2\x20\ \x10\x43\xf2\x2d\x6f\xae\x06\xa3\x82\x54\xd4\x21\x77\x2c\xcf\x1b\ \x1a\x51\x1c\x91\xcc\x1b\x84\x4e\x77\xd0\x6f\x07\xe3\xc0\x03\xda\ \x21\xe9\x6e\x52\x78\x1c\x06\x62\x6e\x45\xb7\xce\xa3\xb6\x06\x4e\ \x11\xea\x51\x3e\x14\xa1\x1f\xad\x47\x1f\x91\x92\x91\xb2\x67\xeb\ \x24\x49\x29\xff\x43\x29\xd3\xae\x62\x04\x64\x02\x73\x25\x33\x68\ \x81\x2a\x3f\x03\xee\xe4\xae\x05\x56\xa5\x1d\x84\x91\x10\xb8\xd2\ \x22\x49\x4d\x1c\x5e\x53\x1c\xa2\x40\x04\x97\x6f\xef\xd2\x72\x2d\ \x01\xd1\xf1\xa8\x0d\x2e\x71\x4e\x07\x44\x40\x2a\x7e\x53\x07\x6e\ \xc7\x25\x9b\x6c\x08\xf2\x72\x1c\x91\xb3\x2f\xfb\x12\xfd\x98\xb3\ \x48\xa6\x61\x0c\xc6\x20\x0a\x5c\xcb\x30\x27\x66\xf4\xd4\x03\xd6\ \x18\xec\x31\xe3\x23\xeb\x8e\x4b\x7b\xf2\x26\x6f\x90\x25\x92\x38\ \xd3\x3f\x9e\xeb\x31\x86\x85\x33\x87\x65\xec\x7a\x4d\xc3\xe0\x4c\ \x4c\x66\x51\xfe\x30\xbc\x8c\x7c\xea\x44\x21\xd1\x29\x0a\xa6\xa1\ \x1d\xb8\xb2\x1b\xc0\x92\xe4\x82\x11\x0d\xba\x41\x3f\xc1\x92\x1a\ \xa7\x8d\x0d\x60\x73\x10\x3d\x32\x37\xcd\x52\x36\x1d\x4f\x1c\xde\ \x12\x0d\x70\x8e\xda\x14\x41\x04\x14\x41\x2a\x4a\x45\xde\xd6\x8d\ \x2f\xff\x92\xa1\x60\x72\x11\x95\x93\x2f\xc1\x91\x60\xe8\x21\x1a\ \xc6\x80\x10\xba\x02\x27\x0d\x73\x84\x5c\x4d\xff\xa6\x41\x3b\xb7\ \x53\x0a\x3d\x0a\x6f\xcc\x8e\xaf\x38\xd3\x0b\xfb\xc2\xb9\x5c\x81\ \x0b\x2b\x83\x6f\xce\xae\x64\xde\xac\x3d\x99\x32\x14\x1b\x04\x4c\ \x30\x4e\x2f\xac\x65\x1a\x3c\x0e\x3f\xef\x4d\x10\x0f\xe0\x3f\x83\ \xb1\x49\x61\xf3\x49\x49\x0d\x0d\xca\x12\x10\x01\x51\xfb\xa8\x2d\ \x0a\x42\x92\xf1\xa6\xed\x2d\xa7\x02\x38\x15\x01\x0d\x48\x85\x12\ \xe8\xad\xc8\xd4\x01\x43\xd1\x0f\xca\xc6\x51\x07\x75\x50\x39\x19\ \x91\x07\xbd\xc2\x1b\xba\x01\x3a\xdb\xc1\xb5\xa0\x0e\x84\x6c\x05\ \x79\xe8\x2f\x1e\xc5\x81\x45\x21\x53\x0a\xe5\x81\x1e\xd9\x40\x0b\ \xf8\x01\xae\x64\x34\xed\x96\x72\x64\x5e\x4a\x30\xce\xae\xf7\xc6\ \xb3\x51\x1d\xb5\xf7\x0a\x8c\x4e\xa8\x92\x3e\xeb\x21\x0a\x6c\xc6\ \x52\x55\xfe\x73\x55\xf8\x0b\x18\x9a\x14\x40\xf9\x0b\x40\xa5\x94\ \xbf\x0a\x94\xe4\x66\x53\x40\x67\x13\x06\x1d\xb4\x1a\x45\x92\xda\ \x80\x13\x4c\xa5\xe2\x76\xd4\x01\xfc\x28\x01\x43\x77\xb0\x8d\xf8\ \xd2\x4d\xd7\x54\x39\xd5\x74\xd3\xe2\x80\x1e\xa0\x73\x0c\x4a\x14\ \x31\x17\x4c\xac\xd2\x03\x31\xcd\xe3\x29\xf3\x6f\xc1\x6c\x60\x14\ \x7f\xb2\x45\xfd\x94\x0c\xda\x21\x1a\x32\x49\x7b\x38\xd3\x6f\xdc\ \x44\x51\xbd\x90\x51\xb1\x75\x46\x03\xc1\x51\xc7\x53\x7c\x68\x61\ \x7c\x7e\x28\x0b\xd4\x10\x9d\x56\x85\x40\x93\x8f\x40\x0b\x14\x2c\ \x9b\x74\x49\x83\x91\x18\x0b\x74\x2c\x45\x72\xf1\x08\x91\x1a\xa9\ \xf1\xe6\x52\x55\x07\x2e\xe6\x55\x25\x2f\xfc\xea\x52\x07\xe3\xed\ \x56\x77\x70\x57\x75\x55\xe8\xdc\x14\x4e\xa1\x93\x0d\xbc\xea\xd5\ \xf4\xcf\x06\xce\x4a\x59\xbd\x2c\x09\x4d\x41\x42\x9b\x35\x63\x1c\ \x53\x0a\x15\x81\x0c\x84\x71\x2b\xbe\x81\x32\x50\x86\x30\xbc\x67\ \x29\xb7\x95\x51\x73\x28\x20\x07\xc3\x0b\xfb\x23\x92\x18\x84\x33\ \x3e\xc3\x7c\xe4\x60\xf8\xac\x05\xc5\xec\x73\x36\xfb\x40\x1c\x08\ \x14\x2c\x27\x92\x53\x9b\x94\xd4\xe6\x41\x04\x80\x01\x0d\x9a\xd4\ \x1a\xfe\x49\xae\x67\x8f\x91\x41\x1d\xef\x62\x2e\x26\x38\x65\xb5\ \x06\xcb\xf4\x56\xd1\xd4\x43\x79\x55\x07\x33\x54\x1c\x37\xd4\x4d\ \xe3\x80\x0b\xda\x01\x3a\xa3\xe1\xf3\x36\x51\xff\xfe\x4d\x62\x91\ \xe7\xac\x28\xb6\x62\x01\xe9\x62\xe5\x21\x63\xf5\x73\x55\xea\xc1\ \xf7\x94\x45\x4c\xf6\x8a\x29\x97\xb2\x5b\x4f\xb6\x62\x14\x75\x3c\ \x17\x10\x3d\xa4\xe5\x33\x3c\xe0\x1e\x80\x40\x83\x42\xce\x3e\x6d\ \x96\xd4\x84\x11\xef\x04\x57\x3f\xc7\xd2\x67\x49\x4e\x4a\xad\x51\ \x37\x09\x51\x55\x77\x13\x0d\xfe\xd4\x55\xa5\x82\x54\xfc\xd5\x43\ \x91\x53\xde\x70\xe7\x2b\x00\x53\x4d\xa1\xac\x2f\xd5\x94\x60\x44\ \xe0\x57\xa5\xd3\x83\x5e\xc5\x13\x01\x0e\xb6\xd4\x62\x6c\xc9\xf6\ \xea\x2e\xf6\x62\x59\x01\x72\x25\x92\x1f\x98\xcb\xf7\x66\x8f\x4c\ \x98\xb2\xf7\x6a\x71\x02\x9b\x0b\x7c\xc6\x69\x33\xcc\x02\xee\xf8\ \x36\x98\x34\x48\xbb\x0a\xf7\x3f\x81\x81\x0d\x04\x77\x49\x39\xf5\ \x70\xed\x15\xef\x98\xef\x42\xf6\x6e\x55\xdf\x92\x0c\xe8\x91\x0c\ \x24\x97\x42\xc5\xf4\xe7\x9e\xd6\xf2\x30\x31\x1c\xa7\x76\x57\xad\ \xd6\x2b\x0c\x80\x10\xe4\x74\x3a\x51\x94\x6d\x8e\x29\xb6\x06\xcc\ \xfe\x14\xe8\x81\x4f\x57\xd7\x59\xcd\x16\x6d\x81\x61\xec\x94\xb2\ \x6e\x45\x96\x30\x78\x61\xe0\xa0\xf2\x65\x26\xb5\x1f\xdc\x0e\x2d\ \xc0\x40\x20\xfc\x96\x1e\x66\x73\x36\xd9\x40\x18\x01\x94\x53\x0d\ \xf7\x00\xc6\xf2\x67\xe9\xd5\xf1\xa8\xf4\x71\x1d\x34\x24\xa9\x37\ \x24\xbf\x54\x42\x29\x37\x7b\x3b\x74\x1c\x5f\x92\x57\xc1\x62\x60\ \xc1\x37\x7c\xe3\x80\x12\x7e\x75\x6b\x55\xed\x44\xe5\xaf\x4a\x56\ \xf4\x7d\x59\xb8\x45\xe5\xe1\x85\xeb\x81\x31\x36\xb3\x29\x6d\x2b\ \x41\xc8\x87\x2d\x08\x26\x80\x51\x6c\x05\x8c\x94\x87\xed\x93\x53\ \x55\xb3\x5d\xe5\xf5\x67\xa3\x54\x4b\x19\x57\x55\x1b\x94\x7a\x2f\ \x38\x69\xe9\x12\x08\x5f\xb2\x2f\x39\x58\xe8\xc4\x22\x6a\x43\xb8\ \x39\x51\x85\x0c\x7e\x35\x05\x50\xf8\x44\x5b\xed\x3c\x54\xb7\x85\ \xc1\xb8\x2e\xe2\x57\x1e\xda\x81\x1f\xcc\x18\xaf\x70\x4b\x57\x6c\ \x78\xf4\xbc\x02\xee\xda\x40\x2b\xf1\xf3\x66\x70\xaa\x54\x77\x16\ \x36\x27\x58\x71\xa5\x94\x10\x8f\xf1\x71\x55\xd5\x7a\x23\xb4\x1a\ \x27\xf4\x37\x51\x92\x83\x7d\x0e\x26\x91\xec\x43\xa7\xf8\x7b\xa5\ \x36\x2c\x86\x40\x1c\xb2\x78\x8b\x9b\x64\x3d\xf6\x68\x19\xdc\xfe\ \x37\x8c\x7f\x32\x7e\xbb\xc1\xf8\xae\x4b\x76\xed\x43\x4a\x5a\x6d\ \x08\x02\x78\x66\x56\x60\x2b\x80\x69\x38\x86\xc3\x00\x6c\xf6\x49\ \xa7\x8d\x1a\x27\xb8\x1b\xf2\xf8\x68\xab\xb1\x1a\xad\x17\x69\x2f\ \xf8\x37\x25\x54\x90\xc5\xb4\x4c\xd5\x2f\xb5\xb4\x4a\xc7\x58\x52\ \x78\x40\xf8\x73\xc3\x82\x0d\xa0\x93\x10\x3e\x0f\x92\xef\x74\xa2\ \xe2\xe0\x8b\x2d\xb9\x99\xed\xb1\x75\x59\x01\xef\x92\x8f\x1e\x1c\ \xc6\x34\x79\xb1\x66\xa2\x00\xe4\x32\xe8\x94\x0d\xa0\x2d\x93\xd1\ \x67\xef\xf8\x2d\xa3\x74\x55\x91\x18\x6d\x45\xd2\x37\x27\x37\x4c\ \x83\x60\xfd\xd6\xcf\xfd\xd6\x39\x25\x3d\x98\x3c\x36\x37\x9e\xc3\ \xc2\x91\xc7\x20\x1a\xba\x57\xfe\xf0\x28\xc0\x66\x0b\xcb\x3c\xc0\ \x31\x9d\x39\xa0\x9d\xa7\x75\x2f\xd6\xf1\x80\xe0\x4e\x80\x20\x78\ \x57\xc5\xf8\x38\xf2\x8d\xd6\x12\x2e\x45\xb2\x41\x23\xfa\x71\xbb\ \x41\x89\x57\x15\x7b\x11\x31\x97\x7b\x8e\x12\x2a\x57\x84\xe5\xb9\ \x39\xe9\xf9\x2b\x80\x41\x4e\x0b\x93\x78\x8e\x87\xe9\x5c\x65\x6d\ \xce\xa2\x7d\x05\xba\xa5\x9d\x89\xa0\xa1\xd9\x00\xe8\x40\x2b\xd8\ \x80\x1e\xb0\xaf\x7d\xfe\x30\x37\x79\x13\x89\x7f\x16\xa2\xfe\x91\ \xf6\x62\x2a\x3a\x42\x27\x37\xfc\xc0\x0f\x7b\x7d\x8e\xde\xc0\xaf\ \x4c\x07\x16\x92\x43\xfa\x2b\x86\xe0\x00\x12\x36\x56\x70\x98\x4a\ \x70\xa5\xaa\xc3\xb6\x4e\x77\xab\x05\x2a\xd9\xa5\x5d\x1a\xa6\x5b\ \xf7\x66\xf2\x70\x0f\x3d\x72\x37\x85\x1a\x89\x5d\x59\xa2\x2d\x38\ \x55\x95\xb6\x06\x49\x85\x42\x37\x9a\xa3\x7b\xee\x43\x9b\x1a\x99\ \x29\x51\x44\x49\x54\x9f\x97\x4e\x1e\xbd\x8c\x0c\x45\xcf\x06\x58\ \x9a\xab\x01\x7b\x75\x61\xda\x00\x7c\x93\x55\x1d\x57\x82\xfd\xf8\ \x2d\xbf\x34\x5f\x29\xb7\xa8\xd3\x19\x11\x99\xf6\x5f\xa3\x96\xae\ \xc7\x63\x08\xa4\xac\x1d\xb4\x18\x85\x6f\x25\x62\x87\x35\x09\x6d\ \x40\xab\x03\x3b\xb4\x5b\x98\xa0\x69\xb9\x96\x29\x78\x96\x0d\x1b\ \x9d\x29\x37\x9d\x1f\xdb\xb1\x93\x1a\x2f\x17\x99\xb2\xc5\x62\x08\ \x30\x28\x3c\x20\xf9\xe9\x76\xcb\xc0\x2e\x6a\x62\xb7\x5a\xb4\x7d\ \x1b\x7e\x2f\x36\xad\xc9\x20\x96\x59\x9b\x42\x7d\xf3\x4b\x27\x94\ \x42\xd9\x9a\x2e\x61\xdb\xa3\x65\x9b\x60\x7e\xc3\x7c\xe9\x68\x78\ \xce\xf7\x1d\x89\x27\x4b\x7e\x3b\xbb\xc3\xb8\x75\xcf\x36\xb8\x45\ \x00\x11\xd1\x39\x42\x91\xbb\xb8\x93\xba\x4c\x0d\x76\xfe\xae\x9f\ \x9b\x28\xa8\x13\xac\x50\x37\xa5\xd5\xc3\x2d\xb4\x3b\xbe\x9d\xd9\ \xab\x7f\x9a\xb1\xd3\x19\x83\xd7\x19\x6a\x1b\xf1\xb9\xf9\xfb\x13\ \xad\x93\x9f\xa7\x04\x05\x7a\x5b\xbe\x09\xdc\x57\xbc\x1a\x63\x1d\ \xd4\x37\xf7\x55\x07\xcc\xbb\x4d\xd1\x9b\xbf\xb7\x38\x62\xc6\x6a\ \xfe\xb0\xac\xd5\x46\xc8\x2b\x04\xbc\xc0\x35\xbc\xa5\xbd\xfa\x6c\ \xcf\x36\x08\xf6\x12\x91\x21\xbc\xbf\x4b\x68\x16\x61\x4d\xb7\x48\ \x8f\x12\x06\x7c\xc3\x59\xdc\xe0\x1c\xf3\x6c\xc9\x00\xc4\x9b\x6c\ \x53\x46\x1c\xc2\xcf\xc2\x06\xe0\x4c\x16\x81\x14\x79\xc0\x60\xc5\ \x5b\xfc\xc7\x59\xf7\xc5\x23\x34\x36\x94\xa2\xc6\xd7\x5b\x84\xaa\ \x84\x17\xa4\x47\xc7\x9f\x52\xc1\xdc\xc6\xc7\x81\x3c\xca\x83\x5c\ \xc8\x15\x01\xbe\x50\xc0\xc8\x5d\x65\x34\x15\x0c\x57\x72\x5c\x7f\ \x0d\xac\xc0\x72\x05\xca\xa5\x7c\xcc\x5b\x0f\xa6\x71\x4e\x22\x0c\ \xe0\xbf\x46\xdc\x33\x0a\xd2\x4a\xec\x83\x16\xbb\x4c\x59\x8b\x40\ \xcc\xc9\xbc\xce\x49\xd1\xab\xff\x20\x55\x5f\x80\xae\x25\xbc\x20\ \xc7\x69\x4e\x70\xab\x61\x63\xad\x1f\xe8\xdc\xce\x0d\xfd\x92\x0f\ \x1c\x0d\xea\x80\x8b\x0f\x0c\xc1\x62\xea\x70\xba\x85\x4c\xf5\x2a\ \x66\xce\x0f\xbd\xd2\x81\xfc\xc0\x8b\x22\xd3\x83\xe2\xd5\xaa\x3a\ \x8d\x35\xa3\x41\xa4\x4e\xe0\x2a\x26\x0a\x2c\xbd\xd4\xeb\x1c\xa6\ \xf5\xc0\x03\x08\x20\x0b\x08\xe0\xcb\xac\x24\x70\x0e\xe7\xf4\x38\ \x83\xea\x6c\x40\x1c\x4c\xfd\xd6\xed\x1c\xa6\xa7\xc1\x6f\xeb\x21\ \x0b\xcc\x87\xb3\xc9\x8a\x31\x0b\x1d\xd7\x89\x7d\xbe\x5b\xd7\xf8\ \x4e\xe3\x1e\xa0\x84\x27\x03\x61\xd8\x8b\xfd\xd9\x9b\xd9\xcc\x97\ \x21\x0a\x52\xa0\x08\xbe\xac\x62\x9c\x1d\xda\xb5\xdd\xd8\x83\xdb\ \x1a\x91\x84\x1f\xb6\x3d\xdc\x6f\x1d\xa6\xc5\xbd\xdc\xcd\xfd\x27\ \x03\x02\x00\x21\xf9\x04\x09\x00\x00\xff\x00\x2c\x00\x00\x00\x00\ \xf0\x00\xf0\x00\x87\xff\xff\xff\x19\x86\xb8\xff\xff\xff\xff\xff\ \xff\x16\x46\x1e\xff\xff\xff\xd3\x88\x89\x93\x49\x34\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x5e\xc8\xf6\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x56\x87\x3b\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x95\xa7\xb8\x54\x67\x1a\x5c\x02\x8c\xff\xff\xff\x13\x28\xa7\x50\ \xa8\xe0\x93\xa7\x5a\xce\xc8\xe4\xff\xff\xff\x0e\x27\x68\xf3\x89\ \xb9\xff\xff\xff\xff\xff\xff\xce\x67\x9d\xf6\xa7\xb8\xff\xff\xff\ \xff\xff\xff\x04\x04\x56\x13\x29\xe0\xf9\xc8\xe4\xb1\xa9\xb5\xb2\ \x89\xb7\x4e\x68\xf8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x2f\x48\xeb\x93\xf3\xfc\xff\xff\xff\xf8\xe8\xbc\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xb6\x49\x26\x73\x87\xab\x96\x29\x88\xff\ \xff\xff\xff\xff\xff\x93\x68\xf8\xff\xff\xff\xf4\xb1\xf2\xad\xa8\ \x70\x91\xc8\xfb\x6b\x6a\x21\xae\xb4\xf4\x4a\x4b\xe1\xff\xff\xff\ \xfc\x8e\x5e\xff\xff\xff\xf7\xe8\xf4\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x8c\x96\xf7\xff\xff\xff\xd3\x90\xf4\x74\x8c\x3a\xf0\x69\ \xa6\x6d\x69\xea\xff\xff\xff\xff\xff\xff\xcf\xd9\xf2\x30\x8f\xc0\ \xf9\xd8\xe9\xff\xff\xff\xff\xff\xff\x38\x56\xf6\xaf\xc8\xf6\x0f\ \x38\x67\xff\xff\xff\xd0\xaf\xf6\x17\x7a\xc9\xff\xff\xff\x04\x0a\ \xd5\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xf1\x99\xb4\x08\x18\x63\xb1\x8e\xf5\xff\xff\xff\x72\x8c\xf9\xff\ \xff\xff\xff\xff\xff\x55\xb7\xeb\xff\xff\xff\x90\xb1\xfa\xb2\x68\ \xeb\xff\xff\xff\xf9\xcf\xa0\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\x6f\x78\x28\x6f\xb3\xf5\xfa\xfd\xfb\x8f\x98\x4e\xfa\ \xb8\xbd\xff\xff\xff\xff\xff\xff\xff\xff\xff\x77\xf3\xfc\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xb4\x29\x1b\xcc\x2a\x6a\ \xbc\xe2\x94\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf8\ \xa7\x88\x31\x47\x13\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xb4\x6a\xa1\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x94\x33\xce\xd0\xf5\xfc\x4e\x96\xe0\xad\ \x1c\x61\xff\xff\xff\xff\xff\xff\xb1\xf3\xfc\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x75\xca\xf9\xff\xff\xff\ \xf2\x74\x62\xef\x91\x91\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\x52\x39\x94\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\x95\xac\x7b\xcf\xd6\x9d\x44\x1e\xd4\xff\xff\xff\xd4\x39\x7a\ \xaf\xd8\xfb\xfb\xb7\x8a\x3a\xb1\xec\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x58\x75\ \x23\xff\xff\xff\x18\x37\xa5\x10\x78\xa9\xff\xff\xff\xd0\x78\x99\ \xff\xff\xff\x19\x37\xe1\x58\x76\xfa\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\x76\x97\xa8\x92\x78\xf2\x91\xd7\xfc\x47\x5a\xf6\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xef\x79\xa6\x69\x7a\xf4\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\x33\x57\x65\x08\x19\xe0\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xb1\x78\xf5\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xb7\x38\x1f\x36\x56\x1d\xb5\x58\xa8\x70\x58\xa9\xff\xff\xff\ \xff\xff\xff\x6f\x5a\xf1\xff\xff\xff\xff\xff\xff\x34\x77\x62\x73\ \x37\x50\xff\xff\xff\xff\xff\xff\xff\xff\xff\xd4\x97\x92\x96\x55\ \x37\xff\xff\xff\x91\x98\xb7\x4f\x19\x29\x94\xb7\xb3\xb3\xb8\xba\ \xff\xff\xff\xfb\xf9\xc5\xff\xff\xff\xf7\x77\x46\xff\xff\xff\x92\ \x5b\xf8\xff\x00\x00\x08\xfe\x00\xff\x09\x1c\x48\xb0\xa0\xc1\x83\ \x08\x13\x2a\x5c\xc8\xb0\xa1\xc3\x87\x10\x23\x4a\x9c\x48\xb1\x62\ \x42\x3d\x1a\x86\x15\xd1\xf3\xa1\x4f\x1f\x3d\x20\x41\x6a\xd0\x23\ \x45\xca\x87\x93\xb4\xf0\xdd\xe0\xc3\xb2\xa5\xcb\x96\x4b\xf4\xbd\ \x9c\xc9\x67\xc9\x12\x9a\x2c\xf5\xd9\xcc\x92\xc5\xa6\x4d\x97\x4b\ \xb2\x80\x60\x71\xd3\xa5\x50\x7c\x20\xb2\xe0\x5c\xca\xd4\x65\x97\ \x30\x22\x54\x48\x9d\x4a\xb5\xaa\xd5\xaa\x22\x8a\x85\x59\xd6\xa9\ \xeb\xb3\x3d\x72\x72\x15\x6d\x4a\xb6\xac\xd9\xb3\x4b\x0f\x09\x94\ \x12\x12\x64\x49\x3d\x45\x32\x0e\x9b\x3b\x8c\xa4\x14\x8f\x1f\x6a\ \xe9\x6c\x7a\x63\x2c\xda\x99\xfa\x6e\xf4\x95\x79\x43\x69\xcb\x2c\ \x7e\x6a\xb1\xe8\x0b\x13\x84\x3c\x7c\x48\x7b\xfe\x5d\x7a\xa5\x53\ \xb1\xab\x98\xaf\xaa\x51\x23\x62\xb3\x8a\xcd\x9d\x37\x6f\xf6\xb2\ \xad\x5d\x1b\x22\x57\x26\xab\x5e\xfd\x57\xed\xbf\x92\x25\x35\x14\ \x99\x1d\x77\xf6\x48\x3d\xc3\xde\xde\x3d\x59\xb6\x8e\x01\x3d\x06\ \x0c\xb3\x8e\xc9\xf2\x86\x2e\x79\x75\x8a\x06\x05\x91\x74\x6c\x50\ \x7c\x2d\x5c\xf4\xa1\xd4\xa7\x85\xe4\xd5\x57\xe4\x6c\x53\x93\xb9\ \xfb\x54\x11\x5e\x8a\xfe\x79\xe9\xe0\x19\x73\xd6\xd2\xcf\x9e\xc9\ \x49\xcd\xba\xbd\x7b\x98\xae\xef\xf6\x61\x6b\xdb\x36\xc9\x3e\x45\ \xea\x0e\x1b\x59\xf2\xc3\x90\x5a\x7c\xe9\xd2\x42\x1d\x32\xd1\x44\ \x1c\x59\x05\xf2\x71\x43\x0b\x7d\xb8\x50\x07\x4c\x75\xe0\x43\x14\ \x4b\x3b\x45\xd8\x02\x0f\xee\x6c\xe3\xce\x39\xf8\xf8\x75\xd6\x15\ \x3c\x44\xe5\xdd\x88\x9c\x75\x10\x1a\x67\xa1\x61\xe5\x45\x78\xe1\ \x6d\xd3\x49\x17\x9c\xbc\x27\xe3\x6a\xae\x61\x24\x9b\x1e\x1e\xcd\ \xb7\xdb\x10\x27\x49\xa1\xc1\x23\x40\xe6\xd6\xc7\x3d\x2a\xbd\xc7\ \x18\x5a\x75\xc8\x23\x4f\x52\x14\x46\xc8\x82\x64\x41\x65\x71\x05\ \x0b\xf8\xc8\xa3\x87\x3d\x6a\x3c\x02\x4b\x3d\x1e\x92\x05\xa2\x88\ \x23\x86\xe9\x99\x68\x9d\x9d\xf8\x99\x08\x68\xa6\xb9\x22\x0f\xf5\ \xb0\x37\xe3\x9b\x65\xb9\x36\x4c\x39\xe5\x8c\xd4\x47\x8f\x24\x7d\ \x90\x48\x2d\xb5\x0c\xd1\xc7\x8f\x8f\x94\x83\xe3\x7c\xb4\xac\x04\ \xa7\x59\x41\x15\x56\x98\x50\x7e\x80\xd0\x57\x50\xb5\xf0\xb4\x04\ \x08\xf8\x9c\xf3\xc8\x54\xe5\xb8\xe0\x26\x53\x4b\x74\xc1\x03\x2c\ \xdc\x85\x29\x2a\x55\xa2\x99\x68\x22\x99\x28\xae\xb8\xe2\x36\xdb\ \xf0\x00\xe3\xa1\xfe\xb0\xce\xb4\x84\x9c\x1a\xd4\x69\xd2\x10\x89\ \xb0\x15\x81\x49\x89\xdc\x90\x48\x22\x43\x48\x51\x4e\xa0\x1a\xe5\ \x46\x8b\x5e\xb1\x96\xf5\x9c\x2e\xf8\xd4\x32\x94\x4f\x42\x45\x0a\ \x42\x0b\xf3\x4c\xf5\xc8\x39\xe7\xf0\xd0\x21\x65\x19\x9c\x03\xe6\ \xa8\xe0\x4e\x35\x26\x68\x68\x72\xc7\x99\xaa\xa4\x85\xc1\x43\x06\ \x31\x26\x9b\xac\x6b\x71\xc9\x76\x67\x9f\x1f\xe0\x26\xc5\x7f\x7a\ \xc9\x54\x8b\x8f\x81\xfe\xa8\x81\x14\x2d\x0c\x81\x4f\x1d\x82\x75\ \xa9\x9a\x4e\x47\x2e\x55\x07\x83\xf2\x50\x39\xf0\x12\x85\x31\x37\ \xad\x0b\xdb\xd8\xa3\xc2\xb5\xdb\xc0\xb2\xcd\x39\x20\x74\xd9\x29\ \x0f\xc5\x84\x1a\xee\xc8\x56\x9d\xdb\x19\xa9\x22\x6c\x63\x0c\xab\ \xad\x76\xe1\x6e\xac\x72\xee\x87\xe3\x10\xb8\xce\x07\xd2\xbc\x09\ \xd6\xf2\x51\x5c\x74\xce\x56\x92\x47\xff\x09\x56\x58\x82\x85\x3d\ \x88\x96\x60\x4c\x65\x21\x8f\x0b\x2d\xb4\x20\x4f\x0b\xf8\xf4\x94\ \x45\x95\xd0\xb9\x50\x04\x2c\xd7\x52\x52\x0f\x0f\xd8\x9e\xd3\x85\ \x73\x46\x9c\xb3\x9d\xc8\x24\x97\x2d\x55\x89\xe0\x7d\x0b\xde\x36\ \xc5\xa0\xe9\x85\xab\x2f\xc3\x39\xab\x40\x73\x65\xb4\x5b\x47\xb0\ \xe1\x95\x08\xfe\xd1\xf8\xcc\x57\xc4\x23\x1a\x68\xe0\xce\x6c\x33\ \xd7\x82\x8f\xc0\x75\xf0\xc9\x2c\xcd\x43\x10\x2c\xb4\xc1\xc5\x11\ \x0c\x79\x4d\x86\xcb\x43\xb3\x0b\x0f\x3b\x0b\x5d\xd3\x94\x14\x91\ \x2d\xe6\x17\x8a\x5d\x4f\xc7\x35\x65\xe0\x85\xd9\xa8\x5b\x95\xe6\ \xc9\x67\x9b\xeb\x85\x9a\x3c\x18\xd1\x6e\xdc\xef\xc5\xb7\x1f\x7f\ \xf3\x79\xf4\xf3\xbc\xf9\xe6\xa4\x73\xbc\x40\x96\x73\x97\x74\x39\ \xe6\xb8\x91\x6d\xf3\xdc\x7b\x78\xe3\x9c\x26\xc8\x87\xf3\x14\x66\ \x51\x4b\x74\x43\xb4\x00\x82\x62\x20\xf8\x01\x1d\x18\xf8\xd4\xe3\ \x02\x9b\x2e\x6c\xcd\x03\x0f\xd0\xd4\x63\x84\x11\xf5\x6c\x97\xfa\ \xfa\x67\xbe\xbe\x3a\x9a\xe2\xa6\x2c\x9e\x17\xe7\x3c\xb3\x29\xed\ \x34\xae\x15\xaf\x6c\xfc\x07\xbe\x91\x7f\x78\x01\x50\x71\x82\xb5\ \x11\x8c\x10\xce\x23\x21\x41\x60\x5b\x6e\x96\x23\x9a\xe9\xc2\x70\ \xba\x48\x18\x60\x9e\x27\xab\x25\x58\xa8\x05\x8d\x32\x9c\xc4\x98\ \x03\x06\x17\x84\x6f\x7c\x1e\x6c\xc1\xd6\xbc\xc5\xbe\x12\xaa\x61\ \x45\xef\x2b\x97\xeb\xda\xb6\x99\x62\xd4\xcf\x08\x57\x98\x1d\xfe\ \xd0\x32\xb7\x7f\x60\x84\x4e\x38\x04\x92\x0e\x8b\xd0\x07\x3f\xc5\ \x45\x0a\xfe\x04\x7a\x5e\xdf\x06\x05\x17\x1e\x16\xaf\x87\x3e\x2c\ \xe0\xcd\x0e\x60\x44\x04\x1e\x40\x0f\x43\x30\x14\x4d\x04\x03\xbd\ \xe8\xd5\x81\x39\xcd\x6a\x14\x08\x4e\x80\x0f\x30\x34\x4d\x84\x4c\ \x6b\x1a\xfa\x3e\x45\xb6\x12\xa2\x0e\x45\x27\x22\x13\x78\x8a\xc1\ \xc6\x32\x15\x83\x55\x2e\xcc\xc0\xfd\x66\x18\x27\x81\xfc\x88\x00\ \x3a\x7c\x84\x3d\xf4\x78\xa9\x47\x40\xb1\x16\x7a\x78\x84\x3b\x7a\ \xc8\x27\x3f\xc9\x47\x0a\xb3\x39\x22\xcd\x86\x58\x9b\x5a\x05\x0e\ \x38\x7d\x98\x07\x5c\x6e\xa4\x92\x2a\x52\xd0\x92\x10\xbb\xc2\x15\ \xaf\x48\xa9\xcd\x85\xef\x7b\x4c\x33\x02\x18\xea\x01\x0d\xb1\x95\ \xd1\x8c\xa8\x2b\x53\xa8\xcc\x95\x95\x62\xc0\x42\x3c\x22\xe8\x80\ \xc6\x8e\xf0\x3a\xd2\xf0\xa0\x0d\x73\xa4\x63\x5a\x04\xf2\x08\x02\ \xa8\x81\x00\x22\xb0\x07\x01\x2e\xa6\x47\x15\xd8\x63\x18\x34\xc3\ \x0f\xe0\x0a\xb7\x33\xc2\x19\x51\x3e\x7d\xa0\x45\x0f\x3f\x02\x17\ \x3e\x6e\x44\x81\x92\x9c\x47\x11\xe6\x21\x30\x29\x36\xe5\x26\x41\ \x81\x14\x08\xae\xe8\x87\xe8\x8c\x8f\x6b\x3c\x70\x81\x11\x40\x70\ \x85\x16\x1c\xe1\x94\xa8\x4c\x9d\xb9\xc4\x05\x1a\xd2\xb4\xad\x03\ \xa4\xfe\x39\x02\xdb\x48\xb3\x4f\xaf\xe9\x92\x2c\x35\xec\x65\x1e\ \x75\x78\x47\x35\xfc\x0b\x81\x71\x79\x44\x11\xee\x85\x1f\x40\xfd\ \x4f\x9a\x77\xea\x48\x8e\x4a\xf2\x37\xa9\x08\x4a\x81\x1f\x41\x64\ \x22\x8b\x54\x96\xc2\x40\xa6\x0e\x3c\x61\x4e\xd3\xa4\xc3\x03\x4a\ \xa4\xb3\x1e\xf5\x78\xc2\x1a\xa8\xf0\xad\x78\xa2\xb2\x3c\xe6\x52\ \x83\x89\xca\x75\x9e\x59\x7a\x81\x3b\xa4\x71\xd9\x3f\x99\xe2\x9a\ \x61\xf5\x4c\x23\x1a\x90\x64\x11\x86\x95\xc8\x69\xce\x46\x90\x24\ \xf9\x9b\x1e\x2f\x9a\x23\x5a\x74\x64\x57\x77\xa2\xd9\xdf\xe8\x34\ \x28\x9b\xdd\x47\x0f\xda\x9c\x59\xb3\xbc\x39\x93\x1b\xf4\x09\x73\ \x21\x75\xda\x48\xeb\x21\xc6\x7a\x50\xe1\x1c\x37\x75\xa9\x5a\xc5\ \xf5\x19\xb2\x89\xa6\x44\xf6\x14\xd1\x09\xb7\x71\x8f\xc9\xfd\x13\ \x5e\x37\xb2\xcb\x42\x11\x4a\x38\xc6\xe1\x27\x5e\xb3\x29\x87\x30\ \xcb\x51\x17\x7b\xd1\xc2\xa9\x3f\x3b\x5c\x8f\x7c\x76\x17\xd8\x30\ \x90\x9a\x55\x95\x87\x25\x29\x84\x0f\x17\x00\x8c\x05\x9a\xf4\xe2\ \x17\xd9\x29\x94\x7a\xc0\x62\xad\xa0\x6d\x9d\x68\x48\x05\x9a\x36\ \xbe\x8e\x5c\xe0\xe1\x41\x2e\xff\x59\xc3\xb9\xdc\x07\x81\x77\xf1\ \xfe\x53\x11\x67\xf6\x9f\x24\xe2\x08\x24\x81\xfd\x91\xa0\x04\x16\ \xac\xa8\x26\xe2\x24\xf3\x89\xc0\x7d\x4a\xb2\x2b\x68\xce\x47\x9b\ \x3e\xfb\x8f\xc1\x96\x50\x0b\xe9\x60\x8e\x05\x94\xd2\x2c\x0c\x6f\ \x02\x02\x12\x86\xf6\xba\xa3\x8d\xa9\x1a\xdf\x3a\xa6\x6d\x3c\xa3\ \x0b\xab\xa5\x23\xad\x72\xf3\x16\x45\x22\x72\x50\xff\xd1\x45\x32\ \xab\xfa\x91\x03\x58\xf3\x3f\x1f\x88\x2d\x8f\x72\x14\x5f\xd8\xc0\ \x26\xbe\x39\x72\x81\x6c\x0b\x78\x97\x66\xc9\xea\x06\x2c\xf8\xa2\ \xf5\xa0\x0b\x02\xee\xf5\xe4\x0a\xf5\xb8\xcc\x75\x17\xfc\x99\xb6\ \x8e\xf6\x4c\xf0\x3c\x21\x69\xda\xb4\xd3\x96\xc4\x4c\x89\x8f\x34\ \x2e\x6d\x0a\xa7\x5e\x3f\xf5\xc1\x00\x43\x70\x44\xbd\x1e\x21\x02\ \xc0\x45\x14\x2f\x3c\xba\x6f\x7f\x7a\x64\x12\xb6\xbc\x56\x9a\x52\ \x78\x06\x22\x47\x72\x2c\x83\x65\x21\x3a\x64\xed\x09\x81\xaf\x00\ \x82\x27\xb4\x94\xc1\xa0\xe5\xae\xc8\x54\xd8\x60\xd5\x8d\xae\xc2\ \x35\x04\x89\x7e\x00\x95\x61\x6a\x02\x96\x66\x85\x34\x00\x12\xfd\ \x5a\x9b\x26\x4a\x54\x77\xf3\xf9\xc0\x61\x59\x5c\xdf\x08\x6c\xc4\ \xbe\xb1\xd9\x46\x46\x9e\x51\x0b\x8f\x75\x0f\x73\x3e\x59\x02\xfe\ \x8f\xeb\xf1\x63\x20\x07\xb9\x03\x1d\x60\xe1\x67\x56\x85\xc2\x08\ \x6f\xc9\xae\xef\x5a\xcb\x5b\xe6\x24\x50\xc0\xdd\x05\xb7\x0a\x2d\ \xc2\x10\x3a\xec\x27\xc6\x39\xb0\x16\xba\xf8\xeb\x35\x33\x7a\x27\ \xbc\xd0\x22\x11\x4e\xfd\x40\x71\xe3\x1b\x81\xb9\x14\x97\xb8\xfb\ \xa1\x93\x06\x22\x50\x8f\x66\xf9\xa5\x7b\x64\xfd\x89\x4d\x8c\x00\ \x2a\x70\xa9\x61\x1b\x19\xb8\x50\x9b\xdd\x9c\x19\x99\x86\x87\x8d\ \xf8\x7c\x63\xb6\xc4\xc6\x3a\xab\xdc\xf9\xae\x7a\xb6\x19\xa0\x02\ \xd5\x44\x45\xff\x31\x99\x52\xf6\x70\xd0\xbc\xea\x64\x17\xb3\x37\ \x9a\x43\x40\xec\xae\x28\x2d\xdc\x08\xec\x4a\x9a\xce\x8e\x80\x06\ \x08\x40\x6d\x3c\xfa\xb1\x05\xca\x81\x0e\x52\x7c\xc2\x09\x30\x84\ \xc8\xd4\xaa\xad\xc9\x12\x78\x00\x4f\x56\x63\x46\xa6\x6f\x64\xdb\ \x2c\xdb\xb1\x8c\x76\x88\x8d\x6d\x60\x2a\x8f\x3d\xce\x21\x1c\xda\ \xb5\xf6\xaa\x81\xab\xd3\x35\xfd\xca\x96\x1e\x3e\xd0\xc3\x52\x96\ \xb2\x3c\x6a\x21\x98\x3e\x35\xf3\x78\x3c\xec\x77\xb2\x59\xdc\xe2\ \x3e\x5c\x5a\x0a\x11\x78\x86\xb3\xdb\x31\x6d\x6a\x87\x4a\xa1\x19\ \x80\x0c\x64\x38\x1b\x43\x10\x18\x81\xa5\xe1\xda\x86\x11\xfe\x5c\ \x92\x81\x55\x9b\x5b\x33\x70\x7e\x25\xdb\x36\xb6\x0d\x2a\xb4\xe3\ \x05\xe7\x30\x46\xc8\xce\x16\xcc\xb3\x15\x81\x05\xe2\xe5\x65\x5e\ \x1d\xba\x68\xbf\x4a\xb2\x87\x75\x18\x82\x3c\x8a\x37\x68\x3e\xf5\ \x29\x99\xb4\xa9\xf2\x7d\x3a\x82\x9b\x65\xb3\x38\xe2\xce\x86\x38\ \xc5\x6b\x55\x8e\x6a\x5b\x8b\x65\xe7\x18\x1d\x38\x3d\xfe\x6d\xef\ \x14\xe3\x19\xf8\xb8\x07\x0f\x68\x40\x85\x5c\x90\xdc\xe4\x27\x2f\ \xd9\xb9\xd2\xbd\x0d\x7d\x9e\xa3\x1d\xd7\xa0\x35\x2b\x6b\x6e\x4c\ \x8e\xcd\xd0\x35\x2a\x20\x40\x9d\x7e\xb4\x47\x7d\x1b\x71\xbd\x1b\ \x19\x78\x1d\x82\x1e\xf0\xda\x16\x3a\x47\x24\x81\x4b\x02\x73\xb4\ \x9f\xb9\x98\x44\xcb\x92\x96\x34\xc4\xa5\x8d\xc3\xaa\x57\xbd\x97\ \xbf\xd4\x23\x30\x1f\xb1\x2e\xf0\x5e\xa1\x0b\xd6\xed\x8e\xc8\xc1\ \x99\x9d\x36\x80\xe0\xec\x69\x17\x93\xb8\x5c\x48\x83\x8c\x6d\x03\ \xe6\x3c\x68\x87\x34\xb6\xe1\x36\xac\x95\x47\x05\xf3\x08\xef\x9b\ \x6a\x98\xf7\x3a\x3d\xe2\x97\x7b\xec\xfb\x3c\xa6\x1c\xc9\x8d\x34\ \xee\x06\x75\x20\x74\x32\xb3\x39\x28\x03\xd4\xeb\x88\x08\x74\xed\ \x6e\x22\x4d\xdc\x08\xe0\xb0\xda\x9a\xd6\x34\xab\x36\xfe\x4f\xfb\ \x56\xb5\xc0\x08\x2d\x50\x9f\x77\xa4\xb1\xa9\x2e\x3c\x41\xa7\x35\ \x79\x42\xb9\x53\x9f\x99\x94\x69\x8c\xed\x2f\x60\x99\x2b\xdd\xa7\ \x47\xb9\xba\xa0\xde\x79\xfe\xc7\x67\x74\x28\xcc\x2c\xa9\xa1\xef\ \x46\x64\x39\x43\xa0\x07\x4f\x14\x41\x5e\xe5\x08\x43\xf0\x1b\xda\ \x24\x1b\x3d\xe7\x61\xc4\x57\x3c\x2b\x46\x0b\xf7\x70\x58\xb4\x00\ \x71\xf9\x86\x7d\x75\x52\x0e\xee\x36\x0c\xdb\x00\x24\x1a\x63\x0f\ \x5e\x00\x0b\xd9\x92\x3e\x65\x24\x02\x54\x00\x02\x5d\x60\x04\xf1\ \x87\x4b\x4e\x21\x07\xe8\x37\x6e\xeb\xc7\x7e\x9a\x51\x4b\xf6\xb4\ \x72\xae\xb4\x0d\x21\x88\x26\x1f\x28\x22\xee\xc0\x25\xee\x52\x5d\ \xae\xc1\x1d\x7b\x24\x1b\x40\x22\x4c\x25\x66\x0f\x41\x05\x74\xea\ \x65\x7c\x54\x84\x7c\x7e\xe2\x0e\xf6\xb0\x47\x1b\x01\x62\xc5\x03\ \x62\x86\x96\x4c\x8e\x46\x81\x4e\x25\x71\x73\x32\x2c\xd4\x16\x28\ \x9a\xe6\x6e\xae\xc7\x32\x69\x13\x82\x69\x45\x15\xe7\xc0\x1e\x6a\ \xf6\x04\x4f\xe0\x17\x57\x00\x43\x30\xd1\x06\x68\x27\x83\x6a\x87\ \x22\xb0\x90\x36\xe2\x01\x0b\x2b\x62\x0f\x22\xa0\x87\xee\x50\x4c\ \x25\xe6\x02\xb1\xe2\x29\x51\xe1\x1a\x40\x42\x00\xfe\x1a\x60\x54\ \x80\x33\x2c\x82\x24\x2f\x8d\x93\x24\x83\x46\x30\x05\x62\x1c\x15\ \x85\x84\x4d\x44\x09\x34\xe3\x1f\x50\x66\x48\x79\x42\x0b\xf3\x05\ \x66\xc2\x55\x75\x9b\x81\x47\xc3\xb2\x0d\x45\xd0\x0e\xdb\x50\x0e\ \xad\x62\x29\xb5\x76\x15\xd7\xe0\x26\xd9\xb1\x1e\x40\x91\x0b\xb3\ \xc3\x09\x5d\x47\x87\xa3\x82\x46\x7a\x38\x3f\x6f\x04\x0b\x7a\x78\ \x87\x7d\x48\x62\x16\xb3\x0d\x5c\xf5\x1e\x5d\xb0\x0d\x53\x51\x23\ \x24\xf1\x88\x88\x96\x23\xda\x24\x48\xf6\x20\x68\x04\x27\x18\x8e\ \xe3\x12\x37\x30\x04\xd5\xb2\x47\x83\x83\x5e\xe9\x55\x48\xf5\xe2\ \x2f\xf7\x12\x5f\x72\x71\x69\xd6\xf7\x7b\x79\x77\x88\xaa\xc8\x03\ \x1a\xc0\x32\x64\xa8\x19\x2a\xd0\x01\xaf\xd8\x12\xd9\xf1\x04\x9b\ \xc2\x09\x57\x30\x16\x57\x40\x05\x31\x88\x8b\xe7\x96\x26\x77\xe8\ \x3e\x1a\x43\x7b\x7c\xb8\x83\xc6\x74\x0f\x6f\x82\x0f\x9f\x42\x15\ \xae\xe1\x1f\x92\xa8\x0f\x0e\x89\x68\x1e\x76\x54\x4c\x64\x00\x00\ \xe2\x90\x31\xe1\x3c\xd7\x58\x4d\xda\x08\x45\x03\x67\x74\x8a\xa5\ \x54\x0a\x85\x1b\x15\x57\x27\x14\x67\x8a\x1d\xf8\x85\xd8\x77\x8a\ \xa5\xc1\x8e\x38\xa8\x36\x34\xf0\x02\xd7\xd0\xfe\x06\x4f\x60\x04\ \x62\xf1\x79\x6c\x28\x8b\x2c\x91\x82\x61\x61\x13\x5d\x70\x04\xfc\ \x58\x36\x68\xf4\x56\xe5\x42\x73\x39\x78\x2d\xba\x77\x16\xf5\x70\ \x4a\xae\x81\x2f\x0e\xe9\x90\xcf\x83\x7c\xcc\x32\x74\x45\xf0\x87\ \x7d\xa0\x0b\xce\x73\x95\xc4\x36\x0f\x3b\x04\x74\x59\xe0\x55\xd3\ \x93\x44\xe5\xe0\x0e\xb5\x72\x29\xa4\x18\x38\xfe\xa3\x11\x62\xa6\ \x43\xe7\x10\x01\xa8\xb8\x8e\xa8\xb8\x4f\x60\xe2\x05\xcb\x90\x01\ \x62\xc1\x09\x5d\x20\x07\x30\x64\x8f\x46\x00\x16\xe0\xa5\x97\x4f\ \x10\x93\x2e\x28\x07\xef\xf4\x93\x24\xc3\x19\xb7\x57\x32\xab\x63\ \x0f\xdb\x80\x0f\xed\x01\x02\xe4\x76\x15\x4b\x09\x65\x37\x20\x13\ \x94\x39\x8d\xc6\x81\x1f\x83\xa3\x5c\x94\x39\x45\x1e\xa6\x4d\x92\ \xd4\x02\x91\xf2\x1c\x9a\xd3\x37\xb4\xa1\x01\x58\x82\x47\x0c\xb8\ \x8e\x6c\x52\x0f\xb4\xc0\x03\x1b\xc1\x03\x7a\xc0\x8e\xed\x30\x3e\ \xac\x72\x5a\x22\xf0\x02\xcf\x90\x97\x14\x72\x05\x31\xc4\x12\xb9\ \x60\x04\xe7\xc7\x09\x6a\x46\x04\x6d\xb0\x0c\xcb\xd0\x06\x78\xf9\ \x02\xfb\x48\x98\x9a\xf1\x60\x6d\x55\x15\x68\xa4\x02\x22\x50\x04\ \x47\x89\x13\x08\x69\x72\xae\x01\x34\xff\xfe\x41\x99\xc8\x57\x0b\ \x8e\xd3\x8c\x71\x31\x0f\x03\x53\x66\x96\x84\x7c\xe3\x34\x3d\x0d\ \x32\x04\xa4\xa3\x39\x04\x93\x05\x43\x50\x1b\x18\xa1\x43\x7a\x00\ \x9b\xae\x29\x05\xf5\x30\x04\xf7\xe9\x3d\x7d\xa0\x8e\xd4\xb6\x31\ \xe3\xf3\x02\xaf\x23\x15\xc5\xc0\x03\x60\x21\x07\xa4\xc3\x09\xc2\ \x29\x8f\x5d\x00\x5e\x30\xf1\x86\x78\xc9\x1c\x4f\x70\x3a\xcc\xb9\ \x3e\x6e\xb5\x5d\x8f\x00\x06\x7f\x71\x05\xcf\x70\x29\xdd\x91\x9d\ \x40\x63\x95\xcf\x63\x70\x41\x63\x38\x03\xf8\x73\x8f\x41\x30\x4b\ \xb1\x17\xcc\xd5\x2c\x59\x80\x30\x89\xb3\xa2\x7a\x10\x96\x46\x25\ \x1b\x3c\xd0\x07\xf5\xb0\x9f\x1e\x51\xa3\x2e\x40\x0b\x4d\xf3\x0c\ \xef\xb6\x92\x70\xb4\x4a\xc5\xf0\x02\xd2\x40\x03\x5c\x80\x9c\x28\ \x18\x43\x4b\x60\x8f\xbd\xf9\x12\x4c\x9a\x93\x9f\x35\xa1\x26\x94\ \x42\x59\x02\x0b\x3c\xd0\x02\x88\x92\x01\x1a\x20\xa1\xdf\x31\x4c\ \x0a\x29\x10\xb2\xd5\x43\x93\x79\x03\x91\x04\x45\x8d\x53\x0b\x43\ \xf7\x73\xfa\x35\x9e\x89\x83\x34\x38\x01\x31\x3d\xa1\x13\x6a\x76\ \x03\x57\xd0\x27\x45\x84\x38\x22\x44\x33\x01\xc3\x20\x7a\x70\x0e\ \x9e\x93\x9e\x43\x90\x01\xe9\xf1\x96\xfe\xaa\x72\x4a\x31\xa5\x0c\ \xcb\xf0\x04\x72\xc0\x86\x8a\x6a\x04\x9e\x17\x43\xc2\x99\xa0\x2c\ \x01\x02\x3e\x29\xa5\x14\x5a\x4f\x01\x2a\x9d\x8f\xe0\x05\xe5\x80\ \xa5\x4d\x01\x02\x1a\xd0\x19\x04\xc0\x87\x67\xe2\x4b\x55\x91\x9d\ \x03\x68\xa6\x87\xc3\x16\xc3\x37\x68\x02\xf3\x11\xd4\x21\x74\xcd\ \x02\x02\x8c\x43\x70\x4c\x21\xa7\x83\xe1\x2c\xbc\x75\xa3\xca\xc5\ \x27\x9d\x14\x30\x9d\xe3\x0e\xe5\xf0\xa7\xe9\x94\x6a\x19\xb0\x35\ \xe2\x71\x98\xe7\xb6\x02\x34\x40\x03\x70\x66\xa4\xd2\xf0\x02\xcb\ \x70\x0d\x8a\xba\xa8\x0c\xca\x09\x46\x50\xa9\x96\xca\x3e\x41\x49\ \x15\xf6\xc0\x03\xdf\x14\x01\x53\x41\x00\xac\x52\x0e\x5e\x40\x00\ \x37\x45\x36\xf0\x52\x40\xce\x78\x40\x48\xc4\x2c\x08\x38\x80\xd4\ \x21\x80\xb3\xd1\x4d\x12\x54\x13\x37\xe0\x28\x57\xa0\x0f\x9c\x40\ \xa7\x90\xe1\x9d\x86\xd3\x2c\xfb\x6a\x13\x57\xc4\x20\x3c\xd0\x81\ \x1b\x22\x05\xe7\x30\x0f\xe3\x93\x01\x8b\x7a\xb0\xcb\x49\x15\x63\ \x40\x2a\x0e\xb6\x19\x70\x76\x04\xc8\xf9\x71\x73\xb8\xad\xa6\x96\ \x22\x54\xf1\x08\x23\x07\x14\x3c\x86\x0f\x82\x8a\x8c\x79\xc7\x32\ \xb5\x04\x4c\xb5\xe6\x1a\x16\x63\xfe\x89\x5a\x69\x9a\x8f\xc0\x44\ \x92\x14\x34\x7c\xd0\x27\xc2\x3a\x33\x7f\x35\x28\x50\xe3\x9d\x36\ \xa1\x0f\x53\x03\x19\x93\xa9\x20\x01\x9b\x05\xc2\x19\xb0\x65\xc6\ \x12\x53\x13\x1d\x9d\x73\x0e\x7a\xe0\x41\xae\x39\x82\xf5\xf0\x0c\ \x5c\xc0\xa5\xf1\xd4\x4a\x11\xcb\xb1\xa6\x56\x46\x6a\x70\xa5\x5d\ \xc0\x1c\xe9\xe3\x05\x7c\x98\x25\x1d\xc8\x2a\x6f\xe9\x4b\xe8\x0a\ \x4c\x5f\xaa\x7f\xd6\xf2\x37\x58\x72\x31\x71\xe1\x0e\x40\x84\xb4\ \x7d\x00\x24\x92\xe4\x5c\x0d\x82\x55\x39\x02\x9a\x6a\xf6\x95\xc7\ \x12\x23\xcc\xc5\x27\xec\x71\x05\x90\x71\x8f\x35\x71\x05\x42\xe1\ \x98\x4c\xbb\x06\xd0\xc1\x35\x9e\xc3\x03\xf1\x77\x86\x58\x1b\xb9\ \xde\x91\x32\xad\x42\x7b\x56\x41\xae\xe7\x84\x8a\x67\x7b\xae\x90\ \x8b\x77\x53\x51\x40\x1a\x20\x15\x31\x0b\x24\x7a\xd0\x17\x37\x80\ \x0f\x70\x91\x3c\x37\xc3\x38\xb4\x41\x09\x4d\xab\x12\x36\xf1\x95\ \xdb\x22\xb8\x90\x01\x4e\xce\xc2\x4e\x3c\x86\x59\x3b\x71\x21\x94\ \x60\x3d\xd3\x02\x0d\xe3\x63\x4a\x92\x3b\xbc\x23\x12\x4c\x19\x83\ \x19\xe4\x3a\x0c\xb3\xc9\x32\x84\x5a\x1e\xd9\xc9\x77\x50\x94\x68\ \x6c\x0b\x24\x4f\xd4\x2c\x7d\xfe\x93\x3c\x9f\x54\x04\xfa\x65\x5b\ \x37\xda\x07\x1c\xa5\x66\x02\xab\x0f\x57\xc0\xa3\x20\xe0\xb7\x94\ \xc2\x9b\xdd\x63\x3d\x2d\x81\x90\x6c\xc2\x41\xe6\x74\x87\xc4\x1b\ \xbf\xed\xc7\x72\xe7\xb6\x2a\xcc\xcb\x8e\x5c\xea\x1a\xdd\x09\x74\ \xfa\xd0\x27\x43\x25\x85\x83\xf2\x73\xd5\xc3\x89\xa9\x2b\x1b\xf7\ \x99\xa7\x9b\x42\xbb\x82\x8b\x52\xb3\xdb\xb5\x6b\x96\x75\xa4\xc3\ \x07\x2c\x40\x4a\xf5\xb0\x06\xec\xd4\x63\xa1\x27\xbf\x1a\x7c\x36\ \xf4\x73\xb0\xfd\x28\x2e\xe8\x8a\x83\xe8\x2a\x32\xae\xf1\x3c\x81\ \x31\x99\x0e\xa9\x0b\x31\x0a\x24\x1b\xf1\x23\x1b\x01\x35\x34\x53\ \x52\x31\x8a\x25\x80\xb3\xa3\x2d\x20\x05\x57\xea\x1c\x9d\x94\x01\ \x3c\x40\x0b\xe5\xcb\x07\x9c\x00\x02\xb9\x20\xb8\xe3\xa3\x75\x37\ \xf1\x86\xe8\x73\x7e\xbc\x99\x60\xaa\x13\x82\xad\x47\x03\xc5\xa0\ \x0c\xe4\xb1\xc1\xe6\xb6\x9c\x94\x6b\xb2\xad\x23\x15\x23\xdc\xa5\ \xa7\x75\xaa\x02\xd1\x12\x4d\x19\xa2\x81\x24\x85\x53\x59\xc3\x90\ \xf1\x27\x45\x50\x0f\x15\x25\xba\x9d\xd6\x02\xb3\xc1\x03\x8e\x62\ \x13\xf6\x18\x76\xc7\x8a\x0f\xf7\xa8\x66\x6a\x96\x82\x45\xbc\xa0\ \x29\xd8\xc7\x4f\x60\x3e\xfe\x3c\x26\x87\xab\xf7\x92\xc7\x59\x9c\ \xc6\x59\xa4\x52\x3c\x15\x63\xd0\x01\x63\x70\xb5\xfc\x38\x4f\xf1\ \xa4\x5d\x14\x7b\x36\xdf\xa1\x87\x55\xe1\x4b\xbf\x64\xaa\x67\xa3\ \xc9\x5e\xfc\x0f\x60\x9c\x13\xfd\x1b\x48\x4b\xa5\x43\xf3\x70\x2c\ \x43\xf0\x87\x45\xd0\x02\x57\x62\x2d\x02\xa3\xca\xb0\x90\xc6\x19\ \xb7\xa4\xe0\x8b\x0f\x9e\x97\x0b\xec\xa4\x97\x6c\xc2\x86\xc0\x39\ \x3e\x33\x09\x9c\xd4\x0a\x06\x5d\x00\x0d\x37\x15\x67\x84\x1c\x93\ \x4f\xd0\x06\xc5\xf9\x02\xca\xcc\x05\xcd\xaa\x0c\xca\x00\xc5\x52\ \x3c\xb1\xc3\x8b\x2a\x8e\x9c\x8b\xad\xa8\xa9\x77\x48\x26\xe6\x68\ \x2d\xa4\x91\xa9\x23\x52\xc2\x2f\xd1\xbf\x04\x54\x84\x2c\x8c\xb3\ \x8f\x54\x0f\xc2\x72\x36\x1a\x80\x39\xd3\x83\xc3\x20\xd1\x69\x4b\ \xca\x07\xbc\x69\x13\x9f\xb7\x4e\x3c\x96\x01\xd7\xc0\xcb\x6b\x50\ \x0f\xd7\x00\x0d\x54\xc0\x03\xd7\xf0\xcf\xd0\xc0\x86\x6d\x40\x05\ \xca\x6c\x9c\xd7\x10\x93\xc8\x7c\x0d\xca\xdc\xd0\x5c\x20\xad\x44\ \x2a\x0d\xcc\x5c\x0c\x1d\xc0\x0d\x8d\x4c\x1e\xd5\x5c\xc5\x71\x06\ \x4b\x19\x4d\x22\xdc\x05\x1e\xdd\x2c\x1a\xdd\x1c\x15\x12\xa6\x87\ \x1b\x9b\x8c\x5f\xec\xfe\x12\x29\xec\x1f\x43\x15\x3c\x7b\x55\xa3\ \xf3\xc9\x03\x38\x8c\x48\x7d\xa4\x01\xf0\xdc\x4e\x5b\xd3\x2a\x76\ \xcc\x12\xf3\x1c\xc4\xe7\x73\x3e\x0f\x4b\x05\xff\xcc\x86\xfe\x2c\ \xd4\xe7\xf0\x02\x54\xa0\xd0\xb7\x24\x93\x0b\xdd\x06\x31\xb9\x0c\ \xcb\xac\xcc\x61\x20\x0d\xc6\x49\xa4\xcc\x0c\xcd\x14\xdd\x01\xcc\ \x4a\xd1\x1d\xcd\x60\x6a\x70\x83\xfa\x24\x67\x66\x04\x1a\x27\xa4\ \x42\x6a\x82\xb2\xab\x72\xcd\xdf\xfc\xc5\x61\x1c\x18\x7d\xa2\x33\ \x8a\xe7\x11\x37\x1a\xd3\xfb\x89\xc3\x45\x70\x92\x8a\xb9\x2d\xf2\ \x8c\x90\x8f\xb0\x0d\xa3\x73\x8f\x3c\xc6\x9b\x1e\x07\x9c\x7f\x7c\ \x4b\x66\xd5\xcf\x4f\x00\xbc\x54\xa0\x4f\x47\x80\xd4\x07\x7d\x93\ \xc7\x7c\x0d\x55\x1d\xd5\x0d\x1d\xad\x12\x0d\xc5\x6c\xa4\x0c\x14\ \x7d\xd1\x46\x8a\xd9\x18\x4d\x98\x9c\xf1\x46\x47\x20\x36\x62\x6d\ \x46\x6e\xc3\x3a\xe7\xb2\x0d\xb3\x07\x6f\xe0\xd1\xd1\xae\xd1\x94\ \x4e\xe9\xd6\x06\x37\x24\x86\xd3\x9a\x32\x4d\x9f\x31\xcd\x35\xeb\ \x08\x76\x31\x82\xcb\x19\xc3\x26\x60\x30\xd8\x3f\x6d\x04\x72\x50\ \x0f\x6d\x70\x4b\x8c\xca\x03\xc7\x1c\xd9\x2f\x70\x04\xd1\x0a\xd5\ \x0f\x1d\x93\x09\xfe\x3d\xd9\x0d\x3d\xd9\xd1\xca\xcc\xce\x2c\xc5\ \x2b\xd0\x01\x52\xac\x06\x8d\x5c\x0c\x4f\xdc\xac\x98\xdd\xd5\x6a\ \x85\x6e\xdb\xd0\x7a\xae\x94\x26\x2f\xd5\xc5\xed\xd3\x2a\xf1\x47\ \xd2\xb9\x98\xb6\x46\x97\x2f\x0e\xf9\x2b\x14\x88\x0f\x89\x40\xb2\ \x11\x70\x0e\xeb\xc8\x2a\xfc\x4d\x9f\x0d\xfb\x35\x85\x8b\x3e\x62\ \x93\x2d\x6d\x90\x52\x02\x8d\xdc\xc8\x8c\xcc\x8a\xca\xa8\xd0\xb0\ \xd0\x50\x0d\xd5\x0d\x5d\xdd\x11\x7d\xd0\xd2\x6a\x9c\xd0\xfd\x02\ \x34\xe0\xcc\xc5\xb0\xdd\xdc\xc0\xdd\x15\xad\x02\x1f\x1e\xc5\x6c\ \xa4\x4f\x2f\xc0\x05\x33\xf7\xc8\xe8\xe6\x4a\x37\xa8\x31\xe4\x7d\ \x6e\x42\xc9\x4f\x6c\xb3\x7e\xce\x39\x8a\x69\x1b\x51\xc7\xf2\x68\ \xf8\x4d\x81\xf7\x30\x81\xcf\x70\xb0\x9b\x57\x62\xad\xb2\x2e\xa9\ \xe6\xc0\xa9\xc1\x9b\x5d\xc0\xc3\xcb\xd0\x72\xe4\xc3\x35\x6d\xd7\ \x72\x2f\x00\xd0\xcf\x40\xd0\x8b\xfa\x97\x92\x4d\x05\xd3\x2a\xe1\ \x2f\x10\x06\x27\x7e\xe2\x5c\xf0\xe5\x5f\x5e\xdd\x92\xbd\xcc\x57\ \x1d\xcd\x6a\x30\xe2\xdb\x0d\x67\x1b\x0d\xde\x5c\xa0\x4f\x50\xdc\ \x01\xa0\xdd\x4a\x6d\x87\x2d\x19\xf3\xe2\xe6\x41\x53\xc5\xd0\x0e\ \xb4\x14\x61\xfe\x22\x70\xb6\x7d\x9e\xc9\xd4\x86\xd2\xff\x40\x5e\ \xf1\x65\x2f\x26\xe1\x54\x3a\xd2\x0e\xe6\x08\x4c\xe5\x90\x2d\x19\ \x20\x31\x77\x4c\xcf\x82\x9d\x82\x46\x80\x0f\x8e\x4a\xdc\xd7\xc0\ \x36\xf8\xa4\xda\xd3\xda\x09\xd7\xe0\xe9\x0b\x3d\xe1\x50\xcd\xe5\ \x07\x8d\x05\x5e\x7e\xd5\xcd\xfa\xe5\x18\x0e\xdd\xd8\x2d\xc5\x1f\ \xae\xd5\x70\x96\xe6\x2b\x00\xde\xcd\x7a\xde\x50\xfc\xe6\x8d\xfc\ \x93\x59\xa1\x31\xf1\x77\x04\xf0\x8b\x4a\x2a\x34\x57\x38\x68\xa8\ \x29\x7b\xae\x7d\xde\x9f\xed\x20\xa1\x3d\x65\x17\xfc\x62\x2b\x16\ \xd8\x0e\xc3\x62\x2e\xd7\xf2\x0c\xf7\x80\xbb\xbc\x79\xed\x4c\x7a\ \xed\x86\xeb\x13\xe2\xd6\x05\x6d\x70\x04\xc5\xf0\xd0\xd7\x7d\xd0\ \x09\x8d\xcc\xa3\x0e\xd1\x60\x1e\x06\x5c\x80\xe1\x27\xde\xcc\xa9\ \x7e\xe1\xc6\x59\xe6\xce\x0c\xeb\x1f\x9e\xe6\x71\xa6\xd9\xb4\x2e\ \xde\x34\x70\x04\xe0\x4e\xd1\x8f\x1c\x67\x1a\xf3\x7e\x6a\x7d\x46\ \x22\x73\x42\x6f\x04\x4f\x7d\x9e\xf0\xd5\xc6\xa9\x14\x17\x2a\x3d\ \x45\x5e\x52\xd0\x85\xff\x12\xf1\x55\x67\xb6\xe4\xfa\x0c\xd6\x7e\ \xed\xcc\x71\x3e\x15\xfc\xc7\xc3\xcd\x9b\x2f\x91\x1d\x53\x5e\x9c\ \x5c\xb0\xfe\x0d\x5c\x80\x05\xab\x6e\xee\x17\xce\x05\x61\xb0\xe1\ \x46\xba\x15\xca\x7c\xd9\xa9\xfe\xd0\x59\xbe\x0c\x5f\x9e\xdd\xca\ \xe0\xe1\x6a\xfe\xe1\xf8\xfe\xcc\x98\x7d\xde\xce\xdd\xdc\x47\x00\ \x67\xb8\x88\x22\xb2\x34\x7f\x66\x62\xda\x72\x45\x1a\x6d\x86\x26\ \xc3\xf4\x4b\xa3\x48\xae\xed\x20\xe8\xb8\x21\x24\x10\xd7\x1f\x4e\ \xd5\x0e\xa1\x22\x02\x1a\xd0\x02\xec\x31\xc7\x66\x75\x0e\x6d\xc3\ \x87\x69\x62\x0f\x26\x02\x0b\x54\x30\x93\x0c\x0a\xc4\xd7\x9e\x0b\ \xc4\xc9\xf2\xc6\xa9\xee\x9d\x60\xc8\x11\xee\xe5\x34\x60\x0c\x46\ \x0a\xd1\x76\x0f\xe6\xd2\xfa\xd4\x1a\x8e\xf3\xf4\x5e\xd1\xdc\x1d\ \xc5\x1b\x7d\xeb\xe0\x2d\x0d\xd1\xca\xef\xb0\xb0\xdd\x76\x2e\x4f\ \x6f\x35\x53\xb2\x44\x53\x27\x1d\x26\x43\x39\x57\xc9\x8a\x15\xf0\ \x4d\x15\x5f\x28\xe8\x36\x53\x3c\x28\x91\x08\xf7\xd0\x07\xab\xf4\ \x0c\x63\x01\x02\xe9\x93\xf9\xad\xa6\x83\xd7\x30\x5d\x2d\x21\x9c\ \x77\xc9\x86\x36\xff\x92\x2a\xbf\x15\x2c\xbf\xe1\xcf\x1c\xe6\x56\ \xcd\xcc\x61\x6e\x9c\x86\xfc\xf7\x39\xaf\xd9\x2b\xa0\xf3\xb3\x0e\ \xfc\x6b\x4e\xeb\x6d\xce\xef\x50\x0c\x0b\x47\x60\x0b\x70\x4e\x87\ \xf3\xfe\x24\x53\xaf\x14\x4b\x03\x3f\x32\x69\x02\x1a\xaf\x37\xec\ \x93\x7c\x15\x68\x2b\x15\x4b\x89\x37\x79\xf3\x01\xf8\x5d\x0b\xb4\ \xc0\xa1\x04\xc0\x98\x2c\x61\x04\xed\x30\xf9\xd0\x69\x82\x33\xa9\ \xa4\x7e\x6b\x97\x4f\xb0\x0c\x84\xdc\x06\x73\x4f\xe6\xd8\xbd\xe1\ \x2d\x0f\xe6\x33\xff\xdc\xd3\xea\xe5\xce\x1c\xfc\x00\xb1\xa2\xc3\ \x0a\x81\x2b\x94\x29\x2b\xa6\x6c\x60\xc2\x62\x34\x1a\xd2\x38\x02\ \xb1\x58\xc4\x23\x47\x8a\xa9\xc0\x98\x51\xe3\x46\x8e\x1d\x3d\x7e\ \xec\xa8\x46\x84\x08\x58\x23\x45\xa8\xc1\xa8\x46\xa4\x4a\x90\x1e\ \xd5\x78\x81\xe5\x65\x64\xb1\x76\xe7\x8a\xa1\x6c\xd9\xf1\xd0\xbf\ \x7f\x43\x68\x7d\x90\x12\x21\xa8\x1e\x29\x1f\x68\x25\x4a\x14\x81\ \x00\x01\x1e\x4b\xf8\x70\xca\x00\x2b\x67\x4e\x11\xc5\xae\xb5\x31\ \x72\x85\x13\x9f\xa7\x5d\xe4\xb4\x69\xb3\x6c\xd9\xd5\x65\x2f\x5e\ \x70\xe1\x42\x43\xad\xda\xb4\x34\xda\xba\xe5\x62\xb6\x2c\x5a\x1a\ \x07\x0b\xae\x48\x78\x50\x2f\x42\x81\x0c\x1d\x3e\xac\x38\x51\xda\ \x39\x85\x63\x3a\x4c\x45\x9c\xf8\xa3\xc8\x0e\x22\x3a\x88\xf4\x52\ \x6c\x1b\xac\x98\x23\x71\x4e\x7d\x39\xd9\xcb\xe6\x6d\xc5\xbc\x28\ \xfe\xd6\xb8\xf3\x5f\xa2\x21\x40\x87\x0d\xd3\x90\x7a\x98\x14\x7c\ \x9c\xf0\xd1\xca\x70\x85\x4f\x97\x73\x22\x40\x83\x54\xd3\x01\xd6\ \x35\x23\x4b\x38\x2d\xf1\xbd\xa4\xcb\x13\xb1\x63\xcd\xa2\x0d\x03\ \xf7\x2d\x5b\xb4\xd2\xe4\x1e\xaf\xab\x6c\x05\xb7\x81\xca\xd6\x46\ \x67\xd8\xd7\xfa\x75\xb5\x15\xa5\xd1\xe8\xd0\xa1\x58\xb1\x0e\x63\ \x6e\x9f\x4f\xcc\x18\xd6\xb6\x23\xdb\x26\x53\xa6\x2c\x13\x27\xca\ \xcb\x1b\x61\x6e\x8b\x9c\x9f\xa3\xed\x90\xf5\x45\x0f\x49\x44\x0a\ \x3d\x86\x19\xf0\x91\xa5\x1e\xb9\x47\x1f\x3e\x80\xe3\xe3\x8a\x6d\ \xf8\x43\x6f\xb1\xdd\xb2\x72\x8a\xab\xe1\xc0\x2a\xeb\x2c\xb4\x90\ \x4b\x6b\xbb\x0d\x9d\x2b\xee\xb8\x0e\x09\x22\x68\x3b\xb5\xac\xb3\ \xab\x83\x83\x1e\xea\xce\x21\xb6\xc0\x53\x71\xbc\xf0\xea\x8b\xb0\ \x46\x8d\xd4\x18\x0f\x96\xf1\xaa\xea\x6c\xb2\x73\xd6\x33\xa9\x24\ \x1a\x53\x8a\xcc\x3d\xc9\x68\x1c\x29\xa4\xa5\x54\xc0\x49\xb4\x5a\ \x4c\x5b\x4d\x8a\x72\x08\x50\x81\x00\x5a\xb8\xe2\xea\x8a\x76\x86\ \xb4\x71\x23\x1c\xa9\xe8\xa2\xc2\x06\x2f\x44\xeb\xb8\xb3\xa0\x63\ \x4e\x1a\x69\xc6\x0a\xf1\xac\xe8\x0c\x32\x71\xad\xbd\x10\x5a\xfe\ \x71\x2d\xba\xdc\xfa\x8e\x3c\x65\x60\x81\xc8\xa1\x15\xb8\xec\xf2\ \x3c\xc8\xe6\x63\x52\xb7\xc9\x8a\x81\x0f\x26\x40\x45\x72\x0f\x3f\ \x08\x53\x5a\x74\xa9\x93\x44\x70\x72\x08\x29\x08\xec\xa3\x8f\x22\ \x1e\x11\xe1\x91\x2b\xb9\xe2\xe4\x1c\x40\x03\xbd\x51\x9a\xac\xb0\ \x5c\xe2\x8a\x27\xae\x11\xeb\x05\x69\xca\x7c\xa1\x2e\xb6\x5e\x05\ \x31\xc3\x0d\xf7\x92\x15\xae\xeb\xf6\xca\xeb\xa1\x0d\xb9\x50\xb3\ \xae\x86\x1a\xaa\x08\xbc\x51\x49\xed\x2f\x3d\xc7\x46\x2a\x09\x51\ \x99\x4e\xe2\x48\x0d\xf6\xdc\xdb\xec\xd8\x1b\x97\x44\x49\xb4\x1b\ \x12\x01\x4a\x8f\x4c\xa5\xd0\xa0\x9c\x61\x12\xc9\x92\x07\x6b\x91\ \xc5\xa8\x83\x36\x40\xa8\x90\x93\x2b\x86\x7b\x42\x43\x57\xb9\x40\ \x51\x19\x60\xd5\x34\x4b\xc3\x3b\x4d\xfc\x75\xdf\x39\xf3\x9a\xf5\ \x57\xb5\x12\xe2\xd3\x2d\xf2\xcc\x33\x0f\xdd\x96\x96\x05\x6d\x3e\ \x66\x4b\x3a\x49\xa4\x8c\x18\x7d\x61\x9b\x76\xbc\xa0\xd2\xa5\x8c\ \x33\x82\x50\xdb\x44\x9e\x94\x42\x8a\x3e\x04\x14\x4a\x36\x3e\x68\ \x39\x57\x61\x26\x8f\x78\xc2\xe4\x05\xaf\x30\xa2\x0d\x7c\xdd\xcc\ \xd5\x2c\xe7\x44\xec\x90\xb9\xe6\x36\x3c\xd1\x2e\x86\x14\xfe\x42\ \x88\xb9\xb5\xfc\x72\xc8\x22\xf2\xca\x0b\x8f\x1b\x95\x52\xae\x51\ \xa5\x88\x99\x8e\x36\x37\x7b\x3a\x80\xc9\x36\x95\xbc\xb0\xb8\x51\ \x08\x91\x24\x00\x50\x27\xf5\xd1\xa7\x96\x91\xfb\xf8\x20\x53\x5a\ \xb6\xba\xe2\x11\x95\x13\xa3\xe1\x89\x2e\x5c\x86\x39\x2c\x57\x5d\ \x95\x75\xe6\x56\x6f\x55\x0e\x58\x11\x4f\x8c\x4e\xba\x62\xe0\xf4\ \x90\xe7\xeb\x26\x8a\x88\xa1\xa3\xc5\xdb\xee\xd1\xb5\xd1\x75\xba\ \x2a\x93\xb0\x3e\xa7\x1d\xfc\x46\xa5\xcf\xa3\xaf\xc3\x2e\x6d\x08\ \x7c\x86\x18\xa2\x96\x2c\x38\x19\x62\xf1\xc4\x3a\x38\x62\xdd\x2b\ \x9c\xe2\x04\x84\x78\xef\xad\xe8\x88\x9b\x5f\x68\x95\x66\x58\xcd\ \x14\xbc\xde\xbb\xf8\xbd\xf9\xd5\xb4\x2a\x42\x8b\x22\x88\xbe\x53\ \x51\x4d\x2e\x0e\x13\x7d\x71\xc8\x48\xe2\x8c\xda\x08\x9d\xbc\xa1\ \x96\x5a\x36\x7f\x3e\xfa\x2b\x6a\x29\xa7\x78\xb6\xdb\x68\x19\xcb\ \x5c\x56\x57\xd3\xb9\xee\xf3\xd5\x1d\x2e\xd8\x63\xef\xb7\xe7\x83\ \xa8\xd3\xab\x3b\x10\x6d\xee\xbe\x7b\x2e\x5c\x47\xd3\x2d\xf0\xac\ \x0f\xa9\x48\x68\xcf\x1b\x69\x33\xac\xdd\x53\x7c\x31\x8e\xfe\xd3\ \x1c\xe7\xa2\xe7\xbc\xe9\xd5\x03\x6a\xa2\x1b\x43\x31\xfe\xa8\xd0\ \x06\x39\x80\x80\x2b\x4b\xd8\xde\x32\xf0\x35\x17\xef\x7d\xc7\x4e\ \x5c\x28\x4e\xec\xf4\xc5\x1d\x9f\x19\x84\x2d\xcf\xc9\xd7\x99\x6e\ \x26\x16\x56\xbd\xe0\x08\xef\x73\x48\x78\x3a\xa0\x34\xfa\x61\x84\ \x24\xd2\xe8\x0c\x4b\x96\xe6\x34\x96\xe0\xe6\x71\xee\xc9\xd8\xb1\ \x22\xb6\x11\xd1\x88\xac\x0f\x9a\xdb\x9c\xe6\x9c\x07\x02\x29\xb4\ \x30\x27\x1d\x50\x47\x1b\xae\x41\x85\x6b\x84\x29\x4b\xc4\x99\x59\ \x08\xe9\x75\x10\xe5\x74\x82\x2c\x52\x5c\x8e\xf9\xa8\x18\x97\xf1\ \x65\x68\x5e\x23\x64\xd5\x35\x60\x67\x33\x87\x20\xe4\x60\x46\x7c\ \x49\x31\xee\xa7\x92\xf0\xe8\x48\x47\xe7\x72\xda\xfe\x9e\xc5\x25\ \x11\xd8\x83\x00\x8f\x78\x04\x4a\xba\x26\x02\x02\x88\xa6\x1c\xde\ \xa2\xc5\xf3\x7e\xf2\x01\x7c\x3c\x4f\x03\x46\x04\xc9\x18\x58\x66\ \x04\x69\x28\xc4\x54\x15\x52\xd5\x35\x68\x15\xa2\xbe\xd9\x69\x19\ \x61\xd1\xa0\xc0\xe4\x57\x49\x3c\x8d\x0f\x7c\x67\x19\x21\x08\x4b\ \x48\xb7\xa3\xd5\x10\x91\x37\xca\x8d\x6e\x28\xd3\x98\x96\x40\xa6\ \x51\x73\xe4\x08\x1e\x1f\x11\x2e\x3b\xda\x43\x96\xe5\x10\xcd\x23\ \xf4\x40\x48\xe7\x01\x45\x0a\x81\xc4\xc7\x30\x4e\xfe\xc9\x11\xc3\ \x50\xa1\x81\x4f\x38\x82\x0a\x0c\x23\x0d\x27\x36\x48\x0e\xcb\x40\ \xcb\x15\xe7\xc4\x96\x4b\x66\x70\x8c\xfa\xda\xd7\x05\xb9\xc8\xbe\ \xb8\xe8\xcd\x7b\x73\xa3\xc2\x0b\xae\x31\x4e\x57\x1d\x4c\x85\x63\ \x38\xa0\xca\xaa\x82\xa8\xc6\x1c\x8b\x51\xdb\x38\xc7\x36\x08\xe0\ \x05\x1a\xdd\xb1\x1c\x45\x38\x87\x81\xd4\x70\xc7\x47\xb4\xa3\x0f\ \xa2\x11\x81\x06\x3e\xe0\xbc\x1b\xdc\x23\x64\x43\x00\x01\x3e\x9e\ \x31\xcc\x94\x88\xe7\x08\x54\x30\x02\x08\x54\x55\x1e\x65\x76\x80\ \x37\x5b\x71\x26\xab\x42\x64\x97\xf4\x85\x21\x83\x6d\xc2\x66\x87\ \xec\xb5\x33\xbd\xcd\xab\x39\xec\xfb\x5e\x08\xc7\xb9\x8c\x23\xcc\ \x48\x85\x8f\x61\x12\x43\x6f\x44\x12\x93\xe8\xb0\x51\xfc\x53\xc3\ \x23\xec\xc8\x4f\x77\x94\x43\xa7\x29\xc1\xe3\x33\xfe\xc9\x13\x35\ \x94\xa3\x0f\xb5\xe0\x44\xd8\xcc\x56\x0b\x10\xd0\x62\x63\xf4\x43\ \xe7\x0a\x68\x20\x8d\x05\xba\x4d\x75\x34\x40\x98\x32\x57\xf0\x02\ \x39\x54\x48\x38\x5f\xd1\x50\x5d\x4a\x34\xd2\x8f\x5e\x13\x67\x6d\ \xb1\xce\xaf\x5e\x75\x56\xf0\xa5\x05\x5f\xe1\x54\x53\xab\x52\x68\ \x8b\x18\xd1\x55\x85\x32\x9d\xd8\xd2\x74\x63\xfe\xd3\xfd\xdd\x71\ \x1b\x1a\xc0\xa3\x2d\xef\x48\xa5\x7d\xce\xb2\x08\x2d\xc0\x87\x68\ \x08\x50\x8e\x81\xde\x80\x13\x82\xbc\x07\x3e\xf0\x71\x8f\x43\x42\ \x95\x74\x2f\x08\xe7\x38\xaf\xf1\x84\x55\x29\x23\xab\x63\x30\x4c\ \x07\xa4\x91\x3d\x50\xc9\x21\x56\x73\x3a\x48\x99\x66\x67\xcd\xf2\ \x5d\xa7\xa4\x5e\xec\xe6\xbc\xc4\x07\x52\x57\x45\x64\x60\xb6\x28\ \x86\xd2\xb8\x71\x34\xbc\x7a\x49\x48\x20\x31\x49\xa3\x8a\xa0\x81\ \x6d\x18\x08\xa8\xe5\xb8\xa7\x14\xea\xd1\xb9\x5a\x28\x56\x0f\xcc\ \x7d\xac\x20\x69\x71\x0f\x10\xb4\xe0\xa9\x0a\xc3\xd1\x43\xb1\xc7\ \x59\xb9\x51\xc1\xbb\xe0\x41\x18\x68\xcb\x43\x1d\x2e\x90\x76\x36\ \x6d\xa0\x17\xe0\xb4\x09\x2b\x6b\xe2\xac\x67\xcc\xe9\x62\x48\x4f\ \x84\x16\x90\xbe\x0a\x22\xc5\x02\x8f\x6e\x5f\x1a\xd3\xde\xaa\x41\ \x47\x9f\xf9\xc8\xa4\x08\x50\xdc\xbf\xfa\xd4\x8e\x78\x14\x59\x0b\ \x06\xe8\x3c\xe7\x16\xb2\x90\xcf\x4b\x04\x2d\xfa\x50\x0f\x10\x80\ \x80\x07\xf6\x58\x5b\x31\xd4\xb1\xd9\x27\x18\xc1\x08\x72\x78\x42\ \x1b\xcc\x72\x22\x5b\x70\x03\xb4\xe6\xe1\x06\x75\x52\xbc\x02\x2e\ \xc8\xc1\x64\x9c\xe8\xc2\x32\xa4\x93\xd6\xfe\x3b\xe5\x0d\x76\x9d\ \x68\x53\xf9\xf8\x15\x5f\x11\x85\x21\x70\x5c\xb4\xd5\xfb\xde\x67\ \x5b\xdc\x0a\x84\xae\x7c\x81\x29\x5e\xfd\x3b\x99\xfe\x61\x84\x00\ \x02\xc6\x18\x1e\x7b\x8a\x5c\x0d\x48\x41\xc1\xb5\x68\x9e\x3e\x6e\ \x10\x48\xd1\xa8\x61\x18\x64\x0b\x99\x51\x7e\x22\x85\x67\xe0\xe3\ \x0a\x20\xd0\x43\x93\x11\x33\xc3\x89\x75\xe0\x1c\x57\xe1\x6c\x88\ \xb9\x2b\x46\x65\xd8\xc2\x20\x02\x39\x71\x8a\xa9\x63\x98\x15\x48\ \xc3\xc5\x59\x7a\x66\x5b\xc6\x48\x2f\xbe\xc5\x85\x4d\x20\x85\x26\ \x5a\xe1\xb2\x0c\x1c\xb7\x2a\x0c\xfd\x7a\xf4\x36\x5d\xf5\x2a\xdb\ \xf6\xc9\xb6\xb0\x00\x9a\x78\xc2\x83\xce\x2e\xdd\x0f\x34\x94\x51\ \x63\x47\xf8\x28\xa9\x1a\x3e\xe2\x8f\x09\x7e\xb0\xf3\x6a\x91\x88\ \x1b\x28\x58\xb1\x1a\x88\x40\x04\xc2\xd5\x8e\x5f\x3e\x83\xcc\x2d\ \xa8\x30\x3e\x36\x85\xe1\xf4\xe4\xa6\x18\xe7\xa0\x02\x34\xa8\x00\ \x8b\x23\x10\xfb\x1a\xd0\xe0\xee\x76\x41\xdc\x06\x2a\xcc\x58\xac\ \x26\xa6\x0e\x41\xf4\x6c\x9d\x65\xb8\x4d\x2b\xef\x22\x8e\x5c\x12\ \xbd\x45\x0c\x32\x3a\x2c\x38\x7e\x4e\xa2\xed\xe4\xd1\xf6\xce\x4e\ \x8a\x67\xea\x9d\xa5\x2b\xbd\x22\x15\xfe\xaa\x21\x61\x9d\xf6\x74\ \x62\x44\x20\x9f\x68\x51\x6b\x29\x32\x9c\x65\x1f\x1e\xfc\x1a\x41\ \xf2\x92\x6c\xa2\x39\xcd\x30\xee\x5d\x8e\x08\x7c\x8b\x07\x3c\x90\ \x6c\x0b\xea\x51\x0f\x1e\xe8\x21\x9e\xee\xd0\x69\xd7\x6e\xf4\x88\ \xf5\x9c\xc3\xe2\xe7\xe0\x81\x11\xc0\xe0\x15\x39\xc7\x79\xbb\x1e\ \xf6\xb0\xcc\xa8\x18\x11\xe9\x4c\x87\x44\x26\xb7\xce\xab\xaa\x7d\ \x3a\x77\x81\x35\x5f\x1d\x62\x6f\x18\x43\x94\xe3\xb4\x18\x9a\xd1\ \x77\x3b\x93\x59\xc3\x20\x42\xdd\x09\xf9\xbe\x34\xc0\x34\x2c\xf0\ \xac\x32\x36\x2b\xe6\x32\xf5\x51\x83\xe4\xb6\xa1\x92\xae\xdd\x51\ \xa0\x0f\x96\x30\x51\xca\x46\x20\x01\x0d\xf5\x1f\x3f\x11\xa6\x0a\ \x44\x40\x70\x5a\x3c\x43\xd6\x3c\x68\x41\x06\x18\x5e\x0f\x7c\x54\ \x38\xec\x0c\xe7\xc1\x3c\xc2\xb5\x0d\x7c\x1e\xbc\x1e\x46\xc0\x07\ \xc3\xcf\x91\x01\x89\x2e\xa1\xc2\x1e\xe6\x2c\xc8\x41\xd0\x85\xe1\ \x2c\x43\x56\xae\x23\xf9\x58\x49\x64\x9d\xc0\x8f\x56\x2b\x0d\x8a\ \x59\x48\xd9\x6b\x45\x2b\x6a\x90\x7c\x65\xfa\x68\xa2\x23\x1d\xdb\ \x7b\xb5\xef\x84\x14\x41\xe1\x89\x28\xba\xb8\xa7\xa5\xd3\x32\x1c\ \x2b\x82\x3c\x9b\xbe\xd8\x5f\xaa\xfe\x9a\x16\x7a\xf0\x29\x51\xf4\ \x60\x20\x3c\x16\xc1\x49\x1f\xa8\x1e\x93\x34\xd0\x87\x7b\xc0\xfe\ \x11\xdb\xe8\x43\x06\x9e\xa1\x07\x1e\xd4\x23\xb2\x61\x6f\x01\x62\ \xe1\x9e\x01\x5c\x27\x14\x1f\x46\xe0\x7b\x0b\xdc\x0e\x02\x8c\x62\ \x3b\xce\x20\xe7\xac\x18\x8b\x95\xbb\x5d\x95\x5c\x2d\xdf\x59\xc1\ \x18\xb8\xe1\x67\x93\x5d\x41\x0e\xd7\xa0\x0b\xe5\xc7\xa7\xc4\x36\ \x80\x5b\xdb\x73\xd9\x50\xb9\xfb\xa5\xd6\xb8\x08\x2f\x58\xd7\x69\ \x1d\xd0\xb3\x2f\xba\xa5\xf1\x87\x69\x55\x01\x30\x46\x70\xba\x94\ \x08\xf0\x20\x90\xdb\x82\x3d\xa6\xfb\xa3\xd8\xab\x92\x47\x10\x0d\ \x5a\x10\xb8\x94\x18\x86\x0f\xa8\x3d\x2a\x21\x00\x0d\xe0\x01\x29\ \xf8\x2b\xde\xeb\xbf\x5b\xc3\x87\x5c\x90\xa8\xdf\x78\x8a\x2b\x60\ \xb9\x2b\xc0\x87\x0c\x38\x95\x07\xea\x02\x23\x78\x02\x64\x53\x22\ \x31\xca\x9d\x09\x92\xbe\xee\x10\xa9\xa9\x92\x86\xe9\x00\x2d\x65\ \x00\x13\x93\xc9\x05\xd3\xa2\x15\x33\x19\xbf\x4e\xc0\x10\x2f\x0a\ \x91\x0d\xd1\xb6\xb3\xea\x97\xf1\x69\x1f\x69\x20\x39\xcc\x8b\xbf\ \x33\x12\x1d\xc7\xc8\x0d\x53\x02\xae\x07\xd1\x88\x79\x5a\x0a\x02\ \x88\x80\x67\x98\xae\x55\x1b\xfe\x82\x61\xc0\x09\xa7\x7b\x2a\x03\ \xe4\x89\x29\x89\xa9\x07\xfc\x25\x29\x50\x1b\x15\x98\xa5\x61\xf8\ \xab\x76\x08\xbd\x7b\x3a\x07\x29\xc8\x80\x0c\xb8\x40\x2c\x81\xc3\ \x07\xf2\x0d\x38\x4c\x9d\x0f\x5b\x15\x0b\x82\x1f\x2a\xc8\x90\xab\ \x50\xa2\x49\xab\xad\xeb\x8b\x95\xec\x03\x2d\xa9\x6a\x22\xad\x10\ \x8e\x3b\x5c\x2d\xb1\x00\x0b\xce\x6a\xbc\x7c\x09\x32\x9b\x2b\x8b\ \x47\xf4\x41\x4f\xaa\xa0\xee\x50\x06\xcc\xdb\x1d\x85\x70\x37\xd0\ \x52\x26\x8c\x40\xa7\xc7\x48\xa7\x68\x69\x8c\x24\xe3\xaf\x90\x08\ \x35\x8d\xe0\xa3\x72\x68\x07\x2a\x1c\xa4\x91\x01\x2c\x3c\xba\xa7\ \x31\xcc\x08\x7b\x00\x28\x94\xb0\x1a\x0d\xa0\xb5\x08\xc8\xa3\x7d\ \xda\x86\x72\xf8\xab\x83\x73\x38\x5c\xe4\xbd\x61\x28\x33\x8c\x8a\ \xc3\x63\x7c\x20\x77\x19\x8e\x17\xf4\xa0\x35\xe1\x43\x38\xe3\xac\ \xe2\x10\xa3\x49\x13\x23\x1a\x30\x31\xed\xbb\x3e\xac\xe0\xc0\x2b\ \xa8\x41\x11\x4b\x3f\x69\x7c\x82\x3d\x58\x36\x4c\x6a\xab\xef\x89\ \x44\x3f\x0c\xc2\x10\xe9\x9e\xf8\x2b\x96\x4a\xc3\xad\x15\x52\x09\ \xc3\x70\xb7\x54\x72\xb7\x40\x61\xc2\xbc\x8a\x96\x24\xb9\x96\x76\ \xa8\x07\x5a\xf0\xc7\x4b\xfe\x39\x0d\xa2\x10\x10\x91\xd1\x80\xa3\ \x7b\x04\x4f\xe0\x09\xad\xd3\x88\x72\x48\x8d\x76\x40\xae\x28\x34\ \x90\x6d\x50\xae\xae\x6b\xb8\x5e\x7c\x04\x1e\x88\x0d\x3a\x44\xc6\ \xd3\x81\x43\x98\x79\x01\x12\x39\x02\xd8\x01\x8b\x45\x94\x03\x22\ \xf8\x8a\x91\x2c\xa1\xab\x78\x01\x65\x80\xb6\x38\x79\x81\x27\xc8\ \x85\xdf\x88\x9b\x33\xc9\xa0\x45\x7c\x82\x71\x2c\x0b\xe7\x08\x42\ \x4a\xdc\x49\x7c\x69\x1f\x75\x50\x13\xc0\xb3\xa0\x3a\x1b\x08\x81\ \x58\xa1\xc7\xa0\x8e\x7a\x4c\x98\x77\x5b\x9b\x7b\xa4\xa1\x8d\x78\ \x84\x29\xec\xba\x90\x11\x8a\x3e\xf0\x47\x7c\xf8\x00\xd2\xe8\x83\ \x61\xf0\x29\x3c\xd2\x00\xd1\xd0\xba\x8d\x59\x0a\xb6\x73\xc8\x7b\ \x13\x40\x1e\xe8\x83\x8a\x2c\x2e\x69\x29\x46\xdf\xe0\x40\x38\x74\ \x4b\xbe\x13\x93\x25\x60\x24\x67\x93\x06\x38\x03\x31\x39\x30\x82\ \x5c\xe0\x38\x10\x5b\x95\xed\x5a\x49\xed\x33\x11\x0f\x7a\x49\x96\ \x83\xb1\x55\x19\xbf\x91\xe4\xae\x10\xd3\x28\xd9\x5a\x0b\x67\x44\ \x3f\x9d\xb9\x97\xca\x23\x42\x69\x00\x4a\x9b\x89\x08\x82\x78\xa9\ \xa4\x39\x0c\x16\xf2\xc4\x78\xa4\x3f\x53\x9a\xa1\x78\x23\x00\x3d\ \x10\x2a\x29\x88\x40\xfe\xa3\xb8\x07\xa4\x60\x4d\xa4\xa8\x05\xce\ \x19\x19\x29\x00\xcb\x52\x2c\xc0\xbf\xb2\x48\x89\x23\xc3\x61\xe0\ \x01\x5c\x04\xac\x28\x8b\x80\x0c\xe8\x02\xbe\xe4\xc0\x39\x84\x20\ \x12\x94\x03\x39\x78\x9b\x05\xd9\x9e\x6b\x20\xb9\xa9\xba\x8a\xe3\ \xd4\xcb\x2e\x50\x46\xe4\x34\xc9\x9b\x24\x82\x78\x91\x8e\x16\x29\ \xb9\x15\x38\x82\x65\xf8\x33\xe5\x24\x02\x4c\x7a\xc6\x45\x1c\xc9\ \x56\xb1\xaf\xd4\x82\x4c\x9a\x81\x8b\x6f\x0a\xca\xf6\xc1\x2c\xcc\ \xac\x33\x12\xb1\x85\x3a\x53\x88\xf2\xa8\x47\x4f\xec\x80\x77\xa4\ \x3f\x50\xcc\x8d\x88\x99\xb7\xcb\x10\x81\x61\x98\x2e\x5a\x08\x8a\ \x67\xc8\xca\x44\xd0\x07\x04\x05\x9b\x05\xd5\x07\x7c\xf8\xa1\xd9\ \xe4\x88\x01\xb3\xcd\x76\x48\x40\x5e\x8c\x80\xe2\xf2\x02\x3c\xc2\ \x9a\x76\xc0\x48\xe4\xcb\x05\x43\xe4\xc6\x98\x79\x3e\xbe\xbb\x90\ \x3e\xbc\xbe\xcd\x42\x4e\xbe\x8b\xc9\x06\xf9\x50\xbe\x94\x83\x0f\ \x7d\x02\x0b\xf2\x1e\xbb\x80\x93\x23\xb8\x28\x2c\xc1\x36\x69\xe4\ \x43\xee\x3a\x34\xfb\x92\x95\xb8\x18\x27\x22\x54\x8e\xd7\x99\x34\ \x35\x51\x87\xd6\xb1\x4c\x0b\xea\x1b\xdf\xb1\x88\x76\x7b\xb7\xfd\ \xb2\x91\x78\x23\xfe\xa6\xfe\xbc\x1a\xfc\x98\x98\x08\x58\xcd\x2e\ \xa0\x85\x58\x33\x8a\xd6\x54\x50\x05\xd1\x07\x09\xfb\x00\x08\xdd\ \x88\x3b\x3a\x87\xfe\xe3\x01\xa5\x58\x8a\x72\xe0\x01\x2b\x15\x89\ \x3b\xca\xd0\x6d\x78\x86\xb7\xb9\x36\x0e\x84\x97\x9b\xe4\x2c\xbf\ \x1c\x27\x3c\x95\xa4\x35\xb9\xc9\xb7\x89\x49\xd4\xe1\x84\x41\xe5\ \x40\x77\x11\xb1\x35\x09\x0b\xec\x43\x91\xeb\x73\x1b\x31\x81\xb1\ \x44\x05\x11\xc5\x0c\x8b\x70\xa2\x9b\xe8\x08\x49\x56\xb1\xaf\x94\ \x0a\x21\xe7\x00\x4a\x14\x3a\x21\x39\xc9\x95\xc1\xa9\x4f\x6e\x50\ \x26\x74\x1a\x03\x25\xb4\x11\xfd\x71\xa7\x76\xca\x0c\x79\x72\x32\ \x84\x43\x8a\x7b\xf0\xba\xa2\xf8\x80\x03\x65\x4d\xb0\x09\x90\x61\ \x18\x02\x3f\xf2\x88\x01\xe3\x81\x67\x78\x86\x76\xb0\x8d\xb1\x54\ \x9c\x7d\x12\x81\x6d\xc8\x48\x77\xe1\xc6\x33\x1b\x41\xbd\xd4\x4b\ \x1e\xdd\x2c\xbe\xfb\x3e\xb3\x68\x83\xe0\x1c\x54\x64\xc4\xa8\x08\ \x62\x20\x25\x7a\x8b\x4b\xfc\x9d\x6a\x93\x4e\x54\x49\xbc\xa9\x12\ \xc9\x39\x13\x0b\xe1\xa9\x19\x4c\xbd\xbe\xe6\x88\x22\x4a\xfd\x8e\ \xdd\x41\xab\x15\x09\x9a\x61\x19\x0f\x85\x30\xca\xd0\x7a\x0c\xa6\ \x84\x14\xa6\xfe\xc1\x1a\x99\x00\x89\x51\xac\x52\xfc\x18\xcb\xa3\ \xc8\x85\xc9\xf2\xc7\x0f\x88\x35\x2e\xad\x55\xd6\x94\x12\xa3\x12\ \x0d\x7c\xb8\xae\x8c\x78\x04\x37\x7c\x86\x8d\x19\x95\x63\xbd\x07\ \x8c\x1a\x41\x40\x1d\xc1\x0f\xf3\x30\x3d\x7d\xce\x77\x89\x99\x4b\ \x22\x02\x63\x44\x46\xae\xd8\x9e\x14\x25\x0e\x09\x6a\xcf\xb7\xda\ \xac\x10\x1c\x13\xf4\x52\x0b\x71\xf2\x38\x2f\xca\xcc\x94\xcb\xc9\ \x77\xed\x17\xf6\xec\x39\xba\x40\xad\x84\x70\x91\xc1\xa9\x8b\x76\ \xf3\x4c\x2f\xb1\x05\x7b\x48\x19\xfd\xf9\x3c\x8f\xb0\x8c\xfc\x49\ \x9e\x0c\xb8\x87\x2e\xb8\x07\x7f\xbc\x87\xda\x8b\x00\x0a\x6d\x87\ \x58\xa3\xd5\x08\x98\x12\x02\xb0\xba\xb4\xf1\x08\x2f\xf0\xbd\x6d\ \x58\xb3\x76\xe8\x02\x40\xc3\x1e\xbe\xfb\x30\xe8\x8c\xb3\x10\x53\ \xa2\x9b\xd4\x8a\x1a\xbc\x49\x0d\x3c\x59\x94\x95\xce\x77\xd9\x03\ \x94\x24\x27\x2f\xa2\x56\x17\x83\x24\x23\xf0\x3b\xa9\x7a\x81\xed\ \x1a\xa5\xf3\xc4\xd9\x9c\x94\x9f\x0f\xe1\x26\x76\x3d\xcf\xbe\x49\ \x1f\x3b\x91\x1f\x92\xfb\x9b\xa4\xb9\xcf\x74\x79\x14\x6b\x99\x37\ \x7a\x72\x1a\x97\x10\x09\x68\x61\x94\x39\xe5\x84\x7b\xb8\xda\x67\ \x58\xcd\xfe\x2d\xe5\x5a\xe4\xca\xda\x58\xeb\x5a\x2b\x11\x8d\x25\ \xe0\x01\x59\xda\x06\x5e\xd3\x3a\xe0\x74\xc2\x95\x60\x92\x79\x7b\ \x04\x7a\xdb\x06\x1e\x90\x8d\xc3\xc4\x1e\xbd\xb4\x43\x12\xf4\xd8\ \x71\x4c\x5b\xb4\x31\x49\x93\xc5\xd6\xc3\xe3\x84\x5c\x58\x5b\xbf\ \x74\x5b\xb8\xfa\x9e\x6a\x6d\xbe\x78\xa9\x8b\x87\x1a\x27\x25\x42\ \xdc\xe8\x98\x2a\xe3\xc8\x54\xf8\xd9\xd4\x7b\x79\x39\x45\xab\x17\ \xeb\x48\x0e\x2e\x78\xb4\x75\x3c\x82\xfa\x7c\x47\xfa\x50\x03\x5b\ \x10\x4d\x38\x8a\xa3\x45\xa1\x9a\xf9\xf0\x82\x67\x20\x82\x5c\x78\ \x06\x79\xc2\x82\x7b\xf0\x00\xae\x5d\x0a\x87\x24\x38\x59\x53\xc5\ \x61\x28\x38\x84\xfc\x07\xbb\x2b\xbb\x0a\xcb\x80\x31\x7c\x84\x39\ \xcd\xdf\xdd\xd5\x3d\x60\x75\xc3\x88\xca\x80\x83\xcb\x80\x5c\x80\ \x24\x22\xf8\x30\xb5\x25\xd1\x8e\xfd\x58\xb7\x7d\x02\x22\x30\x19\ \xe1\x70\x99\x93\x35\x46\x42\x75\x97\x5c\x50\xe1\x0f\xeb\x43\x25\ \x75\x8b\x6b\x90\x83\xad\x70\x97\x3b\x3c\x21\x44\xc5\x5e\xc3\x9d\ \x2a\x3d\x94\x2d\xbb\x29\xa1\x49\x32\xcf\x9c\x19\x5f\x3b\x51\x29\ \xcc\x6c\x1d\xca\x20\x4a\x95\xb0\x85\x90\xb0\x07\x35\x73\xa1\xcd\ \x50\xfe\x33\x1c\x39\x45\xad\xcb\x9a\x27\x23\x80\xac\x6d\x87\xae\ \xd9\xa7\x2a\x4e\xdd\x84\xa5\x42\xd9\xe4\x89\x63\x5c\x82\x7b\x88\ \xa7\x8c\xe3\x40\x89\xea\xdd\x05\x31\xd9\xe1\x84\x4b\x99\x54\x56\ \x10\x2d\x54\xbe\x8c\xb3\x3d\xd8\x4b\x8c\xba\xd6\xba\x35\x61\x34\ \x7e\x97\xaf\x10\x23\x91\xa2\xa2\x97\xbc\xdb\x99\xc4\x17\x3e\xcc\ \x49\x91\xea\x4e\x4c\xad\xb9\x11\xca\x59\x22\x7d\x95\xf4\x61\xe4\ \x45\xcb\xa0\x71\x0a\x27\x2a\x68\x9d\x8a\xd0\x11\xf7\xdd\x00\x8f\ \x80\x85\x36\x25\xdb\x90\x98\xb7\x92\x70\x09\xf6\xc8\xbf\xdb\xc5\ \x89\x63\xbd\xe2\x27\xcc\x5a\x5a\x80\x83\x29\x9c\x42\x5b\x13\x8d\ \x93\x4d\x28\x8e\xb4\xe3\x58\xbe\xe3\x41\x4d\x95\x1a\x84\x4e\x6b\ \x95\xe5\x5c\xee\x0a\x10\x5b\x41\x69\x2b\x91\xd2\xa1\x53\xaf\x90\ \x1b\xcd\x6a\xcc\x58\x59\x0b\x36\xe9\xb9\x50\x9a\x1b\x10\xe2\xe3\ \x38\xf1\xc1\xc8\x73\xd7\x49\xb6\x08\xf7\xfd\x08\x7b\x80\xa7\x1f\ \x59\x0c\x93\x70\x89\x5f\xbb\x88\x5e\x35\x86\x27\x33\xe5\x08\x80\ \x83\xa0\x68\x87\x72\x96\x9c\x56\xbe\x63\x5d\x56\x67\x3a\x24\x54\ \xe6\x3d\xce\xe0\x2c\xe1\x75\x4e\xde\x65\x73\x93\xe9\xd0\x33\x6e\ \xfe\x90\xaa\x6a\xb5\x53\xe2\x05\x8b\xc6\xfc\x0e\x7b\x19\x8b\x3d\ \x36\xc7\x6b\xfa\x28\x9f\xcd\x95\x5f\x19\x9f\x46\xd3\x20\xdb\xa2\ \x88\x62\x48\x62\x8d\xd8\x00\x58\xb0\x07\xa4\x25\x09\xca\x90\xd2\ \x68\x61\x12\xa7\xfc\xb5\x4d\x56\x01\xac\xa1\x62\x2f\xc0\x02\x2c\ \x28\xe7\x7b\xe3\xa3\xac\xed\x5f\x91\x9e\xa7\x63\x35\x60\x79\x66\ \xe9\x63\x1c\x54\x36\xce\xe3\x77\xae\xe3\x96\x8e\x43\x65\x24\xc1\ \x44\x7d\xb6\x3c\x93\x2a\xef\xf4\x8a\xe3\xf4\xb8\xe8\x93\xa0\x29\ \xc2\x20\xb0\xf0\x43\x12\xd2\x28\x12\x92\x1b\x1f\x0d\x9c\x2e\xd2\ \xc1\xc6\xcc\x10\xfb\x6a\x08\x62\x7b\xe8\x8c\x88\xe8\x8b\xb3\x38\ \x58\x38\x20\xe4\xb9\xdc\x0e\x60\x0f\x94\xf0\x02\x1e\x20\x82\x7b\ \xd8\x83\x7b\x20\x82\x44\x88\x86\x53\x18\x6b\x91\x36\x69\x38\xb8\ \x07\x38\x08\x56\xc9\x21\x80\x73\x68\xe5\xe0\xa0\xe9\x75\x96\xe1\ \x65\x55\x61\x8e\xc3\xe5\xba\xa6\xc3\x77\xe9\xe9\x10\x93\xa0\xba\ \x48\xb1\x13\x1b\x03\x83\x18\xdc\x9b\xf4\x69\xe8\x94\x83\x3d\xd8\ \x63\x59\x19\x5c\x4c\x4d\x4c\x0c\xe1\x43\x4c\xaa\x31\xc8\x13\x0b\ \x1c\x3b\xea\x4d\xc5\x43\xc0\x73\x68\x15\xb0\x05\x5b\xa0\x0c\xfe\ \x2a\x70\x01\x68\xa8\x07\x68\xc0\x66\xc5\x38\xd6\x78\x22\x1e\x94\ \x30\x14\x94\xd8\x86\x5c\x00\x95\xd8\x7e\x69\x77\x09\x85\x5c\x48\ \x84\x50\x48\x04\xdb\x8e\x86\xb0\xbe\x5f\xd1\xd8\xc6\x98\x44\x5e\ \x97\x7e\x8a\xe1\xfe\x8d\xe2\x0e\x0e\xe3\x46\x61\x5a\x76\x97\x36\ \xee\xe9\xbd\xe6\x6b\x16\x5d\xdb\xb5\x0d\x31\xba\x91\x8e\x6b\x1c\ \x44\x7b\xa1\xd9\x70\x44\x6c\xbe\x0b\xb1\x45\x7e\xe1\x69\x14\xc9\ \xed\x52\xcc\xbc\x45\x3f\x84\x4e\xe8\xab\x68\xc4\x6e\xba\x93\x86\ \x00\xb6\x73\x28\x36\x58\xb8\x38\x20\x18\xed\xd1\xb6\xb8\x74\xf2\ \xaf\xc1\x88\xa1\x94\x18\x0f\x95\x68\x03\xbe\xc6\x28\xd1\x68\xd1\ \x42\x7d\xe9\x2b\x08\x05\x02\xd7\x8a\x02\x2f\xf0\x01\x5f\x6e\x15\ \x0e\xf0\x06\x17\x70\x03\x07\x6e\x65\xb4\x56\x31\xa1\xe9\x14\xae\ \x4e\xe7\xc5\x5e\xb8\xa2\x01\x18\xcc\x33\xec\xbe\x24\x92\x0c\x4e\ \x61\x3e\x0b\x80\x3e\x54\x45\x6c\x83\xbc\x1d\x49\xf2\x56\x3c\x6d\ \xd3\xc1\x7e\xc6\xb1\xf5\x63\x88\x4b\x6d\x03\x68\x40\xb6\x35\x58\ \x03\xd3\xa6\x04\x2a\xb8\x6a\xa9\xb8\x8d\x63\xbd\x86\x73\xa0\xa7\ \x8c\x10\x0f\x1c\x91\x83\xe7\xe6\x0a\x00\x7f\xe3\xbc\x8e\xfe\x06\ \x06\x67\x72\x26\xbf\x36\x07\x6f\xf2\x28\xe7\xcb\x0e\xce\x6b\x15\ \x0d\x6e\x96\x5e\x5e\x3b\x4c\xb6\xb0\xb8\xde\x20\x4d\x2f\x9d\x56\ \x06\x67\xd4\x28\x06\x7a\x1b\x61\xfe\x0e\x44\x6d\x15\x68\x24\xbf\ \x7e\xd6\x97\xb5\xba\xec\x91\x04\x8b\x16\x2f\x8b\x47\xd3\x97\x13\ \xc2\x2c\xce\x5a\x03\x8d\x03\x03\x30\xb8\xf1\x8b\x73\x07\xa4\x15\ \x14\x58\x68\x87\x65\x70\x42\xfd\x06\x69\xd8\x36\x72\x00\x67\x72\ \x22\x60\x74\x22\x58\xf2\x26\x27\x82\xe0\x8c\x72\x08\xe7\xcb\x29\ \xef\xe0\x2e\xd0\x60\xc5\x66\x5b\xb0\x40\xce\xc3\xab\xeb\xe5\xc5\ \xf4\xe3\x44\xc9\x35\x87\x06\x72\xfa\x67\x18\xc4\xe7\xed\xf5\x46\ \x2e\x80\xe1\x0f\x05\x31\x68\x92\x06\x06\x1a\xf3\x13\x07\xec\xf2\ \x4c\xe6\xf1\xdb\x83\x70\x94\x54\xb9\x61\xf1\xf1\xdc\xac\x1a\x07\ \x03\x23\x18\x6d\x4a\x38\x07\x4a\x90\x68\xd9\x6d\x98\xdd\x8d\xa7\ \xcb\xf0\x02\xb3\xa5\xf0\xba\x26\x07\x9e\x60\xf0\x46\x67\x74\x49\ \x0f\x85\xda\xae\xed\x5c\xb8\x5f\x49\x97\xf4\x4a\xef\xe0\x48\xaf\ \x76\xc5\x16\x47\x06\xf2\xb8\xeb\x2d\xc9\x78\x96\x67\x42\x95\x6e\ \xb7\x25\x3f\x68\x80\x73\x14\xdc\x70\x3d\x63\xb1\xc7\xfe\xd6\x10\ \x9e\xf6\x8a\x44\xdb\x56\x45\xbc\x49\xb0\xc8\x75\x15\x9f\xc4\xab\ \xc8\x75\x10\xcb\x5b\x1d\x24\xef\x4e\xb8\x31\xec\x11\x47\x3d\xb5\ \x6a\x68\x70\x81\x61\x77\x01\x4a\xa0\x84\x3f\x8f\x90\x63\xd5\x0c\ \x9c\xf0\x82\x36\xb8\xf2\x96\x8e\xf6\x7f\x60\xf0\xdd\x66\xf4\x68\ \x00\xf9\x5c\xb8\xf6\xb8\x6d\x72\x4c\x27\x51\x70\xd7\x76\x93\xd7\ \x60\x46\x2f\x49\x4d\x67\xdb\x80\x4f\xce\xe7\x4e\xe1\x75\x87\x73\ \xec\x99\xf1\x45\x54\x57\x93\x63\xb1\x6a\xf3\x46\x1a\x80\x61\x11\ \xe7\x82\x36\x30\x49\x4e\x37\xc9\xbc\x14\xf5\xd8\x51\xc4\x80\xd7\ \xf5\x9a\xbf\x8a\x6b\x68\xbc\xb1\xb8\x49\x12\xfc\x71\x1d\x87\xef\ \x73\x60\xf8\x86\x8f\x82\x87\xdf\x84\x89\x9e\x78\xf7\x68\x8f\x94\ \x78\x06\x23\xc7\x92\x8d\xcf\x76\x26\x0f\x79\x91\xe7\x84\x91\x2f\ \x7b\x47\xc7\x74\x70\xef\x76\x6d\xe7\xcb\xdd\x2e\x49\x49\xbf\xdf\ \x48\x57\x79\xbe\xcb\x78\x75\xfe\xed\xa2\xdf\xf2\x63\xc3\x73\xc5\ \x9c\x33\xec\x33\x88\x58\x7f\x75\x35\x81\x49\x61\xae\x36\x15\x3e\ \x4e\x15\xbe\x02\x93\xe4\x38\x4c\x82\xfa\xe3\x6c\x5e\x94\xfc\xa8\ \x3e\x04\x9a\x4b\xd5\xf1\xc1\xd0\x71\x68\xa0\x84\xfe\x86\x07\x83\ \x28\x38\x81\x28\x40\x06\x73\x90\xf8\x89\x17\xf4\xda\x0d\x7b\xb1\ \xe7\x83\x8d\x57\x61\x6c\x17\xf9\xdd\x06\xf9\x6b\x77\xfd\x5c\x78\ \x74\x29\xb7\x7d\x26\xaf\x6d\xbc\xc6\x6b\x6b\x9d\xed\x96\x6e\x7c\ \x7e\x46\x49\x77\x47\xb6\x2d\xc7\x53\x3d\xfe\xe7\x30\x17\xfa\xc4\ \x6b\xa2\x96\x0b\xe1\x14\x5e\xd1\xe5\xe5\xc6\xaf\x28\x8e\xdf\xe5\ \x58\xe9\xa6\x6c\x0f\xf7\x3b\x9c\xe8\x00\x1a\x38\x07\x13\x02\x36\ \x1e\x60\xf8\x27\x70\x81\x3d\x17\x02\x21\xc8\x7a\xd2\x47\xf6\xdb\ \x78\x09\x20\xc1\x08\x1e\x50\xfd\xd5\x97\x76\xdc\xa7\x7d\x90\x5f\ \x72\xd7\x5f\xf2\xdd\xc6\xfd\x97\xbe\xf6\xb4\xaf\xed\xe5\xc5\x76\ \xad\x00\x08\x4e\x9c\x42\x0d\xbc\x12\xea\x4a\xae\x2e\x5d\xe4\x28\ \xec\xc2\x89\x0f\xc4\x88\x12\x27\x4a\xe4\x74\x45\x4e\x9b\x65\x2f\ \x5e\x48\x5b\x76\x8d\xca\xb5\x8f\x20\xa1\x85\x6c\x63\xf2\x89\x1c\ \x39\x46\xe4\x3c\xb9\xf6\x82\x06\x0d\x69\x4f\x72\xe5\xc2\x48\x64\ \x09\x9f\x50\x44\x1c\xf2\x79\x18\xf1\xe1\xc5\x8c\x1e\x9f\x74\xc9\ \x85\x50\x61\x4a\x8c\x2e\x95\xad\xe0\xc6\x4d\xd9\x46\x2e\xca\xb8\ \x75\x28\x46\xa5\x0d\x0f\x2a\x54\xce\x51\x71\xfe\xb1\x06\x0c\x58\ \x10\x42\xc0\x44\xa1\x74\xae\x87\x3d\x7b\x2a\xd6\xb2\x6d\xeb\xf6\ \xad\x0a\x11\xb0\x8a\xad\x55\xf3\x8c\x22\xde\xbc\x14\xc9\xfd\xfb\ \x47\x33\x57\x28\xc0\x82\xa3\x45\x03\x1c\x38\x17\x61\x9a\xd1\x42\ \x11\x6c\x2c\xb0\xa0\x40\x82\x57\x1e\x3f\xce\x65\x91\x53\xc2\x85\ \x26\xdb\xc8\xb9\xa2\xf7\x33\x44\x4e\x9a\x39\x1e\x91\xa6\x95\x8a\ \xba\x23\xa5\xa5\xbd\xa0\xb2\x6c\x33\x4a\x23\x0d\x9f\xb4\x79\xc1\ \x65\x59\xe7\x2b\x44\x3a\x87\xf6\x89\x97\x13\x46\x93\x7b\x1a\x1a\ \x31\xf2\xe4\x78\x9b\x6b\xcb\xa4\xae\x18\xa3\x62\x4c\x07\x1a\x6d\ \xf6\x3c\xe1\xd1\xc6\xc8\x95\x2b\x20\x68\xf3\x80\xf6\xa4\xde\x57\ \xb0\x64\x5d\x98\x3b\xe7\x0e\x16\xdc\xf4\xea\x45\x88\x58\xeb\x65\ \x0f\xe8\xf8\x12\xf9\xfa\x2d\x0c\x78\x60\xe0\xfc\x8c\x73\xd5\x40\ \x6c\x98\x31\x65\x01\x0a\x48\x50\x64\x06\x25\xb4\x52\x72\xaf\xf1\ \x76\x99\x7c\x15\xd1\x84\xe0\x32\xa8\x49\x73\x44\x6a\x47\x28\xa3\ \x0c\x4c\x31\x49\x13\xd2\x71\x2a\x19\x25\x1a\x46\x2f\xb4\xd1\x05\ \x1f\x4b\x58\x26\x9f\x6e\x29\x29\x94\x90\x52\xcb\x2c\xc7\x85\x54\ \x53\x75\x40\xd5\x18\x6a\x28\x33\x22\x27\xfe\x4b\xf8\xb6\x04\x08\ \xc5\x19\x01\xd6\x8f\xe2\x09\x41\x9e\x79\xee\xa8\xa5\x1e\x92\x6c\ \xa9\xd1\x9e\x08\xcb\xe4\xd2\xa0\x7c\xf4\xfd\x75\x10\x81\xf9\xe1\ \x17\x58\x0d\x8c\x11\x28\xe0\x40\x90\x05\x48\xe5\x51\xbb\xd1\x76\ \x12\x11\x46\xd5\xd4\x45\x28\x38\x41\x29\xda\x4a\x2c\x1d\x77\x8d\ \x3a\xea\x4c\x68\x8b\x2d\x4d\xd9\x82\x21\x0d\x5c\xbc\xf0\x1a\x67\ \x46\x9c\x68\x91\x11\xd4\x3d\xb9\x66\x76\x8f\x69\xa6\x9c\x6d\x30\ \x5d\x78\xe1\x0a\x1d\x38\xda\xc1\x0a\xd2\x18\xe1\x1b\x44\xda\x81\ \x70\xe9\x15\x2c\x18\xb1\x46\x0b\x60\x45\xb1\x46\x79\x46\x26\x39\ \xaa\x0a\x6a\x98\xda\x0e\x89\x50\xc6\x47\x5f\x51\x34\x1d\x66\x65\ \x63\xfb\x01\xb8\xe5\x97\x5c\x5a\x74\xd8\x42\x2c\xed\x31\x1d\x43\ \x34\x75\x41\xdb\x13\x44\x50\x1a\x9f\x40\x35\xb1\xa4\xd2\xa6\x24\ \xc5\x69\xa1\x2d\xdc\x34\xe5\x2c\x9e\x7b\x72\x56\x94\x9a\x7c\x64\ \x37\x99\xaa\xbe\x5d\xb1\x10\x6d\x1a\x49\x23\x0d\x8c\x19\x2a\xaa\ \x8c\xa3\xc5\xbc\xc0\x90\xa5\x5d\x14\x07\xc2\x15\x59\xf0\x08\x06\ \x34\xf1\xb6\xb0\x86\x0b\xe6\xc1\x72\x24\xa9\x49\x8a\x20\x47\xb5\ \xaa\xea\x25\xa5\x7d\x7f\x09\xac\x25\xfe\xac\x01\xf6\x64\xeb\x63\ \xb8\xb6\xf9\x04\x75\x1e\x22\x64\x84\x72\xd7\x0c\x37\xac\x5e\x0f\ \xe5\xc8\xe2\x71\x9b\x1e\x17\x2f\x6a\xa9\xd1\xd9\x14\xc8\xd1\x5e\ \x83\x12\xb6\xfe\xe6\x05\xe2\x98\x21\x29\xe7\xda\xb7\x47\xc0\x54\ \x8c\xa3\x35\xd2\x00\x92\x6b\x5a\x8d\xec\xe3\x1a\xe7\xc0\x02\xcb\ \x39\x40\x98\x65\x5e\xbe\xf9\x8a\x90\xaa\xc9\xff\xf6\xe5\x5f\x61\ \xa1\x2c\xb6\xb4\x60\x8e\x39\xf6\xd8\xc1\x03\x62\x96\xd9\x6e\x49\ \xf5\x6a\x51\x4d\xb5\x89\x48\xd4\x87\xc4\x4e\x76\x14\xce\x4f\xac\ \x21\x36\x34\x6b\x40\xd3\x31\x0d\x8c\xae\xb0\xf6\x0a\x30\xe9\xc9\ \xd9\x89\x45\x4f\x64\x51\x17\x55\xbb\x99\x9c\x4b\xd2\xa4\x6d\x4b\ \x07\xce\xb1\xc5\x8d\x08\x1d\x98\xda\x01\xcf\x5c\xc1\xe2\x45\x7b\ \x6a\xd8\xb3\xb3\xa8\x41\x93\xba\x0d\xd1\x72\xef\x75\x34\x62\x04\ \xff\x67\x98\x41\xf8\x75\x69\x31\xe7\x09\x4f\xad\x50\xd5\x46\x10\ \x21\xba\x65\x58\x63\x14\xe1\x6b\x28\x15\x45\x31\x45\x47\x35\xd4\ \x63\x71\x6b\x68\x3c\xf6\xd8\x67\xa7\xc6\x85\xb8\xe2\x7e\xbb\x0c\ \x51\x9e\x49\xfe\x93\x45\xd9\x21\x58\x1b\xb8\x34\xac\xcd\xcd\x73\ \x48\x16\xc3\xf3\x36\x6a\xbc\xe5\xfe\xbc\xe3\xf9\x42\xfe\x3b\x5e\ \xf4\x69\x89\x99\xd3\xfb\x75\xf9\x34\xc2\x04\xfd\x55\x77\x52\x2b\ \x4e\x26\xd0\xb6\xb4\x95\xd4\xc6\x71\x7b\x78\xc8\x7a\x45\x6d\x16\ \xd7\x05\x18\x9b\x6e\xba\x06\xfd\x65\x3f\x01\x0e\x34\x1a\x6d\x44\ \xc5\x46\xfd\xbb\xc6\x27\x43\xd8\x57\x34\x16\x65\x24\x51\xc7\x73\ \x8e\xdf\xd2\xa3\x06\x58\x50\x21\x2b\xe8\x89\x1e\x04\xdd\x73\x0f\ \xea\x4d\xee\x1f\x8b\x19\xc8\x7f\x22\xa3\xb9\x2d\x39\xed\x4a\x80\ \xe9\x42\x34\xea\x46\x84\xdd\x90\x70\x75\x8f\xd1\x0d\x72\xd0\x77\ \x1c\x94\xa0\x24\x80\xa0\x59\xc2\xaf\x9e\xe0\x23\x30\xc8\x8e\x7e\ \x63\xc3\x5f\xbc\x72\x18\x12\x8f\x9c\xaf\x43\x2a\xea\x1a\x05\xb7\ \x75\x3a\x03\x36\x65\x0c\x08\x4c\x92\x1a\xce\x31\xb2\xea\xdc\x0b\ \x7a\x11\xcc\x97\x17\x32\x40\xc1\x89\xd0\xa7\x4c\x85\x49\x0c\xc1\ \x64\x75\xbd\xc6\xf8\xc7\x3f\x23\x1c\xa1\xd5\x76\x43\xba\xd2\x09\ \x11\x39\x2b\x64\xa1\x9b\xae\x06\xbc\x9e\xfc\x24\x86\x62\xa3\x9d\ \x0d\xa1\x81\x3f\x20\x9c\x0d\x08\x5a\x51\x47\x6b\x5c\x74\xbe\x94\ \xf8\x49\x80\xfe\xb2\x08\x4b\x88\x17\xa3\x67\x19\x31\x79\x09\x7c\ \x8b\x08\x8e\xc0\x83\x27\x40\xfe\x83\x07\xe7\x38\x02\x2c\x44\x70\ \x24\x7c\xb5\x25\x2d\xb0\x70\xa2\xe3\xb6\x01\x82\x29\xce\xa7\x2f\ \x23\x4c\x8c\xab\x0c\x23\x18\x81\xfd\xe5\x8b\x5f\x94\x83\xdd\xd4\ \x97\x92\x11\xb6\xca\x75\x77\x53\xe1\x0a\x59\xb2\x12\xd9\x74\xe1\ \x0a\x6a\x32\xd1\xd7\x04\xb2\x84\x2b\x18\xc7\x3b\x71\xc4\xdf\x1c\ \xe3\xe4\x8f\x38\xc5\x89\x23\xac\xd1\xe3\x35\xd0\x97\x92\xb8\x51\ \x2f\x45\xca\x29\x1e\x53\x8a\x58\xc8\x43\xc2\x65\x2e\xb0\xd8\xc6\ \x39\xce\x81\x4d\x9d\x6d\x63\x67\xf7\x6a\xa2\x92\xec\xe1\x85\xb4\ \x40\xb0\x1e\xfd\x9a\x62\x15\x89\x90\x34\x59\x85\x52\x31\x8a\x01\ \xa1\x1c\x4e\x21\x87\x3d\xa8\xaf\x9e\x61\x64\xe5\xf7\xc4\xb4\x99\ \x86\xad\x50\x63\xef\xeb\x02\xbb\x22\xb2\xad\x5a\x1a\xc5\x96\x57\ \x00\x03\x23\x73\x28\x47\x39\x02\xc1\x1f\xc3\x1c\xa6\x3a\x20\x2a\ \xa7\x6f\x6d\xc4\x23\x26\x49\x49\xc9\x7e\x87\x19\xa5\x24\x8a\x51\ \xdc\x30\xe2\x11\xdd\x72\x48\xf6\x5c\x72\x03\xcb\xcb\x26\x4a\x53\ \x7a\x0e\x4a\x3e\x71\x2d\xf6\xd8\x24\x27\x23\x02\xb0\x32\xc5\xaa\ \x94\x88\x89\x86\x29\xe3\x39\xcf\x7a\xd6\xd3\x94\xf8\x2c\xe5\x3c\ \x61\x43\x9d\x58\x8a\x4d\xfe\x25\x32\x64\x57\x46\x79\xa9\x2e\x4c\ \x2d\x81\x47\x66\x03\x02\x54\xc1\x01\x84\x39\x38\xb4\xaa\x11\xf5\ \x47\xc7\xe2\x74\x4c\x8b\xb6\xb0\x96\x53\xdc\x68\x01\x71\xc7\x14\ \xa7\x7c\x74\x9a\xea\x59\xa0\xce\xbe\x79\x0e\x4a\x40\x03\x08\xd9\ \x34\x87\x0b\x5c\x60\x16\x96\xb6\x94\x07\xe7\x44\x67\x5f\x42\x18\ \x30\x5f\xf9\x54\x84\x24\x9c\x27\x60\x55\x69\xca\x80\xe1\x8a\x08\ \x63\xf2\x00\xb0\x8c\x6a\x9c\x1a\x16\x07\x0c\xb5\xb4\xa5\x40\xe1\ \x87\xd4\x2c\xb4\xab\x47\x6b\x80\x2a\x54\xa9\xea\x50\xcd\xfa\x03\ \xb3\x40\x50\xc7\x69\x40\x72\x12\x15\xa1\x29\xa3\x92\xdb\xd6\x1e\ \x5c\x32\x48\xa7\x98\x35\x79\xae\x65\x0b\xcf\xe8\x68\x16\x73\xb0\ \x35\xae\xe0\xa0\x04\x1d\xe3\xba\xd2\x96\xa6\xc5\x1e\xee\x38\x07\ \x0b\x62\x2a\x91\x1d\x78\x32\xa7\x7f\x25\xa1\x4f\x4f\x49\x04\xf5\ \xf9\x94\x26\x1a\xe4\xeb\x3c\x19\xc6\x30\x95\x20\x4b\x6c\x32\x94\ \x1f\x53\x25\x62\xa9\xec\x64\x81\xb2\x59\x60\x01\x0d\xc1\xe1\x0f\ \xaa\xce\xa1\xbc\xe3\x9d\x2a\x1d\x15\x1a\x2f\x95\x9d\x44\x99\xaa\ \x63\xa6\xe4\x40\xa4\xda\xb4\xb1\xb6\xb5\xd0\xb1\x85\x13\xd1\x0a\ \x8d\xb8\xee\xd7\x05\xfe\x51\x20\xcb\xa7\x6c\x5b\xaf\x07\xa6\x87\ \xae\x2a\x48\x8b\x3b\x76\xe0\x02\x7c\x80\xc0\x5d\xc2\x8d\x08\x71\ \xff\xc1\xd3\x5d\x79\x80\x9e\x16\xd6\x29\x2b\x93\x6b\xca\xfb\x50\ \x26\x14\xa0\x8b\xae\x2a\x91\x55\x1c\x19\x3e\x81\x86\x8d\xc5\x94\ \x83\x21\xc2\xa3\x06\xb7\x2b\x53\x20\x60\x01\x08\x3e\x55\xde\xa9\ \x96\x77\x0e\xe0\xb8\x31\x38\xd6\x90\xe3\x1c\x26\x94\x7f\x15\xe5\ \x2a\x4f\xa6\x68\x22\xa5\xe8\x8d\x29\x20\x35\xa4\x2d\x8e\x70\x0e\ \x3a\xa9\xc1\x16\x3b\x3b\xc7\x7e\xc1\xe1\x15\xff\x8a\x27\x0a\x2e\ \x90\xb2\x5c\x1b\xe7\x96\xde\xe2\x0b\xc1\xe4\x30\x47\x1a\x58\x70\ \xd7\x07\x47\xd8\xc2\x0c\xa3\x27\x2a\x53\x82\x66\x0d\x27\xd7\xb9\ \x01\xca\x05\x18\x75\xc5\xc7\x85\xa8\x0b\x67\xf2\x0b\x8b\x77\x25\ \x92\x85\x17\xb7\x8b\x05\x7e\xfe\xb3\x10\x64\x0c\x8e\xf2\xe2\xf8\ \xc6\x3a\x3e\x74\x0e\xed\x58\x21\x2e\xb0\x66\x64\x0e\x19\xf3\x9a\ \xaa\x85\x32\x8d\xc0\x44\x9a\xcf\x21\x5c\x6a\xbc\xa9\xb3\x6c\xc6\ \x2b\xae\x51\x88\x42\x0b\xc6\x02\x60\x79\x58\xb9\x5e\x74\xf5\xed\ \x6f\x8d\x94\x16\x44\x20\x43\x15\x42\x10\xf3\x44\x20\x4d\xbd\x08\ \x27\xe5\x8b\xa0\xfe\xdb\x0d\x75\xd0\xbc\x07\x5b\xeb\x15\x84\x86\ \x49\x18\x4d\x76\xa2\xe6\xe9\xb2\xb2\xce\x76\x06\x12\x18\xbe\xdb\ \xae\x5b\xee\xf9\xc5\x30\x16\x4b\xbb\xbe\x1b\x68\x1d\x17\xba\xda\ \x37\x8e\x17\x54\xa9\x00\x0d\x39\x95\x46\x41\xb5\xd4\xe5\x69\x15\ \x72\xad\x5c\x20\xc8\x25\x2e\x6b\x94\x11\x6d\x11\x27\x58\xd0\xc9\ \x16\xe7\x50\x07\x94\xd7\xea\x95\x4f\xff\x37\x0a\x63\xf9\x2f\x80\ \xeb\xe5\x8e\x2d\xff\x56\xae\x07\x70\x87\x27\xc0\xec\x07\x31\x2f\ \xc1\x5d\xdd\xf5\x73\x77\x1f\xcc\x87\x08\x9b\xb2\x28\xad\xc2\x35\ \x4f\x01\xfb\x49\x38\xdb\x87\x8b\x70\x06\x23\xae\x79\xc5\xc7\xd1\ \xa9\xab\xce\x26\x0e\xcb\x8b\xdd\xc5\x6c\x3f\x3b\x5b\x2c\x2c\xf8\ \x2e\x0b\xee\x3d\x68\x1b\xdb\x18\xc7\xd8\xce\x76\x7a\xd7\x3b\x32\ \x0f\x35\x04\xbe\xd9\x32\xc2\x45\x19\x12\x48\x41\x1a\xcf\x16\xc5\ \x00\x6d\x9c\x6c\xb1\x01\x9e\xf9\x03\x1a\x94\xa0\x9f\x7f\xa3\x20\ \x0f\x30\x08\xa1\xe9\x51\x48\x03\x18\xa0\x2e\x57\x73\x90\x93\x2d\ \xf6\x98\x87\x0b\xe4\x41\x09\x4a\x98\xc3\x04\x06\xf0\x43\x77\xbf\ \xeb\x87\x34\xa4\xc1\x1a\xc8\x40\x86\x3c\x84\xa0\x70\x86\x8f\x6e\ \x27\x6e\xb7\xfe\x5b\x60\x2d\xfc\x45\x38\x57\x6e\x3f\x23\x64\xae\ \xd5\x72\x6d\x35\x86\xc8\x26\x7e\xf1\xc3\xf7\xab\x43\xce\xec\x92\ \x37\xdd\xd9\x27\x4f\x79\x14\x6e\x9c\x59\xa8\x42\x63\x0e\x0d\x6d\ \x68\x67\xe3\x65\x5d\xd9\x15\xe7\x58\xaa\x33\xad\xaa\x96\x20\x07\ \xfd\xa5\x2e\x41\x2f\x50\x4d\x6a\x3a\x6b\x36\x7f\xec\xcc\xdd\xfe\ \x98\x37\xd3\xff\x9b\x86\x57\x37\x3d\xd0\x4e\x4f\x83\x0b\xe6\xb1\ \xef\x4a\x52\xa2\x05\x27\x70\x01\xda\x55\x91\x86\x13\xbc\xfa\x04\ \x65\x4f\x05\x2e\xc8\xe1\x8e\x43\x98\x43\x1e\x6b\x2f\x2e\xc6\x93\ \x72\xe1\xe4\x27\x77\xaf\x77\x17\x2c\xdc\xf7\xfe\xbe\x4b\xfd\x28\ \x48\x60\x30\xf9\xc9\x45\x5e\x70\x94\xc3\xb8\xe9\x7e\x66\xfd\xb4\ \x67\xbc\x78\xa8\x3a\x94\xf1\xf4\xbb\x3e\xfa\x7b\x99\x1c\xce\xc8\ \xc1\xcd\x45\x03\x8e\xde\xf2\x74\x4c\xfe\xa9\x83\xf1\xf1\x32\x9b\ \x54\xfd\x61\x0e\x7f\x50\x02\x1c\xff\x6d\x3a\xef\x79\x1f\xa0\x81\ \x5f\x96\x51\x92\x3d\x50\x42\xd6\xc9\x83\x3c\xa4\xc1\x08\x30\xa0\ \x2a\xa8\x82\x35\x58\x43\x2a\x4c\xc1\x21\xf4\xd6\x0e\xa4\x81\xac\ \xc9\x0d\xad\x29\xdf\x4e\xed\xca\xf2\x95\x49\x99\x3c\xdc\xdc\x5d\ \x9c\x85\xfe\x41\xdf\x5f\x59\xcd\xeb\x80\x80\xdf\x81\x45\xe1\x09\ \x81\x58\x74\xd7\xf6\x91\x5c\x0b\x8a\x05\xd3\x39\x5d\xe2\x55\xd5\ \x66\xd1\xd8\x54\x95\x4d\x78\xa8\xa0\xc6\x90\x44\x49\x74\x55\x90\ \x79\x8d\xb6\xc8\x81\x34\x44\x13\x4c\x50\xc8\xfd\xe1\x9f\x1c\xad\ \xc1\xa7\xd1\xcf\xa7\xd5\x60\xeb\xbd\x5a\xf6\x85\x1d\xca\x45\x01\ \xd5\x55\x92\x3b\xcc\x03\x02\x2e\xa0\x3c\x8c\xc0\x03\x8e\x40\x12\ \x58\xc3\x18\xa6\xc2\x21\x78\x42\x5a\xec\x80\x1f\x1c\xdf\x3f\x7c\ \x91\xfa\xc8\xd3\x4e\xf1\xca\x08\x85\xd2\x61\x5c\x9c\x4e\xf1\xd4\ \x99\xd5\xda\x87\x31\x84\x42\xb0\xcb\xa5\xa8\x20\xbe\x81\x41\xca\ \x8d\x85\x00\xa2\x5c\xe0\xb5\x20\xd3\xd5\x20\x59\x0c\x5a\x0e\x5a\ \x9b\xff\x79\x0a\x0d\xd5\x0f\x23\x5d\x03\x34\xc0\x06\x46\x35\x88\ \x68\x3c\x56\x4f\x5c\xc1\x13\x1c\xa1\x53\xd0\xc9\x11\x14\xdd\xa1\ \x19\xda\x7f\x0d\xe0\x14\xb6\x9e\x9f\x15\xdc\xf6\x85\x5d\x1a\x1c\ \xc0\x24\xf9\x16\x17\x6e\x9d\x01\xa4\xc1\x2c\xa6\x41\x18\x3e\x20\ \xf0\x55\x60\x5a\x98\x40\x70\x91\x99\x27\xa1\xd2\xae\xc5\x13\x3d\ \x4d\x07\x3d\xed\x04\x87\x45\x06\x09\xe6\x1a\x62\x55\xd8\x1b\xa2\ \x52\xfe\xdd\x64\x86\xf8\x5c\x8b\x0a\xfe\x5d\x22\xde\xdb\xa7\x51\ \x21\x78\x25\xa2\x22\x12\x62\x0d\x26\xde\xca\xb5\x9c\x13\xfa\x9f\ \xff\xd9\x10\x0e\x91\x04\x8f\xa1\x4f\x7b\xf1\xc6\xc1\x4c\x44\x76\ \x44\x04\x0c\xa1\xc4\x4e\x4c\xc6\xaf\xa8\x03\x9d\x70\x03\x9d\x44\ \x14\x10\x90\x62\x0d\x22\x5c\x16\x4c\xe1\xe1\xf1\x63\x53\x35\x15\ \x2b\xa2\x85\x5a\xd8\xc3\x01\x20\xa0\x01\xc8\x22\xd9\xa5\x81\x23\ \x9c\x80\x23\x3c\xa0\x2a\xa4\x02\x39\xa0\xa1\x3d\x1c\x82\x01\x64\ \xa0\x06\xf6\x85\xae\xe1\xda\x13\x78\x00\x33\xce\x21\xad\x60\x10\ \x9c\xc5\x61\x27\xac\x19\x2a\x95\x09\x29\x15\x94\x34\x4e\x23\x59\ \xb0\x60\xea\x25\x9e\x00\x6a\xa3\xa8\xdd\xdb\x14\x02\x58\xa1\xd1\ \xdb\xa7\xdd\x98\x37\xb6\x95\x67\x49\x5e\xed\x24\x16\x50\x7c\x88\ \x40\x40\x04\x9c\xf9\x46\x2e\x8c\x96\x6c\xf0\xd2\x1a\x50\xc1\x11\ \xb4\xdb\x26\xd4\x5f\xd9\x54\x23\xd3\x55\xe1\x9f\x59\x21\x0c\x96\ \x88\x40\x76\x57\x1a\x50\x1d\x82\xa1\x9d\x1f\xc8\x43\x42\x2e\xa0\ \x1f\xf8\x5e\x43\x9e\x80\x2a\x24\x01\x2e\xe8\xa2\x3d\x90\x43\x2f\ \xfa\xa2\x84\x6d\x24\x33\xae\xd2\x94\x0c\x65\x65\x1c\xc6\x4e\x05\ \xfe\xcb\x1c\xa2\xa4\xc0\x3c\xd6\x41\x64\xc7\xa5\x88\x47\x4b\xda\ \x5b\x4e\xea\x64\xeb\xe1\xe4\xff\x9d\x62\xca\xa5\x1c\x80\x45\x21\ \x4e\x16\x1a\x7a\x75\x56\xb6\xf9\xe4\x19\x81\x80\x8e\xd0\x99\xb8\ \xf5\x84\x71\x74\x81\x9a\x70\x22\x57\xfd\xc8\xa5\x7c\x4a\x43\xa5\ \xc6\x26\xe4\xa3\x13\xfa\xa3\xf6\x85\x9d\x40\x06\x64\xb5\x64\xe5\ \x56\xa2\xe1\x16\xca\x43\x0b\xf8\x81\x10\x28\xe0\x09\xf8\xc1\x58\ \x3a\xc2\xee\x3d\xa4\x19\xa2\xa1\x27\x1c\x02\x32\x64\x81\xc2\x2d\ \x9c\x46\x06\x96\xc4\xd1\xd4\x7e\x94\x8e\x63\x00\x06\x42\xd4\xc4\ \x17\xd9\x47\xc0\x2c\x27\x4d\x64\x87\x51\x48\x56\x90\x7c\x45\xbd\ \xd1\x9b\xff\xd9\x9b\xa8\xd5\x9b\x14\x0a\xe0\x3f\xd6\xa4\x60\x26\ \x5e\x14\xd4\xd8\xe3\xa1\xd7\xe3\xdd\x9f\x75\x81\x41\x8e\xa8\x0b\ \x75\x31\x84\x8e\x60\x44\x67\xf8\x44\x17\x9c\xcd\xfd\x19\x81\x10\ \x74\x97\x0a\xae\x81\xe3\x45\xd5\x23\xa2\xa2\xf6\xa9\x26\x80\x36\ \x55\x89\x94\xc8\x77\x6d\xe5\xf0\x1d\x80\x09\xa0\x5d\x6d\x8e\xe5\ \x82\x9a\xa5\x2a\xd4\xa6\x2a\x50\xa0\x05\x9e\x00\x46\x66\xe4\x3f\ \xa4\xd9\x29\x20\xd7\x31\xe6\x87\x65\x70\x51\x60\x18\x08\x9c\xfe\ \xf9\x5a\x61\xf8\x5a\x4a\x9a\x89\xc7\xf5\xc8\x75\x62\xa7\x78\x3a\ \x5d\xa0\x1d\x26\x2a\x52\x61\xd8\xfd\xd9\x20\x62\x67\xa1\xd5\xd8\ \xb5\x79\x56\xcc\x95\x98\x2d\x71\x02\x08\x50\x57\x66\xda\x12\xce\ \xb5\x01\x65\xaa\x58\x2f\x95\x18\x18\xb4\x0b\x56\x66\x41\x24\x1e\ \xda\x35\xc2\x68\x40\xba\x23\x4e\x44\xe9\x6a\x16\x1c\x0b\x8c\x80\ \x09\x1c\x40\x0f\x70\x21\x32\x50\x82\x3c\xf0\x1e\xef\xb1\x00\x83\ \x2e\xa8\x2a\xa4\x65\x5a\x78\xc2\x6f\x06\xa7\x70\xb6\xa1\x3c\x6d\ \x58\x95\xd4\xe1\x28\x0d\x0c\x29\xd9\x47\x5f\x41\xa3\xc3\x75\x5c\ \x90\xcc\x0f\xbd\xe9\xd8\x1c\x34\x69\xa0\xa5\x9e\x3f\x62\xa3\x55\ \x7e\x5f\x8b\x1a\xa6\x37\x8e\xa2\x54\xf5\x64\x8e\x69\xe6\x2e\xf9\ \x88\x8f\x68\x26\x1f\xc4\x90\xa3\x56\x0a\x42\x79\x26\xc1\x45\xc4\ \x77\x91\x85\x8e\x45\x21\xa0\x0a\x28\xa4\xdd\x12\x95\xa6\x81\x09\ \x08\xdf\x0e\x50\xc2\xd9\xcd\xa2\xef\x9d\xc0\x82\x82\xe9\x58\x02\ \x1f\x45\x1e\xc2\x09\xa0\x69\x9a\x36\x23\x9b\x22\x63\x4a\xae\x48\ \xdd\x28\x04\x4e\xf9\xd4\x3d\x55\x0d\xc7\xc9\x86\x11\x80\x00\x40\ \x81\x85\x0d\x25\x1e\xa1\x69\xa7\x60\xfa\x23\xa0\xc9\xa8\xfe\xc8\ \x1d\xdc\x14\x86\xa7\x61\x86\xa3\x8d\x91\x1f\x1d\x5d\x9f\xbb\x58\ \x16\xa3\x0e\x29\x27\x3e\x41\x40\xa9\xd8\x41\x81\x05\xc2\x09\xa8\ \x8a\x29\xa6\xa6\x16\xa2\x6a\x0e\xa8\x3b\xc6\xda\x12\xb0\xc0\x56\ \x92\xc3\x01\x98\x83\x01\xbc\x2b\xd9\x41\xa0\x09\x58\x43\x98\x35\ \x15\x0b\x9c\xc0\x6e\xda\x83\x27\x98\x00\x70\xa2\x69\x99\x95\xe0\ \xae\xa9\x13\x3b\x19\xd7\x1d\x12\x67\x07\x02\xec\x49\x86\x11\x1f\ \xfe\xe1\x8f\x40\xe1\x4d\x1a\x6b\x8b\xbe\xa8\x8c\xc2\x68\x8c\x16\ \x26\xa1\xe2\x5b\x9e\xde\x58\x55\x45\x25\x65\xe5\x67\x63\xfd\x88\ \xef\x28\xa5\x11\xf4\x6b\xb8\x8a\xc7\xb7\xae\x66\x3f\x9e\x22\xb9\ \x3e\xe9\x67\xd8\xab\x95\x7e\xd9\xd7\x8d\xe5\x58\x8e\xc0\x0e\x78\ \x02\x39\x20\x03\xac\xb1\x40\x84\x1e\xc2\x19\xba\x2a\xac\xa6\xe9\ \xc1\x32\x97\x4f\xe1\x54\x50\x99\x99\x07\x4c\x47\x27\x4c\x07\xd2\ \x96\xe0\x2a\x65\x98\xd5\xfc\x53\xf5\x2d\x29\x8e\xd1\x5b\x61\x46\ \x6c\x21\x9a\x62\xd5\x12\x6b\x8d\xd9\xd8\xff\x41\xa2\x8c\x55\xd5\ \x1c\xac\x81\x10\x64\x8a\xb0\x46\x2d\x40\x45\xe9\x89\xf5\x8b\x92\ \xb2\x60\xf6\xf5\x8b\x40\x82\x9f\x77\xc2\x20\xb8\x9e\xfe\xab\x9e\ \xe9\xac\x09\xec\x80\x09\x9c\xc0\xc9\xd9\xe6\x09\x58\xc3\x44\xda\ \x03\x2e\xf8\x81\xbd\x5a\x43\x5a\x1e\xc2\x0e\xc8\x03\xc9\x06\x67\ \x84\xe1\x54\xae\xed\x9a\x3c\xad\xd9\x72\x3d\x41\x27\x24\xed\xd1\ \xee\x0a\xe5\x7a\xe0\x07\x6e\xd8\x51\xa4\xd9\x08\xd1\x52\xd4\x7e\ \x8a\x4e\x76\xa7\x10\xa4\x01\x4e\x7a\xa7\xa0\xb6\x68\x8d\x6d\x82\ \x39\x6c\x02\xeb\x6e\x00\xeb\x96\xd7\x35\xd2\x1b\x18\x30\xe2\x68\ \x7e\x85\x9f\x95\xad\x78\x80\x6c\x94\x9a\x18\xac\xe9\xd9\x58\x38\ \x9b\xc8\xa1\xab\x21\x16\x22\x6a\xb6\xec\x12\x08\x81\x2a\x98\x80\ \xd7\x9d\x40\x77\xc9\xe6\x09\x98\x00\x1a\x1e\x02\x2e\x38\x82\xbb\ \xf8\x41\x44\x92\x03\x2e\x84\x99\xc2\x59\x4c\x4f\x44\xd8\x48\x2e\ \x1f\xc0\x0e\xe3\xe4\x12\x23\xe6\xae\x52\xd3\x16\x86\x3a\x3d\x63\ \x87\xd2\x69\x43\x00\xd4\x5f\xd2\x4f\x8e\x89\xae\xc5\xba\x1e\xeb\ \x25\x66\xa0\x95\x17\xeb\xf6\x40\x0f\x6c\x00\xff\xf6\xaf\xeb\xc2\ \xae\x61\xe6\x9f\x43\x95\x22\x78\x39\x61\x78\x98\x6c\x94\x5a\xd6\ \xc9\xc5\x9a\xb4\xdd\x67\xc2\xe1\x45\x56\x26\xa6\xb2\x3e\x29\xcb\ \xaa\x58\xba\xa6\x41\x2a\xcc\x22\xd8\x35\xaf\x35\xfe\xd4\xac\x27\ \x78\xc2\x05\xee\x6d\xf2\x26\xa8\xe0\x52\x50\xe7\x84\x06\x1b\x2d\ \x2e\x11\x9c\x02\x3d\x95\xe4\xc1\x06\x16\x31\xa6\x99\x60\x5d\x91\ \x3a\x89\xd2\x3b\x59\xc6\x72\xd6\x5c\x42\x5c\x8b\x76\x84\x97\xff\ \xa9\xac\xeb\x35\xe9\xb1\x16\xe6\x1c\xac\xae\xeb\xba\xee\xfe\xf6\ \x6f\x0f\xbc\xee\x9e\x0e\x26\x67\xed\xe9\xed\x7e\xca\x01\xd3\xd0\ \xf5\x25\x70\x14\xfc\x48\x8a\xb9\xa3\xb2\x66\x31\x45\x08\xa4\xb2\ \xb6\x2d\x05\xa3\xec\xd8\x3d\xa0\xe0\xe2\x44\x16\xf8\x81\xdf\x7e\ \xf0\x21\x58\x03\xf3\x7e\x97\x83\x96\x30\xf5\x70\x0e\x1b\x51\x0a\ \xc3\x91\x64\x5c\x62\x68\x07\xb6\x5f\x42\x2c\x97\x5e\xd2\x5d\xd3\ \x5c\x5c\x0d\x07\xc6\xc4\xe1\xb0\x65\x34\x95\x65\x39\xe1\x3e\x9e\ \xe2\xc5\xc6\x2e\xea\xb2\xae\x23\x3f\x32\x24\xdb\xe8\x78\x6a\xd6\ \x9e\x0a\xa2\x4d\x46\x61\x4b\x0a\x62\x94\x82\x57\x14\xbc\xd8\x5d\ \xa5\x6b\x15\xce\x2d\x04\xaf\x22\xc2\x81\x31\x05\x13\xe8\x58\xee\ \x5e\x8a\x2d\x81\xf5\xe2\x42\x6f\xe2\xc2\x83\x8a\xd9\xbd\x0e\x5c\ \x85\x52\x04\xeb\xd0\x25\x5e\x94\xd9\x72\xb5\x30\xf9\x3a\xee\xf2\ \xfd\x05\xd1\xea\xa5\x08\xd1\x9d\x08\x61\x18\xfe\xc5\x19\xe3\x87\ \x7e\xcd\xbb\x18\xb0\x76\x0e\xe2\xa0\x46\xc1\x08\x4c\x32\xd7\x1a\ \xe6\x14\xf8\xdf\x9e\x6e\x2d\xeb\xfa\x43\x24\x6f\xed\x78\xfd\xb0\ \xca\xe9\x64\x20\x0a\x22\x70\xa6\x6b\x4b\xf6\x2e\x03\x5b\xa1\x28\ \x8f\x72\x8c\x86\xb2\xf6\x11\x28\x98\xa2\x2a\xd8\xb9\xa3\x1f\x8c\ \x00\x2e\x04\x5f\x2a\x8c\x80\xde\x36\xaf\x39\x67\xcb\x50\x42\x89\ \x2e\x4f\x18\xe4\x96\xa0\x71\x86\xd0\xdc\x11\x34\xaf\xb9\x61\x31\ \x82\xa0\x3a\xe9\x65\xa1\xf4\x30\x15\x0b\x60\xeb\x45\x73\x13\x47\ \xc1\x14\x94\x57\x45\x8b\xa7\x35\xf8\xdf\x14\x44\x81\x35\x50\xf4\ \xd6\xae\x2e\x24\x33\x71\x8d\x69\x27\x80\xb5\x1c\x4e\xd6\x60\x40\ \x66\xa3\x38\x8f\xd9\x2a\x06\xef\x0b\x59\x61\x55\xa2\xb3\xbd\xbe\ \x33\x2d\xcb\x73\x44\x02\xdf\x04\xea\xed\xe1\x25\xee\xcf\xa6\xe9\ \x0a\xff\x74\xae\x66\x68\x62\xec\x32\x11\xd4\xa1\x73\x82\x50\xc3\ \xe1\x54\xdd\xd8\xd3\x49\x36\xdc\x5f\xe4\xc8\x2e\x01\x26\x15\x5a\ \xec\x78\x76\xb4\xd6\x6e\x2d\x56\x63\xb5\x39\xac\x2e\x48\x3f\xb2\ \x36\x6f\xad\x10\x5f\x75\x76\x6a\xe7\x7d\xda\x6b\x9f\x96\x35\x04\ \x7f\x97\xdc\x62\x64\x56\xae\x73\x4c\x53\xfe\xa9\xaa\xd6\xb4\x8a\ \xf5\x6d\x2a\x4c\xe0\x04\xb2\x31\x18\xc7\x17\xb1\xb0\xd1\x3c\x14\ \x57\x86\xaa\x13\x61\x24\x0d\x7f\x0c\x6d\x60\x83\x90\x5f\x31\xc4\ \x4e\xe0\x54\xae\xd6\xd3\x5f\x13\x35\x4a\xd2\x65\xb3\x25\xf2\x20\ \x8e\x40\x34\x7f\x5a\x65\x57\xb4\x09\x94\xd7\x56\x6f\xb5\x45\xd7\ \xd8\x66\x73\x75\x36\x17\xb1\x79\x01\x70\xec\x4a\xf3\x34\x37\xb3\ \xc8\xcd\x68\x2a\xa6\x75\x28\xa7\x73\x17\xab\xa2\x5b\xf3\xa3\x9f\ \xd9\xa6\x6d\x26\x6e\x16\x9c\xc0\x08\x44\x20\x4e\x4f\x41\x1a\xb8\ \xb4\xdc\xc8\x71\xd4\x6c\xcf\x95\x70\x42\x5f\xff\x03\x0b\x07\x6c\ \xae\x06\x32\x62\xdc\xdd\x0a\x37\x75\x1c\xc6\xb0\x71\x35\x77\xf8\ \xee\x41\x61\x8c\x4f\x94\x5e\x01\x21\x9e\xae\xd3\x45\x73\x65\x5b\ \x43\x8d\x65\x36\x57\x9b\x83\x68\x77\x76\xea\xaa\xee\x57\x63\xf5\ \x8a\xd2\xdb\xd6\x56\xb3\x55\x7b\x5f\x40\xa6\xac\xbd\x71\xb1\x44\ \x50\xe9\x5a\xc7\x47\x6a\x52\x29\xa0\xfe\xd9\xc0\xf9\x41\x1d\x88\ \x31\x43\x42\x20\x4e\x33\x6f\x1c\x5f\x09\x80\x10\x78\x28\xd4\x40\ \x0d\x08\x42\x96\x50\x42\x5f\x30\x23\xc0\xfe\x75\x72\x1f\x37\xc0\ \x76\xc2\x32\x84\xc1\x32\x60\xc1\x32\xfe\x24\xad\xae\x5d\xd8\xe3\ \x6e\x24\x4a\xfa\x4e\x8e\xbc\xd8\xf5\x4d\xf5\xe8\x96\xb8\xbd\x55\ \xf6\x78\x9b\xc0\x66\x7f\xf7\x1c\x54\x73\x34\x57\xf4\xfe\x99\x37\ \x7a\x83\x43\x65\x3b\x31\x38\x64\xf4\x58\x37\x9d\xdc\xa6\xec\x54\ \xca\xb7\x8a\x59\x65\x05\xe7\x05\x80\x32\xab\x8c\xc6\x75\x1d\x54\ \x2a\x44\x88\xdd\xbd\xde\xb4\x35\xdc\xe7\x6f\x47\xc6\x81\x67\x11\ \xc1\x20\x78\x94\x33\x46\x71\x4f\x6e\x85\x79\xc0\xe4\x4e\xee\x74\ \xef\xc1\x96\x53\xd8\x0b\x84\xc1\x0b\x18\xc3\x0b\x60\x78\x27\x1c\ \xad\x47\x5e\x18\xc2\xb2\xe9\x64\xec\xd2\x34\xc2\x6d\xd3\xad\x9e\ \x10\x8c\x40\x8b\x62\xf6\x1c\x80\x37\x67\x57\xb4\x45\x5b\xf6\xca\ \xed\x9f\x9f\x8f\xf4\x58\x47\x33\x8e\x73\xb4\x46\xef\x69\x34\xbf\ \xda\xb2\x9e\xa2\x6f\x43\xa9\x4c\xd7\x32\xa7\x72\xdf\x3f\xda\x26\ \x98\xf6\x37\xa3\xcf\x36\x6e\xe3\x73\x5b\xf2\xf3\xac\x84\x64\xe7\ \x68\xce\x50\x5e\xf9\x96\x2f\x43\x00\x84\x81\x98\x63\x81\x99\x97\ \xa4\x96\x77\x02\x16\x6c\xf9\xe4\x62\xf8\xa9\xb7\xc1\x96\xc3\x3a\ \x85\xed\x41\xe5\x3a\xae\xad\x45\x67\xb0\xaa\x60\xfd\xb2\x28\x9d\ \x43\xf3\x24\x57\x34\x8c\xaf\x78\xfe\x8b\x0f\xfb\x8d\xab\x37\xfe\ \x92\x17\xd7\x72\xb7\x7a\x8f\xe7\xb2\xb7\x78\x93\x12\xdc\xf7\xa1\ \x36\x4b\xaf\x62\x90\xbf\x90\xbd\xaa\xf5\x6c\x0b\x81\xa4\xff\xa7\ \x17\x57\x25\x92\x9b\x8c\x06\xf5\xf3\xc9\xb0\x51\x44\x30\xf8\x3f\ \x6c\x79\x18\x18\xc3\x36\x14\x83\x31\x18\x83\x98\x07\xc0\xaa\xb3\ \xba\x85\xc7\xbb\x86\x7b\xf9\xe4\x66\xb8\x83\xb7\x81\x96\x67\xf8\ \xe4\xc6\x93\x71\x29\xc4\xfb\x08\xa2\x58\xd8\xe0\x46\x67\xb4\x77\ \x63\xf6\x8d\x83\x83\x9e\xab\xf8\x14\x88\x77\x8d\x65\x34\x8d\x6a\ \xf6\x26\x90\xb6\x65\x53\x34\xb3\xcf\xc1\x08\xdc\xf8\xc3\x43\x33\ \xa2\xa7\x2b\x8b\x76\xfc\x27\xa7\xe6\x7f\x42\x09\x7d\xa3\x9c\xa4\ \x6f\xb0\x94\x02\xb9\x6b\xff\xd1\x3a\x9a\x8c\xb9\x7b\x39\x16\xb4\ \x03\x17\xb4\x3b\xbb\x6f\x83\xbb\x5b\x38\xab\xab\xfa\xaa\xf7\xb2\ \xe5\xc6\xba\x85\x6d\x79\xbc\xfb\x32\x1f\xaf\xd2\x89\xc1\x98\xb8\ \x16\xf1\x67\xaf\xb8\x55\x73\x34\x45\x6f\x35\xb0\x57\xf3\xb0\xe3\ \xa4\x79\x39\xfc\x22\x67\x34\xcb\x7d\x63\xb1\xd3\x79\x59\x7f\x1f\ \xe9\x7a\xdf\xa2\x5b\x30\xb5\x03\xa8\x7d\xb7\xb4\x7e\xa7\x62\x94\ \xca\x74\x4f\x37\x88\x09\x34\xfe\xf8\x33\xe8\x3c\xa9\x63\x01\xa9\ \x97\xba\xa9\x6f\x39\x9a\xd3\xd3\xd1\xc6\x7a\x27\x94\xf9\x99\x97\ \x20\xdd\xcb\x9d\x50\x87\xe0\xeb\x74\x9f\x35\xae\xae\xfe\x6e\x80\ \xfe\xaa\x6e\x45\x77\x74\x77\x3f\xfd\xa7\x41\x7c\x7b\x5f\xf5\x69\ \x2b\x7b\xc6\x6f\x2d\x78\xcf\x01\xc4\x6b\x3d\xb3\xce\xb9\xeb\xb5\ \xad\x3a\xa3\x66\xb9\xb2\xf5\x7b\x17\xb9\x4b\xab\xe2\xca\xa7\xbd\ \xb8\x43\xc4\xda\x9f\x7b\xac\x57\x18\xac\xb7\xfa\x85\x7f\xf9\x84\ \xc3\xbd\xde\xab\x7a\x86\x23\x6c\xc0\x5a\x91\xab\x24\x4c\x76\xec\ \xd2\x77\x0d\xfc\xa7\x99\x43\x0f\x78\xc2\x06\xa4\x85\xe1\x67\x76\ \x66\x73\xb7\xa0\xbb\xb8\xaf\x97\xee\xa7\x21\x83\x66\x4f\xb4\xb2\ \x7f\x9a\x67\x0b\x3b\xd3\x6b\xfd\xe1\xd9\xa0\x7f\x56\xfb\x7b\x37\ \xba\xd8\x4f\x7b\x0c\x02\xb9\xb9\xb2\x34\xac\x72\xce\x81\x67\x49\ \x44\xa4\x7e\xdd\x03\x74\xce\x63\xb9\xdd\x87\x7a\x18\x60\x01\xaf\ \x00\x2c\xb1\x61\xd1\xe6\x70\x49\x53\x91\xad\xa7\x8c\xe7\xfe\x16\ \xe4\x06\x20\xc2\x9d\x2b\x2f\x40\xcc\x19\x21\x24\xca\x88\x82\x06\ \x11\x16\x8c\x42\x90\x20\x38\x13\x73\xc0\x59\x8b\xa2\x70\x62\x94\ \x39\x10\x2f\x9a\xdb\x64\xfe\xce\xdc\x9c\x29\xe0\xa2\x4c\x89\x92\ \x46\x08\x0b\x93\x42\x84\x20\x44\x69\x32\xcb\x12\x3e\x2f\x61\x2e\ \x91\x99\x85\x66\x4d\x99\x37\x6f\xc2\xd4\xf9\xf2\x66\x4d\x9b\x32\ \x77\xc6\xcc\xc2\xa2\x65\x50\xa3\x47\x91\x72\xe2\xa3\x94\x13\xa7\ \x50\x35\x6a\x84\x82\x49\xe9\xdf\xbf\x3d\x1e\xf6\x64\x25\x42\x64\ \x8f\x9c\xab\x9d\xc0\x82\xc5\xe2\xc1\x83\xd8\x65\x60\x79\x74\xea\ \x4a\x44\xce\x56\xae\x5a\xa3\xe5\x0a\xd5\x94\x6e\xd3\xa5\x4b\xaf\ \xe4\x5d\x72\x85\x05\x18\x86\x51\x90\x99\xeb\x61\x4f\x85\xbd\x0d\ \xe6\xac\x39\x34\x27\xd2\xa0\xc4\x85\x06\x17\xa2\xfc\x3b\x31\x62\ \xc5\x89\x04\x2d\xce\x79\xd8\x91\xe3\xc6\x39\x21\x41\x16\x2c\x79\ \x32\x4d\x9a\xcb\x2b\x89\x02\x8d\x39\xd3\x24\x51\x9a\x38\x71\x06\ \x75\xc9\x73\x89\xcf\x96\xb3\x65\x0b\x41\x46\xc9\x05\x6e\xa4\xbf\ \x81\xbf\x6c\x3a\x57\xe9\x4b\xaa\x56\xf7\x3c\xcb\x8a\x35\x6b\xa7\ \xb2\x61\xb1\x40\x0f\x83\x25\xcc\x33\xe6\x6d\x89\xe4\xd2\xbe\x75\ \xcf\xd6\xb8\xa1\xe6\x86\x1f\xee\x34\x57\xf6\x5c\x9c\xf6\x82\x00\ \x53\xd1\x05\x25\x77\xf6\xe0\x7b\xa2\x44\xd2\x1a\xc7\xcd\x1d\x21\ \x4f\x84\x9c\x52\x61\xfe\xfe\x82\x24\x15\x9a\x62\x8e\x8d\xcc\xf1\ \x47\xa3\x8e\x04\xb4\x88\x31\xd4\x50\x4a\x68\x20\x21\x7e\x5a\x8d\ \xa6\xd6\x5c\xbb\x0d\x36\xdf\x64\x9b\xa9\x36\xd5\x82\x62\x01\x99\ \xf7\x28\xc1\x30\xb8\x11\x47\x3c\xee\xb9\xb0\xac\x3b\x31\xba\xb0\ \x3a\xc1\x02\x8b\x76\xce\xea\x4e\xc6\x53\x88\x88\x26\x94\x68\x70\ \x8c\xa6\x46\x1c\xc1\xeb\xb1\x47\xed\xa2\xe9\xc2\xbc\x2b\x38\xc9\ \x42\x3d\x30\x5c\x70\x01\x30\x73\xdc\xf1\xc4\x1e\x73\xa2\x38\xa9\ \x3e\x8e\xa8\x34\x21\x0a\x6b\xac\x99\x43\xa2\x84\x14\x4a\xc3\x20\ \xc9\x50\x9a\x68\x8e\xce\x0e\xa4\xf2\xb3\xc4\x04\x1c\x81\xa4\x93\ \x1a\x54\x08\x35\x0b\x69\xab\x89\x42\xdb\x5e\xbb\x8d\x0f\x11\x69\ \xdb\x10\xa9\x25\x84\x38\x00\xbe\x73\x48\x0c\x94\x44\x4e\x8e\x83\ \x2e\xba\xe8\x4e\x0c\xcb\x03\x38\x9e\x1b\xeb\x14\x1d\x4f\xc9\x6a\ \x8f\x1c\xa3\xa9\xa1\xd2\x1c\x6b\x90\x4b\x2e\xf0\x72\x89\x4b\xbb\ \x50\xb4\x23\xf2\x8a\xf4\xd6\x4b\x92\x12\x4a\xaa\x84\x30\x0b\x82\ \xac\x31\xc1\x04\x2a\x61\x35\xf3\x21\x91\xc0\x04\x93\x05\x94\x4c\ \x1b\x33\x56\x04\x41\xfa\x68\xcb\xd1\x6e\xf5\xd2\xcd\xd1\x22\x9c\ \x69\xa8\xa1\x5a\xfe\xa3\xf3\x35\x0e\x79\xba\x33\xcf\x9d\x7c\x5b\ \x42\x1e\xc2\x54\x98\x47\xd0\x6b\x93\x22\xb4\xaa\x16\xa9\x33\xc6\ \x98\xe9\xc0\x22\x8b\xac\x06\x4e\x29\xf7\x2a\x0f\x1e\xb5\x34\x1a\ \x41\x72\x14\x24\x2a\xb9\x6c\xac\x34\x97\x4c\xe3\xe2\x51\xae\xba\ \x9a\x5a\x02\x3d\xbe\xd6\x3b\xd5\x5f\x4a\x90\x49\x83\x85\xda\x6e\ \x35\x48\x58\x57\x35\xea\xa1\x87\x4d\x70\xd9\x68\x23\x2b\xd5\x24\ \x09\xd8\x5b\xaf\xbc\xc8\x62\x5d\x35\x4b\x2c\x4b\xd1\x46\x93\xac\ \xb1\x91\xde\x84\xd3\x58\xa2\x28\x64\x89\x64\x3b\x57\x63\x36\x43\ \xdc\x96\xa0\x44\x85\x97\xf5\xc0\x56\xe6\x9d\x9a\x2a\xd4\x03\xea\ \xb6\x31\xa6\x18\x63\x02\x18\x0b\x8e\x72\x29\x7d\xf4\xd1\xa7\x88\ \x86\x2a\xd3\xa8\xe2\xcd\x14\xd4\xa7\xe6\xd5\x94\xb8\xba\x84\xbb\ \xd3\xc8\x28\xda\xf3\xd7\x80\x91\x06\x26\xb8\x63\xfe\x5e\x35\x07\ \x17\x8e\x14\xee\x81\x23\xc7\x44\x5a\x53\xb2\x28\x22\x02\x09\x19\ \x87\xc6\xbc\x28\xed\xc4\xbe\x6c\x8d\x3f\x84\x24\x66\x69\x59\x97\ \x46\x46\xb6\xc2\x0a\x99\xd5\x10\x4f\x98\x8a\x7a\x89\x05\x77\x5e\ \x56\xc3\x85\x99\x11\x9f\xaa\xaa\x45\x3b\xf1\xb6\x18\x2f\xbc\x0d\ \x60\x97\x45\xfe\x81\x4e\x37\xaa\xcb\x6d\x8c\xea\x29\x1c\xe7\xcd\ \xf1\xc6\xcf\x9d\x7e\x1a\xa6\xe2\x78\x9a\xba\x6a\x4a\xae\x1e\x28\ \xeb\x5b\x4b\x9a\xb0\x41\xd3\xa2\x78\xe8\xd5\x1e\xbe\xd6\xac\x6b\ \x89\x84\x30\x6d\x84\xc4\xae\x8c\xe8\xa2\x87\x90\x41\x26\x76\x87\ \x38\x2e\xc9\xe3\x2b\x41\x06\xb6\xd8\xda\xe4\x3c\x79\xc2\x65\x25\ \x54\xf9\xb7\x25\x0c\xa0\xd6\xf0\xc4\x13\x3f\x6e\xac\x30\x8c\xe9\ \xc0\x8b\x62\x76\xfe\xd6\xc5\xe8\x26\xc7\x8a\xd2\xf3\x71\x04\x9a\ \x73\x4a\x97\xee\xd1\x29\x7c\xeb\x92\xe9\x0a\x21\x90\xac\xda\x05\ \x84\x06\x5e\x75\x84\x81\x5a\xd2\x9b\xf5\x94\xa6\x64\x0e\x13\x64\ \xc9\x6b\x9b\x70\x95\x09\x3e\x82\x3c\x89\x38\x44\x76\x20\xd1\x92\ \xef\x54\xb2\xb5\xfd\x0d\x8b\x58\x77\x93\x1a\xf3\x90\x75\x2c\x9f\ \xe4\xa4\x74\xd2\x3b\xca\x12\xc0\x40\xb8\x97\x3d\xa2\x05\xd8\x1b\ \xdd\xb5\x90\x51\x15\x9d\x15\x43\x04\x22\xf0\x9e\xb7\xc2\x10\x43\ \x6f\xe9\x2c\x72\x3f\x4b\x5f\xb9\x4e\xd1\x00\x38\xc0\x61\x0f\x70\ \xf0\x8e\xbc\x94\xa6\xb4\xf7\x89\x87\x53\xa1\x10\x15\xbf\x90\x84\ \x0c\x17\x04\x0f\x30\x06\xb9\x55\x7d\xa6\x00\x21\x82\xd9\xa9\x36\ \xac\x12\xfe\x48\x83\xb2\xf4\xaa\x86\xd9\x07\x1c\x1f\x9b\x03\x32\ \x1e\xb8\x36\xe1\x09\x4f\x25\x6c\x22\xc8\x04\x25\x36\xb1\xbb\xe5\ \x8d\x64\x27\x73\x0d\x87\x38\x38\xa2\x2c\xcc\xe3\x65\x30\xbb\x82\ \x09\x07\xb5\x93\x14\xfe\xc3\x0b\x2e\x54\xc3\x0b\x63\x38\xbe\x18\ \xc6\x70\x67\x61\x40\x17\x0e\xbf\x32\xbe\x4e\xec\xa2\x13\x36\xdc\ \x94\xd3\x9c\xf2\xa3\x1f\x85\x8a\x13\x79\x51\x4f\x0b\xa8\x26\xbc\ \x13\x9c\xa0\x20\xd6\x18\x81\x09\x70\x81\x08\x13\xb4\xee\x35\x3a\ \x59\x42\xc1\x16\x32\x94\x06\x8d\x60\x4c\x3d\xf0\x04\xc3\x34\x03\ \x91\x8f\x7c\x44\x76\x62\xac\x88\x9a\x18\x94\x3b\xdd\x95\x46\x32\ \xc9\xba\x9b\x4f\x4a\x36\x27\xe8\xdd\xe9\x6f\x46\x91\x16\xb5\x0a\ \x53\x0f\x3c\x02\x87\x2e\xe0\xd1\xc9\x1e\x8d\x21\x82\x62\xd0\xe0\ \x5b\x86\x84\x03\xb9\x76\x98\xcd\x1d\xee\xe1\x51\x3a\xd2\x61\x8b\ \x06\x79\x28\xb5\x4c\x2a\x5e\x36\x9a\xe4\xa7\x34\x55\x17\x4b\xd6\ \x2f\x0a\xf2\x90\x58\x1a\xa6\xe4\x89\x0d\x78\x02\x11\x91\x61\xc9\ \x6c\x64\xc2\xba\x81\x49\x0d\x4c\x9f\xc4\x45\xd8\xc4\x26\x40\x2b\ \x65\xe9\x54\x5f\x9c\x48\x69\x0e\x6a\x3c\xd6\xed\xcf\x4b\x69\x44\ \x0d\xfe\xdf\x30\xe8\xbf\x60\x42\x0f\x6f\xb4\xf9\x4d\x16\x5c\x56\ \x47\x35\x3c\x83\x74\x77\x59\xe6\x52\x9a\xe9\x3e\xe3\x54\x25\x00\ \x61\xd8\xc5\xe4\xb8\x19\x8d\x6e\x5a\x4a\x73\xe0\x49\x9a\x4a\x7b\ \xc8\x48\x2c\xec\x42\x9c\xce\x91\x14\x8d\x6c\xb4\x9d\x1d\x3d\xcd\ \x2e\xfb\x02\xc1\x1a\xd6\x40\x35\xbf\xe0\x2a\x0a\xff\x74\x92\x3d\ \x3c\x81\x0b\x13\xa8\x2e\x70\x53\x0c\x1c\x1f\x56\x05\x2c\x21\x08\ \x66\x03\x48\xdd\x80\xc2\x38\x02\x46\x8e\x50\x02\x30\x0b\x39\x88\ \x43\x75\x69\x30\x5c\x9e\xc0\x56\x7c\x6b\xde\x49\xfc\x20\x04\x3f\ \xf8\x21\x59\x71\x24\x66\x6c\xa0\x85\x0f\x11\xbe\x8c\x00\x1c\x05\ \xe9\x70\xe6\x22\x28\xba\xe8\x04\x5f\xe1\x81\x4a\x8f\x8e\xe3\xc3\ \xef\x6c\xce\x47\x85\xbd\x51\x39\x55\x5a\xae\x1d\x2e\x8a\x51\x7b\ \x10\x4b\x58\x26\xd5\x29\x1d\xd5\xe8\x5e\xf8\x12\xce\x25\x5d\x00\ \x86\xd2\x90\x64\x7f\x26\x40\x84\x27\x8e\x0a\xda\x1e\x58\xa3\x24\ \xf8\x1c\x4a\xb4\x56\x95\x9a\xda\x14\xf5\xa8\xf0\x31\x4c\x0f\xba\ \xc6\x9b\x83\x52\x04\x97\xfd\xec\x52\x69\x36\x29\x84\x13\xcc\x09\ \x27\xcd\x63\xeb\x5a\xd5\xea\x87\x3a\x01\xa5\x27\x59\xa8\x03\x5b\ \xfe\xb3\xb0\x93\x2c\x54\x4f\xa3\x1a\xb8\x47\x4f\x9b\x69\x97\x11\ \x39\xe5\x72\xc4\xb9\x2b\x53\xc0\x23\x08\xed\x0a\xe2\x38\x44\x00\ \x4f\x24\x59\x7a\xbe\x4c\xe1\x10\x47\xe1\x4d\x1f\x11\x80\x86\x5e\ \xc7\xb6\x08\x2c\x70\xd9\xd1\xa6\xe0\xd7\x94\x2b\xfc\x74\x0d\x4a\ \xd2\x2c\x43\x3f\xe9\x35\xd0\xba\x16\xa9\xa3\x4c\x6e\x3e\x89\xa2\ \xdc\xd6\x09\x2e\x0a\xae\x34\x0c\x7c\x0a\x63\x0f\xb1\x01\x4c\x21\ \xf2\x88\xc2\xd5\x90\x51\x5b\x94\x90\xd5\x34\xa6\xc9\xdd\x85\x43\ \x06\x9b\xe7\xb5\xe6\xb7\x2c\xa8\xc3\x1a\x7b\xe2\x07\x47\xa8\x22\ \x09\x27\x48\x2e\xe0\x98\x0b\x33\x23\x48\xf7\xba\x1d\x3d\x21\x5f\ \xc1\x63\x34\xcd\xed\x95\x74\x4d\x11\x44\x0e\xb9\x5b\x95\xc2\xe2\ \xa8\x46\x42\x33\x57\xa4\x7a\x98\xd2\x4b\xa9\x8b\xc8\x3c\xd6\x21\ \x59\x82\xec\x1d\xf8\x1a\x56\xbe\xf3\x6d\x41\x92\x5c\x50\xe1\xfd\ \x8d\x60\x0a\x53\x00\x25\x68\x5b\xeb\x09\x73\x8c\x80\x28\xb9\xe3\ \x1f\xe0\x52\xd2\x3a\x16\x44\xc1\x1c\xfc\xad\x63\x82\xc5\x66\x02\ \x32\x4e\xd9\x00\x06\x53\x2b\xeb\x10\x9a\x86\x4d\x46\x21\xb7\x64\ \xb5\xdb\x85\x30\x48\x21\xe4\x6e\x30\x0b\x37\x90\xc9\x71\x93\xfe\ \x90\x0a\x41\xfb\x81\xb8\x59\x90\x87\x08\x1f\xf1\xdc\xc4\x45\xf2\ \xbb\x8c\xce\x6b\x50\x9e\xe2\xae\x50\xb8\xa0\x2a\x9d\xea\x5c\x0d\ \x70\x88\x48\x6d\xf2\x90\xbc\x98\x2a\x2f\xfa\x6a\x54\x23\x6e\xe2\ \xd4\xb0\xa0\xfa\xce\x15\x72\x01\x02\x23\x00\x35\x49\x23\xe1\xac\ \x3f\x41\x89\x8b\x50\xb6\xd6\x1e\xb8\xa0\xf3\x14\xbc\x66\x82\x34\ \xf4\x6f\x04\x82\x41\xcc\x95\xe6\x7a\xe6\x97\xc1\x07\x11\x02\x0c\ \x1e\x13\x11\xe2\x4e\xc9\xa4\x55\x97\x23\x01\x43\x9d\x95\x87\x32\ \x0d\x4f\xc8\x24\x75\xa8\x10\x4d\xfc\x3c\x13\x47\xa4\x42\xd6\xa9\ \x30\xf1\x86\x58\x20\x8f\x22\xd8\xe3\x11\xf5\xb8\x23\xe2\x22\xd9\ \x53\xe1\xb8\x0f\xba\xf0\xdb\xe3\x61\x2f\x65\xa3\x4c\x97\x8b\x5c\ \xa3\x8e\x94\xfa\x72\xd4\x4d\xf4\xe5\x9b\x46\xef\xb5\xb4\x8f\xb4\ \x93\x8b\x75\x62\x32\xca\x61\xb5\x86\x95\x71\x51\x65\x04\xe2\x22\ \xcb\x46\x85\xcf\x3c\x97\x5a\x66\xc2\xd4\xda\x1c\x55\x15\xf6\x99\ \x91\xda\x03\x4a\x1c\x50\xcd\x06\x28\x8d\x9b\xd9\x3a\xe1\xdc\xb9\ \x9a\x24\x64\xcd\x30\x1c\x8b\x6b\x6d\x16\xec\xf9\x06\x35\x01\xdc\ \xb6\xf9\xc1\x8f\x54\x08\xb7\x26\x75\x90\xc7\x39\x8a\xc0\xfe\x03\ \x10\x60\x6f\xaf\x34\x2b\xac\xa3\xf3\xaa\x94\x3d\xf6\xb8\x52\x3d\ \xba\x61\xa7\xf9\xad\x3e\x1c\x92\x2b\xd3\xe8\xc5\x21\x7a\xa1\x8e\ \x5e\x1d\x0d\xf6\x69\x7b\x31\xd2\x7a\x66\x3b\x02\x64\xb4\x0a\xe1\ \x55\xae\xf2\x7e\xe5\x79\xd4\x61\x1b\x46\xec\x85\x99\x27\x32\x31\ \x9e\x60\x4f\x1c\x40\x80\x54\x8a\xf0\x66\xe5\x9c\xcb\x13\xc4\x79\ \xee\xba\x0d\xf9\x3d\x89\xfb\x56\xdf\x5a\xfb\xc3\xc7\xba\x01\xe0\ \x54\xc1\x0f\x5c\xf0\xc3\x1a\x75\x58\x42\xcb\x87\x22\x0f\x4a\x9c\ \x23\x03\xe7\x36\x8a\x8b\x8f\x02\x79\x90\xf6\xa8\xa5\x46\x7b\x34\ \x1f\xf6\x78\x6f\x4c\xdd\x88\xde\xe4\x5a\x17\xd2\x12\xdb\x4d\x73\ \xdd\x94\xf4\x3f\xbe\xf7\xa8\xc9\xc9\xee\x8e\x0e\xe5\xd9\x69\xb8\ \x6f\x48\xb8\x2e\x6b\xaf\x87\x12\x11\x88\x60\xb8\x93\xb2\x4c\x6b\ \xa4\x9a\xd9\xb5\xb8\xc7\x72\xb1\x4d\xb0\x03\x81\xe2\x12\xb7\x1d\ \x4b\x2b\x59\xdd\xe9\xfa\xb8\xdb\xf9\xce\x2c\x33\xd6\x50\xd6\xca\ \x56\xd7\xf4\x1d\x6f\x75\x08\xbc\xcc\x55\x41\x68\xa9\x9d\xa0\x1e\ \x45\x38\x47\x2d\x22\x1f\xdf\x9e\x47\xed\xf1\x8e\x1e\x62\xa3\x61\ \xb2\xc7\xab\x6c\x73\xea\x8a\x25\xcb\xcf\x76\x74\xf4\xfe\xd1\x2f\ \xc7\x03\x6d\x60\x0e\xea\x23\xa5\xde\x06\x8c\x3a\xa7\x4e\xb9\x82\ \x75\x5f\x82\xf5\xa2\x40\xb3\x4e\x60\x7f\xb6\x6e\xf6\xa6\x20\xe1\ \xbc\x0e\xe1\x3e\x0b\xcb\xe8\xc9\xf6\x6a\xcf\x01\x25\x50\xf6\x16\ \xce\x04\xc8\xc1\x1c\x76\x80\xe3\x90\xc1\x9d\x36\xc9\xe4\xa4\x6f\ \xc2\x2a\x6c\xb3\xea\x2e\xad\x7c\x89\x83\x8a\xcb\xc3\x7e\x6b\xcf\ \xb0\xad\x36\x74\x81\xdb\x64\xce\x0f\x0c\xef\x25\x6c\x8e\x12\x72\ \xce\xf1\x82\x42\xfc\xc6\x4f\xf2\xa2\x86\x29\x5a\xec\x84\x0c\x60\ \x5b\xd8\xab\x91\x1a\x80\x08\xbe\xa9\xa4\xa2\x83\x87\x24\xa5\x87\ \xb0\x82\x39\x9c\xc3\xfe\x9c\x83\x39\x68\x24\xff\x4e\x2f\x5d\x8c\ \x88\x53\x72\xa1\x0b\x72\x01\x6f\xaa\x68\x3d\x78\x69\x7f\xb0\xc4\ \xca\x12\x30\x0c\xab\x0c\x4b\x0e\x6e\x0a\xca\x70\x0a\x18\x6a\x95\ \xca\x10\x94\x5c\x05\x0d\xa7\x0c\x4b\x62\xcd\x3e\xd4\xcc\x1a\x78\ \xa9\x03\x27\x06\x04\x1d\x4c\xce\xec\x50\xfa\x96\xe7\x04\x53\x10\ \x06\xab\x8d\x26\x8e\x4b\x15\x52\x01\xfb\x62\x30\x00\x15\xef\x1c\ \xf0\xa1\x98\x46\xa7\x2e\x00\x90\x29\xa4\x4b\x07\x85\x83\xc5\xe8\ \xe2\x07\xff\xa1\x13\x06\x09\x5c\xc4\x05\x9c\x7a\xfe\x06\x51\xc4\ \x25\x51\x9a\xb0\xfe\xf6\xa0\x0d\x92\x70\x0a\x71\x4a\x5e\x38\x45\ \x47\xba\x23\x3b\xf6\xa5\x2f\x30\xc9\xc1\xe6\x6e\x77\xce\x50\x0c\ \xc7\x10\xbf\x52\x62\x7f\x6a\x05\x57\x52\xc2\x4b\x76\x67\xca\xbc\ \x30\x01\x31\x50\xa9\x82\x47\x15\x22\x66\x0f\x4f\x62\xe5\xfc\x80\ \x93\xf4\xf0\xd9\x36\x69\xad\x84\x89\xb8\x52\x0e\x19\x3b\xac\xef\ \xea\xe0\x04\x08\x51\xd0\x1c\x41\xfb\x78\xa2\x0e\x5a\x20\xe7\x76\ \x2e\x50\xa2\xab\xdd\xee\x42\x12\x21\xb1\x11\x39\x81\xd2\xfe\x01\ \x0b\x4a\x6a\x86\x62\x88\x5b\xc6\xc7\x45\xc2\x05\xc9\x58\xe4\x2a\ \x92\x90\x1e\xf7\xef\xc7\x84\x8c\x69\x26\x2b\x52\xb0\xa2\x2d\xba\ \x60\xbe\xc0\x60\x3d\x60\x91\x17\x0f\x10\x94\x16\xd0\xeb\x7a\x91\ \x0c\x3d\x09\x17\xfb\x49\x62\x7c\x71\xca\xaa\xec\x6b\x64\x4d\xa0\ \x90\xa1\xcd\xbc\x64\x04\x4b\x46\xad\x4a\x43\x1e\xe4\x61\xee\xf4\ \xf0\xa1\xd6\x48\xef\x04\x51\x1a\x57\x2e\x35\xb2\xc0\x11\x02\x2d\ \x15\x54\x21\x0b\xf4\x81\x0f\x5a\x52\x26\xfc\x40\xf1\xcc\x0d\x1c\ \xef\x4a\x74\x76\x70\xfc\x6e\xf2\x11\x9d\xa2\x1e\xb6\x25\x3a\x64\ \x28\x13\x35\x91\x2c\x26\x07\x09\xbf\xa2\xbd\xfe\x56\x91\xfe\xea\ \xf1\xa6\xe4\xe5\x86\x96\xa3\x0d\x3a\x41\x0e\xe4\xa0\x0b\x40\xa0\ \x0b\xea\x47\xb3\xe4\xcc\x4b\xac\x01\x19\x0e\xd2\xeb\xbe\x10\x0d\ \xcd\x70\x21\x07\xe2\x41\x1e\xd2\x17\x3d\xe9\x0b\xe3\x50\xa9\x5c\ \x65\xeb\x3c\xee\x22\xc9\x4a\xfa\x7e\x2b\x77\x38\x32\x0d\xdc\x89\ \x19\x4f\x40\xfa\x9a\x0f\x36\x10\x0f\x19\xeb\x72\xe5\x6a\x2e\x0d\ \x5c\xd0\x0f\xfe\x4e\xef\xfc\xa0\x05\xea\x61\x11\xb1\xc5\xb2\xf8\ \xea\x7d\x1c\xf1\xbb\xdc\x27\x3c\x88\x86\x27\xd3\xf1\x09\xdd\x51\ \x1d\xc7\x02\x2b\x78\x88\x28\x19\x45\x51\xb4\xa2\x39\x9c\x12\xc9\ \x1a\x60\xff\xb6\x29\x0a\x73\x88\x28\xef\x8f\x08\x8c\xc0\x08\x08\ \x33\x49\xe4\x81\x0b\xe1\x49\x2b\x13\x50\xd6\x14\xd0\x0d\x15\xb2\ \x16\xf1\xeb\xe3\xc6\xd2\x0b\x77\x47\xe1\x94\x4a\xa9\x32\x30\x15\ \x22\x2c\x62\xe2\x8e\x42\xd4\x6a\xee\x1c\xcc\xe3\x38\xb0\x2e\x83\ \x2b\x10\x2d\xa4\xb8\x8c\xeb\xb8\x9c\x51\xb8\x6a\x63\xc4\x0a\x51\ \x15\x0c\x4f\x1f\x96\x40\x1f\x5a\x4e\xc4\x5a\x40\x1e\x40\xc0\x06\ \xef\xea\xf1\x12\xb3\xa3\x9a\x42\xc6\x22\x4d\xd2\x5a\x2a\xc6\x6a\ \xc0\x5d\x04\x01\x32\xc7\x49\xf4\x4e\x81\xfe\x51\x16\x45\x5c\xe0\ \x71\x45\xd8\x0b\x0b\xe8\x4f\x2c\x3c\xf1\x32\xe3\xf3\x67\x3e\x73\ \xb1\xee\x4f\x52\xe4\xe0\x1e\xe4\xa0\x1e\xea\xeb\x15\xd3\xc0\x22\ \x77\x67\xe1\x60\x93\x2b\x1f\xb2\x2c\xd3\x70\x20\x6c\xf3\x0d\xc9\ \x12\x0c\xd1\x32\x2d\x47\x40\x15\x1a\xaa\x19\x81\xe5\xf8\x38\xd2\ \x00\x5c\xc0\x38\x9b\x71\x1a\x6b\xa2\xe5\x64\xc2\xcf\xfa\x0c\x59\ \xa2\xcf\xc3\x5a\xa2\x0e\xd2\x20\x09\xac\x21\x09\x84\xcb\xcf\x64\ \xf4\xb8\x86\x40\x1e\xf0\xa1\x3b\x77\xe2\x29\xa2\x42\x3c\xb3\x85\ \xba\xd2\xd3\x5d\xa0\x42\xbb\x2c\x8f\xf2\x82\x54\xbb\x20\x33\x2b\ \xd2\xa5\x9c\xf6\xa0\x01\x6e\x26\x00\x66\xa8\xa4\xc2\x20\x00\x7a\ \x26\x5c\xc0\x22\x0c\xb6\x21\x0c\xb8\x20\x0c\x5a\xa4\x2c\x3e\xf1\ \x13\xe1\x13\x2b\x7a\x4c\x52\xee\x61\x0f\xea\x21\x03\x5a\xe0\xc9\ \x5e\x71\x04\xc8\xaa\x00\x23\x12\x36\x65\x0f\x21\x25\x74\xca\x38\ \xcb\xcb\x6e\xf3\x0d\xad\x2c\x15\x04\x2a\x15\xda\x0c\x38\xdb\xd2\ \x2d\x93\xf1\x04\xe4\xe1\x43\x37\x90\x23\x9f\xed\x39\x4b\xf0\x44\ \x6b\x03\xf1\x3e\xec\x39\x6f\xc3\x0f\x04\x4d\x15\x4e\xc0\xcf\xac\ \x33\x30\x67\x70\x08\xc0\xe0\xf1\xaa\xfe\xcb\xb2\x74\x10\xbc\x80\ \xf4\xaf\x82\xd4\xf2\x8c\x46\x48\xd3\x13\x32\x2f\xb3\x72\x54\x8a\ \x49\xd5\x71\x86\xbc\x25\x67\x76\x46\x9c\x02\x60\x1b\x76\x26\x7c\ \x26\xd3\x45\x6e\xa6\x32\x19\xeb\x90\x80\x0c\x09\x9f\xa1\x1e\x50\ \x33\x20\x1d\x2c\x0f\xc9\x2a\x37\xdd\x34\x94\xde\xd4\x0c\x65\x71\ \x21\xbd\x24\xcc\xe8\x94\xa1\x70\xeb\x0d\x91\xe1\x80\x7c\x13\x43\ \xaf\x52\x43\x91\x71\xe5\x00\x55\x1e\x0c\x40\x89\x36\x50\x0f\x9f\ \x93\xad\xfa\x6e\x44\x6d\x83\xef\xa2\x2f\xb9\x6e\xe0\x04\x52\xc1\ \x1a\x62\xb4\x44\xaf\x53\x1f\x6c\xae\x0f\x5c\x00\x04\x44\x04\x07\ \x37\x15\xaf\xce\x93\x31\x8b\x46\x47\x8b\xd4\x5d\x20\xb3\x56\x6f\ \x86\x2c\xc6\xc2\x45\xbc\x05\x72\x54\x55\x60\xe7\x93\x7b\x60\xe8\ \x45\xdc\x51\x4a\xd5\xb1\x13\x6d\x15\x5d\x7a\x88\x28\x33\xe0\x19\ \xe4\xa0\x05\xc0\xe0\x92\x38\x52\x4d\x30\x96\x0c\x23\xb2\xf6\x38\ \x56\x01\xb1\xa4\x17\xe5\x34\xcc\xc6\x4a\x97\x70\xab\x34\x54\xc1\ \x1a\x52\xc1\x04\x7c\x93\xa1\x3a\xb0\x4f\x4d\x62\xad\x36\x49\x2e\ \x97\xa8\x22\x0d\x80\x23\x83\xcb\x19\x29\xe4\xc3\x4e\x86\xef\xaa\ \x2d\xfa\x5a\x8e\x05\x46\x8c\x3a\xfe\xff\x4c\x26\x5a\xb2\xe5\xe4\ \x61\x08\xf0\x21\x0b\x24\xb1\x07\x21\xb1\x69\xd3\x6d\x3c\x68\x8c\ \xba\x8a\xe6\x47\xb7\x0b\x32\x55\xb5\x1d\x54\xd5\x18\x08\x00\x72\ \x72\x86\x67\xba\x65\x86\xde\x31\x3a\xb2\x22\x45\x6a\xd5\x49\x03\ \x00\x6b\x3b\xf1\x13\x8f\x0c\xc9\xfa\xad\x0b\xa4\x52\x3d\x4e\x40\ \xb3\xe4\xc1\x0b\x0f\xae\x2b\x65\x8d\x63\x6d\x2f\xe1\x3e\xd6\x17\ \x79\x91\x24\x78\x49\xb7\x74\x4b\x4d\xaf\xd2\x00\x07\x48\x15\xa4\ \xb5\x03\x53\x34\x05\x37\x69\x6e\x0d\x20\x5b\x6b\x76\x23\x43\xd4\ \x50\x93\x45\xe5\x3c\xac\x72\x8f\xcb\xda\xd6\x2a\x0d\xb2\xb1\x7f\ \xac\xed\xef\x6e\xe0\x06\xaa\x11\x04\x4e\x2c\x38\x5c\xac\x69\x7d\ \x44\xdd\x9c\x16\xbc\xa8\x76\xbb\xb4\xeb\x19\x54\x48\x55\x09\xc0\ \x18\xbc\x60\x76\x67\x37\x76\xbd\xf6\x50\x9c\x34\x67\xa6\x23\x2d\ \xda\x42\x47\xbc\xc2\x5f\xdf\x71\x4b\x39\x8d\xd3\x22\xc5\xf3\x3c\ \xc5\x88\x40\x00\x1f\xc0\x00\x1f\x00\xb5\x35\x11\xe8\x20\xdd\xd4\ \xf6\x68\x73\x2c\x1b\x0a\x42\x25\x63\x93\xd4\xc4\x23\xbd\xe4\x64\ \xb7\xee\x42\xf5\xd0\x03\x29\x84\xc2\xe4\x32\x78\xb2\x35\x2e\xf7\ \x30\xad\xec\x12\x10\x89\x82\xfe\x67\x5f\x16\xfa\x1c\xe1\x7d\xb5\ \x4f\x1f\x56\xee\xc3\xf4\x21\x0b\x74\xc1\x46\x0f\x51\x66\x1c\x71\ \x47\x9d\xb6\xd4\x3e\x75\x75\x5b\xf7\x75\xbb\x56\x6b\xbd\x60\x6b\ \x67\x57\x76\x6f\xf7\x50\x66\xa8\x1d\x6c\x2a\x3b\x6e\xe4\x2d\xba\ \x74\x49\x4f\xd1\x52\x6e\xc4\xbc\x34\xc5\x92\x98\xd7\x57\xe5\x21\ \x2b\x29\x34\x0c\x13\x6e\x41\xab\xec\x21\xe1\x0e\x63\x8b\x31\x66\ \x6b\x33\x63\x4f\xd6\x22\xbf\x37\x44\x5f\xf6\x4f\x0f\x14\x5b\x1b\ \xb7\xcd\x92\xaf\x19\x77\x0b\x7d\x13\xf7\x5b\xeb\xc0\x39\x73\x58\ \xc4\x20\x75\x9f\x6a\x23\x87\x0f\xaf\x1a\xb1\xb5\x05\x02\xf3\x84\ \x78\xf0\x37\x20\xf1\x74\xf1\x2a\xc6\x44\x15\x3d\x7f\x34\x3d\x83\ \xd4\x75\xff\xc1\x18\x28\xd3\x45\x9c\x74\x55\x11\x38\x81\xcb\x42\ \x91\xd8\xf6\x87\xd4\x0b\xc8\x46\xad\x46\xea\x95\xf2\x78\x4c\x3b\ \xde\x56\x79\x01\x55\xeb\xb0\x24\x15\xda\xf4\x6e\xdf\x94\x59\x2f\ \x8c\x97\xe4\x0c\x63\x4b\xd6\x23\x81\x73\x7b\x77\xe7\x64\x0d\xb7\ \x65\x83\xeb\xcd\x60\x76\x23\x47\x20\x86\xe7\xd6\x7c\x23\x37\xfa\ \x0c\x19\x06\x0f\x2f\x0b\x52\xf4\xb8\xea\xf2\xc3\x5c\x02\xf1\x4c\ \xf4\x7e\xfb\xe0\x00\x28\xfe\xe1\x1b\xd7\x2d\xc6\xd0\x2f\xf2\x96\ \xa2\xd1\xfc\x17\x48\x31\xf9\x53\xcd\xb3\x06\xa4\x98\x56\xff\x35\ \x55\x73\xa6\x6b\x19\x96\x56\xef\x8f\x2c\x9e\xc1\xa6\xb0\x43\xa5\ \xb8\xc2\xf4\x3c\x07\x93\x5d\xea\x14\x58\xf9\x1e\x8c\xe0\x46\xfb\ \xc2\x2a\xbd\x37\x37\x13\x30\x02\xa5\xd7\x0d\x31\xb6\x00\x3d\x72\ \xee\x8c\x19\xb7\x8e\xb9\xa1\x36\xcb\x70\x77\xc7\x00\x0e\x17\x71\ \x0f\xd9\x85\xe5\x72\x7c\xb1\x75\x04\x66\xb8\x2e\xeb\x32\x19\xb5\ \xf9\x04\x36\xb7\xe6\xfc\x40\x17\xd6\xea\xb8\x56\x10\xdb\x3c\x37\ \x87\xe5\x61\x1e\xec\xc1\x1d\x86\xc0\x37\x9c\x22\x7d\x76\xf4\x06\ \x71\x90\x48\x3f\x99\x68\x28\x4f\x48\x3b\x55\x8a\x53\xd9\x8a\xb3\ \x96\x67\x7a\xc6\x18\xb0\xd6\x3e\x47\x6f\x8b\x11\xe5\x14\xdf\x22\ \x29\xeb\x71\xe9\xb6\xf8\x19\xda\xe0\x1e\xa8\x12\x04\x40\x80\x7e\ \x30\x34\x62\xb0\x04\x36\x6b\xef\x4d\xc1\x12\xee\x72\xcb\x6f\xb5\ \x37\x66\xd3\x40\x5a\x97\xf9\x42\xad\xa1\x71\x91\x19\x39\x0f\xb9\ \x03\xaf\x72\x90\x43\x5a\xa4\x3b\x92\x86\xff\x94\x9b\xb3\x39\x87\ \x8d\xcb\xc3\x8e\x0b\x9c\xfb\x2c\x91\x61\xfa\x25\x40\x37\x26\x29\ \xe1\x00\xdc\xa1\x92\xfe\x7d\x03\xde\x66\x6c\x1c\x15\x13\xbb\xce\ \x0f\x5f\xed\xd5\x5e\x01\x38\x80\xff\xa1\x9f\xf7\x19\x86\xa4\xf4\ \x8a\x9f\xf4\x09\xbf\x74\x8b\x3d\x80\xb2\x54\x71\x39\x1c\x0b\x14\ \x29\x27\x87\x3c\xc0\x3a\xba\xe2\x6d\x03\xb2\xf5\x98\x59\x16\xd9\ \x18\x84\xbf\xf2\x84\x8d\xb9\x65\x39\xfa\x2a\x4d\x56\x73\x3b\xba\ \xa3\x55\xc1\x00\xac\xc1\x70\xb9\x15\x9b\xb3\xd9\xae\xe5\xac\x23\ \x61\xb8\x71\x55\xc1\x9d\x56\xda\xae\x93\xd1\x11\x1a\x19\x06\x61\ \x30\xa6\xc1\xf9\x10\x6f\x40\x45\x6f\x60\x52\x8f\xcb\x11\x14\x6f\ \x1e\xe6\x41\x0f\x5a\x80\x9d\xcd\x8f\x88\x1a\x73\x3c\x1c\x93\x96\ \x17\x33\x5f\x59\x57\x10\x78\xa0\x2a\x00\x96\x6b\x67\x28\x7c\x3a\ \x51\x4a\xc1\xd6\x45\xca\xe7\x56\xd1\x25\x5e\xca\x43\x52\xba\xfa\ \x3e\x85\x97\xe9\x28\x2b\x54\xa8\x32\x20\x5b\xa0\x71\x43\x7a\x8d\ \xb7\xf2\xac\x91\x95\xad\x2f\xcc\xa4\x31\x5a\x7b\x97\xd9\x4b\xda\ \xcc\x99\x91\x59\x9b\x61\x16\x66\x4d\xda\x23\x37\xd8\x71\x03\xb9\ \x34\x1c\xc1\xad\x47\x4c\xb0\x1d\x01\x9c\xc3\xd9\xb8\x9a\x13\x30\ \x67\xe3\x06\xc2\xf9\x3a\x5b\x6e\xa6\x75\xe1\x7e\xd1\xd9\x1d\xf0\ \x01\x9e\x4b\x8d\xfe\xc9\x7e\x0e\xb3\x79\x0a\x5f\x3b\x5b\x10\x1a\ \x40\x10\x46\xb9\x71\x10\x58\x60\xc1\xd6\x03\xca\x07\xb5\xed\x1b\ \x3e\x7f\xa6\x5c\x76\x84\x5e\x26\xeb\xa6\xa0\x0e\x8c\xf9\x6f\xc6\ \xe4\x6b\x2a\x5b\xa0\xbe\x66\x36\x78\x0e\x68\x0c\xf7\xb6\xa1\x0e\ \xb7\xe4\xd6\x54\xb7\xe6\x18\xa3\xdb\x7a\x99\x89\x31\xb7\x21\x15\ \x9b\xb7\x39\xfa\x4e\x40\x17\x88\x53\x2e\xfb\x9a\xaf\x45\xdc\x70\ \x49\x1c\x43\xdf\xb7\x19\xad\x3b\x87\x31\xb7\x0e\x02\x33\x88\x0d\ \xef\x73\x2f\xd7\x67\xfd\xc0\x3d\xd4\x39\xfc\x2c\x6f\x38\xc6\x98\ \x31\xfb\xaa\x06\x36\x9b\x6a\x43\x15\x32\xff\x15\xaa\x55\xb5\x91\ \xf6\x3b\x87\x98\x8e\xde\x3c\xa0\xde\x80\x46\x5d\x20\x65\xf4\xfa\ \xed\x87\x56\x0a\xbe\xc8\xe3\x0a\x51\xf3\x4c\x13\x7c\xe3\xda\xb0\ \xb7\x83\x1b\xda\xd6\x74\xad\xbd\x57\xb8\x2b\x9c\xc4\x9d\x39\xc3\ \x5b\x3a\x9a\x4d\xda\x9d\x8a\x3b\xae\x9d\x79\xcd\xe5\xa1\xc4\x0d\ \x57\xb0\xad\x1b\x10\x55\xdc\x91\x71\x5a\xb1\x13\x3b\xbc\xab\x5b\ \x17\x58\xfc\x06\xce\x79\x1e\x26\x3b\xf2\x28\x98\x38\xc4\x23\xba\ \x78\x4a\x29\x68\x59\xc7\xb3\xcb\x89\x81\xbc\x32\xad\x18\x1e\xaf\ \x29\x49\xd5\xfe\x45\x68\x60\xea\x4b\x1f\x05\xbd\x90\xac\x1e\xef\ \x2f\x0a\xc5\x78\x5e\x62\xac\x53\x4c\xf3\x34\x0f\x1c\xca\x04\x35\ \xcb\xe5\x94\xc2\x23\xbc\x2d\xd7\x94\x17\xbd\x57\x5a\x47\xec\xad\ \xdf\x1a\x43\x53\xb8\xae\x3d\x3c\x9b\xa3\xcf\xc3\x3b\xd2\x70\x05\ \xb9\xa3\xdb\x5c\xc4\x5f\x94\xc4\xa2\x1b\xce\x09\xfb\x72\x59\x60\ \xb1\x5d\x12\xa6\x17\x3b\x88\x75\xe1\x7d\x93\x5d\xb8\x8e\x8b\x23\ \xa1\xb3\xfc\x0a\x3d\x6a\x9d\x76\x12\xe9\x79\xa8\xe9\xd5\x68\xa4\ \xd8\x5b\xe2\xf3\xfd\x8c\xf7\x72\xd4\xa5\x3f\xaf\x89\x51\xb8\x38\ \x33\x15\x89\x4a\xb7\x34\xc9\x33\x6d\xea\x96\xd2\x2d\x70\xb9\x1e\ \xea\x01\x1a\x78\xa0\x71\x3b\x54\xae\x89\xb1\x18\xf5\xf0\x7b\x6f\ \x56\xc2\x3f\xae\xcd\x48\xdc\xd5\x3d\xfa\xad\x39\x92\xc4\x37\x69\ \xd6\x3b\x3c\x9c\x39\x1c\xc4\x77\x1d\x19\xfa\xda\x9a\xd5\x1c\x19\ \x7c\x53\x4f\x93\x40\x15\xde\x37\x1b\xc1\x39\xbc\x01\xd3\xcf\x5c\ \x92\xbb\x59\x1c\xa7\xed\x37\xd9\xc3\x5b\xcf\xe7\x9c\x05\x6a\xe1\ \x4c\x47\x37\xfc\x90\x98\x12\x87\xba\xc5\x38\x21\x54\xe1\xbb\x2a\ \x20\x27\x00\x9c\x63\x17\xe0\xcf\x53\x2b\xf8\x54\x19\x69\x91\x5a\ \xa4\xa4\xfe\x60\x9e\x2c\x72\x7e\x7c\xb8\xb4\x94\x89\x77\xf4\x1a\ \xe0\x7c\xae\xb0\x0b\x32\xa0\x1e\x78\x80\x07\x78\xa3\xd5\x18\x97\ \x4f\x4d\x4e\xb7\x72\x2b\xe4\xa4\x19\xae\x1b\xd7\x9a\x87\x1b\xd6\ \x01\xf9\x40\xa1\xfb\xae\x05\x3b\xfa\x30\x57\x17\x4c\xb6\x71\x2b\ \x52\xe1\x77\x5d\x15\x8e\x4d\xd0\xce\x35\x09\xa2\xdb\xe2\x93\xdd\ \x11\xe8\x17\x26\x40\xb7\xcf\x32\xbe\x0e\x3e\x9e\xee\x73\x78\xe5\ \xfe\x6e\x09\xea\x80\x12\xe6\x41\x99\x3e\x6a\x12\x17\xd3\x47\xfe\ \x37\x03\x54\x28\x7c\x68\x15\xdf\x92\xce\x96\x19\x36\x90\xc6\x62\ \x39\x82\x50\x5c\x78\x48\x87\xb2\x29\x52\xf4\xbb\x3b\xcc\xa9\x0a\ \x73\xc1\x08\xde\xfd\x1c\x92\x9e\x23\x7f\xb5\x36\xb9\x55\xad\xfa\ \x98\xc3\xd7\xda\xaf\x9f\xdb\x38\xad\x7e\x9a\xa7\xd9\xc4\x3b\xd0\ \xba\xb3\x11\x10\x61\xd6\xb1\x0d\xb7\x22\xf5\x54\xc4\xb3\x35\x15\ \x32\x70\x07\x20\x5e\xe2\xb9\xb9\xed\xb3\x31\x30\xf5\x01\x3b\x0f\ \xcf\x25\xf5\xfe\x72\x55\x7c\x7d\x47\x77\x70\xec\x61\x1e\xbc\x93\ \xaf\xa6\xcb\xe7\x04\x5f\x3d\x05\x1f\x3c\x08\x7f\xa9\xb1\x38\x00\ \xb6\x5a\xfe\x1e\xe5\xc8\x74\x7e\x91\xf6\x5b\x09\x91\x2c\xf2\xf5\ \x0d\xfe\x8c\xdf\x93\xe7\x91\x94\x47\x88\x03\xd5\x32\x20\xe9\xcf\ \x21\x49\x28\x36\x50\xe5\x12\xbf\xd2\x1a\xb8\x48\x3f\x99\xfb\xfa\ \x85\x55\x7f\x86\xf5\x7a\x9a\xdd\x89\xf7\xb3\x91\xd6\x01\xa2\x8e\ \x1f\x81\x75\xd2\x18\x54\x65\xc0\x00\x32\x64\x26\x90\x25\x4c\x88\ \x8c\xd2\x8e\x54\x26\x52\xa5\x52\x85\xd1\x91\x46\x47\x49\x1c\xd5\ \x59\xa2\x8f\x8f\xbe\x91\x22\xf5\xdd\xa8\x83\xb2\x4e\x16\x95\x2b\ \x6f\x64\xb9\xc1\x27\xe6\x0d\x47\x7a\xdc\x9d\xc3\xb7\x24\xa6\xce\ \x9d\x9c\x76\xfa\xfc\xc9\x87\x13\xa7\x50\x35\x04\x09\xaa\x81\x14\ \x69\xa8\xa5\x42\x85\xb6\xf8\xf7\x0f\x0b\x16\x63\xc5\x8c\x05\xe8\ \x04\xa7\xc1\x1e\x38\x5c\x1b\x9c\x8a\x56\x23\xda\xa9\x53\x70\x3a\ \x85\x09\xe0\xe1\x6b\xb4\x68\x44\xb6\xee\xd9\xb3\x76\x2c\x91\xb1\ \x74\xbd\x8e\x6d\x00\xe7\xad\xdc\xb5\xd1\x96\xe6\xea\x22\xa7\x1e\ \x8f\xc1\x2e\x5a\x14\x4e\x13\xe5\x84\xc1\x34\x8a\x4f\x34\x3e\xe1\ \xe7\x84\x90\xc6\x8c\x2b\xcb\x33\x28\x6f\xc4\xe5\xc5\x97\xe5\x29\ \x4e\xb3\x39\x8d\xa3\x13\xa3\x4f\xe8\x32\xed\x67\x20\x8b\xd4\x7e\ \x34\xca\x43\xa8\x90\x12\x43\x64\xa9\x68\xd7\x4e\xb5\x63\xa2\x45\ \xfe\x8d\x49\x7a\xab\xf2\x08\xb2\x24\xc9\x90\x27\x53\xde\x38\x7e\ \x63\xc9\x92\xe4\x21\x75\xfa\x71\xa7\x42\x0d\x8f\x9c\x40\x79\x06\ \x6d\xda\x53\xa7\x50\xa2\x48\x05\x71\xaf\xb1\x34\x94\xd0\xeb\x9c\ \x9e\xfe\xeb\x34\xd5\x98\x31\x2c\x1e\xf2\xe2\xcd\xeb\xbe\x2e\x1c\ \x2c\x01\xd0\x9e\x0a\x2b\xf6\xd4\x1e\xba\x75\xf7\xe3\xa5\xbb\x56\ \x58\xa1\xac\x35\xd7\x5e\xb9\xfc\x95\x01\x0f\xe7\x9c\xc3\x03\x25\ \xf5\xc8\x13\xc5\x65\x92\x39\x46\x21\x63\x14\x56\x68\xa1\x62\x8e\ \x80\x16\xda\x62\x06\x7d\xb6\x59\x67\xa4\x8d\xc8\x9a\x40\x2c\xd4\ \xb1\x5a\x1d\x27\xc8\xc3\xa2\x42\x0b\xcd\xb3\x83\x44\xc8\xec\x40\ \x1b\x32\xfc\x58\x94\x4a\x6f\x1c\x59\x94\x84\x1f\x21\x99\x74\x03\ \x49\x25\x15\xa7\x12\x72\xcb\xc5\xf4\xa3\x4e\x4b\x0c\xa1\x82\x0a\ \xf6\xd4\x03\x54\x53\xe1\x85\x07\xde\x52\xda\x0d\xa5\x54\x95\x4c\ \x61\xd7\x93\x50\x19\x40\x85\x45\x27\xe8\xb5\x07\xdf\x56\x65\x76\ \xc5\x95\x07\x01\x9c\xb5\x0b\x1c\x63\xe5\xf7\xe6\x29\x5a\xed\xa1\ \x95\x56\x72\x12\x01\x96\x80\xd1\xe4\x12\x57\x5b\x5f\x1d\x98\x8b\ \x1c\xcf\xf0\xb0\x0d\x83\x3c\xb8\xc0\x62\x14\x19\x7e\xe6\xa1\xfe\ \x63\x8b\x6a\xe8\x59\x67\x12\x7a\xb6\x62\xa5\x22\x5a\x4a\x62\x6a\ \x02\x0d\xc4\xda\x8a\x2d\x52\x02\xea\x8c\xa2\xe2\x66\x00\x8e\x39\ \x62\xd4\x5b\x8e\x8e\x04\xc9\x47\x71\xac\xca\x94\x12\x4a\xc8\x1d\ \x17\xdc\x48\xcd\xf1\xf1\x5c\x93\x6a\xe0\xf3\xd3\x76\x49\x71\x27\ \x08\x58\xe2\x49\xc9\xd4\xb0\xd8\x05\x15\x93\xaf\x5f\x46\xe5\xc1\ \x7e\xfa\xe9\x37\x27\x9d\x63\x99\xe9\xc1\x2e\xf4\x9d\xd5\x49\x5a\ \x6a\x89\x35\x97\x9d\xcf\x92\xe5\x6c\x5c\x5f\x9d\x42\xc4\x5c\xe5\ \xae\x95\x8b\x5f\x5d\x24\x38\xd8\xa1\x86\xb9\x60\x40\x66\x23\xcc\ \x9b\xc6\xbc\xaa\x54\x76\xe1\x86\xf7\x82\xc6\x21\x85\xf2\xf8\x41\ \x69\xa4\x96\x46\x46\x29\x64\xac\x1d\x9c\x9a\x2e\xf2\x80\xd1\xa2\ \x01\xf3\x20\x03\xa3\xa8\xf3\x50\x94\x8a\x01\x49\xa8\xd2\x5b\xc6\ \x1d\x7d\xa4\xcf\x72\xb2\xfe\x68\x92\x71\x75\xcc\x7a\x9c\xad\xb7\ \xb6\x4a\x49\x93\x4e\x9e\x1c\x13\x95\x5a\x26\x55\xe5\x76\x5d\x36\ \x85\xac\x76\x41\x2d\x55\xc3\x33\x50\x35\x0b\x97\x58\x74\x6e\xc5\ \xdf\xb4\x7b\xec\x62\x6d\x7d\x58\xb4\xf9\x15\x78\xe2\x9a\xc9\x15\ \x1c\x1e\x3c\x9d\x55\x03\xef\x45\x4b\x2e\x5f\x7d\x85\x72\xfe\xc5\ \x15\xb9\x64\x20\x98\x0b\xf5\xd4\xe3\x42\xd8\x88\x2e\xb4\x10\x46\ \x17\x1e\x94\x86\x2a\x23\xa8\xf2\x9a\xc0\xa7\xe1\x43\x21\xdc\x9e\ \x0a\x0c\xc6\x68\xba\xf8\x71\x37\xc2\xac\x9d\xe6\xa9\x01\xb2\xcd\ \x33\x8f\x09\x30\xe2\x56\x9b\x8d\x1b\x61\x8c\x23\x70\x21\x7f\x0c\ \xb2\xac\x2e\x91\x8c\x1c\xc8\x3b\xdd\x30\x8f\xae\x7a\x50\x77\x65\ \x78\x43\x0d\x45\x54\xe7\x34\x27\x5b\xdd\x75\x9d\xdf\x03\x55\x5e\ \xce\xba\xc5\xd5\xb4\x77\xd1\xc9\x15\x7a\x44\xb7\x77\x4a\xb0\x71\ \xe1\x05\xf5\xd3\xe8\x19\xfd\x74\xee\x4e\xeb\x65\xf5\xd5\x9c\x1c\ \xd8\x45\x0b\x5f\x1f\x5a\x4f\x0b\xf2\x18\x26\x0f\xa8\x94\x18\x80\ \x50\xda\x6b\x5b\x33\x82\x43\x09\xb1\x6d\x50\x69\x90\x99\x36\x62\ \xc0\x2d\x8c\xc8\xf7\xc1\x9b\x26\x1c\x99\x23\x2c\xca\x93\xd0\xc3\ \x30\xc6\x88\x3e\x3f\x3b\x58\xcc\x5b\x2a\x37\x26\xc1\xb1\x3e\x2b\ \x8d\x6c\xf2\xac\x23\x05\x89\xdc\xc8\x25\xdf\x6f\x6b\x4c\x75\xd8\ \xd3\x24\x7b\x74\xa1\x57\xe3\xe1\xd2\xe6\x3e\x17\x3a\xed\x14\x0b\ \x1f\x50\x11\x53\xb3\x9e\xb6\x0b\x07\xc2\x87\x4c\x77\x81\xc3\x2e\ \x02\x20\x15\xa7\x65\x65\x3f\x4e\x83\xda\x1e\x72\x27\xfe\x15\xfa\ \x58\xc5\x2a\x01\xd8\x85\x07\x01\xc4\x97\x2e\xfc\x25\x30\x83\x6a\ \x10\xf1\x0c\x63\x18\x03\xc0\xcb\x45\x64\x9b\x0d\x43\x0c\x60\x0d\ \xe6\x15\xec\x34\xd6\x5b\x11\xc0\x22\x35\x3e\xec\x9d\xe6\x6e\x8e\ \xc0\x9b\x11\x47\x23\x0f\xf1\xc5\x06\x62\x82\xcb\xcd\x44\xd6\xc7\ \xa3\x54\xb9\x8f\x1f\x1e\x21\xd2\xc8\x44\x22\x12\x57\x99\xec\x7e\ \x90\x03\x92\x90\xf8\x90\x85\xca\x35\xe9\x11\x98\xb3\xd9\xcc\xb2\ \x03\xba\x04\x92\x47\x3c\xc3\xe2\x83\x79\x8c\xe1\x01\xf6\xc4\x31\ \x0c\xf4\x09\x53\x04\x3b\x61\xc2\xf6\xc4\x91\x3e\x18\x64\x8f\x54\ \x02\x60\x15\xa9\x80\x30\x84\xd6\xe2\xa3\xd1\x8e\xb6\xbb\xa6\x35\ \xed\x83\xcf\x18\xd4\x39\xda\xc1\x20\x06\x15\x66\x92\x61\x8b\x97\ \x3c\x5c\x10\x11\x86\x08\xce\x04\x9c\x74\x88\x43\xc6\x27\xb0\x20\ \x82\x52\x94\x02\x1b\x4d\x69\xee\x96\xbd\x16\x45\x84\x12\x13\x3b\ \x9f\x13\x09\x67\x2a\xf5\xdd\x48\x17\x2b\xc1\x1b\x2d\x9b\xb3\xb8\ \x20\xe1\x52\x38\xc7\xd1\x9f\x2e\xbf\xb8\x04\x79\x00\x30\x3a\x50\ \x0a\xdd\x78\xd4\xe8\x93\x9e\x4c\xa9\x80\x0c\xfc\x07\x09\x3b\x51\ \x9f\x30\x04\x72\x4d\x80\x24\x61\x7a\xd4\xb3\x0d\xfe\xf5\xac\x47\ \x9b\xeb\x11\x64\x08\xab\xa5\x47\x3f\xb6\x29\x4d\x10\x0c\x21\x7a\ \xa4\x62\x8c\x6d\xa8\x73\x1b\x54\x20\xcc\xd7\xde\x15\x36\x08\xb1\ \x08\x93\x11\xd9\x81\x09\x58\x69\x43\x85\xc4\xcb\x92\x40\x1c\xe5\ \x3e\x41\x29\xbe\x51\x6a\x64\x6e\x09\x59\xde\xf2\x1e\xf6\xc4\xdc\ \x98\x60\x07\x37\xc2\x8d\x2c\xf9\x41\x45\x5d\xa0\x44\x17\x12\x85\ \x49\x16\x53\xb2\xc5\x8c\x9e\x64\xa3\xbf\xbc\xd5\xff\x54\x46\x46\ \x35\xa2\x11\x99\xc9\xea\x9c\x78\xae\xd3\x4c\x6d\xfe\x51\x3d\x18\ \xe4\xa6\x7a\xbc\x60\x0c\x98\x7a\x61\xa6\x33\x4d\x67\x4c\xd5\x13\ \xc2\x9c\x62\xc1\x3d\x4d\x93\x53\x56\xd2\xf4\xc7\x43\x06\xa0\x1d\ \xd9\xdc\x06\x17\xda\xc1\x83\xaf\x29\x55\x41\x7a\xa0\x04\xa2\x8e\ \x47\x3e\x88\xdc\x33\x70\x94\xb8\x67\xa8\xc8\xc6\xcf\x7d\x3e\x64\ \xab\xfc\x1c\x5f\x40\x03\x3a\x3e\x88\xf8\x2d\x22\xa9\x68\xa5\x13\ \x1b\xea\x50\x72\xe0\x02\xa2\x8e\xd0\x05\x47\x92\x20\xd1\x24\x89\ \x84\x71\x25\x11\xce\xfd\x7c\xf9\x45\x9d\x64\x61\x07\x2a\x53\x41\ \x0b\x48\x0a\xd8\x92\x6a\x6e\x3b\xcd\x84\x69\x4e\xeb\x53\xcd\x97\ \xd6\x74\xb1\x33\x15\x01\x4d\x6f\xba\x9e\x73\xfe\x06\xb2\x3d\x75\ \x5a\x64\xd3\x3c\x80\x47\x9d\x16\x32\x0c\x2f\xc0\x02\x0f\x9e\x70\ \x0f\x23\x64\x60\xb4\x5f\xa3\x04\x61\xc2\xe6\xd4\x19\xfa\x4d\x79\ \x7f\x9b\xaa\x44\xaa\xca\x55\xe9\x79\xd2\x45\x0f\x91\x47\x12\xb8\ \x1a\xd5\x87\x44\xc4\x61\xfc\x98\x87\xc3\x70\xa3\x50\xdd\x00\x97\ \x1c\x0c\xf5\x88\x5b\xf9\x01\x57\x56\x71\x51\x7f\xb8\xcc\x28\x90\ \x3a\xca\xb2\x60\x0e\x53\x05\xee\x08\x2c\x60\x39\xb7\x9d\xf0\x90\ \xce\x99\xdd\x2c\x9a\x4b\xbf\x8b\xd8\x98\x3e\x16\xa6\x56\xc9\x96\ \x9a\x58\x2a\xc7\xa7\xe9\x74\xbd\x78\xcc\x23\x66\x3d\xf0\x8c\x3d\ \xdc\x43\x85\x7f\xb9\x42\x17\x40\x20\xbc\x06\x81\xad\x41\xe7\x70\ \xaa\x3c\x16\xc2\xca\x00\x43\xec\xb5\xf3\x08\x70\x81\x0b\x1c\x2a\ \xe5\xed\x56\x36\x62\x95\x1e\x57\xf5\x69\x3e\xde\xee\xc0\x95\x68\ \x95\x25\x39\x20\x4a\x51\x5d\xe8\xe8\x8a\x8b\xa3\x9f\x4e\x6e\x05\ \x32\xe7\xe6\xd5\x7f\x07\x50\x19\x01\x48\xca\xa5\x9b\xa1\xd1\x80\ \x6c\xe4\x5c\x0d\xb6\x8b\xde\xc4\x82\x57\x2a\x6d\xda\xca\x54\x1e\ \xcb\xcd\x10\xba\xb4\x3e\xdf\xe5\x26\x1d\x8f\x86\x95\xae\x6c\x45\ \x0e\x44\x48\xd7\x15\x84\x72\x64\xad\x19\xfe\x01\x1f\xa3\xf5\x5a\ \x83\xf4\xd0\x5f\x4a\xf4\x81\x95\x07\x36\x70\x43\x64\x03\xb1\x2c\ \x3f\x0c\x54\xab\xf5\xdb\x6a\x77\xdb\x60\x17\xb1\x76\x1e\xbd\xed\ \x2d\xe1\x9e\x88\xa3\xdc\x40\xb4\x23\x6f\x6d\xab\x2f\x8b\x33\x10\ \x8b\x7e\x18\x8b\x22\x4e\x52\x74\xe5\xa1\x32\x7b\xa0\x78\x4a\x55\ \xd2\x12\xce\x34\xc7\x46\x9c\x6d\x97\xc7\xd5\xc4\x31\x7a\x11\x99\ \x97\x38\xda\x54\xa6\xe2\xd5\x26\x4d\x19\xed\x85\xa2\x32\x5a\x9b\ \x74\x34\xe1\x2e\xa4\xc6\x95\xfd\x14\xd9\x58\x4d\xd1\x5a\x17\xba\ \x00\x06\x7c\x18\x46\x41\xf3\x28\x02\xe0\x4e\x5d\x65\xaa\x92\x0d\ \x70\x13\x8e\x91\xf9\x40\x85\x60\x7c\xfa\x76\xb6\x11\x89\x30\xc4\ \xca\x1a\xb1\x89\xc0\x88\xcc\x6a\x66\x28\x43\x91\xfb\x56\xb8\xfa\ \x52\x64\x57\x04\x4a\x88\x9d\x5b\x1d\x3f\x0c\xf3\xc4\xbd\x3a\xa9\ \x02\x8d\x02\x6d\xa3\x24\x25\x58\x7e\x06\xf4\xa0\x1d\x4d\xd3\x6d\ \x90\x77\xc7\x43\x55\x2c\x79\x1f\xed\x05\xc7\x46\x9a\xb1\x35\x9d\ \x31\x90\xc7\x79\xd9\xbc\x14\x39\x5d\x9d\x0e\xc5\xa7\xbb\x70\x85\ \x25\xe0\xd7\x05\x0a\x3a\x87\x3b\xee\xed\x8e\x03\x9c\xe3\x00\x07\ \x38\x35\x96\x21\x76\x60\x54\xaf\x12\xfe\xe0\xa7\x86\x98\x3e\x1d\ \x62\xbe\xb2\x02\x7c\x46\x64\x06\x9c\x2c\x9d\xf8\x6b\x88\x22\x37\ \x63\x14\xcd\x9f\x15\x8b\xbd\x93\x5d\xd6\x79\xc4\x7c\xa8\xc5\x30\ \xf5\xdc\xec\x50\x24\x93\x28\x46\x69\x80\xb4\x71\x56\x94\x29\x0d\ \x4b\x3c\x29\x35\x86\x63\xb5\x0d\xee\x47\xc3\x3c\xe6\xe4\x1e\x2f\ \x64\x5f\xaa\xd2\xa3\x55\xcb\x4d\x98\x96\x9a\xd4\x5e\xd7\x1e\x4d\ \xa7\x8b\x29\x7f\x21\xc2\x91\x63\x72\x05\x76\x1d\xc0\x1d\xf6\xc0\ \xb7\xd3\x0f\x60\x8e\x58\x4f\xf8\x00\x3b\xa0\x3a\x8c\x60\x4d\xe5\ \x56\x9b\x6f\xc0\xad\xd4\x32\x6f\x1b\xce\xd0\x89\x0d\x97\xb8\x12\ \x97\xb8\xb0\xe9\xd7\x4b\x22\xe9\xb2\x3a\x92\xdb\x22\x16\x7f\x92\ \x05\xe8\xa8\x80\xd9\x3f\x61\xca\xc8\x7f\x55\x2c\x93\x02\x7a\x58\ \x29\xa5\x39\x64\xb3\x49\x73\x9b\x3f\xda\xa6\x37\x67\xe9\x7a\x28\ \x9b\x95\xa0\xc9\xc9\xe7\x98\xde\xdd\x7e\x84\x35\x94\x5c\x10\x41\ \x0e\x57\x50\x92\x11\xbe\x06\xe5\x7b\x17\xc1\xe9\xf9\x9e\xf0\xae\ \x61\xc4\x6f\x7e\x7b\x5e\xeb\xa8\xd6\xba\xe7\xbb\xee\xdb\x08\x3b\ \x91\xcc\x06\xc8\xcd\x21\x5e\x1f\x71\x89\xbb\x19\x72\xae\x7a\x55\ \x02\x87\x23\x57\xa0\xd4\x42\xee\xfe\x20\xef\x55\x75\x64\xa6\x4c\ \x03\x16\xd0\x58\x20\x80\x4a\xe0\x07\xff\x6d\x47\x63\x73\xf9\x93\ \x46\x6c\x1f\x75\x47\x59\xb2\xc8\x49\x4e\xd2\x32\x79\xc9\x7d\xfe\ \xad\xab\xe1\x4c\x0e\x7b\x10\x79\xb2\x40\xc0\x35\x17\x50\x02\xca\ \xf3\xb0\xf7\xbd\xf9\x3d\x8f\xa8\xcf\x83\xea\xa1\x27\x47\xbf\x01\ \xf7\xfe\x09\x47\x7d\xf4\xa2\xbf\xfa\x96\xcb\xaa\xeb\x32\x3b\x91\ \x1c\xaf\x3f\x04\x71\x23\x0e\x57\x14\x65\x1c\xbd\x44\x57\xb7\x87\ \x24\x74\x96\x40\xb9\x22\x1d\xd6\x95\x2c\xc7\x74\x4c\xc9\x44\x1e\ \x7c\x50\x7c\xff\x30\x5e\xe0\x56\x78\x47\x13\x42\xd5\x04\x78\x8d\ \x06\x47\x8b\xa4\x78\xa9\x43\x2d\xf0\x31\x16\x82\x10\x3b\x47\x61\ \x82\x74\x81\x27\x5a\xc2\x16\xf7\x90\x0b\x42\xb1\x04\xf6\x15\x7e\ \x7d\xe0\x02\x7d\x30\x0f\xee\x50\x04\xa1\x97\x7e\xe9\x77\x00\x3d\ \x10\x7a\x38\x58\x75\x3d\x08\x38\x7e\xb3\x6b\xf5\x77\x6b\x55\xc5\ \x49\x13\xf6\x70\xb8\x41\x0e\xfc\xf7\x7f\x6a\x86\x5c\x12\x35\x51\ \xc4\x16\x57\x2c\x63\x80\x6f\x57\x1d\x4b\xa0\x0b\xee\xa0\x06\xee\ \x50\x79\x0c\x78\x1d\x35\x33\x52\x57\xa2\x13\x13\x88\x7c\x33\xa5\ \x6d\x39\x86\x6e\x4e\x73\x3b\xfe\xdc\x64\x86\x70\x74\x0a\xb9\x80\ \x1f\x60\xc1\x17\x76\xe1\x53\x89\xb7\x16\x26\x58\x14\x49\x11\x0d\ \xb2\xf3\x26\x47\x81\x1f\x78\x02\x28\x81\xc2\x35\x87\x42\x6f\xe7\ \x70\x83\xe7\x50\x7e\x01\x87\x7e\x3d\xf8\x7e\x40\x48\x66\x7a\xd0\ \x5b\xac\x06\x38\x0b\xa5\x10\xb7\x41\x1b\x10\x97\x1b\xfc\x77\x08\ \xbd\x16\x71\x15\x75\x12\x50\x98\x61\x15\x45\x85\x5e\xf8\x13\xc1\ \x34\x0f\x43\xd0\x85\x22\xf5\x39\x67\xf4\x80\x3c\x21\x33\x12\x68\ \x7c\x8f\x95\x4d\x2e\xc5\x1e\x6d\x82\x17\x0d\x70\x0f\x5a\x81\x59\ \x61\x92\x1e\xe4\x85\x05\xdb\x02\x27\x41\x23\x16\xc3\x28\x87\xd3\ \x06\x33\xc1\x22\x8c\x02\x12\x16\x6d\x41\x04\xf7\xc0\x7d\x7b\xa0\ \x54\xa6\x45\x6f\x3c\x90\x88\xf3\x20\x05\xfe\x86\x6a\xef\xb7\x7e\ \x38\x28\x70\x05\x86\x3e\x15\x41\x09\x96\x28\x38\xea\x83\x89\x4d\ \xe8\x6b\xc0\xe6\x11\x13\x25\x51\x14\xd5\x1b\xba\xb0\x76\xa3\x48\ \x8a\x31\x91\x05\x8e\xf0\x57\xc8\x04\x7c\x5b\xc2\x39\x9c\xc6\x07\ \x81\xb6\x4c\x9c\xd0\x72\xb3\xc8\x4d\x18\x04\x4e\x6e\x92\x26\x6f\ \xd1\x41\x83\x74\x53\xec\xd1\x78\x78\x41\x27\x76\xc2\x17\xd4\xf6\ \x90\x7b\x48\x82\xd2\x06\xfe\x6d\xb1\x63\x72\xdd\x41\x14\xd1\xf0\ \x16\xfb\x41\x64\xf2\xf5\x04\xc3\x83\x5a\x50\x56\x04\xa0\x42\x83\ \xf3\x50\x92\xa9\xb6\x8d\xe8\x87\x6a\x91\x78\x6b\xad\x64\x00\x0d\ \x51\x11\xb9\x01\x5c\x3b\xf0\x7f\x10\x45\x93\x0c\xd5\x8e\x6d\x15\ \x8a\xec\xb8\x31\xc3\x11\x8f\x57\xa8\x22\x20\x80\x62\x2e\x76\x14\ \x4c\xd1\x1d\x7d\xe6\x87\xcb\x84\x33\x44\x00\x15\x31\x15\x00\x00\ \xd9\x4d\x3a\xf7\x53\x07\xf9\x5e\x7e\xd4\x1e\x9d\x90\x63\x61\xb2\ \x47\x52\x89\x7d\x5e\xe1\x95\x3d\xd7\x26\x97\x46\x87\x82\x20\x35\ \xc1\x92\x94\x03\x22\x17\xe5\xa2\x96\xe1\x37\x3c\xf5\x40\x09\x52\ \x20\x65\x06\xb6\x8d\x80\x43\x65\x29\xa9\x92\x9e\xc7\x4a\xbd\x95\ \x65\x68\xb6\x7a\xfb\xe7\x84\x65\x07\x6c\x1d\x11\x80\x19\xb6\x61\ \x42\x02\x8f\x3f\xc9\x02\x72\x36\x94\x7a\x47\x96\xd6\x47\x91\x45\ \xd9\x67\xdc\x71\x0a\x4d\x99\x73\x3a\x05\x35\x13\xc4\x47\x3b\x86\ \x4e\x01\xe9\x7c\x81\x64\x69\x5c\x41\x34\xd6\x22\x9a\x18\x78\x41\ \xa1\xc9\x78\x3e\x37\x91\x38\x23\x87\x7c\xc2\x27\x9f\x26\x3c\xc5\ \xe3\x02\x43\x20\x36\x33\x48\x09\x37\xb8\x74\xf9\x96\x8d\x40\x78\ \x7a\x13\xd6\x92\xf8\xfe\x37\x31\xf6\x84\x89\x67\x75\x8e\x6b\xa6\ \x31\x1c\x01\x85\x14\xf7\x2a\xb9\xf7\x93\x3b\x51\x46\x81\x45\x2c\ \x0d\x00\x48\xbb\x10\x6d\x7e\x08\x33\xc0\x32\x99\xdc\x05\x48\xce\ \xa7\x59\xed\x21\x42\x2f\x05\x73\x37\x95\x7c\x50\x89\x5e\xaf\x23\ \x9a\x84\xe6\x7c\x25\x54\x42\x47\x63\x9a\x97\x66\x41\x97\x96\x27\ \x53\x02\x28\xd1\xd0\x05\xa2\x56\x3c\x2d\x60\x9f\x2d\x20\x9b\x75\ \x99\x6f\xf9\xd6\x6f\x8c\x28\x89\xb9\x71\x3e\x0d\x57\x66\xbc\x06\ \x71\x4c\x48\x76\x0f\x47\x45\xbc\x21\x7b\xeb\xa8\x11\x15\x97\x9c\ \xcb\x09\xa1\xbf\x27\x08\xbb\x40\x15\xd2\x19\x6d\x7e\x06\x33\x35\ \x70\x9d\xdb\xa6\x4d\xd9\x79\x48\x18\xc8\x63\x32\x15\x73\x3d\xd6\ \xa1\xea\xd9\x9e\x44\x13\x54\xf5\x11\x9a\x2b\xca\xa2\x28\xaa\xa2\ \xbb\xb0\x16\xf0\x19\x88\xf7\xd5\x02\xf8\xb0\x64\x60\x60\x3c\x53\ \xd6\x54\xa6\x66\x97\xdc\x88\x84\xbb\xa6\x75\x7a\x39\x61\x65\x75\ \x23\x09\xd5\x7f\xb0\xf7\x6b\x1a\x53\x76\x6c\xa6\x23\xa2\xc8\x71\ \x11\x1a\xa1\x58\x42\xa1\x25\x74\xa1\xdc\xd1\x39\xd3\xb6\xa1\x85\ \x47\xa2\x6c\x08\x6e\x1b\xc8\x52\x18\xe4\x3a\x2b\xda\x34\xef\x01\ \x9a\x0d\xc0\xa2\xfe\x8c\x47\x34\x66\xba\xa2\x7c\x64\x2d\x70\x20\ \x2c\x07\x12\x0a\xec\xc6\x09\x2f\x08\x02\xf8\x80\xa3\xf6\x19\x36\ \x4d\xe5\x54\xe3\x07\x38\xee\xb0\x7e\xa8\x86\x7f\xbd\x05\xa0\xa3\ \x27\x9c\x32\x09\x71\xfe\x77\xa0\x4a\xba\xa4\xbd\x31\x71\x6d\xd5\ \x51\x50\x1a\xa5\x91\x59\x14\x64\xe9\x26\x5f\x71\x72\xd4\x39\x9d\ \x1b\x1a\x6e\xc7\xe7\x77\x3d\x06\x48\xe6\xa4\x90\xac\x43\xa6\x63\ \xea\x73\x27\x7a\x9a\x65\x69\x72\x3f\xd7\xa2\x58\xd0\x00\xbd\x63\ \x77\xca\x61\x5f\x78\x6a\x5a\xa9\xd5\x07\x32\x24\x84\xa8\xb6\x65\ \x3f\x4a\x8e\x3f\x8a\x89\x67\x16\x9c\x49\xca\x11\x80\x39\x71\x49\ \x60\x76\x53\xf8\xa4\x90\xca\x80\x6d\xe1\x98\x47\x91\x34\x03\x02\ \x99\x24\x97\x87\xd1\xa6\xa9\x82\xf7\x52\xc5\xe0\x05\xd6\x4a\x15\ \x01\xa9\x9e\x96\x86\x59\xe8\x91\x2d\xfc\x31\xaa\x68\xa2\x48\x66\ \x7a\x9a\x46\x11\x3b\x16\xa9\xa6\x3e\x07\x35\xe3\x52\x2e\x2d\x98\ \x2c\x2f\x78\x05\xc2\x73\x0e\xdb\x70\x00\x3c\x00\x55\x88\x32\x04\ \x06\x30\x65\x24\x89\x70\x82\x7a\x8e\x04\xfa\xab\xc1\x69\x76\x19\ \x23\xac\x82\x49\xac\x18\x86\x12\xfd\x73\x98\xc8\x6a\x8f\x7c\x56\ \x14\x7c\xb2\xfe\x27\x72\xe8\x1d\x2e\x13\xad\xe6\x1a\x8b\x8b\x95\ \xad\x9c\x49\x8b\xb6\xd8\x78\xe9\x16\x74\x75\xe1\x53\xb7\x38\x95\ \x69\x8a\x9a\x8c\x77\x7d\xd6\x87\xa5\xce\x62\x2e\x72\xaa\x13\x57\ \x00\x02\x46\xe0\x02\x86\x78\x0e\x85\x71\x49\x35\x4b\x3e\xf9\xba\ \x55\x33\x82\x89\xea\x03\xa4\x02\x0b\x71\x03\x9b\x04\x4a\xa8\x56\ \x4b\x8a\x5c\x4f\xc8\x5c\xc7\xca\xb0\xd7\x85\x33\x78\x18\x16\x35\ \x90\x2e\x01\x92\x25\xdf\x41\x91\xd1\x70\xb1\x37\x77\x48\x28\x8a\ \xb5\x44\x13\x35\x98\xe6\x01\x74\x08\xae\xa5\x5a\x87\x5d\xd1\x73\ \x3f\x77\xaa\x26\xb7\x78\x66\x89\x14\x62\x61\x17\x31\xba\x8a\x74\ \x9a\x5f\x0b\x22\x83\xb1\x09\x55\x43\x40\x3e\xb9\xa5\x10\xbe\xd6\ \x6b\x10\xe5\x4a\x02\x6b\x93\x37\x82\x5c\x16\x41\x93\x4b\x28\xac\ \x6b\xe6\x38\x0a\x9b\xb4\xf1\x88\x72\x14\x89\x1f\x4b\x01\x16\xd4\ \xe9\xb0\xd0\x46\xb5\x14\x08\x59\x7d\x64\x42\x8a\xd4\x34\xd6\x42\ \x26\xa5\x8a\xb9\xbb\x60\xa9\x63\xd1\x41\x63\xda\x90\xa4\x5a\xa6\ \x62\x69\x9a\xa8\x5a\x96\xdd\x11\x8c\x7d\x91\x1d\x4d\x41\xa7\x46\ \x60\x04\x6b\x00\x36\xf4\x36\x0f\x61\xb3\x3d\xe3\x43\xb7\x51\xe5\ \x10\xbe\xfe\xfa\xaf\xfb\xb7\x89\x08\x5a\x76\x80\xcb\x0f\x4b\x78\ \x61\x65\x17\xb8\xfc\x60\xac\x26\x73\xb8\xa4\xe8\x2b\xdd\x61\x82\ \x03\x12\xa7\x79\xa8\x14\x53\x92\xa9\x94\x39\x8b\xe9\xa9\xb5\xa1\ \xb9\xad\x78\x21\xa6\x7b\x84\x34\x7c\xe8\x34\xe3\x34\x7d\x64\x0a\ \x4e\x61\xe9\x73\x67\x5a\xae\x69\x6b\xb6\x6f\xb2\x62\xd7\x01\x02\ \x5d\xb0\x64\x4b\x26\x6a\x94\x60\x88\x2e\x70\x02\x86\x41\xb7\x14\ \x15\x56\x0a\x51\xa4\xc2\x69\x93\x34\xe9\x7f\x4e\x68\x11\x0d\x95\ \xb7\x12\x07\xb8\x37\x69\xbc\x23\x73\xb4\xc9\x8b\xb8\x28\x37\xa9\ \xd2\x06\x87\x5d\x70\x35\xd1\x2b\xb5\xd0\xd6\x00\x50\x71\x08\x88\ \x70\xc1\x88\xa0\xc1\x1b\xbc\xc1\x17\xfc\x7a\x18\x7c\xa4\x21\x2c\ \xc2\x23\x4c\xc2\x23\xec\x09\x87\x70\xc2\x27\x1c\xc2\x2a\xcc\xc2\ \x28\x4c\xc2\x29\xec\xc2\x31\xac\xc2\x2b\x5c\xc2\x35\x4c\xc2\xc2\ \x6b\xc3\x21\xdc\x84\x0b\xb5\x50\xa2\xc2\x49\xb2\xd1\x49\x0d\x51\ \x43\x58\x25\x5b\x0f\x96\x10\x75\x3b\x4a\x49\xbc\x22\xdb\x53\xa3\ \x2d\x70\x0f\x4f\xfc\xc4\xf2\x05\x07\x5c\x33\x5a\x44\x80\x0f\xb9\ \x50\x0b\x5d\x90\xc5\x7c\x71\x17\x76\x01\x15\x5f\x0c\xc6\x61\x2c\ \xc6\x1a\x63\x4c\xc6\x65\x6c\xc6\x67\x8c\xc6\x69\xac\xc6\x6b\xcc\ \xc6\x6d\xec\xc6\x6f\x0c\xc7\x71\x8c\xc6\x01\x01\x00\x3b\ \x00\x00\x01\x4f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x00\xf1\x49\x44\x41\x54\x78\xda\x62\ \xfc\xff\xff\x3f\x03\x25\x80\x05\xc6\x88\x8d\x8d\xf5\xfa\xf3\xe7\ \xcf\xd6\x7f\x7f\xff\x32\x30\x31\x33\x33\xb0\xb0\xb0\xc4\x2f\x59\ \xb2\x64\x11\x48\x2e\x26\x26\x26\x0e\x28\xb7\x10\x49\xce\x6c\xf1\ \xe2\xc5\xa7\x51\x0c\xf8\xfd\xfb\xf7\xd6\xac\xec\x3c\x06\x29\x29\ \x09\x86\x07\x0f\x1e\x31\xcc\x9d\x33\x73\x21\x50\x78\x11\x54\x6e\ \x21\x9a\xdc\x29\xa0\x30\x23\x8a\x01\x82\x82\x42\x0c\xef\x3f\x7e\ \x60\x78\xf8\xe8\x21\x03\xbf\x80\x00\x03\xb2\xd7\xf0\xc9\x31\xc1\ \x18\x1f\x3e\xbc\x63\x60\x67\x67\x63\xd0\xd6\xd1\x61\x60\x67\x63\ \x65\x60\x62\x62\x64\x20\x46\x0e\xee\x82\x67\xcf\x9e\xe7\x2f\x9c\ \x37\x77\xe2\xbf\x7f\xff\x80\x0a\x98\x18\xde\xbe\x7d\x5b\x0f\x93\ \x7b\xfb\xf6\x5d\x3d\x50\xae\x11\x26\x77\xe7\xce\x9d\x38\x98\x1c\ \x23\xcc\x39\x8c\x8c\x8c\xfc\x40\x4a\x05\x29\x80\x1f\x80\xf4\x42\ \xd9\xc2\x40\xac\x80\x24\x77\x03\xa8\xef\x2b\xba\x01\x24\x45\x1f\ \x4c\x1f\xdc\x0b\xc0\xa8\x22\x29\x1a\x81\xc2\xa3\xd1\x48\xf5\x68\ \x24\x17\x30\x31\x50\x08\x00\x02\x0c\x00\x9f\xfa\xd4\xdf\x4f\x5d\ \xa5\x4b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xb7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x59\x49\x44\x41\x54\x78\xda\x8c\ \x93\x6d\x48\x93\x51\x14\xc7\xff\xf7\x79\xd9\xd2\xc9\xe6\x9a\x04\ \x16\x84\x7e\x2a\xb2\x17\x22\x21\x08\xb2\x70\x10\x81\x64\x44\xd1\ \xa2\x3e\x15\x94\x10\xbd\x10\x11\xf4\x21\xfa\x12\xad\x42\x46\x11\ \xbd\x08\x41\x1f\xa2\x19\x46\x88\x12\xc3\x28\x06\x99\x2c\xcc\x36\ \xa6\x35\x83\xd5\x87\x0c\x6d\x29\xd6\xc0\x99\x9b\xcf\xda\xf3\x3c\ \x9d\xb3\x8d\x22\x1b\xb2\xc3\x3d\x5c\x9e\xe7\xfe\x7f\xe7\xde\x73\ \xee\xb9\xe2\x48\x47\x14\x10\x12\xc8\x1a\x7f\xe9\xe6\x55\xc3\x30\ \xdd\x26\x4c\xf0\xf8\xc7\x04\x0f\x01\x49\x12\x41\x55\x16\xe7\xe9\ \x4f\x18\xa6\x01\xc5\x24\xa1\x6e\x1a\x07\x65\x21\xfc\x07\xb6\xd6\ \x61\x43\xbd\x03\x15\x56\x94\x0c\x90\xd1\x80\x91\xcf\x33\xee\x27\ \xa1\xb1\xb7\xba\x69\x1e\x92\x81\x4e\x85\x76\x6c\x94\x24\xf8\x4f\ \xb7\x36\xc0\x65\x57\x31\x96\x02\xb4\x1c\x4a\x9a\x55\x01\xd6\xd3\ \x06\x2b\x5c\x6b\x70\xa3\x37\xe6\x37\x0c\x7c\x94\xe6\xb3\x5a\xfb\ \x9e\x2d\x75\x70\x12\xfc\xe1\x07\x90\xa2\x5d\xb2\x7a\x69\xe7\x35\ \xd6\xb0\x96\x19\x66\x25\x3a\xca\xf6\xcd\xab\x9d\x98\x9a\x03\x64\ \x2a\xc5\x12\xa5\xb0\x53\x29\xe7\x35\xd6\xb0\x96\x19\x66\x95\x9c\ \xae\x23\x67\x50\xca\x94\xb3\x45\xca\xa7\xba\xa8\x71\x69\x58\xcb\ \x0c\xb3\x54\x44\x23\x4f\x71\x64\x0b\xca\x33\xd6\x32\xc3\xac\x02\ \xc3\x84\x54\x3c\xa2\xd0\xcb\x0b\x60\xa1\xf2\x33\x93\x67\x75\x6d\ \x76\x68\x70\xf4\x3b\xec\x15\x14\x44\x05\x54\x79\x71\x67\x0d\x6b\ \x99\x61\x56\x76\xd4\xd6\x27\xc7\x33\x76\xcf\xc6\x55\xb5\xa8\xa9\ \x52\xf2\x47\x93\x8a\xce\x80\x52\xf4\x3c\x4c\xcb\x36\xca\x73\x6a\ \x46\x43\x47\x4f\x14\x5f\xdf\xf7\x9f\x92\x13\xb1\x81\x2f\xce\x95\ \x0d\x99\xe1\x09\xbd\xd9\xe5\xa8\xc2\x72\x97\x0d\x16\x12\xaa\x7c\ \x23\x24\xb6\x51\x53\x55\xd2\x5c\x69\x2d\x1c\x3f\x1c\x9f\xc6\x9d\ \xee\x08\x26\xe3\xe1\x0b\x83\x0f\x2e\x3e\x14\x9e\xeb\xaf\xd0\x75\ \xa6\x69\x69\x43\xcb\xb1\x9d\xcb\xd6\x36\xb7\x55\xbb\x6a\x9a\xee\ \x9f\x73\x83\xeb\x74\xb9\x33\x8a\x48\xfc\x1b\x15\xad\x70\x37\x82\ \x66\x33\x3b\x37\x94\x18\x09\xde\x8a\x3d\xbd\x1b\x20\x36\xa9\x08\ \x21\xe0\xf1\xf5\x27\xbb\xce\x6e\xeb\xd1\x0d\x4c\xef\x68\x3b\xf1\ \xbc\x9a\xc4\xde\xde\x77\x08\xbd\x89\x3c\x0a\xdd\x3c\xea\x5b\x50\ \xc3\x59\xf2\x89\xfd\xbe\x97\x69\xfe\x50\xd2\xe9\x9f\xf9\xbc\x77\ \x79\xfb\xd2\xda\xbc\xb6\xf7\x70\xcb\x3a\xf8\x02\xa3\x08\xbc\x08\ \xdd\x7b\x7d\xfb\xf8\xa5\x7d\xed\xc1\xf1\xff\xae\x41\xfc\xed\x16\ \xd1\xea\xed\xfb\xd3\x20\x86\x6e\x98\xd4\x5d\x98\x8c\x0d\x9c\x1c\ \x7e\x7c\xad\x7b\xf7\x95\x67\x09\x55\x51\x51\x2a\x80\x44\x2f\x58\ \xd0\x23\x5a\xd8\x78\x9b\x8a\xf3\x27\xf2\x54\x39\x3d\xf1\x5b\x80\ \x01\x00\xc2\x0b\xf3\x7f\x9f\x42\x65\x9d\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x39\x36\x36\x42\x41\x42\x38\x36\x31\x30\x41\ \x31\x31\x31\x45\x33\x42\x44\x42\x38\x43\x38\x30\x30\x36\x45\x37\ \x32\x34\x35\x39\x45\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x39\x36\x36\x42\x41\x42\x38\x37\x31\x30\x41\x31\x31\x31\x45\ \x33\x42\x44\x42\x38\x43\x38\x30\x30\x36\x45\x37\x32\x34\x35\x39\ \x45\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x39\x36\x36\x42\x41\x42\x38\x34\x31\x30\x41\x31\x31\x31\x45\ \x33\x42\x44\x42\x38\x43\x38\x30\x30\x36\x45\x37\x32\x34\x35\x39\ \x45\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x39\x36\x36\ \x42\x41\x42\x38\x35\x31\x30\x41\x31\x31\x31\x45\x33\x42\x44\x42\ \x38\x43\x38\x30\x30\x36\x45\x37\x32\x34\x35\x39\x45\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x1c\ \xdd\xb5\xd4\x00\x00\x01\x7c\x49\x44\x41\x54\x78\xda\x62\xfc\xff\ \xff\x3f\x03\x25\x80\x89\x81\x42\x30\xf0\x06\xb0\x78\x74\xec\x01\ \x33\x40\x41\x01\x0c\x0f\xae\xbf\xff\xff\xcf\xfb\xfb\xef\x7f\x38\ \x3c\x6c\x40\x14\x23\x18\x7d\x63\x62\x64\xdc\xcc\xcc\xcc\xd8\xcd\ \xc8\xc8\x78\x16\x88\x41\x62\x0c\x2c\x30\x35\xff\xfe\xff\x9b\xc6\ \xc2\xc2\x9c\x69\xa3\x2e\xce\xa0\xaf\x28\xc2\x20\xc0\xcd\xc6\x80\ \x08\xdf\xff\x0c\x3f\x7e\xfe\xe5\xba\xf1\xf4\x43\xf8\xfe\x4b\x4f\ \xc2\x3f\x7d\xff\xbd\x80\x89\x89\x91\x85\x99\x91\x31\x86\xd1\xbd\ \x7d\x37\x50\xf3\xff\x55\x12\x82\xdc\xa1\xce\x06\xb2\x0c\x17\xef\ \xbd\x61\x78\xf7\xe9\x3b\xd8\x50\x90\x09\x8c\xcc\x4c\x0c\x8c\xec\ \x9c\x0c\xd2\x22\xbc\x0c\x1a\xe2\x5c\x0c\x92\xfc\xec\x0c\x33\x76\ \xdd\x64\xb0\xd5\x91\x64\xd8\x70\xe8\x26\xd8\x05\xee\x40\xc7\x84\ \xfe\xfa\xf3\x97\x61\xe1\x9e\x6b\xdf\x3f\x3d\xbe\x31\xf1\xe3\xc3\ \x2b\x97\x18\x19\x99\x98\xfe\xff\xff\xf7\x4f\x40\x5e\x47\x97\x57\ \x4a\x2d\xef\xf9\xbb\xaf\xdc\x57\xdf\x08\x33\xc8\xf0\xb1\x32\xa4\ \xb8\x6a\x32\x28\x8a\x70\x31\xac\x3d\x70\x1d\x6c\xc0\x0e\xa0\x77\ \x18\x5e\x3c\x7b\xbe\xeb\x60\x7b\x78\x05\x90\xff\x04\x88\xbf\x22\ \x85\x13\x28\x90\x56\xd9\x56\xac\xec\x67\x63\x65\x76\xf8\xc4\x2d\ \xc1\xb0\xe0\xfc\x3b\x86\x58\x63\x56\x48\x20\x02\x03\xeb\xd7\xef\ \x6f\x9f\x4e\x00\x35\x67\x00\xbd\x73\x1f\x4b\x40\x7f\x03\xfa\xe7\ \xf5\xf7\x2f\xef\x3f\x44\xdb\x6b\x30\x9c\x7f\x03\x14\x00\xba\x96\ \x8f\x9b\x93\x01\x18\x0e\xe0\x80\x34\x04\xe2\xcf\x40\xcd\x77\xf0\ \x45\xd7\xbf\x7f\x20\x0f\xfd\x63\x80\xc4\xce\x7f\x20\x64\x64\x00\ \xea\xff\xcc\x48\x42\x94\x1b\x63\x11\xfb\xcb\x38\x9a\x17\x18\x00\ \x02\x0c\x00\x79\x5d\x99\x6b\x1c\xb0\x92\x44\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x3e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xe0\x49\x44\x41\x54\x78\xda\x8c\ \x53\x31\x4b\x1c\x41\x14\xfe\x66\x66\x35\x77\xca\x11\x0f\x2c\x14\ \x34\x56\x69\x34\x85\x8d\x10\x48\xa1\x16\x9a\x14\x11\x51\x88\x01\ \x63\x97\x56\x0b\x49\x13\xac\x55\x62\xe4\xb0\xf1\x07\x58\x04\x52\ \x58\x48\x40\x8c\xb9\x88\x85\x8d\x36\x8a\x85\x67\x84\x10\x44\x63\ \xa2\x85\x78\x82\x1e\x04\xdd\x99\xf1\xbd\xdd\xdb\x75\xf7\xcc\x81\ \x0f\x86\x9d\x79\xdf\xf7\xbe\xfd\xe6\xed\x5b\x61\xad\x05\xc7\xcb\ \xd9\x8d\xbc\x31\xa6\xc6\x3f\x95\x0f\x41\x4b\x4a\x79\xbe\x38\xfc\ \x34\xcd\x67\x27\x00\xb8\xb8\xfb\x49\x1d\x0c\x09\x8a\x32\xc5\x2c\ \x2e\x85\x40\x76\xe7\xa4\x26\xc8\x85\x02\x6c\x44\x25\x92\x58\xfb\ \x99\xf7\x48\xe2\x3f\xc5\x2c\xde\xf9\x38\x0d\x1b\xb1\x79\x2b\x40\ \x15\xc9\xea\x87\x68\xac\xaf\x84\x2c\xe3\xc0\x80\x39\x49\xe2\x8a\ \xbb\x02\x42\x5f\x61\x2e\xbb\x09\xed\x6a\xff\x2c\x10\xba\xb0\x45\ \x87\x1c\x9b\x8e\x42\x5a\x5f\x44\xac\x11\xc2\xeb\xf5\xc8\x94\xbd\ \x6f\x0c\x8c\x7c\xb4\x41\x5d\xe8\xe0\xda\xfa\xc6\x8f\x7e\x1f\x22\ \xe1\x48\x7c\xc8\x1e\xe0\x5b\xee\xd4\xcb\x3d\x6f\xa9\xc5\xfb\xee\ \x26\xfc\x73\x0d\x1a\x1a\x1f\xc1\x8d\x74\x48\x46\x7b\xc0\x91\xaa\ \x7a\x80\x74\x2a\x81\x95\x1f\x67\x98\x7e\xdb\x8e\xb1\xc1\x67\x58\ \xdd\xcb\x7b\x39\xc6\x82\x2b\xdd\x11\x08\xfa\x3e\xb9\xbc\x8f\xb6\ \xf1\x75\x24\x14\xf0\xa7\x60\xf1\xf5\x57\x81\xf6\x16\x6d\x13\xeb\ \x1e\x16\xe5\xc6\x9a\x18\xc4\x97\xad\x13\x0c\xbd\xea\x22\x40\x93\ \x80\x4b\x6f\xae\x46\x6f\x4f\x87\x77\xc5\x4f\xf3\xdf\x31\xf5\x26\ \xce\xbf\xbd\x42\xd1\xd8\xde\xf4\x0b\x7c\x9e\xcf\xe2\xb8\x60\x70\ \x7e\x45\xb3\xa1\x24\xfe\x5e\x6a\x2f\xc7\x58\x94\x1b\x13\x08\x72\ \x46\x4b\xe4\x32\x3d\x58\x59\x5a\x25\xd4\xf1\x16\xef\x39\xc7\x58\ \x69\x13\x9c\xd8\x90\xb3\x22\x7d\x67\x3e\xe4\x32\xfd\x68\x7e\xb7\ \xe0\xe5\x76\x69\xcf\x63\x24\x1d\x11\xe3\xc6\x04\x1c\xa5\x8a\xa0\ \x0a\xc1\xdd\x4c\x5f\xfc\xb6\xa2\x84\x1b\x15\xa8\xac\x50\x17\x03\ \xa3\x33\x29\x57\x1b\x7f\xec\x04\x97\x88\xe2\x08\x5b\xdf\x36\x8d\ \xa7\x43\x3d\x61\x6e\x68\x3c\xf8\x9d\x85\x10\xad\xf4\x50\xb8\x5f\ \x68\xaa\xdb\xe6\xcd\x8d\x00\x03\x00\x3f\x31\xd9\x85\xae\x5b\xd0\ \xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xd7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x79\x49\x44\x41\x54\x78\xda\x9c\ \x52\x4d\x4b\xc3\x40\x10\x9d\x4d\x82\xbd\x54\x88\xad\x11\x11\xbf\ \x28\x55\x8a\xe2\x29\x82\x3d\x7a\xf2\x77\x08\xea\x55\xc4\xbb\xd4\ \xf4\x0f\x88\x78\xf7\x20\x82\x3f\xc3\x7a\x2d\x54\x4d\x45\xa8\xd7\ \x5a\x8b\xbd\x15\x13\x21\x4d\x36\xbb\xce\xae\x15\xdb\xda\xb4\xc1\ \x07\x6f\x86\xcd\xce\xbe\x79\xd9\x59\xcd\xb2\x2c\x40\x70\x24\x89\ \x91\xff\x40\x11\xa1\x50\x28\x6c\xc6\xc9\xc3\x40\xd0\x41\xa4\xfa\ \x00\x86\xd6\x29\xa3\xd4\x7b\x11\x55\x17\xcb\x01\xe7\x5c\x50\x80\ \xc8\xc2\xdf\x20\xa3\x89\x22\x95\x51\x02\x8c\x31\xc0\x1a\xf3\xea\ \xfa\xa6\x42\xc3\x10\x42\x8a\x0c\x29\x32\x94\x0e\xc6\x4e\x01\x0b\ \xf9\xe2\x72\xa6\xeb\x86\x10\xc6\x42\x79\x58\x70\xec\x14\x44\xf7\ \x62\xb1\x28\xd7\x2b\xab\x59\x20\x44\xfe\x4a\xdf\x1d\x8c\xb4\xbe\ \x94\xc9\x02\xc3\x4e\x9d\x4e\x87\xef\xef\xed\x82\x6d\x57\xa1\xfa\ \xf4\x8c\x6b\x9f\x88\x7d\x25\xf2\xe2\x70\x93\x73\x06\x81\xef\x43\ \x10\x04\x10\x50\x0a\xed\xf6\x07\xa4\x52\x69\xd8\x58\x5f\x83\x44\ \x62\x42\x3a\xd1\xa2\x3a\xcf\xce\x2d\x7c\x0b\xe0\x61\xf9\x0d\x5d\ \xb8\xee\x27\x38\x8e\x03\xe9\x69\x03\x72\xb9\x1c\xd4\x6a\x35\xae\ \x0d\x1b\x19\x06\xec\x18\x48\x17\xbd\xa2\x9e\xe7\x41\x32\x39\x09\ \xe5\x72\x19\xde\x9a\x4d\x50\x55\xb5\xad\x0c\x1e\xd6\xd3\x86\x24\ \xc5\xce\x3f\x37\x2d\x28\xf6\x1a\x8d\x06\x94\x4a\x77\x90\xcf\x6f\ \x41\xab\xf5\x7e\x79\x7c\x74\xb8\xad\x0c\xbe\x56\x1a\x84\x40\xe5\ \x9c\x59\x1f\x5d\xc7\xbd\x7d\x78\xb4\xa1\xfe\x5a\xbf\x17\xe2\xba\ \x3e\xb5\x73\x76\x7e\x61\x6b\x10\x13\xd6\xe9\xc9\x01\x26\x1d\xe9\ \x18\xc6\xcc\x0b\x21\xea\xbc\xe7\xf9\xf0\x5f\x98\x5d\xc2\x97\x00\ \x03\x00\x0a\x99\xff\x82\x0d\xbe\x28\xe0\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x7d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x1f\x49\x44\x41\x54\x78\xda\xc4\ \x93\xc1\x4a\xc3\x40\x10\x86\xbf\x6d\xad\xcf\xa1\x8f\x50\xa2\x28\ \xf1\xde\x0a\x2a\x16\xfa\x10\xa2\x57\x2f\x3e\x42\x51\x7a\xd7\xb7\ \x50\xf0\xa0\x0f\xd0\x82\x68\x6e\x1e\x85\x7a\xd1\x83\x07\x31\xe0\ \xc1\xa4\x64\xc7\xd9\x34\x4a\xb0\x6e\x94\x7a\xf0\x87\x61\xfe\xcc\ \xcc\xfe\xfc\xb3\x61\x8d\x88\x50\x86\x31\x26\xcf\x9b\x7d\x4e\xc7\ \x19\xdb\x8e\x37\xea\x9c\x9d\xef\xd3\x71\xfc\xeb\x7c\x5e\x28\xc7\ \x07\x5a\x87\xc8\xe3\xd3\xb1\xdc\xde\xed\x48\x5b\xb9\x6f\xbe\x86\ \x07\xd6\xc2\x6b\xfa\x4c\x34\x3a\x41\xf0\xa3\x56\xd1\x23\xc9\x5e\ \x90\x39\x2a\x51\x29\x90\x4a\x8c\xf9\x93\x40\x36\x11\x30\x32\x83\ \x80\x29\x1c\x50\xff\xaf\x15\x9c\x83\x04\xbd\x44\xe7\x60\x96\x15\ \xdc\x6f\x7c\xb3\x71\x2e\x90\x59\xbf\xc0\x94\xc1\xad\x3e\x83\x64\ \x4c\xb8\xda\x84\x38\x7d\xc8\x9d\x84\x81\x5e\x45\x0f\x99\x6f\x30\ \xd4\xcf\xb5\x4a\x07\x56\x08\xf7\x3a\x5d\x5a\xcd\x2e\xa2\x5d\xab\ \xe1\xf8\xae\xd6\x5c\x6f\x6a\xd5\x6f\xde\x42\xd0\xee\x71\xb3\xb2\ \x0c\x8b\x0b\x93\xda\xe8\x1e\xae\xae\xe1\xf2\x80\x25\x9d\x8f\x7e\ \x12\x70\x29\x58\x57\x91\xb0\x30\x3b\x1c\xc0\x85\x1e\x56\x1a\xfd\ \xfa\x31\x39\x91\x8d\x23\xc4\x85\xe3\xbe\x79\x9f\x83\x4f\x91\x22\ \x47\x65\x81\x32\xde\x05\x18\x00\xb9\x20\xa3\xba\x00\x9e\x03\x5f\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x16\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xb8\x49\x44\x41\x54\x78\xda\x94\ \x93\x5d\x48\x53\x61\x18\xc7\xff\xef\x39\x67\x3b\xba\xe9\xcc\xe5\ \x54\x36\x5d\x0c\xcb\x58\xa5\x10\x2a\xb6\x0a\x43\xb7\x0b\x29\x29\ \xe8\x22\xbc\xc9\x40\x2f\xba\x90\xec\xfb\xa6\x90\x0a\x89\xba\x10\ \x1c\x64\x37\x75\xe7\x8d\x20\x14\x44\x20\x14\x8a\x14\x92\xae\xd6\ \x48\x25\x91\x2e\xda\xfc\x9c\xce\x0f\xd8\x64\x9b\x3b\x9f\xbd\x9b\ \x1f\x6c\x12\x41\x0f\x3c\x9c\x73\xde\xf7\xff\xfc\xce\xf3\x3c\xef\ \xf3\x12\xa4\xd9\xf7\x97\xf5\x5d\xaa\x2c\xdd\x83\x2a\x67\xed\x2d\ \x12\x76\x8b\xb0\x5c\x77\x55\xfb\x48\x27\xf6\x99\xaa\xaa\x20\xbb\ \x1f\x1e\x77\xdd\x62\x81\xed\x98\xd9\xe6\x38\x0f\x62\xb2\x24\x77\ \x69\x30\x81\x1a\x5a\x84\x7f\x7c\x10\x6b\xfe\xe9\xa5\xda\x5b\x9f\ \x2d\x7f\x05\x8c\xf5\x9c\x5b\xb4\xd5\x34\x98\x73\x8e\x37\xe2\xc5\ \x78\x1e\x3c\x41\x1d\x34\x1a\x02\x4e\xc3\xe2\xb4\x25\x8e\xb6\xca\ \x75\x84\x27\x07\x11\xf0\x8e\x2c\x39\x6e\x7f\xb2\xa4\x03\x98\xd1\ \x1e\x67\x97\xd1\x5a\x6e\xd6\xdb\x1b\xd0\xf6\xae\x10\x16\x53\x31\ \xba\x2f\x15\xe3\xa1\xab\x00\xad\x35\x06\x10\xfe\x20\x1e\x78\x6c\ \x38\x70\xc2\x09\x63\xe9\x11\x73\x52\x9f\x9e\x05\x23\x8a\xd2\xfd\ \xc3\xd5\x75\xe8\xf5\x18\xd1\x54\x61\x84\xeb\xa8\x1e\x11\x51\xc6\ \x9a\xa0\x20\x22\xab\xe0\x78\x02\x9d\x8e\xc3\x40\xa0\x14\x65\x55\ \x75\x48\xea\x33\x00\xaa\xa2\xf0\x8c\xd1\x80\xaf\xa1\x3c\x54\x97\ \x66\x63\x43\x00\x62\xe0\x20\x70\x5a\x88\x59\xdb\x9e\x6f\xd0\x60\ \x46\x28\x02\x9b\x6f\x80\x42\xf5\xe9\x00\x4e\x52\x68\x1b\xa4\x38\ \xb4\x5a\x16\x60\x19\x5c\x68\xef\x86\x86\x63\xc1\xd2\x06\x12\x5a\ \xa3\x2c\xc9\xb8\xfb\xec\x0e\x12\x64\x5b\x97\xd2\xa7\x03\x14\x85\ \xa1\x1b\x12\x38\x1a\x34\x17\x16\xd1\xfb\xfc\x26\x62\x0c\x83\x18\ \xcb\x81\xcf\x66\xc0\x50\x6e\x2c\xaa\x40\x23\x26\x75\x22\xcd\x60\ \x1f\x40\x56\x89\x20\x84\x56\xb4\xa7\x4c\xcb\x98\x08\x6a\x61\xc8\ \x05\xe2\x34\x4a\xaf\xa7\x41\xbc\x26\x75\x12\x0a\x05\xda\x35\x73\ \x88\x87\x56\x20\x48\x64\x33\xa3\x07\x0b\xeb\x89\xbe\xa9\xaf\x3e\ \xb4\x1e\xf2\x61\x39\x2a\x61\x2e\x42\xa8\x08\x48\x48\x2a\xe2\x71\ \x15\x91\x28\x68\x19\x80\x0b\x23\x98\xf0\xf8\xa0\xcf\x62\x72\x33\ \x00\xd7\xdd\x5f\x1e\xcd\xfa\x83\xab\xc1\xc9\x71\x3c\xb5\xbd\x41\ \x39\x3f\x8f\xb0\xc8\x23\x92\xe0\xb1\xb1\xc5\xa1\x30\xea\x47\x8b\ \xf0\x9a\xce\xc0\x18\x22\x11\x11\xce\x26\x3b\x46\xdd\xf5\xea\xde\ \xa0\xee\x3c\x2b\x07\x3a\x9d\x43\x56\xab\xc9\x54\x79\xb2\x0c\xd9\ \xf9\x39\x74\x4a\x94\xd4\x76\x74\x23\x8a\x1f\xbe\xdf\xd8\x5c\x59\ \x40\xe3\x99\x12\xc0\xde\x0c\x84\x87\xe1\x19\xfa\x89\xda\x1b\x43\ \x84\xdb\x01\x4c\x5e\xe9\x1a\x76\xb9\xdb\xcf\x76\x04\x66\x57\xaf\ \xd2\xee\x6b\x77\x7f\x41\x87\x75\x93\x36\x22\xb7\xb9\x64\x1a\x58\ \x08\xa4\x4e\x0a\x15\x2d\x90\xd5\xa9\x8c\x0c\x76\xcd\x4c\xbd\x28\ \x59\x5a\xda\x9a\x4c\x9d\xed\x7f\x72\xd1\xdb\x6c\xf5\x02\x86\x3c\ \xcc\xea\x1c\x6f\x97\x7e\xcd\x5f\x76\x74\x7c\x24\xfb\x01\xff\xb2\ \xaa\xfe\xc7\x4d\xde\xe4\x6c\x70\x8c\x82\x0f\xdf\x02\xd7\x5e\xbd\ \x9f\xee\xfb\x1f\x40\x0a\x92\xf6\x3e\x43\x2f\x53\xf4\x8f\x00\x03\ \x00\xb3\x2e\x15\x6e\x59\x5c\xf2\x41\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x02\x90\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\x9c\x00\xad\x00\xc0\xa7\x71\ \x7d\xed\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x04\x0d\x10\x0a\x0d\x08\xca\x59\x73\x00\x00\x02\x1d\x49\x44\ \x41\x54\x38\xcb\xbd\x93\x4b\x48\x54\x61\x14\xc7\x7f\xf7\x5e\x9d\ \x6c\x91\xab\x2c\x0b\x7c\x14\x94\x30\x11\x83\xcc\xb5\x20\x0d\x7a\ \x38\x5a\xd7\x49\x82\xa1\x88\x76\x42\xb4\xd1\x45\x84\x8b\x74\x23\ \x04\xe9\x84\x3a\x2d\x5c\xd8\xaa\x59\x08\x06\x96\x81\x64\x82\x4d\ \x10\xc4\xb4\xc9\x19\xc4\x28\x21\xf3\x91\x12\x35\x22\x63\x52\x90\ \x8f\xb9\xf7\x9e\x16\x33\x3e\xc6\xa9\x45\x2d\x3a\xf0\x2d\xce\xeb\ \xc7\xe1\xfc\xcf\x07\xff\xc3\xbc\x9d\x0c\x9c\xef\x40\xfe\x19\x50\ \x75\x17\x99\xf8\xdc\x23\x95\x6d\x99\x10\x65\x7b\xc0\x68\xe7\xad\ \x08\x47\x25\x55\x6a\xd9\x50\xee\x84\xe2\x3d\x70\x28\xaf\x95\x96\ \x47\xcd\xbc\x68\xda\xec\x4b\x03\x5c\xbc\x87\x54\x94\x41\xc1\x5e\ \x28\xd4\xae\x6e\xc4\x27\x7e\xf6\x92\xb0\x40\x55\x61\x5f\x4e\x1d\ \x5d\x03\x41\x86\x1a\x93\xbd\x1b\x00\x6f\x07\x7d\xe5\xc7\xb9\xb4\ \xbc\x02\xb3\x73\xa0\xa8\xf0\x75\x1e\x6c\x81\xf2\x32\x28\x2e\x82\ \x82\xdc\x0a\xfc\x0f\xc2\x84\x9a\xd0\x81\x68\xda\xe8\xbe\x2e\xe4\ \xc6\x13\xc4\x73\x9b\x51\xc0\xbd\xf5\x55\xfb\x91\xc1\x58\xbe\x78\ \x5a\x91\x54\x2c\xd3\x6a\x03\xc8\x89\x06\xee\x00\x25\xe7\xda\x91\ \x9a\x4e\x1e\xae\xe7\x3c\x2d\x0c\x1b\xed\xc9\x66\x6f\x27\xd7\x6b\ \x03\xbf\x57\xc4\x0d\xec\x3e\xd3\x86\xc4\x17\x7b\xc4\xe3\x4f\x2b\ \x3a\xf0\xf4\xac\xeb\xf1\x88\xa1\xcb\x1b\xc3\x2d\x23\x86\x2e\xd1\ \x0b\xc7\xba\x33\x96\x58\xd9\x86\x74\x5f\x6b\x25\xfc\xb1\x99\xd9\ \x05\x78\x3d\x0e\x39\x0e\xf0\xcd\x14\x71\xf2\x7b\x09\x07\x8f\x38\ \x41\xd3\xc0\xb2\x98\x7e\x3f\xce\xd2\xe2\xb7\xfb\x1b\x00\xa3\x03\ \xa9\xf7\xd6\x31\x6f\x06\xb1\x6d\xc8\xd6\xe0\xf0\xce\xa4\x12\x59\ \x0d\x1f\xd0\x5d\x4e\xc4\x5a\x43\x2c\x0b\x45\xd3\x50\x34\x07\x91\ \xb1\x71\xb2\xd6\x01\x43\x8d\xe8\xa6\x19\x8c\x5c\xa9\xaa\xc0\x91\ \x1b\x66\xea\x13\x84\x66\x7a\xd1\x54\xa8\xb7\x4b\xe1\xb4\x17\xc5\ \x73\x79\x73\xe4\x50\x1f\x32\xfa\x2e\xe3\x90\xdc\xd5\x7e\x22\xc6\ \xa9\x7c\x9e\xbd\x8c\xf1\x3c\x29\x17\x91\x1a\x3d\xe2\xda\xbf\x0b\ \x49\x24\xb0\x2d\x1b\x55\x53\x51\xb2\xb3\x19\xfb\xf2\x03\x75\x1b\ \x20\x3a\x7c\x0b\x3d\x14\x8e\xc1\x1a\xaf\x52\x5a\x47\x63\xab\x66\ \xff\x64\x7c\x19\xb1\x4c\x54\x2c\xc4\x32\x99\x8c\x2f\x13\x5b\x35\ \xfb\x95\x3f\x9c\xbf\x1b\x58\x02\xa6\x52\x7e\xe1\xa0\xa7\x34\x90\ \x9f\xb3\xc3\x27\xa9\xcd\xc7\x56\x56\xfb\xbd\xa1\xd1\x9b\xca\x5f\ \xfc\xa9\x42\x20\x6f\x8b\xbf\x00\xcc\xfd\x02\x40\x1f\xcd\xb0\x37\ \x01\xe0\xf4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x42\x34\x32\x34\x41\x43\x42\x36\x31\x30\x37\ \x36\x31\x31\x45\x33\x41\x30\x39\x36\x43\x31\x31\x38\x32\x30\x46\ \x38\x35\x43\x43\x44\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x42\x34\x32\x34\x41\x43\x42\x37\x31\x30\x37\x36\x31\x31\x45\ \x33\x41\x30\x39\x36\x43\x31\x31\x38\x32\x30\x46\x38\x35\x43\x43\ \x44\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x42\x34\x32\x34\x41\x43\x42\x34\x31\x30\x37\x36\x31\x31\x45\ \x33\x41\x30\x39\x36\x43\x31\x31\x38\x32\x30\x46\x38\x35\x43\x43\ \x44\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x42\x34\x32\ \x34\x41\x43\x42\x35\x31\x30\x37\x36\x31\x31\x45\x33\x41\x30\x39\ \x36\x43\x31\x31\x38\x32\x30\x46\x38\x35\x43\x43\x44\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xcd\ \x7a\xf6\x92\x00\x00\x02\x9b\x49\x44\x41\x54\x78\xda\x8c\x53\xcf\ \x4b\x54\x51\x14\xfe\xee\x7d\xef\xa9\x33\x5a\x48\xd4\x34\xc8\xd0\ \x26\x98\x36\x19\xd1\x18\xa4\xa4\x58\x81\x64\x54\xda\x58\x61\x16\ \x24\xea\xbe\x45\xb4\x8b\x16\xd2\x3f\xd0\xaa\x8d\x4e\x45\xa4\x8b\ \x14\x67\x18\x6c\x34\x8d\xa8\x10\x37\x46\x8b\xdc\xa4\x89\xe6\xaf\ \xca\x82\x49\x6d\x9c\x99\xf7\xe3\xde\xee\xbd\x6f\x66\xb2\x16\xd1\ \x81\xc3\x3b\xef\x9c\x73\xcf\x77\xbf\x73\xce\x25\xf1\xe1\x61\xe4\ \x85\x31\x96\xb4\x1d\xa7\x9c\x33\x06\x8e\xed\x22\xff\x08\x28\x21\ \x20\x84\x0c\x6a\x9a\x76\x91\x52\xaa\x22\x7a\x21\x85\x73\xd8\xb6\ \x5d\x1e\x6e\x6e\xc6\xbf\x64\x6d\x6d\xad\xe5\xcd\xc4\x44\xbf\x61\ \x18\x57\x64\x11\x4a\x09\x20\x95\x08\x14\x59\x44\xca\xe2\xd2\x32\ \x96\x96\x57\x94\x4a\x7b\x7e\x61\x51\xf9\x1f\xf7\xf5\xc1\xe7\xf3\ \xe1\x78\x75\x75\xab\x65\xdb\xfd\xe2\xc6\xd0\xbd\x86\x7b\xd0\xb2\ \x39\x4c\xce\x54\xe2\xf8\xd8\x73\x04\x02\x81\x3c\x2d\x54\x1e\x3c\ \xa4\x6c\x49\x41\x1c\xc4\x5e\xbf\x1f\xb5\x35\x35\xad\x13\x93\x93\ \x86\x7e\xf3\x45\x11\x8c\x62\x0f\x6c\xad\x18\xf1\xf6\xdd\x2a\xf1\ \xcc\xb9\x26\xf7\x6a\x8a\x1a\xe0\x30\x47\xd9\xc1\x60\x10\x4f\x07\ \x06\x54\xd1\x6b\x6d\x6d\x12\xb8\x45\xf7\xea\x1c\xba\x50\x93\x30\ \xae\x51\x97\x02\xf5\x7a\x04\x27\x22\xe1\x41\x34\x1d\x54\x54\xd9\ \x70\x18\x8e\x86\x42\x4a\xb7\xf7\x8d\x6a\xa2\x99\x1a\x25\x9c\x99\ \x19\x78\x8a\x34\x15\x48\x95\x95\xc2\x77\xf9\x2c\xa8\xa7\x14\xeb\ \xde\x12\xf8\xaf\x5e\xc0\xce\xf3\xa7\xf0\x3d\x9d\x45\xcf\x83\x87\ \x78\x36\x32\x82\x4c\x36\xab\x40\xc4\x14\x08\x37\x33\x69\x30\x8b\ \xe1\xc8\xdd\x69\xfc\x30\xa7\xb1\x2a\x2a\xff\x14\x97\x29\x12\xa8\ \x3e\x61\x27\x73\x83\x94\xe5\x2f\x5d\x6f\x17\x9c\x1c\x94\x18\x2e\ \x98\xfe\xaa\xbb\xa1\xea\xd8\xad\xe8\x54\x3a\xcb\xf0\xee\x76\x08\ \x65\x7b\xf6\xe1\x91\xe8\xb6\xbf\xa2\x42\x70\xe7\xa8\x3b\x79\x02\ \x5f\x05\x52\x30\xdc\x28\x28\x89\x5e\x08\x1f\x2c\x13\xb8\x1f\x01\ \x97\x34\x6b\xef\x8c\xc9\x42\xa1\xfd\x9d\x4f\xf8\xb7\xd5\x05\x2e\ \x65\xfd\x75\x82\x9b\x1f\x67\x79\x66\xe6\x03\x4f\xcf\xce\xf0\xad\ \xb9\x39\x9e\x12\xfe\x85\x64\x92\x7f\x4e\xa5\xf8\xea\xfa\x86\xca\ \x1b\x18\x1a\xe2\xfa\x96\x45\x50\x79\x23\xf6\xf6\xfd\xbd\xa6\x2a\ \xbb\xfb\xd3\x94\xac\xf6\xa5\xae\x51\x21\xe6\xf7\x02\x96\x05\x2b\ \x3e\x8e\xf1\x58\x0c\x01\x71\x33\x39\x85\x5d\xf5\xf5\x2a\x44\x5e\ \x8e\xb9\xab\x6c\x09\xbe\x9b\x69\x93\x87\x9b\xc3\x60\x39\xce\xf9\ \xaf\x54\x9a\x5b\x5b\xb2\x6d\x2b\x07\xa3\x51\xd0\x2d\x0b\x90\x9a\ \x75\xe4\x2e\xba\xe1\x48\x24\x82\x91\xd1\x51\x18\xc2\x9e\x17\x3c\ \x8b\x9b\x1a\x60\x9c\xae\x53\xd1\x9e\xde\x5e\x24\x12\x09\x64\xc5\ \x14\xe4\xbf\xce\x38\x0a\x0b\x43\x89\xfb\x40\xba\x3a\x3a\x0a\x28\ \x07\xf8\x9f\xcf\xaa\xab\xb3\xb3\x60\x13\x77\x8c\xbf\x7f\x84\x6e\ \x0e\xc5\x62\x3b\x98\x3c\x24\x55\xf8\x54\xa7\xf3\x08\x32\x2f\xe7\ \xcf\xbd\xcc\x4d\xf2\xd7\x63\x3b\x9c\x1b\xf7\xff\x8a\xf3\x4b\x80\ \x01\x00\xc7\xa7\x3f\x94\x61\xd1\xe0\x93\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xc8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x6a\x49\x44\x41\x54\x78\xda\xa4\ \x53\x4d\x68\x13\x51\x10\xfe\xde\x76\x13\x93\xcd\x8f\x4d\x41\x4a\ \xa9\x56\xc8\xb5\xde\x5a\x0b\xc6\x82\x0a\x45\x44\x0a\x3d\xe9\xcd\ \x93\x22\x68\x11\x29\xcd\x41\xf0\xe2\xc1\x43\xd1\xa6\x20\x55\x4f\ \x7a\x69\x41\xc1\x82\xa0\x14\xa4\x50\x14\xbc\x88\xf9\xb1\x9a\x52\ \xd1\xd8\x58\x2c\xd6\xd4\xd0\xfc\x36\x76\xd3\xec\x9f\xf3\x76\x93\ \x4d\xb5\xde\x1c\x98\x7d\xf0\x66\xbe\x6f\xbe\x9d\x99\xc7\x0c\xc3\ \xc0\xff\x98\xc8\x3f\x8c\x31\xfb\xe2\xf4\x38\x7a\x54\x0d\x63\xba\ \x8e\x01\x4e\xcd\x23\x82\x00\xb4\x08\x98\x27\xbf\x36\x3b\x8a\x44\ \x23\x97\x17\x67\xe6\xa7\x4e\x70\xea\x16\xee\x05\xbc\xfe\xcb\xe7\ \x8e\x5d\x44\xf7\xc1\x43\x50\x94\x0a\x8a\xf2\x3a\x7e\x16\x57\x91\ \x5c\x79\x8f\xd8\xf2\x12\x6a\x8a\x36\x33\x1b\xc6\xd9\x5d\x04\x04\ \x7e\xd2\xd9\xd6\x71\xe6\xee\xf9\x69\x24\xd7\xa6\xf0\xe1\xdb\x14\ \x54\x9d\xab\xa3\xea\xe4\x2e\x47\x10\x15\xd9\x87\x57\xc9\x45\xc8\ \x35\xfd\x3e\x29\x19\xb6\x09\x06\x23\xac\xc7\xe7\x92\xe2\x77\x2e\ \x4c\xe3\xe5\xa7\x61\xe4\x2b\xeb\xa6\x6c\x53\x17\x6b\xc8\xb5\xbc\ \x50\x6c\x43\x2c\x95\x87\x66\xa0\xf7\xf9\x88\x91\x10\x78\x50\x51\ \x71\x7b\xf0\xf0\x10\x16\x7f\x3c\x40\x8e\x24\x0b\xd4\x19\xd6\x62\ \x39\x28\x43\xa5\x43\xd6\x80\x4b\x21\x03\x0e\x57\x1e\xed\x01\x40\ \xd7\x30\x0e\x2b\x6c\xda\x89\x60\xfb\x01\x2c\xe7\x5e\x98\xb2\x6b\ \xe4\x54\x01\x74\x40\xa5\xb3\x4a\x0c\x23\xfd\xd6\xb4\x5c\x12\xe0\ \xf7\x98\xca\x8e\xdb\x53\xe0\xa1\xaa\x56\xc6\x36\x21\xae\x86\xac\ \xc4\xc8\x1b\x06\x07\xd1\xd7\xa8\x72\xb8\xbf\x39\x6a\xd1\x61\x4e\ \x04\x8d\xe9\x0b\xd6\x18\x81\xf2\xaf\xac\x25\xb9\x6e\xa3\x47\x0c\ \x6c\x52\xe5\x70\xa8\x09\x9e\x78\xcb\x20\x8a\x76\x5b\x9a\x04\x02\ \xdd\xe4\xca\x19\x38\x89\x3d\x12\x6f\x86\xaf\x1f\x6d\x82\x23\x31\ \x06\xf7\x1e\x02\x13\x42\xd3\x19\x1a\xab\x63\x12\x68\xdb\x88\x7e\ \xc9\xa4\xa1\x57\x5b\xe1\x71\x51\xf2\x3b\xf6\xc7\xb6\x45\x12\x16\ \xd8\xe1\x04\x4a\x05\x86\xcd\x2d\xea\x4d\x15\x51\xbb\x07\x1b\x1f\ \x31\xf6\xd9\x97\x7d\xea\x71\xef\xc5\xbe\x2e\xc0\x4b\x24\x93\x49\ \x06\xbd\xbe\x07\x12\x07\xd3\xef\x69\x0a\x90\xcd\x02\x99\x82\x81\ \x2c\x61\x6c\x05\x0b\x8f\x31\x57\xde\xc0\xcc\x42\xba\x84\x95\x94\ \x80\x4a\x1e\x70\x53\x35\x2f\x75\xdb\x43\x5d\x77\x52\x99\x52\x8e\ \xe1\x6b\x8a\x21\x9d\x31\x50\xe1\xb9\x8f\x30\x67\xf6\x6f\xc7\x2a\ \x77\x9d\xbc\x81\x87\x52\x2b\x06\x3a\x02\x0c\x3e\xc9\xda\x40\xf3\ \x17\xa9\x15\x5c\x36\xaf\xcc\xc1\xf3\x37\x11\xa6\xeb\xd5\x5d\x6f\ \x81\x2c\xd8\x3d\x84\xd0\xfe\x5e\x5c\x11\xdd\xe8\x6b\x8c\x8a\x87\ \x55\x19\xd1\xef\x71\x4c\x2e\x3d\xc3\x6b\x0e\xfe\xe7\x63\xaa\x1b\ \xd5\x46\x27\xb9\xff\xaf\x97\x5b\x26\x5f\x23\xdf\xda\xf9\x1a\x7f\ \x0b\x30\x00\x15\xd9\x08\xf7\xef\x00\x3d\xfe\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x15\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x42\x39\x34\x34\x43\x37\x32\x36\x31\x30\x37\ \x36\x31\x31\x45\x33\x38\x39\x33\x35\x41\x45\x39\x46\x43\x36\x31\ \x38\x33\x34\x38\x33\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x42\x39\x34\x34\x43\x37\x32\x37\x31\x30\x37\x36\x31\x31\x45\ \x33\x38\x39\x33\x35\x41\x45\x39\x46\x43\x36\x31\x38\x33\x34\x38\ \x33\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x42\x39\x34\x34\x43\x37\x32\x34\x31\x30\x37\x36\x31\x31\x45\ \x33\x38\x39\x33\x35\x41\x45\x39\x46\x43\x36\x31\x38\x33\x34\x38\ \x33\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x42\x39\x34\ \x34\x43\x37\x32\x35\x31\x30\x37\x36\x31\x31\x45\x33\x38\x39\x33\ \x35\x41\x45\x39\x46\x43\x36\x31\x38\x33\x34\x38\x33\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x8d\ \x2d\x14\xdd\x00\x00\x02\x89\x49\x44\x41\x54\x78\xda\x8c\x53\xcd\ \x4b\x54\x51\x14\xff\xdd\xfb\xde\x73\x74\x8a\x18\x23\xc7\x31\x07\ \xcc\x44\xa5\x45\x11\x68\x89\x62\xb6\x08\x42\xfb\x50\xb3\x8c\x52\ \xa2\x50\xa1\x65\xff\x41\x9b\x76\xb5\x73\xdd\x98\x10\xe9\x42\x21\ \x26\x49\x74\x74\x23\xa1\x58\x38\xab\xd6\x66\xf9\x01\x35\x0a\xa6\ \x4d\x8e\x33\xef\xbd\x7b\x3b\xf7\xfa\x66\x34\x17\xd1\x81\xdf\xe3\ \x9e\xf3\xce\xfd\x9d\x8f\x7b\x0e\x8b\x8e\x8d\x6d\x3a\xae\x1b\x90\ \x42\x40\xe2\xa0\x28\x8d\x81\x33\x06\xc6\xd8\xba\x61\x18\x41\xce\ \x39\x0e\x8b\xe9\x38\x4e\xa0\xa3\xbd\x1d\xff\x92\x44\x22\x51\xf4\ \x61\x76\x76\xc8\xb2\xac\xae\xc3\x24\x5c\xca\xbd\xb8\xcb\x2b\xab\ \x58\x59\x5d\xd3\x50\xe7\xaf\xdf\x96\xb5\xfd\xf5\xd0\x10\x82\xc1\ \x20\x1a\xeb\xeb\xef\xdb\xb6\x3d\x2c\x28\x53\x46\xd9\x71\x06\x0d\ \x33\xcb\x34\x3d\x15\x43\x38\x1c\xde\x4b\x9e\x9c\x4e\x95\x9f\xde\ \x8b\x40\x25\xd8\x8e\x83\xe2\x50\x08\x8d\x0d\x0d\xf7\xe6\xe7\xe7\ \x4c\xcb\x34\x3b\x2d\x43\x97\x06\x33\x5b\xf7\xf5\xd6\x36\x6d\xd0\ \x04\x64\x74\x85\xab\xcf\x55\x55\x55\x18\x19\x1d\x25\x5d\xe0\x41\ \x57\x17\xea\x6a\xce\xdf\xb9\xf1\x6a\x03\xa6\x9b\x86\x9d\x4e\xed\ \x67\xc0\x0a\xfc\xf4\x91\x60\x82\x6e\x1b\xa6\xaa\x0d\xdb\xae\xc0\ \x85\x9a\x1a\x8d\x5c\xcd\x10\xf0\x71\x21\xf3\x98\x64\x96\x4b\xa5\ \xc0\x8b\xba\x75\xd4\x8f\xe0\xdd\x9b\x44\x74\x04\xdb\xfe\x7c\x84\ \xba\x6f\xe1\x58\xeb\x15\x6c\xa4\xd2\x88\x0c\x0e\x22\x16\x9b\xd4\ \x7e\x05\x79\x06\x44\x66\x17\x06\x67\xd2\xe0\x07\x7a\x50\xec\x48\ \xfc\x22\xae\x3c\x4a\xb5\x88\xa2\x6f\x7a\x0f\x69\x10\x3a\x1f\x3e\ \x82\x8f\x22\x17\x3d\x7e\x87\x40\x3e\xc7\x71\xbf\x85\x8c\xe4\xaa\ \x3f\xd2\x64\x1e\xc1\xc8\xf0\x1b\x94\x96\x96\x92\x1b\x70\xee\x62\ \x1d\x52\x94\x51\xe5\xed\x6b\xd4\x0c\x07\x20\x52\x38\x19\xac\xbf\ \x9f\x41\x72\x63\x19\x0d\xcf\xe2\xe0\x3e\x8e\xf9\x17\xed\xb5\xb9\ \x26\x76\x96\x9d\x40\xc1\xc9\x30\x84\xa4\x81\xfa\xbe\x06\xb9\xf4\ \x05\xa9\xb2\x72\x24\xb6\xb7\xe0\xb3\x2c\x48\xdb\x46\x09\xf9\xed\ \x66\x04\x76\x7e\xa7\xf0\xb9\xbf\xbb\xf6\xd2\xd3\xa9\x78\xae\x84\ \x1f\x4d\xcd\xa8\xec\x68\x41\x76\x2e\x54\x64\xf7\x79\x3f\xa6\x3f\ \x2e\x20\x5c\x12\x22\xd5\x41\x49\x4b\x0b\x1c\xc9\xb0\x18\xe9\xae\ \x3d\xfb\x24\x1a\xdf\xb1\xd9\x7e\x0f\x2a\xe8\xa2\x7a\x38\xe1\xd5\ \x2e\x75\xc7\x81\x9e\xea\x33\x60\x07\x26\x6f\xee\xd3\x02\x62\x13\ \x63\x71\x4b\x75\x10\x69\x3d\x4c\x5a\x06\x06\x06\x30\x31\x39\x09\ \x8b\xce\x4b\xf4\x32\xbe\xb6\xab\xb0\x9a\x9b\xf4\xe5\x97\x91\x08\ \xc6\xc7\xc7\xbd\x0d\xe1\x48\xbb\x0c\x3b\x36\x34\x4c\xee\x3d\x63\ \x5f\x4f\x4f\x2e\x4a\xb5\xfc\x7b\xad\xfa\x7a\x7b\xf7\xe7\x80\x76\ \x41\xfd\x16\xd9\x65\x4a\x26\x93\x33\x6f\xa3\xd1\xcb\x42\x59\x15\ \x88\x50\x7a\xa4\xf0\x88\x98\x67\x57\xc1\x94\x7f\x61\x61\x61\x8e\ \x50\x79\x56\x10\x02\xf8\x7f\xf9\x49\x58\xcc\x2a\x7f\x04\x18\x00\ \x62\x6e\x04\x12\xde\xdb\x2a\x8c\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x01\xc1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x63\x49\x44\x41\x54\x78\xda\x62\ \x4c\xac\x9a\xf6\x9f\x81\x20\xf8\xcf\xc0\x08\xc2\xff\x21\x6c\xa6\ \xff\x7f\x19\x1f\x08\xe8\x81\xe8\xff\x8c\x40\x11\x63\x06\x12\x81\ \x73\xfb\xbe\xb3\x40\xcd\xee\x40\xcd\x3b\x18\x81\x2e\xc0\xa9\x90\ \xf1\xff\x3f\x90\x2d\x0c\xf7\x04\xf5\x19\x18\xff\xfd\x05\xe2\x7f\ \xff\xc1\xc2\x40\x71\x6d\x03\x9d\x67\xd7\x2f\x5e\x91\x64\xc2\x67\ \x13\xc8\xd9\xf7\x04\x0d\x18\x18\xff\xfc\x66\xf8\xf7\xfb\xd7\x7f\ \x25\x75\x55\x86\x7f\x7f\x7e\x1f\x54\xd1\x54\xff\xff\xec\xd1\x13\ \xc9\xaf\x6f\x9e\xcc\x67\x02\x7b\x0a\x2b\xfe\xff\x1f\x48\xfe\x07\ \xb9\x02\x68\xe3\xff\xd6\x2c\x0f\x06\x46\x0e\x36\x06\x0d\x53\x43\ \xbb\x2f\x5f\xbe\x30\x7c\x78\xf3\xe6\xfd\xb1\xfe\xe4\x5a\x82\x61\ \xe0\xd4\x79\xf0\xec\xbe\x72\x7b\x63\xc7\xa6\x9d\x67\xf8\xc5\x44\ \x19\x7e\x7e\x7e\xff\xec\xc3\xa3\x5b\xcb\x8e\x4f\xce\x5c\xe2\xde\ \xbe\xfb\x22\xfe\x30\x00\x87\xfc\x3f\x20\xfe\xcb\x30\xa7\xa3\xc0\ \xd8\xa9\x6d\xef\x99\x7d\x55\xce\xba\x40\xa9\x57\x6e\xed\x7b\x5e\ \x81\xe4\x59\x08\x46\x1e\x23\x13\x90\x64\x64\x48\xae\x9c\x7c\x76\ \x6e\x95\xb3\x49\x4a\xc5\xc4\x2b\x4c\x40\x43\xef\x83\xc4\x81\x06\ \xb3\x40\xfd\x8c\x3f\x28\x19\x21\xaa\x80\x86\x80\x42\x06\x1c\x34\ \x30\x3b\x86\x7b\x3a\x00\x5a\xf5\x9f\x89\xd2\x74\xe0\xd2\xb1\xff\ \xec\x9e\x0a\x47\x63\xa7\xa6\xed\x67\x78\xc5\xc4\x18\x7e\xc1\xd3\ \x41\x16\xa1\x74\xf0\x9f\x81\x19\xe8\xef\x07\x82\xba\x0c\x4c\xff\ \xfe\x30\xec\xaa\x74\x35\x76\x6d\xd9\x79\x66\x77\x8d\x3b\x38\x1d\ \x00\x35\xbf\x62\x20\x03\x60\xb8\x16\x20\xc0\x00\x31\xf1\xf7\x85\ \xde\x68\xe8\xbc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\x0a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xac\x49\x44\x41\x54\x78\xda\x7c\ \x53\x5d\x48\x14\x51\x14\xfe\xe6\xce\xec\xce\xf8\x97\x3f\x2d\x99\ \x18\x11\xfd\x10\xd4\x4b\xa4\x20\x91\x51\x4a\x58\xe2\x42\x82\xbd\ \xe6\x63\xd4\x43\xf4\x23\x58\x19\x95\xc1\x62\x11\x58\x51\x21\x98\ \xd2\x4b\x0f\x6e\xb6\x98\x16\x91\x96\x59\x44\x0f\x3d\xb4\x54\x20\ \x2c\x14\x94\x21\x65\x24\x61\x6b\xe9\xfe\xcd\xcc\xe9\xdc\x3b\x6d\ \x48\x51\x07\x0e\xdc\x7b\xee\x99\x73\xbe\x73\xbe\x6f\x34\xb0\xed\ \x3e\xff\xe0\xb6\xeb\x38\x8d\x20\x02\x34\x0d\xb6\xe3\xc2\x75\x09\ \x84\xbf\x4d\x63\xd7\x85\x06\xbf\x4f\x1f\xba\x75\x74\x67\xa3\x0a\ \x36\x74\x8c\xd2\xf8\x2c\xd1\x78\xdc\xa5\xfa\xd3\x77\x48\x5a\xda\ \xf5\x3c\x43\x9e\x67\xef\xd2\xa5\xed\x0a\xdd\x53\xf5\x8d\x4b\x9d\ \x9d\xb4\x75\xb3\x89\x2b\xfb\x9a\x10\xd8\xdf\x0d\xc7\x75\x91\x72\ \x81\x81\x97\x33\xaa\x93\xae\x6b\xaa\x09\x71\x4c\xbe\x31\x30\x34\ \x6d\x2c\x86\x43\x1e\x3e\x71\xa8\xa5\xa5\xf2\xe4\xe3\x34\x56\xb7\ \xf6\xc1\xe0\x5c\xc1\xc1\x0c\x27\x5b\x3e\x81\x3c\x53\x47\x57\x78\ \x14\xaf\x63\x13\x78\x15\x7b\xa7\xee\x39\x7e\xc1\x85\xbc\x3c\x85\ \x80\x3d\xaa\x69\x02\xfd\x91\x08\x82\xf5\x3b\xe4\x0a\xd4\x2a\x0a\ \x38\xd9\x34\x04\x42\x7b\x83\xea\x4e\x0c\xc1\xe1\xf6\x12\x01\xd7\ \x80\x25\x3c\x64\x3c\xc2\x05\xaa\xa9\xf6\xa3\xe7\xea\x20\x3f\xd6\ \x71\x01\x4d\x2d\xaa\xf3\x59\x0c\xc3\x6f\x3f\x79\x6d\x5c\x39\xc3\ \x82\x45\xf2\x58\x79\xa6\x81\xa5\xa1\x91\x29\x79\xaf\x08\x9e\x7d\ \x44\xd7\x27\x88\xda\x1e\x4e\x52\x43\xfb\x10\xcd\xa5\xb9\x67\xeb\ \x20\x3d\xff\xec\xd0\xd3\x8f\x19\xfa\xd3\x64\x2c\x3a\x4d\x14\x38\ \x73\x9f\x44\x76\x84\xde\x9e\x3e\xd8\xe9\x8c\x42\x90\x6d\xe6\xd7\ \x1c\x6c\xbb\xf1\x1e\x5f\x67\xe2\x08\x0f\xdc\x55\x2e\xcf\x32\x66\ \x90\xad\xa8\x36\x2e\xf2\x08\xb5\x3c\x42\x6f\xd7\x20\x52\xa9\x0a\ \x8f\x69\x4f\x0e\x98\x4e\x38\x28\xcd\xd7\xe1\xf0\x56\xab\x36\x6d\ \x51\x45\xe5\x59\xc6\xa6\x93\x8e\x4a\x15\x87\x5b\x8e\x54\x9e\x18\ \x4b\xa2\xaa\xfd\x26\x52\x89\x84\xb7\x44\x78\x5b\xfe\x96\x70\xb1\ \x24\xd7\xc0\xf0\x87\x14\x84\x6d\x2b\x97\x67\x19\x8b\xf3\x9b\xf8\ \xcd\x82\x10\xb8\xd6\x13\xc1\xda\x35\x2b\xd4\x08\x59\xc9\xcd\x72\ \xb7\x12\x4b\x47\xf7\x1b\x1b\x97\x63\x36\xa4\x36\x2d\x5e\x60\x89\ \x25\x10\x97\x5c\x4b\x04\x52\x48\xa1\x1a\x3f\x36\x4c\x45\x90\x4a\ \x66\xbc\x6f\x35\xa8\x42\x73\x19\xc2\x22\x53\xe0\xe0\x7a\x13\x2f\ \x9a\x97\x21\xda\x5c\x8e\x03\xeb\x7c\x8a\x62\x5e\xb4\x62\xcb\x13\ \xd2\x58\x02\xd5\xa7\xc2\x48\xcf\xcf\x2b\xe5\x99\x3e\x4f\xef\x29\ \x1e\xb3\x20\xc7\x87\xed\xcb\x2d\x1c\x6f\x6b\xc7\xe4\x97\x1f\xa8\ \x2d\xf7\xa3\xc0\x32\x90\xf4\x00\xa8\x31\xa2\x48\xcc\x3c\x89\xf4\ \x8f\x80\x1c\x1b\x3e\x5d\xc7\x9e\x73\xc3\xac\x44\x03\x9a\x30\x50\ \x96\x6f\xa1\xa4\xd0\x44\x59\x20\x1f\xa5\x45\x16\x16\x17\xfa\x55\ \x8c\xc5\x00\xf1\x4b\x33\xd2\x56\xb1\x17\x2d\xfc\xeb\x02\xc7\xc2\ \x1d\x7a\x6e\x61\x9d\xd4\xbc\xcd\x6c\x93\xa4\x97\x69\xd3\x58\x91\ \x2c\x50\xf8\x18\x21\x4b\xff\xbb\x86\x7f\xdb\x4a\xf6\x62\xfc\xdf\ \x9c\x9f\x02\x0c\x00\x9d\x70\x54\xd0\x29\x0a\xd1\x77\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x12\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xb4\x49\x44\x41\x54\x78\xda\x7c\ \x53\x5b\x48\x54\x51\x14\x5d\xe7\xde\x3b\x4e\xd6\xc8\x64\xa5\x03\ \x69\x8c\x6f\x4b\x11\x27\x1d\xcd\x07\x54\x93\x99\x14\x7d\x18\xf4\ \x1b\x04\x7d\x84\x10\x7e\x29\x46\x66\xa3\x7e\xf5\x97\x4a\x09\xfd\ \x44\x04\x11\x41\xa0\xa4\xa6\x06\xa1\xd9\xbb\x46\x47\xb0\x74\x28\ \x53\x92\xc6\x7c\x5d\x73\x9c\x99\x1c\x9d\x7b\xcf\xed\xdc\xc9\x51\ \xc7\xac\xfd\x75\xce\xde\xfb\xac\xbd\xd7\xde\xeb\x10\x6c\x61\x45\ \x0d\xf6\x19\x49\xa6\x51\x84\x10\x68\x05\xbe\xb5\xbb\x3c\xf3\xcc\ \x56\x79\x8a\xa2\xfc\xed\x3c\xde\x60\xaf\xaf\x7b\xf2\x4d\x71\x53\ \x45\xf1\xb2\x0c\xcb\x8d\x41\x05\xff\x30\x15\x40\xd8\xec\xf4\x4b\ \xb4\xa6\xd8\xb4\x17\x77\x3e\x4a\x28\x4d\x12\x20\x53\x05\x39\x57\ \x1f\x37\x2b\x0a\x29\x63\x47\x70\x1c\x41\x98\xc0\x2d\xbc\xae\x3d\ \x15\xa9\xe6\x0b\x9b\xaa\xd7\xe6\x25\xed\x82\x63\x6e\xc5\x6d\x1b\ \x9e\xa5\x16\xa3\x51\xbf\xe4\x59\x40\x5c\xb4\xbe\xac\xea\x6c\x3e\ \x03\x03\x78\x9e\x47\xd9\xad\xce\x9d\xc1\x37\xdc\x46\x00\xc6\xdb\ \x7a\xcc\x14\x83\xf7\xa3\xa2\xf8\x75\x7c\x0a\x53\x8b\x32\x7c\xde\ \x45\x9c\xc8\x4a\xc4\x43\xbb\x0b\x8d\xcf\xa7\xb1\xec\x97\x40\xe9\ \x3a\x2b\x6e\x43\x75\x6b\x4e\xf2\x6e\xfc\xa4\x3c\xe6\x3d\xcb\x71\ \xbc\xa0\xd1\x3f\xe8\x19\x42\x56\x62\x34\x24\x2a\xa0\xcf\x3e\x8c\ \x29\x8f\x02\xa7\x4b\x02\x21\x9b\x00\x4a\x9a\x06\xc3\x65\x99\xd6\ \x5a\x0e\xee\xc3\x12\xbb\x57\x96\x26\xe1\xd2\xe9\x64\x0c\x39\x26\ \x50\x9c\x9b\x8e\x96\x77\x0e\x9f\xec\x9e\x76\x6a\xb5\x02\x7c\x12\ \x81\xba\x9d\xa0\x05\x66\x20\x49\xd2\xed\xec\x14\x03\xa6\x97\x64\ \x74\xbc\xf8\x02\xd1\xe5\xc3\xa2\x38\x89\x82\xf4\x78\xd8\xbf\x7b\ \xf1\xb4\xf2\x68\x81\xb9\xe2\x7e\x93\x86\x17\x62\xbc\x7e\x0a\xb2\ \x81\x36\x77\xa2\xd1\xae\xe8\x75\xdb\xce\x59\xcc\xb1\x68\xed\x19\ \xc5\xa3\x0b\xfb\xcd\x13\xbd\x77\x2f\xea\xb4\x04\xf1\x09\x09\x18\ \x70\x8c\x23\xaf\xae\x6b\x80\x68\xc2\x4d\x1c\x4f\xf0\x4b\x42\x08\ \x80\xa0\x6a\xe1\xf2\xf9\x74\xd8\x46\xbc\xf0\xb8\x3d\x93\xcc\xd7\ \x1f\x95\x59\x64\x33\x67\xa4\xe0\xf3\x3c\xc5\xc9\x42\x13\x34\x6c\ \xf2\x6c\xeb\xba\x97\x63\x1e\x06\xa0\xf2\x5f\x9f\x81\xc0\xb3\xbd\ \x5e\x69\x1e\x0c\xf0\x7a\x56\x91\x5b\x92\x7f\xad\xed\x7a\x64\x84\ \x0e\xe1\x91\x31\xf8\xf0\xe6\x2d\x06\x3c\xae\x3f\xa2\xa1\x14\x09\ \xd9\x16\x06\x40\x42\x3b\xe8\x2a\x37\x99\x83\x97\x82\x9a\xb6\x30\ \xb6\xa2\xaa\xd4\x03\x69\x18\x9d\x9c\x9d\x11\x47\x5e\x35\x7f\xba\ \x57\xdd\xae\xc6\x0e\x55\xb7\xd8\x58\xb5\x00\x85\x90\x0e\xd4\x96\ \x03\x8f\xad\xed\xca\xf6\x1d\x3a\x44\xb0\xea\x7e\xad\x1e\xce\xb1\ \xbe\x68\xf6\xf8\x26\x0b\x89\x87\xeb\xbb\x95\x3d\x06\x03\x02\x00\ \x7e\xc0\x10\x6b\x44\xa1\xb5\x43\x45\x21\x6b\x4a\x54\x1b\x4b\xcb\ \x3d\xc2\xa4\x2c\x41\x56\x08\xe4\x95\x65\xd5\x2d\xae\x06\x11\x9b\ \x92\x01\xaf\x4f\x02\x0b\xc1\x98\x9a\x81\xb9\x1f\x4e\x84\x48\x99\ \xb0\x59\xd8\x7a\x3a\x80\x80\xe0\x09\xd3\x3c\xbf\xd6\x26\x95\x65\ \xd8\x7a\x3b\xd9\x81\xae\xee\x8e\x63\x29\x5c\x10\x7b\xcd\xb2\xb7\ \xf8\x70\xfd\xff\x89\xa9\xbf\xb1\xff\xb7\x00\x03\x00\x5e\x0c\x23\ \x38\x1e\x3f\x2e\xe0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\xe5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x87\x49\x44\x41\x54\x78\xda\x84\ \x53\x5b\x48\x54\x51\x14\x5d\xe7\xde\x3b\x53\x63\x49\x65\x3a\x4e\ \xa9\x43\x29\x69\xaf\x0f\xd1\xca\xc6\x47\x50\xf4\x13\x81\x89\x46\ \xa8\x24\xf4\x13\x69\x5f\x05\x7d\x4d\xe4\x4f\x05\x7d\xe4\x8f\x84\ \x54\x48\xd1\x03\x0b\x9b\x27\xfe\x18\x46\x1f\x12\x49\x65\x10\xf4\ \xf8\xb0\x12\xbb\x73\x87\x71\x7c\xf4\x10\x34\x67\xbc\xf7\xee\xce\ \xbd\xce\x98\xe9\x54\x0b\x36\xe7\xec\xcd\xd9\xeb\xac\xbd\xf7\x39\ \x2c\xd8\xd3\xf3\x4d\xd5\xb4\xb5\xa4\xeb\x20\x2c\x86\xe1\x31\x08\ \x8c\x81\x31\x36\x5e\x5b\x53\x63\xc7\x12\x10\xf1\x33\x5e\xbf\x9f\ \xfe\x87\x68\x34\x4a\x1e\x9f\xaf\x2b\x15\x81\x60\xb2\x70\x8c\x7c\ \x91\xa1\x84\x42\x08\x87\x15\x84\x15\x05\xb2\x2c\x9b\xf1\xfb\x5d\ \x5d\xb0\xdb\xed\xa8\x74\xb9\x1a\x3c\x7e\xff\x83\xa5\x24\x52\x52\ \xb6\xd5\x62\x41\xf0\xd5\x08\x44\x41\x30\xe5\xab\xaa\x8e\xd3\x4e\ \x27\x98\xc0\x30\xa7\xaa\xc8\x76\x38\x50\x55\x5e\x5e\xef\x0b\x04\ \x2c\xbc\x9c\xa3\x0b\x04\x48\x28\x90\x24\x01\x0d\x55\x5b\x20\x8a\ \x82\xe9\xcf\x69\xba\xb9\x16\x16\x16\xa1\xdb\xe3\x81\xce\x7b\xd4\ \xd4\xd8\x08\x9d\xa8\xee\x0f\x05\x0b\x1b\x51\xc2\xc3\x67\x1f\xe7\ \x09\x98\x00\x95\x5b\xcb\xa1\x4c\xec\x2e\x29\x31\x2d\x09\x5d\x94\ \x90\x92\x40\x10\x45\x34\x1d\xd8\xc1\x89\x04\x90\x64\x81\xf8\xba\ \x1f\xca\xd6\x2c\xa4\x6d\xde\x08\xba\xd2\x09\x2a\xd8\x89\xcc\xd5\ \x36\x68\x2b\x6d\xa9\x09\x24\x49\xc4\xbd\xa7\xef\x21\xf1\x5e\xf0\ \xd9\x81\x66\x6d\xd8\x13\xfa\x81\x55\xc7\x9b\xf1\xf5\xb2\x1b\x59\ \xb7\xfc\xf3\x17\xe9\x1a\x46\x73\x30\xe9\x08\x63\xbd\x19\x78\xe4\ \xf5\x9a\xa3\x9a\x99\x9e\xa6\xb9\x78\x8c\x74\xc3\xb9\xdb\x46\xf4\ \xf2\x09\xc5\xdd\xa7\xe8\x1d\xef\xe8\xd8\x89\x63\x34\xe9\x6e\x31\ \xcf\x0d\xed\xca\xa5\x81\x4c\xa1\x3b\x39\xc6\x45\x0a\x24\x74\xf6\ \xbd\x85\x45\x8d\x01\x69\xa5\xa0\x78\x2e\x58\x59\x13\x58\xff\x59\ \x6c\xab\xab\xc0\xa6\xca\x62\x8c\x97\xe5\x21\x0e\x1b\x5c\x13\xfa\ \xb9\x65\x25\x88\x9c\xa0\xd9\x95\x0b\xdc\x69\x33\xd8\x80\x51\xc6\ \x9b\xc9\xad\xfa\x12\xe2\x2f\x9e\x63\x38\xbf\x08\xd6\x74\xe0\xfb\ \x19\x9e\x3b\x78\x55\xfe\x4d\x60\x1c\x32\x6a\xe3\xf3\xbf\xe1\x1b\ \x80\xe0\xac\x06\x5b\x97\xc1\x19\x45\x60\x62\x0c\xce\x0b\xad\xa8\ \x98\x1e\xc6\x8a\x1c\x1b\xc8\x51\x00\xfb\xcd\x76\x84\x9c\xd6\x0d\ \x79\x72\x3c\x62\x26\x7a\x03\x81\xbf\xbf\xe1\xde\x6e\x9a\x71\x9f\ \x24\xc5\xb5\x9d\xc2\xb5\x87\xcd\xd0\xe3\x56\x37\x0d\xaf\x99\xff\ \x36\x46\x0f\x98\x3f\x18\x9c\xe2\x8f\x24\x3d\xf9\xa4\x0d\x41\xc4\ \x44\x30\xd2\x70\xb0\xe3\x3c\x62\x45\x7b\x11\xe9\xb8\x8d\xcf\xbd\ \x7d\x20\xae\x6a\x56\x94\x86\xa2\xfb\xf7\xb5\x1f\xc9\xb6\x5e\xcc\ \x8f\xc4\x32\x0c\xfd\xc5\x46\x0b\x90\x02\x72\x06\x06\xa7\x66\x45\ \x5c\x9f\xd1\xea\xaf\x01\x9f\x12\xe1\x9f\xdc\x14\x6e\xf9\xfc\xd2\ \x37\x0c\xff\x46\x69\x62\xfd\x90\x48\x5c\xf6\x1b\x7f\x09\x30\x00\ \x10\x1d\x47\x43\x9f\x80\x27\x79\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x05\xd2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x41\x31\x34\x30\x37\x38\x43\x34\x37\x36\x41\ \x42\x31\x31\x45\x32\x41\x30\x44\x42\x43\x42\x31\x39\x43\x41\x45\ \x45\x36\x42\x38\x42\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x41\x31\x34\x30\x37\x38\x43\x35\x37\x36\x41\x42\x31\x31\x45\ \x32\x41\x30\x44\x42\x43\x42\x31\x39\x43\x41\x45\x45\x36\x42\x38\ \x42\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x41\x31\x34\x30\x37\x38\x43\x32\x37\x36\x41\x42\x31\x31\x45\ \x32\x41\x30\x44\x42\x43\x42\x31\x39\x43\x41\x45\x45\x36\x42\x38\ \x42\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x41\x31\x34\ \x30\x37\x38\x43\x33\x37\x36\x41\x42\x31\x31\x45\x32\x41\x30\x44\ \x42\x43\x42\x31\x39\x43\x41\x45\x45\x36\x42\x38\x42\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xc5\ \x81\x61\x81\x00\x00\x02\x46\x49\x44\x41\x54\x78\xda\x94\x53\xcf\ \x6b\x13\x51\x10\x9e\x79\xef\x25\x31\x9b\xd8\x5c\x8a\x22\x1e\x5a\ \xac\x4a\xd3\x06\x4d\x9a\xb4\x17\xdb\x78\xf5\xe2\x55\x3c\xd4\x83\ \x57\x6f\x1e\xc5\x83\x20\x78\x15\xc1\xbb\x07\xf1\xd2\xff\xa0\x20\ \x08\x42\xc5\x74\x45\x44\x5a\x9b\x28\x88\x3f\xa2\x36\x4d\x51\x68\ \x9a\xa4\x75\x37\xfb\x9e\x33\xfb\x12\xdd\x4a\x0e\xfa\x60\x76\xe7\ \xcd\xdb\x6f\xe6\x9b\xef\xcd\xe2\xe4\xa9\xd3\xf0\xf7\xd2\x41\x00\ \x5a\xeb\x59\x72\xdd\x48\x18\xf9\x61\x8c\x01\x27\xe5\xd0\xb9\x0d\ \x0a\x18\xbe\xae\x08\x21\x08\x8c\x0d\x6d\x8c\x8b\x28\x80\x8d\x73\ \x24\x9d\x14\x98\xc8\x87\x6a\x08\xf8\x30\x81\x1f\xb2\xb3\xd9\xdc\ \xbc\xb4\xdb\x6e\x37\xc8\x1d\xc9\x65\xa7\x43\x20\x33\xc0\x68\x02\ \x25\x55\x84\x23\x42\x2f\xf0\x17\x51\x08\xa0\xca\x3b\x04\x7e\x3e\ \x9d\xcd\xf6\x04\x22\x51\x36\x43\xa9\x1e\x60\x60\x28\xbf\xec\x27\ \x24\xc2\x99\xdc\xe4\x94\xcf\x15\x8d\xed\x7f\x9b\x6c\x94\xec\x78\ \x5f\x8f\x2f\xf6\x3b\xfa\x60\x60\xeb\xb5\x8d\x92\x41\xf8\xcc\x0c\ \x7e\x7a\xde\x7d\xde\xbf\xa9\x55\x4b\xd4\xff\x0f\x6a\x6b\x94\x0c\ \x50\xe0\x6d\xda\xbb\x42\x60\x40\x06\x58\xc8\x17\x0e\xc8\x1c\x04\ \x41\xc8\xb5\xdb\xed\x5e\x76\x92\xce\x12\xf3\xf2\x3c\xef\xd1\xde\ \xfe\xfe\xcb\xcc\x48\xe6\x2e\x9f\xf5\x7a\xfe\x32\x25\xbe\xc9\x10\ \x15\x56\xff\xdd\x02\x8c\x73\x15\x5e\x3b\xad\xd6\xd3\x74\x2a\x0d\ \xb1\x44\x02\x5e\xaf\xaf\xdd\xa0\x50\xab\x70\x26\x1f\x26\x20\xf0\ \xb5\x7c\xee\xec\x87\xf8\xa1\x38\xa8\x01\x00\x6c\xf5\x29\x29\x65\ \xe8\x37\xb7\x9b\xcd\xb1\xb1\x71\x30\x24\x5e\xb1\x50\xac\x53\x28\ \x36\x28\x56\xcc\xcf\xa4\xa5\xe2\xda\x1a\x08\x2f\x21\x62\x65\x7e\ \xd3\x10\xb9\xb3\xc5\x92\xb6\x00\x73\x44\x49\x3e\xc3\x57\x34\x0c\ \xbb\x42\x86\x3a\x5c\x25\x71\x8f\xf1\xa1\xe0\xc1\x40\xba\x26\x66\ \xa2\x94\xba\xc8\xef\x20\xd0\x8f\xc3\x84\x1c\x47\xdc\xb2\xdd\xe1\ \xd1\xda\xbb\xda\x05\x41\x03\x25\x85\xbc\x4e\xf1\x6f\xed\x4e\xe7\ \x8e\x60\x1a\x89\x64\x12\xe2\xb1\x18\x48\x25\x4f\x72\x85\xc6\x56\ \xe3\x81\x55\xfc\x8f\xd5\xbf\xd6\x17\x3b\x9d\x4e\x85\xaa\xb5\x50\ \x09\xa0\x19\xb9\x55\xad\x55\xef\xd9\x4b\xb7\x77\x2d\x09\x14\xf7\ \x3d\xff\x09\xf5\xff\x69\xe2\xc4\x44\x78\x54\x71\x2b\xa5\xbe\x44\ \x6b\x73\xa5\x39\xbd\xfa\x62\xf5\x3c\xf9\x2c\xd4\x47\xda\x7f\xc7\ \x85\xf9\x32\x37\xda\xb3\x53\xaa\xf7\x56\x9e\xad\xcc\xcc\x9f\x5b\ \x78\xcf\x6d\xf9\x9e\x17\x1d\xb2\x50\xd0\x50\x74\xb4\x4d\x91\x56\ \xbc\x17\xfc\x50\x5a\x07\x1b\x04\x2e\x33\x78\xf0\xd7\xfd\xcb\xe2\ \x5c\xc5\xbe\xdf\x26\x7b\x0b\xff\xb9\x7e\x09\x30\x00\xab\x43\xf5\ \xd6\x5e\x41\x60\x59\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x05\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\x9c\x00\xad\x00\xc0\xa7\x71\ \x7d\xed\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xe2\x04\x0d\x10\x05\x19\x95\x88\x91\xc1\x00\x00\x01\x92\x49\x44\ \x41\x54\x38\xcb\xa5\x93\x4d\x4b\x5b\x51\x10\x86\x9f\x99\xa4\xba\ \x11\x45\x28\x7e\xa5\xb8\x2e\xd6\x42\xed\xcd\xad\x4b\xb7\xfa\x1f\ \xb2\x09\xae\xea\x4e\xb2\x2a\x42\x5b\x14\x77\xb5\xb8\x12\x02\x45\ \x0a\x75\x91\x5f\x20\x25\xbf\x20\x51\xa2\x82\xc4\x7b\x75\x65\x1b\ \x0d\xda\x62\x17\x4d\x6e\x2b\x7a\xf5\x74\xd1\x93\x62\xc3\x95\x48\ \x1c\x38\x30\xef\x39\xf3\xbe\x67\x3e\x18\xb8\xa7\x49\x36\x97\x7f\ \x27\xa2\x99\x07\x1d\x9d\x60\x00\x31\x18\xf8\xeb\x5b\x33\xff\x80\ \xc1\x18\xe1\x2a\xbc\x00\x63\x00\x96\xe2\x40\xe6\xa4\x5a\x59\x7d\ \x3d\x9b\x5e\x01\x4a\x77\xf8\xd4\x01\x78\xbb\xf4\xe1\xe5\x60\x62\ \x38\x43\x36\x97\x37\x40\xa2\x8d\xec\x87\xb2\xb9\xbc\x89\x5b\x70\ \xdc\xfc\xfa\xe4\xf1\xc8\x77\xe0\x21\x90\x10\x41\x8c\xe1\x08\xa0\ \xec\xef\x89\x0d\xa9\x02\xc4\xa3\xa4\x9f\x8e\x8c\xfe\x00\x7a\x6d\ \xd5\xf3\x82\x4c\x89\x98\x2b\x20\xd6\x1c\x1b\x29\x10\x86\x97\xeb\ \xbf\xcf\xcf\x4b\x3d\xdd\x3d\xef\x81\xe9\x30\xbc\xfc\x5c\xf6\xbd\ \x39\x40\x9a\x63\x35\x4a\xc0\x3b\xd8\x7f\x75\xf8\xf5\xcb\xaa\xaa\ \xa2\xaa\x94\x7d\x6f\x06\xd8\x8a\x6a\xb2\xde\xe2\x57\x9c\x31\xe7\ \x57\x43\xc0\x79\xf6\xbc\xeb\xb6\x4e\xde\x24\x5d\x03\xb8\x8e\xdb\ \x07\xa0\x2a\xdb\x88\xd4\x34\xa6\x88\x4a\xda\x75\xdc\x41\xd7\x49\ \x9a\x96\x25\xa8\xc8\xe9\x78\xf2\x85\x01\xe9\xf7\x0f\xfc\x49\x15\ \x25\xa6\xb1\x59\x15\xa9\xd6\x83\x60\xb1\xa5\x80\xa8\x22\xaa\x54\ \x8e\x2b\xa9\x20\x08\x0a\x88\xfc\x94\xb8\x52\xab\xd7\xdf\x78\xbe\ \xb7\xdc\x72\x0a\x85\x8d\x42\xd2\xba\xbb\xc0\x75\x71\xb3\x38\x61\ \xc7\x77\x08\x9c\x45\x66\x90\xcd\xe5\x17\x6e\xdc\x95\xec\xb9\xb0\ \x78\xc7\xe2\xff\xc8\x0d\x8e\x2c\x2c\x7f\xfc\xd4\x37\x30\x94\x6a\ \x67\x13\xbf\x9d\x54\xd7\x04\x78\x04\xf4\xb7\xb9\xcd\xa7\x7f\x00\ \x5c\x69\x86\x7c\xfb\xc2\x80\x5b\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x02\xce\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x70\x49\x44\x41\x54\x78\xda\x84\ \x93\xcb\x4f\x13\x51\x14\xc6\xbf\xb9\x77\x3a\x9d\xbe\x84\x32\xb6\ \xa2\x04\x5d\x08\x0b\x63\x74\xd5\xad\x1b\xc2\xc2\xc4\x3f\x00\x13\ \x53\x24\xba\x02\x97\x12\x10\x98\x4a\x88\x5d\x41\xd0\xb0\x34\xc1\ \x62\x60\x23\x31\x71\x01\x11\x0d\x09\x89\xdd\x88\x22\xc3\xa3\x1a\ \xd0\x4d\x59\x42\x52\x1a\x23\xb4\xe9\xb4\x65\xe6\x7a\xef\x04\x1a\ \xa9\x04\x4e\x72\x32\xaf\xfb\xfb\xbe\x33\xe7\xde\x23\x8f\x8e\x8e\ \xa2\x3a\x2c\x62\xa3\x69\x5b\x73\xae\x22\x6c\xdb\x86\x55\xb6\xde\ \x30\x9b\xb5\x49\x44\x9a\xa6\x2e\x7a\x97\x10\x02\x45\x96\x21\xe3\ \x8c\x10\x70\xb1\x50\x62\xd1\xc1\x76\x30\xcb\x82\x44\x69\xdb\xd4\ \xd0\x64\x9b\x5b\x55\x24\x41\x93\x53\x61\xeb\x10\x1e\xea\x40\x66\ \xf6\x1b\x32\x73\x2b\xc8\xcc\x2c\x21\x3a\x78\x9f\xbf\x2f\x32\xc6\ \xc5\xc9\xa9\xb0\xc9\xe1\x67\x0f\x90\x7d\x6f\x80\x28\x0a\x28\x4f\ \x89\xba\x50\x32\x8b\x10\x15\x59\x07\xd6\xc2\x89\x02\xcc\x62\x62\ \x11\x8b\xc6\x1f\x62\xef\xc3\x9a\x03\x52\x97\x0c\x4a\x28\x6a\x6e\ \xdf\xc0\xee\xec\x57\x40\x22\x28\x14\x4b\x2d\xe4\xa4\x7f\x16\xf0\ \x9d\x91\x0e\xa4\x3f\xad\x70\x50\x01\xe1\xae\x04\x14\xde\x96\x6b\ \x1c\x5e\x82\xe7\x5c\x00\x70\x2b\xd8\x33\x73\xf3\x72\x35\x6c\x9a\ \x26\xeb\x7e\xdc\x8d\x2f\xcb\x06\x6c\x0d\x50\xf6\x01\xad\x40\x41\ \x6f\x5d\x45\x96\x3b\x7b\xfc\x7e\xf8\xfc\x01\x4c\xe9\xe3\xe8\x7a\ \xd9\xdb\x59\x11\xb0\x78\x87\x05\xdc\xd3\xdb\x8b\x95\xd5\x75\xa8\ \x6e\x37\x98\x04\x6c\x69\x36\x2e\x34\x36\x61\x77\x66\x11\x9e\x40\ \x00\x3e\x9e\xd3\x0b\x9f\xd1\x3e\xf6\x28\xf2\xf6\xc9\x78\x9a\xfc\ \x0b\xf7\xf5\xf5\x63\x63\x63\x13\x1e\x5e\x9e\xca\xd3\x45\x29\xae\ \x37\x37\xe3\xd7\xa2\xc1\x9d\x03\x8e\xb3\x80\xa3\xcf\x3b\x05\x6c\ \x08\x56\x3e\x2a\x7b\x40\xd7\xb1\xb9\xf9\x13\x6e\xee\x7c\x24\x7a\ \xe5\x72\x23\xd6\xd6\x53\xa8\x6d\x0a\xe3\x8f\x16\xc4\xdc\xf0\x0c\ \xa2\x63\x5d\x15\x58\x04\x29\x97\xcb\x3f\x62\xb1\x18\xd2\xe9\x2d\ \x07\x56\x78\xc7\x65\x7e\xc2\x1a\x1a\x2e\x61\x2d\xf5\x1d\xc1\xda\ \x3a\x84\x34\x0d\x93\x93\x13\xb8\x57\x05\x3b\x15\x14\x4d\xb3\x3e\ \x93\xcd\x42\xf5\xa8\xb0\x19\xe3\x7b\x7b\x00\xad\x26\xc8\x9d\x05\ \x1c\x44\x28\xa4\xe1\xf5\x44\x02\x4f\xf5\x58\xe4\x5d\x4f\xc2\xb0\ \x60\x1f\xdb\x35\x9a\x4c\x26\x3f\x52\x42\x3a\x5b\x5b\x5b\x21\x4e\ \x96\xd7\xeb\xc5\xfa\x91\x73\xe8\xbc\x03\xeb\xba\x1e\x19\x7e\x31\ \x62\xd4\xe5\xbc\xbc\xb1\xec\x98\x80\xbc\xbd\xb3\x93\xba\x58\x5f\ \x1f\xe1\x65\x2f\x0f\xc4\x74\x2c\x1b\xab\x08\x87\xc2\x08\x06\x6b\ \x31\x91\x78\xe5\xc0\x7c\xe0\xfe\x73\xae\x08\x88\x26\xe6\xf2\x79\ \xc3\xef\xf3\x45\x54\x55\x9d\xa3\x94\x86\xc5\x87\x7c\x3e\x3f\x1f\ \x8f\xc7\xfb\x05\x7c\xda\xbc\x48\x55\xcf\x37\x79\xba\x0e\xef\x7f\ \xf3\x4c\x9f\x35\xad\x7f\x05\x18\x00\xcd\x5b\x22\x70\x74\x8c\x6f\ \xf1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x5e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x00\x49\x44\x41\x54\x78\xda\x9c\ \x93\x3d\x6e\x14\x41\x14\x84\xab\xff\x66\xd6\x46\x10\x18\xe1\x80\ \x00\x5b\xb6\x90\x85\x40\x24\x20\x7c\x02\x23\x41\xe2\x94\x84\x1b\ \x10\x91\x42\xe6\x1b\x70\x05\xfe\x12\x02\x24\x90\x09\x20\xc6\xe2\ \x00\x90\x12\x20\x07\x20\x10\x08\xd8\x9d\xe9\xd9\xfe\xa1\x5e\x8f\ \x8d\x67\xd7\x11\x3c\xa9\xb4\xda\x9e\xee\x7a\xf5\xbe\x9e\x51\x8f\ \xef\xdf\xc4\xb0\xb4\x06\x14\x66\x2b\xe7\x8c\x18\x02\xce\xae\x5d\ \xc4\xa5\xcd\x2d\xb8\xd1\xa9\x5b\xd5\xc2\xe2\xc3\x67\x0f\xee\x5a\ \x3b\xdc\x68\x34\x9e\x57\x16\xdb\x5a\xcd\x1b\x28\x74\xc8\x50\x5c\ \x57\xc6\x62\xda\xfc\x80\x51\x09\xd6\x1a\x58\x71\x97\x92\x87\x46\ \x61\x7b\x67\xb7\x03\x4d\xca\xff\xc3\x4a\x29\x63\xd2\x76\x78\xf7\ \xf4\x06\xf6\x3f\xbc\xc5\xcf\xfd\xf7\x58\xdf\xba\x03\x43\x33\x9b\ \xd3\x91\x81\x62\xfc\xc5\x05\x87\xd1\xbc\x81\x34\xe1\xc2\xa7\xbd\ \x27\xf8\xed\x23\xa2\xb2\x08\xbe\xed\x13\xa4\x83\x04\xfd\x46\xb0\ \xbb\x83\xa3\x81\x9e\x49\x00\xd4\x95\x41\xe4\x28\x31\x89\x80\xa9\ \x6f\x60\x39\xf3\xdf\x04\x7c\x86\x1c\x33\x1c\x4f\x3b\x93\xe7\x12\ \x80\x9d\x78\x30\x24\x04\xee\x09\x41\xc1\xb7\x0d\xf7\x19\x68\x71\ \x17\xc5\xd8\xcb\x38\x07\x4d\x13\x63\x67\x65\xb9\x3e\x4d\x91\x87\ \x81\xab\x1b\x7b\x68\xdb\x96\x0c\x06\x10\x7b\xda\x24\x6b\x24\x41\ \x9a\xb9\x4a\x49\x20\x63\xc5\x90\x4b\x7c\xcd\xbb\x0e\x32\x02\x19\ \x68\x19\x21\x1d\x28\x52\xd6\x1e\xef\x7e\x28\x49\x90\x72\xc4\xa3\ \xd7\xe7\x11\xba\x5f\x6c\xc6\x04\x86\x0b\x02\xa7\x24\x40\x22\x03\ \x07\xab\xe3\xf1\x04\x10\x06\x9e\x8d\x14\x96\x4e\xd6\xf0\xcd\xa4\ \x4f\xf0\xe2\xf3\x0a\xac\x8a\xe5\x70\x94\x11\x9c\xe9\xaf\x67\x20\ \xe7\x4c\x81\x1b\x08\x29\x32\x85\xdc\x48\xe7\xc7\x3d\xc4\x9a\xdd\ \x5e\x7e\x59\x25\x0c\x76\x4d\xc2\xc0\x11\x8e\x2b\x2f\xc9\x91\x5c\ \x19\x2d\x12\x80\xdc\x84\xfc\x36\x93\x31\xd7\x34\xb4\x51\x19\x15\ \x5f\xcb\xdd\xaf\x6b\x30\x34\xa8\x6b\x87\xaa\xaa\xe6\xe4\xd8\xb5\ \x22\x64\x61\xd0\x27\xf5\xcd\xb8\x67\x20\xa3\x6b\x9a\x38\x9a\xbc\ \xfa\xbe\xce\x49\xbf\x51\xb9\x10\x19\x7e\x0b\x81\x7a\xf3\xf1\x04\ \x2e\x2f\x37\x18\xe9\x0c\x3f\x21\xc4\xe5\x33\x85\xd5\x15\xfc\x63\ \xdd\xbb\x7d\xed\xfa\xc6\xb9\xd3\x3b\x9b\x17\x56\x8c\xc2\xff\xd5\ \x12\xb5\x2a\x9f\xd0\x1f\x01\x06\x00\xaa\xeb\xf2\xc5\x81\xf9\xc6\ \x65\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x54\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x37\x45\x36\x42\x44\x35\x34\x36\x31\x30\x37\ \x30\x31\x31\x45\x33\x39\x33\x39\x45\x42\x34\x33\x37\x30\x42\x43\ \x42\x38\x30\x37\x34\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x37\x45\x36\x42\x44\x35\x34\x37\x31\x30\x37\x30\x31\x31\x45\ \x33\x39\x33\x39\x45\x42\x34\x33\x37\x30\x42\x43\x42\x38\x30\x37\ \x34\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x37\x45\x36\x42\x44\x35\x34\x34\x31\x30\x37\x30\x31\x31\x45\ \x33\x39\x33\x39\x45\x42\x34\x33\x37\x30\x42\x43\x42\x38\x30\x37\ \x34\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x37\x45\x36\ \x42\x44\x35\x34\x35\x31\x30\x37\x30\x31\x31\x45\x33\x39\x33\x39\ \x45\x42\x34\x33\x37\x30\x42\x43\x42\x38\x30\x37\x34\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xaf\ \x9c\xe0\x66\x00\x00\x01\xc8\x49\x44\x41\x54\x78\xda\x94\x53\x4b\ \x4b\x42\x41\x14\xfe\xc6\x47\x2e\x2a\x10\x12\x0b\x71\xd1\x03\x8a\ \xc0\x45\x0f\x10\xb2\xa2\x55\x84\x50\x10\x15\x61\x45\xbb\x56\xfd\ \x9b\x36\x41\xa0\xab\xc0\x84\xf4\xde\x0c\xbb\x95\xb5\x69\x11\xfd\ \x80\x68\x19\xf4\xb0\x85\x44\xe5\x42\x10\xca\xb9\xd3\xcc\xdc\xab\ \xde\xab\x41\x75\xb8\x03\xdf\x39\xe7\x9b\xef\x9e\x73\x66\x86\x30\ \xc6\x70\x9c\xcb\x7d\x54\x29\xf5\x32\x5d\x07\x83\xd5\x84\x47\xe0\ \x20\x04\x84\x90\xd7\xa5\xc5\x45\x7f\x3d\xc3\x58\x03\x64\x54\x95\ \xfd\x66\xc5\x62\x91\xa5\x15\x25\x69\x15\x10\xcb\x61\x55\x7b\x7a\ \x2e\xe0\xb9\xf0\x22\x97\xc0\x0f\x8f\x4f\x32\xbe\x9f\x4c\xc2\xef\ \xf7\x63\x6a\x62\x62\x2d\xad\xaa\x07\xd6\x1a\x5d\x56\xe7\xf2\x22\ \x8f\x60\x30\x68\xfc\x81\xb7\xd3\xdb\xd7\x2f\xb1\x68\xe1\xab\x5a\ \x45\x77\x4f\x0f\xa6\x23\x91\x98\x72\x74\xe4\xe6\xe1\x95\x16\x81\ \xf9\x85\x05\x38\x89\x43\xb4\x2d\xab\xd2\x29\x95\xf1\xe1\xa1\x41\ \x64\xd2\x69\x50\x2e\xba\xb1\xbe\x2e\x72\xcb\x4d\x15\x18\x2d\xb4\ \xbb\x09\x3c\x4e\x31\x34\xc8\xe1\x31\xc6\x01\xad\x60\x6c\x6c\x5c\ \xae\x96\x01\xd6\x04\x08\xe4\x0e\x6c\xe5\x8b\x48\xdd\x95\x60\xba\ \x16\x6d\x26\xbf\x58\xc8\x8b\x83\xd5\x90\x2d\x6d\x08\x98\x91\xd4\ \x6d\x09\xd7\xdb\x93\xf6\xbd\x30\xf4\x04\x9e\xda\xbd\xe6\x02\x0d\ \x7e\x5d\xa0\x46\xdc\x1c\xf5\x61\x72\xef\x86\x33\xd8\x0f\x0a\x04\ \x9b\x23\x5d\xb6\x70\x43\xc0\x8c\xec\x44\x3a\x90\x98\xf5\x19\x67\ \x6b\xf6\xea\xea\xe8\x44\xe5\xfd\x0d\xce\x36\x0f\x3e\xab\x14\x56\ \x7e\xcb\x29\x64\xb5\x73\xf3\x18\x59\x5d\x20\x1c\x0e\x23\x9b\x3b\ \x47\x20\x10\x00\xa5\x3a\xe6\xa2\x51\xd8\x2f\x2b\x27\x1d\x2a\x0a\ \xfb\x8f\x99\xfc\xc6\x4d\xac\xcd\x24\x11\x8f\x43\xd3\x34\x03\x27\ \x12\x38\x3b\x3d\x85\x76\x72\x22\xfd\xb8\x25\x47\x9a\x2b\xe0\x37\ \xeb\x5f\x15\x98\x7c\x63\x46\x42\xa4\x5c\x2e\x5f\xa9\xd9\xec\x8c\ \x2e\xa6\xc3\xec\xef\xd1\x66\xc4\x78\x99\x82\x5f\x0f\x09\x15\xfe\ \x54\x07\x38\xf6\xe2\xef\x56\xe2\xfb\xee\x05\xf8\x16\x60\x00\x12\ \x54\x52\x07\x74\x96\x99\x7a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\x8a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x2c\x49\x44\x41\x54\x78\xda\x7c\ \x93\xcb\x6b\x13\x51\x14\xc6\xbf\x7b\xef\xcc\xe4\xd1\xd8\xa2\xd0\ \x56\xc5\x4d\x8b\x20\x68\x53\x8b\x8f\xae\xac\x7f\x80\xe0\xce\x45\ \xa5\xdd\x89\x5a\x14\x17\xea\x4e\xe8\xaa\xe0\xce\xee\x94\x3e\x70\ \x97\xa2\x0b\x17\x8a\xd0\x85\xdd\x05\x17\x52\x6b\x08\x49\x10\x5d\ \x68\x36\xe2\xa3\x8f\x3c\x6a\x9c\x18\x9b\x99\xeb\x39\x93\x4e\x3a\ \x89\x92\x0b\x07\x92\x7b\xce\xf7\x3b\xdf\x3d\xf7\x8e\x40\x60\x25\ \xcf\x0d\x4d\x48\x65\x24\xa2\x7d\xbd\xd0\x5a\xd3\x0e\x87\x80\x10\ \x02\xf6\xfa\x06\x5c\xa7\x3e\x79\xfe\x75\x6e\xc9\xaf\xe7\x1a\x11\ \x10\x8f\x0b\xa9\x9e\x0c\x5d\xb9\x86\xc8\xc1\x43\x24\xd5\x4d\x30\ \x21\x50\xfd\xfe\x0d\xb9\xc7\x0b\xd0\xae\x73\x99\x20\x4f\x5b\x00\ \x2c\x86\x22\xf1\xd5\x29\xa8\x1f\x5f\x50\x79\x49\x79\x29\x3d\xa9\ \xe7\xc2\x75\x11\xbb\x38\x0e\xa7\xff\x08\x72\x8b\x73\x80\xd3\x80\ \x78\x80\xe4\x58\x7c\x82\x2c\x26\xe2\x53\x37\xa1\x36\xbe\xa2\xb2\ \xfc\x0c\xc2\x34\x49\x2b\xf7\xce\xa6\x5d\xe8\x9d\x1d\xc4\x2e\x5c\ \x82\xd3\x7b\x18\xd9\xb9\x87\xdc\x7d\x72\x2c\x99\x59\x92\x94\x48\ \x0c\xdf\xba\x0d\x63\x6b\x1d\xf6\xab\x17\x50\xd1\x2e\xc8\x50\x18\ \xd2\x0a\xed\x05\xfd\xe7\x7d\xce\x73\x1d\xd7\xb3\x8e\xd9\xd2\x25\ \x7a\xf7\x89\x93\xa8\xad\x3c\x87\x11\xe9\x82\xb2\xa8\xd8\xb0\x28\ \xcc\x40\x58\xde\x3e\xe7\xb9\x6e\xdf\xd1\x63\x70\x75\x63\x46\x06\ \x9f\xb3\x9e\x59\xf3\xba\xa0\xdd\x7a\xfb\x52\x94\x93\x54\x9f\x7a\ \x43\x75\x62\x17\xc0\xc3\x2a\x6c\x42\x9a\x04\x50\xaa\x99\xf8\xef\ \xe2\xae\x42\x41\xff\x2c\x36\x1b\x19\x2c\xd0\xa5\x2d\xb2\x18\x82\ \x96\x1d\xba\xfb\x57\x4a\x37\x22\xca\xe5\x80\x03\xfa\x21\x4b\x45\ \x1a\x96\x15\xb8\xf9\x0e\x00\x1e\x5c\x25\x00\x10\xd4\xd5\x26\x62\ \x98\x1c\xf0\x40\x75\x07\x0a\xbf\x48\x49\x33\xb0\xcb\xdb\x74\x82\ \x06\x40\xa6\x4a\xbf\xa6\xd3\x1f\x3e\xa1\xe6\x68\x18\x7c\x03\xa6\ \x05\x49\x93\x6f\x0f\xde\x37\xa8\x49\xad\xae\x91\xfe\x98\x07\xeb\ \x7c\x47\x07\x1e\xc4\x07\xae\x9f\xdd\xdf\x7d\xff\xcc\xf0\x71\x44\ \x22\x61\x72\xd1\xea\x84\xdd\x0a\x1a\x5a\xb5\xfa\x1b\x6b\x99\xf7\ \x78\x5b\xdc\xbe\x77\x37\x9b\x9f\xa7\xc7\x54\xf0\x47\xee\x41\x46\ \x09\x32\x7a\x7a\x04\x56\x2c\x8a\x96\x81\x50\xd5\x9f\x8a\x8d\xd5\ \x77\x69\xac\xee\x8a\x69\xb7\xd0\xf2\x31\x31\x64\x36\x3e\x78\xe3\ \x54\x4f\x74\xc6\x7b\x24\x6d\x00\x49\x36\x52\x65\x7b\xfa\x4e\xf6\ \xf3\x23\x16\xff\xf3\x35\xfa\x10\x8a\x81\x0e\x97\x90\xf7\xc5\x3e\ \xe0\xaf\x00\x03\x00\xbb\xb8\xe3\xd4\x41\xe9\xe1\x62\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x23\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xc5\x49\x44\x41\x54\x78\xda\xa4\ \x53\x5d\x48\x53\x61\x18\x7e\xce\xd9\xe6\x7e\xcb\xcd\xe9\x7e\xb3\ \xe9\x50\x33\x5d\xba\x24\x16\x5d\x14\x51\x12\xa5\x17\x79\xb5\xc0\ \xb9\x9b\xe8\x2e\xb4\x1f\x52\x42\x53\xca\x20\x4d\xcb\xcc\xe8\x72\ \x2a\x59\x04\x5e\xa5\x50\x54\x66\x44\x14\x89\x77\xda\x2c\x67\x5a\ \xce\x35\x4b\x6c\xfe\x97\xb2\xb3\xed\xf4\x6e\xe5\xb2\x8b\xae\x7a\ \xe1\xe1\xfd\xbe\x8f\xf3\x3c\xe7\xfd\x9e\xf7\xfd\x18\x9e\xe7\xf1\ \x3f\x21\x2c\x69\x65\xfe\x3a\x88\xf0\x50\x10\x5c\x04\x7b\x38\x12\ \xdb\x23\x44\x39\x4f\xbd\x07\x87\x4c\xb5\x6b\x22\x56\x76\x8d\xe3\ \xd6\x6a\xe3\x02\x1b\xc9\x44\x70\x0a\x58\xdc\xb1\xe8\x80\x64\x19\ \x61\x53\x01\x6c\xe9\xe5\x08\x2c\x6b\x90\xaa\xcd\x82\x04\x49\x92\ \x89\x4f\x13\x17\x02\x73\xab\xc7\x19\x86\x31\x12\xfe\x08\x44\x22\ \x50\x44\xc9\x47\x2c\x80\x67\x06\xd0\x28\xda\x90\xb2\x6a\xc3\xcb\ \xbe\x8f\x08\xcc\x8d\x41\xa9\x9c\x81\x5e\xa7\x81\xd5\x6a\x81\x50\ \x24\x30\xf8\xfd\xd3\x7e\x8e\xe3\x8c\x6c\x94\x1c\x75\x81\xca\x74\ \xd9\xb2\x80\x99\x1f\x54\x56\xa8\x08\xbc\x2f\x0d\x6a\x8d\x14\xa5\ \x8e\x12\x68\x35\x89\x70\x3a\x8f\x41\xaf\xd7\xe2\x49\xdf\x73\xc8\ \x65\x72\xc8\x64\x32\x03\xd1\x2e\xc7\x04\xa2\x0a\xe4\xa5\x3d\xc3\ \x04\xbc\xff\x02\x6c\x5e\xcd\x43\x7e\x7e\x36\xb2\xb7\x67\x80\xa5\ \x2f\x3c\x9e\x51\x08\x04\x0c\x72\x72\xb3\x51\xb0\x33\x1f\x23\x23\ \xef\xa0\x52\x29\x41\x15\x54\xb2\xbf\x8d\x83\x90\x56\x21\x01\x6d\ \xc8\x53\x39\x9b\x8c\x3c\x6b\x26\x24\x22\x19\x64\x12\x29\xa6\xfd\ \x7e\x48\x29\x4b\x12\x24\x24\x60\xc5\xc2\xe2\x22\x22\x64\x58\x38\ \x1c\x16\xb3\xf4\x67\x3e\x12\x06\xbf\xab\x80\x4c\x14\x01\x99\x19\ \x40\xef\xb7\x73\xb0\xd5\x33\x70\x7f\xed\x87\xa3\xb4\x0c\x45\xc5\ \xc5\x70\x38\x1c\x68\x68\xbc\x82\xde\x9e\x07\x58\x5a\x5a\xc2\xca\ \xf2\x77\x04\xb9\x10\x84\xc1\x15\xbc\x60\x25\xd8\xbf\x2d\x07\x74\ \x00\x44\xf3\xab\x01\x20\xd7\xa0\x43\x8e\x61\x1f\xee\xdd\x3f\x08\ \xbb\xdd\x8e\xee\xee\xee\x78\xb7\xda\x3b\xbb\xc0\x52\xc9\x5c\x30\ \x08\xf6\x71\x1d\x4e\x70\x2b\x78\xda\xd9\x01\x50\x85\x70\xb9\x00\ \xa5\x38\x11\x35\x07\x06\x91\x20\x12\xc5\x08\x1b\xc9\xa3\xa3\x1e\ \x28\xe4\x72\x84\x43\x21\xf2\x20\x18\x14\x1c\xbd\x81\xf9\x47\xd5\ \x78\x6d\xde\x0b\xcb\xd0\x08\xcc\x2a\x71\x12\xce\xee\x7e\x86\xe1\ \x21\x37\xa4\x52\x31\xd4\xea\xa4\x38\xd9\x33\x36\x8e\x37\x03\x83\ \x48\x4f\x33\x61\xd2\xeb\xc5\xd4\x94\xb7\x83\x21\x81\x58\xf4\x9c\ \x81\x99\x92\xaa\xa5\xb1\xfd\xa1\x39\x4b\xa7\xdd\xb2\xd5\x00\xaf\ \x6f\x0a\xf3\xf3\x0b\xd4\x24\x9e\xbc\x65\xa0\x24\xe7\x4d\xa9\xa9\ \xf0\x7a\x27\x31\xf6\x61\x7c\xb6\xfa\x7c\xa5\x35\x2e\x40\xd7\xc7\ \x61\xee\x2e\x2a\xaa\xca\x76\x5c\xaa\x6f\xe8\x37\x1a\xf5\x29\x16\ \x8b\x05\x6a\x22\xad\x0b\x04\x48\xcc\xed\x76\xe3\xb3\xdf\x3f\x7b\ \xb1\xae\xa6\xb0\xb1\xe9\xfa\xb0\x70\x7d\x90\xa2\x08\x33\x41\x34\ \x35\xdf\x7c\x5b\x55\x79\xaa\xf0\x64\xf9\xe9\x0a\xaf\xcf\xe7\xe4\ \x23\x91\x84\xf5\x2b\x30\x2c\x1b\x9c\x0b\x04\xba\x6e\xdf\x6a\x6d\ \xbb\xda\xdc\x32\x8c\x5f\x5d\xff\x67\x44\x27\x4d\x4b\x60\x37\xbe\ \x35\x02\x0d\x3a\xa6\xe3\xa2\xff\xfb\x9c\x7f\x0a\x30\x00\x69\x64\ \x0c\x6e\x38\xbc\x33\xae\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x06\x06\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x32\x44\x42\x32\x34\x42\x33\x39\x37\x36\x41\ \x39\x31\x31\x45\x32\x42\x32\x34\x37\x43\x44\x35\x43\x36\x46\x30\ \x42\x33\x36\x31\x36\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x32\x44\x42\x32\x34\x42\x33\x41\x37\x36\x41\x39\x31\x31\x45\ \x32\x42\x32\x34\x37\x43\x44\x35\x43\x36\x46\x30\x42\x33\x36\x31\ \x36\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x32\x44\x42\x32\x34\x42\x33\x37\x37\x36\x41\x39\x31\x31\x45\ \x32\x42\x32\x34\x37\x43\x44\x35\x43\x36\x46\x30\x42\x33\x36\x31\ \x36\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x32\x44\x42\ \x32\x34\x42\x33\x38\x37\x36\x41\x39\x31\x31\x45\x32\x42\x32\x34\ \x37\x43\x44\x35\x43\x36\x46\x30\x42\x33\x36\x31\x36\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xbc\ \x0d\x79\x0c\x00\x00\x02\x7a\x49\x44\x41\x54\x78\xda\x9c\x93\x4d\ \x48\x54\x51\x14\xc7\x7f\x33\xef\x4d\xd3\xf8\x5d\x83\x66\x58\x16\ \x46\x52\x8b\xb4\x54\x94\x40\x2a\xb0\x62\x0c\x2a\x5b\xf4\x41\x99\ \x45\xab\x34\x21\x24\x10\x0a\x4a\xc4\x28\xcc\x4d\x49\x38\xae\x5a\ \x84\x0a\xb6\x08\x33\x28\xdc\x45\x18\x46\x14\xf9\x51\x61\x43\x42\ \x5a\x93\xcd\x84\xa6\x99\x8e\x8e\xf3\xe6\x76\xef\x1b\x95\xc1\x95\ \x74\xe0\xbc\xcf\xf3\xfb\xbf\xff\xb9\xe7\x3e\x0b\x32\x5c\x77\x70\ \xcf\x1b\x5c\x0c\x87\xc1\x62\x01\x9b\x4e\x73\x57\x35\xe5\xac\x24\ \x14\x5c\xd3\xb9\x4f\x08\xe1\x93\x19\x10\x21\xe1\x15\xd7\x3b\xf6\ \x88\x03\xf5\xdc\x5d\x09\x6f\x29\xba\x85\xe8\xba\xea\xa5\xae\xf3\ \x0c\x1d\x3d\x2f\x78\x75\xfb\x13\x3a\x31\x1c\xbc\xb9\x99\x0d\x6b\ \x20\x2c\x64\x46\x03\x44\x5c\xea\x56\x0c\xcd\x4a\xa6\xae\x0a\xc0\ \xe0\xca\x91\x46\x9e\xbc\xce\x62\x9e\x59\x6c\x38\x08\x1a\x50\xed\ \xaa\x21\x29\xc6\x29\x45\x94\x84\x40\x5a\x34\x05\x66\x43\x33\x3c\ \xed\x7f\xa4\x0d\x7c\xef\xf7\xe8\x4a\x6d\x9a\x09\x56\xb1\x9a\x90\ \x84\xec\xc4\x11\x60\x0a\xa9\xce\xc7\xe1\x5a\xe6\x25\x2b\x39\x33\ \x13\x63\xd7\x63\x08\x03\xbb\x9e\xc8\xc9\x82\x2a\xde\x0f\x57\x68\ \x7a\xbc\x1d\xae\xb5\x9c\xa0\xa1\xf4\x19\x03\xf5\xbf\x99\x93\x62\ \x37\xda\x8e\xe1\x8c\x85\xe7\x9f\x17\x60\x22\xe7\xb5\xb1\xa3\xc4\ \xd8\x60\x6b\x8a\x9f\x80\x18\x33\x9f\xeb\x09\x0e\x58\x97\x68\xa3\ \xa8\x36\x43\xf5\x85\xae\xc9\x86\xfe\xd0\xfe\xb2\x9e\x86\xe5\x0b\ \xb6\xff\x32\xc5\x19\x3b\xa8\xd3\x56\x41\x90\x49\x2c\x52\x41\x37\ \xa4\xc5\xe2\x82\x9d\x64\xa7\x7b\x69\xef\x1e\xa7\xad\x92\x3c\x59\ \xeb\x97\xf9\x6d\x11\x2c\x6d\x42\x58\x65\xab\x0f\xcb\x71\x9e\x75\ \x53\x97\x14\xef\x64\x26\xfc\xd3\x5c\x51\xab\xb2\x36\x16\xf8\x22\ \x73\x9c\x4d\x29\x4e\xca\xdc\xe4\x47\xc3\xa7\x1a\x11\x95\x87\xf3\ \x99\x0b\x9a\xb7\xe3\x8a\x9a\x0c\x8e\x31\x31\x37\x64\x2e\xa8\x12\ \x26\x10\xf6\x61\x48\xfb\x69\xc9\x09\xc8\xcd\xd4\xb4\x04\xdf\x43\ \x94\x97\x64\xf1\x61\xf4\x0d\x87\x76\x6f\xa7\xaa\x35\x4e\xec\xda\ \x92\x8e\xdd\xe1\x60\x56\xf8\x22\x02\x4a\x61\x3a\xfc\x0b\x8b\x0e\ \x85\xd9\xa9\x4a\x20\x62\xfb\x3e\xa2\xe2\x78\x26\x1e\x7f\x3f\x86\ \xac\x49\x4d\x0e\x72\xb4\x60\x23\x7b\x73\xd2\x98\x09\x05\x24\xe3\ \x37\xbf\xae\xcb\x83\xd1\xd7\x3b\xa5\x6d\xcb\x84\x01\x5f\x4f\xc4\ \xd2\xc2\x8e\xf9\x3a\xe1\x31\x85\xad\xb2\xcd\x91\xc9\x21\x34\xd5\ \x46\x40\xbe\x92\x93\xe8\xeb\xfd\xab\x6a\xc3\xba\xa7\x9b\x0b\x14\ \xf2\x60\xd4\x87\xa6\x38\x4d\x8b\xf0\x2d\x97\xc8\x0b\x37\xf2\xd6\ \xe5\x92\x53\x91\xae\x7e\x78\x61\x70\x30\x72\xad\x3e\xa2\xe0\x77\ \x8f\x29\x51\xb5\x72\xe2\xe4\xc8\xcc\x8d\xca\xc5\xc8\x3d\x2d\x17\ \xb1\x75\x04\x71\xbe\xd9\x1c\x7b\x74\x8d\x62\xec\x2b\xf9\x5f\x72\ \xcb\xe4\x18\xcf\xb9\x4d\x81\xff\x8e\xe5\xce\x96\xe2\x9f\x00\x03\ \x00\xc9\xf5\xf8\x62\xb7\xfb\xa7\xd9\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x05\xa4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x30\x43\x39\x45\x41\x32\x35\x30\x41\x37\x33\ \x44\x31\x31\x45\x31\x39\x43\x45\x34\x45\x43\x31\x32\x41\x31\x34\ \x35\x42\x33\x44\x33\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x30\x43\x39\x45\x41\x32\x35\x31\x41\x37\x33\x44\x31\x31\x45\ \x31\x39\x43\x45\x34\x45\x43\x31\x32\x41\x31\x34\x35\x42\x33\x44\ \x33\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x30\x43\x39\x45\x41\x32\x34\x45\x41\x37\x33\x44\x31\x31\x45\ \x31\x39\x43\x45\x34\x45\x43\x31\x32\x41\x31\x34\x35\x42\x33\x44\ \x33\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x43\x39\ \x45\x41\x32\x34\x46\x41\x37\x33\x44\x31\x31\x45\x31\x39\x43\x45\ \x34\x45\x43\x31\x32\x41\x31\x34\x35\x42\x33\x44\x33\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xde\ \x40\x93\xc0\x00\x00\x02\x18\x49\x44\x41\x54\x78\xda\x74\x53\xbf\ \x6b\x14\x41\x18\x7d\x33\xb3\xda\x84\x20\x8a\x08\xc6\x2a\x01\x0b\ \x45\x24\x85\x20\x36\x2a\x12\x4c\xba\xa4\x4b\x11\xc5\xce\xce\x4a\ \xb0\xd1\x46\x89\x96\x16\x82\x22\x08\xfe\x0b\x46\x42\x82\x21\x4d\ \xc4\x26\x10\x43\x88\x85\x29\x03\x0a\x8a\x29\xce\x4d\xf6\x72\xbb\ \xb7\xbb\x33\xe3\xfb\x66\xef\xe2\x72\xc9\xcd\x1d\xcc\xec\xec\x7c\ \xef\xd7\x7c\xab\xd0\x67\x8c\x3d\x5f\xfa\x50\x94\x6e\xca\x39\x0f\ \xdf\xf3\x4e\x6b\x85\xe3\x46\x7f\x5c\x7e\x7c\x7b\x2a\xea\x07\x20\ \xc5\xef\x1f\x4d\x70\xe6\x83\x0f\x7f\x78\xef\x20\x80\x91\x31\xb8\ \xff\xf2\xd3\xa4\x9c\x8b\x8e\x62\xb5\x3c\x94\x97\x0e\xd3\xcf\xe6\ \x21\x6b\x56\x02\x0a\x38\x7b\xee\x0c\x86\x2f\x8c\xe0\xee\xe5\x53\ \x04\x72\x38\x04\x50\x67\xf5\xa1\xce\x07\x46\x47\x66\xad\x34\x66\ \x5e\xcc\x63\xe1\xc1\x35\x2c\x6e\x67\x07\x35\xd1\xd8\xec\xd2\x5c\ \x61\xdd\xa4\xb5\x0e\x79\x61\x31\xfd\x54\x58\x2b\xf4\x3a\xeb\xcc\ \xa5\x93\x04\x01\x56\x7f\xe7\xd8\xcd\x5c\x58\x07\x00\x29\x7e\xf7\ \x50\x58\x2b\x7f\x22\xad\x1b\x9a\x31\x1a\x77\x3a\xac\x0b\xdb\x29\ \x83\x03\x5e\xad\x36\x70\x73\x64\x20\x04\x19\x00\x44\xe6\xd6\x4e\ \x86\xd7\x73\x6b\xb8\x7e\xf5\x22\x7e\x26\xed\xe0\x5b\xf1\x77\x6f\ \xf4\x34\x99\x54\x60\xdd\x4b\x1d\x22\x16\x95\x16\x68\xb4\xa8\xa0\ \x6b\x41\x80\x9a\xb9\x83\xe1\xd6\x3e\xe7\xb7\xe3\x43\x07\xfe\x36\ \x76\x72\x1c\xeb\xb0\xde\x18\x1e\x80\xe1\x61\x4b\xc2\x98\x16\x54\ \xd7\x82\xcc\x49\xe6\xc2\x5d\x65\x85\xc7\x97\x1f\x2d\xe4\x96\x0a\ \x78\xe2\xd7\xbe\x0f\x0c\x8c\x06\x7f\xd3\xca\xb7\xec\x37\xdb\x75\ \x00\xae\xe2\xb4\x0a\xad\x60\xe1\x9b\xb5\x06\xbc\x64\xc1\xe7\x5b\ \xe7\x4f\x04\x00\x27\xac\xa9\x0d\x76\xb4\x36\x68\x96\x34\xa8\xf4\ \x7f\x05\xbb\x99\x5c\x95\xa2\x02\xc0\x59\xc5\xeb\x53\x01\x20\x6e\ \xd5\x58\x73\x0f\xcd\x50\xe3\xad\x75\xc4\xcc\xa7\x48\x93\xcf\x1d\ \x05\xcc\x80\x1a\x25\xf9\x36\x15\x88\x47\x19\xd2\x3f\x71\xb8\xae\ \x1a\x2b\xe7\xe5\x27\x13\x57\x3a\x11\xc5\x98\xf5\x95\x02\xf1\x2e\ \x82\xd8\x0a\x81\x4d\xd0\x42\xb8\xf4\xda\xc3\xba\xc2\x63\xeb\xf5\ \xe6\x8b\x24\x8d\xcc\x11\x9d\xfd\xed\xe8\x4b\x19\x15\xda\x50\xae\ \x31\x29\xf5\x61\xd6\x9e\x21\x0a\x92\x3f\xdf\xbe\x0e\x0a\x6d\xe3\ \xfb\x06\xea\xdf\x9e\xb0\x72\x7f\xaf\x97\xb5\x3e\xe4\xc4\xa8\x34\ \x1d\xfa\x0f\xf9\x1e\x37\x8f\x7a\x21\x4d\xf8\x4f\x80\x01\x00\xcf\ \xad\x28\xd2\xf7\x31\x1e\xa3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x05\xd4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x03\x22\x69\x54\x58\x74\x58\x4d\x4c\ \x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\ \x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\ \x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\ \x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\ \x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\ \x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\ \x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\ \x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\ \x43\x6f\x72\x65\x20\x35\x2e\x30\x2d\x63\x30\x36\x31\x20\x36\x34\ \x2e\x31\x34\x30\x39\x34\x39\x2c\x20\x32\x30\x31\x30\x2f\x31\x32\ \x2f\x30\x37\x2d\x31\x30\x3a\x35\x37\x3a\x30\x31\x20\x20\x20\x20\ \x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\ \x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\ \x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\ \x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\ \x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\ \x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ \x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\ \x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\ \x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ \x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\ \x6f\x75\x72\x63\x65\x52\x65\x66\x23\x22\x20\x78\x6d\x70\x3a\x43\ \x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\ \x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x35\x2e\ \x31\x20\x57\x69\x6e\x64\x6f\x77\x73\x22\x20\x78\x6d\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\ \x2e\x69\x69\x64\x3a\x38\x34\x32\x46\x44\x41\x39\x35\x36\x39\x41\ \x33\x31\x31\x45\x33\x38\x41\x42\x45\x39\x34\x35\x46\x31\x31\x42\ \x39\x45\x44\x33\x38\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\ \x3a\x38\x34\x32\x46\x44\x41\x39\x36\x36\x39\x41\x33\x31\x31\x45\ \x33\x38\x41\x42\x45\x39\x34\x35\x46\x31\x31\x42\x39\x45\x44\x33\ \x38\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\ \x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\ \x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ \x3a\x38\x34\x32\x46\x44\x41\x39\x33\x36\x39\x41\x33\x31\x31\x45\ \x33\x38\x41\x42\x45\x39\x34\x35\x46\x31\x31\x42\x39\x45\x44\x33\ \x38\x22\x20\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ \x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x38\x34\x32\ \x46\x44\x41\x39\x34\x36\x39\x41\x33\x31\x31\x45\x33\x38\x41\x42\ \x45\x39\x34\x35\x46\x31\x31\x42\x39\x45\x44\x33\x38\x22\x2f\x3e\ \x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xd8\ \x57\x57\xb6\x00\x00\x02\x48\x49\x44\x41\x54\x78\xda\x7c\x53\x4d\ \x68\x13\x51\x10\xfe\xde\xdb\x35\xe4\x87\x66\xdb\x12\x11\x69\x3d\ \xf4\xa6\x14\x11\xaa\x16\x04\x83\xe0\xa5\x58\x73\xee\x29\x44\x10\ \xf5\xd6\x63\xbd\x78\xef\x49\x6f\x82\x3d\x54\x91\xe8\x45\x11\x85\ \x40\x4b\xb4\x8a\x8d\x6d\xa1\x24\xd6\x62\x41\x1b\x14\x62\xd5\xb6\ \xa9\x95\x16\x63\x92\x4d\x9a\xee\xdb\xe7\xec\xa6\x4b\x37\x21\xf5\ \x63\x1f\xcb\xcc\xce\x7c\x33\xef\x9b\x59\x26\xa5\x04\x63\x0c\x16\ \x22\x77\x30\x68\x08\x4c\x98\x92\x0c\x72\xe9\x0c\x67\x67\x47\xf0\ \x7e\x2b\x7e\xfe\x92\x10\xbb\x93\x90\x26\xf9\x39\x3d\x6a\xff\xe1\ \x2b\x73\x19\x2b\x47\x85\x0b\x82\x92\x87\x23\x23\x38\xda\xd9\x83\ \xd5\xed\x1c\x46\x13\xb7\x33\x36\x95\x29\x26\x83\xe1\xeb\x50\xb4\ \x6e\x88\xc2\x2a\xfe\xce\x8c\xa7\xeb\x25\x9a\x08\xa8\x19\x6c\xe1\ \x19\x56\xd6\x7f\xc3\xef\x0d\xd9\xb6\x0d\xab\xb0\x5c\x86\xb1\x39\ \x0f\xee\xd1\x28\x70\x3f\x87\xbb\x09\x14\xe2\x2c\xee\x7c\x83\xd6\ \x5e\x42\xb1\xba\x02\xee\x7c\xe5\x0c\x5c\x56\xe1\x0d\x85\x28\xa1\ \x0a\xa6\xec\xa7\x35\x74\xf0\x63\x16\xd1\x57\x0c\x8f\x05\x55\x10\ \x64\xff\x9a\x43\xcc\xf2\x8f\x4d\x6d\xc4\x6e\x28\x8b\x71\xae\x50\ \x27\x54\x65\xec\x4d\x3e\xea\xe4\x30\xb7\x88\x04\x3f\x9d\x13\x2e\ \xce\x65\x3a\xfa\x7f\xfc\x75\x82\x63\xa3\xaf\x07\x0d\x53\x92\xfa\ \x16\x19\x87\xc2\xbd\xa7\xd7\x6f\x85\x3f\xa0\x09\xa9\x73\x27\x07\ \xa4\x14\x49\x49\xd3\xe0\x74\x3f\xa6\xaa\xfd\xf6\x15\x84\x29\x26\ \x86\x2f\xf6\xa1\x5b\x0b\xe0\x67\xa1\x8c\xbb\x6f\x17\x17\x1c\x95\ \x1b\xc0\x44\xf2\xd4\xd5\x6b\xf0\x75\x75\xa1\xb2\xb6\x86\xa5\x87\ \xf7\xd3\x7b\x1a\x48\x7c\x2d\x70\xa4\x37\x0a\x68\xf7\x79\x60\x30\ \x13\xad\xc0\x60\xc0\xf7\xe5\x23\x8c\x4c\x0a\x3e\xad\xc3\x1e\x86\ \x2d\xa7\xa5\x81\x14\x35\xf4\x74\xfa\x69\x57\x6a\x10\x0a\x6b\x49\ \xa0\x30\x03\xb2\x54\x46\xa0\xad\x03\x66\x49\xa7\x85\xe2\xf5\x29\ \xe8\xf3\x89\xd8\x14\x10\xb7\xf4\x90\x34\xb2\xca\xf4\xa3\xa1\xf1\ \xc8\xcb\x0b\x45\x2e\xa7\x85\xb5\x0c\x5c\x85\x79\x28\xd8\xfb\x20\ \x3d\x30\x64\xf0\xcf\x4f\x4d\xc9\x69\xb2\x0c\xcf\xf3\xdb\x31\x67\ \x0a\x01\xe2\x39\xee\x2a\xf6\xe9\xde\xe5\x64\xe5\x4c\xb4\x0f\xc1\ \x23\x01\xfc\xd9\xd4\x91\x7a\x92\xc5\xcd\x17\x61\x1f\x7d\xeb\x75\ \xc5\x65\x9d\x3d\x28\xd3\x59\x70\xb7\xbb\xcb\x25\xf2\xdf\x39\x72\ \x4b\x05\x78\x35\x0f\x2d\xd2\x8e\xe5\xae\x36\xc7\x71\x1c\x00\x53\ \x65\x28\x96\x6a\xe0\x6d\x7e\x94\xe8\xad\x30\xd1\x32\x4e\x3d\x88\ \xe0\x5d\x2e\x11\x0b\x93\x2e\xf6\x0f\x41\xf7\x9d\x21\xbb\xe5\x64\ \x9a\x36\xd1\x8d\x66\x5d\xb2\x7b\x57\x6d\xc0\x3f\x01\x06\x00\x73\ \xea\xeb\x2b\x9a\x63\x33\x47\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\xdf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\x81\x49\x44\x41\x54\x78\xda\x62\ \xb4\x6b\xdf\xc6\x00\x05\x89\x40\x3c\x0f\xca\xbe\x07\xc4\xca\x0c\ \x44\x00\x26\x28\xcd\x07\xd2\xfc\xeb\xcb\x87\xdd\x0f\xf7\x2c\x09\ \x03\xb2\x95\x80\xf8\x38\x31\x06\xb0\x80\xc9\xff\xff\x17\x33\x30\ \x32\x32\x9c\x68\x8d\xca\x00\xf2\x9e\x31\x73\x70\xc7\xca\xd8\x04\ \x2e\x06\xb2\xf9\x81\xf8\x23\x61\x17\x30\x32\xfa\x7d\xb8\x77\xa9\ \x1e\xe8\x9d\x7b\x40\xfc\xe3\xde\xd6\xd9\xeb\xfe\xff\xfb\xf7\x05\ \x68\x70\x0d\x31\x5e\x48\x00\x31\x2e\xcd\xae\x98\x0a\x13\x04\x1a\ \xf2\xed\xd7\xe7\x77\x7b\xfe\xff\xfb\x1b\x42\xd0\x80\xff\x7f\xff\ \x64\xff\xfe\xfa\xf1\x10\x50\xd3\x5b\x64\x89\x9f\x1f\x5e\x6f\x62\ \x64\x66\x51\x20\x68\x00\x50\x91\xc9\xaf\x4f\x6f\xb7\xa3\x4b\x5c\ \x98\x51\xbc\x0e\xca\xb4\x20\x18\x06\xef\xef\x5c\xd8\x80\x2e\x01\ \x74\xd1\x47\x50\x38\xfc\xfd\xf5\xdd\x19\x8f\xde\xff\x8c\x40\xc2\ \x18\x88\x2f\x02\x35\xfc\x41\x57\xf1\xfb\xdb\xa7\x03\x2c\xec\x5c\ \xdc\x40\x57\x9a\x62\x31\xc0\x0f\x88\x37\xb2\x00\x35\x9e\xc5\xe5\ \xbc\x5f\x1f\xdf\x6c\x67\x95\x54\xea\xc0\x26\xf7\xef\xf7\xaf\x50\ \x60\x20\x5f\x61\xc2\xe7\xbf\xb3\x93\x72\xe6\x40\x99\xde\x18\xee\ \x67\x65\x8b\xf9\xf6\xfa\xc9\x0a\xbc\x06\x80\x62\x06\x18\x0e\x9f\ \xff\xfd\xf9\x9d\x89\x26\x05\x36\xf0\xfc\xd4\xfc\x99\x4c\x84\xa2\ \xe9\xd3\xa3\x6b\xdd\x4c\x2c\xac\x20\x0d\x9c\x70\xc1\xff\xff\x27\ \xfe\xfe\xfa\x09\x14\xf5\x6f\x08\x1a\x70\x71\x66\xd9\x34\x28\xf3\ \x11\x28\xcd\x02\xf1\x1a\x60\xca\x55\xbe\xbd\x7e\x72\x21\x72\x66\ \xc2\xeb\x8d\x7b\xdb\xe6\x04\x02\x99\x22\xa0\xb0\x03\xe2\xe0\x37\ \x57\x8f\x15\xbd\xb9\x7a\xf4\x22\x03\xd4\x44\x62\x00\x3b\x10\xeb\ \x20\xf1\xef\xc0\x32\x19\x40\x80\x01\x00\x2d\xe4\x9d\x8f\xf8\xb8\ \x7f\xba\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xe1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x83\x49\x44\x41\x54\x78\xda\x84\ \x53\x4d\x48\x54\x51\x14\xfe\xde\xbb\xcf\x37\x6f\x74\x74\x74\xfc\ \x63\x9c\x0a\x12\x17\x2e\x84\x24\x17\xe2\xa2\xb4\x08\xa1\x4d\xed\ \x22\x6a\xe7\xbe\x6d\xa0\x8b\xd2\x0a\x83\x5a\x15\xb4\x68\x1b\x81\ \xda\xa2\x45\x85\x59\x11\x62\x44\x51\x59\xee\x0a\x24\x15\x53\x90\ \x1c\xd3\x46\x67\x9c\x37\xef\xbd\x7b\x6f\xe7\xde\xa7\xc3\x28\x54\ \x17\xce\x7b\xe7\xfe\x9c\xef\x7e\xdf\x39\xe7\x1a\xd8\x37\xe2\x57\ \xc6\x57\xdb\x92\x55\xf5\x55\x36\xc3\x86\x1b\x60\x7a\xf9\x37\x98\ \x61\xe8\x3d\xf5\x35\x4d\x03\x65\x8c\xcc\x34\x11\xb1\xcc\x96\x3d\ \xc1\x89\xc1\xe7\xd7\x47\x66\x96\xe5\xff\xc6\xcb\xd9\x9f\xf2\xc3\ \x8f\x75\x59\x77\x75\x7c\xd2\x2c\x05\xc8\x7b\x7e\xdf\xf9\xf6\x94\ \xf6\x03\x29\xb5\xf1\x12\x93\x3b\xe7\x6e\x4e\xce\xa1\xc0\x05\x0e\ \xd7\x56\xf4\x58\xa5\x00\x3d\x2d\x0d\x4d\xea\x9f\xf3\x39\xe8\x22\ \x18\x3b\xd4\x77\xe9\x2b\x29\x44\x1b\x53\xf3\x6b\xb8\x38\x92\x45\ \x84\x99\x28\x02\xd4\x5f\x9b\x88\x55\x46\xc2\xa9\x2f\x24\x6c\xd2\ \x69\xd3\x01\x45\x71\xf7\xe6\xdd\x5c\x38\xc1\xf6\xfb\xa5\x81\x33\ \x97\x94\x5f\x04\x08\x0a\x6e\xeb\xd1\xa6\x78\x78\x1b\x45\xf4\x3d\ \x9a\xc1\xd8\xe7\xa5\x70\x53\x96\xf0\x20\xe0\xa8\x53\xd1\x55\x3b\ \x38\x3e\xed\x94\xb1\xb5\x22\x00\x17\xbc\xbb\xe3\x40\x1c\x9b\x05\ \x1f\x9c\xe6\x63\x5f\x96\xf1\xee\xf2\x59\xf8\x81\xc0\xf1\xd4\x1e\ \xa5\x78\xbb\xc2\x51\x41\x55\xea\xbd\x37\x51\x57\x4c\xa2\xe0\xbc\ \xb5\x26\x6a\x63\x93\x4a\xe7\x05\x04\x41\xe5\x72\x0c\x8e\x13\x0f\ \x17\xf0\x6b\x23\x83\xd1\xc7\x4f\xb5\x29\xbf\xfb\xc1\x3c\x98\x08\ \x20\x48\x6a\x11\x5a\x32\xbb\xb3\x23\x15\xc7\xd7\xf4\x96\x46\x57\ \x72\xd3\x79\x8e\xc6\x18\x03\xf7\x05\x3a\xbb\x8e\x85\x4c\xc9\x57\ \x6b\x69\x97\x6b\x45\x45\x06\xd5\xe5\xce\xc1\x10\x49\x6a\x63\xc4\ \x20\xe3\x0a\x34\x94\x5b\x98\x58\x2c\xc0\x0c\x02\x6d\xca\x57\x6b\ \x99\xbc\xd0\xc1\x56\xf2\xc6\x0b\x99\xf3\x38\xb2\xa4\xf5\xc8\x9d\ \x29\x5d\xef\xa8\xc5\x74\xc6\xb7\x7c\x89\x84\xc3\x70\x7f\x36\xc0\ \xdd\x6f\x01\x54\x27\x38\x94\xc4\x84\x63\x22\x43\x4c\x14\x03\xab\ \x40\x81\x99\xa1\xd3\xfb\x3b\x1a\x76\xff\x13\x64\x3d\x81\xaa\x88\ \x89\x0b\xcd\x16\xce\xb5\xd7\xab\x4c\x61\x74\x26\x8d\x91\x05\x81\ \x9c\x27\x77\x5a\xdb\xcb\x7d\xba\xf5\x66\x0e\x8b\x99\x6d\x7c\x5f\ \xcf\x61\x7e\x63\x1b\x2b\x39\x57\x4b\x70\xb9\x81\xca\x68\x19\x4e\ \x1d\x72\xd0\x3f\x30\x88\xa5\xd5\x2c\x4e\xa6\x6c\x54\x3a\x16\xdc\ \x90\x00\x2c\xef\xe3\xb3\x81\xdb\x91\xd8\xab\xe1\xd7\xb3\x10\x4a\ \x3f\x2d\x53\xff\x50\x22\x2d\x42\x67\x48\xc6\x1c\x24\xe2\x36\x92\ \x75\x31\x34\x56\x3b\x60\xd2\xa7\x35\xca\xbd\xc1\xa8\x50\x86\x06\ \x89\x90\xb5\xed\x97\x90\xec\x1f\x1d\x96\xd1\x78\x6f\xf8\x26\x4c\ \x48\x3a\x2c\xa9\x6c\x86\x14\xa0\x6e\xa6\xd7\x68\xc0\xa2\x34\x19\ \xf8\xfb\x68\x26\xab\xc1\xbf\x07\xff\x23\xc0\x00\xed\x0e\x29\x3b\ \x44\x06\xed\x8e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x02\xbd\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x5f\x49\x44\x41\x54\x78\xda\x9c\ \x93\x4d\x48\x54\x51\x18\x86\x9f\xfb\x33\xe3\x38\xff\x03\x62\x0b\ \x23\x92\xb1\x10\x4d\x69\x5f\x60\x66\xad\xaa\xb1\x90\xca\xa2\x7d\ \xb4\x69\x15\x51\xab\x40\x2a\x28\xa4\x5d\x0b\x83\x0c\x9c\xa6\x88\ \x6c\x91\x68\x68\x26\x62\x9b\xa0\x90\x36\xb6\xd3\x34\x1d\x4d\x18\ \xc9\x71\xf4\x4e\x77\x9a\xb9\xf7\x76\xee\xc5\x99\x51\x92\xa0\x3e\ \xb8\x3f\xe7\x9c\xef\xbc\xef\xfb\xbd\xe7\x3b\x52\x22\x91\x58\x35\ \x0c\x23\x6c\x9a\x26\x96\x65\xf1\xb7\x90\x24\x09\x45\x51\x70\xb9\ \x5c\xce\x57\xe4\xa7\xe9\xeb\xeb\xb3\xfe\x35\x7a\x7b\x9f\x58\xb1\ \xd3\x1d\xd6\xab\xfe\x7e\x4b\xb5\x99\xed\x98\x5f\x58\xc4\xed\x76\ \x21\xcb\xb2\x33\xde\xaa\xc6\x66\x2e\xb2\x4f\x4e\x4e\x32\x30\x38\ \x44\x34\x1a\xb5\x17\x50\x8b\x89\x1e\x8f\x9b\xce\xce\x8b\x84\x23\ \x11\xfc\x3e\x1f\x95\x5e\x1f\x5e\xaf\x17\x45\x55\xd0\xb3\x59\xf4\ \x5c\x0e\x9f\x18\x27\x93\x49\xea\xea\xea\x9c\x35\x3b\xd4\x22\x8b\ \x2c\x2b\x0c\x0d\x0d\x8a\xfa\x54\x6c\xcc\x22\xb0\x24\xe6\x55\x45\ \xa2\xa7\xe7\x11\x35\x35\xbb\x99\xfe\x3a\x43\x66\x2d\xc3\xd2\xe2\ \x77\x0e\x36\x37\x96\x01\x54\xc1\x14\x8b\xb5\x53\x5d\x5d\x4d\x30\ \x14\xc2\x1f\x08\xf2\x53\xcf\xb3\xb6\x91\x63\x3d\x93\xa5\xa9\xb1\ \x9e\xe9\xd9\x8f\x9c\xed\x88\x31\xfa\x76\x94\x54\x2a\x25\x2a\x90\ \xb7\x2b\x18\x1e\x7e\x83\x52\xf4\x40\x3c\xf9\xbc\xc1\xb7\x44\x13\ \x6e\x96\x45\xe2\x2f\xee\x0e\x54\x11\x7f\x5e\x20\xbd\xb2\x8c\xae\ \xeb\x8e\x2f\xdb\x14\xb4\xb5\x1d\xdf\xf4\x20\x80\x27\x50\xc5\xb1\ \xd0\x33\x4e\xc4\x5a\x09\xec\x3b\x04\x1b\x73\x3c\x6c\xf8\xc4\xd5\ \xee\x17\x2c\xa5\x1b\x30\xf2\x9a\x28\xd3\x2c\x03\x98\xa6\xc5\xc8\ \xc8\xb0\xe3\xb4\x28\x5c\x48\x82\xa9\xfb\xdd\x04\xf6\x1f\x66\xec\ \xd6\x15\xda\x2e\x5f\x02\x23\xc7\xb5\x23\xd3\xf4\x2c\x9d\xc7\xef\ \x0f\x0a\x85\x05\xe4\x72\x09\x92\x00\x31\x28\x14\xf2\x14\x0c\x13\ \x43\xcc\x55\xf8\xdd\xa0\x25\x91\x04\xcd\xbb\xc7\x4f\x85\x8a\x79\ \xb2\xeb\xd0\xd5\x75\x9b\x9b\x37\xae\x93\x13\x27\x53\x52\xe0\x52\ \x55\xe7\x04\x04\xbd\x33\xd6\x56\x67\x45\x5f\x78\x18\x7f\x70\x87\ \xa3\x17\x5a\x20\x33\xc3\x8f\xb9\x24\xb9\x48\x3d\xa6\xa0\x15\x3a\ \x05\x91\xb1\x05\x40\xb4\x67\xab\xf0\xa0\xb6\x36\x8a\xab\x32\xcc\ \x29\xef\x3d\x82\x3a\xd4\x1e\xa8\xe0\xcb\xfb\x09\xb4\x0d\x08\x35\ \x9f\xa1\xfe\xe4\x4b\x1c\x79\x8a\xd3\x6d\x65\x00\x3b\xc6\xc7\x46\ \x4b\xff\x73\xaf\xa7\xc8\x2c\x7c\x60\xd7\xb9\xcf\x54\x86\xf6\x94\ \xe6\xad\xd2\x6b\xd3\x7c\xc7\xb4\x1d\x62\x6f\xfb\xe0\xce\x17\xaa\ \xf4\xc2\x31\x5c\xd5\x34\x6d\x22\x1e\x8f\xb7\x88\x1b\xb9\x3d\xcd\ \xee\x7f\x87\xcc\x69\xcb\x3f\x80\xec\xcd\xf6\x5e\x3b\x47\xdc\x0a\ \xc2\xfc\x5f\xa4\x7f\x0b\x30\x00\x4f\xc6\x12\x39\x0b\xea\x81\xae\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x29\x49\x44\x41\x54\x78\xda\x84\ \x52\xbf\x8b\x53\x41\x10\xfe\x76\xdf\xbe\x80\xe0\x45\xef\x57\x2c\ \x54\x3c\x11\x92\xce\xee\x2c\x0e\xc1\x42\x0e\xe5\x38\xc8\xe9\x5d\ \xe1\x69\x29\x58\x88\x70\x08\x16\x82\x95\x36\x5e\x21\x88\x60\x65\ \x2b\xc1\x46\xe5\xac\x44\xac\x04\x39\xf4\x3f\xb0\x10\x93\x60\x17\ \x4e\x25\xbf\x5e\xde\xcb\xdb\xdd\x71\x76\x93\x7b\x24\x72\xc4\x0f\ \x86\xdd\x9d\x9d\xf9\xf6\x9b\xd9\x11\x95\x07\x97\x21\x29\x41\x6d\ \xba\x8c\xfb\xf7\xb6\xf0\xf4\xf9\x0b\xc2\x10\x77\xef\xdc\x12\xdb\ \x4f\x9e\x61\xe1\xcf\x3b\x58\x84\xb0\x3a\xc6\xcc\xf2\x23\xd8\xb4\ \x07\x90\xf5\x31\xca\x12\xed\x90\x31\xe5\x93\x7b\x6f\x39\xf9\x10\ \x56\x56\x56\xf7\xf3\x3d\x99\xf3\x1b\x0e\x26\x01\x8e\x4b\xaf\x90\ \x4b\xcc\x9e\x00\xa4\x4e\xd3\xf2\xda\x8d\x2d\x94\x16\x8e\x63\x2a\ \x9f\xc7\xaf\xdf\xcd\xcc\xdc\xd9\xf9\xaf\x5e\xbf\x8d\x34\x6a\xad\ \x4d\x5f\x7a\x0c\xd2\x7d\xce\xb7\x19\x81\xb2\x46\x43\xcd\x97\xfc\ \xe1\x70\xe7\x1b\xbe\x7e\x69\xf9\xfd\xa9\x13\xc7\x30\x3b\x93\x47\ \xfd\xc8\x26\xaa\x35\x81\xa9\x8b\x0f\x91\x44\x4d\x12\x44\x10\x42\ \xbc\x09\x02\xb9\x21\xa5\x84\x32\x96\x10\xf7\x06\x49\xc5\xb0\x8a\ \x92\xa8\x42\x98\x04\xdf\xd5\x4d\x6c\xac\x2e\xe3\x20\x34\x1a\x8d\ \xf5\xcf\xbb\xbb\xaf\x94\x52\x9b\xd2\x15\xd7\xef\xb5\x91\x1a\xcb\ \x66\xd0\x77\xa6\x53\xee\x91\xf1\xc1\xb5\x7a\x3d\x33\x87\x97\x95\ \x0a\x0a\x85\x02\xce\x2f\x2d\x5d\x33\xc6\xbc\x96\xac\x08\xfd\xae\ \x23\x20\xa4\x9a\x2d\xb5\xe8\xa7\x23\x35\xaa\x10\x61\x98\xf3\xab\ \x43\xa9\x58\xcc\x48\x88\x68\x9d\x7f\x01\x48\x58\x81\xe6\x97\x25\ \x04\x7c\x8b\x8d\xc9\x08\x42\xa5\xd8\x2b\xd8\x4b\x68\xb7\x3b\x38\ \xb7\xb8\xe8\xcd\x81\x7f\x10\xca\xc5\xc7\xdd\x16\xe7\x70\x6f\xad\ \x1d\x10\x68\xeb\x1a\xe5\x83\x02\x15\x64\xfb\xa4\x9f\x20\xde\x8b\ \xfd\x7e\x7e\x6e\x8e\x43\x3d\x81\x40\xaf\xdb\xf4\x3d\x10\x12\xde\ \x49\x5a\x8f\x94\xa0\xc6\x1a\x48\x44\x63\x67\xe5\xde\xec\x45\x2d\ \x7e\x94\xbf\xc7\x5d\xf2\xa0\x58\x33\xd2\x83\x40\x61\x12\x06\x25\ \xb4\x9b\x5c\x82\x19\xc8\x77\x04\xda\x60\xa8\x1a\x41\x10\x4c\x26\ \x70\x82\xba\x11\x13\x78\x65\xe4\x4b\x70\xb3\x11\x0e\x19\x72\xb9\ \xd0\xfb\xc6\xb0\xcf\xce\xab\xea\x44\xfa\xd3\xcf\x1f\x8d\x0b\x83\ \x01\x17\x5e\x81\x8e\xbb\x38\x1d\xc8\xff\x2a\x70\x93\xe8\xa8\xce\ \xb0\x1d\xfd\xf7\x72\xe7\xfd\xc7\x0f\x36\x89\x66\x8d\x1b\xa8\x03\ \x14\x48\x67\x52\xb6\xc5\x84\xf2\xce\xba\x31\xc0\x64\x98\xbf\x02\ \x0c\x00\x1b\xf1\x22\x0e\xec\x56\xbf\x69\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x97\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x39\x49\x44\x41\x54\x78\xda\x94\ \x53\x3d\x68\x53\x51\x14\xfe\xee\xcf\x7b\x49\xd0\x21\x01\xc1\xc1\ \xe2\x22\x0a\x0e\x0e\x8e\x4e\x82\xe8\xaa\x08\x05\xa3\x56\xbb\x68\ \xc5\x41\xd0\x82\xbf\xe0\xa0\x74\xb3\x18\x87\x0e\xd5\x0e\x69\xab\ \x09\x22\x4a\x1b\x68\x51\xa8\x8b\x83\x3a\x0a\x22\xd4\xcd\x22\x4a\ \xe9\xa0\x29\xd2\x34\xe6\xbd\xfb\xe3\xb9\x37\xef\x25\x71\x30\xe0\ \x25\x87\x7c\xef\xbc\xef\x9c\xf3\x9d\x73\xcf\x63\xd6\x5a\x54\x2b\ \x4f\xea\x30\x2a\x0f\xc2\x80\xb3\x7e\x87\xd1\x8f\x8c\xcb\xf5\x53\ \xa7\x87\x0a\xd2\xfb\x28\xb8\x70\xe0\x2c\xb8\x8d\xdd\xeb\xbe\xc7\ \xa5\x37\x2c\x40\xfd\xfd\x6c\xde\x3d\xcb\x76\x4e\x8b\x9f\x0d\x85\ \xd7\xcb\xeb\xe0\x84\xd9\x3f\xb2\x38\x81\x86\xd8\x87\xf7\x16\x3c\ \xaf\x9b\x80\x71\xac\x46\x21\x76\xee\x28\x78\x05\xac\x4f\x75\x67\ \x8e\x3b\x40\x31\x9d\x04\x86\xf2\x6d\x2c\xdc\xa6\x16\xac\xef\x8f\ \x25\x74\xd6\x13\x98\xa6\x65\xc4\xd9\x20\x8e\xd9\xbd\xa7\x9b\x40\ \x19\x83\x2b\xa3\x57\xa1\x89\x69\x79\xe0\xb9\xc2\x2a\x08\xdf\x0e\ \x83\x22\xbf\x66\xed\x71\x31\x13\x93\x1f\xa8\xd5\xe6\x7a\x14\x18\ \x8b\x48\x29\x7c\x5b\xfb\x81\xfd\xcf\x8e\x90\x46\x81\x8f\xa3\x4b\ \x58\x7a\xb9\x88\x95\x95\x2f\x18\xb9\x78\x09\xfb\x9e\x1e\x02\xbe\ \x73\x7c\xb8\xfc\x0a\x03\xdb\xb7\xf9\x98\x4e\x02\x77\x38\x95\xcd\ \x48\x81\xe5\xe1\xb7\xbe\x6a\x96\x2a\x1d\x3f\x76\xd4\xe3\xd8\x00\ \x9f\xc9\xef\x42\x32\xd1\x6f\xf0\x9e\x21\xf1\xb4\x4b\x37\xf9\x6c\ \x20\xb0\x30\xff\x02\x13\x0f\xc6\x91\x0b\x02\xcc\xd5\x6a\xb8\x5f\ \x2a\x11\x16\x58\x9c\x7f\x8e\x89\xd2\x3d\xe4\x42\x99\x04\xf5\x28\ \x68\xcf\x8e\x23\x90\x12\x67\x4e\x16\xa9\x02\x83\xa6\xb9\x0c\x15\ \x8b\x5e\x81\xd1\x0a\xc3\x27\x06\x7d\x50\x4b\x91\x1c\xe2\x5a\xfb\ \x97\x02\xb7\x58\x02\x41\x18\xe0\x71\xa5\x82\x3b\x63\x63\x1e\xcf\ \x56\xab\xb8\x4b\x38\x97\x11\xb8\xfe\x6e\x0b\xd9\x56\x64\x43\x01\ \x21\x3b\x61\xe9\x0c\xac\xaf\x2a\x49\xc1\xc8\xf9\x73\xe0\xd4\xa4\ \xd6\x1a\x17\x1c\x76\x37\x62\x22\x48\x66\xd0\x68\x6c\x22\xa4\xd6\ \x18\xe7\x9d\x16\x78\xba\xdf\x52\x90\x02\x7a\x39\xf9\x70\x0a\xd7\ \x6e\xdc\x42\x18\x66\x08\x3f\x22\x7c\x13\x82\xfc\xf5\x5f\x9b\x88\ \x34\x3c\x96\x5c\x74\xd7\xcd\x7d\x4c\xe5\x72\xd9\xd2\xb5\xd8\x28\ \x8a\xad\xd6\xc6\x9b\x52\xda\xff\x1b\xf7\xac\x62\x6b\x55\xcb\x9b\ \x8a\x5a\x9e\xeb\x62\x5c\xac\x6f\xa1\xd9\x6c\xbe\x99\x99\x99\x3e\ \x68\x93\xc9\xb8\x1b\x49\x87\x94\x62\x96\x48\xb6\xc9\xea\x13\xf7\ \x6b\xb2\x99\x7e\xdb\x76\x11\xce\xe3\xff\x0e\x49\xb2\x9f\xfe\x08\ \x30\x00\xf7\x13\x02\x3f\xed\xa4\x69\xec\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x18\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xba\x49\x44\x41\x54\x78\xda\x94\ \x92\x5f\x48\x53\x51\x1c\xc7\xbf\xe7\xfe\xd9\xe6\xa6\x53\x57\x6b\ \xb5\xa9\x31\x2c\x65\x99\x86\x69\xe8\x50\x8c\xd4\xca\x44\x22\x7a\ \x08\x5f\x2a\xc8\x9e\x12\xcd\x46\x41\x04\x9a\x21\x54\x0f\xa2\x42\ \xfa\xd2\xa3\x2f\x92\x50\x10\x81\x50\x4c\x46\x51\xd4\x6c\x0e\xff\ \xd0\x10\x1f\xda\x9c\xff\x57\x56\x6a\x53\xb7\xdd\xdd\xdb\xd9\x4a\ \xb9\x4a\x04\xfd\xe0\x5c\xee\x3d\xe7\xfb\xfd\x9c\xdf\xf9\xde\x43\ \x20\xab\xe1\x9e\x13\x6d\x52\x54\xb8\x09\x29\xaa\xda\x9a\x24\xec\ \x06\x61\xb9\xf6\x82\x7a\x47\x33\x76\x94\x24\x49\x20\x9b\x1f\xce\ \xae\xb2\xd9\xdd\xe6\x43\x46\xb3\xb5\x1a\x44\x6f\x8a\xad\x52\x33\ \x81\x14\x98\x85\xf7\xc3\x00\xbe\x7a\x3d\x73\x45\x4d\x6f\x4c\x7f\ \x05\xbc\xef\x3c\x3e\x6b\x3e\x56\x6e\x4c\xcc\xa9\xc2\x23\x67\x0a\ \x86\xe6\xd5\xe0\x79\x02\x8e\x63\x60\x35\xad\xa3\x2e\x6f\x09\xcb\ \x63\x03\xf0\xb9\x1c\x73\xd6\x1b\xaf\x4d\x72\x00\xf3\xb6\xb3\xa2\ \x4d\x97\x91\x65\xd4\x58\xca\x51\xf7\x7c\x0f\xd2\xf4\x7b\xd1\x71\ \x6e\x1f\x5a\xab\x0c\xb8\x5a\x9c\x02\x46\xb5\x0b\x77\x9c\x66\xa4\ \x1c\xae\x80\x2e\xfd\xa0\x31\xa6\x97\x77\xc1\x44\x22\xc2\xad\x03\ \x85\x65\xe8\x76\xea\x50\x93\xab\x43\x65\xb6\x06\x6b\xb4\xfb\x33\ \x0d\x1d\x58\x23\x0c\x78\x25\x03\xb5\x9a\x43\xbf\x2f\x1d\x99\x05\ \x65\x88\xe9\xb7\x01\x24\x51\x54\x32\x3a\x2d\x86\x02\xc9\x28\x4c\ \x4f\xc0\xf7\x08\xa1\x46\x16\x6a\x95\x12\x91\xf8\xe0\x91\xaa\xe5\ \x31\x11\x36\x80\x4d\xd5\x42\xa4\x7a\x39\x80\x13\x44\x1a\x83\xb0\ \x0e\x85\x82\x05\x58\x06\xd5\xd7\xda\x91\x40\x8d\x4a\x9e\x43\xcb\ \xed\x2e\x84\x36\x42\xb0\xdd\xb7\x21\x44\x7e\xeb\xe2\x7a\x39\x40\ \x14\x19\xba\x20\xd0\xc0\x58\xf8\x97\x23\xe8\x79\x78\x1d\x61\x0a\ \x88\x99\xef\x76\x37\x21\x1a\x05\x82\x3f\x45\xf0\x91\x98\x2e\x42\ \x3b\xd8\x01\x88\x4a\x24\x1c\x0e\x2c\x2a\x8a\xf5\x0b\x18\x9d\x57\ \x20\x59\x4b\x20\x84\x10\xdf\x39\x66\x66\xa8\x4f\xa4\x0f\x0b\xef\ \xc7\x7a\x60\x11\x61\x81\xac\x6e\xcb\x60\x66\x29\xd4\x3b\x3e\xe4\ \xc6\x95\xfd\x6e\x2c\x04\x05\xf8\x57\x80\xb5\x8d\x28\x6c\x0f\x6c\ \x74\x67\x09\x2b\x41\x20\x2a\x00\x95\x70\x60\xd4\xe9\x86\x46\xc5\ \x24\xc9\x01\xb1\x7e\x8c\x4f\x5b\xca\x47\x8e\x1c\xcd\xd2\x9b\x72\ \xf2\xf1\xe4\x47\x09\x26\x91\x0d\x8d\x9a\x05\xa7\x20\xb0\x30\x5e\ \x9c\x24\x76\x78\x87\x87\x31\xed\x5f\xc2\xa9\xd3\x06\xbc\xb3\x7b\ \x50\xda\xe4\x20\xf2\x9b\x98\xd7\xdf\x5c\x61\xcf\xc8\xd0\xeb\xf3\ \xf2\x33\x91\x90\x9a\x48\x6f\x89\x18\xe7\x07\xbf\x05\x31\xe2\xfe\ \x8c\xd5\xc5\x19\x54\x95\xa4\x01\x96\x5a\x60\x79\x10\x4e\xfb\x27\ \x14\x35\xd8\x09\xf7\x07\x30\x76\xa1\x6d\xb0\xb2\xab\xbe\xb4\xd1\ \x37\xf5\xe5\x22\x45\x2b\xa4\xcd\xdb\x06\x7a\x66\x8e\x4f\xaa\x4d\ \xf3\x00\x33\xbe\xf8\x9f\x42\xee\x25\x44\xa5\xf1\xad\x23\xc8\xcb\ \x48\x87\x21\x96\x8d\x6c\x8e\x46\x09\xb6\xef\xde\x59\x57\x6d\x86\ \x0b\xd0\x26\x63\x4a\x6d\x7d\x36\x37\x39\x7d\xde\xda\xf8\x8a\xec\ \x04\xfc\xab\x0a\xfa\x5a\x6b\x5c\xb4\x3b\x70\x8c\x88\x97\x1f\x7d\ \x97\x1f\xbf\xf0\xf4\xfe\x0f\x20\x0e\x91\xbd\x4f\xd0\x10\x83\xbf\ \x04\x18\x00\x9a\x2c\x0f\xbc\xca\xeb\xa0\xa7\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xd0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x72\x49\x44\x41\x54\x78\xda\x7c\ \x53\x4b\x4f\x13\x51\x14\xfe\x66\x3a\xcc\x14\xd3\xa2\x94\x34\xf6\ \x41\x81\xa4\x44\x4d\xd4\x8d\x69\x88\x09\x35\x2e\x88\x3b\x5c\xd4\ \x04\x5d\x68\x42\x48\xba\x51\x17\x18\x37\xc6\xb8\x47\xe3\x2f\x90\ \x52\x6d\x75\x85\x98\xf0\xf0\x1f\xf0\x03\x5c\x18\x8a\x7d\x24\x06\ \x89\x85\x94\x02\xb6\x05\x62\xa7\xed\x3c\xbc\xe7\xf6\x1d\xd4\x3b\ \x73\x72\xe7\xde\xf3\xdd\xf3\x9d\xf3\xdd\x33\xc2\xb3\xe7\x2f\xd0\ \x18\xa6\xaa\xaa\xa8\x56\xab\xd0\x6a\x1a\x2a\x95\x0a\x4c\xd3\x14\ \x7c\x43\x3e\xe8\xba\xde\xe5\xa3\x59\x60\x83\x0e\x89\xad\xd3\xec\ \xf1\x0d\xfa\xe0\xf7\xfb\xa1\x19\x1a\x1d\xae\xef\xb3\xd9\x30\x0c\ \x78\x3d\x5e\x8c\x8e\x8e\x72\x5c\xe7\x68\x05\x78\xfd\x72\x2e\x90\ \xcb\xe5\x30\x1e\x1c\xc7\xf5\xb1\x31\xb6\x23\x80\x93\x30\xbc\x69\ \x98\x08\xde\x08\xa2\xd7\xaa\x40\x2d\xab\x78\x1f\x7f\x1b\x68\x9e\ \x13\xa8\x04\xc3\x34\x96\xd5\xdf\x6a\xa8\x9e\x66\x8d\x33\x9e\x9c\ \x1c\x7d\xba\x70\xe9\xe2\xdd\xfc\x5e\x1e\xb2\xdc\xb3\x24\x59\x7a\ \xa6\x28\x75\xf2\x35\x6c\x85\x11\xdc\x91\x18\x0f\x4c\xdd\x0c\x4d\ \xde\x9e\x84\xa3\xbf\x1f\xc9\x64\x12\xe9\x74\x1a\x5b\x5b\x3f\xa6\ \x28\x5f\x2a\xa1\xcf\x7e\x16\x13\xb7\x26\x30\xd0\xef\x40\x2a\x95\ \x42\x26\x93\x21\x7f\xc8\x62\xb1\x40\x24\x00\x99\xa6\x69\xa8\xd5\ \x6a\x24\x58\xbd\x6e\xdd\x60\x6b\x8d\xaf\x89\x91\x66\xf2\x13\x8e\ \xd6\x6d\x0d\x84\xfa\x07\x45\x93\x24\x89\xcf\x54\xbb\x6e\xe8\x98\ \x99\x99\xc6\x95\xab\x97\x79\x40\x51\xb4\x70\x9f\x28\x8a\x2d\x71\ \xc9\x24\xca\x51\xad\xa8\xf8\xb8\xb8\xc4\x18\xaa\xa4\x07\xc0\xde\ \x52\xb1\x18\x65\xac\x61\xca\xe4\xf0\xd7\x41\x74\x6d\x75\x35\x4c\ \x02\x12\x3b\xdd\x04\x05\x62\x47\x17\x25\x4d\xd3\xf1\xf4\xc9\x2c\ \x6c\x7d\x76\x14\x0b\x45\x14\x0a\x05\x94\x4a\x25\x44\x22\xd1\x70\ \x93\xd1\xe1\x18\x08\x3f\x7e\xf4\x10\xf6\x0e\xcc\xf1\xf1\x11\x62\ \xb1\x0f\xf7\x24\xba\xa7\xaf\x1b\x9b\x70\xbb\xcf\x63\x37\xbb\x8b\ \xed\x9f\xdb\xc8\x66\xb3\xbc\x9c\x58\x2c\x8e\xfd\xfd\x7d\x38\x9d\ \x4e\x6c\x24\x36\xe1\x72\xb5\x31\x3b\x3b\x59\x5e\x2a\x2f\x48\x68\ \xe8\xc0\x37\x18\x63\xdd\xba\x35\x69\xdd\x7b\x03\x23\x08\x62\x3b\ \x40\x67\x37\x36\xef\x99\x37\xd7\xab\xb9\x40\xfc\x5d\x34\xf0\x57\ \x0c\xd3\x8a\x8b\x48\x51\x46\x86\x06\xa1\x58\xcf\x40\x91\x65\x78\ \x3c\x2e\x54\x2b\xd7\xf0\x66\x7e\x01\xf7\x1f\x4c\x7f\x19\x1e\x19\ \xe6\xff\xc5\x08\xfb\x27\x14\x6b\x6f\x17\x66\x3e\xb2\x00\x89\x52\ \x5c\x5e\xf9\x0c\xb7\xd7\x8b\xc3\x83\x43\xec\xe5\x73\xc8\xb3\x96\ \x96\x65\xa5\x95\x72\x1d\xb3\x76\x0a\xa3\x28\x56\x48\xe5\x72\x79\ \x9d\x35\xc7\xcd\x6f\x89\x04\x6f\x16\x4d\xd7\x60\xb3\xd9\x59\x2b\ \x9f\xac\xcb\x8c\x8d\xd2\xfc\x1f\x86\xd4\xf1\x33\x3b\x87\xd3\xa3\ \xc8\xec\x7b\xe3\xfb\x9f\x98\x3f\x02\x0c\x00\x58\x5c\x83\xfd\xe3\ \x8f\x3f\x5b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x1e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xc0\x49\x44\x41\x54\x78\xda\xd4\ \x93\xbf\x4b\x5b\x51\x14\xc7\xbf\xf7\xe6\xe5\x99\x98\x97\x9b\x17\ \x49\x6c\xb6\x0e\x15\x83\xb8\xb6\x42\x1d\xa4\x88\x94\x40\x41\xb0\ \xff\x80\xd4\xd6\xb5\xa0\xa3\xb6\x5b\xa9\x83\x9a\xad\x5b\x1d\x3a\ \x67\x10\x5c\x54\x3a\x94\x0e\x5a\x50\x11\x47\x2b\x16\x4a\x37\xf1\ \x57\x62\x12\x1b\x7d\x3f\x6e\xcf\xb9\x49\xea\x1f\xe0\x20\x5e\xf8\ \x70\xce\x3d\xef\x9d\x1f\xf7\x7b\xdf\x13\x5a\x6b\xdc\x66\x49\xdc\ \x72\xdd\x7d\x01\xeb\xf9\xc7\xaf\xe7\xa1\xd6\xae\x14\x62\x59\x48\ \xf1\x52\x87\x7a\x3f\x00\xf2\xa1\x1d\x2b\xd7\xdd\x6c\xba\x38\xd9\ \x87\xbf\x40\xc1\x07\x56\x42\x20\xda\xea\xea\x11\xa3\xc4\x9a\xe4\ \xe4\x85\x57\x4f\x41\x76\x8c\x05\x25\x9b\x9f\x9f\x18\xc4\x95\x65\ \xbb\x9f\x28\xf9\x1a\x18\xa1\x9c\xd5\x81\xf7\xef\xa2\x2f\x4a\x25\ \x30\xec\x0b\x81\x55\x2a\x58\x10\x23\x1f\xd6\x75\x24\x93\x45\x70\ \x72\x0c\x49\x63\x84\x54\x41\x76\xe7\x50\x6d\x78\x58\x7c\xfb\x58\ \x54\x80\xcb\x27\x6f\x5e\xc7\x13\x27\x47\xf0\x0e\x0f\xcc\xd8\xd1\ \x9e\x5e\xd4\x33\x0f\xb0\xf5\x79\xc9\x93\x82\x02\x6e\x32\x01\xb6\ \x6d\x52\xb4\x67\x87\x2f\x98\x88\xab\x3f\xfb\xf0\x77\x7f\x00\xd5\ \x53\x03\xfb\x1c\xe3\x23\x59\xfc\x4a\xd2\xe9\xc4\x19\x59\x6d\xd2\ \x9b\x7b\x1c\x97\x6f\x94\xae\x97\x61\x65\xd2\x9c\xf0\x5f\x79\x8e\ \x19\x11\xb9\x8b\x4a\x24\x4c\x37\xa1\xb5\xb1\xca\xa1\x09\xb4\x6e\ \x4f\xd4\xa8\x78\x7e\x2c\x95\x49\x21\x08\x9b\x25\x22\x52\xa2\x52\ \xae\xf1\x33\xdf\x5c\xa3\x52\x4e\xb3\xb4\x10\xc6\xa4\x92\x0e\x64\ \xe8\x1b\xc9\x37\x80\xa9\x9d\xad\x9f\xa8\x05\x01\xec\x9c\x6b\x60\ \x9f\x63\x9b\xf4\x4c\x3c\x9b\x2d\x7d\x8f\x76\xaa\x21\xef\xf2\xe2\ \x5b\x87\xe3\x0e\x07\xd7\x8d\xdf\xb0\xec\x87\xbe\x65\x57\xeb\x5d\ \x39\xb5\x3d\xd9\xa7\x66\x80\xf1\x41\xa0\xc8\x13\xb7\x4e\xe1\x53\ \xe1\xe9\x39\xe0\x0b\xb7\x7c\xc4\x3a\x12\x7c\xa8\x5f\x44\x3f\x11\ \x23\xe8\x73\xc0\x5e\x2b\x41\x11\x3d\x2d\x8d\xd1\xd4\x16\x87\xc4\ \x85\xb8\xff\x3f\xd3\x3f\x01\x06\x00\x98\x1a\xa9\x0b\xff\x03\xc1\ \x8b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xfe\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xa0\x49\x44\x41\x54\x78\xda\x62\ \xf8\xff\xff\x3f\x03\x08\xa3\x83\x6d\x3b\x76\xfd\x61\xc0\x03\x60\ \xfa\x98\x70\x29\x90\x96\x94\x64\x5e\xbd\x76\xfd\x2b\x06\x02\x00\ \x6e\xc0\xd6\xed\x3b\x2f\x23\x4b\xb0\xb2\xb1\x31\x88\x8a\x0a\x8b\ \x12\x6d\x80\x9c\xac\xb4\xce\x8d\x9b\xb7\x5e\xc3\xf8\xbf\x7f\xff\ \x66\xf8\xf5\xf3\x37\x03\xd1\x06\x1c\x3c\x70\x68\x9e\xb0\xa0\xa0\ \xc8\x95\xab\xd7\x1f\x83\xf8\x3f\x7f\xfe\x64\xe0\xe6\xe1\x26\x68\ \x00\x03\x52\x20\x4a\x2f\x5d\xb1\xea\xed\xeb\xd7\xaf\xff\x5f\xbc\ \x78\xe9\xf2\xe1\xc3\x47\xfe\x1f\x3b\x76\xfc\x3f\x29\x81\xf8\x34\ \x3a\x22\xcc\x69\xc3\x86\x8d\xbb\xe4\x64\xa4\x74\x9e\x7e\xfc\xc9\ \xc0\xc5\xc6\x4c\x92\x0b\x60\x40\x69\xe1\xec\x19\xdb\x64\x6b\x2e\ \xff\x8f\xeb\xde\x49\xd0\x05\x8c\x30\xcd\x8c\x8c\x8c\xc8\xf2\x8a\ \x19\x9d\xab\xef\xa9\xf1\x7c\x66\xd8\xcf\xe6\xc4\xb0\x39\x55\x81\ \x11\x9b\x01\x20\xc0\x82\xc3\x82\xfb\xac\xec\x1c\x0c\x8f\xef\x1c\ \xab\x7b\xc0\xa1\x60\x61\xd1\x7a\xe6\x3f\xf3\xbf\xdf\xcf\x19\xfe\ \xfe\xfe\xc8\xf8\xef\x8f\xc6\x91\x26\x27\x46\x9c\x5e\x30\xef\xbc\ \xac\x66\xd6\x7e\xe1\xbf\x69\xd3\x49\x90\xa0\x30\xc8\x35\x66\xe5\ \xdb\xf6\x5a\xd5\xed\x07\x45\xb1\xb6\x41\xe2\xe4\x6e\xbb\xca\x6d\ \x8f\x71\xa6\x44\xa6\xbf\x7f\x76\x7d\xba\xba\xb7\x88\xfd\xef\x77\ \x10\xf7\x2d\xc8\x35\xa7\x3a\xbd\xd2\x18\xfe\xfe\xfa\x65\x5b\xbd\ \xab\xe5\xc2\xfc\xdc\x6e\xc6\x3f\xbf\x84\x31\xd2\x01\x0c\x30\xfe\ \xfb\x25\x7f\x63\x49\xf1\x7c\xc6\x3f\x3f\x91\x85\xef\x1e\x6b\x75\ \xf7\xf8\xfb\xed\x3d\xa3\x7d\xf9\x86\x97\x7f\xbe\xbf\x3f\x81\xd3\ \x0b\x36\x0d\x07\xc1\x1c\xfb\xf2\x4d\xd8\x62\x40\x11\x88\x8d\x81\ \x58\x19\xa6\x0f\x23\x10\x19\x7f\xff\x00\x6a\xde\xf0\xff\xd3\xc3\ \x4b\xad\xd8\x02\x17\x8a\x11\xea\xb1\x44\xa3\x31\x94\x7e\x08\xc4\ \x6f\xf0\xa5\x03\x10\x00\x08\x30\x00\xff\x88\xe4\x2f\x59\xee\x0a\ \x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x10\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\xb2\x49\x44\x41\x54\x78\xda\x94\ \x93\x5f\x48\x53\x51\x1c\xc7\xbf\xe7\xde\x3b\x37\x37\x9d\xb9\x9c\ \xca\xa6\x8b\x61\x0a\xab\x94\xc2\x44\x56\x61\xe8\x7c\x90\x90\x82\ \x1e\xc2\x97\x0c\xf4\xa1\x07\x49\x0a\xea\xa5\x90\x0a\xe9\x4d\x70\ \x50\xbd\xd4\x9b\x2f\x52\x50\x10\x81\x50\x28\x52\x48\x3a\x5b\xa3\ \x94\xa4\x7a\x68\x33\x9d\x36\x97\xd2\x76\x9d\xfb\x77\xef\xb9\x9d\ \x3b\x54\xee\x24\x82\x7e\x70\xb8\xf7\x9e\xf3\xfd\x7d\x7e\x7f\xee\ \xef\x10\x68\xec\xc3\xc3\xd6\x41\x45\x96\xae\x43\x91\x0d\xbb\x9b\ \x84\x4f\x11\x5e\x18\x6a\xec\x9b\x1c\xc0\x1e\x53\x14\x05\x64\xe7\ \xc3\xe7\x6d\x09\x97\x39\x0f\xd9\x9c\xee\x33\x20\x56\xbb\x7a\xca\ \x9c\x09\x94\xb5\x30\x82\x33\x63\xf8\x15\x5c\x58\x69\xbe\xfa\xd6\ \xfe\x57\xc0\xf4\xf0\xe9\xb0\xb3\xa9\xcd\x56\x74\xb8\x03\xf7\x67\ \x4a\xe0\x5b\x35\x42\xa7\x23\x10\x74\x3c\x4e\xd8\x93\xe8\x6d\x58\ \x47\x6c\x6e\x0c\x21\xff\xe4\x8a\xfb\xda\x1b\xbb\x16\xc0\x4d\x0d\ \x7b\x06\x2d\x8e\x3a\x9b\xc9\xd5\x86\xde\x17\xe5\xb0\x5b\x2b\x31\ \x74\xae\x12\xb7\xda\xcb\xd0\xd3\x64\x06\xd1\xef\xc7\x4d\x9f\x13\ \xfb\x8e\x78\x60\xa9\xae\xb5\xa9\x7a\x6d\x16\x5c\x36\x2b\xdd\x38\ \x78\xbc\x05\x0f\x7c\x16\x74\xd6\x97\xa2\xad\xd6\x88\xdf\x69\x09\ \xd1\x94\x84\x98\x24\x83\x2f\x00\x8c\x85\x02\x9e\x84\xaa\x51\xd3\ \xd8\x02\x55\x9f\x07\x50\x28\xd5\x73\x16\x33\x66\x23\x25\x38\x6a\ \x37\x20\x92\x90\xb0\x91\xa6\x88\xcb\x80\xc8\x2a\xdc\xe2\x08\xcc\ \x45\x3c\xbe\x66\x2a\xc0\x97\x9a\x41\x99\x5e\x0b\x10\x24\xca\xda\ \x20\x25\xa1\x2b\xe0\x40\xa1\x30\x67\x19\x22\x73\xde\x62\xce\x29\ \x9e\x83\xc9\x04\x64\x65\x02\x89\x17\x72\xba\x9c\x5e\x0b\xa0\x94\ \x63\x07\x12\x04\x41\x40\x58\xa4\xd8\xa2\x14\x9b\x6a\x64\xe6\x6c\ \x28\xe4\x73\x8d\x4c\xa7\x55\xa0\x0a\xc8\xb2\x0c\xf2\x01\x9c\xac\ \x90\x4c\x66\x2d\x02\x77\xf9\x4f\xcc\xaf\x65\x10\x4d\x52\x96\x05\ \xeb\x2e\xd3\xa9\xce\x7a\xbd\x00\xa2\x13\xe0\xd2\xfd\x40\x92\xe9\ \x32\x12\x11\xf3\x00\xcb\xeb\xe9\x91\xf9\xd9\x00\x7a\x0e\x04\x58\ \xfd\x32\x96\x36\x39\x64\xa9\xba\x48\x2e\xb2\x98\x04\x64\x09\x68\ \xc7\x24\x3e\xf9\x02\x30\x19\xb8\xe2\x3c\xc0\x65\xef\xbb\xdb\x8b\ \xc1\xd5\xe8\xea\xdc\x0c\xee\x39\x9f\xa1\x4e\xbf\x84\x58\x56\x8f\ \x78\x5a\x8f\x8d\x94\x80\xf2\x44\x10\xdd\x99\xc7\x6c\x06\xa6\x11\ \x8f\x67\xe1\xe9\x74\x61\xca\xdb\xaa\xec\x0e\xea\xf6\xb3\xe1\xe9\ \x80\x67\xdc\xe1\xb0\x5a\x1b\x8e\xd5\xa0\xb0\xb4\x88\x4d\x09\xcd\ \x1d\x27\x36\x12\xf8\x18\xf8\x0e\x31\xb2\x8c\x8e\x93\x55\x80\xab\ \x0b\x88\x4d\xc0\x37\xfe\x19\xcd\x57\xc6\x89\xb0\x0d\x98\xbb\x30\ \x38\xd1\xee\xed\x3b\xd5\x1f\x5a\x8c\x5e\x24\x8a\x52\xb0\x13\x82\ \x0d\xab\xc8\x9a\x51\xdc\x55\xb5\x00\x2c\x87\x00\xd6\x5c\xd4\x77\ \x43\x56\xe6\xf3\x32\xd8\x31\x1b\x5b\x15\x6a\x69\x9a\x3d\xf6\x53\ \xc1\x8f\xde\x3d\xeb\xef\x72\xf8\x01\x73\x09\x16\x8d\xee\xe7\x2b\ \xdf\x96\xce\xbb\xfb\x5f\x93\xbd\x80\x7f\x59\xe3\xe8\x9d\x4e\x3f\ \xcb\x0e\x02\x47\xf1\xea\x7d\xe8\xd2\xa3\x97\x0b\x23\xff\x03\xc8\ \x41\x34\xef\x5f\xd8\x65\x4a\xfc\x11\x60\x00\x12\x31\x1e\x31\xb6\ \xa5\x33\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xe4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x86\x49\x44\x41\x54\x78\xda\x8c\ \x53\x4f\x48\x14\x51\x18\xff\xbd\x37\x6f\x76\x1c\xd7\x6d\x57\x05\ \x25\x48\x16\xff\x14\x22\x95\x14\x6b\x1d\x3a\x98\x95\x50\x10\x1a\ \xe9\xa1\xa2\x43\x10\x44\xd4\x21\x89\xca\x43\x76\x09\x44\x41\xa1\ \x53\x87\xe8\x58\x10\x81\x07\x25\x82\x28\x42\x97\x2e\xd1\x9f\x53\ \x51\xa4\x49\x21\x84\x06\x19\xea\xae\xbb\x33\xfb\x66\xe6\xf5\xcd\ \xac\x8e\x96\x08\x7d\xc3\x37\xf3\x3d\x7e\xdf\xfb\x7d\x7f\x87\x25\ \x07\x5e\x60\x55\x5c\x4f\x8d\x4a\xd7\xeb\x54\x4a\x61\xbd\xa8\x0d\ \x16\x03\x67\x0c\xba\xc6\xc7\x44\x08\x11\xe6\x5f\xee\xef\xd8\x47\ \x44\x1e\x08\x0f\xfc\x55\x88\xab\x90\xc2\x57\xc1\x35\xdc\x7a\xf2\ \xa6\x73\x8d\x80\x1e\x87\x2e\x56\x94\x08\x9c\x19\x99\x42\x34\xa2\ \xa1\x54\xd7\x60\x08\x06\x43\xe3\x30\x85\x6f\xf3\xe2\x99\xec\xf3\ \x7b\x2a\x02\x7f\xb1\x3e\x39\x87\x5e\xe5\xa5\x06\x2e\xb6\x6c\x83\ \xa9\xe3\xef\x14\x56\x0c\x8f\x3e\xf9\x82\x42\x85\x19\x21\x02\x05\ \xe1\x81\x17\x01\x52\x49\xf6\xc1\x9a\x08\x69\x15\xfe\x47\x1c\xba\ \x24\x32\xbc\x6c\xa5\x81\xc4\xac\x73\xbc\xea\xa9\x44\xd6\x76\x51\ \xd7\xfb\x05\xae\x9d\x25\xa0\x80\x08\xf3\x30\x34\xad\x23\xc2\x8b\ \xa5\x4a\x8a\x7c\xef\x78\x63\x90\x8d\x78\x34\x7f\x96\x1c\x14\x34\ \x3f\x07\x47\x22\x91\x3a\x8d\x28\xd5\xf6\x79\xb0\x09\x7b\x6f\x7f\ \x87\xb2\x33\xd0\x95\x44\x75\x99\x42\x89\x56\x8c\x6c\x49\x2f\xcc\ \x42\x64\x79\x94\x1c\xa8\x10\x27\xaf\xaa\x76\xb6\x63\x57\xf7\x8d\ \xa2\x53\xc1\xc6\xeb\xbe\x24\x0e\x0d\xff\x84\x26\x33\x28\x37\xf2\ \xf8\xf6\xf5\x47\xd0\x8b\xda\xba\xad\x61\x5f\x84\xab\x18\x98\xe3\ \xa8\xf2\xc6\xc3\x48\x9d\xb8\x8a\xf8\xe5\x99\x00\x9a\x1f\xee\x45\ \x8e\x22\x3d\xbf\x56\x8d\xae\xbb\xbf\x11\x37\x7f\x61\x7f\x73\x32\ \x98\xb7\x25\xdd\x30\x03\x0e\xcf\x51\x99\x58\x03\x52\x9d\x3d\xc8\ \xe6\x2d\xcc\x0e\xc6\x03\x5d\xb6\x6c\xb4\x9c\xbc\x8e\x5c\x65\x33\ \x1e\x5f\x30\xb1\xc5\x30\x30\x35\x39\x47\x3a\x8b\x98\x2e\xd6\x4a\ \x38\x35\xf4\x21\x35\xfa\xe0\xdc\x3b\x69\x5b\x98\x7a\x7a\x07\xf3\ \x9f\xc6\x03\xa0\xb2\xa9\x0d\x0d\xc7\xae\x20\x51\xdf\x8a\xee\x81\ \x71\x3c\x9b\x5c\xc4\x81\xdd\x35\xc1\x42\x79\x9e\x17\x6e\xa4\x18\ \x7b\x38\xf4\xde\x91\x79\xea\x9f\xc4\xcc\xc7\x34\x5a\x5a\xb7\x07\ \xd0\xdb\x74\x1a\xb5\xed\x97\xc0\x5c\x3b\x38\x1f\xdd\x11\xdf\x30\ \x46\x5d\x23\x02\x45\x97\xe1\xba\x44\xe0\x20\xe7\x69\xc4\xc9\x02\ \xd0\xb7\x3d\xc7\x81\xa9\x29\xb0\xbe\x97\x30\x50\xa0\x7a\xd5\x6a\ \x60\xe8\x9c\xc1\x94\xd9\xb4\xf0\x5c\x87\xe6\x49\x69\x49\x0b\xcb\ \xb4\x0c\x1a\x8d\xcc\x17\xdf\x76\x65\x81\xfe\x09\xf2\xee\x3f\x92\ \xb2\xff\x89\x4e\x61\xb1\x04\x2c\xb0\x91\xfb\x37\xb1\xb8\x94\x9b\ \x88\xc5\xa2\xad\x60\x82\x62\xf0\x95\x20\x54\x27\x91\x59\xd9\xcc\ \x44\x32\x21\xda\xba\x66\x3b\x60\x72\x67\x2d\x8b\xb0\x0b\x45\xa9\ \x27\x4d\x6c\xb2\xb1\x0b\xa4\xd3\x9b\xad\xf3\x1f\x01\x06\x00\x63\ \x9b\x1b\xc5\x8b\xdc\x60\x23\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\xf8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x02\x9a\x49\x44\x41\x54\x78\xda\x7c\ \x93\x5b\x48\x14\x51\x1c\xc6\xbf\xb3\x33\xe3\xce\xe8\x6e\x5e\x58\ \xd7\x34\x9f\x0c\x1f\x7c\x49\xc2\x5e\xca\xb2\xe8\x22\xf5\x1c\x06\ \x95\x41\xd2\x4b\xbd\x44\x50\xf4\x14\x3d\x68\x81\x41\xbd\xd5\x43\ \x98\x08\x25\x84\x22\xa5\xf4\x10\x42\x84\xb6\xac\x41\xb0\xde\x5d\ \xbc\xe0\x65\x2b\x57\xf7\xd2\xae\xbb\xee\xcc\xac\xb3\xb3\x73\x3a\ \xcb\xde\x7a\x70\xfb\xc3\xe1\x0c\xff\x99\xef\x37\xdf\x39\xe7\x3b\ \x04\xff\xa9\x9b\xaf\xe7\xdb\x93\xba\xde\x9b\x34\x68\x11\x40\x33\ \x5d\x02\xce\x44\x34\x9e\x23\xb7\xfa\x6e\x37\xf6\x93\x42\xe2\xab\ \xbd\x1b\x97\x6b\x24\x6d\xe8\x4a\x73\x2d\x0e\x55\x4a\xd0\x8d\x74\ \x9f\x37\x01\xde\xa0\x8a\x41\x87\x07\xfe\x88\x72\x23\x07\xb8\x7f\ \xba\xbc\x4e\x10\xc9\x72\x8d\x5d\xe4\x62\xe1\x30\x5c\x67\xbf\xe1\ \xd1\xb5\x26\xa6\x20\x88\x25\xd8\xff\x33\x06\x08\x53\x70\x0c\x22\ \x26\x75\x3c\x1b\x98\x04\x9f\x05\x24\x28\x5d\x6e\x3e\x56\xc5\x59\ \xac\x76\x44\x03\x11\x38\x4d\x12\x2a\x4a\x09\x7e\xef\x00\x66\x53\ \xde\x99\xc1\x40\x5a\x12\xb0\x95\xf3\xcc\x95\x9e\x07\x14\x09\x84\ \x4b\xe8\x02\x0c\x62\x45\xaa\xad\xed\x69\x00\x13\x4a\x02\x9b\xb2\ \x3e\x53\x62\xb6\x94\x62\xa6\x22\x1c\xa0\xeb\xff\x00\x14\x75\x0f\ \xf5\x4d\x27\x51\x5c\x52\x8a\x6a\x9b\x84\xb7\x63\x2a\x7c\x21\x03\ \x15\x07\x4c\x48\x1a\x69\xb1\xc1\x66\xb6\x9b\x10\x19\x34\x10\x4a\ \xb0\xed\x34\x90\x33\xa7\x46\xd5\xc0\xd1\x0b\x2d\xa8\xae\xb5\x23\ \x22\xab\x68\xb3\x39\xf0\x72\x64\x16\x9e\xed\x18\x2c\x66\xc0\x2a\ \x01\xe5\x16\xa0\xaa\x14\xd8\xfa\x23\xa3\xe7\xd3\x14\x82\xab\xae\ \xc7\x39\x07\xee\x44\x59\xdb\xaf\xc9\x99\x31\xc2\x99\x11\x8d\x28\ \xa8\x8f\xcf\x63\x64\x6e\xb7\x6f\xe2\xe0\xf5\x8e\x53\x75\x0d\xe8\ \x1e\x9e\x47\x28\x1a\xc7\xc2\x46\x10\x02\x3b\xc6\x88\x67\xf6\x89\ \xf3\xcd\xc3\x57\x39\x80\x74\x67\xda\x37\xbe\x39\x14\xa8\x23\xcb\ \x95\x9b\x5b\x3e\x7c\xdf\xac\xf8\x19\xac\x6c\x11\x3b\x2e\x35\xa0\ \x6b\xd0\x85\xd1\xd1\xaf\x4f\x63\x5b\x2b\x6e\xf7\xe7\x9e\xa5\xf4\ \x82\xb0\xc1\x46\x88\xb4\xbe\x58\xb0\x6a\x94\x73\xb4\x1e\xb1\x37\ \x5e\xb4\x8e\x43\x5e\xfc\x80\xb5\xd5\x75\x04\x2d\x27\x30\xac\x9e\ \x47\x99\xc8\xbe\x9c\x76\xdc\x9d\x1b\xe8\x7a\x9f\xda\xaa\xcc\xc8\ \xd7\xb9\xee\x69\xea\x5c\x89\xd2\x49\xaf\x46\xfd\x71\x4a\x0d\x83\ \xd2\x98\xac\x50\xb7\x37\x42\xfb\x7f\xf8\xe9\x17\x77\x98\x1e\xef\ \x9c\x52\x0a\x05\x8e\xb7\x08\x14\x6a\x82\x62\x64\x46\x81\xc0\x8e\ \xa6\xf3\x0c\x3b\x4a\x4d\x41\xff\x9c\x00\x4a\x44\xd4\xb2\x2c\xc4\ \x62\xb2\x54\x10\xb0\x1d\xdc\xc5\x8a\x7f\x0f\x81\x80\x8a\x04\x0b\ \x48\xfb\xbb\x7c\x64\x79\x96\xc2\x25\xb3\x08\x59\x2e\x68\x00\xbc\ \xc7\xbb\x83\x89\xa5\x10\x6c\x65\x25\xe9\xb8\xe6\xef\x0c\x8b\x2d\ \x81\x73\x31\x0c\x55\x8e\x17\x06\xc8\x6b\x8e\x7b\x1f\x65\xe5\x39\ \xa5\x94\xcf\xe6\x3d\x5b\x24\x0d\xd1\x89\xcf\xf5\xa0\x10\x20\x15\ \x52\x16\x0d\x1c\xce\x3c\xef\x57\x29\xec\x2a\x1b\x91\xfd\x5e\xfe\ \x15\x60\x00\xaf\xb5\x22\xae\xfb\xd5\x67\xa7\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x4c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ \x79\x71\xc9\x65\x3c\x00\x00\x01\xee\x49\x44\x41\x54\x78\xda\xc4\ \x93\xbd\x6b\x14\x41\x18\x87\x9f\xd9\x9d\x0d\xd1\x4e\x10\x41\x03\ \x41\x92\x88\x90\xb3\x90\x28\x82\x06\x8d\x82\xd8\x88\x82\xad\x8d\ \xe9\x04\x11\x11\x6c\x2d\xfc\x07\x6c\x45\x4b\x1b\x05\x11\x25\x7e\ \x04\x03\x01\x0b\x8d\xe9\x2c\x24\x11\x22\x97\xa0\x60\xf0\x23\x70\ \x77\x5e\x6e\xf7\xf6\x66\x67\x77\x7c\x67\x2f\xc1\x60\x23\x21\x85\ \xc3\xce\xcc\x7e\xfc\x9e\xf7\xfd\xcd\xbb\x33\xca\x39\xc7\x56\x5a\ \xc0\x16\x9b\x3e\x7b\xf3\x11\x26\xcb\xe7\x8c\xcd\x2b\x8e\x35\x37\ \xeb\xa6\x54\x79\xe1\x4d\xba\xee\x63\x39\x04\x32\x44\x3a\x9c\xef\ \x89\xc2\x03\xda\xc3\x57\xce\x8f\x54\x2e\x8c\xee\xdf\x54\xe6\xa7\ \x33\x0b\x95\x3b\xcf\xde\xcf\x05\x99\x2d\x4a\xf8\xf3\x4a\xca\x91\ \xab\x05\x6a\x2f\x1c\xbd\x56\xf0\xa3\x15\xa3\x06\x25\xe1\x3e\x38\ \x7e\x3d\xe7\x5b\x33\xe6\x98\xbc\x57\x7b\x28\xb5\x9e\xf1\x6c\xe0\ \x6d\x9b\x02\x62\x63\x88\xc2\x82\xef\xf3\x8d\x72\x2e\x5c\x06\xbd\ \x90\x7c\xaa\xf3\x76\x2a\x44\x29\xc3\xec\x64\xc0\xe2\x87\x06\xb5\ \xd8\xd0\xb1\x7e\x59\x8e\xc0\xaf\x2b\xe9\xe4\xb4\xb3\x8c\x77\xaf\ \x34\x26\x37\xbc\x99\xd2\xa4\xf2\x4c\x04\xdb\x0f\xed\xa0\xa7\x5f\ \x34\x99\x10\x21\x34\x13\x4b\xb3\x6d\x69\x09\xe3\xd9\x40\x29\x45\ \x62\x72\xe2\x4e\x17\xe8\x3f\xb1\x4b\x4a\x0b\xad\x34\x2b\x2b\x57\ \x9d\x5e\xc6\x2c\xc3\x2f\x01\x3d\x91\x48\xe0\xb6\xb1\xd2\x25\x80\ \xb0\x12\x40\xc4\xed\xbc\x2b\x10\x66\xe6\xc9\x17\x90\xdb\x5a\x2c\ \x43\x0e\x43\x63\x7d\x8c\x8c\xa5\xd4\x56\x2d\x07\x4f\xa5\x8c\x9e\ \xd9\x5d\xba\x8b\xbd\x03\x61\xb5\x92\xb0\x2d\xc9\x5e\x8f\x33\x1e\ \x3f\x58\x64\xa5\xe9\x98\x78\x58\xa5\x11\xc3\x0b\x99\xbd\xc8\x4a\ \xa0\x66\x0a\xb7\x2e\x7f\xa5\x7e\x51\xb3\x9a\x3a\xa9\x59\x86\x67\ \xb5\x2f\x82\x0e\x02\x52\xb1\x34\x3e\x3e\x54\x2e\xa3\xfb\xc3\x37\ \xcc\x1b\x37\xab\xb8\xbc\x7b\xaf\x2a\x99\x83\xb2\x80\x9a\xc2\x2e\ \x4d\xce\x2e\x0c\x9c\x3c\x3c\xc8\xeb\x97\x3f\x25\x98\xfb\x03\xfe\ \xdd\xe4\x93\x2d\x14\xbd\xd1\x4e\x84\xc1\xb3\x5e\x3a\x7c\xfa\xc6\ \xfd\xe7\x4a\x47\x03\x5e\xa1\xfe\xb1\x81\xdc\x9a\x35\x67\xb3\xa5\ \xe9\xdb\x97\xce\xad\xeb\x87\xa5\x6f\xdb\xe4\x31\x68\x4b\xff\xa8\ \xfe\xfb\x69\xfc\x2d\xc0\x00\x0f\x26\xec\x85\x9a\x9c\xfa\x0a\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ " qt_resource_name = b"\ \x00\x06\ \x06\x7a\xb0\x5e\ \x00\x61\ \x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x04\ \x00\x06\xfa\x5e\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\ \x00\x04\ \x00\x07\x28\x47\ \x00\x6c\ \x00\x61\x00\x6e\x00\x67\ \x00\x05\ \x00\x73\xba\xf1\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\ \x00\x05\ \x00\x70\x75\x7d\ \x00\x69\ \x00\x74\x00\x2e\x00\x71\x00\x6d\ \x00\x08\ \x0b\x18\x05\x7d\ \x00\x7a\ \x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x71\x00\x6d\ \x00\x05\ \x00\x6a\x85\x7d\ \x00\x64\ \x00\x65\x00\x2e\x00\x71\x00\x6d\ \x00\x05\ \x00\x6c\x65\x7d\ \x00\x65\ \x00\x73\x00\x2e\x00\x71\x00\x6d\ \x00\x05\ \x00\x6d\x55\x7d\ \x00\x66\ \x00\x72\x00\x2e\x00\x71\x00\x6d\ \x00\x06\ \x06\xc6\x57\x47\ \x00\x65\ \x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x07\x07\x57\x47\ \x00\x69\ \x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x06\xa8\x57\x47\ \x00\x64\ \x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x01\x80\x56\x27\ \x00\x7a\ \x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x06\xd5\x57\x47\ \x00\x66\ \x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x06\xc1\x57\x47\ \x00\x65\ \x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x02\x88\x1b\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x32\x00\x34\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x02\x96\x1b\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x31\x00\x36\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x02\xba\x1b\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x33\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0a\x61\x42\x7f\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x69\x00\x63\x00\x6f\ \x00\x0c\ \x09\xaf\x9f\x07\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x31\x00\x32\x00\x38\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x02\x16\x1b\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x39\x00\x36\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x02\x48\x1b\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x36\x00\x34\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0c\x33\x5a\x87\ \x00\x68\ \x00\x65\x00\x6c\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\x7c\x5a\x07\ \x00\x63\ \x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x02\xac\xfe\x27\ \x00\x65\ \x00\x6c\x00\x73\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0b\xdf\x21\x47\ \x00\x73\ \x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x08\x73\x9b\x07\ \x00\x74\ \x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x07\x69\xd9\x07\ \x00\x72\ \x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x07\xd4\x60\xe7\ \x00\x71\ \x00\x75\x00\x69\x00\x63\x00\x6b\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x59\xfa\xa7\ \x00\x64\ \x00\x72\x00\x61\x00\x77\x00\x5f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x06\x92\xe0\x87\ \x00\x67\ \x00\x6f\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0a\xc3\x58\x07\ \x00\x73\ \x00\x74\x00\x65\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0f\x6e\x4e\xdf\ \x00\x70\ \x00\x79\x00\x74\x00\x68\x00\x6f\x00\x6e\x00\x2e\x00\x69\x00\x63\x00\x6f\ \x00\x09\ \x0b\x85\x83\x07\ \x00\x63\ \x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x07\x64\x02\x27\ \x00\x62\ \x00\x61\x00\x63\x00\x6b\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x05\x79\x4e\x27\ \x00\x73\ \x00\x61\x00\x76\x00\x65\x00\x5f\x00\x61\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x09\xba\x82\x27\ \x00\x64\ \x00\x65\x00\x62\x00\x75\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x08\xfc\xe1\x47\ \x00\x63\ \x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x08\x66\xe5\x27\ \x00\x69\ \x00\x66\x00\x5f\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\xef\x3b\xc7\ \x00\x75\ \x00\x70\x00\x5f\x00\x64\x00\x6f\x00\x75\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x07\xc3\x57\x47\ \x00\x75\ \x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x04\xca\x57\xa7\ \x00\x6e\ \x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x00\x57\xb8\x67\ \x00\x70\ \x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x09\x88\xca\x27\ \x00\x6c\ \x00\x61\x00\x6e\x00\x67\x00\x75\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0d\x6e\x25\x07\ \x00\x63\ \x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x5f\x00\x77\x00\x68\x00\x65\x00\x65\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0c\x59\x5e\x07\ \x00\x69\ \x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x00\x38\x58\x27\ \x00\x74\ \x00\x69\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x03\x67\x59\xa7\ \x00\x70\ \x00\x6c\x00\x6f\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x07\xdd\x5e\x07\ \x00\x75\ \x00\x6e\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x29\x1a\xa7\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x5f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0c\x66\x2c\x47\ \x00\x77\ \x00\x68\x00\x69\x00\x6c\x00\x65\x00\x5f\x00\x6c\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0c\xad\x0f\x07\ \x00\x64\ \x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x05\xae\x97\x87\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x64\x00\x6f\x00\x75\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x09\xbb\x13\x3f\ \x00\x61\ \x00\x6c\x00\x67\x00\x6f\x00\x62\x00\x6f\x00\x78\x00\x2e\x00\x69\x00\x63\x00\x6f\ \x00\x10\ \x03\x37\xf5\x67\ \x00\x72\ \x00\x65\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x5f\x00\x63\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x05\xa8\x5a\x07\ \x00\x63\ \x00\x6f\x00\x64\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\xa6\x82\x67\ \x00\x63\ \x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\xc1\x59\x87\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x04\xb2\x58\xc7\ \x00\x75\ \x00\x6e\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x08\x6c\x02\x07\ \x00\x77\ \x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x5f\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x09\xc1\x57\xa7\ \x00\x72\ \x00\x75\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0a\xf4\xbf\xe3\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x2e\x00\x71\x00\x72\x00\x63\ \x00\x0f\ \x04\x1b\x11\x67\ \x00\x64\ \x00\x72\x00\x61\x00\x77\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x07\x33\xc2\x67\ \x00\x6d\ \x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0b\xb2\x58\x47\ \x00\x72\ \x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x08\x1a\x9d\x27\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x00\x78\x05\xa7\ \x00\x73\ \x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x5f\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\xe1\x5a\x27\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x06\xeb\x91\xa7\ \x00\x7a\ \x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0b\x7e\x84\x47\ \x00\x62\ \x00\x72\x00\x65\x00\x61\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x0b\x83\xdc\xc7\ \x00\x66\ \x00\x69\x00\x6e\x00\x64\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0a\ \x0c\x7b\xa4\x67\ \x00\x61\ \x00\x63\x00\x63\x00\x65\x00\x70\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x06\xfe\x1a\x67\ \x00\x66\ \x00\x69\x00\x6e\x00\x64\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x09\xa4\xf0\xc7\ \x00\x64\ \x00\x75\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x5f\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x0c\ \x06\xaf\xfa\x67\ \x00\x6c\ \x00\x6f\x00\x67\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x00\x28\xa2\xc7\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0d\x3f\xe2\xc7\ \x00\x6c\ \x00\x6f\x00\x67\x00\x5f\x00\x63\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x06\x19\xc2\x07\ \x00\x66\ \x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x06\xb9\x49\xa7\ \x00\x76\ \x00\x61\x00\x72\x00\x69\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x08\x98\x8e\x47\ \x00\x65\ \x00\x72\x00\x61\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0f\x07\x5a\xc7\ \x00\x65\ \x00\x78\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0c\x83\x9f\x27\ \x00\x63\ \x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0b\x63\x58\x07\ \x00\x73\ \x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0c\x58\x40\x67\ \x00\x72\ \x00\x65\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0b\xce\x5b\x27\ \x00\x66\ \x00\x6f\x00\x72\x00\x5f\x00\x6c\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0f\x5b\x5f\xa7\ \x00\x65\ \x00\x78\x00\x61\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0c\x38\xa2\x87\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x06\x4d\x18\x87\ \x00\x70\ \x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x66\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x08\ \x08\xc8\x58\x67\ \x00\x73\ \x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0a\x0d\x22\x47\ \x00\x66\ \x00\x65\x00\x65\x00\x64\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0a\xa8\xba\x47\ \x00\x70\ \x00\x61\x00\x73\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0b\x30\xc8\x27\ \x00\x63\ \x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x05\x03\x9b\x27\ \x00\x7a\ \x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x00\x47\x5a\xe7\ \x00\x66\ \x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x01\x27\x03\xa7\ \x00\x62\ \x00\x72\x00\x65\x00\x61\x00\x6b\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0a\xc7\x57\x87\ \x00\x63\ \x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x05\x01\xa6\x87\ \x00\x7a\ \x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x72\x00\x65\x00\x73\x00\x65\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\x38\x5a\xa7\ \x00\x68\ \x00\x6f\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x07\xc7\xb7\xe7\ \x00\x69\ \x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x09\xf9\x03\x87\ \x00\x74\ \x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x5f\x00\x74\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ \x00\x00\x00\x12\x00\x02\x00\x00\x00\x01\x00\x00\x00\x61\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x02\x00\x00\x00\x53\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x4e\x00\x00\x00\x05\ \x00\x00\x07\xa4\x00\x00\x00\x00\x00\x01\x00\x0e\xdb\xf3\ \x00\x00\x04\x62\x00\x00\x00\x00\x00\x01\x00\x01\xc4\x4a\ \x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x0f\x1b\x67\ \x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x01\xb8\x97\ \x00\x00\x06\x8c\x00\x00\x00\x00\x00\x01\x00\x0e\xbf\x06\ \x00\x00\x09\xae\x00\x00\x00\x00\x00\x01\x00\x0f\x1e\x3b\ \x00\x00\x03\xa8\x00\x00\x00\x00\x00\x01\x00\x01\xb3\xce\ \x00\x00\x01\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x74\xf0\ \x00\x00\x05\x48\x00\x00\x00\x00\x00\x01\x00\x02\x48\xb6\ \x00\x00\x04\x78\x00\x00\x00\x00\x00\x01\x00\x01\xc7\x7a\ \x00\x00\x06\x18\x00\x00\x00\x00\x00\x01\x00\x0e\xb3\xaa\ \x00\x00\x05\xb2\x00\x00\x00\x00\x00\x01\x00\x02\x52\xe4\ \x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x01\xb6\xf3\ \x00\x00\x09\xe4\x00\x00\x00\x00\x00\x01\x00\x0f\x22\x5f\ \x00\x00\x09\x7c\x00\x00\x00\x00\x00\x01\x00\x0f\x18\x4b\ \x00\x00\x03\x38\x00\x00\x00\x00\x00\x01\x00\x01\xa4\xee\ \x00\x00\x05\x6e\x00\x00\x00\x00\x00\x01\x00\x02\x4b\x79\ \x00\x00\x05\x08\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x23\ \x00\x00\x07\xdc\x00\x00\x00\x00\x00\x01\x00\x0e\xe1\xf2\ \x00\x00\x0a\x06\x00\x00\x00\x00\x00\x01\x00\x0f\x25\x73\ \x00\x00\x08\xe6\x00\x00\x00\x00\x00\x01\x00\x0f\x0b\x9c\ \x00\x00\x01\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x72\xf5\ \x00\x00\x02\xae\x00\x00\x00\x00\x00\x01\x00\x01\x83\xfe\ \x00\x00\x05\x84\x00\x00\x00\x00\x00\x01\x00\x02\x4e\x8b\ \x00\x00\x07\x86\x00\x00\x00\x00\x00\x01\x00\x0e\xd8\xe5\ \x00\x00\x07\xfa\x00\x00\x00\x00\x00\x01\x00\x0e\xe7\xc8\ \x00\x00\x05\x9c\x00\x00\x00\x00\x00\x01\x00\x02\x50\x68\ \x00\x00\x06\xae\x00\x00\x00\x00\x00\x01\x00\x0e\xc0\xe1\ \x00\x00\x06\xc4\x00\x00\x00\x00\x00\x01\x00\x0e\xc2\x62\ \x00\x00\x07\x3c\x00\x00\x00\x00\x00\x01\x00\x0e\xd1\x07\ \x00\x00\x06\x3c\x00\x00\x00\x00\x00\x01\x00\x0e\xb4\xfd\ \x00\x00\x03\x18\x00\x00\x00\x00\x00\x01\x00\x01\x9f\xf9\ \x00\x00\x02\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x7c\xbd\ \x00\x00\x03\xc8\x00\x00\x00\x00\x00\x01\x00\x01\xb5\x68\ \x00\x00\x0a\x1c\x00\x00\x00\x00\x00\x01\x00\x0f\x28\x5b\ \x00\x00\x02\x6a\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x4b\ \x00\x00\x04\x8e\x00\x00\x00\x00\x00\x01\x00\x01\xca\x75\ \x00\x00\x06\x6e\x00\x00\x00\x00\x00\x01\x00\x0e\xbc\xc4\ \x00\x00\x03\x8a\x00\x00\x00\x00\x00\x01\x00\x01\xb0\x99\ \x00\x00\x05\xc8\x00\x00\x00\x00\x00\x01\x00\x02\x58\x03\ \x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x01\x7a\xe2\ \x00\x00\x08\x18\x00\x00\x00\x00\x00\x01\x00\x0e\xe9\xd1\ \x00\x00\x09\x0e\x00\x00\x00\x00\x00\x01\x00\x0f\x0d\x7f\ \x00\x00\x03\x6c\x00\x00\x00\x00\x00\x01\x00\x01\xae\x67\ \x00\x00\x04\x06\x00\x00\x00\x00\x00\x01\x00\x01\xbb\x54\ \x00\x00\x07\x5c\x00\x00\x00\x00\x00\x01\x00\x0e\xd7\x20\ \x00\x00\x03\x54\x00\x00\x00\x00\x00\x01\x00\x01\xab\x4d\ \x00\x00\x05\x2c\x00\x01\x00\x00\x00\x01\x00\x01\xd8\xc2\ \x00\x00\x05\xec\x00\x00\x00\x00\x00\x01\x00\x02\x5b\x0d\ \x00\x00\x0a\x34\x00\x00\x00\x00\x00\x01\x00\x0f\x2b\x57\ \x00\x00\x09\x24\x00\x00\x00\x00\x00\x01\x00\x0f\x10\x64\ \x00\x00\x09\x42\x00\x00\x00\x00\x00\x01\x00\x0f\x13\x25\ \x00\x00\x02\xd0\x00\x00\x00\x00\x00\x01\x00\x01\x87\x01\ \x00\x00\x09\xd0\x00\x00\x00\x00\x00\x01\x00\x0f\x20\x5d\ \x00\x00\x06\x00\x00\x00\x00\x00\x00\x01\x00\x02\x5d\xf7\ \x00\x00\x04\xac\x00\x00\x00\x00\x00\x01\x00\x01\xcc\xd2\ \x00\x00\x09\x5a\x00\x00\x00\x00\x00\x01\x00\x0f\x15\xb0\ \x00\x00\x02\x8e\x00\x00\x00\x00\x00\x01\x00\x01\x81\xfc\ \x00\x00\x08\x62\x00\x00\x00\x00\x00\x01\x00\x0e\xf4\x5d\ \x00\x00\x06\xe2\x00\x00\x00\x00\x00\x01\x00\x0e\xc5\x7c\ \x00\x00\x06\xfa\x00\x00\x00\x00\x00\x01\x00\x0e\xc8\x10\ \x00\x00\x03\x00\x00\x00\x00\x00\x00\x01\x00\x01\x99\x77\ \x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x0e\xb7\xb8\ \x00\x00\x08\x92\x00\x00\x00\x00\x00\x01\x00\x0e\xfa\x12\ \x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x01\x78\x4a\ \x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x01\x6f\xf8\ \x00\x00\x08\xce\x00\x00\x00\x00\x00\x01\x00\x0f\x05\xc4\ \x00\x00\x08\x78\x00\x00\x00\x00\x00\x01\x00\x0e\xf6\xeb\ \x00\x00\x04\x48\x00\x00\x00\x00\x00\x01\x00\x01\xc1\xfc\ \x00\x00\x04\xcc\x00\x00\x00\x00\x00\x01\x00\x01\xce\xb0\ \x00\x00\x07\x22\x00\x00\x00\x00\x00\x01\x00\x0e\xce\x3b\ \x00\x00\x08\x46\x00\x00\x00\x00\x00\x01\x00\x0e\xef\x05\ \x00\x00\x04\xee\x00\x00\x00\x00\x00\x01\x00\x01\xd4\x68\ \x00\x00\x07\xbc\x00\x00\x00\x00\x00\x01\x00\x0e\xdf\x09\ \x00\x00\x04\x24\x00\x00\x00\x00\x00\x01\x00\x01\xbe\xa6\ \x00\x00\x08\x30\x00\x00\x00\x00\x00\x01\x00\x0e\xec\xa3\ \x00\x00\x08\xb0\x00\x00\x00\x00\x00\x01\x00\x0f\x00\x1c\ \x00\x00\x02\xe6\x00\x01\x00\x00\x00\x01\x00\x01\x88\xc6\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x05\x00\x00\x00\x5c\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x55\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x06\x00\x00\x00\x56\ \x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x01\x0f\x17\ \x00\x00\x00\xb8\x00\x00\x00\x00\x00\x01\x00\x01\x0d\x79\ \x00\x00\x00\xf4\x00\x00\x00\x00\x00\x01\x00\x01\x12\xf6\ \x00\x00\x00\x94\x00\x00\x00\x00\x00\x01\x00\x01\x09\x4f\ \x00\x00\x00\xe2\x00\x00\x00\x00\x00\x01\x00\x01\x10\xd0\ \x00\x00\x00\xa6\x00\x00\x00\x00\x00\x01\x00\x01\x0b\x52\ \x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x34\xf9\ \x00\x00\x00\x74\x00\x00\x00\x00\x00\x01\x00\x00\x89\x06\ \x00\x00\x00\x84\x00\x01\x00\x00\x00\x01\x00\x00\xba\x6d\ \x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x28\x6f\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x07\x00\x00\x00\x62\ \x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x01\x65\x79\ \x00\x00\x01\xaa\x00\x00\x00\x00\x00\x01\x00\x01\x6b\x82\ \x00\x00\x01\x06\x00\x00\x00\x00\x00\x01\x00\x01\x15\x12\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x01\x17\x24\ \x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x01\x18\xaf\ \x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x01\x5d\x8b\ \x00\x00\x01\x5a\x00\x01\x00\x00\x00\x01\x00\x01\x1b\x6e\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x12\x00\x02\x00\x00\x00\x01\x00\x00\x00\x61\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x02\x00\x00\x00\x53\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x4e\x00\x00\x00\x05\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x07\xa4\x00\x00\x00\x00\x00\x01\x00\x0e\xdb\xf3\ \x00\x00\x01\x22\xce\x01\x2f\x60\ \x00\x00\x04\x62\x00\x00\x00\x00\x00\x01\x00\x01\xc4\x4a\ \x00\x00\x01\x22\xce\x39\xcb\x90\ \x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x0f\x1b\x67\ \x00\x00\x01\x22\xb9\x5a\xfd\xc0\ \x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x01\xb8\x97\ \x00\x00\x01\x22\xcb\x97\xf7\x90\ \x00\x00\x06\x8c\x00\x00\x00\x00\x00\x01\x00\x0e\xbf\x06\ \x00\x00\x01\x28\x87\x74\x17\xa0\ \x00\x00\x09\xae\x00\x00\x00\x00\x00\x01\x00\x0f\x1e\x3b\ \x00\x00\x01\x2a\xe7\x04\xed\x50\ \x00\x00\x03\xa8\x00\x00\x00\x00\x00\x01\x00\x01\xb3\xce\ \x00\x00\x01\x62\x4e\x85\x11\xee\ \x00\x00\x01\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x74\xf0\ \x00\x00\x01\x62\xbf\xc6\xe6\xd6\ \x00\x00\x05\x48\x00\x00\x00\x00\x00\x01\x00\x02\x48\xb6\ \x00\x00\x01\x20\x85\xa1\x1e\x30\ \x00\x00\x04\x78\x00\x00\x00\x00\x00\x01\x00\x01\xc7\x7a\ \x00\x00\x01\x22\xb2\x41\x74\xb0\ \x00\x00\x06\x18\x00\x00\x00\x00\x00\x01\x00\x0e\xb3\xaa\ \x00\x00\x01\x28\x87\x74\x36\xe0\ \x00\x00\x05\xb2\x00\x00\x00\x00\x00\x01\x00\x02\x52\xe4\ \x00\x00\x01\x40\xc8\xa1\xe5\xa0\ \x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x01\xb6\xf3\ \x00\x00\x01\x22\xc1\x58\x30\x10\ \x00\x00\x09\xe4\x00\x00\x00\x00\x00\x01\x00\x0f\x22\x5f\ \x00\x00\x01\x22\xce\x51\x81\xe0\ \x00\x00\x09\x7c\x00\x00\x00\x00\x00\x01\x00\x0f\x18\x4b\ \x00\x00\x01\x22\xce\x51\xb0\xc0\ \x00\x00\x03\x38\x00\x00\x00\x00\x00\x01\x00\x01\xa4\xee\ \x00\x00\x01\x43\x12\x8e\x7a\xa0\ \x00\x00\x05\x6e\x00\x00\x00\x00\x00\x01\x00\x02\x4b\x79\ \x00\x00\x01\x22\xcb\xb9\x91\x20\ \x00\x00\x05\x08\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x23\ \x00\x00\x01\x62\x4e\x84\x71\xaf\ \x00\x00\x07\xdc\x00\x00\x00\x00\x00\x01\x00\x0e\xe1\xf2\ \x00\x00\x01\x3c\xd7\xa2\xac\xa0\ \x00\x00\x0a\x06\x00\x00\x00\x00\x00\x01\x00\x0f\x25\x73\ \x00\x00\x01\x2d\x60\xbf\xa3\x40\ \x00\x00\x08\xe6\x00\x00\x00\x00\x00\x01\x00\x0f\x0b\x9c\ \x00\x00\x01\x28\x86\xe7\x48\xc0\ \x00\x00\x01\xdc\x00\x00\x00\x00\x00\x01\x00\x01\x72\xf5\ \x00\x00\x01\x22\xc1\x59\x2a\x10\ \x00\x00\x02\xae\x00\x00\x00\x00\x00\x01\x00\x01\x83\xfe\ \x00\x00\x01\x22\xcb\xba\xf8\x80\ \x00\x00\x05\x84\x00\x00\x00\x00\x00\x01\x00\x02\x4e\x8b\ \x00\x00\x01\x22\xb2\x7f\xb6\x30\ \x00\x00\x07\x86\x00\x00\x00\x00\x00\x01\x00\x0e\xd8\xe5\ \x00\x00\x01\x22\xcb\x99\x18\xa0\ \x00\x00\x07\xfa\x00\x00\x00\x00\x00\x01\x00\x0e\xe7\xc8\ \x00\x00\x01\x62\xbf\xc1\x19\x62\ \x00\x00\x05\x9c\x00\x00\x00\x00\x00\x01\x00\x02\x50\x68\ \x00\x00\x01\x22\xba\x04\xf1\x90\ \x00\x00\x06\xae\x00\x00\x00\x00\x00\x01\x00\x0e\xc0\xe1\ \x00\x00\x01\x20\x85\x8c\xa4\x00\ \x00\x00\x06\xc4\x00\x00\x00\x00\x00\x01\x00\x0e\xc2\x62\ \x00\x00\x01\x22\xce\x51\xc8\x30\ \x00\x00\x07\x3c\x00\x00\x00\x00\x00\x01\x00\x0e\xd1\x07\ \x00\x00\x01\x40\xc7\x89\x13\x00\ \x00\x00\x06\x3c\x00\x00\x00\x00\x00\x01\x00\x0e\xb4\xfd\ \x00\x00\x01\x22\xb2\x6e\x31\xd0\ \x00\x00\x03\x18\x00\x00\x00\x00\x00\x01\x00\x01\x9f\xf9\ \x00\x00\x01\x3c\x19\x8f\x8e\x40\ \x00\x00\x02\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x7c\xbd\ \x00\x00\x01\x22\xce\x38\x1d\xe0\ \x00\x00\x03\xc8\x00\x00\x00\x00\x00\x01\x00\x01\xb5\x68\ \x00\x00\x01\x20\x85\x8f\x8a\x30\ \x00\x00\x0a\x1c\x00\x00\x00\x00\x00\x01\x00\x0f\x28\x5b\ \x00\x00\x01\x22\xce\x3f\xb7\x30\ \x00\x00\x02\x6a\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x4b\ \x00\x00\x01\x22\xbc\x4a\x94\x00\ \x00\x00\x04\x8e\x00\x00\x00\x00\x00\x01\x00\x01\xca\x75\ \x00\x00\x01\x22\xce\x2c\x85\x20\ \x00\x00\x06\x6e\x00\x00\x00\x00\x00\x01\x00\x0e\xbc\xc4\ \x00\x00\x01\x63\xad\x10\x54\x1c\ \x00\x00\x03\x8a\x00\x00\x00\x00\x00\x01\x00\x01\xb0\x99\ \x00\x00\x01\x62\xbf\xc7\xde\x76\ \x00\x00\x05\xc8\x00\x00\x00\x00\x00\x01\x00\x02\x58\x03\ \x00\x00\x01\x28\x87\x01\xed\x10\ \x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x01\x7a\xe2\ \x00\x00\x01\x2d\x66\x43\xee\x20\ \x00\x00\x08\x18\x00\x00\x00\x00\x00\x01\x00\x0e\xe9\xd1\ \x00\x00\x01\x28\x86\xe6\x6e\x00\ \x00\x00\x09\x0e\x00\x00\x00\x00\x00\x01\x00\x0f\x0d\x7f\ \x00\x00\x01\x22\xcb\xbb\x7d\x50\ \x00\x00\x03\x6c\x00\x00\x00\x00\x00\x01\x00\x01\xae\x67\ \x00\x00\x01\x20\x85\x8d\xec\x20\ \x00\x00\x04\x06\x00\x00\x00\x00\x00\x01\x00\x01\xbb\x54\ \x00\x00\x01\x22\xb2\x6e\x49\x40\ \x00\x00\x07\x5c\x00\x00\x00\x00\x00\x01\x00\x0e\xd7\x20\ \x00\x00\x01\x2d\x6a\xdb\x60\x30\ \x00\x00\x03\x54\x00\x00\x00\x00\x00\x01\x00\x01\xab\x4d\ \x00\x00\x01\x22\xb1\x11\x80\x30\ \x00\x00\x05\x2c\x00\x01\x00\x00\x00\x01\x00\x01\xd8\xc2\ \x00\x00\x01\x5d\x6a\xfa\xb6\xd0\ \x00\x00\x05\xec\x00\x00\x00\x00\x00\x01\x00\x02\x5b\x0d\ \x00\x00\x01\x22\xb2\x7e\x47\x00\ \x00\x00\x0a\x34\x00\x00\x00\x00\x00\x01\x00\x0f\x2b\x57\ \x00\x00\x01\x2d\x66\x2a\x91\xf0\ \x00\x00\x09\x24\x00\x00\x00\x00\x00\x01\x00\x0f\x10\x64\ \x00\x00\x01\x22\xce\x38\x35\x50\ \x00\x00\x09\x42\x00\x00\x00\x00\x00\x01\x00\x0f\x13\x25\ \x00\x00\x01\x22\xc1\x68\xd9\xb0\ \x00\x00\x02\xd0\x00\x00\x00\x00\x00\x01\x00\x01\x87\x01\ \x00\x00\x01\x2d\x6a\xdb\x60\x30\ \x00\x00\x09\xd0\x00\x00\x00\x00\x00\x01\x00\x0f\x20\x5d\ \x00\x00\x01\x22\xb7\x3d\xea\x20\ \x00\x00\x06\x00\x00\x00\x00\x00\x00\x01\x00\x02\x5d\xf7\ \x00\x00\x01\x63\x37\x74\x90\x4b\ \x00\x00\x04\xac\x00\x00\x00\x00\x00\x01\x00\x01\xcc\xd2\ \x00\x00\x01\x22\xc1\x76\xeb\x40\ \x00\x00\x09\x5a\x00\x00\x00\x00\x00\x01\x00\x0f\x15\xb0\ \x00\x00\x01\x22\xb1\xc9\x10\x60\ \x00\x00\x02\x8e\x00\x00\x00\x00\x00\x01\x00\x01\x81\xfc\ \x00\x00\x01\x28\x87\x74\x46\x80\ \x00\x00\x08\x62\x00\x00\x00\x00\x00\x01\x00\x0e\xf4\x5d\ \x00\x00\x01\x22\xcd\xfa\xf5\xa0\ \x00\x00\x06\xe2\x00\x00\x00\x00\x00\x01\x00\x0e\xc5\x7c\ \x00\x00\x01\x62\xbf\xc5\x7b\x7c\ \x00\x00\x06\xfa\x00\x00\x00\x00\x00\x01\x00\x0e\xc8\x10\ \x00\x00\x01\x40\xc7\x88\xf3\xc0\ \x00\x00\x03\x00\x00\x00\x00\x00\x00\x01\x00\x01\x99\x77\ \x00\x00\x01\x40\xc4\xbe\xd7\x40\ \x00\x00\x06\x58\x00\x00\x00\x00\x00\x01\x00\x0e\xb7\xb8\ \x00\x00\x01\x40\xc8\xa1\xfd\x10\ \x00\x00\x08\x92\x00\x00\x00\x00\x00\x01\x00\x0e\xfa\x12\ \x00\x00\x01\x3c\xd7\x92\x9f\x40\ \x00\x00\x02\x14\x00\x00\x00\x00\x00\x01\x00\x01\x78\x4a\ \x00\x00\x01\x22\xce\x50\xa7\x20\ \x00\x00\x01\xc6\x00\x00\x00\x00\x00\x01\x00\x01\x6f\xf8\ \x00\x00\x01\x22\xba\x6f\x9a\x40\ \x00\x00\x08\xce\x00\x00\x00\x00\x00\x01\x00\x0f\x05\xc4\ \x00\x00\x01\x43\x12\x50\x19\xe0\ \x00\x00\x08\x78\x00\x00\x00\x00\x00\x01\x00\x0e\xf6\xeb\ \x00\x00\x01\x2a\xe7\x04\xa7\x00\ \x00\x00\x04\x48\x00\x00\x00\x00\x00\x01\x00\x01\xc1\xfc\ \x00\x00\x01\x22\xce\x2c\x08\x20\ \x00\x00\x04\xcc\x00\x00\x00\x00\x00\x01\x00\x01\xce\xb0\ \x00\x00\x01\x3c\xd7\x92\x87\xd0\ \x00\x00\x07\x22\x00\x00\x00\x00\x00\x01\x00\x0e\xce\x3b\ \x00\x00\x01\x20\x55\xd6\x70\x10\ \x00\x00\x08\x46\x00\x00\x00\x00\x00\x01\x00\x0e\xef\x05\ \x00\x00\x01\x40\xc7\x60\x3d\xe0\ \x00\x00\x04\xee\x00\x00\x00\x00\x00\x01\x00\x01\xd4\x68\ \x00\x00\x01\x22\xb7\x45\xc9\xc0\ \x00\x00\x07\xbc\x00\x00\x00\x00\x00\x01\x00\x0e\xdf\x09\ \x00\x00\x01\x2d\x6a\xda\xfa\xa0\ \x00\x00\x04\x24\x00\x00\x00\x00\x00\x01\x00\x01\xbe\xa6\ \x00\x00\x01\x22\xb2\x6d\xfb\x20\ \x00\x00\x08\x30\x00\x00\x00\x00\x00\x01\x00\x0e\xec\xa3\ \x00\x00\x01\x22\xb7\x5d\x60\xd0\ \x00\x00\x08\xb0\x00\x00\x00\x00\x00\x01\x00\x0f\x00\x1c\ \x00\x00\x01\x37\x88\x35\x9c\xe0\ \x00\x00\x02\xe6\x00\x01\x00\x00\x00\x01\x00\x01\x88\xc6\ \x00\x00\x01\x62\x44\x19\x67\x5a\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x05\x00\x00\x00\x5c\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x55\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x20\x00\x02\x00\x00\x00\x06\x00\x00\x00\x56\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\xca\x00\x00\x00\x00\x00\x01\x00\x01\x0f\x17\ \x00\x00\x01\x2f\x24\x1e\xa9\xc0\ \x00\x00\x00\xb8\x00\x00\x00\x00\x00\x01\x00\x01\x0d\x79\ \x00\x00\x01\x2f\x25\x9a\xba\xa0\ \x00\x00\x00\xf4\x00\x00\x00\x00\x00\x01\x00\x01\x12\xf6\ \x00\x00\x01\x2f\xc0\x56\xe9\x60\ \x00\x00\x00\x94\x00\x00\x00\x00\x00\x01\x00\x01\x09\x4f\ \x00\x00\x01\x2f\xc0\x4e\xe2\xb0\ \x00\x00\x00\xe2\x00\x00\x00\x00\x00\x01\x00\x01\x10\xd0\ \x00\x00\x01\x2f\x25\x99\xd8\x10\ \x00\x00\x00\xa6\x00\x00\x00\x00\x00\x01\x00\x01\x0b\x52\ \x00\x00\x01\x2f\x25\xa9\x60\xa0\ \x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x34\xf9\ \x00\x00\x01\x64\x41\xdb\x56\x13\ \x00\x00\x00\x74\x00\x00\x00\x00\x00\x01\x00\x00\x89\x06\ \x00\x00\x01\x64\x41\xdb\x56\x85\ \x00\x00\x00\x84\x00\x01\x00\x00\x00\x01\x00\x00\xba\x6d\ \x00\x00\x01\x64\x41\xdb\x56\xf7\ \x00\x00\x00\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x64\x41\xdb\x57\x69\ \x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x28\x6f\ \x00\x00\x01\x64\x41\xdb\x57\xdd\ \x00\x00\x00\x2e\x00\x02\x00\x00\x00\x07\x00\x00\x00\x62\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x01\x65\x79\ \x00\x00\x01\x62\xd9\xfc\x3d\x20\ \x00\x00\x01\xaa\x00\x00\x00\x00\x00\x01\x00\x01\x6b\x82\ \x00\x00\x01\x62\xd9\xfc\x3c\xf9\ \x00\x00\x01\x06\x00\x00\x00\x00\x00\x01\x00\x01\x15\x12\ \x00\x00\x01\x62\xd9\xfc\x3c\xf7\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x01\x17\x24\ \x00\x00\x01\x62\xd9\xfc\x3c\xf6\ \x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x01\x18\xaf\ \x00\x00\x01\x62\xd9\xfc\x3c\xf7\ \x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x01\x5d\x8b\ \x00\x00\x01\x62\xd9\xfc\x3c\xfc\ \x00\x00\x01\x5a\x00\x01\x00\x00\x00\x01\x00\x01\x1b\x6e\ \x00\x00\x01\x63\x2c\x8d\x6c\xc0\ " qt_version = QtCore.qVersion().split('.') if qt_version < ['5', '8', '0']: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources() Turing-0.11-beta/src/util/000077500000000000000000000000001331472757200153735ustar00rootroot00000000000000Turing-0.11-beta/src/util/__init__.py000066400000000000000000000023771331472757200175150ustar00rootroot00000000000000# -*- coding: utf-8 -*- import os import traceback from typing import Union, List, Iterable number = Union[int, float, complex] settings = None __version__ = None __channel__ = None def translate(context: str, string: str) -> str: return translate_backend(context, string) def translate_backend(context: str, string: str) -> str: return string def flatten(lst: Iterable) -> List: result = [] for item in lst: if type(item) == list: result += flatten(item) else: result += item return result def get_short_lang(lang): if "_" not in lang: return lang return lang[0:lang.index("_")] def show_error(): traceback.print_exc() # print(translate("MainWindow", "Error: ") + str(sys.exc_info()[1]) + "\n" + str(sys.exc_info()[2])) def first_found_dir(dirList): """ @return the first exisiting directory out of a list of available directories, or "." as a fallback. """ for d in dirList: if os.path.isdir(d): return d return "." def lstreplace(lst, a, b): return [b if x == a else x for x in lst] def pairwise(lst): if not lst: return for i in range(len(lst) - 1): yield lst[i], lst[i + 1] yield lst[-1], NoneTuring-0.11-beta/src/util/code.py000066400000000000000000000026561331472757200166700ustar00rootroot00000000000000# -*- coding: utf-8 -*- import re from maths.parser import Parser from . import translate from .widgets import msg_box_error wrapper = """# -*- coding: utf-8 -*- def __turing_loader__(): import maths.lib import types for n, x in maths.lib.__dict__.items(): if type(x) == types.ModuleType and "maths.lib." in x.__name__: module = __import__(x.__name__, globals(), locals(), ["*"], 0) for k, i in module.__dict__.items(): if type(i) == types.FunctionType: globals()[k] = getattr(module, k) elif k.startswith("c_"): globals()[k[2:]] = getattr(module, k) __turing_loader__() del __turing_loader__ __input__ = input def input(prompt="", **kwargs): return __input__(prompt, globals=globals(), locals=locals(), **kwargs) %s """ line_offset = len(wrapper.split("\n")) - 2 def python_wrapper(input: str) -> str: return wrapper % input def try_parse(txt, parent=None): p = Parser(txt) ret = None try: ret = p.parse() except: ret = None msgs = p.log.get_messages() if msgs: box = msg_box_error( translate("Algo", "The following errors occured while parsing the expression:\n\n") + "\n".join( x[1] for x in msgs), parent=parent) box.exec_() ret = None return ret def is_id(txt): return bool(re.search('^[a-zA-Z_0-9]+$', txt)) Turing-0.11-beta/src/util/html.py000066400000000000000000000012101331472757200167030ustar00rootroot00000000000000# -*- coding: utf-8 -*- import html def centered(content: str) -> str: """Returns the HTML code for a centered container.""" return '
%s
' % content def color_span(text: str, color: str) -> str: return '%s' % (color, text) def sanitize(text: str) -> str: return escape_brackets(html.escape(text, False)) def escape_brackets(text: str) -> str: return text.replace("[", "[").replace("]", "]") def unescape_brackets(text: str) -> str: return text.replace("[", "[").replace("]", "]") Turing-0.11-beta/src/util/log.py000066400000000000000000000026351331472757200165340ustar00rootroot00000000000000# -*- coding: utf-8 -*- from typing import Tuple, List, Callable class LogType: ERROR, WARNING = range(2) LogMessage = Tuple[LogType, str] class Logger: """Logger class.""" def __init__(self, context="Log"): """Initialises the Logger instance.""" self.context = context self.callback = print self.messages = [] self.use_prefix = True def print(self, msg: str): """Logs the specified message.""" if self.use_prefix: self.callback("[%s] %s" % (self.context, msg)) else: self.callback(msg) def error(self, msg: str): """Logs the specified error.""" if self.use_prefix: self.print("[ERROR] %s" % msg) else: self.print(msg) self.messages.append((LogType.ERROR, msg)) def warn(self, msg: str): """Logs the specified warning.""" if self.use_prefix: self.print("[ WARN] %s" % msg) else: self.print(msg) self.messages.append((LogType.WARNING, msg)) def set_callback(self, cb: Callable): """Replaces the default printing callback function.""" self.callback = cb def get_messages(self) -> List[LogMessage]: """Fetches the log messages.""" return self.messages def has_errors(self) -> bool: return any(msg for msg in self.messages if msg[0] == LogType.ERROR) Turing-0.11-beta/src/util/math.py000066400000000000000000000137761331472757200167140ustar00rootroot00000000000000# -*- coding: utf-8 -*- import numbers from typing import Union, Any import util from util import translate def is_close(a: Union[util.number, list], b: Union[util.number, list], rel_tol=1e-8, abs_tol=1e-8) -> bool: """Checks if the specified numbers are close enough to be considered equal. Due to the usage of IEEE754 floating points number in Python, formulae like 0.1+0.2 can lead to surprising results different from 0.3, for example 0.2999999999 and similar oddities. This function only compares the numbers up to a certain precision (by default 10^-9). a -- first number b -- second number rel_tol -- relative tolerance (number of digits) abs_tol -- absolute tolerance Note: this function was added in Python 3.5, thus this implementation is added to allow Turing to run on older versions.""" # if only one of the two is Infinity, then they are not identical if type(a) == str or type(b) == str: return str(a) == str(b) if type(a) == type(b) == list: return all(is_close(x, y) for x, y in zip(a, b)) if type(a) == complex or type(b) == complex: a = complex(a) b = complex(b) if type(a) == complex and type(b) == complex: return is_close(a.real, b.real) and is_close(a.imag, b.imag) if a == float("inf") and b != float("inf") or a != float("inf") and b == float("inf"): return False # if Python already considers the numbers to be identical, no need to waste CPU cycles for that if a == b: return True return abs(a - b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol) def is_num(a: Any) -> bool: """Checks if the specified Python object is a number (int, float, long, etc).""" return isinstance(a, numbers.Number) def is_bool(a: Any) -> bool: """Checks if the specified Python object is a boolean.""" return type(a) == bool def is_real(a: util.number) -> bool: """Checks if the specified complex number is real (imaginary part is zero).""" if not is_num(a): return False if type(a) != complex: return True return is_zero(a.imag) def is_int(a: util.number) -> bool: """Checks if the specified float is integral.""" if type(a) == int: return True if type(a) == complex: return is_real(a) and is_int(a.real) if not is_num(a) or abs(a) == float("inf"): return False return a == 0 or (1 <= abs(a) <= 1e15 and is_close(a, round(a))) def is_zero(a: util.number) -> bool: """Checks if the specified number is close enough to zero to be considered equal to zero.""" if a == 0: return True if type(a) == complex: return is_zero(a.real) and is_zero(a.imag) if type(a) != float: return False if "e" in str(a): sig, exp = str(a).split("e") if is_int(float(sig)): return False return is_close(a, 0) def is_proper_num(a: util.number) -> bool: """Checks if the specified number is a real number (excluding booleans).""" return is_num(a) and not is_bool(a) def expon_round(a: float, prec: int = None) -> float: """Rounds the left part of a two-part float.""" if type(a) != float: return a if "e" not in str(a): return round(a, prec) sig, exp = str(a).split("e") return float("%se%s" % (round(float(sig), prec), exp)) def close_round(a: util.number, prec: int = None) -> util.number: """If the number is close enough to its rounded version, returns the rounded version, otherwise returns the original number """ if a is None: return 0 if type(a) == complex: # rounding a complex number -> round both parts return complex(close_round(a.real, prec), close_round(a.imag, prec)) if type(a) == int: return a if type(a) != float: return a if "e" in str(a): sig, exp = str(a).split("e") sig = float(sig) rnd = round(sig, prec) if is_close(rnd, sig): sig = rnd return float(str(sig) + "e" + exp) else: rnd = round(a, prec) if is_close(rnd, a): return rnd return a def proper_str(a: Any) -> str: """Converts the specified float to string, removing comma if the number is integral.""" if type(a) == list: return "[%s]" % ", ".join(proper_str(x) for x in a) if not is_num(a): return str(a) if is_bool(a): return translate("Utilities", "TRUE") if a else translate("Utilities", "FALSE") if type(a) == complex: real = None if is_zero(a.real) else proper_str(a.real) if a.imag == 1: imag = "i" elif a.imag != 0: s = proper_str(a.imag) if s != "0": imag = proper_str(a.imag) + "i" else: imag = None else: imag = None if real == imag is None: return "0" return " + ".join(x for x in [real, imag] if x) if abs(a) == float("inf"): return str(a) if abs(a) > 1e15 and int(float(a)) == a: a = float(a) elif is_int(a): return str(round(a)) if "e" in str(a): sig, exp = str(a).split("e") if int(exp) > 15 or int(exp) < -4: return str(sig) + "e" + str(int(exp)) return str(a) def check_type(obj: Any, typ: str) -> bool: if typ == "Number": return is_num(obj) if typ == "Integer": return is_int(obj) if typ == "Real": return is_real(obj) if typ == "String": return type(obj) == str if typ == "Any": return True if typ.startswith("Function"): return callable(obj) if typ.startswith("List"): return type(obj) == list raise ValueError("unknown type %s" % typ) def mod(x): import cmath, math return cmath if type(x) == complex else math def modn(x): import cmath, math return cmath if type(x) == complex or x < 0 else math def mods(x, b): import cmath, math return cmath if type(x) == complex or abs(x) > b else math Turing-0.11-beta/src/util/theming.py000066400000000000000000000110371331472757200174020ustar00rootroot00000000000000# -*- coding: utf-8 -*- import sys from PyQt5.QtGui import * from PyQt5.QtWidgets import * from util import translate as translate_wrapper app = QApplication def translate(ctx, str): return lambda: translate_wrapper(ctx, str) themes = { "default": (translate("Themes", "Default"), ["#efefef", "#000000", "#bebebe", "#ffffff", "#f7f7f7", "#ffffdc", "#000000", "#000000", "#bebebe", "#9f9f9f", "#767676", "#efefef", "#000000", "#bebebe", "#ffffff", "#0000ff", "#308cc6", "#919191", "#ffffff", "#ffffff", "darkred", "darkgreen", "blue", "#cb4b16"]), "dark": (translate("Themes", "Dark"), ["#353535", "#ffffff", "#7f7f7f", "#2a2a2a", "#424242", "#ffffff", "#353535", "#ffffff", "#7f7f7f", "#232323", "#141414", "#353535", "#ffffff", "#7f7f7f", "#ff0000", "#2a82da", "#2a82da", "#505050", "#ffffff", "#7f7f7f", "#ff5864", "#969696", "#45c0ef", "#fd861e"]), "darkblue": (translate("Themes", "Dark blue"), ['#43505d', '#ebebeb', '#b0bec5', '#78909c', '#607d8b', '#ffffdc', '#ebebeb', '#ebebeb', '#bebebe', '#b0bec5', '#263238', '#4e5d6c', '#ebebeb', '#b0bec5', '#eceff1', '#df691a', '#308cc6', '#607d8b', '#ffffff', '#ffffff', "#eb932f", "#7cfc00", "#00ecec", "#ff7da6"]), "darkgreen": (translate("Themes", "Dark green"), ["#435d4d", "#ebebeb", "#b0c5b6", "#789c81", "#608c69", "#ffffdc", "#ebebeb", "#ebebeb", "#bebebe", "#b0c5b6", "#263826", "#546c4e", "#ebebeb", "#b0c5b6", "#edf1ec", "#df691a", "#308cc6", "#607d8b", "#ffffff", "#ffffff", "#bad086", "#f2fee7", "#7cf000", "#00ef0f"]), "darkred": (translate("Themes", "Dark red"), ["#50453a", "#ebebeb", "#c5b0b0", "#8a7366", "#7a6154", "#ffffdc", "#ebebeb", "#ebebeb", "#bebebe", "#c5b0b0", "#382626", "#6c4e4e", "#ebebeb", "#c5b0b0", "#f1ecec", "#df691a", "#308cc6", "#607d8b", "#ffffff", "#ffffff", "#eb932f", "#7cfc00", "#00ecec", "#ff7da6"]), "candy": (translate("Themes", "Candy"), ["#f51278", "#161059", "#cacaca", "#ff49a1", "#ff77be", "#ffffff", "#000000", "#000732", "#c62528", "#48002d", "#000000", "#ff20c4", "#000732", "#71292a", "#00ffd9", "#5500ff", "#000732", "#0003d9", "#17e1d4", "#0a645e", "#ad00bd", "#aa003b", "#a30fff", "#277008"]), "devtest": (lambda: "DEVTEST", []), "custom": (translate("Themes", "Custom"), []) } default_algo_colors = themes["default"][1][20:] algo_colors = default_algo_colors def init_theming(): if "Fusion" in [st for st in QStyleFactory.keys()]: app.setStyle(QStyleFactory.create("Fusion")) elif sys.platform == "win32": app.setStyle(QStyleFactory.create("WindowsVista")) elif sys.platform == "linux": app.setStyle(QStyleFactory.create("gtk")) elif sys.platform == "darwin": app.setStyle(QStyleFactory.create("macintosh")) app.setPalette(QApplication.style().standardPalette()) def reset_theme(): init_theming() global algo_colors algo_colors = default_algo_colors def load_theme(name): reset_theme() p = app.palette() if name in themes and themes[name][1]: clr = themes[name][1] p.setColor(QPalette.Window, QColor(clr[0])) p.setColor(QPalette.WindowText, QColor(clr[1])) p.setColor(QPalette.Disabled, QPalette.WindowText, QColor(clr[2])) p.setColor(QPalette.Base, QColor(clr[3])) p.setColor(QPalette.AlternateBase, QColor(clr[4])) p.setColor(QPalette.ToolTipBase, QColor(clr[5])) p.setColor(QPalette.ToolTipText, QColor(clr[6])) p.setColor(QPalette.Text, QColor(clr[7])) p.setColor(QPalette.Disabled, QPalette.Text, QColor(clr[8])) p.setColor(QPalette.Dark, QColor(clr[9])) p.setColor(QPalette.Shadow, QColor(clr[10])) p.setColor(QPalette.Button, QColor(clr[11])) p.setColor(QPalette.ButtonText, QColor(clr[12])) p.setColor(QPalette.Disabled, QPalette.ButtonText, QColor(clr[13])) p.setColor(QPalette.BrightText, QColor(clr[14])) p.setColor(QPalette.Link, QColor(clr[15])) p.setColor(QPalette.Highlight, QColor(clr[16])) p.setColor(QPalette.Disabled, QPalette.Highlight, QColor(clr[17])) p.setColor(QPalette.HighlightedText, QColor(clr[18])) p.setColor(QPalette.Disabled, QPalette.HighlightedText, QColor(clr[19])) app.setPalette(p) global algo_colors algo_colors = clr[20:24] app.setStyleSheet("QLineEdit { padding: 3px }") Turing-0.11-beta/src/util/undoredo.py000066400000000000000000000031601331472757200175640ustar00rootroot00000000000000# -*- coding: utf-8 -*- class UndoRedo: """Helper class for undo-redo operations. undo_gen -- function that takes an action and returns the undo function redo_gen -- function that takes an action and returns the redo function""" def __init__(self, undo_gen, redo_gen): self.history = [] self.position = 0 self.undo_gen = undo_gen self.redo_gen = redo_gen def can_undo(self) -> bool: """Checks if the user can undo an operation.""" return self.position > 0 def can_redo(self) -> bool: """Checks if the user can redo an operation.""" return self.position < len(self.history) - 1 def undo_act(self): """Returns the last action.""" return self.history[self.position] def redo_act(self): """Returns the next action.""" return self.history[self.position + 1] def undo(self): """Undoes the last action.""" if not self.can_undo(): print("error: trying to undo") return func = self.undo_gen(self.undo_act()) func() self.position -= 1 def redo(self): """Redoes the next action.""" if not self.can_redo(): print("error: trying to redo") return func = self.redo_gen(self.redo_act()) func() self.position += 1 def push(self, action): """Pushes an action to the stack. If the position is not at the end, erases the remaining actions. act -- action to push""" self.history = self.history[0:self.position] self.history.append(action) Turing-0.11-beta/src/util/widgets.py000066400000000000000000000050341331472757200174150ustar00rootroot00000000000000# -*- coding: utf-8 -*- import datetime from PyQt5.QtCore import * from PyQt5.QtGui import QIcon, QFont from PyQt5.QtWidgets import * from PyQt5.QtWidgets import QWidget, QMessageBox class QClickableLabel(QLabel): clicked = pyqtSignal() dclicked = pyqtSignal() def __init__(self, parent=None): QLabel.__init__(self, parent) self.last_click = None def mousePressEvent(self, ev): self.clicked.emit() if self.last_click and (datetime.datetime.now() - self.last_click).total_seconds() < 0.300: self.dclicked.emit() self.last_click = datetime.datetime.now() class QFlatButton(QPushButton): def __init__(self, parent=None): super().__init__(parent) self.setFlat(True) def event(self, ev: QEvent): if ev.type() == QEvent.HoverEnter: self.setFlat(False) if ev.type() == QEvent.HoverLeave: self.setFlat(True) return super().event(ev) def center_widget(wgt: QWidget, host: QWidget): if not host: host = wgt.parent() if host: wgt.move(host.geometry().center() - wgt.rect().center()) else: wgt.move(QApplication.desktop().screenGeometry().center() - wgt.rect().center()) def get_themed_box(parent=None): msg = QMessageBox(parent) msg.setWindowTitle("Turing") msg.setWindowIcon(QIcon(":/icon/media/icon.ico")) if parent: center_widget(msg, parent) return msg def msg_box(text, title=None, icon=None, parent=None, buttons=QMessageBox.Yes | QMessageBox.No, default=QMessageBox.No, type=QMessageBox.Question): res = get_themed_box(parent) if title is not None: res.setWindowTitle(title) if icon is not None: res.setWindowIcon(icon) res.setIcon(type) res.setStandardButtons(buttons) res.setDefaultButton(default) res.setText(text) res.adjustSize() if parent: center_widget(res, parent) return res def msg_box_info(text, *args, **kwargs): return msg_box(text, *args, **kwargs, buttons=QMessageBox.Yes, default=QMessageBox.Yes, type=QMessageBox.Information) def msg_box_error(text, *args, **kwargs): return msg_box(text, *args, **kwargs, buttons=QMessageBox.Ok, default=QMessageBox.Ok, type=QMessageBox.Critical) def set_font_size(wgt, size, index=None): font = wgt.font() if index is None else wgt.font(index) result = QFont(font.family(), size) if index is None: wgt.setFont(result) else: wgt.setFont(index, result)

 C/IdP̓@M1U2M.!1 Qpx أ3^cӆm==FQA$§?ʤL)q`l`q:.;&.~x?.BLX7%i;@ nK̍l;NO~gհBBm"e<7S6;-~b=eMd(1b؀O1\K]^L`68ل6E"6H~ꡪө%_KUpi2a;i(|hKh  (x L0jLf׋X]Kkؑ.3H/C M^6㌦k9qf 4]ՍOTP20?viDG|P':",g<@'>jLvQ g [8c!.6+ާu b/i脶R : ^JnLP@%42j(fj(xex<SgnR[%0o6-Lgizvf ˲oX`S-ꄛ%LԘ5&$gj=Bk$RQ@qnOo!w-eb&VJ)$XI7#Zm\OlPWmx w߅ dC&P `^!xbyDI>݈cG<~Hs&*)Ad$?d䤂*H(PHuΉU$T|ȢV%bV Npݲl`PidQD<2-&DAeIac2UPgrFz;)UiiBaHLukmet@(!Ôk$lٕʚ) &HӖfkؙoIj09۱sT}>FbYՊTKc(O>ǯuA:jwpRG*AYsTf2}Y$%f MjԧJKayVY% HVW҅IBVJ@xmM*Dϑ@! Ҙ/H*}u5l_AX Y[I,Jr+n})J<"}# *i єVK\ idA0Tq=Ф$ MJ1 (i%p 7I>1C(Eޱ Favrl;@@z`/!Lw|w1=4 !t]oa]"n@Q7~40=2LusY.p/Geba^.T#*Yu44ٽ2< r*/gzt0'9* bH2 դo[ub@88rah TBDd-lUin9Vg sL:;FX95ucplYwjr냸g0K sn!Zع"_. T3#b5о Z[3@[ec̘\TĒLqHYpTBQFhpӠ/PG4f8$4DJO üu~}%.)ád$A#խ+[$e[0zeA"9MK2v)³5:Ўe,˱@5Mラw+[Q?C oz4}s&C3y|te`iNɖNc`q/0gPoXEן͞}O!Dg4$`UMC5Pq]l拓],Ad0T%*pݜyI fx>tA ͇DD= WGIs\STQע˰0щ f))=<0 <b pS@م1G)[JE\W tA4C`} A ?ZUF))a(H)*Jq2S(PhE1,.y颔ԡ}!ڠ[ID d)VU&u_SWQ9D&-n̤)wѰ{y; pB) Pu=5Ś-"_w aBig$c&cBЀP` %A n I=pxbc")BJȋ)=&\( @zW>4%dYgم /BV`̡!}eVV#[t@T f#5E&Z`p#)LRI$^LMCN%zV L Ɓ1S,0Y;@;(e.]dg EFdh MXU'jFec7[%Zf dLޤN)%e f %`u-S*F 9J S2(CJD&)gB14B3XCj2F%DT@̸d8!ҼJ-*Q(p] g1>5M@;לajmw4dfg\!f=!^h]j > cX@eK;ʋ~ Ԥn"M`Nq*`>cqS $\h.t |Ũ\M} VMWչ-ؓzǖL|I x;'KeW)5\>d֒Q"_S ,$Z)BWQ}]=؋IbZFhH)p* @TrkgAّ/"V&CC\Qg}dIHc&-= @A@LJ=nF'WT|%|^"G0 Cz.坏Ojb`)1Tq&ͧ4Nėn$ACF|,X߫ʁ \&[pP;,@c L5k] %ĞzT>-ݳylDڡHdiB@"lld 8('(ꏶc(l6g]iNkJ~ʥҍ,zlv-Cmni̜m`{­ޜTR۞Z{i m9)4FcFbM> EZLhF@g̢$D'&FUcm(o߂wd\Y`oRmN y7Y e<g_~-e%pOꆉɇpCSw<+G{C&M iIiօX!LddtTe@YFΙlp ̢<0A;pų0CNT:Cҍ(g$to~>p2Fftָ(StT(ABb25BB F _h͡ɰ./' ߴXEP*]d-1Yϳ^A͠f npH`=A jr!0 qU}tlFvXB!#aB^ 1FD2 dJH#q0_$A3p Q6D5BoEjl˵E Hggug%CȀdhXu A!d`[aSҨ4`@R Ȋ m24AxNsl1 4Y rЁYDؙ%u&Cdıi0˺0Bo4 )`RASdTT~VE0f gE p%8ʁB rFVF 1Y€ǛXcp WDe5%5A`4eZSa {`&Kg'O p8gYTYoI[ RAt4ґvIW[ Jn`6QD]hԁSK@ ``dvSv3d~w*TiEV[yUkW>\wu YB@҈ <l`QQ@&7SkoBL;8];gbq#CւwvlH;&Ƙ&>@oEiEfyWRҰKn<;PmgmD@enVQ- qG8CQ]TMSY&OgjxzV悸E 2flg8?hgqP/mӮ]3yyVֶEX4л92_` D0*LD!`I$`Ժ>-l`} `ga+6P($y;7q/ g (S솗ə}dlQoo糁Xv;?CDQ?̒A"}9C;?ZB#?'SuIMnuCr( Õ xi͗k2`F4 QJWE9 luFx G> ƃw }ڿC|W?dNOnk,β싷gzUOp%#4L2 J<%3**] 9E>pHO (̯VWO0D;D;Vi4,ajACitЁl{`[xE%m$#$nr b8|Mn~CɝS䨡:7{ӡia{IepzZ{1w=KER(M{&Ct6VHTCY8 `uHW_I^pK@z@>:)rs`1ٞ`q?|54\?j;f" + VdED(3==as|׀ybGS$>a[LzP8jsvOi!J$- <6pC*5У'I>L;ІT9]GFrNO T,F4#vpL xu`(F1sW!H)𬝝)B.bTPyCTQRsJGyEacD2CJ@ld"W/U1ClgAp6F#"N$:! gS^攥iv(=Zi0QmPB3*!TzPԀ5䑘i̺m߳%,@4օ+Բ(U ;:R< Fd{H1 E|`O`+((7A A42~+sRE> 'Hb" -nEs5^)psYhn @L~Y%2^-P헿7/@\F.QM6!%5q[h3f98? kz|UX}#A7YދDqh(A QB_Wm@PxQRoxjjdnIp${U?Wz޴.^'%96`b3/M@%ôp Ie(g0{Tƥ1 [E&a)~PzeJ4K[҂ 0Glj ~pmy&q;t-lQB?W hY.Q2Dxd`dox ȇ hFD@~* G>φ,#Mn֟;ˮ TvSyh Wc~G[F |‘2=ţ>md& ဠ+O)""I$`$B"!s0s>BN ޠdfKxdDO iȯ.6fbV RC `zދ "Уx c݌@9"%d2:hF. c*^GfԆM b. naaxiKъ$C `@ nڔ8 :`>i Na}Nf s** LR AYD/"BF8M˞ ]6" aɨ ;h)Dq#6 `YmD(p MjvhPB!m&Kx MhrL`:\q`,C@R!`ʙ2Q"_=XB0D̪$g  "eT6T|%({ޠHꗼFs8' hV`q "2$16i*m,".%'pBFI IjHl&戰z&RO\ڰ.]F/G@0m 0`}Q02|0IOa$3qi*3agM\C4( Ts"氏\6RF(P!0ks'i@ h:s 9_ 3A(6H*7'*v`; 03B lbɬCF]\&~#A/!Swp0 4 xRV[1@hsr:pf4965K)_RoDnC&nu~IчA7M11T ')1AH *䀂IH.F`Jˈ!60vrJ ` 6DBdL&|SE!17( 8 2"` *WjC#~JPK֤\#KZ N(m~P:][$/!r8 SS̊`d0S!ds :U?Y%)qY &&z'.]& 0&QM6Ψ&&aXU(h6'B2T͙WI@)@ց( VJ`,nR,LI,&6m#f1 #SBa"Yh&GT^򊝉!V׬RwNxI-A9m `ws m\1@1lBt@!(@y`9g,xshaցm^U[ƹKHtQ@a$L`(Рnb0 `Y);@O%mڸfBu  y+(r1>l<:IC{*I `+%D.8c ϗ9>Rh@ x9(+~ب9ٌ w_oX_)%`U)88 BK@SBn'U6MLl2CR7 'Kfoxꪎi5_is5f?9رF!&"DeK6 n[W >ۦB2]tO`օ: 2:3YU89A3a[;4vQ&5N ҎҺy)1~;"{ܘ(\x[sV)a{GX%Zь{: T "tl-wi`;Jڨ{ذϖ Y:/YIB# wj}|v`eYz>Tee6 Tm:ԕ1^ǵ}{žzvv@ J7Ŷ')2!O *IprǾ8Jtw cwP t)![ʹ&wڹ%ū~<'q7Gg)wk[9?{i YM[*2MeߵcJ .!xzJJ3ՓeJo[Z8 (ݿ@ 2߿|Eu<(ȥi8aĆO/ƍ;z2ȑ$K<2JA :<#2СD=z4Ԏz XGw4֭\zSPT}H"׵lۺ}/\ܽ|+2 ! ,<r_8guw4&|7ԯrxDNXW.D6Vv5xWvcWvuwGZ':xY3Wb6VwX1WoZDX@RT]I4x0%2jȱǏ 5^\rƖ-&S$IVfM@te@d|(TKZOyBt "6mF̸ׯr +H<kem232$r隋߾<0=04)&tH9Ǯ&JF cϠC Y$-1TaK:v*qxLS,IIOj)(84LQ+XMVP߿m sUL`;MfL(LgZ]$ځvIK&1m:ѓk6© '%cqbz2pwWc>>CϡzߨPJDB5, ~bý f1qN:aL|qea'sWbVPLC]`֑J[. :M"4jůBTZSdkm'\L;sը^vYBc)Y=W@-99; 4W uZ臾pnjjlN/;YT@n2 R_/HY@%1/ܓaEhH{@@T G-҄)}zIM\6/?ec[ض-)*P,"4/K&(u0 tO1A$`) B*A⛚>|DkCԦ*%#6C"8 v#[,P![EFAJRx Yã%`Ԡa1F >8C?Lh ]l磉Ml-^ *]l>JMdc ,gS;j ZG` ġi~K_*T_u( eASdkX}l_hq>D@vnvAoYW/ \Ut f^$X̆ FeJ3Ȁ}+ " Q;ޤa 9?БDl*Ҷ.D 3GEy(Pl(Y,/ ,].StJWYfGbRBC_RGl"$ HdI}{$0=tkY왅!׸zmG<8x,? !\]6++/kv LPlc?><#Bԯ" Aj82|>2%]5jKNps6zf|1C ^E1} c|@.z2aɫ 8>;T\= i~T)P  Um"OK~ӘMt:_bN5Ԗ#+|gZ|THP{BqxaƏx*n ˸B~z=:,mn3 5K4敮UjbmlԪP$ځ%0n R T7tó{< ZS:聢j1z_{_:mn.?#h.]0?2|/rǓ4;fN w- 0?y =潁XWc{a0LE`V]C*19#ab+U b=jF(%]bVn0wbFu5- =;1Buxw}g%woV#pMQ(RPpDmX~. ,.1cv!Oz$E\w1UmZ>K`v$0% Z|B5XHv1G'vvt%"#`ukh'؇1VVqx,qWQD1R1ɋoBsoɸ,g@N'vSI}p` h7c$;@T yN6LU:է0IS+"\Z2 ŧyS_ygNR3\ekgǒh ir=EJZpa c_P>qzG:jXE7O_WjMZʿ+P|_Kʰ*M!<baX"<;bhG34Rr}bCUT;6:ғAZKqX㼕Ihl4Mo8ϙ<z+ġ_UYǁ-B{-kZwX A|D/kGm}넇TA%:6@lٸ:+Y)Q7ݐJzqUӦ*S|;x8*( ܕ-e))N<#Љ)#zTW4#tKFrhV݄J Yи3lGkcJܨ K,tN7Ϳ|i VK쵗ű"M]Oc P{) DW~j);N/ENqF]{lT"G kQ G|0<0ዟjN܌]$N^N MVۥ_{J`m +-,=zpI<~.'JFD*Q/+r3t5No9<枚+{*WJܪ,ޓ3ԯ0ԱjTT, 0Q{WEI3b.wsbZOLcaZC 57;˸731.>K=¨^\gWك~ #ԲꌊNΑWh %0W\yZ;z*c痠̣B{WOmXm c'%ߛ+kΟ7]">_k繘)L^`aPTyvYk@2f`DkӣAP#oGh> q@Ux_YRˌ]"Z).Kr~~,`IA\r{jzЕ*7J8DֵvcfӬo|P}FLĭK|2P`/t\ʥ\V(~:E0=#p'OX-]q]^MRST#ۋhԃ~Tbk2*d͂x7,dڸ$!ϙ@hH )Μn8SE~CH#Å{R嫓-G8  EB.]`1f<,CT20hRhU!YIU-]B U̞CmPF-y.\캕|x ܸ䆌Kd#?[$O捌7n,jLF04B,txFKSPB#n}!_n@ni ={y ɃUXMS6<- jձdݫGkv]y_.߸LQBP ޸!pHA7138cl.̵?(8jR5b .,`ɢ>H68W;$%䔓 >(9 ,pJ(Bj+Bڳ溭 *têj R.PMl? {C%Hp $LAI55(c(ٔ.0%b!DZHRΤT2.D!) ,h"= J(Xj;erAh;;[&(]ɡ')2cZ-+w:νk-AA# xGʐ%\RRVC2}h$S֐J"Wiؤ;VIuW' a[(M6Mlhjsʓ*@h'zz Jq*WN8]3 p%y(C_4K3 Hl/DQ4KD9u9SG8.85$<Qd'x5` aVX3m:k̻)+/4n+ϓslkNulS/ݫ/ȃ> cpB2[ ł2s[C4!c;MCUa"VB8d o96Γ˃*Z& oPc%, c]"A]XZGQ5w ը –F!/rۥ\S0 m"nQ@$b*!G#Q4q0a. TX0O]nX#Ŝ*F7;]xOR(@]P'( <_@>VB/1hK{!gVĸӌ@|q"fCpZ䒽p$q\r҅6\ ۅzIcYH׹*%h̒kk]vZ1C‘A*{6" ML7 rCJ6;A&M4!B%g$8lR Ӆ|?[:XDhaZ"HKɻ>.{Lz%8&G ,micA m2 !H䧛|F4ͦ^L 8;$r:y8 %,)p>'PmE, ΀ '"?/&ЀfvF:`JGZS)`Bi/7M^72[Z5 A:~F5[K^amEj`*6Eke>'m8g'UWKbQgcC]tK(Jhb-VXw.z ,/idvv%}gr"'$Q#mm␁g X9m# LHP:b4-Al9+B=a.k,[W܃ &I^K., ('v?C|@0l"{ztz"ES#5͌Hxf(lA-R7ta ]Ovg]/2KAYЂ(uqH'YKMQ@xѮvBN~a\}®:Hhp$TN W mI[L:y0ЏahCX-'FE(&V.xA[@q%h,R vw]O ͽfFWd! #TO'ׅ9N$1rBLuk3vF|ݽaxf"HEoBj`!8s,ir6-'f tܚW,'9%O/\Q8$ GD0ƒl`z/p(DŧE8a ǗLfm2pJ$-`aS.ɣm)U,Zsu-J7N Zw6.n&2wb f( CT8 Hz95NVȑgP'g5"j=GTPqv|lFh0l5aeX@󚟰؀Ivzc霬{*ATN*tV}9=Ϯ1כpR)5=ݛJ +[3+z5["h> ;;-0 ȕ"p 7x謹?012b]UT366ṄR2G_zG-Xǫ0:Hh# ʂB1q̃ (E (dM;_tٍJ-/ ;d;d0XE8%F檼6)$ ee.J& T8z 5SC5dO \O| FQ ʼna! $ʭ\m\b @Ŕ+_a\Cb-IUҳh[Wڃ50+ Rs(RBMDz̷!"廠ƍ^;}ޠeDž6=;xa< %A}`_Vj֡a-\_p6]JG[ WDTਔd%F^_Շ,;0ZlE_ d`ӣ=Z C1 D(UN@ۑ`Ĵك?”d|(\Y%,dṴ̄dL^ǝO_\Z9sKqS' v(˱a5Q5h$g u  ]π\kc)]B_kՍQe8HӮ9z< Г([]Qʀ;q+ ^M+^QjvbqHm^'TM#( [V᠑e+P.ĥ[RQ>X!;,W|VE4@d ڴ&^oNMNMc tA.,(i+U6FY>e9>l:YԛC9Pc :vKY`7"F5@SS'Sf'!HUVf#ew뚝@Y鰜?>6pFX2c+Mh R 5E1 F CY#FdMѸ#J^R_ nbf4'X+ XfgIh.XKk?uQU HȺ*_R H|C7htf;0po7RbHOVs6RL9Iqy2NmMDp0r&+z]`ܣpP3HA ;C}$13Jt f; ӆf`J$Mjg؂ [!YDm!o$V1./*y<>u CW=ur[LgPuDI݈fdu7gfMʭ#sB䁹Ƴ`'[i03vwӝep 4)K߻2DW*x>HHO.uC\Au1,1sylFJ~ zR5oZ'YS,;`ׅhʡ1(5a6bYU&˱vOYAH**rGQ~c *5AÄ bUMB\V' k%xAm4D(mLjQ5,߁f6Ԙ[򈬘"|Ug9иU!s5u׸P:1u%zāv& K#| _Q);T! ;.)-8R oyX Uܰ=kX Na&҆hV:l1\oW#{se ~\qH\F9CnDhz:q!\)א!2>`M/j/ P -G\{+c+aX-7 ؈0b [87\9m!l)bP>[aθ5L ٞ"">a Me MYeD;:W?F>(IJ.P%Ob H<:*MgDղ/\PǗDlvQ 7iA yS.36O;W>) gA?1R(C P8< B-?0 sE"ѝf @7 M %qfY. ".) IV1bLIouk2{h„>z!ǚ:n,8$~@>T_iF/a[AFP[U/FP%PP)Cvh ],{kQ$_D7 B0;Arҫdi؏|+{HE&{Sԃ/a~r08׼np ֈB nic&sQa'a S nd$Ø0\i4 f s\Rn#g-s?,i5R@`(A )i8PcUт(t1kA شiivW%oWܐbDRTa\ĈCIML`.r 5NqF5 [زxup`o5J0TQ%_lB:@r ;tB1Oo ck0j;Ik4O܈ӶQ: Zڔu!)YҴ @*5*fH1h+d 0kiv()B Hz| 5fTC>N@-T , QHŔSa|xvhj'!s 8.$ւnFV)%Z'sŜV2k!Т+]2e!@t#!bރ 𔜨 JT(8Tw@Q [O'+ wb7u*NaDXhU 㱉tYhG`)۹I5YZ5b "^}A*|H3.Ź#@؇.,Y]6b 7Q@FbP tcp1DB8A*Fa[| #"a5&!6%A5&:aaiOnu')ӞJwh\=bժl\X^ dKQN #dCš|=Fmz$H:Hn9 m,&J$A-v -BP* PZ`A謑 sd\ S؀d#@pW^ _7zb`&@jFEWV ckRω 2(HQQHޘVLdJEA#ndGvXD%xtCxf߁Y еGt܆Wfg%`aXЕ'ܞ LgA* @qE5XHAYt HAYplʁ?m'yڌai]uH+> fH6.Lф˞^ :H$*C50t1X To S@2Q|vBXz(xk" NV*%U]< yVb_;P8@ CW6jƚ3nҾ+vHNlu}7BɊd}JO= H1^Flarp<b`fa 5:4""j={|}*DiqXCy p'2Ahi5ƙ窱A`aicv-d>1 F"nzAoQIeÚ1s#@@` "*CC&R(ff*}'u+)~Ζ^jk7,nLCs0!\˼) 5f2Ed!734y¯iZ'ekBZ T2DwVisnN-Zh6ocmQmfR+.Sj2[{(^rsrhĹ]o>:S#7CCk#{cu+G/!<1"{p&^KF%(`' wJ$5(D0 PP ,X,< Af6:q:.U&1Vb3dvw;g׆kn9Y%7HR^Z_}#XcOv8y5Zh:2@:0340 X:4dC>t5U03Dr$jrs"xƹgje9gHu~n'iroijdJ"~rP:t\z؀*,C0CA4A tÃ{.p5ڙ֚w~7C#_:߆%@87m$lgM&y&ĊM4i3j(7Q. 1&%Cj]ܘhaL6U_2˯f혵kСlE ]v2$J!gVJuf ZvuތV .ąVJ ݺk޼ytkok-J&ּXa(Kv=ƻؚ1ejf5ĎFv6y^AK_zi‚1]|󆧱̒YImPe. VV5ak˭vh)ɏ þ[)+p˛nQ 7^k #8p3#,m-.pR7J8ƂlJfJB<YJ8-Ҏgt4Keo,4?:\#/ËN#Kc<"M(3C`Ly3:К]ReRL:BBPȝ>Bˏ B-@AK/S"Ҙ,k1^7X*UkD4"9VDQoS8́ SD}*m!%AT dP'匢|E8lԍzvg\iʪ5 4-iI. uF]$^:HmȆ^g"5l7mBI:y0KiJPvՂI2#DvӴ_]GreZ8)'?  0|a$e~4sxSUX7) סDy_L>'6*eq(U#dR3f atV[gF"c/j?=FEV;MZ,pH8mp^gSLl֨xu R0⟢(yy9b +IVսRJWZk*8sjΔȨ˨[ PF,1L%>볽dTKqnt$@{VHlν`sf4C.brE'*Syb%K3SZ*JӽZӮ1-k,M=A_'v7tl" 4hBT']@6p@5cs+ax6R*̜dh0Z4Q1%D Km^*{|?GL%-@[Gxވy0P#QM]dؕ7r5F1Va2Yo3Ws؝ )-@F jUg7-q2&ވXi| %z*B" bg ( xthNtM8Ja lnz 2 gN8#HjݸblLpLNj Ꚏԯ& ګ-#.d L{`ZZ #!,iJJelm c`tNpb$Lbc0KJ)/9l.,L,`hyް?pefM. ZKOÕK ~!n@t, Hl@ CF`iJzF0%:@,}0 CiADn.oaN2rc4C `]QiT! M]F 2lꌾ  N HTѯB,B^ n> n1<mNZ*a ާ  @BhNUJ<"2 =С- gPp1,nbC-d0n @ B`9T`)~pN(c;h$1Ld 97B0r'lbzkҋe0.żJ0h T apg Jat(@JV${%Ȑ-E.(%Ώΰ& YZC\\tS֚g0/-~S 'R.]"9LM~Aü1J3=*5=& +s"g[x}iC/n:PG:"63"Q0v .Ot0P>? T(TN>Nj O₄x[L .y3\Ė u*sF"b3)8b%Nr&Э1,ƠeIoIbLC'cDfMӦ~7w/wqlxBAT!TaVI&aH}FhTVN" v*]rG>>cDC.Du?jE^BT$2(XKT~Ta ItOfY 㔅vvhWch>-v?y^SO1Lw$l $W2ZXkKs0L +NysN16i 3`7PeVV΍NG:fI eJVG"b^_vټv"4h4lE gvge61'.).^(Ex C?!L2+x !b 焢 ,J-In0,cJ6n1v)Bk>bRwYInސMCL'KgżfԲN>M jWh}J J x 68W:4J(cch8Qasvl}՛etI;xwȤZT9kv 3lJ-ޠ b@zP&( (AM+gc r㹐ToVKP!--]X2wLFYô.>@ ud<Ơ} \bJ%jyWXv ($J΍XR TT! ZѺ Z4/qNq7KbǠ1! >#}*B>,gB0V׺  M„&Uݢ 8'Qթp6 <#$"4( J&` R@DNJZ,l< W^leo`+uuteua\P X4NZ&77P;6 (S$`~&FH*JFUq6'l:s3$4BQnhQAH ucrfuJZ";DXyiaT5ą~'!bCp(.f rHlH3H\lF=!&X=%HE= Ԓ]SP߽nG^RZK]ŕF ےEg~ꇖF!d80AAHReB^=N4}n"Q[k.t_P$AGcMB, /t .TBEoX0K0=J~ɘ }Rd4u#g_[n,Ď vL; -̆5/QЙxhVBz бOꔬZbɞuڰEK!y8Yh˛]F 1ĨḄ0c|2jzP1d-H"[1GQM-7:rnj ܷĿ-vڱRUμxQ#JdÒ7/պH|0x7$Ŀ6.yS'U_af/8lP2@HY!Qc-QdmơoŅ\o&Xr! 5-E C _CA2SD{t o71! ՔfY;| GT 0`VPK1Ô3oE} ƠcY$:pBu0\&FgcM22c5]V c0Vc| @RZhzT'1m$AZIhZ[bQ訢J5"$Q5I}5"hy(34hWEQӄydse/1g/tqC,SGnaBްd25 KPP -U|2["SpY]ykP} E[tfTXF?-3)IlՂaGJʈ *įx9"!nN, >tK/]aea&0!=" Wq~<\qsY<@6u y@kMMXqa@ۃX]oiQM)YeH!i5J] iFAhLW6E5:<*M ʽ6ju7WR5qDK("wEnMvY|%9 ==Gz;P@Iz a+ծR,2 W;M Hئe"Z[VZ9O,Q^ՅQk hb8bA[kБ OM>Wiƀv1HizmKD a8-_e|xYzH78Q[h,R_Qv; |!ZH6:uPЄ y(@27ppzfcaF; %cDM8)WI\A!*V A ,!I[(AsZ*x(D}g - YKƵQqԠ'n @cvxLosf4+T1v"L3M;JH2`3590Ԫ,6:BbH 2@V;7d3*V)ǭ!/`hC[2u: `;aEY0ٙ.vX@Vkԃ4Pe'^;V Ut (o0*L:v^yq@_`9s##f Gs}Z.tXЄf˥oh!YfT=d 5RIJùβ'Iޙeo} TB*n$+  k7AZh1]*t &7n#ێ4S6Ȫ .mɚ$Ё DEZ* 3cxǻD"<17Fah:7k$ƲWy2&R6PN܌fBo0yk)ا:3" [$L$Ց$5s_v,ѻ$QB70 tDA᧿2A+p6,h p\cnsXSvj]kAdtA@l9hCg؆J; ?ydтj\6~9{#S:[1ق6do& *I6ƥ4# 0x569GUIܼ%boЮҧ\s;2=(\cpynf[1]0}kgT y ns[FnZ9#<y(/GcOW*CI{$ 4"~[~*H Pѷaї﹊!Qv8<`by"/й #ƐQYWwu]@CU{0x]z9/6zwL5vqȦXЎ"c:"4WhB^g~ g5LZPps5YIХyPn[jie*7O߭؝9Yt/?Q֊+;`[oTuvKo]Ymr dOl!hac*) m-䶀r"U9gqRG_5}&\ic> yЉmaG Ȣ j6c{ѩUo[&biBG1 #GK2 J Pg*ꆖǝ[$|f#\^hr棎)Ҥ$>G1>PpgtÁ 犥R'հUw([`\̰i±S1g'qff nVjeؖ .z8+ji~$0)b-CK=0Ά4Y[ֶꭆT]&J@sV 7iW "KsK< e"6t"̱L$,uy/0-\hzqCY~x4aO[akI1,M",/2~>vsb:+s^)>#@p )NNnⱩd|!?k2SQl,еsla"n ~-G@C};Ohym7[o!Ypc0y*erD~œ`}zkY׺flDXM,Q(_)Á A1pv_Lՙ.`jբ%2ІF@4DR\`< ۻ ,m.gˠ6w|0 bXX)_'(p0Q2x48o:Pc^ƀB"$R` gBdN!`].U\= js&ǔ/|#51~ c*]\~s&QOq H)f63l&55i2Qܠ'7>K,b^"+FX Vn RPIK5N򢂮0ۚy&Ȃ Pg>253w=i6l_9e(Yp|IɊy}6>p0ymlnt&}*#q̇ɇVŒ!$Ǥ tЪ:TE9n '#nJҭl(ѷJ|Y*F;P=jAW"'=Z?ajqmBPH^TjVhWiQ까e`: 5[:J0 Є%vKTm8|_ AV({C}k3=jT+R<XhVPd#ZIVzЛn~zZ;(Xv6P hFZ'H}f\·&KH 8 '\i'Zkssp9N6) d1vpc.ڇ18ⱟ|[)U8:P?GD%>&M)&)gFq8d2 Tk|:vN|c N60nyG &Ԓ 䍇1pfk`aVprLkVs)z^0:"HENnٱϷ`u;гuBFc10nxC^aDZJq-dRtjTSD%>X:|tjjoNv⮳-vkKg󕯾K@kgW܄s#Q=m@=I,OPL+Y˹Z5Dd3t}:ɬZx:(+WI¤ 1j.+$ \[RU:+Ihe::  ~ek'jj6Zo[XYtk$`[`tK %G5!H*ALjkֽZ^kIs H^Z_ƊP9uxwO$+v8{'~/8#)ja$emzG?IJ|b뗴`ǎW[1<􆺖DzHg~HiLB 9 ɑ|{(/eTKs F:!X $8h|xs"S$r˂@ IWKu,EM`ð[K۱ILy5Ԝpۇhqc08aIr85{n4n s 7 0O+LD UajtHF*8ķj뻣LW9yXr+ ^-V0K&FSwYj{A+j'/4|\YF;ͤ #@tDH2UVDkyLȴ8\ մ}TlKṖGe{3KBYv0ֲ s|t fD71,#$O}s5ܡXؔbv8tϚPGbvwKP';P,|/\@k$O*YeS42aWP|@|=3YlUt`m ªkNm ?]ݡ>|.1j3 PZ޴% &+ɼvK`\ 6;@:-Bp"nv !|yS\2 }-+sܶzHrj ֋Ln+uz4~*m_o@'JW~E{a94sLrw8rXP j+]ܿ2 12pD2`t|йXiș+$;O߸[Մ~K0V]K;0>`Bx8GCa9wP@׫'kD\U7AHҪm>L| s:[~O\{p6>K ΰnW3-Px~SA7-!5!. ᒫ c5 PI\<-F",.L0j慄Gs \ M4|NߟɐK;@C 3*B*?t gq!-@X!@@ ;ZX~CcD`h&0c rP 5F";ʙGԪl$0[/ L`4φTʌEK{e~L"5}t({-X=0[J 8U2LG:?P6H&KTՃnƮĜ ^a~P`j47s!g8 (5Ez(0Y2&F=~;-ZtO>\R&ʓ(Yl ZJ9=paթL0y8̰k%XX4, :-PBB$U_+MyD4ҭŏ>`e$}kI%;撛I80%*N攤 '|:/j/-&zX٤Ly49810@.y^h/ ˱/p#̆8(CtZmƜNZH GAYD8JEM;R$H"7<8w9T{<09:LyBXdaI*ˊ֤ K7=ċ?5䄕YW:cm 06b "2,LBtCeȡeSq9 mznTM@Eәf,UUF]h'VZiŎ\*=J+-cRP+1郃րR`eYV> 0yټ;,3*d\k¨_A!Q.NV88/dIS{Z^`EHh}&d'5lض4o_c?_SʧZ^Jegd%y7x09mM5MC%L)5Qv> T;)3mT~ǟꉋŇ$KnL6W7\geRk%9NNvbP8Dn ]8;(IHE&S ixW x7+XSeenYĴr؄3r=l= L@ـPqMhu( uD,2q"L07i[ Ac720xP@ pRqke\ )dV/2,e.Pe 1w$Od.@ *8Z7;fA"( i,Eڀ"ɈAɃl2J Ɯ0A=ha\VHUR2dzD |i ED8/fD.54>s+eɪ2̡thxvA&& )HkXsi AN;&79oB-PeN!&ERhx++^B/2W%%L4W*YAfmD]44cV`"$ HGv-y#3iw:ƱvQ*AiNz3ȑr I W<*OǦ*rkYFjJAaX6 n.41`FY(ga\xѴwRb>!}:P0U'lQ2 dJ;$Dv?e }*ձ̶b%)A[ƌlZ 3.'4:7gE#9õ.-HMu3(X^󲂐1j:eVu{ L CWb'wu/ W(b5}X!%necE30wl\&\uPB`cLQaksh"ٶޜC=vU#_y/+]ZȼQYU+<`|DPS3hvW=!XXfqv-=34"'*r9LSVX<$70Q /Vs?1RRYx#;3đJ6 A2?0,{6ٻI3{/S(95 @ ™d伯q58( sCYÈ1#3zR{0jölz@/q2$+(# K`+%- 38.[C+;ú5-;7x)c?4lkB,jkcDPY0 EɹU,(x51Xk'%{@ #E*C l4sC0cAsE#3%@)&AI<q&ʂBc6?ܳJnssqBi*l\MT C8|3r:4AWtr-!ó7G4B IQ؁EEfƉDPKBĻB,|sIt ;\4+G,;x%(r+(ȸ7?`l#j^,)By`ip4nz*JH`ml+JnF EâD3Cò\\ȅU 3̭3lKG88(X6TBCCI1C 3=XI*Ti a /%+*IWsMT3̭kK{{ĸ;3dSC= S6NeLJ71UKhL0ʔN2m9tSW ML 5(6Њ:84X{)ȸӸ7J b6^cOC<'Pw\JŌ4z4 DOtгGu\5P R -;+28\S6T#pͺۼ?6b=h1p1OQ+ vL7%-*4&5 {V355l08LATQ<{˃Ng@U3K(wA#CD/!K|;=EprS$ l->HUE]|K4N:25Q bS*s5f[* s[v K9J>6Qj8#䂧Uʞ/ETSU [<Q=7(qpXQ-1 8˥Q(,KVsiԯRdEbU%j!Fd<+YoS{{HO*TQCAճE3a2u؎CIVkTW*W(: <=|^h.\ ZPbDT!1J&('xV٬mHTA-0M<9,0,aU4puK]%%+l1@,H6MP x N vc4p`cKcBZmUCkB)F EP y +BcXt ze-f`3R8Fm؆6ӹhBYh.+v۞_Fp6`BCA?M|80B(if`+Pla9 n R췌,`Oݫb>mȂR7v8>0p_mfk-b>fdϹ1H # 2DR[!M 9X_f-܍dhF;&od ߈pur` ej=np6Bc^UCJn^ (pWӷ ؖ ͫUm`ywi U P (yR``K.Z+3!/vGI4hHehEo5#WA EA(. ݜwC9?6/E@󲕁E@ j*5b1 ZWH$,yU=&"m#cE„ m̶ga1&̨qtѩaǐ>ɔGBkFEfҬi1'POl$^\Eq 188z'2GS@rƖ8fϮ('4`q@S,R`UAX{Cٙ,M9U$q]Hc^(6~nhb„neZIVa U\!]cxGuZl)ACe(Q-TDvMC2b' ,)@@UXM "ݍYe Ә Z$A^I]I mEAwa8 cHF!VB1[P6hZGqp!(:d r"4Jzc@'$ o,)d;$yDRIQJ9 r^*d@`GWbdgʇf q)nDhi J͎ၩ 6ȁޢs|E,P0+[RJEj?Ě^0Cm\HC+I@ iL2y"L&\| Fnb\ 4$Q'd 0:Qzl6ڱ!;*Oo!ȢL-lW vyaP^^>be$IauXJr2!OZ6GK`?arytS0e4LMP gq5# ZYF =qP(>vl` X(y3'>hP3S#iU@0kgHPHLQkO~(IeĠd4豩eC=HJR/1iA˖D2hʰ|ݣ $dx@kH,VUKw&Ґ) fH~ ٪&.I ,Yp@&#]IB|e[C-;xV.]$BGFVCQ o6a510mas1*9Z١ 4y)e\kH o #Uiniv>a 0 \GQ.[lhREux:^Fh,:!6k,H0NpYA#;oP/Bjr(XLi\<;`(rLG:MY^~gYoDζs2^FL4d9W1 hU|ȾدONZ:4 m0BnWV(g²k>snI%},kIoנۀ\ DOJK_Y`$_z: hǑ<)oij0ˊ.5jQK`"L k%Gb3oYhf+]ɃrbC4]BYg27|!r vN%F(|+ rcZS FzL1y[ d<ރQu +gNsw1{:e()=l6Cdx9ٛZ2{X+wFcwL]ۼigAnP禱vD:{ǹWϽ1 &ѕ| 2!Xv處';!Jt쉷c IP(RT#Ņr|wSS>4N1;c+خuKmkϪv#f]F-(8uuuŋ UP8-D-@<Hi"( yA@ .I^9~,1VUa[DWôhɠ](FgMDlфTȲ\P5d>C=a)aAi`yB`?A_MtNdFgњIX[ޡCV%A3$6!C !ZխUD^e8ZM LJ5&1`=b=A=`!*^a=@B,B][%,4pڧ\$ C3 zߗ_b _$Q bӝ ImEh#45^rQ \4LRQ= +ƕZ ` xI>l>-hQ].6>ʹMY$a(P]@ JڰNO  ]]6#J|bx5eԁ#@=.`@!dV(t 6 W Џ (I$ҩ(b߬N Ja$J NQ=P@eAB'Eh=Q@Hj= @ѥBeb `8'(_̜p2XoBYNtA C{ULH^.F%x͚5v JA_")%xNc LW16[[d&TB\%.P< @䓅(䏓p xm\bgyIN#b@a$9 l56yD<6Q~< C!_!.`%a2CLg%3UCd5P] d\( $ARlC;\\`.+e@v(䒰OO &m6ó~aM$CyIr[!eKd\%s0qLeh*=]ͥ*U@!TB!*]骭}%L ?_80O!#m*VniΑFJG홄֩uAb`ý)B_|XBm!BlthmR"a%bFƎ,GaIFG&aÉZ3٫x4(i>->@!䭭~Tm}̅nmqᮡ/b-*ғ6n Sx2 x@\QimF.c~Zx͛$X  BMY$Gi]l Uw,ލhA( |.Z2EW9uq7W5(nkPeY/]4Yg ,tAS(] u<Hd2qa6A]!TA_'6E5.eC3 v M+;2!Y?G+ G$yM"DX .s6oWتRpq-8%.s7lVns5WH`ZIb5nk_J~Jh}@O/_uNZ!A7rY Ok}##DOpD?_V)tS /i$q[{,jMvȖzm#^Z!"6D,t-ua+€K%KtSs?s[vöO-V Gnγsws;3tȆ/D$Il/U= -`\Hc*TFGexO,C=5.]2tV2,њZc#%{,|4H}@}O+G.=+'dFno{|M.@x8.8dIj Y 0&LeхExY`^ie%En #j0;hl'DzYv<öb}Ol6awRVbW1RȔS_lYgѦ(H lo KջwB]paÇ KY$jPD1!ȑfĘѢŌ^*Ig%]>\#,YFި1crd6lEi({ _rE.yվE WhD!wV< V<` !2C"c##@i4*4X;d" wܸAzɋZY!EZ#&(*]ŪNH|#ˣ%9 J+=(H0@ /r<4М(D,|Ob- )i0gE| 0 b-v' X  r$HR($|LEl4`I/@,.r]L1Ғ.ұ$P@:`tH Ys) kf0 j,∢l\.Iw[T.he hZjqKkԃ?9batK_,o>09Kq 5+RP gLȤi-BJj$D2a\v4."|P'’cz@G(DŽL'Ź:(>8XԄRɫ ݖ50KkyL"S8 f԰&@ig}1r(g.(F y~jZh SFo+Ej)AZ's͘X]8Xy Cp"X| gʹ0$ii,2Y 9lXhUOQӫ~+tFYSt j''RJarl/Ǝ}LKsto;v7sϻڹ:Ϛ)OM`$)u|T;C%*۰!<5:и)oxkݖVV, &YLw8#A5$H0@$v^񊒾I-RMaϲJŕO~>~ bTe/\ :t`6DRN-ФYM7т<;-E FZ۝ l;.f@`# <'{]j5 A 1}qTKzI 5 :}WHR:bR\,vgP AS71Ұ+c-kYSvQd؁PTy!:w^J.QtJ̋+v͸,1@]V Z4681nBZU*f(E=v!e)RRYt)v:SPzNnU #7>#A'Kn]`QECX 53̞ʗ_+E"GQ)TI7z4ڱwqbLZIRByOB܋ +0{_Dvk<\oa'|GzKԹK*۞p\ Zrb/cIaӎk߻"q^._7 YwT PxDNSz?-V{IWz[,~qk|c#.R]πYrP6X|KSD?UNۏtTLzm. öMR!|['1|wF%]>ԇ.At|A\ӖK*7ZqӃ,t|u h D)J3RU܃'9SrÁg@Sw,?^b)RtGk*-/7b x<gP|\ 4.~FnlaʂO .~ooB4R Kv.+/;W4§rOBI=}pDV@wD$iF+!~xn Ai]hh@*hAtoڬ5B<),B=L֦=q8Ē,AFsM e KBګAy.up' +/H=0,nДS3}v@`4Gul^^`@%5#';X`LB+Rqīt0"4L#&`/-N1,284B*)I=44͜zpJT+Z|CD2ZSi7Y7V'%B ȂLUiqbUe5PC4&y id k6Q$VJ|F7 F8oN\_ J HI:7QH]5Qva~x/v yo b` xth8}g2',]m]X`wpo X@HWl Բu!m X(G>T3hqD XkdX@J|A`OX ؉ ^E #֨T#+S N9dwvpYvz}qcb * 3k LVV ;:oz`a7Uj WsTw]l@@@z}|zcbW58aSڭ{T|㚧Q˜Jh9NT♟9GEH ` Lﶛ%pQz 1u39#E%o ,aX`_9GA(l!J4mzv>1GOFCŴɻr:YqDa!xS޶{}`l-sf&LL~ܞaۉYda § YX;-q:5d/{A<ō6{kKزU|ƥY:eAifd}_[njO!dɥ?a`\Í͜? L[`*Q}50dgϪu˷/֝+@ uC]+N<ӯ+CR90 @d&k i)a)̽E8t{zT/bv`F5wTL c0Я ߻.U  0㗓\Wbhy!߁mDe^kg]~̹gvxUEFh\كa"sDT~W`bhW^e%сAv6y+V!Qz<ާ~AUVn蔑/bh%ZOZ T?jen|SӕyUi[i/rӆrfXtS%Pifm5w& ׆FެxbJgn'fH=8 /چ 񨴐8+tqnZ ZQ1!'5+mzeoU{dxJ%.(dH/80F=/xaWqV0[z=*N0!e{xk,WcT.S /ȜSqhqF+-]|2aN#uvQуZ!f0 v/oJ;;t%stb‚sTmk:"X-uE083+A[ '' O(;F9zb6^dB .0Zxo UhY/+ J&d_jXʏ c&XO+S =u/_&3p8ۖ\Z23ʨ5?*kt+&`8v@2 [:nȀg"8G1;i3xZ!Ll8}\0* idx#PAol51dx\ ã=P8x8eV!ZK6d eR/iUTQ@7'F20̀~!z}¥EzxcJ&ii$JvrF2X#ɠF7J-uZ'),-vg.:f6]!x3gx4+,)q%.!3&h hEl5{I:Lw^t"1W81xBhB1PrS%9ԉҨ'8W@|c0_ECXl4 Ae)MvnL1`q̹k}`Ӵ5>.pWfBP'"r6`m,ؚ eE E6ɻڐt!j=0 PoS$>1+UE],9O-R907E@iakPâ; 7k۳,_7x&209̡ x3]}5`#g}!h}JOUdz669llN\P-jO  xۨq&Չ||L'x;& L1Ri#0I!s#ZK n˥vv/: w}k񝹔.(~ĕ b8O %WJRopeW؋/ԻuR@}z)?SWxfvЕ|/}i1 ig>-~{c/ W| qdq |ݣuG}g}XgWfFfXsU:H; cp7 )U$ OVtCw2b2xh{=FG^!|Tg|7|FX~~ugPmR:L0XChIFF:?cwvɳ4GL -h;Ay|7?gh&pv` wttڴF>`@FKuN&@m9s0#5~>*FPJv)TG1?-44H 7~peuH R&evF;H|~|G |#E}MW׌PHhpq7HUsg'b`d|ԍFG//ؑ7%sH(x e ՃP{~@ u@E:G}1@y}&@萳qh#># dsrdVSEt; 7<.{ehՇp|Ȅ |i=`׌,JȐPy 3dzkOra8C% / 2h6tTftLC<Χ xBD9 C逋ؐؔ7&@hDIYɥqoV-#A6"w1AS0nmQ^`t:y|7^q Hy茇I%iP# D%:}+J/Sz+wDG6R\ނ pד7*nYRVlgl%S|UJ9;vWy }qZ'WhIh$@rV\s8H'91 3 sH,d 9 py7aPFu蟸:7yڌ u\ONI G>U">f`j-˥t́ NDQy 0ʞ02y9YC%[ Kh<]7 }ZƐ HFM&L&y0X3:G,Li1O'-9 p 7dKr-> 2o~whW74YC ɇ{:Wl׷ʠl∊鐚75>B79C"t  aqYvAs8뉎3I v}ǚ"eXtKw%G # q: jLɔ鐔7/01KtA8g?vVI_R2#,xlb/ ?C5<:cPGP6lprhw 4 0 ~Fږ7zI~`gjyh!&`V7:1 lв#Y45ko}T&/ F;Opws;q(LwgWcD~}ϬK˞Dssr,do Q{<=uEY؊ ٓWwqJi{KjL}Z5#UZ>4@7-k%> Ӟ[Z O L}н,N;l8zD:Ȩ1MǬ&]O:#lְiMe-rUuضHzc/c]`$2YD83}#=\8+c˹s@M{ho@:܀3=ڭgk9k=ہ0=۱֙:y+#3Z]; }? &>/\ͲS=>Wηmº'}# m Iyڴ9̈́D|=9yQ7뭌ڤX|F  iД Dڲ}'*C06O';s]j>p<D][쩽 sos<|gh5\52ɄY^yFGɬ̊ym& KB݋ FЫ I1 ِF'q*[l0c->勭j?GfM>; OKmԉwcu^@]z|Ο1`:h@Z gTh-\ $FګrDIbҞJH\] ~v_Y8}3T0;{kLpR֏W.I^K ^؊ ;@E\s(l)Ϋ is  Wɨ(SgZ7};*kg޼#`F^?7Z0EЦWЬo#ZS&WGfg>~DG[мp{B+I0 je.yɫv0ڞKJDq Hi} Oi ,^D #R^~Ucg[vN][!G@qrPaB3b0-c'c9v.&Qvb9yI?-p3& "1l!҇E1B& *.E|`Jn(t1ŗ۶_6 &{Bbƍ?q N+.Ta$0)rL4~ln1Z|&NMj@nrAinSb5B:niwc]+V^b91Fa2eʯo޷[/uP|0#$cAK!32 & M Ea C4?t-Nz4Pfr&LxK# $ K?(HoIL覛?)Kcb_dg "? ,ЇB 0 J4NLPB MCB)|h0 RXP%(e`r`>>+`X*XR*[:} j`Rc8G+4}̰PS0+2ܢ>} =MzֽPÁHSJ}t]$7EԘDu*'`uZ}\%:Ro5ʩ]6f@6[*?~Qsf#J2D BENvX##?ElS`9@2UW/S͉GV_5BbZbU? -\k-1d\*iI>` .D;+0DĩJL\afHD=(?\lQ|i_baD`>Hg Lp ǭ7h.nBi\lblP |Dau,F:wASF.!1JVRS0jJSpc-dˠwLP1T!@.]t(  ʇ?#Y8h'0* ]q)t Q&´ӹ3P9(uĞ}nz6lKؔuoZuL!WY4>6l( 8>qO2 >sW?tmM9i:ˉ)Y $eAՒQ֩1VfpjWc4Ax=꣡,T+[`&g)6^r8[) m@.NљO~a TbTv& ?= S`U1ۛ *'h奨l*-`&ɐ-63`Iv f{y';saLaFb`T*,!I&]~2P`f޲vz4F0d4K&K#v1֙a"!Y#)3V 9tLx'C+;i_hDsPLЃ2o^IXT7n^uFA*CMnƟɋz\MVY JӶзe0:pz9MCk#jQCZ(n̤aL@kaMS'b,v +ي†c ^$ؓB'Y>/&>P"nU'@nA˭[8lrG:$2Bc;",0Ų^ bpZ}Ax` {■'˕앥,1Ytfx8˦ rSӘqA(ZtN=re-U/M H>L>tR0*J/iOK\dN'x 6ݖ[t;&nOϰ<@d I%T̶OaM >`G<0u3=OGP5d^#NmN. _d`)A>5z'/(w*.Z:[~{8j(5򺉏> /P ȇPpӉ? J.!"5xs<.d@'ԝ@!1[b!Є`hB2 p-6+d63D "Bsr(Ĺ w;£P:;.Ѩ.ѻyB `M`/D@ʨ>@0̮1pA2-@/؂̇ma#8<7s;CƈP5?ܩAAzx;KFD|5Z|JyْKs(n(p;p07KETdXE@[d-]\ 2@8Dь$(F. c@Ae$BJ6Jd͗DEѬ-<ːTO*TDzLU,ȇ/i n=&2ԜYP@&A4xl fޡ,sٔ8۔1K,M*ðKԨܨ9h!_g6Vtkȇ1ڏ ! ! 9,XQ98 H; :#bQ$1)(QS1؂2u&&IuHg*!-<|(޴bCP=)1x0JRxXI:J:,D|ZC#tLJ2`Qsvq0kX+*h}[uPE3X‘i *1|'`(F/Pb3Ӯ-|͇tH\z2p-fWLۏSAj+Zu,TȋI T̕ {p@]]7`@?h HD eDC R[.Pg[[W4`EMAX؟}{t^x5]$ȘΕ ^F=8H|iNx]Pa-Pї|Ou]lmRe/h^.X `N`.3LN,1 6a4ZlTKh.D2 }*pe\ETD)Cr1 -Q8`".=^) >,%X5 F&Y f9ШK8hgH]ׄUau[LQTIa:]9@'ccd?^-A ?|X`*` NY0'v:<ɞd-M+=۠ZE4<ȃ[~8-pV I9!.b/xN_p'8bdTLP;.S0*(@X.U܍-_WD}g|MXsdnm+gxg\4m21L/+b%x~_V0\JŐ1ň@@r &IWNXWu\.n>fhku^mŚLRyd͇x>'8h*H CT0hz*dsVaz<.fUa-mVk8mkjcSiRS׽efЃa&@=@Ѓ=lr*$Ƭ.0I^*p) T@fm8SM/eUSNc5ք ^Jl<ٜ0iI{Ѓ0 n`^F'X~"O %nz@v1@{-KuN6OF盾OW0Z9}Swp2CQ[M<$ !E'`쀎xGs=n2l.Z0Z%B5@{ ax28K8h<ӱ"-r.0rOeeX&Go=MAwnL_Cl2.c5g){n_ f bf6l]؃ X%,0$)>Q THu͵c#Ht '8pGf%PǰVae[tw>wϺRg|]E>Å/ڏ"%AZ=\ B=@='x4@)Ŕ928dD00htmh<gm5Qgvoֳ]pG$nNnw&]fnؖ[u-\ׂ0=\(9``$0Ls00@x6{6x\w6o+eExmkymiFWy]O&Wl\zY\0h}x7BUqK*`ΝoKaYp@h8Z{-`[ 3)HcQ^i+hnGgƇ]7/.Xd1&-10x 0a#'H7'!/^h2r q,l'N<0|zrиc_aEkNxafy88cz28u#_|)Yk7e)cJ L2[*֬\+\2 rڴjײmVm (޼1O>>p^ E>e`5FK1呛$H%6PB=%c]GlۆcLE j$+01BxbbG!Tw%0B{w~}& }`FhaVAعꀁUfqxV8SMwC EXn$$q>03$L]#!3ʚEE([ĥL iL>K!c"LyY V x KC DPp%%Z\Ibg`G32YAaSZS(.k̔"o$RJ$f*t.l+ŐƈbVnQFW$xYfjcRHÚV 1 riy }F ݒ` ^&XП`xp-xMhTEHjJ+1MLS%^SIW̐n3&VJ^qTG*vkjzUɅkȾd1_{f``\GZHD: ˶FMzJ=:F51!OYIFdK3j}EAz;B2GGȸ~zD ~S,9a ކq(@;Yִ $?D H>$91C!sdW6 b38<A^ǽy=I]@<N{F0A50?ݯxZk@5 g\s$IpW"fSR#& y2S OX P \@JY 7# %2 u`cs5j)_>B?Lugn\e B5&fGy%LffO vV9LO:QXT`\r 0B9DLZ>DݜL5ѮSn/} )PO&\q ^ْFT3-5rzxBM)2rAN&5٠*pTBW@FnTrI u*gaR5Lm 0ZN34j-GmPPEd@SȬw=T8K%ñu $U f1lL0Y!]/N$;RDM7hLdUd`,Z2F=(pKDeⲆ(FlTfȨȺK^2Mtb4Rf6v l9$OTළ,%`5P^9av =xP HjaDCc-u(n Mz&ڕu*/x{!]j6;8T)PSvZԥ1 Bta mf S,V"yx^8,M}c2fWԖvMIkOv50MLr8#8`+l3Д^6qUYSn7/P@1ȰI #pA; )F*U) lS!}B6 fo aJQ]`'0AUpmQ_?r :]SnKe/v(џ2t[xRz'"DT+mW"L DcHq;3hAjA쁯X,pEu\_}@$2 #A3  ) I([N¡ѠlHޣ=ѷ ܆lH=DEj!I``QUz !鍒$" I r܋^ ֭_ <ʣ |"\uROT&M <ґ5HS<Qw/$_-_h%A!0bVH Y_@56z(M ˟ a\aڜƩ "( ع(#%)Z \=AU| mG(ROwQ3 Ɂ=a!- P-!U6IaL U4IHZ 3UX3T8} (JXr9==LvhY$)*&_#>>XHL/=U 6=唩Rm(VUFD` c0m9&~T$jIpvXWt@*"/1/d( T& /4%fvКۂ >xr AaV k PmI! '<饺z]F߱fH ͬC@ 3h C=˥ajLC Yo &) UNAnSxa B TXǵŶb uQޮ?<  h&B-qefIfFc1.C2Ŀ~TQ zQ)ժh(8bG`b^SX.njP_uJ0fY\O^OS 'Tv/Lbg6Uvw֩ٱ2ڡD"MLIpܩbw!ţ`ځ*X)BU|qBs+g@!"+'Չr0~c$ls}r AQ , B_BVis)Ŷ"N9+:sszŴ. ؃;"T>e>Bt Ï @o樶 BNfNE<>**#EBrm'l(5:#0(p.T[W=pqx'O.+He G$vv=<'3<>$YbÑ>vprxLX"Xh U(Z =tt~]s:Cl=gwbV5'eOqW6(_'sfmޖփv14 tSxx/ ng0C>DO֝<˒scax4xnwwx x[x_1 /jG65K/u](gLR'307.xrs5v/]6 vqvK^@kO.ڝpw'Ǒ(+&nnxb-*b;61I>όKRN9y͚tMW[GG w e]Aa8 67K(*wczWXԳkw:{8l2n7D +2@jݹQA fv~89C1cQCSho?SxZ#;Eܧwq\E2u"; q1MAy;Gg3[XPX8hf_eo<>zgx6$W5/lAyͳ2x%|\ k0=7ŕf)#L*9sRPx!uw_3S`+{gͲB =9Jx^4|BT+|dVm*p5 'w8wnk@z3`B;_r-scUtsA!cY]˙=~f;M(Ιq3xX~}{*~C wcw\..Ve c}f&Ŕxtb넾A͛~YAmc:d /oOE[;O vxv+?@|`A0+ .q ,x8dԸcG5^dJ|_Ȑ1K)IaP# L0ѲYOVA={" xVp ZP* HhKu?gѦUmt }27Âɱ"`x+̮ X a!wp˗2\Ɣ3 zrdl1LI"cD!\p jA{l=Z^*l.޸]{%J>}z 2zε Fo 9B^@vE yl2f|2Z,xc&c>,&\Nx;@,2A;LyÔLA 2N*/*2/VH"@/0#+ÃH.A~))(tI5[5;F9}K <ȸ,\לö@%E餳p;ңjH?߃AI|C1H`JBFcC,1UxM-qL3]=t QUK@\L/BqW8T`0 } RK}L43C-X}U[/huq '["{ȱF7^?|ŽLdVߘHRRm #Yma{Əx4&O!2,$p1Y衇V nvKی&vf?9T _&2exLj ̐Y_zenیb샄Өq%+R ה1T7$BNzi?Zo;<[V`b  ~E.5SfaWHo@74A-:cqiJUsJ[{wK#`.iWw>uy/`2\ hC…,Zr?Ng;00@ FfKXԱ'33\7k ~Wb M5IFDx;J\{C)v Z(6 Ђ ~dKJՇl)lT`=SַuPvyF9SqY1a BFEsQaF Q`k2 uE*FxfF.K"Qi5k S(Y.{* sXDž~F]*%!ɋdFBR<Ha.ސM?1D0-L!^PGfrG L3D͛tcGmgNB8JGz4+;VAQgz6x 300|ScFSP\#U,J>XZD%j7; ` iE)!QB)~J:6Sޓf^)l *T&(U0* S+CpSNU& ʩsT:50` VXaD:v%֕n͸Dx#.X.aAzhXvp^hf6-+Wʝx"ⅿ4O[zܤsBQpaϴ^`8>QDc5q9oKy]}H}1B}D+]lӊ @ /ZLDld]sđfJnb(rG5^E0- k wG<`M!0@`]W66" /G,/sڃ+0+xDWPDP!'&9}Is13pUñ0V0ܢ#%VX!}_00@C#8@0d'>Ke|RO[I5]pr.6ݢ>pFbmrc*u]w^w۷KYTbo8n~_7sNQ v6 g3{Z4~]%&)nmYvq'Tb$-~&s{, U>t3s_ӡ! ,I؈^ȝ_E]Th('g h*hNh"E{hy<؈lj+*KJ9V8h bW\;d}O)tЦ&$ڮh3I}DwyצB^ Xu&5xzy7YvX^KYehzG[XpYqYmpZq7XQߗ}nx(vxD}xhY H*\ȰÇ#LDQŋ3jȱDž:Qɓ(S]VʜIM; O7 JardمJѧPly>}ƑʵW!wZ*B1e%ʶmېԪJlxEu˷Уr5'2{*^2,JE4rٽ3kx42 6vWXn^Z!D.$pYʂںwt å=?Oj}Kg|4([l1ړ6Zzl_kAx2dMfxYo'F_*8m)e0iqvg2`߄6{GJTRV|uq2P"MThסi$ Wm&UIRajA!cTf'̝mLXI2U)>V|wvR7"5vcu S8ؓW) (\ N2aVjJxWG_vZ^ᨊ~6`YsNj)/J돯){l\랜qp߲we_]Z)RHeUvm٪iXZ_qo^寪7irXY{!s F~¨yV( *ZEc *-s_|^"*-8.-5k|AY*Gu-%ME( -ܯSOٻUXrؠXVwtfg4xؠ6<g}-u')|~9n08Ո ʅ28tö-ԸS-1׊F \^wiGZ:mT2(T Ã-t/Zkhĉ'<.ȹ2RF(_`oCC״TƧ+a|unE_W( O[>пmOUe]DL05ZΜ..ΒF.uEa{@P2!9 OALa P@c14X.E'qC^:L P:ԁTOFtBֱlWӂ,P`\V G$ V&=X1$уXuOP<` <8^Ƞ uPM}r*2 PDjP=pcȦ2\)B: l ]᝖ݥو (xIX]K'٘$0  {@ =>p KX Q'Eq(){LUdH+bblmCrkukj!SE=?G &ARU\>!9O[$ҟ-MPe L.uA0/4 +]W{Um {l? ePJŤ|hC!"U눮[U -Caja:̑uy q0 ]1_**x. <؈Yll1P3$ %l>XDj  ,48:&LMw/Nrd#\'H$! `bk*MzF7i&PVIqna 녇3O28T Á [P \e;sNDm(l~*VRȤj*Pr]:ց1_*/se1S2Uc1:` AN+` 7_Xssܬ5+rm\VG&uN% dG>v#f |\;9Iv V8Zn(Pn MhO u[nM#vhbfi-oRT8H tP]( p@&{SzW gpxs|fA *gTEE`K- E e_s#5"ggP#wG~HX\( #Xq$XmW+] dk(|8(GGox+gl(P h(P_E[s6a<C g!F0ZȅHHpWZs]Tu4r$|o'yWHr`~?36c8`vb;!.& g!{p "V8xWyƍqP)WqD|pos>nv4H6h8 ; =SYX[UQEI!;JÅ)2vI؅闑~KwPS{77hrhH[r* m pI~iQ$@Y=X=DEb;b "V\Q29~mt,xM4a'X\)x(X kyb j㓹_\GCTTY@)Y(pМTYzItqfk5ȝ}p:oX|Y7kfP6P3Xvi "gHҟ: @Bj觑۸fex9G |GJ(X8Hh:yKT;'*&pvg ^5lVB@Eꜘ0 zq:MbR5kXnG&+0`(Tyh=aã! I[dbURI`j7g{0G(p|pcI(GM͇xp\f X(z0jڢXHi\% vHĪ.TG#qȫz~ºSq 6rPz|0V Кr|k& .)Xj*FӢxi x ePY) H}fP9|Ɏ& Iyv Tf`VTv);lӏw pZ_4:\tWHjZmf_I+yz|uۖT  [BkGVW6O` :P:vh[Dnж6o[_+sx{҉IWq>_IM'GnKgۡ*@;q@GVEnʰ NXhn (V&E[4H$x^j:Ej  {kV"Pӄd| y$ Kȸ'7 @00˚&j[d@b:6P\XR*pYW p{~\Ym'kSZZ|%wdɫvh:A ͫiBڻ Vb罜GV?NGv_Ƕs[aDIÀڅi+:;lf+Ȥy܃l( vh (IKP *P/P){E0[Eԟ(@<pxc|[":u\Ky!Xx|~pPPfKa? }su (X, /P|ɘ,\uT }BPXʮ`E[_>zE[q\P1p\\ %GWy k,dp0YklΙLP/  ps"L}a\nۣ֏5Ol7Ԭ:tKʀB9 mтڅJ}KWk«oz|uFjS  ` v vVܼEP  Pv_|E=Q$YkhG+L}:OA@pC5Uy ^- _M`xÉjʼn\yzSr-Q\K EдN[ wpdް0 E Eмa%;ubةk .hٶ|,[Q]HPO@0å]ڃ*@#̩gtn$q-ę,n} w0pZKBpݝkKQ5H Lk4UUVA >S m(@`pD}߄z! :u^uyupg"۔ m[0Mހ͝məv=⇖ʁ4E*쮳jE-l\ J 4C j= my '(*>HmۏPrdfS@p؛ŭEmvO?_QhفtBoOFYʈ\N` -48bHӜK@ rwѕ҉鲀 @|wkk ^@屮mO.^۴uyPNGQHVͮ_/S qC@- >͙ Vm(З. ҉~:fڇu d %δ wV+\;voˮد` %QVߕX3oǨ:* /~ܹ\X[P"md|}]aL+ثR᳎Ӷ^$uD1DN}H .""/7x-;> \څ̰p,ͬ T8o)ܣm\!D@;uAĎ'ND-:*# 06l 937CP:8CBѵ+BF]64-7tC/ J:ʨxbc#\ڠh<8*O%0X/+^E%J= SLL<а4+L2X= S"㏅> jQH]$i$[M1Dt(ӑv'! j#meQTNu>XK`W{Ҿ0+kČ̴RT;``PʫBnZ+"tocSwe|!Z^w&TQh FU Ҡc [Ē=]W*ӄ[ /,BI0.SْeO~f|vC 2$FwKrz"@ZD(SzHQ}Q?GUѦTaWJKnL2ʫNS2^i{op|_`!,Q(嬆iN2IDJR$ P']t踇*z ϕ^jWD׼ٌ-a M3"=~f|F!7t9Q4ݔ7`4̫:JDBǩQA82PFNh V` g˭7)3 Yg&9ipCs cHNd|v{\]\-}؂HZs:HFt@x؀(uq9s`iRJ&+UԂѠŊes^g: Qz^ٽXtoZb|-e#$MJZDxD`)}Ny DʊE<9ёrt2 (Wf R=jJ[.f<6Yn7FkAJfhh e/>B?`A:n^v?!aAzmȜΰl}(ҍaO#IB 88\Ԥj7N:8}b,U%uęte&h!m!eg4!_n]$ 㰢.y~K9,sLYj8]"+T(P:z̊DlUضNӐӁi"\Tg&AJΐBn;]j (n*\ HL+Jk6+(mXG:1osuEŭ1[BHR:ء`D7:).? tXMqj@=S54hK}Sp(Z/?@{wg3kΑm[|ZLFA_{gG'r?u3ss'\yn NC@[ Q+rP;;x''q:AՋ0p㫅?R[0}HA<<1<:k0T.bT(K~)%x@'"2+K3Ri%\A7hA'؇4:IIHG% lO .'@KJFA?M*# ,LBKDK"Yu u'.eX'[0 L BvTxt/010+#&,JR2 5k.DMguEE#R?$3l"KR?ϋ5.`=#x0ο{0ÌPI e/`=eŋ/@Aū)ḚCDŭ+\Ȉs";E*rb@ )-+{{ɘl[vKWfg$MD!+"RԘ|@[.Z˃`}x`\Հ%0tpB=b$K{#U 4|# «9%?m.hD3=2[Zl)$5#JVjJypB"1YT_k X0,&m|#TgM\Q {JBB^ϼ T>!_ņE]R)`-H=PNhTY\S HU1\/_>)4+R۾ۿJ)0VkxytzʨWJ8ՔOs00]0ٓbН~_ Q!y2%V0{> 2E4nӬҪa#-3 ֟e`e JUk0e8Oh%^\hm8LX)7ld'4 |l~^^Tn3*!@И|m `$>q@Zv5܆uPeߎt0##+'rkpC$6^FBtg|FHS8Jd]]QZ4VX֦ll8߳rx.*YZstV:%q|ZRM >XO70Pe@Xo Pu-:MClc+gS`4akpku`hZV)t]e': T=Ѐ~ЀtPd[f>ARhH+ ;06X"YneDFwf[cVC1[^FUz[Lb:"D 4N<<@SøT=LNTiNjvA%uokR "WsU2Eb7exaek2[}:^__v\~O!u9EU. H)cހ~Il3Qü~TȐ"G,iRd" tVL,g\ZXXQJ uA(t0ݷ2 U),ieQ͖-Oq37juf5y1qE gܰUVYخ9#cg[,ai)Ž2]p狍4OVǐyPӐ*cōmT$ܸ| 2kL)VN~RaB"ˊbE7qI XVf,:՚>Sa9;sF/3`k>a[gw3 =hѱ _AM*TP3s D1- v䑉AK-SM@ hs(QՉ2UU2 Uq19zl'{δE`6302H>[eMgZhtp[J6HHcN81X@[1JCTh0C3 BQF:‘Kj$'09 S*2a -2df8 9aH`{5gVb:gz5_2\1, ן`**MNgm{h<j(c 5@ y<"  4pK:<, Ҕ3-qONdPASXedi[n1y\8aZ\y އxFaXxo:n(52 JC |-ؓN*lyH7KLe} iGg6,~aAǮZ ]OCXb(]tv`x_byuF3t8nxЌ>->L4D3=ApBr1TXV"FE:ӝ&Iv҇%YEb|@4N4ld3%np㞟?,eS0G0=Q>k   j 5Ym!$-p@.r1J#`Ag0QN⠎U09L( uwā)?ї3PAg^30@.P; /€M /x 7=>RθF1_kar(5PGX r@j$00IRAqF0 *H, Qu XcCQ宴_`j^-|9NL3x lzP;.057ģnO4Œ/X6=\KXQȕ P!Ɣe$ /hjbFbZ0)aj}=G1r?W;'1J8EEЇ`)'y: tB>x <(\(x%|1Eld#G1Q̏F#%)MҀ6䑥SC#JXaØ]Kvs`C{0bp%׻$O 7-㜪 \/` :,E00I^0@G`eZ&qd" n Op`Y $f# O^O=,'B.,O豮(-fQ+geKhˆF \[D!SJ\ :0t !zV~r3G:JvQ^.<(H[L \, 4PG:.GyƷŀk1",a,B_5X@>F!q6/g[vOx<#GqPU۠;=:&o_he jU.28D6h cM"i|j eC O]CŘee=H|9%HSm[)c5sx6 }h4?p\hl졊\Dy-SPV"Z5…D^bֶ͚s[&P}6qv9kAbq=؟ ۪7 jAtnRP*/Eq*r2“)iv )Vm׊[>`dt^8Nۮ}IX= ݈Kˉ6h,>0~ y1_C5ը\>DxC֓&e )Duc J 1t< (ȸQ,䂺5XNmQ-PNI0_ɟ'P$B\xW4xd!y><V}DĈ]< ?bYEI=X:B:<]%4#5PCPֱT]cVAHAdOy TAQvM1^:EA5"VC9 O,h\Nq^?jR ,<]*48%B \5TL a՞ `68]\ą h U#tB؃2Ј=c>(H%"]/,‚VnHdF:Y"]%yxHL[^e=ixx_#\&QA݀pR1F1ka&8$$g×pK! ޿m^j4j}aUTA!e`aGA"U`T#n^5fob5\ă,Fih5<$fbfnfsv9N!bz\Uԉ'J@zfd${ Igl (f5 @EUCpك.H'f>,,B~rn(dDW@!i9d )5uAC#F!$b.jn.jf&,J5jWfr?zgbDZyXQtA(jffioC[C)jrBib Vn0Y=Vo]jrF١d.M@-x,0 ̂-솯~UWވRP5C L将 zLHADt.Df! 2\>8KVSI'G%=X$0$j0&f΂!<1{Ac p"oe<@<0p.&jn:h^^=;Xr\4Ƞ`n4Ű L5!tomDM߂ⴊ)5X4x:T0[+5Hl$tX?JTgh"h7,=vu‹èsj465v,A1Q_8/A 7gwrT4NBqniEf25x6툥k38<lr,x*ASvmJ7@GS~$B'QONmh]X" jֶRC(ixKr4/Ew.΋vvvL#Y ay:L:C|M 4@ܵG7=ܣs/u[g9ʊCHJ?AIuIByqen(icriRiRCl*(Xa_1q"-v5Lc̮6lĔFAC):5w:b5zώN*,5 +r"@08{Q(m5/{Lc 6[;{:L {?d;5qΤAU4μ;QLr'f |QAGu":8GA|O|~wB@;S D-(;W;faSbDĻc'T{_5^;QW=K@A+W<㶕:&(24<֟)ӃR76V=܇/|şΎ_ sj;أii=59=:ǠjX6h*><_9t(ӢFC,ĪASk%GciP=x-ChcdkhTO7N4HsЪrp9pCx3q<ݿ>@8`A&TaC!F LŊDP.r9%_bL,,aVb h ˘,t8hQGM%0j"82WGB%ş0AP3F-OO_Vm[oLL.zRK%X9^9,W9Kc=T f'q1gּy`'vASj`KN>AǺ->x+VcM] q>xѹXLim|q'[ŋ;hq+[V|yy\sK {x\gj P@⎋K=xlhP¸CIl@AK KQFԫ(Y%&*-t,DLRɂ[/Eȹx"y/}į-; 3L27d4zAN̼OI=I?0uD!-13K/̓.14SJQ4GKIM5DRTUa-/V<|Xq-nQW}__.8e13+>aV*YeDZMVo5ZpL@MW]R! ,؈]܉KPhW'h*Ph`Nh(Gِ}($hz?^II a8V{p 8fg\[ϫ}| tڮ6JhޘXvL*.h)%hzjrx4>Z@vȘޗV9OXWv%6xy6X;izYrXgS{9ypx*}x98[wrWU H*\ȰÇHŋ3j1CIɍÁ7˗0clr0fɳ'F#8i3ϣHLI+Л`TJUMaWÊ{4 alĈcpÑKWGahuX -ܡ¦Lإ_[>u{,c7LcMukWC4 榋;;^װ ݺ@S&5 E`WhŤu /K1^Z7xpGNw;>n{XmI?|uAwSǸ]~ fD QZI(F|}ji0}$rb|A?1UZ0_4n%`? GqW'"!fiՇ4:V9(CAm ~5Mu[(,8}̀rw1jSN  yq蜍饙WνŢ|E"QvJb(jG [[q$wdZ8Qz(؝y} ^km\jvb\^Z`v-ªhh?6+eIhi+3Z6Jؤ+\PG[Zf .|an.++1Fol2pqy.ܡbC#fFW.\_ušwQ*rEb&eħZ,3eFZv'aDM{d4gN?]!w@Mջïi<#w۰}'+g=p^ߌFr!mZPf튿͸U1 6S^x-~N؏ gD,{eS˽8W1:M(֗#34|Je;dʯf]+˭eѺٕϊm[Zڲ"u kN>vnFMH_ Iz4-L'|0hG;PEl[zV%p5 {i._E!5ӜK 120Ty;8 p{_~8_qwУ& ISQF4!(#F9Q KwD CBsHw8@ 6,Tu{fjy{ m MM`?Dg*'vţ0\lfU BJ@-J@K.!at;A+B|0Z׺59_ppÀi ;vHA mi.5 p m(K Af6e:F(Y؛?3@כہ6O; Ql;>TfZcH4u; y&;@)D3hƛ׆氱3 &<fOA5/S| T{ƶ"^HKtooo/|[Gy}r}g$@(+8uu. e kr梇1q6  '\>/B|ͧ|6vyv˖T_p$g0GY#x7IV)y~hvkarF^v gsH}}JXt~xKKHd+_`<6xrDK5 pO!,nFy%v&fa G^) G~Ps2vygswEQKKEcNiUMbVoI_@C={no)g|hG^n5|hЃ|zU<4?$N4?<*O{GNT~^ha'hŦ؆| yyH؊2g=p K;dIZ1u{To&NtQZJ#x~u"Wr'Mf^h62(px:ؑ}eg ?CXo6@iL^e_{SC 0Gv((hM6ygn/8p/H^g7|$`Ds@bC*U8@N17{&Q4?Ǹǵ33^ȌGrFKɔ%io)i7Zyו"w ~CH:Q6&lucpC{x~~A9rakfa`٨nXIpyD ȃY"Jw`fQdyHCwx{Ɣ 1fsDHg JpuC ofH名ژv gwv]|^y x(ɇɎqWN%NxFfV(I|&3Ed` Ɍ0ڌٛɔiq32Hy J J@`sp|(tA#NIxLM8R2N7Isy~p/e d*0z톟vL qچZ6y4VvCڠDG"T>K0`(CR8VpSuf ;閩i~U,g` Jdqjh48 ߈E@|@sʎ9V~L\ɝyfoU2Uj /jV"gȔw꣘7˩y ` :m=sf U_8VNTUC P%@Pڟ#kC9dnZ pD@6@hWBK8sJPpWiUJIK_4FW&+ʭZ0$K^uiZ|n qJ/+p4k pihsG>ۜ*$ Dew0>'b)Y#A早 gY<z.Ф^ۭ"K,$h7h62'p|ǧ ^ﰷv9HmDs= DsfCzLUGKV8ɡ,IaJ"e!c;Y"7+ ~qغp7v}ZvA )$p;2{{eJI;ٸ1c7幁pyKU^ս "Ka͸h˺ 0iЊ7ϗDUK22 FsC\iKʡ؎^"<%, n.Wxp|A|>Lp0HBH,w;  +I{Htx]wɒD+  d)^(L!Kn#/q d}z܊hxK:ypeL9k QIpָ۬I,Ut([-J% +ka1؍Jdȿ|P%(@   ૃ}s]4m;^Ŵy$ʖ{AA\e,4jlu3ɉ9zKJ|xC=ԾyԾ:DpwP}h]=dYQWZz|~|`=Z-,ڢ-:a[MG5z)p.ϚvĹlĄLЩܳ ̔-+ppV-E׹QY=Ğrňl- o!+9" sM6 }>; M> yݔMTXmY ۜg穓ʁYehL^ CPƓZ. +YFiǧ ܹK NM PaڼUݞP gy~;?TC`>>乂ή<0 ܠ6l)y)@>]|e핝 f^уk wn.]p_0sF ‹f_Zߴˢ νKj^i N٭Կ-M]޳dx{۳&p0ޡgVQ=Hĭ4H..dC;lۢʢ p4X9eh, ВZ?hN`~g.'R/߇u\`fL[;:^ A\pYNM汭Hʄ#i웷ӳzlLR>G8'޳>ٞMmΞI w~ >;ЙL7MUC?WWҡڭn/epOJ},ojmI?gͺ勗y_۳ˎ=ڡjϞ\;La| %KrAiJ-]S&L#Fm옳Ct1hPS@):(8M*E ?UVMG/)|ᇈe⠞p`wSZE0X"vqHI`h6va/a衈rb1>b-qa5\Ü]l1یb⭣7#j9f\n9rt +R:!n, HK#|OT'>"h1 o̠l٘4sH"h"3~Åָg Đ͑MDCe 4]p ]j|q)2dG"N#.U H­|z̒0Ǹ1?̌" 0cCy`bQh" u…#P@Y5bC0rY W%Eb]\4(%PuGʎв#bUI =5W@08ds(d? :Р)Rڌ(Œ/Fr-CV-v![ 1]P"\Ll7x}xt(Kۨ~9S26L0+H>hx;+<(X(+0[$o . @L3W.hi^MAi!k a6YOn5c 1\œ%pE饍gFs}4p\WfjAjdȑNlJU|HI3;<+0;*_ѤqbY6 H!g/'38hC V\@ s\h 89:F]{ph箍Âˉ _d-)1rg9Crө=ƅa4lz+ bG<}x<`aN(DNiG08!I0(=p жp:lc4^,Hklj T^[V`A'蟽<AQ~2Ɯͅgp惰HUՋ2 VޫKr>S:bF6&3i"3]k#ۃ4)fb$?u^`Gw!stX͗! 'cZd =d]Hdr1~µdX 10<|U@0%L|Dլ0+L`-j(&\+w9AH73LMR(Dxl ;DqXv䢀)/L{t%5D.v`Qf.4E bM-`=cկR3ހ $|{eJ:tVqm>AFŕ}N`b4Jħlkq;È.qcy4ewX,d!~B9"yfH4>925)Zˏ|ȩycw .JBŢ aj+ς9`- @dL&s}9I(#.G5fOApvҕ!QӻҌ ;QDyTC`X =uV{1-ݓԇU/*i8u@jY硙]&y:M#u)EF'/7u"Z?mkg7̍\NXy5jXO mTFXI9Z64m͇01l7zN,&! VbsL3UB]`O;jW'}9~ E@8r4AnRm_˫䃃U5^$3"\ Kx}i!w;}AX;/8P6Bѯ =bЂ#sGڭjfpPP -vQY h0ƩI6޳+>;Dh$(/H@!;I w[%?~;|&> sr@3&?F^kz8:$>5i1i/8CkʝCv(A7ܬ 22B׻I+L Ed,N04U>Ci,k`E,딆cC'50]xhƃD ¼@A, zvhR}!yԇ-܁'Bi" ̔Ytə Fdv-*#Ґp 2<rs ^T3~+ԉ.x :\aP+3X>G9EWlk{?xy@ EC,}Mw=`#b@-=WԊ}50C^~2Lz)pI k``[ȈDM!8plH|8䉯3el[Ez$ǔ6pE@R,[.^\`%OWT.ɑ~Ex?%ۂ})@! ^%^gnq&p92P-qN6/;L'epq+(Dw3]QԲFVKo>YatJE@R*4W Tfm2 *ZEgrpd}Aۦ"nxw(w b?Wvt|2%u]gREYAE!mvV [ F Ə]poРF !Ôz>S;Z^' 4si׳w8d_h%©d+HF5Vtt0H^/B6rIy`yE.v[$z~`~C(H2]0'rߴu4Fnbb>5\mD$?H{`0.0( u4LdvDo,U\DfWo CLtuG[vWIWNnb2/ ^uu ZՐx0h23vm (Bx8f(fpF'"@ wb M=HVo -WU'[ uyl0|KO yؽ VRv`^S8}o]vUnW9^vXx9& Ĉ2#Ȑ"G4b̙v*ۥ\%̘2ai#Cw\J'0\qMDs'pXRŲf.~#M.])#ō9z$G#FDjʗהq;W ٱc@I_!rT L,@TjF4}[h-cѠ`e_bv)6\i% e^xD`}EhfK 3kiqq#1MTDHF hrI4~8B3b@ vR%w `LUXyVx5(cw[~eaŜ`[]m]idF^p4|p C(ێBPl c:9B.K#d+| + $g );Tp/  X1F t)|ŕYߜw9xׁ Fx4W^d!Ll$;AX /RJD/6m,DD5c+ɸR`PSD򬖢(SN0ɰ! U4IC_8- ;V[7/*V(}I!&a c8!*EaN< <$hDf)r2QdazpO2w(¤>A#_(Z f-5nXn1U; ~=T0C012ұk3CT[Gj=ґJ@A!S,(tiLmu$` ZP;rwj"`.{i,!5.C[Ząjx^--&RJd [Pb4㖸̥އ]1~B3SwĢv@Hq[B4`8DFh!~N߉P18hΫSUSPRIH ±.(57o[UZ ",E/{8+&!@8& c_"8{R` @پ0('Rv0hjcrwF];{4hE3-C#adE cr0E!K#ĂWzz1$ 8v=v; t T򱴍j׼ftS@{-ԥfvjg\c#XViNpXa5ֳ:и*w})葀,? $}v׳0t H"PCCzYں @ =]䚘dQzjHvb Md3A9)>8uJd -Q6QBw}FZ_big_T{W݃}ٗ+1Z`d6 +tW8!Bх-`5ZB<#$J!j^13l"NY @(}E,=TKOB5+P{{->qޟ 25ә^RM€ۥVTm3b(SPvw)$1) aHhwܸôB$C> HF i/Wk}n%3o={AE`-Oֱ@M {&),%f06\8%$OI|l[9}/OdIfܽ:4Qh @ `FL\}#ݭLJ>JʱóN{@^sL,s|;G8h$CXE IU6 ^iAJaVәۙD80pImm`e:.HL @ 8 Ec_{`ޚ_ɥ52`"CF = Hi`َ ̈́)A ;!%!bq!$Tb/A4d!%ClA8t \$FF`A EMJDOr ~۰CC>LbcHd8V&F"\T ݆^z&q6^F%]Np@ZH؛0C&C8 n&fR΃L]z$ZA$i&A}̑Gv0e .c*E~'x6\%3F"SGzxt XR4܇4fSbg r A,e\T. ]JhThIb A;W|_G0;f Fdh"Ѱp3VKQUK0 dZ4&5m&SpF'`*b)R&eZ(rd2*U1 f ATV`&A&;/ ‹j\#.ddq4*hJCss̢%Pkr$L.fbnރK,^£$d?J J(p@TSVU&%Ab.L.+/K L+V* ʪ$i^ZaK'xKpTN&'%E>A+* piuH$r0DKpbA2`&A>FMr fi܈)'Jl,^egAfͬkvy$l֫)ރ*B.Tɢl:-rbADtF$ÔMH)J;.iv1d&R*mr,B0kz@&%&P"n⾡+2GlA/]Vn= cnn]RR2pV9it.C c&/s 1Hn1(dcK'b#fRn;lE,ֻk*1'(=.harj.4AjnA 6.',TQ"U*-/*-꒠:{lNpl(M{z,p]/~.ǽ. Cnu ['~aw I9"n0ur?1iln'H 9]'R~o"P*j-6L܃q Gtcs4nDM{oK᢭M6V%<h6.ȴorU訢~2gf.NEm۶hw[{-:^hM")w72*g37y.aM7Sj!۶vc*. c/6ywmvr-U"2x}+(tCmesr#"1pjn&*.87Sw{Ήc"ɶ8ۆ|+rQC8ql50q$yaぷ*FsySA; Cpp1voU`}C9;8WvcFH8SEpnuSERc%.g8<9[4it!]zsAljmDZ#xc7v1C[`Wz| a5 grZ1u?$1:":xL';jd6-N6&X{ 8֢]G7f,dskaj"q|;};;Ф)06l[[^p6\eL KbG?s-vQ<|,a{Fp@'w~<ȯEEɻ (3xȏl.+F3+I߼pT.g.hǙ ;S&үJ;=KW=s4=x*P؇}#V8rګK@Gį ñ}}*BC|++k?^ݧsph=ɯp[ oТ<~end F>™OI8N /\]#/LL#?OS?]}w"뇿gOo~@! ,وJ4J4^܊^AFTk"W(ᙧi h'gk*Pi](FNh|h{؉u5\IGji!8V8e (*[욈s{ۧIwhХ7JsinTqWhyv5LYmsQYy}٦U66wz7VydXui{X5WL:7X}nw'~xv![yyB;|ޗߘz>ژٸ H*\ȰÇ,=Hŋ3jȑs:Iɓ(-D0cʜIӢJ,[ɳO*ϣHU ,YXJ3իUrp7WTBbKB *Kpb$ ;,EUܿ{Uoӵ9P ̸qv uxhNbk\Qݦ4̜S6ٝ^"~^ ЩsF/[i<〙.Xglw_\#My4\k˛y_zSѶ王)Coն|Hߏc˹TmH%^I'\d 4<Ɂ!ւ湳&5e\,& pHSuC ; CX["@Z{xovS G1y&KINtMqd~bfBb s}^-pbxĈhHHgr=rpO}gRw↣gx·Wa{Zz auhk7]Ǡ!Yit11czX/z(ZΧ]tU{fâFӦyWe&RYer':x$EYɂۢ%Dm쉻^\ٵn-@l+*<]\^:1Ċibâykzʍ{ Js%n-hJhpڡig+ ]f .#.]5'|'Vm!{{Ŀl!#X)E@D@Z˟:uq[S|"A:FЋV |&ᅮf삹Po$ubh^UѐKBsǷumjSm&c<b rj1pWŦhBؘK `Ն:ѰYZr3=nqitPs G(ޤ :J 撣sAg2e..nCe2]k Х.uۍI6:E']З4D9 mQwn5sb7]vb!Kڐd_\.5rɅQa"Fu Oԁ?ƒ?In| }Qu+7>Om`3;-nhxs='~"4(@K7n! h7:Ti0~ oi'T%BwCx9<)#{U6yD$|0" #x1xoN0<i׻^@ dGՎns$,ށ &,O<K$ H6B P#F oƮ bֶŭG aU7ëءWNAG#`Fs <>Gd)c\R^ ?Egtco^]tMtgR1<0@L60PC ,bMftwu%? [436 f;Q@fsB,?aF >ҐḤG.h$sܽ'½dFl(f;E&Yq2&Yˣ}74py:v4 ~C0?Hn?>@:<<8f-n:,N|=;Zbw.bd@͇ 9.lvT& `=37+PnDuSLUG?#G`#7k߾rрF@s;B|ϻ \A{W(88 vc4wIRo0K1d"94{{4b{Ѹ=q?W&`km# ZuQR5OB=!3H!XB P̨<)~v~ϊE)e::J˱   @m蚲DpW`7;!N#bH:C`p2jY K'BO kjs1k-J` DL@A 01)TOTfɈ8nwՎѩy[YTL~` | "Mм1׌b {r(C)'&;wAf-d1닺;AlT|wZzen28J=8 ,$:J xp6 |w{4hkxd0[[Koǿ|i G|r%5W뾮I<$k̆\GБC׶w^`Wup_?` YU[ /0\)~bʬ olv4g7 -}d+LMɌl7b r H] O#0 צaI/4m`S:0eL|כgo5ȭ𹤫b[$k=̫V=Xm%_MZL6 Ul 0 .à sc C5/0K f˥wfglKd@@U- З;A@Zm^iEݎf9+m p;sm [ym~;tμM@Ԉ~@ϬӢ{q)&@XL;s@@mޘ[Ц}kiPM*OT$Eh`@([` ;]ײML\܈=ʆ t==m^ qV|0>>ޠ ];]iia@iF `@eiW>- ܰʙ~3f.]k?2xGqpX%{+13 Ѥ{刮Gۚ]J` Y`[Un P P <b>|I`"ȉh0(Ϻc ) qm9D;NT}K劶M6.iWHz%uP~ LÐ @[Y *P . /}UaI> ~L [;M^ -jes=n$[+t8$ob <-Izһ^p?   . `DFJ/LI^~7V>=Z?s4ۭ˺[T-雾}o"/En` [H۬֝n.;a ]a?AOnܘ|؛ņ;Zej`xe aDt5'9mx$H6Ђ =zF/Mrd:rԨ횩k[Lڇ7>FH3gPYT,]ŚUV]~j) ǚe˾xAN $AVH`@/+zɳ3ώ<(;]E8hs\t@Db|+ZPw<'n$Gޫ%fݟUPq$ e ˀyr@yPx( \ha2r`p Y(u"D(z-M9='x: Or:xF@>F>2뮼3?y /bض0:[P1|Ĺ!! 5/mt^PDTG6W-,O  U: .? z-YnLK6Pb%+Mv-ӭhj€ceL/nlS:Å4uQFg0tD2V8i:xHNEJ#_%knV{FyaS8+$J;,B=:"SZSj rޖ#(<3sC t!GiTD syu0/xz4r$~'Ҹ튯 vo^řJB eVf?֬ώj0!?@ 0;4tŜQTхCs*aX#X {F;~#8i8I80V»rF\=@؁ j2=Bz| h2adHK]B0Qa C>A铚E f2_gW\HPJ# oȇT¯I$n"aJY8Y|c#$aGXz+\G3 q9.sq#2 q9 yPJLqPMT 1bьOʂ ΋cMS.g)#e }29E"\$'1JmvJ' 5.xKHCF/(BY-9K[, Cq \ * Dvf8I*jm :UqudzI+EiSU!E?ЋعF,,r<0ja-$Td5+ю2-H|pH& )>|䩯}D0>xByYw P)xţ xHHFBf#,,1ЫOQ8* q$]IE[ޮe$]C?55%2j$b'}m 3 2|da(uTѻXG&Y+F83lC/J-@\]f>Ȣ}*Ta%h{LVene _AnI! إ$B( e"]'el#! ,ҺKY# Q'Dcxh9F7;iP[OLBWVEU! 3nxp#잍xSyaMIUWPE] 8u`H&ݯ*荹IgP*$iF,dZBL367sF6%}IăFb-ױmoXG3Ga@TJ~2p |1$ bpD<0T?hhZjq`q칧{>`٘y^_ax.ч929'Wĕ g09"5>4ހntaLC%Q qܕ9 _b$ t IЌ2 Mq9܁>أw[ (Hc s qA15Fy2o~Je3r\!tn`#l$JnF <\A7Mw xp{n37I}-> (}7>áFP./YX;-}׼U&pC ERpfq\I%ݗM-GxCneqb\ Mo#>p7(Vy fج#rk8pa胁##;YSP9ˆAO@n-T(x ҃!??A:.K#6(D34Q))L bXϫL4/4K24pU*ֻkxxP5@#=0#0B5PxZ3ClXA8c`((h@ ۨg8b) <;1 +`BUvcq V?,5T:q]:D \ >hpDGl8y>xs@x>A?f`;؈Q$8@E# e[R;Ö'đuXܴucHF34N aFy//ăhC3G=0(P؂SJT2{زKy^9cQc8y̆*+<>Z>ǵxLK+kJ˒?D:c & R=1/ LWyl:`4q-Y/ٺ@XC0(8-38T%CD:D4@|&&JTnk!*bۻ<8a ĉc20GS؂ PPycXwXJiD8>0S& @J8;MmK': R#f<IU/XU<Ҿ_R*Z a LP08ڸA:ФӺyP<݊[A48$$`}f=P?H՞$pP(9×y׶1#LŲb*`XɍW(]/Xh$M3U:^Hu8ش0ДQh,nP*Ѻn`S^KP2$aͬ0qEyD@wH2l#X$hx}e #Rbinf(KQ[=#@3 P,OҊKn&{>e>|W&ߚBL_r/]߰d XQaƆTnh4c#EvӔXJZXa㶒 ʿ@DPq`0#X88zx>XKG&ezV r eAEj`Tőb$\H%tҖI2I Re+chV2&=yMIU>R%[>:`fl>P憵[n +^al܂gQd>j}Vo0;T۔2;eC9(G[4׏hfu \藄,72h]U,U/Zz%YfkDF.۲ntv0wLA&U|vQ4(- eTGNU` KQ1咘)EtZ,gG| f쵲,S0,)ܦ$APn8?gڰlyqNdi8 !&hֹ~ɬ&2Lp`EQUVvgO+r(^ 2=rV]^GSS,ᕠP›hsVrͅq J[kZ0T{E.Js6MkςEk[I_ {bN &2V+`U:N#=_kU?OrX&j в D> S h+`ve5tU--t?}E0(m [ͬ2%2nբWFzߎƥ7T?k %: Xy?`فg{`߁/&h`foMP&yREC ʒ͐m^l=OZs3&͜:T~\&F$AlʄUdE꼜3l-`3ͥIf'ַb|af9fYb &vEdR&d5C =b`8PE+ZD[oz2Y҄t7IWt?QIop@PwGQ%e^9QYh0~s9)xU~5eM5Y_#٘Wb\7a*c0;Pqi< C}QK#( Nt3՛Oq9(ՕVOVeUu^#y&|gьܗaFu'|য়7b]Gi~*iEr:@ABժ:K1TS6.U#qC NAYe (؁lw˦,$jgx1`?Weyٸ8gfet jbb(#0?|0. fP c4 DI?':$NkT _5xGE%UzYӂsa FCemyP[4F3(Myge3uMvҌ7ހ`D ;@>pv⨒FlEGz4,q] hq7;P*8z&ѸTa@92>Đ:g{vZ҉o1wړTu ",] D5C )i~ ,laD$Bި,<]{sK07XU cu'`+B"XWS8Ʌ!HAr3tb @ZDSA3..BakP)֘by)rPȈAdQȀذKݾC-c5W4p Z?@qp@8, H˴|-3hq!0A蚌9O~ (?GЋk\]3!8,dF$BZ ء8& %XQ&$ HeUqPd^aV8Bո8)(uiٞL B1]/ehr, dE-fgpA7]ɋFaFn{[;i h䰓wL4$|v+sEpq9 mi8e#XF1(-RccLŧ|/C+c^4+ ayX. ̲k c7N - B` IR57'4Ukt?D4Lfڬ7arD~ z1#5i?LGzRcweҕJ<4 Ejq)fWc=F-&N=nM*KT70W-TIX 0!|F ,?p5'̤^ %(uQG͘!@I;M^2,{͛v,!}'btF4bi=KbRsw`+q]ƪ+恂9ZNN|4za3zx Ѻ8]b̧!LfR?._ r;,L 7't ⍤gH|?YpUP`9wF4 p <8BjT@ tLW'8ՖidEȲ7R0=HcseQ%9ފtOUH s,U!;A #?K2!H 3.5} \O!bc4 [ylevW2b?_Tj&ȣ`ݦZ988 9b s/9vC$r;$!f|)04|@/xv''Ї6!~ ?y8`)u6sGDG8;U{\ |dk4ūc&0y0mm; E0;^y#&$ǵTE5P,KՐW@XiUp @4eՔ?XT[I/cGX6/UceQAZ4?@ΐC]|L AoА:tqLTAL p@A]oy_-ZC Ь\a1Z %WzY/Q_™L("4C 2aVʐ9 e%@$^E<94BEe4U 筃KX zAa Kddc!5AL\Ap|) Py#E d&KTb](4;a`29p8:8H&}HQ f(7gd7f hKɑցeo\ Pof dyv.Y/9V#|Ā@pdeEdevJ9ƥ:nYZE ponA1gCN?"N&QԢ0Gr\$!h*vƤrTn>2he@@ A xpCToMfvF`\R^$ s6|:i-fbc`f'ݔ=y"ii2acnA3(MB 8\ dHb)ii(E~ Jj5fvlx&7åbj6n*UjArs4 }@ЪhZgVj8sv5D*pw9jl!'Y+*(i75S+iިC𚜉[+65ܫibꎀ&nE ِqڮ,)2lH%p@Vm1(jr̬*m9.?xC:@b̲ihz-2m1ZdmEamn9XI׺h&@%7-MFm­uB&AmT6n!2nXb.lM#ƂIo#BnM]NzIxC媮Îpet.!VQnAۂZɅT16YV Yb/>7dAXY:$d=n6Y-n5Lio6A; x5Pڿ{CJ|/r 0' Q=@ ʒ F/͔o,ڮ/M- ' R! B;1+Jc p6VD<^;VRl/& pbf6qb1Z)#<l,cY˱cCױ wHJ0 lT7y+q#0K p,Od7<co/7 aJبhJ&)-2/;$)r77L0 - l,E  Q AZv.2#S/[B@o682 Mn":% & < GdqSo4;&T:45[< ԂCP2q4cdFo%=l3*=)TK۲D4/OsM%X¦<vkpC&sN9b20i/7uS'H ˑ QOn(?>aN-K{05Zst,b INy?뚯ԺR4nMF?5l*<,7MڌD[glk7mfN]Y\/x`?5A~![6 Rd~o̩,f57pnL,,sg 2QBDsSj~/^pwwD vɰ{fk3v@ldNͶ]r)<~6H񑽜?]M5 Rt{\D]llN0#7c8<*4vv CZD r/?MEN )x3^;Ccidewv+Քd5u7L"W&c>79 \9L5x(".'%<'k޿ה l  LF':3 yROZ6]7L@j Nl9O):o Q}*:ׯ:; jx>?=lVcm7:Am{?5Fn ϸû{ sߔ-sþS: l){+)/c۲\ Is[\ YlU|s17Pƿ>@l<|S0.ηcO>g ò;ϻOk|g=oQ.K=oēٟ:|ۻ=5Yoه[~ߨ/@#=C#W>AK~l+=~#m~S~P>>Z>~뿾كm7Uľ6Kh! ,DL؈J5I-ޔ'IWUg( h d>i)Nh争(G}qEzh׈0 Hs4ICli9V 7f[/);btyM7|>Цڮ6Jhۘ┯+!uHXs&M'xh6[<HېpmxqlTZ}sצzANYVv'Vw7Xviz-9:9W42X`ryW87WQޗXox)x}xq[}xZ H*\ȰB#JHŋ3jX$CIɒ&L@&ɗ0cʜY1%EpHϟ@9]E$]ʴS4ɥ!29ʵȔ>EwkB^Ӫ]\SɢNljP.Wq Kkx*^<ӄ0+5z6Ƙ3L8WRD*8KͨSO4"C, [tksFRdRY5&^oWsI}4e3+AEVVʕʻ u{\xJք0gR}I\F7y B8J!41g5 qQAQBR0d yf\+'t_R^h $Ũ$J@Cފ8 p!@U.G`X67KRJCɐVb\_$$:/gC&la}"yE"tW&%B6I)i[d&V^Zk!y,}?&"yN:)T=9YdteiIcy Z*@`dgNM,, f]i >ܪ_l]ΖQGɢ,m B26J7j @$J dpã]E&zdG5AtR+foNfVe#h|*R+r)\ze~qWn؝˹9*$2Q,)jgS듮,HWr6-ݹǎe hmk"2`B :bA%}Ϊ|*״xC+p!퇓)! ৒gGr-BJ +Zjape:X*^|gJ({WC}_:8։*Ic 2LkEΣ0xnD"|s.V e.NDV\5>܋cDN"O즄(IO&/U* PyrC<I% 2+=c3ु,k*$O;|)""}P4F'3Pi(&N"%xQ. B\(dR8P p $SLF_(G9(%vd_.|HH:p*fp%Ci2Z&!f@%lHyO"% XdR,TCBimb*!`'-4OCKU1'E0ߔ!P2DF7ֈܗ~CIK̎T"g{*[@U&{/t8OPl4 0B.<$]y`phrw'94ZSP1'igE Z)U>Ё RRrhJA 5tm &Vb t2a%ig+Ofʐs}qR3) m~mM=IPf"u]"Z؅:Ju":MQ-  9 2sT)%q!͈ ؀Mrx?@h9ŭ<3'Bn{PCߖ` `mv b)A0}C a,+ߢE&. ]P *<e<;yTť`0cC0+#c p P^:1kՅOʍ)YWD=-x0yRa-I9ZRBt ?%_@u@Hǁ@o*:n0g=7e{lIco:th=:4ԟ 0d`TxNT4t@>5ӱu !nO55rfbLg|ju1yE6-RXWٖ<3@z>`;l=2la[>R W$C^Ca=G  e`w2u<0_+ Qthx#}oN }i9q ht-7kApDdh'`'Pp a%荣'W{gG6b|LE>yftG6k 0#'ppАL h@ %8 0)Pwbrp`myGf}qpDću̧||5x5)`ƒHq6 D@J]hPyy݀ 'pT @ _X)i^jRh}`w'n6aXGwrvtWgZM!ɐLLpT U9 x0؍ɕawd Fx` ٰ P > fG0ĥФ"+J@ ꗆš%`#7 "<|0 p)>  f,lvn .6QR\'q }CpԵD <1 V] | |} KB0[y*gTcawgiË 'sP <`n {@O!7 W񬐺[W~ݹ(e9o\ |@0]- rLemppccNJ8+ fwGP`{/m0 Р̑`꼱*θlB ]=K7hl {;K[6Kh]ǹmld4JF;ܰĶmݩPӄ a؎ ٜlmln{ʠݼp= Xձ]=r`(qˌlfS3l[ h' D P 0}06 +来Gj趾a@Sm%ߪժQph [p7ǡk3`  Ŷl)r np-hP l4 ;ĜI)ʇ~ݻ<^̍d9%h݀KX=Z|۱˄Epgkǎ:γP¾ k/w[z^ "R 菝Q?}8> [c lԬ}hB dVX-rPP=Z h_HkGoI;!͈@[Nh0 a+ ;R)UY΍Z ; -A =|^]̘rҐ ' >Ge /p`r/ GZ0ג<ɳV XPloӨ#Μ,hkj)]X %]LL- fS] M՟+o9kb]gq}&klh&k\]6,X$ uJ)% m$QF=~ Rv0dl,YbqΝON<)zHqUMj(aTi$ i61V=!} +>t2$jȑ6AA[xPϟ-^l93ol h^PQ fΝ`$R%Jhau"m'}ܑ7،7ܨQ;J;%jRD j%D16CNV>aÎ= ZC! y!?$01l- u3 0 `֩w6xBd1wXm5)rFJ$Fᎃ i8t nUz "$(1!Jhϼ"K>銭kc.*@0&K>lyHG 7X$ uy6p`H1s16GфF9 TMv(.&N9S(]3`nRI2;*A-I&Bؔ#l *NqȶB@-|E7|478  jÍ8JCiCQIeFTITQM8`ElZǧ8bɹvN;lJ"5 ),i'ظohr_k3f*Y2 &Dmq7hcSNA "n8nL`Tw+d&CiJ(3 OrJ9/M`7l&wt7< pI) эebfiV2˟<&9p \3`!-mTp = :c],!Fd &] 4a!Rh"y 7&{P) kS=j! J`MhZA3슳dq1gH@+$P7#AUw<y!"0A6H0Q 2$&@EeZH b1<# l`c^%}LgB@ Y+\z| q -k9KN 4` 1` M>LXa0;HX̑;(ae0Mh=3IIO!aH59@I]$&P%LOV1 d+[PJԲ4C%*zAhti\v,K)( `dc :n DDQgO*5CUfs][BbPE#U,Vz5%yB& r bRZ2lu9B} jJ5uc*XI'kBfjaOp,>Lͭ{=w5(\"Cҥ3v\XAޕ*LJgmOM luiR_$FJnρ =NpM×)Vd1]y9V>|nf hLh9`a0bC^‘.R!^ s|v;D JXy~TȬ_t")h3.#@RvjwnU npV0{OȢ~vݮ^yUqiXf8t3q! KL1+x:+R;m 8,Zxˣ(#3MB`01K!"/w0UP]Ԫ>PR<39<(.9??{"vz$*$MJk/1?(s} -+=4,1؃U+Aдd&3Ȑt0F+RcCpa(n:;<#"82hX RXGtC^6D3 4zlKky>6x "ȥL dxKdH"{bĴ3@Fa I 1`L؃}@: 2pcX-hRy-Xլ S0)0ǥTE\'5-iKZ $K:[E;NiТRsZ1j,D+ŪQc+j=`,1Œ*IH:P#-Y&P1;y`;SM#1!\;> eʦЉ:< O‹c5QQ 0@Y F!RC\:A R"2 &8Lc =9إA#30Lky@YvYtر&,t5P1-Ah*!j(St$Y*09Yj ٖ =5å9`N)ͷ=4Z<3R$ IRK2"8oq7̥KL*Cix3#Y3#*)ݽ5%JsyAU /`;k%iY\ ܹ<𚌜}/RT@oA ɐt=canrבK)3L]mH9#Y4MRw&BR[0=^U^{D;ЏFF=avKB 0u[y˧M_d8ߥߣ5bK3X:zוՃsa>4AuYkT0' V^w9#S<^=^ ,Bӫp+vb" ){8Z=Xu J5壵Q U3 T16k:YQY5fu=ǁ ;fT_arW]Z_LR~LS`F/`mІ2LNfXUa,e^M1-j xF}^V<=%]eI[ØLK@@0d&MvEhˎ\c_PUFU/YM8-I ^,rsd5 u`;jƯzޏ֠Aec ycӼ0,ϩbAa12E^Z~=ù\a_~dUUiO|/NYQ$J_ǜ@;a 0iiwfkj8ƤޔY|kWq- ^%o hJEe__]`hE/a\nC9LJIӰ4 ^7o26p^IX;SJW0kTQP;Q5JNu}5U @I[JQWF&Z@jJ:j^:dVÂ~WV@"Mi~7Lx JwgmK8k\ H.& jxpi|*U9M^[~ٟɏ"] 1[HILHVUhfz=bA^ |;b`&3fsPnZb9pe%uP pTP˔-Y \֘%džSM.ZcB@f&GFU =a"uWAt@*tʵ p,ʄ*~L 0L` " , 6+/ [9-FN(a}ޖn1@@`oTUtF6g񦑆jttHPH$)M^74 UP0(0uv['ی-HZ< H)The}s ˀ}N1WmBʖPYژE )rXb !`~ 阃YJ4TQ H4OAmFS"%cEѨ-i{؈KR8?i$QFn;Rb1Ty%B}D.`}l+eiyh l杌٩ bZC}!scq#LgV$fRG"b#2o/K Ehs4gKy+}+&HYˤKMl]d~j 3&0 "C% -E`QM<if%q+4Qla*K|64\JC5?sDGK r+\3嘜Kl)[]ڬxQ1m:tz`D˧cv.t\)M!T8F7E&xK7Fsdn? ,\H,THX)U晰SNuuWf|iaE66џ{5}PD(P \-5[0͋`ԄFlS T ڈ-GXpp :v'+ hqc c .B|@!"@ ]f-81HOl('p c@TFyg*5D&ǂoxl< bX5D{rQ pSH8f|n֐uH`'m-{_]nCxmGpfTU#pa xKӱ5.)Sb>aֲCM&DP4LԠ \!vb*U@G}%i.3+6D;ځAwA8] Pj/ !JAv:Hv]AOfj垤UL/(mq SMUXnC`I7"^gЍF`B=k9Vr*kՠkKK"eP[8 䰎#`xs<h{q>;b%H)wv-p]I"@wySj) BV>5"o]1W%hE $Z= 4)F@-A`8ATɌ 5\Tǰ**)Y ]5` )9dKAB8<@5 C/޽FltDXqMZUy(m4pĤ~TKa} աӧ!P])Uh@- JA-k68$LɟDFكhdj؆LFFFaG PX[WC:bI z ,،~*>TJdB!*JA7Ȁ 8CmU\5TI@JmlƧ" .\ *"hK>C U>xCYAd} XX]M$Q+bE@ Ԃ dB ."/"$@UrDAY.m :F5@ JGyTСE ԉI䥃6lK%| =֣ C?["ObCHUe$"*܁  E gX1)T5؄b"*b7EA`A%$d) *xbQK?ZY|+O *"Z $%A@1H<  LUЊy]'lo tTC a.O8Jɀ OdN=@:P0SgTΚĀi:.f ԏH$ϕ>>dT Xm_3M_*g  P4<ÄCO#$\@~gأ\9~O<}f1ܐB(}fYVC=PЖ~ip߁F3!(Ja)CPAA=6O8@6@Lz*(fڕLaa*Y ȧ h  %'a3}B1)֓.jaiSC$Rm c hv=.NP)@7$*Y #.WA 0>T'ϡ**Xբ$cCPA'Mىdnj=bO}L!ba B-e|N AS5@'ꫮypfAWa+ 6Th!i*&=9~<UB-(*B UJA=$'D%XprBՏ+_k]Wz eM8N~f |PV2t,&Jy@W!'V:U74%,],$ÖR-BE$"bųn-xb](x8@!t-Rcj¤E:$+HCD~ `C͗^; ^%i B1b^^:i5tdJ`RZ|\b(B/HR@>fn#*|DaM@b@:l۔/ِNȀ>n}uL A!t TQ-0b-i PMI_o mC| B  h0sKk lM n0@CT/ ӟ=h(Cipc!]CZg^EJA1W-o=:/F$N'qsq30*ZbaD`vA)aE /q I1' u]loŅ"1 Qp Oz#)$82"%05Z qAW!m4IbAߪ'1pŝ/UtĐ612A2+s +20p?0l)w074r妲9/[3q:'z7r5S/C/9sUlA8ؠt4e4"7a`83Doo%0DO57iʖ@.S@Y"_I1UEA(5!=)X7  =tsO u~`.k>"v5)Tuۣ52"tSQI3v ;@[R.'iT0_aUu/Eu4rP.8S5uL;LD3*g̓ C 47o5"2TM5"CSS6hv!1xH@ 6HFOqhv"N3ֳ]*HogdC C a3 _0'[W+vu[*_5SB6Pd,:@Q65uۣÄ=tq< r!6 A5AkKϻ tT=!Ȃ< ~G(@p  "4.DYHj|@cGxL9dI'QTeK/aLiķw"M m `B\eCz1hPH > D"cWd;lY2i n݆66inB. wч NHWQRv#D 8M5kꑦDԯ,Ǽ Iy{:@!e8hC>9lXCUSVxL*Nho8ǩ,hF5^v8:4Agx C2gM)z(1H!LkRC-1両v!M|J[IBJ߼!?~R' `5(#x1N?zO(͉z'iִ&˞˺fǦW)Z>[PO,֌&% DH'F iv(J h2x9J;fsF5΅GnzOoiշ=+rR,SOeg7;9͡ѺHD6A9Y+?g]lkB{jM4/A167.P @dh-]Yzq|RtO(4W-V7 8?Bw]̕ c1`DTFNu:D9Ij*md{ebΒ0l/oeJ 3C5+9ejGiaRԛ%&Gp!eh|_2YQ;+`.@ pnJWk\lL0 CY0%\L^\%#)b^5qcyU ^t?_b$u^2We)i }pk/REh2P~Yp p0 0cM\" n HeoX-uH6MVH4R|ۤEwlUi鵀2ׇ V8CkPru ^^'x u`0 ig G9ES6i|f1|KWbX&iWXkeٴz! #z5 v`}(*l4Y0 x 0`Km P8h]lBݣXFV-V\6th%DŽ'/ʰ 5@5h 5 &<B p+Wo赀LK2 6y0LgpvwlUuEHKAX hdh_%bӷ\ ÐC Ҡ " P5p v 76p4p2Ȏ3i`w``i0^gpk`H3bM-B MfhC)HȘ^5{(z` Iv vP2P 2Ж" P 0 (# Psgi/y `''Pyw mP^BoBexi_Ƈ+ieYXfvY)G01!zXpY Py lYp 8"b`(i6  'pމ w@@BЊAy)˸UGueeUG꣯yv0kQ9 9PّysՁwp0fahx @0p(P-*  6`F3 mLApCevo,6OՆm(byShI MgDPZciey"p`eUS,^PPKY@N'7i 0y`}jʢj$ mP00kx(YsoGM~XiSHȟ&HɌZ ! "L z:@> 0!Kl rêYyp' ˺ ŊjPx(([sB yBɨ醲~y~T+֩(u z!  @0&ZgЖj ĉIR,cYP $$`p[6 n-`h p6Htpg9nHX myZ#odX몗vB*ʀ_ x `}'9p yo9P  &0쨦u@ '@*j[@mm`~ztm$kX @825H?1C+9K(H"iw z00}۰i(Sغ> ~iP`0It({$o0F@00Z@@z뷕LЊHۆEJSFM^|JCXu P^`}Hp`jey\ K ص` <$cKn:[}hGtz,JkwK@ ;Æ̂I.Er)oKy2P\M,z Zv@"PʼnL, b_G` ˝@$'ܫeKjŋr\tɫzʢk7iL40xL\ {\o)bHhhpWnH0ʑXǖ`:Nֱ bg@˻ll |uZ'ݶGQp6*4Qܼ@؈-*M;!(h8 ߗoಯhBLߢBP^"P ZMpP2$F>Н\Ymuzu{,# k5J ,;N̂^po@.xKEnn5ǒT! ^lʰ-3moN f-` nzh{lヾ y6'NtkּmmSVs-gw+댫~}pLY $ $kPbYL6j=hjPxrK* 'ˆN4`6)Z"-N,zo^Nkn7^𾫎Yn vY mYX @\-Z 5  񸌝-j%qp41}\6P+ms;5^ԋM>԰ NoL(8D޾ߢSo9PY _m ~ :&g) 0 zɧ+⁏s 6_:g!ޢNXΜΞڊ86<D0a&l옝%KdfL. JʅD+,irRw(KjxG"?5męS| T( r$HDJ.PԁTOAG뉫Z0bFYvFdqf# YܽFB!k9Ӥ .@ѣJP2t{å&d`˜z\d21x!* 39Aebtn U1,$aiA+h \t3y^Ǿ'9->rlYTUb} *Jk鈅Æ/ k(0M3d@AC/`&- /z$Htnm): %Xj:_b;ʂ/QJ̬c#"ע]Ћ?𜝛6ݚ;-lPl1!EzB6̥(eRX5JB2e[nrn#ffK0<ڬX -7#hvzrt;,632ԥ7<|Y Xb ,zB0Ϝv[4T#)G`w%D2H9[e؅( ȏ\P,,s@BpCsK 6^M2Bl@ OvJP2A nQ!|AZyI!3`*Y@ŐX\t/-t֣ZpE,% +G 9XYTqQL]иAn/q)WՌ`  8 5GM 1 B3nC$>ɠL@nB \ףlV A>7ɕ2;A*2PCO,$-hu\,qV-yx\@C%*ɗmr&8Mj2x yODMEDu1<{dXq- #OR'`qТb@+6E :+@(_dȉ :wɫ^cK(PATB )/50X:tCQDF{~#W> ءC*KXvUj%W}S%@jDn $P\8*;%Ax]%6`/z0^%V;АfEmX:p" Piyg)fO|LVdb[$aȤj@[fAsL"pQB+G`, #'>q.'z5b\0x+@/H:a֣wqKý:K;Y!V&p&h$0p /d!,\ bGV'ȈD$tRC cC~>@OB֊p,KnK" ȡh ѭ@<7*JhZ#pKИD62&@^#\Cn 5n`|x fB P  5\B:I0YB"DLխXsfTʥ%4Y;<I' Boan"Ho.?>^t2-^!SmVembx!g0; LE@w` Rz[IvHrPќ=-ΏPPbe~Uğ0ۣ7:ES4nx"h:۩+785"2ݳ)!]P2{ѠX&* d:&e؆xӅX3_G C\'i 8ˉ (T0*Y!ɰ4@21n$0s᷻дyC:!ӽ;p,H2JYɐ2hҩ˂H/&X55 !/5Y awx#% <*B4 4  .r#Xøcr+{:2# 8+!/e@WY@>|FlDI9G~Cl7P572\د_A2'@aÑ"ёR(B[Ei 4o I3:ptaþ (;&F+?#s@J2)&jPXKAGy&ظeX'vp*)ɧ[A?YŚ]8+˭B*򀁝H b$t#pXC9I  n8~+I#~+,) P >JmbħJ~x2ÔR*PjHJ8i ;hXɫȚ1@\k*j0 =C0$:#011:!k7 ml?̜/Ƚ䃜҈Js;*HxMy 0 !5/p,H!<ң@\('ñX1Kh;1ijEݺW H c$=HtONˋ& #md6Ϥ}R+0+() JHD0@PylJvA ]!'t! \iȗsH,(t<9I ((T-(.0"OyYr#;1L8\Rݻ> MѤ0S콀&* wdDP>3`k J!E=j)Z|jNqNqKYy-HQv€W,EW/)Ux b/$8T5l79;ѓwoRT;S1%͟\;^}0凲) LJ{/GヶUgŌ&lD#T,8[hdN\NwJ DמLvxTia-JRLyW lT:7L غRj0>(Mlz/Uy, 0Y }jЌ8aYG5PU(TS,`RpK#rζdQ!A p@Hڏ#pZW%(j 9 56<.:,$Jl3VŒtYc8A⦦L258k:\b^TUV++0TiTKW;,"%&T(ҵQNTHIF8I b\bڅ:z(!Ѥፁ>};Ft_lXkYmJnZ^є ~t4 "\\[IBЛ,(*!ѣQ3LK##<<3+T1fW]OWDR 2&:[8Q|*uGFdAv|L@~5͆{x\f# ,8ѧVTf)W{9*_{? <ԂhR 4Wyj 5`ب?a;hA ЈsBЅkJ 5ɰݔXs[d'ۻRTA8?yT$*t* 0*lZxeK^6#p. Бh,.Q͚6b!4f.) z&Bk~E=E;/vswVS#c:8pgYuNؠeK<= } |. pz;=@!gMvS $HD{azYu֦wVܢ ʠD:i$`NX! z1*Lee(x <6FƖs6./l$`) J2(@7Uij`<I~wnYd5~Sx&&8i ixexT T"ꬆe&$˫ph0 I0$R⮏l3pnԅ~#)>ABI/MŦl~,f!|&^,e a0m0 t8A׮@mj>AepS%nVKfg6f%Avc 1!؆0F z壍?-ue]vp ^ڥu@,K>:Pl>8hnp^edlaY.*0RA!@I 9Ke!ttLe+n,J0ˊ{11@f|ݣ Yi;- kv[>UMYbf8aW{Q$a(e,XeoPˆHV,xk5Pumyyv{UkfQP t oӳ~d8DaG'a?9,Q;t`KWKTxq'jrmXfuKbhWЫp{w/z 71 ]n B{!b~0=޼z}^~lwt~o:Um@%1 ,t ` K{AGS2>mֶF|G~ç?OΨxfẌh^3}]/w^I쀓 P6{rQr{1錡CRtY!C '6t"ƌ7rQ&\hK$=joVz.V.{o8ňJB_P3BiJ$m5mS&U,Q5Zrfc)!6g,ڴjײ=GEK3v ݋b1F )bH\B%+dI^|Cm+gR^vsN5>}REBiC j/6a6i&V\-nx>;ҽn>L0BOs &&k< ˔Gy\fEs{&m-tQST4}L6&nQws qZH e]vaġ@4!_ew]w٩(!Dm0?*q c=1Q֓NE&}HFjDOTPU`Xhs%Xxf[accAWu54FHt*xi݊2ƍ9j :P A %EX$N-Y2i~6j2?`%mXbhW*D!5u妇d)Ј%" i(( @1颗p=}*T2ai{E P19T-xA P OAk"\4!ytKLMM&0˴d15z avՁ<\ש7Ǘ]!4Fefqk{ iXp5Rs7rNޝ&{6GJjP.E0E @Yd YrCcpKB1d5g&ª:J> Q&j;0`:8ö#$#2lvP 4PPIܻ!1 zHA`L-ط`߅֤uWd(vG@"16Y,brӆzTbaXFL#peۍxS~e@y s= 瑱SE .8 {'3шA.,`:8!q6E9,0Y3 Y #p@h?^$#EJzP|khLMz'ԥWoz̞xPv)$@`itp1 Q\ԇFEd@sZڒ LwG%*23)1qtq22Q MTOͬ=8IOF)dȽ+5Ŝ8wv6A,piYM' 9S3MyB"Pk vNiQBxi^*F2B=q^„}|7d#NGϛCT(5uLC% * :p aZL`:?L CU/tD5,FXW0a| Q@l0Bcbf8Щ (ԐL͘.INK.IPqȚTL9߀24 <%@I1ejSy21d}ȋX[T,[G"- FB\%' T@zЄ&t5U8$iHHaimh 2A ^ D}16>/"_\_E.KhEl+E! 09HX )Eʚ-%C&L52 jD4qdHŁkMlFrq_Mɚ|uYBP2AL,Ӓ+0)$8 `]1D(u  Veær$"(\lJbMJ{bBKFICr i"$8p¼ `bUF(G<=1 5L֭Hbz Dm%tf(kG.T)|%d\A4b92@6^:ӎ_na6 vgY,]}C挳oi"^LJͥјh(B6wVh?NIbG4Dۆ,ttۨCrL-hr!`_ 44i/St!C>`Ñ, Ҧ 5P  .FMMyrq[н8SԆSJpA 0eA>H !`E ,( 6!F' ^11ԁ9:@ -`F?XL `6Kɣ `!S D1x(vxEC@$.8ZbEr'&_Xދ0Љt" %CDgjL P0HL8M0dp A7E#I'$; : z `>9N J+c=ӽлma$(aBIP idt@84x| YB@82FK*9#'d9'(![fdA;aL0Qax +^1X5 gDD,eЋ1%"D>PN\pUZGSZf[vD\IqI  d> YpKFMP_7q#QA$y ȏS`FJÔ5ja Bg3@,K9K%d~nD` qd)Y +@ %,^%N`PH6N8TxFgXFX'Ak8A܀0:e~gKl^'䀒JM6`؜@$/4e ?X P|DRc݌eq%ѡ(*a:XC _8&, 蠚'lnn@_SH $]؀/UZ5h0A CI\h m'Fe8鏵6)Fŝƥ%YY'K%Z$[EB59^9,AD#P6C>hZx5t@ʽK0ތ ! 5މT,:Qu!$d X~>,8R,\*g~g]f]+A-` C 8TTr¢սʆe8ݽ* Pi*@FԩY>m &~V3nC6䁥F 8+PʟqRrYA> Ƙ J۩8 'zVò.kF@-[eNn&n |Čl+ \ /< ('PZJ(1 M)-9 Z"*,rbզ%Z.jaٝ.\p@ C/8E+B>aCbI> +p2xom H\J,FeIB/@ AIq D.d -]+HC!ürZ% 8Qk9oP l7b&0le )eJ Ȃ,U@@ X2 t11pj ,'0 e + 10zqC$B4%&('6.C[ .-%o&ߘr AD3 9a߾ ' .+j` .aH2ҥ8Jo"2j[!9Ar4h+7TT(1TBJ6Ο73b*b1<}c:70._3ibaNxk?8 p@.:$CC*K;قE@3;'"p[ke%J.IC،Vo2nFF 7$,$ p7oBk,$S0:\b.f}}C$~9p[09?6<(8zgH/l-3nmJn8k 䁏0e07H ,A2"'u8QD7gא9r$F+1ţ rh r⁋#}VbrSGzG8kGr)Ak:.ߧ6S%:R ,vi(l :8->x0az jzp(9"x Sȁ?.fl1xbWH7'#}1ԱX[yzhyOYx?9>'&6,9AVX|bY 9$18tk|~L[2-3K /ҼJ,|U,FVboI ¨'1 bjs*K8fCk;k i3\x/.ft,Dms3mx6N_`R}7t }=|35i {n6ph!>tez;)J i"WCF:C=qn(t[JV9S.ODJ>>J?D<| 8enN(lâ?@ ATCx !D1qÎ:8,?'QTeK/at(.!kpS;|:hќBd)SCyӊ%JkF7FD8v#12ѦUmJ>@$РF9 |Ĉ *L.웸kO="4xPd,Jռ3۷}>{Wo:!Ģx;QGXsqQՓ4ii 4h۶fzpȽ .w~wse=Sm{ 5衱XO<µ> אaTۆb^ӎ6hhĉ`pyRn BIҋ @ˊm,$P a>z,LK 't`*-0: k<" 3$C{ ,Ԉ@E2iBUPCmBưOO@Ier($Adr>`> qN"գttUߢџ(epե;P!Ĩ5K0"wSO,q( ͗@mTe5\ \q#LҰիt(՚`3E0؎PF\ˆCĄ$ 1"+>"ApE%eT-5*v"ih(V.8Or@PAeemLJ h ƀ ZőC{jGp߮AFD(rj%No$4f_! /,ci?-t!(׼O[D!"y$IK,xV>r/j8Xj'eW;~%x;w drjiQO;W &g!{MF(l#np'JA>g+;<h) Z.ֈ %OQ,nO+>QނmY8s0\09rkY8ZntiB&TR׽.MYл݅$BWQtߨ"Q|{;Xm"P{X/!ԖPx}x H*$Ȓ!CJHŋ3jȱ#ņ"@X*SƐǓ(S\ɲDC|AƇt]ɳO LMʔ#SFQΟPJʱa2*JSħTÊUQ{X}$*t%ʝK{նYMÈ ҅v/W 9i{AJ}M̹3UEzdxTdzM;{(mz{i*鼙ͼ9Ɔtp|ٯ5}@Ly"-LM:#4辫~{JwrX[C^ɗe}u@(@h\%u"&fV2םhiu!nÙ!nx %pvW7T cl.f_ @!_m@w+28hTA{ف^{%EZwd"$e"uO* VJ+S6^'JHb՗xO x|AbV(a)f/О#yQdjhh efɗ钉e2>SXbtbfޓՖnzpK&hyob`O·""@8+"eXd5*jJ ^k鋴Bxp,pȶH֤ ^{O+<){Qz0vM>]U]*+M$Q} &/Z`[N/LݜBs55̩Ypy5Tiiw c۹[nufS+!  V*Jdiɤ1^mw^X7R\J&˺$isa~ȖL019ASc9p]Y¿-[7GgNI{g*b{[kv T)dkyU8k_ǰQmo6@w (|.Bk~75&5ZMn:4KOҒ~TT &BQ@.;\b(3u8oFS(8{·:!`)2!釁_3W2FpjN3 '$ MFP(B5^Ră (ql)̀D)8PFoUb^ cQĎ% -@[AMe8EKkk&d k/.`BVX'rPX@2,9umIAȱ&N@YC:3E"0ô{Dst{8%,RԥN!K<ዿ܉"Dg&ׄCM8PFF s`ӀxVNQda&+LP>|!˄){(xxʓ3dqIend+eCA7Y(:OQv<@EO+Y:-C(iRbRtpsIBѩ` ʃf@ƋRB)Jn79B]؁.(;rE$(Q4EMYMHVJE'VA3 2WoO,; tᬨ^=|@rPOVD@Ґ5,[+Д U-PQ)r/* dF?C&pö\gt;ߎCp?0Xlʸ1Dr%)TځSSXJZ%Cq@Z{j%Q zN]jQmd℩o 5A $!du{^vm6Ôp gTTF'29Ԯ E!,×` Qʠ1<@p6бq31VVLՔLtm6aXH\1=TQPx:\²P(a21V3f q.y $1֘BiXâPj )Pm\գ+W<_JDկTͩAṞ4t׫;~0T a&&npc i95U2U></ KBu!ц*egac\ pcЇ;Q(w״_B>C-Q-p2}gZ]K.uSV2vre)muFÜ'0ܩǙgW"B^B 'v=)\=KᚪLNKd4#lrs1F?P:QgXoKw[UTLEN%\<̐ uy2Yzpz7z0$1v>z.wnYuAgtG- uWW1G:I8K$D;PxѦKHEE CN1&A A!}PP0z3~u0zާz2Oѡw=(?6&e:U'*hgd+%{ԣ"Tz7-xB XXRtD GTblJcPq A@l zuPPupuXvyLj8xn=Ȍ)$7mdz^" ިe#fKUDxuBU=/@\ gpQbA9py 6\w~ p^PrYIAyCqQ[xUTJrB D]f xVQNbu5XKiivpEpDQH眧cf8qV ( 7~ nP~g` ?pog/\T ȐxtbV'$flpx @NE\WDpiXT2puf_Xm&ju 1&І4 < ~ 0~7 ut~?  v<&&qY j$(rjڼހãg ǔ~&N|)$ mF|pܰ P ] `>EXzz`}=EE )T^NKBi\4jElP2n 4ؙ9zy ~۔X.׹,ā\@( ] |& ꋅ&EНEP1Zл^A;`^_~,.&Z j͖@P$uA~IxM8W-Omĉ3L q:~nb_ @@zE, @x_xU"n{Qw {xE+ }I,rj}\) Lu~;գ p eA+[Oʫ o??E/}@Ox.xOܿi ip_ʞgZPR Ӯ؜'*j(J8w  腨WØQF=fTd <O@^j]5`T3 <{1BH PhP}B9S sv)C,X4hDey%.ZIe4\ᱏe…˓Ȑ##ø 5\ƜYsfxYdG }JUV(u^)`u?Ѡp 2nʓՂQ.%Kp@g<4Ԑ"ȗ?*.T-qjqǁ8oFٷ~fѦez+ƚk(g %Pb,,D,bGT.DVS^6r,7 ÝU7(.I%QxIG P҇%5.:Ё^)12C3CCکFG#O ˮ4\ȋg A+KzVS" -<1T1@S@A4P#zY-ql6rVCDUhIa; )j1%Q#`B'hq2!6O)Kj2 j:KȓϵݳB#CKkxqlRŠ.>0VDP ?( Xc텡.]iHECa_caT_gg)|'>3jn[(o(CPbP"igQCN=L+;>#>0}ꑁ(NP1.J#A- 3(AI d *gƏU hHwvTES܏eU<Aj~.:t~:1Eo[=BJu E9̍Pı==8> / z+ok3Bи=R t20@C-p-e0a*G? B j'me!HD^|@ >Coı#9 J?Dza9ґ8>xΫ1:V >;׺"q:2Wb 9Ap?ޓLvғD1%cM5>\}p(ƊZٸ~WyqC ruϦq"L>Vw23xL{Z(ͅ.k@a Uŋ->Ј 3P\"GG`O0+%CP wHQ#ivũPtI}ꍘLcq*5hNDTGs=]KUꔭkE@W u}0f[a  ǭ$0Jpx†>x ,oN0 0(.X#~ xa -0X6砊q#Cbo#|` YwJ}||xרR?(Lṏ%?%=&B,# |/pIepMu>䭸#5+ x Ȩ8Zy3*R7.HBH#C7EcTH*䨋 f2Aa q= ñ hfSj8tSLޞ(u"`d x= -՘THH*W4pn0tAǨd>nbZ L RB|Za vX 6dOSd5ƭTn*Ζhu/$_.X:7. #N} 52'"2 p~ 6"`1j:t;gRwbR,@-Zzy[$me=U\mX-\65%Zh$Ӿf-* dYȜ*0g Q;KCTPH1u;&fTi&0Dv%LBI p<@и IﳵyXMĿ|5'5 h@cpB1'v2@Of1ɣ08 ;j*i^5;M8L@R(c8p < i#Wx-гqR)4px4Rsɂёh"x8))Q1pp4(8:x!2ٚZ5KkvH0$L؅]hžhX -D!x) .h~).zhp":)R 7S%yؑ8: ^p^Bz+{ ,{#tSF09$ ! L[} (=-څ1i-~n$ҰPzWx'\d%(g!ϐ^8  989Z4d % FV@ ﰲ>ob;0>*NMFhzF WLIWI-8+؇ Hڃ|=Hæ:PG+=N9x:#E/,@ "*(S@/@X;ql䓦ƸӪqFnnD %3> t hX?Y 'g0ͨ }G1II\B@ t8SRKNB"1,^HU{2KYЉl22i!٢>hj-=pM؄t|LDIz>iCNjzЛǐk(˛ q%|&1MP`MZ-$N$|225@ 5[ai*8^@م>=YLC KDDS軒ڃDEDhJJlJIR xO\lyą:XGKЍ-֓[2/DQP@ ryt =䤴oCdIh&R ;`EqUL;X5MrA+?1J&CV7]Ӂ tVT2<@TK-! Ȍ橅amtIŚM!hZ{]IR(rI'H! ó(WU]d9SAmM9 A [`!(Q !\>Һ͊٠A@ͪjtH hQ)IkK=ٚ zLMPob+ U> }AxЇp 朞>V}Ȧ+a&NSK>DD H8qIlLC_Cek9&('@9ǿi>Xk 1Yݴ}6-@qV鐭fz[gI5]Y>ŎaNfZÞ]mq8(Jh^h,*ko|C.Ui=63iYzÛv+[}iuߵǻ"H}x >A5PNa&cIS^,Ľ|6}prUj ֞f>wI|ߨƸXTUe`꾾~e9F.FK Q!iJ\d99:l{֫:S;ag|N E')!*=L /\ -10aI$` JWuIp9X閾U ^+ |K2 Ӎql5jAύ0[Y.ondM,I$Por:8xmMTC P\N^ g < BUxulItV`떥6n=.v.Ȁ HD`p)Ao\g˖aX -NԎ{SΦF5vj'2?!-=*vɮA90" »YZ\OuO1Ęߥ9o`Rۼ H afH`Jp/zoUWHvo-dląN|p=Pz:YeнTiT ye_?>lc$M+-۵]/4 _R/D aDoFYHlQ쀁2˙j3' $~<*""3 A6ug\ȑ# 4\|q5~XQbE*|q4i‰)i2DT difA%J'РBTdRELQpRJEWx+ş?`SM,"jq>@LRO-~v=O|P">Zp٣d,{@aY'{&Ȑ19 /ba.Ѕd&MA2TdJJT-W'҅*2:SER *wtj5yeϚMEo'Z?!E4&G=2ԓhA0h!RjEkϔF_@cQFvF0&Jȴb* BJ$(t8Q1*L,u]x : y|^ EtC u)jf ͗hYCc TOM2йYaDOpD5֑mejAF25X>R:å\N5x)ËN=*uH*RC NwH2UPyVjuY^YɚOH+-Ayc=r$>6t5rB}f"]GDʛ(E !rJF2d@K$|˩s",JL]ԊTRiRVTR +YUĖVȾl sp]&.ŵ7$á%vYPEN&>M+T5{E6D~8sبD(GO%am1(D;D%*dIA( a6šFe[榈8n7)>y48`%hK]B,jI(T@ƷFr aZ. /8u\oA, (H[ Uؼ| KAbE^U!i{PBȦY(q}K?.tq_CEfQ . )*6Ẍ(J% p|Xm PЂ0l Yx8|@y7-S8*pxySE %[R }jߚ$hjsI˄ EFiDK"c)+OLD&4 9LmJ&n(iUȢcNay,A|p#v͵ ` UVACZ=TSkU쨑l0]UD8h8D8tM2T<< "UiX# =LaֈMq. I@%Bif4 0kIT=JLTpaPɀxAإID NV  = 5͌*\5!!̨X5 |?L+LHD=$Z+D(vC\I$$DM`됆a(t_a؁M@Ɵ" aXY!ޚh#Z3,VD=0>ˉ< iME1F(@ C*A'd\ᄥM`X` 0! dg5K!#+ӬC0.Fr`l8J%,Ue}A*c.b#/^YY!2crȌt#G6>lJ&QtlήIԀD)Hv񅟩y SbuXs=Y]"#L|4.L$8g5 BXTP@ X9mTeC`U*nJ2Ad/D%G([飖9ܞ0N0rdf?ttq^XL@p0DceJ^Wưg@",jMA=JX>j "Dѝ"YXw% NĀ?hp Q#$C8&e@&EzKQHf AgM\L-]kz[GYmAeT`8A <0䀾n8 (CITC'jfUPZxƄakr0 sAA T1LΘ@pI)C~$X ˸@^1T~@ր(vJvMj.ځ/z NuBь@gfݨtŽEDlb+@&X&iF֣ANj.ZMzi8]*r1L b- $dZLp#NLT qHH0A_9+H8fy*"(< 0G ,`#2 'a&A+@C8M`MXf}Eij<4jDLb]fYNW ` @KuAZoRNQZ+H+TB|l̘j|mW,%"`u&SPav) ZzAh&mnB-fBGb YFT..r&sTz%0]lTv^-a̘W!AlB:-vQLHlc!ZZ8Jս&*X@VBrRBv夙oʁ t&8fӊDgP)R$HlgA%~\>^:\RX&L!Tk.m|ȇL4Dx@њ"E/«㮦[/lrkNāT:x%/B/0,H*XZ wo`$$IrkF)XUfM /<[ ::Xٝ |Ecaw4nd hAi1kA_ x$-0bTG22*V禱@5 |;T& {,-lAg"|o5tƭ$ 0)逈T^ACïW$G2)pA: ٵm\: A6 Ry9r Q\YM@A|v`F/*p2ë%Tة6 ۰%IA&@; EΛ|ZA;k%C:$LG )a1l@G@f#$C5)\" ՞ - gRwt~4 !|@P@W~jAH"sXwqyҒI3ǥD@I4U*LmtOr+Ho]8td8;<d?vdd+Ru0q%/BA01]c"vI`p$tW&2&E(*|X%,()/ hnCasα6|YW g:ԀukG5($&oB|w}siu~'[+ Gakد0+{ `Ym6R_vhє ٺݮ'5)Bey1zl E C͗^x-4O6۴ҥ%c@#ؔD'_LCMP}(cxt[X x64oH:IRsϴ.6P~>P(BW2Ȑ+# YL~WD/@'LRVE!!PAd8řU5aJ2hp3p|Ijc+Ǭ5k N$2G{bpVR ʖ1 Oëƍ2I A@QӤ8eDi "P8(! {G8Ct*Q;+f3JÆaTtXDͯ%LOIY*Մ<)$9靊$sE٥"Xp n Jut9֤M3d1&Ñ8IF:y-J}Y=@I}sQ;6p Zi¤,QeA s8=b.e ,ON8x.'W8R 8+džzQ%H r*4G8'd/@ ^U/4gЩjB1Vmg2)(ihRSZkLR:U32<S p Mj +%W:%)7DTI`P8|+82q^-LnhDa'jEd$h;EM=.Ddg&FE@;U tCed2`bw0Ū`,*aq& (m,A a,R8I:;*~t[(R MҿA&D\DlRdۜX"W8k l Z f\{(>Pp2O|881 <9SD > > @": \uE`_>ض12yH(6 b 90T:xq!8!4raDn( 7/%?DPЋDS6m}n\3lUpޯ'g1B @ n -eDB׹@w. A|esj^p%&W/B oP^CԩG}^B{Ȩ R5@.SUuHG636"HE*4/~*D Mw.u09OÞ ?fG;)E-"PCd׺Rau=8#8xnoSW{,\9"T:T3(m#Ck}"Cs\wGA 9}0/xwDN6堊]pG/.f'P2), `WO @ ̎1̯nT`M0on~ ,] ]lG JܡdPz~ ]j-rlf/2 PtNpl`Ԡ KP:UP񔂺pF0HP q*a4p(l'Ą;ȎQ :ŌN>K +͌B>Ϛ 8/2iQ2Ff.m||  KjmUj|pq0`Ҧ+'bѴ{'RqBnFٱ,OН`bQ N"u c`(!"#Y(*"/2@ !L#M2'$8$]m 15%mꄤ&o'mO b#}#;$br)mq~ r*~*q+! ,FӈJ4ș^HQg''ifG䰩h)Nh"E+*gpDu"( ki"IK**ӏ9V8ggJ+&(* b'X7qx1WcX7WqZXox(wxf[ H(\Ç#JHŋ3j܈p .!BYrj!Ǔ(S\ɲ%EȔ ^2xlN ƥϟ@ ո͙5݌)SFJիD֤t)R;" ]6詰Gm& 5fҹJӤ5J7rI۶{wWzH(KMCϠ /f\[k(U}ieY1ToK\Pj3\8ki\y鹠s挃3M|oOyr㒧?7{ip=^؂,N㙧`hKp@~Ywr^vc6MG^<_vhᰘ0u}5j]ujWX ((X&1fY={2XuMQbKQ>P , 2dCec7,|ӂnZƒ <s9#_yX_i(yf ,iÝ t_RJq?@^f惏2^>Vj*(öJL*$ W8Z~MU*9{̋W$hrG>q%ᒄ@L:q(9lI2h aZ U$ĢQbT04r PAPJiD@Bԍ4?q!:5J(qH?3D!#P`G8$NF|4?x$%| l8`mTe( )k8"֨KQDN!*6a}ZY\Ю=oI4qD<&LK`!9N KkwRè 4^h.!MmSLF21nu#/pToAJ1R)M+KS@pk"Aך6@*Sc`(׫(B4cgH552Ȳa@JU|VA*{6:nh/YqNT)dV=4`0E\i W&/ׇZ-!#PSHgW [_~tGslL*a Znq(':uЃTBkRvDnMqW/+LH 0%²×]a zz!'')M,Z&TD>M^ԁfR Bj.&pMep۶Aj ;׊1Kn}M(Ұy=T&iSf EaY Dtq _ |?-pLnR!U9AeBG+`!WPUpD)yYs*؎`^Gn/m8C;>LtWIn`Fcb |ÝKݲqtdLGb [S7vW(qy!bcc[.fY~Me](TuMP?ebyzEl?tq`R!@㕂#p[1MdgZԜf)镲ATo>y{#($̮aA&*eD6yF5'^4A(mΫӔ6hFORCzG[kStuA: J/Ák"q|0Z3" Obrp@Pcu䘃QBdtm?qKz`c.LHO)a!?ͥKgLȷ,&u/$_#qd*&'"we@wMFswswtEs7w4VqAZgcD~GxdrL mdN4eWy nDW*RFi7y-%e0u(,]!h,qRSC s#LR * '"{*%ABe0uqwFcm'72ct4EЃY (EJm*)5@` AA4BFS6DJnNvn6ymw_`xvzp(+(:4<1:fwg<0ΰbCA WԈ~$4dlFEAAhEXFRrF[+87 0u@7O.5 *J@S@~3d&h8#Oe,b.-a 85dowHA3E/s=vV#NbTgh8R'_iRR[zt  tzp[I6+oeaCx ӵ*4wp>PБJ*FC,̔'4m: w8 r7وE> r`* EVSD~A?0J?Y+W8iک4yV'e 8un`IW+BDC5f.$&32pP7m>-D44dFMw(JhcENz@h*VنJDyipesGwzɀbXV#/o7"#bM3tL>~V'UQr=s׈?c iIeAhDrc.NlYXFzApǣXW)Vo&X>""b2_"#?"pkL,!7=cJ7v#*g4c}@iN-%x*`hyVA2615WX&j)i6gs9`Z;c u2iC4 Cf=$$:9I )gHڂїM6)M-~Z l5XSk~7j@*0TSij WFiJ`I.9uaa ":2΁]#"F0/Ü=# NU .vIWqԤbԝ@KYJOnl@* S\WtSn03; ?K~Č"Y3,LbΤ'p MP˘Qjjw}HAZ2ʶi?E~ pd 8JUz1yMW( a&z8y5]b |p]Q+cDkcs"w-Stv@-x- Z@[NV-D  1(ԗ gٔM`AT`>xΚ,ɟ \FpiFWpyj2*Q1E̓P=#f!rQV8MۣtPȟe--Y KR0 $E2prΐ)ʤ\$jlsǣ9[VdpsBb J'/u5 V:8A-C3Q)-3QWl=擉 Z lT~+AYl;yf[кۅR@( 6@ǖ.. %)F"@îh4wben b RYv)?P^g4+ {ca*rEFx Zp t*-c2?_}ݾ:,ZZ0 LZV+ޡT 9\ !N8*$=Ck7!JM8VczlT_T^\5P=X.\d pūn@Jm[@(dETjYu1D$Mp| Zr VNc m+F ^pwIφ[׸NqcDuL@N@h:WƄNiWnh8[9@"Y ?HE3I Sͯ*M"{l].N_+=$'أ1rGPt}1d.' (xb캋? $x~Nes3`oUzb}  y<HMP+(Mwg AA{ွ}|-pd~v'dn +R AR~`X](V1swuj[JsT\(BNs Y3@ 1L🄻~|]t@}|^g\]=mnlG1)Mrӛ?2RPgmr`cJ/X),+'A-973R+E⮢^!ʳ,A@Ig:0(ag6<㰃H#E8Zdhy\!BHR>A%HY~|s E 8pDN"`)0g)MVڵʳ?uŋwI 6= ̓mBRQ}%@ S"*(fNRq"s糄rCdDs%cƋ m<I"_ \0 2'gA#l^!%Ǚ V &+xLKpY) ǏHP!S [>QPOyY$0AAִPh!P♔Dv1]0+S;C Rx+@csoH!!pi2FXbGʦ]e $4\Ǒ좕V(1`ʦј Tg "QA%W33;w o %~Yxnn03]83\bO1.DGԇ?uOTC5HAÅ@cs5R"$2lˤ+H~@Pۃ`M+\k]IFz#m~ A[2ۅoùw @!aĔSY0+cTp&!iR6%d%Y`͢c|A<|GKgh2MT %D ҼqI-bOO ."{[۽ Gbss7Lj-@ A~wC'W? Ό[ |Nq1\l rLFƁqHR'T'Jcp茔1KH!tl@884.< eC7eyxr'Þw, h*l/QAG!o .H`Np1~}>nreL/ =svH60ֱ%- ecsp!l`a cp ց4N vF!i4>/z+k " N/{iAq[9{T(·p$c'0a @qCSFNxznd܉P#J@'0?VHa^^;($QȰ\0M~CFs"ɜiMj@'Bo-%UX;ȴp3qa.GJyODmXN֩TA#lgpS)0щ\\Sd8Kl :W>ɀ΀Axa` ,XC Ga4! @r#)Ѐ<6Y+.kY=Kg=Ed1=Uq;TKX682Uꇩ8OG؇\wӭO&JCrw4Ht &55,) C :3 9';9Ԧ& زlZ'6I :Aʭ9OL&!Z,ocDA Y$Y>S wA (c¹\jV>Oٮrh"G6;B 'hQ=yp#=[WyTGde;36۴p.p-& \q "-}h+CD`ti Ҧ͞4oꈖxllQT-3rUe$6®aib_>%>QlAإ%`9(FG@`X̪۪v FPDmM;t)(pu[|c8͔=޳:^t"R7>9r ('` F.-r@1*4n)$cjOXdòTf@d'#09u~ 5r}n zI7hw€t.I4w }/ |@(гq @dPH\vuF|/څi@r8@mi^jLt |{Fjҕ~@7z=|ʉ=@(;;)@`xp,8gpP3xȖ˻)026茻!m6γ2"07-spϙpߺ9B9wQzkݣ8fxA1,(Ȑ< 8i|6ccXӱP<\񻛃6mت-¦m"0B-?S8:!7=Xm$j5.h;pFv! .tx ̠Px܆m{~4B-;=#@a=W +8cK͋N `˺j$I:I2X6pᓂ3*Ƹ+leaΘqTrL1܋`cD?90I"0kMM2jnbа<zpoz#+D):PIAڈ |®^g``74 fQ 9$%u"MWbʼ4`(D%8I A=0G0@ͪ;EhxۼN0S؃ %.YDK ;ˬӺ $`@ҮRfhQuX9C" AŒ XoD%7LO"MҤ<|d.K3E H0.Xl=9 +HЭ;rLȄ!_T$QB2;fp$6@lƂlk(C}'PP= -<#PmROP0Ԅļ0X ʁ*PHH+H'c#8E9Һ)}PeX @M{bAu6:%+q% A,Ha ;6oy TҖ1>[@!'EխZ{WGY!΋%E Dx##BXvt+͔'LXER$ DQdKfp1*(/\r O\V)0 =ԥLA%M%m҅ٚ+Bժ<oǫ$;h?3؅LG7vku3׃vMuc#Y8c \`!>hbf DRҀp\(R/xLR 3̂oq`Z:ۅʀJ.]é1#6o=з u72ٲ7߼++ ۷=X \9ܓ%Ae$(>06`=x}=*p-W2H)ZiaWv`C.X]zT0ѫ),`TR]W.bX53h}&1E;=uBzE9"LO-LL8Xb $'q@2k`|$>H;)p%r5̀W&VL4oc4[<`TԤ / }!a<3'wT!MjZ'+X4F4(=2 p52)^N2LT8\aiHlIɚoaSgi4 >X&=NM9KM](p!;0X'oZ)=2؇ z#|gI#RVVge\Lp;b@@ī˓t8Wk8B@))- ?oe^.poT [>(Pc Zq^8*͛Uj.=3HU܄lH+XL8O7݃ R\ULȆu!i=2 AMCVHZE) *0,x! |P 37S0 lϚӃ~X]l&. }d%Kvf'͔jvpڦEHYS^R<БLȃLup 2W]n,$)9i/_~߳n,q,hgX; <FhZD`&Po~ ?n<`nʝ\^Lpo2'TÉŰr'd#O)mńuXLXu o:$bV<((@b Wdqr(@p )x #L1%ȁpǀҝ-]۹C>g._0X 4UpXs6sL[hX;\ ̃ux's\ d+ևn-vn9 /_h>랁P86xd0lpp{a%APx'on)lCaDc=aς$@7r5osf-L<vFud 52q>#ѓH2km_Gy.*piD.r6Pi| #); xAExu`<ޅ"4dFm!L[9S`:'0j:4I.5[e7F+yyjYR +P݃ L{8:u>h2eZi_uj9sϘO"%SlhqkΤh%y` f2A 20plse!qGl|3xbĆ!డQ$I%OzgیyE͜rb7ԧ צBzUkTgb:̙df[g1 p5!EizBm@ qdSAfYeѐaXhi8c0p2F]3[SL7*h* Ђ 8 pdCA dGK0"^, %tJ.@L1fO>uPD>9EEU8$hLU}?G&ְ PZ`Z#.Qa5aƇ2案0h晉*X-b]BlCGϑD6@ 4`G4°NBqS*%*E-K.`L4dS;M> >Qxp'vJuEUTE5>u~cc9&>y0J逗xЦ$Z1qf^&#f+28|b*:@Ё4;DrS* M(\RL ASuf:O}[. AXynTQb{o&?CY+ړ3ە>TEZ e8ZhngfČ#!/rzT8̬Zݕ!"(޴M$촓O;a@'t"&QIKImTiqht $蘉Xǣv!=mKw8fe(9cq q@W!сɀtx`͌Ձ?!BN$(gu*)IѤ%]avV4$xG( <),iU2,ed _aw˛d)DFT%!>| g lp FgaPH%-$:EqBd,4 3< 0Qy\ۃy̳= +Q{BdAhbcA\aҍAd MD2DD­ʉ e*#d" xk6?+B2h,agI/d:$Q Hng;w؉L'`0ȃyl*s{Ȗ} Rh0v eCZP 92!̄ TD 4*aS2p*c k (#f 8CD a|uGbg.vɷp>C}+jJU̓*68^e4qA1L0Z" Ѡ1.K=*Ac^x1R 6$3.p*jȀ U3#@&8b5@fZ$':ϑ?%鋹;owmI8 U^y@ب34OԫN A TmgQK#d~L._ ;P?ضe4[Md`%F"9")qKv2iA:\ѺѳD^P#Ep-Hu=a{^ww|kQݓ30-t8Bl".ؗ[fN: :Q/Ҽ*4P?!ܚoH6!u@6To erU]?":X"ٻ"$׮NrwIUW AuQyۘ}0jv޴h:W0ӎCǯ9T/6'1֯æb̧n;`2H e ? RBBr`A ~THR,J[Pw. *>QTV% Hۥ9a? Z d^F`9˞N PASIm VoTFAW-!ThR3@9>KN\Pݸ:q>]^įrvM>T" u&$!n]̣4[0g"=;͹)QFmu qMγ㖓un !` 8hAw +umr <P>0 f։8P[MHY]79 F@2 s9C )vq#P|ƅ_efQ 5@Śɉ+ f"L`jQ:t/T`6Q[U CTfEQ6D΋#ʀZwGbHe,b! Bb/ʨd0[19A T.x s)o768#HSwI?Ʉ&Z$PO P*%R2RTRdPrIET0bcḊ<,VJMdA1XmfC΍!iAI |C 8 ``@=K(fʎ wRfISDfd o )S3Na&Oņd!_NWfHX^5a$3ܦ3ХHB&0G^Սr ],a r , vugv"RVx2Ef6yh6J`T 0N1Jn( @ P$&rc9g#`N&\ALDu` weh'@,oh/@ȟ&ZAW6d1> (Z9`nhAl-S:eI7dZ@ HpWr$(\T tK ,M!(__*MFћif</6d/2]@KtlKM? v_( pT'|f/1`[l[HOFπ5JNj!" `me_R _)tM8/ \AQrӒdoXmhjQ.OM+&ߞ԰]]`ugRbof;AMՔC$ki.`O3vŘ@ Y&Ѳ<+hps$s?>so N\Oz\w^eJD[.:|0%<+'%Ba+V`4Rmd[ֲLϴI N_N!3@D`tuC A1\ebP)baXtStRPa\Jαj]PuulCfJ+f@ǎ]GrD_DB/`vP0g@cRl"he[bvK1[*A dun`D9SLnSų]{'rH 7<&f IfXvo Iek Y4͏ fآ-ѪP974Hm& 2p7XR>Dt@r0+x8A%O~T膛o_8L #Eg]I9NKiV>qcxcGWv^3Z3XCQw:.-A 7w5?s&b3EDՆw{DgxO5zF A̅-QimJ.BlSIl3:^s ,wO'Nk"Yz)4`(v}{;[2!:0#NZ#l[;:NkB ;owA${q+;`G0>[_Q 3:n"wy;xkS3g93mFt@`G UNp{n/[l <^ۓށwq3axa/(=0} o;wG*XZ9 gyj攝1/ep}5–,6PCD8 yi\ vc&vnPuׇ{E6YYя$XHf0NY̓yb~z< >P3kG?;{`K>'g/Up :: |0r[W`$.=iВQp9~~+D`W=@8qD)&DX` Y F%H Wë:>.ڄgЀ/>)93f4pc '|ysd4@22dD SWfպS;,%v&)"i'Rv|I6HN-8x0B;  PD>\A#YrT,c`ɓGK}ٜMO3[P p#SjVV|ʒǑ]DoF!{' #>ÇZx䌙8LfsHOP9Z<2ȉnGpx(0k>kNb.0;PR8L!;|X("|=ˤX 3pHsF$Ђ:@FtsP}P +2 3 s;qL}PG~۬J\(K-%b1͑1B+qK-7*.B5UVeU}UD5;[#̠* L>q~{jQBڏ4H\m!(SF UTsK*u-k 3m5W݊D|×ѡ+; x'p`hdnA(#@QQgX4aSݖZ\$ EE9ePĉ[4; ;YĎ:L/ø|NLr=01?n'PѨaP 'x/dR K Vۆ4Hn5N$p6/huX`đ-%-?2/CԬ[tÆPOT2Xo a.:r/3tU ︣3wg [pq d̀A6f2X.53PO=EcHoL>e}_旦3:vu`;vG0yHr$z#`Ё,hr2$!e|WҜ>YE*<$³mi C"9aQo;cXDdA ú H4>12B@<-"f>;_ (25L)[YG-yC@H`}8C+Bb]="'*2!2#Pg@ 8h((O\;N`7/);G/CrX`B:&&GfL Z8OC'!q2% ™P2Kd̩N̍jr)RDqs"iK\|%P' ?0OЁsЂ{ϜBΠpg=߁wsdx<:0}f>ڒ #E>2 \($(~]:26Bс_ *G( * ^>"G `hA~HF7>q!:25)Y+_}}d^hn}s"P `  CC obۼM\;ް5 X Gyn "~֣IqNȁM<02o C^O.IB/-aѣ!؀ B!ЌB Vg䀉pZY yn@..P&/:`#dL :`ּ֦` A-ADlb0`I ^0  Z Y7)ĉ Cp@P*@Q"l! +W(1f-  3PȁP1' p`9 y$D AdJL< X8 m[&:`~+|W^H Z ٘Nd뉸6n  N Q+OEl@"bQ-0r["!`Pd21}\ql,)@%ǥ%@J&T`.BAPCAD'"r(e r ",BH# C$ 񠏁8sJ%c-Um pR/g/`62 "bIPs N@"W2+:)$l"zR =.*Bdёֲ-9C6/SN믎R3:A8Oబ T/y.3 1S8@,㉐!6J,oӺ "5ir=c/iSks".@":!3@tG*|*b 38AQQ)رHF@7رBՐ8 3=[S3E2>qE3>QF$ HND rgZ K4TD z*|@4C@ 9`J .TKQ(KU6kKOP@X V,NI# lF%B|PPϰC`Q(NRq/ErE}5/x 皒vTTlxcӖoP4<ȁJBDmSrRlSWL\ *ȴLI UO o*AP4UO3P3?[KN fSu]\uW%/UL#W3^{s|Y_l0TBPktբfVq!~r -hePRU>ic;innH`MmneR !԰ JZUFX g3h p h5"@Uhmiu6%v\5RD` (@Lvt |̈ ʳ EBTBc,C$9ȡ:Wm`V#JNo1V>/2]pWkp:!s :4ON^2dj49 pfx j1:!u{r16L)Vv6/5Xv LE@@S?y+DtTu`?%TyGy 5z?w,*dL5U{2/vyboo5c "q 8$0Ldss%v>%K LCPWnuyD)V/Q|v՗p }{`mP*G]B_*TEPTzr !{~Vr DkoY4Ri=Vp=D+B8 ֦`l`?gl % t6Y*!^LZX xiUhw"|v2wKDy!R@Pu6%M5d@38V O "]65[= Au/Wc|iyxR pps\qQ4Bfx*!Qٍw8>X]ӢmDןLg|XNB@ xoyt(: V:oU؍|iyu%]rb1 Hf07*Qfw`(Ё*l%dyMI%2]R`nS*m`xuWwxeЂ/5ywzo F8ϧsUQR7Lƨs-Y`[r8;v/1ua5:}c:!Fazj>r!rY$ϱ٠z*!EqbO%61d@ ի$u,p;B?ӷ`V[ҁh[iK/2|-D[Z kpA%)6q;rd37` Rw6+-6ցXiڭzKssa   44f;u:]݂`Q*ɃrŃ'6Sm^7C8`mgT~OJPmsCJU51^5'+b8Yb%x=/WӷKE43]Rmov!$`~-Hs1/~55WݚAbu٦WY\хХCɁr ) [(o Ϊ[ÿ,Z!zc؂MAx%ƿN~zB Q{ع"ç rSm.[Գi9W\6şYi1 'o]}pAD=6=U>}RE}O}ixp_'{%2A#C$f"Iy\B}AD{UT.{?]Wݥ]>" p0 za^k݅Gf)O+ 1] Rphnj]S\ߛٛ|ZsopGL!a Sǽ@᭗ ̩WGT֎^Cpip[A껗u[wUy:ѻ/0 0@_o4(75Xr͜ ֈiKM;aY;o0#5"Q@)Q*ѣ\)S&N qF:%dHdlq@M!̙4kڼyɿ<{ 4KU/Ϟ@TR*ULM즨2 ,εl.YB3J>p+ǦʋI.1Kz|khg6jgֲ݊쵶T@Ŏbd$UJM \9񟗨PH]gJo#vMce>ջ3 D%\G=aHAHr wx~g^` 8Q{gW߆ɐ݅WLan|M?|]H$r]qve좂 +|G|Neʐt>=sLXdVH$T~ Ty j.i"ɧMG$Ck6WGAu6'ؑȱSkj=Qه6iS^3GkAnO_.) Ϟԇ>KgH B 5벫D$8Iq r3)mЖW7"Q5nrE +JAr O$˄Q^8Ar&kKEz\=F2^.l IQv!/sIJQ<gF}@ N-i0۪fG6$8U_Bx8x >jnwa*[< # O!$9װu(vG{HB[Q>,OjJ$ܤr_8guw4&|7ԯrxDNXW.D6Vv5xWvcWvuwGZ':xY3Wb6VwX1WoZiHP 4$)4$ "Y ADxEaD$’r5"Ch"z\aWaƫ6wӓűtRTu=,O18Sy3#2zP{I]ػ7@#׿wfṠ!+B:6Dp!Aڪ.{_N'yBS6&sKxPn9Q!F~a@0*+," V7,2^{]%`ٗ}bh駝6d ,H LGW@q=3v<3#DK㎕0 S W&2e=cUxfMA) ԅ RO[(D_:|y(OcŌP-@L) }mzjij/I{a)$u5}Ct2m:E3 l6+Pxv0rxq8]<w&df{>ٸ.O*Iw)Tᄐz!LL C;M-CΎ#t"XD̠9̊جȁC!F\E*&[4@UqmF,JXcB :AAXb:RD€P_LRv'i1"Lm|rG/%lS Cd92ٛ*3 {H25kWxv!)dT\+ASQVy֠vqy\tyK;TQ n0vs;1Թ~~"*޽'}y5 A#M!DDdV0+FH0m1Y#Xxӑ *,ʤ2ŊG+ SSnJEcI UN!0T1 "n1w΂J=ۇfO91+dFQ EG[ YS 0-Z=)R{AK#ꄉBf}5,IsMҴ'LOx`L`jF ';fRRREceQ̲ u@Q r*TіBpBphlYHA&t5wi ; 􂘴v /F VDUV-,?f|!y K wd"Օ527|sK)RCi.i(˦2~J a @5 //lAx&@+Ӣz=^ Pqf~d4 cfыsHl{II.B*8R$6BKNaH ԔL]i >3ALl_\6LnA!!ٙ Ey/ݮ+eFV(ʀ ?Qed6}HQ"e," S5 -12—\H$$b",MZe;x4kT`#K=V jQ4@%U 'U-sQ[R|- L 9DWHS$GSQseQ?7+392f6%Lf$+K@gbzр$!{ uH`Nj1j{v DVz@C.A2F /6R.HS!C)#ww6vw%GKLxeQQyP,HZ1$'=k GXAfo4STA&TbBgm HA ` 4H k`$ NAmBɧ5vb\KPq6#b?EdQ@Zcy5e|c@{xtr,a *K2LБ%U{Y&7cCt2 Zv'U PZ֘&9a9=,=TX6Ң8̂;VfY!+F "-ETjaz椪g*@Umm_` $ _06@jx " 0b}{e0`DEwHCASE7.qr&Ka9ףƱǢYKʒ`e`XQsF,f"N1 9\j )XU&v` <`Fg nI* -KD.@.A.O"4CfuBcer=Z #8zqaWYF>騄Bb2JّAfp9au?ahqzKtby Z@]c`ٰ 2DIp_|貈䨲Z8 DR)a72ɭ 8"QYQ6dZYGQ `=1L!a 3&a9,lHT eY_T@:\Z*m%p:Dne {|*vO\+6v~a/ѷV)虪P G(]`){0r='rM7jQ6p5 БKTW~9-PQr-L4V+k_Ƶ *{C&GAf v?#whyv& *0 /H[\\Y\\d.M.})*4^¹xfW.jyWx$%̱k +,Xr_:sW gd9J!s@4;u3sf ]]t_^*ÿ[A;(6VJ.LDx%#vE/1*f~l3f y5KAl&$=#SQU(xAA[֜H HzpAAdv&st&Wj!:3c b ii !`|\z([b Yl$.}VkRNX~urRxQ2rF.+âޓLЄKUfy\B,e֯@SMexlM\-m1Z z&zL`T |, [+!m.ijCʀr;= lRl@nL҄1Y#ARI,i2w,y‚t@fb&JJ xf%ݶvIG9Or$B BICicJ xſ{g=Z@^>$5eòDZ ;I8L9a}SYg_]^Y=q@lϢr zv$ i~shG!qBiI+':tT-#Gx]XlWt@l=RhE8:rxF,"MVSi|sm&Mq`` `Ȝ oF(<(n/{k"!50ޝ)im~*WWaJ^{1mP >fƑfX@v?LQXF[3T1%̵SlNGlBAK W`Sp-f*Д&bV(\^#;IUY-f>WJ4Bfl7k e$s_MX+[{"9%eyWl1lfg{č@l-t,^v Ӭ_Q[ *༴C4vB!1Tv裱(#n+$b^=QE5 Сֿ/z[f^kDK9b%fH*NG&^]m tkƠ:y_( ƀ!P.ckZojC/zzR~DIڭXR8:a9#KLufg8D^@ڱh-b"M]ӢbtvsnvPBzмP AMA]5" B 85^2Q",APkIKldO 9,nԱ2:9' ahȵ AZ ӲkX".M!c @F؁naȹÊr=hB"-X2c.B0XAplrtȬ2XBdBRӘ@(!QOtc=ָ ԁZpTk WUI77j&<"n|Tj# t-Rr(_TB& (hTr-\bjth=+P=4 "0Ok@B 4 4lQbԱ=N5\PE%h&(kńL TX3]ص5(&Ƀ@*( (vZf_QBRnOº 4ѭ{׃7O~,-{7_+TF(0?Z40|]rXlʼn'KÄFIHDQ?XQ -50C6gR'uxgNj(kh" TxVx|`5(UfA&;|*{3zE޵kڣѿt,VtQtTtE&N)ThA쳒E OBfjH 5cڴ ܪdMXC 2`<4 r  C-J?bykx缬KOYy\s|zm{[<(E^a`*>-&![ (° A 2BP"0&4k087,5iMmSD1J|@GH7C۴\R.00,ɔf0C:'?wae?h|̲ t-`qǰzsE1$4싢 U;9m!-7.Q4jB`S]IVB7r5jȎw`RMW$ .p͢"A'5:Dz2C|²t ۻVrKLB{~:WbB "PR,j3&%ɴh%֘*$ǜy9efU cju c05$Ȥ.X@L*E Q-X$WaI̢_̀~r.ypK*P< ++[ e,їuZ~)ě;݂JY :[K .PD="Xq%$(("YXXS ( K*Tś/B`.$ƞ ɲ&`¦65hnp(/[o@ l*5S3TĘid+=P*}'- _ ي.3B,;) rcð(s X”x"H^+H,p_F'0(,BFaۅ-M 7J4cLnFpOXˆil(Uh*Ffv@hID1`K`wA%ba=@ظl8ؠ ڛHH@L+L!pF8̿ˍ,k<(+Ob.n3r=5ɡjt@<(ʆ)LC.f@U7ahhOĈ%1~pѹ7`($#<12:/K ]#ӽHKL@)eĬ?`;p)|? xA.e͡09L@o0C <. ,lуݣ1QyDs4jԲK~ًȆYy5S 9F4/OT ,T/ĂDX'DVuUń'Z5̀ƪ&t5,&̙ă8|X'8ЏJ5lz.f@]EC/`{TG{@+0i"#SP(ը0jUV j X,' ['[0lXeU-;pY"˿ϊ.%\V0s=3d&   g{׫Vn/&y]PYC4qIu]v]>R%V1zQ0ch< $ޛ][E+wP^`\[-҆}UV-Y5LQ$\`e"9#`.mVgSV@ j T=YtjE41l.(ML+ 櫋60 X`Mn0O%[^[u3x^`j^^ꭆp_;^EW#&__M';B\]гٕS+Phk(OPIjPnQn pȇXF`3pa'",p.![p"^]U<W(厥bb,|9ѲL,PTI4+@j@vkjE:f4=c d `"X60@jȆ⠆8jH0>&0z(;8 Ye\>L )[^FQ:}+~ǵu5bH1|=53z0| h v8n1! =&qKB&NiԺրf[a>NpH3Pkd"Pꭇޠ8#卞[[Vi"j~ˑ1C:=arH80c=@c@ivM nF^ৌ'Dmɨۥ́AE%mf鮮F>F3 FheH̃vv[Xh00,,[򭯿5ņb!e~ih(ԍ1Pcx< j0 pnFPρ6yNwE)w n0dkp`nK?nd!މkhMN,pU49o)d+&R>kphqZ>;xVk"p[,\H\)_\8$,'nXp-_s7uF솔K"WjfvŦxz| 8Պ~ {;*ka,t>GIKtzxTޑb_pz=ZF\K XƦP[_:hi-h P`o`n+24е݋sdmfpj ;`] ηTGuveNvKWwzt}ztH-U"/̸MbXUX'EY-3Pc%r7yoi,+k; Uftzf PDb!&Aں3<`LYfWc_TFp)½ȑ'"lPŖ"2v1ވ;"ޝ?t4LNC͛%KFkר%ƒ-k(7֬idMn.YAatiH7kRHB+׶hMk&P6.J<CGF3 7~ رJJ ]I<*J π$JGsLqزU/gpƏpΉ;Hӟ׉gP4}Sk.yxeY%ma4xMt#E7  E I5Ye :MaA603g8ZtYC(P'; !p#ry\П]a LRS60э< ib S[rׂZwD|a4E ` h1yPAԤ!k@]4 V5Q8||T?mY Gzx|r@e<DJz|az$HAn@QҠ៯d[C.Dٍ/MBTFA0 i!S-!<DϠ3c v [M." ]+U"WB17q>QqI}gX_uO%슣sR?['G̣$p?@{C"qI 98Z܀AH4`Z2K肁FĖ2.`XQl TeuF eF 4= Ï-( 5RXK*W>|lbJc dFtLc8G/"yC}~@ ;A9 У<ڧ'Npܡ;h>#AF,P&Ab$tX cB]CBv0L 4̚ "&sBt3$NeP":ްCUkw],36Ã5\=wbB5W:x#0ӊ<(Va$-MG)`dZEDZjl!憗n,whL #9N5^ʗatE_F`ƜəݎY\WUoЊe:`(Q @KQڽiIuA!0~TJ@*|}U\eQWH$^TM-4Rz;t -š8YaY\><[ FAEȎf\N "bx Ha$ %*3A4 ۭ|օ@$\6|A@HMP1ѢeK]D]XWM܋O X v¬FIu-Y;UX7^#U >ϱ޳E$ݎYP&PbcL"ytCy]Q* ITC6L]CK}@YxX[M' @0/]٠V63R@FO˭M!"MW7Y`T QJ:64L çü_AHAh`at yCbt97 hHgE0*x|:3DM#!C ⦑mG_U\dM%#dYd!3"JO\;]lb; RM>EoRPbܖQ[HA].aFyBPgcxH[v\[cBF]Z ICD|A3T1ՖTĦ"a)Q٤ ZO|4WY4WSQփY7BcU"Mx9n㠞N`=kd\xĨ-Rl߄&4r_|wt+z;@-Yvc 1L0U`D!>L[x(Y2/ReTMR3<7hl^it].)e 7 -񀀨H"nAcj~Ln\ڤdP҄w8x̉\;ܞ+;:ʄz Yن5A[zNAi3`/}_AH)10aF1PYXv4\deC oͤLb+Ajv Es.[^`"7!֗[@]GW ouۺ]-jݒ|=DteafC3./CЃoR+st.QOԄ݌P{4Npx=0"=ݦ`,zy U\L$ FT [ \,em='YIa,) Z7|A60Y\)C?+.cD5 V9E~!ؚw03;6Q?Wz!E7i w8d~M;@eR,S]@ Ee@6^/^ 枏Y#.C-w2\WknNuKeQw `QQZ!ޖ" [jdc#QsbI@ b/+(y H䶭o,5A53/ZЊpŁ; w zĮUKo-0] [E5pYy$C=GWM+Uw1 xuQQW(O, bSڞVlMhƁLϕ둒۪03%K,Vyk%Ɓ#8@ieI,QdKt0bEv9Ը@ Y$G/ OPe>Ĥ3miN?ÅjhW,ڪdĈ;Nܩ'^TP:2„[,Mi-AΖƳŗB/zͪG+j0ިH6Fҋ5.k1WP 7䰅B1Cћ*{2#!-4r<#,8tBJ2V3IvLq`PD)?8WXxA!|S&D2R:#0B'75 sAݼ׍1c|0_D}Hӫ_$YNL? YrtSn;KwD AڛI+ Uu  ӘyFEk^h RQd&8X8!NrGD4GnEWVh¿?LU,e4J ZH21O oC88a#m(QxF!PDK{hdhėHZL#-)=<,f&R?>aa!@BG(os/-SR,gS+:gjTF:aa.w+ckz' ǔ(fB34\AeF"?$5h8UxwY_e/Aj?G(>,JjDe]ږuJ Qcra+2G!RqcM?͹ MMqf:$M <ֻ=bKV# cdOS/|QZ']nIU:َU]J7x \(W ʑr0 vNXhn8{xY6F )$$Hn2=~8hPҗDʡc\F6tnk,#xæ0/b !ˤ|Ԗ0e?7g|~kҶ׽>r;]!՚2.RrMш/a [ y pI(w[yNQeofC׹u+pb+o̠~ C#B!ta%m Š P{a`&%YNs<`BGL + ĚU˜v5zp?s Km0d٭2 CRXWAêZvO>#kbwt\bIOlc[+~Nphos+%S ]{Rڔ'r(|:EkfSka 4!AKon ]|O:۳: NtV?|]0$!lY-D jjݚ"OtU!0 哔ӌU1 *D˂v+lؐ$tK0z1C/2DB\p4/TTE]Q#, "܀ d dOE#d0N.D* a: Q )QN|L rhPʹ>a91fb+nb#'q!%dḡ,&p ܠ".F `vA_HJB81PB.dz RQ.ܰP )M@ G*0lWpHf $EI,1,(_R RRUJ@/1n bHNCVd3pQА|TC *' ^}Csc8 8&Zs,s&4p$LќϿ@@V`x1x2 󣪧BQiBGnEC&))o|Oc oW~fXFg,:q4 oR-ɸQ!ؼ V!GA F6fpFDiEXH1DH.prUNWtM| r@*RY4^@"?!IhLN75َ " ȁb 儘 !2#S2@CMV4)' =gQ=a 3raajOF$g(&ǐhƄ@}RG\aZ8Sq-JP:H w`D$D&#D"Q@ $N0uWWSp8&|8,X5&OaO8_ϠWK8&~LdЏIژ8퀡\x0몙pqpԞpXFoRvra `P=$4wNnWums.ʨ\\EXڡUh\9By7;+q1<+SS#I D2tڌ[G[,4;W*áulw:}ߗ~W׎~yjzǡGe!B$wCLW52Y.2Ӭ =!n@y X;6&2Iؗ`uu~!P. ʨ@K7äyV(]:>{\49]@X[YWX:Y:NJO'w{{~ Sі+Ȋ, ,q-;[n d2po:;qд nW[/{Y溌 `x 85ᎌR{@ "!Sppz  #W/sIUܭU߾aF[\Ks̖Z$A n`;2;.F@Ìo2;7Lnr@e<[e#ۚ)Mu>x@+Q.C,RAoPPz0z˛z+3=BEԽ}[z*a=4}۷o9mIs`Qͭ Z Zʵl˒Իrý귀:uiݿ`x@e\sJ J vA|*2-@+ݛÕtQw@ ~%[򗀥C3tܷ}븎ٖ>@A~ NP!R#&'oOI\} Pn闾ė^ @!Q}<7߽`!0{K?p+.OѿN%@`g9a4>3< :L‚ FthDŽF-MhAi$,9yʔ7my S%˗*kr?ܔ!c˟C(Po.iɒOT}ÔӓMe)&%Ca#iM&-[(-tP E b<̐/𣛶%\"4iĜsJ/niCS=tVV^J*TZkndOU.$D$kxfE7o;ncŅ`b!y gLXGO+WL4G|iAkHM톒nwUWPW_U7`23D]F>FD)vuFhw{5֞y(xY$QcA6 cx eAxf/f5L yQE2(xE;FDiE)i:&b|c؀}QgX^i%;i;eMJUV?8ᄝ\ M8J]tG*z(8#Aia*F$ǐRƮPFf. B TOSo@YapNPPXh5F6TME _4˃|Bc M#Fc7h2LթfJef2> NAJ΋pM= o;Q ׾bJrÜƭ"7<`xa(_ԣcϔ롷CPiAdSϻdRYj)Zd L&bUfWsK}ElȢBM!`a'ۨpQɛ+$b<37!m)YGРE?/fm8P|$NASQsekveumFuXbaQ !Ծr~fQ Px Q3jLIгLF34+%.@.J Դ>77@QXԧA8*Sd)A'x{FS.Ōw C)%ecg4ՃRR굄?>{#hFs?+dSo賫),``֘Ta0ֆhwy/J[򻆠5vQE4QU@ӥ[5|p'Tt>P7ďR'AN*A*2U$;aǵ`QHEDtme@Gk!|!Z8ßUVC DOK5UXYϊ|?q  A;ة,%8V*$$G&f "QM:DIcHGM Xde% gp>L8XP)CI Q 8;a4?F@Tl(!b,x6c%DGt5RT? :z7+N Uni ́65׎.av-b3!oM@tS$:z<]s J+IhV'o]W ͮx0~>}"@l#S Z N(ĔiP<6$x~KBQ0Aj$PI'5IOr42)@+Ӯ5oRठt2nTdɭҒHZ꫋1"$Id l5a /y;٪o|[x r'=9C j'qg JyAB=\tB01,] nomjfCRvQu#VL %XU,n1R7㋮ܭx&6(A*ā@-`8ġPzeT :e 9v%0R[F8tjIChbrŊ gRҔ)Ÿ́ óπw9 PUiwcU=izFgU^=񕴈/|e&4GjPiKqSSdS"wq'er<$Ae-5`Ɛlj@(j =ՂJU >Jp~/ڍAE6Ơg63gMFsu}nF qR2cӸs@ - ![ʉFZ͇,2`3@%dCr!Fݣ$c,kk5; !Y@NTF5R@g_`\0]5[Yu\kΜɬk1< `6p媠 0 Z 0pnl༙T 9 ^Fe֧ }kg=WjRE P p p쥠 Ȁ >2fm2]]94M(Lhg-Н4Mґ-~ਈZn0 p z0Ԏ G lJY]$@N yNղHۜ# 0 4oP z P z #M)cJ&=_ܜϱʿ' jΛFקl6348̀ P 7P ưP8pIljҞRqKm&r.Nr.k|0? PP :NmBC؄ pj]_T\$*eM N *P Ю@G?sP$)ř. ml' G  \2j@-aX@%NHqh.Rn*5]~u %/ȘYffcٱ3:Z2iIBT0jਦ:l>J)([mĂ ,:+ҥy.aѯYՌf3a(%M( e :jZI^:;Z!RdעeW+T,Y֯2Lz[sv5;qKl,_7Hf!kl*HF*2df3#kt2 vE׬ӱSt794lpSkb-+5= lOQb.f@ HYERInL<BG H&&=Jjrk4?AܱdJ -'mMTQn`akU,(RtA&--|IB+#B2 -@}-H Az Kbи +Ol@'e/a.nY,6e)(NB"#RtIGJ+P*>CYxs+h"HseTņf ̑ IU `)yW(;iC vզg6ODCrGͪGG{\44LHX(uR 6*qj~ UN]yQjFEdPT%@'ߚZ(ׂ -a^+֠)D%V) "jdKnK;Q~ւrNaIJ1-~1Ft:{WW(UCU5kע uɶ믓 +Nj=PAgUEcBIe <'<(mk"'D`B>;V!1|Zczn[;-gb/)Zsϔ@ `JI+]x.p=5@RW/h-6a&dS%/s.hVZfe.;);q8 '݂q0`juǞa-k| ݪv w+ahg{jn'{w/u JC@]ؙgN!^yF.D$"0@X1 d||CFAQtԭ 3Id¨ȕnp,`'O y6zԤƅ3$)s@'>JS(UYdI%YVP# %?½ǰ ު̶h-MR;ZRUbZ4CIM#;z+ OM.p! SBTH`⌞Z!֤|F @tD|C1v`rUd 6!ík2m5t+ҶaRF^W #0ҸZok0 =8Xr P;F`wEY` evM{(v@"0)Qc`.px+I Q87v6Y?fBT$.lNA*K~)ޠEVjC.Hʁawܡ\ Cvo8lerIh8 Ű=fEdE=D Ky^i"D±BFMSMw{̇'(ŀoQMg8g,)l P++GJ;etbSXE@_Af;0a 8)H*M-[xs WhV0{vA: qX; `4 ޙ/ESMTVҥrWL4;.2Q?h΅߀G=@ng"ohF u2)㱢  w9?Z8VQ Hp{hQHLq;88{ȂiTq8w OYU4i`bx&;0d!#C31 թjzCpGk׬$dvnwŦQptי bjQue0>|ψg X@H ɛ<0rآYگO0BN+Rd*&jA[YEihv1j|eqio&&Wœw(Dׄ4T7wrhեMs ':='dAE3CNc%l"%k٢e` bsUaX{vuuDzoV qg4 ?o0h#sǖhl98=T4M@_*0[Ez7;Z` d.w?*GX;O dePY3kyKC9ѝ *[eEZ,Gʊwkz[M]wGM@ ʌ@ ]06׈ePH`;#<7q`A%\ R ,<%f:{Xz;dQ;˄ejkw?ƅOCX 1ZpͰZ`2@O#`nCS:6kBa'3JA-{ϊwaƫV&gU f'g{gwOZ8$wkH֘UmO3Pg#Fx<p?Hq@-!A;,#͢gu(S,{Ȥzul 8qt;~bHR %ḣYxܥm=HבCעH Ip Lpwm^&OY.`pݥGgӎk/xJPwkTL{*\Id8alLťSo*:̞i"WЄQkĞ\HKvjEv&7r=X Ȥ@тNL@ [* ? n25AZң%0٥eprRc۬g k]w.k}7ДU'Վ pu0;.Lx\̞`Wrg/?n L/`2 _ 5& `ZfxbM(g`iex(sgļyiАOX⁉'yvܔ'NSMb)TPENyGȜ>}ʅ7Lm$IQ6FᑋMp^MJԦks})N\ajՎ ;8q(<˓'H|G, 0<4+3/0c-8P &#ŋ g1nL&eFtK\SL;l$Q݇X[*ԫJvJGMow6kxRoHj.Zzra?RX 'x1 ˬ1s5߾(} гHYC/h`/XmD0d((6>pxB/ʸqI!PJPb%!pgSN'ҨªrjDfKk+cAC +3+@Yo 0!\ ʐp5Ӑ3F,1Rꑃ찁VM kax8pf"0vبqaxH$+oZ:Si. *LdjaUS=v, k무»BK=a%Rek\JLc1 "Hά!Ck43Mެ(,U"$R kt͚qF0 xCҠy{vH 4عb~֠yv2"g9vE@R{S-jj L^x̋nw_*da /T0:uzz6Sf&-Rۚ"S CgI)t a,we#z+,6-3As-xPw.Dx ${(8H!1h({2@4SE=4&)rY6o,2>`#zΉԈj>WH:Iφ3 Q4sAKt$4ME|Y̢'WRb؂^iXб|` k3|dHci d0 W4E̬#8hV Թ!ၴ $jZL#&Rm$Sӂ,S'Ai81yHP72TX0c7$ 51f++ VFD0}a." l>di@f5 HEjOF!i!Iԧ <Su2V!qaXqb+!:x + ~3 @NGbziRjPl{hfluƇrWU ɚfNs*ΧZxw{;5?_yPTH@c_g2ԀŔߌ9h:&e߼f F>>3}@, kA6(e1Yg;mJr6$Avvlhv-$pa=a}^2'A)mptenG$Ԁ}`zXZ)8cE)I=` "5 ^t"V^B°.Y_,>ܴ&!)t"VJpSEU`-C>[R P)J2;ӝ>z33F.NHYH>X&|!'Zid"3BH A.$wdCeYx;UU1٠9^l_š|s-~7t@bHNl8&" /`ۍYi2BS>+>P>d2؁yxy؁( ; 1h)xM9u>yB$:a<$=*7-CN16Fy7.?ӓ)1@O ."",2cX1/ L@q>#> \-brHu AAO*{ N{R;h"2z5pxmP)?+N[B9.Ra颛x0dC &Cp.C 2*A lԱFC@'Jv=:i=! bGMLyx13EGStr N KC)D:ws1] @q@,rXc.Z/H;5rb5ه>Hg\./j6╙CB#qjI #GZE*-L4 E賫xSdHH XU 9HȄlHXtH4v..f02[C;/ I=ȲlƸHj2pJ=>pw-遲Ԋd IS|R4DE7HŬH(N0)NXDDȇkp<")#R; ,ȑ˼t,{&Lc@ص@~[%I4 ?IkE$ǧL AJ|$TdxNU$@:@K1#Nv+H2=@ζS:NZ >8z>xH΂ EϬHǫؓ {i95u ]#Ѕd:m)0N8Hͱ4=1$?BL%0#RH/,:tΉ(Q5ڜ,:<˰Lh R, PI@qbRp>OO6py`} ]@2%S mּrX ]:#P#(= H.UCѝ",F.pfpFX#fR;> }g@:LOɚUI \j0qEO09>R( JU7a Vc5֤P:H`:,H kLBk1⼃s$0} (5f&.B/08w 8Ȣ5Z):@|(U]M ZUVER@{@yäT@0UY`Y:PSmV:+:XMHm+:+=mŞm5  ƀ8'rת}Tt,I'8 ܁",{cDXhhaVaēH+\uUS\mPu*gl:k/_|&cmU95ǘd P =DZ2@wd;@cxW/8/F"Fv&x^J K6:W*4Ma')">Spb_5f[Ѓ++ _#k9mE4%KW4Fc5n.5Iؐ1Iy=xEF"]f] d/@'9ŰFE,[XkhY&$&# H1:\˽ʽVa^ւӕIT0%5q3IQ8mڂ1bۅHGNzXOxL 7x~U^AE}%nf,WF ]Bbk5f:ο&\7(a&lf>ӝŶihl:1݀l6D=>68pfRɃa}p/L -GEⰲꨚ)8-Vk>vU#Bbr79NOކm\L /Nl&`%RF"?fZ({J}8m-#MP&:~{@ dyHQpVuϧJ !Ak:őE+@qAOsHBݼmV4{JIM"_Noeއ1x9u>ly^:*Og%^bshEt:P++~NnGsJ7ƴhmp@&3XI0Z"lfp-M#G p.Lkĸ'`Ƈ703ۉ0 7vaj=Z^# D| ^3`44H3ܓ}CsT^9tYHTqݘp%W^$)GgS噧V~_ IEN'(^ c(]E)pP0 ic"*balO>(cޚ/ ny(6>I"B6_4AD=`F P f+Ԑ%F`SLaHMMYW 84PHc ޞ9Z7gXq`0xC>c`Ì6=1$`L0٣3|`vxuR$R _E\0LAMR^$xK{<{meI{#t/s@4+d"hy 1-1b*GLyႺ0Ua02N0‘ g K t^Уg=bʀULwI=eA9`ɶ|EiLcicd( O (ԌEL`5Fq|)p>d  >d2&4'M@: )$ 9ftmjY$$}ZCyQT$9$qLċny]  "*)haa,M,742l5;6gv$FE:N"I "`pZ5奅W(dMЂAq!$ iXշ84Q뱚jFlMY7 3AJԣrV! Rc {|=ӠN[%J,֤,n}(Pa(RVeܨ]%d0!,A ypH\Q"HcjWMָ&&)z)suHl:Ъd|}T:&@SjZ 4]AqPv\s}1\*-aЂ 0'8p>X ngM&x5o} AP^r/JFZxg}vŸ#|9ub}9 ,WZE)ʸ ^\mpxxp8,3@43蒵Fe17}&$DodH@S vyw P>aIG((8~XI8m[+ [LDeBƖbE˛ V|SYWh\ U!@<\$ ͔MMHn"=_\)BQ!VIF! S¹K|D0nD',14Yq4Bci-5* P)(v٘ _x6*b(zvJt(/+@a ^. Խ@fi |I Yd łb.} $^䔌C ʢXDF0YJ#ua$)BP-N% Q< SbK'p8C6Yȅ6[_AV `=5՘Tblf%;Ʀΰ以c\ L@aգ-ibր^,Q*&s )˿D8ɅX&_h&_!p<"}&d5Viz XzĤbJ է \CP^Z)>%,b s*&tF'@efџ3Au A'6g4֣)i2ZXaaLΧ8[QѦ}$:~g̤"!V hpz_fYn?2/V{K2]F Z!Rz'ܙ4F*V݊fx@J :&md)R>"xߕ!O.6֤N*&TfjE "#**y& > EAΝDPfJ}h:蟎~QL L^!9\n?6BrZi iC$R@vB&U04Hde"8Ȑ 1LHk9rVx@"(6+p@ᢓuƲh+Q\ M*^+2)ZDP˚(+TE($lhnd\c:J֢֢a΁> F],X6̚?f h lv*q CAWD wa[C ,j#jcuҀZ:[% P*bB- \ j@y<x.t!Gۊ~@ܶjFFp( Lz]ζ茨̨J.-..n.hF-e ͐ %{-P ljAV& ऑ;w&߮آ9Zj|o/;lk("d:ơ=0for+VؠlTAcJk$fݩiFo Fp'l1n,T4WTO#jX\#y̽N-֜ sL ʮꥡ. "H Bc:1maR,hpk! 3 x&wNxΎㄣ ߮1 ,~.1/^!!) s,r kE l AHlƱ47lbҒr?u0s?tA JA",.4_|8hO˵rFhP7s5(`::W Z}K'nرHuSu \F hݽ@, 1{?ɍo';¶6n:km6.vo6`#E!akתR;Eo Lͨlwh8tF5sr{枪Kk6r < (n~)No \4š.Z>?Hzz0B9YOށ40b8F0 Ȇ/^uOȨjʏ9W`.t[6קm܌'|DCT*'x7M/)2@yţ O[z6۩HÚ$FP| Cw5NHx" ^z%5Ϧ; :R7H n1]~o ⴣ jc Ky9 quѫg>8 )k@r# '8Pj5ЄHrœ0M|18#ϩE#X7PQ-~,! c RH@F"32I/'c̃(?{R,CKV SA3]B35 wX~:e}Nª+O?Q,$ eQE=&<`fkd`F #%&M}Vϡ&l0/ \4W[ڊ3Y;ø5 kaRDpSHIT"'uñks N$bEoJP(+ (-< _-1! wBL 9B0*E!IC 9MjvĚ]zފjTb,F3@Acgs$UBJYq[ H$5Xx` j-@+3//# Bd1 &hev4t[!NRq?^J֡cre`yHK($TvQ-IVQg Cf xiN[90ra.ʵMXa;FV/VA U)ұy$0HpCp|ڭM C ` ÇAn Nm #)pM:w7ebXLl*Ia@~|B ;%Pc\1!r%%ۈ_vˢF;' Om^s7oyEW,:{^ޙ_d|f /u,i^ GD(m;Uh/yW$l>Ir_G9F\j.k{~",JD ȡ:VFd+^"MLr-r*.L/ lFDԉmÀ \9̋ 0p ejexpѢ!ĬBΘm_$U " j8<9ʯGpB|j`D+dGO*kU p 1( "PX!JũPr>@A , ,V HOP@P 4l)ͨ:O0$`# ,ڪUV&{0GL2pZ ӎ?0)ve7:)7V(!мD$ $ #  Bĭ>bm!P If tMPNO7'aM:4`  "dko{*$Q+NP&G6qάba&Z,Y4Rua:!*$z!P=[(2 , "AmL.t2 Z8P jVPlv)4&2$A% *H+%C!If UbJ pѿp00@5"PA/kEP b. D.F")Vؤ"61٣?8 ©(c10 !`"97ӄtՎkVP.rrjdMa=M$ v3rVr ?:R39q': w|6 (d3 J=O%i`79"bn81M'M$ HYBD/HCV`6"~`QJhL>h0 #,1- @LTLqZnMMNdHmNDmQ7"!6!,T,.> *3RL- &7KINV#Na>uZ-r̻ Jb`A(*0!JsuJJ%(v1nYT@R1q'ap~*Naa-<3 F`H(`kΕxC(0 WS>>m>52s8@G`1RMN:LMAI3_V"al\`tJ C1 @P5U`u )y!#bclV t6! Y`@ aQV`F@j6 @hhQHU]rNlʦP`uQ@U7/ QIXw+D v 3V+`hWM/Gb f f`F rs F2P al6lGʗNvE0"UO3 r7j@ Y1"z`p$#sW@$lJP)mET|S}I ?2 39܊hQoLa,6`n4@|Ҁ<ה4RUcABkv@6O1Cn{u>!_!),W|/"+MsO.x r@(8r#97@ɣl'0 LJF8#.8rB?G9V b)gX8=#JHl.ejdAB^w&Phzh.}0S`&M\83`Jc1X}K1mB\fB@F`{73ѐF>XXhx7y"> $p90or!X[IuE @LLC`r D1H^s_(~Xis8Ӡo)4-M>Tt"X!6Z e5YV֣4 0*2JYrQr&xx_اI3%`٩'"y3Y040?ڣV v!_ԟ98#~aIQޱrߚi>eh~PyШZ'c2-S:ҀÙ;1{VC#a?qaa O|l`"TSKHx0'Q;os:o2` h793e?믰Q9آ [`qB1io'z|8ʀFwwC9:.S>U"X*'YB@<H5 1Zk5 5qɋ؄191oHۆ@[aZ rƥha6hSC{;D<9[U`}r`CmKƝc<C 9<ågsX ?+3 1 o(ۦ A#e|-=_H5<BD}Υɓ_#RS8D֡y:õQ[7`L]5`'Q[;2σ5 h}@j`FiD > #Q 53wݿ?~LY EJmaךëV} `9 ۿ3;=~wAa9y? i' 953\ޅك{ɞ jsh͛=c&Q;nSMrUUyYHk ډTh@SLɢ/`ċTbN͙oyrJ'T(s_nj`AW*vi* |=e*#oR8P:tF&L e fv].x\@X;U;{g)}M_Hc@Df:ET= M=bԅv-o\UL1x')xFj#W%~1Hce@BdqTWdLFXurcP]eKy+thȁȕNi(_fǟnR*l2cDbusDӄH!2JȄA!2}H։4Poi (dA`>%Szު\ Z Y cKƨ$ܻH$>/!gD灮*ms@& RuؒPp UU"Yo*s y0•US5i!YGkuoV @"cir'pjw41fgJ휂׊kQeaOA,=n;rC !8(dqƪ*rifڕQ7ܘo??hK.c R2J:c@6VR4?wرBߎTK # ;I3LvC:J֠}]=MQCGx۹9-Am. ˪깠j9<_}Q /+Bjr[iAA*581[ ^2_@f.+29j J6-o}zӵ {e8 oe*T 2UkZ Zz 쥇EH, ERY1gVe& lBͫC3)2`6?Zgo#wHLjRre`g asS{+6 @rt7\BɐMfd,f&CPѕAZ(5CF O@$EWИ܌eZ^f̣2xEDa7ߩI[LYtX5PD? π3q`&(ZCGRZ5, >t A%ŽI9Q+nyҘ4;M2t;)O Ԡ |! ,Ƒ׈J1]]?ޓ^Tg('gi)Nhy;hڑhR_kj#lh!H@$ Dh8VtΫT[h5OLeAFd*SUiGӎckץK?^plՏYE7WLpuhf;(.֐!!c^W?vҊ"oꂋ]IٛҞK|;AGR]ufPwH$zA$3J]@cYR %br-XoDTD,&E=mz î\򉝃a-1䦪-dNtBS\Bx _"B(c8fvU1w>hXg;sl{^ޣH󍮠uBݤb ^SW<X+-£ю,A"Zo-lUtg`G5ϞOJub9[h-{GwF!sg7ąck0y$F *ؒ Y秛%J8sΠ3 WA>jw; Z~n.(ffA[=5-; 1DH FJ2~H pb pݮCJ,DWQWQ'?;RF+yBx" fG&/v;?pYB> 8V ,TQ&X(@z-HONz Q)0Xgl{4y8i@i' h5G, `aNd?V Tʅᄒ ЎW'1ȀXЃ"=c2C(, 3p.vGx X&YH1KN۽ޑ%/ CtQ :~˜,Mш&5كM qLr QcY*ZZ~ֈeLO`n~aG<1[cr=qUKrO()W s%B al<lVM+^6(v['ٶ||.ƨȀ(zdx`/pCQ􀳝2ÀQ&-SV%Ѵlp25e